diff -u linux-4.4.0/Documentation/sysctl/kernel.txt linux-4.4.0/Documentation/sysctl/kernel.txt --- linux-4.4.0/Documentation/sysctl/kernel.txt +++ linux-4.4.0/Documentation/sysctl/kernel.txt @@ -69,6 +69,7 @@ - reboot-cmd [ SPARC only ] - rtsig-max - rtsig-nr +- seccomp/ ==> Documentation/prctl/seccomp_filter.txt - sem - sem_next_id [ sysv ipc ] - sg-big-buff [ generic SCSI device (sg) ] diff -u linux-4.4.0/Makefile linux-4.4.0/Makefile --- linux-4.4.0/Makefile +++ linux-4.4.0/Makefile @@ -1,6 +1,6 @@ VERSION = 4 PATCHLEVEL = 4 -SUBLEVEL = 76 +SUBLEVEL = 90 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-4.4.0/arch/arc/mm/cache.c linux-4.4.0/arch/arc/mm/cache.c --- linux-4.4.0/arch/arc/mm/cache.c +++ linux-4.4.0/arch/arc/mm/cache.c @@ -543,6 +543,7 @@ static DEFINE_SPINLOCK(lock); unsigned long flags; unsigned int ctrl; + phys_addr_t end; spin_lock_irqsave(&lock, flags); @@ -572,8 +573,16 @@ * END needs to be setup before START (latter triggers the operation) * END can't be same as START, so add (l2_line_sz - 1) to sz */ - write_aux_reg(ARC_REG_SLC_RGN_END, (paddr + sz + l2_line_sz - 1)); - write_aux_reg(ARC_REG_SLC_RGN_START, paddr); + end = paddr + sz + l2_line_sz - 1; + if (is_pae40_enabled()) + write_aux_reg(ARC_REG_SLC_RGN_END1, upper_32_bits(end)); + + write_aux_reg(ARC_REG_SLC_RGN_END, lower_32_bits(end)); + + if (is_pae40_enabled()) + write_aux_reg(ARC_REG_SLC_RGN_START1, upper_32_bits(paddr)); + + write_aux_reg(ARC_REG_SLC_RGN_START, lower_32_bits(paddr)); while (read_aux_reg(ARC_REG_SLC_CTRL) & SLC_CTRL_BUSY); diff -u linux-4.4.0/arch/arm/boot/dts/armada-388-gp.dts linux-4.4.0/arch/arm/boot/dts/armada-388-gp.dts --- linux-4.4.0/arch/arm/boot/dts/armada-388-gp.dts +++ linux-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-4.4.0/arch/arm/boot/dts/pxa3xx.dtsi linux-4.4.0/arch/arm/boot/dts/pxa3xx.dtsi --- linux-4.4.0/arch/arm/boot/dts/pxa3xx.dtsi +++ linux-4.4.0/arch/arm/boot/dts/pxa3xx.dtsi @@ -12,6 +12,7 @@ interrupts = <25>; #dma-channels = <32>; #dma-cells = <2>; + #dma-requests = <100>; status = "okay"; }; diff -u linux-4.4.0/arch/arm/kvm/mmu.c linux-4.4.0/arch/arm/kvm/mmu.c --- linux-4.4.0/arch/arm/kvm/mmu.c +++ linux-4.4.0/arch/arm/kvm/mmu.c @@ -824,24 +824,25 @@ * Walks the level-1 page table pointed to by kvm->arch.pgd and frees all * underlying level-2 and level-3 tables before freeing the actual level-1 table * and setting the struct pointer to NULL. - * - * Note we don't need locking here as this is only called when the VM is - * destroyed, which can only be done once. */ void kvm_free_stage2_pgd(struct kvm *kvm) { - if (kvm->arch.pgd == NULL) - return; + void *pgd = NULL; + void *hwpgd = NULL; spin_lock(&kvm->mmu_lock); - unmap_stage2_range(kvm, 0, KVM_PHYS_SIZE); + if (kvm->arch.pgd) { + unmap_stage2_range(kvm, 0, KVM_PHYS_SIZE); + pgd = READ_ONCE(kvm->arch.pgd); + hwpgd = kvm_get_hwpgd(kvm); + kvm->arch.pgd = NULL; + } spin_unlock(&kvm->mmu_lock); - kvm_free_hwpgd(kvm_get_hwpgd(kvm)); - if (KVM_PREALLOC_LEVEL > 0) - kfree(kvm->arch.pgd); - - kvm->arch.pgd = NULL; + if (hwpgd) + kvm_free_hwpgd(hwpgd); + if (KVM_PREALLOC_LEVEL > 0 && pgd) + kfree(pgd); } static pud_t *stage2_get_pud(struct kvm *kvm, struct kvm_mmu_memory_cache *cache, @@ -1629,12 +1630,16 @@ int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end) { + if (!kvm->arch.pgd) + return 0; trace_kvm_age_hva(start, end); return handle_hva_to_gpa(kvm, start, end, kvm_age_hva_handler, NULL); } int kvm_test_age_hva(struct kvm *kvm, unsigned long hva) { + if (!kvm->arch.pgd) + return 0; trace_kvm_test_age_hva(hva); return handle_hva_to_gpa(kvm, hva, hva, kvm_test_age_hva_handler, NULL); } diff -u linux-4.4.0/arch/arm/mm/fault.c linux-4.4.0/arch/arm/mm/fault.c --- linux-4.4.0/arch/arm/mm/fault.c +++ linux-4.4.0/arch/arm/mm/fault.c @@ -314,8 +314,11 @@ * signal first. We do not need to release the mmap_sem because * it would already be released in __lock_page_or_retry in * mm/filemap.c. */ - if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current)) + if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current)) { + if (!user_mode(regs)) + goto no_context; return 0; + } /* * Major/minor page fault accounting is only done on the diff -u linux-4.4.0/arch/arm64/include/asm/elf.h linux-4.4.0/arch/arm64/include/asm/elf.h --- linux-4.4.0/arch/arm64/include/asm/elf.h +++ linux-4.4.0/arch/arm64/include/asm/elf.h @@ -120,12 +120,11 @@ #define ELF_EXEC_PAGESIZE PAGE_SIZE /* - * This is the location that an ET_DYN program is loaded if exec'ed. Typical - * use of this is to invoke "./ld.so someprog" to test out a new version of - * the loader. We need to make sure that it is out of the way of the program - * that it will "exec", and that there is sufficient room for the brk. + * This is the base location for PIE (ET_DYN with INTERP) loads. On + * 64-bit, this is above 4GB to leave the entire 32-bit address + * space open for things that want to use the area for 32-bit pointers. */ -#define ELF_ET_DYN_BASE (2 * TASK_SIZE_64 / 3) +#define ELF_ET_DYN_BASE (2 * TASK_SIZE_64 / 3) /* * When the program starts, a1 contains a pointer to a function to be @@ -165,7 +164,8 @@ #ifdef CONFIG_COMPAT -#define COMPAT_ELF_ET_DYN_BASE (2 * TASK_SIZE_32 / 3) +/* PIE load location for compat arm. Must match ARM ELF_ET_DYN_BASE. */ +#define COMPAT_ELF_ET_DYN_BASE 0x000400000UL /* AArch32 registers. */ #define COMPAT_ELF_NGREG 18 diff -u linux-4.4.0/arch/arm64/kernel/head.S linux-4.4.0/arch/arm64/kernel/head.S --- linux-4.4.0/arch/arm64/kernel/head.S +++ linux-4.4.0/arch/arm64/kernel/head.S @@ -446,6 +446,7 @@ * booted in EL1 or EL2 respectively. */ ENTRY(el2_setup) + msr SPsel, #1 // We want to use SP_EL{1,2} mrs x0, CurrentEL cmp x0, #CurrentEL_EL2 b.ne 1f diff -u linux-4.4.0/arch/arm64/mm/fault.c linux-4.4.0/arch/arm64/mm/fault.c --- linux-4.4.0/arch/arm64/mm/fault.c +++ linux-4.4.0/arch/arm64/mm/fault.c @@ -66,21 +66,21 @@ break; pud = pud_offset(pgd, addr); - printk(", *pud=%016llx", pud_val(*pud)); + pr_cont(", *pud=%016llx", pud_val(*pud)); if (pud_none(*pud) || pud_bad(*pud)) break; pmd = pmd_offset(pud, addr); - printk(", *pmd=%016llx", pmd_val(*pmd)); + pr_cont(", *pmd=%016llx", pmd_val(*pmd)); if (pmd_none(*pmd) || pmd_bad(*pmd)) break; pte = pte_offset_map(pmd, addr); - printk(", *pte=%016llx", pte_val(*pte)); + pr_cont(", *pte=%016llx", pte_val(*pte)); pte_unmap(pte); } while(0); - printk("\n"); + pr_cont("\n"); } #ifdef CONFIG_ARM64_HW_AFDBM @@ -313,8 +313,11 @@ * signal first. We do not need to release the mmap_sem because it * would already be released in __lock_page_or_retry in mm/filemap.c. */ - if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current)) + if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current)) { + if (!user_mode(regs)) + goto no_context; return 0; + } /* * Major/minor page fault accounting is only done on the initial @@ -444,7 +447,7 @@ { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 0 translation fault" }, { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 1 translation fault" }, { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 2 translation fault" }, - { do_page_fault, SIGSEGV, SEGV_MAPERR, "level 3 translation fault" }, + { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 3 translation fault" }, { do_bad, SIGBUS, 0, "unknown 8" }, { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 1 access flag fault" }, { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 2 access flag fault" }, diff -u linux-4.4.0/arch/mips/kernel/branch.c linux-4.4.0/arch/mips/kernel/branch.c --- linux-4.4.0/arch/mips/kernel/branch.c +++ linux-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-4.4.0/arch/mips/kernel/ptrace.c linux-4.4.0/arch/mips/kernel/ptrace.c --- linux-4.4.0/arch/mips/kernel/ptrace.c +++ linux-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-4.4.0/arch/mips/kernel/scall64-n32.S linux-4.4.0/arch/mips/kernel/scall64-n32.S --- linux-4.4.0/arch/mips/kernel/scall64-n32.S +++ linux-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-4.4.0/arch/mips/kernel/scall64-o32.S linux-4.4.0/arch/mips/kernel/scall64-o32.S --- linux-4.4.0/arch/mips/kernel/scall64-o32.S +++ linux-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-4.4.0/arch/mips/math-emu/cp1emu.c linux-4.4.0/arch/mips/math-emu/cp1emu.c --- linux-4.4.0/arch/mips/math-emu/cp1emu.c +++ linux-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-4.4.0/arch/parisc/mm/fault.c linux-4.4.0/arch/parisc/mm/fault.c --- linux-4.4.0/arch/parisc/mm/fault.c +++ linux-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-4.4.0/arch/powerpc/include/asm/atomic.h linux-4.4.0/arch/powerpc/include/asm/atomic.h --- linux-4.4.0/arch/powerpc/include/asm/atomic.h +++ linux-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-4.4.0/arch/powerpc/include/asm/reg.h linux-4.4.0/arch/powerpc/include/asm/reg.h --- linux-4.4.0/arch/powerpc/include/asm/reg.h +++ linux-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-4.4.0/arch/powerpc/include/asm/topology.h +++ linux-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-4.4.0/arch/powerpc/kernel/align.c linux-4.4.0/arch/powerpc/kernel/align.c --- linux-4.4.0/arch/powerpc/kernel/align.c +++ linux-4.4.0/arch/powerpc/kernel/align.c @@ -236,6 +236,28 @@ #define SWIZ_PTR(p) ((unsigned char __user *)((p) ^ swiz)) +#define __get_user_or_set_dar(_regs, _dest, _addr) \ + ({ \ + int rc = 0; \ + typeof(_addr) __addr = (_addr); \ + if (__get_user_inatomic(_dest, __addr)) { \ + _regs->dar = (unsigned long)__addr; \ + rc = -EFAULT; \ + } \ + rc; \ + }) + +#define __put_user_or_set_dar(_regs, _src, _addr) \ + ({ \ + int rc = 0; \ + typeof(_addr) __addr = (_addr); \ + if (__put_user_inatomic(_src, __addr)) { \ + _regs->dar = (unsigned long)__addr; \ + rc = -EFAULT; \ + } \ + rc; \ + }) + static int emulate_multiple(struct pt_regs *regs, unsigned char __user *addr, unsigned int reg, unsigned int nb, unsigned int flags, unsigned int instr, @@ -264,9 +286,10 @@ } else { unsigned long pc = regs->nip ^ (swiz & 4); - if (__get_user_inatomic(instr, - (unsigned int __user *)pc)) + if (__get_user_or_set_dar(regs, instr, + (unsigned int __user *)pc)) return -EFAULT; + if (swiz == 0 && (flags & SW)) instr = cpu_to_le32(instr); nb = (instr >> 11) & 0x1f; @@ -310,31 +333,31 @@ ((nb0 + 3) / 4) * sizeof(unsigned long)); for (i = 0; i < nb; ++i, ++p) - if (__get_user_inatomic(REG_BYTE(rptr, i ^ bswiz), - SWIZ_PTR(p))) + if (__get_user_or_set_dar(regs, REG_BYTE(rptr, i ^ bswiz), + SWIZ_PTR(p))) return -EFAULT; if (nb0 > 0) { rptr = ®s->gpr[0]; addr += nb; for (i = 0; i < nb0; ++i, ++p) - if (__get_user_inatomic(REG_BYTE(rptr, - i ^ bswiz), - SWIZ_PTR(p))) + if (__get_user_or_set_dar(regs, + REG_BYTE(rptr, i ^ bswiz), + SWIZ_PTR(p))) return -EFAULT; } } else { for (i = 0; i < nb; ++i, ++p) - if (__put_user_inatomic(REG_BYTE(rptr, i ^ bswiz), - SWIZ_PTR(p))) + if (__put_user_or_set_dar(regs, REG_BYTE(rptr, i ^ bswiz), + SWIZ_PTR(p))) return -EFAULT; if (nb0 > 0) { rptr = ®s->gpr[0]; addr += nb; for (i = 0; i < nb0; ++i, ++p) - if (__put_user_inatomic(REG_BYTE(rptr, - i ^ bswiz), - SWIZ_PTR(p))) + if (__put_user_or_set_dar(regs, + REG_BYTE(rptr, i ^ bswiz), + SWIZ_PTR(p))) return -EFAULT; } } @@ -346,29 +369,32 @@ * Only POWER6 has these instructions, and it does true little-endian, * so we don't need the address swizzling. */ -static int emulate_fp_pair(unsigned char __user *addr, unsigned int reg, - unsigned int flags) +static int emulate_fp_pair(struct pt_regs *regs, unsigned char __user *addr, + unsigned int reg, unsigned int flags) { char *ptr0 = (char *) ¤t->thread.TS_FPR(reg); char *ptr1 = (char *) ¤t->thread.TS_FPR(reg+1); - int i, ret, sw = 0; + int i, sw = 0; if (reg & 1) return 0; /* invalid form: FRS/FRT must be even */ if (flags & SW) sw = 7; - ret = 0; + for (i = 0; i < 8; ++i) { if (!(flags & ST)) { - ret |= __get_user(ptr0[i^sw], addr + i); - ret |= __get_user(ptr1[i^sw], addr + i + 8); + if (__get_user_or_set_dar(regs, ptr0[i^sw], addr + i)) + return -EFAULT; + if (__get_user_or_set_dar(regs, ptr1[i^sw], addr + i + 8)) + return -EFAULT; } else { - ret |= __put_user(ptr0[i^sw], addr + i); - ret |= __put_user(ptr1[i^sw], addr + i + 8); + if (__put_user_or_set_dar(regs, ptr0[i^sw], addr + i)) + return -EFAULT; + if (__put_user_or_set_dar(regs, ptr1[i^sw], addr + i + 8)) + return -EFAULT; } } - if (ret) - return -EFAULT; + return 1; /* exception handled and fixed up */ } @@ -378,24 +404,27 @@ { char *ptr0 = (char *)®s->gpr[reg]; char *ptr1 = (char *)®s->gpr[reg+1]; - int i, ret, sw = 0; + int i, sw = 0; if (reg & 1) return 0; /* invalid form: GPR must be even */ if (flags & SW) sw = 7; - ret = 0; + for (i = 0; i < 8; ++i) { if (!(flags & ST)) { - ret |= __get_user(ptr0[i^sw], addr + i); - ret |= __get_user(ptr1[i^sw], addr + i + 8); + if (__get_user_or_set_dar(regs, ptr0[i^sw], addr + i)) + return -EFAULT; + if (__get_user_or_set_dar(regs, ptr1[i^sw], addr + i + 8)) + return -EFAULT; } else { - ret |= __put_user(ptr0[i^sw], addr + i); - ret |= __put_user(ptr1[i^sw], addr + i + 8); + if (__put_user_or_set_dar(regs, ptr0[i^sw], addr + i)) + return -EFAULT; + if (__put_user_or_set_dar(regs, ptr1[i^sw], addr + i + 8)) + return -EFAULT; } } - if (ret) - return -EFAULT; + return 1; /* exception handled and fixed up */ } #endif /* CONFIG_PPC64 */ @@ -688,9 +717,14 @@ for (j = 0; j < length; j += elsize) { for (i = 0; i < elsize; ++i) { if (flags & ST) - ret |= __put_user(ptr[i^sw], addr + i); + ret = __put_user_or_set_dar(regs, ptr[i^sw], + addr + i); else - ret |= __get_user(ptr[i^sw], addr + i); + ret = __get_user_or_set_dar(regs, ptr[i^sw], + addr + i); + + if (ret) + return ret; } ptr += elsize; #ifdef __LITTLE_ENDIAN__ @@ -740,7 +774,7 @@ unsigned int dsisr; unsigned char __user *addr; unsigned long p, swiz; - int ret, i; + int i; union data { u64 ll; double dd; @@ -923,7 +957,7 @@ if (flags & F) { /* Special case for 16-byte FP loads and stores */ PPC_WARN_ALIGNMENT(fp_pair, regs); - return emulate_fp_pair(addr, reg, flags); + return emulate_fp_pair(regs, addr, reg, flags); } else { #ifdef CONFIG_PPC64 /* Special case for 16-byte loads and stores */ @@ -953,15 +987,12 @@ } data.ll = 0; - ret = 0; p = (unsigned long)addr; for (i = 0; i < nb; i++) - ret |= __get_user_inatomic(data.v[start + i], - SWIZ_PTR(p++)); - - if (unlikely(ret)) - return -EFAULT; + if (__get_user_or_set_dar(regs, data.v[start + i], + SWIZ_PTR(p++))) + return -EFAULT; } else if (flags & F) { data.ll = current->thread.TS_FPR(reg); @@ -1033,15 +1064,13 @@ break; } - ret = 0; p = (unsigned long)addr; for (i = 0; i < nb; i++) - ret |= __put_user_inatomic(data.v[start + i], - SWIZ_PTR(p++)); + if (__put_user_or_set_dar(regs, data.v[start + i], + SWIZ_PTR(p++))) + return -EFAULT; - if (unlikely(ret)) - return -EFAULT; } else if (flags & F) current->thread.TS_FPR(reg) = data.ll; else diff -u linux-4.4.0/arch/powerpc/kernel/setup_64.c linux-4.4.0/arch/powerpc/kernel/setup_64.c --- linux-4.4.0/arch/powerpc/kernel/setup_64.c +++ linux-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-4.4.0/arch/powerpc/kvm/book3s_hv.c linux-4.4.0/arch/powerpc/kvm/book3s_hv.c --- linux-4.4.0/arch/powerpc/kvm/book3s_hv.c +++ linux-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-4.4.0/arch/powerpc/kvm/book3s_hv_rmhandlers.S linux-4.4.0/arch/powerpc/kvm/book3s_hv_rmhandlers.S --- linux-4.4.0/arch/powerpc/kvm/book3s_hv_rmhandlers.S +++ linux-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-4.4.0/arch/powerpc/lib/sstep.c linux-4.4.0/arch/powerpc/lib/sstep.c --- linux-4.4.0/arch/powerpc/lib/sstep.c +++ linux-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-4.4.0/arch/s390/include/asm/mmu.h linux-4.4.0/arch/s390/include/asm/mmu.h --- linux-4.4.0/arch/s390/include/asm/mmu.h +++ linux-4.4.0/arch/s390/include/asm/mmu.h @@ -5,6 +5,7 @@ #include typedef struct { + spinlock_t lock; cpumask_t cpu_attach_mask; atomic_t attach_count; unsigned int flush_mm; @@ -23,6 +24,7 @@ } mm_context_t; #define INIT_MM_CONTEXT(name) \ + .context.lock = __SPIN_LOCK_UNLOCKED(name.context.lock), \ .context.list_lock = __SPIN_LOCK_UNLOCKED(name.context.list_lock), \ .context.pgtable_list = LIST_HEAD_INIT(name.context.pgtable_list), \ .context.gmap_list = LIST_HEAD_INIT(name.context.gmap_list), diff -u linux-4.4.0/arch/s390/include/asm/mmu_context.h linux-4.4.0/arch/s390/include/asm/mmu_context.h --- linux-4.4.0/arch/s390/include/asm/mmu_context.h +++ linux-4.4.0/arch/s390/include/asm/mmu_context.h @@ -15,6 +15,7 @@ static inline int init_new_context(struct task_struct *tsk, struct mm_struct *mm) { + spin_lock_init(&mm->context.lock); spin_lock_init(&mm->context.list_lock); INIT_LIST_HEAD(&mm->context.pgtable_list); INIT_LIST_HEAD(&mm->context.gmap_list); @@ -114,8 +115,7 @@ cpu_relax(); cpumask_set_cpu(smp_processor_id(), mm_cpumask(mm)); - if (mm->context.flush_mm) - __tlb_flush_mm(mm); + __tlb_flush_mm_lazy(mm); preempt_enable(); } set_fs(current->thread.mm_segment); diff -u linux-4.4.0/arch/s390/include/asm/tlbflush.h linux-4.4.0/arch/s390/include/asm/tlbflush.h --- linux-4.4.0/arch/s390/include/asm/tlbflush.h +++ linux-4.4.0/arch/s390/include/asm/tlbflush.h @@ -25,17 +25,6 @@ : : "a" (2048), "a" (asce) : "cc"); } -/* - * Flush TLB entries for a specific ASCE on the local CPU - */ -static inline void __tlb_flush_idte_local(unsigned long asce) -{ - /* Local TLB flush for the mm */ - asm volatile( - " .insn rrf,0xb98e0000,0,%0,%1,1" - : : "a" (2048), "a" (asce) : "cc"); -} - #ifdef CONFIG_SMP void smp_ptlb_all(void); @@ -58,51 +47,26 @@ } /* - * Flush TLB entries for a specific mm on all CPUs (in case gmap is used - * this implicates multiple ASCEs!). + * Flush TLB entries for a specific ASCE on all CPUs. */ -static inline void __tlb_flush_full(struct mm_struct *mm) +static inline void __tlb_flush_mm(struct mm_struct * mm) { + /* + * If the machine has IDTE we prefer to do a per mm flush + * on all cpus instead of doing a local flush if the mm + * only ran on the local cpu. + */ preempt_disable(); atomic_add(0x10000, &mm->context.attach_count); - if (cpumask_equal(mm_cpumask(mm), cpumask_of(smp_processor_id()))) { - /* Local TLB flush */ - __tlb_flush_local(); + /* Reset TLB flush mask */ + if (MACHINE_HAS_TLB_LC) + cpumask_copy(mm_cpumask(mm), &mm->context.cpu_attach_mask); + barrier(); + if (MACHINE_HAS_IDTE && list_empty(&mm->context.gmap_list)) { + __tlb_flush_idte(mm->context.asce); } else { /* Global TLB flush */ __tlb_flush_global(); - /* Reset TLB flush mask */ - if (MACHINE_HAS_TLB_LC) - cpumask_copy(mm_cpumask(mm), - &mm->context.cpu_attach_mask); - } - atomic_sub(0x10000, &mm->context.attach_count); - preempt_enable(); -} - -/* - * Flush TLB entries for a specific ASCE on all CPUs. Should never be used - * when more than one asce (e.g. gmap) ran on this mm. - */ -static inline void __tlb_flush_asce(struct mm_struct *mm, unsigned long asce) -{ - int active, count; - - preempt_disable(); - active = (mm == current->active_mm) ? 1 : 0; - count = atomic_add_return(0x10000, &mm->context.attach_count); - if (MACHINE_HAS_TLB_LC && (count & 0xffff) <= active && - cpumask_equal(mm_cpumask(mm), cpumask_of(smp_processor_id()))) { - __tlb_flush_idte_local(asce); - } else { - if (MACHINE_HAS_IDTE) - __tlb_flush_idte(asce); - else - __tlb_flush_global(); - /* Reset TLB flush mask */ - if (MACHINE_HAS_TLB_LC) - cpumask_copy(mm_cpumask(mm), - &mm->context.cpu_attach_mask); } atomic_sub(0x10000, &mm->context.attach_count); preempt_enable(); @@ -117,47 +81,35 @@ } #else #define __tlb_flush_global() __tlb_flush_local() -#define __tlb_flush_full(mm) __tlb_flush_local() /* * Flush TLB entries for a specific ASCE on all CPUs. */ static inline void __tlb_flush_asce(struct mm_struct *mm, unsigned long asce) { - if (MACHINE_HAS_TLB_LC) - __tlb_flush_idte_local(asce); - else - __tlb_flush_local(); + __tlb_flush_local(); } static inline void __tlb_flush_kernel(void) { - if (MACHINE_HAS_TLB_LC) - __tlb_flush_idte_local(init_mm.context.asce); - else - __tlb_flush_local(); + __tlb_flush_local(); } -#endif static inline void __tlb_flush_mm(struct mm_struct * mm) { - /* - * If the machine has IDTE we prefer to do a per mm flush - * on all cpus instead of doing a local flush if the mm - * only ran on the local cpu. - */ - if (MACHINE_HAS_IDTE && list_empty(&mm->context.gmap_list)) - __tlb_flush_asce(mm, mm->context.asce); - else - __tlb_flush_full(mm); + __tlb_flush_local(); } +#endif + static inline void __tlb_flush_mm_lazy(struct mm_struct * mm) { + spin_lock(&mm->context.lock); if (mm->context.flush_mm) { - __tlb_flush_mm(mm); mm->context.flush_mm = 0; + __tlb_flush_mm(mm); } + spin_unlock(&mm->context.lock); } /* diff -u linux-4.4.0/arch/s390/net/bpf_jit_comp.c linux-4.4.0/arch/s390/net/bpf_jit_comp.c --- linux-4.4.0/arch/s390/net/bpf_jit_comp.c +++ linux-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-4.4.0/arch/sparc/include/asm/mmu_context_64.h linux-4.4.0/arch/sparc/include/asm/mmu_context_64.h --- linux-4.4.0/arch/sparc/include/asm/mmu_context_64.h +++ linux-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-4.4.0/arch/sparc/kernel/smp_64.c linux-4.4.0/arch/sparc/kernel/smp_64.c --- linux-4.4.0/arch/sparc/kernel/smp_64.c +++ linux-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-4.4.0/arch/sparc/kernel/traps_64.c linux-4.4.0/arch/sparc/kernel/traps_64.c --- linux-4.4.0/arch/sparc/kernel/traps_64.c +++ linux-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-4.4.0/arch/sparc/kernel/tsb.S linux-4.4.0/arch/sparc/kernel/tsb.S --- linux-4.4.0/arch/sparc/kernel/tsb.S +++ linux-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-4.4.0/arch/x86/events/intel/lbr.c linux-4.4.0/arch/x86/events/intel/lbr.c --- linux-4.4.0/arch/x86/events/intel/lbr.c +++ linux-4.4.0/arch/x86/events/intel/lbr.c @@ -153,7 +153,7 @@ */ if (cpuc->lbr_sel) lbr_select = cpuc->lbr_sel->config; - if (!pmi) + if (!pmi && cpuc->lbr_sel) wrmsrl(MSR_LBR_SELECT, lbr_select); rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctl); @@ -432,8 +432,10 @@ int out = 0; int num = x86_pmu.lbr_nr; - if (cpuc->lbr_sel->config & LBR_CALL_STACK) - num = tos; + if (cpuc->lbr_sel) { + if (cpuc->lbr_sel->config & LBR_CALL_STACK) + num = tos; + } for (i = 0; i < num; i++) { unsigned long lbr_idx = (tos - i) & mask; diff -u linux-4.4.0/arch/x86/include/asm/elf.h linux-4.4.0/arch/x86/include/asm/elf.h --- linux-4.4.0/arch/x86/include/asm/elf.h +++ linux-4.4.0/arch/x86/include/asm/elf.h @@ -204,6 +204,7 @@ #define ELF_CORE_COPY_REGS(pr_reg, regs) \ do { \ + unsigned long base; \ unsigned v; \ (pr_reg)[0] = (regs)->r15; \ (pr_reg)[1] = (regs)->r14; \ @@ -226,8 +227,8 @@ (pr_reg)[18] = (regs)->flags; \ (pr_reg)[19] = (regs)->sp; \ (pr_reg)[20] = (regs)->ss; \ - (pr_reg)[21] = current->thread.fs; \ - (pr_reg)[22] = current->thread.gs; \ + rdmsrl(MSR_FS_BASE, base); (pr_reg)[21] = base; \ + rdmsrl(MSR_KERNEL_GS_BASE, base); (pr_reg)[22] = base; \ asm("movl %%ds,%0" : "=r" (v)); (pr_reg)[23] = v; \ asm("movl %%es,%0" : "=r" (v)); (pr_reg)[24] = v; \ asm("movl %%fs,%0" : "=r" (v)); (pr_reg)[25] = v; \ @@ -245,12 +246,13 @@ #define CORE_DUMP_USE_REGSET #define ELF_EXEC_PAGESIZE 4096 -/* This is the location that an ET_DYN program is loaded if exec'ed. Typical - use of this is to invoke "./ld.so someprog" to test out a new version of - the loader. We need to make sure that it is out of the way of the program - that it will "exec", and that there is sufficient room for the brk. */ - -#define ELF_ET_DYN_BASE (TASK_SIZE / 3 * 2) +/* + * This is the base location for PIE (ET_DYN with INTERP) loads. On + * 64-bit, this is above 4GB to leave the entire 32-bit address + * space open for things that want to use the area for 32-bit pointers. + */ +#define ELF_ET_DYN_BASE (mmap_is_ia32() ? 0x000400000UL : \ + (TASK_SIZE / 3 * 2)) /* This yields a mask that user programs can use to figure out what instruction set this CPU supports. This could be done in user space, diff -u linux-4.4.0/arch/x86/include/asm/msr-index.h linux-4.4.0/arch/x86/include/asm/msr-index.h --- linux-4.4.0/arch/x86/include/asm/msr-index.h +++ linux-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-4.4.0/arch/x86/include/asm/pat.h linux-4.4.0/arch/x86/include/asm/pat.h --- linux-4.4.0/arch/x86/include/asm/pat.h +++ linux-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-4.4.0/arch/x86/kernel/acpi/boot.c linux-4.4.0/arch/x86/kernel/acpi/boot.c --- linux-4.4.0/arch/x86/kernel/acpi/boot.c +++ linux-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-4.4.0/arch/x86/kernel/apic/io_apic.c linux-4.4.0/arch/x86/kernel/apic/io_apic.c --- linux-4.4.0/arch/x86/kernel/apic/io_apic.c +++ linux-4.4.0/arch/x86/kernel/apic/io_apic.c @@ -2115,7 +2115,7 @@ int idx; idx = find_irq_entry(apic1, pin1, mp_INT); if (idx != -1 && irq_trigger(idx)) - unmask_ioapic_irq(irq_get_chip_data(0)); + unmask_ioapic_irq(irq_get_irq_data(0)); } irq_domain_deactivate_irq(irq_data); irq_domain_activate_irq(irq_data); diff -u linux-4.4.0/arch/x86/kernel/cpu/mcheck/mce_amd.c linux-4.4.0/arch/x86/kernel/cpu/mcheck/mce_amd.c --- linux-4.4.0/arch/x86/kernel/cpu/mcheck/mce_amd.c +++ linux-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-4.4.0/arch/x86/kernel/kvm.c linux-4.4.0/arch/x86/kernel/kvm.c --- linux-4.4.0/arch/x86/kernel/kvm.c +++ linux-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-4.4.0/arch/x86/kernel/setup.c linux-4.4.0/arch/x86/kernel/setup.c --- linux-4.4.0/arch/x86/kernel/setup.c +++ linux-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-4.4.0/arch/x86/kvm/cpuid.c linux-4.4.0/arch/x86/kvm/cpuid.c --- linux-4.4.0/arch/x86/kvm/cpuid.c +++ linux-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-4.4.0/arch/x86/kvm/vmx.c linux-4.4.0/arch/x86/kvm/vmx.c --- linux-4.4.0/arch/x86/kvm/vmx.c +++ linux-4.4.0/arch/x86/kvm/vmx.c @@ -864,7 +864,6 @@ static u64 construct_eptp(unsigned long root_hpa); static void kvm_cpu_vmxon(u64 addr); static void kvm_cpu_vmxoff(void); -static bool vmx_mpx_supported(void); static bool vmx_xsaves_supported(void); static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr); static void vmx_set_segment(struct kvm_vcpu *vcpu, @@ -2029,8 +2028,8 @@ /* Allow posting non-urgent interrupts */ new.sn = 0; - } while (cmpxchg(&pi_desc->control, old.control, - new.control) != old.control); + } while (cmpxchg64(&pi_desc->control, old.control, + new.control) != old.control); } /* * Switches to specified vcpu, until a matching vcpu_put(), but assumes @@ -2542,7 +2541,7 @@ VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER | VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT; - if (vmx_mpx_supported()) + if (kvm_mpx_supported()) vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS; /* We support free control of debug control saving. */ @@ -2563,7 +2562,7 @@ VM_ENTRY_LOAD_IA32_PAT; vmx->nested.nested_vmx_entry_ctls_high |= (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER); - if (vmx_mpx_supported()) + if (kvm_mpx_supported()) vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS; /* We support free control of debug control loading. */ @@ -2814,7 +2813,8 @@ msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP); break; case MSR_IA32_BNDCFGS: - if (!vmx_mpx_supported()) + if (!kvm_mpx_supported() || + (!msr_info->host_initiated && !guest_cpuid_has_mpx(vcpu))) return 1; msr_info->data = vmcs_read64(GUEST_BNDCFGS); break; @@ -2891,7 +2891,11 @@ vmcs_writel(GUEST_SYSENTER_ESP, data); break; case MSR_IA32_BNDCFGS: - if (!vmx_mpx_supported()) + if (!kvm_mpx_supported() || + (!msr_info->host_initiated && !guest_cpuid_has_mpx(vcpu))) + return 1; + if (is_noncanonical_address(data & PAGE_MASK) || + (data & MSR_IA32_BNDCFGS_RSVD)) return 1; vmcs_write64(GUEST_BNDCFGS, data); break; @@ -3364,7 +3368,7 @@ for (i = j = 0; i < max_shadow_read_write_fields; i++) { switch (shadow_read_write_fields[i]) { case GUEST_BNDCFGS: - if (!vmx_mpx_supported()) + if (!kvm_mpx_supported()) continue; break; default: @@ -4538,21 +4542,30 @@ { #ifdef CONFIG_SMP if (vcpu->mode == IN_GUEST_MODE) { - struct vcpu_vmx *vmx = to_vmx(vcpu); - /* - * Currently, we don't support urgent interrupt, - * all interrupts are recognized as non-urgent - * interrupt, so we cannot post interrupts when - * 'SN' is set. + * The vector of interrupt to be delivered to vcpu had + * been set in PIR before this function. + * + * Following cases will be reached in this block, and + * we always send a notification event in all cases as + * explained below. * - * If the vcpu is in guest mode, it means it is - * running instead of being scheduled out and - * waiting in the run queue, and that's the only - * case when 'SN' is set currently, warning if - * 'SN' is set. + * Case 1: vcpu keeps in non-root mode. Sending a + * notification event posts the interrupt to vcpu. + * + * Case 2: vcpu exits to root mode and is still + * runnable. PIR will be synced to vIRR before the + * next vcpu entry. Sending a notification event in + * this case has no effect, as vcpu is not in root + * mode. + * + * Case 3: vcpu exits to root mode and is blocked. + * vcpu_block() has already synced PIR to vIRR and + * never blocks vcpu if vIRR is not cleared. Therefore, + * a blocked vcpu here does not wait for any requested + * interrupts in PIR, and sending a notification event + * which has no effect is safe here. */ - WARN_ON_ONCE(pi_test_sn(&vmx->pi_desc)); apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), POSTED_INTR_VECTOR); @@ -6260,7 +6273,6 @@ vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false); vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false); vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false); - vmx_disable_intercept_for_msr(MSR_IA32_BNDCFGS, true); memcpy(vmx_msr_bitmap_legacy_x2apic, vmx_msr_bitmap_legacy, PAGE_SIZE); @@ -9683,6 +9695,11 @@ vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, page_to_phys(vmx->nested.virtual_apic_page)); vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold); + } else { +#ifdef CONFIG_X86_64 + exec_control |= CPU_BASED_CR8_LOAD_EXITING | + CPU_BASED_CR8_STORE_EXITING; +#endif } if (cpu_has_vmx_msr_bitmap() && @@ -10268,7 +10285,7 @@ vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS); vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP); vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP); - if (vmx_mpx_supported()) + if (kvm_mpx_supported()) vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS); if (nested_cpu_has_xsaves(vmcs12)) vmcs12->xss_exit_bitmap = vmcs_read64(XSS_EXIT_BITMAP); @@ -10691,8 +10708,8 @@ /* set 'NV' to 'wakeup vector' */ new.nv = POSTED_INTR_WAKEUP_VECTOR; - } while (cmpxchg(&pi_desc->control, old.control, - new.control) != old.control); + } while (cmpxchg64(&pi_desc->control, old.control, + new.control) != old.control); return 0; } @@ -10723,8 +10740,8 @@ /* set 'NV' to 'notification vector' */ new.nv = POSTED_INTR_VECTOR; - } while (cmpxchg(&pi_desc->control, old.control, - new.control) != old.control); + } while (cmpxchg64(&pi_desc->control, old.control, + new.control) != old.control); if(vcpu->pre_pcpu != -1) { spin_lock_irqsave( @@ -10755,7 +10772,7 @@ struct kvm_lapic_irq irq; struct kvm_vcpu *vcpu; struct vcpu_data vcpu_info; - int idx, ret = -EINVAL; + int idx, ret = 0; if (!kvm_arch_has_assigned_device(kvm) || !irq_remapping_cap(IRQ_POSTING_CAP)) @@ -10763,7 +10780,12 @@ idx = srcu_read_lock(&kvm->irq_srcu); irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu); - BUG_ON(guest_irq >= irq_rt->nr_rt_entries); + if (guest_irq >= irq_rt->nr_rt_entries || + hlist_empty(&irq_rt->map[guest_irq])) { + pr_warn_once("no route for guest_irq %u/%u (broken user space?)\n", + guest_irq, irq_rt->nr_rt_entries); + goto out; + } hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) { if (e->type != KVM_IRQ_ROUTING_MSI) @@ -10793,12 +10815,8 @@ if (set) ret = irq_set_vcpu_affinity(host_irq, &vcpu_info); - else { - /* suppress notification event before unposting */ - pi_set_sn(vcpu_to_pi_desc(vcpu)); + else ret = irq_set_vcpu_affinity(host_irq, NULL); - pi_clear_sn(vcpu_to_pi_desc(vcpu)); - } if (ret < 0) { printk(KERN_INFO "%s: failed to update PI IRTE\n", diff -u linux-4.4.0/arch/x86/lib/copy_user_64.S linux-4.4.0/arch/x86/lib/copy_user_64.S --- linux-4.4.0/arch/x86/lib/copy_user_64.S +++ linux-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-4.4.0/arch/x86/mm/pat.c linux-4.4.0/arch/x86/mm/pat.c --- linux-4.4.0/arch/x86/mm/pat.c +++ linux-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-4.4.0/block/blk-core.c linux-4.4.0/block/blk-core.c --- linux-4.4.0/block/blk-core.c +++ linux-4.4.0/block/blk-core.c @@ -217,7 +217,7 @@ **/ void blk_start_queue(struct request_queue *q) { - WARN_ON(!irqs_disabled()); + WARN_ON(!in_interrupt() && !irqs_disabled()); queue_flag_clear(QUEUE_FLAG_STOPPED, q); __blk_run_queue(q); diff -u linux-4.4.0/block/blk-mq.c linux-4.4.0/block/blk-mq.c --- linux-4.4.0/block/blk-mq.c +++ linux-4.4.0/block/blk-mq.c @@ -1295,13 +1295,13 @@ blk_queue_bounce(q, &bio); + blk_queue_split(q, &bio, q->bio_split); + if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) { bio_io_error(bio); return BLK_QC_T_NONE; } - blk_queue_split(q, &bio, q->bio_split); - if (!is_flush_fua && !blk_queue_nomerges(q) && blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq)) return BLK_QC_T_NONE; diff -u linux-4.4.0/crypto/algif_skcipher.c linux-4.4.0/crypto/algif_skcipher.c --- linux-4.4.0/crypto/algif_skcipher.c +++ linux-4.4.0/crypto/algif_skcipher.c @@ -86,8 +86,13 @@ } sgl = sreq->tsg; n = sg_nents(sgl); - for_each_sg(sgl, sg, n, i) - put_page(sg_page(sg)); + for_each_sg(sgl, sg, n, i) { + struct page *page = sg_page(sg); + + /* some SGs may not have a page mapped */ + if (page && atomic_read(&page->_count)) + put_page(page); + } kfree(sreq->tsg); } @@ -138,8 +143,10 @@ sg_init_table(sgl->sg, MAX_SGL_ENTS + 1); sgl->cur = 0; - if (sg) + if (sg) { sg_chain(sg, MAX_SGL_ENTS + 1, sgl->sg); + sg_unmark_end(sg + (MAX_SGL_ENTS - 1)); + } list_add_tail(&sgl->list, &ctx->tsgl); } reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/abiname +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/abiname @@ -1 +0,0 @@ -89 reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/amd64/generic +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/amd64/generic @@ -1,18868 +0,0 @@ -EXPORT_SYMBOL arch/x86/kvm/kvm 0x21307503 kvm_cpu_has_pending_timer -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x73892a61 mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/acpi/nfit 0xa7e9a159 to_nfit_uuid -EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type -EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister -EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register -EXPORT_SYMBOL drivers/acpi/video 0xdf6305b2 acpi_video_get_edid -EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type -EXPORT_SYMBOL drivers/atm/suni 0xb59a0e5b suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0xcbd910c5 uPD98402_init -EXPORT_SYMBOL drivers/bcma/bcma 0x6c87f3ad bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0x96442878 bcma_core_irq -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x04e32239 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x0541e9fa pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x1b7edc3f pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x4d5cf25e paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x719c6c02 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x75841946 pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x91e14a15 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0x97ddd472 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0xa1c15fd4 pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xbb303465 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xcaaab296 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0xef895180 paride_register -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x0a6d360c btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x44a42b1b ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x71516b90 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8ed393a6 ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae3694b0 ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xce461bc8 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte -EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x1de53f3f st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x8f4b916c st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xcada85b9 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xfc1089b3 st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x03389096 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x97a4d09d xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xcbf3dda3 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x065f5cd0 dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x1757631d dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x5f402bf0 dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x75035b47 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xb768f15a dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xd7c8f9bd dw_dma_get_src_addr -EXPORT_SYMBOL drivers/edac/edac_core 0xdaa2bf4d edac_mc_find -EXPORT_SYMBOL drivers/firewire/firewire-core 0x01c66179 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0829794a fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1b52f552 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1bf8afe3 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x22dabeca fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x25365de2 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x36bb7580 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3dc672c0 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4b7c66f3 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x504b0ac3 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x67f2500c fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6c9afc9b fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fa47fbf fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x87e010bc fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8c2bd7c1 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x97e38c1f fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbd40562e fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbf686bc3 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc101ad14 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc6473ff7 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc8c1ffd6 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd1cc24cb fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd20b6409 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd4e86221 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xee8c73a7 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfbde452d fw_core_handle_request -EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request -EXPORT_SYMBOL drivers/fmc/fmc 0x1c79cc49 fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0x1f2f7e2e fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0x32e90d0c fmc_driver_register -EXPORT_SYMBOL drivers/fmc/fmc 0x3fdbfbd2 fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x447794d3 fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0x64afc280 fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0x73a9dfcb fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x7a0963db fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0x9c85f9a9 fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xd17c8c8b fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xf5c5e821 fmc_show_sdb_tree -EXPORT_SYMBOL drivers/gpu/drm/amd/amdkfd/amdkfd 0x21402bc2 kgd2kfd_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x000fd2c6 drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0x003cb54f drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x009790dd drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00da1789 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x018ba21b drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x030d311a drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0452a0d4 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05a05b09 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06563805 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f89954 drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x076c0bb7 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08c7fb11 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09cc461e drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09ced40c drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a67c624 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b021294 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bde7b03 drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d0e1f33 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d4c9bf2 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0db22ef8 drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7f4748 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10182265 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1054e10c drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x113efbcb drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1188d8a9 drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12246847 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x124c43c9 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13618703 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14e79d4d drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15444d40 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15a07e40 drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1675783c drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x168cd1bb drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x169031c6 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18e48a6d drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1aff4e2c drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b89b901 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e18b0f4 drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e95a927 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f4b63fc drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f6a9f87 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fd9e7a5 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23174572 drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2321a14d drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23a01006 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f9e8f1 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26484f9e drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x286fdf03 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ac91b4b drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2addfe84 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c1ebacb drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2db9aa1f drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ecedb1b drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f376f2d drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30dcb261 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x311b4519 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34c2aaf2 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3516afda drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x359c0428 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x360d1bcb drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3625dfc1 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3626da2d drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3837ab69 drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3abc2050 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c20e769 drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f3fd907 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4160edab drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41fdb2cc drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42182f68 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4219741d drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42673475 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43b56207 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x457357ba drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4591d88d drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x475c9fd0 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4888856f drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x492270a3 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a9099a3 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4af19c72 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b9e7a25 drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bdd624b drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4be713db drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d3e3d6f drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea7e8ed drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f531ba9 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e91821 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x515e4fce drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x520afcd4 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52fd0ca1 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53ce5e1a drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54473d7a drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55040b08 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x557ee014 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55b3e797 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55b3eea8 drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x577afa97 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5869fd86 drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58ea1b04 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59dd08e0 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b1411cb drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c006959 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x643c195e drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6512f48b drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6660a806 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66a2b23f drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66c151a8 drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66e2bc83 drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67c10a5d drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68a85e16 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69d26233 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dd72b8b drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e743cf1 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e77c129 drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ecda39b drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71fff7e3 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x727596e4 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x727c8eab drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72bff02f drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x739fbd69 drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73ac97e1 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73c59bba drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7401cc88 drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7419efd2 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76758778 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76797cb5 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77453f6f drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7881bd92 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78e31483 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x790f4164 drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7940fb49 drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a03c688 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a24a0e1 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d1b2740 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d26fffc drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e7e0b4f drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f5e4ffb drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82d7db18 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x830cd195 drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83266ef7 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8357cd64 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83f2dc4d drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84f69062 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85bd4e42 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86dc5442 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871878df drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89f07f42 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bcf9af8 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cb09846 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cbe20fc drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d391d24 drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d410f43 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e33c398 drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f30cd42 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91352a6c drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91605787 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91891e3a drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92a12ce4 drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x933de764 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93a58281 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94a3dbac drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97c4e9bd drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x988032bf drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a01c3a8 drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b3f32d2 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9da8bb2a drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9df232e7 drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f1dd56b drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa268db71 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa34fff52 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3e98b9f drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4de9565 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa51d7d95 drm_legacy_addbufs_agp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa76119cb drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7c042f9 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7d05a72 drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa825aa86 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa934ce70 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabd7c28c drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad56bea1 drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadbde493 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf7ec01f drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb111bc1e drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11e18d3 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11f7065 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1922e55 drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb224d60f drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb34de41f drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4798351 drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4d7173c drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5362b30 drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6ab5635 drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6d59a83 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb6796fb drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd1f86a3 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd90e7cc drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdd79af1 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe4f9274 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbedf2e5e drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2c631f9 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3f962d7 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7c07834 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8203e79 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc875a6bc drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8ac746b drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaa28b48 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcabf704d drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcac7440b drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb13eb8d drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb44193f drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb53fc25 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb80edf1 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc786338 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc532bc drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf48acec drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd29f0dc0 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2b0828e drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3c34fd5 drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3d46d06 drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd537a20e drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd76dfa22 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9bc36 drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8d6f478 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb223e99 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb42416c drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb710b4d drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf478a23 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdffb25fc drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe02fad5f drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0d41be9 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1dcf866 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe31e836c drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe32ace21 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe379cf2d drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4a8187d drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe522d4ba drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe59182e2 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5f541be drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6258345 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe63ec610 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe688ef0f drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6e9681d drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe89eb9f5 drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe985e55e drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe98d4c7c drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb2e0430 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec47a85e drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee3f91de drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee70029c drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef0ae3a3 drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef812b24 drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0a2d20e drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0e1e6d4 drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1789efd drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1dc64c9 drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf24691a3 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf285b94f drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf346c351 drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3e196a6 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf428e2c5 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf47f71b8 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4c15bb0 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf524c64f drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf629c116 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf686a4be drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7d34579 drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7e17d47 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf80dbfb6 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf875e5ec drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8ca3fd1 drm_agp_bind_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8fd12fa drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf92ff326 drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9ad37c4 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb325563 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb344282 drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc618818 drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfef35dbb drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff385a04 drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffa44048 drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffdaaf50 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x007a6df6 drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00c218d0 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01cd6189 drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01efaf63 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0392a001 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07e9ab17 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x097224a0 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b6db3d8 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c5feff6 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cf85a89 drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10c3f572 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1348ced7 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17fa0279 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bec68c5 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e098275 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21b8ec43 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22fce6fc drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23132024 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2449fa14 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x283002af drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28ff60ab drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bc20352 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d208848 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d5006a3 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30a2a6c3 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30ca63ae drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30e837ee drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x325751d9 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34c1adfa drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35c3b2c0 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x376466ad drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38a74c9e drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a32f8d9 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ba9a8b8 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c3afea4 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c419a93 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d448b68 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ecdc1da drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40535555 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x420eb9e2 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49e14826 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ac835d6 drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5233e58c drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54a72652 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5505595d drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55bab695 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5614c07b drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59a7448f drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b2f3025 drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65ea54c3 drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6621e936 drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67f4a1ce drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6863da14 drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dbd2dd7 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e2f1846 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x762ff90f __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76c86209 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79efe2e1 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a453603 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b057f2e drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b5cffd2 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c9d97b5 drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ec2c2a1 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f99723a drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8095e2e2 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x814a12b1 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82752a04 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842e74df drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86902d61 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86fa438d drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8852780d drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894fba73 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c5bdeaa drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cfe243c drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8da7abbe drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e0f97cc drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f2776fa drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f8ff49f drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fc50431 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93ddbbaa drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98f00222 drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9973cb2e drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99c7372b drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a770a09 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e6f30b7 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0a124af drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3bfed14 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa42f8a20 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa55dc054 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5a38f78 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6272de6 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa76a2829 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9c69e01 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaf31527 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaeaaa736 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4c0f4a2 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb74d5b19 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7fd38d4 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9524e55 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb5a79e8 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd866bcf drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe984423 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0218aa8 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0495f95 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc306bc10 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc49843ae drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6405632 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6c4596f drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7bbaef8 drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8da5ba8 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcae6228e drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcce6e74d drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xceb740cb drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcffdd4b8 drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd672f78c drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd986d2a3 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdba39523 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe06c348e drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe39b0904 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5e5829e drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe68119c9 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe74d04f2 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7e12b85 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed2983c2 drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1bd6aed drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1ed62d1 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf40255ae drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5e2e2e2 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7794534 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9cb74d6 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa08df88 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa9d6c79 drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfab20ad5 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfabbe773 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb8f7c4b drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc18cb3a drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc5c2208 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc9cf550 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcfda14b drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd9cc723 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffa0f077 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfff1e28c drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0055bc41 ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0cc37a24 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10b86f13 ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16253d85 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ac201fb ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e7a1053 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20545ab3 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22ec80fe ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24765c33 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28e05053 ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ae4b371 ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3222284b ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3730d5d4 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3743eec9 ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e7b9c0e ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x43f57c10 ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4831309e ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4bb97932 ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55628861 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x579f346b ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ee6629f ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6088bb66 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x665f90b5 ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a3d1035 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c8dc6bf ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e875de9 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x740ecc77 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81fcc666 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836d8fd0 ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x856b6439 ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bfe56ca ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ee6d20c ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x938e06a6 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x946d9ea3 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9667b9c4 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x969c1d64 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b5aa06a ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa4143857 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5331d91 ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6e76f88 ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73a729e ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa7b34c32 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaa871db7 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab4fb78d ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb05a2f46 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8b828b7 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc01ab1f4 ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc240fd06 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc35f6ad4 ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3b27ba6 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4d4618d ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf49f835 ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0469842 ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd63bbaae ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdef2900a ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe05b992e ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe39d0305 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe48a34e1 ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9118452 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9863a29 ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5547666 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7055287 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa0f4641 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfc5289be ttm_bo_evict_mm -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x6c86b1a5 vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x6efa3fa8 vmbus_sendpacket_ctl -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x9da790cd vmbus_recvpacket -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe61e6dc8 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x22fc4a3f i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x3b674452 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x8f491b01 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x7014704e i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x7c25c7fa i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x3c4a7ca9 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0afe487a mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0e97a5ae mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x17af83d2 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3b721120 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x508f72fd mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x510aec07 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x54e188b9 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x597fbffb mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x802414ed mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9c3009eb mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9d31ab1c mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa1f23275 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbc219fa0 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbef80c96 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe71d378f mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xeb2a25e8 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x0c82afe8 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xa0d4b84b st_accel_common_remove -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x72eca0e0 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xa2718c7f iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x0253b54a iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x443286bb iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xd0d63212 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe3502d54 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x31d94342 hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x3be639c0 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x50fc480c hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8178e391 hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x99b621ee hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xef244d47 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x684afea5 hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xab42ec37 hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd9707d49 hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xf7f4bb4c hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1192483f ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2607b2f3 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x478b3e45 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4d613e42 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5df8b0b7 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x912f8f14 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x99c43ecf ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb82a40d9 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xca723d42 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x333558f4 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x3f176908 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x458acb8a ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x6573751b ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x6e0d8b80 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x22d20d77 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x68542123 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xae199e26 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0b832914 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x16cc4cc6 st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1a6b4bf8 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x211168b6 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2bed39e1 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4446dd05 st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x49145a77 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x65aa13ed st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7c2cf6d0 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x834c0697 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8a5d6a40 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x925d1354 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9fdcc3eb st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa7b57304 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaad1ec08 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd824cdb7 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe80ec45d st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x29cf39ab st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xa49a734b st_sensors_match_acpi_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x2ffdf6f7 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x7e175291 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xd266ebdc st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x3ebdf275 hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x0c2b324a adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x1de4d192 adis_enable_irq -EXPORT_SYMBOL drivers/iio/industrialio 0x082a0d40 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x1af6d22f iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x2221e473 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x32e3c297 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x566239eb iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x6130c938 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x6aae931f iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x86216145 iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x955dc06c iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x9933e927 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x99f06915 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xa04bc389 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0xa79d335d iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xabdd0c41 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xb521351b iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe4321ac0 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0xfbab8151 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x78d92085 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xd6badf8d iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x454112dc st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xea066efc st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x829e2e91 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x549c3876 st_press_common_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xb73b189f st_press_common_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x06220ee6 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1edc4064 rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d9cabc5 rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xde6b4932 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xed9eb7ec rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xf2555f25 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x079374b1 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x07fdc3cc ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0ef28034 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1e6e6fca ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x34b87886 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x394984db ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4523d6dc cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x75f10d3d ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7bcee7c5 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8dceb8e4 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x994db3a1 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa651039e ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb4b5bd87 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd2946186 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdd76a9b2 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf32d76bc ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf3a22384 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfae1c12b ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0188315d ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a3d3cbd ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ccfc4bc ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10693322 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12d2b448 ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x134f3933 ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13c2662b ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x156916ae ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16c8163d ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20365755 ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x224ce196 ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29eb95cb ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cf7923c ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d319607 ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f5b03db ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x316e109c ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35aa5f70 ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35bc3fe6 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3766f35d ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3938a170 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a231863 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bdd2dc9 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc095b5 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x436d1b38 ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45b5a819 ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57f35a1c ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b57d71b ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f61b853 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x619bb69c ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67fdb092 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f64494e ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x748d32bf ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7904b38b ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a0d0312 ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a742ae6 ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82240c9e ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d1565c7 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dd0e489 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dece6fc ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90298fb9 ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95f77c94 ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97df6981 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fb111d3 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa11beefd ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6279ec4 ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6af15a5 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad444a44 ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae561a44 ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7841643 ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb91176da ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb865488 ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd6cd027 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc08c6620 ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc64e25d3 ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6b6881c ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc84cebae ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8eb398e ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcaa43d1a ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcacab26e ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb317b66 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce6a415e ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa75c43 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3942507 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5ca7054 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6bd56c4 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6c621dc ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd727eaa0 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9e9b246 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf8cc4c4 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1e47d8d ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3a8218d ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe41dfaf9 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7173e63 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea05d958 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea0980df ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2450ec6 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5b4eb8d ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5b5ebbd ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf76e8174 ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa63d3d6 ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc8e9764 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd8147f7 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe1f6d7c ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x0bea1575 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1775b891 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2eaa4bfc ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2ebf90f1 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x40fbfe4d ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x46c01532 ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4abc0324 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5b0bd8a9 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x752a4118 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x94c878c4 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb795b935 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf33bce9d ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf4601873 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x001a0580 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x05f51c4a ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x09bb5865 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x0b4d8c48 ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x11838857 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1dc539e4 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x287d1e73 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x73bfa013 ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x89938e70 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x98ca05f1 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xce0a6b8e ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x32c19568 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb7b04bb4 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x31ebd57b iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x354a8d88 iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4a21a22e iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x678711ad iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x69a23cfb iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6f2bdec2 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x74324116 iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9fa0a299 iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc3d99526 iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc4d9294e iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcafc487d iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd5f7ef21 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdaea7a67 iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xedc7ccfb iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf838ed31 iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x07d5971a rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x123e64cd rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x161ad1e7 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1eb736ea rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2af16217 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x39b39cd0 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3f9afb4c rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x450f8086 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x508ae4c2 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x54d30a04 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5d071931 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x66c0afd8 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6bd335a1 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6d369102 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x836f39a2 rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x92706185 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa65a3556 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb2cd53ee rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd0347dac rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe5f6397b rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xee034191 rdma_set_ib_paths -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0a91ee2e gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x128da467 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x255fa7d0 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2c07b38b gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3654e502 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4c261a89 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x55a3517c gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x5a21a50a __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x65a989ee gameport_unregister_port -EXPORT_SYMBOL drivers/input/input-polldev 0x16be01c3 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x98cfa1a7 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xb84db9fb input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xc6f2cb4f input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xdfed86ae devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x771b68f3 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x6bf70afc ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xc499405e ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xe8c92c31 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x6966a0fa cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x305c83ec sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x55dadc0b sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x9b370cad sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xb66d5dbb sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0xb84b6ecb sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xce353a72 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xb736fc26 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xea74ede8 ad7879_probe -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x3f776dc2 amd_iommu_set_invalidate_ctx_cb -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x54736121 amd_iommu_init_device -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xa037f3ac amd_iommu_set_invalid_ppr_cb -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xaab516c9 amd_iommu_free_device -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xe8448b0e amd_iommu_unbind_pasid -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xe8e72bb6 amd_iommu_bind_pasid -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2c18e4a0 capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3122af7f capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31a31ecd capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x38423000 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9117da20 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f329e24 capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa649d438 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb72f3938 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe260a424 capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfadc77f5 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0e8ca51c b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1021931f b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1a8b34ca b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1be45392 b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1d7744da b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x28822420 avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x44581823 b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x46c3525b b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4e56d630 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5e4d2919 b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5fb87ef9 avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6a1a2e17 b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x80f41cdd b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xaca5381b b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe2711497 b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x81291b1c b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xafabdcad b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc4351b41 b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc6f9267d b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xca8dac3b t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd8303f11 b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe68df1e6 b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xef0aa3b1 b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf65ad59a b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x42d5ccc1 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x6dfce774 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x93cff3b9 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xaedd0146 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x9ab0cc0e mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xfe99539d mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x668b9f2a hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x68647061 isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x88ed0626 isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xa23190d2 isacsx_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xcf2f207b isac_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xe70fd370 isacsx_setup -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x79bedbb2 isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xa998ad48 isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xd1475cd7 register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x096a8675 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0d52db4b mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1058e670 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x18d3b45d mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x269caa0c mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2a6ee5e1 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5e253f06 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5f1d265b recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x66a986e2 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6cd38f96 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7cf42e8d bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x98178ed7 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa064940a get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaf3552a4 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb9d0edc0 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcb800a7a mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd7b731b9 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd7d45639 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xddc0df64 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xed80411f bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf1009520 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf54ce909 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xffcd2ed1 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6679b28e closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6c78f50c closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7d1835e0 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7f2a56c0 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0x8f8fc624 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa17b6665 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd97c32a1 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next -EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-log 0x517b6482 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xa4cbf448 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xf16c03b5 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xfbae6c39 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x20a03955 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x90a450f0 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa63cb60b dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa9879d50 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xc1ec6d1d dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd5fb7141 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/raid456 0xdeebb94f raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x03575898 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x10e5ef0d flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x40fd638b flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4e33f3de flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x64c51b27 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x756a1874 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x77fdd37a flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x898acf63 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8a8ab636 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x978867ca flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcad06986 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd67317f8 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf7f58c3c flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/cx2341x 0x13b8e1a9 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x5f5e8b78 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0x95e63698 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xe0f30d48 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xbe26eb2d cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x07479f28 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0x184806da tveeprom_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x02b664af dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08c0ecf2 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d3c856a dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x12f5425e dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x14fdf0ee dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x21bb5ef7 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2a027c6d dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x33372a60 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x33b5eb3a dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3405dbfc dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ad59eb7 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4cf3b0d9 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58b89462 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x646d2a9d dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6560e532 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6b03a852 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7336b708 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x86002297 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x887f3982 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8bcbbafd dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x92ddb0da dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x953fc06c dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ed29a26 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa163c708 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa35b6c51 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xadefdbab dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc872574b dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd461f7d5 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8988b7b dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xda9425a2 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb582405 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdbf59ac0 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xde5ccb50 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe1d6ca51 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5014ff2 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeaf47cb5 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf6c88e8d dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfa2ae6d3 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x6c4a9bfb af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xc58ebb5f ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x7d6ddc07 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x00767926 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2ff7ffcb au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x41e5e4cd au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7ca657dc au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x89cbd6ed au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xacb611d3 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd669fa76 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf0c48e66 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf2119691 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xea681220 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xd0ff543b bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x34058523 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xb6603312 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xfb9c49ff cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x10811afc cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x12aa5380 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xf5018d3a cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xeaa5fd72 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x0af306e6 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x9e1b787b cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xb6f268e6 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x6fceadc9 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x7d9c9ed1 cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x858dc77d cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x366ca198 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x53f5b87b dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x54d7dee6 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xaebc9f7c dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc7bb76af dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x051d1223 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x07a0b8b3 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x17dd9a44 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2e54490c dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x390c4ef1 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x436c77a1 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6b104d6b dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x71f619bb dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7dac4d77 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8d6bd0a1 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x946f6710 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbad386e2 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc2e71f61 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdc25361b dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe13e05b5 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xcc551f47 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x19521886 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7d545a47 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa1ef9491 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xbae51893 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd450ba2e dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf7689f1d dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x46ee885e dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7ce08b28 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xabad2bde dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xbf6ce352 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x6a107ebb dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xb1b76c1e dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x084dc0bf dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4ade3646 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x507854e1 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8066988b dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb4ca137d dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xa5c46921 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x5369a8e6 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x8c640292 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x9efb34ba ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xcf3a58a0 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xca4c871f ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xfd1c9226 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x46cb7334 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x2e40fe77 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x90b93d4e isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x76991f6d itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xfd817cda ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xec9819f1 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x3b4258c1 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x5783b1dc lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x23d2d74e lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x1bda4581 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xd41ceee7 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x4c73b571 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xd552466c lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xe069f022 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x463313b9 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x25b02c95 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x36fdc71e m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xc6286802 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x7a3c54de mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x25d277e1 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x322519ca mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x1a3a0449 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x17bcf7ac nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x7dffec13 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xac620799 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x717e5a45 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xd426d5e9 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x52f956ca s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x855888d7 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x87310239 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xeed89e75 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xedc7c71a si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x093751cd si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x24d71a74 sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x7762d8b5 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xf5189132 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xea16b95a stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xa2b63106 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xb62da554 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xb04fc5d3 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x1a306bc5 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x19d68c7c stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x1a8fb466 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x282915a2 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xd6b8ad7f stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xc9221df1 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xa19e8645 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x380b4c1d tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xec484f85 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x96800ec1 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x9b9405dd tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xaf81adb5 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x73611649 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x620110ba tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x59bf857f tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xdcccf4e2 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x73089260 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x8f9f56d1 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x21dc249b tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x10e848da ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x242bb716 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x2c393a43 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xe86fe729 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x71d815a6 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x124996b6 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x19516704 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x43d48d2f flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x50dbb882 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x752df137 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x77fd9ced flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb41610e0 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0cc62e63 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x23ebd09b bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x65e91a26 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9e139c14 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x16c86a39 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x477aa235 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x86b14518 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x04ae3195 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x11049823 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2f82cd2f dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4be58098 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5fd50058 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x732b9dc1 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8b98723a write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9d06ed77 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xedd99932 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xbe9115c0 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2dc0a9a2 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2f2f1443 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x608fd17d cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xaade271e cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd20fa632 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x2e44ebdc altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1084a006 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1b818482 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5aad976a cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x89d53508 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x99c53dd3 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9a39c44d cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb0ab9e52 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x072d7b5b vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x1b84e8bb vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x59b7cb76 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x642c439b cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xae847dec cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xdb1ad212 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x43e64f78 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7bbe3638 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8c2ca128 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x922dd3c6 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9ec0bef8 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbc83dbdb cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe9bbdec3 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x40dc2dda cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4cf9f9c4 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4ecd28c8 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x501ba132 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5b7c2542 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5dfb4b32 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x61a2c77d cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6a1bc084 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x74d65adc cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7d416604 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x85b33f04 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x87810ad0 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9927db25 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa84c67d2 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc079c483 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc9dd1a71 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe70017b0 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xed123e49 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf9fe7108 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfbc9ee13 cx88_reset -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x04ea26ab ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0ef15377 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14910102 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14d234e4 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2bc2892a ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3f9ada82 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5784401f ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7073e188 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x72aab65c ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8d8b2c26 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8e5ddc38 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb93e234f ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd4ab0866 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd6b70703 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd9cb25c0 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe35ecf27 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xff9e996b ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0385a763 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x03df0bbd saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x08d2dbfd saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1edfba52 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x647adcab saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9c42b56f saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9ea94b05 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9f76487c saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa69919e7 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xab34d873 saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd3db6d78 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe77c0520 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xf941a419 ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x2b82f49e videocodec_attach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x32c91481 videocodec_unregister -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xb9124a19 videocodec_detach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xe426f223 videocodec_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x0c959432 soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x0de6ef10 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x61fb1262 soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x82795a5b soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x8dc02365 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xdbb23fa8 soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf2ba7046 soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x12c4d3dd snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x14208515 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6b5bcc2d snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x7e171254 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x831727d2 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb9d80781 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0xe0c7b705 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x0beb5295 lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2bf2f8e0 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2c05da39 lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x60e51749 lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x6bd00655 lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8fa1e3d6 lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xec037f4e lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xfbdff3de lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/rc-core 0x2396aad7 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0x800675b4 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xeb850a06 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x04b7aaee fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x6d053a70 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa4b32a34 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xab4e618f fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0xc4e2c0ea max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x99324ff4 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xcd0add51 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0xf5426a74 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xe8557734 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xbf99bb3a mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x91fa741e qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x58070568 tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xa452b616 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x6e4308e4 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x2fd7d8e0 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x36f74410 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x38333a37 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1255424c dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3c2c07d3 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5063dd0c dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa56b67a0 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xae8a08a0 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcd103700 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdaa33522 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xef4b421c dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf552b6f6 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x35b63fa8 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x46618bac dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x54f824c1 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7d51a99c dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7d837905 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa4f5036b dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe74201b5 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x94db69bc af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0380ca10 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x60b28c91 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6cee45b6 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x89123de0 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8eff8493 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbf5cb4b9 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc1e28485 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd2b75c5e dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdd2c53ba dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf9bdbc2e dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfd4b1f06 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x45c3448e em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xdfd263b0 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x18937422 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x265aa7ee go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x430cf7c4 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5bd53dd6 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x95ae787f go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb14f52df go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb220b822 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xeba36281 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf294a749 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x124bf593 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x17da1bcd gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x520c4a10 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6a1da702 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8df14441 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb2cdae34 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xec66e3e9 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xedfb325e gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x55241ee1 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x98e7c2e7 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf4afd5e6 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x108bffdc ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x3b4cfe16 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x3ce86477 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xcb1715be v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xe36e4616 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x27a85eff videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x513a5e66 videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x8564b33f videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa22f610f videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb3142fe2 videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xdb0e1028 videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x1a0fe54c vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x679382da vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x1532f730 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x29e97155 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x4191a8a8 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xbebe9eef vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xe21c5a0d vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xeef7618e vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0xa9332df6 vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x19471a5c v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c70747b v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20760293 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20d1ffe9 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c3616a1 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c5c1491 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d213753 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f407ec5 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f6af111 v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30df690f v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32e17456 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34c9223b v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a585d6c v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3edfd31b __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45ba87bc v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x49aec2dd v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d21f7b8 v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52b2ca84 v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5360e32f __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5fc8fe15 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x63f18879 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x65826ffa v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6bbd6353 v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6bd87ffb v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d2ab865 v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f170aec v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7119c1fd v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x734ca526 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74cf43d7 v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a023a17 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7bc018fe v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f721ebe video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fd6e977 v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x801394a0 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x86ac3796 v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a03a74d v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8dfcddc7 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f0be1c8 __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x92580d59 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x937a3db3 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x94d4e866 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x96831502 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa6ea3414 v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa80ac4fc v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab80f97d video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xabe48968 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xabfd383e v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac6ff897 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad6a0128 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad78f338 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaeed0a56 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb276df02 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb575db7e v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6298674 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb905c733 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc15cf8e2 v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc1909e7c v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc643795d v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7cd6910 v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc9f32246 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcabce826 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda5231c3 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb2a3ffe v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd555c34 v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe1867f5a v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2207d63 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb9675e0 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfff7655e __video_register_device -EXPORT_SYMBOL drivers/memstick/core/memstick 0x01b685da memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x06f6ab0f memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x49214e20 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x57348d48 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6d80deb6 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6f0f9b94 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8d47feaa memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x97376b6e memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x9aee8684 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb9c422ea memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xeb3c94b5 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xede597fe memstick_register_driver -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x01fa82f1 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x121bf859 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x17838738 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1bc52420 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x22907fba mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2b872303 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2ebefad8 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x31e1eb26 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x332dc3b2 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x43a4eda2 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4cbf0369 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5538497b mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5593f8eb mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x56956d51 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5e064036 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5e8f69ec mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x62c78567 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x661d692e mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x669f9fb8 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7de91b20 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8dbd5552 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9be0c8a5 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa8e4423b mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xae0a9fe9 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc03fcbf4 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcfb3a178 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe059290a mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf19d03f3 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf61f3462 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x00d07e6e mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x27619e1b mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2cd4829b mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x31c8c403 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3a175e83 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x65e68bdc mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x69fad076 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6f6e4554 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x73d1e649 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x74482a16 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7b834aa0 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8159f552 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x831b5ecf mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8562e1d0 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x86c99beb mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9244ec7a mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9e09b45f mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9e16738c mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa7b212cd mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa86bd9b3 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbbe51893 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbd462b18 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbdc516eb mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbfd1e547 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcaac9c4f mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe098ac02 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfcab54b9 mptscsih_suspend -EXPORT_SYMBOL drivers/mfd/cros_ec 0x248270f6 cros_ec_suspend -EXPORT_SYMBOL drivers/mfd/cros_ec 0x4694fe31 cros_ec_remove -EXPORT_SYMBOL drivers/mfd/cros_ec 0xcf0b5b13 cros_ec_register -EXPORT_SYMBOL drivers/mfd/cros_ec 0xdb30acaf cros_ec_resume -EXPORT_SYMBOL drivers/mfd/dln2 0x216340fb dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xb0527826 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xb63f6b9b dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x01612184 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xd4f96192 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x059664cc mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2b9aeaf4 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x34b6e7d5 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x418e9b91 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x48aeddb1 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4b3150ec mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6414768f mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xab3aad0c mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb0ebe154 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xca7baa83 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfceded83 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x1ee432ca wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xd8f8fc7f wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x738bb991 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xded30025 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xece9bbbc wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xff88670c wm8994_base_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x68904b02 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xff3e3d8d ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x13090222 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0xbf00e5c4 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0xc681b750 c2port_device_register -EXPORT_SYMBOL drivers/misc/ioc4 0xbc2ce761 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0xf2a32d23 ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/mei/mei 0x5eddbbc9 __tracepoint_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xdd1b8214 __tracepoint_mei_reg_write -EXPORT_SYMBOL drivers/misc/tifm_core 0x0affb61b tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x10dfc942 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x1b3b4f69 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x3dbeed5d tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x68b9a67f tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x70dbdd5f tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x759fec39 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x8129fe24 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x9fc0bb19 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0xe0188fbe tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xe09685d9 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xf10a25f6 tifm_eject -EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x46f78db6 mmc_cleanup_queue -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2287b6a2 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x426e1cde cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5ffdd80c cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x76592447 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x833ae48c cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd91ab471 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf16a4704 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x67a2a6b0 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x7b448b97 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa17ecc04 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa7b01f7f do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x3c85d21e mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x6a662fad lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x7a340b79 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x11fe00e7 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0x98917f95 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/denali 0x1db5a2e3 denali_init -EXPORT_SYMBOL drivers/mtd/nand/denali 0x876d8583 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/nand 0x1dd11bf9 nand_unlock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x3c01357a nand_lock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x3c7ffeef nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand 0x40605bc3 nand_scan_tail -EXPORT_SYMBOL drivers/mtd/nand/nand 0x89d15d13 nand_scan_ident -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL drivers/mtd/nand/nand 0xfb901894 nand_scan -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x50d6f27a nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x91e19042 nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xdca9f932 nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x1b9d779f nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x4a924830 nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x3cd069b9 onenand_scan_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x5ea1958c onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x7205e27e flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x83eeaeac onenand_default_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0b8cd322 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2b4208b0 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x44b2e0ee arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x481b0770 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6627e853 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x970cb863 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbed9b529 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc8cd55a5 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xde717cf6 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe933040c arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x05e88544 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x26b78789 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7f66ce44 com20020_found -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x11ed6a25 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x478c1546 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4d4a0bdb ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x65d5d425 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x66fa156a ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7104f60c ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x73209829 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7a2d4401 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa92cc526 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xad3535ef ei_close -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x977aca2b bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x5254ec31 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xe48ca42a bgx_get_tx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x07a8ec16 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0b2b1436 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x18d0fe5b cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x25607025 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2b47f0ac cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4318df11 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x43868c4e t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4f8df470 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x565c83a9 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5e05cb1d cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x97f3cf5c cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc8b4c638 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc9dfcb63 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd7837da7 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xee10d22c cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfcdc5f2a cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x009937c2 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x22145753 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3224501e cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3273364c cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35d51ca9 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x37866d75 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47e7479e cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50415c1f cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57707dfc cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74452722 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76250cbc cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x77143596 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7973f98c cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7a20e959 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e71e183 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e78e393 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x82164964 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x85cc1371 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8b1f2ef6 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8d680c3c cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90915d74 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaf48a5d2 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb8412e3f cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb9028e81 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbe7dc59d t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc88cc44a cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd420b94 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xea11ccec cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef66b47f cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xefb9b5ea cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf56a216f cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x76176dd2 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x77a3d2f1 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8bb306e2 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8fd9093e vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x989b611f vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9c1d5d4b vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xde749e73 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xebd7484d be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02655a20 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e25b994 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1257f05b mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1315716c mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ae85032 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x216749a1 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21b54283 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2616bd3c set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26dfe33d mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3299bf81 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b07e1aa mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cd12b16 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cb77e1f mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e3a5bfc mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51f27fb9 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f178acb set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61851b60 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64cac34e mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67058f01 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a1501b6 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x870004fd mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x870a6737 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x874feded mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95d69ae8 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x986b6211 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1aee0b5 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa20effe8 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa359b09a mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf7d7cdf mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb10c2f77 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb51caa46 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba3b95d8 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc06ab38a mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce5621a8 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe96f181c mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed3bfedc mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1e771eb mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4c147cf mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c5b4c80 mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb47dd2 mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18413a64 mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x227c2601 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c724bf1 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fda7c83 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31adedd2 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x320c281a mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c26ea30 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41bc635c mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47ff9627 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bef7630 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x562632ce mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b80cb13 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e6c77b5 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x661703cf mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74c4630c mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75531fb6 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80133e8c mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x838150cd mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fe759d8 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b8458da mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa02b99d0 mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4740293 mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7b5b76e mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbab749bf mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca8ec752 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfc6c291 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd584b083 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6e4e13d mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd97f02d8 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd99745e4 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf27b7d8 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1602ddc mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecadb0fc mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf20f7b48 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3c22dc5 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb34c369 mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2cc8eb2b mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4485ce6f mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4d4cd4f2 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x90a92eec mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9dfc05ff mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc7f1f41c mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfec08a3d mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x1f17b7ec qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x00926c91 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x705f455c hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x897c11f9 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x93bee2ce hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xbd4ff51c hdlcdrv_register -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0b626517 sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x16bcd361 sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x30ab0400 sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x477082d6 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x56de49e7 irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9bd88ab7 sirdev_raw_read -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9ca42b65 irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa755d5c6 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa7a0f601 sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb58c9776 sirdev_write_complete -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x0576b7dc mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0x5f67d589 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x72c7c846 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x96dbbf67 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x9b6ddb37 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0xae4c1f66 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0xd4ac413a mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0xe7b7bcc1 mii_check_media -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x67f5d10b alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xb1e0465f free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x28c3bd12 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x573d8aaf cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x563b5f0c xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x5e759657 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xaa66de77 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/vitesse 0x48e48ba0 vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x275cd591 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x2ab0414e pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xc337decb pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x5cd0025b sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x10515c2f team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x1e7298f1 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x406efab4 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x442f4abd team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x532d85b0 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xc3207e7e team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xcbf12920 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xe3272c56 team_mode_register -EXPORT_SYMBOL drivers/net/usb/usbnet 0x57e9d89f cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/usb/usbnet 0xcd4de2b9 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0xcd9e8d12 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xd0d7e18a usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/wan/hdlc 0x205fe834 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6144a3d1 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6931dd09 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x732dc79b unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x850441db hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x863259f1 hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0x94f17731 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xadb586e6 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd562586d alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xde32c8bb hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf96788e2 hdlc_close -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x7fb228ed i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/airo 0x03609ca7 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0x1e33960c init_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xee88d82b reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x17443861 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1ac9a0be ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x33b467bc ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3dd89f4a dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5bea2ea5 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6fd5e319 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x86efadfa ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xafbdbacf ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbe925a87 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd495e4b5 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe747be0d ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xff8c5341 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x004116d6 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x115ee8da ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1e45dd89 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3af4d1b0 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d5afe60 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x659408ec ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x681976a6 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6c19beb8 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x77ce6116 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8e2ba656 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x91082e66 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa265737c ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc4e7d21a ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc657473 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfa01e202 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x00ca3f8a ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x42f995d8 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x52b7cfb9 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5333d69b ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6da3962a ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7dd7ac32 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7ea45ed0 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xccfb27f4 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xebcd5b46 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfafad557 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xff00a3ea ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x077b51a2 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0ad3738f ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0ed28a9a ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2364d7e0 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2e7016a0 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3701a0b0 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x504941a3 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5598a06b ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5c755c0b ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5c7b5378 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x711af039 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7d4494dc ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x85a3bd9d ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8905eb91 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x90b3cf3b ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa40ca1f7 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xba86da1f ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcc40d144 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd84e0b17 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdc30a5c6 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe7709f38 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xef2c0d98 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf6d427c6 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01d9ac77 ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02df5be6 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x037a3b8a ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x041a6afb ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05cc5a4c ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e1c7793 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11254d7e ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18dc0e76 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19575ba0 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19f76f8a ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b67d4c7 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fe549b9 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x259d00f2 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x263c761a ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29735031 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b5219e5 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b60ff39 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3412d75a ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34fca7a4 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x353e8eb9 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x396567dc ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b7a1594 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d35eeba ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x411d177e ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42cddf3b ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x437ebc29 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4786378e ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b255e44 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bb0a194 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ff881e7 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50c8caeb ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x534a8f85 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57a475de ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a0e9d1a ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bf253f1 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cd33c0e ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d4bc743 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x607ecfdf ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60e7176d ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6147c68a ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61796c7b ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6788d910 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6aae5eb7 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b131f7e ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6bcef031 ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71fe08e1 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x772a6885 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e2dcf35 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81de170f ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82edac7f ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84216fc6 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84ea144b ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87d03516 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x885c7455 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a0604d8 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d82aefd ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92bc9b99 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92efc310 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dfbd998 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fd68ea0 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa03f47ed ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa27f7de1 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa49af1a4 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa65a021b ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa16a92e ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac2d2665 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae778a6b ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0053c18 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb497d88f ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb504078a ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6064f23 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7ab83a8 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7d33884 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7e1ee5a ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb847d6dc ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8b06ef3 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc17c6ee9 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc265fe2e ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc35bad2d ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc708ae81 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8e4418c ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccc6ea92 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd67a3184 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd886b70b ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9279341 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdae3d571 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xddce4bd6 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfc0e43c ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfc3ae3f ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4b636e8 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4d775f2 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4fa6ba5 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5a4f736 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb463f69 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec28d023 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xedd9bb24 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf06c08ee ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3a02d5d ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3e3ae19 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3e5aa61 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf42add1e ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf67185da ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf687f973 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7189d84 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb4b3603 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x297195ce stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0x6f1c0d4b atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel 0xc23cb641 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x21c167c6 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2a47e2b3 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2bed9718 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8ff749c2 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb36000ff brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb4f4c731 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xbd33b626 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xbede9aa2 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd506408c brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xddcea2de brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe20ae2b9 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xea734a23 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xf0f363a9 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x02d412a8 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x498d3bde hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4ed2cf0b hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x51de169e hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5caf979d prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5d00a3ca hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6a75e69a hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8037a28d hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8054ff3d hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x818694ac hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x895b684d hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x93c96fb2 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x98c7d6c9 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9f98dd8c hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa2d95657 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xadfcca7c hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb20f85c8 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4a69ace hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbe1a6664 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xca540a5e hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe08d47e5 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe3e12000 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xef209eb1 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf5f6d6fb hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfa6a458f hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2bac8141 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x48a02992 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4cb8ac33 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x50611c30 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x510c5f92 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x54349a3c libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x62366323 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x759aa794 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x763b82ff libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8b6e2d81 free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa013df73 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xadfae5c2 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbb7a92a6 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc79843bc libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc82842b8 libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd0972653 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe65e20cb libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf0cedbd3 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf10a75aa libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf9455979 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xff4614e0 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06d115c2 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0aff9431 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b2b14a9 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0cd2f22e il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0e018d56 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0f95b934 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x144a6b89 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x182bfba8 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1d1d6ce9 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2131f794 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22bad2a9 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x24ea77c5 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2519423a il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x25d6fec2 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x27e49507 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2a48551e il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2c5c005e il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2f38dbd4 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2fb8e06b il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x32d51de3 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3ccc9b8c il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d68202b il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3fd9fdfd il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3ffab7bb il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x47a380b0 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4f598f96 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x51e10741 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564b4894 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x57aded52 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x62482742 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x66a1aecf il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x67f802d6 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x68770a02 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6b4fd6db il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6b8eeb52 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6bff65b5 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6d13c3bd il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6e1f00fc il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7125ed8d il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x716a3567 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7207f225 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7720ae80 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x79a92620 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7c0d27aa il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x801438be il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84acfb9b il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x85e42245 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8930e87a il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x89a857ba il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8dff6140 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8f205889 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x91067888 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x91a1d038 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x935cf772 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x93b57f83 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x96a9ad4b il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a22b954 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c86d09d il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9d91c866 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa0339d96 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa042c0d6 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa1aff931 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3c33cf8 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3e4c578 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa5f89d96 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa95062fa il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xacd3d623 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb66dc165 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc405c59d il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc5338bb6 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc7c9f382 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc8952ace il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc90c1b2c il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc92a66d8 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcbe04716 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd7390efa il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd787ce2b il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd85b8a12 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdb2fd819 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xddde3b3a il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe113e492 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe1addc8f il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe302e1a6 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe6c12249 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeacfb2bd il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xee343b53 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeeaece00 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xef309bc1 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xef687e6c il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf0404e13 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf1b9e543 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf3811096 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf4455f83 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf46435a1 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf510ca26 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf819ed90 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfab0b173 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfc686ee2 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1b06ce78 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x2447a6ab __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x314a20a8 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x5e9c24ff __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8c8ab242 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x9a1b1df9 __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xdced6db1 __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x02cf7fcf hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0875d127 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1ad51ce4 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1c078861 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x28c3cf38 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3f47e56b orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x439948d1 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4d225e70 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x62f6f9ff orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x83182aa8 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9f0fc575 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xaa12f9d7 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xaa275e7e orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb6741588 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd623c90a __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe9e283ca orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf07c037c __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x9d2b2297 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f49a7b8 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15222bb0 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x18b016d4 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x22c9429d rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x24a22971 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x28e76c45 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2fc8ec2a _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x308e1841 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34cfe96e rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x355d6965 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44592aa0 _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x445d55fb rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x45d0abea rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4d814e2a rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x552c542b _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6156df23 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x678609cc rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6ab56a59 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f90e624 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x73690be5 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x784fec9c _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7a774b0b rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x806c6d49 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82542a96 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82a16691 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x94e3cf8c rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x95246b04 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9731fd8c rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99e2540b rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9a263cc4 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9f2f8aad rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa4e777ef rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa65e8954 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf7ae553 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb9430382 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcb57c99e rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd1ef7373 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd6516b04 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe307c8fe rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf433bf36 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb759e91 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x029f7491 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x15ad4971 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x22c9003e rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x2cf47000 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2bb6bfc4 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4751f4c8 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6468660d rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe09cae7c rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0130d63a rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x137c8c48 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1aebbf53 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x265e5338 rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e339e55 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x302e74c2 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35328efa efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x413dfed1 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b57d757 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5530895f rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x628ac9aa rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65c14c1c rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x821c03ab rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b9d36b9 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8dd6642a rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa608febd rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb570dc4a rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc4fda83b rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcb544641 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf9db04c rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd02c94b5 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd2f85894 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdd7a17ad rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe534ce9e rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7ee4b42 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed50c562 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef0d9cd7 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfec12317 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x9ee11dda wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa0cb525f wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa4c6e932 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xdf0b8928 wlcore_tx_complete -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x40f4660a fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x77660265 fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x98bc45eb fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x1c8d11ed microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xe5487ef4 microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x25cb636a nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x766d5a0e nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xa28339f4 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xd6a138c1 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xe505ce2a pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x300d9af3 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x5d7d91a4 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xdc783ad7 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x184baf97 st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2173ff87 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x26e5845c ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2be79779 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x48c82306 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x646a7f18 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x65ac36c9 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7a494660 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8ad6c631 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe8054a94 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf90f1deb st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0802002f st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1d773464 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1f00d3c1 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x237b663c st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2848d5c1 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x30be55e5 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x382daf12 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4695b756 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x54858276 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x575595fb st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x619c203d st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7842e090 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7cf94cb4 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa1121901 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xacacde2b st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb0eed731 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcea4e306 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeca368d4 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/ntb/ntb 0x09347432 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x163fb808 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x192d0846 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x1bba4632 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x2e1b7cbf __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x7cfa2c26 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xb92c705a ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xc4dbeb28 ntb_unregister_device -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x3c598fc8 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xe28209c1 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x1a50c004 devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x0b496a89 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x0f3e06be parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x13cb9371 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x201bb57f parport_write -EXPORT_SYMBOL drivers/parport/parport 0x2531c10e parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x35e2239d parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x3c5c9f58 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x42b2d2b7 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x45804842 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x4c387424 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x58951111 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x640f23c1 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x67570e64 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x6c87ddb4 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x84e19631 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x8747a04a __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x8b9bff6e parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xa66efcca parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xb0773760 parport_read -EXPORT_SYMBOL drivers/parport/parport 0xbf4dc8d7 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0xcb0106db parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xcc44d524 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xccfb8bca parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xd2fb4ba9 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xdb443eb7 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xdfe792aa parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xe3508787 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xe39495d0 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xe4562d71 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xebd879f2 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xee059db6 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xf58b9117 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport_pc 0x12016e95 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xd5fb06dd parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x05791d33 pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x15b3f1c0 pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3ef741cf pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x59f6239f pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x634da764 pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x637d2e0a pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7b8f1ef4 pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x85f9716f pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x87982149 pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8c939d7b __pcmcia_request_exclusive_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa770faa7 pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb1a727f9 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd3935ccc pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd8f2c629 pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdaa25436 pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdcc998e5 pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdf144ab6 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdf403c4f pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdf9b726b pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1ccab9a3 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2a595246 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2a94714a pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x597a8bc0 pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x79cee430 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x81c113bb pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb5b22ee1 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbcd900db pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe0fddaa9 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe6de2635 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf16aaeef pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xa54f6680 pccard_static_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xc2044dd8 pccard_nonstatic_ops -EXPORT_SYMBOL drivers/platform/x86/intel_ips 0xf97d7d0e i915_bpo_enabled -EXPORT_SYMBOL drivers/platform/x86/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command -EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command -EXPORT_SYMBOL drivers/pps/pps_core 0x49408940 pps_register_source -EXPORT_SYMBOL drivers/pps/pps_core 0x5df914ad pps_lookup_dev -EXPORT_SYMBOL drivers/pps/pps_core 0xc22c3db5 pps_event -EXPORT_SYMBOL drivers/pps/pps_core 0xd484a688 pps_unregister_source -EXPORT_SYMBOL drivers/ptp/ptp 0x39f02063 ptp_clock_index -EXPORT_SYMBOL drivers/ptp/ptp 0x755c51fd ptp_clock_unregister -EXPORT_SYMBOL drivers/ptp/ptp 0x8aff8e0e ptp_clock_register -EXPORT_SYMBOL drivers/ptp/ptp 0xe624cc9c ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0xf6f2d0be ptp_clock_event -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x071b49e9 rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0df9d505 rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x10c1a476 rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x20c92c5b rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x30af457d rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4bafaed5 rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4f2d77d8 rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x98ab980a rproc_alloc -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xe26f775d rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf16e8bcf rproc_shutdown -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xb1129aa2 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1914c1be scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7318e1e4 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xcacc51b2 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xdddbc50b scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1f3c2812 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2ddf7ece fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3a17e5ee fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x44aaa330 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x506e7d1e fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5690637f fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x72ed2dbd fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9082ee34 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x998e548d fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd6c4d2ce fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd96fff52 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf25de255 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a11a4b6 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b81dd82 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10dfa46d fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x12983633 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16efff48 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d7813d2 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2cc44cef fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x301983b1 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3448bc74 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x37e1c87b fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3bcc56af fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3c69af81 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3cd0068c fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3cf3f8c3 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4643bf59 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x523477a7 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5391b028 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d388c61 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ec09d44 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x86d3baeb fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x89a442c1 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c2a4dd4 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d03a5e9 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d05aafb fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9ae4fac6 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9afb162d fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa31a090d fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa34f1787 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa94888f5 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xab200310 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb690d13b fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7c8fbc7 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc4f19187 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5dcad65 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0ff7202 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd31c9d0c fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd671b298 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd76895df fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd83e071f fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8d2de43 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb3b2d3b fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf53a12ad fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa49f39b libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4d83c3d1 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4fff9146 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa049b92c sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa80e9477 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xd637f46e mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x03297ec7 osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x04e95921 osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c6383e0 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0f5988d1 osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1d4f0a3d osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x23bed443 osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2741e0ea osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2dafb652 osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3537ff71 osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3aebaf5a osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3fb74259 osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x43b86c84 osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x47b9ca1b osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x488db4b0 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4c4bfbb9 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x514e3fd8 osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5639dc70 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5b132577 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x63a4f5ff osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x678d8802 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6fc8d301 osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7212b075 osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x85b5b978 osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8d2a2dd3 osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x96383214 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9953353e osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9a3f12a2 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9f6d6cc2 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa74c99e6 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcbb413d0 osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcd394dc4 osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xddc04ab5 osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe3fc7ac7 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf3238452 osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf92ee87c osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfc1955b0 osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/osd 0x0742804e osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0x22751b9f osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x363deaa4 osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x86ac0e98 osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0xbad98c0f osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xee8d64c6 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x024da3fd qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2159c11a qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3c125ce6 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x63eddec7 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x64d8b71e qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x69bd8c0f qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6b4b13cc qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xacac78f5 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb06d92cf qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbfa1c7b6 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc2d77eb9 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe31534ab qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1dba109b qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x325f05e0 qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x86edccdc qlogicfas408_bus_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x9135d905 qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xcacc8972 qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xcdb73377 qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/raid_class 0x2d93a4d2 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0x76b0df58 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0xe236b937 raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x11e6803c scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x22520b97 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x26d8d22e fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x446a2aae fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x50f6cabc fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5bd76223 scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x71c40c77 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x71c5c633 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x96229a2c fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xba5d66b2 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xce209abf fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xef8d9afa fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfdc54c03 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x03def8be sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0ca00a10 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x139f9af1 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x196ea20c sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2cc7cd5e sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2deb0e64 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3d306a2c scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x460999d1 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x49d96ebc sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4a943271 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4d0b0b1d sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5803b01f sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5d561b3d sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x696693d9 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69f23716 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x864edf04 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x92a3967a sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9c9d6e57 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa309fdf7 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa6afbacf sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa7c0e143 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb64ea328 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb80c8e90 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbc68a706 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbfceb98c sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd6d4aff8 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec379365 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfc4d76e5 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x000917d0 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1cb26ac3 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1fe5515b spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa06b8d33 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe7f9acbf spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7b22d1cf srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7ca9b2e6 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x95c55f3e srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xc7026fee srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x183632ac ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x28bbd4ff ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x30b5ee34 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x51a998fe ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x71335a6a ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xbfc7ff63 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xecb493e0 ufshcd_alloc_host -EXPORT_SYMBOL drivers/ssb/ssb 0x0af515e5 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x1422eada ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x14b3a476 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x383be1ef ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x3cd2c7e4 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x5989311b ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x68cfb5c9 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x6a1dde57 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x7046ecbc __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x72abe3b0 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x7577dcde ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x8cda5c47 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x9be74256 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xa0dea67d ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xb559f32c ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xc28c465a ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xc3ff5def ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe0df21b1 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xf503c30a ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xfe3f6f2d ssb_dma_translation -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x12d249f6 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x139dd71f fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1d4a31a8 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1e61c55c fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1ef75975 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2620bcc3 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2d1cbc99 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5360316a fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6154f72f fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6ac652e3 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6c2c6ff4 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x74fe20a5 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x85f33f5f fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x94946543 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb8633029 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc7a0a7fa fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcf3bec55 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdf66809e fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe3a5595b fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe4465de2 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeb35aef2 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xed18f6b1 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf407ce5c fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfcc4d59a fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x01c5bd41 fwtty_port_put -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x2defe8ac fwtty_port_get -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xf2757181 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x078ca9e0 hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x339ca0a9 hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x4b0ee5e3 hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x58ddf16d hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x6eded82b ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xb8d25043 ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x3b86261a cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xb2ff11f9 most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x02b2e080 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x07325ad4 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0aa20b33 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c7380dc Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0ccfbfb2 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d3295b2 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d5a65bb rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f66a780 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1319fa80 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1f5a2d3a rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x258905a2 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2bdcad55 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d3162a6 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x31185c33 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x388817f6 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x44ace206 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54acc59d rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x551079c9 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58aecfca rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58f2d231 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5cc495e8 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x60cc1da7 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x65acb8f2 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x65df41c6 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66cf6469 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67924e9c rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67c42fe5 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x69202402 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b206472 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c8040dc rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x737505aa rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x75c37099 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x79d2783d rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x93748c13 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x98971948 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99adb207 rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa30ce9a3 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xac6c5465 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb082a25e rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb1479f46 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb9c4390f rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4f27925 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc922a860 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc77d7d3 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf70e6b2 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0023ad1 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd81c8f1e rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd9d9b206 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe91b8e30 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xee564f22 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04815852 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0c273daf ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d97c254 Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1217205d Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x12cb9382 DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a912b9b ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ac6021b HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d157711 IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22d7bfd2 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2ba4ccf3 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2fc27ed2 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x334861ca ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3c1e90e2 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3dc44c3c ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e35104e ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x443aa265 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x455f989f ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45cebe89 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4615669d ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47714c5b ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4799b32d ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e368526 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5426d275 ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f91a084 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6db26516 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7646b92c ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f086196 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8637c844 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8bdf093e ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ef68210 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa26abb2d ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa64d3b07 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb00b4e4d ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3af3534 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb61b7067 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8570e9b ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc382441 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbd7b6739 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7d25388 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc802cbcf ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb91b377 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd764673 ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xce80a4c4 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xced1d1d8 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd62cc691 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd67b6ce8 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda11f979 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdfcc15ca Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe052f01a DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe71dcc37 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec049e42 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf11afbad ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf76e55b5 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/unisys/visorbus/visorbus 0x677d785d visorbus_get_device_by_id -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x033dc639 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c739918 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0dc15736 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x18457e6d iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x187a31ad iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d081e28 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x20954241 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x37dde8a8 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42b29112 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5382dc4d iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x66a0070b iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x75bd3681 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x877f4cef iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ede61b4 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x900f9f39 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9415c817 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa11375ab iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf92f5fd iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb201b071 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb48d575c iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba67987b iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcae92bc6 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcc5f48fc iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd1f15bde iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd29222b9 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe4496fcc iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xef5c3590 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf09bc8a9 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x099be0ae transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x0d35bc1d target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f43a588 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x1440f69e target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x191f8013 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x192126cd transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x1b45f5d0 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x1ff0e193 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x24b2d6c7 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x268ff38a core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x2cfa6745 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x2d2d61f9 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x31cbbde3 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x32927b2b target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x39cd3bbb core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x3c7b693d transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0x421e1448 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x4962f1cf transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x4bc43620 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d104821 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d186414 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x506ba575 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x51d62d72 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x54cb63bb target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x54ed9c11 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x5645844f target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x5932da85 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x5a4b2b40 target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x5bf885ef transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x6441124f transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x715781fc sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x724b885a target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7703fcd5 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x78fa2dfe transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dd78e75 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x8013996a sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x80b44847 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x84d48419 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x854daa22 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x86f60680 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x95a6bbf0 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x9926fda5 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa1a34878 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xa87518f5 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xa93af2ec target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xae28fc40 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xae343243 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xafec9f9f core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xb3377fa8 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xb7576490 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xb76e4119 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0xb892bca5 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xc0b40857 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xc9e7d5d4 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xcdf1f4f9 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xd181fb9b sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xd4f4e38e transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xd52c37f6 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xd648f954 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xd7eb3189 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xd8934101 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xd8c89f51 target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe05bbf7e core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xe2a46368 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xee3eb101 transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf23513d9 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xf2a3600c sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf4687f22 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf9ce9c50 transport_init_session -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x5007fc2c acpi_parse_art -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0xdf707fab acpi_parse_trt -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x3e13d656 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x7a662656 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x496370c1 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x00951a9b usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0bd7c38a usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x28ca2648 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3e00d3d1 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x77492cbe usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8a5c1d3e usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8ac41abf usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8ba236e6 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa153ceef usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc801342a usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcdc0f6a3 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xddd03c28 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x3f5b9626 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xefb882ee usb_serial_resume -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/video/backlight/lcd 0x5805c260 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x9248d67a lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xbefd2a55 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xe58c0e4e devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x05aa11ab svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3e2aa199 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7314aa71 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x82b85fe6 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x96e1805c svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe2d5d639 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xefebb104 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x8656cf17 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x7fa76e22 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xe648dbfc sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xd90ed61e cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x2e9cc82a mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x67834b54 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x760d4e8c matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xdf974880 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x05c25529 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2211653c DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x517d3bd7 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xcf372c3f matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x39daa7a9 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x5a2e846d matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x22745515 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa691bda7 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb0dea4b7 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xdf54d867 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x702c2589 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x86e98d8b matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x015a12f0 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x628f90c1 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x8f6d95d1 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb0d8e44d matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc9eb73be matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x52eb1059 mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x4f2c3db4 w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6d548b9b w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x8e5b40e4 w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x934675ab w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x48dbbfae w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xb6436761 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x1583ec09 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x620eeb7c w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x6d6f5c52 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0xef82d75d w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xf156f94e w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0xf4cc5761 w1_unregister_family -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xb5f20875 iTCO_vendor_pre_keepalive -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc4f657bf iTCO_vendor_pre_stop -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xdc6effc9 iTCO_vendor_pre_start -EXPORT_SYMBOL fs/configfs/configfs 0x3db19a38 configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x3e486961 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x4a27eff9 config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0x9b807abf configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0xa05750a1 configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xa8eecd5b config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0xac8003cb config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0xb5a04299 configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0xb76182f4 config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0xb878f854 config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0xbce55356 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xde121d05 config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xf19f20bf configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0xf3fb4632 configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0xf448b298 configfs_undepend_item -EXPORT_SYMBOL fs/exofs/libore 0x11d63ee2 ore_create -EXPORT_SYMBOL fs/exofs/libore 0x1f017eb6 ore_write -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x4b463585 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0x75a8fd8f extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xbb0ccf0b ore_read -EXPORT_SYMBOL fs/exofs/libore 0xcb8a0236 ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0xce9c6fb4 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0xe325601c ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0xe7acc46d ore_remove -EXPORT_SYMBOL fs/exofs/libore 0xe8e733ce ore_put_io_state -EXPORT_SYMBOL fs/fscache/fscache 0x060457f2 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x17b35d8a fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x1eb9b839 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x2ab42f6b fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x2c77635c fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x2fe5b75b __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x343980a1 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x38c38db1 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x42a9594b fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x46c0990f __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x5bb46f09 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x5c6d03a8 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x6768d5d2 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x68af2a0a __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x70deff73 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x783e397b fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x7c47235e __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x7c9aafd5 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x916d4637 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x948f8101 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x977f8a53 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0xa122b005 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xb14b7e63 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xb3529bb5 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xb86e4ec6 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0xba7fe769 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xbd034bfc __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0xbef699ca fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xbf03c8bb __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xc92b05c9 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xcfd28166 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xd14c0a0f __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xdd9ecf67 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xe1254b8c fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xe21d7d8b fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xe7d6feb9 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xf9df5c88 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0xfa217045 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0xfb673da2 __fscache_check_page_write -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x48f0b4cb qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x69c23529 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x70bfc2b3 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x8b380d19 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x8d38a192 qtree_delete_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy -EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed -EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0x91413ad3 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xba8abca3 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find -EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put -EXPORT_SYMBOL lib/lz4/lz4_compress 0x0c222eb5 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x6acab20d lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd108ed76 lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd6526b66 lowpan_nhc_add -EXPORT_SYMBOL net/802/p8022 0x2b205d33 register_8022_client -EXPORT_SYMBOL net/802/p8022 0xb547966e unregister_8022_client -EXPORT_SYMBOL net/802/p8023 0x28f7d390 destroy_8023_client -EXPORT_SYMBOL net/802/p8023 0x9ac997f7 make_8023_client -EXPORT_SYMBOL net/802/psnap 0x0fd4096f unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0x3a839a23 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x050e5a1a p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x07975cc6 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x0b0c4122 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x1120d008 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x18f05653 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x2007af6e p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x2a79d416 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x31d530fa p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x327b9a3a p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x33bc4ec1 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x38fa0a5d v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x3b9035e5 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x3bb0836a p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x4c1581fc p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x518ecb2c p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x59ee6dbf p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x5d3f3cec p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x5ec5e969 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x7abfb5e6 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8b8d9d97 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x8e9a56cd p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x8f6c578c p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8f76d88d p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x90d3fbc0 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x90f66a5c p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x9ab818ce p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x9bc798d1 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x9fdfa604 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xaa23f10b p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xaa940b8a p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xafdc7b37 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xb4ba7316 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xb6433476 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0xbed17b20 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xc0381bf8 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xd3d8bc77 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xd8ca57d0 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0xde5d8b51 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe61cea35 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfb20c5ec p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/9p/9pnet 0xfe84de91 p9_client_walk -EXPORT_SYMBOL net/appletalk/appletalk 0x54bb142e atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x84ec7894 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x8dda7eb9 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xcfa20438 aarp_send_ddp -EXPORT_SYMBOL net/atm/atm 0x04204202 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x150fa949 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x23cacf8a deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x2bdc8e90 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x4a14e474 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x51173546 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x646b38f1 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x70ad51ab atm_charge -EXPORT_SYMBOL net/atm/atm 0x7df45003 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x8ddbfc86 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x97fcaee4 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa4b33e3f atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb076b10e vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xd6b536ea atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x05b706d1 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x13508c10 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x25507ff9 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x437fdce1 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x74052141 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xbf0c807d ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xcc1ef11a ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xe977fe8c ax25_linkfail_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x03acc945 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0667d8d2 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x181a6ebd hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b2606dd bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1dea0d13 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x22307db0 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2637e89e bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x28e3301c bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a8b22f7 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e3222b4 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3a037505 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3b312586 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x481008c5 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d25d4c2 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x50c6c96a l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5481e94f hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x55e7c425 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a6f53c2 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x631b5da2 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b138502 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x76db346a hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7eb9811b hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8187f2fe l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x85f5267a bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x89066b9c hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8f06b99b bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91f9f7bc bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x93e38b09 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9b096dd3 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa2e85a67 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa66437dc bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xadb4b3dc bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaefb6a11 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc38c43b9 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc3fb7872 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcfb4ac8b hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd07853da hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe4f618c7 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xed18a5b5 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf11a251f hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfe859755 hci_conn_check_secure -EXPORT_SYMBOL net/bridge/bridge 0x6f3dd626 br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2afd2b7d ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc516c794 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xcc837258 ebt_register_table -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2149305f caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x6392a65e caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x97a36fb0 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xb865ff08 get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0xdb0ecc8d caif_connect_client -EXPORT_SYMBOL net/can/can 0x138e428d can_ioctl -EXPORT_SYMBOL net/can/can 0x2471a8d4 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x8ac4955f can_send -EXPORT_SYMBOL net/can/can 0x986a496f can_rx_register -EXPORT_SYMBOL net/can/can 0xe1d8cdf0 can_proto_register -EXPORT_SYMBOL net/can/can 0xfd069c4c can_proto_unregister -EXPORT_SYMBOL net/ceph/libceph 0x05914352 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x059aec52 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x098d781c ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x0cafb8c0 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x0cb2286b ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0x0e774189 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x11c033ef ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x15420cec ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x1754e9b8 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x17582002 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x1a4dc5ae ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x1d3cd602 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x223353d7 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2d71c437 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x2e11fcf2 osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0x30ae7761 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x39a842b2 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3e06c918 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0x41df0d23 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x44417900 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x49430435 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x52cfb6a6 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x551c1bc3 ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5c80fde0 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x61295981 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x617886c7 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x63b3ef3f ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x648f51c6 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x64b06b7d ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x6ad52f86 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6cd9ce31 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x6d0ea4a4 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x6d216216 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x6dc371e5 osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0x6f9de8dd osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x70ab1b44 ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0x72c3b00d ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0x733206fb osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x7830ecac ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x78969e47 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x79bed200 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x79dd7ea5 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x83cf944b ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0x83e1d671 ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0x86991b78 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x8b462bfc ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x8edc24ba osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9de49589 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x9ed65277 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa08e2ec7 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xa0a23bf6 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0xa23acd85 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xa5eaf39e ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0xa664dc6f ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0xa8a4141a ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xae9630be ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb1cf3b1b osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0xb27d2b55 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xb2ace830 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xb9a9fea0 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0xc1c5aab0 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc7a093c7 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xc9cafbf9 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xcb5765f7 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd2c165a9 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xd539c678 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xd547ffde ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xdc569634 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xdc90d378 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xddb4df33 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xe126bf14 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xe6ab9fd5 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xec2b17d0 ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0xf097df90 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xf4cee6d0 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0xf4eb8057 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0xf560d148 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xf8a93f8e ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0xf9913c7f ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xfa9e4349 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xfac21156 ceph_osdc_cancel_request -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x7bded768 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x8f30a431 dccp_req_err -EXPORT_SYMBOL net/ieee802154/ieee802154 0xa36caa0a wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xb0903a0a wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc94fdf71 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xd222aa66 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xe72516df wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0xf506a7a6 wpan_phy_find -EXPORT_SYMBOL net/ipv4/fou 0x306d50e6 fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x459d3a2d gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0d938e1e ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x26f3e283 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3f13fbd3 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x84782cbc ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc4d629d4 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xcf486084 ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x0376e289 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x329fbbe4 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3e80371e arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa0265ca4 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa170f918 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb8701cbe ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x88d747ff xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0x8d2a97ef xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x1663ae4c udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x30c0c196 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x40837a93 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc8bbd149 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd0a96ebc ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x07a940ae ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8ac63423 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xfc73ac45 ip6t_do_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x2e1068d6 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0x68780958 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x250e5ae6 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x78137e56 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x183d4ff4 ircomm_data_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x278c05a5 ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5df96d4c ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x90ffb3cb ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa0e162f1 ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xabb90663 ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xbf0449b0 ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xfc055b75 ircomm_connect_request -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x074bc628 irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x0963c24b irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0x09939c11 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0x0b8da3ae irttp_data_request -EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object -EXPORT_SYMBOL net/irda/irda 0x272fca80 async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x2be454a0 irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0x2eb735c6 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x350be1e2 irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x3c889e75 irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46b00fdf irias_insert_object -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x5209f845 irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x553f5be2 irttp_dup -EXPORT_SYMBOL net/irda/irda 0x62d77b42 irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x64ce3d5e irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x70a3f20f hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7c23866e irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x9054f903 irda_notify_init -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x98a8b3b4 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert -EXPORT_SYMBOL net/irda/irda 0xa53ef172 iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0xa7e5d251 irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0xae94e8ed irlap_close -EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find -EXPORT_SYMBOL net/irda/irda 0xb00a9da9 iriap_open -EXPORT_SYMBOL net/irda/irda 0xb0eb416b async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0xb71bbbd7 irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xc4653906 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0xd304ce89 irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0xd4e46036 iriap_close -EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma -EXPORT_SYMBOL net/irda/irda 0xdc0196c2 hashbin_remove -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe044536b irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0xe1ba6308 irias_new_object -EXPORT_SYMBOL net/irda/irda 0xe329462a hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0xea453f30 alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0xeb78333e hashbin_remove_this -EXPORT_SYMBOL net/irda/irda 0xec242b93 hashbin_new -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf41d3d8b irlap_open -EXPORT_SYMBOL net/l2tp/l2tp_core 0x869fdfc7 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0xd06bad54 l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x0f430ccb lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x62e21849 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x7885fe5a lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x803a66be lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x80452d26 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xd90d435c lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xeca6cbfe lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xf6030115 lapb_data_received -EXPORT_SYMBOL net/llc/llc 0x2d17461f llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x5d2f7445 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x8ac6e6af llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x98912d90 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xc9060a04 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xe4fd3d24 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xe600e092 llc_sap_close -EXPORT_SYMBOL net/mac80211/mac80211 0x0050b0b5 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x083dbbcc ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x0a03f7bd wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x0ccb0303 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x1238fcb8 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x1269becb ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x12ad465a ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x12d8cb21 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x133a6bee ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x140a01de ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x14708c55 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x16e8a82b ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x183cd075 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x2322cfb4 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x28a25546 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x29efc327 ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x2eb96a47 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x2efff76d ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x2fb86e5b ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x2ff27bf3 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x396d4813 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x3c08d9e7 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x3e769839 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x415a35c7 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x44364ed2 rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x4c8ee94c ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x4dac805a ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x4ee7a422 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x4ef6748b ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x5ba02d2e ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0x5e4b83ea ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x5e5abbca ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x5f9d9e90 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x60a6c8f6 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x60b6fd90 ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x629125be ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x66aaabd6 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x6b28700b ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x6c025f55 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x6e000dda ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x7cc61014 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x808b92d7 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x83336bb8 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x83dd1b79 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x8497ebf6 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x8ae388f5 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x8cfd511c ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x8fca72be __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x8fd3b4bd ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x96884197 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x9a7be238 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x9de09262 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x9f382e01 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xa8d446c7 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xac17096a ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xaf3a52f5 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xaf5cf0f6 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xb988875b ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xbbc8050c ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xbefac65b ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xc12ebd71 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xc1bc2e0d ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xc2c369ea ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcd34d788 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xd0c89d19 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xd13c6425 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xd1486120 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xd4db1208 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xdca9e718 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xdcbc7e4a ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xe051e270 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xe3f7741c ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xefc92c31 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xf2390ff0 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xf4997d5a ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xf5490197 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xf89ce49f ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xff296ec2 ieee80211_queue_work -EXPORT_SYMBOL net/mac802154/mac802154 0x0dd9175e ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x21eb79de ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x320b1fe3 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x6158000b ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xdb2c8c27 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xdb535ae9 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0xed8ba3ff ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xf2ae9e99 ieee802154_alloc_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2089bc2b ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2312829e ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3a9e9c9b unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x40067c9d register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4bcb5b91 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4fd4bab1 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6c2e0333 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7cd8ba77 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x95355d5c ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb04ba52e ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xde55e120 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe03f86fe register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeebbf0ef ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfb3c066d ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xb7edbf1a __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xc1f6cda8 nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xec680367 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x74f6941d nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x75b46aa9 nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0x7faee067 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0x95f4adf4 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xa6e7691d __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xb9a44019 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/x_tables 0x114764b9 xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0x183be9aa xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x454cb913 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x4dd3f0e9 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x4dfb12cf xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x5e41e679 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xb1129db9 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xc811ac34 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xe40a4fa6 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xf2c4f321 xt_unregister_target -EXPORT_SYMBOL net/nfc/hci/hci 0x0a1f71b2 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x2871a27b nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x28f20050 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x406f8b0a nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x45bcf4db nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x47ccef54 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x4edc680f nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x5c7b3420 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x5d2a5ec8 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x6642f741 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x6894d1dc nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x85fc349b nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x8850e174 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x9d240096 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x9e546013 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0xb084dc87 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xc2833bc0 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xde49a871 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xe2f7de47 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xe383d0be nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xf6ef4cb8 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x0959e34b nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x11551764 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x11b5329c nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x12909697 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x1cd28813 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x2c4caad3 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x3214bda4 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x4c7022a8 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x5a4a91ad nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x670249d2 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x75dafaec nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x88ccdbcd nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x91f349e5 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x946255eb nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x9f8d3d6f nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xa7d87628 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xa81ee279 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xba2b68f3 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbe48cbe0 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xc0e7040f nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xc6859dce nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xc7265ff0 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xcb763dc1 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xd6b37008 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xd85614c0 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xe37b5ece nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xed786746 nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0xf217c8a5 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nfc 0x0ad6e0a5 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x1454c63b nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x24989df4 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x2551a39d nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x3665a506 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x5ed4a938 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x62356758 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x64ccd826 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x6b838391 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x6d977b80 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x7ae1e10d nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x891ea0e9 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x93f39774 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xa0c2b8c2 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xa32c0a37 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xa61cc27d nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xb34090c5 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xb7970713 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xcb749681 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xda3ced4d nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xe0e8a350 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xee21d372 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xfb0e6b3d nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xfc1c20e5 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc_digital 0x075d7bb2 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x15ed5d5d nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x1c8bbb33 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x482afe79 nfc_digital_unregister_device -EXPORT_SYMBOL net/phonet/phonet 0x02074712 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x5fdeae16 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x631e3261 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x7b142537 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x7dd5e79f pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x8cfea824 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x9ced2fa8 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xe2a05fa4 phonet_proto_unregister -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1f4cae40 rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x31605d3d rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x38b63c13 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3bc7ea2c rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5135869e rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5418f852 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6bad91f9 rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6f84dded rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x78df40b2 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x916d1385 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9871a19e rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa8c42b4f rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb4fafc60 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xea4ffdf1 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfefb7023 rxrpc_get_null_key -EXPORT_SYMBOL net/sctp/sctp 0x4323e5fc sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x53fac19f gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdd694202 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe3fa9655 gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x4a08cf0c xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe674cc88 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe90f1f16 svc_pool_stats_open -EXPORT_SYMBOL net/wimax/wimax 0x85933dbb wimax_reset -EXPORT_SYMBOL net/wimax/wimax 0x98803e4e wimax_rfkill -EXPORT_SYMBOL net/wireless/cfg80211 0x03fbf940 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x07200bb1 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0e03c19c cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x1259017d cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x154e969c wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x1c4a3584 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x1f2e020e freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x22d59cdd cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x26e6f401 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x287d287e cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x2f3a085c cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0x3027f3c4 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x35f972bd cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x3b810079 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x3bcf05a7 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x3ff1e778 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x4398fb4f cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x43bfd8fe cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x47f79e36 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4be54c84 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x55145a1f ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x55171355 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x5817e1db cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x5c2dc51d cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x627cf522 cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x637cbb9b cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x654eb331 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x6745ee4e __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6a520661 wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x6bca35a7 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x6e22136f cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x6ee52995 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x717a4e88 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x77e39f02 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x7850191b cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x79464db9 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x7ee994e5 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x80d29f1b cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x85f0f91c cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x86986903 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x89ddf9ae cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x90c29da7 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x98bc62a0 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x98ef3e1c wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x9b45277e cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x9fdbd1ea cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x9ff683a3 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xa0449b60 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa1085c73 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xa31d05d4 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xa6217579 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xa6817b96 ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0xa7b45dd9 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0xaaef77be cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xac1875aa cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xacb1f31d cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0xaeb7a345 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0xb0ead94d cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xb7868ce3 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xb7c2de49 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xb8f41ab2 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xbc7a4986 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xc049efa4 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc0b022a3 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xc1899b92 ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0xc3c8af47 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0xc625d37a wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc83ef94c cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xcb0dd09a cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xcd0e043a ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xcf367ca3 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0xcfc9444a ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xd6643e92 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xe0bcd3dc cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xe29aac05 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xeae944c1 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xeb766a28 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xeb972bda cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0xed7ffc76 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf6009895 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0xf7c660b1 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xf9c215e1 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x0fd7a657 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x66b7dae1 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x837fdfd3 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xaa41ece3 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xcd21f448 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0xe68527c1 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL sound/ac97_bus 0xd1fe7254 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xf05f9bf2 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x52a0e1be snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xa4fbd148 snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0xafadd5a5 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xd498021a snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x0c907cdd snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x205395a0 snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x614705ff snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7746bb9b snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x79794472 snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x991c0f60 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xef8fa3d2 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf3f0324e snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf6fdda44 snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x6a8b77f3 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x0b7c3465 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x0d01570c snd_register_device -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1da8e54a snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x1ea4d4d9 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x1ef8dca3 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x1f6822d1 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x26cd118a snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x2748b172 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0x2e830795 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x327e5041 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x32c55428 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3b54fe21 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x40023c18 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x431415a5 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x487a0dd1 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x50ff1311 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x6b6df6b0 snd_info_register -EXPORT_SYMBOL sound/core/snd 0x6fe000da snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x7c30cf09 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x84eb20d8 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x8b123f7d snd_device_register -EXPORT_SYMBOL sound/core/snd 0x8c48fb41 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8e978e84 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x938d5c8e snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0x9fd968c3 snd_device_new -EXPORT_SYMBOL sound/core/snd 0x9ffdab58 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0xa2dacb67 snd_device_free -EXPORT_SYMBOL sound/core/snd 0xa458393f snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xa4d557a1 snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xa5e17835 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb3a303d3 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0xc2eefe82 snd_card_register -EXPORT_SYMBOL sound/core/snd 0xc3b021c1 snd_component_add -EXPORT_SYMBOL sound/core/snd 0xcde024a7 snd_card_free -EXPORT_SYMBOL sound/core/snd 0xd91e358f snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0xda75f6df snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xdcbbb447 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0xdf2c04bd snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0xe6901c19 snd_cards -EXPORT_SYMBOL sound/core/snd 0xe8875ce3 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xe8fdea62 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0xf045e189 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xf25ab719 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0xf34f8645 snd_card_new -EXPORT_SYMBOL sound/core/snd 0xf5662560 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0xf7f9db00 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xf968eeb1 _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0xfabf09a8 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-hwdep 0xbb14cd95 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x04c414b8 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x0a64f374 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x1297e94d snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x16c1d5c9 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x271dfc6f snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x29e25980 snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3b33f586 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x3fa1a74f snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x40434a5f snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x44293515 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x46c15d4e snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x49fd1fbf _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x4c5750f5 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x505b21f0 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x59e1c380 snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x617389f0 snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x6b2589a8 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x6dce6226 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x6e3e112b snd_pcm_sgbuf_ops_page -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x6ff5ed96 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x73dbc37c snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x7cfe5337 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x83fa2c18 snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x840f77e9 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x8d08c999 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x8fddcc04 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x921780ba snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x9c681307 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x9cae6cd3 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x9d2ca65e snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xa0199d80 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0xa06a840d snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb41a12c4 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xba6ab250 snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0xba9477cf snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xbb99e580 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0xc1a73108 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xc664bf82 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0xca34c226 snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0xd182aeae snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0xd94d71ca snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0xda4780d9 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xdab64e38 snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0xe2cabe36 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe8130e23 snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0xe84cfd8f snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xeefbb3cb snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xf0182c92 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xfb6de873 snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1490a223 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x36e49ca1 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x36f3e835 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x41456e3b snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4500de54 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4574dcb5 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4628054a snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4bbb36e0 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x574b4601 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x64f12274 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x658c1c82 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6c29a060 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7be480aa snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x93246ea5 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc180c65e snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xcbca9fd9 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd4a02076 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe40a46f7 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe9006ad2 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-timer 0x1b713353 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x2ec3dc35 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0x3e9d71eb snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x57d17737 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x6629f783 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x69321e1e snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x9230d3f7 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x93f8ba6f snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xbf24ecfc snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xd83c9cd7 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xdaee3e71 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xe60271bb snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xecf11f79 snd_timer_open -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6de31b77 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x169fd419 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1c1ae779 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x56f20a27 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6195c855 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7d0d0ecd snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa036d2cb snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb47227a1 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb747feef snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xff8bf497 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x00a8fedd snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0e2aeec1 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3912cfce snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7e4a797e snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa737eac2 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xaada6f5d snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xac12c0d9 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd6a58df6 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf9288b72 snd_vx_suspend -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x00bde88c snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x040c0795 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x165fc024 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x205afa3b fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20bb47d0 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x22306af0 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2887836b amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x34493675 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3aa56651 amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x493b1d28 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5a179860 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x75fdc9ee amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fee8dd4 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x845178b5 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x86935a9d fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8ded1583 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8eb3b601 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x954ae6cf snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9d00aa3c amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb78ba049 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc9c620bf iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xca080e91 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xce5f88f1 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xce949f10 amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd4ca75d8 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe1a669b5 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe217460d amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe307e212 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xecdd2563 snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf0b93f06 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf7ce7760 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfc49988b fw_iso_resources_update -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x7c31add5 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x8ec49620 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x12a237fb snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3ed165d8 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x43519228 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x52c106fe snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x68abb722 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb7a0e0f6 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd1f87b4c snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf19d9fba snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x097d664c snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x204200ce snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x60b94600 snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc6a27bde snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc88ed488 snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xfc28eab7 snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8548a2e9 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x955d2d9b snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xddb73c79 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf091b8d2 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x00186b98 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xfa04b39c snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1c0df4e9 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2d0e8f15 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x35fcf878 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8c8bdb20 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe18d0fd3 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xebe38270 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x0842d144 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x5b2b37a5 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x6c7d35cb snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xd8b4d32d snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xe12566b9 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xfc49cec2 snd_i2c_probeaddr -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x00caffbd snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x10b38ca8 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3b7b1950 snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4a4eeb93 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5caef118 snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x811c6bae snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xac98f7df snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb874ea93 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xeb1fbf73 snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf7006b61 snd_sbdsp_reset -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x10647a22 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x249170a6 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2e7b5d98 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x310de8ec snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4a36c7a9 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6e2dd117 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6fab8361 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x72b96c56 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa2979e56 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa3ca2540 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa68fb1b6 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc9d35f7b snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd02d03a2 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd9692728 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdd017a86 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe73fbc27 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xff58ffc7 snd_ac97_write -EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x573fb942 hpi_send_recv -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0fc262fe snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x43631008 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x501497fd snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x67933951 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x732e4fa1 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9d424b66 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa4101eb2 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc11258e7 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc3d847fb snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x1fba1372 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x6d9f9b53 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xec168fc3 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0376749e oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0b9f76a8 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x21347746 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2ce4c35f oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2eea3d88 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2f32d80b oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3bfb443d oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4045b5c9 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x443c9f2e oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x65230b1b oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6680fc35 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6932f674 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7b9326e2 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8b174539 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9c9216a5 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa3f953cd oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa3ff63a4 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa7b516db oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc2c33252 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd9f3b960 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfa077477 oxygen_write_uart -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x0a7dc512 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x22e601b0 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x659bde69 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x84719818 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xdde36a84 snd_trident_free_voice -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x03e0587f tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x0cf33a9e tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0x67a3df58 sst_dma_new -EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xdc045797 sst_dma_free -EXPORT_SYMBOL sound/soc/snd-soc-core 0x6b526407 snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/soundcore 0x101b9de9 sound_class -EXPORT_SYMBOL sound/soundcore 0x27f03de1 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x4665bf20 register_sound_midi -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x818f20ce register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xcea7b5b3 register_sound_special -EXPORT_SYMBOL sound/soundcore 0xdb6bb374 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1588b71f snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x627e7d71 snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x79b9a7d4 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbd5bb4ba snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfee364a2 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfef3d38e snd_emux_register -EXPORT_SYMBOL sound/synth/snd-util-mem 0x3067a9c9 snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x3ced2712 __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x3d048eed snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x68bdd18d __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x6a492129 snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xb81939be snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0xbab4df4d snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0xeddcbb09 __snd_util_memblk_new -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xce645c9a snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL ubuntu/hio/hio 0x14e060b9 ssd_submit_pbio -EXPORT_SYMBOL ubuntu/hio/hio 0x3398316d ssd_set_wmode -EXPORT_SYMBOL ubuntu/hio/hio 0x3ff0b3fb ssd_bm_status -EXPORT_SYMBOL ubuntu/hio/hio 0x83b74dac ssd_register_event_notifier -EXPORT_SYMBOL ubuntu/hio/hio 0x884b29f8 ssd_get_temperature -EXPORT_SYMBOL ubuntu/hio/hio 0x8b36ebd2 ssd_get_version -EXPORT_SYMBOL ubuntu/hio/hio 0xb10159a9 ssd_get_label -EXPORT_SYMBOL ubuntu/hio/hio 0xbb576418 ssd_reset -EXPORT_SYMBOL ubuntu/hio/hio 0xe05f7ad5 ssd_get_pciaddr -EXPORT_SYMBOL ubuntu/hio/hio 0xf13b355f ssd_set_otprotect -EXPORT_SYMBOL ubuntu/hio/hio 0xfabf1ba2 ssd_unregister_event_notifier -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x00322056 VBoxGuest_RTMpCpuIdFromSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x01674ab7 VBoxGuest_RTSemMutexRequestNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0429a6f0 VBoxGuest_RTThreadCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x057fd386 VBoxGuest_RTR0MemObjLockKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0731e88d VBoxGuest_RTAssertMsg2Add -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x079b132d VBoxGuest_RTMemTmpAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08ed98db VBoxGuest_RTMemDupExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x09a88bc3 VBoxGuest_RTTimeExplode -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0a442050 VBoxGuest_RTAssertAreQuiet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b94344b VBoxGuest_g_pszRTAssertExpr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0beb235d VBoxGuest_RTMpIsCpuWorkPending -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0cd1b64d VBoxGuest_RTMpCurSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0d10d1ca VBoxGuest_RTTimeNormalize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f3e114a VBoxGuest_RTSemSpinMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f884b3a VBoxGuest_RTStrToInt64Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11ced39a VBoxGuest_RTSemEventWaitEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11e95d2e VBoxGuest_RTLogLoggerEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11f80121 VBoxGuest_RTSemMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x12614b82 VBoxGuest_RTStrToInt8Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x12f430f3 VBoxGuest_RTAssertMsg2AddV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x147206e1 VBoxGuest_RTStrToUInt64 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x151752ec VBoxGuest_RTHeapSimpleGetFreeSize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1520b2c8 VBoxGuest_RTLogCreateEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x160b14d4 VBoxGuest_RTMpGetPresentSet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1926b25c VBoxGuest_RTLogRelLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x19790b4c VBoxGuest_RTLogFlags -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x197acd65 VBoxGuest_RTR0Init -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1a6d7d86 VBoxGuest_RTThreadPreemptIsEnabled -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1ae28abb VBoxGuest_RTThreadIsSelfAlive -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1c3b0f90 VBoxGuest_RTR0MemObjAddressR3 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1dc5ebbe VBoxGuest_RTThreadWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f3e577b VBoxGuest_RTMemTmpAllocZTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f70d065 VBoxGuest_RTErrConvertToErrno -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2003169b VBoxGuest_RTSpinlockAcquire -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x20728ae6 VBoxGuest_RTThreadCreateV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x20d9d625 VBoxGuest_RTTimeToString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x22058511 VBoxGuest_RTSemMutexRequestDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2254228b VBoxGuest_RTMpGetPresentCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2387f039 VBoxGuest_RTMpIsCpuPresent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x25219f5e VBoxGuest_RTR0Term -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2580d04c VBoxGuest_RTSemEventMultiSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2632a013 VBoxGuest_RTLogRelLoggerV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29708cf0 VBoxGuest_RTR0MemUserCopyTo -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2a2284fb VBoxGuest_RTAssertMayPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2af3453c VBoxGuest_RTLogPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2c2b5b46 VBoxGuest_RTTimerGetSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2cfefa48 VBoxGuest_RTLogBackdoorPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d445217 VBoxGuest_RTStrToInt64Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d581c06 VBoxGuest_RTMpCurSetIndexAndId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2eca7777 VBoxGuest_RTHeapSimpleAlloc -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2fb7502f VBoxGuest_RTThreadSetName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x30e40c69 VBoxGuest_RTLogSetDefaultInstanceThread -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3168cadf VBoxGuest_RTTimeSystemMilliTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x31ac4c5f VBoxGuest_RTThreadIsInitialized -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x33d7313a VBoxGuest_RTMpCpuId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x343e3e1b VBoxGuest_RTLogGetDestinations -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3480f453 VBoxGuest_RTSemMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x358153bb VBoxGuest_RTStrCopy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x362275e8 VBoxGuest_RTMemContFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x372d5e29 VBoxGuest_RTPowerNotificationDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x376d539c VBoxGuest_RTThreadGetType -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x381d7c24 VBoxGuest_RTMemAllocVarTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x383a0b9d VBoxGuest_RTMpPokeCpu -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a47392e VBoxGuest_RTErrConvertFromErrno -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b04381e VBoxGuest_RTSemEventMultiReset -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b231c95 VBoxGuest_RTTimeNanoTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3bcf543a VBoxGuest_RTLogGetDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3d00f113 VBoxGuest_g_u32RTAssertLine -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3de43f66 VBoxGuest_RTSemEventCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3dfc9ab8 VBoxGuest_RTSemMutexIsOwned -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3fbf3c07 VBoxGuest_RTThreadIsInInterrupt -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x40996438 VBoxGuest_RTSemEventMultiWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x42ecc6d1 VBoxGuest_RTThreadPreemptRestore -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x43fdd8d9 VBoxGuest_RTSemFastMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x44cfbc28 VBoxGuest_RTThreadGetNative -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x461fa9fe VBoxGuest_RTLogRelGetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x46c14223 VBoxGuest_RTLogSetCustomPrefixCallback -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x49f1be17 VBoxGuest_RTThreadFromNative -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x49f4d19c VBoxGuest_RTLogDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4ba5006e VBoxGuest_RTLogPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4bbec091 VBoxGuest_RTR0MemObjGetPagePhysAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4c7d8a56 VBoxGuest_RTSemEventMultiCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cac3157 VBoxGuest_RTLogFormatV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cecc93d VBoxGuest_RTR0MemObjEnterPhysTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cf913a1 VBoxGuest_RTThreadGetName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4ea67110 VBoxGuest_RTStrToInt32 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4f041d39 VBoxGuest_RTMemContAlloc -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4fc8e10c VBoxGuest_RTMpGetSet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4fe9e5f1 VBoxGuest_RTR0MemObjProtect -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5040043b VBoxGuest_RTSemEventWaitExDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x508bb2c4 VBoxGuest_RTLogSetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x51ec28bd VBoxGuest_RTLogGetFlags -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53265abc VBoxGuest_RTLogSetBuffering -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5352c915 VBoxGuest_RTSemMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54098f34 VBoxGuest_RTTimerStop -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54ddf87c VBoxGuest_RTThreadPreemptIsPossible -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5595fc22 VBoxGuest_RTSpinlockDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x56596e82 VBoxGuest_RTThreadSelfName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x56c939fe VBoxGuest_RTAssertMsg1 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5847ae52 VBoxGuest_RTMpGetCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x58d1b65e VBoxGuest_RTThreadPreemptIsPending -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x598d3622 VBoxGuest_RTAssertMsg2AddWeak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5a97195c VBoxGuest_RTHeapSimpleRelocate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5aa6ed66 VBoxGuest_RTPowerSignalEvent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5b3a5164 VBoxGuest_RTLogWriteUser -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5cc0b1b2 VBoxGuest_RTProcSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5d3b1bd6 VBoxGuest_RTSemSpinMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e071eb3 VBoxGuest_RTSemEventMultiDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e17b70e VBoxGuest_RTSpinlockRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e75c570 VBoxGuest_RTStrToUInt16 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5eaea89a VBoxGuest_RTSemFastMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ee65bb7 VBoxGuest_RTStrToUInt16Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ef42fe5 VBoxGuest_RTTimerStart -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5f2f48bb VBoxGuest_RTLogWriteStdErr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x61143878 VBoxGuestIDCCall -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6173b384 VBoxGuest_RTMpOnPairIsConcurrentExecSupported -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x61770e8c VBoxGuest_RTStrToUInt32 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63378722 VBoxGuest_RTLogBackdoorPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x634946f7 VBoxGuest_RTMpIsCpuOnline -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x637a1d69 VBoxGuest_RTLogWriteStdOut -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6381bb97 VBoxGuest_RTStrFormat -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63b1fde6 VBoxGuest_RTMpCpuIdToSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63bc10b0 VBoxGuest_RTLogCreateExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x658cd915 VBoxGuest_RTR0MemObjFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x67135d2b VBoxGuest_RTSemFastMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6862822a VBoxGuest_RTHeapSimpleSize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x695d63ad VBoxGuest_RTMpNotificationDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b01bbf3 VBoxGuest_RTMpOnSpecific -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b58b79d VBoxGuest_RTSemSpinMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b91f1ce VBoxGuest_RTStrFormatTypeDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c8460ac VBoxGuest_RTLogRelGetDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6cec7c3b VBoxGuest_RTTimerCreateEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6d8e9c87 VBoxGuest_RTTimeNow -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6e8541b7 VBoxGuest_RTAssertMsg2Weak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x704e1f6f VBoxGuest_RTAssertMsg2AddWeakV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x70867323 VBoxGuest_RTStrToUInt8Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x71060970 VBoxGuest_RTStrToUInt16Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x716e3be3 VBoxGuest_RTMpGetOnlineCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x729cc4ab VBoxGuest_RTR0MemObjSize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x72ff1bc3 VBoxGuest_RTTimeIsLeapYear -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x730a01b0 VBoxGuest_RTLogRelSetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x74812dde VBoxGuest_RTStrToInt32Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x759e7492 VBoxGuest_RTSemFastMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x764ecb18 VBoxGuest_RTR0MemObjAllocLowTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76a3c47b VBoxGuest_RTMemAllocZVarTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x79d59e24 VBoxGuest_RTSemSpinMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7d0d9dae VBoxGuest_RTR0MemObjAllocPhysNCTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7d15e878 VBoxGuest_RTMpGetOnlineSet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7dcc30d8 VBoxGuest_RTStrToInt32Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7e29739a VBoxGuest_RTStrToInt16 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7f0a40ea VBoxGuest_RTLogComPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7fc5bdcf VBoxGuest_RTR0MemObjAllocPhysTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8196c4e6 VBoxGuest_RTSemSpinMutexTryRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x82e081bc VBoxGuest_RTStrFormatTypeSetUser -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x83e78406 VBoxGuest_RTR0MemAreKrnlAndUsrDifferent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x841e42e9 VBoxGuest_RTSemMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8484a0d6 VBoxGuest_RTStrToInt16Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x84e227f6 VBoxGuest_RTThreadIsSelfKnown -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x86120100 VBoxGuest_RTLogDumpPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x867be0d2 VBoxGuest_RTLogDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x868b79a5 VBoxGuest_RTStrPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x879761cf VBoxGuest_RTR0MemObjAllocPhysExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x87da3860 VBoxGuest_RTAssertSetQuiet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8826d9de VBoxGuest_RTMpGetMaxCpuId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x883d496c VBoxGuest_RTMpGetCoreCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x885274fe VBoxGuest_RTThreadUserWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x89117f68 VBoxGuest_RTMemExecAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8a3c154f VBoxGuest_RTR0MemObjLockUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8a454b31 VBoxGuest_RTSemEventGetResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8e01e3fd VBoxGuest_RTStrFormatV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8f1309e3 VBoxGuest_RTAssertMsg2 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x90312938 VBoxGuest_RTStrToUInt64Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x91204a9b VBoxGuest_RTTimeSpecToString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x916e42f0 VBoxGuest_RTAssertMsg1Weak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9264ffc0 VBoxGuest_RTLogRelPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x926bf9f7 VBoxGuest_RTThreadPreemptDisable -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x92e716ae VBoxGuest_RTLogGetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x94f7365f VBoxGuest_RTPowerNotificationRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x95fa480d VBoxGuest_RTSpinlockCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x961772f3 VBoxGuestIDCOpen -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x967ea4b6 VBoxGuest_RTStrToInt64 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x96893ce3 VBoxGuest_RTR0MemObjAllocPageTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x96f2e65b VBoxGuest_RTR0MemUserCopyFrom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9796440b VBoxGuest_RTSemEventWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x97eb2414 VBoxGuest_RTThreadNativeSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9874cd16 VBoxGuest_RTMpIsCpuPossible -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9909ff3d VBoxGuest_g_pszRTAssertFunction -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9a2ee747 VBoxGuest_RTSemEventDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9bcc539d VBoxGuest_RTThreadUserReset -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9cd9213f VBoxGuest_RTR0MemKernelIsValidAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9d6b527c VBoxGuest_RTThreadWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9dbd63d6 VBoxGuest_RTStrPrintfEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9eaecd9d VBoxGuest_RTStrPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9f301085 VBoxGuest_RTTimeSpecFromString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9f4f616a VBoxGuest_RTLogLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9fb0596d VBoxGuest_RTMemDupTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa168a070 VBoxGuest_RTLogLoggerExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa34eb1b3 VBoxGuest_RTTimeSystemNanoTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa486e710 VBoxGuestIDCClose -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa554bd97 VBoxGuest_RTLogFlushRC -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5a26703 VBoxGuest_RTMpNotificationRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa696baed VBoxGuest_RTR0MemObjAddress -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6a22472 VBoxGuest_RTThreadUserWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6de1bcd VBoxGuest_RTTimerChangeInterval -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa86c5a96 VBoxGuest_RTSemEventSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaba9bc9c VBoxGuest_RTLogCloneRC -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xac990d74 VBoxGuest_RTTimerCanDoHighResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xacaac41d VBoxGuest_g_szRTAssertMsg1 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xad4fdf4e VBoxGuest_RTSemMutexRequestNoResumeDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xad649089 VBoxGuest_RTStrToUInt64Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xae3e0ecd VBoxGuest_RTLogRelPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaf6ffbfc VBoxGuest_RTThreadSleep -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb05840a7 VBoxGuest_RTSemEventMultiWaitExDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb1cc9148 VBoxGuest_RTLogWriteCom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb42ea0e3 VBoxGuest_g_pszRTAssertFile -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb444f4a1 VBoxGuest_RTLogDestinations -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb6941b2e VBoxGuest_RTStrToUInt8 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8c6e615 VBoxGuest_RTStrToUInt32Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8ca8fcb VBoxGuest_RTMpOnPair -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8df2b3a VBoxGuest_RTAssertShouldPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9b070b7 VBoxGuest_RTAssertMsg2V -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9d7a27d VBoxGuest_RTHeapSimpleDump -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaa97421 VBoxGuest_g_szRTAssertMsg2 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbb1ead73 VBoxGuest_RTR0MemKernelCopyTo -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbba928e6 VBoxGuest_RTHeapSimpleGetHeapSize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc4d30f6 VBoxGuest_RTR0MemObjAllocContTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc85935a VBoxGuest_RTR0MemKernelCopyFrom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbe4e6114 VBoxGuest_RTLogFlushToLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbffedb55 VBoxGuest_RTMemAllocExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc1095c44 VBoxGuest_RTTimeImplode -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc1b3ada4 VBoxGuest_RTAssertMsg2WeakV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc3a1e5de VBoxGuest_RTLogGetGroupSettings -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc3fee96e VBoxGuest_RTMemAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4bd5fd8 VBoxGuest_RTStrPrintfExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc63cc2f0 VBoxGuest_RTR0MemExecDonate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc71362b7 VBoxGuest_RTLogRelSetBuffering -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc8fbf4aa VBoxGuest_RTHeapSimpleInit -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc91cea98 VBoxGuest_RTStrCopyEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc9a6a8e7 VBoxGuest_RTThreadCreateF -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcaee97bf VBoxGuest_RTLogComPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcb2a6b54 VBoxGuest_RTMemExecFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xceae9d6a VBoxGuest_RTStrConvertHexBytes -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd14e8ec2 VBoxGuest_RTTimerDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd1f3f0b9 VBoxGuest_RTSemEventWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2a37e73 VBoxGuest_RTTimerReleaseSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2d290ab VBoxGuest_RTStrToUInt8Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd3a125cb VBoxGuest_RTR0MemObjMapKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd46c35d4 VBoxGuest_RTMpOnAll -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd4b597fc VBoxGuest_RTStrCopyP -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd5bfc897 VBoxGuest_RTHeapSimpleAllocZ -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd637869e VBoxGuest_RTMemReallocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd69bc8e4 VBoxGuest_RTR0MemObjReserveUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd706d85c VBoxGuest_RTTimeFromString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd88c9330 VBoxGuest_RTLogLoggerV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd984a7f4 VBoxGuest_RTStrFormatTypeRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdc700594 VBoxGuest_RTSemEventMultiGetResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xde9ca744 VBoxGuest_RTThreadYield -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdfbc69bb VBoxGuest_RTThreadPreemptIsPendingTrusty -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe054d759 VBoxGuest_RTMemTmpFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe095cef8 VBoxGuest_RTThreadSetType -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0dc7391 VBoxGuest_RTThreadIsMain -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe1c6b3d7 VBoxGuest_RTR0MemObjMapKernelExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe2765c54 VBoxGuest_RTR0AssertPanicSystem -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe38d562c VBoxGuest_RTStrFormatNumber -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe3fd228f VBoxGuest_RTTimeMilliTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe7e42113 VBoxGuest_RTThreadSleepNoLog -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe88dae73 VBoxGuest_RTMemFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe8fad285 VBoxGuest_RTSemEventMultiWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea2f2944 VBoxGuest_RTStrToInt8Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea38e4f7 VBoxGuest_RTLogDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea71842b VBoxGuest_RTMpGetPresentCoreCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xebeefa0e VBoxGuest_RTR0ProcHandleSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xec3cc9a6 VBoxGuest_RTSemEventMultiWaitEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xee774b8e VBoxGuest_RTLogWriteDebugger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xeea4ee73 VBoxGuest_RTR0MemObjMapUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xef6e1359 VBoxGuest_RTMpOnOthers -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf02f22ab VBoxGuest_RTMemAllocZTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf0dbb702 VBoxGuest_RTHeapSimpleFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf26294bb VBoxGuest_RTR0MemObjIsMapping -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf2aa79bb VBoxGuest_RTThreadUserSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf3943009 VBoxGuest_RTTimerRequestSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf5d89855 VBoxGuest_RTLogGroupSettings -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf69aec24 VBoxGuest_RTStrToInt16Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf7397dd2 VBoxGuest_RTAssertSetMayPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf8113d66 VBoxGuest_RTMpOnAllIsConcurrentSafe -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf956a4e8 VBoxGuest_RTLogFlush -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf958d9cb VBoxGuest_RTLogCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfa7d95c9 VBoxGuest_RTR0MemUserIsValidAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfb31e12b VBoxGuest_RTStrToUInt32Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfba93ac9 VBoxGuest_RTR0MemObjReserveKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfbc67e88 VBoxGuest_RTMemFreeEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe72cef7 VBoxGuest_RTStrToInt8 -EXPORT_SYMBOL vmlinux 0x001b4e02 pci_get_device -EXPORT_SYMBOL vmlinux 0x00218ee8 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x003f999a pcim_iomap -EXPORT_SYMBOL vmlinux 0x006f4b63 find_get_pages_tag -EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done -EXPORT_SYMBOL vmlinux 0x00b330b1 revert_creds -EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00e62934 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x00e780a4 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x00ef491a generic_perform_write -EXPORT_SYMBOL vmlinux 0x00ffa374 serio_rescan -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x012aa607 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x012b7bdb pci_select_bars -EXPORT_SYMBOL vmlinux 0x014f032b dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x015d2d22 acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x016bba17 x86_hyper_ms_hyperv -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x01b6076a phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x01b92859 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x01bb190f devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x01bcdfaf scsi_unregister -EXPORT_SYMBOL vmlinux 0x01d032a5 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x01d266a2 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x01d58578 dquot_operations -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x021465df skb_split -EXPORT_SYMBOL vmlinux 0x02176009 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x021b7432 d_walk -EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x023b2010 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x028ac15d blkdev_fsync -EXPORT_SYMBOL vmlinux 0x02928f3c backlight_device_register -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02f1a629 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x033f8083 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x036036e3 udp_prot -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x0367aad9 vme_slot_num -EXPORT_SYMBOL vmlinux 0x03755e8f skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x03939d09 fb_find_mode -EXPORT_SYMBOL vmlinux 0x0393d0d6 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x03e34c6f __neigh_create -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04181c65 get_phy_device -EXPORT_SYMBOL vmlinux 0x041ac7be sockfd_lookup -EXPORT_SYMBOL vmlinux 0x041bbc79 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each -EXPORT_SYMBOL vmlinux 0x042f9ae2 simple_statfs -EXPORT_SYMBOL vmlinux 0x043e449a skb_copy_bits -EXPORT_SYMBOL vmlinux 0x044605e8 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x04a20abb input_open_device -EXPORT_SYMBOL vmlinux 0x04a53769 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x04ab8f9d led_blink_set -EXPORT_SYMBOL vmlinux 0x04b197f2 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x04b69463 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x04bd6b6b cont_write_begin -EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset -EXPORT_SYMBOL vmlinux 0x04d62c47 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04fe1784 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x04ff4eac pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x050fc700 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x051c2fd4 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x051fa1e5 blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x05312623 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x053f15d9 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x0541d630 cdev_alloc -EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x056e1e27 dev_uc_add -EXPORT_SYMBOL vmlinux 0x0597e341 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0x059e9fe8 seq_pad -EXPORT_SYMBOL vmlinux 0x05a98283 flush_signals -EXPORT_SYMBOL vmlinux 0x05b51b89 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x05b52664 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x05d5d542 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x05e03b77 pci_request_regions -EXPORT_SYMBOL vmlinux 0x05e7df12 md_integrity_register -EXPORT_SYMBOL vmlinux 0x05ee0f95 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x05f18613 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x06052f8d __memmove -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x061f4039 acpi_get_table_with_size -EXPORT_SYMBOL vmlinux 0x0623743b proc_douintvec -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x063ca861 lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0x065e4ff7 dquot_get_state -EXPORT_SYMBOL vmlinux 0x0672cc0e unregister_cdrom -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x068881e3 uart_register_driver -EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache -EXPORT_SYMBOL vmlinux 0x068f62ef security_path_chmod -EXPORT_SYMBOL vmlinux 0x069501e6 current_task -EXPORT_SYMBOL vmlinux 0x0695433d reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0x06bfbb18 bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end -EXPORT_SYMBOL vmlinux 0x06cc4ec2 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x06d10876 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x06d64ac6 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x06f98561 genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x06f9af57 key_alloc -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x06ff2a79 security_task_getsecid -EXPORT_SYMBOL vmlinux 0x0707d1a3 tty_check_change -EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x07351c42 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x074057b8 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x0764e8e2 lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0x078822e4 gen_pool_create -EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x07ba5f85 input_set_keycode -EXPORT_SYMBOL vmlinux 0x07bc2a67 d_alloc_name -EXPORT_SYMBOL vmlinux 0x07c2f6a9 __scsi_add_device -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07d08fde bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x080bab38 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x08227426 posix_test_lock -EXPORT_SYMBOL vmlinux 0x0826be81 mdiobus_write -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083d481a iput -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x0845986f pagevec_lookup -EXPORT_SYMBOL vmlinux 0x085d4c68 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x08675ffb bdi_init -EXPORT_SYMBOL vmlinux 0x087058e3 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x087f44e7 simple_unlink -EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes -EXPORT_SYMBOL vmlinux 0x08b0ec9a set_create_files_as -EXPORT_SYMBOL vmlinux 0x08b3a366 key_link -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x091e0f78 tty_port_open -EXPORT_SYMBOL vmlinux 0x093dffd8 bdi_register_dev -EXPORT_SYMBOL vmlinux 0x093e9b0c kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x0946c86b md_update_sb -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x0959ae8c inode_get_bytes -EXPORT_SYMBOL vmlinux 0x095e9de5 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x0965ddbc pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x09696626 acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x09700041 dev_deactivate -EXPORT_SYMBOL vmlinux 0x098431ba acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x099bc26e devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09db06d2 __seq_open_private -EXPORT_SYMBOL vmlinux 0x09dfb79c blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x0a245f80 fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a2b8891 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x0a3a42e4 d_delete -EXPORT_SYMBOL vmlinux 0x0a3b0290 blk_init_queue_node -EXPORT_SYMBOL vmlinux 0x0a46b31e devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x0a513eb7 dev_emerg -EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x0a5c341b __dquot_transfer -EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a7a0bb8 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x0a932c48 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aaea440 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x0ac10671 vga_switcheroo_init_domain_pm_optimus_hdmi_audio -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0b00caba xfrm_init_state -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b18319c __inet_hash -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b2048b4 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x0b347674 phy_start -EXPORT_SYMBOL vmlinux 0x0b4afef5 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x0b5cb42f input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b678792 param_ops_bint -EXPORT_SYMBOL vmlinux 0x0b67e73e tcp_shutdown -EXPORT_SYMBOL vmlinux 0x0b6d9d6b input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b84e363 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x0b9d7edd lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x0ba10257 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x0ba83b1c posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x0bb8d807 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bcaba7b __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x0bda3b7a neigh_lookup -EXPORT_SYMBOL vmlinux 0x0bf2255a compat_mc_getsockopt -EXPORT_SYMBOL vmlinux 0x0c09db96 con_is_bound -EXPORT_SYMBOL vmlinux 0x0c137fcc kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work -EXPORT_SYMBOL vmlinux 0x0c22e9f9 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x0c2d1846 __skb_checksum -EXPORT_SYMBOL vmlinux 0x0c3f82c4 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c7b2ee1 devm_iounmap -EXPORT_SYMBOL vmlinux 0x0c918a97 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x0c9b0789 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cb18d61 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x0cd213c4 cap_mmap_file -EXPORT_SYMBOL vmlinux 0x0cd2af0c param_get_ushort -EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin -EXPORT_SYMBOL vmlinux 0x0ceea1db skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0x0d0ac53b framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d6022d3 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d7c9117 netdev_state_change -EXPORT_SYMBOL vmlinux 0x0d80efb5 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0x0d95359d page_cache_next_hole -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0da89b51 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x0dadc16b buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x0dc6a806 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x0de28b7c neigh_table_init -EXPORT_SYMBOL vmlinux 0x0de76130 serio_reconnect -EXPORT_SYMBOL vmlinux 0x0deb6f4e wireless_send_event -EXPORT_SYMBOL vmlinux 0x0df79f9d may_umount_tree -EXPORT_SYMBOL vmlinux 0x0df9f608 key_unlink -EXPORT_SYMBOL vmlinux 0x0e0524ec import_iovec -EXPORT_SYMBOL vmlinux 0x0e28c8da inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0x0e347fde dev_mc_add -EXPORT_SYMBOL vmlinux 0x0e371fe3 mdiobus_free -EXPORT_SYMBOL vmlinux 0x0e45a354 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x0e4c6e11 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x0e5759e0 abx500_remove_ops -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e753882 __vfs_read -EXPORT_SYMBOL vmlinux 0x0e75ceb3 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x0e7721a6 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x0e77be85 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x0e7a9ed2 uart_match_port -EXPORT_SYMBOL vmlinux 0x0eaed6f8 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x0eb5aec1 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x0ec5b884 agp_generic_enable -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ed8cc7b acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x0eda56a9 generic_make_request -EXPORT_SYMBOL vmlinux 0x0ee8323e tcp_check_req -EXPORT_SYMBOL vmlinux 0x0ef49ee9 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f578e5e md_write_start -EXPORT_SYMBOL vmlinux 0x0f698175 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f6e4002 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f819475 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x0f8c7dff current_fs_time -EXPORT_SYMBOL vmlinux 0x0f93f8a0 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x0f96a500 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x0fac229a max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fb5e024 locks_init_lock -EXPORT_SYMBOL vmlinux 0x0fbdcd21 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x0fc7409b elevator_exit -EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event -EXPORT_SYMBOL vmlinux 0x0fe9b175 pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0x0fed5ce6 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress -EXPORT_SYMBOL vmlinux 0x100e873f km_state_notify -EXPORT_SYMBOL vmlinux 0x102d0de1 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0x103104bd bioset_integrity_free -EXPORT_SYMBOL vmlinux 0x1031cbc0 dentry_unhash -EXPORT_SYMBOL vmlinux 0x1038f508 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0x10521d76 kern_path -EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x107b969e phy_detach -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x10b02a9b neigh_update -EXPORT_SYMBOL vmlinux 0x10d6edb3 param_set_ushort -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10f6310a compat_ip_getsockopt -EXPORT_SYMBOL vmlinux 0x10fece49 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110c22a4 dev_addr_del -EXPORT_SYMBOL vmlinux 0x113e9681 simple_rename -EXPORT_SYMBOL vmlinux 0x115f0fd3 dquot_commit -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x118945ab mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x1197ab2a scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11b7c0a4 write_cache_pages -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x1220504c blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x122ae5ba pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x123c0f54 inode_set_flags -EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x12604bca inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x126c79f9 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x12748694 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit -EXPORT_SYMBOL vmlinux 0x12fd2c59 seq_path -EXPORT_SYMBOL vmlinux 0x1305d532 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13291c6d tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x132b1d2d arp_tbl -EXPORT_SYMBOL vmlinux 0x132ba645 bioset_create -EXPORT_SYMBOL vmlinux 0x132e9386 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc -EXPORT_SYMBOL vmlinux 0x134d90df bio_split -EXPORT_SYMBOL vmlinux 0x134ffd0e pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x13695c9f md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x137ec84a agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0x139aef58 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x13be8cd3 fasync_helper -EXPORT_SYMBOL vmlinux 0x13cb5f33 skb_unlink -EXPORT_SYMBOL vmlinux 0x13cc6a8c serio_bus -EXPORT_SYMBOL vmlinux 0x13ce3720 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d2c13e xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x13e281a8 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x13ec7395 dcb_setapp -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x13fa1e56 register_netdevice -EXPORT_SYMBOL vmlinux 0x14046e64 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x140bd134 udp_proc_unregister -EXPORT_SYMBOL vmlinux 0x1445fef3 dump_skip -EXPORT_SYMBOL vmlinux 0x144966df vga_switcheroo_register_client -EXPORT_SYMBOL vmlinux 0x146892b3 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x14aa1af2 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x14bac0d4 vfs_whiteout -EXPORT_SYMBOL vmlinux 0x14c799e4 dquot_initialize -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14cf3437 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x14d86cc6 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x14ebffdc unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x14ee423f kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0x14f7b18e get_io_context -EXPORT_SYMBOL vmlinux 0x15014e91 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x150389d6 acpi_processor_power_init_bm_check -EXPORT_SYMBOL vmlinux 0x150ccd3a set_bh_page -EXPORT_SYMBOL vmlinux 0x15190017 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0x152b0fad alloc_disk -EXPORT_SYMBOL vmlinux 0x152db693 simple_fill_super -EXPORT_SYMBOL vmlinux 0x153e0a72 mntget -EXPORT_SYMBOL vmlinux 0x153f0114 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock -EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x157fa823 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x15c82aec param_ops_ullong -EXPORT_SYMBOL vmlinux 0x15cb802f sk_receive_skb -EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled -EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0x161da2a6 register_framebuffer -EXPORT_SYMBOL vmlinux 0x16231e17 fb_get_mode -EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 -EXPORT_SYMBOL vmlinux 0x1680311f pci_set_master -EXPORT_SYMBOL vmlinux 0x169146b7 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x16dbf6ae xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x16dc4d1f fence_init -EXPORT_SYMBOL vmlinux 0x16e0a910 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e2aaa8 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x16e4d7dd get_tz_trend -EXPORT_SYMBOL vmlinux 0x16e5e899 nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x16eaf2de bdev_read_only -EXPORT_SYMBOL vmlinux 0x16f4bfc4 devm_gpio_free -EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x17372b9d ping_prot -EXPORT_SYMBOL vmlinux 0x175bf17f md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x175febcb scsi_device_get -EXPORT_SYMBOL vmlinux 0x176dd0a6 blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x178b4b6f parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x178fc438 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x1791c476 follow_down_one -EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock -EXPORT_SYMBOL vmlinux 0x17a4bdfc ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17b6095d set_security_override -EXPORT_SYMBOL vmlinux 0x17bcf30b dst_destroy -EXPORT_SYMBOL vmlinux 0x17bdc42a skb_put -EXPORT_SYMBOL vmlinux 0x17c275d4 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x17cb9394 ps2_end_command -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x1810e885 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x186d12dd inet_offloads -EXPORT_SYMBOL vmlinux 0x187e91b5 no_llseek -EXPORT_SYMBOL vmlinux 0x1882ac14 up_read -EXPORT_SYMBOL vmlinux 0x188654d6 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x18aa7b2a inode_init_once -EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe -EXPORT_SYMBOL vmlinux 0x18b7313a bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x18c55214 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x18ca6192 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x18cc462c account_page_redirty -EXPORT_SYMBOL vmlinux 0x18cd1184 dev_open -EXPORT_SYMBOL vmlinux 0x18e11c5e mmc_start_req -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18ed9a77 skb_checksum -EXPORT_SYMBOL vmlinux 0x190e0b14 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x1916d5bb param_ops_byte -EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x191e1cf1 sock_release -EXPORT_SYMBOL vmlinux 0x191f08fd filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x194ad185 dev_close -EXPORT_SYMBOL vmlinux 0x195aa7d7 prepare_creds -EXPORT_SYMBOL vmlinux 0x195fcdf7 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x1997a049 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19bf00b2 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x19d19100 scsi_dma_map -EXPORT_SYMBOL vmlinux 0x19e549e0 pci_pme_active -EXPORT_SYMBOL vmlinux 0x19ec7a07 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x19efb8ca dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x19f22a14 pci_match_id -EXPORT_SYMBOL vmlinux 0x1a08eea0 inet_frag_find -EXPORT_SYMBOL vmlinux 0x1a1b5750 generic_setxattr -EXPORT_SYMBOL vmlinux 0x1a33c612 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a489f94 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0x1a62104f vfs_getattr -EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch -EXPORT_SYMBOL vmlinux 0x1a6de012 __dax_fault -EXPORT_SYMBOL vmlinux 0x1a99f96e phy_attach_direct -EXPORT_SYMBOL vmlinux 0x1a99fdf3 sg_miter_next -EXPORT_SYMBOL vmlinux 0x1a9f2bfa put_cmsg -EXPORT_SYMBOL vmlinux 0x1aa6358b tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ac6c787 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b1e0f24 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b53670d init_special_inode -EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1b8cba94 bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x1b8eddfa mmc_of_parse -EXPORT_SYMBOL vmlinux 0x1b9d2fd6 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x1ba0bbdd posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x1ba8ce2c pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock -EXPORT_SYMBOL vmlinux 0x1bef858a dquot_resume -EXPORT_SYMBOL vmlinux 0x1bfbcdd7 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x1c1bfb55 user_revoke -EXPORT_SYMBOL vmlinux 0x1c48e50c __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x1c6feba0 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x1c83ec0b blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset -EXPORT_SYMBOL vmlinux 0x1c912acb bio_integrity_free -EXPORT_SYMBOL vmlinux 0x1ca3169c vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be -EXPORT_SYMBOL vmlinux 0x1d10b491 sock_no_bind -EXPORT_SYMBOL vmlinux 0x1d3e2c19 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x1d920aa2 setup_new_exec -EXPORT_SYMBOL vmlinux 0x1d98b22a down_read -EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1dd6ec4a kill_anon_super -EXPORT_SYMBOL vmlinux 0x1de1d34d tcp_disconnect -EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0x1e0114fe __get_page_tail -EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe -EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt -EXPORT_SYMBOL vmlinux 0x1e0bb730 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc -EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e2a285f mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x1e2f605f tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x1e5285b4 bprm_change_interp -EXPORT_SYMBOL vmlinux 0x1e537e97 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x1e54a135 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x1e59db8c pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e79d291 sget -EXPORT_SYMBOL vmlinux 0x1e8ef150 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x1e959bc3 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea858d2 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x1ead3f3e pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x1ed7bd35 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x1eef2bd9 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x1f2c7052 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x1f598923 inet_addr_type -EXPORT_SYMBOL vmlinux 0x1f5b00fb km_policy_notify -EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x1fa13f70 mmc_erase -EXPORT_SYMBOL vmlinux 0x1fab7a9b key_put -EXPORT_SYMBOL vmlinux 0x1fb826f7 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc142ed mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x20092385 acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x200def83 vme_bus_type -EXPORT_SYMBOL vmlinux 0x201b0ac0 lg_global_unlock -EXPORT_SYMBOL vmlinux 0x202034ea blk_execute_rq -EXPORT_SYMBOL vmlinux 0x2023de18 ether_setup -EXPORT_SYMBOL vmlinux 0x2044aea7 amd_iommu_pc_get_max_banks -EXPORT_SYMBOL vmlinux 0x204b8c16 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x20718de9 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x207671fc xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20c7cc18 submit_bh -EXPORT_SYMBOL vmlinux 0x20c9c858 pci_disable_device -EXPORT_SYMBOL vmlinux 0x20d08164 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x20e7b6c4 i2c_release_client -EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x20efeba9 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x20f0c908 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x2120bd74 __f_setown -EXPORT_SYMBOL vmlinux 0x21273556 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x213d2f52 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x2178e43a inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x218cd398 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x218fbcfd __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x2198d14b pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0x21a701fe fence_signal -EXPORT_SYMBOL vmlinux 0x21c6de88 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21e66678 sock_create_kern -EXPORT_SYMBOL vmlinux 0x21e714ae __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get -EXPORT_SYMBOL vmlinux 0x21ed8b4f devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x21efefb2 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x220ff48a dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x223fbf25 tcf_hash_insert -EXPORT_SYMBOL vmlinux 0x224e7a0c genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x225411e4 ilookup5 -EXPORT_SYMBOL vmlinux 0x2261cbee tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x228a4ece backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x22a6d13b inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22bfa8ba page_put_link -EXPORT_SYMBOL vmlinux 0x22d86f26 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x22e18a83 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x22ec0707 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x2303fdde sock_no_poll -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x23398a3a inode_init_always -EXPORT_SYMBOL vmlinux 0x234481f4 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x2352a886 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x236c4f3c __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x238255a7 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x2397e50a remove_proc_entry -EXPORT_SYMBOL vmlinux 0x239c3bdd mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23b5e429 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x23b91db8 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x23cf97db vm_event_states -EXPORT_SYMBOL vmlinux 0x23e350d6 simple_empty -EXPORT_SYMBOL vmlinux 0x23ea58d2 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x23eea7f0 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x23fc6503 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x241652d2 console_start -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x2430f255 block_write_begin -EXPORT_SYMBOL vmlinux 0x24351589 agp_find_bridge -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245b7b4e find_inode_nowait -EXPORT_SYMBOL vmlinux 0x245c4cbd vga_con -EXPORT_SYMBOL vmlinux 0x2469b2bd kmem_cache_free -EXPORT_SYMBOL vmlinux 0x2472ac11 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x248cc64d d_splice_alias -EXPORT_SYMBOL vmlinux 0x24906602 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x249baf1d inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x24caa9b0 blk_get_queue -EXPORT_SYMBOL vmlinux 0x24d0628e del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x251b81cf read_dev_sector -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x2538c471 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x256e4dc7 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x2575fbe6 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2584111f tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x25861a22 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x258630d3 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x2596ef95 fget -EXPORT_SYMBOL vmlinux 0x25b0ebc4 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x25be87c9 nonseekable_open -EXPORT_SYMBOL vmlinux 0x25bf43b3 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x25cd061e gnttab_alloc_pages -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25f121cc dev_get_stats -EXPORT_SYMBOL vmlinux 0x260ec5f9 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x261c1b0f __skb_get_hash -EXPORT_SYMBOL vmlinux 0x26249833 devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x264110aa make_kgid -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update -EXPORT_SYMBOL vmlinux 0x268d4a75 ps2_drain -EXPORT_SYMBOL vmlinux 0x26948d96 copy_user_enhanced_fast_string -EXPORT_SYMBOL vmlinux 0x26a429e2 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x26a799ee find_lock_entry -EXPORT_SYMBOL vmlinux 0x26b2081b mark_info_dirty -EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create -EXPORT_SYMBOL vmlinux 0x26cd7f41 security_file_permission -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26f63ee6 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x26f87342 flush_old_exec -EXPORT_SYMBOL vmlinux 0x2710257d blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x2718095e input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x273b6d3f blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x27569425 param_set_ulong -EXPORT_SYMBOL vmlinux 0x275dc166 sg_miter_start -EXPORT_SYMBOL vmlinux 0x27773f5a inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x27838a9a vme_register_bridge -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove -EXPORT_SYMBOL vmlinux 0x278ac17d blk_requeue_request -EXPORT_SYMBOL vmlinux 0x279ad627 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x279cedc1 agp_put_bridge -EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction -EXPORT_SYMBOL vmlinux 0x27b40671 register_qdisc -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c33efe csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x27c6617f eth_header_parse -EXPORT_SYMBOL vmlinux 0x27cb7ea0 proc_remove -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x27ee8278 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x2804c6bc from_kgid -EXPORT_SYMBOL vmlinux 0x280dcb90 __put_cred -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28318305 snprintf -EXPORT_SYMBOL vmlinux 0x28418d12 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x28668a08 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x28985374 mount_ns -EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x28bf32fc udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x28d45aec mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x28d6a920 blk_init_tags -EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available -EXPORT_SYMBOL vmlinux 0x28f73112 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x2917a994 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x2932221e d_find_alias -EXPORT_SYMBOL vmlinux 0x294ac454 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x297058e5 up_write -EXPORT_SYMBOL vmlinux 0x29893eb8 sget_userns -EXPORT_SYMBOL vmlinux 0x299ced9e amd_iommu_domain_clear_gcr3 -EXPORT_SYMBOL vmlinux 0x29a26ca6 amd_iommu_flush_page -EXPORT_SYMBOL vmlinux 0x29a73468 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x29b301c1 agp_bind_memory -EXPORT_SYMBOL vmlinux 0x2a202da0 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x2a232bbb ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x2a2b1742 dev_trans_start -EXPORT_SYMBOL vmlinux 0x2a2c36de truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x2a723c05 genphy_read_status -EXPORT_SYMBOL vmlinux 0x2a7c672e free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x2a88d275 __alloc_skb -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2aaed930 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2acfaaeb xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x2addf77f xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x2b05a21b intel_gtt_get -EXPORT_SYMBOL vmlinux 0x2b067be4 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b0f72f8 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b2e02a0 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x2b6d197d blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x2b7b2850 get_super_thawed -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2bab52a3 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x2bc56eea genphy_update_link -EXPORT_SYMBOL vmlinux 0x2beaf08e downgrade_write -EXPORT_SYMBOL vmlinux 0x2bfb0e56 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x2c06459b nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x2c093614 finish_open -EXPORT_SYMBOL vmlinux 0x2c09c3a0 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x2c123806 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c27dc1d scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x2c35fcec nd_integrity_init -EXPORT_SYMBOL vmlinux 0x2c4365ce eth_gro_complete -EXPORT_SYMBOL vmlinux 0x2c48368c node_data -EXPORT_SYMBOL vmlinux 0x2c4a78b1 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x2c922316 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x2c93d84e xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0x2c996f62 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x2c9eabf9 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x2cb728ac nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x2cc40ecf fence_remove_callback -EXPORT_SYMBOL vmlinux 0x2ce89bfb mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x2d1802a9 dquot_alloc -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d33d7fd dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x2d4cf169 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x2d4e1e68 blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x2d4fe9a6 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x2d5c7cea pci_biosrom_size -EXPORT_SYMBOL vmlinux 0x2d67470e __scm_send -EXPORT_SYMBOL vmlinux 0x2d759bf0 mntput -EXPORT_SYMBOL vmlinux 0x2d861fc5 rwsem_wake -EXPORT_SYMBOL vmlinux 0x2d8bfa45 get_fs_type -EXPORT_SYMBOL vmlinux 0x2da497b2 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu -EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink -EXPORT_SYMBOL vmlinux 0x2de1511b gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception -EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write -EXPORT_SYMBOL vmlinux 0x2e05e8d8 param_set_long -EXPORT_SYMBOL vmlinux 0x2e0b89c9 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e1dea69 swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0x2e96ada4 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x2eaa78fe dm_get_device -EXPORT_SYMBOL vmlinux 0x2eb3cf32 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x2eb9a442 inet6_release -EXPORT_SYMBOL vmlinux 0x2ebe9262 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x2ec96fa7 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x2ed9f81f scsi_scan_target -EXPORT_SYMBOL vmlinux 0x2ee0a643 softnet_data -EXPORT_SYMBOL vmlinux 0x2ee3990f cdrom_check_events -EXPORT_SYMBOL vmlinux 0x2eee9607 mmc_can_erase -EXPORT_SYMBOL vmlinux 0x2ef1cc65 dquot_acquire -EXPORT_SYMBOL vmlinux 0x2ef4c0cb unlock_new_inode -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2ef835aa freeze_super -EXPORT_SYMBOL vmlinux 0x2f01d557 vm_map_ram -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f09172b skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x2f11644b prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x2f245b62 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f40e3f3 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f485ccb sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x2f58efdf cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x2f64f89f cpu_present_mask -EXPORT_SYMBOL vmlinux 0x2f779fed capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x2f9bb548 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x2f9c4720 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x2fa1b88d block_commit_write -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fb71394 tty_devnum -EXPORT_SYMBOL vmlinux 0x2fd2893f seq_open_private -EXPORT_SYMBOL vmlinux 0x2fdffc3e __destroy_inode -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2ff063b5 acpi_get_name -EXPORT_SYMBOL vmlinux 0x3002ed74 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x3008dde1 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x300d6f2c nobh_write_end -EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command -EXPORT_SYMBOL vmlinux 0x3024b6c9 rfkill_alloc -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x304895bc proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x3068baf7 tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0x307a56ec d_tmpfile -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x30850554 generic_permission -EXPORT_SYMBOL vmlinux 0x308c5ab5 dev_add_offload -EXPORT_SYMBOL vmlinux 0x309358fb zero_fill_bio -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x309b7ac1 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30b04526 ida_init -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x3101ec83 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310f02ec memremap -EXPORT_SYMBOL vmlinux 0x311fb349 md_error -EXPORT_SYMBOL vmlinux 0x3134feb5 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x31656edc __vfs_write -EXPORT_SYMBOL vmlinux 0x316f3165 make_kuid -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x317e70df vga_get -EXPORT_SYMBOL vmlinux 0x31829976 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x318e6a2e security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x31a118bd elevator_alloc -EXPORT_SYMBOL vmlinux 0x31ad75d5 dst_release -EXPORT_SYMBOL vmlinux 0x31b0b1ea fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x31cb7083 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x31dd5265 elv_register_queue -EXPORT_SYMBOL vmlinux 0x31e3b725 acl_by_type -EXPORT_SYMBOL vmlinux 0x31e69074 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz -EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x31f97024 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs -EXPORT_SYMBOL vmlinux 0x3203d358 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x3218160b blk_put_queue -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom -EXPORT_SYMBOL vmlinux 0x3270b949 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x32764bcf pneigh_lookup -EXPORT_SYMBOL vmlinux 0x327af4a1 mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0x32995254 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x32a63e9b mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x32b51c4a linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x32d4ee2e seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x32d95581 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x333f86d4 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x3356b90b cpu_tss -EXPORT_SYMBOL vmlinux 0x33a1f922 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x33aaba6c pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x33b78c39 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33c56693 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33e43337 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x33fdbd84 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x340350a1 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x34069ffb dev_remove_offload -EXPORT_SYMBOL vmlinux 0x3409ad36 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x341c07f8 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x3425fb2a fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x349213ef cpu_core_map -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x349d5d4e blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x34c0ce38 qdisc_destroy -EXPORT_SYMBOL vmlinux 0x34c780c1 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x34d42e5d fs_bio_set -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x35006bc4 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x350c74b8 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x350fde00 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x3544789a acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0x355034a7 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x35561448 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x355c8719 dm_unregister_target -EXPORT_SYMBOL vmlinux 0x355f917b nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x35662088 phy_disconnect -EXPORT_SYMBOL vmlinux 0x357b8867 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x357f9715 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x357fe616 dump_align -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35cf28b1 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x35efd592 pci_map_rom -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x362c7cb1 nf_reinject -EXPORT_SYMBOL vmlinux 0x362d7b38 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x36319f31 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x3642ede4 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x3652dd6d lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x36a58059 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x36a7d526 free_task -EXPORT_SYMBOL vmlinux 0x36b4b623 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x36b7d516 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36cde4f5 vc_cons -EXPORT_SYMBOL vmlinux 0x36d18dfb jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x36e441ca unload_nls -EXPORT_SYMBOL vmlinux 0x3701a196 csum_partial_copy_to_user -EXPORT_SYMBOL vmlinux 0x370f9850 efi -EXPORT_SYMBOL vmlinux 0x371fb428 netdev_err -EXPORT_SYMBOL vmlinux 0x372b7af8 vme_irq_free -EXPORT_SYMBOL vmlinux 0x3732c61d swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x37386f30 nvm_register_target -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x37607ff8 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x37635331 generic_listxattr -EXPORT_SYMBOL vmlinux 0x3787083d pci_bus_get -EXPORT_SYMBOL vmlinux 0x37ab9b61 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b2a2dc kill_pgrp -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37b92e38 swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37e6bf2f inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0x37f0c473 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x37fb94c8 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x38011b3d udp_ioctl -EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x38239ac5 param_get_short -EXPORT_SYMBOL vmlinux 0x382caa2d devm_gpiod_get -EXPORT_SYMBOL vmlinux 0x383bc18f amd_iommu_get_v2_domain -EXPORT_SYMBOL vmlinux 0x38540f61 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x3875e0c4 vfs_statfs -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x389a0859 sk_common_release -EXPORT_SYMBOL vmlinux 0x389f5734 user_path_create -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38ce5201 pci_clear_master -EXPORT_SYMBOL vmlinux 0x38d78888 scmd_printk -EXPORT_SYMBOL vmlinux 0x38dc61e5 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x38df1ad3 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x38f33bed dump_fpu -EXPORT_SYMBOL vmlinux 0x38f52f9c blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages -EXPORT_SYMBOL vmlinux 0x390b5752 kset_unregister -EXPORT_SYMBOL vmlinux 0x3927b916 __sock_create -EXPORT_SYMBOL vmlinux 0x3933422c fb_show_logo -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x39697bc3 block_truncate_page -EXPORT_SYMBOL vmlinux 0x396d530d vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x397786e4 vfs_mknod -EXPORT_SYMBOL vmlinux 0x3983690f dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler -EXPORT_SYMBOL vmlinux 0x39aa4f6c __serio_register_driver -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39b644e8 file_path -EXPORT_SYMBOL vmlinux 0x39bcb297 kill_bdev -EXPORT_SYMBOL vmlinux 0x39c55a4b __block_write_begin -EXPORT_SYMBOL vmlinux 0x39c76858 simple_readpage -EXPORT_SYMBOL vmlinux 0x39dd9223 x86_hyper_vmware -EXPORT_SYMBOL vmlinux 0x39f18d02 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above -EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify -EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush -EXPORT_SYMBOL vmlinux 0x3a3307ce kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x3a38e879 pci_request_region -EXPORT_SYMBOL vmlinux 0x3a46d405 blk_peek_request -EXPORT_SYMBOL vmlinux 0x3a494273 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x3a51a157 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x3a55f9c4 pnp_device_detach -EXPORT_SYMBOL vmlinux 0x3a613237 fb_blank -EXPORT_SYMBOL vmlinux 0x3a65bc18 finish_no_open -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3a9c51c0 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x3aa9e385 blk_start_queue -EXPORT_SYMBOL vmlinux 0x3ab15b60 mutex_trylock -EXPORT_SYMBOL vmlinux 0x3ab2c36e netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x3ac85fca vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0x3ae51339 vfs_write -EXPORT_SYMBOL vmlinux 0x3b013251 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x3b09743f find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x3b1cda42 key_invalidate -EXPORT_SYMBOL vmlinux 0x3b44bd20 bdput -EXPORT_SYMBOL vmlinux 0x3b47f508 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6f6cd2 udp_table -EXPORT_SYMBOL vmlinux 0x3b71eda9 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x3b830da0 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x3b8c2d33 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x3b9e4957 dcb_getapp -EXPORT_SYMBOL vmlinux 0x3b9f373c buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait -EXPORT_SYMBOL vmlinux 0x3bc42b52 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x3bc77ca6 set_page_dirty -EXPORT_SYMBOL vmlinux 0x3bd58905 swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0x3bdb30b4 serio_close -EXPORT_SYMBOL vmlinux 0x3bdb7587 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x3bf87c20 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x3c0073d8 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x3c048b18 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x3c133fe8 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x3c551b4e scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x3c567fe8 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x3c5f84c9 always_delete_dentry -EXPORT_SYMBOL vmlinux 0x3c7bf158 pnp_is_active -EXPORT_SYMBOL vmlinux 0x3c7c18cf blkdev_put -EXPORT_SYMBOL vmlinux 0x3c7fb3cf devm_clk_put -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c8adc92 ip_options_compile -EXPORT_SYMBOL vmlinux 0x3c91cbf9 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x3c996106 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x3ca4df81 abort_creds -EXPORT_SYMBOL vmlinux 0x3caccf60 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0x3ccbfe42 nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0x3ce3c4bb tcp_make_synack -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x3d240944 fb_is_primary_device -EXPORT_SYMBOL vmlinux 0x3d2e5165 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x3d36cde9 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x3d4746f5 nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0x3d55c46e agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0x3d634699 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x3d63cc1c security_inode_permission -EXPORT_SYMBOL vmlinux 0x3d75494b __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc -EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page -EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start -EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dce5ead amd_iommu_enable_device_erratum -EXPORT_SYMBOL vmlinux 0x3dda04ae posix_unblock_lock -EXPORT_SYMBOL vmlinux 0x3dfc6d6b i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e107dcf mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x3e1ec2f1 put_page -EXPORT_SYMBOL vmlinux 0x3e27bb45 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock -EXPORT_SYMBOL vmlinux 0x3e3c82b6 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x3e4af87e gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x3e678442 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x3e7d1b65 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get -EXPORT_SYMBOL vmlinux 0x3ea67630 __lock_buffer -EXPORT_SYMBOL vmlinux 0x3ea90919 agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0x3eb09a04 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x3ec0fab2 peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x3ec20cf7 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x3ec457e6 component_match_add -EXPORT_SYMBOL vmlinux 0x3ec4d8e5 nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0x3ec553ff acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0x3ecaa47c mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0x3ed5c4cb blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f0ff0df tty_port_close_end -EXPORT_SYMBOL vmlinux 0x3f1080e1 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock -EXPORT_SYMBOL vmlinux 0x3f3c7d00 input_set_capability -EXPORT_SYMBOL vmlinux 0x3f3e3c34 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f6564cc crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x3f6ceb8a unregister_key_type -EXPORT_SYMBOL vmlinux 0x3f82248c bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x3f88ff3f max8998_read_reg -EXPORT_SYMBOL vmlinux 0x3f91e069 phy_start_interrupts -EXPORT_SYMBOL vmlinux 0x3f9f07fa agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0x3fa04bc1 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x3faa3507 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x3fab85f4 free_buffer_head -EXPORT_SYMBOL vmlinux 0x3fe015c2 __free_pages -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fe6a79c abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x4009c71b pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x400ca7f6 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x40118b3b install_exec_creds -EXPORT_SYMBOL vmlinux 0x40127c1f poll_initwait -EXPORT_SYMBOL vmlinux 0x402636e0 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x40272022 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x40324e19 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x40655186 page_readlink -EXPORT_SYMBOL vmlinux 0x40779448 abx500_register_ops -EXPORT_SYMBOL vmlinux 0x409113c3 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x40a09ff1 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a47488 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x40a970c4 acpi_device_hid -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40e7db5b mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x40ef5040 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x410059ac posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x4117565c fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x4132a190 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x4143205a pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414e3fc9 mount_pseudo -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x419b8aa4 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x41d74aa4 blk_queue_split -EXPORT_SYMBOL vmlinux 0x41f5e1d1 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x420ab2fd udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x4211cc98 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x42341699 swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x4234f096 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen -EXPORT_SYMBOL vmlinux 0x42357007 swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x423d743f n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x4248e3b8 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x424c5b28 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4257b26f misc_deregister -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x429c0347 gnttab_free_pages -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42c10187 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache -EXPORT_SYMBOL vmlinux 0x42dfdaa2 tcf_register_action -EXPORT_SYMBOL vmlinux 0x43021b4e netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x43074d70 tty_port_close -EXPORT_SYMBOL vmlinux 0x43254516 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x4336b251 brioctl_set -EXPORT_SYMBOL vmlinux 0x433a2328 elv_rb_del -EXPORT_SYMBOL vmlinux 0x434738ac cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43b613da dm_put_table_device -EXPORT_SYMBOL vmlinux 0x43cfe6cb lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x43d931b7 security_path_truncate -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x43f49a42 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x43fd17f3 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x442338b8 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x4451a1d9 vfs_setpos -EXPORT_SYMBOL vmlinux 0x4465e9ca phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x446d6202 sk_stream_write_space -EXPORT_SYMBOL vmlinux 0x44710290 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x4473898d napi_gro_flush -EXPORT_SYMBOL vmlinux 0x4489da02 register_sysctl_table -EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup -EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x449fe84b acpi_set_firmware_waking_vectors -EXPORT_SYMBOL vmlinux 0x44a81d5f acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44bfdf8c bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x44c80392 dev_alert -EXPORT_SYMBOL vmlinux 0x44d3b1e4 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x44d40ece kfree_skb -EXPORT_SYMBOL vmlinux 0x44d51eeb tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x450704d8 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x4519710f from_kuid -EXPORT_SYMBOL vmlinux 0x452e910b tty_throttle -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x4548918d tso_count_descs -EXPORT_SYMBOL vmlinux 0x45531930 nobh_writepage -EXPORT_SYMBOL vmlinux 0x45595f6e __ps2_command -EXPORT_SYMBOL vmlinux 0x455a4904 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x456edb84 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x456fa31f scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0x457163d9 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45876740 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x4589e07d __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x459969bd tty_port_hangup -EXPORT_SYMBOL vmlinux 0x45a39405 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x45a587aa __i2c_transfer -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45ccd7d8 block_read_full_page -EXPORT_SYMBOL vmlinux 0x45f2d936 d_genocide -EXPORT_SYMBOL vmlinux 0x45f82f69 init_net -EXPORT_SYMBOL vmlinux 0x460035d5 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x460079f8 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x4604a43a mem_section -EXPORT_SYMBOL vmlinux 0x460da718 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x466d5fc2 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x4673cb96 set_anon_super -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x4688a552 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x468e6482 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x46b1db35 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x46b43924 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46f3cf0a init_task -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x4709d1aa mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x4711121a ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x471b24d9 I_BDEV -EXPORT_SYMBOL vmlinux 0x4722aa1a devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0x4733a077 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x47343580 inet_accept -EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x477e6dcb amd_iommu_pc_get_set_reg_val -EXPORT_SYMBOL vmlinux 0x477ebfcd mmc_power_save_host -EXPORT_SYMBOL vmlinux 0x47850498 i2c_transfer -EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x479e79c3 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0x47a06c3e bdevname -EXPORT_SYMBOL vmlinux 0x47aaa340 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x47c2bf3d mmc_add_host -EXPORT_SYMBOL vmlinux 0x47c3b55c seq_vprintf -EXPORT_SYMBOL vmlinux 0x47cb00d9 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x47db9451 tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0x47e4b47a read_cache_page -EXPORT_SYMBOL vmlinux 0x47f8eb2d blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x48160ca6 bd_set_size -EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x485f60d7 fddi_change_mtu -EXPORT_SYMBOL vmlinux 0x487a77e5 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x4889d91c scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0x48aa9273 check_disk_size_change -EXPORT_SYMBOL vmlinux 0x48b223c6 amd_northbridges -EXPORT_SYMBOL vmlinux 0x48b312d7 drop_nlink -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48bceee8 dev_set_group -EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4915730e dev_set_mtu -EXPORT_SYMBOL vmlinux 0x49380458 nvm_register -EXPORT_SYMBOL vmlinux 0x493806bd mmc_free_host -EXPORT_SYMBOL vmlinux 0x4942ba71 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x49441325 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x494dbc2a blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x495a3e50 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x495c4236 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x4966bd25 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x49784f55 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x49839e81 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x49a0937b tcp_init_sock -EXPORT_SYMBOL vmlinux 0x49ae5bd3 ip6_xmit -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49c84cbf dev_crit -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a1597fe skb_seq_read -EXPORT_SYMBOL vmlinux 0x4a184723 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x4a26c80b i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x4a2f30a0 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0x4a44a4f3 inet_release -EXPORT_SYMBOL vmlinux 0x4a46bb7b param_get_charp -EXPORT_SYMBOL vmlinux 0x4a6b5582 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x4a78419a vme_irq_request -EXPORT_SYMBOL vmlinux 0x4a7a7eea napi_consume_skb -EXPORT_SYMBOL vmlinux 0x4a83480e sk_stop_timer -EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x4a89c2a8 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x4a8ec0a1 open_check_o_direct -EXPORT_SYMBOL vmlinux 0x4a9fdc12 param_get_long -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4ace9f4c single_release -EXPORT_SYMBOL vmlinux 0x4adf4612 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x4af8a952 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b131c4f sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x4b1ada07 __netif_schedule -EXPORT_SYMBOL vmlinux 0x4b3ed55e nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0x4b9c1d1b __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bb47ccb ip_setsockopt -EXPORT_SYMBOL vmlinux 0x4bb6e8f6 simple_lookup -EXPORT_SYMBOL vmlinux 0x4bc4a6c3 poll_freewait -EXPORT_SYMBOL vmlinux 0x4bc5e130 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x4bd248b5 invalidate_partition -EXPORT_SYMBOL vmlinux 0x4bd25e63 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x4bd44563 single_open -EXPORT_SYMBOL vmlinux 0x4bd4f310 is_bad_inode -EXPORT_SYMBOL vmlinux 0x4c064f62 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c3654bb kobject_set_name -EXPORT_SYMBOL vmlinux 0x4c40a0eb blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x4c49e2d4 kernel_listen -EXPORT_SYMBOL vmlinux 0x4c4aca74 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x4c4b6f7e fput -EXPORT_SYMBOL vmlinux 0x4c51004a netif_napi_add -EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify -EXPORT_SYMBOL vmlinux 0x4c8a8634 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x4c90b5a1 __kernel_write -EXPORT_SYMBOL vmlinux 0x4c95fe3a pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base -EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf -EXPORT_SYMBOL vmlinux 0x4cb09ae5 mount_nodev -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4ce2b63f generic_file_open -EXPORT_SYMBOL vmlinux 0x4cf04fe9 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x4cf1a54b __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x4d40abde seq_lseek -EXPORT_SYMBOL vmlinux 0x4d4bddd0 tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x4d4dbfc8 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x4d5c53e0 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0x4d61fb65 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0x4d69f66e genlmsg_put -EXPORT_SYMBOL vmlinux 0x4d70c083 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x4d70cb8f search_binary_handler -EXPORT_SYMBOL vmlinux 0x4d89f70a agp_free_memory -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9b9d5d mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x4d9e8522 lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x4da0f5c1 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x4dbbfa72 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x4dbffdb5 skb_store_bits -EXPORT_SYMBOL vmlinux 0x4dd4fbf7 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4de99abb to_nd_pfn -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4dfa5e46 skb_make_writable -EXPORT_SYMBOL vmlinux 0x4e065a2a sk_wait_data -EXPORT_SYMBOL vmlinux 0x4e0ce38d twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e3f5c79 netdev_alert -EXPORT_SYMBOL vmlinux 0x4e4dd83b posix_lock_file -EXPORT_SYMBOL vmlinux 0x4e606190 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7057aa padata_do_parallel -EXPORT_SYMBOL vmlinux 0x4e7882a0 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x4e78e80a __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x4e799f23 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x4e9082ce tty_lock -EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4eae6e7e ppp_channel_index -EXPORT_SYMBOL vmlinux 0x4eca9a67 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x4ed1c01a simple_transaction_release -EXPORT_SYMBOL vmlinux 0x4ed33d78 uart_resume_port -EXPORT_SYMBOL vmlinux 0x4f111d37 scsi_print_result -EXPORT_SYMBOL vmlinux 0x4f117f3b dev_get_iflink -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f3f7415 __serio_register_port -EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x4f620fb4 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user -EXPORT_SYMBOL vmlinux 0x4f7819d6 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read -EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve -EXPORT_SYMBOL vmlinux 0x4f7a4827 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x4f809a74 kern_unmount -EXPORT_SYMBOL vmlinux 0x4f813c52 pci_dev_put -EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user -EXPORT_SYMBOL vmlinux 0x4f8ea7b9 eth_type_trans -EXPORT_SYMBOL vmlinux 0x4fc02ce0 nvm_submit_io -EXPORT_SYMBOL vmlinux 0x4fc65d90 mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4ffb0d0c make_kprojid -EXPORT_SYMBOL vmlinux 0x4ffe9859 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x5001ed89 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x504fb3fe iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x5064e273 unregister_filesystem -EXPORT_SYMBOL vmlinux 0x5090dfa6 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method -EXPORT_SYMBOL vmlinux 0x509dfc0b datagram_poll -EXPORT_SYMBOL vmlinux 0x50a06891 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x50a5a454 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch -EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50e7aa86 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x50fb01bc blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0x50fea8b4 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x514cdf26 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x5154a19e inet_stream_connect -EXPORT_SYMBOL vmlinux 0x5163e452 acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock -EXPORT_SYMBOL vmlinux 0x5182e07f dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x51907c39 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x5192f866 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x519622ea pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51dce274 would_dump -EXPORT_SYMBOL vmlinux 0x5201a527 dev_mc_del -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data -EXPORT_SYMBOL vmlinux 0x52130046 acpi_check_address_range -EXPORT_SYMBOL vmlinux 0x521ac997 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x523cdf5b ip_getsockopt -EXPORT_SYMBOL vmlinux 0x524d993f sock_no_connect -EXPORT_SYMBOL vmlinux 0x525c06bd dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0x52701cfc fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0x52706f67 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x528b5e9a __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x5291a162 ip_defrag -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52a9d1f0 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x52c655e1 cdev_add -EXPORT_SYMBOL vmlinux 0x52d5efa2 lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid -EXPORT_SYMBOL vmlinux 0x531fb138 tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0x53214316 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x5355c7c4 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin -EXPORT_SYMBOL vmlinux 0x539348d8 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x53992d48 agp_copy_info -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x53a71c48 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x53be9fe6 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x53d22421 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x53e73a74 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x53fe89b9 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x54059a2a amd_iommu_pc_get_max_counters -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x540ae5c1 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x543453b8 input_get_keycode -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x543fffd0 param_set_charp -EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register -EXPORT_SYMBOL vmlinux 0x546200ac generic_fillattr -EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler -EXPORT_SYMBOL vmlinux 0x5465e55d blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x547c8b2f elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0x5483f72b get_super -EXPORT_SYMBOL vmlinux 0x548b4046 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x54938c2c __frontswap_store -EXPORT_SYMBOL vmlinux 0x54982c04 udp_poll -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54b8bf5b dev_addr_add -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54d37767 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54e910a2 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x54f24d1a fence_default_wait -EXPORT_SYMBOL vmlinux 0x5505948e serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551bedc7 fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x553bea46 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x553d3ba6 release_sock -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x555f6938 lockref_get -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x55701cc3 mutex_lock -EXPORT_SYMBOL vmlinux 0x55916dcd set_wb_congested -EXPORT_SYMBOL vmlinux 0x5593b9f0 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x55983989 get_thermal_instance -EXPORT_SYMBOL vmlinux 0x55b19c7a bdget_disk -EXPORT_SYMBOL vmlinux 0x55b48ae3 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x55b79a11 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x55bac2a8 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55da9811 proc_create_data -EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait -EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x5644e52e devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x564d1693 arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0x56540363 dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0x56604461 free_netdev -EXPORT_SYMBOL vmlinux 0x56799d1f get_task_io_context -EXPORT_SYMBOL vmlinux 0x56886754 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x56a203e0 tty_unlock -EXPORT_SYMBOL vmlinux 0x56a35cd0 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56d06888 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x57062b1a pci_platform_rom -EXPORT_SYMBOL vmlinux 0x570a9868 rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0x571829a3 __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0x571cae93 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x57265882 pid_task -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x57349fdb skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x575e49e8 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x57743c52 iget_locked -EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x57967a97 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x57a89e38 __quota_error -EXPORT_SYMBOL vmlinux 0x57abfdf2 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x57afd3b7 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x57ba72ab fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x57c4ccf3 sk_capable -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x582654b2 set_blocksize -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x58436dc6 skb_pad -EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x5851d0ac inet_select_addr -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem -EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x5861ddcb __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x58650fd7 mpage_readpage -EXPORT_SYMBOL vmlinux 0x586d0fba locks_free_lock -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x58b6a97d skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58d2166e eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x58d963dd cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl -EXPORT_SYMBOL vmlinux 0x594ab8b7 da903x_query_status -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x5953fbb9 input_release_device -EXPORT_SYMBOL vmlinux 0x595bc4de dev_uc_del -EXPORT_SYMBOL vmlinux 0x59702792 mmc_release_host -EXPORT_SYMBOL vmlinux 0x597201e0 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59a9f9db nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59bb5734 processors -EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register -EXPORT_SYMBOL vmlinux 0x59c6433d unlock_rename -EXPORT_SYMBOL vmlinux 0x59ca1335 sock_wake_async -EXPORT_SYMBOL vmlinux 0x59e56996 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x59f580de param_get_ullong -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a195498 lease_modify -EXPORT_SYMBOL vmlinux 0x5a238911 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x5a33bb38 alloc_disk_node -EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 -EXPORT_SYMBOL vmlinux 0x5a6a8478 sock_efree -EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit -EXPORT_SYMBOL vmlinux 0x5a836a99 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x5a8526f2 nd_device_unregister -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5aa12dfd iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0x5aa7023d pci_pme_capable -EXPORT_SYMBOL vmlinux 0x5ab9e769 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x5ac73111 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b0fed17 kernel_write -EXPORT_SYMBOL vmlinux 0x5b23939e param_set_ullong -EXPORT_SYMBOL vmlinux 0x5b50adc6 sock_recvmsg -EXPORT_SYMBOL vmlinux 0x5b5582dd padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b5febca agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0x5b8afd3f scsi_register_driver -EXPORT_SYMBOL vmlinux 0x5b945a17 d_path -EXPORT_SYMBOL vmlinux 0x5b99b048 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x5b9c808a acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0x5ba95f24 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x5bbcc255 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit -EXPORT_SYMBOL vmlinux 0x5bc8d583 copy_from_user_overflow -EXPORT_SYMBOL vmlinux 0x5bd4398e scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x5bec9b06 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0x5bfe75e0 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT -EXPORT_SYMBOL vmlinux 0x5c0de165 mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0x5c2e7108 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x5c446cdd input_register_handler -EXPORT_SYMBOL vmlinux 0x5c4c45d5 dump_emit -EXPORT_SYMBOL vmlinux 0x5c7f9f81 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x5c946799 sk_free -EXPORT_SYMBOL vmlinux 0x5caa6b2d ppp_input -EXPORT_SYMBOL vmlinux 0x5cb01333 scsi_print_command -EXPORT_SYMBOL vmlinux 0x5cb5ecf4 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x5cc1b2d4 ata_print_version -EXPORT_SYMBOL vmlinux 0x5cef29d0 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cfe2fd7 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x5d0161ec proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x5d028828 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x5d02aedb tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x5d1cbce5 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x5d206076 default_file_splice_read -EXPORT_SYMBOL vmlinux 0x5d381e34 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x5d3a8ede __blk_run_queue -EXPORT_SYMBOL vmlinux 0x5d3f48a1 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x5d40647b phy_register_fixup -EXPORT_SYMBOL vmlinux 0x5d476e1f acpi_pm_device_run_wake -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d672697 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved -EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done -EXPORT_SYMBOL vmlinux 0x5d908bb4 vme_master_request -EXPORT_SYMBOL vmlinux 0x5d9276df simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x5daf765c jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x5db05854 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x5dc19dd0 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x5dcac2b1 mdiobus_read -EXPORT_SYMBOL vmlinux 0x5dde81cb ps2_handle_response -EXPORT_SYMBOL vmlinux 0x5de2187f pci_get_slot -EXPORT_SYMBOL vmlinux 0x5de57de6 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x5df09e8d bio_reset -EXPORT_SYMBOL vmlinux 0x5e214015 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x5e2392fc inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x5e2787a0 nobh_write_begin -EXPORT_SYMBOL vmlinux 0x5e3488cf drop_super -EXPORT_SYMBOL vmlinux 0x5e8c2c84 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5e984d53 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5eefa6e6 tty_write_room -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f119cf1 down_write_trylock -EXPORT_SYMBOL vmlinux 0x5f2d88a5 vfs_fsync -EXPORT_SYMBOL vmlinux 0x5f348721 from_kprojid -EXPORT_SYMBOL vmlinux 0x5f3c4a72 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x5f5fb85f lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x5f642eb5 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0x5f72ebc7 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x5f8a741c elv_unregister_queue -EXPORT_SYMBOL vmlinux 0x5f9c3ba7 inode_change_ok -EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init -EXPORT_SYMBOL vmlinux 0x5fd37643 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x5fd9bd4a sock_get_timestampns -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5ffc6374 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x60052bcb nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x600574aa jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x6014fad1 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x601b5297 soft_cursor -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x603d56f6 inode_add_bytes -EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe -EXPORT_SYMBOL vmlinux 0x604621b8 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x606a21a3 param_ops_short -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x607ac358 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x6084067a mmc_get_card -EXPORT_SYMBOL vmlinux 0x608c3056 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x609f5b35 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60bb0567 abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x60c14c16 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy -EXPORT_SYMBOL vmlinux 0x6114bcc3 submit_bio -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x61411e1d xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x614dd435 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x6150f810 thaw_bdev -EXPORT_SYMBOL vmlinux 0x61520529 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0x61581f00 i2c_master_recv -EXPORT_SYMBOL vmlinux 0x6163cfed sk_stream_error -EXPORT_SYMBOL vmlinux 0x61755766 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x618cb5f8 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x618f5791 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61d27998 tcp_req_err -EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x61e2bcb8 devm_clk_get -EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x61f1da48 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x61f9d6ec blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x61fb248a node_states -EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable -EXPORT_SYMBOL vmlinux 0x6207e9db pci_get_class -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6219e8fd seq_puts -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event -EXPORT_SYMBOL vmlinux 0x624ef0df sync_filesystem -EXPORT_SYMBOL vmlinux 0x6261a131 devm_ioremap -EXPORT_SYMBOL vmlinux 0x626cd5da set_user_nice -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62748e70 acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62877a7a param_set_copystring -EXPORT_SYMBOL vmlinux 0x62892733 seq_read -EXPORT_SYMBOL vmlinux 0x62984843 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x62a0c300 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x62b79dc2 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x62bfcf4c input_unregister_handler -EXPORT_SYMBOL vmlinux 0x62c0f737 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x62e68dc2 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x62e6acb9 alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x62f3d8cc sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x62fef026 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x632259c7 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x6326e91f param_ops_string -EXPORT_SYMBOL vmlinux 0x63352dba kobject_del -EXPORT_SYMBOL vmlinux 0x636388f2 netlink_set_err -EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0x6388591c down_timeout -EXPORT_SYMBOL vmlinux 0x638b85b3 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x63978157 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63c1b2b3 input_grab_device -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63d57a95 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x63e4f3c0 module_refcount -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63ec5967 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64045840 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x6426042d dst_alloc -EXPORT_SYMBOL vmlinux 0x643d1218 free_page_put_link -EXPORT_SYMBOL vmlinux 0x64445d94 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0x6449c86b vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0x645af28a bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x645bbd5b udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x64628d46 __get_user_pages -EXPORT_SYMBOL vmlinux 0x64754e64 generic_writepages -EXPORT_SYMBOL vmlinux 0x649661dd kill_pid -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion -EXPORT_SYMBOL vmlinux 0x64b18841 lock_rename -EXPORT_SYMBOL vmlinux 0x64b56adf genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64bbcb96 security_inode_init_security -EXPORT_SYMBOL vmlinux 0x64c82309 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb -EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0x6500aae4 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x65127601 nf_afinfo -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x655a7610 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x655e96e5 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x6583c145 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x659311ca vlan_vid_del -EXPORT_SYMBOL vmlinux 0x65988bdb blk_sync_queue -EXPORT_SYMBOL vmlinux 0x659f551c sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry -EXPORT_SYMBOL vmlinux 0x65b9ba4c d_obtain_root -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x65f45c67 give_up_console -EXPORT_SYMBOL vmlinux 0x661b27e4 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x6627eb65 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x662849c3 netif_device_detach -EXPORT_SYMBOL vmlinux 0x662fe43f xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x6633eb86 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0x66421d4c nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x6643f1d7 done_path_create -EXPORT_SYMBOL vmlinux 0x666dd8ed km_new_mapping -EXPORT_SYMBOL vmlinux 0x6682f090 dma_ops -EXPORT_SYMBOL vmlinux 0x668968ae __getblk_gfp -EXPORT_SYMBOL vmlinux 0x668d9075 f_setown -EXPORT_SYMBOL vmlinux 0x669cb1eb devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x66d9dc3d pcim_pin_device -EXPORT_SYMBOL vmlinux 0x66ddb081 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x66e13296 alloc_file -EXPORT_SYMBOL vmlinux 0x66e3abcb __sk_dst_check -EXPORT_SYMBOL vmlinux 0x66f0b186 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x6710b437 serio_interrupt -EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 -EXPORT_SYMBOL vmlinux 0x673adb8f security_path_mknod -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x674e3432 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x67588c4b udp_add_offload -EXPORT_SYMBOL vmlinux 0x675e7d25 copy_from_iter -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x677c6e3f param_set_uint -EXPORT_SYMBOL vmlinux 0x67870e6c tty_unthrottle -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b42e33 devm_free_irq -EXPORT_SYMBOL vmlinux 0x67b64f45 end_page_writeback -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67df016a mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x67f3176f register_netdev -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x68113ba5 block_write_end -EXPORT_SYMBOL vmlinux 0x6818af26 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x682eb91c devfreq_add_device -EXPORT_SYMBOL vmlinux 0x682f233f blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x68593dad nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x686fa40e padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x6870be21 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x687498ab block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x687a6927 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x6889bb3b thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a41f46 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x68aa8225 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68c6f95d i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x68cd90a3 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x68e54f51 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x68e7dc03 skb_insert -EXPORT_SYMBOL vmlinux 0x68fba4e7 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x68fc1453 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x69069b0a of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x690dbb0e sock_init_data -EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x69101050 blk_rq_init -EXPORT_SYMBOL vmlinux 0x691f00a2 compat_ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x691f4308 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x6920ff27 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x694f7ab8 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x695ef6fd unregister_shrinker -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 -EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69ac37b8 fget_raw -EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69c7495a generic_read_dir -EXPORT_SYMBOL vmlinux 0x69e14e18 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x69f58b80 update_region -EXPORT_SYMBOL vmlinux 0x69fbc0a2 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0x69fdcc75 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x6a019173 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a1bb82c lock_fb_info -EXPORT_SYMBOL vmlinux 0x6a241051 __register_chrdev -EXPORT_SYMBOL vmlinux 0x6a37d283 pagecache_write_end -EXPORT_SYMBOL vmlinux 0x6a50760e pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x6a521b45 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x6a56fa56 __getblk_slow -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a60277d acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x6a6fb416 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x6a7111fd tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x6a712015 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a854164 dquot_destroy -EXPORT_SYMBOL vmlinux 0x6aa3d37e fddi_type_trans -EXPORT_SYMBOL vmlinux 0x6aa7d8e1 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x6aab8f57 fb_set_var -EXPORT_SYMBOL vmlinux 0x6ab7088a mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be -EXPORT_SYMBOL vmlinux 0x6acc0abc pci_bus_put -EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b293266 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b322697 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x6b4970de free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6b6ad27a devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x6b6d2d1a generic_setlease -EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc6a1ed mount_bdev -EXPORT_SYMBOL vmlinux 0x6bcf066d _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x6bd09013 icmpv6_send -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops -EXPORT_SYMBOL vmlinux 0x6bf7142b pci_restore_state -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c425a55 tcp_close -EXPORT_SYMBOL vmlinux 0x6c44bc15 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x6c4732f5 __napi_schedule -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c52470e force_sig -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c71646b devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0x6c8139a7 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x6c8751ad x86_hyper -EXPORT_SYMBOL vmlinux 0x6cb9a306 param_get_string -EXPORT_SYMBOL vmlinux 0x6cbb9f89 vfs_writef -EXPORT_SYMBOL vmlinux 0x6cc42aee proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x6cd0f9fe devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x6cd3c489 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x6cd93c06 ata_dev_printk -EXPORT_SYMBOL vmlinux 0x6cf5740b __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x6cf79966 get_user_pages -EXPORT_SYMBOL vmlinux 0x6cf9b5f9 pnp_register_driver -EXPORT_SYMBOL vmlinux 0x6d094f8f blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d1ced0d jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x6d1d5d9b iosf_mbi_write -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d46e0f6 agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x6d7b79bd pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x6d899bff devm_ioport_map -EXPORT_SYMBOL vmlinux 0x6da83eef set_pages_array_wc -EXPORT_SYMBOL vmlinux 0x6dbeabcc passthru_features_check -EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible -EXPORT_SYMBOL vmlinux 0x6dc6dd56 down -EXPORT_SYMBOL vmlinux 0x6dca5d13 inet_add_offload -EXPORT_SYMBOL vmlinux 0x6ddaf1c3 dev_uc_init -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df1f661 mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0x6e10c99d lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0x6e1ba9f6 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x6e1f56ae xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x6e261d17 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x6e332799 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x6e340ac3 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x6e5a2467 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e766ad8 fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x6e919422 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x6e9c4191 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6eb6b990 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x6eba1157 touch_atime -EXPORT_SYMBOL vmlinux 0x6ec0843c blk_end_request_all -EXPORT_SYMBOL vmlinux 0x6ee76520 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x6ee7bfc6 __elv_add_request -EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x6f055a1c vmap -EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f20a7d5 bh_submit_read -EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock -EXPORT_SYMBOL vmlinux 0x6f45000b pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6fb6f4a2 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x6fb74683 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd129dd mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x6fdebb62 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write -EXPORT_SYMBOL vmlinux 0x70098c2b filp_open -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0x704c11ec clk_get -EXPORT_SYMBOL vmlinux 0x704c497d register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x7058d16d skb_free_datagram -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707b1723 posix_acl_valid -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x7093b8b7 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x70960965 sock_create -EXPORT_SYMBOL vmlinux 0x70ae3163 bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x70c9d91d inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock -EXPORT_SYMBOL vmlinux 0x70df5e30 simple_follow_link -EXPORT_SYMBOL vmlinux 0x70e084f6 compat_ip_setsockopt -EXPORT_SYMBOL vmlinux 0x70e0e6b8 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x70f14ee5 acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x710a696f qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x711bdafc splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x711cc199 ppp_input_error -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712cd169 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x713a0f7b dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x71424977 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x714de426 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x71544fec tc_classify -EXPORT_SYMBOL vmlinux 0x716947c7 dev_load -EXPORT_SYMBOL vmlinux 0x716bf61d pcie_get_mps -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71777b28 napi_complete_done -EXPORT_SYMBOL vmlinux 0x717ed177 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0x71828a66 proc_dostring -EXPORT_SYMBOL vmlinux 0x719f9320 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71b9f00f add_disk -EXPORT_SYMBOL vmlinux 0x71c85ccb tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x71cc0649 phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0x71dc7068 down_read_trylock -EXPORT_SYMBOL vmlinux 0x71e5c774 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x720023e3 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x721b6770 iov_iter_npages -EXPORT_SYMBOL vmlinux 0x721dce62 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x72220176 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x722c0dda kill_block_super -EXPORT_SYMBOL vmlinux 0x723a4a61 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x723e2827 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x725fd887 nla_append -EXPORT_SYMBOL vmlinux 0x7271c00b file_ns_capable -EXPORT_SYMBOL vmlinux 0x7282b324 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x72964b4f nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x72a98fdb copy_user_generic_unrolled -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72bc9767 iget_failed -EXPORT_SYMBOL vmlinux 0x72c896d4 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0x72dc6c2b flow_cache_lookup -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x732f49f0 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x73483436 padata_do_serial -EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay -EXPORT_SYMBOL vmlinux 0x737ba853 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get -EXPORT_SYMBOL vmlinux 0x73a75cb5 ip_do_fragment -EXPORT_SYMBOL vmlinux 0x73b77930 dquot_transfer -EXPORT_SYMBOL vmlinux 0x73d5d5bc do_splice_from -EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable -EXPORT_SYMBOL vmlinux 0x73ee86fb pci_map_biosrom -EXPORT_SYMBOL vmlinux 0x74013bf6 dev_add_pack -EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x7442a66f icmp_send -EXPORT_SYMBOL vmlinux 0x744a8d12 dev_addr_init -EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty -EXPORT_SYMBOL vmlinux 0x74686cc8 d_invalidate -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x749c0ac5 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x749f2dab deactivate_super -EXPORT_SYMBOL vmlinux 0x74b2f019 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x74bbc8da jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c60449 devm_memunmap -EXPORT_SYMBOL vmlinux 0x74cd2432 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74ecc4aa irq_to_desc -EXPORT_SYMBOL vmlinux 0x74f56fef __napi_complete -EXPORT_SYMBOL vmlinux 0x7504187b fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x75120a0b file_remove_privs -EXPORT_SYMBOL vmlinux 0x7512291c blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x7525a60d kobject_init -EXPORT_SYMBOL vmlinux 0x7531813e dup_iter -EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x7543038b netif_carrier_on -EXPORT_SYMBOL vmlinux 0x754d539c strlen -EXPORT_SYMBOL vmlinux 0x754d6dde dma_pool_create -EXPORT_SYMBOL vmlinux 0x75503d7e blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0x75639229 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x75971167 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x759cd198 do_splice_to -EXPORT_SYMBOL vmlinux 0x75bc549a x86_cpu_to_apicid -EXPORT_SYMBOL vmlinux 0x75bc9349 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75c30081 do_SAK -EXPORT_SYMBOL vmlinux 0x75c48d15 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x75c63459 ll_rw_block -EXPORT_SYMBOL vmlinux 0x75f3962a ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x75fb9f2d bio_map_kern -EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x75fcfece cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x7641faa8 km_state_expired -EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x7657e923 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x7658a084 dm_register_target -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x767618f0 tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x7676aed7 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x767dd8fd acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc -EXPORT_SYMBOL vmlinux 0x768c8374 tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0x76bcb9fb kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x76bf314c nf_log_trace -EXPORT_SYMBOL vmlinux 0x76c71a6e agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76f4e944 dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x76f63d89 dqput -EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier -EXPORT_SYMBOL vmlinux 0x7708743a __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x77318858 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x77572430 __invalidate_device -EXPORT_SYMBOL vmlinux 0x7757a2ef twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x77753c77 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77b41ba1 mmc_can_discard -EXPORT_SYMBOL vmlinux 0x77b852b9 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77daf871 wake_up_process -EXPORT_SYMBOL vmlinux 0x77e0b0db single_open_size -EXPORT_SYMBOL vmlinux 0x77e44b52 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x77f53abc acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt -EXPORT_SYMBOL vmlinux 0x7839ca1f iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x783be91f serio_open -EXPORT_SYMBOL vmlinux 0x783e2657 blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0x78424403 vfs_readv -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x784b498b kset_register -EXPORT_SYMBOL vmlinux 0x7862ff6a skb_checksum_help -EXPORT_SYMBOL vmlinux 0x78764f4e pv_irq_ops -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788f19d1 unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0x78962e67 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x789fa266 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x78a5ff8a fence_add_callback -EXPORT_SYMBOL vmlinux 0x78d6fa8f i8042_install_filter -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e739aa up -EXPORT_SYMBOL vmlinux 0x78f99c24 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x78fff119 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method -EXPORT_SYMBOL vmlinux 0x790acb68 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock -EXPORT_SYMBOL vmlinux 0x79250f8f fb_set_cmap -EXPORT_SYMBOL vmlinux 0x79256324 nf_unregister_hook -EXPORT_SYMBOL vmlinux 0x792e98f7 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x796e1ca5 sync_inode -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x798851cf kernel_getpeername -EXPORT_SYMBOL vmlinux 0x798a2def d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0x799e034f ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79b00955 bioset_free -EXPORT_SYMBOL vmlinux 0x79ba4cea km_query -EXPORT_SYMBOL vmlinux 0x79cd75ab blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x7a00d3d1 PDE_DATA -EXPORT_SYMBOL vmlinux 0x7a0418a6 ipv4_specific -EXPORT_SYMBOL vmlinux 0x7a1e9736 param_get_byte -EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a3aa34d skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x7a411a58 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a67e63a inet_listen -EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a70ba1f cfb_copyarea -EXPORT_SYMBOL vmlinux 0x7a8106e0 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x7a81de0b udp_disconnect -EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x7a90a34c jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa318b7 iget5_locked -EXPORT_SYMBOL vmlinux 0x7aadc66b con_copy_unimap -EXPORT_SYMBOL vmlinux 0x7ab73724 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7abb19e5 page_follow_link_light -EXPORT_SYMBOL vmlinux 0x7abf7780 agp_enable -EXPORT_SYMBOL vmlinux 0x7ac80bc9 pci_bus_type -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad52c5a filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x7ad7654a vfs_link -EXPORT_SYMBOL vmlinux 0x7ae4f195 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user -EXPORT_SYMBOL vmlinux 0x7b061e76 mmc_can_reset -EXPORT_SYMBOL vmlinux 0x7b0ba006 read_cache_pages -EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b1b3532 md_check_recovery -EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc -EXPORT_SYMBOL vmlinux 0x7b2bfaab nf_setsockopt -EXPORT_SYMBOL vmlinux 0x7b407a3c bio_clone_fast -EXPORT_SYMBOL vmlinux 0x7b45b3a8 mapping_tagged -EXPORT_SYMBOL vmlinux 0x7b47ed35 udp_seq_open -EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x7b80ffd6 find_get_entry -EXPORT_SYMBOL vmlinux 0x7b91f554 scsi_host_put -EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x7bcb76c7 inet_bind -EXPORT_SYMBOL vmlinux 0x7be75ffc acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x7c02c980 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x7c0690ec netif_rx -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc -EXPORT_SYMBOL vmlinux 0x7c3a7a71 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x7c3bc601 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c55c030 poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c65e889 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x7c7a5b17 vme_slave_request -EXPORT_SYMBOL vmlinux 0x7c7a747f km_policy_expired -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cc05f5b dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x7cc8a5e4 bitmap_unplug -EXPORT_SYMBOL vmlinux 0x7cda5dd1 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce5f43f pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cf8cfe7 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x7d00b177 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x7d05775b scm_fp_dup -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d1285f3 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x7d1755e2 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x7d287136 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x7d388291 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x7d499403 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d71445d cpu_active_mask -EXPORT_SYMBOL vmlinux 0x7d805b2c sg_miter_stop -EXPORT_SYMBOL vmlinux 0x7d8a158d simple_transaction_get -EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port -EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x7db1fa6f kernel_read -EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk -EXPORT_SYMBOL vmlinux 0x7dc28fda eth_header_cache -EXPORT_SYMBOL vmlinux 0x7dc7c9aa blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x7dca3441 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x7dd12010 first_ec -EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7df5e2b4 sock_create_lite -EXPORT_SYMBOL vmlinux 0x7e13a97c tcp_ioctl -EXPORT_SYMBOL vmlinux 0x7e4298c1 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x7e5c35b1 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x7e6a9d98 noop_fsync -EXPORT_SYMBOL vmlinux 0x7e7665d9 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x7e7d0b41 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit -EXPORT_SYMBOL vmlinux 0x7e8f6a99 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x7ea723d7 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x7eb8cc6b set_cached_acl -EXPORT_SYMBOL vmlinux 0x7ebd4be4 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x7ed542ec netdev_change_features -EXPORT_SYMBOL vmlinux 0x7eda148c request_key_async -EXPORT_SYMBOL vmlinux 0x7eddbc34 led_update_brightness -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7efa6fce neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f1c3331 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x7f44a18d udp_del_offload -EXPORT_SYMBOL vmlinux 0x7f58c86d scsi_register_interface -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f65613f agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0x7f6a2911 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x7f726ec7 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x7f80e7c3 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x7f9b8452 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x7fa68b28 i2c_use_client -EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x7fc03e3b ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x7fcdf913 netif_skb_features -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x7ffa75d3 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x80006a05 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x80343f25 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x803e9ecb security_path_symlink -EXPORT_SYMBOL vmlinux 0x805bda7d sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x806a928b neigh_parms_release -EXPORT_SYMBOL vmlinux 0x80710217 __pagevec_release -EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy -EXPORT_SYMBOL vmlinux 0x80a84cf5 netlink_ack -EXPORT_SYMBOL vmlinux 0x80ad47fe inet6_offloads -EXPORT_SYMBOL vmlinux 0x80b6f806 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x80bf6d3e ppp_register_channel -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d38342 prepare_binprm -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80e0b224 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x80e5b7a3 path_put -EXPORT_SYMBOL vmlinux 0x80e95046 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x8101b719 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x810d939d phy_device_remove -EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x813f5e90 release_firmware -EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table -EXPORT_SYMBOL vmlinux 0x814b640b nd_device_register -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x81501592 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x815417e1 intel_gmch_probe -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815b72a3 kernel_connect -EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x816b060d uart_update_timeout -EXPORT_SYMBOL vmlinux 0x81714ef2 dev_get_flags -EXPORT_SYMBOL vmlinux 0x8188dedc nvm_erase_blk -EXPORT_SYMBOL vmlinux 0x81ae7912 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81ded06f abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0x81e47d07 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x820ab6d3 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0x821534bf pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x8217ac17 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x821a71dc pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x8233a501 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x823a3ba2 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x82487c1e mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x824cb833 param_set_int -EXPORT_SYMBOL vmlinux 0x825bb9cc pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x829534b3 fence_free -EXPORT_SYMBOL vmlinux 0x82a2922e jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82b09f08 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x82b5618b tcp_splice_read -EXPORT_SYMBOL vmlinux 0x82df3184 devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x82e8e5a7 setup_arg_pages -EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot -EXPORT_SYMBOL vmlinux 0x830ec29a keyring_clear -EXPORT_SYMBOL vmlinux 0x832c5763 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x833e0df3 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x8344fae1 dma_supported -EXPORT_SYMBOL vmlinux 0x837d0d93 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x83811b2a cfb_fillrect -EXPORT_SYMBOL vmlinux 0x8384647a acpi_map_pxm_to_online_node -EXPORT_SYMBOL vmlinux 0x838ecd08 skb_append -EXPORT_SYMBOL vmlinux 0x83933016 security_path_unlink -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83a06646 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83b91192 lookup_bdev -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83d322d7 from_kuid_munged -EXPORT_SYMBOL vmlinux 0x83d52eca dev_remove_pack -EXPORT_SYMBOL vmlinux 0x83de676e page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x83ffd3e6 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x840ea353 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes -EXPORT_SYMBOL vmlinux 0x842b96a4 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x84949da3 sock_edemux -EXPORT_SYMBOL vmlinux 0x84b7406a audit_log -EXPORT_SYMBOL vmlinux 0x84cab362 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x84cc4934 mutex_unlock -EXPORT_SYMBOL vmlinux 0x84ea2281 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x85037d57 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x8507c383 proc_dointvec -EXPORT_SYMBOL vmlinux 0x850e6253 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x851cbdd3 backlight_force_update -EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue -EXPORT_SYMBOL vmlinux 0x852d49ee netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x855a163b nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0x855e4059 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8573bcb4 netdev_printk -EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes -EXPORT_SYMBOL vmlinux 0x857d9a07 tty_vhangup -EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem -EXPORT_SYMBOL vmlinux 0x85ae6e16 __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85b623a4 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x85cbeba9 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x8608d52f mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu -EXPORT_SYMBOL vmlinux 0x86388d60 input_close_device -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x86675ce6 compat_tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x8672f47c d_lookup -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x869d8686 nvm_register_mgr -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86a6b430 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x86dfdfaa netlink_unicast -EXPORT_SYMBOL vmlinux 0x86e7630b blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x86ed3253 follow_up -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x86fbad32 ab3100_event_register -EXPORT_SYMBOL vmlinux 0x8700d7ea pci_release_regions -EXPORT_SYMBOL vmlinux 0x87019326 inet_del_offload -EXPORT_SYMBOL vmlinux 0x8715cec0 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x871d14b5 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x872be722 start_tty -EXPORT_SYMBOL vmlinux 0x8768a50f register_xen_selfballooning -EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write -EXPORT_SYMBOL vmlinux 0x8777fcf3 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x878cd015 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x879a4201 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0x87c59d21 cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x87d76669 pci_enable_device -EXPORT_SYMBOL vmlinux 0x87e4e6f9 km_is_alive -EXPORT_SYMBOL vmlinux 0x87fcf45e blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x881f9df0 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x8838cc9f vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x8848e719 sk_dst_check -EXPORT_SYMBOL vmlinux 0x8849996d input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x8851092a phy_device_create -EXPORT_SYMBOL vmlinux 0x8865b865 x86_dma_fallback_dev -EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x88ebdcc2 seq_file_path -EXPORT_SYMBOL vmlinux 0x88f01dfb kill_fasync -EXPORT_SYMBOL vmlinux 0x8904ea46 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x8915c870 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat -EXPORT_SYMBOL vmlinux 0x8927d103 vga_client_register -EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx -EXPORT_SYMBOL vmlinux 0x89514462 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x896319a4 bio_chain -EXPORT_SYMBOL vmlinux 0x8979985d dquot_file_open -EXPORT_SYMBOL vmlinux 0x897a48bf blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x898c807d account_page_dirtied -EXPORT_SYMBOL vmlinux 0x89a8779b blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x89aad437 pnp_start_dev -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89b05a29 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x89beb114 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x89cdb394 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x89d0fb64 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x89d718b6 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x89d774f3 phy_drivers_register -EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all -EXPORT_SYMBOL vmlinux 0x8a10bedb i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a1bd07e xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x8a2ded4a ps2_command -EXPORT_SYMBOL vmlinux 0x8a3f5aa1 acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a615fe3 inet_frags_init -EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8a9bac6d crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x8aad46b8 agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0x8ab683ff release_pages -EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put -EXPORT_SYMBOL vmlinux 0x8b0df041 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x8b2df58e keyring_alloc -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b3f5d19 phy_init_eee -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b4c0a41 simple_dname -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b69e4e7 sock_update_memcg -EXPORT_SYMBOL vmlinux 0x8b77922b md_done_sync -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8bd3110c input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x8bdf9a0d get_task_exe_file -EXPORT_SYMBOL vmlinux 0x8bedf204 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x8bfc9992 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 -EXPORT_SYMBOL vmlinux 0x8c58209b xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c85a422 phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0x8ca2846a mdio_bus_type -EXPORT_SYMBOL vmlinux 0x8caff949 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x8cb388cd dump_truncate -EXPORT_SYMBOL vmlinux 0x8cb5eaa9 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8ceb4a3c kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x8cf1b23f seq_escape -EXPORT_SYMBOL vmlinux 0x8cf9e18e mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x8d408748 dst_init -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d761529 inc_nlink -EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove -EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x8d8e4e30 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x8d91b294 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x8d973729 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x8d9e46c7 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface -EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init -EXPORT_SYMBOL vmlinux 0x8dbf66ba inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x8dc6ed14 phy_device_register -EXPORT_SYMBOL vmlinux 0x8df831b4 igrab -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block -EXPORT_SYMBOL vmlinux 0x8e0090f7 unlock_buffer -EXPORT_SYMBOL vmlinux 0x8e09c60b jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x8e0b9cee skb_pull -EXPORT_SYMBOL vmlinux 0x8e2d83b6 node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x8e31912b nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x8e540f71 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e876e92 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x8e8a920b vfs_llseek -EXPORT_SYMBOL vmlinux 0x8e943449 dma_common_mmap -EXPORT_SYMBOL vmlinux 0x8ea9ecbe inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler -EXPORT_SYMBOL vmlinux 0x8ec00da7 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x8eda51e8 put_tty_driver -EXPORT_SYMBOL vmlinux 0x8f0a34bf tty_register_driver -EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus -EXPORT_SYMBOL vmlinux 0x8f3d23bd blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 -EXPORT_SYMBOL vmlinux 0x8fc5e6a4 amd_iommu_flush_tlb -EXPORT_SYMBOL vmlinux 0x8fca9443 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc -EXPORT_SYMBOL vmlinux 0x900a354e skb_push -EXPORT_SYMBOL vmlinux 0x901923cd d_add_ci -EXPORT_SYMBOL vmlinux 0x901bee71 ps2_init -EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x9025ab87 swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x9029526d arp_send -EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector -EXPORT_SYMBOL vmlinux 0x904d8829 lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x907b5743 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0x9085d427 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x9090aeab phy_connect_direct -EXPORT_SYMBOL vmlinux 0x909cd727 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x90aab127 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x90c8432d pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0x90de527f __register_binfmt -EXPORT_SYMBOL vmlinux 0x90e9ee0f blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x9159e1f3 tso_build_data -EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb -EXPORT_SYMBOL vmlinux 0x9164c5d2 __blk_end_request -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init -EXPORT_SYMBOL vmlinux 0x9197d270 blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x9198ea70 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x91a2f0bf skb_copy -EXPORT_SYMBOL vmlinux 0x91a962db param_get_invbool -EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf -EXPORT_SYMBOL vmlinux 0x91b57f57 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x91ba4af3 tcp_proc_register -EXPORT_SYMBOL vmlinux 0x91d1e759 param_get_uint -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x9211dc64 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x9232d3b3 inet_ioctl -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x925ed0e9 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0x926548fe copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x9274f1be compat_ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x927f21e9 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x929eaccc qdisc_list_add -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92b1b014 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x92b6ff9c xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x92f4e215 scsi_register -EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x931987e5 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read -EXPORT_SYMBOL vmlinux 0x936357ed vfs_iter_write -EXPORT_SYMBOL vmlinux 0x936e4cb2 phy_attach -EXPORT_SYMBOL vmlinux 0x937245b8 inet6_bind -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x9386bc8f tcp_seq_open -EXPORT_SYMBOL vmlinux 0x938bb545 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x93924672 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x9397056f tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0x93aa8256 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b592e8 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x93d3feb5 simple_release_fs -EXPORT_SYMBOL vmlinux 0x93dafb66 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x93f3e52b acpi_extract_package -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x94133c2e nf_log_unset -EXPORT_SYMBOL vmlinux 0x945e4c33 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x94793343 rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x9497b4cb tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x949e0e85 compat_sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x94b82bba bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x94c63264 security_mmap_file -EXPORT_SYMBOL vmlinux 0x94e0da0b mark_page_accessed -EXPORT_SYMBOL vmlinux 0x94e91717 set_disk_ro -EXPORT_SYMBOL vmlinux 0x9500646e register_md_personality -EXPORT_SYMBOL vmlinux 0x950cb450 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x950f416c xfrm_input -EXPORT_SYMBOL vmlinux 0x952253df pv_cpu_ops -EXPORT_SYMBOL vmlinux 0x9525e97f vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x9537e6e4 register_gifconf -EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception -EXPORT_SYMBOL vmlinux 0x953f6d1b cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x95536f33 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x95953958 vga_switcheroo_get_client_state -EXPORT_SYMBOL vmlinux 0x959d1654 get_disk -EXPORT_SYMBOL vmlinux 0x95a52bec scsi_add_device -EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler -EXPORT_SYMBOL vmlinux 0x95c869cc set_nlink -EXPORT_SYMBOL vmlinux 0x95d67ea4 seq_release_private -EXPORT_SYMBOL vmlinux 0x95e0c72d eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x95e68058 netdev_info -EXPORT_SYMBOL vmlinux 0x966181b6 d_set_d_op -EXPORT_SYMBOL vmlinux 0x9668c911 revalidate_disk -EXPORT_SYMBOL vmlinux 0x96719e06 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x96820e82 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x96aba385 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96fdd7f2 update_devfreq -EXPORT_SYMBOL vmlinux 0x970e23f9 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x9714f31e blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x971d75ec md_register_thread -EXPORT_SYMBOL vmlinux 0x9728293f skb_dequeue -EXPORT_SYMBOL vmlinux 0x972e42e2 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x97316b3c inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x977ad4c3 swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0x9783e990 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x97a261cd generic_delete_inode -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97bf4118 ppp_unit_number -EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x97c62eb6 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block -EXPORT_SYMBOL vmlinux 0x97e43218 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x97f3644d mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x97fd1cd5 may_umount -EXPORT_SYMBOL vmlinux 0x9800c529 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x9810e545 compat_sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x98115f05 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x981b4e78 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x983c2856 vfs_symlink -EXPORT_SYMBOL vmlinux 0x98453a71 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x9847666e ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x984aeebc skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x98545ba1 pci_choose_state -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x98726a0a put_io_context -EXPORT_SYMBOL vmlinux 0x987647f2 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x987b87db agp_collect_device_status -EXPORT_SYMBOL vmlinux 0x9884ee8d __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x9887a6ba __pci_register_driver -EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x -EXPORT_SYMBOL vmlinux 0x98977507 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x989974aa __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x98d590a8 get_empty_filp -EXPORT_SYMBOL vmlinux 0x99151d51 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x9918b3a6 mpage_writepage -EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf -EXPORT_SYMBOL vmlinux 0x992ebbce fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x99330357 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x993d1d75 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9957de4c elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x999f04a8 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x99a61460 blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x99c15fa9 napi_disable -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99d0cc23 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map -EXPORT_SYMBOL vmlinux 0x9a0a932f default_llseek -EXPORT_SYMBOL vmlinux 0x9a1019b5 kobject_add -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a2b9383 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x9a3d4d7a dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0x9a537e91 unregister_console -EXPORT_SYMBOL vmlinux 0x9a7ca88c nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x9a90ecaa dquot_free_inode -EXPORT_SYMBOL vmlinux 0x9aa0dfa6 send_sig -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9af21d58 dget_parent -EXPORT_SYMBOL vmlinux 0x9afa039e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x9afce25e param_array_ops -EXPORT_SYMBOL vmlinux 0x9b1b823b call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x9b2b3b9f block_write_full_page -EXPORT_SYMBOL vmlinux 0x9b2e936f generic_write_end -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b419d5d __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x9b7dfd88 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x9b8ff1ff put_filp -EXPORT_SYMBOL vmlinux 0x9b99d346 dm_put_device -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9be94fe8 tty_port_init -EXPORT_SYMBOL vmlinux 0x9bee7ca1 alloc_pages_current -EXPORT_SYMBOL vmlinux 0x9bf76f86 udplite_prot -EXPORT_SYMBOL vmlinux 0x9bfc5a41 xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0x9c0bba54 touch_buffer -EXPORT_SYMBOL vmlinux 0x9c0ce26f blk_complete_request -EXPORT_SYMBOL vmlinux 0x9c2d947b nd_iostat_end -EXPORT_SYMBOL vmlinux 0x9c2fdb47 have_submounts -EXPORT_SYMBOL vmlinux 0x9c316e0b xfrm_lookup -EXPORT_SYMBOL vmlinux 0x9c35af58 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x9c431be1 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x9c47a6e0 __scm_destroy -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c571c9e eth_change_mtu -EXPORT_SYMBOL vmlinux 0x9c7e2aae jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x9c9075e5 kobject_get -EXPORT_SYMBOL vmlinux 0x9c99546f bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x9c9ae98a inet_shutdown -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cbce800 input_free_device -EXPORT_SYMBOL vmlinux 0x9cc75b3c pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x9cd1963c put_disk -EXPORT_SYMBOL vmlinux 0x9cdd2011 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0x9cec246f security_inode_readlink -EXPORT_SYMBOL vmlinux 0x9cef9ecd security_d_instantiate -EXPORT_SYMBOL vmlinux 0x9cfa52c3 tcp_prequeue -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable -EXPORT_SYMBOL vmlinux 0x9d3635fd proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d796dc2 posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0x9d98dce8 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x9dbe6fe0 filemap_fault -EXPORT_SYMBOL vmlinux 0x9dc28408 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x9dc73d29 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x9dee8611 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x9e098e2b cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e1d1352 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read -EXPORT_SYMBOL vmlinux 0x9e71768c phy_connect -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9efbc495 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x9efc0094 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x9f0e6a6c tcp_poll -EXPORT_SYMBOL vmlinux 0x9f1d80b9 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x9f2572cf dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x9f40dc8f swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0x9f425c15 padata_alloc -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f53a61a dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x9f7668b7 scsi_execute -EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x9f7cb98b follow_down -EXPORT_SYMBOL vmlinux 0x9f7ed191 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fa36ea8 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x9fa3cf00 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x9fa77dee write_inode_now -EXPORT_SYMBOL vmlinux 0x9fc54d09 dquot_release -EXPORT_SYMBOL vmlinux 0x9fc68c7c scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x9fde0f06 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe44c20 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa0148827 inet6_add_offload -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa046d81c submit_bio_wait -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa05b5c8b save_mount_options -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa06774b0 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0xa06ff399 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa091ac02 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xa0a68daa ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0xa0a8f964 path_noexec -EXPORT_SYMBOL vmlinux 0xa0accaed to_nd_btt -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0c1c06b mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0f7af14 devm_request_resource -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0ff55f6 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts -EXPORT_SYMBOL vmlinux 0xa15a4059 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xa1611cf4 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xa1722a0c genphy_config_init -EXPORT_SYMBOL vmlinux 0xa183c2b3 skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0xa189b456 pci_iounmap -EXPORT_SYMBOL vmlinux 0xa18e34ec scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xa1a8a72b pci_iomap -EXPORT_SYMBOL vmlinux 0xa1adc223 scsi_device_put -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1c28d19 bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1dc0116 tcf_action_exec -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1df7798 md_cluster_mod -EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xa2043207 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa24010be crypto_sha512_update -EXPORT_SYMBOL vmlinux 0xa25d702d hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa293866a page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0xa2b1f09b pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0xa2f7d132 module_layout -EXPORT_SYMBOL vmlinux 0xa30dea6d __lock_page -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa32188f3 copy_to_iter -EXPORT_SYMBOL vmlinux 0xa32a2d4c keyring_search -EXPORT_SYMBOL vmlinux 0xa34cec84 neigh_for_each -EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node -EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc -EXPORT_SYMBOL vmlinux 0xa374ed7b abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get -EXPORT_SYMBOL vmlinux 0xa3a5ebb4 abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0xa3b05bbd jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xa3b9fbbb mfd_cell_enable -EXPORT_SYMBOL vmlinux 0xa3bb0418 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0xa3d39c67 devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0xa3e9e0f9 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xa4209d28 scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0xa4511467 crc16 -EXPORT_SYMBOL vmlinux 0xa45ca001 blk_recount_segments -EXPORT_SYMBOL vmlinux 0xa468e6ec scsi_block_requests -EXPORT_SYMBOL vmlinux 0xa46b4060 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa473bd76 tcp_filter -EXPORT_SYMBOL vmlinux 0xa47695f5 nvm_put_blk -EXPORT_SYMBOL vmlinux 0xa47ee108 swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0xa49c1791 rt6_lookup -EXPORT_SYMBOL vmlinux 0xa4a76e76 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xa4af3f0c netif_napi_del -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4d825ba cfb_imageblit -EXPORT_SYMBOL vmlinux 0xa4eca6a8 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xa50a80c2 boot_cpu_data -EXPORT_SYMBOL vmlinux 0xa522772a pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0xa52d9991 netdev_warn -EXPORT_SYMBOL vmlinux 0xa5524bb3 vlan_vid_add -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa56eff6f elv_rb_find -EXPORT_SYMBOL vmlinux 0xa57d9849 __page_symlink -EXPORT_SYMBOL vmlinux 0xa581e5f3 seq_dentry -EXPORT_SYMBOL vmlinux 0xa58cbbe5 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xa596fcac path_is_under -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le -EXPORT_SYMBOL vmlinux 0xa5c35988 qdisc_reset -EXPORT_SYMBOL vmlinux 0xa5f266e1 unregister_netdev -EXPORT_SYMBOL vmlinux 0xa6087b53 proc_mkdir -EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xa6355a88 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa690692c compat_sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xa6b21298 nf_log_set -EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up -EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error -EXPORT_SYMBOL vmlinux 0xa6da470b rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa705a6f1 pci_dev_get -EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi -EXPORT_SYMBOL vmlinux 0xa710a59c tty_mutex -EXPORT_SYMBOL vmlinux 0xa7176a6b mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa74bcd62 rdmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xa7671abb redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0xa76cbc65 __frontswap_test -EXPORT_SYMBOL vmlinux 0xa78653fc register_console -EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock -EXPORT_SYMBOL vmlinux 0xa78b954f migrate_page -EXPORT_SYMBOL vmlinux 0xa790b6b8 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xa7b6f085 inode_init_owner -EXPORT_SYMBOL vmlinux 0xa7e0ef7f bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xa8136f87 sk_net_capable -EXPORT_SYMBOL vmlinux 0xa82232a8 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xa83495e4 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa8693ed0 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa8a646e2 mpage_writepages -EXPORT_SYMBOL vmlinux 0xa8be8919 udp6_csum_init -EXPORT_SYMBOL vmlinux 0xa8e30ebd wait_iff_congested -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa90ca647 textsearch_register -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xa94d6bee mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xa96e771e register_quota_format -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa9780f06 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0xa9982baf iterate_dir -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa99fe552 blk_free_tags -EXPORT_SYMBOL vmlinux 0xa9a3e187 i2c_del_driver -EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0xa9a9b72c bio_endio -EXPORT_SYMBOL vmlinux 0xa9b3368c md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xa9bd2676 __vmalloc -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9cba14d dma_find_channel -EXPORT_SYMBOL vmlinux 0xa9d79480 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xa9df5c8f md_reload_sb -EXPORT_SYMBOL vmlinux 0xaa26cf6b nd_pfn_validate -EXPORT_SYMBOL vmlinux 0xaa36823a netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xaa43057e dm_kobject_release -EXPORT_SYMBOL vmlinux 0xaa4cf5ef unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0xaa4e9ad4 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0xaa5dfd66 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa7afbbb sock_kmalloc -EXPORT_SYMBOL vmlinux 0xaa7ca325 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xaa84859a pci_disable_msix -EXPORT_SYMBOL vmlinux 0xaa8d4d6e do_truncate -EXPORT_SYMBOL vmlinux 0xaa99acc0 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xaaa2bf11 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xaab65857 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad17c7d clk_add_alias -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaae5f114 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaeb8470 vm_insert_mixed -EXPORT_SYMBOL vmlinux 0xaaebbca0 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab02a2c7 netlink_capable -EXPORT_SYMBOL vmlinux 0xab1e2d1f dquot_quota_off -EXPORT_SYMBOL vmlinux 0xab24ff4e pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0xab357da2 scsi_host_get -EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab7a26d8 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xab8e9154 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0xaba3159c gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xabb7bb80 iov_iter_init -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabe97e1b i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac261120 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear -EXPORT_SYMBOL vmlinux 0xac6bc58a should_remove_suid -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy -EXPORT_SYMBOL vmlinux 0xacbf1af5 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xacc6ec77 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0xacc76868 on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacf4ef4c dquot_enable -EXPORT_SYMBOL vmlinux 0xacf8d8fd kdb_current_task -EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xad256a61 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xad2d0057 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0xad4c7e8a nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0xad563a0c get_acl -EXPORT_SYMBOL vmlinux 0xad698f77 dqstats -EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free -EXPORT_SYMBOL vmlinux 0xad8189ff dentry_open -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad99899c try_module_get -EXPORT_SYMBOL vmlinux 0xad9d74ec fifo_set_limit -EXPORT_SYMBOL vmlinux 0xada95166 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0xadb5814b acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0xadcc8494 xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0xadd52a20 param_ops_bool -EXPORT_SYMBOL vmlinux 0xaddb9417 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xadf185fd pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list -EXPORT_SYMBOL vmlinux 0xae295779 clkdev_alloc -EXPORT_SYMBOL vmlinux 0xae462fc7 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xae712220 agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0xae86b4db bio_phys_segments -EXPORT_SYMBOL vmlinux 0xaea0fb5b input_register_handle -EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xaeb07f2e scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xaeb0b408 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xaeff1334 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0xaf21c06b elevator_init -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf4ea59f gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids -EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup -EXPORT_SYMBOL vmlinux 0xaf7c8f09 __bread_gfp -EXPORT_SYMBOL vmlinux 0xaf95dcd7 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xafaed31b tty_name -EXPORT_SYMBOL vmlinux 0xafb8c6ff copy_user_generic_string -EXPORT_SYMBOL vmlinux 0xafc9f1da blk_put_request -EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported -EXPORT_SYMBOL vmlinux 0xafde12b7 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xafed6d2d mpage_readpages -EXPORT_SYMBOL vmlinux 0xaff94671 mmc_remove_host -EXPORT_SYMBOL vmlinux 0xb00e3600 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries -EXPORT_SYMBOL vmlinux 0xb021c0fc netpoll_setup -EXPORT_SYMBOL vmlinux 0xb02f2a66 vm_insert_page -EXPORT_SYMBOL vmlinux 0xb03870be mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0xb040d190 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0xb04be1d1 __frontswap_load -EXPORT_SYMBOL vmlinux 0xb0516953 task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb091c118 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b3c270 tcf_hash_search -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0bf6140 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xb0bf8952 neigh_direct_output -EXPORT_SYMBOL vmlinux 0xb0d9fca0 inet_csk_accept -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e602eb memmove -EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0xb0ed328e fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0xb101e530 vfs_readf -EXPORT_SYMBOL vmlinux 0xb11a9846 flow_cache_init -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12447ee bmap -EXPORT_SYMBOL vmlinux 0xb129a780 pcim_iounmap -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb150ede7 tso_start -EXPORT_SYMBOL vmlinux 0xb152d87d cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xb157fca3 pci_find_bus -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb15da329 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb1693483 kill_litter_super -EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init -EXPORT_SYMBOL vmlinux 0xb1a60b9a lwtunnel_input -EXPORT_SYMBOL vmlinux 0xb1b4cfc2 init_buffer -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1cc4faf i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu -EXPORT_SYMBOL vmlinux 0xb1d978fb uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xb20441d6 cdev_init -EXPORT_SYMBOL vmlinux 0xb20ecf88 acpi_run_osc -EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu -EXPORT_SYMBOL vmlinux 0xb21eec20 scsi_host_set_state -EXPORT_SYMBOL vmlinux 0xb25a69fe ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb26cae12 led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0xb29144a9 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xb298e91c fd_install -EXPORT_SYMBOL vmlinux 0xb2ab3576 xfrm_state_add -EXPORT_SYMBOL vmlinux 0xb2b0aa49 vm_mmap -EXPORT_SYMBOL vmlinux 0xb2b0e4f0 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2d5a552 complete -EXPORT_SYMBOL vmlinux 0xb2e1645c pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0xb2f3bde9 compat_sock_get_timestamp -EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove -EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xb2fc0047 dm_io -EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 -EXPORT_SYMBOL vmlinux 0xb304d4c6 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xb308bd76 proc_symlink -EXPORT_SYMBOL vmlinux 0xb30fb736 bio_integrity_endio -EXPORT_SYMBOL vmlinux 0xb31e48a9 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xb31e9a84 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xb31fa8bd request_key -EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xb32ae49d cad_pid -EXPORT_SYMBOL vmlinux 0xb33ffd1c mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xb34f4670 nvm_dev_factory -EXPORT_SYMBOL vmlinux 0xb34f6a7d make_bad_inode -EXPORT_SYMBOL vmlinux 0xb3501133 unregister_nls -EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit -EXPORT_SYMBOL vmlinux 0xb36fe7c9 amd_iommu_device_info -EXPORT_SYMBOL vmlinux 0xb373d1d9 set_binfmt -EXPORT_SYMBOL vmlinux 0xb384871b vfs_read -EXPORT_SYMBOL vmlinux 0xb388a1a2 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3f15558 simple_rmdir -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb40ab368 vfs_iter_read -EXPORT_SYMBOL vmlinux 0xb40e33a7 bdget -EXPORT_SYMBOL vmlinux 0xb41b59df ip6_frag_init -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4289223 devm_release_resource -EXPORT_SYMBOL vmlinux 0xb42af8d7 simple_write_end -EXPORT_SYMBOL vmlinux 0xb4320305 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0xb43bc0ad proto_unregister -EXPORT_SYMBOL vmlinux 0xb4574947 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xb46c5c93 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class -EXPORT_SYMBOL vmlinux 0xb49a3342 mount_subtree -EXPORT_SYMBOL vmlinux 0xb4abeac1 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xb4bacf57 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0xb4c93385 generic_update_time -EXPORT_SYMBOL vmlinux 0xb4e8644d from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xb5101b9e phy_device_free -EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range -EXPORT_SYMBOL vmlinux 0xb532e57f truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xb53368fe scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xb559c576 xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0xb55f0204 clear_wb_congested -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb5868e1d __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5b2ee1e xattr_full_name -EXPORT_SYMBOL vmlinux 0xb5b45184 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free -EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xb5f59876 xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0xb6064317 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xb6216a00 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb66ec44b path_nosuid -EXPORT_SYMBOL vmlinux 0xb673c698 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb68a356b scsi_is_host_device -EXPORT_SYMBOL vmlinux 0xb6905289 inet6_getname -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69ff3a9 seq_open -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6c1263c xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xb6c7e02c fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0xb6d13663 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xb6e4ea04 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xb708dea0 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xb7163082 nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0xb7174995 vga_switcheroo_register_handler -EXPORT_SYMBOL vmlinux 0xb72a49ec inet6_ioctl -EXPORT_SYMBOL vmlinux 0xb73841c6 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xb7386804 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xb7391cdc mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xb7468686 noop_qdisc -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb74a6787 kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb777e3e5 scsi_ioctl -EXPORT_SYMBOL vmlinux 0xb77b0348 set_pages_array_wb -EXPORT_SYMBOL vmlinux 0xb7853ebf inode_needs_sync -EXPORT_SYMBOL vmlinux 0xb7866bc8 pci_iomap_range -EXPORT_SYMBOL vmlinux 0xb79317f5 md_cluster_ops -EXPORT_SYMBOL vmlinux 0xb7abe8e8 ht_create_irq -EXPORT_SYMBOL vmlinux 0xb7adce88 vga_switcheroo_client_fb_set -EXPORT_SYMBOL vmlinux 0xb7b4d01b from_kgid_munged -EXPORT_SYMBOL vmlinux 0xb7c4ac9b mb_cache_shrink -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d5d8c9 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xb7e70e8d d_instantiate -EXPORT_SYMBOL vmlinux 0xb80dc9c6 security_path_rename -EXPORT_SYMBOL vmlinux 0xb8131099 param_set_invbool -EXPORT_SYMBOL vmlinux 0xb8260889 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xb83b003b register_filesystem -EXPORT_SYMBOL vmlinux 0xb84836f9 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xb84ade04 bio_add_page -EXPORT_SYMBOL vmlinux 0xb85725f6 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xb85f3e85 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0xb8646b93 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb89d927c dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0xb8b5252c compat_nf_getsockopt -EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add -EXPORT_SYMBOL vmlinux 0xb8ba117f kfree_put_link -EXPORT_SYMBOL vmlinux 0xb8d13f9a bdi_register -EXPORT_SYMBOL vmlinux 0xb8e22bed generic_readlink -EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 -EXPORT_SYMBOL vmlinux 0xb8f32c57 md_flush_request -EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb91e0e3e find_vma -EXPORT_SYMBOL vmlinux 0xb92592ee pci_scan_bridge -EXPORT_SYMBOL vmlinux 0xb92ababc devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xb931e61f setattr_copy -EXPORT_SYMBOL vmlinux 0xb93b739e ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xb94c5cb6 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xb977b9e3 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xb981c3f7 elv_rb_add -EXPORT_SYMBOL vmlinux 0xb990e6b8 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0xb9ab786b blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0xb9ce618e ihold -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xba0874f7 loop_backing_file -EXPORT_SYMBOL vmlinux 0xba0baaba netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0xba13fd74 neigh_destroy -EXPORT_SYMBOL vmlinux 0xba1a9b2d request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xba1f0da4 stop_tty -EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read -EXPORT_SYMBOL vmlinux 0xba35e0e1 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba5597bb dev_get_by_index -EXPORT_SYMBOL vmlinux 0xba656265 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xba8c1f91 unregister_quota_format -EXPORT_SYMBOL vmlinux 0xbaa18d6a current_in_userns -EXPORT_SYMBOL vmlinux 0xbadaec7c sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xbae79c54 alloc_fddidev -EXPORT_SYMBOL vmlinux 0xbae8fef3 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb0cfbe5 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xbb281158 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten -EXPORT_SYMBOL vmlinux 0xbb344cf6 dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb4eafd4 vga_switcheroo_register_audio_client -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb6daafb dmam_pool_create -EXPORT_SYMBOL vmlinux 0xbb7689cb blk_run_queue -EXPORT_SYMBOL vmlinux 0xbb777421 pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0xbb87b4e0 fsync_bdev -EXPORT_SYMBOL vmlinux 0xbb91f3df padata_add_cpu -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xbbaa56ad tcp_read_sock -EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0xbbb1dd26 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0xbbbea25f __ht_create_irq -EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc474077 __devm_release_region -EXPORT_SYMBOL vmlinux 0xbc601aa5 simple_transaction_set -EXPORT_SYMBOL vmlinux 0xbc7f6d70 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xbc8f6c73 uart_add_one_port -EXPORT_SYMBOL vmlinux 0xbc952b5e mmc_request_done -EXPORT_SYMBOL vmlinux 0xbcb0ae2d tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xbcbed672 lock_sock_nested -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcc4cb7a bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xbcd4615b skb_queue_head -EXPORT_SYMBOL vmlinux 0xbcda89d3 blk_finish_request -EXPORT_SYMBOL vmlinux 0xbcfc8754 bio_put -EXPORT_SYMBOL vmlinux 0xbd01250c mount_single -EXPORT_SYMBOL vmlinux 0xbd07052b sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve -EXPORT_SYMBOL vmlinux 0xbd1bbd98 set_pages_wb -EXPORT_SYMBOL vmlinux 0xbd1fb265 input_unregister_device -EXPORT_SYMBOL vmlinux 0xbd225d83 vga_tryget -EXPORT_SYMBOL vmlinux 0xbd3fa5de abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd532598 max8998_update_reg -EXPORT_SYMBOL vmlinux 0xbd573d7b param_ops_int -EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0xbd6e9230 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xbd7d9ecd freeze_bdev -EXPORT_SYMBOL vmlinux 0xbd870e54 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xbd8c5310 pipe_unlock -EXPORT_SYMBOL vmlinux 0xbd8f38ed ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbd9142aa __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xbdb7af15 pci_find_capability -EXPORT_SYMBOL vmlinux 0xbdbb3c4d blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xbdc79c70 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0xbde8e787 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ -EXPORT_SYMBOL vmlinux 0xbe15b4c2 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe485978 input_allocate_device -EXPORT_SYMBOL vmlinux 0xbe4be9a5 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xbe4f0744 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xbe6bf9ae inet_frags_fini -EXPORT_SYMBOL vmlinux 0xbe812f44 unlock_page -EXPORT_SYMBOL vmlinux 0xbeafa047 free_user_ns -EXPORT_SYMBOL vmlinux 0xbeb58614 __check_sticky -EXPORT_SYMBOL vmlinux 0xbebcf3df textsearch_prepare -EXPORT_SYMBOL vmlinux 0xbebfbd93 i2c_register_driver -EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu -EXPORT_SYMBOL vmlinux 0xbee95e7f __inode_permission -EXPORT_SYMBOL vmlinux 0xbef1af26 padata_free -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf179706 loop_register_transfer -EXPORT_SYMBOL vmlinux 0xbf3001f7 console_stop -EXPORT_SYMBOL vmlinux 0xbf3f9f3b blk_delay_queue -EXPORT_SYMBOL vmlinux 0xbf4561bc wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xbf53f62c netdev_crit -EXPORT_SYMBOL vmlinux 0xbf5a7e78 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xbf73e316 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xbf7c1970 amd_iommu_domain_set_gcr3 -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf923896 registered_fb -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfae5f25 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0xbfb826b1 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xbfbdc9cf key_task_permission -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfc6f77f jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xbfdab23a gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0xbfdb825c bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0xbfde1b5e neigh_app_ns -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff9a02a acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0xc00827b1 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0xc012cfaa nf_register_hooks -EXPORT_SYMBOL vmlinux 0xc025849f mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0xc0328a5f sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xc0437b21 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0xc047d9f8 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xc0613f1a d_drop -EXPORT_SYMBOL vmlinux 0xc06e0132 __break_lease -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc091240e iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xc092121e inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0aea0a2 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xc0cd3b13 ___ratelimit -EXPORT_SYMBOL vmlinux 0xc0d8f50a devm_memremap -EXPORT_SYMBOL vmlinux 0xc0da607f dcache_dir_open -EXPORT_SYMBOL vmlinux 0xc0e27964 ip6_frag_match -EXPORT_SYMBOL vmlinux 0xc0f79f13 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit -EXPORT_SYMBOL vmlinux 0xc17f47d3 clear_nlink -EXPORT_SYMBOL vmlinux 0xc1d144b1 netdev_emerg -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1f8be0f security_path_chown -EXPORT_SYMBOL vmlinux 0xc2002b1f param_get_int -EXPORT_SYMBOL vmlinux 0xc212449d tty_set_operations -EXPORT_SYMBOL vmlinux 0xc2133bb2 clkdev_drop -EXPORT_SYMBOL vmlinux 0xc21d867b dev_activate -EXPORT_SYMBOL vmlinux 0xc2343065 neigh_xmit -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc25c5473 param_set_bint -EXPORT_SYMBOL vmlinux 0xc277280a __mutex_init -EXPORT_SYMBOL vmlinux 0xc27bf2a9 dquot_quota_on -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2b68e70 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xc2be817a tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xc2c49b2f agp_backend_acquire -EXPORT_SYMBOL vmlinux 0xc2d5206c md_unregister_thread -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2f35962 neigh_ifdown -EXPORT_SYMBOL vmlinux 0xc301a80b dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc350b4eb wrmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xc3844c65 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0xc39703fc tty_port_close_start -EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 -EXPORT_SYMBOL vmlinux 0xc3b8366a xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xc3b9e439 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3d743a6 dump_trace -EXPORT_SYMBOL vmlinux 0xc42b87a0 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0xc43051c2 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0xc4314243 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0xc442ad94 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xc461400a file_open_root -EXPORT_SYMBOL vmlinux 0xc462e907 blk_init_queue -EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc49ff6e0 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xc4b2861c __dquot_free_space -EXPORT_SYMBOL vmlinux 0xc4b407d3 generic_getxattr -EXPORT_SYMBOL vmlinux 0xc4d25c23 blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0xc4dd951b __secpath_destroy -EXPORT_SYMBOL vmlinux 0xc4f331c6 cpu_online_mask -EXPORT_SYMBOL vmlinux 0xc5019a57 file_update_time -EXPORT_SYMBOL vmlinux 0xc503f0d0 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid -EXPORT_SYMBOL vmlinux 0xc54852c8 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc558530d profile_pc -EXPORT_SYMBOL vmlinux 0xc563cae3 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xc58b2909 replace_mount_options -EXPORT_SYMBOL vmlinux 0xc58e537e pci_save_state -EXPORT_SYMBOL vmlinux 0xc59994fc jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5a09e93 input_unregister_handle -EXPORT_SYMBOL vmlinux 0xc5a5aaf6 elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0xc5aaa1c4 iunique -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5dc9ca7 d_find_any_alias -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc611af5f __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xc6187c52 vme_bus_num -EXPORT_SYMBOL vmlinux 0xc62cb79d scsi_remove_host -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc6373608 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xc6b811ce security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6dbca14 agp_create_memory -EXPORT_SYMBOL vmlinux 0xc6ef4dc9 iterate_fd -EXPORT_SYMBOL vmlinux 0xc6f6e7a2 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xc710835e follow_pfn -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc74ab3b7 lookup_one_len -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc756a23c set_device_ro -EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xc759c2bb netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xc760b804 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0xc764baf3 simple_write_begin -EXPORT_SYMBOL vmlinux 0xc76758e9 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0xc76f777c scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xc7717b1d acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xc77709a5 bio_init -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc7874fef __devm_request_region -EXPORT_SYMBOL vmlinux 0xc78bf8d1 vme_lm_request -EXPORT_SYMBOL vmlinux 0xc79726c4 generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0xc79bb4cb gen_pool_alloc -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc79e2766 tcf_hash_check -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7c4daac rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xc7dcad90 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc7dd3675 clk_register_clkdevs -EXPORT_SYMBOL vmlinux 0xc7f2892f sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xc7ff410e input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0xc80022f7 dev_addr_flush -EXPORT_SYMBOL vmlinux 0xc8061392 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0xc8188098 md_finish_reshape -EXPORT_SYMBOL vmlinux 0xc83612b5 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84c1744 sock_from_file -EXPORT_SYMBOL vmlinux 0xc84cf74e iterate_mounts -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc88097ac udp_proc_register -EXPORT_SYMBOL vmlinux 0xc88d855a compat_tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc89b5b6c vme_irq_handler -EXPORT_SYMBOL vmlinux 0xc8a1a466 skb_queue_tail -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8bf764a mmc_put_card -EXPORT_SYMBOL vmlinux 0xc8c30646 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xc8f4319c devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xc8f7d7fd complete_request_key -EXPORT_SYMBOL vmlinux 0xc8fae136 dma_sync_wait -EXPORT_SYMBOL vmlinux 0xc8fd8c34 scsi_remove_device -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc93257b8 dev_warn -EXPORT_SYMBOL vmlinux 0xc935635a empty_aops -EXPORT_SYMBOL vmlinux 0xc95d80cc dput -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96c635d neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xc96f7d56 generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock -EXPORT_SYMBOL vmlinux 0xc9a76a9c vfs_writev -EXPORT_SYMBOL vmlinux 0xc9f2c7bc pnp_possible_config -EXPORT_SYMBOL vmlinux 0xc9f68e4e blk_fetch_request -EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca15b550 mfd_add_devices -EXPORT_SYMBOL vmlinux 0xca27b8f1 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xca3f7b58 swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0xca54f440 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent -EXPORT_SYMBOL vmlinux 0xca6b1d90 blk_stop_queue -EXPORT_SYMBOL vmlinux 0xca79ce6a mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order -EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcab0b24f scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xcab0c6bc phy_stop -EXPORT_SYMBOL vmlinux 0xcab3a729 audit_log_start -EXPORT_SYMBOL vmlinux 0xcac3a500 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xcac45f51 kthread_bind -EXPORT_SYMBOL vmlinux 0xcad3390d phy_find_first -EXPORT_SYMBOL vmlinux 0xcade9a54 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0xcaebc428 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb19f9a5 __dst_free -EXPORT_SYMBOL vmlinux 0xcb2affb8 to_ndd -EXPORT_SYMBOL vmlinux 0xcb307656 bdgrab -EXPORT_SYMBOL vmlinux 0xcb4cedaf inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb903326 pnp_get_resource -EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcb9a7387 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0xcba23e8b dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xcba4f488 send_sig_info -EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister -EXPORT_SYMBOL vmlinux 0xcbb07ed2 textsearch_destroy -EXPORT_SYMBOL vmlinux 0xcbb32e70 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbe22c2d ___pskb_trim -EXPORT_SYMBOL vmlinux 0xcc246306 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc3f7b65 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0xcc4c5a83 lease_get_mtime -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc61622c mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0xcc65ee2a dev_driver_string -EXPORT_SYMBOL vmlinux 0xcc671622 mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl -EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute -EXPORT_SYMBOL vmlinux 0xcc9aa2a6 register_sysctl -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccfb94d5 skb_trim -EXPORT_SYMBOL vmlinux 0xcd09b309 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xcd601d72 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xcd60c03c nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0xcd6241ed uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xcdc1a69e xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xcdc37a17 get_agp_version -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdd46000 dev_err -EXPORT_SYMBOL vmlinux 0xce146bf2 ns_capable -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xce31f96c padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift -EXPORT_SYMBOL vmlinux 0xce946cf4 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0xce992f58 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xcea7e1d5 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free -EXPORT_SYMBOL vmlinux 0xcec71615 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xcec8750f tcp_prot -EXPORT_SYMBOL vmlinux 0xced9d71b free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xcedcb6b4 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf0c65d2 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xcf198467 blk_queue_bounce -EXPORT_SYMBOL vmlinux 0xcf19912f d_move -EXPORT_SYMBOL vmlinux 0xcf249338 pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0xcf341ec5 consume_skb -EXPORT_SYMBOL vmlinux 0xcf41cdb2 lro_receive_skb -EXPORT_SYMBOL vmlinux 0xcf4d5ae8 seq_putc -EXPORT_SYMBOL vmlinux 0xcf670683 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free -EXPORT_SYMBOL vmlinux 0xcf864192 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xcf952549 sock_sendmsg -EXPORT_SYMBOL vmlinux 0xcfb4a296 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xcfca7fc0 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xcfe266e5 is_nd_pfn -EXPORT_SYMBOL vmlinux 0xcfeffd0d inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xcffcb519 key_type_keyring -EXPORT_SYMBOL vmlinux 0xd00b2619 get_unmapped_area -EXPORT_SYMBOL vmlinux 0xd03ff3c1 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xd040c16f get_gendisk -EXPORT_SYMBOL vmlinux 0xd04cc2f2 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0xd055cb96 blkdev_get -EXPORT_SYMBOL vmlinux 0xd066ef07 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd08b3c8a seq_release -EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0d04030 set_pages_x -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd121e3d3 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xd1411cf0 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xd1450ed3 neigh_table_clear -EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info -EXPORT_SYMBOL vmlinux 0xd171f36d try_to_release_page -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd1909990 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0xd19364b4 generic_write_checks -EXPORT_SYMBOL vmlinux 0xd197545b vfs_rename -EXPORT_SYMBOL vmlinux 0xd1998f82 address_space_init_once -EXPORT_SYMBOL vmlinux 0xd1c106b4 sync_blockdev -EXPORT_SYMBOL vmlinux 0xd1d45a70 read_code -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1da4f75 security_path_rmdir -EXPORT_SYMBOL vmlinux 0xd1e49ac1 misc_register -EXPORT_SYMBOL vmlinux 0xd1ec10b7 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xd1f684b2 param_set_bool -EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings -EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace -EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd21b6007 unregister_qdisc -EXPORT_SYMBOL vmlinux 0xd21cd452 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xd22665d2 xfrm_register_km -EXPORT_SYMBOL vmlinux 0xd22afeed jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0xd236a787 vme_dma_request -EXPORT_SYMBOL vmlinux 0xd2383229 sock_no_accept -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd25d0e0a filemap_fdatawait -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd25de5db sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xd2784760 inet_put_port -EXPORT_SYMBOL vmlinux 0xd279e2f5 lwtunnel_output -EXPORT_SYMBOL vmlinux 0xd279fec4 input_reset_device -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd298723b nf_register_hook -EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc -EXPORT_SYMBOL vmlinux 0xd2d4db5f gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e2dedc ata_link_printk -EXPORT_SYMBOL vmlinux 0xd2f87a07 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xd30b8577 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xd343df38 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xd35ca2c8 tty_do_resize -EXPORT_SYMBOL vmlinux 0xd36b010d arp_xmit -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd3719d59 paravirt_ticketlocks_enabled -EXPORT_SYMBOL vmlinux 0xd395349b xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xd399f0bd mutex_lock_killable -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3c044b6 unregister_md_personality -EXPORT_SYMBOL vmlinux 0xd3c860a1 vfs_create -EXPORT_SYMBOL vmlinux 0xd3cbfa65 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xd3d3306e param_set_short -EXPORT_SYMBOL vmlinux 0xd3e08137 fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0xd3e0e2fd pci_get_subsys -EXPORT_SYMBOL vmlinux 0xd3e57d32 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xd3fc7c89 __bforget -EXPORT_SYMBOL vmlinux 0xd3fcd0db pagecache_write_begin -EXPORT_SYMBOL vmlinux 0xd407aba0 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0xd414fd42 sk_reset_timer -EXPORT_SYMBOL vmlinux 0xd436e9fa inet6_protos -EXPORT_SYMBOL vmlinux 0xd456d3e6 sk_mc_loop -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd48e792c write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xd4d2b359 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xd4df1320 skb_tx_error -EXPORT_SYMBOL vmlinux 0xd4eb05ec bio_unmap_user -EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data -EXPORT_SYMBOL vmlinux 0xd519a942 agp_bridge -EXPORT_SYMBOL vmlinux 0xd524a6b4 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xd52d3457 scsi_init_io -EXPORT_SYMBOL vmlinux 0xd533ea5c input_register_device -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd573e97b param_get_ulong -EXPORT_SYMBOL vmlinux 0xd579b75e phy_resume -EXPORT_SYMBOL vmlinux 0xd57c2d1c vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xd5896d93 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xd5942f73 blk_start_request -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd59cd732 skb_find_text -EXPORT_SYMBOL vmlinux 0xd5a6e55d inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xd5af43f5 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xd5b4328a create_empty_buffers -EXPORT_SYMBOL vmlinux 0xd5b53647 d_make_root -EXPORT_SYMBOL vmlinux 0xd5d31721 xfrm_state_update -EXPORT_SYMBOL vmlinux 0xd6065c41 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd647302b sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd67d679a amd_iommu_domain_enable_v2 -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock -EXPORT_SYMBOL vmlinux 0xd6a65216 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace -EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd702af07 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xd7100eba agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0xd730959d seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xd747cf6f tcf_em_register -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd769a50e compat_nf_setsockopt -EXPORT_SYMBOL vmlinux 0xd76f2eb8 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0xd795a46b dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xd7af1db0 write_one_page -EXPORT_SYMBOL vmlinux 0xd7af97c4 vga_switcheroo_fini_domain_pm_ops -EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi -EXPORT_SYMBOL vmlinux 0xd7e55de7 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f41dc8 is_nd_btt -EXPORT_SYMBOL vmlinux 0xd7fe6375 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xd80ace3a pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xd8630755 register_key_type -EXPORT_SYMBOL vmlinux 0xd86c97b4 netdev_notice -EXPORT_SYMBOL vmlinux 0xd87bbf4d pipe_lock -EXPORT_SYMBOL vmlinux 0xd88484cc sock_i_uid -EXPORT_SYMBOL vmlinux 0xd89546be mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0xd92126d2 cdev_del -EXPORT_SYMBOL vmlinux 0xd92e2dca tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xd9388269 dentry_update_name_case -EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference -EXPORT_SYMBOL vmlinux 0xd94eaad6 elv_add_request -EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected -EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu -EXPORT_SYMBOL vmlinux 0xd9720cd6 inet_frag_kill -EXPORT_SYMBOL vmlinux 0xd9779f48 mmc_fixup_device -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd987eec0 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xd98b5901 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xd98c1ce0 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xd993403d blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xd9a7cc00 param_ops_uint -EXPORT_SYMBOL vmlinux 0xd9c3bf24 vfs_unlink -EXPORT_SYMBOL vmlinux 0xd9c67fa9 cpu_info -EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xd9d7b2b9 _dev_info -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9e2f9db __mdiobus_register -EXPORT_SYMBOL vmlinux 0xd9ee5108 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xd9fb0e7e bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xd9fc84c6 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xd9ffac56 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0xda031b86 scsi_scan_host -EXPORT_SYMBOL vmlinux 0xda291022 mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0xda2ed39c lro_flush_all -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda3e11fb bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xda534bf4 napi_get_frags -EXPORT_SYMBOL vmlinux 0xda623858 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0xda634f1a tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda90b41d pci_scan_slot -EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xdaa960d8 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac7827f netdev_features_change -EXPORT_SYMBOL vmlinux 0xdadfab44 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell -EXPORT_SYMBOL vmlinux 0xdaeb77be jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xdaf6702f ata_port_printk -EXPORT_SYMBOL vmlinux 0xdafaf7f0 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xdb0ba340 blk_end_request -EXPORT_SYMBOL vmlinux 0xdb1673db pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg -EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0xdb40fd85 devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0xdb55c9dc seq_printf -EXPORT_SYMBOL vmlinux 0xdb5b6335 key_validate -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb78435d netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xdb9245d9 netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0xdb937589 nvm_get_blk -EXPORT_SYMBOL vmlinux 0xdba07e95 __breadahead -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc14f03f iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xdc3a3188 bio_advance -EXPORT_SYMBOL vmlinux 0xdc3ba8d3 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xdc3cc747 dev_mc_init -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler -EXPORT_SYMBOL vmlinux 0xdc5f5da8 lockref_put_return -EXPORT_SYMBOL vmlinux 0xdc66bf49 devm_memremap_pages -EXPORT_SYMBOL vmlinux 0xdc9d7f09 tty_hangup -EXPORT_SYMBOL vmlinux 0xdcad3d45 bio_copy_data -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcb2c89c __dev_get_by_name -EXPORT_SYMBOL vmlinux 0xdccbd992 __genl_register_family -EXPORT_SYMBOL vmlinux 0xdcd6d6e1 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xdceaff99 dcache_readdir -EXPORT_SYMBOL vmlinux 0xdd03ae81 sock_wmalloc -EXPORT_SYMBOL vmlinux 0xdd1ed5a8 vme_register_driver -EXPORT_SYMBOL vmlinux 0xdd20ba46 sock_i_ino -EXPORT_SYMBOL vmlinux 0xdd25b31c __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0xdd2de2bb scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0xdd384c90 i8042_remove_filter -EXPORT_SYMBOL vmlinux 0xdd410110 set_trace_device -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd78806d dump_page -EXPORT_SYMBOL vmlinux 0xdd854af1 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0xdd8dd597 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xdd9236a8 netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0xdda9d1ac tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xddb0e681 fb_pan_display -EXPORT_SYMBOL vmlinux 0xddb4bf6e __find_get_block -EXPORT_SYMBOL vmlinux 0xddb583f6 gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0xddd0bb98 __nd_driver_register -EXPORT_SYMBOL vmlinux 0xdddbb4ed dev_notice -EXPORT_SYMBOL vmlinux 0xdddecad7 del_gendisk -EXPORT_SYMBOL vmlinux 0xdde86731 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xddf410a6 rtnl_notify -EXPORT_SYMBOL vmlinux 0xde06148f simple_link -EXPORT_SYMBOL vmlinux 0xde16dc16 tboot -EXPORT_SYMBOL vmlinux 0xde177ebe generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xde49c849 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xde4d76f7 eth_header -EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0xde639857 generic_removexattr -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde93bae6 led_set_brightness -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xdea3b6e4 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0xdee8d3a0 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices -EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdf1427e5 idr_remove -EXPORT_SYMBOL vmlinux 0xdf186990 __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf2ca744 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf5a0487 request_firmware -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf7372ff netdev_update_features -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf924c9d vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf9aaf16 generic_file_llseek -EXPORT_SYMBOL vmlinux 0xdfa752b8 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0xdfb49496 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0xdfb56d73 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xdfc145ad neigh_seq_next -EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init -EXPORT_SYMBOL vmlinux 0xdfcdad91 __nd_iostat_start -EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xe006a16f skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xe0378145 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xe04d1f2c set_posix_acl -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe0543cab i2c_verify_client -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe0661737 nd_btt_probe -EXPORT_SYMBOL vmlinux 0xe0661d19 do_splice_direct -EXPORT_SYMBOL vmlinux 0xe0667b4a blk_make_request -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe083147d bdi_destroy -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe084cacc mmc_start_bkops -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe09d4912 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xe09ec44c block_invalidatepage -EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b207ec dentry_path_raw -EXPORT_SYMBOL vmlinux 0xe0d1d149 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xe0de1929 inode_permission -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe128cbf8 __init_rwsem -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe14cd077 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xe15c0e37 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xe15c6e02 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0xe1623724 netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xe172f5bd tty_free_termios -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe18f3e5b ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0xe1e29cd9 vga_put -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0xe224519d __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xe23518da dquot_drop -EXPORT_SYMBOL vmlinux 0xe2375cf9 ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xe23ad46c security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xe266c08a simple_pin_fs -EXPORT_SYMBOL vmlinux 0xe26a6a8f blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0xe26ab71e param_get_bool -EXPORT_SYMBOL vmlinux 0xe26d10f7 set_pages_uc -EXPORT_SYMBOL vmlinux 0xe26f1fc0 max8998_write_reg -EXPORT_SYMBOL vmlinux 0xe28279ee md_write_end -EXPORT_SYMBOL vmlinux 0xe286eb09 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xe29b04e9 acpi_set_firmware_waking_vector64 -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2bf255d udp_set_csum -EXPORT_SYMBOL vmlinux 0xe2ce5285 dev_change_flags -EXPORT_SYMBOL vmlinux 0xe2d3ac2b phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe307c015 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0xe309aaea pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set -EXPORT_SYMBOL vmlinux 0xe31a9292 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0xe356f876 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xe3748de6 sk_alloc -EXPORT_SYMBOL vmlinux 0xe3a53f4c sort -EXPORT_SYMBOL vmlinux 0xe3b1a0ca register_cdrom -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3d60f34 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3e27ee1 kernel_accept -EXPORT_SYMBOL vmlinux 0xe3f8030d __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xe3fdabb6 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0xe427c4ec nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xe429c127 km_report -EXPORT_SYMBOL vmlinux 0xe42c3b99 ip_ct_attach -EXPORT_SYMBOL vmlinux 0xe4301b4d tcp_mtup_init -EXPORT_SYMBOL vmlinux 0xe441f358 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xe476d115 abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe4991d2d __sb_end_write -EXPORT_SYMBOL vmlinux 0xe4c00a02 flow_cache_fini -EXPORT_SYMBOL vmlinux 0xe4c8b44d load_nls -EXPORT_SYMBOL vmlinux 0xe4d3efda shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xe50dee31 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0xe513fcd2 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe -EXPORT_SYMBOL vmlinux 0xe550fbd4 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xe5840d50 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xe5865ef9 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe5980e91 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xe5a4318d ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xe5abc509 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xe5ad0231 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5cba1ca delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xe5e75553 tty_kref_put -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5ed9d58 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0xe607a15f amd_iommu_domain_direct_map -EXPORT_SYMBOL vmlinux 0xe6162877 down_killable -EXPORT_SYMBOL vmlinux 0xe6238b3d __register_nls -EXPORT_SYMBOL vmlinux 0xe627c1e7 bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xe6380ba4 framebuffer_release -EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs -EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xe65ef821 skb_queue_purge -EXPORT_SYMBOL vmlinux 0xe696b8ff generic_start_io_acct -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe69bdfc4 d_alloc -EXPORT_SYMBOL vmlinux 0xe6a93b01 key_revoke -EXPORT_SYMBOL vmlinux 0xe6b0a7d0 blk_register_region -EXPORT_SYMBOL vmlinux 0xe6b5df41 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xe6c13880 tty_unregister_device -EXPORT_SYMBOL vmlinux 0xe6dc006a fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe700e97b mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0xe70f910f param_ops_charp -EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic -EXPORT_SYMBOL vmlinux 0xe718f095 page_waitqueue -EXPORT_SYMBOL vmlinux 0xe7227148 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xe7364a15 compat_mc_setsockopt -EXPORT_SYMBOL vmlinux 0xe737bce4 nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xe740a5a4 secpath_dup -EXPORT_SYMBOL vmlinux 0xe7503643 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xe7537e3d udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xe7557d2d blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0xe763acec csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe79ea138 rtnl_unicast -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7a9a7c3 simple_getattr -EXPORT_SYMBOL vmlinux 0xe7c9693a mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe8004ae6 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xe803b7ab tty_hung_up_p -EXPORT_SYMBOL vmlinux 0xe8040ffb __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xe807b57a mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xe8145f50 down_write -EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe8237cf5 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xe8458abf unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xe849b1db request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0xe850a41a twl6040_power -EXPORT_SYMBOL vmlinux 0xe85ac1b6 nf_log_register -EXPORT_SYMBOL vmlinux 0xe8613775 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0xe8731918 x86_hyper_xen -EXPORT_SYMBOL vmlinux 0xe8763717 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss -EXPORT_SYMBOL vmlinux 0xe88b200b get_mm_exe_file -EXPORT_SYMBOL vmlinux 0xe88f17bd eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xe88f3aeb pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0xe89e9c3c clkdev_add -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8b0dffe mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0xe8b8654b skb_ensure_writable -EXPORT_SYMBOL vmlinux 0xe8b86b25 fb_class -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8c55a62 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xe8eb8f19 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 -EXPORT_SYMBOL vmlinux 0xe909d2a0 kernel_bind -EXPORT_SYMBOL vmlinux 0xe90d6b33 netif_device_attach -EXPORT_SYMBOL vmlinux 0xe912b984 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe91c121c pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xe92c07b2 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xe93af544 dqget -EXPORT_SYMBOL vmlinux 0xe9423d3f kmalloc_caches -EXPORT_SYMBOL vmlinux 0xe9492961 proto_register -EXPORT_SYMBOL vmlinux 0xe950d121 nf_log_packet -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0xe964fd21 pnp_device_attach -EXPORT_SYMBOL vmlinux 0xe96f0bb4 pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0xe97c1d7f xen_biovec_phys_mergeable -EXPORT_SYMBOL vmlinux 0xe9839895 override_creds -EXPORT_SYMBOL vmlinux 0xe9870ef8 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu -EXPORT_SYMBOL vmlinux 0xe9a15242 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0xe9acfac4 tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0xe9b149d3 tty_register_device -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea034f26 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea1173d3 nf_getsockopt -EXPORT_SYMBOL vmlinux 0xea20d371 sock_wfree -EXPORT_SYMBOL vmlinux 0xea241869 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xea2a7970 __sb_start_write -EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xea518c9c try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xea6fcdb6 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xea76c41b sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xea9db122 agp_unbind_memory -EXPORT_SYMBOL vmlinux 0xea9f4b5e truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xeaa17519 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0xeaa302ba inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0xeabfda70 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0xeac73847 irq_regs -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeaecd12c pskb_expand_head -EXPORT_SYMBOL vmlinux 0xeaf012ba agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0xeaf3a886 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xeb0100c3 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xeb1ac509 blk_get_request -EXPORT_SYMBOL vmlinux 0xeb1ffec7 ip_check_defrag -EXPORT_SYMBOL vmlinux 0xeb341c58 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb42ea2d skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb4c1ae2 bdi_register_owner -EXPORT_SYMBOL vmlinux 0xeb572a44 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xeb66f2df phy_print_status -EXPORT_SYMBOL vmlinux 0xeb9b201c proc_set_size -EXPORT_SYMBOL vmlinux 0xebb2f0d8 clear_inode -EXPORT_SYMBOL vmlinux 0xebbb0629 simple_setattr -EXPORT_SYMBOL vmlinux 0xebd1f7fe sock_rfree -EXPORT_SYMBOL vmlinux 0xebdcf18e ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xebdee80d vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0xebff5cf5 fence_signal_locked -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec56ead2 page_symlink -EXPORT_SYMBOL vmlinux 0xec67413e qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xec7c7439 mmc_flush_cache -EXPORT_SYMBOL vmlinux 0xec85888b neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xec95f26e param_set_byte -EXPORT_SYMBOL vmlinux 0xec9bcfd8 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xec9c0919 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy -EXPORT_SYMBOL vmlinux 0xecc99dfe __pci_enable_wake -EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node -EXPORT_SYMBOL vmlinux 0xed176397 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xed2499ff tcf_exts_change -EXPORT_SYMBOL vmlinux 0xed2aa625 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xedaff06b n_tty_compat_ioctl_helper -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedd135cc sock_no_getname -EXPORT_SYMBOL vmlinux 0xede34eca scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xedf88edb sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xee09c782 proc_set_user -EXPORT_SYMBOL vmlinux 0xee0b210d pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee716b1f gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xee72a438 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee83f8bd sock_no_listen -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee9575a7 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xeea1a693 genphy_suspend -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeb8f63e bio_copy_kern -EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0xeed2356c dev_mc_flush -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xeef427cb lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xeef61276 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0xef188a8e __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0xef2e3318 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0xef681dd3 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xef6cc587 napi_gro_receive -EXPORT_SYMBOL vmlinux 0xef79683f scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0xef7cbabb security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xef96702d pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override -EXPORT_SYMBOL vmlinux 0xefb46c1f jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0xefd10e94 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefda8d99 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status -EXPORT_SYMBOL vmlinux 0xefe374f8 input_set_abs_params -EXPORT_SYMBOL vmlinux 0xeff02636 phy_driver_register -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf001c50b wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xf00f67a9 load_nls_default -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf027f0e2 skb_clone -EXPORT_SYMBOL vmlinux 0xf031fa98 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0xf041a569 get_cached_acl -EXPORT_SYMBOL vmlinux 0xf0427260 inet_getname -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0xf06a4dde noop_llseek -EXPORT_SYMBOL vmlinux 0xf076b00e scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09209a6 dev_uc_sync -EXPORT_SYMBOL vmlinux 0xf099bad3 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xf0adef22 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xf0b6ef72 audit_log_task_info -EXPORT_SYMBOL vmlinux 0xf0c7cff0 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xf0d0ed0e commit_creds -EXPORT_SYMBOL vmlinux 0xf0d327bd param_ops_long -EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit -EXPORT_SYMBOL vmlinux 0xf116d4b5 copy_in_user -EXPORT_SYMBOL vmlinux 0xf11a0d6e arp_create -EXPORT_SYMBOL vmlinux 0xf11c8eeb vc_resize -EXPORT_SYMBOL vmlinux 0xf12f4d7b inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0xf14460e8 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf15bc23d scsi_remove_target -EXPORT_SYMBOL vmlinux 0xf167df61 tty_port_put -EXPORT_SYMBOL vmlinux 0xf17dfad7 blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0xf1951ef9 elevator_change -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19d0c4f inet_stream_ops -EXPORT_SYMBOL vmlinux 0xf1a258dd qdisc_list_del -EXPORT_SYMBOL vmlinux 0xf1a71cda new_inode -EXPORT_SYMBOL vmlinux 0xf1aaee0b __d_drop -EXPORT_SYMBOL vmlinux 0xf1d14b1d jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xf1da6512 dcache_dir_close -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xf22d560b xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xf2367874 netif_rx_ni -EXPORT_SYMBOL vmlinux 0xf23688fa vga_switcheroo_unregister_client -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24960ab arch_dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xf25148b6 tcp_release_cb -EXPORT_SYMBOL vmlinux 0xf263b82d kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xf2738e81 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xf27513f3 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0xf27ab4c2 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr -EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0xf2a37091 i2c_clients_command -EXPORT_SYMBOL vmlinux 0xf2b6648b __module_get -EXPORT_SYMBOL vmlinux 0xf2bf2e06 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2c8bdc6 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xf2f3e3ee set_pages_nx -EXPORT_SYMBOL vmlinux 0xf2fd4fb4 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf320aa11 agp_backend_release -EXPORT_SYMBOL vmlinux 0xf32b7f6d path_get -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf347c8ce twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf3566048 truncate_setsize -EXPORT_SYMBOL vmlinux 0xf3568093 __blk_end_request_all -EXPORT_SYMBOL vmlinux 0xf36ffd78 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf38e3069 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xf3986b06 acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0xf3b3dabd ilookup -EXPORT_SYMBOL vmlinux 0xf3c54dbd generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf40efe39 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0xf42315e2 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf4442a9e mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0xf44c6b7b sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xf4541107 kern_path_create -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf488f77d locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4caec85 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0xf4d2a6fb jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f2f8a2 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xf4fd2a11 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xf5037925 nvm_end_io -EXPORT_SYMBOL vmlinux 0xf51858f8 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xf52c4ec9 padata_stop -EXPORT_SYMBOL vmlinux 0xf52e365a dquot_disable -EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf553f64b devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xf555974b __skb_tx_hash -EXPORT_SYMBOL vmlinux 0xf58dcf1b pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set -EXPORT_SYMBOL vmlinux 0xf5ad560b mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler -EXPORT_SYMBOL vmlinux 0xf5ba8c05 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5c691c5 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0xf5e405e3 devm_gpio_request -EXPORT_SYMBOL vmlinux 0xf5e9393f blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0xf5eb3067 notify_change -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf5f1de8d __ip_select_ident -EXPORT_SYMBOL vmlinux 0xf6221807 inet_sendpage -EXPORT_SYMBOL vmlinux 0xf636a71e generic_show_options -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf63bed89 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0xf66fd307 genphy_resume -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf67f1be3 build_skb -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf684632b devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf693a145 irq_stat -EXPORT_SYMBOL vmlinux 0xf699984e kobject_put -EXPORT_SYMBOL vmlinux 0xf69d0e23 pci_enable_msix -EXPORT_SYMBOL vmlinux 0xf6aea49b ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6ef98dd pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf709f88c inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0xf7114058 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf75d7fc1 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0xf764868a udplite_table -EXPORT_SYMBOL vmlinux 0xf76f161e dst_discard_out -EXPORT_SYMBOL vmlinux 0xf782bd8a i2c_master_send -EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0xf79fd34e register_shrinker -EXPORT_SYMBOL vmlinux 0xf7a8f74f tcp_child_process -EXPORT_SYMBOL vmlinux 0xf7ae86cb nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0xf7bf4cf5 security_path_link -EXPORT_SYMBOL vmlinux 0xf7c1344a neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0xf7d18af5 input_inject_event -EXPORT_SYMBOL vmlinux 0xf7e62301 alloc_fcdev -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf82543b1 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf8453286 __brelse -EXPORT_SYMBOL vmlinux 0xf84ab2ef pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xf854a64b ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0xf8580ec9 cdrom_release -EXPORT_SYMBOL vmlinux 0xf8584adf sock_register -EXPORT_SYMBOL vmlinux 0xf858a0f8 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0xf85fc6eb csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xf86f496a max8998_bulk_read -EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header -EXPORT_SYMBOL vmlinux 0xf898389b dev_printk -EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf8f5ce47 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xf91f58df jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xf936032a tcf_hash_create -EXPORT_SYMBOL vmlinux 0xf9697f57 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xf97b4e14 input_event -EXPORT_SYMBOL vmlinux 0xf987ba41 open_exec -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9a70061 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xf9b901b2 input_flush_device -EXPORT_SYMBOL vmlinux 0xf9c00a54 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xfa0e3503 filp_close -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa8761c6 check_disk_change -EXPORT_SYMBOL vmlinux 0xfa91fab4 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xfa9f8e0b nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xfab14f38 padata_start -EXPORT_SYMBOL vmlinux 0xfac1af90 simple_open -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfada0b2c padata_alloc_possible -EXPORT_SYMBOL vmlinux 0xfae3b643 genl_unregister_family -EXPORT_SYMBOL vmlinux 0xfae5ef39 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent -EXPORT_SYMBOL vmlinux 0xfb13513e phy_init_hw -EXPORT_SYMBOL vmlinux 0xfb221977 thaw_super -EXPORT_SYMBOL vmlinux 0xfb28de91 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xfb38fab9 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xfb414301 forget_cached_acl -EXPORT_SYMBOL vmlinux 0xfb578fc5 memset -EXPORT_SYMBOL vmlinux 0xfb691d2f gen_pool_free -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xfb871920 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xfb93def0 filemap_flush -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbd1c28a device_get_mac_address -EXPORT_SYMBOL vmlinux 0xfbe7a087 reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc1d95c0 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0xfc3559a7 phy_suspend -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3c56ff vga_switcheroo_set_dynamic_switch -EXPORT_SYMBOL vmlinux 0xfc612dc8 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0xfc770bc3 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps -EXPORT_SYMBOL vmlinux 0xfc9de249 cdrom_open -EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0xfcb26fa4 genl_notify -EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xfcc0a006 sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfccc1bb0 redraw_screen -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfcfb3fc8 irq_set_chip -EXPORT_SYMBOL vmlinux 0xfd089d4a scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xfd0911d2 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xfd304913 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xfd3430f3 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xfd5cd3ae module_put -EXPORT_SYMBOL vmlinux 0xfd5e6866 pv_mmu_ops -EXPORT_SYMBOL vmlinux 0xfd659a48 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xfd71a04b generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xfd760ff3 vga_switcheroo_init_domain_pm_ops -EXPORT_SYMBOL vmlinux 0xfd76410e amd_iommu_complete_ppr -EXPORT_SYMBOL vmlinux 0xfd79969a netlink_net_capable -EXPORT_SYMBOL vmlinux 0xfd79f403 set_pages_array_uc -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfdd8fa55 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xfde4bdb5 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfdfd6c90 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe046494 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0xfe13c522 acpi_install_gpe_raw_handler -EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids -EXPORT_SYMBOL vmlinux 0xfe47ae29 kthread_stop -EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe75db69 fsnotify_put_group -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe892e14 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfeb38e4f seq_write -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next -EXPORT_SYMBOL vmlinux 0xff03ead1 scsi_device_resume -EXPORT_SYMBOL vmlinux 0xff0a94f0 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0xff0b9dd9 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0xff0efb52 d_rehash -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff3f1fd8 __kfree_skb -EXPORT_SYMBOL vmlinux 0xff4fd6a3 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xff5679b7 phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0xff5c52fe tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xff900534 pci_release_region -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff946824 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xff9bde22 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffa355d1 __register_nmi_handler -EXPORT_SYMBOL vmlinux 0xffa4792f acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0xffb33be8 tcp_connect -EXPORT_SYMBOL vmlinux 0xffb8e235 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0xffca8f82 dma_async_device_register -EXPORT_SYMBOL vmlinux 0xffcf1925 lock_sock_fast -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xfff08c72 set_groups -EXPORT_SYMBOL vmlinux 0xfffd7159 __dynamic_netdev_dbg -EXPORT_SYMBOL_GPL arch/x86/crypto/aes-x86_64 0x7060bf0a crypto_aes_encrypt_x86 -EXPORT_SYMBOL_GPL arch/x86/crypto/aes-x86_64 0xe409b491 crypto_aes_decrypt_x86 -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x13a65ecf camellia_ecb_enc_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x17bf48dc camellia_xts_dec_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x1a08ded1 camellia_xts_enc -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x47129015 camellia_xts_enc_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x7d54edc2 camellia_cbc_dec_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x7e87ef55 camellia_ecb_dec_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x8f185793 camellia_xts_dec -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x9e8086dc camellia_ctr_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x1103ba8b lrw_camellia_exit_tfm -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x16061d06 __camellia_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x1636abdf __camellia_enc_blk -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x1da0e256 camellia_crypt_ctr -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x31bbe42b camellia_crypt_ctr_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x50dc55b6 __camellia_enc_blk_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x7d06254d xts_camellia_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x930f687f camellia_decrypt_cbc_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xa41a5ad3 camellia_dec_blk -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xf4521fda camellia_dec_blk_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xfae2d491 lrw_camellia_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x02e7111e glue_ecb_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x54ecb5c6 glue_cbc_decrypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8f02ac4d glue_xts_crypt_128bit_one -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xab95a669 glue_ctr_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xdefd8711 glue_cbc_encrypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xf7b68566 glue_xts_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x016a957f serpent_xts_enc_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x0c5a8af6 serpent_xts_dec_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x0ff3c26d serpent_xts_dec -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x4e9967df lrw_serpent_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x606a8162 serpent_cbc_dec_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x79ff0b7a serpent_ecb_dec_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9ae34b2f serpent_xts_enc -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9e018632 __serpent_crypt_ctr -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9f99663c serpent_ctr_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xa2cb694e xts_serpent_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xa6d1b368 lrw_serpent_exit_tfm -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xa84ea33d serpent_ecb_enc_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x19dc7881 twofish_dec_blk -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x5e752773 twofish_enc_blk -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x1e817cdb xts_twofish_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x1fd77fb1 twofish_dec_blk_3way -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x61694b97 twofish_dec_blk_cbc_3way -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x814db39b lrw_twofish_exit_tfm -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x8d75ab44 twofish_enc_blk_ctr -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x8e856922 twofish_enc_blk_ctr_3way -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xf2d3724a lrw_twofish_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xf2e80e9c __twofish_enc_blk_3way -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01368082 kvm_get_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01ccd216 __tracepoint_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0252724f kvm_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x070f9719 __tracepoint_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07194194 kvm_complete_insn_gp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x075e6d53 kvm_set_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07898eea kvm_vcpu_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x080be3ad __tracepoint_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0918dcd0 kvm_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09b10f7e kvm_mmu_clear_dirty_pt_masked -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09c14103 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a0e5d93 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b95e3b0 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ca41601 load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d4adf8b __tracepoint_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d93718d kvm_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10d193d3 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x113f7c0b kvm_emulate_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14eea16e gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17c114b8 kvm_write_guest_virt_system -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17ffc2fc kvm_mmu_slot_largepage_remove_write_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x182f4787 kvm_read_l1_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b0e7a4e kvm_vcpu_is_reset_bsp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d0898fe kvm_get_dirty_log_protect -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f131765 kvm_apic_write_nodecode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20d847a9 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20e2b089 gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21032417 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21564cf4 __tracepoint_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25951981 kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25e4c0bc kvm_clear_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27036c3b kvm_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x298edaf8 kvm_mmu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29ff5919 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bfeee05 kvm_arch_has_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c78b8d4 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2cead2b8 x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2fc3df69 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3336128d kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x377f31f9 kvm_fast_pio_out -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3786156b kvm_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bf47c8d kvm_arch_unregister_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x402daeec kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40e3d637 kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x411797bd kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44046cb1 __tracepoint_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44b30313 kvm_mmu_slot_set_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45ef89ee kvm_queue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47bbbe71 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x490616e1 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ab4d4be kvm_inject_realmode_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ae26399 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55a455e6 kvm_is_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55bc1046 kvm_arch_start_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56150da7 kvm_mmu_unprotect_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5861fd6e kvm_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59b665e0 kvm_vcpu_reload_apic_access_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c396f30 kvm_lapic_set_eoi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62c04c2f reprogram_fixed_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64c67a88 kvm_x86_ops -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6581726a kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66e2dbb5 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a4a6c46 kvm_get_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ac02d0d kvm_require_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e14a300 kvm_after_handle_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f728455 kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f75e3ea __tracepoint_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70ee78bf kvm_set_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x713fdd4a reprogram_gp_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73ae496a __tracepoint_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75fe24b7 kvm_mtrr_valid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x768ccc82 reset_shadow_zero_bits_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79fc5974 kvm_mmu_sync_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e2e5ec5 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff1ca84 __tracepoint_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8045ddde kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x821994d4 kvm_queue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8731e4c8 kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x876f7e54 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8852ccb9 vcpu_put -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x889c1fec kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88ab6ea6 kvm_cpu_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88d8f424 kvm_get_dirty_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89287932 __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x897bee03 kvm_task_switch -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cce4dc4 kvm_arch_has_assigned_device -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d4dffb5 kvm_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90b67724 gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91f62b50 kvm_put_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x921dd3a7 kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x943373d0 kvm_arch_end_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x968960a2 kvm_init_shadow_ept_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9732361a handle_mmio_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x97bfb74c kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a336ff4 kvm_find_cpuid_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c36b392 kvm_arch_register_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d338d5d kvm_mmu_unprotect_page_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9eb192f9 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0ec3a0a gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1502f5d kvm_emulate_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa268897d kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3a8653b kvm_valid_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa47726ac mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4c8c4bc kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4d57013 __tracepoint_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaace0a77 kvm_write_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xabe9970a kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf7f97c gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf24d592 kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xafc10de1 kvm_get_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaffcd092 kvm_requeue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1cc6be5 __tracepoint_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb326aecf kvm_read_guest_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4b3808a kvm_set_msi_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1adc2cb __tracepoint_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1f5c5fb gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc32a4f45 kvm_get_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4159624 kvm_before_handle_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc56d75ce __kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc599bc18 kvm_max_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcaa24916 vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb2d6475 kvm_mmu_invlpg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc4b5eb1 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xceeaf165 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf0b30d5 __tracepoint_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf3afcfc kvm_mmu_slot_leaf_clear_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcfe5f5b1 kvm_get_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1a42ffd kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd32f9c33 kvm_set_xcr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd390c681 kvm_require_cpl -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd64a1c70 kvm_lmsw -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6772354 kvm_get_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd677f5df kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6a2c046 reprogram_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd716ab69 kvm_set_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd92b6fe7 kvm_set_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd937d3b0 kvm_intr_is_single_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd93bbd46 gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdac39c5b kvm_set_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdbc1f415 kvm_inject_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde95ff80 kvm_mmu_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdea1ad23 kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdedcb6e6 kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdef02c21 kvm_clear_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf806478 kvm_rdpmc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0611544 x86_emulate_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0bc2fe7 kvm_mmu_unload -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2ad7c3d kvm_mtrr_get_guest_memory_type -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe36aa087 kvm_inject_pending_timer_irqs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4e645fd kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe50167b7 kvm_scale_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7a402f7 kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe84b6784 kvm_inject_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9e9ac9e cpuid_query_maxphyaddr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeae3e75f kvm_read_guest_page_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf143c70b kvm_set_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2312a76 __tracepoint_kvm_ple_window -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2341ab7 kvm_vcpu_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf41e94f5 __tracepoint_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf74da41b __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf752dfdc kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8d4b2e1 gfn_to_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8f4642c __tracepoint_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbd95c91 __tracepoint_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd9ff028 kvm_init_shadow_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe509e09 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x1531c44d ablk_decrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x8fe5845c ablk_exit -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x95f86c6a ablk_init_common -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xab388efe ablk_set_key -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xb1a98137 ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xbb1dba53 __ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xe68bbfac ablk_init -EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0x15a3e80b af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x3ee5dabb af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x65f4f50f af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x69e6c659 af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0x72bd7c2f af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0x7b5447ca af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x8d483be8 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x930d10c0 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x98cb04c7 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xf973e9d5 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xa6e28a06 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x00cd42d7 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xe5cd39a5 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x184fb532 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x8a15bdb1 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x06a4dba0 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb48dde1c async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbfd3e136 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xdf788739 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3f6faf8f async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xc30d0177 async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x81231afa blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xc38dc508 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x09b71ee2 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x7f2446ad crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xe37f24b8 crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x10197b64 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x2413e6f9 cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x4c6e4e51 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x5663c5c6 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x62b0b7d1 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x6b3faf3d cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x82329665 cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xa4107caf cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xb8b5a763 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xfe269a21 cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/lrw 0xd8599a79 lrw_crypt -EXPORT_SYMBOL_GPL crypto/mcryptd 0x215478cd mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0x259100e2 shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0x3f92e71f mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x750aaa5a mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x7b6d7b67 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0x7fbd82d5 shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0x7fe0dcde mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x98d71401 shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xa64e400e crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xa6f42c8e crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xbf5dc587 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xede66e47 crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd94efed3 serpent_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xd0c8deb0 twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0xa9b9fd28 xts_crypt -EXPORT_SYMBOL_GPL drivers/acpi/nfit 0x433d8257 acpi_nfit_attribute_groups -EXPORT_SYMBOL_GPL drivers/acpi/nfit 0xd5a27822 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x119f16b9 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x16b9f071 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x386402c0 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x39b37cc7 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x46a027be ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x49c282e9 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4a8c1a97 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5457babd ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5bbdd06e ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5ee37598 ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6b7c2c29 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6ef0e223 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x89f3b00b ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ceb7ad0 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x94b261ba ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9c64e0ef ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa16b6a41 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xadf1724b ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb090b2d5 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb1631e77 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc2c0f4a9 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe9053721 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf41a971a ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x49c3f841 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4a903185 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x686e6c45 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6e6205d1 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x704b07b6 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x75c42485 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x88812f60 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9f6ee446 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa5b1bc6b ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc0e8d398 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc71530de ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe4696459 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf5ea9469 ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xb1cc470c __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x1d430069 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4ab31875 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcd340e7b __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xfa7caa78 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1c10d131 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1ed679b8 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x26a56f3f bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x351b27af bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3a4c8dd3 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x405eea90 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4bfc48d3 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x55acbc89 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x594376dc bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5a527e88 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x765e6ba6 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x870f919c bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8d9daed0 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x917fb077 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x98c35241 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9db96f53 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa43a54b7 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xab4c86e0 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaca30f40 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbfd29f95 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc8cf3ae0 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd4b2e686 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe1c52f5a bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfe9acefd bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6d6e42e4 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8087e170 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x82b2e1c6 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8f4a771d btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xab1b1090 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf627bed1 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0ef6ca6b btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x13870d76 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1c892306 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2ccfc7d8 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3b6c38e1 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6bb4e363 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x72f210ce btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x85265f4c btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe692f0ef btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xecae6b55 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf9cfb6a5 btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x03e8a286 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x11840a41 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x324a8941 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3ff0b8bf btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8f1d7bf5 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x91ea1bfb btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaa3df1bb btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xab1e707f btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xadbe2076 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc1325346 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd2429e34 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x1565c405 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x3a992828 qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x72579621 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x8dd1b7fa h4_recv_buf -EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x1b1f2bda speedstep_get_freqs -EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x2b67f096 speedstep_get_frequency -EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0xd7ab2c0c speedstep_detect_processor -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x294178e4 ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x14e6eadc adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1c962dfd adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2239abe2 adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x22cfe1ca adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x27bf06e7 adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2830110a adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x29196966 adf_disable_vf2pf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x294e254c adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2dfeaa9f adf_update_ring_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x38e47b4c adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4479c55d adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x44cfe40f adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4a5d2541 adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4c12ea06 adf_response_handler -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x543e66de adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x558bc431 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5621af82 adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5a75130f adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5de1a9e5 adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x60744501 adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x613e0851 adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x652a2e92 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x67ca03d0 adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6b44cb8b adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6f38d59b adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x767baec4 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x77336637 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7c9177e0 adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8a14463f adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x96a53f2b adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9707e8e4 adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9fb6279c adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa95b5aad adf_service_register -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xae8381e2 adf_iov_putmsg -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbb9001ca adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc9e560b4 adf_service_unregister -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd10eb6f1 adf_enable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0x0f16ec37 alloc_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x10448b28 dca_add_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0x31a2c8df dca_get_tag -EXPORT_SYMBOL_GPL drivers/dca/dca 0x3a9fa802 dca3_get_tag -EXPORT_SYMBOL_GPL drivers/dca/dca 0x8e3ae926 dca_remove_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0x915068d5 unregister_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0xb242c074 free_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0xd393edd1 register_dca_provider -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3ddc7009 dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x45a0c34f dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4802fb21 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9cfbd4a6 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf6d1f185 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x5d0f3071 hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x87788f6d hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xcaab03f0 hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x64f044fe vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x8082dcf5 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xc10912a0 vchan_find_desc -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xfaf670b1 vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0x4e6e6ad2 amd64_get_dram_hole_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x03e51f81 edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0b24f655 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x146f1185 edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x20095977 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x21b15227 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x34dfbe03 edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x376d704d edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x383eaa72 edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3a6a3b55 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x40458623 edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x480b4bc3 edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x50947658 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5720aa69 find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e880013 edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x78f446ee edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa5e4d7ab edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa8503b08 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xaafd4828 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc110010b edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xda09c121 edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdfdec048 edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xeff76b9b edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf582d821 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x81d75507 amd_register_ecc_decoder -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb30b7e56 amd_decode_mce -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xd3cc2686 amd_unregister_ecc_decoder -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x39440f35 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x51d48996 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7a8b6a28 fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd599ec86 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xed2f777f of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfcaaf777 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x381708d6 bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xaa95323c bgpio_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x0ae0ce0b __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x819d4b40 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2ead8425 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5cb3f6a4 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf79e54fb drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x13f77ae6 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x17639a15 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6f709c4f ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0e181a2e hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x17c3dbf0 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1b5a7785 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x21dec644 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c1a9eea hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4cf0ede7 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x52221c09 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5ab9f93c hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5c2b24c4 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5de15f69 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x76eb807e hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x776478d5 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x77b13a2e hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x835164f9 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x86f07d14 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x87e80a90 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x888f2730 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x97a8784b hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x993d9cc5 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa7c810e8 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa8f923e8 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbf8b2da0 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0905012 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc6ebaf84 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcc96e50e hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xce677ae2 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcfad7da2 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd94775a4 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdacd5fa1 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf369771c hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf395585b hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf3afd4db hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf4597dcf hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf8a3d583 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf9d08f9f hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb8e7ac0 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xdb7c1d8d roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1024114f roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5afa6ad4 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9f380f3c roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xad4b0671 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd6d9ac70 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf9c08913 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0e5806ff sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2e98a9ee sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x62539c60 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x71d84155 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9ea6e63b sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa47c1660 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb3c2c9c9 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc6715193 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe3b0358d sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x13ded7ab hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x071c1701 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x27f8629c hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2c2f7385 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3048ecf4 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x397a48e7 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3a433757 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x405e4003 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x70e6cdc9 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7a535874 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xae451d91 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb929ac74 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc1cfb6cf hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcb020abb hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcbbd6afb hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdca23933 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xedfd03af hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfcfd6cc3 hsi_async -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x10b030f4 vmbus_sendpacket_pagebuffer_ctl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a25cd8a hv_do_hypercall -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1b739da8 vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25a0a3d2 vmbus_cpu_number_to_vp_number -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2ac09dad vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2e6f5b26 vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x358fafa5 vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3d600d6a vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x41aeb8af vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x48c6806f vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4fd3d91e vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x59a9e7d3 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7e431dcd vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7f8c84e6 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86ff5fa6 hyperv_cs -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x888e22a3 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9787aaba vmbus_get_outgoing_channel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xca0eec89 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcb43b95c vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xceace942 vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf08f4259 vmbus_sendpacket_multipagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf188f31c __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfd628ff7 vmbus_open -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x5b5c0a7a adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xa4c07067 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc153867b adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x01843121 pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0fc36b06 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x15512893 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x23067098 pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2db4b722 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4437eeff pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x79ef0fd4 pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x97e95718 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xadd9019e pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xba9c487d pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbae6dc53 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbdc42f81 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe03b03e4 pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe35bfc2b pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf5d7fb8b pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2954d109 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x53bc2697 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb3ddaeef intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xeb58e3b5 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xeb6ad148 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xeebb131c intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf77235a4 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x09fab355 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1a83fb9a stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8b0d378f stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa6117474 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb06913af stm_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x0eea0bdf i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x71543e3b i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x9fd873c9 i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xa32516e6 i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xbe61c2e8 i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x75b89f57 nforce2_smbus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x255e978d i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xac37f6ec i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x57277315 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd8747c40 i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x277ec839 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x32652732 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xb63f3b71 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x086b6d7c ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x135116f7 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2f151645 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x30b45985 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x365f167f ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3f307741 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x70898473 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xaf6c5ea8 ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe57bf9a4 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7687ff4e iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x87e1edcb iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x3b7927be ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xd63906f2 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x22eafa16 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x526c68b7 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x54693ac3 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x25faef6a adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x29bb8282 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x53695dc2 adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x63531026 adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6cc5efab adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7a4ad6ab adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x86e3320a adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb8dbb80b adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc281747a adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd58eab26 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd8fb76e6 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf387b1ba adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x02b39f3f iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x058a8418 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1bdd1a94 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1c405ac5 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ce831fd devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2af9a8fc iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x304b1a23 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e180377 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x55084d88 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x560e6461 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f18f4c0 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x67c6cc2a iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6bb08242 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6db82791 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7663c99a devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79ad055a devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x915bada2 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9e360c2b iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3f60aa3 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xad77eba1 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb08035dc iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbadc66cc devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcbb926ca iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcc0a1cdf iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcde5becc iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd79f0030 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xda405728 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe60de483 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xed7e67d1 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeea7930b iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf4e72055 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x8a8616f2 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x89d59b9c adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x0a82c6ef cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x37db9279 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x7c94c09a cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x3f5b5c61 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x6ecfacb6 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x84f9f214 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x6fcfeaab cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x8f4fbfa5 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x9feb3e9a tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa12d89fb tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc0fc6ed3 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc3e4b1d4 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0fc0c8d1 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1d788760 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x20a3b0eb wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x27168a36 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x327d4635 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x614ee2bb wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa7852aa4 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcc6c9aa4 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xce206ca3 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd01750dd wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd1d287fe wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd56ccbf2 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x15906f39 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1919927b ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x26ff6602 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x49badea6 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4bc16596 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9a24c841 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb35a0edd ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbaf9305f ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdc780053 ipack_device_del -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0f8398cc gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1f4909c5 gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1f913f08 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x215cf618 gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5aeae6b6 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5ec2705e gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6cf0ffb0 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x781628c8 gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7d5f2645 gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x830962e0 gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x88c5d5ac gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x979b613a gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa44415c4 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd4e2bd71 gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd992c6ca gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe6de03ca gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf7c62033 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1c6e1e91 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x58195f53 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7e8d11ab led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x89178732 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbc83b941 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd175a817 led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x072f365a lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x226c13ce lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3706702c lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x375c0adc lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3d2c62fb lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3f067edf lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x90bc1bbc lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd44d858b lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd45819ed lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd50580e5 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd8793e1d lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0d086c60 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x172a628d mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x29322c3d mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x315f20cd mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4c3207b7 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x544819bc mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7c14a71b mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8b32e4f6 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xab3aef3a mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb94c53ad mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc00ee207 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcca44321 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd61adc2b mcb_get_irq -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x153bcb7e dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1fe441c6 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x21482bbf dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x22916b0a dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4b4f35fc dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5cce9f94 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8c4d4e17 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x914f914f dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf8a0b418 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2b92d7ef dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3b9aa55a dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x514430d9 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7de3068a dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9496495e dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9bd0a595 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbd1f346f dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd2390d19 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xd681e4c8 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xee97c44a dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x1bccffb8 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x536b6b67 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x67e5e8fb dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf7fa5bdd dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf9c23ed4 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfa1aee00 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x25046c04 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x827a42f4 dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9f624559 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x25f73f8b saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x41c72fae saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x57d61d86 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x598abe9f saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9152138e saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x982ff6e0 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xabea4c0b saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc48be3b8 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfbfc95c0 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xff745a40 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x05b399eb saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2dc053da saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x4664812b saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x53bf82c0 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x96d05621 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcefca34d saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xff43c057 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x14db78b8 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x231584e2 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5b081f03 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63d4a4ce smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x78a1858b smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7b5c72b8 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x928271c4 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x92bf8f59 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9f4d731c smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa4e43a52 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xab97afc5 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb2d51577 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb706dc7d smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb7308ee4 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xce23e4f7 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdabf1fe6 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfc15dadf smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x0519d448 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x3fd769c1 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xd7541ef0 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x265572cc media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x39fd88f9 media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0x4138e7fb media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0x515b4b9c __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0x53151b34 media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0x5f452477 media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0x77fae103 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0x7d1778d4 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0x809b0871 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0xb224121f media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0xb2ab535d media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0xc0f99305 media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0xc7fb73ab media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0xd0e32139 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xe540fd5b media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0xe5e26c51 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0xe7a1b41f media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xfa3e9354 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x019569df cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1aef409d mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x22562497 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x25284b86 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2b29d630 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x305ce8c3 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3c33d370 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x45488cee mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4a95f336 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x57a80b83 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5b5de3dd mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x613ea245 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x82813e1d mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa2432474 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb7bbfdbe mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb9ba6008 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc9ce55e5 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcdf4169e mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe3b70676 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe6f3cc95 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0512a806 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x195cf4e1 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x28caab09 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x312ecd75 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x355f9c70 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x35e87361 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x476209f4 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4e4f59ef saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x57681169 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5fa115b4 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x622ecde3 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6cf89043 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x81b669ee saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x81b71bdf saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x97cd99b1 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa5064a32 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xda4aae38 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xeb54a1f7 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xeb592031 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x09d9a135 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x31611141 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x992a5003 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbf8f2b73 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xddfa2e7a ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe5e576a8 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf37d36d1 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x4127712b radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xca5f3c38 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0af59cc0 rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x207409ef rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2bdfc3e7 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x37c163e3 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x45e0237b ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x662f5e7b rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x669e7f1e rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x70faeafd rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x723ea718 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9d9127cf rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa04bfa80 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb99c1e67 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc28901b1 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc53a4cd6 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcae23061 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd1918847 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd8714aef ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xee886d61 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf0981aec rc_repeat -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x2340a0dc mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xb94a70df microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x8e92bc77 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xd1ac5c3d r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x43657785 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x5ae247d5 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x0f757f95 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x3972d0a5 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xdb26a358 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x47b4e96f tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x9ccb39b4 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x743876b5 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xae3a4331 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xcc7a1ddd simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0634f0c2 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2aae3836 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2dc49cdd cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3dff6211 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5d49f37a cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x627ecdd7 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x68020102 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6acc75d6 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa0261825 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa237fb70 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb28c3336 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb8d34900 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbecfdc20 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe65689a2 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe80246ca cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xea26bf42 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xeb3741c5 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xec5a31f0 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf500a7b3 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfe2e51a2 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x61e3c87e mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x825ef8bf mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x071cc100 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0a07f730 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1d387f95 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x46c8bda1 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x64943149 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x781fd7a6 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7a152c7f em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7abf3554 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa03fe270 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb7c643b6 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcadcc100 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcbba7d9f em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd0b9778a em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd5c8509f em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdc8063c8 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe71210ef em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe8033f1b em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xffa3343d em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x0e5d4fc6 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x4a5d209b tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x4e0cc0e9 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x76b60d0d tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x17ec5a9c v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x5de48476 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x96b72b6a v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x9b893e87 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa65a1340 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xba87d9bb v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x27e52d2f v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x6c568fb8 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x33bf7118 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x381b9116 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4aff0efb v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4f53d263 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x53e0c583 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x57c055aa v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x597016bd v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x66df1fb3 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6b177d2e v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x82407e04 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b4febba v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa2b53b1d v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xab3add21 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xabe68df1 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xafe9fd71 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb0b7800f v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb166e4c9 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc0481405 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc17589d9 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc79ffd16 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc7ad11e2 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcb7f6df4 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xea43b759 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf19b665c v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf4af2591 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf64ac453 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf9cc4183 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0d28e2c6 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0f2ed804 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x16f5eda4 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1fd8ca62 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x31e5f6c1 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3470624a videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4222648f videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x46457378 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4e9bf24e videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5b434aa7 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5bee9d34 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x67ad1918 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7b1a8bb4 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x83019ceb videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8e9d7d14 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa00e1986 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbf5d0e0a videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd1d0aa2e videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd20b637a videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd47f992c videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd5642cdc videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd95813b0 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xedbfa703 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf735dd92 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x9bb4ed0c videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xbcc1562e videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xc6fc1a60 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xeff1f573 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x0ecbca45 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x1cc6946c videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x70e01b33 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x20f3c66f vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x21a4133e vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2ad175f2 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2dc3d18a vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x573e82d7 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6b6b7943 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6f1c325d vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7596e84a vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8371a000 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x89c4da95 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x946bce4e vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa3a80f3f vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xae96e9aa vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd53eddaf vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe31730e2 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xebbb3816 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf0284179 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf9661c36 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x9804c37a vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xd558694a vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xc5e394bb vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xf64a2802 vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0xf515769f vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0031e0f6 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x09161ce3 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0b72330a vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x100fc837 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1920876b vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x348d8556 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x480de3c9 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x484b88e5 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4b353176 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x55efebd1 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5af2a839 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6d178e44 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x720dc772 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x728bd347 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x86a07d71 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8889697d vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9a5d9e04 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa3c0719c vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa63f8f45 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa8a57028 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb19da169 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbe1babf8 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc5de7807 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc76a8196 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcf3fa127 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe2cfce4f vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe2fe8c44 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe9f603fe vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xeecdda3b vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf1c62ff8 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf269558a vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfe5a5f40 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x25abf3ad vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x02027cec v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0640207b v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c7b5fdd v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x27454ee3 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32064690 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x35238679 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x37c3dede v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e8ce6c0 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4f60c5c2 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4fdbdd2a v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a59de95 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5e70676f v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x776916f4 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b49d18b v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c8149f9 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e63f95b v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b5cbc10 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b81167e v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2b4a9b1 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4bcad3c v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb0446e08 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb1b34ceb v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb4b92cfe v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe722a5b v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3265170 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe56bb45d v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeac0e176 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf453c7e1 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb1e2ed0 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2535daec pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x492199f1 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x8946a398 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5bef6d84 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8f509760 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x913ab3ec da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xaa67526d da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb2a98414 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb6e5117a da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc25f288b da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x0bcf8aaa intel_lpss_resume -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x2380b528 intel_lpss_probe -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x2d35d506 intel_lpss_prepare -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x3c44de18 intel_lpss_remove -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x59171cb6 intel_lpss_suspend -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0140d4a3 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x09a823da kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x18cfd08c kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1a1a0b38 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1c59d385 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x83c9157e kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbda005b8 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd79fb9f2 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x70245a83 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc48032f6 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc51a9464 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x10e319fc lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x480c7bb2 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x63ccae34 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x66c0a539 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7d26eca0 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9fa79b93 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xef42f3d9 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x6e0514ad lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x734b7ea9 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x951b9eec lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x23f7d8fb mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x634d93db mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x714266b3 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8420f3df mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9c45b471 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd2aeabf8 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0b7ab166 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x118e0100 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1c6e26be pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3b1c2176 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3d93226d pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x605c5818 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa4560676 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbb70fd1d pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbd52bbce pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc930d3c2 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xca9f8c41 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x39766a43 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x95d50d76 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2e94685b pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7f3cdc8e pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x823611a7 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xaabcfc39 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd6803bf0 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0d6e7d64 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2793b0cb rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x299e106e rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2f848951 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3860225d rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3f90fa97 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5f3a1f62 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6809d664 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7319c4f0 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x794baf6c rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8fe4735c rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9ad99fbd rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9e8b8d56 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xaa603fd8 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc5f764a7 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc7025f8d rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xca543301 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcd718407 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd2a62512 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdb9701f0 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdba150c4 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfb9e53ae rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfcd81c3f rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xff73fab1 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x6321aef2 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x6b196f95 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7098dcf1 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7b92df5b rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7ee6769c rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x895b5789 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9c298ec5 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa3cc5308 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb35d4c2d rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb64a57e6 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xcb60c5f0 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xde660254 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xecefd3d7 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0085d678 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x041d6d43 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x08eef901 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1ce0a9d9 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2a40bbc5 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3aec7a6c si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x429cb153 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x43224ca8 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4c82cd88 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4e99b3e0 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x50fea63d si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x57d3a9c1 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5d1edc5c si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x617659e3 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x695ba06b si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6e3eb375 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x717cb4ba si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9d44a85a si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9fb9165b si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa0091494 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa1e6ba1f si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb36e1a8e si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb659bcb3 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc0d29cf8 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc2ffd7cc si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd5e5fb78 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd63eaf4a si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd970083f si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdb82bb5c si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xea9fc424 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf6183838 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf8e13238 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfcf26b07 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfdf1d33a si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7b4833e3 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xcbb7f568 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe1cdabca sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe365f716 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf81b18d5 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x1a0f047c am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x267e5476 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x81086f58 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xfe2f541a am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x0ea299b4 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x32395c6a tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x6acf1fb1 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xc7b12cba tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x2fecbf9b ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x1167ac55 bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x3a77f8dd bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x4ad9bcb0 bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xbd2fc736 bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x89f20b7b cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa456412d cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa5015fa0 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe86bc3b0 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x07f702ea enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x223d2797 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x428e7fd8 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa820ff66 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xae489886 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb9bea04c enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd83caddb enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xff7d71cb enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x116516b4 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4e514b34 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5a4c972a lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7740100d lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7c39aead lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xad247162 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb9cd68ed lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc2a1edc8 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0b74772f mei_irq_read_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1b467102 mei_cancel_work -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2b1b8193 mei_restart -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2d7ff621 mei_cldev_send -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2dd4110a mei_cldev_get_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3ed3d773 mei_write_is_idle -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x405b4831 mei_irq_write_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x411b8e6c mei_cldev_set_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x41a812ed mei_cldev_enabled -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4cec157c mei_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5a8308a4 __mei_cldev_driver_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6079d188 mei_start -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x634c23bb mei_device_init -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x70bc3636 mei_deregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x70d05050 mei_hbm_pg -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x81f21535 mei_cldev_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8a9df0c0 mei_cldev_ver -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9e7bc764 mei_cldev_disable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa128ba92 mei_cldev_register_event_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa25e7229 mei_irq_compl_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbeeab9bc mei_cldev_driver_unregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc4260553 mei_reset -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcb340b66 mei_cldev_recv -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe1d8d986 mei_hbm_pg_resume -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe8dd0278 mei_fw_status2str -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf8d8e105 mei_stop -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfc21f210 mei_cldev_uuid -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x6a5d0879 cosm_register_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x6d020652 cosm_unregister_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x9da4bfaa cosm_find_cdev_by_id -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xccd4e4f3 cosm_register_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xe460a64d cosm_unregister_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x68b1913a mbus_register_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x6f03f663 mbus_unregister_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xcbb8faa7 mbus_register_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xe8a14c68 mbus_unregister_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x12bc435c scif_register_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x719079f2 scif_register_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x8e76ebe6 scif_unregister_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x994cec6f scif_unregister_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x0172ba68 scif_register -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x0ec448dd scif_send -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x0f59e92c scif_bind -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x31f517c5 scif_get_node_ids -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x325656ef scif_readfrom -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x379435d0 scif_close -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x3dc01e69 scif_pin_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x618d2e08 scif_client_register -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x687e9667 scif_connect -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x70d1ca55 scif_poll -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x8688df4c scif_unpin_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x8e1c101e scif_get_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x962e1153 scif_fence_wait -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xa0af3bf3 scif_fence_mark -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xa0b6ad91 scif_unregister -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xb062118c scif_writeto -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xb4cfeb50 scif_recv -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xb55c6efa scif_accept -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xbc1dd1f8 scif_put_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xc224b3c4 scif_register_pinned_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xcf4819ab scif_vreadfrom -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xd26ccf81 scif_fence_signal -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xd2bcbbc7 scif_vwriteto -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xdb753b0b scif_listen -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xf13d9062 scif_open -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xfd9dd4c5 scif_client_unregister -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x611799db st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xe73dfb4f st_unregister -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0f6680ea vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1152e318 vmci_qpair_get_produce_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x13aa5a5d vmci_datagram_create_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1872c7af vmci_qpair_produce_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1a195863 vmci_context_get_priv_flags -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3ef56cd5 vmci_qpair_alloc -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4b630dac vmci_get_context_id -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x50a255c9 vmci_doorbell_create -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x677c36d0 vmci_is_context_owner -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x69ef87ff vmci_datagram_destroy_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x6cc1a5f7 vmci_datagram_create_handle_priv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x722d488a vmci_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7d540b50 vmci_qpair_consume_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x895ed9fb vmci_qpair_dequev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9624c58c vmci_datagram_send -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9973b9b2 vmci_qpair_consume_buf_ready -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9c037020 vmci_qpair_peekv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9d16164a vmci_send_datagram -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xccbb53d1 vmci_doorbell_notify -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xce4e75c9 vmci_qpair_enquev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcf5ed7ef vmci_event_subscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdac94780 vmci_qpair_get_consume_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe7e7c107 vmci_doorbell_destroy -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x029eae0f sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x047b494a sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0574381a sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x26bed350 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x83d9729e sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8cb6f474 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x938d7e36 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc7009a43 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcc5a9451 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd373ab55 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe792d588 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xea8a3838 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf599125a sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf600a2c7 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0e0e3e9e sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1069a370 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1d15f97d sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2dc57f84 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4087230e sdhci_get_of_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6dfac5c3 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8e005a78 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8fabe096 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf88cc46f sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x5f1216fb cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x603b3313 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xa20c336d cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x211b39d3 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xacb0bd85 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd2e2f655 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xd141e288 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x09ada5ca cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xae094c24 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xdce7ceba cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x03ee8c50 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x09c4f33c mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c1353d0 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x14a3ea9d mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18715ee9 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18754629 register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1cafb147 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x27aeff0c unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2c846226 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2f875124 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x30c501ea deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x450310be mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4b424356 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4fb3406b mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x639c8f3a mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x660cdcd4 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x662fba36 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ae1d283 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e4f3d6a get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6f8f1181 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x779df166 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7bc29b5e register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7d91290b mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7e7931aa mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8b820de9 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x95d61b23 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x97141417 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x978f2aad mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa6ab6fb0 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7c6a955 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa7e5a59 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xad698a22 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb2749348 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb82f0686 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcd476e34 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd2c80fc8 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdfb86d74 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe3a9cd4c mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe4611547 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe6500303 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf575da84 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfc716acd mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x14f111e2 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x78665327 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x7dafcaf9 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa1b686e4 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xff8a95e3 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xa8f63d54 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xb1fff4f8 nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x13093cf9 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x5f383115 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xe3eab953 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xb0348aac spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x32f378de ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x39f8787c ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3fdcefca ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x41a359eb ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x43e3e02c ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x540781db ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x62bab75d ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x639cb8ec ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6d774708 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7a0cb390 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x935554a3 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc2a088bf ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc46c315b ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xeb9ccc75 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x1de7d683 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x94c91033 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x15bbbd77 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1b4d8599 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x35688111 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8fce08ee free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbcc56aa9 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xed4af27c unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0800695d can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x13296f40 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x18b2950c devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3017be65 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x54964078 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5b09e795 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x70bf4224 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x74207329 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x79cf9b40 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8f85c10a register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x94234d9a alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9b02e7e3 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb3734f4d can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb46be4b9 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xca348d76 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcf3e89fc alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf57341d0 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfec7bdfe can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x3793518f register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x89dc4ee0 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xaab1faf4 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc314d896 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x53b77a00 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x5cd31c1b register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd11c5b64 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfe14e66d alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x011a564f mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x014c5469 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07534f34 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08540d72 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09c0f52a mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c26fb72 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d5ea5b3 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f219847 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x115c1af0 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16b1df1b mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x176ab55e mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19e6962d mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ae4c9bb mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b673bef mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c27ab17 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f6ea311 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22d3800f mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26975ca6 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26977621 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27dd7e6b mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a34188c mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b31bb10 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b3c5692 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b40cdc3 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c5d1769 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cf8fca6 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d428ae0 mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ef7bd48 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32417cf0 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32ea9cd5 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x354efa44 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x369449a2 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38fd0e13 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cae201a mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ddfd795 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41746a61 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x429ec06e mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44cc8a9f mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x556a16b9 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x587524ba mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59295e64 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ce922b1 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66d70e37 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67ac78bd mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68208b38 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x689ce626 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a012a2c mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a3669c4 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d556aa3 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ef9b131 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71099591 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7210cbf0 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75a572b8 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77159b4a mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77bdecd4 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79f39fdc mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c772913 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d3faf69 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d449752 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e1021e8 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f001b09 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80ded579 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86d44618 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86e6fc27 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87f0932b mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93877300 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94dcd507 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x967455ab mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96adc9c2 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97ae067b mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97bca5f0 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x993cf175 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa05f0c12 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa11adcfa mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa74ca2de mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa77dc0b3 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa922cfd1 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa94512f7 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa3c0aa7 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac77d519 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf707d04 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf8b32ec mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb00e00d4 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0ce7dde mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1369310 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb24ee078 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2a59488 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3fdcff1 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb464b16b mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb74e1837 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7b078f7 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb91d0ddd mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc048efeb mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc35c46e5 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3639aa8 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8c87022 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc987f151 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca5e4d5b mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcceacd3d mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcda670f0 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2ad8e06 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd34b1ff9 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd39568fa mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5e85b07 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd66ec4ee __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7733851 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7d8edb0 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8036830 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9783e40 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9df39af __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda896de6 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb9f0858 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde4bea82 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe432508d mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9b801a0 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb0cd8bd mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb445b54 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb54769b mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb7e18ee mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeecd16a4 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf01c66ee mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1769e32 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf23b69a9 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5d32f51 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a15b051 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e55e079 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1605c56b mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d340bf2 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26279dba mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28afd3b3 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2af7ef12 mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31552ef5 mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42678a1e mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e94f38a mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6086fc34 mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x685bae92 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x689cac8a mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f197f5e mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7327aafd mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78be8025 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d02827c mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8291ffbb mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8af39dc1 mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b08f381 mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c65f7a0 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f8c769a mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x982720cf mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98f80271 mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c16cd94 mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ec2959c mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa49c1da5 mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2f56ed2 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb897c974 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba790606 mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb2505fe mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc45040c6 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc46e1fd7 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9cb8e7a mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcad0928b mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd21385b5 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd89505f5 mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd961643d mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb3aa2b1 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc509a2f mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe099b96a mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe277ae98 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3dda020 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5d3a0ac mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfca3abb7 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x6d0e71e4 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6c831dc0 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa564d079 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc6c92fdd stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xdddd8155 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1f764fd1 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8b15bbb0 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xad5f1c83 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xed0c6460 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x117b2c03 cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x128384dc cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x16d839fb cpsw_ale_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x30a0ac60 cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x47f5ec52 cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x55726b7a cpsw_ale_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5bb7e029 cpsw_ale_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6936c31c cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6b075376 cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x806f1402 cpsw_ale_control_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa23c7235 cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa3f7e2de cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xaeed40d2 cpsw_ale_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe673f972 cpsw_ale_dump -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xfb3bb91f cpsw_ale_control_get -EXPORT_SYMBOL_GPL drivers/net/geneve 0x5d1e67df geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/geneve 0xeb71187f geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x10311180 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6b93bc3a macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x9e31bac0 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc7a72176 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x5e0add01 macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0c9ea9d0 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1cb60539 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x37a43b74 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x476645fd bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x65f7259d bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8618e467 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa23d0c23 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa7db2cc3 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc30ee4f0 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd68a62f0 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x05e2b43a usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xac77abc8 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb153b8be usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe15853e6 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x13847903 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2576c759 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x38e58250 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4cea68b7 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6b0fa5bd cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6b7702d6 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7179a9ac cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd2119479 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfc13f218 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0c40c311 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x447f8029 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x545faaca rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9df4d03b rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb7d9d43d rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc5ea6dd4 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x04538c57 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x058b4162 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x07e7aab4 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x117e94f1 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1624a0ea usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1c93bf2f usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x21f83292 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2299fb7a usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x281fa8f3 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2d2fd9d3 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3530c03a usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x38731c5b usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3becb750 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4863ff33 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4faf4d94 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x57995040 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5855887e usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6036c8c6 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x61839b6d usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6c46deec usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x73405e05 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x755cac69 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x817e3cbb usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9dcd1b5e usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa2e2e6ab usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaa490730 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb0de7790 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbaba50b8 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdffb59ac usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xebf89f59 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfb7dd7bb usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfdca4ee8 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x486da3a0 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xea5a71f3 vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x17f843da i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1815dac8 i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4e8d2ca2 i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x57787d55 i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x626569e3 i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7be03b0e i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x84628798 i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9a5cc632 i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xad4656f0 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc4c7b698 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd5465f42 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd85699f8 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdbf201ed i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdd145c6f i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfdb6d812 i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfe881dea i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x1d843db1 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x3ee92c89 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xc9167869 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xd2d41769 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x56cd329a libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x12c8295b il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x25440741 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x708e9df7 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x801b21f3 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x852973b7 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x16aa6873 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1c1011bd iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x27048fc1 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2bd5393b iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x38ce5e00 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x42fc95e4 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x444494a5 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4765d3d1 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4cfdc0f8 iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4e2c53b2 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x512a2413 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51e56125 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x56e5d35c iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5ee5ab54 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x73341551 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x75271fca iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7fddf457 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x82f38372 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8b7b4f58 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9e54e6b4 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa51610af __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xab6a35a1 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb8979af3 iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc1141919 iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcad8960a iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdc8a7a2d iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xebafcf0b iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfd097265 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x44e6493a lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x511fbad6 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5cb14918 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x69ba67db lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x89d9f5df lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9916fc1f lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xab6e38cd lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb3671c1a __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbdf02a02 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc5c91925 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd0c4caa6 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd8f4d7c5 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdc55c00e lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdcd37b71 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe27715e3 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xea85c3ae lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x09cbcfc2 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x20356fb4 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x8b3b35bf lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x9239652d lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x9305ceb2 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xaf6e5cf7 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xd97ca80b __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xec00d3e0 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x180224e9 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x30144a59 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3c6f0b4e mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4703b17d mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4cc525b5 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x538884fa mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5aaa4e6d mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5db1aa95 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x68796c9d mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6adcc7d2 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x704727ce _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7fb06e9b mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9d84090a mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa2975420 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb6a23180 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbb3b11a7 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc8da8a6a mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcf004b22 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xde2ce137 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x29ae8de5 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x328a89bb p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x37660121 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x510d9292 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7146c8fa p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x78baa246 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x79578156 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa535ff4d p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xbd38d7cc p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3646dca2 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4b6f2253 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x637ac092 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6b9afb7 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0f2c05dd rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1399247a rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x247246b1 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2cb07c5c rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x314b4897 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x34fa2174 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x389b0305 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x420d5e05 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4a45b3af rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4ac760b3 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x59f90988 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5a014e69 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x620fb460 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7263895e rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7c9745ef rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x893f10bb rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x90e9d2a7 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa7884e9b rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xac6d81fa rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xad8131b4 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb015c92b rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdb3c38fd rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5429b32 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xea9324b9 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfb09f711 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfec9026a rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xff9ae3c0 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x123a9b2b rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c821c26 rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4722e75e rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x480d3a55 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f802395 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7596ef08 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x84f9d198 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c56050b rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb82c3c3f rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba5faf3d rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb4c8db6 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb98b4ec rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc7839db7 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdf86e73d rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe48f60d3 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef3055f8 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xefc1aa22 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf15ae014 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf2e217fc rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4cb4f18a rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x85ccf50f rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf55129db rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf85dcdc2 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x020f6e09 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x076bfe14 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0b9514ab rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1808a96f rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x186089ad rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x233d6d1c rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x30be331b rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4b37c69e rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4c64f33d rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5497b683 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x55136b8d rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6ced7af1 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x70492039 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x76925777 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7aa565d8 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7f2b54fe rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7fc4275f rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x89436007 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8d639414 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8f3e7a00 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9227c352 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9ff2b98f rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa131784c rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa41ef450 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xab5de2b0 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb63a2cd2 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbada102b rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbed73dbc rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcb6200d5 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd6fd2daa rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdc27db7a rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe3aee00e rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe3c33c92 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xea56ed7d rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xefe7e8c4 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf557ff8d rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf6332184 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfb2b1b9e rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x02088ff4 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x1b280012 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x1eb41abd rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2e4ed08a rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x40d1a82d rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x57ea3ea9 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x81e066dc rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x843904c8 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9bbd9dfa rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb60a543b rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb8231dc4 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbcb21bb2 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xfa6dd40f rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0046d67f rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0393f4ab rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x05b749bf rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x05bb57d0 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x09e1cc00 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x10a772f6 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x188b148d rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1cf93630 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x208bdae2 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x26f43329 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x29712338 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2dc3a489 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3594037d rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3754735d rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3bb126c2 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x48616e1a rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x495f83ac rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4cde1971 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x52daa5c5 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x59859c75 rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x633a3646 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6be9fa3d rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6d276b5d rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x700d63d2 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x75688813 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7c6f2895 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x918b23d7 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x92150b44 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9244567f rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x92f414cb rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x93c40a33 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa46155c3 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb7432f5f rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb75978eb rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbb61f7af rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc3214b77 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc5af88b9 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcc4fdc88 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd265d917 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd60eafb4 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd87ac887 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf0b74446 rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf206d8a4 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf57c12e4 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfd480e86 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfea254ac rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x429e60d3 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x43c6dc3b rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x63207fd2 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x90d0dc2e rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xc3f7bc0e rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x11548e72 rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x8f88933b rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xa85d4157 rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xbab4d446 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2753a5c1 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2f4cee1c rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x46cdcc57 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4d7d44df rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5a32d74f rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5bc13a8c rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5ce86594 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x61051ef9 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x715d628a rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x729bf012 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7578e074 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x81df74c1 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8ea0fbcf rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc369afe0 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xce78c318 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd13b0183 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x396632ce wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x94ee220f wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xae998f27 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x036c7779 wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x099be711 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ba2c879 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10d2ff35 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1f803e82 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2926019e wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x351a35ff wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x369cbd03 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3b1d2ca6 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f81740e wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x48d2d09d wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49410836 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4affdf40 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5056b414 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5125d4d1 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x554c6cf2 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x63eddfba wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6930aee6 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x69d095c1 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x81a6159e wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8af9ebee wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d354303 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x925a28af wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x934e0d23 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x94742a34 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x982de019 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa8a4146a wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0701a01 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0f3c9f2 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb568f66f wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc36220c8 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xca2d61fa wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcc0324e3 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd2f9b6fc wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd95a8497 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe06ad4fb wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe0b1a03b wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe0d6f1bb wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xed625d6c wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee5b0f4a wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf705d8bb wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa15ad7b wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa9e0010 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfd8dec45 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x19f7e515 nfc_mei_phy_free -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x1dc0cb65 mei_phy_ops -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xd0e53337 nfc_mei_phy_alloc -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x46972a1b nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x6b1995a2 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x89b245fb nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xaa12b2dc nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x344a0a27 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5e3f93e0 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x63a163e2 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x86186758 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8c06dc7c st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe2ffa7a6 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf06e01a1 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf78b0b8a st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x04aaa626 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x81253086 ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xbccfdccd ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x11fcca1a nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4282dc53 nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x805020ce devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xae616819 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xcefb283b devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe4937ed8 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x165b0d87 intel_pinctrl_suspend -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x4be48d05 intel_pinctrl_probe -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x9225b547 intel_pinctrl_resume -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x95883142 intel_pinctrl_remove -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x07de2c2a asus_wmi_unregister_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xb64eec8c asus_wmi_register_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x56235c72 intel_pmc_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x75068282 intel_pmc_ipc_raw_cmd -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0xa6c87106 intel_punit_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x111aafa7 telemetry_set_trace_verbosity -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x1bbf0813 telemetry_add_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x1be25432 telemetry_get_sampling_period -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4294042b telemetry_get_eventconfig -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4cb51f18 telemetry_pltconfig_valid -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x50c1c0a8 telemetry_get_trace_verbosity -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x611fd2a7 telemetry_read_eventlog -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x64c6a83e telemetry_read_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x73dcd24f telemetry_raw_read_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xb78846ce telemetry_set_sampling_period -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xbb9a2726 telemetry_reset_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xbf0d3d83 telemetry_set_pltdata -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xcbdc93cf telemetry_update_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xe7eb1528 telemetry_raw_read_eventlog -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx -EXPORT_SYMBOL_GPL drivers/platform/x86/thinkpad_acpi 0x706cdcef tpacpi_led_set -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x561c634a wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x876d29f1 wmi_get_event_data -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xda29f8b0 wmi_set_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xfb882fb7 wmi_query_block -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x317a4cc8 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xb5065035 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xd5557671 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x4fad9e0f pwm_lpss_probe -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x6365870a pwm_lpss_byt_info -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xafcf8794 pwm_lpss_bxt_info -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xb563cdb0 pwm_lpss_remove -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xc34d815f pwm_lpss_bsw_info -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1405db15 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4fc34340 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xcddb601f mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x02c83c29 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x114a9d93 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4e075a56 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x723e14be wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc11d2719 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc3f90c30 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xd23c8143 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x169bb05e cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3223c379 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b5706b7 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4585c6d5 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x46286cec cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x49e5e84f cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b773a80 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e9eb3e0 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x57ae4b45 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x58fc2ba5 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x68be905a cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6947248f cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x77d39c5e cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7a7a0c3a cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7edc9142 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x85537f87 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x863a9f70 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b0acb3b cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b9e58b6 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8ecd4a6f cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x929244bb cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x935bc58c cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x977e194c cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ac84713 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9b03a9d3 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c7efc4c cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9cf54cfd cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ebb976d cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa0e96eef cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa21bf64d cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xacde18e8 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd5a269b cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd18e6b33 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2e4af51 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd7638421 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd884273b cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd930f3f7 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb0a1820 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf2866c9 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe447ebc7 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5599e4f cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe694c869 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec70ae6c cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf4354952 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf64208f5 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xffd8b663 cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0e768411 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1b207beb fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1b7e6565 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4906c053 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x63a9a851 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x89e1aed2 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8c31f5ca fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8d73f3d5 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8e03d028 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa0de1869 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa68ec01f fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaa2841a2 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3a68409 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc9f90306 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf8241450 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfd328d4d fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0234ad4a iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3fd7a288 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x498f6c1b iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x81cdf4e0 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9ed3c33f iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc462d5df iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x023d8e93 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0702ca64 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e5a500d iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ff643e7 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12db0261 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12fc6d8e iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1348bdcc iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16d90f09 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c2040c8 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x203a0228 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x22feb6e5 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2d082ce3 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f114e24 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4226a227 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x452822f6 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4c7d07ad iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x55382b3e iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x587880b5 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x58e34444 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a7e907c iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7bd343c5 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7f729715 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x83439833 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x844dff43 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x88fadff0 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94e194d0 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9bb08c48 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9bd1e60e iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa55b1cbd iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb597572e iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbaaa1466 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc758a34b iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd3585f2 iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4ebad21 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd5594a4 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde671b0e iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0942797 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0a4977d iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe59ba099 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf30a38c9 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf62b07ae iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc23f454 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x02526b6e iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x034c1051 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x28ee7c4f iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2c2814d1 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3854b56c iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x39090fd6 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x41c921e0 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x531c932b iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6ce65f32 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8c461edf iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8ead24b4 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc7d06b4e iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcad2238b iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe1ff2aeb iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xeceef0b5 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf16e8bbf iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfaf392b9 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1bf50a38 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2e1ef051 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x388dd933 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3c6a469d sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d7fd6a6 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x56aab545 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x62bc872e sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x71a0601c sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x83d753f1 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x98b6cc58 sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9bc2e7c7 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xab123998 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae74bce8 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xba08cc36 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xba9c8938 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xccaa1724 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xce4297a3 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd4555d6a sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xda7c07ae sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe6e0322a sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xec5562cf sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xefe3a09e sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfc260905 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xff831c1e sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x00be62f9 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0147d2b3 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ad39fa7 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x11314b3a iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19e80fe4 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f747e28 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1fa7a906 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x28a74821 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b872366 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x33691cb5 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x439e3aab iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x44223a80 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ccdbe21 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b293a23 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b5f32ab iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x612565e8 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x646de103 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6474c62d iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x693992f7 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e307c35 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x732f44ee iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x76eae09e iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x80f7619b iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x823d2292 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88e41f13 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x914bde7f iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98bea999 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x994deb83 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c11404 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb396f875 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4655359 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcecbbd93 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcfbaabe0 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd004f381 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd448c2f2 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdb045ea9 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xddabab83 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe16377f8 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe475104d iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfef4fa84 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x665b608f sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x76b62328 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xcce670c6 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf3a12917 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xbddaa3f0 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x86a9e589 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9b348ac6 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa4d49365 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa8843c8d srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb33166fb srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfd8b22a5 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0c461f0e ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0fd71ec4 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x1086cf8f ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x3e17db53 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x9bd288b6 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc0647f5d ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc4997760 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x245f2b8a ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2a723ec7 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5665a690 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x653b46e2 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7a805dc6 ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x982b8515 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb6d9bdcb ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x11c6d661 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x66c1295c spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x97debdde spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xade18cac spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbe3f07bb spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x26b0f2d2 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3ab4ba3a dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbeb25aaa dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xcca678d6 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3c55ee39 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3da36422 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x438b65da spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5255bb96 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6c0b3c93 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6cbcfd86 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6f5a0618 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x74f98926 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7830d107 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x879c0105 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x89a499f6 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x903f2c75 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9174111f spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x921f2de5 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc657876b spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xda5ec839 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdf3d8d26 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe4ed591f __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xffda1d80 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x09e81196 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x12df6aee comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1c1b29d2 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1f338788 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x22337555 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x28d513f0 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2c7558fb comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2e990ad4 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x30fdde05 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x38162de7 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3ecfb1ea __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x40f73fb9 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x422a28ce comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4c3237a2 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x538045fe comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x56348f7b comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x60800f56 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x64baebbd comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x73ca3789 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8dda2d48 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x986a7f98 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9d08f8e1 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9de88581 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9ec60e42 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9f3b22fb comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaaab3367 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb2048635 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb78d0d0a comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xca81923d comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcce942ce comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd8ad5fcc comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe1509659 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xeddf2ecd comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf854a27e comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf9497ffb comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0b425a16 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0fccd652 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1491cb86 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x62b4809b comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x640cbd08 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x64ec6cee comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa9f622ef comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfff270f7 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x3c2918d4 comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x4b5c53ae comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x80be5d29 comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x8d9242b2 comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb8c1525d comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xe59c026d comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xef232ce1 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x003e4662 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x2345852a comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3d8b8b74 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x4b69da0f comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x7a374273 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xa8a76911 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xf3818723 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x8afe3175 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xe0a9726b amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x5588b181 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0a7c334f comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x324e37fc comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x40fde2f6 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x417778f2 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x69c2ce60 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6b210b8c comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6e055ebb comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7197cbe9 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9b6effd5 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa39b126d comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb490aac0 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe8a11f6c comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf60e8b78 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x37490a08 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xba46f360 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xe22ca021 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x32d1cb3f comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x256c2277 das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x043e677b mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2cdd43fa mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2fae1a0d mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x300b4216 mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x305112bb mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x307ac2d3 mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x30f9bb66 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x66b38e87 mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6e4590e1 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7282443e mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9507c0de mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9e3bbb64 mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa9b4e83e mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xad23dd41 mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xae5cd82a mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaef69901 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdce5bfb5 mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe7bea741 mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe98cadf3 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xef3b0e7c mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf712e3d2 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x31c70232 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xd3d60375 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x34b4d0d8 labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x519be101 labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x950f0a69 labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xd8f1e6cf labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xeff44170 labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0a721371 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x64e48cc0 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6cd6ab72 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x81a7c920 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xafd4e63b ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe19fe78d ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xed3346e7 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xfebd88c9 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x1ffb9a6b ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x291138f6 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb606b3ac ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xce369e23 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd7a94eea ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xddae28f3 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x24e234e6 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x2b776916 comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x4a9230c9 comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x51f00e8c comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x8c3cc932 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe8b742c4 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe976f80f comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xc5174171 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0748fdbe most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0ea7d24f most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1a783120 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x463d9be2 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4dbc4b1e most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5e1a0844 most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x7dda2998 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9a15e275 most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xceeb4e42 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xda506408 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf3e95c18 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf69421e4 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/rdma/ipath/ib_ipath 0x1514b2b2 ipath_debug -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x02f0bfd4 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x10f91085 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2ab8daa7 speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2d25bc1b spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x455bc172 spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4971d9d5 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5f736af5 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6cfd65ca spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b3aeb81 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc09242be spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd06bc24e synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xdaa7c98f spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x013a897e visorchipset_register_busdev -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0877dd5c visor_periodic_work_start -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0ec0434e visorchannel_zoneid -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x13d922e8 visorbus_clear_channel -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x149bde55 visorchannel_clear -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x1582a13b visorchannel_signalempty -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x37626eff visorchannel_get_clientpartition -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x39fe5de1 visorchannel_signalqueue_max_slots -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x3a85d8bd visorbus_enable_channel_interrupts -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4063ea9d visorchannel_signalqueue_slots_avail -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x41d96143 visorbus_write_channel -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4c0e827d visorchannel_debug -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4e4bfbe5 visorchannel_signalremove -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x5e533597 visor_periodic_work_nextperiod -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x6084f4d4 visorbus_registerdevnode -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x60aaf74b visorchannel_uuid_id -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x720775df visorchannel_set_clientpartition -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x7948d062 visorchannel_get_header -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x7a4ec5c5 visor_periodic_work_stop -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x7d3208eb visorbus_register_visor_driver -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x85b49e2d visorchannel_get_uuid -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x865e5ab6 visor_periodic_work_destroy -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x8f463ba2 visorbus_read_channel -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x96401fe5 visor_periodic_work_create -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xa428b832 visorchannel_create -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xac7771ac visorchannel_signalinsert -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xae9128e9 visorchannel_create_with_lock -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xb4aab617 visorchannel_write -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xca18358d visorchannel_id -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xcc89f91f visorchannel_destroy -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xd8649784 visorbus_disable_channel_interrupts -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xdaec263b visorbus_unregister_visor_driver -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xe3b5efe1 visorchannel_get_physaddr -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xed313c21 visorchannel_read -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xf990f627 visorchannel_get_nbytes -EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x2925a2a9 int340x_thermal_zone_remove -EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x32fb490d int340x_thermal_zone_add -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x334e5d6d intel_soc_dts_iosf_add_read_only_critical_trip -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x6064e883 intel_soc_dts_iosf_init -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x87a2b9fc intel_soc_dts_iosf_exit -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xf603e513 intel_soc_dts_iosf_interrupt_handler -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x941a95cb uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xa916846d uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xf3b32e48 __uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x514a0c8e usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xdb85e505 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5f5e4f1f ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7ad8e265 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2a1fe46b ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3209c39d ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x32640c7d ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7622a592 ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc9019d61 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xebea4d89 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x176fa7be gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x24b5455f gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2b91a3b6 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x52343c90 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6346a0f3 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x66e84198 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6da8ae2a gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7af888b9 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7f60bbc0 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8c937167 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x98084b3c gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa477eb6d gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc01f3d3c gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf0de6e9c gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfdfe14d1 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb8132e82 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfd5c994a gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x2a77c904 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x47c158f5 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x93a8c1f2 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x05639b9e fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1f5d4551 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x351ef967 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x35dee3cb fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x49a3594f fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4eb44f7f fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5600e1ce fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5c9c330a fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbaf05c11 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc61ca0cc fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1c25f04 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd9141f35 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf0a73bdb fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf1696af2 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfd47c10a fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x03bb2ea7 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0a741ad3 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0b0772c1 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1c9059cd rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x31b1debc rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3a0ad997 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5ed340f1 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x66d929bd rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7d163b02 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa9067855 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcd220562 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe9e10eea rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xea41cfc6 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xefbcd56b rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf266e528 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0571d6ac usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0951343d usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1631d718 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1cafd02f usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2cbaed78 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2d2bb642 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2d9be6f4 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2fe37fd8 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x43cc29be usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4819a0f4 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a13632b usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a830be8 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4bbc3db4 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5b9fadfe unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x67ddb1b5 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68ec4a24 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6e22aabf usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6faca357 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x709f48f1 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x879d4a77 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8a93dfe9 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x917e43b0 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x946772e9 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa4d21bfe usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa5ff3e92 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb20660c6 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xba05099e usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc7ac8648 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf9c18e9f usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfed29ec0 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x19633a68 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x259da6fd usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e62f7d4 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x57007f28 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x59c0a298 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6d94999a usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6f18f5ae usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7d794fd6 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x92e256c4 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb4c23501 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbe24b53b usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbe439a27 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xed6dd4f6 usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x455ff33c ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x5b44ea24 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0cc588c3 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4f9aac97 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9dbc8142 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9e279f98 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb35fb8cf usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc910f231 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdd4ec2db usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xee24a5ff usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfedbe0de usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xb41c670f musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x1b072c88 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x476885be usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0966301c usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0d07ff85 usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0f8a941c usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x34490eab usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3ec296f9 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4a8379c7 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4fe7a1aa usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5173e35e usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x52608545 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5db2ade5 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6486711e usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6679359e usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x66abefe4 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6b5b3b7b usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x919d0e0e usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb4e86c90 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd2fe5604 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd5715aaf usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe747ba0b usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xeae6168b usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xefd0042a usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0071d383 usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0935cbda usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1488337d usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x161672ba usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2b87c7d9 usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2c153986 usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2c3b5a30 usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3291a016 usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3f055c0f usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x636ea094 fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x64e6aa9a usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6505ec93 usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x768db102 usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x778a73a8 usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x95d0629a usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9d6a68e4 usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa6cc62e7 usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa779ac80 usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb17eb20f usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb834836b usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbd183875 usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc3a20e13 usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe8a3747d usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfeff5bdb usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x292c4767 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x33c9692f usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x70f24670 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8243fbcb usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x88f8016d usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa1e556bd usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbd6bd5a3 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbfa1697a usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcaa9f8d1 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd2092493 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd8e424cb usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdb593b40 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x1d38d294 wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x452b0d62 rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5773f32b wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5c91c664 wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7bde8c01 __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x97dc3291 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xed925ee7 wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x18209290 wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x30970374 wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x377e4c64 wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3796d96d wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x48500954 wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4a5b95b1 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x58def2f2 wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x66460e9f wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x692e014a __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8b634e8f wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x983c3f99 wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xae6416fb wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd603a1ed wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xda2455ee wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x4629cbc4 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xa7d81012 i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xf7919f44 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x133b3c5d __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x143297fe umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x52a96272 umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x66ba2f19 umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x897e4ffe umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9b910b3f umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9e5d674a umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xbb15030c umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x06c8e19e uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x11c8968e uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x143fbda1 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x159ae413 uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x17d42fe6 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x19a414b4 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1a5f1638 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x203cbe9d uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x259ef0b2 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2cd07295 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x314489a4 uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x316b09a3 uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x48b5618c uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4f2ecb2e uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x52b83711 uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x599aba33 uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x59dfcc9e uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7acc98b2 uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x87b7d2f9 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8b0ad627 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8d124178 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x95168856 uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa09d34f1 uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa2cae537 uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa5f1c2bb __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa7a25e0e uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb1c23609 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb82e7672 uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc52fb47e uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd509fd9c uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd7eb0116 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd88d87b1 uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdd40a165 uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe2d125e5 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe9720813 uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xea9c1d20 uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf60092f5 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/whci 0xe307749c whci_wait_for -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2ab5ee40 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4f42a81d vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x57d61bf2 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6d1786a3 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8f91a3b5 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc6d0d39f vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x18e1efe0 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x1d4c9ce7 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x06cea824 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x178bde08 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2255ebc5 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x24db2e15 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2877797f vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x33eacdf0 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb96f77 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x554b7408 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x586c4f14 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ade15f0 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5cb6fbe1 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x681a4102 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6a571b07 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b4a66d6 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7ff844d0 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x863e9df6 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8c9ae169 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9f94875d vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad739280 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xafe892f4 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbd4c108d vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8c741aa vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc99f2ce3 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdb01b7d4 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdec0e3e5 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe20944e1 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf69152ae vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf9da89fe vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfbbfe325 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfdea81d2 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register -EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2dcadc85 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3813b8e9 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x58acdbfc ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xad49f2c0 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbb794b55 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbc41d8ac ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe32b273d ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x51c6b07d auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x6b219a39 auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7a67e4ba auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7ce98188 auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9a6c28ed auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9e94b915 auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xaf3d2f6a auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xc13da640 auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf915c170 auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf938d8c1 auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xfdcfe6fa fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x33aa4147 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xbdb71668 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x85bd06d5 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc9d3de58 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x1ff5f940 viafb_find_i2c_adapter -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x22a7af24 viafb_dma_copy_out_sg -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x292da7a2 viafb_irq_enable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x79e6190a viafb_irq_disable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4f863e6 viafb_pm_register -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcaefb732 viafb_release_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x2a60f5ae w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x398813ad w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9199b88c w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9db21143 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa3409ec4 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xad8f6ebe w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xaf6a5328 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc808a555 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf32a351b w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xc1e87f6a xen_privcmd_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x41dd5cbb dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb8f0bcc0 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc673b371 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7d5cfaf0 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc2781281 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc5fae364 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc9756ed2 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd5b239e6 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdfa67994 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf79a9374 nlmclnt_done -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01e2240a nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01f7c155 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03998962 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04c35cd3 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04cd4834 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x057a08f0 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05aecb91 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06a9f6bf nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06d3aefa put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a4b4677 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ae7408e nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1117c57e nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1180d5d1 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x136e2bb7 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14d8a268 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x199e3335 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19fb2956 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ef77e6b nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f75a65f nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x211b88c6 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x218b9a2a nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22407f6d nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2329b732 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x269cb7f8 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c8dbee6 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d8ba421 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f8f19ad nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31b106b6 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33c2b9fc nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34db3d64 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36f9d822 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e107884 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f37f4ba nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40a9b2ea nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42370388 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42bd6a2a nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45e540b1 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47469a32 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4896ae53 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c3d6baa nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ca33637 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fbe33c2 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x520c398d nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54790463 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5495f012 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54aced5d nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x558dabcd nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57669332 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c4f24a2 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e782e71 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ee7b8f7 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60f955f6 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x626bc9f2 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6391f785 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64b5e6cf nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a617934 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bb4ee68 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6db4179e nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73d2227e nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bafb1dd nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c542ad1 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9391ab nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d065421 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x800f4061 nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x821c22f9 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86e5b23e nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89c2c807 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8db03294 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d2b0e8 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x946f0957 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9642db88 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97951834 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x999f2162 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0a687ac nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0c6d039 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3263901 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5a9e02b get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5e07164 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5e9fdc0 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa96253ae nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabacfa1d nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac74d069 nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae1f6552 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2005bc5 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3cfaaaa nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3e7af00 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb47639d5 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb53d9343 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6ffce24 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba5f4e30 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb96d3be unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbba1c6b6 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd450ae8 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdb6f729 nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0f11697 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1f5a19b nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2841638 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2c8072e nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2ee471b nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a6920b nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc72033d1 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7265442 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc739de57 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xceac3c9d nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd02fa797 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd08dcac8 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0efa4a6 nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4f0e547 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd51b333e nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd52ce2b0 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5f15fe2 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd94070a4 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd1a463c nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe04c8325 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe25c94de nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe415c3cd nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9c3aa2f nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb488d63 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefe5f9f7 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf27704ea nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3100d29 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3779c6e nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5d9cb98 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xa885c0cf nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x026b18b5 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02d1ad79 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03c2b80a nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05ab18e8 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x070b6287 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a1c2aec pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10769420 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x134216f8 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b8fcde4 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22503d78 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x256c794e pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c6220c1 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ccd4314 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x376a5a73 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3acd72da pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40eba101 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x493494e9 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b09ece8 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x563e0af5 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59d479a1 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5bf588ab pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62f16a0b nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63685c1d nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6817e7cd nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6948efab pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a8571ba nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f67253e nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x721694a1 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72eac8df pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76eac55a _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x807ed2cd nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x834375d2 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84f6e72e nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a30c19f nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x935b4f72 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98b9c223 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99badbf3 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9cdb732d pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa00f861a pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7c0e3b3 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9b04db9 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab7faf1e nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac8809cd nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xafe78a68 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb583c580 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb94ba24e pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbccef2cc nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0b0de52 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc256d53a pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc6d0dc64 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd26e6a07 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd68e1122 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdbd9d027 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc0064b4 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5986538 pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xedb11690 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd8d3132 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe60cdf5 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x11971585 locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x670f37b6 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x79b68829 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x082bfb3c nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6f680107 nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x53ba1768 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6f5cd7fe o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x70f1d3f8 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x87277344 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xacc6ec50 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe608b4ab o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xec06ebc5 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x298cbb64 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x78de52fa dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x86573698 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc24972e6 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc67bacd5 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xffcd0abf dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x28721da8 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x627fa61b ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xebb9a7c8 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x1c972a66 torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0x1cec5ee2 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x70b639ba _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x9ea64159 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb740645c notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x6aae0d30 lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xba15579b lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x4bd78902 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x6ad71fff garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x7e89f818 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x90f759bf garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xb085c2f6 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xee38fa59 garp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x007a4249 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x3e1d8ed3 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x5682072d mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x5ca13892 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x82c03a77 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xcef38dea mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/stp 0x581e74b7 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0x824fa2fd stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0xc6aae302 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0xee6f857f p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0x38ecb402 ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0cc38f4d l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x275cf2e9 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x991d0958 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9bc2a949 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9e9b8e56 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb66202cb l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd78f9726 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd84487c3 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x060afb14 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x24b94782 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7be4a8d6 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x870b3ba3 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc6b6ee71 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd77ead7f br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe063a13c br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf48585cd br_deliver -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x3b8ea5cd nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xd5cc4b7c nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x04615944 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c67e266 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x142eb8bf compat_dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1670ec79 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x18776df5 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d510802 compat_dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x23672cd0 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2ec91170 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2fbe6d1e dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3c534f55 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x44d6d197 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x47d2c236 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x495459d4 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e2d4d99 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4efc2011 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x58e291e0 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ab8cf9b dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6fecb54a dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x74c4fb6e dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7a4b469a dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x949b5596 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9619fbd0 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa7924e32 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa9c0857f dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb39dbff7 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3068c2f dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc6e0242b dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf6e22ae dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd1f0faaf dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd3021f29 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd8d04d4e dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdcbf71e1 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdfde7ba3 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf084ea4a dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xffb40c65 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0af10c3d dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x27cfe214 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x30b5d6eb dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xae3755e4 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd4b8290b dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xeb2411a3 dccp_v4_connect -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6089848c ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x79ede622 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xbc86815d ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xceb8d379 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ipv4/gre 0x1a80dfa3 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xeb69c655 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3f152b56 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x48afef3e inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x691d0eb7 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x97333dc4 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa2a50590 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe28f144d inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x1fdf3a17 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0a9646d6 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0dcfcd99 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x11399d95 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x26768399 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2d9bfbe2 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3777da97 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4825e6cf ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9f8bc3ec ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaa447780 ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc0328c08 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xce5df6b0 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xda2d3a17 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe0bb3d07 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf24ef2a8 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfe6f713b ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x8fb46d94 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x97eae775 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x21ce8885 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x22c8bac7 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x3f7bcf97 nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x482c44a5 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x76673af2 nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xb275f6eb nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x0dcd2a46 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1e7481e1 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x49716b9c nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x565b6ae8 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x684a22fe nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9a85d200 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x17e7306c nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0d047743 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x36ca7484 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4006e821 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x625f4df5 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd345bbdd tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4e42ad33 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7382870a setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x770c413a udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb2a16b29 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x29dfe93f ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x49be46eb ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6d19b0a7 ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa1607cb2 ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xcb16ae7e ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd993b7e0 ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe7a6405c ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x0a2d90db udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xfc232c72 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xb6aaddaf ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x1cf2fcd7 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf69877f5 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xaab45bba nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x565fc8a9 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x62e114c1 nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x8096f58f nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x9be39d5a nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xd2c43f94 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x0fb77744 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x02b8d911 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0ed218aa nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3ae8c8bd nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x982cdf77 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe4845979 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xae52a016 nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0149f1b5 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0617a3e0 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4338852a l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5aa7a3e8 l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x600df3c4 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6b4b4da4 l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x860a70a2 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8e47ab12 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaa32593c l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb1d2e6b3 l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb5872531 l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca97e17a l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdd9b7f2d l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xddae8e99 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe47e3019 l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf66bc2de l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x105cb43e l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x06750818 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x263a4188 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x27542225 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2b6cd074 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2d75a472 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x416c2082 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x44d201c7 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6526ce92 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x77bc3c73 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8aa8cb92 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9d424a58 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa7fffef3 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbc18b3db ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbd17a7a9 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd671350c ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x703adf3a mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x834e4a30 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9ea62ac1 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfdfc9d91 nla_put_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0130f068 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0171e7e6 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x17b57661 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x40de82dc ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4f09b534 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5569445d ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6c1451d4 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x77167627 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7ee0d5fa ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9652e59c ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9def28d7 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaa0c6140 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbc274f14 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd0008e04 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd7304110 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xea908167 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7122d81f ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7bae6e37 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xbd98c0b5 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc01d1cb4 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0487e76d nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x077b2144 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c3454e8 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f0e3511 nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1027628f nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x183128d3 seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x199d96d4 nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a8e204d nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f20d2c6 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2319aebf nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x234acefe nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2793928e nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289b1482 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33786ff5 nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34ef3c26 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36825374 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d12597f nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d385793 nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3da61b75 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43611b4c nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47d59888 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49e34fa2 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b71bf19 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b7e160c nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d50ca69 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x520e701e nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b23b1d8 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5be39ebd nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5cdd1929 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e37165f __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fd81092 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60c4dcde nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6857d123 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x69d41f26 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a18dc58 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x704cbf6b nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74c6d4bd nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79731fa1 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b4cf774 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cfde6ac nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ea67722 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f762270 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x819a7362 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82536099 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84cf5984 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x900b0eaa nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90d2483e nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9655b9eb __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98381710 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98eb2c45 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99c5ee3d nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c1a62e3 nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3b424a6 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa513573a nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3ac11e0 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb51fbaec nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbbfb2afa __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc352fb31 nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc4f5619 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd08f3e5 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd670604 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xced3313a nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf788932 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd23d730f nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5009f44 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd54f7d4f nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd67b3100 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda4b22d0 __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdadb25fd nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdadd41d3 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde06587d nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0a8e8f0 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1d31c47 nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe48d6cfc nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe63de16b nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6b0ce0b nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe843b1be nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf33c46ee nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc47b5dd nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x818e447f nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x78ff61af nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xd8f189ba nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x217552b3 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2e8a6eef nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5bed502e set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x67fe395c nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x70dade16 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7ee5ba09 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x963787ff nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xaa31b71b set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd4f9a25b set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe020fdaa get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xc08c47c3 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3091e08f nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x36d56c3a nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7abdf765 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xbdab93ef nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x25748a50 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xb0fd20b4 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x36763ef9 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x67b20910 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6fb9ddea ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb18e0ab8 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb5f6979d ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb78febbb ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc556f080 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x0f488b0b nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x9f435e05 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x0d240a9e nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x45ddb74e nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x49e85ae1 nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xe5c0edf7 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2a7e4f18 nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x34f656b9 nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x49927b9d nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x680e5823 nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x81a07876 nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x938bcc38 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa2e54d96 __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xafc7a183 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd102830b nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x8d911224 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xb9af9cbc nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x92ee9777 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcd114c5f synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x053ad985 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x17b424fc nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1c2b0ab4 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2928a11c nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2d5ac279 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x36cd8f15 nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x56199cfd nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e0bd792 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e9ff240 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6814e75f nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6b3eaf82 nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x736e9bc1 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7a7b252c nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fa50c21 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85b93060 nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x944056b0 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9c3cad60 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6a4b2e4b nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6cf36c35 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7800416c nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xad97b92c nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd27fb219 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xde84fe7b nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xefda2351 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x13549c3e nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x3c5aed80 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xe76f35ff nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xd42e4857 nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x1011b5a8 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x475d5f5e nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x90e55798 nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x345eaf9f nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x47c6d1bb nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4ca45a8d nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x66aaabe6 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xaf4030b8 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xe1c05fa3 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x333c1b83 nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x91013aa6 nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x9d5cb107 nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x19b3a770 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x5e493ca5 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0a5b4c68 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x10a91070 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x19ee93bb xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1e66c04d xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24aa29dd xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x43892b3c xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x52567e4c xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x56f8b935 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x74287280 xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9e8ec151 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaaba44db xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb53341a9 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc33265e6 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc8c3cdf8 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd8a610e9 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd95ec6b5 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdeee6d2d xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0c7b275 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfb1f4b30 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4c32c169 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb7459345 xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1ae97b46 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x549797ed nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x54e4256c nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x47ca5970 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x66275348 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xdf262ff4 nci_uart_set_config -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2320dfb8 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x658424d4 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6894f3dd ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7cc53964 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x88116d20 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xac75c6b2 ovs_vport_receive -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb1bab26a ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xec289c5d ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf53d07d6 ovs_vport_free -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x0ec11092 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x1172ccb2 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x1ed3f1a1 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x2af973f6 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x3db21dea rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x43fcadb7 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x48b3b3c0 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x5a4be9fe rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x5c05b226 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x60d4b7c1 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x61535e34 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x61a3aac7 rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0x624d916a rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x650f435a rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x87c776c6 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xa011a27e rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xb431c65b rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xcbbc9916 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xe18124b1 rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0xe4b05f49 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xf3d6b41b rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xfc557ee0 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xfe325deb rds_inc_init -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x1e7cc9ca rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xebc1e32f rxrpc_register_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x275e4156 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x43c25703 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x53907387 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02e309f6 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04e42e28 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05112624 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0511f3f1 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0581f49f rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0767f46b auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x082972b1 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0833184b xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x090202f2 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ab60860 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aec2342 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0af68a4e rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfa2267 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ddf5da2 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1002ea9a cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x105803e9 rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12cb5c93 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x141036c8 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16967623 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17af9c3c svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a3e40d7 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b281d1d rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b597ce3 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bc130af svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c35ddb3 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d1bbee0 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fb1afb4 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22ac27bc rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22c60867 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25012e1a rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25ce4cb0 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26121b5e rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26553df5 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29788a1a svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29a1e93a rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a5fd9d8 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b92b5b7 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e848d04 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eb81b0b xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fb58e52 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fddc02d rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30dcd5e9 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3439cf88 rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x362ef2de put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38896071 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39c9ee7d rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a8e2bff xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b665b12 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c46572e rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e79cf8d rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x407c469e rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41a5514e rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42a65275 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44ca8b1c rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44ee32ff xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45e06931 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45ef89a2 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x470e8743 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4830537b svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x487c3d99 cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b71ab25 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c038f2a rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c81b123 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f11f6c9 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50434729 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x532a94a8 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54e063a0 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54f397bb svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x566ecc47 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57adbd7a rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57c3bbfd xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58b241c3 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bbba726 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c36b080 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6102c674 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63df4fad svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bfca8c2 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cbda17a rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ce21e62 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d28eca4 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6df15e9d xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72cb6b8d xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72cfd778 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73313abe rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73f6424f rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74bfaa1c svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x756d4f7c xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x774efc30 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b00bf5c rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b1871ad rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7eb05551 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8081625b svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80de96a7 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8229e24c sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8474a8c2 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8508a805 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8555a781 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85f82f48 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cf60f6e svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d950534 cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e381ca3 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fab00d1 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90ec08e2 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x926c1c13 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93e570dd svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94941bef rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96b9c9af xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9818e1a0 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98691837 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98cef000 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99c7ce06 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c72d850 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e28fe78 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f36c8f0 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa01b3a97 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0b1a515 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1a7ebaa cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5038efa svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa56b52a7 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa58c697d svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa597562d rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa60bd2db rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7d37307 cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa94d65ae xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9d87c01 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac965438 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf50b78e svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf561377 rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1a55fca xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2526c2d rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3dc1cab rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb431b11f rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5172e11 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb643dbac xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb75aabfc sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb797c1b5 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ff9cb3 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba93436e rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcb6667b xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd791bc0 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbddc0421 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe1a1410 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2e34b9d svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc376639d rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc67d3c06 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6f87baa xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc75f573f svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8f3a961 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcac01995 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc7cb679 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd102794 xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfd88daf svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0f95f5d rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14c8eb9 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd31b3808 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd850029e svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8bb50e7 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda4a1c65 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbed83db xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc1de2b1 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcbe79b5 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd5ca76f rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf034e39 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfc4b38b svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe04ab5c9 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1624ade svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2e5b80a svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe350900a rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe40f4866 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4763385 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4aa9de3 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe584ef1c rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5ac887e xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5b0f21e rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe73fce77 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7cc05f1 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8a1e364 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe991ec4f rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9d61fc8 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9f66a54 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea08ec4d svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea649ee2 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebc824cc svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed714b4d xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee8d22eb rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeb5926a sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeef1f35c xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf08d9928 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf18c503b cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf41c06c2 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6842c28 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf94b4e2b unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaf4c79e rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd1c0482 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd525ed3 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfedf0952 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfee2a038 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x028fc0c2 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3210a9dd __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x42b571a3 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x57caeb25 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x60daaaef vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x797b4383 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbbfe3d53 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc314ea0a vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd07202bc vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd313a57c vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd843455b __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdba86829 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeefc6fdc vsock_remove_connected -EXPORT_SYMBOL_GPL net/wimax/wimax 0x2ebd46de wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x42c765c5 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0x42fa729f wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0x4cb59307 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x7d992bbd wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x973b4a17 wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa233dd7a wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa763405b wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0xb2b70f1c wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xb5fb65b5 wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc3e7f142 wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0xe3227f17 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xf61501b2 wimax_dev_init -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x13f93b0d cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2c1b3d39 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4bb5cf09 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5f147b2c cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x61b60e73 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x919a4b6d cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa3019b39 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xadd7670c cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb43340f4 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc82884e2 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd00663d7 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe0109298 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xedb6c7cf cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x1192954e ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3ccae463 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xaa053f5b ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfbd48c1a ipcomp_input -EXPORT_SYMBOL_GPL sound/ac97_bus 0x13748313 snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x4bbba297 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xb6a0b149 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd 0x30416cb7 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x31fbad67 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x39ab423c snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0x5fe98747 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x8ffee49b snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0xcbfef1bb snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0xfcc41d62 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x0ee850c7 snd_compress_register -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x1314b55e snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x8275888b snd_compress_deregister -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x02e21f49 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0c3b8a07 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x12fb9417 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x193161dc snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3b5f832d snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x47d878b7 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x62981915 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x752134f4 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbb9c8b58 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x19513446 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x221d9b08 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2d297f99 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3cbc304f snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4e532422 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5428987c snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x62d31d28 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x868b1eba snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb5b77c3b snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdff53fcf snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf2e45d78 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0650d7cc amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5b80ab53 amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x87a9fb59 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x93a97c94 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb2afffd1 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb7771219 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd86f618f amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x013cc440 snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x06fde763 snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0b01d17e snd_hdac_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x17acf974 snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x25f318c7 snd_hdac_ext_bus_get_link -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x26c2e3e4 snd_hdac_ext_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x31ee2992 snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x354c14c6 snd_hdac_ext_link_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x35ca720f snd_hdac_ext_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3c360ded snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x43a68f41 snd_hdac_ext_stream_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x44bd783c snd_hdac_ext_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4676ce22 snd_hdac_ext_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x54da4c10 snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5bf17d5a snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x63efda45 snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6c643a0c snd_hdac_ext_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6d6d69ab snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x757600d5 snd_hdac_ext_link_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x76384537 snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x77db8ed5 snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x84944c1f snd_hdac_ext_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x94c0b723 snd_hdac_ext_bus_device_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa72ec1b0 snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa81eed2e snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xac626a37 snd_hdac_ext_bus_device_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc3b70053 snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd5a57cbe snd_hdac_ext_link_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd7fc6224 snd_hdac_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd8708a90 snd_hdac_ext_stop_streams -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfa02db5b snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfdd51d92 snd_hdac_ext_link_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x010b68cf snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0188150f _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x027763c6 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x042327a5 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x059d78a6 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1137396f snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17d11c7f snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19986067 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1bc89371 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1bd28077 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1dc7f362 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1eef9382 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ef493b5 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20ec2c76 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x213675de snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x265f1568 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2714e4fc snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x29e94c97 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37438c04 snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3819294b snd_hdac_i915_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39b08970 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b52ac07 snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4202ca88 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43b0b585 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4415b932 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x456d5aa9 snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48ab2540 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a29857a snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50629202 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50b2e08d snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53642fb3 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5732ce80 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x59df3b22 snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ad6779a snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b608e3c snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c28bbf3 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d44849c snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x633bf6ad snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63abae29 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x655002a8 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66e1f641 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x694b8c4b snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a348f04 snd_hdac_i915_init_bpo -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7094d905 snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73187668 snd_hdac_i915_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73ce47ff snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x76492eb5 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a519edb snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x895c8b88 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e4e1182 snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x924f722b hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e427d5d snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa38fc47c snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa11e1a1 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad0a67c3 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf2c6585 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2a05ae8 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb55ba932 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb9a538f5 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbef1b975 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0440137 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc2d6a91 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce172582 snd_hdac_i915_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1a0b62c snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda73ea4a snd_hdac_get_display_clk -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdecfac50 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf1b7e1a snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe100168c snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe3a7ddb9 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5f53f3b snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7dda958 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe90da913 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe962f880 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeed1376d snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf33d39ba snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5eaed51 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb4a77e3 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xffc94e4a snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1661fef4 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2f103073 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x408a7c14 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x74c637da snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9556da4e snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf52de9fe snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01e9219f snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0371c3cd snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04aa53b8 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07c7e3a5 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0993d403 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a24c447 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0aa1321e snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0af689d8 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d743765 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d80b8e6 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fc091ff snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x101b598a snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10884411 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x141d3bc8 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16d81ee2 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x190b7983 snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c333f04 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c429611 snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e814a0f snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x232f3a02 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ea015d7 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x309e9f9d azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3143e5af snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32bd9199 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32ec2616 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37cac300 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37df33f3 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39502f66 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3bc7fc6c snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c8a9c91 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d52dc8c snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4293d076 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43836a04 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x442fda59 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x454185ff snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46fad3b9 snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4854e367 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x517ce197 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53f25b35 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x546ac197 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x551e57af snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x575cc33b snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58f0315b snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59935761 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d2c3c58 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d4468ba snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5dbe92af snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f357639 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61a7a6a4 snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62bd07a4 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64d4e30a snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x659d4517 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69a0aa86 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c49c050 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cf27fce snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70108782 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x724322b2 snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75a440d9 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75c540a2 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x781dabe9 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a9ce912 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b469522 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d322d22 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x820b380e snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84962a98 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86aacf0d snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86f73638 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86f813ee snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87b48bf0 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b09af44 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c94c048 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e9b574b azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94b39302 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96776904 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x981fcff5 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98c52f75 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99efa278 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d4e9291 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa00a6209 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa02e7a8d snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3299e78 snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3e531db snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4e85be3 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa62b1663 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaaaf9a3e snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaeef0c52 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf0e9095 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0d0456f snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb24a3826 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb26ec658 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6faedf5 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7b48bc8 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba79836d snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdc073e5 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfefc924 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0f7904c snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc33d04f1 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc361acd9 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7a37da0 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7a9a43f snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7b80e4e snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9814d8f snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9a33745 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcad41366 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfecf8f4 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1a64a5d snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4280fc7 snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7922e5d snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd98912ca snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda27545e snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd2cd174 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde19744b snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5a980a3 snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6587476 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe697432c snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea1c8fae snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed67c78f snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef1650d8 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2ffceaa snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf96479bb azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9b563fc snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb185385 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd9acdb8 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfefe33c0 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x014219d3 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x02ff42df snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3050e617 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4cfc35aa snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x50217dc5 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6878b128 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x78e57f69 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7f85fd61 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8ceb173c snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x92ac6b98 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa2f224bd snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xab6c68cf snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbdfa3790 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc6bd2962 snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc7ba001b snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcd5b3afb snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd2026372 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe309ee10 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xee56616c snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf6cc6449 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf7d2d4b5 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xc9ca8c71 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xca5077ff cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8e21fd3d cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9cb7f4a2 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x57fc0886 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x9ae57911 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xe36cb18e cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x732942ea es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xc04051be es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x28105f44 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x591e5f50 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x63d3218a pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x64ccde77 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xea0c510b pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0xbd95ddbd rt286_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x0d969a7e rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x81bfe739 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xec88097a rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x8421d580 rt5670_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xa077e960 rt5670_jack_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xbb358c46 rt5670_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xe6aa0872 rt5670_jack_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x066b417f devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4668b871 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x704c9bc8 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc7ecae66 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe4b7de7f sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x14473eba devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x8b5cefa7 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xe4ac6585 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xb85e7b24 tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xfb9bd80f tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x2ff93d71 ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1897920c wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x27c396af wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x3ea6831d wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd92fcbed wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x19133799 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x66001a8c wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xd87c3bc8 fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xef93d40f fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x9a4b969a sst_register_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0xcc1a4611 sst_unregister_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x1b6ded92 intel_sst_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x5239327a sst_configure_runtime_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xab14edd5 relocate_imr_addr_mrfld -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xabe7725b sst_alloc_drv_context -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xb5379d85 sst_context_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xf8d8f2ba sst_context_init -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x38559f33 sst_byt_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x654b2351 sst_byt_dsp_suspend_late -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xa1d92a6b sst_byt_dsp_boot -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xd0dda96f sst_byt_dsp_wait_for_ready -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xd5ff3530 sst_byt_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0781cad3 sst_fw_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x108d109f sst_dsp_shim_read_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x124b44e2 sst_dsp_shim_read64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x150713a5 sst_dsp_shim_read64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1b5e8b82 sst_shim32_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1c1dc72a sst_dsp_shim_update_bits64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1cc24c20 sst_module_runtime_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x23db7709 sst_block_alloc_scratch -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2a5e411c sst_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2bb916ed sst_module_runtime_get_from_id -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x30f8dfa3 sst_mem_block_register -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x33d3193a sst_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3b5d0aeb sst_dsp_shim_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x42e2f16f sst_dsp_ipc_msg_rx -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x439fccb6 sst_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x451a2267 sst_dsp_dma_put_channel -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4a045773 sst_shim32_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4c77a8f1 sst_fw_reload -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x511fcec8 sst_mem_block_unregister_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x53000a74 sst_dsp_inbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5483bc8b sst_module_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5725f780 sst_module_runtime_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6494e262 sst_dsp_reset -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x66a8db76 sst_module_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x69706391 sst_memcpy_toio_32 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6b87ee4e sst_module_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x707ea413 sst_dsp_shim_update_bits64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x71a7517b sst_module_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x77c42f90 sst_memcpy_fromio_32 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7a79da0d sst_fw_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7daf37ac sst_dsp_shim_write64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x80843c13 sst_dsp_shim_update_bits_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x81543d9a sst_dsp_shim_write_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x87b49114 sst_dsp_get_offset -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9120b0a2 sst_module_runtime_save -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x925eb0e8 sst_dsp_outbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9b4f2830 sst_dsp_inbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9c5d5cde sst_dsp_dma_copyto -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa2e5dd18 sst_dsp_shim_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa4e81f0e sst_dsp_outbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xab439516 sst_dsp_shim_update_bits_forced -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb18181d4 sst_module_runtime_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb6e4a7ec sst_module_runtime_restore -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbc1b9e80 sst_dsp_dma_copyfrom -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbce71cb2 sst_dsp_shim_update_bits -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbcec5387 sst_shim32_read64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc6c86440 sst_dsp_ipc_msg_tx -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd1c1f6a5 sst_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd28e49c0 sst_dsp_register_poll -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd86be419 sst_dsp_dma_get_channel -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd88fb45c sst_dsp_shim_update_bits_forced_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd994604a sst_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd9a2c94c sst_shim32_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdc8e3f2c sst_dsp_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe1e5ee63 sst_fw_free_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe5cd20ce sst_module_runtime_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe84a12e2 sst_dsp_mailbox_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe99fa6d6 sst_module_get_from_id -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xeb1db49e sst_dsp_stall -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xeee0e03a sst_fw_unload -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xefbefab3 sst_dsp_boot -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf3cbdbb1 sst_block_free_scratch -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfb0af0c9 sst_dsp_shim_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfb923122 sst_dsp_dump -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x0e24b0d1 sst_ipc_reply_find_msg -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x3276f327 sst_ipc_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x377eab25 sst_ipc_tx_message_nowait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xa2426fcd sst_ipc_drop_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xd7280c99 sst_ipc_tx_msg_reply_complete -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xd77c1d9a sst_ipc_tx_message_wait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xfb31943e sst_ipc_fini -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x4efcaadb sst_hsw_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x59aae0c0 sst_hsw_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xd1f69f64 sst_hsw_device_set_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x01bf498d skl_ipc_restore_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x02f4b8a5 skl_ipc_delete_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x0abbe476 skl_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x14746f47 skl_ipc_set_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x2583afa7 is_skl_dsp_running -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x3336e2d3 skl_ipc_create_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x3adf6d49 skl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x6912aede skl_ipc_set_dx -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x8fa65e22 skl_ipc_bind_unbind -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xa5a52845 skl_ipc_init_instance -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xaa1a22d5 skl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xb80a1de2 skl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xd2dc9182 skl_ipc_set_pipeline_state -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xd3ee5185 skl_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xd9d4fec1 skl_ipc_save_pipeline -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x007c7590 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x020a798a snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02471e46 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0328a663 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03eaea2b snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04036eef snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07921298 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a1d0bf4 snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b261017 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c62095e snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e1a2dc5 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11cc5de2 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17340cc7 snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18297e16 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19bf0779 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1adee7d6 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b12f0f6 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b306ae4 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c3dccff snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f74296d snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20ecc0bd snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2187e16c snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x225e0ce5 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x228a2f89 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x286e5def snd_soc_tplg_widget_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28cd82b8 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x292e5022 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a7cbd56 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b6b6974 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c81242d snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2efc1825 devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f6e10dd snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x317bf1bc snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3210f0cc snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x323e5670 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x329d292d snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x347ccc7c snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x351f7b80 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36724bc8 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38295078 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a701ffb snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3aad5ee6 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d0d1cda snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41b3b50e snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41b6d935 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46afd19e snd_soc_tplg_widget_remove_all -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48f19080 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f3262ce snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fe30e68 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ff1081c snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x505f25e5 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5144a179 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x539d527e snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54b3995d snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54e71178 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x552e74bf snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57faa297 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57ff4f88 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a258b6d snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e4fe6e3 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x608ecd1d snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63d609d4 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x645b0587 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65be5596 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6894a364 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6914d2bf dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x693eb59e snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69f27140 snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f727d22 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71460d58 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x754e1e57 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76704eab snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a123d98 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b369baf snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c2d9931 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f965d3b snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8108fbf6 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x821b3d68 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8441d0f6 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8677740e snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x893070bf snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a7a6662 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8aef0e2c snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bb9d78e snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bc64e36 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bd2661b snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cda4b2f snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d39c083 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f192406 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x911dea5c snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93e138ac snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98cb1828 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99855978 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99b2dee5 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99b63bcb snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ab75d3d snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cd43f40 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5554f5b snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa606e1ce snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacbe6e52 snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaec81596 snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf326fda snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafe1b133 snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2dfd26d snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb35ecbb2 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3a7190b snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7f6f7a9 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb83b30dc snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba9be03d snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbaf6c43a snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc9012d2 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd588707 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1643311 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8237aa4 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9f92283 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca33f7f8 snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb396a8e snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb4b43c6 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbe49e7f snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc04e0b5 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xceaaa92c snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0bfb030 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7cd8b82 snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8ba384a snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8d1273d snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9ee4f4e snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbcb29b6 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc3c993c snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde9dc9ae snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdee37a3c snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe04d9a54 snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0ee5f10 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1ccf6b1 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1ffd934 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3a9da25 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb223ccc snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeba564f6 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec6e89b2 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef2fcaf3 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefcc979d snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefe22901 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1fa94be snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3a69239 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf40d8d7e snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf620abce snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf661ea6c snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf73a1544 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7766646 snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf78dcc04 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf90210b8 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf90f9a79 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbd0f69e snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd422959 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe9b91f3 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0b71d703 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2551aa30 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x261c6d3b line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2d423e24 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x32846603 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x414771cc line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x68da393d line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6d07c6e1 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x79860d91 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x90822013 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa11e7ce1 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa91996c2 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xafdc9c82 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc908ce42 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf5a95dd2 line6_probe -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x08003b2f i915_bpo_gpu_turbo_disable -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x0d97d346 i915_bpo_gpu_raise -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x358a54ae i915_bpo_gpu_busy -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x451432c2 i915_bpo_gpu_lower -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x7d4de94c i915_bpo_read_mch_val -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x03e2b9ed rsi_hci_attach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x0643a2ac rsi_hal_device_init -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1e678bb2 dot11_pkt_type -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x22421130 rsi_deregister_bt -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x25c4d39f rsi_config_wowlan -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x406f8a44 rsi_default_ps_params -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x437447f4 rsi_hex_dump -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x45ca198c ven_rsi_dbg -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x4933a703 rsi_hci_detach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x4f4bee18 rsi_init_dbgfs -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x5466945c rsi_hci_recv_pkt -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x57c83f81 ven_rsi_read_pkt -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x5955d54f rsi_send_rx_filter_frame -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x6751b56c rsi_remove_dbgfs -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x6d21d369 rsi_send_rfmode_frame -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xa301842f ven_rsi_mac80211_detach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xdb078836 ven_rsi_91x_deinit -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xe30ab07f ven_rsi_91x_init -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x00059b28 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00068cbb crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices -EXPORT_SYMBOL_GPL vmlinux 0x003da223 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x003e8508 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x004151c2 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x006ed81f crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x009b7fe3 acpi_subsys_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x00a1c5f6 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x00db7e03 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00e4055a aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x00e6f2d2 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0100a81a __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x01075eff crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x010e0f06 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x011377e4 acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok -EXPORT_SYMBOL_GPL vmlinux 0x0188aea4 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x0193750e virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x01a756c5 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x01b6bfe6 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x01c3f73f md_run -EXPORT_SYMBOL_GPL vmlinux 0x01d82cc5 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x02110793 acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x02141056 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x02350504 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x024b9178 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x025f3159 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue -EXPORT_SYMBOL_GPL vmlinux 0x0268e921 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x027579b1 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x029084c7 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x02967fab fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x029a9438 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x02afef08 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x02dc2de0 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x02e2fd6f device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x02ffa07b fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x034c6759 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x0398862e simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03a417cf pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x03c2ee30 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x042a95ff sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x043a4674 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x04606178 sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x047a4776 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04a9410b __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x04c49c8f blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04d11be3 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt -EXPORT_SYMBOL_GPL vmlinux 0x04ee24d6 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x04f0f1ad devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x050bbe83 blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x051e9755 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x0523c1a0 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x052c3e7f __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x052eb281 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x054983c6 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05514549 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x055f670a tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x0573a2a6 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x05943dd6 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x05add3fd dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x05b4157c regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0624f3fb crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x064c1828 tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x065f6826 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x065f9f09 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x06807848 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x0682f117 agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0x06851068 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x068fa403 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x0695dc22 blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x06b1cdd4 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio -EXPORT_SYMBOL_GPL vmlinux 0x06fd340d __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x06fd8557 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x070ca059 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0x074964d0 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x074f8bbb pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x07505e78 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x07784ce0 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x07794e2f class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x0788b634 irqd_cfg -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07c5d490 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x07d1f681 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x07d4d65a __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x07f3962e __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x081020f3 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x0834d94e dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x08372be1 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x08460cfc usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x08928f3f regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x08955466 klp_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec -EXPORT_SYMBOL_GPL vmlinux 0x08cba1eb ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x08db7cad scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x08f3acb5 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x092cbc91 single_release_net -EXPORT_SYMBOL_GPL vmlinux 0x0940e8b6 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x094d4147 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x09b1939b usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x09bb4acb gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x09f78eb4 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x09ff9d0c __class_create -EXPORT_SYMBOL_GPL vmlinux 0x0a072b1c xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x0a347ad0 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0a696f12 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x0a7bb731 acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x0a808d88 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x0a86ab7b pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x0a911dff cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x0aa91b99 _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x0ac1c7a3 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b34c761 device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b5e2c3a __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0b9a2651 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x0b9e3096 fpu__save -EXPORT_SYMBOL_GPL vmlinux 0x0bae8e54 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x0bc6a4c1 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x0be3cdbb dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c4d9496 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x0c4f1276 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0x0c57502a ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range -EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init -EXPORT_SYMBOL_GPL vmlinux 0x0c8ec4d9 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x0ca29edc inet_csk_compat_setsockopt -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0cdb27d1 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x0cf309dd xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x0cf3d765 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x0cff4e07 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x0d260817 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x0d411832 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x0d41d9ac task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d570310 find_module -EXPORT_SYMBOL_GPL vmlinux 0x0d6ab1b1 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x0d6f02f4 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x0d75980f fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d950203 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x0dc6849e pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x0dc90272 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x0dccc931 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0x0dd602a2 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0ddbce49 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x0dde4927 xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0x0df925f6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e4c399e fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x0eaf8ee4 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x0ec58c80 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x0ed22d7b smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x0ee3243f usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x0f052560 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x0f23e04e ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x0f243530 acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0f83cda6 kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0x0f8e9aca init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x0f9b9c14 x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic -EXPORT_SYMBOL_GPL vmlinux 0x0fa47ed8 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0fcb9750 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0x0ff2a3a9 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x10056ac8 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x101d1747 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0x1047f89b pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x10518ec0 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x108b5e6e pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x10a72f82 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x10b0cc5a wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x10d4b576 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x11185dfe hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x11398c86 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x113b92e3 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x115ec0bc usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x1181b1af transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x11929684 irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x11caddc7 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x11ea5c58 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x1204937f bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x12119637 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x121c44af tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x12365646 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x1263de5b devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x127402f1 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x1292cdce perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x12d0f0b5 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x12efd8eb virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x12faff30 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x1300fce2 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x13066bd9 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x1306c119 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x130bd388 check_tsc_disabled -EXPORT_SYMBOL_GPL vmlinux 0x130de01d trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x13181a21 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x132cc9e7 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x1342a95c ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x13614109 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1362ce02 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x138554b3 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13b27896 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13d62960 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x140ed5d2 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x14208085 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x1445d22b bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x1449f1fd ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x144d8260 dax_fault -EXPORT_SYMBOL_GPL vmlinux 0x144e2124 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x144f2eae led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x1466726c __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0x146675e8 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x1480753d ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x14853a35 __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x149369ab xen_swiotlb_dma_mapping_error -EXPORT_SYMBOL_GPL vmlinux 0x14981779 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x149c2d3c regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x14b91d7f dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x14bf4f38 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine -EXPORT_SYMBOL_GPL vmlinux 0x151b064c power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x15311ec4 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x153f933a attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x154007f0 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x1567404d wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x157a7511 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x158b52cf __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x158ea133 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x15a68b6a inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x15a6aa00 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped -EXPORT_SYMBOL_GPL vmlinux 0x15b41edd fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x1617cfe6 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x161d3355 arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x16240bfc sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x163485c3 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x165c1add mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x16699c8e irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x16890042 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x168cf33c generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x16946df5 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x16987c55 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x16a2d436 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x16db89e0 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x16e215c6 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0x16f5c094 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x1700126f rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x17188561 ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0x172360ed cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x172817ee list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x17348099 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x1750f966 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x17811127 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online -EXPORT_SYMBOL_GPL vmlinux 0x17a1ecaa tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x17c0f479 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x17dbf80e msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x17e876b9 bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x17eb45ce __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x17fb1038 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x17fd0603 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x17fd6c75 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x1837d352 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x184d9676 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x18570363 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x186f4521 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x18835e99 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1883c6ce ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x18925393 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x18af5e49 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x18b8d2c2 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x18ba8a88 cpu_tlbstate -EXPORT_SYMBOL_GPL vmlinux 0x18dcc4a4 gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x18e3aff5 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x19045d5a rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x19255513 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x19256e73 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x19290904 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x194d99a4 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore -EXPORT_SYMBOL_GPL vmlinux 0x19761a92 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x19868150 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x19905380 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x19945c02 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19b31be8 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x19bbdb58 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x19db6721 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x19e08e01 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0x19e3a004 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x19fecb0c blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x1a10b793 tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x1a209c99 regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x1a6feef7 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1aae1761 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x1aae1b49 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x1ac7b674 get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x1aced8a1 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1aea95c0 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x1aeef256 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x1af9d31a rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x1afedae4 xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0x1b22a5a3 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x1b38b43e irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x1b3caaee __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x1b61470d sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b893f31 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1baeef6b pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x1baf412f mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x1bb1ea71 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x1bb4f7b4 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1be814dd __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x1c110376 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x1c418118 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x1c46229a acpi_dev_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c60a8cc fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x1c6660c7 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0x1c7b6220 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1ca1e84f tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x1ca29785 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x1cb5a95c ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x1cc7ebdd uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x1cec802e tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x1cf2abdf pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x1d0d4f74 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x1d0ed0cd sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d36766e acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x1d406075 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x1d459685 xstate_size -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d652735 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1d65ca5c led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x1d676077 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x1d8955bd usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x1d9028e3 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x1dccf3ef tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x1dd6e662 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x1deaec6f md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x1df584a6 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0x1e1c47bf dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x1e1eb20c tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1e29b908 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1e352c08 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x1e44c0fd gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e635f7c dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x1e64bb1f securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x1e68ce14 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e9a6903 securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1eca65d1 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1edc21cb hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x1ee96fc9 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x1f07cdb6 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x1f07fe0a device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x1f2efd2a handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x1f578d92 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x1f5dfae2 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8b7209 ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1fb63542 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x1fcbdffb unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x1fdaa23c __online_page_free -EXPORT_SYMBOL_GPL vmlinux 0x1fec0bf2 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x1ff03fe2 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x1ff6a053 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1ff6ef06 klp_enable_patch -EXPORT_SYMBOL_GPL vmlinux 0x200cc695 __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x20196a4b devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x2034badf virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x203c70da simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x2055bb88 acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0x2056f355 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x206101d8 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x207f2ede hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2086e9c5 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x208eb004 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20bea350 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x20cc9788 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x20ddfc20 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x2134c465 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x2134c6a9 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x2134da7c power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21ddd09d aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x2243e957 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x224f79f8 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x22868cfe ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0x228ccbe5 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x2293fffd ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events -EXPORT_SYMBOL_GPL vmlinux 0x22a12929 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x22a2048d xen_swiotlb_sync_sg_for_device -EXPORT_SYMBOL_GPL vmlinux 0x22b4e944 raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x22b9b1b8 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x22eafbd8 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x22efcb63 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x22feabe7 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x2303553b io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x2309898f bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x23413fb6 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x2360608a virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata -EXPORT_SYMBOL_GPL vmlinux 0x2384bfd3 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x23857aa0 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x2396f0c1 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x2398bd52 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x23a85cce pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x23bc00f0 rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x23e1714d class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x23e4699c regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x2408d628 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x2409e72c blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x2413ed4b __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x24165982 pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x243f1b65 efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x244805de posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x245199d0 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x2467899a dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24abbc7b __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x24bb674b regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x24c67694 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x251f41c8 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x252c09be injectm -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x254b2836 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x256a0934 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x256b51d8 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x2589c75f fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x258e7a6e ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x25c8ac1b acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x25d700b8 gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x263f7f23 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x264313f1 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x264a3f17 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x264b8b16 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x2656acec usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x2676fa11 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x26a1d12f blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x26a8ffb1 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x26aac4f1 xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26e6ebdc mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x27075825 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x27104066 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x2750439b __dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0x2797f2ce attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x27ad3102 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27d0716d power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x27e88795 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x27eabea8 print_context_stack_bp -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x280822fc regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0x28084a7d reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x2845272d find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x286373c6 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x28653624 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x286da7d6 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x286f97a3 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x28759cca cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x287b704f platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x288fd579 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0x2892849d l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x289fb103 i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x28e2e9cd hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0x290cb882 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x291ea0e0 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x292f2c0a phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x29439599 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x2962aa1b task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29d80dd2 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29effeaa usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x29f286d0 sis_info133_for_sata -EXPORT_SYMBOL_GPL vmlinux 0x29ff5fe0 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x2a029e5a ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x2a02af8c tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x2a0543ea hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2a277163 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x2a2ed8e9 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x2a51bc99 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a824f2b device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x2a915c17 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x2aa5cba2 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x2aa9f0cd regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x2ac07902 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x2ad4fa6c __add_pages -EXPORT_SYMBOL_GPL vmlinux 0x2ae39fe7 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x2ae50a27 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x2ae98259 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x2aef611a usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x2af8ba78 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x2b0ff469 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b36113f relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x2b725190 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2bda2243 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x2bda70fa devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0x2c083109 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x2c0ef571 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c3c0334 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x2c442f55 dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0x2c4a2a38 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x2c4d2b6a vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x2c56e558 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x2c6a6e53 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x2c6d84d8 skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2cb33045 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x2cc04d8f pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x2cd16f6d ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2cda7079 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cf41fa3 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x2cff979e regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x2d071bfa pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d3448e8 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d4fe352 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x2d520d8e device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d5ccf39 rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x2d621d94 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x2d6ba3de intel_svm_bind_mm -EXPORT_SYMBOL_GPL vmlinux 0x2d8636ae gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x2d9252fe skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x2da41af9 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x2da4a581 gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x2da5160d nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x2dc9ecd4 crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0x2dfc75bc platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x2e22c12a rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e5035aa xen_swiotlb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x2e59e2d6 ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0x2e60c0da crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x2e6180b2 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x2e78bf95 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x2e9fba4c perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x2eae8015 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2eb45988 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec339b6 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2ecc95d2 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x2edee608 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x2eeacb60 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x2ef29b24 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x2efafca0 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x2f011d01 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x2f03a587 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f171333 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f5f427a perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2fb4fe82 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x2fc17796 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x2fdeb87b __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x2fffbbfb dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x3004b7c3 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x3009092c devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x30499dbb irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures -EXPORT_SYMBOL_GPL vmlinux 0x307d2329 xen_swiotlb_set_dma_mask -EXPORT_SYMBOL_GPL vmlinux 0x30823f09 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x30abb6ed xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x3107bca9 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x31087fb2 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x310fc319 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x3113e264 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31586604 posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x315b2d98 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x315ebb8f blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x3181a98f virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x318d07aa regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x319e0356 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0x31acccd7 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31e290d1 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x320335af devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval -EXPORT_SYMBOL_GPL vmlinux 0x322c0deb nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x325c4a99 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x32803647 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x328b6d38 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x328baacf page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x3293fd84 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x32a03d16 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask -EXPORT_SYMBOL_GPL vmlinux 0x32e6b257 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x3355ab81 __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size -EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync -EXPORT_SYMBOL_GPL vmlinux 0x336be203 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x337159da ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x3371772f devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x337ec42a dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x33b8aa38 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x33c378ab power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x33c5d52c usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x33ea1df0 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x33eea49e wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x34132aa2 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x342d9950 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x343d3514 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x349e284d gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x349f6e27 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x34a5911c shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x34dbdbe9 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x3516bdef trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0x352b01ae list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x35344f34 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x35415520 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x3554abd3 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x358f44a0 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x35b29745 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x35d546b1 pinctrl_utils_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0x35ffe32a tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x3600f546 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3612d33c iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x362430f0 component_del -EXPORT_SYMBOL_GPL vmlinux 0x3668af32 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x3674de4a ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x367eced8 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x36803287 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x3684e6b1 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x3692aa11 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36ac2370 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36c71311 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x36f2891e __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x36fcb85d ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x370ae976 xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0x37325dba devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x373b25ef device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x373c0bb9 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x376d6471 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x376d77ef uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x3785c285 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x37a6d98e crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x37a82e63 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x37bac625 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x37ce0f6a pci_msi_prepare -EXPORT_SYMBOL_GPL vmlinux 0x37cf637a usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x37f1ffbf gdt_page -EXPORT_SYMBOL_GPL vmlinux 0x38181490 pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0x38274deb trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x382a2e86 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x3834b310 tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x383dfe92 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x384d2df8 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end -EXPORT_SYMBOL_GPL vmlinux 0x3885fa6e relay_close -EXPORT_SYMBOL_GPL vmlinux 0x389dae51 xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0x38be3cdc klp_unregister_patch -EXPORT_SYMBOL_GPL vmlinux 0x38d6160a usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x3909513b dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x39218330 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x39339594 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x393b607e ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x39773a19 i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x397cba32 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x397d7737 hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x398b9aac pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x39b1319f iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x39b834f5 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x39bbb43b clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x39be0453 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x39c2ac56 pwm_config -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39d57bd9 rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39f87f89 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x3a0c6909 blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a2c1dc7 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x3a38dc65 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a58472a pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x3a60b72a phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x3a67e0c2 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x3a6a849f smp_ops -EXPORT_SYMBOL_GPL vmlinux 0x3a6aa19a pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x3a6c428f blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0x3a6dbb07 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a9650b4 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3a9db8d8 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x3aabd7b5 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x3ac43a9a ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x3ae43ccf alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x3aeb7087 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x3b07b9ef driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x3b0bd014 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x3b411846 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x3b46f222 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x3b5b77d4 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x3b6658fb sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value -EXPORT_SYMBOL_GPL vmlinux 0x3b716871 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x3b8e765d pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x3b8fb567 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x3baa5e3d sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x3bbfad15 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x3bccd614 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x3bd2ff87 bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0x3bdb4126 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x3bded44a inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x3bf087f2 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x3bf950f4 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x3c0f1587 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x3c52cc83 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x3c81a83a set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3c969add usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x3cae4dfa pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cfc28da put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x3cff1cc5 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x3d061f12 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x3d2e46b3 klp_disable_patch -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d3a60ec get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x3d4cfdb2 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x3d5aeb7e rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0x3d5f392d acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x3d6efc52 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x3d7704c2 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x3da58470 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x3dae6404 unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x3dc9129f init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd55ecd sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x3dd67ffc ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x3de4c1a4 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3df26c16 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x3e238f4e bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e2ff3ad debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x3e4fb90b pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x3e526838 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e74ae02 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x3ea4df40 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ea84700 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x3ee92a48 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x3eea1a02 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3efa1d72 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f0d252d wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin -EXPORT_SYMBOL_GPL vmlinux 0x3f547d2e __put_net -EXPORT_SYMBOL_GPL vmlinux 0x3f7813f1 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x3fa1e037 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0x3fa89574 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x3fd056d6 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x3ffddd31 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x400aa23c mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x4010b80f pmc_atom_read -EXPORT_SYMBOL_GPL vmlinux 0x4018c7e1 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x401e84c8 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x402354c1 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x404e6a74 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x40525c04 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x40699fb9 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x408212ba hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x40a53fe0 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40bd5a15 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x40d242a4 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40deeb77 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x40df5f0c ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x40e1fddb ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x412d040c usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x412f4a36 iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x416283c9 get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x418710e7 mce_inject_log -EXPORT_SYMBOL_GPL vmlinux 0x4191548c arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x41c6f6a5 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41e04fad bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x41f74014 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x41fdc093 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x42160c13 sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0x421fdd4b desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x42367b93 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x424232f5 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x4255026d kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x4277c797 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x427a1d92 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x427d5c68 register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42896f99 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x429f9ad5 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x42b035ee usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x42b59e6a blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x42bb8d80 perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0x42d5ea16 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x42f07f65 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x43050abf transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43064444 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4315fe4e metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x43194f83 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x43346065 acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0x4335ba23 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x433bb7f3 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x433f7fd6 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x4353b163 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x4366c6c5 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4378fddb phy_create -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x43a1aac2 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43c1e0f0 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43d2fffc ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x43e13c0c pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x43ff0c10 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x4407733d ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x4418b2ea usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save -EXPORT_SYMBOL_GPL vmlinux 0x44334563 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x4437760b regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x443b43a1 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x44403674 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x4441c3c7 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x4481db81 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44a9b477 input_class -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44d42993 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state -EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store -EXPORT_SYMBOL_GPL vmlinux 0x4564ec18 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x456a46e9 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x4571969e fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x4586676e securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x458efd43 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x45b875e4 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45c2a311 reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page -EXPORT_SYMBOL_GPL vmlinux 0x45d8e566 rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x45fb0833 swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x46061843 __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data -EXPORT_SYMBOL_GPL vmlinux 0x4610277a wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x462aeff3 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x4631d2ac pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x4638e646 thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x46434934 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x465ac57c unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x465f84b5 seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0x4663d883 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x4678157d pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46bc52ad netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x46ce0269 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x46f22750 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x4701954a tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x4706a02b cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x470f8c04 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x47144886 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x471b5950 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x472e6c88 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x47394c2d cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x474a1d41 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x476ac00a fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x47833594 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x478f5400 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x479efc46 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x47a17cbe xen_remap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47d7385c register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47fd5c3c device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x482154cd find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x4837298b inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x483d6327 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x4894bc54 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x48a708ea regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x48b79769 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x48cd557d nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0x48e102a9 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x48f45ad3 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x490a8df6 x86_platform -EXPORT_SYMBOL_GPL vmlinux 0x493f51b8 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x49435666 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x495ded38 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x49630d1b crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x496c1a02 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x4992251e fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x49a40ef1 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x49d3b152 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x49e4eb33 pv_info -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f93d88 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x49fd1399 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x4a189ae8 iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x4a2ba347 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x4a3c3cf9 microcode_sanity_check -EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a4d9180 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x4a5115d9 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x4a796232 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x4a7d0766 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf -EXPORT_SYMBOL_GPL vmlinux 0x4a94450b ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x4a9f2bf5 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ab77d41 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x4ab84afb pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x4ad609ce __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x4ae7eb53 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x4af542ee rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x4b0c19f7 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x4b105921 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x4b3a7319 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4b81e9b3 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0x4b8dc414 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x4bc5b9b7 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x4be36d8b dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0x4beee18b i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0x4c0130fb ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x4c192b05 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x4c2a472b __static_cpu_has_safe -EXPORT_SYMBOL_GPL vmlinux 0x4c2b858e hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x4c317dff devres_find -EXPORT_SYMBOL_GPL vmlinux 0x4c397d36 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x4c4f7aa5 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4ccdefd4 acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d064349 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x4d1d36e1 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x4d24e22b crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x4d43df2c platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x4d5321a3 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x4d60b812 efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x4d983068 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x4dae5632 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x4db9a097 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4ded2102 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x4df6e727 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x4e021022 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x4e0d7a02 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e1ea947 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e28812f edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0x4e4ba373 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read -EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4e6c2b09 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x4e7f14ff mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4e89a7de bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0x4e946816 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x4e97a832 tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0x4e9f9406 xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0x4ea28b58 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x4ea8ef19 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4efde56c __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4f2bf25d pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0x4f2d3866 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f5b689e xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f6d2b34 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x4f87b62c devres_get -EXPORT_SYMBOL_GPL vmlinux 0x4f8c2b17 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x4fb5b542 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe090e7 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x502f2068 crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x50323e92 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x5043ab16 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x505bc4fb balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x505c133a trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory -EXPORT_SYMBOL_GPL vmlinux 0x50830b26 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x50854b57 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x508d5651 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x509b4305 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50eb4f80 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x50f80b49 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x511055eb blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x512b1d19 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x5146588c rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x51538c86 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x5166e2b2 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq -EXPORT_SYMBOL_GPL vmlinux 0x5191bd3c efivar_work -EXPORT_SYMBOL_GPL vmlinux 0x519568ab regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x51a6d25d handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x51c936cc driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x51f7be8c shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x51f8426d pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x52108c2a iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x52314193 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x5248e1e2 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x525442c8 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x5256f56d xen_swiotlb_sync_single_for_cpu -EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x52a02df2 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x52a93e95 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x52a9c30b ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x52b24f2d devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x52b79ef0 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x52cb3e30 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x52e5fcec sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x52f492b0 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x52f54cc9 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x53228e41 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x534505d5 xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x53613b60 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x53619445 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x53644e1b pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x53806c1c md_stop -EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late -EXPORT_SYMBOL_GPL vmlinux 0x53a7cd9f rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x53d0b7e2 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x53d6ef3a crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x53eea05a dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x54057233 acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5414b821 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x5423e3b4 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x54289d8c module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x5429008e transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x5443aa0a netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x54495752 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x544df857 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x545ee955 fpu__activate_curr -EXPORT_SYMBOL_GPL vmlinux 0x54609b64 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54b78126 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54f7910f noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x55009d49 put_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled -EXPORT_SYMBOL_GPL vmlinux 0x55181725 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x553cdacb balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x557bd361 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x5593d715 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x55a32da1 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x55d1fb03 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x55e41968 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x55eba7bf gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x56070c5b gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x5607dac6 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x5633ce64 acpi_dev_gpio_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x565a043c devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x56672f75 rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0x5677a773 xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x5695d3bb ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x5696bd9a wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x56c651d6 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56dd678d debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x56e4e95e usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x5726a3ff device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x572a307f pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x5775e75b acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x5795fa5e pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57c22faa pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57dec1e4 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x580116c5 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x582c691a xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0x584096c2 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x5845a79e pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0x58662073 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x5867a9d9 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x58917c04 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x589a8f83 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58af8dbe serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x58b6fa2c serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x58c108f1 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x58d78748 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x58ebe523 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x58f42540 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x58fb96e1 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x591d7828 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x591f4ad2 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x592c77ee anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x593226c5 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x5946f4d3 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x594d7909 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x5983c5a3 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x598d9106 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x5996f5d7 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x59a56a33 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x59ac510c phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x59b0882b md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59e9f033 devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59f4083e digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x5a06bab2 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x5a52b4dd iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x5a73fb51 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a75c450 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a8dbc52 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x5aacfc1b mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x5ad0cbc1 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x5adc8153 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5ade412f i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x5ae39dcf inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x5b058914 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x5b11b57a irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x5b14745b inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x5b15ce53 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x5b1899f8 free_iova -EXPORT_SYMBOL_GPL vmlinux 0x5b2d030b regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x5b506ab3 dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x5b6e69be find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x5b6e9069 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5b76af14 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x5b7b760f tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x5bb08217 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x5bc3b274 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x5bce8ca1 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bf2f867 xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0x5c20921f pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x5c260c4b __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x5c280eb4 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x5c29d97a sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x5c34d823 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x5c42930a ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x5c51a468 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x5c547a56 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x5c598c97 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c65cea6 __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker -EXPORT_SYMBOL_GPL vmlinux 0x5c6f88d6 skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x5c71ed1d napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0x5c74e5d3 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0x5c8766b5 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x5c879beb dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x5c8bcceb devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x5c9c7620 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cae70b0 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5ce0dcc2 regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x5cf7ee08 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d185781 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x5d26879a iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x5d26a313 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x5d33e56c regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x5d411639 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x5d515011 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x5d9aab8e register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid -EXPORT_SYMBOL_GPL vmlinux 0x5dcd7160 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x5df6ef4b __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x5df7ae8f crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x5e111dbd __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x5e1b683e dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x5e1d4117 blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x5e3c29bd usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e5c7c36 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x5e64d509 wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x5e9e4f48 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x5ee68fd8 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x5efd5040 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x5f1e5a89 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x5f2a0f1f acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5f4248e0 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5f4fd885 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x5f66ad32 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x5fc7eb5e extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x5fcc5e15 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt -EXPORT_SYMBOL_GPL vmlinux 0x5fe61634 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x5fe907b7 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x6056eb77 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x605df80f i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x60778e9c da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x60930d37 save_mc_for_early -EXPORT_SYMBOL_GPL vmlinux 0x6096fa5b crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a17123 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x60a903d7 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x60b05e1d __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x60c3d793 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops -EXPORT_SYMBOL_GPL vmlinux 0x60cfe745 blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60ea20fa ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x60eab2fe xen_swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x60f77810 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x60ffdbc1 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x611cce83 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x61673eaf inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x61cc7b2d scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0x61e507ed pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0x61f705ea __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x622f1abe sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable -EXPORT_SYMBOL_GPL vmlinux 0x625e8621 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0x626545f4 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x62cf3ebb devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x62fb46b9 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x62fe0cd2 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x632ad3ca sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x632ce5f0 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x6333072c gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x63388b65 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0x63825fbf devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x638fe045 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x6396fe13 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x63982708 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x63ae6f6b fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x63db1a2d ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x63e2d96c rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x63f7af97 __online_page_increment_counters -EXPORT_SYMBOL_GPL vmlinux 0x63fdf3c9 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x643c3c49 blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x6442ddd5 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x64461782 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x6479183e acpi_dev_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x64a4164c regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x64dd1009 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x64f62d0d spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x6505f480 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x650eba04 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x6523bef7 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x6528ce67 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last -EXPORT_SYMBOL_GPL vmlinux 0x653e580c da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x6572ffb7 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x657feecb pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x6586d8d9 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id -EXPORT_SYMBOL_GPL vmlinux 0x65937944 dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x6594d64c scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65bfdb04 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x65cbc0e0 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65ceb000 tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x65e531ce tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6625ce56 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x6627a601 of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x66557a54 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops -EXPORT_SYMBOL_GPL vmlinux 0x667201e3 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x668c845b xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x668c91c0 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x6690e5b6 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66cc4396 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66f59931 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x6747d057 shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x675c47fb acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6763f6c3 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x678b4ee0 irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x6798aee9 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x679d6339 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x67b66df7 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x67c85300 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x67ce0670 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x67d5ffc6 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x67da787d pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x67dd8cca inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x67de5322 acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x67eb95ce __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x67ef417d scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x680a4ad2 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x6813dc5f ping_close -EXPORT_SYMBOL_GPL vmlinux 0x683682e3 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x685e6c18 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x6871c3ea bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x688352a6 gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0x68849bd9 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x6899fae1 fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x68a117b6 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x68a56916 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x68b505a6 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x68b8e6f7 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x68c8a5a0 extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x68c97e18 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x68d99807 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x68ec7bfb crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x68f187a7 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x68f6e95a crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x68f9b37f sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x68fd9333 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval -EXPORT_SYMBOL_GPL vmlinux 0x69238526 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x693170bf pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x6937668b flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6945f8be nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x69510136 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x69a9a42e rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0x69baad54 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x69c717b3 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x69e86239 extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x69eb703f skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x6a0eaa64 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6a10211f gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a26f72a sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x6a38ecb3 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x6a3f9e76 phy_get -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x6a7077d8 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x6a776de3 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x6a7c5580 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6a7fdafc attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b24a150 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b397b98 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x6b42d18e led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x6b4afd0c dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x6b4e857c regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x6b5a819b spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x6b602781 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6b6402f0 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b89d380 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x6bc795e2 mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x6c030a6e component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x6c174f72 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x6c211f28 xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x6c349723 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c6538df init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c66f9e6 efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0x6c6e5e03 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x6c818042 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6c87e5c3 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x6ca45a52 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6ca96a51 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x6cb4af8e ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x6cb780cb sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x6cc08046 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0x6ccb51ba fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cd54274 seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0x6cd5f6e9 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x6cf4e04a tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x6d0fee94 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x6d1053ae nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d64513c irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x6d663d6b blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x6d8d09ff ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x6dacd0f5 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e21aa31 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x6e250c4e power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x6e32f691 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x6e6e13da regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6ea98361 ioremap_page_range -EXPORT_SYMBOL_GPL vmlinux 0x6eddd276 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x6efb0a78 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x6f0b544b queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x6f0ecadf handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f2aaade wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x6f59a832 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x6f6ecb53 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x6f761f45 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f80bbc1 dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0x6f8143ac ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x6f87ebd4 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x6f899c48 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x6fa743b3 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x6fd9b51f crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x700a39e0 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x701429fb gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x704a1901 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x7050388c usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x709432f4 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x70a029bd uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x70b38f7d xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d1e3b1 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x7108e6ee gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7153799b reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x717e724e __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x719482eb scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71bf9fdb __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x71c9e5e3 bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x71eb2557 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x72164746 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x721e84e2 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x722cd597 rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x722dbe83 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x72318d8c power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x72670b2a usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x72c0f17a regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x72e7f899 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL_GPL vmlinux 0x734aeef8 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x73690617 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x737d8afe find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73ad4f8b extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x73afb372 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x73b75471 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x74780338 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x7482fe36 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x748e15cc gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x74a3843e synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x74af6cf0 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x74b1bfe4 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b83f6a usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x74b9f79b hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74bf6354 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x74c4fa07 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x74daf070 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors -EXPORT_SYMBOL_GPL vmlinux 0x74f418fc tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x7509edd9 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x750d77bb devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7523a35c irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x755a25e7 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x7570e582 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x75745ddc debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x7578dbaa devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x757d3f0f cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x7598b9d5 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x75badbf1 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x75c902c6 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75e3e262 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x75ee1c72 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x760c8c12 irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x761ff289 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x76437689 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x766842e9 pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0x766aefe2 __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x7673b126 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7676b5d5 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x769e1ed2 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x76d70964 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x76d9626d mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76e4ad8c ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x76e56f49 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x7700a6a1 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason -EXPORT_SYMBOL_GPL vmlinux 0x7766ae24 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b02260 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x77b6595c dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x77d19e0f usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x77f37a61 led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x77fc6c14 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x7801102a mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x7812bb0d ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x783c92ca usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x7840f647 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x78575bee atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x786b5b4a nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x786d961f ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x788ceb4a ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x78929306 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x789f4287 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x78aadddf __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x78ae5fcf pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78c5dfac inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x78c64ffc __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x78d36fe2 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x7911f0a8 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x79264580 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x792bfba2 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x79555368 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x79620336 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x7966051e is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x7972d883 user_read -EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss -EXPORT_SYMBOL_GPL vmlinux 0x799b6d27 tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x799d883e task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x79cb95c3 use_mm -EXPORT_SYMBOL_GPL vmlinux 0x79db49d5 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped -EXPORT_SYMBOL_GPL vmlinux 0x79ea9404 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x7a39482c devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x7a40b30b regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x7a41b539 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x7a58d012 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x7a5b7f63 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x7a68f4ec power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7a948e62 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ad6ddc5 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x7b74977b pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x7c13f6cc ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x7c246180 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x7c498fce efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0x7c5759b6 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x7c609b34 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x7c6bf861 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x7c89e95f led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7c9a79ae crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x7cb439b3 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x7cb99689 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x7cc5ea3c rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cd8c6e5 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x7cf0341c usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x7cf1985c spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x7d18558a __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x7d1ce0bd scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7d1f5067 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x7d208afe regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x7d294e1f sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d7c6ca6 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x7d83b51d class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7dcdc93f __tracepoint_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de4d0ea __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0x7dee6802 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x7dfb11bb pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x7e0e95ca platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x7e26e6e8 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x7e279d94 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x7e5592d8 device_add -EXPORT_SYMBOL_GPL vmlinux 0x7e5b7e5a ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e7579cd get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x7e8397bc gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x7eb3d4e7 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x7ebe9595 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x7efd9dab unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x7eff551b dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f3658e6 fpstate_init -EXPORT_SYMBOL_GPL vmlinux 0x7f4a1201 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x7f55d017 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f91c062 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x7f95dd87 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x7fa9a096 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fc3c710 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x7ffdebc7 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x80156244 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x801a3535 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x802433c8 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x803652d4 blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x8065b706 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80944df2 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x809529fd alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0x809ac175 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80cb77f1 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x80d0b12f crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x811123e7 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x812a269c shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x813cab60 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x814431b2 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x8147d23c regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x81655cfd fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x81902630 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x81a84515 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x81ade598 set_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0x81cfbfc5 xenbus_map_ring -EXPORT_SYMBOL_GPL vmlinux 0x81e95dec ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x81f073bc each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x81fa874a cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x820a39e7 arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0x8255ff4a rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x82617f84 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x8264d8dc inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x82ba3262 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x82cba7ea component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x82cc2024 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write -EXPORT_SYMBOL_GPL vmlinux 0x82f9fa8d mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x830ed4a4 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x8317f040 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x832bcb4a pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x83418f2f dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x83472cac rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init -EXPORT_SYMBOL_GPL vmlinux 0x836a400a pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x8374bd32 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x838f9b25 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x83dc67e3 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x840bf2c6 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x84108bd2 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x8448f098 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x847249d2 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x849044d1 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x849e3f0f fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x84ab2a27 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84bbdc61 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x84cdf46e of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x84cec44c smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x84e8a768 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x8521c410 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x85302bee pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x8531ece9 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x854cc9eb param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x85709e01 trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0x8583e98d to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x859aea9a xen_set_domain_pte -EXPORT_SYMBOL_GPL vmlinux 0x85a31455 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices -EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq -EXPORT_SYMBOL_GPL vmlinux 0x85fb0c74 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x861a8ed9 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x864c6b3e netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x864f8f14 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0x865f786e ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x86df61c7 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu -EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x87763237 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x879f9c8b blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x87b985e0 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x87bab303 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x87e1c25f usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x8807ef21 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x88386cdd devres_add -EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x88a688f0 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88bc2bf9 tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88c57a5f dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x88d65f13 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x88f7cb09 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x8931f966 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x8933651c tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x893c3438 bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init -EXPORT_SYMBOL_GPL vmlinux 0x896ad12e relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x896b5877 xen_swiotlb_sync_single_for_device -EXPORT_SYMBOL_GPL vmlinux 0x896dbdea smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x897642c4 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x89a16413 xen_remap_domain_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x89a5ac87 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x89a93b63 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89c3ac20 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x89c50858 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x89d83164 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x89e4b81d regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x89e767be bus_register -EXPORT_SYMBOL_GPL vmlinux 0x89f2f9ad usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x89f7a04c gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x8a243755 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x8a4b8066 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0x8a566e22 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a5916da blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x8a6c747b pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control -EXPORT_SYMBOL_GPL vmlinux 0x8a902f65 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8a9157ae virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x8a9c6798 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abd0ed7 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x8ae6def6 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x8b02ffd4 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x8b1160ed cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b33982a device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x8b34beda irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b35f852 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b907295 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address -EXPORT_SYMBOL_GPL vmlinux 0x8b96c75b efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0x8bb3d9ce spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x8bc3e1a7 usb_string -EXPORT_SYMBOL_GPL vmlinux 0x8bcdf3cf relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x8c019270 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c065946 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x8c0b9aa2 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x8c3b3e54 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x8c62bb66 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x8c64264e pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c82fa17 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x8c8a4db8 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index -EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8cc0519c replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x8cc260a6 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt -EXPORT_SYMBOL_GPL vmlinux 0x8ce7f0df bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x8cfa17ec virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x8cff3eb5 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x8d0509ca __online_page_set_limits -EXPORT_SYMBOL_GPL vmlinux 0x8d212f9d inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d249395 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x8d2c68dc sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x8d475cbf nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x8d6056f5 regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0x8d6d7eb6 acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x8d7aa963 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x8d9b623b usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x8d9fa235 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x8da7b735 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x8db69298 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x8dc5129d intel_svm_unbind_mm -EXPORT_SYMBOL_GPL vmlinux 0x8ddabc6e vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x8df78842 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x8e032361 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e372a61 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x8e542fbf fpu__restore -EXPORT_SYMBOL_GPL vmlinux 0x8e635cec dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x8eb60e07 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x8ecbd253 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x8ed9e7b9 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x8eddfb6c blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x8eebbe06 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0c002e usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x8f182677 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x8f2ac945 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x8f3f692c usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x8f5eeb15 acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f7eddec xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x8fb2918b __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x8fe195bd get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x9002c2f7 arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x900b4a18 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x9020a201 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0x905e1b7a sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x9064f2ef tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x90663f5c debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x909869d6 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90ba7e54 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x90cb80f5 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x90dc29df aout_dump_debugregs -EXPORT_SYMBOL_GPL vmlinux 0x90dd2426 pci_get_hp_params -EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify -EXPORT_SYMBOL_GPL vmlinux 0x90df9659 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x9100cd0a regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x9107c8d3 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x9111e9e8 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x91318c97 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x913993bd cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x91445a8e evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x916fb6ba ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x9172a49e pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x918ad153 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x9198ab31 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x919d4594 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x920e8b3a devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x921a391b debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x921aac79 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x92707bb2 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x9273028d kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x9289b523 mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x928fd75e dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92decb15 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x92e59756 nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x92f37252 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x9339e19c tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x9350d758 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x93557fde pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x9364daf6 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x9366079e ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9375c96a ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x937694d9 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x938e221d dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x9399626e __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x93a7b549 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x93d0cde9 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x93f730e4 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x93f81d0d scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x93fc31ea xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0x940ebae6 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x9412c37e fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9428809d bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x942c15d5 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x94464b32 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x944887ba devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x9450550e percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0x945e5c40 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x94803e0b rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94b82cd3 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x94c63ff6 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x94d6e193 genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0x94deb4f2 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x954f4f40 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x956e92ed cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x9583ba13 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95c8f7e3 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x95d8a4b9 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x95fea713 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x96329302 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x963a4944 agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x964181fc clk_register -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x964d5c39 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x965e55dc device_move -EXPORT_SYMBOL_GPL vmlinux 0x96626387 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x966675a6 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x96788b5d __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x9680aff9 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x96877a15 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x96aa5c2b find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x96c8799f ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x96e3792e gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x96ee829a clk_debugfs_add_file -EXPORT_SYMBOL_GPL vmlinux 0x96f55f7b devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x9700a4b4 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x971121c1 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x972b0f0f regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0x9746bffd wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x9761fb4b clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x97684ea6 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x976b31ea wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x9792f11f devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x97a614d2 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x97c5209f usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x97c7947a __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x97d75fc8 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97f34fb8 __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0x98074de9 devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9832217b ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9886a6c5 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x988ff2a1 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x989c97e4 fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0x98c700df acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0x98c91a83 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x98cd13d3 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x990c0417 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x992936c5 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x992e277d ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x99390dd5 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x9945a00d cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9948cfe9 fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x994b5769 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x994f8199 pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0x9954997b pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x996062ba event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x99612be8 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x9966b5b3 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x9970073f key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x99778f57 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x99983204 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x999e5846 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99ba6eec shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99d66605 dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0x99d78da0 security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0x99f9ed4e blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x99ffaff8 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x9a02a2ef wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a765541 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x9a815fb9 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ada2b4e virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af84241 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x9b0717f2 unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x9b0fd674 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x9b131bfd raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x9b5ae261 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x9b6a7412 idle_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state -EXPORT_SYMBOL_GPL vmlinux 0x9b72cca8 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x9b944f0c i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus -EXPORT_SYMBOL_GPL vmlinux 0x9ba07b5d cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba43442 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x9ba7e68f devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x9bb29d81 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x9bc0853e perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x9bc58ca0 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x9bc66123 percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x9bd02975 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write -EXPORT_SYMBOL_GPL vmlinux 0x9be3cebc sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bfdd939 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x9c2de449 memory_add_physaddr_to_nid -EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x9c373578 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x9c449747 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x9c45ce07 nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9c7a81ee sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x9c8de8a0 regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ccdf526 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x9cfc2f32 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x9cfe2002 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x9d0181a3 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9d01c324 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x9d28fb9d thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x9d4aa3ea dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x9d64d213 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x9d66acba da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x9d7e1d63 crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9d83181c regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x9daa89db iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9dbe0543 crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x9dc02319 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x9dd8a2ae acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x9de23cdd trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x9e05499a init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x9e1b2ca4 device_create -EXPORT_SYMBOL_GPL vmlinux 0x9e1e9210 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x9e366521 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x9e3e00fa crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e5fb84b tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x9e819e8e fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x9e83ea97 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x9ec40af1 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x9ed2cddc regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ee8f981 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x9efb38fe l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x9f12ced1 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x9f59c6a5 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x9f92af83 x86_hyper_kvm -EXPORT_SYMBOL_GPL vmlinux 0x9fa93a39 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x9faa8ad8 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x9fb56e2d led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x9fc05043 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff9fdea irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x9fff4fc5 spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xa014a6ac trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xa01a4c7e sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xa034144b wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xa04f7282 tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xa07baff5 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa083546e device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xa0ad8b4d xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xa0c06c59 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xa0d44aa7 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xa0d5743c usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xa0ebd7a2 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0xa0ef33de usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xa0f1029e usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0xa0f334d1 arch_add_memory -EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info -EXPORT_SYMBOL_GPL vmlinux 0xa129892e page_endio -EXPORT_SYMBOL_GPL vmlinux 0xa12dacf5 xenbus_unmap_ring -EXPORT_SYMBOL_GPL vmlinux 0xa12fef87 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0xa1344ad1 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xa13ac7b1 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa15f3b93 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa171f337 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xa1750e71 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0xa182bf9f xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa196fbe8 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa1c350ed crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region -EXPORT_SYMBOL_GPL vmlinux 0xa1ff976b usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xa21e8ee1 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0xa2424518 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa27f4ee8 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xa2849459 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xa2a68ca4 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0xa2a96d64 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2be7384 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xa2c8be01 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0xa2d790f4 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xa30e41fc ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xa320c0b2 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xa3508796 wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xa35e6153 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xa3638260 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0xa3646f56 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xa366b33f scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xa367422a device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xa384918b pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa386c029 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa38f6ac3 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a54bf4 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa426a11d regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xa4415fc2 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xa44d6536 ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa49e211e pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xa4a0cf78 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xa4ab0cfd __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0xa4c546b3 device_reset -EXPORT_SYMBOL_GPL vmlinux 0xa5067605 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xa58519f7 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xa58e8240 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xa5bae462 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xa5cb13d5 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa60b7d92 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xa615f4df fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xa6186167 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list -EXPORT_SYMBOL_GPL vmlinux 0xa649c4cd extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0xa64b9692 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xa65b323c ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xa65e8fb1 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xa66438e8 erst_read -EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa683c049 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6c7216d virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xa6ca844e modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xa6cd1011 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6e455bf wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xa6e792e9 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xa6ea3578 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xa6fa3ef5 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xa70fe290 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0xa724a0cc console_drivers -EXPORT_SYMBOL_GPL vmlinux 0xa7910697 bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xa79722d7 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xa7b9ba72 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa7fe5404 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0xa8126300 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0xa8416257 user_update -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa863be58 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xa8731e84 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xa8783434 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xa878ac9b ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0xa8845065 acpi_dev_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xa8935430 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0xa89cce88 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0xa8a959be rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0xa8b3fbc2 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa902162e remove_irq -EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa9143342 find_iova -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa9769e18 to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xa98d7163 device_del -EXPORT_SYMBOL_GPL vmlinux 0xa9b067a4 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0xa9bd1c4f regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e1b0db extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xaa3466de yield_to -EXPORT_SYMBOL_GPL vmlinux 0xaa57ddf0 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xaa644c58 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaa6bacc5 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xaa88381d acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0xaa9205ad vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaab1821c blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0xaab90f16 rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xaae4001f extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xaaf7325c put_device -EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab3dce42 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xab3f0c40 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xab528929 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xab539934 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab70bdbb wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xabb16ee8 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabf2b27c led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0xac062847 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xac0de49a dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xac29aacb irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0xac5bb235 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xac5effd0 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xac741bd7 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0xac8e8d96 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait -EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xacb30bfa rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xacc27de1 dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0xacc58fa8 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xacc7d5dc wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xacef69f7 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xad1964c7 arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0xad396995 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xad5013e1 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xad7162e5 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xad841a4a pci_msi_set_desc -EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xadd3830d thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xade6cd22 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae3dfb18 xen_pci_frontend -EXPORT_SYMBOL_GPL vmlinux 0xae5835d7 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xae5e1555 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6eaf93 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae89f147 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xaea5fbdf __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xaecba6be percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0xaef1a20d sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xaefd58c8 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0xaf062981 xen_swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL_GPL vmlinux 0xaf2085d1 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0xaf5e3f0c virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0xaf697367 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xaf6bcb9c devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaf8f4b68 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xaf9439db leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xafb4f89e unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xb0193e96 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xb02168f4 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb0393cac device_rename -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb04bf77f regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0xb0561ad1 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xb0644098 swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0xb073b292 kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb07ba3f9 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb084f2ea xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0xb0872ae1 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xb08ea0be rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xb0b2a58f efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0xb0b839fe tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0f1abc9 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0xb0f91227 pin_is_valid -EXPORT_SYMBOL_GPL vmlinux 0xb0fce8d4 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0xb12b686d debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb14d6e99 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init -EXPORT_SYMBOL_GPL vmlinux 0xb1775198 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xb177e6d4 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xb17bff05 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb18cd542 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xb1b6413e uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0xb1bc84a6 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1bedeb7 register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1cf77ae nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1f35fc5 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xb20584e1 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xb205e536 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb245c729 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xb2558706 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xb261d8ea ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xb2620672 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall -EXPORT_SYMBOL_GPL vmlinux 0xb2a1443b xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0xb2c45d1e nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2e820cd fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xb31298b7 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xb31edd08 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init -EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy -EXPORT_SYMBOL_GPL vmlinux 0xb36a6d14 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xb372dac9 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xb377f550 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb38ec0e6 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb3b31d46 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0xb3bf1672 rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0xb3f57c03 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xb4590d1c acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xb46fb96d cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xb48b1258 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0xb4a484fb pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c592fb regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xb4d49bf8 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xb4dcacf8 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0xb4e05e52 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xb4e9c544 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4f2b32a efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0xb4f4724f irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xb4fe1c04 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xb50684d8 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb52dcd7c part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb5396d5e gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xb53b3781 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xb53b9c1e gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0xb5490f43 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0xb5780b2f regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5a87b1f wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0xb5a8f51b blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0xb5add92a usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb5fda3d1 device_register -EXPORT_SYMBOL_GPL vmlinux 0xb60e3cb1 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb62aa261 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xb6437235 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0xb649bb96 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xb651a912 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid -EXPORT_SYMBOL_GPL vmlinux 0xb6a43fd2 tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6e55191 flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6ea8b05 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xb7113121 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xb713456e debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse -EXPORT_SYMBOL_GPL vmlinux 0xb721fae1 skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0xb7231732 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xb726b585 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb73b740a trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0xb74456c4 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xb77f0be8 get_device -EXPORT_SYMBOL_GPL vmlinux 0xb792ec24 pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xb798685f pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0xb79d97a2 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0xb7aea186 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb7af8638 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xb7d062e6 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time -EXPORT_SYMBOL_GPL vmlinux 0xb7e6c8cf ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb7fc97bc crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xb7fd6dd2 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0xb8468aee regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0xb846aa93 devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xb84b9579 nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xb8535e88 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xb861570f iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0xb8736c71 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb89bcd67 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xb89eef9c pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0xb8becc37 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xb8c421cf dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8cf8f9b usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xb8f84c6f driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb913fd04 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xb96f8663 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0xb97198bd devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb983a292 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xb99be14d sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9cbe2f7 xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d053a2 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0xb9d7db65 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba358853 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xba3ababb i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0xba998a57 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbabaa79c dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0xbacda556 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0xbadb2c48 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbaf7d8ce crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb1c15f7 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xbb35aa55 register_mce_write_callback -EXPORT_SYMBOL_GPL vmlinux 0xbb40479d rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xbb52a97e iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0xbb5f04c3 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xbb67f30b spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0xbb9a0889 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xbb9c9d72 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id -EXPORT_SYMBOL_GPL vmlinux 0xbc13599a devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xbc3e875b thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0xbc55a673 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7167b6 skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbc7587cb platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts -EXPORT_SYMBOL_GPL vmlinux 0xbcc533ad security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd584f4 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcf2fabc i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xbcf5872b acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0xbcfa802f rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xbd1b5cf9 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xbd2af66f power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xbd3bf2fb pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd4129a2 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xbd47812e pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xbd567868 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xbd86a0ff lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0xbdd7c9db ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xbddf1c1d irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xbde09f02 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xbdfd8e5a pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe195600 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xbe2c3d23 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbe372458 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xbe551079 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbe5ce9de dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0xbe5d0996 idle_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbee97eea regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xbeea2cc9 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xbeec9471 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xbf023300 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf15db36 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xbf226ee2 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xbf49889f thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbf4abaac xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xbf70c548 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xbf725d96 xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0xbf8993dd bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xbf899fa5 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0xbf9ad60a rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfd10bb7 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbff99008 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xbff9bfb8 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xbffd53e0 acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space -EXPORT_SYMBOL_GPL vmlinux 0xc015aed6 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xc01d0f97 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0xc01e666f blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xc02aa11f rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xc04b21bd acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0xc0548816 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc069e875 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0c0814f __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0e8f48e hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc1042401 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xc116764f component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0xc11e5d31 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0xc12ce3a5 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0xc13ed84e page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0xc14c2824 xenbus_probe -EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xc165cbea pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc1ae799d usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xc20da03d __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc2415409 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc25f7fe5 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xc262b6d2 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xc26a0eec acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0xc27db975 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0xc2a52a67 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xc2bdcd15 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0xc2c07bfb unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xc2d4b696 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xc2e16de2 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xc2f87708 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xc2fd5875 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xc30311e7 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc30ab0b6 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xc33e69cc aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc340e821 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xc35c9d07 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc37e913d devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xc3893966 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0xc38b2130 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc3ac02c4 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0xc3c51868 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xc3d71ec4 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xc3d8ed51 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xc3e30545 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xc3e58bbf pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xc3ea2b59 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xc3ed3628 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xc3f81e25 spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0xc3fb7a92 nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc447dd93 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc45b60a3 set_pages_array_wt -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc49f639e init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4d760c7 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc4dc29b3 thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask -EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xc53d2256 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xc53e75e8 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc54ac418 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc587250b pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xc5960d94 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xc5adfbac hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xc5c60cc1 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xc5c808f5 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xc5c85c20 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xc5d32d5e pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xc5d8c327 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0xc5f7eb22 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc61d1750 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xc62902e4 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xc6397ccd ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xc649353b blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0xc6501566 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xc659d542 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc660355a usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xc6623d39 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xc664a841 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc6733b46 dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0xc67c2ba1 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xc686d6ca xen_swiotlb_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xc69a99b0 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc69c04f2 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6cb80b5 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xc6eb58f2 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xc6f06624 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc708ff01 tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xc714cbf0 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc736f08d acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0xc7388e17 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc75dee83 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0xc77b92f7 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xc77d40fa register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a2852a gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xc7bf867d regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7e74bca clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xc7f1bd44 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xc815e76f raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xc819726a blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0xc81b765d put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xc8286a11 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc84052ce pstore_register -EXPORT_SYMBOL_GPL vmlinux 0xc8674d42 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event -EXPORT_SYMBOL_GPL vmlinux 0xc8941130 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xc8949285 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xc89ae2dc platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xc89b4624 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8c85e57 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0xc8dadb01 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc8de07bb gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8e0c862 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xc8f33a99 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xc8f4a97f blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0xc8fbdcfe pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc916eec2 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xc939e218 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xc941cca6 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xc94493c2 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xc94fb6a2 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc95aec0b dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xc9614191 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc968dbbc devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc9705eeb has_newer_microcode -EXPORT_SYMBOL_GPL vmlinux 0xc992239f unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xc9967062 efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xc99fb950 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xc9c677e2 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xc9dc2024 driver_find -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xca235508 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0xca33d45c crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xca465d0d gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xca4a7f63 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0xca4ebdab napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xca5ee50d debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0xca747de0 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xca7903a1 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcad101b5 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0xcadec0f7 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xcafec86c rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xcb006cf3 get_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0xcb01c265 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0xcb06d7fa wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xcb0b9948 acpi_dev_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb28b3fa clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0xcb2e961b blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0xcb34d381 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xcb5ee721 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xcb6796da rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xcb6c2a1c split_page -EXPORT_SYMBOL_GPL vmlinux 0xcb721581 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xcbb9896b skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcc1aa9c0 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xcc1e8ef8 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xcc28b43f sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xcc72cda7 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc8decdf usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xccbce332 acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd3aff5 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xcce31916 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability -EXPORT_SYMBOL_GPL vmlinux 0xcceead75 regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0xccf4820b __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0xccf61e79 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xcd0fa80d xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcd19f8de usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xcd1b48ff md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd96e5dd nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdcff992 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource -EXPORT_SYMBOL_GPL vmlinux 0xcde9d752 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xce0c7253 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xce4d02c5 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce86bfac skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xce9e89b0 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xced0284a skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xcedd5275 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode -EXPORT_SYMBOL_GPL vmlinux 0xcf257ed0 xen_swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0xcf374b20 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xcf3b248f ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xcf4c8cd6 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf6572ea security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xcf65df5d user_describe -EXPORT_SYMBOL_GPL vmlinux 0xcfb0f16c ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfbc7b9a list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcfbc924d aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xcfc43454 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfe6ec3e ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xcfe8802e inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd05d9a6b phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06e781e crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0xd09ae7ac md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xd09d9d4e unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xd0a8d78e ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xd0af3905 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xd0af9697 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xd0b74bc7 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0e23cd4 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xd0e5d9cc xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xd102566c usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xd13102cb proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xd133813e crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xd13d38fe __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0xd1553b3b srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0xd160f612 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd168c008 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xd171ab10 spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0xd176a119 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd188d240 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xd1898019 swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0xd18f7ed1 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xd19b3b53 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xd1ad3204 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xd1b7e3ea devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xd1c49e6f ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xd1c680b3 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xd1dab3aa netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0xd1ead9e0 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1faa364 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd20b1e30 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd210a13f ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd226e308 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xd28285ef power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd2997e62 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0xd299811d virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xd2afd6b5 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xd2b17d17 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0xd2caed84 clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xd2da8e9d tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2e52b56 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xd2e88de5 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd2f41e8a pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xd2fb031f power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xd30c6f49 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0xd30c8d43 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0xd30ea876 percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0xd31fa13c invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xd3216e35 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xd3414a1e subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd3804c77 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xd385be3c dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3bf27cc virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0xd3d24ea3 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xd3da0157 efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd4053fb7 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd421ba7a devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xd43b955e sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xd4423e57 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44e4b92 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xd451b5fb unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xd4551801 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xd45772b0 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd45afc5b pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xd45ea32f hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0xd463f16f nl_table -EXPORT_SYMBOL_GPL vmlinux 0xd46aad96 xenbus_dev_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xd4765724 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xd4840a23 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xd4a84dcc pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0xd4af2a3b nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xd4af5f33 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd4b86414 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4fe7d71 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xd4ff68db ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd5165ab6 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xd5240cfb pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0xd52eb17b __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0xd54a50bd usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0xd55a2e7c relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0xd58adf5d ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0xd59fedbf devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xd5ac2785 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5db5e86 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xd5ebc1d8 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0xd5ec85ad rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xd5f4a375 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0xd6055007 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd62d2505 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xd642f6a3 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0xd6518178 xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xd6653d08 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd68c992b mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xd69cd55f dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xd6aa2cf7 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0xd6f5a258 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd7223d65 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0xd72468ea rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd7464521 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xd749ee59 xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0xd764d265 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd79b103b tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xd79b4975 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0xd79dd7e8 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0xd7a6caf6 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xd7afba2e perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xd7ba42f3 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xd7ca0530 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xd7ca9942 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0xd7cc3d1f __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0xd7d6c958 save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7fd1dad skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0xd7fd601b __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xd8014fdd usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0xd8078874 crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0xd818c815 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd82bbe74 acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0xd83ad49d phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xd871a341 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd88adb2a ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0xd89fae19 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xd8a35f82 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xd8b5eaae input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xd8c4c7d2 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xd8e35ea4 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd8f9cd32 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges -EXPORT_SYMBOL_GPL vmlinux 0xd92dc2c9 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xd92ddbd2 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xd935292f apic -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd94fa823 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd97760a4 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xd97f1395 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xd9861c01 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin -EXPORT_SYMBOL_GPL vmlinux 0xd9872dbd ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xd9b6dedc devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xd9cabd12 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xd9dd2f89 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9ee1a8c power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd9f87a04 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xda133804 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xda1611ba dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xda242c09 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xda269797 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xda32e405 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xda389561 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0xda47c5ed devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xda78e975 __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0xda7cf6fa bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdab2b7a8 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdac61148 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0xdae1a124 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaf76bae dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xdb09e938 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xdb104ad5 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xdb1cf161 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb4583e3 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb730329 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xdb734f22 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb916fd0 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xdbc55fd0 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xdbea747f vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbfc8d4b pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc191779 xen_swiotlb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xdc1a42cd iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xdc1d11ec da903x_read -EXPORT_SYMBOL_GPL vmlinux 0xdc20bc85 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xdc23e94f usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0xdc58cc7e crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xdc606241 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc7254c8 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xdc7f96c6 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc92640e regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcaf1470 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xdccf1243 xen_swiotlb_unmap_sg_attrs -EXPORT_SYMBOL_GPL vmlinux 0xdcde402a pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd3c02c8 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xdd50148e tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xdd526a5d shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0xdd6ea392 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xdd96b41c fsnotify -EXPORT_SYMBOL_GPL vmlinux 0xdd9b5514 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xddacb086 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0xddb88612 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc01e0e add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xddc18f2e pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xddeaa7f4 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xde0aa690 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xde147566 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0xde15e2ec device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xde1836d8 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xde46b86e usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xde50d216 extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0xde5d4ccf serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xde679e92 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xde6b7d2a fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0xde866811 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next -EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdea6621b tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0xdecf960b print_context_stack -EXPORT_SYMBOL_GPL vmlinux 0xdf0421d8 ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdf093fb6 regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0xdf0a6959 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0xdf1d5e22 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xdf48738d __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xdf622181 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xdf656215 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xdf66ca81 ucode_cpu_info -EXPORT_SYMBOL_GPL vmlinux 0xdf75282c inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xdfa1adb5 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdfa41a05 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xdfa81b8d __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0xdfc61286 ref_module -EXPORT_SYMBOL_GPL vmlinux 0xdfd3bb47 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0xdffa945f fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0xe006eee5 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe010bd0e __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0xe02141f2 clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xe022c870 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe0469bc6 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0xe0472835 device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xe0699fce __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0xe06adce7 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xe06d13c1 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xe070639e __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe08cadbc ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0xe0945573 mmput -EXPORT_SYMBOL_GPL vmlinux 0xe099f5c2 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xe0b00a10 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0c64c85 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq -EXPORT_SYMBOL_GPL vmlinux 0xe0c811b0 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xe0cae083 rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0xe0cb72a4 spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe0d28476 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xe0db93fc disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xe0eab4e9 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xe1068136 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe11b7041 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xe11b781d mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xe11c6dc9 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0xe1253d5e virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xe12e7cac crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xe12fd863 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xe157115e usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xe16b0d30 unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe18d1b45 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xe193b910 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xe1a1b08d ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1cab67c input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0xe1dbf95c pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xe1f1f309 x86_vector_domain -EXPORT_SYMBOL_GPL vmlinux 0xe1f4f6cb vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xe1ff07be rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xe24b6330 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xe258c6c5 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xe268f988 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xe26b79ce wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe28c91cc __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0xe29349dc copy_reserved_iova -EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe2a82372 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xe2aa2717 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xe2aab839 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0xe2bcfd90 acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xe2d113eb acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe31eef51 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xe3409aed rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0xe3679880 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xe38f9c7a sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list -EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xe3bda663 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe3ce5898 usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xe3e8cdc8 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xe3eaf584 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xe3f454c0 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0xe405306b blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xe414fe7e ping_err -EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0xe418fde4 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe41a5730 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe46f948d tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0xe4830e20 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a86f07 ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0xe4a8f8d8 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xe4aa7ff7 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4c8c47a fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xe4cae125 component_add -EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0xe50cd0c5 __nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xe5158a61 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr -EXPORT_SYMBOL_GPL vmlinux 0xe55cbc7d rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0xe574626e usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0xe5ce9e2e posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0xe6033947 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xe60d3fce crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xe631dba5 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xe632444f pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe65c4dd4 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xe6817dc4 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xe686231a unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xe694a429 swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0xe6ad2a05 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xe6b37329 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xe6c5bee8 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6cc5c6d pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe6f65adf pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe709cdfe __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xe7127fb7 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe719f1bb blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe7397a9a usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0xe7438846 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe75463ee scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe781814d kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe78ef9ba nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xe7926d5c dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0xe7aacdf8 acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xe7c96a78 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xe7d6362f devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0xe7e97263 __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0xe7eaddd3 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe809054f scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0xe817d8bd pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe874fbc3 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xe886dc93 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe8c3bd0e ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe8ea6e9d dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xe912ad18 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe915ebeb i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0xe9243f9c cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe9408621 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0xe9519aeb component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xe9663e7f inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xe970dec4 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xe970ecd6 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xe973d7ec usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xe98a6f59 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xe9a4bb32 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xe9af829c mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xea0202f6 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xea0d0583 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea310954 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea53c98f ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xea5ce2e2 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0xea61070c blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0xea641a07 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xea99a320 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0xeaacb78d dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0xeae74593 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xeae8da55 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xeaeb4975 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xeaf041fe blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0xeaf69e0e add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xeb0ccbe8 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xeb1d0490 crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region -EXPORT_SYMBOL_GPL vmlinux 0xeb2eb288 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xeb38a701 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xeb38be30 skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0xeb4ebf0a tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0xeb6c2c61 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xeb7c3f2f max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xeb8274d2 percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0xeb8da754 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xeb8db427 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xeb91f947 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xeb9b023b nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xebb53967 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xebb768de power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xebc829cd regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xebd3f90e usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xec0a6e51 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec23c830 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec302a30 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xec3bde3a usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xec3e8ca6 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xec4d5ed7 __remove_pages -EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0xec77180f ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0xec7c2662 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xec935863 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xecad3b34 do_machine_check -EXPORT_SYMBOL_GPL vmlinux 0xecb8292b clear_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0xecd8a203 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xece35d68 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xeced40c5 gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0xed20cc16 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0xed411e46 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xed4b294f usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0xed523f3c watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xed56164c of_css -EXPORT_SYMBOL_GPL vmlinux 0xed790d41 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xed81aad8 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0xed891b1c crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0xed92de62 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0xed9711a8 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0xeda4b88d usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xedcc97ce dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xede0e1eb kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0xedea0146 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xedfb5fe5 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 -EXPORT_SYMBOL_GPL vmlinux 0xee220060 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xee281e81 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xee2c9cae sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xee510d75 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xee5bb3c4 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xeeb15475 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xeebad7c2 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xef1502f2 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef43fe36 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0xef4ab02e irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xef4cac40 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xef50e244 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat -EXPORT_SYMBOL_GPL vmlinux 0xef6fcc28 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xef86b4d2 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xef8af86c rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefd41ddd pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xf0223161 __module_address -EXPORT_SYMBOL_GPL vmlinux 0xf02b7af4 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0xf0306322 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf04a16b2 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xf060e80a hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf074d99e bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf09b262b mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0xf0a5914f wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0xf0b036f5 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xf0b8e047 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xf0bdae9c ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xf0df00ba xen_swiotlb_map_sg_attrs -EXPORT_SYMBOL_GPL vmlinux 0xf0e1ff05 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf10dc9e6 inet_csk_compat_getsockopt -EXPORT_SYMBOL_GPL vmlinux 0xf11002f1 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xf126c61d shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr -EXPORT_SYMBOL_GPL vmlinux 0xf1d47d51 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xf1d5fc15 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xf20496df skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0xf2147f1e class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf26742dd clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xf26c89dd usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0xf26eba6d usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf279ede4 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xf2882a90 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0xf2925f2c ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2ce1244 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xf2dce436 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0xf2e06848 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf336c8be devres_release -EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3856354 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xf3941b0e thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3c64297 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xf3ce7a2a regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xf3d16a69 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0xf3dd3ec1 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf3ebf4eb arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0xf3ee76cc ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf3fe4425 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0xf42041ac usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xf4296865 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xf44f8b04 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0xf4559f1b i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xf45acf58 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4bacc2f regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xf4ed406a rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf50367e4 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf52a8ffa call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf5781428 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xf5876fee dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xf58bd25d devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5af06c9 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xf5c16542 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xf5cebd7c preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf5d62c18 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf5e01f1f arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xf62010da pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xf647a487 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xf665f800 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xf677d668 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xf69336cf mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0xf69652e9 ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf698c1af pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xf6a916ba kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xf6a9556a btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xf6bf81ad arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6cafda8 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xf6d943b1 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6ecc1d7 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0xf6feccf2 shake_page -EXPORT_SYMBOL_GPL vmlinux 0xf7003951 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather -EXPORT_SYMBOL_GPL vmlinux 0xf702a3b4 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0xf70dfdd3 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xf74c0581 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf7b36224 reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf7bec20c usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7cdd291 __class_register -EXPORT_SYMBOL_GPL vmlinux 0xf7d5cfca regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xf7fe2b19 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xf8274095 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf8435c90 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xf84ec1e6 reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf897a1a0 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xf8b0e7e3 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xf8d75404 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf8ff8acb crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xf91e9bfd default_iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf93dc141 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xf942445c cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf9543320 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xf96cf7b9 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match -EXPORT_SYMBOL_GPL vmlinux 0xf978ebc5 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xf97a3a21 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xf97abfcc xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0xf97f9983 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0xf9881dc4 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9c2ae08 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback -EXPORT_SYMBOL_GPL vmlinux 0xf9db8cab fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xf9e39804 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf9f0cd7c crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xf9fdd863 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched -EXPORT_SYMBOL_GPL vmlinux 0xfa3509d6 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xfa4f6e0b iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xfa525c2e debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xfa613eb4 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xfa6dc15c bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec -EXPORT_SYMBOL_GPL vmlinux 0xfa950822 pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xfa9da488 acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xfab3cac5 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xfac2a693 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xfad7d730 rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0xfaf13f2f sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xfafafad2 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xfb0a790d unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xfb0e1b25 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xfb2218e4 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb3844f2 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb7336b5 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xfb7538c9 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0xfb884c65 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xfb98b6a9 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0xfba3b710 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbf931ee devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xfbfc545c device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc2d6aa0 devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xfc338a49 phy_init -EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc43ad96 cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xfc4c6263 __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0xfc5e0624 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xfc70a468 pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0xfc8125e2 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0xfcdec26d ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xfd12fb83 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xfd688ebc wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0xfd694cdb usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0xfd6dd135 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd7cce37 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xfd808436 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xfd8bde87 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0xfd91fb91 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfdab0a51 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xfdb23a4f __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xfdc39c90 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0xfe3bdfa8 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xfe52a9c9 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0xfe723a5d cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xfe98d0e8 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfeb7420c register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff0ecdfb irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2ce747 machine_check_poll -EXPORT_SYMBOL_GPL vmlinux 0xff3c87ef regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xff4e8248 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff5f85a1 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff80ba7d __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xffa20e40 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0xffa5da7e tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xffbbd73a anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xffbd1273 cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xffd7033d ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xffe9a809 free_vm_area reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/amd64/generic.compiler +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/amd64/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/amd64/generic.modules +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/amd64/generic.modules @@ -1,4617 +0,0 @@ -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_fintek -8250_mid -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -BusLogic -DAC960 -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -abituguru -abituguru3 -ablk_helper -ac97_bus -acard-ahci -acecad -acenic -acer-wmi -acerhdf -acpi-als -acpi_extlog -acpi_ipmi -acpi_pad -acpi_power_meter -acpi_thermal_rel -acpiphp_ibm -acquirewdt -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7170 -adv7175 -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -advantechwdt -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -aes-x86_64 -aesni-intel -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -aha152x_cs -ahci -ahci_platform -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airo_cs -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -ali-ircc -alienware-wmi -alim1535_wdt -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am53c974 -ambassador -amc6821 -amd -amd-rng -amd5536udc -amd64_edac_mod -amd76xrom -amd8111e -amd_freq_sensitivity -amd_iommu_v2 -amdgpu -amdkfd -amilo-rfkill -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apanel -apds9300 -apds9802als -apds990x -apds9960 -apple-gmux -apple_bl -appledisplay -applesmc -appletalk -appletouch -applicom -aquantia -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_ps2 -arc_uart -arcfb -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3935 -as5011 -asb100 -asc7621 -ascot2e -asix -ast -asus-laptop -asus-nb-wmi -asus-wmi -asus_atk0110 -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atlas_btns -atm -atmel -atmel_cs -atmel_mxt_ts -atmel_pci -atmtcp -atp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avm_cs -avma1_cs -avmfritz -ax25 -ax88179_178a -axnet_cs -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1pci -b1pcmcia -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcma-hcd -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish-x86_64 -blowfish_common -blowfish_generic -bluecard_cs -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt3c_cs -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btuart_cs -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c2port-duramar2150 -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia-aesni-avx-x86_64 -camellia-aesni-avx2 -camellia-x86_64 -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5-avx-x86_64 -cast5_generic -cast6-avx-x86_64 -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_das16_cs -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -ccp -ccp-crypto -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfag12864b -cfag12864bfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20-x86_64 -chacha20_generic -chacha20poly1305 -chaoskey -chipreg -chnl_net -chromeos_laptop -chromeos_pstore -ci_hdrc -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -ck804xrom -classmate-laptop -clip -clk-cdce706 -clk-palmas -clk-pwm -clk-s2mps11 -clk-si5351 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cm4000_cs -cm4040_cs -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -com20020 -com20020-pci -com20020_cs -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_isadma -comedi_parport -comedi_pci -comedi_pcmcia -comedi_test -comedi_usb -comm -compal-laptop -configfs -contec_pci_dio -cordic -core -coretemp -cosm_bus -cosm_client -cp210x -cpcihp_generic -cpcihp_zt5550 -cpia2 -cpsw_ale -cpu-notifier-error-inject -cpu5wdt -cpuid -cr_bllcd -cramfs -crc-ccitt -crc-itu-t -crc32 -crc32-pclmul -crc7 -crc8 -crct10dif-pclmul -cros_ec -cros_ec_devs -cros_ec_i2c -cros_ec_keyb -cros_ec_lpc -cros_ec_spi -crvml -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -csiostor -ct82c710 -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_cs -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dca -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -dcdbas -ddbridge -de2104x -de4x5 -decnet -deflate -defxx -dell-laptop -dell-led -dell-rbtn -dell-smm-hwmon -dell-smo8800 -dell-wmi -dell-wmi-aio -dell_rbu -denali -denali_dt -denali_pci -des3_ede-x86_64 -des_generic -designware_i2s -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9601 -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -dp83848 -dp83867 -dpt_i2o -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dtl1_cs -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc3 -dwc3-pci -dwmac-generic -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -e752x_edac -earth-pt1 -earth-pt3 -eata -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -ec_bhf -ec_sys -echainiv -echo -edac_core -edac_mce_amd -edt-ft5x06 -eeepc-laptop -eeepc-wmi -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efi-pstore -efi_test -efs -ehset -einj -elan_i2c -elo -elsa_cs -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_pcmcia -ems_usb -emu10k1-gp -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -ene_ir -eni -enic -epat -epia -epic100 -eql -esas2r -esb2rom -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -eurotechwdt -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f71805f -f71808e_wdt -f71882fg -f75375s -f81232 -fakelb -fam15h_power -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_cs -fdp -fdp_i2c -fealnx -ff-memless -fintek-cir -firedtv -firestream -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fjes -fl512 -flexfb -floppy -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -fmvj18x_cs -fnic -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fschmd -fsl_lpuart -ft6236 -ftdi-elan -ftdi_sio -ftl -fujitsu-laptop -fujitsu-tablet -fujitsu_ts -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcm -gdmtty -gdmulte -gdmwm -gdth -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -genwqe_card -gf128mul -gf2k -gfs2 -ghash-clmulni-intel -ghash-generic -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -glue_helper -gluebi -gma500_gfx -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-104-idio-16 -gpio-addr-flash -gpio-adp5520 -gpio-adp5588 -gpio-amd8111 -gpio-amdpt -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-f7188x -gpio-fan -gpio-generic -gpio-ich -gpio-ir-recv -gpio-it87 -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-rdc321x -gpio-regulator -gpio-sch -gpio-sch311x -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gr_udc -grace -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gxt4500 -hackrf -hamachi -hampshire -hangcheck-timer -hanwang -hci -hci_uart -hci_vhci -hdaps -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hecubafb -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfi1 -hfs -hfsplus -hgafb -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-hyperv -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hih6130 -hio -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi504_nand -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horizon -horus3a -hostap -hostap_cs -hostap_pci -hostap_plx -hp-wireless -hp-wmi -hp100 -hp_accel -hpfs -hpilo -hpsa -hptiop -hpwdt -hsi -hsi_char -hso -hsr -hsu_dma -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hv_balloon -hv_netvsc -hv_network_direct -hv_storvsc -hv_utils -hv_vmbus -hwa-hc -hwa-rc -hwmon-vid -hwpoison-inject -hx8357 -hyperv-keyboard -hyperv_fb -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd756-s4882 -i2c-amd8111 -i2c-cbus-gpio -i2c-cros-ec-tunnel -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-emev2 -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-ismt -i2c-kempld -i2c-matroxfb -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-nforce2 -i2c-nforce2-s4985 -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-robotfuzz-osif -i2c-scmi -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i3000_edac -i3200_edac -i40e -i40evf -i5000_edac -i5100_edac -i5400_edac -i5500_temp -i5k_amb -i6300esb -i7300_edac -i7300_idle -i740fb -i7core_edac -i810 -i82092 -i82975x_edac -i915 -i915_bpo -iTCO_vendor_support -iTCO_wdt -ib700wdt -ib_addr -ib_cm -ib_core -ib_ipath -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_qib -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibm_rtl -ibmaem -ibmasm -ibmasr -ibmpex -ichxrom -icp_multi -icplus -ics932s401 -ideapad-laptop -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_gen2 -idtcps -ie31200_edac -ie6xx_wdt -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -ims-pcu -imx074 -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int3400_thermal -int3402_thermal -int3403_thermal -int340x_thermal_zone -int51x1 -intel-hid -intel-lpss -intel-lpss-acpi -intel-lpss-pci -intel-rng -intel-rst -intel-smartconnect -intel-vbtn -intel_ips -intel_menlow -intel_oaktrail -intel_pch_thermal -intel_pmc_ipc -intel_powerclamp -intel_punit_ipc -intel_qat -intel_quark_i2c_gpio -intel_rapl -intel_soc_dts_iosf -intel_soc_dts_thermal -intel_telemetry_core -intel_telemetry_debugfs -intel_telemetry_pltdrv -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -intelfb -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioatdma -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipwireless -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irqbypass -irtty-sir -isci -iscsi_boot_sysfs -iscsi_ibft -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it87 -it8712f_wdt -it87_wdt -it913x -itd1000 -ite-cir -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -k10temp -k8temp -kafs -kalmia -kaweth -kb3886_bl -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks0127 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kvm -kvm-amd -kvm-intel -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l440gx -l4f00242t03 -l64781 -lan78xx -lanai -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-adp5520 -leds-bd2802 -leds-blinkm -leds-clevo-mail -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-ss4200 -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_cs -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -liquidio -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -litelink-sir -lkkbd -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lmc -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac_hid -macb -machzwd -macmodes -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77693 -max77693-haptic -max77693_charger -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mce-inject -mce_amd_inj -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-cavium -mdio-gpio -mdio-octeon -mdio-thunder -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -mei -mei-me -mei-txe -mei_phy -memory-notifier-error-inject -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -metro-usb -metronomefb -meye -mf6x4 -mga -mic_bus -mic_card -mic_cosm -mic_host -mic_x100_dma -michael_mic -micrel -microchip -microread -microread_i2c -microread_mei -microtek -mii -minix -mip6 -mite -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_block -mmc_spi -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi-laptop -msi-wmi -msi001 -msi2500 -msp3400 -mspro_block -msr -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwave -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxm-wmi -mxser -mxuport -myri10ge -n411 -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nand -nand_bch -nand_ecc -nand_ids -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -ncpfs -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -nettel -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfit -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_daq_700 -ni_daq_dio24 -ni_labpc -ni_labpc_common -ni_labpc_cs -ni_labpc_isadma -ni_labpc_pci -ni_mio_cs -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicpf -nicstar -nicvf -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nmclan_cs -nosy -notifier-error-inject -nouveau -nozomi -ns558 -ns83820 -nsc-ircc -ntb -ntb_hw_amd -ntb_hw_intel -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nuvoton-cir -nv_tco -nvidiafb -nvme -nvmem_core -nvram -nxp-nci -nxp-nci_i2c -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_xilinx_wdt -old_belkin-sir -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_cs -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p4-clockmod -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -padlock-aes -padlock-sha -palmas-pwrbutton -palmas-regulator -panasonic-laptop -pandora_bl -panel -paride -parkbd -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pata_acpi -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_oldpiix -pata_opti -pata_optidma -pata_pcmcia -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sl82c105 -pata_triflex -pata_via -pc300too -pc87360 -pc87413_wdt -pc87427 -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-hyperv -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia -pcmcia_core -pcmcia_rsrc -pcmciamtd -pcmda12 -pcmmio -pcmuio -pcnet32 -pcnet_cs -pcrypt -pcspkr -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc_adma -peak_pci -peak_pcmcia -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-tahvo -phy-tusb1210 -physmap -pinctrl-broxton -pinctrl-intel -pinctrl-sunrisepoint -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pn533 -pn544 -pn544_i2c -pn544_mei -pn_pep -poly1305-x86_64 -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_core -pps_parport -pptp -prism2_usb -processor_thermal_device -ps2mult -psmouse -psnap -pt -ptp -pulsedlight-lidar-lite-v2 -punit_atom_debug -pvpanic -pvrusb2 -pwc -pwm-beeper -pwm-lp3943 -pwm-lpss -pwm-lpss-pci -pwm-lpss-platform -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa27x_udc -qat_dh895xcc -qat_dh895xccvf -qcaux -qcom-spmi-iadc -qcom-spmi-vadc -qcom_spmi-regulator -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qlogic_cs -qlogicfas408 -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quatech_daqp_cs -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -ray_cs -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio-scan -rio500 -rionet -rivafb -rj54n1cb0c -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-bq32k -rtc-bq4802 -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-hid-sensor-time -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-r9701 -rtc-rc5t583 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -salsa20-x86_64 -salsa20_generic -samsung-keypad -samsung-laptop -samsung-q10 -samsung-sxgbe -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sb1000 -sb_edac -sbc60xxwdt -sbc_epx_c3 -sbc_fitpc2_wdt -sbc_gxx -sbni -sbp_target -sbs -sbs-battery -sbshc -sc1200wdt -sc16is7xx -sc92031 -sca3000 -scb2_flash -sch311x_wdt -sch5627 -sch5636 -sch56xx-common -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scif -scif_bus -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -sdhci -sdhci-acpi -sdhci-pci -sdhci-pltfm -sdio_uart -sdricoh_cs -sedlbauer_cs -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serial_cs -serio_raw -sermouse -serpent-avx-x86_64 -serpent-avx2 -serpent-sse2-x86_64 -serpent_generic -serport -ses -sfc -sh_veu -sha1-mb -sha1-ssse3 -sha256-ssse3 -sha512-ssse3 -shark2 -shpchp -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sis -sis-agp -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skd -skfp -skge -skx_edac -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -sl811_cs -slcan -slicoss -slip -slram -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smc91c92_cs -smipcie -smm665 -smsc -smsc-ircc2 -smsc37b787_wdt -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4117 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-als4000 -snd-asihpi -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-compress -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-ext-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel-sst-acpi -snd-intel-sst-core -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pcsp -snd-pcxhr -snd-pdaudiocf -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-sb-common -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-dmic -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-imx-audmux -snd-soc-max98090 -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rl6231 -snd-soc-rl6347a -snd-soc-rt286 -snd-soc-rt5631 -snd-soc-rt5640 -snd-soc-rt5645 -snd-soc-rt5660 -snd-soc-rt5670 -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-skl -snd-soc-skl-ipc -snd-soc-skl_rt286 -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sst-acpi -snd-soc-sst-baytrail-pcm -snd-soc-sst-broadwell -snd-soc-sst-byt-max98090-mach -snd-soc-sst-byt-rt5640-mach -snd-soc-sst-bytcr-rt5640 -snd-soc-sst-bytcr-rt5660 -snd-soc-sst-cht-bsw-max98090_ti -snd-soc-sst-cht-bsw-rt5645 -snd-soc-sst-cht-bsw-rt5672 -snd-soc-sst-dsp -snd-soc-sst-haswell -snd-soc-sst-haswell-pcm -snd-soc-sst-ipc -snd-soc-sst-mfld-platform -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-us122l -snd-usb-usx2y -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-vxpocket -snd-ymfpci -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -softing_cs -solo6x10 -solos-pci -sony-btf-mpx -sony-laptop -soundcore -sp2 -sp5100_tco -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -spectrum_cs -speedfax -speedstep-lib -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-nor -spi-oc-tiny -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-sc18is602 -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spl -splat -spmi -sr9700 -sr9800 -ssb -ssb-hcd -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stmmac -stmmac-platform -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -surfacepro3_button -svgalib -sx8 -sx8654 -sx9500 -sym53c500_cs -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink -synclink_cs -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -t1pci -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teles_cs -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -thinkpad_acpi -thmc50 -thunder_bgx -thunderbolt -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tlclk -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmem -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -topstar-laptop -torture -toshiba-wmi -toshiba_acpi -toshiba_bluetooth -toshiba_haps -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_atmel -tpm_crb -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_infineon -tpm_nsc -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish-avx-x86_64 -twofish-x86_64 -twofish-x86_64-3way -twofish_common -twofish_generic -typhoon -u132-hcd -uPD98402 -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -us5182d -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -usnic_verbs -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vboxguest -vboxsf -vboxvideo -vcan -vcnl4000 -ven_rsi_91x -ven_rsi_sdio -ven_rsi_usb -ves1820 -ves1x93 -veth -vfio -vfio-pci -vfio_iommu_type1 -vfio_virqfd -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-camera -via-cputemp -via-ircc -via-rhine -via-rng -via-sdmmc -via-velocity -via686a -via_wdt -viafb -video -videobuf-core -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videocodec -videodev -vim2m -viperboard -viperboard_adc -virt-dma -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -visorbus -visorhba -visorinput -visornic -vitesse -vivid -vlsi_ir -vmac -vme_ca91cx42 -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmlfb -vmw_balloon -vmw_pvscsi -vmw_vmci -vmw_vsock_vmci_transport -vmwgfx -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vsock -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83627ehf -w83627hf -w83627hf_wdt -w83781d -w83791d -w83792d -w83793 -w83795 -w83877f_wdt -w83977af_ir -w83977f_wdt -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -wafer5823wdt -walkera0701 -wanxl -warrior -wbsd -wcn36xx -wd719x -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -winbond-cir -wire -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wl3501_cs -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wmi -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x38_edac -x86_pkg_temp_thermal -x_tables -xc4000 -xc5000 -xcbc -xen-blkback -xen-evtchn -xen-fbfront -xen-gntalloc -xen-gntdev -xen-kbdfront -xen-netback -xen-pciback -xen-pcifront -xen-privcmd -xen-scsiback -xen-scsifront -xen-tpmfront -xen_wdt -xenfs -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xhci-plat-hcd -xillybus_core -xillybus_pcie -xirc2ps_cs -xircom_cb -xor -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yenta_socket -yurex -zatm -zaurus -zavl -zcommon -zd1201 -zd1211rw -zforce_ts -zfs -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -znvpair -zpios -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx -zram -zunicode -zynq-fpga reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/amd64/lowlatency +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/amd64/lowlatency @@ -1,18881 +0,0 @@ -EXPORT_SYMBOL arch/x86/kvm/kvm 0xbdf84312 kvm_cpu_has_pending_timer -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x73892a61 mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/acpi/nfit 0xa7e9a159 to_nfit_uuid -EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type -EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister -EXPORT_SYMBOL drivers/acpi/video 0x84e9971d acpi_video_get_edid -EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register -EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type -EXPORT_SYMBOL drivers/atm/suni 0x4eaf0d66 suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0xc9178c4b uPD98402_init -EXPORT_SYMBOL drivers/bcma/bcma 0x6c87f3ad bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0x96442878 bcma_core_irq -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x0783b756 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x1d6bdbdb pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x47315a02 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x7cf07600 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x7f55359a pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x8c914659 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x94991cc3 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x9979eb2d paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xb5fecc43 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0xc2d5e5dd paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0xcb420941 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0xf4759475 pi_schedule_claimed -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x7c69b060 btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0dba4a55 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x28086c32 ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x3d51551a ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6fb2f8ac ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xca7b1d47 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte -EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc4da1673 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xdef06526 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xfe254ce6 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xff9dba99 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x27213799 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x767bff36 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd3c7d558 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x065f5cd0 dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x1757631d dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x5f402bf0 dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x75035b47 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xb768f15a dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xd7c8f9bd dw_dma_get_src_addr -EXPORT_SYMBOL drivers/edac/edac_core 0xade7a4c6 edac_mc_find -EXPORT_SYMBOL drivers/firewire/firewire-core 0x01c66179 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0829794a fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1b52f552 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1bf8afe3 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x22dabeca fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x25365de2 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x36bb7580 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3dc672c0 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4b7c66f3 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x504b0ac3 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x67f2500c fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6c9afc9b fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fa47fbf fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x87e010bc fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8c2bd7c1 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x97e38c1f fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbd40562e fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbf686bc3 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc101ad14 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc6473ff7 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc8c1ffd6 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd1cc24cb fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd20b6409 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd4e86221 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xee8c73a7 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfbde452d fw_core_handle_request -EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request -EXPORT_SYMBOL drivers/fmc/fmc 0x1c79cc49 fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0x1f2f7e2e fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0x32e90d0c fmc_driver_register -EXPORT_SYMBOL drivers/fmc/fmc 0x3fdbfbd2 fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x447794d3 fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0x64afc280 fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0x73a9dfcb fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x7a0963db fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0x9c85f9a9 fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xd17c8c8b fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xf5c5e821 fmc_show_sdb_tree -EXPORT_SYMBOL drivers/gpu/drm/amd/amdkfd/amdkfd 0x7ebcbb6d kgd2kfd_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00234655 drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x007232fa drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0274c826 drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0494c0a3 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04a225ab drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04dffab0 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06d0f645 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08c2e645 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a14f040 drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a5e291b drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bd9b003 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c9f4477 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0db69150 drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dd0a72e drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e3a12cc drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f57af2f drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7f4748 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fcf0a0b drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd95da9 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10b01f30 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10bf22c5 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12e272b3 drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1384c52c drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13cef382 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x140d8c86 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x145d2b72 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14d17fa4 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15698611 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1696ab1a drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19401fd9 drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19859e69 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19c1b4b1 drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a993190 drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b21d67f drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bb20b14 drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cf64256 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d9424f8 drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dbd5f88 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dc02705 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e6cb1b8 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2004be3b drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20b8b6f4 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21074376 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2242cbaa drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26ea3697 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x285fee48 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29845143 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29fdcd1e drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b66470d drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c699cf6 drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c889245 drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d096dd7 drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e037672 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e933cbc drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30790edc drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30da44d9 drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30dc4043 drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31281030 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31369881 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31a85dc5 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32c72b23 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32caa1e0 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x338d72e2 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34471610 drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35a7d2bd drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35fdc25f drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x365bfb0e drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3671afa5 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3744599b drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x387b0415 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39adf501 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a9bbe69 drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ca10244 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e4d4fcb drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ec24cac drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x434e1258 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x451621a2 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x455ab802 drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x479b69ee drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48357173 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x487b91dc drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a08ad7f drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b31b32f drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cc4fa86 drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d1beaec drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2b476b drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e4941ae drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x509af589 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x513015ac drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5394498e drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55c4ab0b drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58799285 drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58b699ba drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58cae091 drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58e869ae drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ae313c0 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c90cf03 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ca68846 drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ce3a2f5 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d81cdf9 drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f8aa78d drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x609a249a drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61e65020 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66977b70 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66c04bc2 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x690f628f drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a7d2b6d drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e942a4a drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x709f7948 drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70ffd3e2 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x762bb2f2 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76758778 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76847dd5 drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76d2d74a drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78560244 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7881f2ca drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7af2e600 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b76c301 drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c26d248 drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c371143 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d33fff6 drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ebadcad drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f5c0b07 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80dd35b4 drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80fdcfa8 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81ec0564 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x821961bc drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8279f8f6 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8357cd64 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83a60b58 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83e6d47e drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x851a8318 drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8815b179 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a4c6989 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a75cfcf drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8adf0958 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ae9768e drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bbd3991 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c63cc7a drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c833bae drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ce9fa38 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cfe5e59 drm_agp_bind_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e29642d drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ea45787 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ed8fcbc drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ee88f95 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9011a44a drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90e66645 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90e95d12 drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91507060 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x920d64ce drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9267c6cb drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9327cb10 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9372bcc8 drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x976cba86 drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97c9eb70 drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9840c76d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9868be47 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9869df9c drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x997f485d drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a21d106 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9baaed65 drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dc2c44f drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eaafb6a drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ed8c63d drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f719ba2 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0f2c732 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa46b6f70 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6f56c3e drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa733c1de drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa84463e6 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8ee0f19 drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9381a85 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabb88cb1 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad0e6d1a drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad433ab1 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad58b92e drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadabcfd4 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf18e6f0 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb05f9d7d drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0bfff40 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0c68c54 drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1e41873 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb34de41f drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4cd7023 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5635a0c drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb694840a drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8286339 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8e42d64 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb5d1ec1 drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc8084e7 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd1199f1 drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0c42792 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0cf62a8 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc226065f drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25e2a36 drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5be2061 drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6027c7c drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc672b959 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc71a2139 drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8171183 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc87c7ea3 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8e5f2bd drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9523621 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9faf685 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca452621 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca8ab642 drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca8c8c52 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcad5d9bc drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb408935 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb9a3834 drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc8ef973 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf1984f2 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf830554 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcff26ca7 drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0ddc065 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1841c4b drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1a40ecf drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2aa4ef7 drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2c7f77c drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2f3722f drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3014eae drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd36c5763 drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5786663 drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5a5d376 drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd613210c drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd61bc0a1 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd68c3030 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd699a335 drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6ae9eae drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd824f3b7 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8d50506 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd949015f drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9ea5e99 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb03164f drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb1cf109 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc34fc3e drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc4c358c drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcd24a7b drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcdf8b0b drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde095fb8 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde496b37 drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf1382ec drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf4fba58 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfef89b2 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00df4dc drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1a8772b drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3876e86 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe39e3943 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe408ab9b drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe522d4ba drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6e33782 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe85d77b9 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9c3d33a drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9fffc20 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea19f000 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea6d535a drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea8484f3 drm_legacy_addbufs_agp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea944652 drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec3f87a1 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedf9f6b4 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee90e5c9 drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef3f2c9b drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf273ca50 drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2744286 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf46806a5 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4d8e172 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5204384 drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf69f763e drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf78b8a07 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf84e1d20 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8f16d56 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa5f6ce8 drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb325563 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbe79f64 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc93d713 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcd0fb43 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd410a08 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe439e01 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x024aaafd drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x037e30f7 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x039bcddd drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06838d73 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08e42634 drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a2f9821 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bb7b6a8 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dde3023 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fd0d7c4 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x145a7e1a drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b87e82e drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ecbd716 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20779977 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20e8c8d1 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x215c04b8 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21ab47d3 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x242f27d7 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25152564 drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x262fab64 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2651bccd drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26698029 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27ad981c drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x287bdfb6 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29f0aa0b drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c8547b5 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d0ecfe4 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d66f0f8 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e94522c drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f201b5a drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3005cbbc drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3410bfc0 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3558d833 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3580ffb5 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36188b7c drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36222755 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36706e70 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x379ef2d5 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38e20fe0 drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b816cc5 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cf5f7c0 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4046bd8d drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x412761fe drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x427d0f02 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45df54fe drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45fa5860 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46e823d4 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47b9f579 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c213a29 drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d678897 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f96f0a0 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50fbc3ac drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x558bcbd4 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x587a9e61 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58833414 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58b77eb2 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59ce33eb drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a6db060 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e16cf9b drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63ae8086 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x645ad9fa drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648efad5 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68fd67ad drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a0df3b7 drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b3d6d0a drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70d79845 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x721763de __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73932233 drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x761082bf drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x768302c7 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7715c681 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77769000 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79e2b602 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7afaf70d drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b0a101e drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c5018db drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c70939c drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e0ff11f drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8021c829 drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82341e66 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86090cec drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a6c4d05 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bfab8ce drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c066112 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c4e3a24 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c5f64e4 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca80c4e drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f592509 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f8b5945 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91315f54 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x917a4458 drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94a8670b drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b88d761 drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ba9f67a __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa00d6fbb drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0871b67 drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1f602f6 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa223ef48 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa35a5823 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7a4fefb drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9605dfe drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaafed295 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae5078bc drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb00c622e drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1615dfe drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb411eb03 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4481e3b __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb63697ec drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbaa24464 drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdea4960 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0d09b3a drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1eb7be9 drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc27c9017 drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc56905b0 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7643ef2 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8c92786 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca5fafec drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce768b15 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xceea23c3 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2044431 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2fa5157 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4049354 drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5f710df drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6a96093 drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9702ee6 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc4c19b5 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddfe4140 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde3b9e0f drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe12fc71c drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1bdab94 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe27b85b0 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe28d3d69 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe41f231a drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe49f81a4 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedef770c drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeee3cc42 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef19c457 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf07e8cbc drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ea3a1d drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf508210b drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf57148d8 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfca4a860 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff52136a drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x004481a3 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x02bb8205 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b26b6a2 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0d75ea40 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0fe2e603 ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x153b5953 ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x173c1a2d ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x179365f4 ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1865ad44 ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d3834bd ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22ec80fe ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24765c33 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2783e11a ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d26bdc7 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x321eb5f2 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33e436b2 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x352aad01 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a0f4295 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x446e52ff ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x498e4f30 ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a801ad1 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8e3c41 ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58c72383 ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66c45250 ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a41de90 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c577de5 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c8dc6bf ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e875de9 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70792d99 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x76818b13 ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x78fe8ba4 ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7cbc0108 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x817d6bd8 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x82e40a7e ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836d8fd0 ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x842850c4 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8457554f ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x869c1055 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89872dee ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90322ecf ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x945a8242 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x946d9ea3 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x986dc509 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ba2fc71 ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ce03102 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9fb7672c ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xad8621de ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4d4618d ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc057751 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf49f835 ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf69adf8 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcfde3725 ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0c6ebab ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0fed4c0 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd50204d1 ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd6e59e9f ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb022cb6 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe051b9c6 ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe914d22d ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2d3ff95 ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf66d208c ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf70d413c ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfcf87428 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff896d7b ttm_mem_global_release -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x430d7d8d vmbus_sendpacket_ctl -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xe07af10e vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xe1b9029c vmbus_recvpacket -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f04edf7 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x04c9ea61 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x6c660887 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xa32506cf i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x3a8b1ba9 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xa786036e i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x79ee1996 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x09af3613 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x118a9a60 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x164e6878 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1f3281f1 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2402a4fb mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x44e3b437 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x65ba3c97 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6a001654 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6ca1d8b0 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8b5cb126 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9d748dde mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbb47df09 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd08ff305 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdc3ea101 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe63b84d6 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe92eb140 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x8ea1ac50 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xc4879298 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x72eca0e0 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xa2718c7f iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x2cbab7bb iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x46cbb992 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xb32492b5 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe981f178 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x31d94342 hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x3be639c0 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x50fc480c hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8178e391 hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x99b621ee hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xef244d47 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x684afea5 hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xab42ec37 hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd9707d49 hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xf7f4bb4c hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x00034a50 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x06a83a25 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1a028a0a ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3e7ed264 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x83d937cf ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa55a605f ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb017be3a ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xee98a006 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf5e2a8b3 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x1a7737ea ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x528e7c24 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x726fad1e ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x851449d8 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xab04d7ea ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x22d20d77 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x68542123 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xae199e26 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x14b44d9f st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1995fedf st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1a6590b6 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2db5ed49 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3ea55180 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3edb1204 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5cf9fa29 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x647007cd st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x67988f8e st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x862e1943 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x90aa05db st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x99d53041 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaedec03f st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc8a6dabe st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd103cf1d st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdcb68dd4 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf20c0253 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x3f88207a st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xdfbac5ba st_sensors_match_acpi_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x47e900d4 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x31a33438 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xa334be48 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x3ebdf275 hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x0f548ca8 adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x461ad225 adis_enable_irq -EXPORT_SYMBOL drivers/iio/industrialio 0x11bc8b96 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x1af6d22f iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x30403750 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x32e3c297 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x6aae931f iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x86216145 iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x955dc06c iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x9933e927 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x99f06915 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xa79d335d iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xbb96aa66 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0xbde6e6f6 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xbfb9c3c2 iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xd1e10ffb iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xd8103250 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe7b3f76e iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xfbab8151 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x78d92085 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xd6badf8d iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x49d2a003 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xd5692700 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x829e2e91 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x3602a893 st_press_common_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xc652a296 st_press_common_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1edc4064 rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d9cabc5 rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xb25feef3 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xbfd235f5 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xd3a17c29 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xe689dac4 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x012d42e2 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x17efcbf7 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1e9a6518 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2fb071b1 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x37727258 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3e2a20aa ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4bb92eee ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5831d5cc ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5926ecc2 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x80d89482 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x95d6b5d7 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa39cf647 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa6ee3c0a ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd60e6159 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xde1e96d5 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe5a439b9 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfb3137ff cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xff02fc60 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06a4af73 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06d9b40b ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x089a4744 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08b4fd83 ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11ddc6e0 ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1366a539 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14e406e5 ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15248a18 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b945b28 ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x272ee69c ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x283d28bd ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f80dc28 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x324c8eaf ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x341d89be ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x352ec656 ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x376cb6d8 ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37705ddc ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38c0bc60 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b247668 ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4482cf3e ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48d3031c ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x494be062 ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a79601c ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50a4235f ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5428f230 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57bb0892 ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b09a34d ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62f5e345 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64001c9d ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67eea564 ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67f05e27 ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68167f59 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a55cab5 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6be638a8 ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d34c3ef ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d778219 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x728dc025 ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76684b54 ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76f215d1 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7878ce71 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b5fded1 ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x821f4e3b ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85bfc8e3 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dec0378 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9543c32b ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97962b1a ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9845c137 ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b8ad340 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bb8aeda ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c0fed28 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9db6af32 ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa25a2886 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5170dda ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5884b3b ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa69c1878 ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa62e3ae ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0fc657 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab800e9d ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad10f283 ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf62e2b8 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0135332 ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1d57f31 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4e9119d ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbda85508 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc27c1bfc ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc37888ed ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc394ec02 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6d88d91 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbc135e4 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccb5fcdb ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccb90947 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce018865 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2b448b7 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd51b8473 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7b4fad9 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9857068 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdccde209 ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde91071f rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3451d6a ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe95d4929 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0463f57 ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1b8f42b ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2d4db7e ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x0bea1575 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1775b891 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2eaa4bfc ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2ebf90f1 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x40fbfe4d ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x46c01532 ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4abc0324 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5b0bd8a9 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x752a4118 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x94c878c4 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb795b935 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf33bce9d ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf4601873 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x05f51c4a ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1634e091 ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1ca1edee ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x21ab01cf ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x287d1e73 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7abd05dc ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7d7bea1b ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb93bedd8 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xce223475 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd1a84f9b ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf2b7d6c7 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x356493b1 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc5cb9508 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x083b6054 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x394c9b5a iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3a05ebe5 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3b429072 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x492e5846 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x538c624b iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x539a15be iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5b61b613 iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x621b7d1c iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x637b4c99 iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x93b296e1 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xaf468c27 iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb518c3c9 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd22fc29e iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfeeb0c39 iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x185c6dc1 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a657745 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3aac0617 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x42e87edb rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6895ee81 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x77f0e6d9 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x786d656c rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x914c0d96 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9c4c2b30 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa63060be rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa282e3b rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xae82f4f4 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb23abcad rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc84fe8dd rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc96628f5 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd529bcf2 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd54d16b0 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd99b5f06 rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe67896f3 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf46c6559 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf82e26c3 rdma_create_id -EXPORT_SYMBOL drivers/input/gameport/gameport 0x000897c8 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x35ef0125 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x43e6c102 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x60ae102d gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x703e892d gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x8994c663 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa1a3df44 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xab788250 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xe5535c21 gameport_start_polling -EXPORT_SYMBOL drivers/input/input-polldev 0x16be01c3 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x98cfa1a7 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xb84db9fb input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xc6f2cb4f input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xdfed86ae devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x771b68f3 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x6bf70afc ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xc499405e ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xe8c92c31 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x6966a0fa cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x305c83ec sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x55dadc0b sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x9b370cad sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xb66d5dbb sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0xb84b6ecb sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xce353a72 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x03e933dd ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x82e235c3 ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x01bd6363 amd_iommu_set_invalid_ppr_cb -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x13409407 amd_iommu_bind_pasid -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x47aef159 amd_iommu_set_invalidate_ctx_cb -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x79fb9e7f amd_iommu_init_device -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xa856c6d4 amd_iommu_unbind_pasid -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xe4fa74c9 amd_iommu_free_device -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x181f95cd capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x33aeb34b capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3a7660b8 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6288da2e capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x767d566f attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7c9ca364 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa192ee40 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa4e31e45 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc931d160 capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xdbec48c5 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x084ad4a5 b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0fd5aecc b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x196e5903 b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1ef94391 b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2649f2b3 b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x39a432d3 b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4c97daeb b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4dbff420 b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x60d6c8cb avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x692e5a81 avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x911af7aa b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xabbb8288 b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xce399608 b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf01827c0 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf96fb09b b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x080cd1f7 b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x0d259ef8 t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x101398f1 b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x591ef9c3 b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x5b185e64 b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8964dd6a b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8a45f2ac b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9db6aa50 b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9ffbf991 b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7c8eaa51 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xdc4f270b mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xeb9db770 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf71377e3 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xaa6473ed mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe629d410 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfe250a2a hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x1394aa86 isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x5b464794 isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xb76299ef isac_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xc6889d46 isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xd2884dd7 isacsx_irq -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x406a42db isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x6576a7c4 isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xa737d8c0 register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0980a9d4 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0999c245 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2d521b81 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x327f5e97 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3e0afa14 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5e7e221b mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6807e9de get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6fa58861 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x708ab99c mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7725260a mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa32081ad bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa6079374 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xae0ebf1d recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xae95c570 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb33e584e mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc7fb6871 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc8d83158 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xce5abfcd mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe23754b6 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf197c960 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf6bdd9a3 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf74bfc02 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf8554477 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x14a6499c closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0x16ab69bc closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0x2971637d closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x2d8d082e closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7f2a56c0 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0x8f8fc624 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd97c32a1 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next -EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-log 0x1f0f72aa dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x4c701082 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x8f3da5b5 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xd8ca5f46 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x28c63271 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x44176c0a dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x4d800514 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x6bfff7c8 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xcce0a4e9 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xdb739396 dm_snap_cow -EXPORT_SYMBOL drivers/md/raid456 0x71f53ad2 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x12326a29 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x148cdb92 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x34d7d6d4 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x361bf4ef flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5b0a519f flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5e08f7d7 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9b2d83d3 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xac141b43 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc09cada4 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc2a2694b flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd4f01724 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xeb4a99ed flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfc68637b flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x57898ec7 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0x881b436e cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xa1e0aa2d cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xf55d811a cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x962d02ce cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x3562edf4 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0xdee9631b tveeprom_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08c0ecf2 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d3c856a dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x12f5425e dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x14fdf0ee dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x154d1de2 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1956e610 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1fa90fde dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1fc52978 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x223238e4 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2d865ffc dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3405dbfc dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x371b2737 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3fb35a0e dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x42f8f39c dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4cf3b0d9 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58b89462 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6560e532 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ec415b6 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7ff2dd0e dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x848e34e6 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x86ae71f7 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8bcbbafd dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb80e9f30 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc557888c dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcb5f2284 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf8af57b dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd027fd7b dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8988b7b dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xda9425a2 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdbf59ac0 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xde5ccb50 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe06ffb6a dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5014ff2 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe8007341 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeaf47cb5 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xef111097 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf6c88e8d dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfa2ae6d3 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x4424be7b af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x3fb8989b ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xc88c0905 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1f5e9d4a au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x216f1081 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2e55e924 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5c791952 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7322b028 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x739de08c au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7f4f6cfb au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x832c3f73 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe849c096 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x0ee55fa6 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x0ddaeec5 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x8e3243ce cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xe191a10a cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x41ab8f12 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x6d77e3c8 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xe4716c5e cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xbdb2cb9b cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x0bffe5af cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x379db4c2 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x50e7a9ef cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x87e1fc5c cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x274361c1 cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xcd000b75 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xdf52386d cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x058f25a6 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x27716447 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x38289d21 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4cb517bf dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6a72a9c6 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0ca5294c dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x245bd049 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3fe4f208 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x457a5339 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x46d62ff5 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4fd22957 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6a5cd2f2 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x90acfb23 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xabeffcb3 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xafad8a25 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xafedb600 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc6455cf4 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc68c25f6 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe1ea82fc dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe5af15b2 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x03036e2f dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0de303e2 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x24178002 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x578d0022 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x61b6a7b5 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa0431796 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xfc3ddf4c dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5649ff83 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7d87400e dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x88b37026 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xdb6b521c dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xe234431b dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x2ea5edec dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1888189a dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x72fb5f82 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x79c2f4cf dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7ad32e6b dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc5076b4f dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x73630162 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xd5e7cf25 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xefe699e8 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xdb512885 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x0776f4be dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x0839b61e ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x072ab1e2 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xac5d3f2f isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xd4878fb8 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xaa5f3114 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xefbe2219 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x3f759699 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xa45deaff l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x6fc29d8a lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x3f056757 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x726aeb37 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xa88f3e59 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x56ca9528 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x4cdcc20f lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x965964e8 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xcabb0259 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x3a104eb4 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x1d261d14 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x886af74c m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x058af6e5 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xe232a3fa mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x58b73b48 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x328a6eb4 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x23fa6f4e mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x51288571 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xfe0b78ff nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xeaf67544 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x9cd4e248 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xfc48f069 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x86b21437 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x4ba45943 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xfc86a18f s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x470f5056 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x6e1b6d33 si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x5ec6c3d5 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xe058eb4c sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xb3ed298d sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x80af7bad stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x9c598943 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xfab1af4e stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x183de3a9 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x4d83617c stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xe8d84de4 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x81d87b58 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x82814342 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xe2f83cc9 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xbae2119e stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x677fc8eb stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xa63f7a71 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xa41171dd tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x2fead162 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x248db6f3 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x0091f56a tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x34845d02 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xb195fc0a tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x04d32c22 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xe3884392 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xe0f27e81 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x65fb253c tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xec1dcdab ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x57931482 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x40012851 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x594efbbf ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x5e7c6c82 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x7b1e6e69 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x117fcb78 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x11ea5202 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x17fb2954 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x427de893 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x59f54fda flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7d55eb1d flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xcda14551 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xfef08129 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x60577eff bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x672fb080 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x8c5fd0af bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9b096bc7 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x2249cf1e bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x98605503 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xb17903bd bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x034e054a read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x39a01e95 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3ec6704f dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7d797d8b dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x92a402c5 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9fb031b1 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa3afd464 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd85869ad rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe16d390d dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xa408ef5a dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1b6d85df cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x21e895f7 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6a2e7011 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc913eef7 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xff672fff cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x2fda5eab altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x02bb422e cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x239e4e9c cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3fbf3f48 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7ac6f651 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xacff3106 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xcde2a5cc cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd55cade1 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x9f846802 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xe712a70f vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x36028f45 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x96e128bb cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x9f1609bd cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xba7c1667 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x39243eb8 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x464ee6c3 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x49483b74 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x614c7000 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x79850c95 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbc8e4133 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc3317207 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x01f577c9 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x208845f1 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3651e27f cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3a89880a cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3bccba8d cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x453cd9ba cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x614ed728 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x69824801 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x71f54a02 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x75e742af cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7d2b0e42 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x83ebf4b6 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x88b765e1 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x93fb931c cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9c1895b8 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9ed530aa cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa106091c cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb1532ab4 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc214236d cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc2284005 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x02c7ed2b ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1872d49f ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x204577d1 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x367eff78 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x454e7b88 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x46f24a26 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4bdf1b0b ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x64d80e9e ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x71fec3a0 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x79d00653 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7a52097f ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x841003cf ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x98393b10 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa2954017 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd9b16537 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf81f49de ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf8aa3447 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1785dfb3 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2faf0e5a saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x59f24b15 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f788889 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8fc928b7 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x98407dc7 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb0360710 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xba9d2529 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc1de9678 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd0ecb1e2 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd9fcf5c9 saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf7cf555f saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x4e9d81fb ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x2b82f49e videocodec_attach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x32c91481 videocodec_unregister -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xb9124a19 videocodec_detach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xe426f223 videocodec_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x4aaedb04 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x615f27d5 soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x65c94826 soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x80358611 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xcbcf8fae soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xd3641fd6 soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xed5e66d2 soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x61342613 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x630fc062 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6f53b212 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x72055a13 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x980628e6 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x9980e15d snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xbfe379ca snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x05db0e12 lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x0ddf1163 lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x54fc2f8f lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x67917483 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7bc0b366 lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x866cdea1 lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x998f73e2 lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa0abaafb lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/rc-core 0x669c6fc6 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0xedeaf0ac ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x707dd28b fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x5e6f504f fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x2e2ec7e2 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4f968906 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x79c51c2c fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/max2165 0xa630d865 max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x364531f4 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xb572c943 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x8d3a7e66 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x3096f549 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xdc1b2040 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x4939f663 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xf65ad072 tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xea46a409 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xba084a19 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x54607b56 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x29e4af72 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xcfc39750 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x29148026 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2fcac07f dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x63252a95 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x78c3af17 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7ce7c746 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x99f81d63 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9dde8c6a dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcf605932 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe48c4511 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1c0679f1 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4b402aa3 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8e7c91db dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc7dfc24c dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd375bc2a dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe16e5884 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf62b4c51 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x415bcdc6 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x07abbffc dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1190e81b dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x171dcb73 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x43acd7bf dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x589722a0 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x58ce1b57 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x90989665 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd331d869 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf4297349 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf4688eb6 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfc5cbfcb dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x59bca758 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xf8cd9739 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x11050e1c go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x18714108 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4c7572e4 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6909345d go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x970de8c3 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa3af9070 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb6cf8754 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd834a907 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe700a779 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1d9a37db gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2e98b5b4 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3e1034e5 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5343b45d gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa8a438f3 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xaa91f1ef gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd4f77f1f gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf7721a1d gspca_suspend -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x24995aa6 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x82a539f0 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xc52d96b9 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x87633c12 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xaca43dd8 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xa7a9d06d v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xd20b7786 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xe0bfb405 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x0eee4ced videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x3a26f862 videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x85a40a8a videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xbe12fe31 videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xc3b3058b videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xf57d728b videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xa292f900 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xec0fddbd vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x056589a5 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x099a9e25 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x4773d9c9 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x9304435d vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xb9f847a3 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xf58c5388 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0xf18389c1 vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x04fc5c38 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a5f71a5 v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f7ebae5 v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1171b473 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x121d2d06 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14a441d0 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x150d4367 v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15a19d87 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a4fce3a v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c1844b1 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x277f5134 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2865484c v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x305a7d76 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x353d3a14 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x39629c49 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a74a633 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3dc81dcb v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x472cefe7 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4be801c1 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e812331 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52a6a256 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x565203ae video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b4123c1 v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5cd70714 v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x610871d8 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f4a5006 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73eb561d v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x78150af7 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ba37e5a v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d08723d v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d9add29 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82a92488 v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x86410dbf v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8dfd4f90 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x927f9a9d v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x94a49040 __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x98aba7f2 v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2a3923a v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac2744f5 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad52d0be __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6220ad6 v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbf13b2cd v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc03e2279 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc474456e v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc577d11e v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcaa4b542 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd750c0b v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1479c19 v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd42b5b91 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6a2ffdf video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd815fc8e v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda45d384 v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe1e85b6d v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe222d162 video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5f739be v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeba287bf video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed0c007f v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf0edfc98 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1a92016 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf373b022 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf400687f v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf67354b0 v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7dfd310 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9d104ba video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb0fdb8c v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfcca03ee __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe75fa2c v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xffd7a539 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/memstick/core/memstick 0x01b685da memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x06f6ab0f memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x49214e20 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x57348d48 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6d80deb6 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6f0f9b94 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8d47feaa memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x97376b6e memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x9aee8684 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb9c422ea memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xeb3c94b5 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xede597fe memstick_register_driver -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x034bd565 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x09a6c9fc mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x09ea560b mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0ed6eb11 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1ca181f5 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1e0fdd05 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2601fa78 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x33c65096 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d2e891a mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4efc17d6 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x511d771b mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x55d6bc68 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x63a4fd10 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7197e5a7 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7ac8039d mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9497db30 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9b098a5b mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb5085501 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xba2ff326 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd2c23315 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd6477e8d mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe07c4fe0 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe109b9d5 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xec7a11fa mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf37d8f78 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf6d71596 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf7f04509 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf98b2485 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfb020bd0 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x13fcd6ea mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1aa3bc5c mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1dc485fe mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2304908b mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2b19bfbf mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3618e76c mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x37944503 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x51b8e2f8 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x56d6e5d5 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6ccb6100 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8e113941 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8ffb2a64 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9e5f162d mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa4fe5ae9 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa986ee1e mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xacd7a7a5 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb2c1738b mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb4ca6a4c mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb9c88c79 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbe3984f3 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc0598c5e mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc979c955 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd67e0d3e mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe38f239c mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe5ee7c4f mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe84a60ae mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf43c343a mptscsih_host_reset -EXPORT_SYMBOL drivers/mfd/cros_ec 0x248270f6 cros_ec_suspend -EXPORT_SYMBOL drivers/mfd/cros_ec 0x4694fe31 cros_ec_remove -EXPORT_SYMBOL drivers/mfd/cros_ec 0xcf0b5b13 cros_ec_register -EXPORT_SYMBOL drivers/mfd/cros_ec 0xdb30acaf cros_ec_resume -EXPORT_SYMBOL drivers/mfd/dln2 0x3812366e dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xb048787c dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xd62c8633 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x01612184 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xd4f96192 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x059664cc mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2b9aeaf4 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x34b6e7d5 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x418e9b91 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x48aeddb1 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4b3150ec mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6414768f mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xab3aad0c mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb0ebe154 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xca7baa83 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfceded83 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x33136eff wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x461ff640 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x738bb991 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xded30025 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xece9bbbc wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xff88670c wm8994_base_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x68904b02 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xff3e3d8d ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x13090222 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x1f751513 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0xe57f4312 c2port_device_register -EXPORT_SYMBOL drivers/misc/ioc4 0xbc2ce761 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0xf2a32d23 ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/mei/mei 0x5eddbbc9 __tracepoint_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xdd1b8214 __tracepoint_mei_reg_write -EXPORT_SYMBOL drivers/misc/tifm_core 0x0affb61b tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x10dfc942 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x1b3b4f69 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x3dbeed5d tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x68b9a67f tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x70dbdd5f tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x759fec39 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x8129fe24 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x9fc0bb19 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0xe0188fbe tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xe09685d9 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xf10a25f6 tifm_eject -EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x59169dd5 mmc_cleanup_queue -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x429dbbf1 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x53e4d90a cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5b93ff96 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6c77c0f8 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x89581a95 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcc2e0e36 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xdab3a60a cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x67a2a6b0 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x7b448b97 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa17ecc04 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa7b01f7f do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xa4d47ba7 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x50f56f5b lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x7a340b79 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0xacae5887 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/mtd 0xe26dd37b mtd_concat_create -EXPORT_SYMBOL drivers/mtd/nand/denali 0x3535cceb denali_init -EXPORT_SYMBOL drivers/mtd/nand/denali 0x50f69685 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/nand 0x01922197 nand_scan_ident -EXPORT_SYMBOL drivers/mtd/nand/nand 0x127c0ec4 nand_lock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x467d36f9 nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand 0x54b7e4b8 nand_unlock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/nand 0x96bca1bc nand_scan_tail -EXPORT_SYMBOL drivers/mtd/nand/nand 0xddd39b99 nand_scan -EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x41427550 nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x9d66fdb3 nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xde37c37d nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xc94b21ed nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xdd669ed7 nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x68ca3306 onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd6a966b7 flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xda67e05f onenand_default_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xeac7aaf9 onenand_scan_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x16c70f85 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x43d12f36 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x455ae059 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5b7fa9fe alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x640a3358 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7b1200dc arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7ec3532c arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8b31397d arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbfa2c754 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfb39549b arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x27a75764 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x8390af04 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xaaa12fd4 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x07e2de34 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0864a075 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x17a8f4fd NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x504e58e5 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x95f10a56 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xacc88216 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xad8460c5 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb9df89d3 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf75d1ded ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfbec8889 ei_close -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xdfa76029 bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x812471a8 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xe48ca42a bgx_get_tx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0316d349 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x06b38cd7 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x26c92d6e t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x29c6cce8 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5af488d5 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5dcaaee4 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5de2ae00 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7c437f9f cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa15bfd8d cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaccedf5a cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb3081b55 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcd7c5be1 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcf208003 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcfccf61b t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd4201f03 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe1630e2c cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0a8a2b2a cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3273364c cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x34820614 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35d51ca9 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4c38e7eb cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57707dfc cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x695b2827 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6e50843e cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6f142235 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74b8e71d cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fe4cba0 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x81ff7203 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8626aa98 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86fc901f cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8bbbc85e cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9598beb1 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9bc65b2a cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4037cde cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa39ee25 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaf899797 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc5b12bce cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xced37041 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd4380d0f cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd5ab9181 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8447d3b cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdc528dac cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd3b39ce cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe4c73b57 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe57ba2ba cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe840674a cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff642659 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1b587b1c enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1f6a496d vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2da168e0 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x45164b31 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x58f72bf8 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe0309391 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x1d1fca0b be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x3dba64ef be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09fefa8c mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e55812f mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e620daf mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17623a0e mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1da4174f mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e17cf59 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25d544ae mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fcc0c81 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30771a58 mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34de7054 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39509212 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c54b732 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47eb4fe0 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d4e8eca mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52bc7974 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x557e8336 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57c619d5 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59305c29 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6250a5e5 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7974d3e1 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a50b9f7 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7acb4f62 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8034b42e mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81f596cb mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86214f22 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8abb108b mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9947a420 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa77284f8 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa777074a mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa9fdfe5 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab80dd15 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0c069ff mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9dac697 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe00169c2 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe718cb16 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea109e9b mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed69bb0b mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1821068 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03e2455d mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c8dc37d mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14d0f0e9 mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17385aea mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d5da6c2 mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ef53524 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x325036e1 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ade58b5 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42154636 mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a9a99a2 mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60944ad8 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70a9ade4 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71eadb6d mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73ee4677 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78c92eac mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x812a640a mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84703c88 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86f08dfb mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88434a95 mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8dab6c6b mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94a9130e mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9812dcf2 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a52a75b mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2de408d mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb4fae6d mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc02bb7d mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0b2ed1b mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc165b50f mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd196694 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf0a6021 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3a3397a mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd47ed591 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd3b81e1 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8386b42 mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe867a152 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee6b1a20 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef8c92d7 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb71e59d mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15ea1f11 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x360b4c47 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x67d9eacf mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x95cd361e mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9676f968 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe7323db1 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfde57afb mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x141839c7 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0f48abc7 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x76e791ca hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x793f400b hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb16f60f2 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc4f92b27 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0300fed6 sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0e8ec609 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x145a6b4e irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x258ea20d sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3a981754 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x45ab388e irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x654961c7 sirdev_raw_read -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8d96b190 sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9176d055 sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x99b4f065 sirdev_put_instance -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x1a0e2692 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x6bb81fe4 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x70f398dd mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0xd37d8395 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0xe9dadabc mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0xeff5d5fb mii_check_link -EXPORT_SYMBOL drivers/net/mii 0xf634f4f7 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0xfb6a5406 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xb9c71631 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xc10fb1a5 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xd7d53357 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xdb598627 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x1845583d xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x1b4d6921 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x6833ef49 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/vitesse 0x371463bd vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x1065575d pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x4d5d89de register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x64f2837f pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xb9558a55 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x1d059e21 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x58445b64 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x691a157b team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x7237678d team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xb19328e8 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xb9f73eb1 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xc7dac496 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xfa765ed6 team_options_unregister -EXPORT_SYMBOL drivers/net/usb/usbnet 0x1b45d71b usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x2f7635d4 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0x75de2e5e usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x9fcda07b cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/wan/hdlc 0x05f3b3cb hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0x071fe8e1 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1c7e9f98 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x2c11c2ba unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x31c33572 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x324df3cd hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x49e53355 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4ae5c493 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x5b280adf hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x73e08659 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xdac9e330 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xfc90b5ff i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/airo 0x0f8550c4 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0x1e6666fc init_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0x54da4c26 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0087e52d ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x14546b29 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2883e02e ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3fd1d164 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x50531a70 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x840a5ee8 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x88677c32 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9e1f3965 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb4d68fbc ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6fcbae7 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe736e66b ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xed0bedeb dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02feb4c4 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1adb1c56 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1b9ead14 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x290bd909 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2f4c24da ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3a585869 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x71c627dc ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9244903f ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x95691307 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x96e0a76a ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xac1eddcf ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc5374e8f ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdf8aec5e ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfde3d119 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfe7eb8d3 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x00c64337 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0504f167 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0aefca37 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x34d8f532 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x388526f3 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x39026888 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4f32dcf9 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x65c5d0a3 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7649089e ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7c2bc143 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb66c924f ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x152374a9 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1796cf81 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1eff17d1 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x21d92f0e ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x24a3d2f9 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x31be270f ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x457b8598 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x575a9db2 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x58fd9d8d ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5c25e415 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7e9b7827 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7ea20260 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaa7d0eb3 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xace56e1c ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb088f857 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb4395232 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbd6cd2b9 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcb7088b4 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcd9996b4 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd3fc8705 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd8c4b45c ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf5de6f41 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf8a60db5 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01db6417 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x031fa983 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x049673cd ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x070f6ee0 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07780006 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ef13794 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10f47358 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11971224 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x123cd4ca ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13ce14fa ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1479ccc3 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15924215 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x171dcdf6 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17ca2d41 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1883ada8 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a5fc012 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b33aaab ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x216b2841 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x240f345d ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26a39e55 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bfd9f44 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e50ff4e ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x370a3993 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3761473b ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38eb8da4 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e39b196 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4208fe9a ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47d276c4 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49c9ce41 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b23d59e ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4eb367d3 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51f94531 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53cb2a11 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54bd3593 ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55ff83ac ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ebb1e71 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5edb7cec ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6055d32e ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62a901ea ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x648c83fb ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65483ec0 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a75d3a3 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6dce0d71 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73e9431c ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x767b58a4 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x781bae05 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x783f5586 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a07676c ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7baa24c0 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c81e019 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d216c39 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82c768af ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83bd3226 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89a7273a ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91f547f1 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x921247e6 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92f9265b ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x938386b9 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x973b24ce ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9815e28f ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x987781a3 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98b27ad8 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99445a23 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ed51f9f ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f4d5fa2 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3dd07bb ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab8223cf ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad8913ee ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf04ebc7 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1637ef2 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb18e9743 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb394862e ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb424e434 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6f27cfb ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8e707c4 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba60008a ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9506c30 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca85ed76 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcfec9c4e ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd017ec35 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3e76564 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd598345e ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5b2a665 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd867d2a5 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd942771d ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9f052d6 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc15edbe ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdde5c7a5 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe163868a ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5906975 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7ddcab7 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7e5c456 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9251dfa ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec3d4ee2 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed79f159 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xedde1477 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeeee1f0e ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefaa61c7 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf209796a ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6adeee1 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb2384a5 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc820fda ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfccb68ba ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd465147 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe361346 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x0ebf0a69 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel 0xadbbd0bf stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xdc9bfb9f init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0b9bd727 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1ee64295 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x36909f0a brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x66092c24 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6d2bcd7b brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6d6f8346 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x70dd5287 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7996b188 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7b115228 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9a7461f9 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb19cf3f3 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd013e39b brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd1894e7c brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x045e946a hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0642e912 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x076970b1 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2337bd98 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x23bd00db hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x316c6499 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3401d7d7 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4f0895e3 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5300ed77 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x543ef5c4 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x60c6c9be hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x65731e3b hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x72e7c39f hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8854febb hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8cc3e4fb hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x99f1575b prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9c8c16ef hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa72576c4 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbe9a0688 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd42432bd hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe5ab6de2 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe68324d3 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xea7e91e5 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf8bf4170 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xffa11471 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x037b11f6 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0d9f4459 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x14e7d50d libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x15844093 libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x20d9003d libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x36db5b72 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3b997756 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4e0d71a8 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4fcad57d libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x50014467 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x50494b00 free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x629e86f9 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x62a10803 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8cf9bc79 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x94bb377d libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9634590e libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x96df5ec2 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x97a93334 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb0f91452 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd5db8aa3 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xde51cf5c libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x04f7cea0 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x063f2e08 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06f5218d il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08740271 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08ad466f il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b0f5c9b il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b137b96 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0c16721e il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x10e244af il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1164bd8d il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x123e854c il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1401f552 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x14b764d1 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x171bc483 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x188e0eab il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1b4f1efa il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1c0d019c il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x24b84ce6 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x28126725 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x29f4aeb7 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2d727384 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x32d57982 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x35536ab4 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x36118f26 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x390c4a61 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a1333f3 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3b031377 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3f73b088 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x46bdcdf5 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e20c952 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5295a071 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x53e5952c il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x54f26f23 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x55b5012f il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x56450680 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5cb3da40 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5ced7afd il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5de09b2b _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5fdbf050 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x61887268 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x62a067be il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x64f6209a il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x653814c1 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x694535e2 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6b61cbc6 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6eda9292 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7d67515a il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x846b31d7 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84c19db2 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x870fb624 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8c838e24 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8e2531b2 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x902b656a il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x91a75706 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x94817729 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x94f131ac il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x951380d6 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x965b0f2e il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x97425948 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x98b893ee il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x99d3c05a il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9ab3ebf9 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9f73681f il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa6ff4d4d il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa7409344 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa758eac7 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa8c58841 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0217b64 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb044c31b il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb466f2c5 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb792445e il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbd0efe6b il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbf4da7e7 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc3f5ecb0 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcaca5e13 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcb9e0b92 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcba3f06c il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc080bb2 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcd746f53 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcfd119c2 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd335b1b4 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd420fb04 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd4d55044 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd6415ec7 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd94914f9 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdfebd913 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2807dbf il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe5c19adb il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xec77f238 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xec97871a il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xecbb175a il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xee96ca4c il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xef68b1fe il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf469a295 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf51b3950 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf7b81caf il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfbe55ff8 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfdf9ff89 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1b06ce78 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x2447a6ab __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x314a20a8 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x5e9c24ff __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8c8ab242 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x9a1b1df9 __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xdced6db1 __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x02cf7fcf hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x128af3a2 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x31b4be3f orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x50ba7013 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7ab588ca orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x872530e5 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x940cc19f orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9b75f6ae orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa51211c5 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb576e57c orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb61349df free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xcb5663d4 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xce20866d orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd49e4067 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xedcccdcf orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfa0953f1 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfb591b72 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xfdbf62d6 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x00c77f0e rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x097771ff rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0c0c1dad rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x112e8b9c _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x16d9353a rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x182493a3 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2134cb5f rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f762111 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35b681c4 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3aaec3dd rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3da27beb rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x40ee378f rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x52066a65 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5706006c rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5d92789c rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5de45be7 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6136163d rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x68963f06 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x73385f4b _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8138e132 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x83299270 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ab4a953 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92696954 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x93be3677 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x97dca711 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99c3c62a rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9f8fca41 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xba97739c _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc82d78ee _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9031d7e rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9bcff07 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdba11679 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf0a619b rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4069cec _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe8a9c40b _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xecfb16df rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf168a6d2 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf7e6cd56 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf9868e67 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb63ab45 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xff682a48 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x032e6333 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x115b79a3 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x12aa3b48 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x94f7f086 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x25a60672 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4a155a46 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x7f002d6a rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x991b9362 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x09b14e6d rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x15dc5bcc rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x23c8b966 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e90d9c5 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x32452162 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63b89994 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6caebd44 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x733fb620 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x776f1470 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7c3cb862 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7de7b989 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x892c352d rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c1f60f0 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x96a9cd4c rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f9dc525 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5c95a7a rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc2bb52bb rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd2a9b45a efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd345faec rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe1dd6f7d rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe470df01 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe5fe8ef0 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe621f938 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebcd8a7b rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xedf1467f rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf279a4c7 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf76c3ac4 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf79227f6 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0476dff4 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x24c94ac0 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe3955703 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe69ea616 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x2720f1dd fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x36a64979 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xfdaf9eb2 fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/microread/microread 0xa3745044 microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xc44b1b86 microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x84e2b1c8 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xdd28567f nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xf336913c nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x469f1e5e pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xdb8a6912 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x854ea53a s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xdcfa5313 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf392f113 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x085fc0db ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x204639c8 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x421974fb st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4c844518 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5734d1c7 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7cd72a67 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7f25a5c1 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa44ecf3e st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdd4ad8ef st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xed64e05c ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf5747420 ndlc_open -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x10d49d75 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x438d416a st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x54b28d7e st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5aa34e1a st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x70c84564 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x76a222a4 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x81482cf4 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x83720877 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x84421f45 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8d63f096 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x924166ea st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb039eefc st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc1538d67 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd4379ed7 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe5ac2326 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xef30dd25 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf352c19e st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf4afb5fa st21nfca_dep_init -EXPORT_SYMBOL drivers/ntb/ntb 0x09347432 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x163fb808 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x192d0846 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x1bba4632 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x2e1b7cbf __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x7cfa2c26 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xb92c705a ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xc4dbeb28 ntb_unregister_device -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x4a737907 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x86ea39a4 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x1a50c004 devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x03388e84 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x0b35ba9b parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x0b79fe06 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x0d2b6781 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x0d8d66cd parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x0ef25252 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x1db854db parport_release -EXPORT_SYMBOL drivers/parport/parport 0x2815a27d parport_read -EXPORT_SYMBOL drivers/parport/parport 0x2a79aa79 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x34989846 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x3cfd8793 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x424a74bf parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x44a6f57d __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x61c321ae parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x61cd5b5e parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x6e2c6ba4 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x811ce953 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x88750826 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x88e74d5a parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x8a9dcc98 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x977f49b2 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xa404e637 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xb02204ee parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xc372b1a5 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0xcb3e5741 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0xcd32ba01 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xd3a10fb4 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xded5a52e parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xe946e562 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xf579863a parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xfa6bac92 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xfe4958a8 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport_pc 0x0ce09dba parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xe0af6c76 parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0231c32e pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x125e3521 pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x24070910 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x30e1c017 pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3a4c2395 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3ca66be0 pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4b4293fd pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4c48bdcf pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x51bcb01f pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5b8b4a4a pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9186d165 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbd30c1af pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc513b552 pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcd7524f7 pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd0f1a0ad pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe557934a pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xea325744 pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xeb4d7f6d pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf2f78fc0 __pcmcia_request_exclusive_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x062744be pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1bf8c9a3 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x32166d07 pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x43a40794 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4498f502 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5057e8f8 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x56e05fa0 pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x59c2aa0f pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa37513fe pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe399fb14 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe9b7628f pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x78e5dbab pccard_static_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xf66d5f6e pccard_nonstatic_ops -EXPORT_SYMBOL drivers/platform/x86/intel_ips 0xf97d7d0e i915_bpo_enabled -EXPORT_SYMBOL drivers/platform/x86/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command -EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command -EXPORT_SYMBOL drivers/pps/pps_core 0x36258c54 pps_register_source -EXPORT_SYMBOL drivers/pps/pps_core 0xa7456bc3 pps_lookup_dev -EXPORT_SYMBOL drivers/pps/pps_core 0xbaeda887 pps_event -EXPORT_SYMBOL drivers/pps/pps_core 0xfffefc71 pps_unregister_source -EXPORT_SYMBOL drivers/ptp/ptp 0x0c6779c2 ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0x36aa7d7f ptp_clock_unregister -EXPORT_SYMBOL drivers/ptp/ptp 0x9b6fd8cf ptp_clock_index -EXPORT_SYMBOL drivers/ptp/ptp 0xcd57e57b ptp_clock_register -EXPORT_SYMBOL drivers/ptp/ptp 0xd5034dc0 ptp_clock_event -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x071b49e9 rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0df9d505 rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x10c1a476 rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x20c92c5b rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x30af457d rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4bafaed5 rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4f2d77d8 rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x98ab980a rproc_alloc -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xe26f775d rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf16e8bcf rproc_shutdown -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xb1129aa2 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x04ce7160 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x17189667 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x81b26d22 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe9fcda57 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0d9cb792 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0d9d82cf fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1d35b082 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4d6910d3 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5d0fbb18 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x618742d5 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7bf40a6b fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x805d2c49 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb8edf1bd fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd6165ccf fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xef391b3d fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfe587ba7 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x03675225 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0be71148 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x15744a29 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d0cb40d fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2027955c fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26e5a4f1 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2801b299 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b26b647 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2eafa25e fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3faa500b fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42245e9d fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4de653b8 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x638b8ed5 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65bdae4b fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x663c790a fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x682d56a1 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7705a4a2 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x777d5838 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8929585d fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ec06510 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f41a9cb fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x91a09be0 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x96d730ab fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9848df65 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c2ffad7 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaa69da5c fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad32f079 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4a655de fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb4a5aca fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd92c41b fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2dc16f1 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3476e0e fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc3689b4 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf06610d fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0f3066b fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd38d4aa3 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd82f7cb5 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf397ffd fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe4ed9cca fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea20f09e fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf64427ff fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd24ab99 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xffae0f03 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0a1b287d sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x141c87ce sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3ac5f585 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf7fd97a2 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x52baa523 mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x01585e6e osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x111f4497 osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x17b99532 osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1c510ba0 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x209a21c8 osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x27e09e77 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2902f53b osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2b4954b9 osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x314c6702 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x34cb8158 osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x38f63e99 osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x39f6cfb0 osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3e7ec371 osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x46a0ecc0 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x495bd05f osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4fa8a489 osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x54145f17 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x63a27c69 osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6f10229e osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7766ffa9 osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x82f9dc02 osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8b16b4d2 osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x924ee7a5 osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x943b9f3a osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa7c477d5 osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb0415347 osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc461243d osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc622263d osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd9965089 osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xde471d75 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe42b6b13 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xec5688a7 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf1415ea3 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf1afc286 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfaba4d60 osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfba9d402 osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/osd 0x4ddf72a0 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x60e7e927 osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0x74cf97ac osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0x8483f12e osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x84cfc106 osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xc3604c44 osduld_put_device -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2c95b806 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x52a695cd qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x718b1382 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7604adb2 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7a5e3416 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x87e53d8b qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x90330fe8 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x92d8e5a4 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xaa9f4629 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc319e69c qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdf661029 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf313a9a1 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x075ac94e qlogicfas408_bus_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x393b2075 qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x5dc3ec64 qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x98e47848 qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf146b473 qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xfb6b3c5b qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/raid_class 0x40490383 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0x6c4b32e0 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0x8a6f720c raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0076744e fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1021880e fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x39ef99a2 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4f1cafed fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5b5f7398 scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6f6acf44 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7bcbe37e scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x86c43cb6 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8e3895e9 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9a3825d7 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9ecd5c69 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe9f96e1a fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf80d87a4 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x04474977 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x112f27cc sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x12d64560 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1a1563fc sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x203e2a1c sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x21217033 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x269e747d scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2cf558e7 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x405dc5e9 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x445ccb3e sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5157b18b sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x61a26b3b sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x65f121b4 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6abc6a1d sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x789d6f5f sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7aff015f sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ce67a08 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x883d44cb sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x90457b1c sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa1cc5ff0 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa1f90978 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xab02a2a8 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xad193e13 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb155b6c0 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb6303f0d sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd4f76967 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdcff3303 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xff2a8dfb sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x472a2c29 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x917f9cb1 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa0f77f6b spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe0f53991 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xee1e3a3d spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x528a6394 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x73481ff3 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x860a0761 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xcbf32d87 srp_rport_put -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x28954039 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xa0d256d9 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xa9a7344e ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xc8783f00 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xced7240e ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf7928d3d ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf885f07a ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x0a06e704 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x1422eada ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x230b03a6 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x383be1ef ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x3a495e76 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x3d0b8838 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x42f4e776 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x53bd3fa3 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x68cfb5c9 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x6d14c566 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x9062d8a6 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x9256b466 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x9a8aafe0 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xb559f32c ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xbb956f43 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xc260b3f8 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xc28c465a ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xcba53570 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xd92c972f ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xf30488db ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x09fc2b28 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0ae35b77 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0b92b05e fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1049ecb0 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2cab5fb1 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x319f36de fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x38d646b9 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3abcca20 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x43fa69b7 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x44e6fd15 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4683f1dd fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4bb1cca6 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4cad57ea fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x58e6fe8a fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e98ae53 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5eae61c0 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6ad3235b fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6dea716d fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x873e9429 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9d18893a fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xabdfcc2d fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe3cab24c fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf1c05626 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf710c216 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x8d2d7726 fwtty_port_put -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x9f97a669 fwtty_port_get -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xb5316541 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x078ca9e0 hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x339ca0a9 hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x4b0ee5e3 hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x58ddf16d hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x6eded82b ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xb8d25043 ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xda7b9ec8 cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x98161967 most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0758df92 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0900c755 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1628304b rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1a4e6141 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ca96942 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x29cdbdd4 rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x33fbff8a rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x342bab10 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x350d7750 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38d6a43f notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x44a12a4f rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x49806f18 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ec4d5c2 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x51e9e30a rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54d963ab rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x55ab5943 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x62171403 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a71bfb6 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6bec8ab6 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x730acbd9 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x731b65d9 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x766ba88e rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x809f2d9d rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80bc4c22 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x87126829 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x899db7bb rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f7abfb8 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9786021f rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e97305e rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ea42c3c rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa2152951 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa569f08b rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa776187a rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc1fc34dc rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc6f42704 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc764d82e Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc8e655b8 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcad9791f rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb8b64c0 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcca4eff1 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcdd6d519 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd7cb6370 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd83091f7 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe302fa12 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe7a68052 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe8b8c879 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb54c78e rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xefaa5b12 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfa91ceb6 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe6efc6e rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x006e43f9 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ef3b7ad SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f24580b ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x13503be2 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x151b63d1 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1da76a4d ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1eb04cd8 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1f4283cc ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2181aadb ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x21b7e325 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x28642019 Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x295841fb ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x379d587d ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b136bab ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b363f97 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3fc2b6b6 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x464d3ab7 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4cccd85f ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x631ca235 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x67c06e56 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68825e2d Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6cc94e6f ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ddeef41 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e10534f ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70e5d681 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71e89128 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7dc1f6b6 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fa80724 ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8140c72c ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x89900ffb ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x90971016 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9435e704 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0af2e0e ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa175285a ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6ab42d5 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaba42743 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xadb1f622 IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5c5a926 DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb6090413 DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7dea9d4 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbead9b87 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb33e33f ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcdc806b5 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcde25c8a ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd2d1017c ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb4ec4c2 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdd6031af ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed80e1d4 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xedbd9986 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf49c69e2 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf7527682 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf91c50d4 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff4da17d Dot11d_Init -EXPORT_SYMBOL drivers/staging/unisys/visorbus/visorbus 0xdb82229b visorbus_get_device_by_id -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09af04cb iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c33094c iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c367861 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d3fb70a iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ff76229 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2cd80ea5 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2ed4e62f iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x36666010 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3759ccaa iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4716add6 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x506a1c3d iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x742e1f92 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x75642bda iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7ab26c08 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f5c3933 iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x80549068 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x80c34bc8 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x813db9bd iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa82a24cf iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb10de070 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb28960e9 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbff2bf53 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc24eb407 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc83655d6 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcb36c840 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf9efa31 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd96ea576 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf2afa613 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x024d2096 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x028e77ab target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0b16014d target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x0b2d48da core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x0bf53c1e target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x134eeba1 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x138c1f0f __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x28b9bb27 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x296496bf sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x2dab7025 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x33b6bed0 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x36af0f4d target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x3b0f407c transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x3c280b60 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x4578c482 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x4761caf0 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x477cdebb target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x480269d3 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a6ac464 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x4ac0e740 transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0x4b485855 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4cb63468 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x4fad6628 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x50f70807 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x559fb093 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x60169297 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x61f58559 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x65c62b21 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x66e43f4f sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x67c3195a transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x67d70c8d core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x6daf759a core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x770a9ff0 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x77b74c3c transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x78e035a7 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c85ef20 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c93c1b5 target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x7f970f0b core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x8042c447 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x86c4bfb4 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x89bcbce7 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x964cbe96 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x966eeda5 target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x9b3bdd91 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x9ee80f5e target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xa21ac004 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xa430b7bb transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xa5db3352 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xa6f87d3d target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xa8a16b53 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xa8ad0d96 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xaffb0935 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xb2958a90 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xb5e40427 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xb5eac0ff transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xbb9ab290 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc113e71 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc47e888 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xbeb5a7c1 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xc9225d6e transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xd826cf50 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xd89d6267 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xe4cc0af6 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xe6d520a9 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xe937e80c passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xeab0f2e9 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf18ea30e target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xf5f6c1c7 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xfcd28c24 target_get_sess_cmd -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x5007fc2c acpi_parse_art -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0xdf707fab acpi_parse_trt -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x0cc97720 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x7a662656 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x681bb1d8 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x07650be2 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x23c27bb8 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x861980fe usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x92ac46c8 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x93572f3f usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x95315896 usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xae3f9ac8 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb9c35db9 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd5eda8ac usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe53b427b usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe717a0c6 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xed8bdb48 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x284c2de4 usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x88a6908b usb_serial_suspend -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/video/backlight/lcd 0x67c59fde lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xa6d52827 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xbd016072 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xc62e0cc2 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0c8cf4ea svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3fc63bb5 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x457dbcfa svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x986a035f svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb213efc0 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb389d1ef svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef7d6dcc svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xaf89496a sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x403fee88 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x8452afd7 sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x8e6b2f49 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xc6ec7061 mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x2a68410a matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xe2069087 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xe746b564 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x83077492 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa5366c49 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb0ff1c35 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf80a9733 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x36635248 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x0a681d1f matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x55d7a072 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5a1a06c1 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x6d5614eb matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x9bd2a165 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x22a130e8 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x4c0d4778 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x59a59ef6 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6d1e7b84 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x768b3865 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf311881e matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xfb2fdae9 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xa5664649 mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x4f2c3db4 w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6d548b9b w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x8e5b40e4 w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x934675ab w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x48dbbfae w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xb6436761 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x1583ec09 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x620eeb7c w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x2da55018 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x7d554766 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xa94ddb75 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xb55062c5 w1_remove_master_device -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xb5f20875 iTCO_vendor_pre_keepalive -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc4f657bf iTCO_vendor_pre_stop -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xdc6effc9 iTCO_vendor_pre_start -EXPORT_SYMBOL fs/configfs/configfs 0x3db19a38 configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x3e486961 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x4a27eff9 config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0x9b807abf configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0xa05750a1 configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xa8eecd5b config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0xac8003cb config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0xb5a04299 configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0xb76182f4 config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0xb878f854 config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0xbce55356 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xde121d05 config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xf19f20bf configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0xf3fb4632 configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0xf448b298 configfs_undepend_item -EXPORT_SYMBOL fs/exofs/libore 0x029a8b4f ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0x04eca6e0 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0x0a87e37a ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0x24a74d21 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x2d6fb65d ore_remove -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x4a51866c extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x7d8e829a ore_create -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xca70fab9 ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0xe3c4527a ore_read -EXPORT_SYMBOL fs/exofs/libore 0xfe8812e3 ore_write -EXPORT_SYMBOL fs/fscache/fscache 0x00647f05 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x05fe5cab fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x0bb02ac5 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x1644b3e4 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x1a31abfc __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x25c6ed24 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x3629a4f5 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x3ac53c3a __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x3b2f8fd5 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x500d27ee fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x5132cd3e __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x5faaf479 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x60b99f46 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x6801d815 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x6f10f981 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x808b62f7 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x829e0d96 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x843f88cd fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x84923616 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x84f8e028 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x8862ed8e fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x8df21b2b __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x8e806474 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x9330ac4e __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x9794ef8b __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x98cc0530 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x9a8342fe __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x9c01519e __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xa325558c fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xa7a9976a fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xc0a57860 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xce866683 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xd79cbe8f __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xdc22e510 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0xea64d536 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xec434acd fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xefcb6170 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0xfa268892 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xfe473e3a __fscache_relinquish_cookie -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x48f0b4cb qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x69c23529 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x70bfc2b3 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x8b380d19 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x8d38a192 qtree_delete_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy -EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed -EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0x91413ad3 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xba8abca3 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find -EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put -EXPORT_SYMBOL lib/lz4/lz4_compress 0x0c222eb5 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x3dd69966 lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0xa2d0a63d lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd7ab4e97 lowpan_nhc_del -EXPORT_SYMBOL net/802/p8022 0x395da758 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0x510c5800 register_8022_client -EXPORT_SYMBOL net/802/p8023 0x0041a81c make_8023_client -EXPORT_SYMBOL net/802/p8023 0xd584321b destroy_8023_client -EXPORT_SYMBOL net/802/psnap 0xa0f5dc39 register_snap_client -EXPORT_SYMBOL net/802/psnap 0xbd51999d unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0248d832 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x0c95f538 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x0df4f4f2 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x1077a0ad p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x172f3832 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x174a826f p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x29b89aed p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x3a902141 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3e9539ac p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x44426c9b p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x46bddf02 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x6184bbc9 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x63f4da0b p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x64379298 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x693de737 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x7431a87f p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x796a5f91 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x84ece1ea p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x88b43524 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x8b8d9d97 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x8f76d88d p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x90f66a5c p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x94a66b46 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x95a089c6 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0xa79f3097 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xa7e91cb2 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xb1c3d3bd p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xb86a2e63 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0xb933d211 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xbd66fb52 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xc9acbde0 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xd05a5525 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xd5b72fa9 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0xdf6b13dd p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xe3ea2b66 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe71e717d p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xe83fde7b p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xecf9a2d3 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xf2395faf p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xf3d075c6 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/9p/9pnet 0xffdb8da1 p9_client_readdir -EXPORT_SYMBOL net/appletalk/appletalk 0x021cdc68 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x37fe2bd7 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x984220a7 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xba31206f atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x03350610 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x115730aa vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x25893221 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x2b95ca5e vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x3a958608 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x53411f18 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x68b66c79 atm_charge -EXPORT_SYMBOL net/atm/atm 0x6d7291bf atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x8ddbfc86 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa31be64d deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xd3a52e76 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0xe4c12999 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xf48a80d5 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xf4f003b5 atm_dev_register -EXPORT_SYMBOL net/ax25/ax25 0x0567c673 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x503e6f16 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x50f8b311 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x7aa32222 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x810d0b7e ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xa6d07463 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xc4bed204 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xfc03e8cc ax25_find_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0eec21d5 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x18f828c3 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1a8178e6 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b513e60 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1dd51f16 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e61972b l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x27ab2b66 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b8bb41e bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3005e1b1 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3225ddfb hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x32cd2076 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x38c23da6 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x51a16973 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b1dc8b5 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x67c97f61 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x681abd71 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7689e2a9 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x81204cf6 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x916625cb hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x92d2cf35 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x94a9e875 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9bbb98b3 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa0d99d9d hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa17c1b07 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa41b3263 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xabf89fb6 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xad5e2e14 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9346de2 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbb1947ac bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc08e8575 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc455e8c6 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc881b868 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc9c3e512 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcbd9af68 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcd77e3e1 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdd785ed8 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe158cb02 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe5d05c5e hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xef7b15c9 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf91c3c6c hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf9bff3ee hci_recv_diag -EXPORT_SYMBOL net/bridge/bridge 0x818c199d br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x14390b5e ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5be9e62d ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa3775f3f ebt_unregister_table -EXPORT_SYMBOL net/caif/caif 0x000af60a caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x11ea06a1 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x6d7e193a get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0x9f32070a caif_connect_client -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xff96e7e4 caif_enroll_dev -EXPORT_SYMBOL net/can/can 0x00f5daab can_proto_unregister -EXPORT_SYMBOL net/can/can 0x0b4d7342 can_ioctl -EXPORT_SYMBOL net/can/can 0x4895f9ad can_proto_register -EXPORT_SYMBOL net/can/can 0x4a731b5d can_rx_register -EXPORT_SYMBOL net/can/can 0xe5253adc can_rx_unregister -EXPORT_SYMBOL net/can/can 0xef4e2ad2 can_send -EXPORT_SYMBOL net/ceph/libceph 0x0807b9e9 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0a9327e0 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x0aad18aa osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x0ae30220 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x0ae4a0f0 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x0d691c2b __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x1314db58 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x13d62ac5 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x1667e0aa ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x1e5b1830 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x203a2050 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x20f89b95 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2502201a ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0x2b64e75a ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x2cdc2b24 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x2dd58124 ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0x2e449409 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x33108eb0 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x33496cb4 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x3480b743 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x3fa0f448 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0x41b18ab0 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x42706baf osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4760b44c ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x4a5f3a7f osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x4c7c1986 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x4ddc4837 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x4efd2f4e osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x529dcb68 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5862309c ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0x5c48fc30 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x5ebbe3d0 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x6ab2de92 osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6d7746e0 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x6f99f0c4 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x72b2b2d9 ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0x76d6746b ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x79c41c11 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x83392978 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x84aea106 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x86079b0b ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x8c1a913a osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x927aad2c ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x9280e59e ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x94dd39ac ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0x983a0096 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9a776c8b ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x9b99b8f4 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x9d7e09ce ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa13e76e0 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xa17ffda3 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xa285757a ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xa6eaead2 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0xaa194fdc ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0xab691029 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xac697d61 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0xad9303c9 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb10e45f3 ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb5558c6e ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xba1a2727 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xc49ea3a6 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc53f3946 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xc6577be4 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc786f129 ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xc91e3d7d ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xcc536404 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd235a711 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd53629c0 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xe011ca58 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xe08902d5 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xe199dbd2 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xe429a985 osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0xec8b0070 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xef9edaa4 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xf1dc76cc ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xf47f023a ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xf5b7f63e ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0xf7417e71 ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0xf8344ee7 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xfbaac6fe ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0xfd9556cc ceph_monc_do_statfs -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x92573679 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xed636e4c dccp_syn_ack_timeout -EXPORT_SYMBOL net/ieee802154/ieee802154 0x2ceddc17 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x3a21c162 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x44a88348 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x56002a33 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0xb1820396 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc8e23904 wpan_phy_new -EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x4bf5473e fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xf36e5724 gue_build_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5b9d2a25 ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa7951917 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xaa298b2f ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xce150aa8 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe46b8705 ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf074b8db ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1b374d64 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3c007d7b arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x512acf70 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5d75f101 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6e09c356 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8a6d94d0 ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x773ed8ee xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xf28a3dac xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xfe2e6119 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1e1e993c ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x878e49b5 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9ded9e9a ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe96411ea ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1f4a225c ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8b132f01 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x98cd354f ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x8bffdce3 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xe403c559 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1ee1de3f xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x3da06425 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1523dd7d ircomm_data_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x39569fa1 ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x696f0a1f ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x7d597b90 ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x84fb7286 ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xba8fbec5 ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xca8626a8 ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xdc8b0c0d ircomm_connect_response -EXPORT_SYMBOL net/irda/irda 0x002c98e0 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0x033d40af irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x0963c24b irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0x09939c11 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object -EXPORT_SYMBOL net/irda/irda 0x2791f9a0 irlap_open -EXPORT_SYMBOL net/irda/irda 0x2a48362f irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x349079c3 irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x3b529260 irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46b00fdf irias_insert_object -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x51764ebf async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0x6a52a161 alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x6cc633cd iriap_close -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x70a3f20f hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7bf2fc8d irda_notify_init -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x83de7abd irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x8ae285ef irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x8fdd2210 irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x98a8b3b4 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0x99d62436 irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert -EXPORT_SYMBOL net/irda/irda 0xa6ee0796 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0xaa1a4eb7 iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbaf490b7 irttp_dup -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xd28006ed irlap_close -EXPORT_SYMBOL net/irda/irda 0xd41c46dc irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma -EXPORT_SYMBOL net/irda/irda 0xdc0196c2 hashbin_remove -EXPORT_SYMBOL net/irda/irda 0xdd971e1b iriap_open -EXPORT_SYMBOL net/irda/irda 0xddf26544 async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe1ba6308 irias_new_object -EXPORT_SYMBOL net/irda/irda 0xe329462a hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0xe966a6bb irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0xeb78333e hashbin_remove_this -EXPORT_SYMBOL net/irda/irda 0xec242b93 hashbin_new -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf2373c5b irttp_data_request -EXPORT_SYMBOL net/irda/irda 0xf41e73fe irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0xf6c1da11 irlmp_data_request -EXPORT_SYMBOL net/l2tp/l2tp_core 0x55b21765 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x3864fad6 l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x412e54e9 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x44e64da3 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x604e74e4 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x63e9adab lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x7f0f426a lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x98f6faee lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xdccd9bd7 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0xfc8a9480 lapb_getparms -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x3e211386 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x49538f5a llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x7befe2cf llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x9322e01a llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x98acda09 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0xdabdcc0f llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xf34a629e llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/mac80211/mac80211 0x0251448f ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x0354419b ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x0e17fb1a ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x150e64ae ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x1a7ac58c ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x1e8265dc ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x1f38c236 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x2a8b76e4 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x2bf25bd2 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x2d0a23ad ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0x2ea5218c ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x3318ac46 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x3450acae __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x3752b69e rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x376ab2a7 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x39b2747e __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x3b994df7 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x3ec044db wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x3ffac50d __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x4512e60f ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x4533c3c9 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x46e322ed __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x46f4099a ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x4c01a47c ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x4e369c7a rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0x4edc99b9 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x52678d5d ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x52cbf4dc ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x540bc4f7 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x59c61fd8 ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x5b591ed1 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x5d78e24a ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x5f0cc384 ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x63f66be0 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x667440e5 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x6a720afe ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x6d9ea75a ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x6f447ba9 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x73ccc976 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x79f5a3f5 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x7ba7ba9a ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x7c6707c0 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x7caa205c ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x8d3cf267 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x9132f04a ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x9215d60f ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x94547607 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x9b7e4fef ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xa1697c58 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xa518280f ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xa987dec6 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xabf2d882 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xafb35ee1 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xb0775b9c ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xb50d8a6e ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xb649b650 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xb6ec5bb0 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xb7b6c0f1 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xb8555be3 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xb8aedcbc ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xb8b62306 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xb9ee8f41 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xc0d7c550 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xc75c0af1 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xc9a9f68a __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xc9cbf50e ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xcaf99e74 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcda39a29 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xd20d1fba ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xd3bd1580 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xd5b4cdbf ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xd9810ed9 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xdb9fd539 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xe2214cab ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xe25c2c40 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xeb7de2c5 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xf3880288 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xfd3bf4ca ieee80211_probereq_get -EXPORT_SYMBOL net/mac802154/mac802154 0x0a8ef6e9 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x0e0717cd ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x12188669 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x1cefa506 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x7245bc8f ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x9854a7b1 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xa4b0a935 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xb2d86c3d ieee802154_alloc_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x104aff24 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x11a9a4f8 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x13443111 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x17234c84 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1d3adf26 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2140d4c6 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x444261b8 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6bbb0cde register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8798fb81 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8968d24b ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8f305863 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x986b9ac1 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdb801ee0 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf492cc70 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x5b340428 __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x645892f3 nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xf335c983 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x2f985efa __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x421fb7c3 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x4cbec7f4 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x5639d9ed nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0x571b31d3 nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0xf72f1268 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/x_tables 0x233d033e xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x40e62f91 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x5d15e4ce xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x77811e2f xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x885b221d xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa3c39676 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xae933ac1 xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0xcad4a8e3 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xd71b0cc8 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xdba5ca64 xt_find_match -EXPORT_SYMBOL net/nfc/hci/hci 0x0ac51c91 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x2fa26798 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x32f02f85 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x48d62661 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x65abb6ed nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x66ebeb87 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x75ac8b91 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x7b92bcc6 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x80c9b937 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xb025983f nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xb943487d nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xbd79b224 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xc11880ce nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xc1c97785 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0xc29d4f01 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xc2e30094 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0xcdaf53ea nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xd743be6b nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0xd79305d7 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xea47e911 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xf6fd3ede nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x08705e4c nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x08bc7d70 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x0a83f474 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x0df090c6 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x17969053 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x2019569a nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x20cc760c nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x237a61e3 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x27b299a0 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x487bd124 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x58190089 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x5f152e2f nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x6c6566e8 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x6dcdf9ef nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x77fb72e6 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x785eb396 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x84ec3cb7 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x9f88d13a nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xa16ff49f nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xaf5d2c23 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xb052f82c nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xb30fd0b0 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc8999a60 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xcb5bbca6 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xcb6fb35c nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xd848fe5a nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0xe722bce1 nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0xfefd981d nci_send_cmd -EXPORT_SYMBOL net/nfc/nfc 0x008141e2 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x037e995a nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x080bb68b nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x0fb890fe nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x1171c281 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x2195384c __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x2bfd8fec nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x35bfdc01 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x35dddbb0 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x36a9e89d nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x3f08b256 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x69ba2dc4 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x69e7269e nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x6ab85fd9 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x788685c0 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x7af1b3ec nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x81514e1d nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xa45343fb nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xad327336 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xb03b9c00 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xb716e9e1 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xbb97b670 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xd6636e67 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xff270d80 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc_digital 0x04896835 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x37c904a5 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x563f2c4e nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xc56c9303 nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x44bfcccf phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x569d2e9f pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x5de2940b pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x9cbe8e8a phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xb9781ca6 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xea6995d9 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xeae9d1fd pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xf08a8c4b phonet_proto_register -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0ac9a6d9 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x152c262b rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1d99ff66 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x211ef16d rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x235f2d7a rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x246708aa rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4b4da12c key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4ec6b029 rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5edac064 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6a50f79a rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7788369e rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa6f43ea5 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbe457b80 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xced21549 rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd4fb7960 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/sctp/sctp 0xc9499932 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6b9c369f gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7600474c gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x98b20431 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x3cba279d svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xbeb8c9c3 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe2aeca1c xdr_truncate_encode -EXPORT_SYMBOL net/wimax/wimax 0x32ead3e5 wimax_reset -EXPORT_SYMBOL net/wimax/wimax 0x4c7b1319 wimax_rfkill -EXPORT_SYMBOL net/wireless/cfg80211 0x05ab2553 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x05d9d613 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x0658fc39 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x07a3f57b cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x07e54b80 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x08e55dbb wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x08e98d07 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0906dfad cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0f49fefe cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x108581f3 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x162ac0ae cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x247dbd5c ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x2786e823 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x28817ed0 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x2926a056 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x2b29cfa7 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x2bfb3f2a wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x2d83db23 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x32c8128d cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x365ee247 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x3a654e99 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x3b81a4fc wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3db5e899 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x3e989bc5 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x3ed7aa59 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x3fd3afb0 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x47f2465b cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4dea98a9 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x5446f640 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x54932736 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x54f9935a cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x59fd8682 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x5bf7871f cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x5d5ec7e3 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x5e86c94b cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x61bb0fa8 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x63d1d645 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x6520e528 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x65452cb7 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x665e7684 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x6665210c cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x66fc460d ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x676e787e ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x78827def cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x7b2bc0ec freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x80d88dfe cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x8432fd2c cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x8ee5f816 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x9024092f cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x90b327a4 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x90c17d05 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x918eb39b cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x930a3925 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x932432be cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0x93e11ec2 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x99d40278 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x9a364ddb cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x9bd736c2 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x9f210c09 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xa511bebb cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xa9bbc705 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xaa667474 cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0xabe12d99 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xadb36b95 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xba95a002 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0xba9bdca5 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xbb559899 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xc586d8de cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc7e25bd3 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xc9a33dab cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xdae05d41 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdc89863e cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xe095c68c cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0xe870d4bc cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xe8ae812a ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xee160f5b cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf1efed75 wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xf81043c9 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xfae377a7 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xfdff8649 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xfe4a9812 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/cfg80211 0xffe59825 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/lib80211 0x370d40bf lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x3b678526 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x688c82e9 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x6f9bd37b lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xa2de4f94 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xf6fc0113 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL sound/ac97_bus 0xaaf1ee6b ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xf794157f snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3b17c9d9 snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x90a74939 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xd7d25fd4 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xfc5a54ae snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x4c05d708 snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x205395a0 snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x614705ff snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7746bb9b snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x79794472 snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x991c0f60 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xef8fa3d2 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf3f0324e snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf6fdda44 snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x8d8fd9bd snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x005ab4d0 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x06851252 snd_device_register -EXPORT_SYMBOL sound/core/snd 0x06d39c8a snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x0a905bcf snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x0bfe6c21 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x0c7950a2 snd_register_device -EXPORT_SYMBOL sound/core/snd 0x115efa5a snd_card_free -EXPORT_SYMBOL sound/core/snd 0x15139909 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x17e237a9 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1e843b56 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x249b1403 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x26e08ead snd_card_new -EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0x2b01cd88 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x2e923221 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x346e1cda snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x37ea1bcf snd_device_new -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3eb9e3af snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4e5898f4 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x510426df snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x5c61397a snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x656dde9a snd_info_register -EXPORT_SYMBOL sound/core/snd 0x6fba8157 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x6fbf2dba snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x7d706c0e snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x83fe7f21 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x84f892a8 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x87cd491e snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x88a64f9d snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x89f88cb1 _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x913ae38c snd_cards -EXPORT_SYMBOL sound/core/snd 0x9150381c snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x9578a793 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa01863f0 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0xa30f9da5 snd_card_register -EXPORT_SYMBOL sound/core/snd 0xa9763349 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xb289187c snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xba242282 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xbdce3548 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0xc0a7061a snd_device_free -EXPORT_SYMBOL sound/core/snd 0xc64c4fd8 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0xd07ec301 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xd45aff48 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xdcb51c4b snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xdf8047b1 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0xe2441e25 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0xf9d897e3 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xfde59b77 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0xfee1bfec snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-hwdep 0x9a6430c3 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0229ffdc snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x03f29ffe snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x04c414b8 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x052d2eb4 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x05a91959 snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0x06072619 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x0baad4e1 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x0c14e379 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x13ce1430 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x14b7550e snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x204faa95 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3c798cea snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0x44293515 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x49f7c731 snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0x4d3c2d63 snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0x4e4e16d3 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x4f1ad64a snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x4fc0d3a4 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x5565d3ef snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x5b7018b7 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x66876c6f snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x67465528 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x77983074 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x7a6ab66f snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x803abc24 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x903f9c75 snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0x9103f395 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x925e01dc snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x9268abed _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x9cf91fac snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x9d2ca65e snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xa273eb6e snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0xa3381a15 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xa43b075b snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0xa49ab72e snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0xa4f50be8 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb341d277 snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbbefecbb snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0xc4c517f7 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xc4f94a8e snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0xca34c226 snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0xcb4e4c3c snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xce6b1dcd snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xf0469b87 snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0xf3937129 snd_pcm_sgbuf_ops_page -EXPORT_SYMBOL sound/core/snd-pcm 0xf3ec47b8 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0xf62271dc snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0xfc4145ee snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0xfc47ddbc snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x12e53f5a snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x32ac9bfa snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x344a37bc __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4071eff4 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5f235e4a snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x65ed754a snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7694018d snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x795950ff snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7d45af67 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x82384686 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x88697158 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9cc471ae snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa6c633d9 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb4de7cf5 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdd47f937 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe9370306 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe9950617 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xeaf00711 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xec1feba3 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-timer 0x3b6ad094 snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x5cadfde6 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x693ac939 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x74270507 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x835ca9ce snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0x8ab0c04f snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x934d1110 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x99832955 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xa128e664 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0xb0a29e55 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xefb52ce0 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xf1ba6a8b snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xfea3a1b3 snd_timer_pause -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x429ff83e snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x08d5f001 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x292f53a5 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x30968991 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x69ea3689 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x80ed3491 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x83c96d87 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x89a6ed9a snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8d741f7c snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd6925e25 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0e695adc snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4ebbdef0 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5612dd15 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9a2fdd61 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xabdb498f snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbfdd0147 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc2da38c4 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc9820975 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xddcc692d snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x06c7263c fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0a3c88b3 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x18083d70 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1d598f63 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2177161a amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x23bacb58 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2a0e85ae cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x30a35cbd cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x31fbbf31 amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3a3d267e amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x47c3aa4a cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6d348fc3 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x73f14c4d snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x82158096 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9885b4ea snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa46dd543 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xab979842 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb120ee45 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc04bcbf2 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc9c620bf iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcf46b415 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd8e89448 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd96b69f2 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe0368be5 amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe0f99ff1 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe1b28430 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe48fbc59 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe88d8cae amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf0b93f06 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf159bbf7 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfb802e34 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xffa6e6dd avc_general_get_plug_info -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x835c00ee snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xac0a119a snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0ebeaf91 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0eef137f snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1139079b snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x14623fd2 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x203149c2 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7f5641e0 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe7d38b27 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf8f0634f snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x5ebb37ac snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x97d0b331 snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xbcf2ecbc snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc7b55429 snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xed8df312 snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xfcd7e3a6 snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x3dc227b4 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x62287107 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xdb249fba snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xfaa96da6 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xa0dd8969 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xf3b68680 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x18c75cf8 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4bd60489 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x59d1ba91 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbaaf9203 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xda95875b snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe40c8809 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x38efeae0 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x46de6ce4 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x474e04ec snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xa29376e5 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0xb60e5d1f snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xf340f5fa snd_i2c_readbytes -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0d5976ee snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1959f455 snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1b1935c2 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1cb77920 snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4b319b7a snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x747e00ec snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7499f0aa snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x89ef7627 snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb329dfac snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd6e58534 snd_sbdsp_reset -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x04cc947d snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x05c95093 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x129dfcd0 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x32abab04 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x38d0e9b8 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x668dbf5b snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x68966044 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6ceb1e91 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6f3cbf47 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7a5896cc snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9294def5 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xafe64a56 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc25c6ec4 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc9283075 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd885c920 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xddcf12d4 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfb832595 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xc6c8ff0e hpi_send_recv -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x16e4663b snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x26b873b1 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x30c47eac snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x337169c3 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x37f17476 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x453a2194 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6fb80906 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7fe40d42 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfb648270 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xaa95a3b8 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xbd2d282d snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd36f732f snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x05606c6b oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0a02732b oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0c5a06bf oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1414efe2 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1cc9b6f5 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x22be2b4d oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x69244dbc oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6d2085b6 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6fb0468f oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x713b63b1 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x79f92cb2 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x866658e7 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x98c0fda7 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9bb603e2 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa2810346 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa7ab7b44 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xad456e41 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc6d4cc01 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcae8cfd3 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf8e78cb5 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfce5ed58 oxygen_write8 -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x08784d4c snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x093ec01c snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1ec2543d snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8be2e61f snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb2441cdb snd_trident_stop_voice -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x0c306afb tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x2ebfa736 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xdc045797 sst_dma_free -EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xf8da79c1 sst_dma_new -EXPORT_SYMBOL sound/soc/snd-soc-core 0x1eb30f59 snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/soundcore 0x0abbb4e2 register_sound_special -EXPORT_SYMBOL sound/soundcore 0x2d9ba139 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x462e53a7 sound_class -EXPORT_SYMBOL sound/soundcore 0x59d9cc2a register_sound_midi -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xf1480759 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0xf66d63b3 register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0f0eae1a snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3603b9c6 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x64c5e33a snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x8cd8412f snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc590ea60 snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf7ff51d0 snd_emux_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x036f81ff __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x19e813b4 snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x446a6f46 snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x781fbb7b __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x7adbd141 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0xb4aa3fb8 snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xde7bb376 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xfb86e364 __snd_util_mem_alloc -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xe0445a3d snd_usbmidi_create -EXPORT_SYMBOL ubuntu/hio/hio 0x10815e58 ssd_submit_pbio -EXPORT_SYMBOL ubuntu/hio/hio 0x34b576f2 ssd_register_event_notifier -EXPORT_SYMBOL ubuntu/hio/hio 0x400fbd8f ssd_get_temperature -EXPORT_SYMBOL ubuntu/hio/hio 0x583d3f87 ssd_get_version -EXPORT_SYMBOL ubuntu/hio/hio 0x65245506 ssd_get_pciaddr -EXPORT_SYMBOL ubuntu/hio/hio 0x77515e77 ssd_get_label -EXPORT_SYMBOL ubuntu/hio/hio 0x86dd2261 ssd_set_otprotect -EXPORT_SYMBOL ubuntu/hio/hio 0xb05a0f2b ssd_unregister_event_notifier -EXPORT_SYMBOL ubuntu/hio/hio 0xd41f60ae ssd_set_wmode -EXPORT_SYMBOL ubuntu/hio/hio 0xf1ca35e9 ssd_bm_status -EXPORT_SYMBOL ubuntu/hio/hio 0xf40e3f4e ssd_reset -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x00322056 VBoxGuest_RTMpCpuIdFromSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x01674ab7 VBoxGuest_RTSemMutexRequestNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0429a6f0 VBoxGuest_RTThreadCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x057fd386 VBoxGuest_RTR0MemObjLockKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0731e88d VBoxGuest_RTAssertMsg2Add -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x079b132d VBoxGuest_RTMemTmpAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08ed98db VBoxGuest_RTMemDupExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x09a88bc3 VBoxGuest_RTTimeExplode -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0a442050 VBoxGuest_RTAssertAreQuiet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b94344b VBoxGuest_g_pszRTAssertExpr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0beb235d VBoxGuest_RTMpIsCpuWorkPending -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0cd1b64d VBoxGuest_RTMpCurSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0d10d1ca VBoxGuest_RTTimeNormalize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f3e114a VBoxGuest_RTSemSpinMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f884b3a VBoxGuest_RTStrToInt64Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11ced39a VBoxGuest_RTSemEventWaitEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11e95d2e VBoxGuest_RTLogLoggerEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11f80121 VBoxGuest_RTSemMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x12614b82 VBoxGuest_RTStrToInt8Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x12f430f3 VBoxGuest_RTAssertMsg2AddV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x147206e1 VBoxGuest_RTStrToUInt64 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x151752ec VBoxGuest_RTHeapSimpleGetFreeSize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1520b2c8 VBoxGuest_RTLogCreateEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x160b14d4 VBoxGuest_RTMpGetPresentSet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1926b25c VBoxGuest_RTLogRelLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x19790b4c VBoxGuest_RTLogFlags -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x197acd65 VBoxGuest_RTR0Init -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1a6d7d86 VBoxGuest_RTThreadPreemptIsEnabled -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1ae28abb VBoxGuest_RTThreadIsSelfAlive -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1c3b0f90 VBoxGuest_RTR0MemObjAddressR3 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1dc5ebbe VBoxGuest_RTThreadWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f3e577b VBoxGuest_RTMemTmpAllocZTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f70d065 VBoxGuest_RTErrConvertToErrno -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2003169b VBoxGuest_RTSpinlockAcquire -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x20728ae6 VBoxGuest_RTThreadCreateV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x20d9d625 VBoxGuest_RTTimeToString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x22058511 VBoxGuest_RTSemMutexRequestDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2254228b VBoxGuest_RTMpGetPresentCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2387f039 VBoxGuest_RTMpIsCpuPresent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x25219f5e VBoxGuest_RTR0Term -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2580d04c VBoxGuest_RTSemEventMultiSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2632a013 VBoxGuest_RTLogRelLoggerV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29708cf0 VBoxGuest_RTR0MemUserCopyTo -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2a2284fb VBoxGuest_RTAssertMayPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2af3453c VBoxGuest_RTLogPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2c2b5b46 VBoxGuest_RTTimerGetSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2cfefa48 VBoxGuest_RTLogBackdoorPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d445217 VBoxGuest_RTStrToInt64Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d581c06 VBoxGuest_RTMpCurSetIndexAndId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2eca7777 VBoxGuest_RTHeapSimpleAlloc -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2fb7502f VBoxGuest_RTThreadSetName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x30e40c69 VBoxGuest_RTLogSetDefaultInstanceThread -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3168cadf VBoxGuest_RTTimeSystemMilliTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x31ac4c5f VBoxGuest_RTThreadIsInitialized -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x33d7313a VBoxGuest_RTMpCpuId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x343e3e1b VBoxGuest_RTLogGetDestinations -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3480f453 VBoxGuest_RTSemMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x358153bb VBoxGuest_RTStrCopy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x362275e8 VBoxGuest_RTMemContFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x372d5e29 VBoxGuest_RTPowerNotificationDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x376d539c VBoxGuest_RTThreadGetType -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x381d7c24 VBoxGuest_RTMemAllocVarTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x383a0b9d VBoxGuest_RTMpPokeCpu -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a47392e VBoxGuest_RTErrConvertFromErrno -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b04381e VBoxGuest_RTSemEventMultiReset -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b231c95 VBoxGuest_RTTimeNanoTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3bcf543a VBoxGuest_RTLogGetDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3d00f113 VBoxGuest_g_u32RTAssertLine -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3de43f66 VBoxGuest_RTSemEventCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3dfc9ab8 VBoxGuest_RTSemMutexIsOwned -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3fbf3c07 VBoxGuest_RTThreadIsInInterrupt -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x40996438 VBoxGuest_RTSemEventMultiWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x42ecc6d1 VBoxGuest_RTThreadPreemptRestore -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x43fdd8d9 VBoxGuest_RTSemFastMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x44cfbc28 VBoxGuest_RTThreadGetNative -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x461fa9fe VBoxGuest_RTLogRelGetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x46c14223 VBoxGuest_RTLogSetCustomPrefixCallback -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x49f1be17 VBoxGuest_RTThreadFromNative -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x49f4d19c VBoxGuest_RTLogDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4ba5006e VBoxGuest_RTLogPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4bbec091 VBoxGuest_RTR0MemObjGetPagePhysAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4c7d8a56 VBoxGuest_RTSemEventMultiCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cac3157 VBoxGuest_RTLogFormatV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cecc93d VBoxGuest_RTR0MemObjEnterPhysTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cf913a1 VBoxGuest_RTThreadGetName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4ea67110 VBoxGuest_RTStrToInt32 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4f041d39 VBoxGuest_RTMemContAlloc -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4fc8e10c VBoxGuest_RTMpGetSet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4fe9e5f1 VBoxGuest_RTR0MemObjProtect -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5040043b VBoxGuest_RTSemEventWaitExDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x508bb2c4 VBoxGuest_RTLogSetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x51ec28bd VBoxGuest_RTLogGetFlags -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53265abc VBoxGuest_RTLogSetBuffering -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5352c915 VBoxGuest_RTSemMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54098f34 VBoxGuest_RTTimerStop -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54ddf87c VBoxGuest_RTThreadPreemptIsPossible -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5595fc22 VBoxGuest_RTSpinlockDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x56596e82 VBoxGuest_RTThreadSelfName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x56c939fe VBoxGuest_RTAssertMsg1 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5847ae52 VBoxGuest_RTMpGetCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x58d1b65e VBoxGuest_RTThreadPreemptIsPending -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x598d3622 VBoxGuest_RTAssertMsg2AddWeak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5a97195c VBoxGuest_RTHeapSimpleRelocate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5aa6ed66 VBoxGuest_RTPowerSignalEvent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5b3a5164 VBoxGuest_RTLogWriteUser -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5cc0b1b2 VBoxGuest_RTProcSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5d3b1bd6 VBoxGuest_RTSemSpinMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e071eb3 VBoxGuest_RTSemEventMultiDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e17b70e VBoxGuest_RTSpinlockRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e75c570 VBoxGuest_RTStrToUInt16 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5eaea89a VBoxGuest_RTSemFastMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ee65bb7 VBoxGuest_RTStrToUInt16Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ef42fe5 VBoxGuest_RTTimerStart -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5f2f48bb VBoxGuest_RTLogWriteStdErr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x61143878 VBoxGuestIDCCall -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6173b384 VBoxGuest_RTMpOnPairIsConcurrentExecSupported -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x61770e8c VBoxGuest_RTStrToUInt32 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63378722 VBoxGuest_RTLogBackdoorPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x634946f7 VBoxGuest_RTMpIsCpuOnline -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x637a1d69 VBoxGuest_RTLogWriteStdOut -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6381bb97 VBoxGuest_RTStrFormat -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63b1fde6 VBoxGuest_RTMpCpuIdToSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63bc10b0 VBoxGuest_RTLogCreateExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x658cd915 VBoxGuest_RTR0MemObjFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x67135d2b VBoxGuest_RTSemFastMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6862822a VBoxGuest_RTHeapSimpleSize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x695d63ad VBoxGuest_RTMpNotificationDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b01bbf3 VBoxGuest_RTMpOnSpecific -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b58b79d VBoxGuest_RTSemSpinMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b91f1ce VBoxGuest_RTStrFormatTypeDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c8460ac VBoxGuest_RTLogRelGetDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6cec7c3b VBoxGuest_RTTimerCreateEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6d8e9c87 VBoxGuest_RTTimeNow -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6e8541b7 VBoxGuest_RTAssertMsg2Weak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x704e1f6f VBoxGuest_RTAssertMsg2AddWeakV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x70867323 VBoxGuest_RTStrToUInt8Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x71060970 VBoxGuest_RTStrToUInt16Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x716e3be3 VBoxGuest_RTMpGetOnlineCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x729cc4ab VBoxGuest_RTR0MemObjSize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x72ff1bc3 VBoxGuest_RTTimeIsLeapYear -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x730a01b0 VBoxGuest_RTLogRelSetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x74812dde VBoxGuest_RTStrToInt32Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x759e7492 VBoxGuest_RTSemFastMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x764ecb18 VBoxGuest_RTR0MemObjAllocLowTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76a3c47b VBoxGuest_RTMemAllocZVarTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x79d59e24 VBoxGuest_RTSemSpinMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7d0d9dae VBoxGuest_RTR0MemObjAllocPhysNCTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7d15e878 VBoxGuest_RTMpGetOnlineSet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7dcc30d8 VBoxGuest_RTStrToInt32Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7e29739a VBoxGuest_RTStrToInt16 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7f0a40ea VBoxGuest_RTLogComPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7fc5bdcf VBoxGuest_RTR0MemObjAllocPhysTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8196c4e6 VBoxGuest_RTSemSpinMutexTryRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x82e081bc VBoxGuest_RTStrFormatTypeSetUser -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x83e78406 VBoxGuest_RTR0MemAreKrnlAndUsrDifferent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x841e42e9 VBoxGuest_RTSemMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8484a0d6 VBoxGuest_RTStrToInt16Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x84e227f6 VBoxGuest_RTThreadIsSelfKnown -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x86120100 VBoxGuest_RTLogDumpPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x867be0d2 VBoxGuest_RTLogDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x868b79a5 VBoxGuest_RTStrPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x879761cf VBoxGuest_RTR0MemObjAllocPhysExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x87da3860 VBoxGuest_RTAssertSetQuiet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8826d9de VBoxGuest_RTMpGetMaxCpuId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x883d496c VBoxGuest_RTMpGetCoreCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x885274fe VBoxGuest_RTThreadUserWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x89117f68 VBoxGuest_RTMemExecAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8a3c154f VBoxGuest_RTR0MemObjLockUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8a454b31 VBoxGuest_RTSemEventGetResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8e01e3fd VBoxGuest_RTStrFormatV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8f1309e3 VBoxGuest_RTAssertMsg2 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x90312938 VBoxGuest_RTStrToUInt64Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x91204a9b VBoxGuest_RTTimeSpecToString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x916e42f0 VBoxGuest_RTAssertMsg1Weak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9264ffc0 VBoxGuest_RTLogRelPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x926bf9f7 VBoxGuest_RTThreadPreemptDisable -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x92e716ae VBoxGuest_RTLogGetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x94f7365f VBoxGuest_RTPowerNotificationRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x95fa480d VBoxGuest_RTSpinlockCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x961772f3 VBoxGuestIDCOpen -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x967ea4b6 VBoxGuest_RTStrToInt64 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x96893ce3 VBoxGuest_RTR0MemObjAllocPageTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x96f2e65b VBoxGuest_RTR0MemUserCopyFrom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9796440b VBoxGuest_RTSemEventWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x97eb2414 VBoxGuest_RTThreadNativeSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9874cd16 VBoxGuest_RTMpIsCpuPossible -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9909ff3d VBoxGuest_g_pszRTAssertFunction -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9a2ee747 VBoxGuest_RTSemEventDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9bcc539d VBoxGuest_RTThreadUserReset -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9cd9213f VBoxGuest_RTR0MemKernelIsValidAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9d6b527c VBoxGuest_RTThreadWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9dbd63d6 VBoxGuest_RTStrPrintfEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9eaecd9d VBoxGuest_RTStrPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9f301085 VBoxGuest_RTTimeSpecFromString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9f4f616a VBoxGuest_RTLogLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9fb0596d VBoxGuest_RTMemDupTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa168a070 VBoxGuest_RTLogLoggerExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa34eb1b3 VBoxGuest_RTTimeSystemNanoTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa486e710 VBoxGuestIDCClose -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa554bd97 VBoxGuest_RTLogFlushRC -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5a26703 VBoxGuest_RTMpNotificationRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa696baed VBoxGuest_RTR0MemObjAddress -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6a22472 VBoxGuest_RTThreadUserWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6de1bcd VBoxGuest_RTTimerChangeInterval -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa86c5a96 VBoxGuest_RTSemEventSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaba9bc9c VBoxGuest_RTLogCloneRC -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xac990d74 VBoxGuest_RTTimerCanDoHighResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xacaac41d VBoxGuest_g_szRTAssertMsg1 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xad4fdf4e VBoxGuest_RTSemMutexRequestNoResumeDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xad649089 VBoxGuest_RTStrToUInt64Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xae3e0ecd VBoxGuest_RTLogRelPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaf6ffbfc VBoxGuest_RTThreadSleep -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb05840a7 VBoxGuest_RTSemEventMultiWaitExDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb1cc9148 VBoxGuest_RTLogWriteCom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb42ea0e3 VBoxGuest_g_pszRTAssertFile -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb444f4a1 VBoxGuest_RTLogDestinations -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb6941b2e VBoxGuest_RTStrToUInt8 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8c6e615 VBoxGuest_RTStrToUInt32Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8ca8fcb VBoxGuest_RTMpOnPair -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8df2b3a VBoxGuest_RTAssertShouldPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9b070b7 VBoxGuest_RTAssertMsg2V -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9d7a27d VBoxGuest_RTHeapSimpleDump -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaa97421 VBoxGuest_g_szRTAssertMsg2 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbb1ead73 VBoxGuest_RTR0MemKernelCopyTo -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbba928e6 VBoxGuest_RTHeapSimpleGetHeapSize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc4d30f6 VBoxGuest_RTR0MemObjAllocContTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc85935a VBoxGuest_RTR0MemKernelCopyFrom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbe4e6114 VBoxGuest_RTLogFlushToLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbffedb55 VBoxGuest_RTMemAllocExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc1095c44 VBoxGuest_RTTimeImplode -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc1b3ada4 VBoxGuest_RTAssertMsg2WeakV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc3a1e5de VBoxGuest_RTLogGetGroupSettings -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc3fee96e VBoxGuest_RTMemAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4bd5fd8 VBoxGuest_RTStrPrintfExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc63cc2f0 VBoxGuest_RTR0MemExecDonate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc71362b7 VBoxGuest_RTLogRelSetBuffering -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc8fbf4aa VBoxGuest_RTHeapSimpleInit -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc91cea98 VBoxGuest_RTStrCopyEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc9a6a8e7 VBoxGuest_RTThreadCreateF -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcaee97bf VBoxGuest_RTLogComPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcb2a6b54 VBoxGuest_RTMemExecFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xceae9d6a VBoxGuest_RTStrConvertHexBytes -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd14e8ec2 VBoxGuest_RTTimerDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd1f3f0b9 VBoxGuest_RTSemEventWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2a37e73 VBoxGuest_RTTimerReleaseSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2d290ab VBoxGuest_RTStrToUInt8Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd3a125cb VBoxGuest_RTR0MemObjMapKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd46c35d4 VBoxGuest_RTMpOnAll -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd4b597fc VBoxGuest_RTStrCopyP -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd5bfc897 VBoxGuest_RTHeapSimpleAllocZ -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd637869e VBoxGuest_RTMemReallocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd69bc8e4 VBoxGuest_RTR0MemObjReserveUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd706d85c VBoxGuest_RTTimeFromString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd88c9330 VBoxGuest_RTLogLoggerV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd984a7f4 VBoxGuest_RTStrFormatTypeRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdc700594 VBoxGuest_RTSemEventMultiGetResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xde9ca744 VBoxGuest_RTThreadYield -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdfbc69bb VBoxGuest_RTThreadPreemptIsPendingTrusty -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe054d759 VBoxGuest_RTMemTmpFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe095cef8 VBoxGuest_RTThreadSetType -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0dc7391 VBoxGuest_RTThreadIsMain -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe1c6b3d7 VBoxGuest_RTR0MemObjMapKernelExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe2765c54 VBoxGuest_RTR0AssertPanicSystem -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe38d562c VBoxGuest_RTStrFormatNumber -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe3fd228f VBoxGuest_RTTimeMilliTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe7e42113 VBoxGuest_RTThreadSleepNoLog -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe88dae73 VBoxGuest_RTMemFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe8fad285 VBoxGuest_RTSemEventMultiWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea2f2944 VBoxGuest_RTStrToInt8Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea38e4f7 VBoxGuest_RTLogDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea71842b VBoxGuest_RTMpGetPresentCoreCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xebeefa0e VBoxGuest_RTR0ProcHandleSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xec3cc9a6 VBoxGuest_RTSemEventMultiWaitEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xee774b8e VBoxGuest_RTLogWriteDebugger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xeea4ee73 VBoxGuest_RTR0MemObjMapUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xef6e1359 VBoxGuest_RTMpOnOthers -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf02f22ab VBoxGuest_RTMemAllocZTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf0dbb702 VBoxGuest_RTHeapSimpleFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf26294bb VBoxGuest_RTR0MemObjIsMapping -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf2aa79bb VBoxGuest_RTThreadUserSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf3943009 VBoxGuest_RTTimerRequestSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf5d89855 VBoxGuest_RTLogGroupSettings -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf69aec24 VBoxGuest_RTStrToInt16Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf7397dd2 VBoxGuest_RTAssertSetMayPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf8113d66 VBoxGuest_RTMpOnAllIsConcurrentSafe -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf956a4e8 VBoxGuest_RTLogFlush -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf958d9cb VBoxGuest_RTLogCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfa7d95c9 VBoxGuest_RTR0MemUserIsValidAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfb31e12b VBoxGuest_RTStrToUInt32Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfba93ac9 VBoxGuest_RTR0MemObjReserveKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfbc67e88 VBoxGuest_RTMemFreeEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe72cef7 VBoxGuest_RTStrToInt8 -EXPORT_SYMBOL vmlinux 0x0019a068 to_nd_btt -EXPORT_SYMBOL vmlinux 0x001b4e02 pci_get_device -EXPORT_SYMBOL vmlinux 0x0035ac92 dm_unregister_target -EXPORT_SYMBOL vmlinux 0x003f999a pcim_iomap -EXPORT_SYMBOL vmlinux 0x004999c5 setattr_copy -EXPORT_SYMBOL vmlinux 0x004aacfc kthread_stop -EXPORT_SYMBOL vmlinux 0x006ff2a5 scsi_dma_map -EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done -EXPORT_SYMBOL vmlinux 0x0088f44e generic_write_end -EXPORT_SYMBOL vmlinux 0x0093916a d_walk -EXPORT_SYMBOL vmlinux 0x009be043 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x00b5c91a __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x01070719 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x010f676a inet_bind -EXPORT_SYMBOL vmlinux 0x0113e474 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x011b6191 input_release_device -EXPORT_SYMBOL vmlinux 0x012069a4 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x01395b71 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x016245de gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x016bba17 x86_hyper_ms_hyperv -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x017bf377 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x01850f89 vfs_readv -EXPORT_SYMBOL vmlinux 0x0194dddd generic_delete_inode -EXPORT_SYMBOL vmlinux 0x01a5dc66 __get_page_tail -EXPORT_SYMBOL vmlinux 0x01bb190f devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x01d6acaa setup_new_exec -EXPORT_SYMBOL vmlinux 0x01e2b038 submit_bio -EXPORT_SYMBOL vmlinux 0x01e6fa88 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x0204b7e3 get_task_exe_file -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x0213f05c mark_page_accessed -EXPORT_SYMBOL vmlinux 0x02176009 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x0221246c input_allocate_device -EXPORT_SYMBOL vmlinux 0x022e85bd tty_devnum -EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x02431757 current_in_userns -EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x02737b12 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x02740f50 cdev_alloc -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027727f0 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x029a3d55 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x02a1087f udp_ioctl -EXPORT_SYMBOL vmlinux 0x02a187e1 compat_tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02ace693 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x02e36ab1 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x02e66e07 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02f1a629 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x02fbd917 blk_init_queue_node -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x033b47e7 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x033d33e7 arp_tbl -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x035f9e7a abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x03cc2397 cdev_init -EXPORT_SYMBOL vmlinux 0x03d72b3f fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0x03f277c3 up_write -EXPORT_SYMBOL vmlinux 0x03f8a1dc security_task_getsecid -EXPORT_SYMBOL vmlinux 0x03fa6e9f vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x03fc2410 neigh_xmit -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x03fe0909 dev_mc_del -EXPORT_SYMBOL vmlinux 0x04006e06 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x0405fb25 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x040f296a __ps2_command -EXPORT_SYMBOL vmlinux 0x0418afdc d_tmpfile -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x042342d3 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each -EXPORT_SYMBOL vmlinux 0x042b6787 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x044a9ccd nf_afinfo -EXPORT_SYMBOL vmlinux 0x04666fb1 d_move -EXPORT_SYMBOL vmlinux 0x047812f7 framebuffer_release -EXPORT_SYMBOL vmlinux 0x04785ab6 loop_backing_file -EXPORT_SYMBOL vmlinux 0x0482181d netdev_warn -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x04a488cd netdev_update_features -EXPORT_SYMBOL vmlinux 0x04ab8f9d led_blink_set -EXPORT_SYMBOL vmlinux 0x04b197f2 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x04bed7da pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset -EXPORT_SYMBOL vmlinux 0x04d8145f unregister_console -EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi -EXPORT_SYMBOL vmlinux 0x04e9e7b1 udplite_prot -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x05050c6c devfreq_add_device -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x050b9ada dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x0511ba7a xfrm_input -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0532ec62 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x0549d2a6 get_task_io_context -EXPORT_SYMBOL vmlinux 0x05521a98 d_add_ci -EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x056b90ba twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x057bf5db netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x057d39c9 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x05972bb4 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x059e9fe8 seq_pad -EXPORT_SYMBOL vmlinux 0x05bab440 agp_bind_memory -EXPORT_SYMBOL vmlinux 0x05c0f179 dm_put_table_device -EXPORT_SYMBOL vmlinux 0x05cc73f3 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x05db2b22 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x0602a249 flow_cache_lookup -EXPORT_SYMBOL vmlinux 0x06052f8d __memmove -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x061f4039 acpi_get_table_with_size -EXPORT_SYMBOL vmlinux 0x0623743b proc_douintvec -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x06342925 file_open_root -EXPORT_SYMBOL vmlinux 0x064f3c2e tty_do_resize -EXPORT_SYMBOL vmlinux 0x0659351c dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x067f8fbc mdiobus_free -EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache -EXPORT_SYMBOL vmlinux 0x06939d4f md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x06a50c46 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x06a6725e set_binfmt -EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end -EXPORT_SYMBOL vmlinux 0x06e47930 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x06e50127 vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x0717049d xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 -EXPORT_SYMBOL vmlinux 0x072e0476 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x073eefdd inet_frag_find -EXPORT_SYMBOL vmlinux 0x07432e3c agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0x074b92b3 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x07677c7f __blk_run_queue -EXPORT_SYMBOL vmlinux 0x07721124 fasync_helper -EXPORT_SYMBOL vmlinux 0x077d2113 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x078822e4 gen_pool_create -EXPORT_SYMBOL vmlinux 0x078eb9f7 bio_chain -EXPORT_SYMBOL vmlinux 0x07933d48 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07cec41f dma_find_channel -EXPORT_SYMBOL vmlinux 0x080937ff nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x080bab38 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x082102ee tcp_disconnect -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083644c8 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x089074dd cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes -EXPORT_SYMBOL vmlinux 0x08cb3e69 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x08e52a4d security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x08f0a044 kill_block_super -EXPORT_SYMBOL vmlinux 0x08faff4d mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x08fd63b3 fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0x0905b060 page_follow_link_light -EXPORT_SYMBOL vmlinux 0x090ee643 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x091aa810 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x093012c2 from_kgid -EXPORT_SYMBOL vmlinux 0x093a83e9 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x093e9b0c kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x093f07a3 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x09437c78 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x09696626 acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x097efc44 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x097fa118 pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x098431ba acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09a2d724 simple_open -EXPORT_SYMBOL vmlinux 0x09ad9b7d skb_split -EXPORT_SYMBOL vmlinux 0x09baddca touch_atime -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c7b24c wireless_spy_update -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09ce6735 i8042_install_filter -EXPORT_SYMBOL vmlinux 0x09d0ba62 datagram_poll -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09d6d912 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x09db06d2 __seq_open_private -EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x0a19d118 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a4f9463 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a89bbb7 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aaee6f1 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x0ab04757 console_start -EXPORT_SYMBOL vmlinux 0x0acbb40f d_path -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0af5c53a I_BDEV -EXPORT_SYMBOL vmlinux 0x0b0b1b24 eth_header_parse -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b2f3d34 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x0b37330b phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x0b485665 fput -EXPORT_SYMBOL vmlinux 0x0b5cb42f input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b678792 param_ops_bint -EXPORT_SYMBOL vmlinux 0x0b6d9d6b input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x0b70e056 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b8b21da __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x0ba4d174 napi_get_frags -EXPORT_SYMBOL vmlinux 0x0bb51a93 set_anon_super -EXPORT_SYMBOL vmlinux 0x0bbbaef3 swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bf833bc copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x0bfe8adf alloc_fddidev -EXPORT_SYMBOL vmlinux 0x0c05160f pci_request_regions -EXPORT_SYMBOL vmlinux 0x0c137fcc kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x0c192afd reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work -EXPORT_SYMBOL vmlinux 0x0c305614 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x0c3f82c4 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c5efec5 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x0c6254c0 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c704ad4 bio_reset -EXPORT_SYMBOL vmlinux 0x0c7b2ee1 devm_iounmap -EXPORT_SYMBOL vmlinux 0x0c89459c kernel_listen -EXPORT_SYMBOL vmlinux 0x0c965ee8 read_code -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0ca46932 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x0ca7897a generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cb32861 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x0cc4a776 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x0cc4e84d jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x0cd2af0c param_get_ushort -EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin -EXPORT_SYMBOL vmlinux 0x0ce32b11 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x0cef9e2f set_groups -EXPORT_SYMBOL vmlinux 0x0d0c7d90 init_special_inode -EXPORT_SYMBOL vmlinux 0x0d208b39 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x0d39b96a to_nd_pfn -EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type -EXPORT_SYMBOL vmlinux 0x0d4262fa abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0x0d539644 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d5630d8 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x0d56d057 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x0d575bde sk_reset_timer -EXPORT_SYMBOL vmlinux 0x0d5a9b5e drop_super -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d762070 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x0d80efb5 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0x0d971192 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0daef1e7 finish_no_open -EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x0dd1f9de tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x0e28bb45 wireless_send_event -EXPORT_SYMBOL vmlinux 0x0e39acd8 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x0e46e872 netif_napi_add -EXPORT_SYMBOL vmlinux 0x0e53a182 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x0e58c71d input_register_handle -EXPORT_SYMBOL vmlinux 0x0e6356f8 agp_enable -EXPORT_SYMBOL vmlinux 0x0e69a855 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e7721a6 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ed8086b dcache_dir_open -EXPORT_SYMBOL vmlinux 0x0ed8cc7b acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x0ef427fa simple_dir_operations -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f06ccc1 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x0f09da95 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x0f484794 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f819475 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x0f83eefd cfb_imageblit -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event -EXPORT_SYMBOL vmlinux 0x0fd043d6 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0x0fdae017 follow_down -EXPORT_SYMBOL vmlinux 0x0fe1b971 notify_change -EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress -EXPORT_SYMBOL vmlinux 0x0ff370bb dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x1019e7fc ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x101ab751 dquot_alloc -EXPORT_SYMBOL vmlinux 0x10202b9d mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x10235938 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x10284091 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x10437323 netif_device_detach -EXPORT_SYMBOL vmlinux 0x104bd5e2 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x1053a5f1 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x105eb867 kmem_cache_free -EXPORT_SYMBOL vmlinux 0x106ed078 mmc_remove_host -EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10811779 __get_user_pages -EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x10cdb79d md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x10d6edb3 param_set_ushort -EXPORT_SYMBOL vmlinux 0x10d81f0e mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10f738a1 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x10fcac76 agp_copy_info -EXPORT_SYMBOL vmlinux 0x10fee588 sock_wake_async -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x111b66f5 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x112c2112 security_path_truncate -EXPORT_SYMBOL vmlinux 0x112e5293 __d_drop -EXPORT_SYMBOL vmlinux 0x112ec7de tty_unlock -EXPORT_SYMBOL vmlinux 0x1148c050 skb_tx_error -EXPORT_SYMBOL vmlinux 0x1152c77a xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x1159cf57 swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0x115eac6b ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x11653edf revert_creds -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x11789faf bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x1195e4cf __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x1198c268 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11a99047 block_invalidatepage -EXPORT_SYMBOL vmlinux 0x11d245a1 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x11dab612 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x11edf17b dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x11f6be3f pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x11fa483d __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x12293732 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x122ae5ba pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x1234438e vme_slave_request -EXPORT_SYMBOL vmlinux 0x1239886f simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x12528752 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x12820d0a request_key_async -EXPORT_SYMBOL vmlinux 0x12850fa6 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x1288f71f nvm_register -EXPORT_SYMBOL vmlinux 0x1289a6a1 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0x128dc34a blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x12a1e059 dev_add_pack -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12b0e8b4 alloc_file -EXPORT_SYMBOL vmlinux 0x12c608c3 phy_drivers_register -EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit -EXPORT_SYMBOL vmlinux 0x12f009c3 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x12fd2c59 seq_path -EXPORT_SYMBOL vmlinux 0x1305d532 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x130ceca0 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x1316303a xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x1318f39f blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc -EXPORT_SYMBOL vmlinux 0x1339b1a0 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x133cb88a netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x134138f4 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x134d5857 page_readlink -EXPORT_SYMBOL vmlinux 0x134ffd0e pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x13594e63 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x137d2b04 vfs_unlink -EXPORT_SYMBOL vmlinux 0x138c1921 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x13a05cde scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x13a3a30d filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x13a7f0c6 get_phy_device -EXPORT_SYMBOL vmlinux 0x13b8b8ee mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x13b92e67 import_iovec -EXPORT_SYMBOL vmlinux 0x13c968f5 mmc_free_host -EXPORT_SYMBOL vmlinux 0x13c9b28d pipe_unlock -EXPORT_SYMBOL vmlinux 0x13ce3720 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13f3d47d inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x143e42f9 dev_printk -EXPORT_SYMBOL vmlinux 0x144b7bf1 i2c_verify_client -EXPORT_SYMBOL vmlinux 0x1453fabb generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x1494d549 sync_blockdev -EXPORT_SYMBOL vmlinux 0x14a10c42 current_fs_time -EXPORT_SYMBOL vmlinux 0x14b5e8a4 acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0x14c1b311 kdb_current_task -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14e190e9 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x14e1a24e dup_iter -EXPORT_SYMBOL vmlinux 0x150316b1 neigh_lookup -EXPORT_SYMBOL vmlinux 0x150389d6 acpi_processor_power_init_bm_check -EXPORT_SYMBOL vmlinux 0x15043ae5 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x15159fd2 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x1517d610 ip_options_compile -EXPORT_SYMBOL vmlinux 0x153eea18 blk_end_request_all -EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x1554371f vm_map_ram -EXPORT_SYMBOL vmlinux 0x15633d2d pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x1569917b dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock -EXPORT_SYMBOL vmlinux 0x157117b6 d_rehash -EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x15b383b5 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x15c82aec param_ops_ullong -EXPORT_SYMBOL vmlinux 0x15cba6c9 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x15fb4e7d genphy_suspend -EXPORT_SYMBOL vmlinux 0x15ff5806 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x160c0cea md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled -EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0x16235c66 sock_no_connect -EXPORT_SYMBOL vmlinux 0x162c4872 ilookup -EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null -EXPORT_SYMBOL vmlinux 0x16328924 tty_port_init -EXPORT_SYMBOL vmlinux 0x163b63b4 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x16518250 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x167629a1 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 -EXPORT_SYMBOL vmlinux 0x16ba437d put_filp -EXPORT_SYMBOL vmlinux 0x16c1111d prepare_binprm -EXPORT_SYMBOL vmlinux 0x16dc4d1f fence_init -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e2aaa8 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x16f03909 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x16f4bfc4 devm_gpio_free -EXPORT_SYMBOL vmlinux 0x1707c176 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x170c8f7e blk_init_tags -EXPORT_SYMBOL vmlinux 0x172b74fd fb_pan_display -EXPORT_SYMBOL vmlinux 0x1764618e sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x17666d3a pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x178fc438 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock -EXPORT_SYMBOL vmlinux 0x1797bb54 put_disk -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17c1fc26 new_inode -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17fcae36 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x17fd07f6 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0x180b31dc devm_request_resource -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x18401d0a dev_close -EXPORT_SYMBOL vmlinux 0x184a1488 d_find_any_alias -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x185da6cb scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x186646cc nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x18786afc qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x18867f68 inet_ioctl -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x18acc4e4 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe -EXPORT_SYMBOL vmlinux 0x18ca6192 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x18e1fcf0 elevator_init -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18e731ec __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x190b3590 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x1916d5bb param_ops_byte -EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x1928bdb1 dev_emerg -EXPORT_SYMBOL vmlinux 0x195a4813 pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x19712c79 devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a8d74a nd_integrity_init -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19bcb8da mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c26ae8 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x1a0a2da3 tcf_hash_insert -EXPORT_SYMBOL vmlinux 0x1a2854ef key_reject_and_link -EXPORT_SYMBOL vmlinux 0x1a2f4ab0 mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0x1a31339b inet_frags_init -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch -EXPORT_SYMBOL vmlinux 0x1a9320c3 icmp_send -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ae09f75 _raw_write_unlock_irq -EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b06f136 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x1b09e1e9 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x1b11d29d tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b318c74 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x1b37269a follow_pfn -EXPORT_SYMBOL vmlinux 0x1b4fe728 d_invalidate -EXPORT_SYMBOL vmlinux 0x1b553a13 get_super_thawed -EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b7a24fc vga_switcheroo_register_client -EXPORT_SYMBOL vmlinux 0x1b7af49c scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x1b7d0af8 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1b92d1cb dquot_acquire -EXPORT_SYMBOL vmlinux 0x1b93ba53 sock_release -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bbc2273 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x1bbeca44 always_delete_dentry -EXPORT_SYMBOL vmlinux 0x1bcd047e __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x1bdcc766 free_netdev -EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock -EXPORT_SYMBOL vmlinux 0x1bed9fd7 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x1bfc01f9 tcp_check_req -EXPORT_SYMBOL vmlinux 0x1bfd9475 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x1c00075f block_commit_write -EXPORT_SYMBOL vmlinux 0x1c20d952 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0x1c39863c xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0x1c4a4a2f mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x1c522b14 vfs_getattr -EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset -EXPORT_SYMBOL vmlinux 0x1ca73641 tcf_em_register -EXPORT_SYMBOL vmlinux 0x1ca7c5ef csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x1cc363fa phy_detach -EXPORT_SYMBOL vmlinux 0x1d0bca36 consume_skb -EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be -EXPORT_SYMBOL vmlinux 0x1d465871 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x1d4deda1 dev_load -EXPORT_SYMBOL vmlinux 0x1d4fae3f xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x1d547122 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x1db63bd7 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1dd777b1 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0x1dec4f84 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x1df10ae6 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x1dff047c xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe -EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt -EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc -EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query -EXPORT_SYMBOL vmlinux 0x1e11e029 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e2a285f mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x1e59cf77 proto_unregister -EXPORT_SYMBOL vmlinux 0x1e641dbd jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x1e67741b pagevec_lookup -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e98c1d3 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x1ebe52ad fb_blank -EXPORT_SYMBOL vmlinux 0x1edd4c1e sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x1ef6e46c dquot_free_inode -EXPORT_SYMBOL vmlinux 0x1f30518b mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x1f6b10b0 netif_napi_del -EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x1f7fb9d8 proto_register -EXPORT_SYMBOL vmlinux 0x1f8facaa dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x1f92ea8f devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x1f943f36 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x1fae9079 sk_capable -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc142ed mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x1fd01c42 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fda910c dump_trace -EXPORT_SYMBOL vmlinux 0x1fdd279a __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9addd get_acl -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x20092385 acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201b0ac0 lg_global_unlock -EXPORT_SYMBOL vmlinux 0x201b0c78 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x201cbd47 swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0x2044aea7 amd_iommu_pc_get_max_banks -EXPORT_SYMBOL vmlinux 0x204b8c16 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x205a1020 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x206aedc5 bdi_register_dev -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x207e4045 bdget -EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table -EXPORT_SYMBOL vmlinux 0x208baa99 tty_port_close_start -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20c2d878 max8998_read_reg -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20c7feab skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x20e8d2f6 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20ebc1ff xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x20efd929 lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x20f181c0 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x20f7f797 locks_free_lock -EXPORT_SYMBOL vmlinux 0x21070feb blkdev_put -EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x2121f41a phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x214ac4a6 free_page_put_link -EXPORT_SYMBOL vmlinux 0x217ed79c skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x217f2aab cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x21952bbc proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x2198d14b pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0x21a701fe fence_signal -EXPORT_SYMBOL vmlinux 0x21b08d7a cdev_del -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21e714ae __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get -EXPORT_SYMBOL vmlinux 0x21ed8b4f devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x22303be8 bio_copy_data -EXPORT_SYMBOL vmlinux 0x2240e3c0 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x2254482a __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x227d91fe phy_start_aneg -EXPORT_SYMBOL vmlinux 0x228b5727 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x228f2aea bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x229b7582 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b96a00 vfs_link -EXPORT_SYMBOL vmlinux 0x22c11e13 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x22cac4e8 dm_get_device -EXPORT_SYMBOL vmlinux 0x22ec786e inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x231600be ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x232842d8 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x235e8b61 nf_log_trace -EXPORT_SYMBOL vmlinux 0x2364fb7b __nlmsg_put -EXPORT_SYMBOL vmlinux 0x238aed1f generic_file_open -EXPORT_SYMBOL vmlinux 0x23942ba7 sock_register -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23be70f5 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x23ca4a24 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x23cf97db vm_event_states -EXPORT_SYMBOL vmlinux 0x23ea58d2 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x23eea7f0 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x23ffa2e4 nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0x24011578 compat_sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x24027a64 phy_disconnect -EXPORT_SYMBOL vmlinux 0x24134825 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x243d751e cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0x244154fa blk_peek_request -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x247736de path_put -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x248e7d39 kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0x249d2965 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x24c0b6ac __scsi_add_device -EXPORT_SYMBOL vmlinux 0x24c76ab2 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x24d0226f skb_insert -EXPORT_SYMBOL vmlinux 0x24e0746a get_gendisk -EXPORT_SYMBOL vmlinux 0x24f0c87f twl6040_power -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x251a5536 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x2521e786 get_empty_filp -EXPORT_SYMBOL vmlinux 0x2524913a swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x25304c6e inode_permission -EXPORT_SYMBOL vmlinux 0x253bacaf lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0x253fcc51 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x2548ab95 vfs_create -EXPORT_SYMBOL vmlinux 0x25498e13 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x2551ffe1 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x256e4dc7 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x257621a9 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x2581bb45 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2583f226 dev_uc_init -EXPORT_SYMBOL vmlinux 0x258630d3 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x25bd6902 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0x25cd061e gnttab_alloc_pages -EXPORT_SYMBOL vmlinux 0x25e20630 posix_test_lock -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25f92de2 dentry_update_name_case -EXPORT_SYMBOL vmlinux 0x26194068 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x261a7f2b __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x26249833 devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0x2636e30b nd_device_unregister -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x2652e545 tty_register_device -EXPORT_SYMBOL vmlinux 0x2657cd9d eth_gro_complete -EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update -EXPORT_SYMBOL vmlinux 0x266d69f6 md_write_start -EXPORT_SYMBOL vmlinux 0x26948d96 copy_user_enhanced_fast_string -EXPORT_SYMBOL vmlinux 0x26a0b785 km_state_notify -EXPORT_SYMBOL vmlinux 0x26c58362 tcp_child_process -EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create -EXPORT_SYMBOL vmlinux 0x26d56706 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e3a12b tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26fc0129 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x2708dc16 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x274f2d69 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x27569425 param_set_ulong -EXPORT_SYMBOL vmlinux 0x2775a8e5 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x27808c95 padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove -EXPORT_SYMBOL vmlinux 0x278eb573 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x278fa033 generic_setxattr -EXPORT_SYMBOL vmlinux 0x27a8528b i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction -EXPORT_SYMBOL vmlinux 0x27b400b8 neigh_parms_release -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c33efe csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x27c6a017 skb_store_bits -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x280bcfc7 alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28188f17 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x28318305 snprintf -EXPORT_SYMBOL vmlinux 0x28342699 swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x2854295c xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x28665c7a pcim_enable_device -EXPORT_SYMBOL vmlinux 0x28768772 alloc_disk -EXPORT_SYMBOL vmlinux 0x288adaa5 mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x289c85f9 __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28aacf91 input_event -EXPORT_SYMBOL vmlinux 0x28aaf15d netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available -EXPORT_SYMBOL vmlinux 0x28ec0947 inet6_getname -EXPORT_SYMBOL vmlinux 0x28ff5990 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x2905cc8e end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x29240217 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x295203fd scsi_execute -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x296c3d43 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x29848779 skb_clone -EXPORT_SYMBOL vmlinux 0x2993a8ef __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x299ced9e amd_iommu_domain_clear_gcr3 -EXPORT_SYMBOL vmlinux 0x29a26ca6 amd_iommu_flush_page -EXPORT_SYMBOL vmlinux 0x29ba6359 skb_make_writable -EXPORT_SYMBOL vmlinux 0x29d1ea6a registered_fb -EXPORT_SYMBOL vmlinux 0x29d8af86 bio_advance -EXPORT_SYMBOL vmlinux 0x29e592a4 pci_restore_state -EXPORT_SYMBOL vmlinux 0x29f0e207 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x29f5d7d8 abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0x29fa7972 file_remove_privs -EXPORT_SYMBOL vmlinux 0x2a11a7ef dev_deactivate -EXPORT_SYMBOL vmlinux 0x2a1b4145 kernel_accept -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a324765 elevator_change -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x2a855971 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x2aa3d369 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2ab862db inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2af679f6 netlink_unicast -EXPORT_SYMBOL vmlinux 0x2b014d40 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0x2b05a21b intel_gtt_get -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b0daeb1 vfs_writef -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b347552 simple_empty -EXPORT_SYMBOL vmlinux 0x2b388cbd scsi_unregister -EXPORT_SYMBOL vmlinux 0x2b549694 generic_update_time -EXPORT_SYMBOL vmlinux 0x2b56cfe4 mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0x2b83fb9d nvm_register_target -EXPORT_SYMBOL vmlinux 0x2b86fc21 bio_put -EXPORT_SYMBOL vmlinux 0x2b8979ad padata_add_cpu -EXPORT_SYMBOL vmlinux 0x2b8d7cc3 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba058d7 task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2ba966d7 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x2bd0e1bd md_error -EXPORT_SYMBOL vmlinux 0x2bf45cc7 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x2c14042f eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x2c1ed449 vfs_writev -EXPORT_SYMBOL vmlinux 0x2c221dfa set_user_nice -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c73000b pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x2c7acf8e security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x2c89a575 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x2ca00a6f __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x2cbf3ec2 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x2cc40ecf fence_remove_callback -EXPORT_SYMBOL vmlinux 0x2ccc2d01 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x2cdf092e jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x2d03c383 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x2d0739f5 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x2d0d5ca4 acpi_pm_device_run_wake -EXPORT_SYMBOL vmlinux 0x2d0e2043 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x2d192616 nonseekable_open -EXPORT_SYMBOL vmlinux 0x2d1d5740 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x2d248c69 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d320433 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d33d7fd dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x2d45b218 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x2d585416 vga_switcheroo_get_client_state -EXPORT_SYMBOL vmlinux 0x2d59337e pci_reenable_device -EXPORT_SYMBOL vmlinux 0x2d6702b3 elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0x2d69da44 block_write_end -EXPORT_SYMBOL vmlinux 0x2d8184f6 open_exec -EXPORT_SYMBOL vmlinux 0x2d915a68 register_console -EXPORT_SYMBOL vmlinux 0x2d9b0593 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x2d9dce5c fb_get_mode -EXPORT_SYMBOL vmlinux 0x2dba970e read_cache_page -EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu -EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink -EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception -EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write -EXPORT_SYMBOL vmlinux 0x2e05e8d8 param_set_long -EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e1cddb9 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e2d9702 simple_write_end -EXPORT_SYMBOL vmlinux 0x2e441e37 inet_listen -EXPORT_SYMBOL vmlinux 0x2e4602c1 vfs_fsync -EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0x2e602e8a mapping_tagged -EXPORT_SYMBOL vmlinux 0x2e63ccb6 page_symlink -EXPORT_SYMBOL vmlinux 0x2e81ef16 __put_cred -EXPORT_SYMBOL vmlinux 0x2e844b35 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x2e8c1888 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x2e8fd877 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x2e933e3c ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x2ec4b49d tcf_exts_change -EXPORT_SYMBOL vmlinux 0x2eedf19f __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2f03046e __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f1e97d8 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x2f214dbb lookup_bdev -EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f3eebda inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f52dc9d dma_ops -EXPORT_SYMBOL vmlinux 0x2f58efdf cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x2f5c5e37 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x2f64f89f cpu_present_mask -EXPORT_SYMBOL vmlinux 0x2f699fb8 vfs_statfs -EXPORT_SYMBOL vmlinux 0x2f794fea ___pskb_trim -EXPORT_SYMBOL vmlinux 0x2f7ecd52 filemap_fault -EXPORT_SYMBOL vmlinux 0x2f8146c8 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x2f83a80a dm_put_device -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fbefa30 bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x2fd2893f seq_open_private -EXPORT_SYMBOL vmlinux 0x2fe1a86d blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe87b2d unlock_rename -EXPORT_SYMBOL vmlinux 0x2ff063b5 acpi_get_name -EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x30380f51 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x30417851 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x304895bc proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x30676f4b lock_rename -EXPORT_SYMBOL vmlinux 0x306b8ad1 locks_init_lock -EXPORT_SYMBOL vmlinux 0x306d1b40 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x30729266 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x307b5241 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x3081c617 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x30846cc5 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30a83bf8 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0x30b04526 ida_init -EXPORT_SYMBOL vmlinux 0x30b07101 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x30b253a1 get_thermal_instance -EXPORT_SYMBOL vmlinux 0x30bb05a0 skb_seq_read -EXPORT_SYMBOL vmlinux 0x30c9c937 bprm_change_interp -EXPORT_SYMBOL vmlinux 0x30cba2aa security_inode_permission -EXPORT_SYMBOL vmlinux 0x30d54531 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310f02ec memremap -EXPORT_SYMBOL vmlinux 0x31345b83 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x313a9020 km_policy_expired -EXPORT_SYMBOL vmlinux 0x313f1fcc skb_free_datagram -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x31689b19 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x31693034 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x317bd83c unregister_key_type -EXPORT_SYMBOL vmlinux 0x31829976 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x31a5fbbf jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x31d12b66 udp_set_csum -EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz -EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x31edd66f unlock_buffer -EXPORT_SYMBOL vmlinux 0x31f9ffb4 blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs -EXPORT_SYMBOL vmlinux 0x320405d2 mount_pseudo -EXPORT_SYMBOL vmlinux 0x3212641f mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x3217c594 inet_getname -EXPORT_SYMBOL vmlinux 0x324799af fsync_bdev -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x325e2641 padata_alloc -EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom -EXPORT_SYMBOL vmlinux 0x3267118a peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x326a2e67 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x32755745 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x3280d679 set_wb_congested -EXPORT_SYMBOL vmlinux 0x32aaed7e i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x32acd2ce uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x32d4ee2e seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x32d95581 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x32dac247 inet_select_addr -EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x32fc62d9 prepare_creds -EXPORT_SYMBOL vmlinux 0x33092fcc inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x332a0059 blk_stop_queue -EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x334998a0 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x3356b90b cpu_tss -EXPORT_SYMBOL vmlinux 0x3366d068 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x33b180f0 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33e46cf5 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x33ec638e key_revoke -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x3409ad36 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x3412cac5 netif_rx -EXPORT_SYMBOL vmlinux 0x3418283d read_dev_sector -EXPORT_SYMBOL vmlinux 0x3428541a softnet_data -EXPORT_SYMBOL vmlinux 0x343e20d1 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x344928e1 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x347d83a7 dquot_file_open -EXPORT_SYMBOL vmlinux 0x348b2e3c mmc_can_reset -EXPORT_SYMBOL vmlinux 0x348d0564 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x349213ef cpu_core_map -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f7e1f9 input_register_handler -EXPORT_SYMBOL vmlinux 0x34feca0a dev_get_by_index -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x35234025 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x3539d140 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x354aa9cf bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x35606626 acpi_device_hid -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x3570d6b6 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x357b8867 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x357c2bd4 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35bd18f2 clear_inode -EXPORT_SYMBOL vmlinux 0x35d4402c netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x35edf1cc netpoll_print_options -EXPORT_SYMBOL vmlinux 0x35efd592 pci_map_rom -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x360b8cb6 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x3622850d xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0x36319f31 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x363f385d nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x3642ede4 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x365045d0 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x36722f6a agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0x3694c539 mmc_start_req -EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x36a58059 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36e441ca unload_nls -EXPORT_SYMBOL vmlinux 0x3701a196 csum_partial_copy_to_user -EXPORT_SYMBOL vmlinux 0x370d7320 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x370f9850 efi -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374df387 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x37607ff8 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x376267e7 security_mmap_file -EXPORT_SYMBOL vmlinux 0x37755d89 bio_map_kern -EXPORT_SYMBOL vmlinux 0x377e6815 bdi_init -EXPORT_SYMBOL vmlinux 0x3787083d pci_bus_get -EXPORT_SYMBOL vmlinux 0x37a0a9e6 init_task -EXPORT_SYMBOL vmlinux 0x37a51b2a compat_ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37dd64cc devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x37f8d49b key_unlink -EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381c6efa __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x382038b7 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x38239ac5 param_get_short -EXPORT_SYMBOL vmlinux 0x382caa2d devm_gpiod_get -EXPORT_SYMBOL vmlinux 0x383bc18f amd_iommu_get_v2_domain -EXPORT_SYMBOL vmlinux 0x3840672e netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x385b5520 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x385e0403 nvm_get_blk -EXPORT_SYMBOL vmlinux 0x386f0830 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38de9fff phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x38e1ffbb serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x38eca847 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x38ede825 genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x38f33bed dump_fpu -EXPORT_SYMBOL vmlinux 0x38f359dc scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x3907bfd2 dump_align -EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages -EXPORT_SYMBOL vmlinux 0x390b5752 kset_unregister -EXPORT_SYMBOL vmlinux 0x39327236 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x39330373 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x396c7712 tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x39815f4d nf_hook_slow -EXPORT_SYMBOL vmlinux 0x399358b9 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x399e3fd6 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39dd9223 x86_hyper_vmware -EXPORT_SYMBOL vmlinux 0x39de4f0e reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0x39e47d30 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x39e67532 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above -EXPORT_SYMBOL vmlinux 0x3a05f3f5 md_integrity_register -EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify -EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush -EXPORT_SYMBOL vmlinux 0x3a4218eb scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0x3a55f9c4 pnp_device_detach -EXPORT_SYMBOL vmlinux 0x3a766a04 bioset_integrity_free -EXPORT_SYMBOL vmlinux 0x3a9206e3 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3ab0ba2f __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x3adf8a8c fddi_change_mtu -EXPORT_SYMBOL vmlinux 0x3b19e47c mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x3b1d3057 sock_create_kern -EXPORT_SYMBOL vmlinux 0x3b2432e8 blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0x3b271629 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x3b3bc287 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x3b50bded input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x3b5a8ae6 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6afa41 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x3b6f6cd2 udp_table -EXPORT_SYMBOL vmlinux 0x3b742592 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x3b8944f6 ip6_xmit -EXPORT_SYMBOL vmlinux 0x3b91fc01 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x3ba4f7cf dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x3bb3a460 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait -EXPORT_SYMBOL vmlinux 0x3bbe6963 dev_mc_add -EXPORT_SYMBOL vmlinux 0x3be4b4c4 tty_register_driver -EXPORT_SYMBOL vmlinux 0x3bf898d3 dev_addr_init -EXPORT_SYMBOL vmlinux 0x3c2fd174 flow_cache_fini -EXPORT_SYMBOL vmlinux 0x3c3a7bf6 path_nosuid -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c40aa91 sk_net_capable -EXPORT_SYMBOL vmlinux 0x3c457725 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0x3c47ee3a pid_task -EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x3c54277d redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x3c5c85f7 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x3c61a298 dget_parent -EXPORT_SYMBOL vmlinux 0x3c7a1649 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x3c7bf158 pnp_is_active -EXPORT_SYMBOL vmlinux 0x3c7fb3cf devm_clk_put -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c9a9535 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x3cab65bd from_kuid -EXPORT_SYMBOL vmlinux 0x3cac50f8 dump_page -EXPORT_SYMBOL vmlinux 0x3cad1e4c vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x3caf2b7a skb_queue_head -EXPORT_SYMBOL vmlinux 0x3ccb3981 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x3ce08f98 kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ceeaf01 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3cf693e3 ab3100_event_register -EXPORT_SYMBOL vmlinux 0x3cf9e8a0 dev_get_flags -EXPORT_SYMBOL vmlinux 0x3cfb9127 simple_rmdir -EXPORT_SYMBOL vmlinux 0x3cfbc1af inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x3d07724d xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x3d092ecc __inet_hash -EXPORT_SYMBOL vmlinux 0x3d0fc18c blk_execute_rq -EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x3d16de6a generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x3d181850 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x3d20bc68 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x3d2acb7c ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x3d44cbda agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0x3d4fbd82 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x3d735192 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc -EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page -EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start -EXPORT_SYMBOL vmlinux 0x3dbb9cbe sock_sendmsg -EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x3dc81506 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dce0079 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x3dce5ead amd_iommu_enable_device_erratum -EXPORT_SYMBOL vmlinux 0x3dec93de sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e23d045 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock -EXPORT_SYMBOL vmlinux 0x3e577bce __page_symlink -EXPORT_SYMBOL vmlinux 0x3e5ed1d0 skb_put -EXPORT_SYMBOL vmlinux 0x3e6622b1 downgrade_write -EXPORT_SYMBOL vmlinux 0x3e7096a6 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource -EXPORT_SYMBOL vmlinux 0x3e8a8a7f xfrm_state_update -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get -EXPORT_SYMBOL vmlinux 0x3eb720b9 bio_copy_kern -EXPORT_SYMBOL vmlinux 0x3eb72f63 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x3eb90826 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x3ec457e6 component_match_add -EXPORT_SYMBOL vmlinux 0x3ed567f7 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x3ee82d36 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock -EXPORT_SYMBOL vmlinux 0x3f23beff dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x3f3896d7 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x3f3fd877 ip6_frag_match -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f7216bb mpage_readpages -EXPORT_SYMBOL vmlinux 0x3fa5bfae input_unregister_handler -EXPORT_SYMBOL vmlinux 0x3fbe347f xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x3fc6cea2 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x3fcc1e35 get_super -EXPORT_SYMBOL vmlinux 0x3fdb51e5 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x3fe18cbf crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fea6122 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x4001d64f tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x4008d96b inet_shutdown -EXPORT_SYMBOL vmlinux 0x4009c71b pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x401dc0f9 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x4027b400 inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x402e4ef5 ppp_channel_index -EXPORT_SYMBOL vmlinux 0x4031f750 blk_rq_init -EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev -EXPORT_SYMBOL vmlinux 0x404c5293 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x404c93d4 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x404d08b5 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x407a419c agp_generic_enable -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x409d7b28 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40aa8069 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c0c3f3 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x40c134c0 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0x40c8dfd5 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x40cb0ddf try_to_release_page -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40e7c602 sock_from_file -EXPORT_SYMBOL vmlinux 0x40ef5040 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x410c3006 dev_driver_string -EXPORT_SYMBOL vmlinux 0x412a0e7d scsi_print_sense -EXPORT_SYMBOL vmlinux 0x413c7e5e abort_creds -EXPORT_SYMBOL vmlinux 0x4143205a pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x4166092b security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x417662a0 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x41957af0 finish_open -EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x41c1b3a4 find_vma -EXPORT_SYMBOL vmlinux 0x41c2dd7d inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x41cd567a xfrm_lookup -EXPORT_SYMBOL vmlinux 0x42096704 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x420ae004 module_layout -EXPORT_SYMBOL vmlinux 0x420b6b96 kfree_skb -EXPORT_SYMBOL vmlinux 0x4215eaec blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x4222b872 set_bh_page -EXPORT_SYMBOL vmlinux 0x4234f096 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4253300b have_submounts -EXPORT_SYMBOL vmlinux 0x4257b26f misc_deregister -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x4275e44e skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x429103ea security_path_link -EXPORT_SYMBOL vmlinux 0x429c0347 gnttab_free_pages -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache -EXPORT_SYMBOL vmlinux 0x4301288f security_file_permission -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x43568f2b dev_add_offload -EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 -EXPORT_SYMBOL vmlinux 0x436c36d2 compat_sock_get_timestampns -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43a79d3b tcf_action_exec -EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule -EXPORT_SYMBOL vmlinux 0x43b4ac59 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x43cf7307 pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0x43cfe6cb lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x43dc75d5 scsi_remove_host -EXPORT_SYMBOL vmlinux 0x43e8f3b4 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x43ef6a54 __f_setown -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x4417843f neigh_for_each -EXPORT_SYMBOL vmlinux 0x444637ef tty_kref_put -EXPORT_SYMBOL vmlinux 0x4450de03 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x4461ccba blk_recount_segments -EXPORT_SYMBOL vmlinux 0x44685ec2 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x44873f98 xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x4489da02 register_sysctl_table -EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup -EXPORT_SYMBOL vmlinux 0x449059f8 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x449b2693 blk_make_request -EXPORT_SYMBOL vmlinux 0x449fe84b acpi_set_firmware_waking_vectors -EXPORT_SYMBOL vmlinux 0x44a81d5f acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x450b3358 sockfd_lookup -EXPORT_SYMBOL vmlinux 0x451e19c2 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x4529a2e7 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x4561d743 serio_close -EXPORT_SYMBOL vmlinux 0x456773b8 dev_notice -EXPORT_SYMBOL vmlinux 0x456b9984 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x4571ef42 __skb_checksum -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x4599690c netdev_state_change -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45acdc15 scsi_host_set_state -EXPORT_SYMBOL vmlinux 0x45d5e137 iunique -EXPORT_SYMBOL vmlinux 0x45d7c709 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x45fadd6c kernel_sendpage -EXPORT_SYMBOL vmlinux 0x45fe644d sg_miter_next -EXPORT_SYMBOL vmlinux 0x4604a43a mem_section -EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x4684fdb9 simple_lookup -EXPORT_SYMBOL vmlinux 0x469b2dd5 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x469dbe40 scmd_printk -EXPORT_SYMBOL vmlinux 0x469f5370 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x46a1e262 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0x46bc8337 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x47075560 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x4710e099 compat_nf_setsockopt -EXPORT_SYMBOL vmlinux 0x4722aa1a devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0x4724d17c frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x47466282 pci_set_master -EXPORT_SYMBOL vmlinux 0x475c71fa thaw_bdev -EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x476c5e4f lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x47731758 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x477e6dcb amd_iommu_pc_get_set_reg_val -EXPORT_SYMBOL vmlinux 0x47806f02 sock_edemux -EXPORT_SYMBOL vmlinux 0x4789dda4 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x4789faff i2c_master_recv -EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq -EXPORT_SYMBOL vmlinux 0x478d7d88 genl_notify -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x4799f465 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x479cb2ee bdi_register -EXPORT_SYMBOL vmlinux 0x479d71b8 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x47c3b55c seq_vprintf -EXPORT_SYMBOL vmlinux 0x47c5bf92 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x47cc43b6 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x47f9c265 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x4824ec95 mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x4865722f tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x487308ee bitmap_unplug -EXPORT_SYMBOL vmlinux 0x4873d445 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x487d4a00 skb_push -EXPORT_SYMBOL vmlinux 0x488b4b9e blk_end_request -EXPORT_SYMBOL vmlinux 0x488ee606 set_blocksize -EXPORT_SYMBOL vmlinux 0x4891b417 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x4891fe7b blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0x48a814f0 netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0x48b223c6 amd_northbridges -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48be0d22 blk_start_request -EXPORT_SYMBOL vmlinux 0x48d0ab2b rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier -EXPORT_SYMBOL vmlinux 0x48dac688 __inode_permission -EXPORT_SYMBOL vmlinux 0x48eda33e blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x48fabfdb kill_pid -EXPORT_SYMBOL vmlinux 0x48ff29d1 __sb_end_write -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x490da3d1 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x490edecb input_set_abs_params -EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x4959dada bmap -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x4969e3d1 iget5_locked -EXPORT_SYMBOL vmlinux 0x49784f55 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x4997826b inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49d88b21 blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0x49f6fa77 dquot_release -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x49fa7225 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x4a241601 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x4a347754 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x4a46bb7b param_get_charp -EXPORT_SYMBOL vmlinux 0x4a58e3f4 skb_copy -EXPORT_SYMBOL vmlinux 0x4a71f376 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x4a9fdc12 param_get_long -EXPORT_SYMBOL vmlinux 0x4aa9fe8e pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4ac64120 unregister_filesystem -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4ace9f4c single_release -EXPORT_SYMBOL vmlinux 0x4acfe214 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x4ada758a nf_reinject -EXPORT_SYMBOL vmlinux 0x4adcea69 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x4ade894d input_inject_event -EXPORT_SYMBOL vmlinux 0x4ae5add2 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x4af63006 key_invalidate -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b0da965 agp_put_bridge -EXPORT_SYMBOL vmlinux 0x4b1f25f6 blk_delay_queue -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0x4b76dfb9 dquot_enable -EXPORT_SYMBOL vmlinux 0x4b7df622 dm_register_target -EXPORT_SYMBOL vmlinux 0x4b8121c2 serio_interrupt -EXPORT_SYMBOL vmlinux 0x4b93d812 register_netdev -EXPORT_SYMBOL vmlinux 0x4b9c985d tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x4ba27a3b poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bc08938 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x4bcad670 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x4bd44563 single_open -EXPORT_SYMBOL vmlinux 0x4bd4f310 is_bad_inode -EXPORT_SYMBOL vmlinux 0x4bde8dc1 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x4bf996a4 dcache_readdir -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c0ed602 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c35c61e netlink_capable -EXPORT_SYMBOL vmlinux 0x4c3654bb kobject_set_name -EXPORT_SYMBOL vmlinux 0x4c3a18cf sock_no_getname -EXPORT_SYMBOL vmlinux 0x4c5fb377 i8042_remove_filter -EXPORT_SYMBOL vmlinux 0x4c6d2f62 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x4c71dc70 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify -EXPORT_SYMBOL vmlinux 0x4c8962cd __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base -EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf -EXPORT_SYMBOL vmlinux 0x4cae0e0f pci_set_mwi -EXPORT_SYMBOL vmlinux 0x4cb063b4 __module_get -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4ce70338 netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0x4cf04fe9 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x4cfc4b33 acl_by_type -EXPORT_SYMBOL vmlinux 0x4d40abde seq_lseek -EXPORT_SYMBOL vmlinux 0x4d40dcaf blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0x4d782aa0 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9b9d5d mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4e0c6702 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x4e2ae2e2 netdev_change_features -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e498a1d backlight_force_update -EXPORT_SYMBOL vmlinux 0x4e593297 input_unregister_device -EXPORT_SYMBOL vmlinux 0x4e65f875 get_disk -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e8203db dev_get_stats -EXPORT_SYMBOL vmlinux 0x4e98518f dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x4e9eef8e save_mount_options -EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4ea571fc update_region -EXPORT_SYMBOL vmlinux 0x4ed624e1 fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x4ed9b8df input_register_device -EXPORT_SYMBOL vmlinux 0x4ee94375 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x4efa394d dst_discard_out -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f2f8bd5 pci_dev_get -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f3d2f2f sock_no_accept -EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x4f5a8bc8 account_page_dirtied -EXPORT_SYMBOL vmlinux 0x4f5c19f2 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x4f674062 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user -EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read -EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve -EXPORT_SYMBOL vmlinux 0x4f7a4827 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x4f855467 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user -EXPORT_SYMBOL vmlinux 0x4f8c3358 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x4f952179 sync_filesystem -EXPORT_SYMBOL vmlinux 0x4f9a5868 nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0x4fa44327 fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x4fba401f blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x4fc25241 lock_fb_info -EXPORT_SYMBOL vmlinux 0x4fccd485 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x501cc121 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x502425b3 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x50675076 __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x506fb2cc pci_disable_device -EXPORT_SYMBOL vmlinux 0x508dc86b md_cluster_ops -EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method -EXPORT_SYMBOL vmlinux 0x50a366c9 iput -EXPORT_SYMBOL vmlinux 0x50a5a454 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch -EXPORT_SYMBOL vmlinux 0x50afcc14 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del -EXPORT_SYMBOL vmlinux 0x50d90b6a blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50e04e45 sk_stream_error -EXPORT_SYMBOL vmlinux 0x51086719 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x510ea247 agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x510eb426 write_one_page -EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x511facbc dev_alert -EXPORT_SYMBOL vmlinux 0x51200d31 pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0x5143f045 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x514cdf26 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x515a64ba blkdev_get -EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock -EXPORT_SYMBOL vmlinux 0x5187c089 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0x519622ea pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51d7b059 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x51e15309 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x51e51806 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x51f60054 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data -EXPORT_SYMBOL vmlinux 0x52130046 acpi_check_address_range -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x521bb71b gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0x5270033c security_path_chown -EXPORT_SYMBOL vmlinux 0x52715b8b first_ec -EXPORT_SYMBOL vmlinux 0x527d4b62 __nd_iostat_start -EXPORT_SYMBOL vmlinux 0x527fd2bb d_set_fallthru -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52c3acc7 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x52c4f5c1 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x52cd038e get_io_context -EXPORT_SYMBOL vmlinux 0x52de28f9 eth_change_mtu -EXPORT_SYMBOL vmlinux 0x52e62518 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x52edac71 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid -EXPORT_SYMBOL vmlinux 0x531df281 up_read -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off -EXPORT_SYMBOL vmlinux 0x535aeb30 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x5364e48d sk_receive_skb -EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin -EXPORT_SYMBOL vmlinux 0x5390a0a7 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x53b3d709 elv_unregister_queue -EXPORT_SYMBOL vmlinux 0x53bfb7be devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x53d22421 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x53f04627 register_filesystem -EXPORT_SYMBOL vmlinux 0x53f4f7d1 vga_switcheroo_register_handler -EXPORT_SYMBOL vmlinux 0x53fd09c9 mutex_lock -EXPORT_SYMBOL vmlinux 0x54059a2a amd_iommu_pc_get_max_counters -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x542827cf get_unmapped_area -EXPORT_SYMBOL vmlinux 0x542e9ac7 blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x543fffd0 param_set_charp -EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register -EXPORT_SYMBOL vmlinux 0x54594d12 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler -EXPORT_SYMBOL vmlinux 0x546aff81 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x546c7ee1 compat_ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x54742748 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x54804770 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x5482e3b8 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x54910a45 bio_split -EXPORT_SYMBOL vmlinux 0x54a49f1b __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54d350fa ppp_register_channel -EXPORT_SYMBOL vmlinux 0x54e68bd1 inet6_release -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54f24d1a fence_default_wait -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551bedc7 fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x552d2550 pci_bus_type -EXPORT_SYMBOL vmlinux 0x553fdb82 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x555f6938 lockref_get -EXPORT_SYMBOL vmlinux 0x5560161b inet6_protos -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x556e3a04 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x5596eded locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait -EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node -EXPORT_SYMBOL vmlinux 0x562b80d4 override_creds -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x5644e52e devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x564baad2 sk_alloc -EXPORT_SYMBOL vmlinux 0x56540363 dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0x56606f73 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x56819d29 bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x569983f9 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x56c031f0 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56ca9178 intel_gmch_probe -EXPORT_SYMBOL vmlinux 0x56d2f0b1 kern_path_create -EXPORT_SYMBOL vmlinux 0x56dec671 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x56df7852 free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x56e03ea3 set_trace_device -EXPORT_SYMBOL vmlinux 0x56f0510c tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0x57062b1a pci_platform_rom -EXPORT_SYMBOL vmlinux 0x570f6512 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x5714e075 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x571c1d2b secpath_dup -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x575622fe nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x57728197 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x5777dd47 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x578855b8 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x57893fad jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x579417a6 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x57ba72ab fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x57c0a3bb kill_bdev -EXPORT_SYMBOL vmlinux 0x57e89096 elv_rb_del -EXPORT_SYMBOL vmlinux 0x580a19fa serio_unregister_port -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x5832a9d4 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x585bab2f pagecache_write_end -EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem -EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x587756b6 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x589a3c64 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58bf91f2 genlmsg_put -EXPORT_SYMBOL vmlinux 0x58d4d001 phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58fe14bb module_put -EXPORT_SYMBOL vmlinux 0x5942cef4 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x59642fd4 register_framebuffer -EXPORT_SYMBOL vmlinux 0x5982dcc3 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x5983bfbd blk_put_queue -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x599677ef __dst_free -EXPORT_SYMBOL vmlinux 0x59a5d4c4 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register -EXPORT_SYMBOL vmlinux 0x59bd2970 __register_chrdev -EXPORT_SYMBOL vmlinux 0x59ccac1c generic_writepages -EXPORT_SYMBOL vmlinux 0x59f23663 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x59f580de param_get_ullong -EXPORT_SYMBOL vmlinux 0x5a06e615 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a12e788 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x5a35f7c7 is_nd_btt -EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 -EXPORT_SYMBOL vmlinux 0x5a612d11 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x5a7a8f15 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x5a7c4139 compat_nf_getsockopt -EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit -EXPORT_SYMBOL vmlinux 0x5a85cfa5 __frontswap_store -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5aa12dfd iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0x5aafbc3a set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x5ab2dfe9 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x5ac20c67 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x5ac3f3a4 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x5af5a1f5 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b100be0 proc_mkdir -EXPORT_SYMBOL vmlinux 0x5b196022 kill_litter_super -EXPORT_SYMBOL vmlinux 0x5b2231f2 simple_write_begin -EXPORT_SYMBOL vmlinux 0x5b23939e param_set_ullong -EXPORT_SYMBOL vmlinux 0x5b2fa6ff __check_sticky -EXPORT_SYMBOL vmlinux 0x5b55c021 down_read -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b67a4fc devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x5b71bd44 blk_register_region -EXPORT_SYMBOL vmlinux 0x5b9c808a acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0x5bbfc538 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit -EXPORT_SYMBOL vmlinux 0x5bc40a73 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x5bc8d583 copy_from_user_overflow -EXPORT_SYMBOL vmlinux 0x5be2f83b sock_rfree -EXPORT_SYMBOL vmlinux 0x5bf97f46 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT -EXPORT_SYMBOL vmlinux 0x5c05e884 input_unregister_handle -EXPORT_SYMBOL vmlinux 0x5c19ad16 ata_dev_printk -EXPORT_SYMBOL vmlinux 0x5c239e17 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0x5c2ced6b ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x5c2e7108 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x5c4fd04b dev_mc_init -EXPORT_SYMBOL vmlinux 0x5c51de02 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0x5c551246 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x5c6bb79a tcp_req_err -EXPORT_SYMBOL vmlinux 0x5c781638 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x5c7f9f81 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x5c858300 __neigh_create -EXPORT_SYMBOL vmlinux 0x5c9dfa1b nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x5ca50226 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x5caadaf9 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x5ccd49e9 brioctl_set -EXPORT_SYMBOL vmlinux 0x5cf036e2 inode_init_always -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cf9fba8 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x5cfe0568 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x5d01021c del_gendisk -EXPORT_SYMBOL vmlinux 0x5d0161ec proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x5d07acbf mount_bdev -EXPORT_SYMBOL vmlinux 0x5d093682 wake_up_process -EXPORT_SYMBOL vmlinux 0x5d3c751a fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0x5d3d22bb device_get_mac_address -EXPORT_SYMBOL vmlinux 0x5d4c679a __skb_get_hash -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d672697 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved -EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done -EXPORT_SYMBOL vmlinux 0x5d92d27f scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x5d98cb93 key_alloc -EXPORT_SYMBOL vmlinux 0x5da864e4 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x5dadc7bd fget_raw -EXPORT_SYMBOL vmlinux 0x5dc446c0 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x5dc77654 vfs_mknod -EXPORT_SYMBOL vmlinux 0x5dcc2aa1 sock_i_ino -EXPORT_SYMBOL vmlinux 0x5dd21c1a install_exec_creds -EXPORT_SYMBOL vmlinux 0x5de2187f pci_get_slot -EXPORT_SYMBOL vmlinux 0x5de7eddf km_is_alive -EXPORT_SYMBOL vmlinux 0x5e2bcabb udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x5e32db2e dqput -EXPORT_SYMBOL vmlinux 0x5e364674 dquot_commit -EXPORT_SYMBOL vmlinux 0x5e5cd1d3 pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x5e855ff0 __blk_end_request -EXPORT_SYMBOL vmlinux 0x5e869dd5 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5eae38f0 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ee79d22 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x5eedf234 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x5ef07266 pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f166729 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x5f177eea mount_single -EXPORT_SYMBOL vmlinux 0x5f3c4a72 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x5f5fb85f lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x5f6aa401 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x5f801c69 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x5f8e9589 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x5fb0cb2c wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init -EXPORT_SYMBOL vmlinux 0x5fd8435c input_open_device -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x6028fc42 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x602e19c7 mdio_bus_type -EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe -EXPORT_SYMBOL vmlinux 0x605690ec do_truncate -EXPORT_SYMBOL vmlinux 0x60653323 udp_add_offload -EXPORT_SYMBOL vmlinux 0x606a21a3 param_ops_short -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x608c43a9 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x609f5b35 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60a543cc netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x60be085a pci_fixup_device -EXPORT_SYMBOL vmlinux 0x60c18c87 abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x60e1f9cc jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy -EXPORT_SYMBOL vmlinux 0x61164c91 i2c_master_send -EXPORT_SYMBOL vmlinux 0x611c74b2 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x6134df5e udp_prot -EXPORT_SYMBOL vmlinux 0x614a0553 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x61520529 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0x6174d982 skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0x617d91d1 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x61895e1a __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x618a8d5a ip_defrag -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61a128f3 simple_follow_link -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c1520f writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x61ca6c13 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x61dcba9a neigh_seq_start -EXPORT_SYMBOL vmlinux 0x61e2bcb8 devm_clk_get -EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x61f218f9 __quota_error -EXPORT_SYMBOL vmlinux 0x61fb248a node_states -EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable -EXPORT_SYMBOL vmlinux 0x6207e9db pci_get_class -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6219e8fd seq_puts -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x6230b7ab tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event -EXPORT_SYMBOL vmlinux 0x62448739 pci_pme_active -EXPORT_SYMBOL vmlinux 0x6261a131 devm_ioremap -EXPORT_SYMBOL vmlinux 0x6270a1ab mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62748e70 acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x627dd023 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62877a7a param_set_copystring -EXPORT_SYMBOL vmlinux 0x62892733 seq_read -EXPORT_SYMBOL vmlinux 0x628f2686 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x629b16d7 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x62c05bf1 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x63074704 bd_set_size -EXPORT_SYMBOL vmlinux 0x6309279b dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x631bf72f max8925_reg_write -EXPORT_SYMBOL vmlinux 0x6326e91f param_ops_string -EXPORT_SYMBOL vmlinux 0x632d7caa dentry_unhash -EXPORT_SYMBOL vmlinux 0x63352dba kobject_del -EXPORT_SYMBOL vmlinux 0x634af471 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x6355b5f9 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0x636cc310 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x636f795e md_unregister_thread -EXPORT_SYMBOL vmlinux 0x6370f69b rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x637d2cee sk_stream_write_space -EXPORT_SYMBOL vmlinux 0x6388591c down_timeout -EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63b880f2 may_umount -EXPORT_SYMBOL vmlinux 0x63b91d6d user_path_at_empty -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c846a2 tcp_close -EXPORT_SYMBOL vmlinux 0x63cfcc14 blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x63d57a95 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x63e9b0cb tcp_proc_register -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x63fc47f1 noop_fsync -EXPORT_SYMBOL vmlinux 0x63fe9751 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x64014b58 dev_addr_add -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x641f14ab phy_device_create -EXPORT_SYMBOL vmlinux 0x6423b150 vfs_read -EXPORT_SYMBOL vmlinux 0x64445d94 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0x647b79c9 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x649acbab genphy_update_link -EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64e02292 _dev_info -EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb -EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0x64fbea32 free_user_ns -EXPORT_SYMBOL vmlinux 0x64fc2575 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x651f3543 blk_run_queue -EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x65443c36 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc -EXPORT_SYMBOL vmlinux 0x6563835e __kernel_write -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x656d4d4d xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x657dc54a netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x657e6136 get_mm_exe_file -EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry -EXPORT_SYMBOL vmlinux 0x65c9463a i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65dfd9b4 __destroy_inode -EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65e70a3e max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x66132536 padata_stop -EXPORT_SYMBOL vmlinux 0x661b27e4 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0x663fd328 tty_free_termios -EXPORT_SYMBOL vmlinux 0x664d58b1 request_firmware -EXPORT_SYMBOL vmlinux 0x6653d6a3 __lock_buffer -EXPORT_SYMBOL vmlinux 0x6655818f __init_rwsem -EXPORT_SYMBOL vmlinux 0x667ae977 filp_open -EXPORT_SYMBOL vmlinux 0x66840846 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x66b89c77 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x66ffdafc nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x6701570e vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x671de7c5 blk_get_queue -EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 -EXPORT_SYMBOL vmlinux 0x67386433 acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x675d69d1 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x675f2ee2 nf_log_packet -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x67767ef3 blk_start_queue -EXPORT_SYMBOL vmlinux 0x677c6e3f param_set_uint -EXPORT_SYMBOL vmlinux 0x67a3b72b tty_port_open -EXPORT_SYMBOL vmlinux 0x67a5d29e make_kuid -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b42e33 devm_free_irq -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67bc20df register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x67d2438b release_firmware -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x681ba834 mmc_release_host -EXPORT_SYMBOL vmlinux 0x68592e30 swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x6876736c ata_print_version -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x688cfc8e xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x688f8571 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68d5de76 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x68e09214 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x68effb30 lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0x68fba4e7 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x69069b0a of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x6920ff27 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x6929887f ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x692fa783 init_buffer -EXPORT_SYMBOL vmlinux 0x693dd31f i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x696d7513 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 -EXPORT_SYMBOL vmlinux 0x699b7954 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x699dd82f jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be -EXPORT_SYMBOL vmlinux 0x69a1da4f jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69cf805b input_get_keycode -EXPORT_SYMBOL vmlinux 0x69d8640f blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x69e59b2a nf_unregister_hook -EXPORT_SYMBOL vmlinux 0x69fbc0a2 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0x69fe99e1 sock_no_poll -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a1b63b1 simple_link -EXPORT_SYMBOL vmlinux 0x6a1e0afa uart_match_port -EXPORT_SYMBOL vmlinux 0x6a2c8c34 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x6a391b06 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x6a4f4a96 vme_irq_free -EXPORT_SYMBOL vmlinux 0x6a5474eb ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a60277d acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6ab571cc mpage_writepage -EXPORT_SYMBOL vmlinux 0x6abc2a56 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be -EXPORT_SYMBOL vmlinux 0x6acc0abc pci_bus_put -EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6ae68480 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af1af0c gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b4eda27 proc_set_size -EXPORT_SYMBOL vmlinux 0x6b5de910 fb_find_mode -EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6b66a897 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue -EXPORT_SYMBOL vmlinux 0x6badd9f3 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x6bbfbfe1 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x6bc1566b tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x6bc3a466 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bcb3534 sock_recvmsg -EXPORT_SYMBOL vmlinux 0x6bcf066d _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops -EXPORT_SYMBOL vmlinux 0x6bfdc909 udp_poll -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c0cddaa irq_to_desc -EXPORT_SYMBOL vmlinux 0x6c34bc1a dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x6c3f63c6 dma_supported -EXPORT_SYMBOL vmlinux 0x6c44bc15 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x6c45d117 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c692d22 cont_write_begin -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c71646b devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0x6c822c29 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x6c8751ad x86_hyper -EXPORT_SYMBOL vmlinux 0x6c8d93be blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x6cb9a306 param_get_string -EXPORT_SYMBOL vmlinux 0x6cc42aee proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x6cd47ae1 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x6ce02938 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x6ce20c4f tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x6cf9b5f9 pnp_register_driver -EXPORT_SYMBOL vmlinux 0x6d031c68 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x6d08a585 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x6d08e98f vlan_vid_del -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d1d5d9b iosf_mbi_write -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d34acbd pci_write_vpd -EXPORT_SYMBOL vmlinux 0x6d41fe47 dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x6d5dfcfc unregister_netdev -EXPORT_SYMBOL vmlinux 0x6d7b79bd pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x6d80ee46 vga_get -EXPORT_SYMBOL vmlinux 0x6d899bff devm_ioport_map -EXPORT_SYMBOL vmlinux 0x6d98b0d3 __breadahead -EXPORT_SYMBOL vmlinux 0x6d9bbed3 block_write_full_page -EXPORT_SYMBOL vmlinux 0x6db7ef43 mdiobus_read -EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible -EXPORT_SYMBOL vmlinux 0x6dc6dd56 down -EXPORT_SYMBOL vmlinux 0x6dcd63c0 keyring_alloc -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df0a164 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e2a6c28 mntget -EXPORT_SYMBOL vmlinux 0x6e56edd1 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x6e6fe9f1 vme_slot_num -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x6e80fd8c __nd_driver_register -EXPORT_SYMBOL vmlinux 0x6e9bacf9 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6eda1d59 qdisc_destroy -EXPORT_SYMBOL vmlinux 0x6ef5d529 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x6f060422 mmc_add_host -EXPORT_SYMBOL vmlinux 0x6f0c85c2 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x6f13a5b0 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x6f15ad37 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x6f203fec sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock -EXPORT_SYMBOL vmlinux 0x6f319588 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x6f37e8fe i2c_release_client -EXPORT_SYMBOL vmlinux 0x6f4f43bc serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device -EXPORT_SYMBOL vmlinux 0x6f818058 md_check_recovery -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6f9393a3 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x6f968fb3 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x6fa12278 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x6fbc63fa qdisc_list_del -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write -EXPORT_SYMBOL vmlinux 0x700a5caa __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x700fc7e9 blk_free_tags -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x7025f411 pci_save_state -EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0x702cc048 blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x70310a0b netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x703c962c generic_file_llseek -EXPORT_SYMBOL vmlinux 0x7044fb06 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x704c11ec clk_get -EXPORT_SYMBOL vmlinux 0x704de126 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x70639827 __lock_page -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x7082f1fe freeze_bdev -EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x70948f3f sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x70bfc74b crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x70c277c8 path_noexec -EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock -EXPORT_SYMBOL vmlinux 0x70df516a devm_release_resource -EXPORT_SYMBOL vmlinux 0x70eaa0d6 agp_free_memory -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x71424977 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x7145d190 xen_biovec_phys_mergeable -EXPORT_SYMBOL vmlinux 0x714daff1 kfree_put_link -EXPORT_SYMBOL vmlinux 0x7151c429 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x716202f8 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71828a66 proc_dostring -EXPORT_SYMBOL vmlinux 0x719c1076 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71bb826f acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0x71be4f2c blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x71c4ec75 vme_register_driver -EXPORT_SYMBOL vmlinux 0x71e08455 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x71f88539 inc_nlink -EXPORT_SYMBOL vmlinux 0x721dc39c __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x72220176 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x7225f219 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x7230f2db flush_signals -EXPORT_SYMBOL vmlinux 0x725fd887 nla_append -EXPORT_SYMBOL vmlinux 0x7260e249 ___preempt_schedule_notrace -EXPORT_SYMBOL vmlinux 0x72a98fdb copy_user_generic_unrolled -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72bc9767 iget_failed -EXPORT_SYMBOL vmlinux 0x72c896d4 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0x72dcebf8 inet6_bind -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f91cdb trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x7319a279 tcf_register_action -EXPORT_SYMBOL vmlinux 0x732bd1d0 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x732c1853 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x732c5640 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x733b8373 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x7343d2e2 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay -EXPORT_SYMBOL vmlinux 0x7361692f register_qdisc -EXPORT_SYMBOL vmlinux 0x73781635 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get -EXPORT_SYMBOL vmlinux 0x73c56afe scsi_register_interface -EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable -EXPORT_SYMBOL vmlinux 0x73e0896c sock_no_listen -EXPORT_SYMBOL vmlinux 0x73e19008 inet_put_port -EXPORT_SYMBOL vmlinux 0x73fb8a17 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x745b4290 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c60449 devm_memunmap -EXPORT_SYMBOL vmlinux 0x74c830e1 console_stop -EXPORT_SYMBOL vmlinux 0x74cd2432 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0x74cee969 vmap -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f8a3e4 nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x750ca59c jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x75199e00 file_update_time -EXPORT_SYMBOL vmlinux 0x7525a60d kobject_init -EXPORT_SYMBOL vmlinux 0x75303309 bio_endio -EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x75362ef7 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x754d539c strlen -EXPORT_SYMBOL vmlinux 0x75787fbf bioset_free -EXPORT_SYMBOL vmlinux 0x75971167 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x75ae5539 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x75bc549a x86_cpu_to_apicid -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75ce21de jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x7610c427 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x7612b608 kernel_read -EXPORT_SYMBOL vmlinux 0x7629d50e pci_select_bars -EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x7649cd28 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x767185ee get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x767833df sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x767dd8fd acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc -EXPORT_SYMBOL vmlinux 0x769c3dbc set_nlink -EXPORT_SYMBOL vmlinux 0x76ace0c3 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76e4254f d_lookup -EXPORT_SYMBOL vmlinux 0x76f4e944 dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier -EXPORT_SYMBOL vmlinux 0x7705fb13 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x77357276 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x77712f64 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x77718043 sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x77753c77 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77a69c1e blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x77b33855 cdrom_open -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77e0b0db single_open_size -EXPORT_SYMBOL vmlinux 0x77e1b175 replace_mount_options -EXPORT_SYMBOL vmlinux 0x77f53abc acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x77f771a6 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x78028800 scsi_init_io -EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt -EXPORT_SYMBOL vmlinux 0x7810e74b register_gifconf -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x784b498b kset_register -EXPORT_SYMBOL vmlinux 0x784f807e poll_initwait -EXPORT_SYMBOL vmlinux 0x785344f9 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x78675580 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x786a714a inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x78764f4e pv_irq_ops -EXPORT_SYMBOL vmlinux 0x7880b953 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788b3a7a elv_add_request -EXPORT_SYMBOL vmlinux 0x7894f7d8 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x7899dfa2 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a5ff8a fence_add_callback -EXPORT_SYMBOL vmlinux 0x78ccc0c3 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x78dc5c52 sget -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e739aa up -EXPORT_SYMBOL vmlinux 0x78ef5193 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x78fdb012 backlight_device_register -EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method -EXPORT_SYMBOL vmlinux 0x790bc48d napi_gro_frags -EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock -EXPORT_SYMBOL vmlinux 0x7922c46f i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x7969c4fa __vfs_read -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x7986aeb8 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x7988295e security_path_rmdir -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79a3e568 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79b97aac bdi_register_owner -EXPORT_SYMBOL vmlinux 0x7a07a603 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x7a085631 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x7a19d7c4 fb_show_logo -EXPORT_SYMBOL vmlinux 0x7a1e9736 param_get_byte -EXPORT_SYMBOL vmlinux 0x7a2609f9 truncate_setsize -EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a2c4afc generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x7a2e095a __elv_add_request -EXPORT_SYMBOL vmlinux 0x7a3891bf tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x7a409728 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a55e0fd inet_release -EXPORT_SYMBOL vmlinux 0x7a65a240 security_path_rename -EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a7ccfae netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x7a7dab42 neigh_update -EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x7a8d0802 neigh_destroy -EXPORT_SYMBOL vmlinux 0x7a9274f3 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa3f117 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x7aa42df5 abx500_register_ops -EXPORT_SYMBOL vmlinux 0x7aadc66b con_copy_unimap -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7aba7269 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0x7acdbb2f get_agp_version -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user -EXPORT_SYMBOL vmlinux 0x7af589e1 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x7b059032 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc -EXPORT_SYMBOL vmlinux 0x7b4917dd twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x7b5007ad elv_register_queue -EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x7b573d88 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x7be4da1a ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0x7be75ffc acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x7c114bcf vga_put -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc -EXPORT_SYMBOL vmlinux 0x7c3bd0b1 generic_fillattr -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c4d74fc dst_init -EXPORT_SYMBOL vmlinux 0x7c58ba18 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x7c5e27da mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c7a867b nobh_writepage -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7ca7029f tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cbd7be8 register_shrinker -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce49f08 f_setown -EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cfb27d9 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d136605 mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0x7d136771 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x7d287136 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x7d375167 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x7d43d680 fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x7d5f5b43 __kfree_skb -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d71445d cpu_active_mask -EXPORT_SYMBOL vmlinux 0x7d92a60f pci_release_regions -EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port -EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x7d99b186 input_reset_device -EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk -EXPORT_SYMBOL vmlinux 0x7dca3441 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe -EXPORT_SYMBOL vmlinux 0x7ddbef68 add_disk -EXPORT_SYMBOL vmlinux 0x7de7364a pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7df3a5b3 tcp_poll -EXPORT_SYMBOL vmlinux 0x7e104e86 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x7e4870c1 proc_remove -EXPORT_SYMBOL vmlinux 0x7e5c35b1 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit -EXPORT_SYMBOL vmlinux 0x7e8f6a99 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x7ebd4be4 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x7eddbc34 led_update_brightness -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7ef19ba8 dst_release -EXPORT_SYMBOL vmlinux 0x7ef57d2f memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f222acf deactivate_super -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x7f35ebba qdisc_reset -EXPORT_SYMBOL vmlinux 0x7f43a7f1 follow_up -EXPORT_SYMBOL vmlinux 0x7f52e5fd remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f956458 skb_unlink -EXPORT_SYMBOL vmlinux 0x7fa443ef bdevname -EXPORT_SYMBOL vmlinux 0x7fb70d70 dcb_setapp -EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x7ffe25f2 nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0x7fff8c66 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x80059d9a skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x80225060 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x802768f4 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0x804b2557 dev_open -EXPORT_SYMBOL vmlinux 0x80639f82 sock_create_lite -EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x806d2192 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0x807addbb nf_log_unregister -EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy -EXPORT_SYMBOL vmlinux 0x80bc401a inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80e2178f __bread_gfp -EXPORT_SYMBOL vmlinux 0x80e8b885 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x80ed7df7 dquot_initialize -EXPORT_SYMBOL vmlinux 0x80f4a393 elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0x80f7b01c netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x8121ea76 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x812c1ce2 netdev_alert -EXPORT_SYMBOL vmlinux 0x81387caf proc_set_user -EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table -EXPORT_SYMBOL vmlinux 0x814a7825 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x8174dadf __pci_register_driver -EXPORT_SYMBOL vmlinux 0x818bf56d get_user_pages -EXPORT_SYMBOL vmlinux 0x818d7748 tty_throttle -EXPORT_SYMBOL vmlinux 0x8192d8fb xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x819e299e stop_tty -EXPORT_SYMBOL vmlinux 0x81c7175a find_get_entry -EXPORT_SYMBOL vmlinux 0x81c96172 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81f5667f netdev_crit -EXPORT_SYMBOL vmlinux 0x81f61fef nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0x821534bf pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x821dd74d sock_setsockopt -EXPORT_SYMBOL vmlinux 0x823b196b generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x82487c1e mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x824cb833 param_set_int -EXPORT_SYMBOL vmlinux 0x825383b6 tty_name -EXPORT_SYMBOL vmlinux 0x825bb9cc pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x826a3840 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x829534b3 fence_free -EXPORT_SYMBOL vmlinux 0x82a7aa90 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82c09f7e pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x82fead07 tcp_seq_open -EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot -EXPORT_SYMBOL vmlinux 0x83159a59 bio_init -EXPORT_SYMBOL vmlinux 0x8316a726 migrate_page -EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x8351a118 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x8384647a acpi_map_pxm_to_online_node -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83c60aeb empty_aops -EXPORT_SYMBOL vmlinux 0x83cf4b9b loop_register_transfer -EXPORT_SYMBOL vmlinux 0x83e150ea agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x84015446 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x8414d0b6 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes -EXPORT_SYMBOL vmlinux 0x84242bfc simple_getattr -EXPORT_SYMBOL vmlinux 0x84419c3d framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x8456462d tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x84635976 bio_add_page -EXPORT_SYMBOL vmlinux 0x8480c2ba sg_miter_start -EXPORT_SYMBOL vmlinux 0x84885caa set_disk_ro -EXPORT_SYMBOL vmlinux 0x84930812 key_validate -EXPORT_SYMBOL vmlinux 0x849f90e9 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x84a25ae2 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x84ba9834 xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0x84dbb91d register_md_personality -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x8507622c vfs_iter_write -EXPORT_SYMBOL vmlinux 0x8507c383 proc_dointvec -EXPORT_SYMBOL vmlinux 0x8509b047 done_path_create -EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue -EXPORT_SYMBOL vmlinux 0x8563cd89 put_io_context -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8573cc5d d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes -EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85c4aa6e blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0x85de5929 cad_pid -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f284f9 put_cmsg -EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu -EXPORT_SYMBOL vmlinux 0x8629c545 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x8639d5ac mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x8649ed27 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x869a43ee posix_acl_valid -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86a69516 rt6_lookup -EXPORT_SYMBOL vmlinux 0x86a6b430 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x86f724b6 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x8703b9d6 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x8715cec0 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x87322c70 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x874b1826 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write -EXPORT_SYMBOL vmlinux 0x87848732 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x878cd015 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x879365fc devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x879ec089 agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0x87c59dd0 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x87d6a6d5 phy_attach -EXPORT_SYMBOL vmlinux 0x87e0ff28 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x87f0aa41 blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x880e63ed uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x8816f6ab redraw_screen -EXPORT_SYMBOL vmlinux 0x881f9df0 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x88203458 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x88313b5c xfrm_state_add -EXPORT_SYMBOL vmlinux 0x8837d544 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x8849996d input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x884a7da0 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x8850e0e8 phy_init_eee -EXPORT_SYMBOL vmlinux 0x8854c5aa xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x88552e03 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x889ce9fa ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x889d7097 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x88a817f0 bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x88ac00c4 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x88ce25fd bio_unmap_user -EXPORT_SYMBOL vmlinux 0x88ea57ff bdput -EXPORT_SYMBOL vmlinux 0x88ebdcc2 seq_file_path -EXPORT_SYMBOL vmlinux 0x8902968f pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x8914fe69 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat -EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx -EXPORT_SYMBOL vmlinux 0x892ea291 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x89328832 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x893df013 xattr_full_name -EXPORT_SYMBOL vmlinux 0x895099b9 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x895fb80d dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x896f6e58 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x89882ccb dma_async_device_register -EXPORT_SYMBOL vmlinux 0x899d9389 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x89a5ca68 cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x89aad437 pnp_start_dev -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89b5947d mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x89c6e4f4 d_alloc_name -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x89d7a241 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a2392f0 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x8a3f5aa1 acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a640c3f unlink_framebuffer -EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error -EXPORT_SYMBOL vmlinux 0x8a96a0d4 n_tty_compat_ioctl_helper -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8ab393a9 scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0x8ab62afd file_path -EXPORT_SYMBOL vmlinux 0x8ab789a6 bdget_disk -EXPORT_SYMBOL vmlinux 0x8ab8f90d input_free_device -EXPORT_SYMBOL vmlinux 0x8ad62cf6 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x8ad6a2ba __invalidate_device -EXPORT_SYMBOL vmlinux 0x8ada7dd2 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put -EXPORT_SYMBOL vmlinux 0x8afc162d mmc_power_save_host -EXPORT_SYMBOL vmlinux 0x8b00384e tcp_ioctl -EXPORT_SYMBOL vmlinux 0x8b358781 __find_get_block -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b3e9742 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b45f8dd tty_mutex -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b675b87 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x8b67cb6d sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x8b7d85df page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8b9c78ac inode_init_once -EXPORT_SYMBOL vmlinux 0x8bac46a1 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0x8bad33c7 down_read_trylock -EXPORT_SYMBOL vmlinux 0x8bbcaf9e inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x8bc39bff writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x8bfaa703 module_refcount -EXPORT_SYMBOL vmlinux 0x8c14611e d_set_d_op -EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 -EXPORT_SYMBOL vmlinux 0x8c212c9a mb_cache_shrink -EXPORT_SYMBOL vmlinux 0x8c53ab7e security_path_mknod -EXPORT_SYMBOL vmlinux 0x8c5ff455 dma_pool_create -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c796dd8 rwsem_wake -EXPORT_SYMBOL vmlinux 0x8caa8336 ata_port_printk -EXPORT_SYMBOL vmlinux 0x8cbfbf4d ps2_command -EXPORT_SYMBOL vmlinux 0x8cc4451f iterate_dir -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8cf1b23f seq_escape -EXPORT_SYMBOL vmlinux 0x8cf5c4e5 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x8d055d4f __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x8d148e6b eth_gro_receive -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d5a1c83 dev_change_flags -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d824aa1 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove -EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x8d8e4e30 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface -EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init -EXPORT_SYMBOL vmlinux 0x8dbb8418 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x8dcc4e43 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x8dde87c7 unlock_page -EXPORT_SYMBOL vmlinux 0x8deb5a9a nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x8df87b91 is_nd_pfn -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8e0013c1 napi_disable -EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block -EXPORT_SYMBOL vmlinux 0x8e0fe386 nvm_register_mgr -EXPORT_SYMBOL vmlinux 0x8e15cd1c netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x8e2d83b6 node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x8e3f6294 phy_device_register -EXPORT_SYMBOL vmlinux 0x8e4eddd8 vfs_llseek -EXPORT_SYMBOL vmlinux 0x8e54e4f0 dqget -EXPORT_SYMBOL vmlinux 0x8e552824 phy_stop -EXPORT_SYMBOL vmlinux 0x8e72fa5c page_waitqueue -EXPORT_SYMBOL vmlinux 0x8e73087f would_dump -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e78337a bh_submit_read -EXPORT_SYMBOL vmlinux 0x8e943449 dma_common_mmap -EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler -EXPORT_SYMBOL vmlinux 0x8eb7ec6d tty_port_put -EXPORT_SYMBOL vmlinux 0x8ecb592d lro_flush_all -EXPORT_SYMBOL vmlinux 0x8f01d4b2 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x8f0586c7 iterate_fd -EXPORT_SYMBOL vmlinux 0x8f0fac9e kill_anon_super -EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus -EXPORT_SYMBOL vmlinux 0x8f3f5154 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x8f56df48 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x8f675ec3 acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0x8f8b5f71 pipe_lock -EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 -EXPORT_SYMBOL vmlinux 0x8fa043b7 __brelse -EXPORT_SYMBOL vmlinux 0x8fa19dde d_find_alias -EXPORT_SYMBOL vmlinux 0x8fafa836 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x8fc008fd scsi_device_get -EXPORT_SYMBOL vmlinux 0x8fc5e6a4 amd_iommu_flush_tlb -EXPORT_SYMBOL vmlinux 0x8fce9fb1 path_is_under -EXPORT_SYMBOL vmlinux 0x8fd1152e _raw_write_unlock -EXPORT_SYMBOL vmlinux 0x8fdb366f skb_queue_purge -EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc -EXPORT_SYMBOL vmlinux 0x9022a4e3 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x902554b1 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x9038d625 jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0x903b4bda dev_warn -EXPORT_SYMBOL vmlinux 0x90405cfb xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector -EXPORT_SYMBOL vmlinux 0x904aa656 fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0x90698179 inode_change_ok -EXPORT_SYMBOL vmlinux 0x907b5743 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0x90ab0816 irq_set_chip -EXPORT_SYMBOL vmlinux 0x90bf8c2d __scm_send -EXPORT_SYMBOL vmlinux 0x91435b28 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x916040ff acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x9178c4af md_reload_sb -EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init -EXPORT_SYMBOL vmlinux 0x91a962db param_get_invbool -EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf -EXPORT_SYMBOL vmlinux 0x91ae1126 vme_bus_type -EXPORT_SYMBOL vmlinux 0x91b6d676 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x91b99624 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0x91c104a4 set_pages_wb -EXPORT_SYMBOL vmlinux 0x91d1e759 param_get_uint -EXPORT_SYMBOL vmlinux 0x91f53bb3 lock_sock_fast -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x91fe5850 blkdev_fsync -EXPORT_SYMBOL vmlinux 0x92066f7e dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x921b7d5d swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x921f201d phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x922c4964 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x9230a3b4 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x9235a5b3 blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0x92380e89 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x9241e99c xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x9273132d vfs_mkdir -EXPORT_SYMBOL vmlinux 0x927f21e9 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x92829f62 xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0x928a94dd unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x9293be1c copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x9295d3f5 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92bc3e65 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x92c1f62b km_policy_notify -EXPORT_SYMBOL vmlinux 0x92c9ef7e mfd_add_devices -EXPORT_SYMBOL vmlinux 0x92ceedd6 bdi_destroy -EXPORT_SYMBOL vmlinux 0x92d36f85 blk_init_queue -EXPORT_SYMBOL vmlinux 0x92d8deb8 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x92f11c54 ilookup5 -EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read -EXPORT_SYMBOL vmlinux 0x933dffdb lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x934eb6cc agp_bridge -EXPORT_SYMBOL vmlinux 0x93564b63 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x936bd8b1 vm_insert_page -EXPORT_SYMBOL vmlinux 0x936d8f1c set_pages_nx -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x9378eca6 vga_switcheroo_init_domain_pm_ops -EXPORT_SYMBOL vmlinux 0x9379dc10 skb_pad -EXPORT_SYMBOL vmlinux 0x93abb543 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93c4b4ff gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x93d95b6a scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x93f3e52b acpi_extract_package -EXPORT_SYMBOL vmlinux 0x93f5e660 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x943e466a __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x94478aba security_path_chmod -EXPORT_SYMBOL vmlinux 0x94596d67 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x945e4c33 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x94849e05 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x949593ca dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94afeb37 lookup_one_len -EXPORT_SYMBOL vmlinux 0x94c00e0e linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x94f60515 set_create_files_as -EXPORT_SYMBOL vmlinux 0x950cb450 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x951dbc87 to_ndd -EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception -EXPORT_SYMBOL vmlinux 0x953f6d1b cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x9540b56f __napi_complete -EXPORT_SYMBOL vmlinux 0x95445083 padata_start -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x955a832f ___preempt_schedule -EXPORT_SYMBOL vmlinux 0x9578e9d9 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x9580605e register_quota_format -EXPORT_SYMBOL vmlinux 0x9591c449 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler -EXPORT_SYMBOL vmlinux 0x95bf9d01 iov_iter_init -EXPORT_SYMBOL vmlinux 0x95c5fd00 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x95c79400 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x95d53197 keyring_search -EXPORT_SYMBOL vmlinux 0x95d67ea4 seq_release_private -EXPORT_SYMBOL vmlinux 0x960c9f2c ip_check_defrag -EXPORT_SYMBOL vmlinux 0x962756cb scsi_add_device -EXPORT_SYMBOL vmlinux 0x965857c7 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x965b4733 vga_client_register -EXPORT_SYMBOL vmlinux 0x965d35bd scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0x966962bd pci_request_region -EXPORT_SYMBOL vmlinux 0x96aba385 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96b6e0c7 dquot_transfer -EXPORT_SYMBOL vmlinux 0x96cbdbf3 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96db8bee mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x96df2542 bio_phys_segments -EXPORT_SYMBOL vmlinux 0x9705ed0a xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x972ead6b pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x97616331 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x97716e5d security_d_instantiate -EXPORT_SYMBOL vmlinux 0x9782332b udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97a8c88f arp_xmit -EXPORT_SYMBOL vmlinux 0x97b09090 km_query -EXPORT_SYMBOL vmlinux 0x97bcd62e netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x97d1b9cc devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block -EXPORT_SYMBOL vmlinux 0x97f3644d mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x981b4e78 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint -EXPORT_SYMBOL vmlinux 0x98240084 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0x98286346 get_cached_acl -EXPORT_SYMBOL vmlinux 0x9829556e generic_perform_write -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x98529c0a scsi_host_put -EXPORT_SYMBOL vmlinux 0x98678ad3 netdev_printk -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x987d889e unregister_binfmt -EXPORT_SYMBOL vmlinux 0x9883b18b posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x -EXPORT_SYMBOL vmlinux 0x98aa1dcb phy_print_status -EXPORT_SYMBOL vmlinux 0x98b37f4e invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x98b542ce tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x98b76e4e qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x98cba807 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x98d96b5a freeze_super -EXPORT_SYMBOL vmlinux 0x98e6b094 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0x990ce383 register_netdevice -EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x993a599d dev_err -EXPORT_SYMBOL vmlinux 0x9948d6c4 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9957d3c1 uart_add_one_port -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x995c0f41 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x996a4821 mount_ns -EXPORT_SYMBOL vmlinux 0x996f3502 pv_mmu_ops -EXPORT_SYMBOL vmlinux 0x998a40d2 vga_switcheroo_init_domain_pm_optimus_hdmi_audio -EXPORT_SYMBOL vmlinux 0x998ec9b6 agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99d0ac66 dump_emit -EXPORT_SYMBOL vmlinux 0x99d0cc23 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map -EXPORT_SYMBOL vmlinux 0x9a1019b5 kobject_add -EXPORT_SYMBOL vmlinux 0x9a19215a inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x9a19b682 user_path_create -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a22003a key_link -EXPORT_SYMBOL vmlinux 0x9a23dc39 agp_collect_device_status -EXPORT_SYMBOL vmlinux 0x9a2af2ef inet_del_protocol -EXPORT_SYMBOL vmlinux 0x9a2b9383 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x9a3d4d7a dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0x9a664d77 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x9a825639 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x9a92ef76 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x9aa77e08 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0x9ac8dd5f netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x9acb892b dev_addr_flush -EXPORT_SYMBOL vmlinux 0x9ae5b050 get_fs_type -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9af08362 nf_log_register -EXPORT_SYMBOL vmlinux 0x9afa039e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x9afce25e param_array_ops -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b3fd44c touch_buffer -EXPORT_SYMBOL vmlinux 0x9b520302 mmc_start_bkops -EXPORT_SYMBOL vmlinux 0x9b54fda3 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x9b55baaf blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x9b672887 file_ns_capable -EXPORT_SYMBOL vmlinux 0x9b73184b wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x9b8a07e7 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x9b935ade __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x9ba4200f ata_link_printk -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bb38940 tcp_filter -EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put -EXPORT_SYMBOL vmlinux 0x9bc51139 blk_finish_request -EXPORT_SYMBOL vmlinux 0x9bd0b84d gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x9bd6896a inet_addr_type -EXPORT_SYMBOL vmlinux 0x9be1d0a6 cdev_add -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9c0048b9 nobh_write_end -EXPORT_SYMBOL vmlinux 0x9c1e6214 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x9c35af58 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c61b331 kill_pgrp -EXPORT_SYMBOL vmlinux 0x9c6890ac blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x9c7508a4 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x9c76a7ce sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x9c7a0e33 request_key -EXPORT_SYMBOL vmlinux 0x9c7b9cd4 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x9c8a2382 napi_complete_done -EXPORT_SYMBOL vmlinux 0x9c9075e5 kobject_get -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cbbdf71 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x9cc1c007 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x9cc75b3c pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x9ccb6d62 blk_queue_split -EXPORT_SYMBOL vmlinux 0x9ccb6f6f jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x9cdec92a __frontswap_load -EXPORT_SYMBOL vmlinux 0x9ce849ef address_space_init_once -EXPORT_SYMBOL vmlinux 0x9cea2145 vga_switcheroo_unregister_client -EXPORT_SYMBOL vmlinux 0x9d0ae55e phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0x9d0b7159 set_pages_array_wb -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d0d6c61 d_instantiate -EXPORT_SYMBOL vmlinux 0x9d17006e phy_connect -EXPORT_SYMBOL vmlinux 0x9d261a7c __pci_enable_wake -EXPORT_SYMBOL vmlinux 0x9d313560 dcb_getapp -EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable -EXPORT_SYMBOL vmlinux 0x9d3635fd proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d4bc2a2 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x9d7513c6 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x9d81df37 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x9d852cd4 x86_dma_fallback_dev -EXPORT_SYMBOL vmlinux 0x9d8a8dcb input_close_device -EXPORT_SYMBOL vmlinux 0x9d98a98e __alloc_skb -EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x9da293e9 scsi_print_result -EXPORT_SYMBOL vmlinux 0x9db86899 check_disk_change -EXPORT_SYMBOL vmlinux 0x9dbda067 km_state_expired -EXPORT_SYMBOL vmlinux 0x9dc28408 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x9dc6f571 fb_is_primary_device -EXPORT_SYMBOL vmlinux 0x9dd1624d i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x9dd2fbf8 mutex_trylock -EXPORT_SYMBOL vmlinux 0x9de1c4ee compat_sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x9df8979d poll_freewait -EXPORT_SYMBOL vmlinux 0x9e098e2b cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e30d897 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e885ce3 nd_btt_probe -EXPORT_SYMBOL vmlinux 0x9e96d0fa netdev_notice -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9ec5815d csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x9ee1bb07 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x9ee5a2f2 nf_log_unset -EXPORT_SYMBOL vmlinux 0x9efbb78f rfkill_alloc -EXPORT_SYMBOL vmlinux 0x9f0b5b9c __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x9f1f8fb7 acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x9f382be0 netlink_set_err -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f5b8fc7 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x9f5c30dc blk_put_request -EXPORT_SYMBOL vmlinux 0x9f7af1d1 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x9f7ed191 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fabb277 __block_write_begin -EXPORT_SYMBOL vmlinux 0x9fd447bb tc_classify -EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x9fde187c neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fdfbb49 simple_dname -EXPORT_SYMBOL vmlinux 0x9ff1064b shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0x9ffaf26c dump_skip -EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa00f9b9f inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xa0111164 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xa01984e1 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xa021bf8a generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xa03ef909 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xa04258d9 may_umount_tree -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa0618f4d simple_readpage -EXPORT_SYMBOL vmlinux 0xa06ff399 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa08c5c26 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xa08cba2d vm_mmap -EXPORT_SYMBOL vmlinux 0xa0a36939 udp_disconnect -EXPORT_SYMBOL vmlinux 0xa0acbc9a key_type_keyring -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0c5a60d build_skb -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0df7806 __genl_register_family -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa1192a03 lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0xa12014a3 dmam_pool_create -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa13d79e6 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa14798f0 eth_mac_addr -EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts -EXPORT_SYMBOL vmlinux 0xa15c0524 fb_validate_mode -EXPORT_SYMBOL vmlinux 0xa15ed567 user_revoke -EXPORT_SYMBOL vmlinux 0xa166cc1c kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xa1742ebe iget_locked -EXPORT_SYMBOL vmlinux 0xa1771fe5 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0xa189b456 pci_iounmap -EXPORT_SYMBOL vmlinux 0xa1966ea9 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xa19b5640 tty_check_change -EXPORT_SYMBOL vmlinux 0xa1a8a72b pci_iomap -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1d9aba0 register_cdrom -EXPORT_SYMBOL vmlinux 0xa1dc3c45 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1df1efd read_cache_pages -EXPORT_SYMBOL vmlinux 0xa1f83838 generic_block_bmap -EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa214cf1d __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xa21f0294 nd_iostat_end -EXPORT_SYMBOL vmlinux 0xa24295b4 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xa24c2a0b nf_register_hook -EXPORT_SYMBOL vmlinux 0xa25d702d hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xa27c2b43 xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa2890cce dquot_disable -EXPORT_SYMBOL vmlinux 0xa289bb7f should_remove_suid -EXPORT_SYMBOL vmlinux 0xa28b09d7 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0xa291ac62 dquot_destroy -EXPORT_SYMBOL vmlinux 0xa29317be __mutex_init -EXPORT_SYMBOL vmlinux 0xa29a31c2 compat_mc_getsockopt -EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0xa2b28b6e eth_header_cache -EXPORT_SYMBOL vmlinux 0xa2bcbab0 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xa2cb6c17 netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xa2deac77 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0xa31b81a4 udp_proc_unregister -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa3386f49 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xa3410386 md_cluster_mod -EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node -EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc -EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get -EXPORT_SYMBOL vmlinux 0xa3ad9bd7 dev_printk_emit -EXPORT_SYMBOL vmlinux 0xa3c29c1d free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xa3c72e28 audit_log_start -EXPORT_SYMBOL vmlinux 0xa3c7757a __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xa3cd0b8f inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xa3d39c67 devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0xa3d82bd2 md_finish_reshape -EXPORT_SYMBOL vmlinux 0xa3f1967d tty_lock -EXPORT_SYMBOL vmlinux 0xa3f7008a md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xa3f9ca45 key_task_permission -EXPORT_SYMBOL vmlinux 0xa4030ea4 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0xa418ad4a dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0xa41fa84a input_set_keycode -EXPORT_SYMBOL vmlinux 0xa44fa1f2 blk_requeue_request -EXPORT_SYMBOL vmlinux 0xa4511467 crc16 -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa48b7996 fb_class -EXPORT_SYMBOL vmlinux 0xa4a2e6cf scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xa4a9ebfa __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4cbc531 set_device_ro -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4d8e527 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xa4e67dc4 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xa4eca6a8 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xa50a80c2 boot_cpu_data -EXPORT_SYMBOL vmlinux 0xa50c8833 unregister_shrinker -EXPORT_SYMBOL vmlinux 0xa512747b sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xa5272dd7 abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa5677e11 nd_pfn_validate -EXPORT_SYMBOL vmlinux 0xa56b2299 __sb_start_write -EXPORT_SYMBOL vmlinux 0xa581e5f3 seq_dentry -EXPORT_SYMBOL vmlinux 0xa58a21a8 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0xa592269b dev_remove_pack -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le -EXPORT_SYMBOL vmlinux 0xa5abb424 lease_get_mtime -EXPORT_SYMBOL vmlinux 0xa5da88a0 pci_scan_slot -EXPORT_SYMBOL vmlinux 0xa6229cd9 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember -EXPORT_SYMBOL vmlinux 0xa66f8297 blk_get_request -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6a2e61d posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up -EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error -EXPORT_SYMBOL vmlinux 0xa6dc822d acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0xa6e07110 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi -EXPORT_SYMBOL vmlinux 0xa70fc40b skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes -EXPORT_SYMBOL vmlinux 0xa72c87ba ip6_frag_init -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa73a9328 scsi_register -EXPORT_SYMBOL vmlinux 0xa74bcd62 rdmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock -EXPORT_SYMBOL vmlinux 0xa790a14f pcie_get_mps -EXPORT_SYMBOL vmlinux 0xa7acb27c input_set_capability -EXPORT_SYMBOL vmlinux 0xa7bbf2fb vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xa7bd087b find_inode_nowait -EXPORT_SYMBOL vmlinux 0xa7c0abab vga_switcheroo_register_audio_client -EXPORT_SYMBOL vmlinux 0xa7cafd05 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xa7d284a2 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xa807089d kern_path -EXPORT_SYMBOL vmlinux 0xa813022f tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0xa83c95d9 tty_port_close -EXPORT_SYMBOL vmlinux 0xa840d21f scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0xa841233c sk_common_release -EXPORT_SYMBOL vmlinux 0xa8418eaf do_splice_direct -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa848e3e9 write_cache_pages -EXPORT_SYMBOL vmlinux 0xa850d3cf tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xa857322f agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0xa8589778 mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0xa86a04e5 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa8aeea3d swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0xa8e5e561 ihold -EXPORT_SYMBOL vmlinux 0xa8e8115c mount_subtree -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa90bbcea i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0xa90ca647 textsearch_register -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa920e10b sock_init_data -EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xa9245ce9 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xa933cb09 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0xa94d6bee mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xa9629de9 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa979c190 fifo_set_limit -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0xa9aa01bc genphy_aneg_done -EXPORT_SYMBOL vmlinux 0xa9b3233f ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0xa9bd2676 __vmalloc -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9d97086 serio_reconnect -EXPORT_SYMBOL vmlinux 0xa9dae634 genphy_config_init -EXPORT_SYMBOL vmlinux 0xa9f6469c __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xaa01d855 cancel_dirty_page -EXPORT_SYMBOL vmlinux 0xaa2a4d00 agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0xaa308834 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0xaa31e8af clocksource_unregister -EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0xaa63bae8 serio_rescan -EXPORT_SYMBOL vmlinux 0xaa64f8c5 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xaa652558 tcf_hash_search -EXPORT_SYMBOL vmlinux 0xaa6bcecf scsi_target_resume -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa84859a pci_disable_msix -EXPORT_SYMBOL vmlinux 0xaa99acc0 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad17c7d clk_add_alias -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaae39509 ppp_input_error -EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaf41a26 __pagevec_release -EXPORT_SYMBOL vmlinux 0xaafc876f swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab080686 vga_switcheroo_client_fb_set -EXPORT_SYMBOL vmlinux 0xab0c14a7 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xab22c50b xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xab25f0d6 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xab2e2fe9 __break_lease -EXPORT_SYMBOL vmlinux 0xab2e51a0 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab627679 icmpv6_send -EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab79f800 vm_insert_mixed -EXPORT_SYMBOL vmlinux 0xab85e720 __netif_schedule -EXPORT_SYMBOL vmlinux 0xab86dc55 __secpath_destroy -EXPORT_SYMBOL vmlinux 0xab985562 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0xaba3159c gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xabc92f95 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabd9c4c3 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xabf8da3c remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xabfd966d ping_prot -EXPORT_SYMBOL vmlinux 0xac0030a5 bitmap_close_sync -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac323461 vm_insert_pfn -EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear -EXPORT_SYMBOL vmlinux 0xac5fc33a blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xac740cf9 posix_unblock_lock -EXPORT_SYMBOL vmlinux 0xac7ee171 nf_ct_attach -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb708eb netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy -EXPORT_SYMBOL vmlinux 0xacc76868 on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xaccc57d2 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacda494e send_sig_info -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xad1ac8f8 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xad38bd0d skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xad39422c mmc_alloc_host -EXPORT_SYMBOL vmlinux 0xad4b7b17 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0xad698f77 dqstats -EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad8b85a4 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xad918e08 ether_setup -EXPORT_SYMBOL vmlinux 0xad976c1c nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0xadadd29d mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0xadc27c91 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0xadd52a20 param_ops_bool -EXPORT_SYMBOL vmlinux 0xaddb6931 kernel_getsockname -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list -EXPORT_SYMBOL vmlinux 0xae069584 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xae06ea01 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xae144f54 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xae200f2a tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xae25abef lro_receive_skb -EXPORT_SYMBOL vmlinux 0xae293ac9 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xae295779 clkdev_alloc -EXPORT_SYMBOL vmlinux 0xae300cdf agp_unbind_memory -EXPORT_SYMBOL vmlinux 0xae589173 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0xae84bd6b alloc_pages_current -EXPORT_SYMBOL vmlinux 0xae930e3d alloc_disk_node -EXPORT_SYMBOL vmlinux 0xae9375cc vfs_setpos -EXPORT_SYMBOL vmlinux 0xae99d64f blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xaefb3773 fb_set_cmap -EXPORT_SYMBOL vmlinux 0xaeff1334 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0xaf103c74 nf_log_set -EXPORT_SYMBOL vmlinux 0xaf32dd6a scsi_is_host_device -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf3e60d2 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids -EXPORT_SYMBOL vmlinux 0xaf633a8f simple_release_fs -EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup -EXPORT_SYMBOL vmlinux 0xaf6ed155 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0xaf8c161f genl_unregister_family -EXPORT_SYMBOL vmlinux 0xaf9c4e22 ns_capable -EXPORT_SYMBOL vmlinux 0xafb79938 dput -EXPORT_SYMBOL vmlinux 0xafb805dd blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0xafb87e14 follow_down_one -EXPORT_SYMBOL vmlinux 0xafb8c6ff copy_user_generic_string -EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported -EXPORT_SYMBOL vmlinux 0xafe3b20c cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xaff77c8b vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xb00ffa6e key_put -EXPORT_SYMBOL vmlinux 0xb01703a6 elv_rb_find -EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries -EXPORT_SYMBOL vmlinux 0xb02bd591 _raw_read_unlock_irq -EXPORT_SYMBOL vmlinux 0xb0571e1d max8925_reg_read -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb072c70d tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xb08b6f15 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0xb09efcc1 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0baac54 d_drop -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e27db7 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0xb0e602eb memmove -EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0xb10820e4 _raw_read_unlock -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb129a780 pcim_iounmap -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb152d87d cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xb153ea71 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xb157fca3 pci_find_bus -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb1615145 block_truncate_page -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init -EXPORT_SYMBOL vmlinux 0xb1ae2400 mmc_request_done -EXPORT_SYMBOL vmlinux 0xb1b294fb pcim_pin_device -EXPORT_SYMBOL vmlinux 0xb1bc8b66 generic_make_request -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu -EXPORT_SYMBOL vmlinux 0xb1d50968 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0xb1f07cd3 pci_map_biosrom -EXPORT_SYMBOL vmlinux 0xb20d5911 bdev_stack_limits -EXPORT_SYMBOL vmlinux 0xb20ecf88 acpi_run_osc -EXPORT_SYMBOL vmlinux 0xb21875d8 rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu -EXPORT_SYMBOL vmlinux 0xb258313e generic_file_fsync -EXPORT_SYMBOL vmlinux 0xb25bd746 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb26cae12 led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0xb272651f phy_attach_direct -EXPORT_SYMBOL vmlinux 0xb2845ce3 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xb2857521 forget_cached_acl -EXPORT_SYMBOL vmlinux 0xb2a55c02 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0xb2ae2afa jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xb2b67565 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0xb2bb0089 sk_mc_loop -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2d290cd kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xb2d5a552 complete -EXPORT_SYMBOL vmlinux 0xb2d805d5 agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0xb2e18e49 kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove -EXPORT_SYMBOL vmlinux 0xb2faa181 tty_vhangup -EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 -EXPORT_SYMBOL vmlinux 0xb304d4c6 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xb32b5cba nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0xb32b7a6f filp_close -EXPORT_SYMBOL vmlinux 0xb32d025b dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0xb3306f20 disk_stack_limits -EXPORT_SYMBOL vmlinux 0xb33ffd1c mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xb34f6a7d make_bad_inode -EXPORT_SYMBOL vmlinux 0xb3501133 unregister_nls -EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit -EXPORT_SYMBOL vmlinux 0xb3575c08 pci_match_id -EXPORT_SYMBOL vmlinux 0xb36fe7c9 amd_iommu_device_info -EXPORT_SYMBOL vmlinux 0xb37bb97c __free_pages -EXPORT_SYMBOL vmlinux 0xb37d4070 tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0xb39d9425 scm_fp_dup -EXPORT_SYMBOL vmlinux 0xb3c74cfe __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb40fc2fe scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xb41d4c64 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb42952a9 vme_lm_request -EXPORT_SYMBOL vmlinux 0xb42f0d09 vga_switcheroo_fini_domain_pm_ops -EXPORT_SYMBOL vmlinux 0xb4320305 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0xb43376a3 agp_backend_release -EXPORT_SYMBOL vmlinux 0xb44995d1 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb4710cf3 serio_open -EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class -EXPORT_SYMBOL vmlinux 0xb4b63481 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xb4d9e9ec alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xb4f9a86c splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range -EXPORT_SYMBOL vmlinux 0xb5469d2c bio_integrity_endio -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb58f7464 dquot_commit_info -EXPORT_SYMBOL vmlinux 0xb59bd80c dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free -EXPORT_SYMBOL vmlinux 0xb5d288d1 tty_set_operations -EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xb5e8d1be inet_stream_ops -EXPORT_SYMBOL vmlinux 0xb610eef1 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb62b54b9 iov_iter_npages -EXPORT_SYMBOL vmlinux 0xb661b877 __devm_release_region -EXPORT_SYMBOL vmlinux 0xb666cb5d kernel_bind -EXPORT_SYMBOL vmlinux 0xb6744824 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu -EXPORT_SYMBOL vmlinux 0xb67542a9 mpage_writepages -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69ff3a9 seq_open -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6a89d29 pneigh_lookup -EXPORT_SYMBOL vmlinux 0xb6b51310 inet_add_offload -EXPORT_SYMBOL vmlinux 0xb7069e69 sk_ns_capable -EXPORT_SYMBOL vmlinux 0xb7391cdc mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb75183d8 dentry_path_raw -EXPORT_SYMBOL vmlinux 0xb756f699 elevator_exit -EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb7866bc8 pci_iomap_range -EXPORT_SYMBOL vmlinux 0xb79511da mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xb79cedcd udp_seq_open -EXPORT_SYMBOL vmlinux 0xb79ee9d8 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xb7abe8e8 ht_create_irq -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d5d8c9 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xb8131099 param_set_invbool -EXPORT_SYMBOL vmlinux 0xb8140c80 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xb8447617 send_sig -EXPORT_SYMBOL vmlinux 0xb85f3e85 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb8951cab sk_free -EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add -EXPORT_SYMBOL vmlinux 0xb8cb08db bioset_create -EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 -EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb92ababc devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xb93969d9 copy_to_iter -EXPORT_SYMBOL vmlinux 0xb94008c7 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xb940bd5d dev_mc_sync -EXPORT_SYMBOL vmlinux 0xb971cef8 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xb998f48f fd_install -EXPORT_SYMBOL vmlinux 0xb9b2bc59 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xb9e8038f fsnotify_put_group -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9f91875 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read -EXPORT_SYMBOL vmlinux 0xba38201c devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba517659 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xba51eae3 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xba541581 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xba5bf09e ip_do_fragment -EXPORT_SYMBOL vmlinux 0xba6562d6 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xbaa3bacb bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xbaaa5a93 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0xbae4d93d generic_getxattr -EXPORT_SYMBOL vmlinux 0xbae4f2ae vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xbaeb8911 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xbaf42c61 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xbafb4272 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb204c30 tcp_shutdown -EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb412aa0 __scm_destroy -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb6c827e lru_cache_add_file -EXPORT_SYMBOL vmlinux 0xbb7091cc tcp_read_sock -EXPORT_SYMBOL vmlinux 0xbb738586 vfs_symlink -EXPORT_SYMBOL vmlinux 0xbb7df761 force_sig -EXPORT_SYMBOL vmlinux 0xbb81172f elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0xbb865aa7 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbba38fa3 tty_port_close_end -EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xbba7611e dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xbbac8399 set_security_override -EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0xbbb88b3d neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xbbbea25f __ht_create_irq -EXPORT_SYMBOL vmlinux 0xbbd7f64e make_kgid -EXPORT_SYMBOL vmlinux 0xbbe9fa29 kmem_cache_size -EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt -EXPORT_SYMBOL vmlinux 0xbbebba33 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0xbc005fa9 lwtunnel_output -EXPORT_SYMBOL vmlinux 0xbc011349 padata_do_parallel -EXPORT_SYMBOL vmlinux 0xbc084395 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0xbc1df66c i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc3d6ce2 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0xbc691117 do_SAK -EXPORT_SYMBOL vmlinux 0xbc895fd2 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xbca7d1a5 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0xbcabe368 __bforget -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcc70e23 dev_remove_offload -EXPORT_SYMBOL vmlinux 0xbcc9e2fd tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xbceba2b0 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd573d7b param_ops_int -EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbda95657 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xbdbcea14 dma_sync_wait -EXPORT_SYMBOL vmlinux 0xbdf19d52 scsi_scan_target -EXPORT_SYMBOL vmlinux 0xbdf857c3 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ -EXPORT_SYMBOL vmlinux 0xbe05057f remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe50af3a tcp_prequeue -EXPORT_SYMBOL vmlinux 0xbe6558a1 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xbe6cf717 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xbe815049 phy_find_first -EXPORT_SYMBOL vmlinux 0xbea3e7ae tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xbebb9f60 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xbebcf3df textsearch_prepare -EXPORT_SYMBOL vmlinux 0xbebd95fb create_empty_buffers -EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu -EXPORT_SYMBOL vmlinux 0xbeef1bdd inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xbef1aa38 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf31923b pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0xbf557e5c inode_dio_wait -EXPORT_SYMBOL vmlinux 0xbf7c1970 amd_iommu_domain_set_gcr3 -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfba1180 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfe6f427 _raw_spin_unlock_irq -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff6a23d inet_sendmsg -EXPORT_SYMBOL vmlinux 0xc02b67d0 d_alloc -EXPORT_SYMBOL vmlinux 0xc039c921 compat_tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xc04e471d pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0xc0589078 from_kuid_munged -EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc0782359 __mdiobus_register -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0ada730 tcf_hash_check -EXPORT_SYMBOL vmlinux 0xc0b11e58 vme_bus_num -EXPORT_SYMBOL vmlinux 0xc0b2afdc twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xc0cd3b13 ___ratelimit -EXPORT_SYMBOL vmlinux 0xc0d0b691 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xc0d5e640 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0xc0d72889 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xc0d8f50a devm_memremap -EXPORT_SYMBOL vmlinux 0xc1216c81 rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0xc1397f95 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xc148e7a2 max8998_update_reg -EXPORT_SYMBOL vmlinux 0xc15446ed inet_recvmsg -EXPORT_SYMBOL vmlinux 0xc157e143 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit -EXPORT_SYMBOL vmlinux 0xc16e34f7 netdev_info -EXPORT_SYMBOL vmlinux 0xc1adb6c8 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xc1ae0a3d security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xc1bea9cc mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0xc1d5bf31 page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1ff9e50 set_pages_uc -EXPORT_SYMBOL vmlinux 0xc2002b1f param_get_int -EXPORT_SYMBOL vmlinux 0xc2133bb2 clkdev_drop -EXPORT_SYMBOL vmlinux 0xc214cf29 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0xc2170b36 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0xc228c1ab fddi_type_trans -EXPORT_SYMBOL vmlinux 0xc23949dd __neigh_event_send -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc253110d find_lock_entry -EXPORT_SYMBOL vmlinux 0xc25c5473 param_set_bint -EXPORT_SYMBOL vmlinux 0xc26f7fa0 inode_init_owner -EXPORT_SYMBOL vmlinux 0xc29524e4 page_put_link -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc29cf84e invalidate_bdev -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2ac4277 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xc2c33984 __register_binfmt -EXPORT_SYMBOL vmlinux 0xc2c814df kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xc2d7c6de netif_rx_ni -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2ff1155 nvm_submit_io -EXPORT_SYMBOL vmlinux 0xc301a80b dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc33f1f2b netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xc33f50e1 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0xc35024de xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xc350b4eb wrmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xc3557361 invalidate_partition -EXPORT_SYMBOL vmlinux 0xc3780573 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xc37cb910 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 -EXPORT_SYMBOL vmlinux 0xc3aea222 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xc3b2fc28 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xc3c05fd5 sk_dst_check -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3c5b1ee cap_mmap_file -EXPORT_SYMBOL vmlinux 0xc3f54fc7 path_get -EXPORT_SYMBOL vmlinux 0xc41643bf __sk_dst_check -EXPORT_SYMBOL vmlinux 0xc4194970 tcf_hash_create -EXPORT_SYMBOL vmlinux 0xc419c5d5 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xc41fbde8 dev_activate -EXPORT_SYMBOL vmlinux 0xc436b69a ps2_drain -EXPORT_SYMBOL vmlinux 0xc4631593 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xc46c198c sg_miter_skip -EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress -EXPORT_SYMBOL vmlinux 0xc483d659 block_read_full_page -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc4ceb897 compat_ip_getsockopt -EXPORT_SYMBOL vmlinux 0xc4dac6d3 ipv4_specific -EXPORT_SYMBOL vmlinux 0xc4e5c58a dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0xc4f331c6 cpu_online_mask -EXPORT_SYMBOL vmlinux 0xc4fc286e phy_device_remove -EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid -EXPORT_SYMBOL vmlinux 0xc533afd1 skb_find_text -EXPORT_SYMBOL vmlinux 0xc54a07c1 proc_create_data -EXPORT_SYMBOL vmlinux 0xc54c4138 i2c_del_driver -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc558530d profile_pc -EXPORT_SYMBOL vmlinux 0xc58ce01c flow_cache_init -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5c5513d nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc659885c vme_dma_request -EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc67591d1 vga_con -EXPORT_SYMBOL vmlinux 0xc676905f netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xc681089b scsi_device_resume -EXPORT_SYMBOL vmlinux 0xc6a4e62e copy_from_iter -EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xc6b6832b nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0xc6c933d9 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6e2de04 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xc7089f49 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xc7205a1c keyring_clear -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xc7717b1d acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xc77822e7 fb_set_var -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc798a5cf xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0xc79bb4cb gen_pool_alloc -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7b2391c sget_userns -EXPORT_SYMBOL vmlinux 0xc7dd3675 clk_register_clkdevs -EXPORT_SYMBOL vmlinux 0xc7e8c554 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xc7ef44ba dev_uc_add -EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xc7ff410e input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0xc7ffcf5a input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xc80b306c dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xc82666e9 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0xc8370c45 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xc83b0bac from_kprojid -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xc84604d2 mdiobus_scan -EXPORT_SYMBOL vmlinux 0xc84697cd security_inode_readlink -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc89f701f xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8c30646 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xc8d95fdd kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xc8f62448 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc9255160 nvm_erase_blk -EXPORT_SYMBOL vmlinux 0xc9414cbd sock_kfree_s -EXPORT_SYMBOL vmlinux 0xc95eade7 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96c635d neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xc973860e put_page -EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run -EXPORT_SYMBOL vmlinux 0xc97bb7ea km_new_mapping -EXPORT_SYMBOL vmlinux 0xc9840eae tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock -EXPORT_SYMBOL vmlinux 0xc9a20fbe kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xc9be5ec4 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xc9c373a9 rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0xc9c41fcc ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xc9d600e4 unregister_quota_format -EXPORT_SYMBOL vmlinux 0xc9f2c7bc pnp_possible_config -EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca318d21 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xca410632 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0xca4a7954 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent -EXPORT_SYMBOL vmlinux 0xca650459 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xca653c71 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xca72e82b d_delete -EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order -EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca98ba83 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xcaa5c374 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0xcaaae4b1 dquot_drop -EXPORT_SYMBOL vmlinux 0xcac3a500 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xcad61f31 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb048ff9 generic_removexattr -EXPORT_SYMBOL vmlinux 0xcb095489 dev_set_group -EXPORT_SYMBOL vmlinux 0xcb17bbd0 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xcb4e7560 mmc_get_card -EXPORT_SYMBOL vmlinux 0xcb507f42 eth_header -EXPORT_SYMBOL vmlinux 0xcb5dc427 skb_queue_tail -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb88f1d2 simple_rename -EXPORT_SYMBOL vmlinux 0xcb903326 pnp_get_resource -EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister -EXPORT_SYMBOL vmlinux 0xcbb07ed2 textsearch_destroy -EXPORT_SYMBOL vmlinux 0xcbbbde85 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0xcbbd430e tcp_init_sock -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbf3d074 default_llseek -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl -EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute -EXPORT_SYMBOL vmlinux 0xcc8e1ea2 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xcc9aa2a6 register_sysctl -EXPORT_SYMBOL vmlinux 0xccaf7988 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0xccafb0e9 uart_register_driver -EXPORT_SYMBOL vmlinux 0xccb937cd padata_free -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccd9199c sk_stop_timer -EXPORT_SYMBOL vmlinux 0xccda4517 kern_unmount -EXPORT_SYMBOL vmlinux 0xccede4b8 agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0xcd09b309 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd3d0a05 vfs_whiteout -EXPORT_SYMBOL vmlinux 0xcd3edd79 phy_register_fixup -EXPORT_SYMBOL vmlinux 0xcd4dac29 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xcd4e6369 kernel_getpeername -EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xcd6be423 tcp_connect -EXPORT_SYMBOL vmlinux 0xcdc0cc90 sync_inode -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdca82f8 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0xcdd10410 km_report -EXPORT_SYMBOL vmlinux 0xcdfed4ba ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xce319131 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift -EXPORT_SYMBOL vmlinux 0xce81338a insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xcea4ac74 __dquot_transfer -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free -EXPORT_SYMBOL vmlinux 0xceb91921 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0xced78f26 dst_alloc -EXPORT_SYMBOL vmlinux 0xced89fc2 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0xceea7bbe netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xceeba650 phy_resume -EXPORT_SYMBOL vmlinux 0xceefc3d4 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcefd1cf1 eth_type_trans -EXPORT_SYMBOL vmlinux 0xcf35cda5 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0xcf3f28e0 napi_consume_skb -EXPORT_SYMBOL vmlinux 0xcf4d5ae8 seq_putc -EXPORT_SYMBOL vmlinux 0xcf503518 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0xcf65abeb dev_uc_flush -EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free -EXPORT_SYMBOL vmlinux 0xcf75224b no_llseek -EXPORT_SYMBOL vmlinux 0xcf952573 check_disk_size_change -EXPORT_SYMBOL vmlinux 0xcf980c16 d_splice_alias -EXPORT_SYMBOL vmlinux 0xcfa0555d tty_hangup -EXPORT_SYMBOL vmlinux 0xcfb4a296 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xcfbc582f tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0xcfc975ac d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0xcfe8d12a pci_release_region -EXPORT_SYMBOL vmlinux 0xd02058f1 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xd031b92c down_write_trylock -EXPORT_SYMBOL vmlinux 0xd0594c3f mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0xd064f1c1 simple_fill_super -EXPORT_SYMBOL vmlinux 0xd068f91d pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0xd070f806 vc_resize -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd08b3c8a seq_release -EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a8a833 dev_trans_start -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0b34198 mmc_put_card -EXPORT_SYMBOL vmlinux 0xd0c7b2ad sock_update_memcg -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fadbdd submit_bh -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd0fccad3 pci_find_capability -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd1096556 __serio_register_port -EXPORT_SYMBOL vmlinux 0xd10cf7ad inet_sendpage -EXPORT_SYMBOL vmlinux 0xd120e1bb agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0xd121e3d3 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xd125b3d0 revalidate_disk -EXPORT_SYMBOL vmlinux 0xd12bb300 lwtunnel_input -EXPORT_SYMBOL vmlinux 0xd132f6b0 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xd139a2b6 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xd14a217b soft_cursor -EXPORT_SYMBOL vmlinux 0xd14f6f2c fsnotify_get_group -EXPORT_SYMBOL vmlinux 0xd1616ece inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info -EXPORT_SYMBOL vmlinux 0xd16f27d9 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xd1784f02 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd188222e inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xd19571ba scsicam_bios_param -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1e49ac1 misc_register -EXPORT_SYMBOL vmlinux 0xd1f684b2 param_set_bool -EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings -EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace -EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd25d1e05 qdisc_list_add -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd27f91f2 release_pages -EXPORT_SYMBOL vmlinux 0xd2824b11 dquot_quota_off -EXPORT_SYMBOL vmlinux 0xd288abdd page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc -EXPORT_SYMBOL vmlinux 0xd2c6a8ab tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xd2ca508a phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e8d614 blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0xd341a04e iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0xd34a6d48 udp_del_offload -EXPORT_SYMBOL vmlinux 0xd34d4bf0 md_update_sb -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd3719d59 paravirt_ticketlocks_enabled -EXPORT_SYMBOL vmlinux 0xd388eebc pci_biosrom_size -EXPORT_SYMBOL vmlinux 0xd38b08f9 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xd3a564c4 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xd3ad7f6b pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xd3b409a5 dcache_dir_close -EXPORT_SYMBOL vmlinux 0xd3bac163 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3c950a7 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0xd3d3306e param_set_short -EXPORT_SYMBOL vmlinux 0xd3d9a495 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xd3dafc6d iterate_mounts -EXPORT_SYMBOL vmlinux 0xd3de957c security_inode_init_security -EXPORT_SYMBOL vmlinux 0xd3e0e2fd pci_get_subsys -EXPORT_SYMBOL vmlinux 0xd3e15593 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0xd4153551 do_splice_to -EXPORT_SYMBOL vmlinux 0xd424022c sk_wait_data -EXPORT_SYMBOL vmlinux 0xd44a2e55 vfs_write -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd4732a29 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xd47e1c7a balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd49afcb9 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xd4b1cf1c vme_irq_request -EXPORT_SYMBOL vmlinux 0xd4e68a68 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xd4f67747 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xd5062683 __dquot_free_space -EXPORT_SYMBOL vmlinux 0xd5082483 md_write_end -EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data -EXPORT_SYMBOL vmlinux 0xd52c9c19 down_write -EXPORT_SYMBOL vmlinux 0xd532686c nvm_end_io -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd56009ab simple_statfs -EXPORT_SYMBOL vmlinux 0xd573e97b param_get_ulong -EXPORT_SYMBOL vmlinux 0xd57b1941 ps2_end_command -EXPORT_SYMBOL vmlinux 0xd58b2c12 serio_bus -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd5a6862c pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xd5a95500 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0xd5c580f5 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0xd5de608f scsi_print_command -EXPORT_SYMBOL vmlinux 0xd5f285c5 passthru_features_check -EXPORT_SYMBOL vmlinux 0xd610f582 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xd611c459 register_key_type -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd62c851b blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0xd6391a1b phy_device_free -EXPORT_SYMBOL vmlinux 0xd6453fd9 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd654c465 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xd679092c blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0xd67d679a amd_iommu_domain_enable_v2 -EXPORT_SYMBOL vmlinux 0xd686e62c skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock -EXPORT_SYMBOL vmlinux 0xd68f2f76 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace -EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6bd80cb __blk_end_request_all -EXPORT_SYMBOL vmlinux 0xd6c4f9df complete_request_key -EXPORT_SYMBOL vmlinux 0xd6dade40 search_binary_handler -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd72bc1ee dev_crit -EXPORT_SYMBOL vmlinux 0xd730959d seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xd7452919 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd7630fdc generic_read_dir -EXPORT_SYMBOL vmlinux 0xd7795b63 nf_register_hooks -EXPORT_SYMBOL vmlinux 0xd7852b32 netdev_err -EXPORT_SYMBOL vmlinux 0xd78ffb61 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xd7937440 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7e8e347 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f5403c make_kprojid -EXPORT_SYMBOL vmlinux 0xd7fe7725 pci_set_power_state -EXPORT_SYMBOL vmlinux 0xd800ec9e try_module_get -EXPORT_SYMBOL vmlinux 0xd8229943 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xd8733841 current_task -EXPORT_SYMBOL vmlinux 0xd875d094 fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0xd87a1f68 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xd8833185 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xd89546be mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8bddfd4 release_sock -EXPORT_SYMBOL vmlinux 0xd8bfe55a tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd9025be5 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0xd926a0f1 md_done_sync -EXPORT_SYMBOL vmlinux 0xd92b3531 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xd92e2dca tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xd92e5f34 free_task -EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference -EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected -EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu -EXPORT_SYMBOL vmlinux 0xd97273e2 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0xd9779f48 mmc_fixup_device -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98b5901 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xd98c1ce0 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xd98efbba default_file_splice_read -EXPORT_SYMBOL vmlinux 0xd99bd383 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xd99cbe0f udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xd9a7cc00 param_ops_uint -EXPORT_SYMBOL vmlinux 0xd9c67fa9 cpu_info -EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9f9c71b jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda463c2f dentry_open -EXPORT_SYMBOL vmlinux 0xda48c4e7 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xda5e2aee put_tty_driver -EXPORT_SYMBOL vmlinux 0xda5fb76e tso_build_data -EXPORT_SYMBOL vmlinux 0xda623858 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xdaa960d8 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xdaa9e417 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xdab9899a vlan_vid_add -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdae80100 _raw_spin_unlock -EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell -EXPORT_SYMBOL vmlinux 0xdaeae071 tcp_prot -EXPORT_SYMBOL vmlinux 0xdafafba5 bdgrab -EXPORT_SYMBOL vmlinux 0xdb096a89 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xdb0daaa9 padata_do_serial -EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg -EXPORT_SYMBOL vmlinux 0xdb30855e processors -EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0xdb40fd85 devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0xdb55c9dc seq_printf -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb77d4aa ppp_input -EXPORT_SYMBOL vmlinux 0xdb88632e md_flush_request -EXPORT_SYMBOL vmlinux 0xdb8e244e pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0xdb97ff74 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xdb9a97b5 abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xdbadd693 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xdbe87bec vga_tryget -EXPORT_SYMBOL vmlinux 0xdbf0fcbd phy_start -EXPORT_SYMBOL vmlinux 0xdbf94215 simple_transaction_release -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc05ae23 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xdc098749 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc300482 phy_init_hw -EXPORT_SYMBOL vmlinux 0xdc3850c5 dquot_scan_active -EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc4ef1ad __vfs_write -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler -EXPORT_SYMBOL vmlinux 0xdc5f5da8 lockref_put_return -EXPORT_SYMBOL vmlinux 0xdc66bf49 devm_memremap_pages -EXPORT_SYMBOL vmlinux 0xdc725167 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xdc993a57 inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0xdc9faf5b tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0xdca9f9a1 cdrom_release -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcc41536 vfs_readf -EXPORT_SYMBOL vmlinux 0xdcd726d2 block_write_begin -EXPORT_SYMBOL vmlinux 0xdcf2c836 dquot_get_state -EXPORT_SYMBOL vmlinux 0xdd1ff01f nlmsg_notify -EXPORT_SYMBOL vmlinux 0xdd251d54 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xdd487594 netif_device_attach -EXPORT_SYMBOL vmlinux 0xdd58af2f inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd8b70c3 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xdd9e9b29 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0xddb583f6 gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0xddc70f84 phy_start_interrupts -EXPORT_SYMBOL vmlinux 0xddd6046c ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xddd95405 security_path_unlink -EXPORT_SYMBOL vmlinux 0xddfa94fa mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xddfad67a padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xde16dc16 tboot -EXPORT_SYMBOL vmlinux 0xde1fb851 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xde2e1782 mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0xde39b75c pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xde3e2062 swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0xde48ca25 register_xen_selfballooning -EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0xde6e407b tcp_conn_request -EXPORT_SYMBOL vmlinux 0xde7edd66 dquot_resume -EXPORT_SYMBOL vmlinux 0xde8941cf mmc_can_erase -EXPORT_SYMBOL vmlinux 0xde8be0c4 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde93bae6 led_set_brightness -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xdea79b24 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xdeb8721f ps2_init -EXPORT_SYMBOL vmlinux 0xdecee666 blk_queue_bounce -EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0xdeff6731 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xdf0a8f1c alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices -EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdf1427e5 idr_remove -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf38770f generic_write_checks -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf5c4600 scm_detach_fds -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init -EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0xdfd750c6 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xe04e7a8f pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe05d19d1 arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0xe05fbeb4 vme_master_request -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe0a89853 mutex_unlock -EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0c33339 neigh_table_init -EXPORT_SYMBOL vmlinux 0xe0dbab3e fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0xe0f0ff32 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xe0fa438f generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe1144ebb padata_alloc_possible -EXPORT_SYMBOL vmlinux 0xe12e031d blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe188da32 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0xe18d9c22 mark_info_dirty -EXPORT_SYMBOL vmlinux 0xe1a470f9 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xe1ba6ea1 netpoll_setup -EXPORT_SYMBOL vmlinux 0xe1cb8815 sock_create -EXPORT_SYMBOL vmlinux 0xe1f0ba89 ll_rw_block -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0xe2056ed6 skb_dequeue -EXPORT_SYMBOL vmlinux 0xe21c9673 find_get_pages_tag -EXPORT_SYMBOL vmlinux 0xe21ccc91 compat_ip_setsockopt -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe23b358c posix_lock_file -EXPORT_SYMBOL vmlinux 0xe23d6113 tty_port_hangup -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe250acfb noop_llseek -EXPORT_SYMBOL vmlinux 0xe2563bd2 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xe26ab71e param_get_bool -EXPORT_SYMBOL vmlinux 0xe286eb09 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xe291682c mount_nodev -EXPORT_SYMBOL vmlinux 0xe2947ae4 dump_truncate -EXPORT_SYMBOL vmlinux 0xe2955ecc set_pages_x -EXPORT_SYMBOL vmlinux 0xe2956bdd d_genocide -EXPORT_SYMBOL vmlinux 0xe29b04e9 acpi_set_firmware_waking_vector64 -EXPORT_SYMBOL vmlinux 0xe29d8792 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe29f4ebd compat_mc_setsockopt -EXPORT_SYMBOL vmlinux 0xe2acf9d3 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0xe317d9e1 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xe3188f58 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set -EXPORT_SYMBOL vmlinux 0xe31af906 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0xe35f0250 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0xe369b9e1 nvm_put_blk -EXPORT_SYMBOL vmlinux 0xe37e60c2 zero_fill_bio -EXPORT_SYMBOL vmlinux 0xe390e947 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0xe3a1a221 con_is_bound -EXPORT_SYMBOL vmlinux 0xe3a53f4c sort -EXPORT_SYMBOL vmlinux 0xe3b089dc nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3c2ebab bio_integrity_free -EXPORT_SYMBOL vmlinux 0xe3d4e466 __frontswap_test -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3f89489 genphy_resume -EXPORT_SYMBOL vmlinux 0xe409b04d update_devfreq -EXPORT_SYMBOL vmlinux 0xe43fc55f simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xe44b7bc7 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0xe45021f1 napi_gro_flush -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe486b797 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xe4908974 blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0xe4c8b44d load_nls -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe4ea6643 blk_fetch_request -EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xe4f6fab1 inode_set_flags -EXPORT_SYMBOL vmlinux 0xe504a4d5 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xe513fcd2 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe528213f register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe -EXPORT_SYMBOL vmlinux 0xe542718e i2c_transfer -EXPORT_SYMBOL vmlinux 0xe54958a8 sock_i_uid -EXPORT_SYMBOL vmlinux 0xe551c728 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0xe5537248 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xe55db7c7 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe5abc509 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5d8b5cd phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5fc498a deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xe607a15f amd_iommu_domain_direct_map -EXPORT_SYMBOL vmlinux 0xe607a87c xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0xe60a536a kernel_connect -EXPORT_SYMBOL vmlinux 0xe60fa5f1 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0xe6135de3 tso_start -EXPORT_SYMBOL vmlinux 0xe6162877 down_killable -EXPORT_SYMBOL vmlinux 0xe622577c pagecache_get_page -EXPORT_SYMBOL vmlinux 0xe6238b3d __register_nls -EXPORT_SYMBOL vmlinux 0xe6374f2e audit_log_task_info -EXPORT_SYMBOL vmlinux 0xe63cb489 netif_skb_features -EXPORT_SYMBOL vmlinux 0xe63ef619 filemap_fdatawait -EXPORT_SYMBOL vmlinux 0xe64b2898 ip_ct_attach -EXPORT_SYMBOL vmlinux 0xe64cc031 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs -EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xe66476dd blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xe68961d3 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe69b7ed1 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xe6a02c6f block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xe6c9935d ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe70f910f param_ops_charp -EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic -EXPORT_SYMBOL vmlinux 0xe73294a1 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xe739654a request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0xe73c0db3 kthread_bind -EXPORT_SYMBOL vmlinux 0xe73c2cf2 abx500_remove_ops -EXPORT_SYMBOL vmlinux 0xe741f203 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0xe746fc19 node_data -EXPORT_SYMBOL vmlinux 0xe7516de3 kernel_write -EXPORT_SYMBOL vmlinux 0xe775a528 fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7a8647f mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xe7cae400 inet_csk_accept -EXPORT_SYMBOL vmlinux 0xe7cc3ed9 lease_modify -EXPORT_SYMBOL vmlinux 0xe7cf4e25 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7d76d50 inet6_ioctl -EXPORT_SYMBOL vmlinux 0xe8004ae6 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe8731918 x86_hyper_xen -EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss -EXPORT_SYMBOL vmlinux 0xe87bfcce mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0xe89e9c3c clkdev_add -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8ae56d5 lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8cd3678 kill_fasync -EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xe8e9457b noop_qdisc -EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 -EXPORT_SYMBOL vmlinux 0xe8eff65f netdev_features_change -EXPORT_SYMBOL vmlinux 0xe8fd8b24 mmc_erase -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe914e52d nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xe915ed42 generic_show_options -EXPORT_SYMBOL vmlinux 0xe921f5bd grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xe936acd1 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0xe961a969 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xe964fd21 pnp_device_attach -EXPORT_SYMBOL vmlinux 0xe9874ab0 proc_symlink -EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu -EXPORT_SYMBOL vmlinux 0xe9acfac4 tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0xe9d78e23 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea38a6e7 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xea39cdb6 arch_dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xea4fd043 sock_no_bind -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xea8722b4 open_check_o_direct -EXPORT_SYMBOL vmlinux 0xea8f2ec5 generic_permission -EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xeaa36fb3 inet_accept -EXPORT_SYMBOL vmlinux 0xeab14af8 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xeab4e1d1 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xeab8d03f ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xeac73847 irq_regs -EXPORT_SYMBOL vmlinux 0xeacfcd47 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0xead9373f phy_suspend -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeaec641f scsi_device_put -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb73f915 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0xeb787f61 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xebbbef08 simple_setattr -EXPORT_SYMBOL vmlinux 0xebc97c77 __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0xebc9f68e commit_creds -EXPORT_SYMBOL vmlinux 0xebd14b52 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0xebd5ea91 setup_arg_pages -EXPORT_SYMBOL vmlinux 0xebff5cf5 fence_signal_locked -EXPORT_SYMBOL vmlinux 0xec015fa4 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0xec08c829 tso_build_hdr -EXPORT_SYMBOL vmlinux 0xec10b9bf iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xec1bb1ce pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xec36b685 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xec3c5211 vc_cons -EXPORT_SYMBOL vmlinux 0xec3ee5c5 inet_del_offload -EXPORT_SYMBOL vmlinux 0xec461803 agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0xec46e591 inet6_offloads -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec633a95 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xec70da31 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xec8dcb9a skb_checksum -EXPORT_SYMBOL vmlinux 0xec91fdf3 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0xec95f26e param_set_byte -EXPORT_SYMBOL vmlinux 0xec9a4848 mntput -EXPORT_SYMBOL vmlinux 0xecaa2fd5 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy -EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xecd6b440 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0xecdf5967 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xece4ac5c netlink_ack -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node -EXPORT_SYMBOL vmlinux 0xed05dd21 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xed175301 pci_dev_driver -EXPORT_SYMBOL vmlinux 0xed2aa625 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0xed337ae9 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0xed4e7c83 remove_proc_entry -EXPORT_SYMBOL vmlinux 0xed542b43 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0xed5608a4 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed795420 arp_create -EXPORT_SYMBOL vmlinux 0xed85ddf8 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xee08efcf mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee33ea6a xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee98ce28 clear_wb_congested -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeb19800 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0xeed5c38c mpage_readpage -EXPORT_SYMBOL vmlinux 0xeedbd9a4 write_inode_now -EXPORT_SYMBOL vmlinux 0xeee43acc sock_efree -EXPORT_SYMBOL vmlinux 0xeeee5ff2 vga_switcheroo_set_dynamic_switch -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xeef427cb lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xef0745d0 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xef188a8e __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0xef203299 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0xef52ff2b i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xef61f542 tso_count_descs -EXPORT_SYMBOL vmlinux 0xef8c9d38 agp_find_bridge -EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefda8d99 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status -EXPORT_SYMBOL vmlinux 0xefe7c850 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0xefea4e5d ppp_unit_number -EXPORT_SYMBOL vmlinux 0xefef5637 rtnl_notify -EXPORT_SYMBOL vmlinux 0xeff77eb2 generic_listxattr -EXPORT_SYMBOL vmlinux 0xeffd14bd filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xeffd8f11 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf00f67a9 load_nls_default -EXPORT_SYMBOL vmlinux 0xf01737d9 uart_get_divisor -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf027d5a4 pci_enable_device -EXPORT_SYMBOL vmlinux 0xf031fa98 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0xf03ec4be flush_old_exec -EXPORT_SYMBOL vmlinux 0xf04d0f86 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xf0581965 skb_pull -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size -EXPORT_SYMBOL vmlinux 0xf0647e3e blk_run_queue_async -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf066140b tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0xf068a863 clear_nlink -EXPORT_SYMBOL vmlinux 0xf07a6efc __skb_tx_hash -EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait -EXPORT_SYMBOL vmlinux 0xf08bc7d9 filemap_flush -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf08e4b1a alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xf09d9e74 max8998_write_reg -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0a59134 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xf0adef22 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xf0bc0693 get_tz_trend -EXPORT_SYMBOL vmlinux 0xf0cc395e ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0xf0d327bd param_ops_long -EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf0ff2144 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0xf1049f80 audit_log -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf10ab58b mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf112227c uart_suspend_port -EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit -EXPORT_SYMBOL vmlinux 0xf116d4b5 copy_in_user -EXPORT_SYMBOL vmlinux 0xf11e453d elv_rb_add -EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1bb158c pci_clear_master -EXPORT_SYMBOL vmlinux 0xf1c1a28b phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xf1cc1177 sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xf1cc7323 generic_setlease -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e7aa40 mmc_can_trim -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xf21f1c96 pv_cpu_ops -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf27c169c phy_driver_register -EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr -EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xf29c7cd6 __serio_register_driver -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0xf2b4416d sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0xf2c0387a nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0xf2c2767c simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2cf714d uart_resume_port -EXPORT_SYMBOL vmlinux 0xf2d2d503 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xf2d6cf7d serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xf2d9e2c7 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xf2f9eb9f qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf3315307 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0xf333cebf blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf3395084 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xf3406d72 set_cached_acl -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf34938ea skb_append -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xf3986b06 acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0xf3a921a6 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0xf3ae01dd inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0xf3be9efa buffer_migrate_page -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3f656fb tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0xf412f9e9 mdiobus_write -EXPORT_SYMBOL vmlinux 0xf413803d jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf4593e04 fget -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf48e8037 sock_wfree -EXPORT_SYMBOL vmlinux 0xf48f3766 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xf492263e sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xf4943b8c fs_bio_set -EXPORT_SYMBOL vmlinux 0xf4a4013a xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit -EXPORT_SYMBOL vmlinux 0xf4aaaceb account_page_redirty -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4c4a6e6 pci_choose_state -EXPORT_SYMBOL vmlinux 0xf4caec85 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0xf4d2f187 agp_backend_acquire -EXPORT_SYMBOL vmlinux 0xf4d66b01 compat_sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xf4e8a098 simple_transaction_get -EXPORT_SYMBOL vmlinux 0xf4ec2c85 i2c_use_client -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask -EXPORT_SYMBOL vmlinux 0xf538ac7d tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf55a9089 inet_offloads -EXPORT_SYMBOL vmlinux 0xf55c4fca simple_unlink -EXPORT_SYMBOL vmlinux 0xf586db42 netdev_emerg -EXPORT_SYMBOL vmlinux 0xf58c3152 PDE_DATA -EXPORT_SYMBOL vmlinux 0xf597feb0 arp_send -EXPORT_SYMBOL vmlinux 0xf5987935 drop_nlink -EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set -EXPORT_SYMBOL vmlinux 0xf5a239bd cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xf5a2691d netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xf5a5a960 bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xf5a99801 init_net -EXPORT_SYMBOL vmlinux 0xf5ad560b mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5d406bc nvm_unregister_target -EXPORT_SYMBOL vmlinux 0xf5e405e3 devm_gpio_request -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf5ffdccf agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0xf60d7f0e __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf6824e27 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf684632b devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf693a145 irq_stat -EXPORT_SYMBOL vmlinux 0xf699984e kobject_put -EXPORT_SYMBOL vmlinux 0xf69d0e23 pci_enable_msix -EXPORT_SYMBOL vmlinux 0xf6aa7adb input_grab_device -EXPORT_SYMBOL vmlinux 0xf6b5e6b1 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6d69e94 mmc_of_parse -EXPORT_SYMBOL vmlinux 0xf6d7a0ef eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xf6e1f23e tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf70ef0a3 dev_addr_del -EXPORT_SYMBOL vmlinux 0xf714f2a6 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf764868a udplite_table -EXPORT_SYMBOL vmlinux 0xf76762a6 start_tty -EXPORT_SYMBOL vmlinux 0xf77fd527 skb_trim -EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0xf7c79270 vfs_rmdir -EXPORT_SYMBOL vmlinux 0xf7c97cdd i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0xf7d46f9e set_pages_array_wc -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf823d342 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf830c0c1 freezing_slow_path -EXPORT_SYMBOL vmlinux 0xf84141cb __napi_schedule -EXPORT_SYMBOL vmlinux 0xf848ed03 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0xf851109c scsi_remove_device -EXPORT_SYMBOL vmlinux 0xf879bb5d dquot_operations -EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header -EXPORT_SYMBOL vmlinux 0xf8985b7f agp_create_memory -EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf8f24288 dst_destroy -EXPORT_SYMBOL vmlinux 0xf90f83cd pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xf911ef3b tty_write_room -EXPORT_SYMBOL vmlinux 0xf9123bb9 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xf91dcccb free_buffer_head -EXPORT_SYMBOL vmlinux 0xf9288100 swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0xf944c6be bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0xf95bf173 __getblk_slow -EXPORT_SYMBOL vmlinux 0xf990bb9b tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0xf99ef21c genphy_read_status -EXPORT_SYMBOL vmlinux 0xf9a1e251 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9a70061 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xf9c00a54 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9cb4cc5 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xf9ea76e4 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xfa37c39c nvm_dev_factory -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5a3d60 dm_io -EXPORT_SYMBOL vmlinux 0xfa5d91e2 d_make_root -EXPORT_SYMBOL vmlinux 0xfa65f8ba twl6040_get_pll -EXPORT_SYMBOL vmlinux 0xfa8ec00c skb_clone_sk -EXPORT_SYMBOL vmlinux 0xfa94b6f2 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xfaa69339 set_page_dirty -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfae2c59b md_register_thread -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfaf59a37 set_posix_acl -EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent -EXPORT_SYMBOL vmlinux 0xfb070096 page_cache_next_hole -EXPORT_SYMBOL vmlinux 0xfb0e515b __devm_request_region -EXPORT_SYMBOL vmlinux 0xfb1268a7 pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0xfb154b01 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xfb24bed6 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xfb28de91 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xfb53e9c7 phy_connect_direct -EXPORT_SYMBOL vmlinux 0xfb549a3e kmalloc_caches -EXPORT_SYMBOL vmlinux 0xfb578fc5 memset -EXPORT_SYMBOL vmlinux 0xfb64a9a6 blk_complete_request -EXPORT_SYMBOL vmlinux 0xfb691d2f gen_pool_free -EXPORT_SYMBOL vmlinux 0xfb69f63a elevator_alloc -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb6f1052 phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0xfb7a2265 input_flush_device -EXPORT_SYMBOL vmlinux 0xfb7ae503 tcp_parse_options -EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xfb907a3c sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xfb920e95 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfb9f6efa netif_carrier_off -EXPORT_SYMBOL vmlinux 0xfba2e63e nobh_write_begin -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbbfdbcc igrab -EXPORT_SYMBOL vmlinux 0xfbc35ed1 bdev_read_only -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbfe66fd scsi_host_get -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc117853 kfree_skb_list -EXPORT_SYMBOL vmlinux 0xfc1cd57b tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0xfc1f7a2c dev_mc_flush -EXPORT_SYMBOL vmlinux 0xfc33c962 kmem_cache_create -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3dc3c0 ip_getsockopt -EXPORT_SYMBOL vmlinux 0xfc6008fc clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xfc6e8e66 pci_scan_bus -EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps -EXPORT_SYMBOL vmlinux 0xfc992dd7 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0xfcb35584 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcd58bb3 udp_proc_register -EXPORT_SYMBOL vmlinux 0xfcd85211 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfce6a0e1 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xfcea9754 give_up_console -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcecc806 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0xfcf8624a vfs_rename -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfcfc5194 pci_dev_put -EXPORT_SYMBOL vmlinux 0xfd017f84 set_pages_array_uc -EXPORT_SYMBOL vmlinux 0xfd377515 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0xfd407894 __dax_fault -EXPORT_SYMBOL vmlinux 0xfd4e5b20 unlock_new_inode -EXPORT_SYMBOL vmlinux 0xfd5d42f9 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xfd76410e amd_iommu_complete_ppr -EXPORT_SYMBOL vmlinux 0xfd90e299 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfdb1269f truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xfdb6f614 da903x_query_status -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfdf407e1 security_path_symlink -EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfdfd6c90 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0xfe13c522 acpi_install_gpe_raw_handler -EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xfe264502 generic_readlink -EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids -EXPORT_SYMBOL vmlinux 0xfe282503 do_splice_from -EXPORT_SYMBOL vmlinux 0xfe2f32bb nd_device_register -EXPORT_SYMBOL vmlinux 0xfe3d7c30 thaw_super -EXPORT_SYMBOL vmlinux 0xfe562ab5 mmc_flush_cache -EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe729b82 end_page_writeback -EXPORT_SYMBOL vmlinux 0xfe7beb43 d_obtain_root -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfeb38e4f seq_write -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee86620 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xff772a16 dquot_quota_on -EXPORT_SYMBOL vmlinux 0xff7c8881 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffa355d1 __register_nmi_handler -EXPORT_SYMBOL vmlinux 0xffaf24d0 dev_uc_del -EXPORT_SYMBOL vmlinux 0xffb9eb89 mmc_can_discard -EXPORT_SYMBOL vmlinux 0xffc16017 __sock_create -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xffefd687 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xfff2b4dc fb_set_suspend -EXPORT_SYMBOL_GPL arch/x86/crypto/aes-x86_64 0x7060bf0a crypto_aes_encrypt_x86 -EXPORT_SYMBOL_GPL arch/x86/crypto/aes-x86_64 0xe409b491 crypto_aes_decrypt_x86 -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x13a65ecf camellia_ecb_enc_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x17bf48dc camellia_xts_dec_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x1a08ded1 camellia_xts_enc -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x47129015 camellia_xts_enc_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x7d54edc2 camellia_cbc_dec_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x7e87ef55 camellia_ecb_dec_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x8f185793 camellia_xts_dec -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x9e8086dc camellia_ctr_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x16061d06 __camellia_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x1636abdf __camellia_enc_blk -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x1da0e256 camellia_crypt_ctr -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x31bbe42b camellia_crypt_ctr_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x3e3d8b61 xts_camellia_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x50dc55b6 __camellia_enc_blk_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x7cdf017f lrw_camellia_exit_tfm -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x930f687f camellia_decrypt_cbc_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xa41a5ad3 camellia_dec_blk -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xe2b30b99 lrw_camellia_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xf4521fda camellia_dec_blk_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x2e83b127 glue_cbc_decrypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x4aee7328 glue_cbc_encrypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x538a85da glue_ctr_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8f02ac4d glue_xts_crypt_128bit_one -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x9b938e43 glue_ecb_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xbf60758b glue_xts_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x016a957f serpent_xts_enc_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x0c5a8af6 serpent_xts_dec_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x0ff3c26d serpent_xts_dec -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x3d742cfc lrw_serpent_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x606a8162 serpent_cbc_dec_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x65f91bd2 xts_serpent_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x75a97330 lrw_serpent_exit_tfm -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x79ff0b7a serpent_ecb_dec_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9ae34b2f serpent_xts_enc -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9e018632 __serpent_crypt_ctr -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9f99663c serpent_ctr_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xa84ea33d serpent_ecb_enc_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x19dc7881 twofish_dec_blk -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x5e752773 twofish_enc_blk -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x14b55598 xts_twofish_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x1fd77fb1 twofish_dec_blk_3way -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x4c3862b6 lrw_twofish_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x61694b97 twofish_dec_blk_cbc_3way -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x61f89fce lrw_twofish_exit_tfm -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x8d75ab44 twofish_enc_blk_ctr -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x8e856922 twofish_enc_blk_ctr_3way -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xf2e80e9c __twofish_enc_blk_3way -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00534746 kvm_queue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01ccd216 __tracepoint_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01f66d62 x86_emulate_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02eb90bb kvm_get_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06207d9c kvm_scale_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x070f9719 __tracepoint_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x079a8a84 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x080be3ad __tracepoint_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08fa9986 gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09f86037 gfn_to_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d4adf8b __tracepoint_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10006c54 kvm_mmu_unload -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1104f4ac kvm_clear_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1108302f kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114c3173 kvm_require_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x119d9e4d kvm_get_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x146e2ed6 gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15825045 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17c114b8 kvm_write_guest_virt_system -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ddaf02d kvm_set_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e0e15fc kvm_is_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e1f5e8b kvm_get_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e8d87d0 reset_shadow_zero_bits_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21564cf4 __tracepoint_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x238e68b7 kvm_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25099c26 kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25b22156 kvm_valid_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x267a1f22 kvm_after_handle_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27b35c8f kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x288ed3a0 kvm_intr_is_single_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a2bd62e kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c20da17 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c78b8d4 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e7afe14 kvm_vcpu_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x340d1ed7 kvm_clear_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34e72cf5 kvm_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3580e9be handle_mmio_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x374ae82d vcpu_put -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x383c4862 reprogram_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3cae0c97 kvm_set_msi_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e34eadb gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f41073d kvm_set_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f4266f8 vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x414716b2 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41a88aef kvm_complete_insn_gp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41e88735 kvm_mmu_slot_leaf_clear_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4325df6c kvm_emulate_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x439c3640 gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44046cb1 __tracepoint_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48f027ef kvm_vcpu_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4925fb3c kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x501378fe kvm_set_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x515f984a kvm_requeue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51607f99 kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5161d575 kvm_mmu_unprotect_page_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52a5ed8c kvm_before_handle_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53e92f39 kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5ac6fe58 kvm_apic_write_nodecode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b69d0bd kvm_arch_register_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5bce56e3 kvm_inject_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5cadbaf0 kvm_get_dirty_log_protect -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d0ebda6 kvm_x86_ops -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65560c3f kvm_mmu_slot_set_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b181ee0 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c1a786c kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ea23add kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f75e3ea __tracepoint_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f870c65 kvm_get_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72a7ea50 kvm_vcpu_reload_apic_access_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73ae496a __tracepoint_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x756d26db kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7723b2ad kvm_get_dirty_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x77ac977c kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x783d0590 x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b9b4d55 kvm_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e6f3228 kvm_fast_pio_out -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f9ceaf6 __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff1ca84 __tracepoint_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80483aad kvm_read_l1_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x808e3c03 kvm_lmsw -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x83731789 kvm_emulate_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x844376c1 kvm_lapic_set_eoi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8493c981 kvm_get_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a23ff94 kvm_task_switch -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b0d1e9f kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e493330 kvm_mmu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x903c3fa8 kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9093edb4 kvm_set_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92c89669 kvm_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92cbbd3f kvm_cpu_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9479c2dc kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94cdb3ae kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96924981 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99c9739f kvm_inject_pending_timer_irqs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9adc9a82 kvm_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b75fbed kvm_get_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c3969f6 kvm_mtrr_valid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d492ad2 kvm_init_shadow_ept_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d68bbe6 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9eca9877 kvm_init_shadow_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0c828b2 kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0ec3a0a gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1e482c8 kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4d57013 __tracepoint_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6715740 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa71386cb gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8c7f1c1 kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8d13f02 kvm_mmu_invlpg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac381584 kvm_arch_start_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacc20755 kvm_mmu_slot_largepage_remove_write_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacd48c93 kvm_mtrr_get_guest_memory_type -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf7f97c gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae04fb0b kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf510797 kvm_inject_realmode_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0f8582b kvm_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1cc6be5 __tracepoint_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb27a059a kvm_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb326aecf kvm_read_guest_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb447b3aa kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb47d1f89 kvm_write_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8d8a196 kvm_put_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9b185ea kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbcfc2969 reprogram_fixed_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe86576e kvm_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1adc2cb __tracepoint_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc40eedd8 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc56d75ce __kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc599bc18 kvm_max_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8b1641d __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca07ca16 kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcaf12824 kvm_vcpu_is_reset_bsp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb67868d kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcebff202 kvm_arch_unregister_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf0b30d5 __tracepoint_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd200af81 kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2fb60a7 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3da6c45 reprogram_gp_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd42fcf7b kvm_set_xcr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd534e0fe cpuid_query_maxphyaddr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5c0ddab kvm_rdpmc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd93bbd46 gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd961f68a mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd971c22b kvm_queue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda66a97c kvm_arch_has_assigned_device -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe09d580c load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe14e78bb kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2301e9c kvm_arch_has_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe36290e2 kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe399592d kvm_set_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7a138f0 kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea1fba64 kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec0b5155 kvm_set_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec31cf7c kvm_inject_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xece2a95b kvm_arch_end_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef30703a kvm_find_cpuid_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf09d55f1 kvm_mmu_sync_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1b9cda7 kvm_mmu_unprotect_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2312a76 __tracepoint_kvm_ple_window -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf41e94f5 __tracepoint_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf46fd890 kvm_require_cpl -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4b28c52 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54625e4 kvm_mmu_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7aadc61 kvm_mmu_clear_dirty_pt_masked -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8f4642c __tracepoint_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbd95c91 __tracepoint_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdb9c095 kvm_read_guest_page_mmu -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x0d2c6290 ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x11ab7012 ablk_init -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x492af639 __ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x7265515c ablk_set_key -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x828c40dd ablk_decrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xcdf1447b ablk_exit -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xee12c140 ablk_init_common -EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0x1962613e af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0x1daf27f6 af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0x34ede7df af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x4c771335 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x5a6fb1c3 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x5b8b8de9 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x6505302e af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x852cd76f af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x859fbb80 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xac89ae3e af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x68213867 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x5a407ed1 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xdefb57a2 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x1c019ecc async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x6f5e5c1f async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x06a4dba0 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb48dde1c async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbfd3e136 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xdf788739 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3f6faf8f async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xc30d0177 async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x101f3169 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xa7923934 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x0dbe35b4 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x462fc4e7 crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x4b081e11 crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x079ca71f cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x11e0663a cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x200e106f cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x231ba0d6 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x301019c7 cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x31b01bec cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x59c3b756 cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x95d29c52 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x9de28828 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xf2286566 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0x86fa6f10 lrw_crypt -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/mcryptd 0x593b2fd5 shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0x72a4a36a shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0x80be49cc mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x9157b0c5 shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0xab4fa6d5 mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xd4ea7983 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xd9d7d3f5 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0xe6a68ca9 mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x1e5a450a crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x429bd792 crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xc2b96f79 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xfbb62e0a crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x7617ea6a serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0x39492976 twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0xa094db72 xts_crypt -EXPORT_SYMBOL_GPL drivers/acpi/nfit 0xa46d1c08 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit 0xa9665867 acpi_nfit_attribute_groups -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x01c1e346 ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0f6ca0bc ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x14fd5823 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x21a4545a ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2c56243b ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2d2cad59 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2d445ff6 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x34d9ecba ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x39f8b188 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6f30cf0a ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7c03cdbc ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8a978f60 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x92e7d699 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9c42509f ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa1a78bb3 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbcf08080 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc3980906 ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc658dc70 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcf13e47d ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd785d2c8 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xddd48da7 ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe2d591cd ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf70a514c ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x013e203d ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x11e9fca8 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1bfbca09 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1ea7074a ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x318f3d01 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x33a36881 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3ac55f29 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa6d88e2f ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb2273dd9 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcc211601 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcdc37bf0 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcf60841d ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xff91a2d6 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xfa3b1744 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x1d430069 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4ab31875 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcd340e7b __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xfa7caa78 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1c10d131 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1ed679b8 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x26a56f3f bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x351b27af bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3a4c8dd3 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x405eea90 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4bfc48d3 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x55acbc89 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x594376dc bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5a527e88 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x765e6ba6 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x870f919c bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8d9daed0 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x917fb077 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x98c35241 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9db96f53 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa43a54b7 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xab4c86e0 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaca30f40 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbfd29f95 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc8cf3ae0 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd4b2e686 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe1c52f5a bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfe9acefd bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x334d4bac btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3a6c5a4c btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7e64e2f1 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xdf2ca391 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf7ce702e btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xfca7e44a btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x02c20cd7 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2b7e0e75 btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3bb6e8ce btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x51ad24a0 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8b07cca5 btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8c124c30 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa2dcc12e btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbfc8021b btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc21cad6a btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe54c6a00 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf4b1e3fa btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x06b4f725 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x166d2bca btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x20ceff81 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2ecf8be5 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5fca49b1 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x70042a79 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7c55c84f btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8e2abea3 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x931dd405 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9f1e8c2e btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfd201a6e btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4362b46f qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe325b2c1 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa1d52e19 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x148a3b1e h4_recv_buf -EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x1b1f2bda speedstep_get_freqs -EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x2b67f096 speedstep_get_frequency -EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0xd7ab2c0c speedstep_detect_processor -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xadea02d8 ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x14e6eadc adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1c962dfd adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2239abe2 adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x22cfe1ca adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x27bf06e7 adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2830110a adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x29196966 adf_disable_vf2pf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x294e254c adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2dfeaa9f adf_update_ring_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x38e47b4c adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4479c55d adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x44cfe40f adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4a5d2541 adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4c12ea06 adf_response_handler -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x543e66de adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x558bc431 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5621af82 adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5a75130f adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5de1a9e5 adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x60744501 adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x613e0851 adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x652a2e92 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x67ca03d0 adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6b44cb8b adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6f38d59b adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x767baec4 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x77336637 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7c9177e0 adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8a14463f adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x96a53f2b adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9707e8e4 adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9fb6279c adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa95b5aad adf_service_register -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xae8381e2 adf_iov_putmsg -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbb9001ca adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc9e560b4 adf_service_unregister -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd10eb6f1 adf_enable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0x0f16ec37 alloc_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x10448b28 dca_add_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0x31a2c8df dca_get_tag -EXPORT_SYMBOL_GPL drivers/dca/dca 0x3a9fa802 dca3_get_tag -EXPORT_SYMBOL_GPL drivers/dca/dca 0x8e3ae926 dca_remove_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0x915068d5 unregister_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0xb242c074 free_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0xd393edd1 register_dca_provider -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3ddc7009 dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x45a0c34f dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4802fb21 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9cfbd4a6 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf6d1f185 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x5d0f3071 hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x87788f6d hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xcaab03f0 hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x64f044fe vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x8082dcf5 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xc10912a0 vchan_find_desc -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xfaf670b1 vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0xfbb1b149 amd64_get_dram_hole_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x002cfd73 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0fab217d edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1ea9b16e find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x29785353 edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2be0f25c edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2d9b0ba3 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3d909573 edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x44f427bb edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4bf63d51 edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x78c0662f edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9cac2ef3 edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa2bb570e edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb6b214e1 edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb8309ec4 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbd043117 edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc75f8b12 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xccf64d47 edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcd550711 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe10902d3 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe146abe8 edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe6e2e1cd edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe7513fc5 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf1e102ec edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x81d75507 amd_register_ecc_decoder -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb30b7e56 amd_decode_mce -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xd3cc2686 amd_unregister_ecc_decoder -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x39440f35 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x51d48996 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7a8b6a28 fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd599ec86 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xed2f777f of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfcaaf777 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x381708d6 bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xaa95323c bgpio_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x0ae0ce0b __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x819d4b40 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2a6b55f4 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9b959d94 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb8145f89 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x9e2383d9 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xc2a2dd85 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xea64a106 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/hid/hid 0x04a44520 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0764945b __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0e181a2e hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0f11571a hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1b4319e8 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2be8f1bc hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2ca5eaaf hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2dd8a03e hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f069791 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b3d24cb hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3f169b28 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x42829bd3 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5761cc9e hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x59085a01 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x664cc4cc hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x77b13a2e hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7cf4fbe3 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8049cd34 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8151911f hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x839101ac hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x97933f32 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa7c810e8 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbebcd95e hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbf8b2da0 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc643bacf hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc8717d63 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xca6bc5f9 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xce40dfcb hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcfad7da2 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd79c39e0 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf3ca46d0 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf48f4b2c hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf727a285 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf8a3d583 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb8e7ac0 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc7e7e3c hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x44058cbd roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2969affe roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6f76c44c roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x99793a03 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa539db1d roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf1a141aa roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf40643df roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0e5806ff sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2e98a9ee sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x62539c60 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x71d84155 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9ea6e63b sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa47c1660 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb3c2c9c9 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc6715193 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe3b0358d sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x60f4c7d7 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x071c1701 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x27f8629c hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2c2f7385 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3048ecf4 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x397a48e7 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3a433757 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x405e4003 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x70e6cdc9 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7a535874 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xae451d91 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb929ac74 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc1cfb6cf hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcb020abb hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcbbd6afb hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdca23933 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xedfd03af hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfcfd6cc3 hsi_async -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x08bce166 vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1143979d vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a25cd8a hv_do_hypercall -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x20af339b __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25a0a3d2 vmbus_cpu_number_to_vp_number -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x358fafa5 vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3737d9ea vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4d880306 vmbus_sendpacket_pagebuffer_ctl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x56213dbc vmbus_get_outgoing_channel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x63223a1e vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6a98fc6d vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7c335db1 vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x85654dea vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86ff5fa6 hyperv_cs -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8a5d0f03 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x94b755e5 vmbus_sendpacket_multipagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa7cf491a vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa82afe77 vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc37c1dc8 vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd15b9f3d vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe8bf183a vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeb22b7b6 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xebdf9bf0 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x5b5c0a7a adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xa4c07067 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc153867b adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2f64ddfb pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x35af21e0 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x36fdb2ce pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3f332ab2 pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x62a124ba pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x78a019de pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7fa95be3 pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x95cdae02 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa766344e pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa9a6739a pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xafbcc818 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcda2d872 pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xdb8b3374 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe177fc81 pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe5775081 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2954d109 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x53bc2697 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb3ddaeef intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xeb58e3b5 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xeb6ad148 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xeebb131c intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf77235a4 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x554294e7 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x82e0db6c stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb9ddeb23 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xecc338c3 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf283ec82 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x3012c993 i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x63002e9c i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7309ef07 i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x8e4a612f i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xfb9a3c4d i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x93bec5ac nforce2_smbus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc3436734 i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd15e3571 i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x195fb0af i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x8d87d5ba i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x0ef6bd3a bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x48e1d9bc bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xfed57825 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x12a5f3e6 ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1b2eef6e ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3c903dbf ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x40a4bd51 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x52684e58 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x703b65ae ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x744be837 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x786fbbcb ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8961b580 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7687ff4e iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x87e1edcb iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x3b7927be ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xd63906f2 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x7294bb28 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x849377ce bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x9d27c709 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1e16c49f adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2f673a91 adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x416207ed adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x432b3a3c adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x44c36af8 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5f882265 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6e48b57a adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6ebadc41 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x89102db0 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbe0dfd68 adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xef0799b5 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfbed5fdc adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x058a8418 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x17d974eb iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x186fecfb iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x19bef6eb iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1bdd1a94 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1c405ac5 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ce831fd devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2337370e devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26e797e1 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2af9a8fc iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x304b1a23 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d1275d2 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x519d41e1 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x53ffa609 iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x55084d88 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x560e6461 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x585b2151 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f18f4c0 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6db82791 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x84bdf46f iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x915bada2 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x91f024b7 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x955b0cf2 devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xad77eba1 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb08035dc iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcaeaa341 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcde5becc iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd18d509c iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd79f0030 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeea7930b iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf4e72055 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x8a8616f2 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x89d59b9c adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x10e90b74 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xc9bf9d6f cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xdc9f663b cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x3f5b5c61 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x6ecfacb6 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x84f9f214 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x7a5acafa cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xef92aeef cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x9feb3e9a tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa12d89fb tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc0fc6ed3 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc3e4b1d4 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x17c8bb0a wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x30e91759 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x592772e7 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x607abba9 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x66b1bb1a wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6cd0c2cb wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7a825860 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7dc4a6f3 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa7a8edf1 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xacd0bb37 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbabb9770 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf559996d wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x15906f39 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1919927b ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x26ff6602 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x49badea6 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4bc16596 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9a24c841 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb35a0edd ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbaf9305f ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdc780053 ipack_device_del -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0deaa7a4 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3953224f gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3bf0c6c3 gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5ba2c67f gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x865c686b gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8caa11f1 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9bc665ee gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3729ea9 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3c8bc00 gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb490fb92 gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xbbd0fff1 gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd7814aae gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe36e4d24 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe7162f62 gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf49948b4 gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfa4650f1 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfee967c1 gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1c6e1e91 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x58195f53 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7e8d11ab led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x89178732 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbc83b941 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd175a817 led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x08d47597 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x15a673b2 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x184bccd3 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x264a3715 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x28bae643 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3b4c322b lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x68a934b9 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7a0b9d39 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdefabbdb lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe8354492 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf782450d lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0d086c60 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x172a628d mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x29322c3d mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x315f20cd mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4c3207b7 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x544819bc mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7c14a71b mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8b32e4f6 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xab3aef3a mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb94c53ad mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc00ee207 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcca44321 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd61adc2b mcb_get_irq -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x128efd2f dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x436273eb dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x49c031e6 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5a40ec71 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x69e3dcdb dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x900b962c dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcc9ccf9e dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xde9a3146 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe45db387 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xee033901 dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x242beefc dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3d3ae13a dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x76ea9833 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7b75cb38 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9b079357 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa9f0b22e dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc1095dee dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xdc1ca12d dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xf6d0e06a dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x264b6f06 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4541e8e7 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4cc0cea4 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7eebc8ab dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcda87911 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe25903f9 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x827a42f4 dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9f624559 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf7dd6225 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x09730fff saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0a5ceb80 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x11417aed saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3358961d saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x384348ec saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3c4b724a saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd48a1214 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd54a38b7 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe2f5f7f5 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xffdeb349 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x01b859c2 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x26e3deb4 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3c60c0a4 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5c05fb6f saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7e7c835e saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x95ffd136 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcfb40f15 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x09070e2a sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0cc9a3cb smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0fe981b2 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x141ba8b5 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1ba2d258 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x29944b38 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4a44b905 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5d7275e6 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6a2ac8b0 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x81029f76 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x96ba983f smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9f051660 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbddb0b6f sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcb94b7aa smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd1dc52ac sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd883e5e1 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf6b140e7 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x4cdab40f as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x85e0af2c cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x10a964b6 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x0c04afee media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x3359450e media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0x39fd88f9 media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0x4138e7fb media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0x515b4b9c __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0x53151b34 media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0x5f452477 media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0x77fae103 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0x7d1778d4 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0xb224121f media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0xb2ab535d media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0xc0f99305 media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0xc7fb73ab media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0xd0e32139 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xe10c9a01 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0xe540fd5b media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0xe5e26c51 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0xf960fd9b media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xf7beb9bc cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x034ac776 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x160dd73f mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2cc1c278 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2f1f2670 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3745330f mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4252af78 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x69335ccc mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6d02bbfa mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6e33ce21 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x76f18112 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8485f16c mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa5cd155c mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xadf2073f mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xae4aec8f mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd1153964 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe5eff4cb mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe9ad641e mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfcbbe872 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfed8e989 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0a6156a4 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x10e59ee2 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x159a104e saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x235dea47 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2d36ed22 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5940c37e saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x59b2560d saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5d2b9b5d saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x61c785e9 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x627bcf58 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x668677bf saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x677e86cf saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x72fcb37c saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8662cfca saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa45e99a8 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb0c9291e saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xba17d8b9 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd6f2bd92 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf56426f5 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6881d891 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6d1625a8 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x86d67b6b ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8d925101 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xabd12c38 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd5d4fc71 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd65d4e98 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x97d77cd0 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xd266f272 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0af59cc0 rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x207409ef rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2bdfc3e7 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x35ecfef0 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x37c163e3 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x39d3f5ee ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x55501d8b ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x662f5e7b rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x669e7f1e rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x70faeafd rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x723ea718 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x76ba8568 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9d9127cf rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb99c1e67 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc28901b1 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc53a4cd6 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe149589a ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xee886d61 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf0981aec rc_repeat -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x8c37dedc mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xdd57972f microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x7865cc4e mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xf5a0b264 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x00a4479d tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x56c46aee tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x0fc4e180 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xd4cd628d tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xb9fab7ee tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x692bd4e8 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xd4c5602f tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x3d4bca71 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x6f76f00e tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xa2dd79d8 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0ab1d519 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x18c44065 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x19433ef7 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x26012613 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x39fab695 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x45b1d82e cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x51240221 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x630c291c is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8d24c213 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8e3a52d3 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9cf92695 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa96cf0e3 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaf7c5797 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb0d84b1f cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb211988c cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbffe3021 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcd8027b8 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd0f6866c cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd2868677 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf1e7108c cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x6de9e7ad mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x24451545 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x19488516 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1dddafb9 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1ed96b15 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2ebea6ea em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3de44708 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x40cba1ff em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4578a063 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x48c86830 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5e576593 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x86a59306 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x90a64ed8 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x98d2663b em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdb0f0246 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdd0f0788 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe92a0592 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf246a012 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf28a112b em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf2d1a6be em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x482d269e tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x48747a3c tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x51dbd989 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xfd24d8f3 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x41785cd4 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x5e9d5ee4 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x6eb260bd v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x79e0ba9d v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa719b6d4 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe74b6def v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x259888d1 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x998e269d v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15fb79b6 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1996f414 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2d12407d v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4d52018c v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x57788815 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5ab52190 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6d317c94 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x77eaf396 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7aa7cf4b v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b2becca v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x854bfb4c v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8713155f v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x88390ee7 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xabc466d2 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xad204867 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaf934c61 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb205e5a1 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb36b1f0a v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb41bbe11 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb627663d v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc137a276 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdc5e360c v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdf6d81be v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeb045513 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xede5621d v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xefe54683 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf721f148 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0fc37bd8 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x156db480 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x20b26cc0 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x294dfca3 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3a3d9004 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4447c79f videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x51237f0b videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5c14d3f3 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8501b94e videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x87cce079 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8f256edd videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9f0e4a6b videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa548b5fa videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa98a1283 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc5bc6c48 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc90885e8 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcad94cb8 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd23e307c videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdac22ded videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe366d61e videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe46adcf5 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe8488455 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xec8cd4f9 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf4e42f7c videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3b1bc5de videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x9e464c57 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xb759f790 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf9c80a26 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x0192e15b videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x2f6ab048 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x6baafc41 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x00d2aaba vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1cce3d9e vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x20f3c5da vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x21b78735 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4c1e9439 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6137645e vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8ff1250c vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9dcbfd32 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa36f8e95 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa78148d9 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xce5410ce vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdb25bbd9 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe1855c2c vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe4f8aafb vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe54dd164 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf2b24b33 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf5017414 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfc41ca3d vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x7b839a64 vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x993b17ab vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x325c5904 vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xbe163dc8 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0xd090b3b8 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x00122264 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0a04b31e vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x216dab30 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x36e6bf58 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x384a90f3 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3b95a951 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3fc8c643 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x446c88c4 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x462a0bd8 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x49f95734 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4d3f44ef vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5218b13c vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x59545378 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5aa976d9 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5d330a65 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x74e035ee vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x781584e8 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7f9bdd2a vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x864c1a21 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8deffcbd vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9b648552 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa2ac128a vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa55d3170 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb59d33fe vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbb6c69c8 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc328159f vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcd25e65b vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd79167f4 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd9919e0a vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe241efaa vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfb6b9c97 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfcbb36a7 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0xecdc2682 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x02027cec v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x04231dd2 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x15494d1b v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1801d2ec v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x226bb82b v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3a71c54d v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d6b43d9 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x555fcdb6 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x562a17e1 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x72be236f v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x73840e6f v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x776916f4 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x77b1953a v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b49d18b v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x86f5b0cf v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x87f126fe v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c8149f9 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b81167e v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9f1c5781 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4bcad3c v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb1b34ceb v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc121cd70 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc662c663 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdc40c868 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf0a46c8 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf153ce55 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf64903c0 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb109fbf v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfe6e1bc6 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x3e0f6d6a pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe345c2fa pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xeb9b2431 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x03751f85 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x09ea26c8 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x41f88ff7 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x493dd0ce da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8c4496e3 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdce2316a da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf89449e1 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x0bcf8aaa intel_lpss_resume -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x2380b528 intel_lpss_probe -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x2d35d506 intel_lpss_prepare -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x3c44de18 intel_lpss_remove -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x59171cb6 intel_lpss_suspend -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0140d4a3 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x09a823da kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x18cfd08c kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1a1a0b38 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1c59d385 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x83c9157e kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbda005b8 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd79fb9f2 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x1861ccc7 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xb512f6b5 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xef712820 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x10e319fc lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x480c7bb2 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x63ccae34 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x66c0a539 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7d26eca0 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9fa79b93 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xef42f3d9 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x638d58d2 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x76538f57 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x79421be9 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x23f7d8fb mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x634d93db mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x714266b3 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8420f3df mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9c45b471 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd2aeabf8 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0248fd3d pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x13217bbc pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1a99356b pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3a108895 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4f3c8450 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8df05486 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x92a8a8ac pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9ae5203a pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb96c212a pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd12468d6 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfdd6e509 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x40b138b7 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xf376473b pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x06bae089 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x71975d50 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x94c335bb pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb2920b06 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc6e66047 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x03dffac5 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x04c85e6f rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x215be8e0 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x263370a4 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x50399b3e rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5e3e4be1 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x613fd956 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x639f222d rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6e89dbf9 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x76a357bd rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x80bc3252 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x84376a0b rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x942588a6 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa05d21c2 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xac5c7153 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xaeaef369 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb7a74172 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc4f4e1ab rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc5638711 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd3f86f92 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xda8dbbe3 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe0f9a585 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe576c7d2 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xef05ad3b rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x085bee25 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0e23aa2e rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1346ed7a rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x270f6171 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2f7f1f0e rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x44c186fb rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4982b94e rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x70c28a30 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x829168ae rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x89385928 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x97a27fad rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xba377b3f rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xefd726fb rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x03053b1d si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x06ffbf18 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x126739f4 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1343799e si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x13cdf578 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x16b254c3 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24dd2989 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3e831b4e si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x456c9ede si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4a729b36 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4bab3d71 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x53f458dc si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x54c3b3c6 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5929a51b si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x618ae173 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6b5408e8 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82d78678 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x846c8272 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c8e20f1 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x91957b86 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9656fe61 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x97517e89 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x98c19b62 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9eae2771 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa33bb469 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa5b160f5 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaeb74e5d si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb89a2284 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbc04a151 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbfa5b370 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc72ba95d si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xca96ecfb si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdeef2a8d si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xee8dda05 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x80245a03 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x86e52f20 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa77803c0 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb0afceb5 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xdbfffc92 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x41b752c9 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x57055323 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x627ce40b am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x6f30fda0 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x1e27d2cf tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x83d1adbe tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x9a6d82d0 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb1488a7a tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xe0f01604 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x1167ac55 bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x3a77f8dd bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x4ad9bcb0 bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xbd2fc736 bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x32125269 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x438d49fc cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x4eb2ab75 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xf945422b cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x07f702ea enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x223d2797 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x428e7fd8 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa820ff66 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xae489886 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb9bea04c enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd83caddb enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xff7d71cb enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0b447383 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5c3d43ea lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6ce3151b lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8e4b061e lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa7b9325f lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa91d8db2 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbc6ecb5a lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcf7fc018 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x045d3947 mei_deregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x097a120c __mei_cldev_driver_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0e22c006 mei_cldev_disable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2003a656 mei_cldev_get_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x32cda430 mei_cldev_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3ab530a7 mei_cldev_register_event_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x47cba84a mei_irq_read_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4c2a0c67 mei_irq_write_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4f133d37 mei_cldev_ver -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5838bdac mei_cldev_enabled -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5bf9d6b1 mei_reset -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x622cec6f mei_start -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x719e0832 mei_cldev_uuid -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7ae85927 mei_stop -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9344a014 mei_cldev_driver_unregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x965b2df6 mei_cldev_send -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x96677c45 mei_cancel_work -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x98aa4304 mei_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb2e49cf3 mei_restart -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb890795f mei_hbm_pg -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc1ea4f03 mei_device_init -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc5f90c71 mei_write_is_idle -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcd233116 mei_cldev_recv -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcf765e10 mei_hbm_pg_resume -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe8dd0278 mei_fw_status2str -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf5fb57d0 mei_irq_compl_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xff4f11cc mei_cldev_set_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x6a5d0879 cosm_register_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x6d020652 cosm_unregister_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x9da4bfaa cosm_find_cdev_by_id -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xccd4e4f3 cosm_register_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xe460a64d cosm_unregister_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x68b1913a mbus_register_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x6f03f663 mbus_unregister_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xcbb8faa7 mbus_register_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xe8a14c68 mbus_unregister_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x12bc435c scif_register_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x719079f2 scif_register_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x8e76ebe6 scif_unregister_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x994cec6f scif_unregister_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x005845c6 scif_poll -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x0ada38ce scif_fence_mark -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x12fd38ef scif_bind -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x1ba7469b scif_register -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x1d3d6c78 scif_fence_signal -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x21de9bd0 scif_get_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x23e61c5c scif_open -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x31d4b005 scif_vreadfrom -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x31f517c5 scif_get_node_ids -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x4286f3f0 scif_accept -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x42bbf196 scif_connect -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x4b816429 scif_unregister -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x71183db6 scif_recv -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x8482bc5e scif_register_pinned_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x916e717e scif_vwriteto -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x920fc45a scif_client_unregister -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x94e2dc7e scif_close -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xa6eba8f7 scif_pin_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xb1cb790d scif_send -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xbc1dd1f8 scif_put_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xcc73521b scif_fence_wait -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xdde12774 scif_client_register -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xded4a8ab scif_readfrom -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xeaa37382 scif_writeto -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xeeb5dfb4 scif_unpin_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xf9c8d3c4 scif_listen -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x611799db st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xe73dfb4f st_unregister -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0f6680ea vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1152e318 vmci_qpair_get_produce_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x13aa5a5d vmci_datagram_create_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1872c7af vmci_qpair_produce_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1a195863 vmci_context_get_priv_flags -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3ef56cd5 vmci_qpair_alloc -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4b630dac vmci_get_context_id -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x50a255c9 vmci_doorbell_create -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x677c36d0 vmci_is_context_owner -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x69ef87ff vmci_datagram_destroy_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x6cc1a5f7 vmci_datagram_create_handle_priv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x722d488a vmci_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7ca08f16 vmci_qpair_peekv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7d540b50 vmci_qpair_consume_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9624c58c vmci_datagram_send -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9973b9b2 vmci_qpair_consume_buf_ready -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9d16164a vmci_send_datagram -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xad04f283 vmci_qpair_enquev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbbb2168d vmci_qpair_dequev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xccbb53d1 vmci_doorbell_notify -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcf5ed7ef vmci_event_subscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdac94780 vmci_qpair_get_consume_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe7e7c107 vmci_doorbell_destroy -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0b2e0db1 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0f8f1985 sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x11a7c64f sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x497c20f8 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6a4f9013 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7667cab1 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x78da5777 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x93541a41 sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb61b4ee5 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbacf8e10 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbb3b3ce2 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdc2cf79d sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe1b16357 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfa6168f6 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x14388b4c sdhci_get_of_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x618ceba6 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x96223113 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xaf137b4d sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb3f3d5cb sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbf1f6a9e sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd056ca22 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe1bb2071 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf18af401 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x539a6f37 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x6cb34adf cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xae844aa1 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x36b10bf1 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xbb1a8fa7 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xc548c477 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xddc99b44 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x4e56b4ec cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xbb970b1b cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xdb35f90c cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x06dc31ea mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x09c4f33c mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0badb910 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0df9e2ac mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1676ec89 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18754629 register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x19139ce5 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a12bd14 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2e3beb82 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x30c501ea deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x34228aed mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3fff0ca5 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x41ff7c69 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x489b2800 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x49fe821d mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5edeec59 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x639c8f3a mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x66455ab6 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6d08a6aa mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6dea4d2b mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x711428bd put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x74a7dcb3 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a07afe4 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7cf3fabb get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7e7931aa mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8fb3bf90 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x978f2aad mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa57a79cc register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa6ab6fb0 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa9599ad2 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb118fd75 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf2673fa mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf9cc12c mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbfa0ed79 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc04134d8 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc1b7a1f8 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd6fdf134 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdd722f1e __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe3a9cd4c mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe6500303 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfd4c809e unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff0d4418 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x1808d97c register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x2ea527c4 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x33e9e3ed mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x6f6787c3 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa8bdb49a del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x69da46d3 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xea26696c nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x2296786c sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x097c4330 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x4012f659 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x644dcb70 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x11533990 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1776749e ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x285c9ff0 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4ba289c2 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6166743d ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x75256e83 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9a3a5a0f ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa5ebce80 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa61c7c76 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcc4bc26d ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd36d3e16 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdea81025 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf236e565 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf3be8d7c ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x79307ce1 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x7a7742f1 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1c5e2e8b alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3fa5827a c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5a7b0783 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7a8d6e89 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7bb2c4fd register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xffb5bedb c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x03a9fb09 devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0518b7d4 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x182352da alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x36a1d27d can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x48065103 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4c3c5e61 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5ac3e7e4 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5ac497d2 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x780e3969 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7e894cb2 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x87c8ddd1 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8a355054 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8fd51552 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb9c4c879 can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd372e173 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe36b3196 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe7cfcba4 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfc607fa4 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4913f754 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x71726081 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x74fdc232 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x882412c1 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x08cafb8e register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x46b85dcd free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb18867fd unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xcc004636 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00c28efa mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0212f6fd mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02d8ba95 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04ed4a20 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07094e18 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0987c534 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a0e23b4 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ac6326f mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b21946c mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c780c3e mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d3ab052 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d990507 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e96b754 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11376fc8 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x117f2164 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1324288e mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16620aca mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x185931c1 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19185adc mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x212ed967 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x227ef3cc mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x241faffe mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27803c7c mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cae0b54 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d90d908 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f906ce4 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33cadbef mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x348670ce mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x371a73f8 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a66bb86 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b59c4b7 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bb088d5 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f8bb5a1 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fa51c12 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46b160ed mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48c0a5e7 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d2ebd42 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x536f04c4 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5472855f mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55f63973 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55ff3e58 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x586853c3 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cc1db53 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f8ffdf1 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61c687c9 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x629d47c8 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67453140 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67abf085 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x682e122d mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6861062b mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ccb8492 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6da230ec mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e3e0c6c mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e79c9b6 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f62bbc0 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74a03e20 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76088212 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7827663d mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c04f758 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7eeaa2bb mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f990035 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x882a6c64 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90f6fecf mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92f69849 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x936bf98b mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9689bbe6 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96b191de mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9830fad1 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a2623b5 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bc8e77b mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d3712af mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0d8eab0 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa69306d8 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9dbc9f7 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae155605 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaed98d44 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1e523ca mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2c69da9 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb945373c mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb951b5a4 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb21023e mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc20c710 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0347fdf mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc459efb4 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc90ec8b6 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9e6661a mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb9558e3 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccec252f mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcea4702d mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3a7beaf mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd417ce41 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5e98ac1 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd609b2d7 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd893c0df __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9d900a0 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9fc62e3 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde2d24c6 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdeb47e28 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdebca81d mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe00a817c mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe07b16c8 mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1a4d106 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe32f80a6 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe52847fd mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe550f4d2 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8407c09 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed1e4106 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeee191f5 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef068c92 mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeffc863a mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0bd5f6b mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf144765b mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf16b4ded mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4c9f2ab mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6550de2 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf90eb781 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa02aa3e mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfaa85994 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfad51f4e mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbc72eea mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbd3b087 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc55b051 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfce1e7dd mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdd7192a mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09443846 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cf2aaec mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1035e9a7 mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10d58d3f mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17662b8c mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b7a5b8b mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ba6ad04 mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2811162c mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x388eec03 mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38c6033a mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4588a8c9 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x465c9386 mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e192af2 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f473cfe mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66e7be58 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bd1ec16 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e4fead7 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78b06137 mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8194ec9f mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85faaa7d mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cb7b788 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ccd031e mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e0177b6 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96cd8b05 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa59339eb mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa82a4837 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacccb8b2 mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xace60065 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaff7ef98 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb41c18e2 mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7e29a9a mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc419db2b mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5efc29c mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3436eec mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6974627 mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6ac138e mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd84d55c4 mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0756cf2 mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe12720b2 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3be5911 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef52f5b8 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5921c3f mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5ef4b8d mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfef17349 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffaf47f8 mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xed3abced devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x209056df stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x3e1bed87 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7514d175 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8b0ead97 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1464171f stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x32c8f0a7 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3b13a1de stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3e26d56b stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0b5a9370 cpsw_ale_control_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0f55ce95 cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x10d8a292 cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x166111f8 cpsw_ale_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2c930017 cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3eb5a590 cpsw_ale_dump -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x73f379e8 cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x7ddb5cd2 cpsw_ale_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9409e15b cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x96f67fc5 cpsw_ale_control_get -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9e91f07d cpsw_ale_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbb457740 cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbd04bb51 cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe5c41cd5 cpsw_ale_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xece795e4 cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL drivers/net/geneve 0x9ecca854 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/geneve 0xfc9498af geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0f8ed97d macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x16321200 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5ecd5898 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x894a6da3 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvtap 0xf020eeea macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1062d995 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x24962c67 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4cc16398 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x57d8bd9e bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6bae1ccd bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6cd5e758 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x804cee01 bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc77b1a13 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xca2532f7 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xea3b9941 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x611e6a98 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x672c9d22 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9cb744e7 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd0674adc usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x34d79e1e cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x51a0286c cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7b78e836 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa089d175 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc329a0c9 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xceedc2fa cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe0926edc cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe57cdef5 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf2dcfb8e cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0962f02e rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x140c8008 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x27763069 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa2aeccc0 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc321d591 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xed56a69a rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x01ad69e6 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x143688bf usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x17fc2e24 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x185bfa2b usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1ad2e18b usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2796a7d8 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x290e2830 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f00c5c5 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x30834f43 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x315af2eb usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x36f250a6 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x43669d54 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x516b5ac6 usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x541c53f5 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5791045e usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x72e39bcc usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x76213d0a usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x80519980 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9824f7a3 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9b901fd7 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa0594b34 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa540eb42 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa8aa3b96 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaf057fe3 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xafd8c070 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb00a41e8 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbefc1965 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcd9b640d usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd79b254e usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe3ebce84 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf4cf72f1 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfa66fa9b usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x1134f77e vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xeaa811a7 vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x27f675e3 i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4c89f32b i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x536705f5 i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5c7926cb i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x65f6b486 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x70ccadbe i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x77e1f2bf i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8b0140e8 i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x90089a7a i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x97ec0448 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9895ab23 i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb88f0068 i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc89ff4b5 i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcc0fb785 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xec68d4ce i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfbef1dd0 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x2322a3ef cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x8a16dc21 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xbe43465a cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xf9ced4e9 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x301b020c libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x45bd1c07 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x50410f8d _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x9e005d65 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xa4306919 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xe170299f il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x00fa4da4 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0164f5b9 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0680b61a iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1c430f42 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x22244ff5 iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x22263b1c iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2495f32d iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2ceae8da iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3315eb1f iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4f277ff3 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x512a2413 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x543dcde8 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x599dad18 iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5b453a18 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5ee5ab54 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x86fd2b74 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9a771986 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xaa53c2fa __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb5e5289d iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb8979af3 iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbcd590dc iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc6472194 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc958c7e3 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcfb53346 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xda63cdd1 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe932aa9a iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xeb0a3f64 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf263c1ab iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x25a6b705 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3f5c0bd2 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x548f5048 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5dbbd5b9 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x703d9a94 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x830c9a5f __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8d12bde9 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9d117012 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa8e70caf lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa990a2fe lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc2a25f39 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd100ac36 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd27d5ffa lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdcc665db lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe65212fc lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfaa0ed3a lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x05a24c25 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x1c7f57f5 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2bb2c1bd lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2e00adfd lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4fa516f3 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x789e3ecf lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x8bc55d57 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc897bba5 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x066dfd01 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x14185958 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x15599936 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1cbab4d2 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x33d5d902 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4187158f mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5322c4e8 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x61652cd2 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x64786c9f mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x658cc89d mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8403082c mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8b8e9c81 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa1f72f21 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc37fba7a mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc462f3d8 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc94c9740 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe443492c mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf0098729 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfbf1177f mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x1808fc1e p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x2d9fef66 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x39e35a8c p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x4f58f2af p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x5a7f753d p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7f908f80 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x97e2692d p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xcb56a5d6 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xecb82e1f p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2fc62626 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x362d29c1 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x704f43bb dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc0dff3bf dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x01a97d9a rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0bd9d3a8 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x17d4169b rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2786ddf8 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x289c32c7 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x28df0de2 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x474b5089 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x51fb9436 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x59b297d9 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5f671606 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x63dd6f3f rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x66223608 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fba2b45 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x75b1d90e rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7e5f12d9 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x804ee37d rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x85b0f8b3 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8935c414 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x99189e6e rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x99690d31 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9fe12b07 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb5b896ab rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd1c6cf92 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe97c44cf rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf231de9e rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf3a3914b rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf57fff88 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07bc986b rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07f8e473 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b18b0a4 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ea384a7 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x210abc5f rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28d7c8af rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33809a58 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4578adfb rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a25cb67 rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a52b15c rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b92b21b rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5bd82bb5 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6345ee18 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9535a317 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe8795b3 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbea2be54 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xecfa12ae rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5b1c28c rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd04fcb6 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0b982441 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x15e7083a rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9e7f8bc6 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa5d4577e rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x01b6e6de rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x09bdded4 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x15c64466 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x17373eb5 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x19062b76 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x23fe4ade rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x26f38b56 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2aa0c236 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2c33a4d8 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2cb65fd1 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x373dbdb8 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4b0c72f2 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4fd59323 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x579e9d6d rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x657e8f53 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x66b54bab rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6ae73141 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6d94d91d rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x74b60c6b rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7a049594 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7ae50398 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8195c233 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8f23231a rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9277808f rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x962d5f57 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa27b8698 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb2ec7ff1 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb49c5f64 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbb581d7f rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc568912d rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc5c1ee22 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcb81d51b rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcbaf5b1f rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcf196907 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe0b1dd23 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe321b0fa rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf20194b1 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf8aee5a2 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x03d78335 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2681245c rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x602123b1 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xaa6dee12 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xada269d3 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xaf565f30 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb6e3c818 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbc8e4dcc rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd5be8192 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xec3dbca9 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf0fe5b9b rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf8ce294f rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xff05dd02 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x091aa749 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x12ef96ed rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x16e8bb77 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1967deb0 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x210d9a74 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x25152ebf rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2fc26d89 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3928caa9 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3a05954a rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3e87e530 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x404f975a rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x433dfefa rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x487b2a3b rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4b014cc7 rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x50935aa0 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x50ffd17c rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x54542731 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x545c6841 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x55fed6fd rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5ea4eab3 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6837890c rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x68edb395 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6dca2c17 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6fb7faa1 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7f83bafe rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8bbb6da4 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8bd7f32e rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9536e36e rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9b4c7ca8 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9fa47311 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9fd8c940 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa020c124 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa86ed13c rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xade9a0da rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaf482dd7 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbda01c6d rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbe62d5d1 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc1d6e926 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc4af272f rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd1ef5d9e rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xda404fc0 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe7f005fc rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf2cd600f rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf639adf8 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf7ed1abd rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfeb7270b rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x168470fb rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x6445da07 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xab0b6e26 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xadabbbf8 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xc86285d8 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x39174b36 rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x7464d054 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xd623b275 rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xfe16b54a rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0d6889cc rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x12430cd8 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1beff337 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x249dd171 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4277318e rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x449bf0de rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x904517bd rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x93a068ef rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9effca83 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb5dc7789 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb7032bc2 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xba44401d rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc6a5c1cf rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xcf6c8c74 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe7a5a1d4 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf8e56221 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x49550401 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x5aeeed79 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xabb28e22 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00e968c8 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x02f78020 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06885525 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06982338 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0bd8070c wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0d1df4d2 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10bf421c wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1126c8b0 wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1249ee93 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x18196883 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x184a7c5c wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21131c06 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2b5dd286 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3544b796 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3be5e2fc wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3cc07bfc wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x41fe2071 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4fd6b8bb wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x689e5bdb wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x89be50bd wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8c5e9b88 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8f976ab0 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x90319ccd wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9762c67a wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa78474cd wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaa6e49e3 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xad07853e wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae9fe617 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0bcd0c5 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1816ec7 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcb645b48 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xccd41ddc wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd9a2513a wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdc9531f5 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe09d43b2 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe1394b5c wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe31efd54 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe3d90935 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe7440ec5 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xea8f1af9 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf1b9f458 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf26e77ec wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf6ba52ee wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfbad242c wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x10108cac nfc_mei_phy_free -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x1dc0cb65 mei_phy_ops -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x7e60fbce nfc_mei_phy_alloc -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1bff0d27 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa25939db nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc05e5025 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xdbef9dd1 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0b89db5b st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2b4b0d93 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3a0d0c9b st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5b76d9d3 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x79e83b1f st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x80a10b60 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x86de527a st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc3f23bbf st_nci_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x5a77cfbc ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x79813416 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xb9756321 ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x11fcca1a nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4282dc53 nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x805020ce devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xae616819 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xcefb283b devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe4937ed8 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x958581e6 intel_pinctrl_probe -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xa3509bbd intel_pinctrl_remove -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xa69645dd intel_pinctrl_suspend -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xd956b619 intel_pinctrl_resume -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x24b9b45c asus_wmi_register_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xb5a9a60c asus_wmi_unregister_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x56235c72 intel_pmc_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x75068282 intel_pmc_ipc_raw_cmd -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0xa6c87106 intel_punit_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x111aafa7 telemetry_set_trace_verbosity -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x1bbf0813 telemetry_add_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x1be25432 telemetry_get_sampling_period -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4294042b telemetry_get_eventconfig -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4cb51f18 telemetry_pltconfig_valid -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x50c1c0a8 telemetry_get_trace_verbosity -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x611fd2a7 telemetry_read_eventlog -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x64c6a83e telemetry_read_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x73dcd24f telemetry_raw_read_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xb78846ce telemetry_set_sampling_period -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xbb9a2726 telemetry_reset_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xbf0d3d83 telemetry_set_pltdata -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xcbdc93cf telemetry_update_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xe7eb1528 telemetry_raw_read_eventlog -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx -EXPORT_SYMBOL_GPL drivers/platform/x86/thinkpad_acpi 0x706cdcef tpacpi_led_set -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x561c634a wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x876d29f1 wmi_get_event_data -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xda29f8b0 wmi_set_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xfb882fb7 wmi_query_block -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x1a06e39c pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x52c156ae pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xf332f9aa pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x4fad9e0f pwm_lpss_probe -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x6365870a pwm_lpss_byt_info -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xafcf8794 pwm_lpss_bxt_info -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xb563cdb0 pwm_lpss_remove -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xc34d815f pwm_lpss_bsw_info -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x36ac1677 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x92c82625 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb92e1c9a mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2a1b8f09 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x38e573e3 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc853503e wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe53f2eba wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xed2e93d8 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfe298fb4 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x7763dba9 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00ede515 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0324b910 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d494037 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e322bc0 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x14b7ce8b cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x196a0a13 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1d7acc82 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x20944a75 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2140b9ab cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a6aa939 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3216abf8 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e7b9814 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x42e3c057 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5089302e cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x511ac900 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x525be8fc cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x54e38069 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5a2e22ce cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c751374 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65834f03 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65e519d1 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6dd96308 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70fdc20c cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x78c3bbdc cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ad08611 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x85910236 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a0f7de3 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x91ab52ae cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x92e0214c cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99001be9 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa498c3c5 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8405253 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xad74eee0 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xadebc274 cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaf6eb4f9 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb6f0e77e cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb845b43a cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc498d9ce cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcb356515 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd9fefd19 cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdd97436b cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1669c6d cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe87175c6 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf57e9bf2 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf676ebd1 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf8a076c6 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x181497ee fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x18b13a43 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x39727b8b fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x496b500e fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x61c77e6d fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x626f3a8a fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7144cad2 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8f3b3fcf fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9a4a93a6 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbfd58170 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc8065b58 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcb83e931 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd49f71ad fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdca3b414 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe927fc9a __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf93d53a5 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0234ad4a iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3fd7a288 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x498f6c1b iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x81cdf4e0 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9ed3c33f iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc462d5df iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x03b8dd6c iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0a0107b0 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10841570 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1999e427 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a960693 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x231ae14e iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x272a0d33 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27971970 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39b04a53 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x526a2a22 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5582ddad iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x582697e0 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ae2787e iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6292ea98 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63eb3c49 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x67487271 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69ce6358 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7db2c820 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e1ad480 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x849981c1 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x859ba634 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d33aba2 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8dde2f0c iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93fdfae0 iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x973ed463 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a94c5d1 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e9b1535 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0ddeba5 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab2c9d92 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac96b6d6 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb68506b3 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbad65743 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe7b698f iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc72e9732 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce532a27 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde6f841d iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe426522f iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe46efad2 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeac3db85 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeef1e1fc iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfaf4aaac iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff9f2e16 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0201ba96 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x12c107aa iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x15b338cb iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x167eb3ce iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1e137f44 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x40f7e9c5 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7b1b5a11 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8cddd1ec iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x91a6aa3d iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9cbe873d iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa83e2b2b iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd1b69987 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd2e13af3 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd5b85c06 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd7bf88c5 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xda38991e iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe9794f4d iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x00ee980a sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x07278331 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x149949fe sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a6bb836 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x482d3ac7 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7a4b2446 sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x81567b4d sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8780a9ec sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9d94037d sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa347c39b sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa85a3624 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb7ef8c83 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb8c293e4 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb93bf5f4 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcbd171ea sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcd35b970 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xda704698 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe10a1d29 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe47104b3 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe96216e7 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf02b3056 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf1d0ab41 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf97e6c3c sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfa2db73c sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x00317851 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0134281d iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x070b8e44 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0dadc94f iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1531e88a iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f55fcbc iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36dd2cc8 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39a194f1 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3bbca48e iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42d9aa0c iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x43accb77 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4640fd73 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60f43d51 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6af25549 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6cba7f60 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x720b3cf6 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8273257b iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8578462a iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95611e85 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95f27293 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x998de278 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a7efc26 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e7db147 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa905c985 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaab98d49 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb17a5156 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbdf05b75 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc0e1f75d iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc3b43a39 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc99df3c6 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcb1732ce iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce0d6c47 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce3a4b11 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd60e8443 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3023fcb iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2e3b49f iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfa4833af iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfbe43cd8 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfca6f47c iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff1893a4 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x07349cd8 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa8f62bdf sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd112a0dc sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xdbc62d30 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x8c8ceba3 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2994b1cb srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4631e597 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x68386ef8 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x80a5aa5b srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x8450ec66 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf9ee373f srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x1dc63afc ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x34fbc507 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x360d415c ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x532b38f2 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x59571ef0 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x8c7403c1 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x9e762957 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1139be0f ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5fe19eb1 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x88690c18 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xafaae000 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb0136e80 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xeb64e2cb ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf1c62607 ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2ddd77e1 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3770366d spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x72ea305b spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbe36f88e spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xca1bdf79 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x102340e3 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x177fe512 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x36fff18a dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x60d4ab83 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x17881632 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2b6f6883 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2d231ba0 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2dac78fb spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x362a4e3e spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4467003b spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x52240ce0 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x707a21c4 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x808174bc spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x906ce50d spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa216818c __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa79dc505 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb9115592 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc1c307c2 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcced03c2 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf3cf7c0d spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf8bbaca9 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf9de16f1 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xffda1d80 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x09e81196 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x12df6aee comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x17a804ed comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1c1b29d2 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1f338788 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x22337555 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x24480e61 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x27e25a83 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2c7558fb comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2e990ad4 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x30fdde05 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x38162de7 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3ecfb1ea __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x40f73fb9 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x422a28ce comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4c3237a2 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x538045fe comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x56348f7b comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x60800f56 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x73ca3789 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x910a5927 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x986a7f98 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9de88581 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9f3b22fb comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaaab3367 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb2048635 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb78d0d0a comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcce942ce comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd100a5fd comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd8ad5fcc comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe1509659 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xeddf2ecd comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf38262aa comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf9497ffb comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfe63e9d7 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0b425a16 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0fccd652 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1491cb86 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x62b4809b comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x640cbd08 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x64ec6cee comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa9f622ef comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfff270f7 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x1c4e04a8 comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x519cc30c comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x618d6ed6 comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x9314edcd comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xf50151b2 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xfc3a2973 comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xfd4eeaec comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x142796d1 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x80d77c07 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x8a109d0e comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xdd2863ad comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xe8c3332b comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xfc0720dd comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xf3818723 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x8afe3175 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xe0a9726b amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x5588b181 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0a7c334f comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x324e37fc comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x40fde2f6 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x417778f2 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x69c2ce60 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6b210b8c comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6e055ebb comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7197cbe9 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9b6effd5 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa39b126d comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb490aac0 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe8a11f6c comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf60e8b78 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x37490a08 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xba46f360 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xe22ca021 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x32d1cb3f comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x256c2277 das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x043e677b mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2cdd43fa mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2fae1a0d mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x300b4216 mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x305112bb mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x307ac2d3 mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x30f9bb66 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x66b38e87 mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6e4590e1 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7282443e mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9507c0de mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9e3bbb64 mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa9b4e83e mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xad23dd41 mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xae5cd82a mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaef69901 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdce5bfb5 mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe7bea741 mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe98cadf3 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xef3b0e7c mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf712e3d2 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x31c70232 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xd3d60375 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x34b4d0d8 labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x519be101 labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x950f0a69 labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xd8f1e6cf labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xeff44170 labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0a721371 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x64e48cc0 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6cd6ab72 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x81a7c920 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xafd4e63b ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe19fe78d ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xed3346e7 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xfebd88c9 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x1ffb9a6b ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x291138f6 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb606b3ac ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xce369e23 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd7a94eea ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xddae28f3 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x1959e68a comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x47459fc9 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xc6a315f7 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe3fe42ea comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe6eadbed comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf1265e35 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf3d843de comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xf0ac8129 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x212b6f93 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x29138dbb most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x334edc95 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x588466b0 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5dcca687 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x693d0738 most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x69a5daba most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6c8c1336 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb51ebcd5 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe1f52a1c most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xeda12df9 most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf5c87c00 most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/rdma/ipath/ib_ipath 0x1514b2b2 ipath_debug -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2ab8daa7 speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2c6865ed spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x38ca4d17 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x43885420 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x455bc172 spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6cfd65ca spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x770eb2c1 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x785d36cf spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7ef11ee2 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x86ace850 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b3aeb81 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8d18fae0 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0877dd5c visor_periodic_work_start -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0ec0434e visorchannel_zoneid -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x13d922e8 visorbus_clear_channel -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x149bde55 visorchannel_clear -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x1582a13b visorchannel_signalempty -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x37626eff visorchannel_get_clientpartition -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x39fe5de1 visorchannel_signalqueue_max_slots -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x3a85d8bd visorbus_enable_channel_interrupts -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4063ea9d visorchannel_signalqueue_slots_avail -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x41d96143 visorbus_write_channel -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4c0e827d visorchannel_debug -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4e4bfbe5 visorchannel_signalremove -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x5123e79c visorchipset_register_busdev -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x5e533597 visor_periodic_work_nextperiod -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x6084f4d4 visorbus_registerdevnode -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x60aaf74b visorchannel_uuid_id -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x720775df visorchannel_set_clientpartition -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x7948d062 visorchannel_get_header -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x7a4ec5c5 visor_periodic_work_stop -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x7d3208eb visorbus_register_visor_driver -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x85b49e2d visorchannel_get_uuid -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x865e5ab6 visor_periodic_work_destroy -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x8f463ba2 visorbus_read_channel -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x96401fe5 visor_periodic_work_create -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xa428b832 visorchannel_create -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xac7771ac visorchannel_signalinsert -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xae9128e9 visorchannel_create_with_lock -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xb4aab617 visorchannel_write -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xca18358d visorchannel_id -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xcc89f91f visorchannel_destroy -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xd8649784 visorbus_disable_channel_interrupts -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xdaec263b visorbus_unregister_visor_driver -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xe3b5efe1 visorchannel_get_physaddr -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xed313c21 visorchannel_read -EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xf990f627 visorchannel_get_nbytes -EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x4434a105 int340x_thermal_zone_remove -EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x90210837 int340x_thermal_zone_add -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x334e5d6d intel_soc_dts_iosf_add_read_only_critical_trip -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x6064e883 intel_soc_dts_iosf_init -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x87a2b9fc intel_soc_dts_iosf_exit -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xf603e513 intel_soc_dts_iosf_interrupt_handler -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x75b60941 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x76432ca7 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xf13d4845 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x0873039b usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x56dad5aa usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x4f902c6d ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd3fad724 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0ebeb78a ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb7cc182a ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbd55da9b ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbe997fca ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc8b02d9e ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd1d980ac ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0464706d gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3374159b gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3640f19d gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x406d3deb gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x42608c0a gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4a257516 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x717fb697 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x79b649c4 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8b544f21 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8bb11799 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9dd9cb0f gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa0bb4430 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbfbdc65e gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdb1c33b8 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfacc21a3 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x26821258 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xeae25301 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x5d0b0980 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xaf74ef16 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xbb97a51a ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x10a120df fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1a630c5a fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1c362ffc fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x39f8a327 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3d671930 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x612a27e6 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x624971d7 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x64d516fd fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb7f4fdda fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc7ea206f fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcdc39ba6 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe2a962a1 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xeca40d8b fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf46a420b fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf93ded83 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x15e5342f rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x27d5c7e2 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x295a2fb8 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3cb44555 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x43e92233 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x684b7c54 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7133c28b rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x78c2a06a rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x90eb01e8 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbb2830fc rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc7479e82 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd24def69 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe4b0f2da rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xec97d4be rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfe4b0f16 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x05307cdd config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0951343d usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0b0e9b2a usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1af05d2e usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2641f16b usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2d2bb642 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2d9be6f4 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x337d4a52 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x40c5d2a6 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4bbc3db4 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5b9fadfe unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x67ddb1b5 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6da11216 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6faca357 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8d75678e usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f2e4ee2 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa3dc433f usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa5ff3e92 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xadeae794 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xae93c5cd usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb20660c6 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc3689c12 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc87f12b9 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd147f41d usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd4044f48 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd698bf0a usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdbcc4f32 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe724128b usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeac08fdf usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfed29ec0 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01648c2b usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x06bf501f gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x10aaecc7 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x11e1ecc7 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x176f75ba usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x35b9e1e6 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5f505edb usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x97c2acbd usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9ec0ea44 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa19014fa usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xadb3eefc usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd7669ec0 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf0ed77f4 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x1271ffa5 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xe52acb81 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4a635832 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x78e91c06 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7c45dfed usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb76e6af0 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb7b8578c usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc51e12d2 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd958a802 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe41fbec4 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf7f7a687 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x831cb7dd musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x50fe74d6 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xe1709a9c usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x06e16cd2 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0aa48ad8 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1dcdd0b2 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2b30461b usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x335dc2f4 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3d1e7a80 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x467f243b usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4fe50423 usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7be0cb84 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x87c650ff usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x887a6704 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaae00d5a usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb44e44bf usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb69c83b8 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbe47b737 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd0d3763f usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe20edb82 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe6ab955c usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe79d4d0d usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xec75b2d6 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfb14e604 usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x05435d24 usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0d08ec86 usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1a46b48c usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2083f0af usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x49af1006 usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x49af1aa1 usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x52deb957 fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x61247940 usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x69f9a377 usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6b8d6828 usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x70a2fcc1 usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x732c8cd0 usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x78cf71f9 usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x804976d9 usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x867ab19f usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x98fd35ad usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb703a605 usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdc75a4f6 usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe414c34a usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe5627211 usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xeb4744a0 usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf062a634 usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf3494708 usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf5fe136d usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x069405c2 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2284140e usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x264dcc1b usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3574d576 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4ad91ec5 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x551ecad6 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa414e9bd usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb47efbd5 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbb13ce13 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbb50fca9 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc37f8a86 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc4e1622b usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x1c393c55 wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5478b066 wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa52a3521 rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd3863f1c wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd491cef3 __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xea3d7360 wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf9f44c83 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x28b45076 wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x38ce7b2d wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x61df098e wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x670cd8b4 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7a71494b wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x85b2abd0 __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9975347d wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb5db5731 wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb68372ae wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbd85513c wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd92ff79b wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd9f67e36 wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe57bfd4c wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfc287398 wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x0a9e90d5 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xa5e4b196 i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xf357e067 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x133b3c5d __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x143297fe umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x52a96272 umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x66ba2f19 umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x897e4ffe umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9b910b3f umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9e5d674a umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xbb15030c umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x10dffa43 uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x129d9ac9 uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x16ffc043 uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x363ba8d7 uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x41e64efd uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x481b1f96 uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d956b15 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x50a3707f uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x51bea336 uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5374d0c6 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x606b62a0 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x63c2939d uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6a8877ce uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6c17c418 uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x74846fb8 uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7985eed9 uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7bc7d1b8 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x80b2918a uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8576041a uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8f08a21f uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x96f6b4e1 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa3e9f7ee uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xba30be26 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbede6ba7 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbf549ed2 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc2c48d65 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcb095a69 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd7215d25 uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd97789b2 uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd9ff810f uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe77967f1 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf01f902c uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf2fd710a uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf4ceb968 uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf5dd1b9a uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf610f8c4 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf678c6ee uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/whci 0xe307749c whci_wait_for -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1b6d03e6 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4c8f782c vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc591b857 vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd9d42a40 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xdd915520 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe256f9ac vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x18e1efe0 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x1d4c9ce7 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0a6d8def vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b9b77f1 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x22b6d731 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a5d11da vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3548283b vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3bf36262 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4215148d vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x466b9a2c vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb96f77 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57d91acb vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5c40601f vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5f208658 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6c61aba7 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x75166794 vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x790eaf56 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8daacbdc vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x99bf123e vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa145c4bf vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa445aa7b vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa7737d2e vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa9136e7e vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaad38d63 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbb9399dc vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbbe14657 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xce3c9c82 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xce98c56d vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcf35be61 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd77395ef vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdad62b42 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe638d993 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register -EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x221ad202 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6d1a7bc5 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x804cbf33 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x80be0151 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x89a0d0a8 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd43a430f ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe9c7acf9 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x104ecd4c auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x44130ff5 auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x46a7cfae auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x698a874a auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xba8523eb auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xbafef961 auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xbc69ed52 auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd982fbf1 auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe7e740dc auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xebda7217 auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x44d8ed61 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x3547e56b fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x57ec8ec0 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x085a7e93 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xdfaf9a66 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x22a7af24 viafb_dma_copy_out_sg -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x292da7a2 viafb_irq_enable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x79e6190a viafb_irq_disable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4f863e6 viafb_pm_register -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcaefb732 viafb_release_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xe2e88cc5 viafb_find_i2c_adapter -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x2a60f5ae w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x398813ad w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9199b88c w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9db21143 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa3409ec4 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xad8f6ebe w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xaf6a5328 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc808a555 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf32a351b w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x5612af79 xen_privcmd_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0e23aeb0 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x36a2c037 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb2b38969 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1d57a9ac nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x25dc59ca lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x785957b3 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa267c6f4 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb8d7508d nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc993441e nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd04bac08 nlmclnt_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0238da7d nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0794093d nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x086fddc4 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d7a414c nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d7d65f0 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f09249e nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17e839e0 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x187b11ca nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x193c288e nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a0e5c66 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ac515a9 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1af9d101 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bb55620 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c4c6a44 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1da77810 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1df90175 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f6d8c37 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22796dfa nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x239ab0bf nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26de556a nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2707305a nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2773e586 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27a0228a nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27e88b1b nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x291f3c56 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c66f4fd nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e7385ee nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3152efa2 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32731359 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34c500b4 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35f75731 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37d80059 nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3837cb16 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38cee920 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c3345b6 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4126701c nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4178e1ee nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4489f83c nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45dc7fff nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x465c3967 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x482f2250 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ad743af nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f37a903 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5106f66c nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x558bb1fd nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x562249af nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58fe1afe nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b3c572f nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b76da0b nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5db4325a nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x616ec086 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62ee0a6e nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68e8a9ce nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x698989e9 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b60228c nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f170efc nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f6a739d nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7181ac15 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73815a51 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75e2e49b nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x774f22f1 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d1fed96 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f283eb6 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86cd40b4 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8974d918 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a18f6d9 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c45d911 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cc5452b nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e8fa0ca nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f085110 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x927775bf nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95c96cbb nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98112b6f nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x992c9529 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ad2583f nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ad7e33f unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c76fb68 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0230717 nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa387604e nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6bda024 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8f3e41c nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9217e4b nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf6b5b1e nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0c2991d nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb28772f4 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb648abde nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb69d2b90 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb0065e1 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0827dad nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc165536a nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc16c17c7 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7c83b98 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca966255 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd1a7f7a nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd6be596 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce633fd2 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd101478f nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd22624c8 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4a60c7d nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9beb757 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbb9cfe2 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcaf5c3f nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdda0aa7b nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2dd7d24 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe414d644 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7129c6a nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe763131f nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9833585 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeafa1fa9 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb2b9cbf nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecd620f4 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed0169af nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed455c2d nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeee34d3f nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef7fe382 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf19c92d1 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf21ba701 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf421eaf7 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6885be3 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7539cc8 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7fbd713 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfea8d290 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffbd07be nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x916e0777 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0611d623 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x069ee338 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0fd6ed8f nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11d15c97 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1209dcc5 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x189339bb pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x190698cb pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x193b60dc pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1fc2e8da nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b356038 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3bbb0fe6 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45da25a0 _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4628327e pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49deb8c4 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4aae9799 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fd3c387 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51b1ae2e nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63f83a35 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6491d2d0 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c498005 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7bae1985 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ac49043 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c9f8922 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e4d7e1a pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99afdb16 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d5df099 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0e8a123 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa197f1b4 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2380f9b pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3bb1835 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7f370e7 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaacf3912 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaad10edf nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac01b709 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadf24404 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadff86e0 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae969404 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5c2e956 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb832e3e0 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb83f952d nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba6fe4b6 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbae562e6 nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd93597d nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0da2034 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc74a25c4 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca82d347 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcbf41204 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd03b16e1 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0f5728e nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1b46e90 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd29e117a nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd41e75cb nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd51ff85f pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd554b50a pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe172d148 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeaee3550 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfedf3f49 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff61d3fb pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x44c91846 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x89a05e5e locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa70aa37d locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x082bfb3c nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6f680107 nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x23da3c7a o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4ffdabe5 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5d3fb2e1 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x855e6c4e o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa31f6b49 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3f0976b o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd178d1f3 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2b56a0b4 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9016cb05 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xaf873095 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xba075589 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xca422f8e dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd669b540 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x28721da8 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x627fa61b ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xebb9a7c8 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3c4a7e4c _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xbf2f01b1 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc18a6465 torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x9ea64159 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb740645c notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x6ae295c1 lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x7f94da62 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x1b9faa79 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x43df3598 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x71a3f68e garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xa03344a2 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xd13a88f4 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xfda76a64 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x12ad324c mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x89b60c14 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x8ebb1d73 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xa9d5dce8 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xe7de8dff mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0xe9650988 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/stp 0x49949b90 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0x9deb571e stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x06793f55 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0x525c5728 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/ax25/ax25 0xbc8ca4f1 ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5a422b44 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6a5e49ae l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7327eb41 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xab6e6668 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd044b3b6 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdf39af84 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf94aec3c bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfcd2e871 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1c3aff14 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3f6d4378 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x45f8cfd0 br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa8db51f7 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc73b3273 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcde7de04 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xea72ebcd br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf48764a3 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x36ebfd2f nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xbc348e4d nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x05989ff8 compat_dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0f784fb5 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x10063322 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1124af04 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x188d7a67 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x23672cd0 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x252733ad dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2936105d dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2ccd7915 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x39bca9a0 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x489bafdb dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e2d4d99 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5015acfb dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x51e8b45a dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x532899c1 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x55d8d5ff dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x56d6831b inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5eb33a9c dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6f6069db dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7624ac61 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7f53f4de dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x83df0bde dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x88ededcb dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9ba02685 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9e09b22f dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa802d1ba dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xac82f7d0 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaf91e20c dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0a9299f compat_dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcdd17c6b dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf6f3259 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd51a044a dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xeac729b9 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3b1fc84 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfbb32288 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x27613ba2 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2d624e54 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5b9dea10 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xad7dc225 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb165872c dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf43d7929 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x2cbcceab ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5bed1374 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8bff68d6 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf0fd8501 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ipv4/gre 0x24a2dd09 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xf0f93d3b gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1ac3e3c0 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x27841bf7 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb413d2c6 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcdf1755f inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd4bd9970 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe86ad1c8 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x45f60df5 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0dce0bf4 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1b570321 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x20953a96 ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4e89ffdc ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x57adf6ef __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6b1f2cab ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7e142d14 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x944e7e0d ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa5cc4228 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb066132c ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb51f1d3e ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc8f6c6f1 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd183fb07 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd765cf2c ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xda78e6e0 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x1515628f arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xb00ca9f1 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xb0f77d8c nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x45b1e12d nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x6d799282 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xa442f426 nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xd143d97e nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xe9b1691a nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x860c53c5 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x09b1462c nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x16908eb0 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6cdc3339 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa6af8dc9 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbbc8620c nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x14c26e86 nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x03a9732f tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2225a25b tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x669e28a8 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x78911516 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x898d396c tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x42ca763c udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x83ab9370 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9629e6d5 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd65f02ac udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x213d6f6e ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6604e70f ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7da0a288 ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9807b2e5 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xbacd26da ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf968a4fc ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfe5cde17 ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x648cda28 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe38afd3e udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x15e3c69b ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x36f6c6d2 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xd9a37d06 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xd1d7b489 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x0dbfede4 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1b0c3bbc nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1e8b7e4b nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x80dfaf60 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xe1c24ce3 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xc3900f42 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x032db24f nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x12a01693 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x91964522 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9698863c nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf08e05c6 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x7f3a46b0 nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0b5af973 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x11b467bd l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x28dc915b l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3e9dff27 l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x58fa8b8f l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6618e3ff l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6e70734a l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6eacaa36 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x77cfc661 l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8d943d44 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa037d0f7 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb057a726 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbba4801e l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbf0afb2e l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd876ad77 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf40c9d25 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x8ac0ba8e l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x233d7211 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3f4a8d18 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x698bd0bd ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6b2d72e1 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6ff56ac4 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7175e5da ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8248b02b ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8494b151 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x89edd0d3 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa3c730d0 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc7fe6302 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcc410da7 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd4292097 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xde57b3cc ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf37e6de0 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x2bc290a9 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9412d6d9 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xaec262be nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xafd90cc7 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0af67dac ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x11c8204e ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1259f940 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3a1b4f59 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4b0246a6 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x649824c7 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6db0fb6e ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x73630c51 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81e46091 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9b89f6b8 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa05c6b73 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa6a73dec ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd58c3fe6 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe714c3ba ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe7dcb67a ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xea4c71c0 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x09d84406 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6bf37fe1 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb6eb43a1 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd651482f register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0020783b nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0493f570 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x085e9219 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d112ebc nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11d686c1 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b4f9677 nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d70e406 nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2003592b nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20b0ec77 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21b16fdd nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x221da98b nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x231285e3 nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23ca129a nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e87c2ad nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f5800bb nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30db1ee6 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c5dfe12 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d3adb61 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f6323e9 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41b7874f nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41f684e4 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41fb43d1 nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42794e91 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4998f660 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b2b1f49 nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5307dca6 nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5741cfff seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x581861d4 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58e17520 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59d57e6a nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e8dd60e nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6418b44f __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65dcf522 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67bac6df nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68321413 nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68b727c8 nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a18dc58 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ca74500 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6cbbb48c nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e40ec26 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7381e5cd nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7bc3123d nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84037247 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87b17618 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88d2297b __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9492403f nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94e9e79a nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9753b8cd nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99a6580f nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d5bf6cd nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ff9a19c nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8f3fcda nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9e017a9 nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa6eb8d2 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab80a90b nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac18a459 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadb8528b nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaedbf28f nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1b50fd2 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6a68195 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb820e75 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2781b32 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4c6a859 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc74f4431 nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb00f152 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb122753 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcbdc3783 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce32e327 nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc0eaed9 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0d9c3c9 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe188a92e __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe680cc3a nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xefd7628b nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1a042f3 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf217314c nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2566d16 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5ba926b __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5bf066c nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf60ebb33 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x7673025a nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xea43e60d nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xb74dfcef nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1d5b498c nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x93d767ba nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x99950993 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xad707d0d set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc497756d nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc61aa253 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcc57bc7c set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xda24f384 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe594dd9f set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe5b84832 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x688ccbb8 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7f8001c1 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa472843c nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xeaa3609d nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf70a4c05 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xc67a2d37 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xdfdf2294 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x119ca9f7 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2d2f2b1d ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x41bc561e ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x65c2f0ae ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb322a028 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc02f0cc1 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd4b1d788 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xb6400883 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x43b55192 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x05d6dfcf nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x94d87c5d nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xc6d59779 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xfeb216aa nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3271b85c nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x51a6b7ad nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x67617e6f nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x69c7a08d nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x787a8ee2 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa0cf7398 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf3735e70 nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf46e8cdc nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf723db1e __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x323057a4 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x4003868a nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3db33ee9 synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9b98d02a synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00ee3187 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0949f193 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x18d775d8 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x210c2ec0 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2e7f94cd nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x347510c8 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3bba9505 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x466ef3d2 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4b6feef6 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x639bbecd nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c4288ae nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8cc63ea0 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x93d58529 nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x96c07c85 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9ee94218 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdbd6b935 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe01a69d9 nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2aeeb917 nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x46019111 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x48568fbf nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7ff42f81 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa927459f nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd4b1cbe8 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf0194fc3 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x64dd2054 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8362ef53 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xfa0e91f1 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x592a9bac nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x0078fc1d nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x9b18c298 nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe8445efe nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x24c7ba4e nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4583d047 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x828e4626 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xa9247f0a nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xc41c982a nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xdf2781af nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x1b013580 nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x1e8c39e7 nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x38a6acc3 nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1cf48ba2 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x8a847a1b nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x07f39dcb xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0f44f1be xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x12ea9775 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x217e78b8 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x237ddea7 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2b236f25 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4e355eda xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6e2adcdb xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8aa26336 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8e96f7e2 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x919117e5 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x949e54f9 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa29e570d xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa782df2f xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc59e7c49 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdfa414cb xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdfbb8a71 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe2b30166 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfc46f761 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4c32c169 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb7459345 xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x893e935e nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x9eb3a508 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xd5928a02 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x82ccc8f7 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xa5bbf6c1 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xcb5dbae6 nci_uart_set_config -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2da345d7 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3affbe39 ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x554b626c ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8b25e323 ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9a191292 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9b2fee1f ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa0bca677 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa52b9b50 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xeab89bb4 ovs_vport_receive -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x12333bdb rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x137eaedb rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0x15091369 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x1573117b rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x1efc30dd rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x2b6492e7 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x374fe798 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x49e6e3f8 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x57799d2d rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x5b972341 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x71a552e1 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x7682e7c2 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x86e71ecc rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x8bea9e5f rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xb2433993 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xb4504f78 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xbf5eda1f rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc55de910 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xc96b4590 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xdb7c03dc rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xe45f8670 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xef0383e1 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xf51c5a6b rds_conn_destroy -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x16f0122e rxrpc_register_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x38676380 rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x383d1655 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8e567a93 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe0141cee svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00f030f2 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x040de75b rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0666f4ff sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x090c55df rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09c76b7c xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a1ad898 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfa2267 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cac7584 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ea8d622 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0eeb5a80 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10c0172a rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x134fb9b9 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13c32ad3 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1452e832 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17aaf67a svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1db5ae59 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e37353c xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e8f9323 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e98c998 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f0de483 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2180e1c9 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22d7904b cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x254bb936 cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25d44fe9 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2793ddd4 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aaa9efa rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d00f663 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f1c09d7 rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3190c66f xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31afde5a xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x321b9f1c rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3344ecfa cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37960e36 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38c7e522 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39c3e44c write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bfd409d sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c46572e rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ca9b870 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3df7d2b3 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f69d7c3 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41e4ccd9 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42fb2970 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44377788 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x448ffcdb svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45fccad3 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47e4eb91 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48fac321 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49046636 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a0632bf xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a31d35c rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c8e3de6 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cec5cf2 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dc42e52 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ef17987 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f92a6d7 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50e50c9a rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52135910 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x528985f9 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59d96b3d svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5afad567 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ccf3dec svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d0c75fa rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6036c832 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61c25707 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63845f69 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x641c6ab8 rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x641eded5 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65083ff4 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6856f524 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x689ad89d rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68fe8f33 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69c322ff cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a40b022 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cc8e329 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d6b3a52 rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6df944e5 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f8664a2 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7058d324 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x722cef0d svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x748da121 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74bfe525 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x764bf2c8 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x770e281f rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x775f5e27 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77e0aaaa svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79c1b530 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a5f3864 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b188942 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b8c1de9 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d170d24 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x808305f1 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8165ff9a rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82fe175e svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8459e8af rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84de9d04 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x852ffa5c svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86e0c332 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89a30ed2 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89afba90 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a8eeacd rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b336305 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b5222f5 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d1e3f2f rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e381ca3 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8eeeb652 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x913e4085 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92fadf61 rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x930d2cac rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93ed6762 rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x942b80a3 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9530820e rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95a6f551 rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x966c4312 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x971383cb put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x975cc752 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98d2ec7a svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x997bb318 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99b58f61 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c1b6eed svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c46333b rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c698ab3 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c70595b svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eb5c075 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f34b73f rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fcdcdc7 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fd79d4b _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7854411 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa365857 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac226714 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac8ed684 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacc686ea rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad73c31a rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad77dd45 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaeffac41 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2a2022e svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb94b3bfd rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb979fe30 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9d5a84d svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ff9cb3 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba0cf312 cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba13437a rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba3d542c rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb545b03 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb8583da rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdaffd7c xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbec215b6 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbee3a53e xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0d4f2e9 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1aaf4d6 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1faf484 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2752c53 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3fa5a42 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7af7122 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc81c4953 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc880dc78 sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc923f414 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb6698cb xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc4d0fdf xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd541fb7 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdae19e0 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdd83d42 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcec85e29 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfb2d7c4 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14c8eb9 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4782eef rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd58a42a7 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6304160 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd84a2266 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd934c962 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda1af301 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc0546cf rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdda1082c rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0d7a246 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe25b7010 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe41f0021 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe45e0a21 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea0b9026 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb80b343 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec6231e8 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecf7f206 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef8acc93 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf06f4110 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf089478f xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf11c6b45 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1db5241 rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2c72ae5 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf39db7ae xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4c2c009 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5398977 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6cc23ff xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf79a0356 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb663f0f svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb822b8c gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb90ced5 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfed077d6 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfede7d6a xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfffbcb67 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1df2f542 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3c488e6a __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5b16de32 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x61f3756b vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7748d8a7 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x799d0d43 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9ba35bba vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa04e28f9 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa28fed08 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd8d7915 __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd21fbd51 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd67fd655 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf9ccc314 vsock_insert_connected -EXPORT_SYMBOL_GPL net/wimax/wimax 0x12a47039 wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0x26450f4b wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x3004aee8 wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0x46e0404e wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0x6ffaa8b7 wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0x7b347eb1 wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x7df3a3ef wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x8b36b652 wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0xafdf335e wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0xbdb5e2d2 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc1517f92 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xd551206d wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0xdf4a8e75 wimax_dev_init -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0b476a9d cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0de81f34 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3993eca5 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x41092fb0 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x67623298 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7289fa00 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x86fcd801 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x916ce6f0 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9e5c9d5c cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa005a932 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbbacf343 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xea293440 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xebe86ed4 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5c419cef ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x85d2ab85 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x86d00910 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd55ea22c ipcomp_output -EXPORT_SYMBOL_GPL sound/ac97_bus 0x897b8a8c snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x94be37b9 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xd93075a6 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd 0x11aa6e01 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0x448a28cf snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x475bccfd snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x7adc5a74 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x7d291cd0 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0xc81492e7 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0xf04ae01d snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x5dc23d24 snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x8004d475 snd_compress_deregister -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xbcbc696e snd_compress_register -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x16869384 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1bc34f23 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x33c954c8 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x535921b5 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x660b8f46 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcbab29f4 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd42a22ce _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd80b1b55 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf582cc22 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x16addcdd snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1ab20745 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1d775112 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x287f8937 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2a4a1d56 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4eb3357e snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5f8464d3 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x60ae9f28 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa7c9181b snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xcf8b392e snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdcd817db snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0939b51f amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0bb7f6c8 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x158d09af amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3d2bc537 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6193c6f7 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa171b347 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xabc1d206 amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x04caa9d3 snd_hdac_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0867a8c7 snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x09e9b3ec snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0e28f1ea snd_hdac_ext_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x11bc9043 snd_hdac_ext_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x194f8f69 snd_hdac_ext_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2072e69e snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x22e46695 snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x382746fd snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x38fa4a7d snd_hdac_ext_bus_device_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x43b38c08 snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5312a4ed snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x711873eb snd_hdac_ext_link_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x84d6a891 snd_hdac_ext_stop_streams -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x99d471e9 snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9f71459f snd_hdac_ext_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa42e162c snd_hdac_ext_link_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaa52620f snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xacd58097 snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb4f9ddcb snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb6ba5c79 snd_hdac_ext_link_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb7cae5c0 snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb8c55c20 snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbe94cb60 snd_hdac_ext_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcd74a86e snd_hdac_ext_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd331d171 snd_hdac_ext_stream_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd68a160a snd_hdac_ext_link_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd70fa2be snd_hdac_ext_bus_get_link -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdb7ba1e4 snd_hdac_ext_bus_device_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe0386f33 snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe06017d2 snd_hdac_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf3adcd7c snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00319bb6 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00ce0e09 snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x02c99ed0 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03c884fd snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x09d31f5d snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d7140fa snd_hdac_get_display_clk -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0de1b6cf snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e533f3b snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x132c7065 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1390fb46 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13dfd933 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15bf4857 snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15c52c09 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1665eed4 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17908809 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19ac96a2 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x283ee3f5 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28428b4d snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2cd67b62 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ff844bf snd_hdac_i915_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31fc05aa snd_hdac_i915_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x342278de snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34f16cd0 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f19ccde snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x406a7d30 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40d5cb51 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40ddeda1 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42072bf3 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x462f25c2 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4973304f snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c9f8bfa snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e84f0c1 snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4fcd3039 snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53dbf147 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x568959d4 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56c456ab snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a751837 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5eebafc7 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62c12c7f snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62cd361c snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73187668 snd_hdac_i915_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ab6bdae snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x939a2e22 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x945745e2 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97a8f4d3 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9cee530d snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f9962b6 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4b77ccc snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6c187d3 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7add912 snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9baab57 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaec691c1 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaef325d3 snd_hdac_i915_init_bpo -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xafe1bc89 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb06d47f4 snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb19778b2 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1dfe465 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5b7f079 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba264fea snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba9acc8a snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbcec0a16 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd1e258a snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc163f070 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc272a331 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc68a9962 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd03f5cbc snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0e0ce5e snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd20540c4 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd271b345 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2ae510b snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7bbfbc1 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdaf7a343 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc8b6ca0 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xddab99b9 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf030b8bf snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0bbe825 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1d70c54 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf68ba1b4 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x35b3c323 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x74912a87 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8d7d067a snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9a289485 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfad1db93 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfdfab2ac snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00a45f32 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02b55095 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x041df755 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x042ef6cd snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0586b527 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x068aca32 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06cb0aa2 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a01da75 snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a0b3b2e snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ef3c026 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fa2e5d5 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fc05b72 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1044e1b6 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x105a25b0 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17562c71 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18b604c3 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1df01282 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ebbaad4 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23ce83e1 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x259a49d2 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x266fa4eb azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d1b372e snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e6fe1fd snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e86ef2e snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2eccbe5c snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f249996 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x314ed8de snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x337699b4 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33f564b4 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x345642c2 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x347fcd1b snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b3baaba snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b6fd630 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b9f3483 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3dba8612 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e887b03 snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e8911f8 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4159d060 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42d6aeee azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43819c01 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46cfad74 snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x472afb12 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x496fc4c2 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a6bc759 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a82cae8 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a9e779f snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b6b4710 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e0d1ffa snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5192c9fa snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51bbda91 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56d34a90 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5920f785 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59fb4f76 snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5dccbe84 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61e81784 snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x624be272 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x632af577 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65d9579b snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a0673a6 snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ab69c3e snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c7cab25 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d024ede snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e696885 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ff294ed snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74dfb8fd snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7aff6298 snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b6b8a6f azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7dc5c55c snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80aa71df snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a86eb02 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bc40114 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c819826 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f27eba7 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91045aaa azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9205ec0c azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9212beaa snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x923dd5d0 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9252af00 snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93a6f919 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93c3fdad snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x948e6be8 snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98796c76 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x987e55b8 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c018e33 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d8d8b3d snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e934f26 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9eb220f0 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa272ef12 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4f34ebd hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa575937d snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9d2aadf snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae5aab3c query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf9fdbbe snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb425f7d6 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5baac48 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc7c8e35 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcbd5202 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcd972f8 snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3414e1a snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc63dc340 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7e1b800 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9461dcc snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca29d192 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb62a4bb snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0643fc4 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd24baec5 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3223209 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5500ccd snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd63324c8 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb9a5f47 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde6eb80c snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf6dc22a snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2be4f6a snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2f96751 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3121520 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4afc361 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe86732dd __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebf04189 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef234236 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2032674 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf25506d3 snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf49c74cb azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa837123 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdef3d3b snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0a7237ad snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0d54bd97 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x18702e7d snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x37db02b7 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3c2c50a5 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5757e7d6 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x59a69886 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5e154c18 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5f2c4e73 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7432f1de snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x757a0a59 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7814f72b snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8ea9c0b5 snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9790097b snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcaf658e3 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd8fc3b33 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdb232f7a snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xddf55e90 snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe4e05dfc snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe5a8b6fd snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfcb869f6 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x61f8ae05 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xd0eb53ee cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x2d945700 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xdc756848 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x15a6761b cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x26baea62 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x287d580a cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x1f9af9cd es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xb3a19f6b es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x03cd1f40 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7c435fe0 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x98562a83 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xc779744a pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe34da053 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0x6e0809f4 rt286_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x366e0b71 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x80d3717b rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xf7f5557a rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x101eb068 rt5670_jack_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x1bc8b2c7 rt5670_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xc8318f01 rt5670_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xdafc1b81 rt5670_jack_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x26ca033e sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb4b74cc0 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xbe9a6a47 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc3deffeb sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd5dbff8c devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x91d704a8 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x0e331d17 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x7d962832 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x10a63247 tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xf4b3cc20 tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x25eedabc ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x478d6282 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x6b765cd9 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x9fa4acff wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xc9c1ee59 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xf433427d wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xfeb719a7 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x5d68bcc1 fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xbe0a0d65 fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x5c72e779 sst_unregister_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0xf88400d7 sst_register_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x23c948b6 sst_configure_runtime_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x4faad9b0 sst_context_init -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x6f7b2968 intel_sst_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x76cedf14 sst_alloc_drv_context -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xab14edd5 relocate_imr_addr_mrfld -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xb09ec587 sst_context_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x35fc9c1c sst_byt_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x4078a57c sst_byt_dsp_suspend_late -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x4cbc0156 sst_byt_dsp_wait_for_ready -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x8ea12834 sst_byt_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xd8265ce3 sst_byt_dsp_boot -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0173cae3 sst_dsp_shim_update_bits_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x089c2df8 sst_dsp_dump -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x11d1efa6 sst_module_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1420674b sst_fw_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1821ecbb sst_dsp_register_poll -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x19920001 sst_dsp_dma_get_channel -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1b5e8b82 sst_shim32_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x25a8f860 sst_dsp_shim_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x273e4f0c sst_dsp_ipc_msg_tx -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2dbc8a16 sst_dsp_boot -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x349c5dfc sst_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x439cc9c4 sst_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x453f9499 sst_dsp_shim_update_bits64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4a045773 sst_shim32_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4e2c526d sst_fw_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x58a04289 sst_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5b56be5e sst_module_runtime_get_from_id -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5de61f8b sst_block_free_scratch -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5f7a022d sst_dsp_inbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6b14f3e3 sst_fw_reload -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6d7d435a sst_memcpy_fromio_32 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6ec08d81 sst_module_get_from_id -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x760ecf83 sst_dsp_stall -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x799feaea sst_dsp_shim_write64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8786c6f3 sst_dsp_shim_read64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8d3e16c2 sst_fw_free_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8da38e68 sst_dsp_shim_update_bits64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8e952217 sst_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9207eabd sst_dsp_mailbox_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x93f97285 sst_block_alloc_scratch -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9e45674e sst_mem_block_unregister_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9f3a7f08 sst_dsp_shim_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa634dcfd sst_dsp_shim_update_bits_forced -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa8831677 sst_dsp_dma_copyto -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb18e4f04 sst_dsp_reset -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb5ceeb53 sst_dsp_shim_update_bits -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbcec5387 sst_shim32_read64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbdca7b19 sst_dsp_shim_read_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbff7301a sst_module_runtime_save -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc4cb4b0b sst_module_runtime_restore -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc8314145 sst_dsp_shim_read64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc862a458 sst_dsp_outbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcbde9327 sst_module_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcd11738f sst_dsp_shim_write_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcd3a2d56 sst_dsp_ipc_msg_rx -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd05e34ca sst_dsp_dma_put_channel -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd3c8389b sst_module_runtime_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd9a2c94c sst_shim32_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdab1713a sst_dsp_inbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdfaf780d sst_dsp_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe03ef94c sst_fw_unload -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe3998c4a sst_module_runtime_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe67ef20e sst_module_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe751dc5b sst_dsp_shim_update_bits_forced_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe9a6f4c8 sst_mem_block_register -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xebce3d85 sst_module_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xee190649 sst_dsp_shim_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf3ba1769 sst_module_runtime_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf8121c1c sst_dsp_dma_copyfrom -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf97f62f0 sst_module_runtime_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfa49ec2f sst_dsp_outbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfb31daba sst_memcpy_toio_32 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfd9b3ef3 sst_dsp_get_offset -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfef13963 sst_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x41d90dc4 sst_ipc_tx_msg_reply_complete -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x44cd96cd sst_ipc_reply_find_msg -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x47c51602 sst_ipc_tx_message_nowait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x6e08e4be sst_ipc_drop_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x93fd60e7 sst_ipc_fini -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xb547fb00 sst_ipc_tx_message_wait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xe7a2a6cf sst_ipc_init -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x5a281d2c sst_hsw_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x7ec594c8 sst_hsw_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xd1f69f64 sst_hsw_device_set_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x03b6a9be is_skl_dsp_running -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x04b6eb2c skl_ipc_init_instance -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x0788ff6e skl_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x20f22e73 skl_ipc_bind_unbind -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x4084cbf6 skl_ipc_save_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x70129ddd skl_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x88090e46 skl_ipc_set_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x94f60219 skl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xa3695781 skl_ipc_set_dx -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xac00744f skl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xb02188cb skl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xb0fcb612 skl_ipc_create_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xc6d27b57 skl_ipc_set_pipeline_state -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xc8d119ec skl_ipc_delete_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xdd0def9d skl_ipc_restore_pipeline -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x024c033d snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x025f95ed snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x030edb70 snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x050f611f snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x054fdabf snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07b4e0ba snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09e02883 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a522b4b snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0af8a7ad snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c31597e snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d599f19 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0db32a6a snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x107c6fbc snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x116a49ea snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11e3598a dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15884b16 devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1680971d snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17b2af8b snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x198ae91c dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19facc1d soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b73499e snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f8c1c16 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f9093df snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x262c7301 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x271c3bb1 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ba36859 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bd634bb snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c959cd2 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e2ffcce snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e9b1e37 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f1926bd snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31645df0 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x326b4fc0 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x348d4137 snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x384686d8 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x390100aa snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a23e224 snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b7a4a08 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f6e6621 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x419ba5e4 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41a83ddd snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47387e71 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x479df7d3 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47cfa827 snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x486f3f05 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a5db498 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bc14a6c snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4be6fc71 snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c6c7f8c snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4cc72eb8 snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa7ef85 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fc4ebd5 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51867c41 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5211a1de snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5751bfb5 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5aec2e77 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b004c02 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b40697a snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b956bdd snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ec15bb8 snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6288f9a5 snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64bb6180 snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x650fc5f1 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x659e1882 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x696da55c snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69ae6b55 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e9208b0 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e959e4c snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70e4eece snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x721b5bee snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76201783 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x762a84b3 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b895c91 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ce7ccf6 snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e1a70e2 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8291df93 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83000cf2 snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86a33bfb dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b1429ba snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fb5c026 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9045cb05 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x908e42a3 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x913d54c3 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x914e663c snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x940be150 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94a77dee snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9656edb8 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97e45895 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x988145c6 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ba5f13f snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c59e205 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d24a4b0 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d3ee082 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e1c5ae4 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa02e6084 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1b7e5f8 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1c1b556 snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3c9f5a2 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4a25d5b snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa94a8b48 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab488d1b snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad0dfa5f snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad74f4d5 snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae670047 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaebb572d snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0ff3dd3 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb41abbc5 snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb81eb8ca snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb93010c0 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc176b8c5 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4b55dd8 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc55ccf38 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5c47ae9 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6050b2f snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc91dc189 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca3f86c3 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca89c233 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb331742 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdaccb00 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdc62db8 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd199b42e snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd565d5e7 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7616da2 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8a800d8 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaf2d21d snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb69aa62 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf2dc5f5 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfdc9be2 snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdff8b55f snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe035d9f9 snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0cd6dbe snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0d08be4 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0d4626c snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe263d16b devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe26fc9ee snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6e76269 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe74652ca snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7af9b87 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8ffd3fd snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea64bd42 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecc7a98e snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedd22433 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee40d2ce snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefadd6ac snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1150657 snd_soc_tplg_widget_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf871a219 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf96e9ddf snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9701944 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf98c4a27 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb78e06b snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfcb77f23 snd_soc_tplg_widget_remove_all -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd6567d2 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdf9a8f3 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfff020af snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0542a515 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0fb0b810 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1605170a line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2c1007ac line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3223e3d0 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x55262d81 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5b1dcebb line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8bb9aa16 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb52ddab2 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc267277b line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd0ad3f79 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xee15b144 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf15433c7 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf3b7832e line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf5096b1c line6_disconnect -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x08003b2f i915_bpo_gpu_turbo_disable -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x0d97d346 i915_bpo_gpu_raise -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x358a54ae i915_bpo_gpu_busy -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x451432c2 i915_bpo_gpu_lower -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x7d4de94c i915_bpo_read_mch_val -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1e678bb2 dot11_pkt_type -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x2c317edf ven_rsi_91x_init -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x309c1202 rsi_default_ps_params -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x368fde0f rsi_remove_dbgfs -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x437447f4 rsi_hex_dump -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x45ca198c ven_rsi_dbg -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x65557ec0 rsi_config_wowlan -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x6b08adfc rsi_send_rx_filter_frame -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x8102e15c rsi_hci_detach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x88511e19 ven_rsi_read_pkt -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x8b21cd55 ven_rsi_91x_deinit -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x94e7dae2 rsi_hci_attach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x951a0fc5 ven_rsi_mac80211_detach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x956844cd rsi_deregister_bt -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xa0808afc rsi_init_dbgfs -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xbc39a4a5 rsi_send_rfmode_frame -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xdeadd3f3 rsi_hal_device_init -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xfb8baace rsi_hci_recv_pkt -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x0013de57 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x002b62dc spi_async -EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices -EXPORT_SYMBOL_GPL vmlinux 0x003e8508 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x00457e36 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x006d9457 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x006f06c1 klp_disable_patch -EXPORT_SYMBOL_GPL vmlinux 0x008e38b8 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x00a1c5f6 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x00b4cdec regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0x00baf3f1 tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x00c240ad dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x00dd6bc1 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x010a67c9 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x0127e745 acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0x012e913d regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0x014927d2 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x0155ae0d mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x01584106 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x0180e4c0 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok -EXPORT_SYMBOL_GPL vmlinux 0x0193750e virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x01b2a73a cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x02132c57 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x021c1a74 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x024b516c serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue -EXPORT_SYMBOL_GPL vmlinux 0x027579b1 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x02808739 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x028cacfc put_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0x029084c7 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x02922bd8 percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0x029b7af0 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x02a76be1 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x02eafcc1 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x030e0ad3 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0x031dcc9e task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x03557519 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x0393ed62 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03a59d47 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x0437d291 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x04443158 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x047a4776 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket -EXPORT_SYMBOL_GPL vmlinux 0x048a6eda l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x049e583b ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04ad724f nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x04b22da5 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04ca06e3 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x04d11be3 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt -EXPORT_SYMBOL_GPL vmlinux 0x04f1293e gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x04f2d26a gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x04fdf8ac _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0x0502b5e5 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x050c7171 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x05147b1d regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x052eb281 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x0541cac8 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x0542eba1 napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05645976 i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x0591c61c crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x05af55be sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x05cfcf4c tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x05deb4a9 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x05ef6229 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x060b1008 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x060bb085 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x06119ce4 nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0650a595 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x065f6826 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x0665151a platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x06807848 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x068807b0 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x06a8d21d __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x06b1cdd4 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x06b35858 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x06d00dfa __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio -EXPORT_SYMBOL_GPL vmlinux 0x06dc09c8 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x06ee6385 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x06fd340d __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x07013895 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x0702bc92 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x07087d11 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x0720720c pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x072b39e6 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x074964d0 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x07505e78 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x07794e2f class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x0788b634 irqd_cfg -EXPORT_SYMBOL_GPL vmlinux 0x0790f5c9 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x0795a76c device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x07960b71 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x07a385bd register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07b6580b ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x07ee6a96 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x07f6be72 register_mce_write_callback -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x0816e64e ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x0865cd54 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x088cebc7 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x08b53e38 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec -EXPORT_SYMBOL_GPL vmlinux 0x08cc2eb4 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x08db86ef vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x08e596bd ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x08e841c3 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x08f3acb5 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x0903cb29 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x090d3093 thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x0936540e crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x093a19cb netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x0940e8b6 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0951f5df adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x0989a426 securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0x0989dbda usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x09b8c457 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x09c99179 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x09dc6ae5 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0x09efbd0c gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x09fe0c42 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x09ff9d0c __class_create -EXPORT_SYMBOL_GPL vmlinux 0x0a072b1c xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x0a33a3a5 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0a6111d1 blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x0a89b06f tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x0a8e338d dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x0a911dff cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x0abc9206 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x0afd34bb __module_address -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b217587 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x0b2c2f17 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x0b3db15c pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b6678bd usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x0b6f7ad3 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x0b9e3096 fpu__save -EXPORT_SYMBOL_GPL vmlinux 0x0ba4ea8c pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x0bc6a4c1 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x0be2c213 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x0bee5092 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c2e4ff9 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x0c4d9496 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x0c4f1276 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range -EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init -EXPORT_SYMBOL_GPL vmlinux 0x0c90e698 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0cd2def3 skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x0d195b4d shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x0d26ff1d ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x0d411832 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d6f02f4 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x0d72bd5e usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d854fe0 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0da35e7d cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x0daacb32 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0dc6849e pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de30a53 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x0df855d3 __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0x0df925f6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e11f606 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e41738f ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x0e63eab6 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x0e775383 nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x0e8c4e10 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x0e9ff990 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x0ead2025 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x0eaf8ee4 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x0eba09f4 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x0ec58c80 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x0ed6123a sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x0ed8a11a pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x0eda0f8f device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f4315ff gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x0f4b6b46 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0f98623a crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic -EXPORT_SYMBOL_GPL vmlinux 0x0fa366ee gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0x0fec329c sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x10287db3 arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x102cafd5 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x10364b2a ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x1047f89b pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x105de242 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x10a72f82 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x10b0cc5a wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x10b0d5f8 seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x11185dfe hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x11398c86 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x113b92e3 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x115fbe93 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x1181b1af transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x118f51c7 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x11914a00 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x11929684 irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x11a3e017 _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x11c86556 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x11caddc7 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x11e8bf66 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x121c44af tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1230f695 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x12365646 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x1263de5b devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x12664a65 __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x128a5934 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x128cb2a4 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x12a65e87 inet_csk_compat_getsockopt -EXPORT_SYMBOL_GPL vmlinux 0x12c4ef7c acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x12d0f0b5 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0x12e22bea wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x12efd8eb virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x12f31268 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x1307ec93 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x130bd388 check_tsc_disabled -EXPORT_SYMBOL_GPL vmlinux 0x130de01d trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x130e8c98 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x13181a21 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x132cc9e7 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x133527b8 blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x134b569e ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0x13506468 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1362ce02 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x136b6156 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x13862141 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init -EXPORT_SYMBOL_GPL vmlinux 0x13985c04 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x139c89ea swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0x13a52e00 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13b1dc6c usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x14208e72 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x142d0012 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x1441a483 bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x1445d22b bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x144f2eae led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x146c3a4f page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x14765cfd mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x14774b5d clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x149369ab xen_swiotlb_dma_mapping_error -EXPORT_SYMBOL_GPL vmlinux 0x14981779 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x14a6f678 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x14dff2c1 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine -EXPORT_SYMBOL_GPL vmlinux 0x151014a7 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x15162a85 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x151b064c power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x153f933a attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x154a1844 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x155ddb63 reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0x15665ca8 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x15670b25 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1568618d sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x158ea133 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x15a55925 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x15a6aa00 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped -EXPORT_SYMBOL_GPL vmlinux 0x15bcd4eb od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x15d1f121 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x15f4b936 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x15fc0e9c thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x163485c3 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x165c1add mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x16647135 pci_get_hp_params -EXPORT_SYMBOL_GPL vmlinux 0x1672d9ed nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x1674e2ed bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x167b0316 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x1684d3ab alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x16a2d436 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x16a7b213 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x16c6090e i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x16dc2d60 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x16e215c6 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0x16f5c094 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x16f9097a do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x1721f49c tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x172817ee list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x172d1c7a clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x1758f233 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x1780ade6 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x1782de9e device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online -EXPORT_SYMBOL_GPL vmlinux 0x179af052 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x17c0f479 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x17cf2108 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x17dbf80e msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x17e82df6 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x17eb45ce __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x18080751 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x181d2113 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x1824ecee device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x1837d352 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x184bcb70 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x184d9676 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt -EXPORT_SYMBOL_GPL vmlinux 0x1862f6b1 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x1866772a serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x186c25a8 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x18a2ca23 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x18b8d2c2 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x18bc3c5a trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x18d1da06 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x18dcc4a4 gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x18df9726 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x19146592 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x1917a3f6 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x191f9209 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x19256e73 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x194d99a4 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x195ca67c sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x195cca2a pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore -EXPORT_SYMBOL_GPL vmlinux 0x1972786c fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x1974722e usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x19793f3c xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x19868150 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x19905380 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19bbdb58 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x19e08e01 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x19f58bd4 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x19ff09ed gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x1a07e89f arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x1a6cbf8b gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x1a928419 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1a984a63 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x1ab0aaad blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x1ab5f939 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1aea95c0 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x1af9d31a rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x1afd1aa8 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x1b03c9df nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x1b20a2b9 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x1b22a5a3 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x1b301e53 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x1b4cd286 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1b5fdb84 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b885f3f regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x1b893f31 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1ba28f21 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x1bad07bb key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x1baeef6b pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x1baf412f mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x1bb1ea71 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x1bb632ac sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x1bc09cab usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x1bc125f7 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1bc3d2c9 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bdfa49d vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ee8af device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c6660c7 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0x1c751528 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c988046 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x1d03aa30 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x1d0ed0cd sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d3e8148 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1d459685 xstate_size -EXPORT_SYMBOL_GPL vmlinux 0x1d4c3b77 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d5d651b gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x1d60a282 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x1d652735 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1d65ca5c led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x1dafbe68 blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x1dc34809 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1ded4aee device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0x1e12b409 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x1e1c47bf dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x1e4ea150 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e608e13 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x1e68ce14 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e830e69 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1edc21cb hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x1ee71b04 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x1efda1a4 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x1f142faf klp_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x1f176a29 spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x1f488dbf debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x1f630840 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x1f68ca07 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x1f68e47b pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1fbbb37a gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x1fc5e565 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x1ff1f493 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x1ff6a053 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x200cc695 __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x20196a4b devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x2034badf virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x206013b5 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x206101d8 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x20775f57 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x207f2ede hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x208f2906 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x2091c554 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20b871c9 devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x20cee4b1 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x21000a58 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x2134c465 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x2134da7c power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x213d0f2e usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x21489adb usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x2165651e crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x216bd843 wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x217d2437 kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0x2183c3e2 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21b17e11 ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x21c4c1a5 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21df6d75 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x221133f2 regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0x222abf8a inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x222e4b8f tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x223338a5 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x2245a219 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x224ca361 __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0x224cb6a7 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x2255c2d2 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x225aac25 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x226acb71 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x228ccbe5 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events -EXPORT_SYMBOL_GPL vmlinux 0x22a12929 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x22a2048d xen_swiotlb_sync_sg_for_device -EXPORT_SYMBOL_GPL vmlinux 0x22bc3677 inet_csk_compat_setsockopt -EXPORT_SYMBOL_GPL vmlinux 0x22f26271 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0x2309898f bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x23413fb6 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x2360608a virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata -EXPORT_SYMBOL_GPL vmlinux 0x236d5b74 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x23800238 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x23857aa0 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x2386503c regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x2396f0c1 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x2398bd52 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x23e1714d class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x23e8915c wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x23fb92d6 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x23fcc2bf set_pages_array_wt -EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x243f1b65 efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x245cad97 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x24694f45 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2484198a acpi_dev_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x24913ba9 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x249d488b relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x2505504a kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x250a8b9c seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0x2512cf3b device_create -EXPORT_SYMBOL_GPL vmlinux 0x251de910 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x251f41c8 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x252bd2aa scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x252c09be injectm -EXPORT_SYMBOL_GPL vmlinux 0x252df20f xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x256a0934 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x25c4a589 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x25d700b8 gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr -EXPORT_SYMBOL_GPL vmlinux 0x260ffb3b ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x26286517 skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x2643a07d xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x264a3f17 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x265da64a rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x2676fa11 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x269afc93 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x26aac4f1 xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26bd689f tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26ccc780 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x27075825 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x27325d08 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x27328358 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x274e4096 xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x27625abe dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x27810d3e scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x27826e47 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x2797f2ce attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x27a9ee6c spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0x27b4c961 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27cf204a cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x27d0716d power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f62f6b irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x28084a7d reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x2812e8cc get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2827bd22 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x283a3283 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x283e1179 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x28428423 print_context_stack -EXPORT_SYMBOL_GPL vmlinux 0x284b9aab __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x2858b97f pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x28653624 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x288fd579 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0x2900befa dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x29019a17 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x290cb882 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x292f2c0a phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2950a4fd __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x29979e63 __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29ab740a tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x29d80dd2 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f0a30d max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x2a0543ea hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2a20cac7 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x2a277163 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x2a2ed8e9 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x2a3902eb sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x2a3cfe65 cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0x2a3fcbdf crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x2a41d439 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x2a4866a3 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a743a78 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x2a7a0643 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x2aa5cba2 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x2ab1b8c8 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x2ab1fad2 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x2ae50a27 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x2af8ba78 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x2afaaee3 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x2b032958 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b2f9566 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x2b355634 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x2b37f81e unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x2b4a9514 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x2b508dee relay_close -EXPORT_SYMBOL_GPL vmlinux 0x2b88f3cb srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b968a65 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x2bd729e4 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x2bda2243 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x2bda70fa devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0x2c083109 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x2c0ef571 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c2fea52 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2cc04d8f pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cf6f43c metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2d134a57 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d23bbcc __put_net -EXPORT_SYMBOL_GPL vmlinux 0x2d3448e8 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d4adc3f crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x2d4fe352 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d5ccf39 rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x2d621d94 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x2d70d9c2 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x2d8ebabe mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x2d9abb84 blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x2de5d705 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x2df243c8 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x2dff0b53 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x2e01fe18 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x2e06159f pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e3ce03e regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0x2e406162 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x2e5035aa xen_swiotlb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x2e78bf95 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x2e80de13 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x2e835cde wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x2eae8015 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2ec7f995 xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x2ecc95d2 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x2eda0bea regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x2eea9fa4 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x2ef29b24 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f27165d ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f462644 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2faaafda __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x2fb4fe82 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x2fd4fc70 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x3009092c devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x30111993 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x301b694b md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x301c1c89 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x302929ba usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x302deb46 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x30421683 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures -EXPORT_SYMBOL_GPL vmlinux 0x3068def6 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x307099dc da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x30772eff xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x307d2329 xen_swiotlb_set_dma_mask -EXPORT_SYMBOL_GPL vmlinux 0x307d97c4 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0x30905541 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x30abb6ed xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x31007cff bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x3101c816 x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x31074a33 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x310fc319 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x3114341b posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x3115c706 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x312078f6 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x314c1ffc __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0x31568a06 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x31601eb6 wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0x3181a98f virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x319e0356 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0x31a25d2e debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x31c09bae wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31cde9e2 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval -EXPORT_SYMBOL_GPL vmlinux 0x32257894 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x325f2f64 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x326da856 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x32803647 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x3293fd84 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x32aeadde __add_pages -EXPORT_SYMBOL_GPL vmlinux 0x32afdc47 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32be3f47 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x32be94ab pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c781d9 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x32dcf61d xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x32dde88e ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask -EXPORT_SYMBOL_GPL vmlinux 0x334eba15 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size -EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync -EXPORT_SYMBOL_GPL vmlinux 0x3371772f devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x33b2f7a7 ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x33c378ab power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x33ea1df0 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x3416f6dc wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0x343c33cf acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x346b3a5d tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x34851cfc spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x34c84ab3 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x34e6629d usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x34f96b52 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x3512e005 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0x35328a06 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x35415520 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x358f44a0 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x35a2ec05 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0x35b29745 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x35b67f65 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x35d39e7a add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x35d546b1 pinctrl_utils_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0x35db13d3 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x360b1f34 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x3612d33c iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x36223c49 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x362430f0 component_del -EXPORT_SYMBOL_GPL vmlinux 0x3668af32 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x3683995a ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x368f289c xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0x36906bfb blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x3695042b __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x36966aca unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x3696d527 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36b1b624 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x36b33f56 blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36d9bcab flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x36e2adc7 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x3701a643 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x37191143 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x372b6db2 fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0x37325dba devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x37522097 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x377dc878 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x378a26b5 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0x37b4da47 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x37f1ffbf gdt_page -EXPORT_SYMBOL_GPL vmlinux 0x37ff32d2 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x38053d24 dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0x3824a940 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x385070fc rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end -EXPORT_SYMBOL_GPL vmlinux 0x387ebfcf fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x389dae51 xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0x38c3ef7a gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38f3cf4b tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x39218330 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x39339594 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x394b68d6 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x395dc08e fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x39753c43 dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x3977bc38 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x397d7737 hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x39898b8f skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0x39b1319f iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x39c2ac56 pwm_config -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39d57bd9 rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39f66901 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x3a00fb68 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x3a0cf966 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a38dc65 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x3a410a00 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x3a421ab8 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x3a42af27 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x3a465294 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3a4b1e29 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a58472a pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x3a609e48 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x3a60b72a phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a8e48a1 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x3ae5123b __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x3aedb6d1 security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0x3b2d7811 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x3b411846 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x3b488506 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x3b5b77d4 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x3b6ea44b spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x3b6f9ca0 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value -EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x3bccd614 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x3be1031c __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x3bf950f4 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x3c1c9fcf __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x3c22d184 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x3c2cb49b pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x3c3cdc1a crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x3c52cc83 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x3c7164d8 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x3c80aed9 get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3c9ea8e4 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd68fbd regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x3cd731a1 tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x3d003739 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x3d04748a key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x3d07d8af find_module -EXPORT_SYMBOL_GPL vmlinux 0x3d1c9f3d crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d5f392d acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x3da58470 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x3dae6404 unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dcfe50a pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd4a2a6 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x3dd55ecd sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x3de23f79 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x3de4c1a4 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x3e05d06d crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x3e2050b6 rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e435a1a platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3e4fb90b pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x3e526838 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e8851f6 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ec52f73 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x3ec79c26 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x3ecd71a1 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x3ee25d23 intel_svm_unbind_mm -EXPORT_SYMBOL_GPL vmlinux 0x3ee9072c regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x3ef877cb alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f0d252d wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin -EXPORT_SYMBOL_GPL vmlinux 0x3f2f29f7 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x3f30efb9 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x3f30f19f register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x3f4dcb76 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x3f60e94b register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x3f83b308 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x3f8dd8ca add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0x3fd056d6 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x3ffddd31 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x4010b80f pmc_atom_read -EXPORT_SYMBOL_GPL vmlinux 0x401e84c8 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x402354c1 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x4049502b serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x404e6a74 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x405417a0 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x408212ba hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x408b2fc5 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40b8b792 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x40d242a4 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40d72b0f regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x40d91289 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x4104d78f pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x4117e0e5 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x4119bf47 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x4120165c ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x412f4a36 iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x41327faa usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x414ec312 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x418710e7 mce_inject_log -EXPORT_SYMBOL_GPL vmlinux 0x4191548c arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41dbe761 bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x41e04fad bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x41f74014 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x41fdc093 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x41ffb93d usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x4223db32 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x424232f5 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x4248d45c gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x4255026d kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x427d5c68 register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42bb8d80 perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0x42c7aca3 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x42f07f65 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x43050abf transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43064444 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x43194f83 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x431df8a7 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x433bb7f3 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x43455ee3 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x4353b163 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x435941a2 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x4378fddb phy_create -EXPORT_SYMBOL_GPL vmlinux 0x437aca77 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x4395afd0 tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x43970a11 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x43a1aac2 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43a577cd sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43da8551 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x43e13c0c pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x43e67983 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f77db5 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x43f83b28 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0x43ff0c10 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x4404459f blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x44178a07 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save -EXPORT_SYMBOL_GPL vmlinux 0x443314e4 put_device -EXPORT_SYMBOL_GPL vmlinux 0x44334563 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x443710ce tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x4443b95f blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0x4455d7c0 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x445d189c rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x446caf5b usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x4481db81 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x449f842a scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x44a91cc5 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x44b5f97e pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44e1fc99 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x44e39955 mmput -EXPORT_SYMBOL_GPL vmlinux 0x44e87daa crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x44fbb707 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state -EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store -EXPORT_SYMBOL_GPL vmlinux 0x456a46e9 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x4570cd18 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45b3cf50 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45c2a311 reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x45cc94da blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page -EXPORT_SYMBOL_GPL vmlinux 0x45d8e566 rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x46052822 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x46060e76 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x46088ed8 nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data -EXPORT_SYMBOL_GPL vmlinux 0x4610277a wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x4631d2ac pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x4638ddd4 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x46434934 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x4663d883 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x466f2217 usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0x4678157d pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x469cfa11 irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x46dffad3 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x46e399c1 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x46ea55a5 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x46f22750 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x470614ea eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x470f8c04 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x4712993a percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x472e6c88 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x47312955 acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x47384f3a __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x4745caa7 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x4746f742 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x475e880d usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4765b702 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x4768b534 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x477adff9 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x47801c2d register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x479efc46 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47c236c0 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x47cbae40 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47e34e51 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x4837298b inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x483b6e86 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x4879cdeb rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x48a708ea regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x48e102a9 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x48f45ad3 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x49075de4 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x490a8df6 x86_platform -EXPORT_SYMBOL_GPL vmlinux 0x4924c996 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x49417ace get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49d737a5 blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x49e264bd rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x49e4eb33 pv_info -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49eadcc3 crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x49fb07dc wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x4a08ab23 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x4a0a553d da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x4a0dcb54 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x4a189ae8 iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x4a29d98f get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x4a3c3cf9 microcode_sanity_check -EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a6d10c3 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x4a77d584 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x4a8062cf tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf -EXPORT_SYMBOL_GPL vmlinux 0x4a9d4ced usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x4a9e28af usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ab84afb pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x4ad609ce __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x4ae7eb53 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x4b3a7319 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4b6acd6e __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x4bfff2ed ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x4c192b05 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x4c2a472b __static_cpu_has_safe -EXPORT_SYMBOL_GPL vmlinux 0x4c317dff devres_find -EXPORT_SYMBOL_GPL vmlinux 0x4c3c53e0 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4c7aa581 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x4c88839c netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x4c903d4a pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x4cb19485 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x4cdc4dec pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x4cef778f pci_msi_set_desc -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d2076af gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x4d60b812 efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x4d6a55a9 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4db9a097 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x4dc045c4 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x4dd91573 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de3e724 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x4df55f31 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x4df6e727 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e1ea947 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x4e20b994 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e28812f edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read -EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4e6c2b09 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x4e70525c crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x4e89a7de bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0x4e906cb5 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x4e946816 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x4e97a832 tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0x4ed10c83 shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x4ed1cbdb yield_to -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4f2bf25d pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f450ded xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f87b62c devres_get -EXPORT_SYMBOL_GPL vmlinux 0x4f8f573e pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x4fc64ff2 trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fdef7bd ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe59540 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x4ff1fc51 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x501aa9de device_move -EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x502def69 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory -EXPORT_SYMBOL_GPL vmlinux 0x50830b26 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50c26b1b device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x50fdb63d fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5128d9ce tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x512b1d19 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x5146378d page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x51783114 usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x517dfd18 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x517e28e0 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x5189d364 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq -EXPORT_SYMBOL_GPL vmlinux 0x5191bd3c efivar_work -EXPORT_SYMBOL_GPL vmlinux 0x51980985 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x51a4b805 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x51ab9695 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x51b18b8e scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x51c936cc driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x51dda640 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x51f8426d pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x52108c2a iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x523622a2 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x5248e1e2 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x5251f730 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x5256f56d xen_swiotlb_sync_single_for_cpu -EXPORT_SYMBOL_GPL vmlinux 0x526751ae ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x52a02df2 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x52afe168 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0x52aff66d clk_register -EXPORT_SYMBOL_GPL vmlinux 0x52b24f2d devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x52b79ef0 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x52c8119e bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x52cda1d8 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x52f44b81 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x52f492b0 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x531835b2 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x534c0a5b pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x53613b60 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x53644e1b pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x536740d7 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late -EXPORT_SYMBOL_GPL vmlinux 0x53b6f4ea md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x540e5f45 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x541d1802 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x541fa453 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x5429008e transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x54495752 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x545ee955 fpu__activate_curr -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x5492bdd0 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54f6dcc4 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled -EXPORT_SYMBOL_GPL vmlinux 0x55181725 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x551ae402 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x554f5cfb device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x5554c656 dax_fault -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x5593d715 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x55eb53d3 __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55ff23b1 sis_info133_for_sata -EXPORT_SYMBOL_GPL vmlinux 0x5607dac6 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x562b6790 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564ed926 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x565a043c devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x567298a8 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x5698b7f4 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56d9ed45 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x56f9517a crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x570cc67d ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x5722825d unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x57343999 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57b51eb0 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x57c22faa pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57d75ae8 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x57da6b0a scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x590b55d6 swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0x59239637 md_stop -EXPORT_SYMBOL_GPL vmlinux 0x593226c5 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x59ac510c phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x59b0882b md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59bb4be3 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5a1ca18a ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x5a268864 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x5a421194 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x5a517797 xen_remap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x5a5621ef task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a75fad2 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a8dbc52 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x5ab9e318 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x5abcdffd mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x5abdccc9 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x5ac07ccc debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x5ac4fbbd pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x5b01aaf5 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x5b058914 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x5b11b57a irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x5b1899f8 free_iova -EXPORT_SYMBOL_GPL vmlinux 0x5b4724c2 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x5b494dea regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x5b5c7206 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x5b87e35f sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x5b8a69e4 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x5bc28cbf crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x5bce8ca1 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bda13ca __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5c0f757c crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x5c20921f pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker -EXPORT_SYMBOL_GPL vmlinux 0x5c864f1f ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x5c8bcceb devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x5ca36b52 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5d106499 regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d14e144 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x5d185781 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x5d26879a iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x5d692a22 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5d6f1bc6 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x5d7877f2 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x5d7ccb2d crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x5d8b9418 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5daa2317 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x5db661bd kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x5dbb1213 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid -EXPORT_SYMBOL_GPL vmlinux 0x5dcd7160 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x5df6ef4b __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x5e13f7f9 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e94e6f1 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x5eb986fb ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0x5ec6d2c1 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5ed356b4 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5ede6ce7 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x5f29c66b devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5f42c6ac regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x5f4c35c2 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5f5fcdb7 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x5f7e78e1 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x5f902130 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x5fa06b68 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x5fabda73 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x5fb2981f wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x5fbb65d2 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x5fc7eb5e extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x5fd333b2 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x5fd39329 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt -EXPORT_SYMBOL_GPL vmlinux 0x5fe907b7 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x5ffd1fe1 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x6000b8ed inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x603717d9 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x60590f17 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x6076ca8e acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x6081e3a9 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x60930d37 save_mc_for_early -EXPORT_SYMBOL_GPL vmlinux 0x609a33b7 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a334a4 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x60adf3b3 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x60c3d793 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60eab2fe xen_swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x60f55b9f ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x60ffdbc1 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x611a503e device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x61388844 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x614d49a5 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x6199875f tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x61baee0e posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0x61f2cfe8 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x62052630 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable -EXPORT_SYMBOL_GPL vmlinux 0x62460fba pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x62479c8c __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6266f503 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x62ca8133 md_run -EXPORT_SYMBOL_GPL vmlinux 0x62fb46b9 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x6304f8d1 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x6314ed3e ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x632ce5f0 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x6330dc4e blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x6333072c gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x6335920e uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6345b1ce wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0x634bafcf rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x6351faf6 acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x63549e83 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0x6362850b inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x637beaf1 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x63825fbf devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x638fe045 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x6396fe13 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x63982708 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x63bf1052 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x63c5b9eb regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x63c5e92c inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x63d519d4 acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x63d7cf16 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x63e2d96c rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x641e933f acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x641f9ddb ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x642fded4 reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x643677f2 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x643e92a7 __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x645dc64a cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x6478a3c6 tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x647ff9a1 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x64977a05 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x649a344c crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x64c924c9 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x64cb9c25 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x64e111d2 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x650e7cae crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x650eba04 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x65245a34 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x6524f407 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x6528ce67 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last -EXPORT_SYMBOL_GPL vmlinux 0x65682b19 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id -EXPORT_SYMBOL_GPL vmlinux 0x65a3df9c get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x65b080f1 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65ceb000 tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x65f2e28c bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x660891fa tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x660d6204 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x6613534c inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6627a601 of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x664b4252 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops -EXPORT_SYMBOL_GPL vmlinux 0x667bbfcc splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x668b6559 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x66a27d5c ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66d9c9d1 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x66f59931 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x66fc74ea zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x6745c9d0 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x67505e76 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x6757bd09 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67da787d pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x67eb95ce __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x67ece5a5 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x6804299a kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x6810ce81 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x68115f69 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x6868f967 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x6876af45 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x68786160 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x68823ab6 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x6888313c generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x68a56916 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x68b8e6f7 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x68c8a5a0 extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x68e9d2a2 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x68fb384c pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x68fdc1cf mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x69031972 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x69117ecd scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval -EXPORT_SYMBOL_GPL vmlinux 0x69237afd __online_page_set_limits -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x694de492 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x695e985c ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x6965b165 crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697f45bf regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x69baad54 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x69e86239 extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x69f3140c save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0x69f8a444 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x6a0eaa64 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a268824 gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0x6a26f72a sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x6a3f9e76 phy_get -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a571e69 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x6a7fdafc attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x6b0d87f4 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b1410ef pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x6b1a28eb ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b29b1e8 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x6b42d18e led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x6b4f6a26 acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x6b5478c3 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x6b6402f0 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x6b7baa34 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8f57cc regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x6b975b73 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x6b9e59a7 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x6ba2c142 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x6bad1d31 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x6bb6e529 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x6bf8edf3 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x6c030a6e component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x6c174f72 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x6c211f28 xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c5af0c7 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x6c6538df init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c66f9e6 efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0x6c6e5e03 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x6c818042 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6c87e5c3 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x6c8930c9 rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0x6c8c5ea4 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x6ca45a52 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6ca96a51 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x6cc08046 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0x6cc32a2a ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cd3556f device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x6d0c7ca4 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x6d0fee94 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d6ab0a9 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x6db1803e regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x6dbb2503 regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x6dd14e1c tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x6de27384 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e21c0a0 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x6e250c4e power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x6e32a0db arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0x6e3eca96 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x6e3f1d23 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x6e55f52f tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x6e6e13da regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x6e77f3c7 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi -EXPORT_SYMBOL_GPL vmlinux 0x6e87de07 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e97e3f7 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x6ea4e399 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x6ea98361 ioremap_page_range -EXPORT_SYMBOL_GPL vmlinux 0x6ebd9e5d __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6ed479ec smp_ops -EXPORT_SYMBOL_GPL vmlinux 0x6eddd276 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x6edf6f02 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x6f121379 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x6f15db7d sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6f1b2a0f ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f2aaade wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x6f2dc195 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x6f38d7db perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x6f4f7923 __dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0x6f679ae9 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x6f7dd3a6 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f836b17 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x6f87ebd4 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x6f9389c5 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x6f955bf4 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x6fb3b29c __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x6fb6f364 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0x6fb93b89 crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6ff08b08 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x70014fa2 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x70023051 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x700a39e0 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x7012def6 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7047939d dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x70802fd0 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x708792f1 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x708e2f2d tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x708f2a8b usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x70b6f95c debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x70bdaac6 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70c57c21 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x70cc62ca debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d81e2f xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x70e3637d __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x70e4a1c7 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x71224add gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x7153799b reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x715edf38 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71683c28 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x7189c6ae bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a79c6a device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x71b2beb7 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x71bbabfb debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x720255e0 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x721fa15c event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x722cd597 rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x72318d8c power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x72532da6 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0x72544bef usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x72689925 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x726fb9ab pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x72c0f17a regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x72e5e8f1 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x72ed2f9a pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x72fd501b acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x730fa0a2 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0x731cc497 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x731d2411 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL_GPL vmlinux 0x7320cddd rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x733624d9 fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0x734c6df9 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x73690617 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x737e4ad4 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73ad4f8b extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x73afb372 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73d9f838 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x74059eb9 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x74242c35 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x744d479a __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x745b87d7 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x745c6e50 acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0x745e977a tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x747a438e console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x7482fe36 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7484b0c5 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x7487e143 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x748e15cc gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x74a3843e synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x74af6cf0 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x74b0eb26 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b9f79b hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x74d826ae gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors -EXPORT_SYMBOL_GPL vmlinux 0x75005ec1 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x75097ee8 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x750d77bb devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x752ce9dc usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x7578dbaa devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x7598b9d5 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x75bb5623 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x75c902c6 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75d19116 shake_page -EXPORT_SYMBOL_GPL vmlinux 0x75ee1c72 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x75ff1cbe napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x760799b3 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x761ff289 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x76437689 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x7676b5d5 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76a5375c pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x76ad4859 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x76c2d453 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x76d06f64 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x76d86c46 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76dcf430 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x77514058 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason -EXPORT_SYMBOL_GPL vmlinux 0x777216a7 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77da6f55 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x77f37a61 led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x77fc6c14 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x781ab56b blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x781fd96d usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x7824b8af dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7829e375 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x78575bee atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x786702b9 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x78786267 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x78ae5fcf pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78c705e2 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x792bfba2 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x79329d82 scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0x7936f6dd ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x79374846 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x793bd951 to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x79620336 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x7969469d debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss -EXPORT_SYMBOL_GPL vmlinux 0x799b6d27 tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x79cce037 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x79d8dfc3 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped -EXPORT_SYMBOL_GPL vmlinux 0x79efe889 xen_remap_domain_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x7a39482c devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x7a58d012 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x7a5ecc70 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x7a68f4ec power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x7a6d6612 arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7a95ab24 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x7a9efd50 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x7aa1780a nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x7aa53d62 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x7af345ac pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x7b453473 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x7b809f9d debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b9c14a3 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x7bc0ba10 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x7bcdd8b5 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x7bcee7e3 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x7bff0054 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x7c246180 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x7c3400e7 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x7c378199 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x7c3889ef page_endio -EXPORT_SYMBOL_GPL vmlinux 0x7c498fce efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0x7c74ca59 xen_pci_frontend -EXPORT_SYMBOL_GPL vmlinux 0x7c779961 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x7c89e95f led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x7c91f14c blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7cb99689 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x7ccbd32e sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x7cd5497a device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cd8c6e5 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x7ce912ba scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x7d3416cc md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7d35ae29 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x7d581187 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d5be7d7 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0x7d68d1cc gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7d6b3de8 acpi_dev_gpio_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x7d7c6ca6 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x7d80574f bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x7d83b51d class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7dbaa88b devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x7dcdc93f __tracepoint_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0x7df1cfba __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x7dfb11bb pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x7e10ac5e __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x7e225ed9 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x7e39ba6d inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x7e606a6d blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e8e9707 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x7eaaf384 regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0x7eb471ce pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x7ebad32f dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x7efd9dab unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f3658e6 fpstate_init -EXPORT_SYMBOL_GPL vmlinux 0x7f6b97f6 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x7f72f623 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7ffdebc7 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x80156244 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x80434816 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x8061bf2f regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x809529fd alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0x809c9646 irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80c81b10 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x80d419c5 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80db493d ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x80f86866 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x80fcbee0 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x812bc743 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x812cebd4 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x813e7efe blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815636e4 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x81655cfd fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x8171ab95 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x8174d68e irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x81902630 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x8199353b dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0x81a84515 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x81ba72a7 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x81cfbfc5 xenbus_map_ring -EXPORT_SYMBOL_GPL vmlinux 0x81d2d3bd crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x81da0ba0 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x81e7df7c balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x81fa874a cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x8218238e gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x823a0e40 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x8255ff4a rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x8258473f wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x825e446c md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x828a94c6 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x82a9660d get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x82ba3262 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x82be2cdd sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x82cba7ea component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write -EXPORT_SYMBOL_GPL vmlinux 0x831ac850 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x832bcb4a pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x833d0d3c kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x835dbef5 crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init -EXPORT_SYMBOL_GPL vmlinux 0x836b5362 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x83757547 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x838506c5 iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x8388f395 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x83a19d26 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x83dc67e3 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x8436247d ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x84437f81 dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x8448f098 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x8480c14c balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x849044d1 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x84a43cdd skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84c96d60 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x84cdf46e of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x84d05745 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x84e0d2de usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x84e8a768 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x84f25605 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x852546f1 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x85302bee pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x8549bcba blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0x854cc9eb param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x858dd1b7 tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0x85904bdb cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x859aea9a xen_set_domain_pte -EXPORT_SYMBOL_GPL vmlinux 0x859ec1a6 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x85a31455 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x85a48a9b vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices -EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq -EXPORT_SYMBOL_GPL vmlinux 0x8608afe5 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x86244695 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x862e42d3 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x8648ad4e usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x864f8f14 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x8677c0d3 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore -EXPORT_SYMBOL_GPL vmlinux 0x86835190 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x86dc420c generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x86de973c crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x86df61c7 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f49b68 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu -EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x8711abb7 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x87377829 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x875469c1 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x87b2c4c5 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x87e13f7a usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x87e3aac6 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0x87e9777e regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x87f5f82d __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x882ae355 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x88386cdd devres_add -EXPORT_SYMBOL_GPL vmlinux 0x883b9bbe __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x889f1d60 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x88a84f5a ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b43020 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88c57a5f dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x88d65f13 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x88e1c8c9 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x88f7cb09 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89287354 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x8932b0e6 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x894ef1e6 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init -EXPORT_SYMBOL_GPL vmlinux 0x895e27b1 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x896b26af io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x896b5877 xen_swiotlb_sync_single_for_device -EXPORT_SYMBOL_GPL vmlinux 0x897fb429 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x898e2b2e fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x89bb09cb rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89bc7d27 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x89e39367 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x89e767be bus_register -EXPORT_SYMBOL_GPL vmlinux 0x89f569ea regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x8a06e989 raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x8a1df3a0 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x8a3acd95 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x8a456daf input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x8a4b8066 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a5ca363 regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0x8a6c747b pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control -EXPORT_SYMBOL_GPL vmlinux 0x8a902f65 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8a9157ae virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x8a9372bd acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x8aa0f5bb tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x8ab229c7 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x8ab29f8a blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abd0ed7 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x8ad44594 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x8ae6def6 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x8afbf4ae spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x8b02ffd4 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b291552 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x8b302130 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x8b34beda irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b38991c register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x8b52bb42 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b84a916 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address -EXPORT_SYMBOL_GPL vmlinux 0x8b96c75b efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0x8b9ad2b0 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x8bd30bcc pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x8bfb1319 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c065946 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c65a3fd inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c825f1b tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index -EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt -EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x8ceb590f sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x8cf3908d acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0x8cfa17ec virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x8d190226 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d249395 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x8d48e09f fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x8d8261e0 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x8d9fa235 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x8da7b735 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x8daf56bb inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x8db479ab pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0x8db69298 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x8dded834 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x8de75f5e tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x8df51a08 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x8df9a39b inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x8e1172ac get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x8e1f5499 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e372a61 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x8e542fbf fpu__restore -EXPORT_SYMBOL_GPL vmlinux 0x8e584360 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x8e893ddc wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x8ecbd253 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x8ece07d8 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x8f03854b unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f182677 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x8f1d7c02 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x8f242ccf pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x8f2ac945 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x8f482b9f da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x8f689704 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f7ab2df dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x8fc825f8 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x8fdde573 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x8fe481fa __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x9002c2f7 arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x900c0869 cpu_tlbstate -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0x905e1b7a sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x9071d9de ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x90807527 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x9099e86a kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90dc29df aout_dump_debugregs -EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify -EXPORT_SYMBOL_GPL vmlinux 0x90f95957 part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0x9101d8b1 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x9107c8d3 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x910bd2d9 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x9111e9e8 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x91318c97 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x915b10b1 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x915dde62 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x9172a49e pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x91928691 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x9198ab31 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x91c6c549 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91ca148d debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x91cdb0d6 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x91da1c3b regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x91ecd2d4 klp_unregister_patch -EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x9235b328 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x923a6507 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9251e315 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x9273028d kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x928c4798 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x92a0fafa skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x92c3917a each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92ebf26d platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x9304c6ac pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x9350d758 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x936fe37f blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x937174da ref_module -EXPORT_SYMBOL_GPL vmlinux 0x93a17bb5 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x93afcfd0 pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x93b00b50 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x93d960d4 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x93fe4651 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0x94079390 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9428809d bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x942c15d5 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x944024c4 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x94443383 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x944bee04 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x9450550e percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9450c1a9 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x947eb96c device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x94803e0b rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x9497e2f6 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a84c6e fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0x94b795a9 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x94b82cd3 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x94ba94cc __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x94c8fbda vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x94dc0892 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x94ebf22d lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x94ec6abe init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94f21181 blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x9541bcfa split_page -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x956e92ed cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x956eb4f9 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x957cad0a blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x95809734 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x95a10bd7 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95de5965 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x95fea713 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x964d5c39 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x96626387 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x966675a6 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x967a4eef serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x967e61c7 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x969b4df6 i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x96be57a5 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x96f55f7b devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x970cee3a usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x971121c1 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x975fb184 __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x9761fb4b clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x9766f691 acpi_dev_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x976b31ea wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x9774356a rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x9792f11f devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x97a6b225 tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e51d6c vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x98074de9 devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x980d1971 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x98145e78 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x982c5904 kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9889d98c bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x98e3a689 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x98f29c0f device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x990b082b ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x9915ebb6 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x99368900 rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x994b5769 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9954997b pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x99763fdb dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x997d1b59 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x9984edfc dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x999e5846 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x99a3049e fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99b40bd8 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99e4a18e sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x99f78875 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a3ddbc9 xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9a935a8e regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x9a977446 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9a9deef4 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9acb1c63 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x9ad90558 device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0x9ada2b4e virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x9ae24173 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9b0fd674 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x9b1e8974 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x9b2124d7 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x9b3fc044 get_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0x9b4164a4 flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x9b6a7412 idle_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state -EXPORT_SYMBOL_GPL vmlinux 0x9b88b12c intel_svm_bind_mm -EXPORT_SYMBOL_GPL vmlinux 0x9b95b1c9 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus -EXPORT_SYMBOL_GPL vmlinux 0x9ba07b5d cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x9ba2219c dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba43442 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x9bc66123 percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0x9bc8219e ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write -EXPORT_SYMBOL_GPL vmlinux 0x9bdddc98 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c06647f usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x9c1eb6a4 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x9c29ae72 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x9c2de449 memory_add_physaddr_to_nid -EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x9c4293d5 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x9c44fe2b fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9c56b49a wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x9c7a81ee sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x9c87ad84 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x9c9607be acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x9caaeef6 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ccdf526 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x9cfcde18 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x9d2939b2 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x9d3587cd crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x9d3b574f __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x9d64d213 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x9da73c60 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9daa89db iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9dd5aab0 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x9dd692f4 acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x9e05499a init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x9e0b0603 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x9e1ca61a blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0x9e1e9210 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x9e28af53 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x9e3de157 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x9e43461a devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e86eede mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x9ea168a1 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9f0204a0 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x9f09b2b4 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9f85c4df device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x9f92af83 x86_hyper_kvm -EXPORT_SYMBOL_GPL vmlinux 0x9f934201 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x9f9d74f5 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x9fb43ad0 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x9fb56e2d led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x9fba9d18 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd4c737 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x9fdbb9d5 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x9fdd4be8 ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x9fdf8e96 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff76f89 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x9ff9fdea irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xa014a6ac trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xa01a4c7e sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xa01bb915 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xa0409c1f shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0xa0d44aa7 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xa0f2d36b ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xa0f334d1 arch_add_memory -EXPORT_SYMBOL_GPL vmlinux 0xa0f543a1 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0xa1031e1f debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info -EXPORT_SYMBOL_GPL vmlinux 0xa12dacf5 xenbus_unmap_ring -EXPORT_SYMBOL_GPL vmlinux 0xa12fef87 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa16d330e single_release_net -EXPORT_SYMBOL_GPL vmlinux 0xa1750e71 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa1939654 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xa1977950 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xa1b0844c find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xa1b4e7d0 mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0xa1c17cde simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region -EXPORT_SYMBOL_GPL vmlinux 0xa1fcafc6 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xa1fe6dfa gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xa2119de3 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xa21dface root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa235b564 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xa2424518 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa286aade ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xa2a96d64 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xa2b25111 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2eafb5b cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa3441a4c usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xa35e6153 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xa37efcfb ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xa384918b pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa386c029 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3aa7feb ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3d4199b md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xa3d6f376 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa3f2c129 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xa40a1b76 input_class -EXPORT_SYMBOL_GPL vmlinux 0xa412a763 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0xa418c72c dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xa42a2354 __remove_pages -EXPORT_SYMBOL_GPL vmlinux 0xa42b76b9 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xa4415fc2 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4861184 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xa4c546b3 device_reset -EXPORT_SYMBOL_GPL vmlinux 0xa4d651c6 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xa4e20789 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xa5056a3b regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0xa52c3fdf xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa548d619 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xa55a2ea7 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xa56e4117 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xa584fda5 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xa58519f7 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xa591be4d nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xa5a7bad3 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xa5b98c3c handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xa5bae462 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xa5becc29 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa5c7e401 __nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0xa5cb13d5 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xa5d142a0 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xa5ee56d7 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa6186167 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0xa61d4b52 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list -EXPORT_SYMBOL_GPL vmlinux 0xa62e168e xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xa649c4cd extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0xa6614562 acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0xa66438e8 erst_read -EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa66d4261 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xa66ffe78 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xa674d57a regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xa692ad07 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6c1ce90 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xa6c7216d virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xa6cd1011 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xa6d883e0 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6f51146 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xa6fa3ef5 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xa71a457d debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xa7af2377 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xa7b9ba72 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0xa7bf4dd4 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa7cb6108 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xa7e85555 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa7f94c4a ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa7fe5404 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0xa81374a2 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0xa8235d03 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8595a15 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xa8783434 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xa88d3233 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xa8a174c8 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xa8a30cc1 pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0xa8a959be rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8c16ce8 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xa8cffb4c usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xa90a771a device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa9143342 find_iova -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa96c125b devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xa9737b9c __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xa9abe8ad clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0xa9b067a4 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0xa9bd1c4f regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xa9c316f5 __online_page_free -EXPORT_SYMBOL_GPL vmlinux 0xa9c7c042 rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e1b0db extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xaa0c7f97 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xaa2a0525 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0xaa93aeb6 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaaf7723 spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xaab90f16 rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xaae4001f extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab528929 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xab539934 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab6ee4d2 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xab781f55 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xab8516f9 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabec27da blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0xabee9602 pci_msi_prepare -EXPORT_SYMBOL_GPL vmlinux 0xabf2b27c led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0xac004b8e usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0xac036e25 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xac26c7f7 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xac29aacb irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0xac3b94fe srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xac3bf843 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait -EXPORT_SYMBOL_GPL vmlinux 0xac9f79c0 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xacb023b5 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0xacb19d17 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0xacbd919a dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0xacc7d5dc wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0xacda609d ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xacf308f3 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xad17458e regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0xad1a3f13 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xad2cf9b3 dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad32b660 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xad4244f9 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xad45c46c ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xad4904aa bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0xad53e8cf gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xad8af206 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat -EXPORT_SYMBOL_GPL vmlinux 0xada0c5b3 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae1011da platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xae5c53e4 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6eaf93 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae95bba2 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xaecba6be percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0xaed0b568 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xaed8cb8e max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xaee23007 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xaee66d6f regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xaeef611d pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xaf062981 xen_swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL_GPL vmlinux 0xaf16ebf0 platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xaf310a10 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xaf34e003 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xaf3b253a cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xaf55c6f9 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0xaf5c6c59 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xaf5e3f0c virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0xaf77453a usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xaf7bd739 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xaf882032 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xaf8e4f4e platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xaf8f4b68 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xaf9439db leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xaf967013 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xafbe32a1 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0xaff1edc3 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xaff62bc5 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xb022b5f9 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb0561ad1 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb0a93ed2 regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xb0b2a58f efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bbdf64 get_device -EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xb0c1d3b8 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0d7cc0c ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xb0f91227 pin_is_valid -EXPORT_SYMBOL_GPL vmlinux 0xb1153549 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xb13ef794 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb14d6e99 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init -EXPORT_SYMBOL_GPL vmlinux 0xb1775198 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xb17bff05 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb18f7c43 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xb19d8980 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0xb19f1e39 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1bedeb7 register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1c5e1a4 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1e3113b crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0xb1e698c1 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xb2039cfc ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xb20584e1 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xb215283c skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xb218d1c7 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb25178dd crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2bf5d79 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0xb2c13234 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2ee5165 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb2f5366a fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xb3134a3c rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init -EXPORT_SYMBOL_GPL vmlinux 0xb3441ecc irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy -EXPORT_SYMBOL_GPL vmlinux 0xb34b4e9e md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xb36f9e52 nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xb377f550 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb38a9f3c sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xb38daa07 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xb3908702 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xb3d0eef7 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xb3e9674c dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xb403662c irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xb412c638 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xb4181193 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb42fcdbf init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xb4313447 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xb452ec5f devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xb46fb96d cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xb487b5a6 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xb4e757c8 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xb4e9c544 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4f2b32a efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0xb4f4724f irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb522bd99 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb5396d5e gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xb53b9c1e gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0xb560e2db acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5bd3d9f __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0xb5c2f2b3 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0xb5c9042c sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0xb5d8c8fa regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb5e358c7 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xb5e5b9fa dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb6054e92 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xb607653f dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xb6232aee regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb657e8ec pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0xb6616967 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid -EXPORT_SYMBOL_GPL vmlinux 0xb68e4beb __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6af5e2c crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0xb6b74eff device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xb6cd27f2 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb7023da3 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb73b740a trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0xb76d7b32 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0xb77fddab disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0xb79243ad acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xb798685f pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0xb79dae2a crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xb7af8638 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xb7b409c3 acpi_dev_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xb7b4fea7 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xb7c35d7e platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb7f7ec8c blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0xb8152339 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xb846aa93 devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xb8500869 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0xb861570f iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0xb8736c71 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0xb8755ed9 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb89eef9c pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0xb8aec10d ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0xb8bbfd1b blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8f84c6f driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb912b1d6 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xb95f8382 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xb964dc72 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0xb97198bd devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb9753659 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xb99be14d sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xb9a390a3 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xb9af0930 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9cbe2f7 xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0xb9cc2e5f pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d053a2 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0xb9eb1d68 nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0xb9fa3f67 ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0xba0942e5 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xba1f3792 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba358853 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xba3d9f28 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xba55dd0e gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xba734998 xenbus_dev_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xba8651ae regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xba92bcf0 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0xba9ccc52 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0xbaa26085 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb40479d rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xbb4c07dd fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xbb52a97e iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0xbb6975b2 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0xbb6f904f ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0xbb92eecc sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xbb97415f crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0xbba61bcf blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id -EXPORT_SYMBOL_GPL vmlinux 0xbbe0fbf4 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xbbfc5a64 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xbc0f11ed crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xbc13599a devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xbc1775e1 acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0xbc1eb53b thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0xbc410b9a n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc6e19a7 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce02dc4 __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0xbced1733 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0xbd2af66f power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xbd33b982 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xbd386fdd kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xbd3bf2fb pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd4199ae ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0xbd503983 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xbd9d71f2 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbdacfa13 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xbdc6c2a1 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xbdcf02e0 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0xbdfd3aca blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0xbe0a2b93 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe195600 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xbe2c3d23 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbe49afec use_mm -EXPORT_SYMBOL_GPL vmlinux 0xbe525ed0 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xbe551079 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbe5d0996 idle_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe7d4089 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0xbea47ebc dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbede54b2 crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbee97eea regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xbefb7252 shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf37372d wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xbf4a2450 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xbf6dd089 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xbf70c548 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xbf725d96 xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0xbf8993dd bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xbf9ad60a rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0xbfa23edf usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0xbfb84f9c acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfc82be4 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xbfd10bb7 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbff5af5e wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0xbff9bfb8 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space -EXPORT_SYMBOL_GPL vmlinux 0xc00a87c9 klp_enable_patch -EXPORT_SYMBOL_GPL vmlinux 0xc00e1d52 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xc01afa9f scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0xc02aa11f rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xc04b21bd acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0xc069e875 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0xc0a3b62a irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xc0a95aa1 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0acf380 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0xc0c0814f __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0dcdc0e ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xc0df632b xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc1067f58 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xc116581f usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xc116764f component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0xc11e5d31 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0xc124bb46 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xc127917d pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xc14c2824 xenbus_probe -EXPORT_SYMBOL_GPL vmlinux 0xc14d99b0 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xc1537cd3 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc158f92c usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xc1632146 fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xc16606c8 __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xc170e75b serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc1915f69 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xc1b639a8 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xc1cdfb87 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xc1d52714 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xc1d79d3e shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xc1f544f1 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xc1fe2eec dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc20dc872 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc2829863 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0xc299940d disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xc2b18e54 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xc2d02f67 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0xc2d197bf unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xc2f87708 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xc307cdf8 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0xc30ab0b6 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xc3399f9d dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc37e913d devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xc39e92d7 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc3e58bbf pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xc405416b sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0xc40925f4 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xc41c82b5 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc447dd93 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc4683bb9 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xc46faf3f platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc49d8dff ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4d760c7 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc4e9a883 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xc4f06566 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xc505ac98 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask -EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc54ac418 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc573cb2f shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc57ad601 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xc57f0a5d ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xc5817e09 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0xc585ab30 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xc587250b pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xc5bf891e rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0xc5d22373 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0xc5d32d5e pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xc5e09f72 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xc5f7eb22 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc6307be4 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc63e4e49 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xc64e03ed spi_sync -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc66cd7d4 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xc66f78b2 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xc67a0326 acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xc67c2ba1 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xc686d6ca xen_swiotlb_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xc69a99b0 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xc6e1f96d posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0xc6e86cc8 ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0xc702020f nl_table -EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc706b874 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xc706f1d7 __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0xc726af81 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc7379448 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xc7388e17 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc7754295 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0xc78e1e5e ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7d2dcf7 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7f5dab8 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xc81b765d put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xc8286a11 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc831364d aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc8635ade mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event -EXPORT_SYMBOL_GPL vmlinux 0xc88e09b8 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8ee4905 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xc8fa8658 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xc9120b2a get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc92acdbe sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xc939e218 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xc93a3744 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc94493c2 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xc949a654 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0xc94b76bb gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc968dbbc devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc9705eeb has_newer_microcode -EXPORT_SYMBOL_GPL vmlinux 0xc973380c inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xc98245f4 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0xc9967062 efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xc9dc2024 driver_find -EXPORT_SYMBOL_GPL vmlinux 0xc9ec0553 dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xca363482 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0xca398e22 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xca4a7f63 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0xca5a0238 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xca5bb978 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xca747de0 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xca7903a1 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0xca93986a print_context_stack_bp -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcac1006b ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0xcad101b5 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0xcaefdabf crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xcaf65d56 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xcafec86c rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xcb01c265 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0xcb15030f user_describe -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xcb566da6 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xcb5e9abb blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xcb5ee721 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xcb66446c ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcb6796da rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xcb69cc7a wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcb76d3dd cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xcb9f0a88 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xcbce14c0 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbe5bcc5 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcbf40cd5 blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xcc3ac312 spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc8aafa6 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xcc8d4f76 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xcc966d0b xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xcce31916 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability -EXPORT_SYMBOL_GPL vmlinux 0xccebace4 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xcd0548c8 clk_debugfs_add_file -EXPORT_SYMBOL_GPL vmlinux 0xcd110340 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xcd37b243 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0xcd39a0c1 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcda63825 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xcdaaa044 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd118a1 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource -EXPORT_SYMBOL_GPL vmlinux 0xce09fad7 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xce0c7253 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xce1be263 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xce3079cb ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xce311491 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0xce3567cb user_destroy -EXPORT_SYMBOL_GPL vmlinux 0xce3f5928 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xce4ded1b crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce6f593b handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xcecf68a4 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xced7c57f ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xcedd5275 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode -EXPORT_SYMBOL_GPL vmlinux 0xcefeb62e noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0xcf023d35 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0xcf1565bd exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xcf257ed0 xen_swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0xcf2b47e0 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xcf374b20 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xcf413ee4 tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xcf4c8cd6 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf7059c5 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfbc7b9a list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcfc0569b md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xcfc238bd pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xcfc2e541 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfe2a803 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xcfe385b7 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0xd02a44bd i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd05d9a6b phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd0ac9981 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd0b74bc7 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c94693 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xd0e5d9cc xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xd12402df mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xd128adeb crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xd14598a1 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xd14c8520 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0xd1553b3b srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd176a119 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd17748dd __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xd18cfbcc blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0xd19fd8af pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0xd1b7e3ea devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xd1c2ff6f nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd211c07d vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0xd217af63 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd234febc thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd2559ba4 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0xd260b30e queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xd28285ef power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd299811d virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xd2ad940d crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xd2b18a67 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0xd2caed84 clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2e88de5 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd2fb031f power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xd2ff454f kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xd30c6f49 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0xd31069a0 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xd3120dab dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xd3414a1e subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd36b57d4 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xd36bae0e devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xd385be3c dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3bf27cc virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0xd3da0157 efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xd3dd816a ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xd3f3ee83 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xd402591c swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd405d4ef swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd4214d85 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xd421ba7a devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xd43b955e sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xd4490d10 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd45ea32f hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0xd45fd65b inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xd4625230 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xd4843432 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xd4a84dcc pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0xd4b86414 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xd4b967fc usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4d7aa6d agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xd4faca27 acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xd5240cfb pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0xd53d4fc2 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0xd56b878b agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0xd57c5161 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xd584b774 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xd58f1240 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xd59fedbf devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5de197b inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0xd5ebc1d8 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0xd6055007 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd62d2505 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xd62fdac7 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xd633b318 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd644de90 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd68872f3 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0xd68c992b mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xd68f190c usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xd6a04bac scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0xd6b67094 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0xd6b8f26c spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0xd6be446a ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0xd6c4574c of_css -EXPORT_SYMBOL_GPL vmlinux 0xd6d12e65 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0xd6ed3117 aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0xd6ef8296 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd70bc4bc ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd72468ea rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd764d265 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd7927fb9 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xd7929540 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xd79eda49 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd7a6caf6 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7e3d9c2 xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0xd81a8bf2 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd8260ca7 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xd8363e4a task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xd83ad49d phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xd848f677 tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xd85c83cd cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xd86e1688 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd891a2e7 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xd8927648 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xd8a35f82 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xd8b31c2d crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xd8c6c561 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xd8f2e4dc ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges -EXPORT_SYMBOL_GPL vmlinux 0xd92ddbd2 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xd935292f apic -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd947377b bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xd94f1189 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xd94fa823 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xd9510862 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd9580123 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd977273d pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xd97f1395 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin -EXPORT_SYMBOL_GPL vmlinux 0xd98883af bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd98ff502 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xd99f9ef8 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xd9cabd12 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xd9e2b098 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xd9e857c2 nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9ee1a8c power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd9f87a04 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xda242c09 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xda24e5d6 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xda389561 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0xda47c5ed devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xda4ff50e cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xda7533a4 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xda78e975 __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0xda8b9945 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaa5f0b2 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0xdae32a0a devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaf59773 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0xdaf92ab7 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xdafd17b6 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xdb0a7fbe wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb56f3a1 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb734f22 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb916fd0 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xdbb97701 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdbd11a00 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xdbdb997c acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbfc8d4b pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc191779 xen_swiotlb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xdc1a42cd iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xdc316893 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xdc3af0af skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0xdc536027 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc848800 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdccf1243 xen_swiotlb_unmap_sg_attrs -EXPORT_SYMBOL_GPL vmlinux 0xdce95190 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xdcea4780 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xdd169032 device_add -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd4ebabb fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0xdd6439a7 acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0xdd6a05d3 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xdd6c2d50 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd6ea392 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xdd7443b9 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdd83e8f9 xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xdd9496df crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xdd99b674 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xdd9ba3e7 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xdd9c5859 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xddbda150 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc175ec cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xddc18f2e pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xdde3e4f6 xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0xddf0e1d5 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xde0fca2a usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xde20cfc4 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xde50aab4 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xde50d216 extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0xde539850 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xde679e92 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xde7e5206 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0xde8b543f usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next -EXPORT_SYMBOL_GPL vmlinux 0xde9383f7 device_del -EXPORT_SYMBOL_GPL vmlinux 0xde977f63 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdea44474 set_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0xdecf9688 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xdef58e4d rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0xdf0a6959 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0xdf4a1ecf usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0xdf622181 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xdf66ca81 ucode_cpu_info -EXPORT_SYMBOL_GPL vmlinux 0xdf75282c inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xdfa1adb5 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdfac5632 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xdfc8d769 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xdfd3bb47 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0xdfeabbf2 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xdfec85fc sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe02141f2 clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xe02d80e5 clear_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xe055f09f ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xe06607ee spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0xe06d13c1 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe09a2504 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xe0afd82b acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0c57084 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq -EXPORT_SYMBOL_GPL vmlinux 0xe0c811b0 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xe0f6f966 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xe1068136 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe11c6dc9 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0xe1253d5e virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xe16b0d30 unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xe16b9179 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0xe16c64ad regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0xe16d495e proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe186b74e ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xe193d14c scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xe1aab72b security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1cd4052 acpi_subsys_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xe1decb14 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0xe1f1f309 x86_vector_domain -EXPORT_SYMBOL_GPL vmlinux 0xe1ff07be rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xe2137c3d irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xe21b8842 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xe2366cea crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe268f988 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xe26b79ce wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe29349dc copy_reserved_iova -EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe29ab577 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xe2ab232a ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0xe2b5c273 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0xe2c1f96c ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0xe2cf7959 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe30ee15a acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0xe3117082 i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xe3409aed rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0xe352aabc adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0xe3679880 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xe370f7be ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0xe3790a10 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xe37f29cb ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0xe38f9c7a sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list -EXPORT_SYMBOL_GPL vmlinux 0xe395499c ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xe3988f8c rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xe39f8c86 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xe3ab61d0 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xe3bda663 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe3c5ed13 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xe3c81c64 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xe3f69c4d skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0xe3fa156b bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0xe400bbb5 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0xe406c585 nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0xe418fde4 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe4273cc1 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe45c6e46 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe469c915 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xe469ce71 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe4876c0e scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4cae125 component_add -EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0xe4f8e1f2 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xe4fe652b regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xe5186904 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr -EXPORT_SYMBOL_GPL vmlinux 0xe57f26f9 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xe57f73db rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58a13ae pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xe58af905 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe592958b devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5977418 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0xe5b9e37f blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0xe5c99843 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xe5eac41d debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0xe5fb31b2 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xe5fd85a0 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xe6033947 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xe638c27e ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0xe64bff4c kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe6817dc4 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xe686231a unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xe6ad2a05 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6dc2272 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xe6dd8218 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6ea182e pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe6fb1512 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0xe70635f0 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xe7127fb7 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe749d5b1 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76b36b7 user_update -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe786646c device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xe7ac2784 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe7bda4d9 xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0xe7d6362f devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0xe7d69409 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe80a90dc tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xe80e1bd3 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xe817d8bd pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe823a8ce ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xe82beb1a device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xe82f88b5 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe88d7783 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe8a37f1b tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xe8ae3086 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xe8d3864d acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xe8f6082a usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe9243f9c cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe9408621 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0xe9488e7a i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0xe9519aeb component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xe9574b8a sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xe95d6e1b metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xe963a571 xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0xe997a21e regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xe9991aaf regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xe9997922 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xe99aed01 sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0xe9a4bb32 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xea0202f6 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea2d40fa regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xea308473 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xea398abd rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea49d8d4 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0xea4a922c tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0xea5d1ffa dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0xea7bf68e crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xea7ef336 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xea9bcde5 usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0xeac4af64 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0xeae8da55 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xeaefcb2c acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0xeb150a1b tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xeb1c5653 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region -EXPORT_SYMBOL_GPL vmlinux 0xeb2b629a device_register -EXPORT_SYMBOL_GPL vmlinux 0xeb2eb288 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xeb4054b8 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xeb4a96c8 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0xeb584941 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0xeb6adb3f gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xeb8274d2 percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0xeb8da754 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xeb91f947 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xebaada12 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xebb768de power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xebcc4984 trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xebd284d9 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xebd878a5 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0xebdb5943 dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xec05ee3f ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec23c830 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec3e8ca6 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0xec6ef073 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xec7a9380 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xec815c27 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0xecad3b34 do_machine_check -EXPORT_SYMBOL_GPL vmlinux 0xece35d68 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xeced40c5 gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0xed00d24b regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xed3637cb sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0xed4c6fcd udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xed523f3c watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xed790d41 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xed81aad8 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0xed8d9068 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0xed92de62 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0xed9711a8 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0xed9e2448 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xedc966ab acpi_dev_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xeddead80 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xede461b5 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xedea0146 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 -EXPORT_SYMBOL_GPL vmlinux 0xee189892 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xee510d75 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xee54fa5a usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0xee612507 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0xee654f1e proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0xee698714 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee6ceeda fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xeebad7c2 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xeebe757f crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xef0c41d3 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xef1da87b device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef206c58 devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xef2150ca xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0xef2a912d ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xef43fe36 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0xef4d856c pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xef56ed56 user_read -EXPORT_SYMBOL_GPL vmlinux 0xef5fb258 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat -EXPORT_SYMBOL_GPL vmlinux 0xef756fb0 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xef8af86c rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xef8c1345 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xef8e46f0 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefebc228 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0xefee9285 bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0xeffd5b52 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0xf00d73cb crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xf025fbce netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0xf02dd7a1 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf04a16b2 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf0b21cf3 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xf0b8e047 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xf0c7f6be sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xf0df00ba xen_swiotlb_map_sg_attrs -EXPORT_SYMBOL_GPL vmlinux 0xf0f306ed usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf10e2b68 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xf17b905b __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf185f55e device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xf18ab93d xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0xf194729c usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xf196e190 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0xf1977262 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xf19b7f7c ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1b3e2ef ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr -EXPORT_SYMBOL_GPL vmlinux 0xf1be09b3 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xf1dabad8 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xf20b3f1f ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xf2147f1e class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf24462cb xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xf25d6ab5 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf27adacc __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2b8dff0 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xf2c1fcef pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xf2e9f235 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf313f4df tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf32c090f usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf336c8be devres_release -EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xf3489bf0 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0xf353d884 usb_string -EXPORT_SYMBOL_GPL vmlinux 0xf36348fa genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b6e879 fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0xf3ba2541 is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3c21041 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0xf3cee433 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xf3d16a69 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0xf3dd3ec1 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf3ebf4eb arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0xf3ec80a7 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf41d9a07 dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xf478b9d3 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4aa6cd9 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xf4bacc2f regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5126c45 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xf52a8ffa call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf539aa22 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xf53b3238 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0xf54586e9 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf557380b fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xf5876fee dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xf58bd25d devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xf591186d fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xf594c461 crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5b55b8c tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xf5c16542 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xf5c327a3 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xf5d29d93 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0xf5d62c18 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf5e01f1f arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xf5e71fc7 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0xf604152f gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xf617cc79 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xf62010da pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xf6320c6f sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xf65732be device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xf672540c rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xf6761465 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xf677012a __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0xf69336cf mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0xf6a9556a btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xf6ab4af2 nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xf6bbe048 ping_close -EXPORT_SYMBOL_GPL vmlinux 0xf6c42a45 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6cafda8 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6ecc1d7 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather -EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace -EXPORT_SYMBOL_GPL vmlinux 0xf72859ca regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0xf73c5d2a hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xf7943072 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7cdd291 __class_register -EXPORT_SYMBOL_GPL vmlinux 0xf7d26439 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xf7e03a66 tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0xf8239514 xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf858e304 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0xf873394a ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf8805e6d crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xf885e502 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf8a134b8 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xf8ae4d78 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xf8c0e5f1 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf91542af sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xf91e9bfd default_iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xf929034f unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf934909d regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xf93dc141 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf95b3f46 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0xf97367fc skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match -EXPORT_SYMBOL_GPL vmlinux 0xf97709dd sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xf97abfcc xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0xf9822b4a con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9c2ae08 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9d828fb tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback -EXPORT_SYMBOL_GPL vmlinux 0xf9ddf8a9 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xf9e790c6 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched -EXPORT_SYMBOL_GPL vmlinux 0xfa4f6e0b iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xfa5979f9 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xfa6dc15c bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec -EXPORT_SYMBOL_GPL vmlinux 0xfa950822 pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xfac0e670 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0xfae8561b da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfaf13f2f sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xfaf5e081 acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xfb0e1b25 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xfb245a38 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xfb2ab25f mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfb2b3aaa crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb4b180b ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfb52967d crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe -EXPORT_SYMBOL_GPL vmlinux 0xfb654f33 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb8f80fa device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc0e4b0 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xfbd53689 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xfbfa98a4 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0a90fb acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xfc146883 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc2d6aa0 devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xfc338a49 phy_init -EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc43ad96 cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xfc49f868 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0xfc4c6263 __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0xfc6d4847 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfc70a468 pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0xfc793a69 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0xfc8dbc8b xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0xfcac80e6 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0xfcb5fab9 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xfcc1aa05 __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0xfcd074da __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xfcec0ac8 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcf03905 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0xfcf3a701 spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0xfd2045d1 __online_page_increment_counters -EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xfd6dd135 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xfd6f86b6 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd7cce37 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xfd8bde87 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0xfd995a6e skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xfddc2665 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xfdedf6e2 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0xfe0a496c tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xfe1e228f pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xfe308907 regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xfe3bdfa8 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xfe3f71fc ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0xfe562a9b anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xfe68228d nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xfe6fc3ea regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xfe755b08 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xfe862295 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfec5c375 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfee38273 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xfeffd73d shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xff0246b0 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff0ecdfb irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0xff23bcf7 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2970e7 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0xff2ce747 machine_check_poll -EXPORT_SYMBOL_GPL vmlinux 0xff3e4776 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0xff4e8248 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xff594cd5 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff5f85a1 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xff5f8640 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff9f7987 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xffbd1273 cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xffd0dc6a preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xffe79275 ata_port_desc reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/amd64/lowlatency.compiler +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/amd64/lowlatency.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/amd64/lowlatency.modules +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/amd64/lowlatency.modules @@ -1,4616 +0,0 @@ -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_fintek -8250_mid -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -BusLogic -DAC960 -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -abituguru -abituguru3 -ablk_helper -ac97_bus -acard-ahci -acecad -acenic -acer-wmi -acerhdf -acpi-als -acpi_extlog -acpi_ipmi -acpi_pad -acpi_power_meter -acpi_thermal_rel -acpiphp_ibm -acquirewdt -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7170 -adv7175 -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -advantechwdt -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -aes-x86_64 -aesni-intel -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -aha152x_cs -ahci -ahci_platform -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airo_cs -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -ali-ircc -alienware-wmi -alim1535_wdt -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am53c974 -ambassador -amc6821 -amd -amd-rng -amd5536udc -amd64_edac_mod -amd76xrom -amd8111e -amd_freq_sensitivity -amd_iommu_v2 -amdgpu -amdkfd -amilo-rfkill -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apanel -apds9300 -apds9802als -apds990x -apds9960 -apple-gmux -apple_bl -appledisplay -applesmc -appletalk -appletouch -applicom -aquantia -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_ps2 -arc_uart -arcfb -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3935 -as5011 -asb100 -asc7621 -ascot2e -asix -ast -asus-laptop -asus-nb-wmi -asus-wmi -asus_atk0110 -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atlas_btns -atm -atmel -atmel_cs -atmel_mxt_ts -atmel_pci -atmtcp -atp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avm_cs -avma1_cs -avmfritz -ax25 -ax88179_178a -axnet_cs -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1pci -b1pcmcia -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcma-hcd -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish-x86_64 -blowfish_common -blowfish_generic -bluecard_cs -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt3c_cs -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btuart_cs -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c2port-duramar2150 -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia-aesni-avx-x86_64 -camellia-aesni-avx2 -camellia-x86_64 -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5-avx-x86_64 -cast5_generic -cast6-avx-x86_64 -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_das16_cs -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -ccp -ccp-crypto -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfag12864b -cfag12864bfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20-x86_64 -chacha20_generic -chacha20poly1305 -chaoskey -chipreg -chnl_net -chromeos_laptop -chromeos_pstore -ci_hdrc -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -ck804xrom -classmate-laptop -clip -clk-cdce706 -clk-palmas -clk-pwm -clk-s2mps11 -clk-si5351 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cm4000_cs -cm4040_cs -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -com20020 -com20020-pci -com20020_cs -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_isadma -comedi_parport -comedi_pci -comedi_pcmcia -comedi_test -comedi_usb -comm -compal-laptop -configfs -contec_pci_dio -cordic -core -coretemp -cosm_bus -cosm_client -cp210x -cpcihp_generic -cpcihp_zt5550 -cpia2 -cpsw_ale -cpu-notifier-error-inject -cpu5wdt -cpuid -cr_bllcd -cramfs -crc-ccitt -crc-itu-t -crc32 -crc32-pclmul -crc7 -crc8 -crct10dif-pclmul -cros_ec -cros_ec_devs -cros_ec_i2c -cros_ec_keyb -cros_ec_lpc -cros_ec_spi -crvml -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -csiostor -ct82c710 -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_cs -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dca -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -dcdbas -ddbridge -de2104x -de4x5 -decnet -deflate -defxx -dell-laptop -dell-led -dell-rbtn -dell-smm-hwmon -dell-smo8800 -dell-wmi -dell-wmi-aio -dell_rbu -denali -denali_dt -denali_pci -des3_ede-x86_64 -des_generic -designware_i2s -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9601 -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -dp83848 -dp83867 -dpt_i2o -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dtl1_cs -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc3 -dwc3-pci -dwmac-generic -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -e752x_edac -earth-pt1 -earth-pt3 -eata -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -ec_bhf -ec_sys -echainiv -echo -edac_core -edac_mce_amd -edt-ft5x06 -eeepc-laptop -eeepc-wmi -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efi-pstore -efi_test -efs -ehset -einj -elan_i2c -elo -elsa_cs -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_pcmcia -ems_usb -emu10k1-gp -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -ene_ir -eni -enic -epat -epia -epic100 -eql -esas2r -esb2rom -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -eurotechwdt -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f71805f -f71808e_wdt -f71882fg -f75375s -f81232 -fakelb -fam15h_power -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_cs -fdp -fdp_i2c -fealnx -ff-memless -fintek-cir -firedtv -firestream -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fjes -fl512 -flexfb -floppy -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -fmvj18x_cs -fnic -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fschmd -fsl_lpuart -ft6236 -ftdi-elan -ftdi_sio -ftl -fujitsu-laptop -fujitsu-tablet -fujitsu_ts -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcm -gdmtty -gdmulte -gdmwm -gdth -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -genwqe_card -gf128mul -gf2k -gfs2 -ghash-clmulni-intel -ghash-generic -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -glue_helper -gluebi -gma500_gfx -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-104-idio-16 -gpio-addr-flash -gpio-adp5520 -gpio-adp5588 -gpio-amd8111 -gpio-amdpt -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-f7188x -gpio-fan -gpio-generic -gpio-ich -gpio-ir-recv -gpio-it87 -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-rdc321x -gpio-regulator -gpio-sch -gpio-sch311x -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gr_udc -grace -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gxt4500 -hackrf -hamachi -hampshire -hangcheck-timer -hanwang -hci -hci_uart -hci_vhci -hdaps -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hecubafb -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfi1 -hfs -hfsplus -hgafb -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-hyperv -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hih6130 -hio -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi504_nand -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horizon -horus3a -hostap -hostap_cs -hostap_pci -hostap_plx -hp-wireless -hp-wmi -hp100 -hp_accel -hpfs -hpilo -hpsa -hptiop -hpwdt -hsi -hsi_char -hso -hsr -hsu_dma -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hv_balloon -hv_netvsc -hv_network_direct -hv_storvsc -hv_utils -hv_vmbus -hwa-hc -hwa-rc -hwmon-vid -hwpoison-inject -hx8357 -hyperv-keyboard -hyperv_fb -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd756-s4882 -i2c-amd8111 -i2c-cbus-gpio -i2c-cros-ec-tunnel -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-emev2 -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-ismt -i2c-kempld -i2c-matroxfb -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-nforce2 -i2c-nforce2-s4985 -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-robotfuzz-osif -i2c-scmi -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i3000_edac -i3200_edac -i40e -i40evf -i5000_edac -i5100_edac -i5400_edac -i5500_temp -i5k_amb -i6300esb -i7300_edac -i7300_idle -i740fb -i7core_edac -i82092 -i82975x_edac -i915 -i915_bpo -iTCO_vendor_support -iTCO_wdt -ib700wdt -ib_addr -ib_cm -ib_core -ib_ipath -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_qib -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibm_rtl -ibmaem -ibmasm -ibmasr -ibmpex -ichxrom -icp_multi -icplus -ics932s401 -ideapad-laptop -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_gen2 -idtcps -ie31200_edac -ie6xx_wdt -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -ims-pcu -imx074 -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int3400_thermal -int3402_thermal -int3403_thermal -int340x_thermal_zone -int51x1 -intel-hid -intel-lpss -intel-lpss-acpi -intel-lpss-pci -intel-rng -intel-rst -intel-smartconnect -intel-vbtn -intel_ips -intel_menlow -intel_oaktrail -intel_pch_thermal -intel_pmc_ipc -intel_powerclamp -intel_punit_ipc -intel_qat -intel_quark_i2c_gpio -intel_rapl -intel_soc_dts_iosf -intel_soc_dts_thermal -intel_telemetry_core -intel_telemetry_debugfs -intel_telemetry_pltdrv -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -intelfb -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioatdma -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipwireless -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irqbypass -irtty-sir -isci -iscsi_boot_sysfs -iscsi_ibft -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it87 -it8712f_wdt -it87_wdt -it913x -itd1000 -ite-cir -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -k10temp -k8temp -kafs -kalmia -kaweth -kb3886_bl -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks0127 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kvm -kvm-amd -kvm-intel -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l440gx -l4f00242t03 -l64781 -lan78xx -lanai -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-adp5520 -leds-bd2802 -leds-blinkm -leds-clevo-mail -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-ss4200 -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_cs -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -liquidio -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -litelink-sir -lkkbd -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lmc -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac_hid -macb -machzwd -macmodes -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77693 -max77693-haptic -max77693_charger -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mce-inject -mce_amd_inj -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-cavium -mdio-gpio -mdio-octeon -mdio-thunder -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -mei -mei-me -mei-txe -mei_phy -memory-notifier-error-inject -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -metro-usb -metronomefb -meye -mf6x4 -mga -mic_bus -mic_card -mic_cosm -mic_host -mic_x100_dma -michael_mic -micrel -microchip -microread -microread_i2c -microread_mei -microtek -mii -minix -mip6 -mite -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_block -mmc_spi -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi-laptop -msi-wmi -msi001 -msi2500 -msp3400 -mspro_block -msr -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwave -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxm-wmi -mxser -mxuport -myri10ge -n411 -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nand -nand_bch -nand_ecc -nand_ids -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -ncpfs -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -nettel -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfit -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_daq_700 -ni_daq_dio24 -ni_labpc -ni_labpc_common -ni_labpc_cs -ni_labpc_isadma -ni_labpc_pci -ni_mio_cs -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicpf -nicstar -nicvf -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nmclan_cs -nosy -notifier-error-inject -nouveau -nozomi -ns558 -ns83820 -nsc-ircc -ntb -ntb_hw_amd -ntb_hw_intel -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nuvoton-cir -nv_tco -nvidiafb -nvme -nvmem_core -nvram -nxp-nci -nxp-nci_i2c -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_xilinx_wdt -old_belkin-sir -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_cs -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p4-clockmod -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -padlock-aes -padlock-sha -palmas-pwrbutton -palmas-regulator -panasonic-laptop -pandora_bl -panel -paride -parkbd -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pata_acpi -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_oldpiix -pata_opti -pata_optidma -pata_pcmcia -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sl82c105 -pata_triflex -pata_via -pc300too -pc87360 -pc87413_wdt -pc87427 -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-hyperv -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia -pcmcia_core -pcmcia_rsrc -pcmciamtd -pcmda12 -pcmmio -pcmuio -pcnet32 -pcnet_cs -pcrypt -pcspkr -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc_adma -peak_pci -peak_pcmcia -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-tahvo -phy-tusb1210 -physmap -pinctrl-broxton -pinctrl-intel -pinctrl-sunrisepoint -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pn533 -pn544 -pn544_i2c -pn544_mei -pn_pep -poly1305-x86_64 -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_core -pps_parport -pptp -prism2_usb -processor_thermal_device -ps2mult -psmouse -psnap -pt -ptp -pulsedlight-lidar-lite-v2 -punit_atom_debug -pvpanic -pvrusb2 -pwc -pwm-beeper -pwm-lp3943 -pwm-lpss -pwm-lpss-pci -pwm-lpss-platform -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa27x_udc -qat_dh895xcc -qat_dh895xccvf -qcaux -qcom-spmi-iadc -qcom-spmi-vadc -qcom_spmi-regulator -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qlogic_cs -qlogicfas408 -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quatech_daqp_cs -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -ray_cs -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio-scan -rio500 -rionet -rivafb -rj54n1cb0c -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-bq32k -rtc-bq4802 -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-hid-sensor-time -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-r9701 -rtc-rc5t583 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -salsa20-x86_64 -salsa20_generic -samsung-keypad -samsung-laptop -samsung-q10 -samsung-sxgbe -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sb1000 -sb_edac -sbc60xxwdt -sbc_epx_c3 -sbc_fitpc2_wdt -sbc_gxx -sbni -sbp_target -sbs -sbs-battery -sbshc -sc1200wdt -sc16is7xx -sc92031 -sca3000 -scb2_flash -sch311x_wdt -sch5627 -sch5636 -sch56xx-common -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scif -scif_bus -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -sdhci -sdhci-acpi -sdhci-pci -sdhci-pltfm -sdio_uart -sdricoh_cs -sedlbauer_cs -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serial_cs -serio_raw -sermouse -serpent-avx-x86_64 -serpent-avx2 -serpent-sse2-x86_64 -serpent_generic -serport -ses -sfc -sh_veu -sha1-mb -sha1-ssse3 -sha256-ssse3 -sha512-ssse3 -shark2 -shpchp -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sis -sis-agp -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skd -skfp -skge -skx_edac -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -sl811_cs -slcan -slicoss -slip -slram -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smc91c92_cs -smipcie -smm665 -smsc -smsc-ircc2 -smsc37b787_wdt -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4117 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-als4000 -snd-asihpi -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-compress -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-ext-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel-sst-acpi -snd-intel-sst-core -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pcsp -snd-pcxhr -snd-pdaudiocf -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-sb-common -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-dmic -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-imx-audmux -snd-soc-max98090 -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rl6231 -snd-soc-rl6347a -snd-soc-rt286 -snd-soc-rt5631 -snd-soc-rt5640 -snd-soc-rt5645 -snd-soc-rt5660 -snd-soc-rt5670 -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-skl -snd-soc-skl-ipc -snd-soc-skl_rt286 -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sst-acpi -snd-soc-sst-baytrail-pcm -snd-soc-sst-broadwell -snd-soc-sst-byt-max98090-mach -snd-soc-sst-byt-rt5640-mach -snd-soc-sst-bytcr-rt5640 -snd-soc-sst-bytcr-rt5660 -snd-soc-sst-cht-bsw-max98090_ti -snd-soc-sst-cht-bsw-rt5645 -snd-soc-sst-cht-bsw-rt5672 -snd-soc-sst-dsp -snd-soc-sst-haswell -snd-soc-sst-haswell-pcm -snd-soc-sst-ipc -snd-soc-sst-mfld-platform -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-us122l -snd-usb-usx2y -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-vxpocket -snd-ymfpci -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -softing_cs -solo6x10 -solos-pci -sony-btf-mpx -sony-laptop -soundcore -sp2 -sp5100_tco -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -spectrum_cs -speedfax -speedstep-lib -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-nor -spi-oc-tiny -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-sc18is602 -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spl -splat -spmi -sr9700 -sr9800 -ssb -ssb-hcd -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stmmac -stmmac-platform -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -surfacepro3_button -svgalib -sx8 -sx8654 -sx9500 -sym53c500_cs -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink -synclink_cs -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -t1pci -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teles_cs -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -thinkpad_acpi -thmc50 -thunder_bgx -thunderbolt -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tlclk -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmem -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -topstar-laptop -torture -toshiba-wmi -toshiba_acpi -toshiba_bluetooth -toshiba_haps -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_atmel -tpm_crb -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_infineon -tpm_nsc -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish-avx-x86_64 -twofish-x86_64 -twofish-x86_64-3way -twofish_common -twofish_generic -typhoon -u132-hcd -uPD98402 -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -us5182d -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -usnic_verbs -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vboxguest -vboxsf -vboxvideo -vcan -vcnl4000 -ven_rsi_91x -ven_rsi_sdio -ven_rsi_usb -ves1820 -ves1x93 -veth -vfio -vfio-pci -vfio_iommu_type1 -vfio_virqfd -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-camera -via-cputemp -via-ircc -via-rhine -via-rng -via-sdmmc -via-velocity -via686a -via_wdt -viafb -video -videobuf-core -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videocodec -videodev -vim2m -viperboard -viperboard_adc -virt-dma -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -visorbus -visorhba -visorinput -visornic -vitesse -vivid -vlsi_ir -vmac -vme_ca91cx42 -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmlfb -vmw_balloon -vmw_pvscsi -vmw_vmci -vmw_vsock_vmci_transport -vmwgfx -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vsock -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83627ehf -w83627hf -w83627hf_wdt -w83781d -w83791d -w83792d -w83793 -w83795 -w83877f_wdt -w83977af_ir -w83977f_wdt -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -wafer5823wdt -walkera0701 -wanxl -warrior -wbsd -wcn36xx -wd719x -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -winbond-cir -wire -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wl3501_cs -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wmi -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x38_edac -x86_pkg_temp_thermal -x_tables -xc4000 -xc5000 -xcbc -xen-blkback -xen-evtchn -xen-fbfront -xen-gntalloc -xen-gntdev -xen-kbdfront -xen-netback -xen-pciback -xen-pcifront -xen-privcmd -xen-scsiback -xen-scsifront -xen-tpmfront -xen_wdt -xenfs -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xhci-plat-hcd -xillybus_core -xillybus_pcie -xirc2ps_cs -xircom_cb -xor -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yenta_socket -yurex -zatm -zaurus -zavl -zcommon -zd1201 -zd1211rw -zforce_ts -zfs -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -znvpair -zpios -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx -zram -zunicode -zynq-fpga reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/arm64/generic +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/arm64/generic @@ -1,17640 +0,0 @@ -EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0xa2125399 ce_aes_expandkey -EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0xe9a12b32 ce_aes_setkey -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x7726d288 mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0xea8e63f5 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x4664cffe bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0x9b22a369 bcma_core_dma_translation -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x176b7661 btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0ce1f9f8 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x82cf913b ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x905f896f ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9c083687 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xce38ff56 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2d224dfc st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x5bf0eda4 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x6ecf7681 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x963e942d st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x18a1fb90 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc90d6183 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe239d1e1 xillybus_init_endpoint -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x2fba8a73 dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x36babcee dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x3ef007ad dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x64d5ee84 dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xfa665606 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xfbdaf0f3 dw_dma_get_src_addr -EXPORT_SYMBOL drivers/dma/pl330 0xc25aa6a6 pl330_filter -EXPORT_SYMBOL drivers/edac/edac_core 0xae450014 edac_mc_find -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04bd412e fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x08af950b fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x090e6838 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x182b9a4d fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x36f33188 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x38dcc54e fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3f17c51c fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x435d5405 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x43e0b750 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5dbfb9 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x62362cd3 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6db44ecb fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9163a890 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x996aecb3 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9ceb90dc fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9d395786 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xae57d871 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb021da49 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0xba5016f8 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc9aebb92 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xca620da8 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcb4468fe fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xde983264 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe20d0122 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf44f4142 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf694f4c9 fw_run_transaction -EXPORT_SYMBOL drivers/fmc/fmc 0x2590686c fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x2f01743f fmc_driver_register -EXPORT_SYMBOL drivers/fmc/fmc 0x4301f2b8 fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x45c0564f fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0x52a5da59 fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x597a0645 fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x667305df fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x7980a248 fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0xbafbdc00 fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0xd2699212 fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0xd554943b fmc_find_sdb_device -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03e83a72 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04319d67 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05e9ecbe drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05fdcadc drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0692d480 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07372087 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07b052be drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x084bc933 drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x088e51a8 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0932681e drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0985ca36 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aa2c88f drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b29c8a3 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bfb286b drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cb93c35 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dc177be drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ddf716a drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e8419b2 drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f362add drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fcabf3e drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x104d35df drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1094763c drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11cef0de drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11d2135c drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13474bf6 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16831585 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17f97f0a drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1864be34 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b182663 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b95827d drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c909558 drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ceb15b5 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cfe1a26 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d00ef83 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1da467ce drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f1137e8 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22cd91ef drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23d6f55b drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f34c60 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29281308 drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2afa57f9 drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bc330c9 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ca53d45 drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cf65b32 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d295f7f drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e1a34cb drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e60931b drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e961e2f drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30481e7a drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30620e33 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3065044f drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30f9cb51 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31f2f95d drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32f7cb38 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33823f48 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34134add drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35b9b58c drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37590b4e drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38b5d1e2 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3907054d drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b3113a6 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bea808e drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c3e71ca drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c47ea3b drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d3aefe4 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e253dc1 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e423cff drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f9755f2 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4052b143 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41805b3c drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42077158 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44477172 drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x452f8b7e drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46075c23 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x492cfdb3 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49e315b3 drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c6bdbfc drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cbfca92 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cc99dc8 drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e1af0a3 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4efb6ea9 drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f4c0e36 drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f80e833 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50f4dce4 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x516c17e4 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5299e946 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54c90abf drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55071a1a drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5720907f drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57ce1e87 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57d91ec5 drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58c2113a drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5907daaa drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ab595d5 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c1f0240 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dc697d2 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e7943f7 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e849823 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ff572c3 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6001682a drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60c572cf drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61b987ee drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64ae984c drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64b64233 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65e1c4fa drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x667d9202 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x668712ce drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x697c3143 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a5c4e63 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b94f211 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c841116 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c9e6470 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f19b1e9 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7101c0b6 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71feab76 drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72017236 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72838c19 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x732c8849 drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x735065e6 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7453ab98 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74f17e09 drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75222690 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76baafda drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x777ee2ae drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78b5345b drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7948bd06 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a0aedbb drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a739f3d drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b4bc537 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b529742 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9a639b drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7baff49e drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d023a66 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e098c65 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e920ea9 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ec69f51 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ec8aaea drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f194c85 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8028457a drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80a487eb drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8168996b of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82b329e7 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8426ba9b drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84e34c7f drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8567297a drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85da50e4 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8619d8eb drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x865e9590 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88586687 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8888a8e0 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8896a563 drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x897f549f drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89812d5d drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89855093 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x898ed259 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89e3b0d6 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a0724ea drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a20b56e drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b002ee3 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b24fbcf drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c1c1227 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c734ba4 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ca2dc27 drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cf45b78 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e07db88 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e29a5fa drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f9af467 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ff124bb drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90c9e292 drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90f0ffbb drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91d9b762 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fef923 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x927bae43 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x938cbe4d drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93ef1de0 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97efb0b8 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x984dd406 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98fab3dc drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c926acd drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ccc6190 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d6f253e drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e15c6c8 drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ed58047 drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ed8b3c1 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ede4eee drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f9e5f72 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0bbcd9b drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1836aee drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa361e264 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3ddc491 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3e6a0d2 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4d041c9 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa56be241 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa63915ad drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6c6426c drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7013910 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8106a0a drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8f2f3b0 drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa929f589 drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab6c8f63 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad07b30e drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad15c3b3 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb05bb784 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0e42995 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb191e7b9 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2894b3a drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2d8b03b drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6d197f6 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9af17df drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9d42ee4 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba1062ec drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba4720e9 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbac4eb44 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbad34dcc drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbadf9c5e drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaf394ac drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb194030 drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc51ae96 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc902abe drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe7d213d drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0c87fc1 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1c2e0f1 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1c37a92 drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1f06264 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2c3e1a0 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc71b930d drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc77ab6ea drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8acf9f0 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc99c87c4 drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9c47178 drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb353075 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbd49c03 drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce924c8f drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0xceccf830 drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf8ffae8 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1456a73 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd293bd95 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd29821d4 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3578738 drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3705167 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6d20475 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7f44880 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd94b088f drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcbde5fb drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd382ae1 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd4c5714 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf9cac1d drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3551bfc drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe39a0807 drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe549299e drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5532db3 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6c22be4 drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7653565 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe96b8d3c drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9ea1d33 drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebcc8e6c drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec2bdd62 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec623cd7 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec9ba35a drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed67b26b drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed8b4355 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef171556 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef3f812f drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xefd8e666 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf219b6a0 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2d752f3 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf446f5fa drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf62e8ea8 of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6800732 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6d2520a drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf844cd16 drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8df46d5 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8f8ae3e drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9480ba9 drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9afc9f0 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9c63fa6 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff15fc57 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x028449f9 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0456d377 drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x060d5445 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x082baf73 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x089056ce drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09795283 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d4d09bc drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10d394da drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12f2d28d drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12ffa991 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x157e8f95 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x166c7a8d drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2227b5c6 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x231e8220 drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23ee4328 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x280eac97 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2af80190 drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e3e936e drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e3f8a45 drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e79f758 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30b93714 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3202ef7e drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x324e0af3 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38f7c293 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a2c90a9 drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a639596 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b8c43f7 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bd694ac drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x402a5c2e drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x428dcca8 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x469fd663 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47a95933 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47e3d0eb drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48a1e8c8 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b91db06 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bd32d75 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c038ebc drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fb3db02 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x508b4d91 drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50a0cb6e drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55789074 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55e3086a drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59cc3071 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a038f54 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b139058 drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bd64b93 drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d5b63ca drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dc2b653 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63a07277 drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63cc8126 drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x662e7501 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66dc0707 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x675f7064 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x683d5807 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68df0aad drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bbac55d drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c881698 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6caf99b0 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d7676a5 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x724e1043 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72a887f1 drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74c839a5 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76bcffd9 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7899c9f5 drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7be6084b drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c599082 drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8094f7f9 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81c12227 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x824ce3e7 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8331a6bf drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84b637fe drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8544cf75 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87058ebb drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8827296f drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a3841b1 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c605a3d drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fea9ba drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x927c4ae2 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95d8639e drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97942e77 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b549dd7 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d14ec09 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9deb39b5 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa02a3515 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa040e974 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4019ec4 drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4c296ba drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5c1cfa0 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf6404d0 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0218a85 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1fd2d83 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb24168b2 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4dfa169 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4e37bdf drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb57cdf94 drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6eac196 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb83c41dc drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbae697f6 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc466ffe drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc024befe drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0d01baa __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc149b410 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc472f264 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc73e4698 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc75bc2a3 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7762588 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca02898e drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca555e6d drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb01ba1d drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc658351 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc6be360 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce7aba9a drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcec82957 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfaeea23 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0181f65 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd14dcbf8 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd58ece61 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd73aa4d0 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd802f1ef drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd93b3268 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddac4753 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde0725ed drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde8a112d drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdff5a252 drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe01b1d3b drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1c6641d drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe29c736f drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe81ca4e5 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8d29183 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9325f34 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeed9c631 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeff819d3 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0fce914 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf313dac0 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf52ecbf4 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf590ba40 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5cc8e37 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6016f7f drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8958cef drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9a64f27 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9c33176 drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdef8fa3 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x02392344 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0fe02f59 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ea96bc9 ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x263756e0 ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c1fc621 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a2bd92d ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ac2274b ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42ecaef7 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4568ec08 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x482f6e88 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d21e626 ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ed2d474 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x531499fa ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x53d390e0 ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5570c7f7 ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x589050e6 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x591d7b41 ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59c87641 ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ee757e7 ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f655759 ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x608d2e48 ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x646625ef ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a156a25 ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b5a5d63 ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b974046 ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e9dc538 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fa23711 ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fc499b5 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fff7bce ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70c922c2 ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70fca366 ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79e14971 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8112a8b4 ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85dc04e5 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b270fd0 ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c33d8a3 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d61fd60 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95d2ff0e ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x98cbbf87 ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d4bf34b ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0e1f89b ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2367e42 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5912c3d ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa87b1c5c ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae87b61d ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8961d24 ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbf6509e4 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4f46b6b ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc60d96a0 ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc76e8796 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc108745 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc8cb7d2 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf17fb64 ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0a36ae6 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd16ff3ba ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd27bf6b5 ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd5ca74d7 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd668050a ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdbf11ee6 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe6c37086 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe6ec87f5 ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef797bba ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfc9de17a ttm_mem_global_release -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x4842d210 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x51bfc371 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x850b3449 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfe3a04b5 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x6389781b i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xd4a87b4f i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x3cdc95fe amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1428f15a mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x190052f8 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x193a0cd2 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1d6fd1df mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2509648a mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x274edf2d mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3611cd97 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x362d0141 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3e505047 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5607cf66 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5b5eb334 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5d5abdc7 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7b2160e7 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7def4e42 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb9b47ff6 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd9363ccd mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x3967c05c st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x87930f8b st_accel_common_probe -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1456335f iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xcc752d98 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x18fbbc17 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x1e6b02cf devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x78792118 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x9e92970d iio_kfifo_free -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x11d754f9 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x13bd6b0e hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x187754d4 hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x3c44e5ce hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4bfa3910 hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xf5735446 hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xb7edfc1d hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xc27a8350 hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd4f7c741 hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xdc498e0f hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0229dd1c ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1141a5aa ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x20a66b80 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3f1d8576 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7bd0f12f ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x9733f362 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb53e0204 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xcad96d46 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xcc7717af ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x20a21717 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x271c18de ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9ed1a285 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xcd647663 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xe51b8939 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x54bc62f7 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xacbbc245 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xb25c5188 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0d771cbf st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0ed551ab st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0f0853e1 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3a779a5d st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3c84417c st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5870cc04 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x736851f5 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x76ae202f st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8a2143c8 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8c2797f4 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8c5eca52 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa742230b st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcd2bc115 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf2a69b5c st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf9b4a803 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfe993df0 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfee5298d st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x7d068246 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x83872bc6 st_sensors_match_acpi_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xa3fdbba5 st_sensors_of_i2c_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xfaa2de97 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x01612b13 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x45793f5e st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xac4e33a8 hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x4d10ed90 adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xf7fd8b35 adis_enable_irq -EXPORT_SYMBOL drivers/iio/industrialio 0x1182cbfd iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x137577ef iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x1b397be1 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x2bb9ce3f iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x4b595c40 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x533303a9 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x5553bbdd iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x6e4828fe iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x70d645a5 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xbc586c74 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xbf4af885 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0xc9cca29e iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0xd32e430e iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe8f0be24 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0xe972c81d iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xecde1193 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0xf6da0486 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x8ba84fce iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xdc73684d iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x840d6aa6 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xfef7141c st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xf07200c5 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x2e95dd38 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xc2302815 st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x24bff584 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x4c33e170 rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x4d2582a5 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x89c0ffe7 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xfe6e58a5 rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xfebfbede rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0049e47a ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x058ef74d ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x119d1cef ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2467c527 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x24ac1246 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2cdefffd ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x45945152 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x57930918 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5c3d0a6e ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x74935426 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8bf161be ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8ea1ecd3 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb45f1471 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd1a71edb ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdb367b7b ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xec30498f ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeeb39861 cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfe6dee12 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07487517 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07e5ae29 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08e20fa5 ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10c75ad8 ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x114959d3 ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11e46978 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17a6b348 ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17f00e63 ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18ce88f2 ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cd82802 ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x228c2601 ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24239cdb ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2516399d ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25f1e752 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x269ddd62 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26eb995f ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x279f52bf ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27c3fa22 ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29abe149 ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a02d669 ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a8f5cef ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3240eb03 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x337d439b ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33a3f448 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33f44974 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37314916 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d5bb2a8 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fa376be rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4076e1d6 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x411959d8 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bb8cb24 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50ff0370 ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5533e826 ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55357cd7 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55968751 ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61955487 ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6781f2a5 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6839e3ef ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x688e9e4e ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x694fc976 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a2c7527 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fb1660c ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7180cd6d ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71bd5616 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73b608e6 ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d47e9f2 ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f261299 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81202f6b ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8591efe4 ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8684a8ad ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8773b2ff ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8901882c ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b713f7c ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cf903d8 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9337e222 ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95b9a26a ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a6ce0fa ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c43c0c9 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c4b20f3 ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d906f05 ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f280be8 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6558c71 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab5cd01b ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae8794a9 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb27e0fe6 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6e85bd0 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6ee4c05 ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb766b102 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba5e9a48 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe102d75 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5165fff ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce2ef305 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd346639a ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd616fcaf ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc36cfe4 ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd11fe60 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde670577 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe05f4f24 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe74a6885 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe82b2610 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb54fb40 ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee2a6e50 ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef6ae4f2 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x28259602 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x32fc79a0 ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x52b2c935 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x75128bf6 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8f6aea25 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x910bddd4 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x96f38c63 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xce108e1a ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd277bd2d ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xdceae9bb ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe61c0082 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe7639459 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf273b446 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1efe4491 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x21f082d6 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5924be32 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6f7e97ab ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7afc567a ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8309baa1 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x89f75735 ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8ed9af46 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa15af30f ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe7b18c1f ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xed640c26 ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x024e6718 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4012a7a6 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0811db5e iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x08bb5158 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1d5d8420 iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x24975482 iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x269087db iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3f6ef23e iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x57b1d251 iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6b8d824c iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6ccd2102 iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x877c2e83 iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc0f2103f iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xda748200 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf02b7bca iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf0e11aa1 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf4042b86 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x29c32f9b rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2b781279 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2f5eb1eb rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3bbdd263 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41a00834 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x45bf1a1c rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6357ce55 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7529b366 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x797a0aa9 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x80292f3f rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ecb306b rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ef7291e rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8f0e01f6 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa0391317 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xab4f5568 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb94e9b69 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbecfd76c rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd64fd8ff rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe0a53fb4 rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe90a4266 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf4ccce38 rdma_disconnect -EXPORT_SYMBOL drivers/input/gameport/gameport 0x010f50f3 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0e5a350c gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x214c4cb8 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x83e89137 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb3370518 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb5ce7ce3 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb8318105 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xcbf37daa gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xdd7d887e gameport_open -EXPORT_SYMBOL drivers/input/input-polldev 0x06d90295 input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x3b62920b devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x6b6488fe input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x713c9cc4 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x91c84a17 input_free_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x75965737 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x1aeeb043 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x41645f4e ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x77ae00ca ad714x_disable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x32549858 cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x2b793849 sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0x85d14dfe sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xae871ba5 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xd781175a sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xe1cafd03 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0xf14b3ab6 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x12780fd8 ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x1c797842 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0be28c11 capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14771465 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x437698a7 capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x52467580 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5ddb3085 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x63f8d2ac capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7edff1ef detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa0c8214d capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcf725b53 capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd4554a86 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x01721081 b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x35461b6b avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4eb12367 b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x560fc9f1 b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x65974574 avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7774c392 b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x78ab9af4 b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8a4e7e2b b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8ee9675f b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa562b95c b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa88f19af b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb3e69847 b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb7443ae5 b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbf086dcd b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xcf954076 b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x11aef584 b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x1e25aa5f b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xaeb7c12a b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb1064717 b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb2c0f8df t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc60bf1c8 b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc94e54a2 b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf0bdc542 b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xfffddfd4 b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x4ee2b981 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x81b81d57 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8c84bf27 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb0351f0e mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x04f17c8f mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x615e9248 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x4a679e37 hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x97f5e074 isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x99ca50b5 isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xb6c95c9a isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xd9cb826d isacsx_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xe1c16f68 isac_init -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x3fc71252 isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x5aa570fc isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xadce0948 register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0ceb64ef get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0ef8df33 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0f1cc929 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x147d9dbf mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1e7d73ee mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3c8ce5d0 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3d7f51ff mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x47172b3e queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6455b286 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x68f9cac4 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x737a8b11 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7c91426a recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x82b82312 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x837c2223 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x87b63e71 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9d583cff create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb64051df mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc56b0e05 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd310bd65 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe03df44b recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe7b0d301 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf06c749e recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xff012b28 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x0c161f5b bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x11f9991b bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6d7dda0f bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0x86775f52 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa881e72b closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe93905ba closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xf17c4950 closure_wait -EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-log 0x4eadfa2b dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x7155e258 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xb1ae0e90 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xf2662c62 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x48fef197 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x58278919 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x8a2915df dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xf2d3c6f1 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xfdb65c5a dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0xfece6caa dm_exception_store_create -EXPORT_SYMBOL drivers/md/raid456 0xf787b456 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0941daf5 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x18e4d944 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2786fad5 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x280d98c4 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2ac15b8d flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x78780835 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7c8e7a4b flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x87e43a76 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8d1947e3 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa7d2c330 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xab2502a7 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xafd0e69f flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcd57913b flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ee669c6 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2a4a18ac cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x6eef0624 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc96f0f04 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x19f98289 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x46c1804c tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0xd7468cc8 tveeprom_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0676982c dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0e924091 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x19cd714d dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1da5d47f dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2975b9bd dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x453b52ba dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x531eb016 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5682e65d dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x57a29ecd dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5ab4496e dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5b4da21f dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5bcaf134 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6c160efe dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7092ba42 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7caa224e dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8083a5f7 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x893a9553 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x89d60bc3 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9510a851 dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x999b6cb4 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa10e976c dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa1a30680 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa606482e dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xab56e804 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbb7c9408 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbe4802a9 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc035b0be dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc1752152 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3c77f8d dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc473080e dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc6f04f0a dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd93084d2 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe4ab938d dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe60d865f dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf23a08e3 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf4b4c6e8 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf5cbd7a1 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf60fe140 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x049bec6c af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x5633e51f ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xd31db539 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x171b6a26 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2bb7e198 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x408a7bd5 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x78a2f4ac au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8c22c0ad au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa7d6881c au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb25d6640 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb2b474cc au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcee18a6a au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x53eb09a6 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x995cdc1f bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xad4793f2 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x5d017e68 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x62de5f2e cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x03ed8281 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xd8553324 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x0aa50bd9 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x1baee2a2 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x02c6b5e1 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x03e6a821 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x8313e58b cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x2037901b cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x3265a303 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xd826c9b7 cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x15028f46 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x270eab30 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x968a5b48 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb54cff92 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe7f64eab dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0faca251 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2a0cd16f dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2debea04 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x334cf057 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4135aa68 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x48673c4b dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x636b9cf1 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6893827c dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x752766b1 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8097b761 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x97dbc4da dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xadf6c1f8 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xae4bd251 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcb10ac69 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdd6a8124 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x8d8c6eae dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x41990e7b dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x934d0ae7 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa5103050 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb46d7bc2 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc8aa8c2e dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe2c982a4 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x41cc239d dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6424c458 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x9cc17fcd dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xb13e2446 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x8c413125 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x3c18ae1a dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x62f94143 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x736b184b dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7c52bf30 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xaf63fee6 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe9d7d587 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x4be1d4f1 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xed27133a drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x9d784a17 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x869a37d5 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x05aba963 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xb1a007bf ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x6ea1cc66 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x0dcc0d1f isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x2ce7fc8c isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x2de84f5e isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x19e25aa8 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xacd9395d ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xaf275dd4 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xe4bfca10 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xb628a45a lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x2a87b049 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x091c928f lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x5a8c57e9 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x3101315c lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x89aee2ea lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xd6f82a49 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x78bfcbda lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x506d7edc m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xaaf70ceb m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x11c95cfa m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x53fb07b8 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x55ed6423 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x4f579de7 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x03881ba4 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xb5cf0dd8 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xf91f5fc3 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x0e11fded or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xe390fd4b or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xbcf7a27e s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xc0fb0527 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x1985454d s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x50c1019f s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x2dcd568f s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xa621c3a3 si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xe2561cb7 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x517c7685 sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x02c9b444 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x0c1e68e8 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xcac7a361 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x93baf47a stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x5acbb3b5 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xa4c4c3f0 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x7528a26c stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x3011df1a stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x3348e700 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x6bbf131e stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x4331976d stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x437871ed stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x82b57b44 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xe5b60b2d tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x3ba97b7d tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xa873ba71 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x9f7d2a91 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xab6882f9 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x223953ce tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xad109e8b tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xc0fd93ae tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xd9c5b65f tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x91407231 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x9e831e54 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x010d3ea0 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x9eb12d64 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x5414a4d4 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x1e53a04d zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x56f06f5c zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x951381e4 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1ff6d115 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6ffd6287 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x90ffd980 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa301e793 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xad4beb8b flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xddf40009 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf6b27b81 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x26a09977 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9563a9ec bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9bb14f3f bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf1c0281c bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x57e2132d bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8bae046e bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xd0f22a85 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1b36b44d dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1beb4b4d dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4bb2569b dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5af4f1bf write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5ea01968 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x72e3ea3d dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa9d65377 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb4509ae9 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe4443a9b dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x48b72b74 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0a1f9815 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x659b2dbc cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6ebbbfd2 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x9cdaf599 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xaa8b1b81 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xf1b85807 altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x143f6626 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x59c082d6 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x80e17be8 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc8282211 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc9c2837b cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xcf5a0e11 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf5abcb2d cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x8c38b53c vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xdaac47ce vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6bd07b8b cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6c6b41f7 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb955edba cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xdec00bb3 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x272e8015 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2f1010b3 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4c4734ed cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4dbf5976 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5eaa3397 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd20958cd cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xddd75646 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1f557a79 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3079d74e cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x46a5b6f1 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5123e1e9 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x536bc9d3 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x65134235 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6bf76291 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x851f9590 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9e675aa1 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb1733510 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb52c56a0 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb6b02ede cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcb713f67 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd3bdf855 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdef2e266 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe0b0c484 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe3cca098 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe9d77d96 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xee8d995b cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf2ba09d4 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x054e0419 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x07e17c09 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x133de3d9 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14cb56d3 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x17d5b1ba ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2c0c6e0a ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x41334b06 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4a5fb50a ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4c862639 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x59da0335 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x783d9ce6 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9fd347a6 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc43f5129 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcef43372 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe98b06b8 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xeb5d808d ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf5013667 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x00410a0e saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1c44d07b saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x450a5496 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x483b9837 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4870d1b1 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x52ff6b6a saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5f9a40aa saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7981a919 saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x90f4b0dd saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb0e76656 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdf1a4508 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfd057654 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xbd6f5d63 ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x1eecfe83 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x219a997a soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x241c82b0 soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x671db817 soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa8dd3cc7 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe1e95fbb soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf8be7c1b soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x034de7da snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x0c911d18 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x48281f0a snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x909349bd snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb243fdee snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xc5aa3fa7 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xce64a70e snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x59f948cd lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x70622482 lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x94adbc06 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc8bbf810 lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xcaf4bd53 lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xd87efc5b lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xeae52b48 lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf28b016f lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/rc-core 0x5cecdd0f ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0xfe5f3ecd ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xcd8187ed fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x38fdedb7 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x0130c1d4 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x2e911c22 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb2882fb7 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/max2165 0x91058def max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xec28d37b mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x1c7b45c0 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x2433f2e5 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xbbc22d84 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xae85f3bf mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xc26d2eae qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xd25d6974 tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x0318994a xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xfc415b09 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0xf827db46 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xe887a640 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xed794717 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x02588fe8 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x41fab19b dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5de82fb3 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x622b4934 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x81d1c7f0 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa4cc19aa dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd9371414 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdbae8b6f dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xec5fa25a dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0b4cecc6 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0b94e14e dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2ecf9587 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x44ba4cda dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7d3ad9f4 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8518d3db dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8c2ae2ee dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xa4e1aa8b af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x042482bb dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x13f5a940 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1ed91de9 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3f5fd1c7 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x53213318 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x581746c0 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x589eefdf dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x916d712f dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcd505a52 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe0102ab9 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf1df6d7a dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x8babd4e9 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xe23803a4 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x09ae3101 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1fb244c7 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x24921e07 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4c90c0fa go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x55c0764f go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6e3e6d3c go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9c99a86a go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9e3d1c3d go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc7d12e1c go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x35922913 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3a665c0f gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9321737a gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x96368d25 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa37649f0 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb320b8d9 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc61faf5b gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xce293866 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x42f6a6ba tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x70bfab09 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xaaf6c078 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xd5c9bb29 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xfe0ebae3 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x15d1549a v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5a70994a v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xee53d005 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x0c5fc086 videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x18bc04ed videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x864167be videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb30fdf3b videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xe450c740 videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xe76dca84 videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x5a8bfb60 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xdd3f355e vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x0e3a6cc8 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x0e717bde vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x49ec5ba0 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x7475804d vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x7f3de581 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xb01ccc99 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0xcdc56da5 vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00242595 v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x035b1380 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0443f0b6 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x04d08f89 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x05deb9a7 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x07ff582e v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09c18f9e video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e009b70 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e2f8a45 v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f7f847a v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1894b3d3 v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x19d26fdd v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d03a0e6 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2110ba02 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x293c2f87 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36779e2a v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3d722f8c v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3e534060 v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4459676d v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48c6a44a __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ac96d1d __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c896fad v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4dc226a4 video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51327a18 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51e59745 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x524a1d72 v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5652b8f1 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5808bc5b v4l2_of_free_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5de89b6b v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ea59abd video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6b36ff47 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74dfcfd7 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7713fead v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79f123e1 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b0d3301 v4l2_of_put_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8af6f042 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8dcf075c v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e548846 v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f503482 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f84919a __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x92b3b09a v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x967aae10 v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9db3785c v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f39bfb2 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f59eee8 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa32517ab v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5b59d12 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5bc2815 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa75b9d62 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad51eb7e v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb616756b video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc23a71c9 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc3f45914 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5d31f56 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7fefc3b v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc95e1447 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc98c78d2 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd38245a6 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd54fdcb1 v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdcbc49e2 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd29d1e3 v4l2_of_alloc_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf0b641b __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3782c00 v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3bc6feb v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6a1ea0c v4l2_of_parse_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe70e2057 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec33e0f2 v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee2aaf2a v4l2_of_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeea8dde9 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf012d9bc v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf2d172e2 v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf40707b2 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfc242561 __video_register_device -EXPORT_SYMBOL drivers/memstick/core/memstick 0x0b73fe69 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x13c6bcfa memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x286c210e memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x50d52eec memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8ccac8d1 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x999daf80 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x9d2d9920 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa560c673 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xad4258c6 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xba5fb7ea memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc1a5a247 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe770ed1c memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x18ffbcd8 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1fb0f7f2 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2a366276 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3e9e3dd7 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x43ded26f mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x481100b3 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x53f59f67 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x654c0d2e mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x67345874 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x71d39a01 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x870ffe0e mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x90f4de27 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9ce50757 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9d31f511 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa4512ae3 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa4d25d37 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa53176a8 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa60f7efb mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb58e8573 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb6726c59 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb799bc1c mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xba3cc812 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbb92c9c5 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbd42ae15 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc4fa6f22 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcef1acdd mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdae32b38 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe24124ed mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf0f867f0 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x06376b37 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0fe526db mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1d0301cb mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2e8e8b86 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x32d093d5 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x35986212 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x386e40cc mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x440345f8 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x468e9c48 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x657d6d51 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6acb3646 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6eceea7f mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x705943b0 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x705abd2c mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x90f8c405 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa08ba67b mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc49cebcd mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd35ddc56 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xddcdc5cd mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf19f3c8 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf58912e mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe28ed12d mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeb6bb257 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf0a3278f mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf8212ced mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfa819825 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfdb7737e mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/mfd/dln2 0x3ffab8bd dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x678640f1 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xa3f79cc5 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x3373ab6a pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x94cd4094 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x07c06107 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x168b1523 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x170a14b7 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1bf165ac mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3afea7a6 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x505f43ee mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x612b9230 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd0f1b5f9 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd6947757 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe5d096b6 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xed1b21f5 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/qcom_rpm 0x295fb567 qcom_rpm_write -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xd1f18de2 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xe3d01f4f wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x139a3421 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x59ca6950 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xc6a86b7d wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xf492d0e4 wm8994_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x14b95f23 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xa0671723 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0xd2c54d67 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0xad44dfbf c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0xe61a33dc c2port_device_register -EXPORT_SYMBOL drivers/misc/ioc4 0x9f6dceb0 ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0xfd24bcaf ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/tifm_core 0x02497c57 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x16cd5b89 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x1a47f5d6 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x5197bcb9 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x58687e4d tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x63f09aa7 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x6b0de457 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x9b60c295 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0xaf39e393 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0xc279a59a tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xd28e61c7 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xdd446af8 tifm_free_device -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x04c9b66e dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x398a294e dw_mci_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x812e7c1e dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xf326f03f dw_mci_resume -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x51653713 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x58b3f587 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2cda3775 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x64a09920 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6571f65b cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8e623974 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa9e8ab3f cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcd20c62c cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcf6d3bba cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x19c1e6ae map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x31833500 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x50c631da register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa0431fbc do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x3e5b02ff mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x238ab2ae lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x535a7c11 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0xad31681a mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0xeb208d1a mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/denali 0x440d0da2 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/denali 0xe3d536d3 denali_init -EXPORT_SYMBOL drivers/mtd/nand/nand 0x00aeb2db nand_scan -EXPORT_SYMBOL drivers/mtd/nand/nand 0x09c8de86 nand_scan_tail -EXPORT_SYMBOL drivers/mtd/nand/nand 0x6b568a5d nand_scan_ident -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/nand 0x9e47416a nand_lock -EXPORT_SYMBOL drivers/mtd/nand/nand 0xd04fcbe2 nand_unlock -EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL drivers/mtd/nand/nand 0xfc0f20da nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x1f8d891a nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x8b4f0639 nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xe12a9b66 nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3ddf0bbb nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xaba154da nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x588af33e onenand_scan_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x83316aec flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xbb264fc3 onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd5a54b76 onenand_default_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x043125fb arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1473b15a arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2712d7e1 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x56a989eb arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6cd4e2d6 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9b549a87 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa5dee201 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb242234a arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb99611dc arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd605b58f arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x17b9456e com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x345784fa com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xfa4da503 com20020_check -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1de83341 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3086ce2e NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x47ce1959 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x733d265f ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8ac37002 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8ec275cc ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa5b30630 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcbd52333 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe54b8973 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf13a6adf ei_close -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xeb598100 bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x8cd99093 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xe48ca42a bgx_get_tx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x01d344b1 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x19588e7d cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1df6a2bf dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x229d797c cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x25ed4171 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x39c5db52 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4d01be5a t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x71d1c599 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x733c2cb8 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x73a33217 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x785af1c7 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x996aad05 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc57d2745 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdbe81f98 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf5f05265 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfa84bc5e cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0507c731 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d45c1de cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24e66a1a cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x29a0c7f5 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a8496ba cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c1cbe98 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x513ee888 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x52cbc9a0 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5694d43f cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a1eff41 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5e632058 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x68954add cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x68b28a88 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6e9b8e75 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ec34823 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75b35eba cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7eeeadb3 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x83abfd27 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86e237ff cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9caa2a5b cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa18f8892 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa775a186 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb5e8b981 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6160433 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb881a570 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbf1da666 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc071a4f3 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcd131aff cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcf165385 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd78fdcff cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd985faa3 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xde710597 cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xded1d584 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfa1cb334 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x714a68be vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8ca4ca4e vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x984e0adb enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa4c59159 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb7aa5c6f vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbb68512a vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x5243c6bc be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbe5cd153 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/gianfar_driver 0x79f28897 gfar_phc_index -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x50629a40 hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7109d93b hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x773dd3f9 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb29df476 hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xf7fb02e7 hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00603af4 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x014a8e92 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01b7a64e mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x049eb55e mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07220f61 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08b92d67 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c8f7ca8 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x133f74e1 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d3a5d60 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2233ddc4 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30234324 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x339ec54d set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x452529e5 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b23bb28 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c57b1d7 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5dd1fd31 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68f95522 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73b5cfa3 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74b1512d mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8275618c mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x828288e6 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cb417a7 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ee08a7c mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9959da7b mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99b304db mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a1690e9 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1cd06bc mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa2de79f mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb22e61d5 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3a274d2 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb21647e set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9284532 mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe64a515e mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe829ff49 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeaa6607b mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeed4f0df mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf939cf58 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbcb8e50 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x048ca216 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07edf576 mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1528b6a5 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19dd717e mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x214d7536 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23943649 mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b7d066e mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30197e64 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a5742ab mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40de8903 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46844c03 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x496b5da6 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d26454b mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51f79831 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52c08122 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6268bc5e mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6410d2ce mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66251508 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6738523e mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6dcc3b30 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f31da48 mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78cd5cd4 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91b4679d mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e4a3566 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa638c6a2 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6d8cc2d mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcf12ecb mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5b2c1ec mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca3f56ec mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaab8e49 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddda60be mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe183f4b2 mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9220bb3 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeacf8d22 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeed96083 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7b13b28 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfaedd761 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe3384e5 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x122756c2 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7006b667 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x82ea0e2c mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9057365e mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa699cdd8 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc00f9cab mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf55971fe mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x3e556f65 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x200ff7d7 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7e995cd8 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7f8cfb30 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x82936c21 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb7dae90a hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x1c000764 irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2346dfa9 sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x39563111 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x40424777 sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x44181ade sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x95c94e85 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9f9c7cb4 sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xbcf7c20e sirdev_raw_read -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xeb4e7137 sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xfa14e12c irda_unregister_dongle -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x6a853596 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xc4f4de18 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x559f0777 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xda602255 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x0fb1a9c8 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x2cae6012 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xc6da16d3 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/vitesse 0xfadde679 vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x129a4961 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x2967c439 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x8433f0a7 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x37e79117 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x0b3fd6d0 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x46418b12 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x4d58eb7f team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x9437aff5 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xa985af44 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xe17949ea team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xedef88b2 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xfc374d8a team_modeop_port_enter -EXPORT_SYMBOL drivers/net/usb/usbnet 0x33b1f92e usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x6573b8d5 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x70d9b04d cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/usb/usbnet 0xccde9b4f usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x0b57481b hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0x12a89713 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x46812048 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x58c948f6 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6561075f unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x7e02c2a0 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa27826a9 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa7c03dcc hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xaaf3203b attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd426daa8 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xfc1f62c2 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x07b4d462 i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3124e83f ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3f040aac ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4d733eeb ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x56998226 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6637b24e ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7b1e6c31 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8ae5b7d0 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbf941cc8 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdc807889 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe82e0f86 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf6bb989d dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf86f21db ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0b6d2a2f ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2116b029 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3a03d3c4 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b0a7061 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4b406044 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5336ebf3 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6ffd148c ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7d20f44f ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x82371fa2 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa2eff9a2 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb4c4f43d ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb5f181c8 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcfc8d16c ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdca67b32 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe9859b4e ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0b9c53b0 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x11b0a0bd ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x31dba142 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3b8cfcad ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4279a2eb ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5b4dc8f6 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x64061368 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b48bd2c ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa0fdd2e0 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc446da5a ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xee55641b ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x09095f8e ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0c133e06 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x12e0bef5 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1397cfb4 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x192c5e91 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a184b4d ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1feb3e78 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x25c81dea ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x269ebf93 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x399dd42b ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x40950b0b ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x45f887a3 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x56a7de45 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5d7e8610 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6099d342 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x68ca6919 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6df1c73b ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8c6d331d ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x923ada68 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaa22a493 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb7d99f81 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe55ca853 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xeebc8fc4 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x008e58d3 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00c6d020 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00ce9a2b ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01da028f ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02e98e07 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0300a777 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x035b8ad6 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x067650bd ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06def224 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b9adc85 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11475055 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11cd60a3 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1250c319 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1459e3a1 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15f5c6de ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16135762 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17cdb7cb ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a20e2cd ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c3fce57 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1df9b4c2 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x207c7d20 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22c5abb3 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26a2cd1a ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27e1fcc3 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3046b6bc ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30889d44 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31ed5587 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x321fcc07 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3415d10f ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x347685d4 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x358d7208 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c3a1cf5 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e443160 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e5543c9 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ea77222 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f605c67 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x443f08c1 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x448b1417 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c628a4b ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50e2a1fe ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54d8fb22 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5786e575 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x586ad190 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59662f87 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b78f420 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bebb322 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5dc7def7 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6271236f ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x645b9b7a ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66890cd7 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e837e60 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x754dbad8 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77827370 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x779bf1db ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d28290c ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f37a7de ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f4651ff ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82bb2cc5 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85bdc1e0 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86bef15f ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8bd4afce ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d444c65 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90770f80 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9210ced0 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x931c2e86 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9389086b ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x986708da ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1e8bc23 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa231cdea ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4598ead ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6ca8262 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa37a655 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa6a2647 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabaa9c48 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1656431 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1ac4266 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3bec6a9 ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5284e91 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb71c1c2c ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7a36ef1 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbaa8a84 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe633e4e ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe907192 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0ceb8a9 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0f60755 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc91d7ba9 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc94329cd ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xceefb20b ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4672e69 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4caf5c2 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd558ca10 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd778cd8f ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb2e5ad8 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb5f331f ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcabcbbf ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1164288 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3b74eed ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6a49cfe ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea614c1f ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebaafb51 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebd7947d ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee51dc97 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf78331f8 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe61a20b ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff4aa6fd ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x696bdbe2 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0x7ebd7a59 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xbb395023 atmel_open -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x19f3220e brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x23228743 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x335d4500 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x35b5ad68 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5bd1811c brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6713122d brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x874f5a9e brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x883e82bf brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9a7052d9 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xbfd52ae3 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc3bca50d brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd8b8cc8e brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe764f156 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x074f7a7d hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0863ccd3 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1edff335 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x213b79ba hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2d1481f0 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2e58f4de hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x326490bb hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x33bd0687 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3f1b516c hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x448a207b hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4e9d68af hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5984ed03 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5ccd27f9 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x62bb96dc hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6370781f prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x697464d0 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6f60bb82 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x74aec6e0 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x77a3ea92 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x793c8152 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8578754b hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x950a2283 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa421878a hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd569390c hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfdde3803 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x042a36f8 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x33164b8f libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x39f21482 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3aedb48e libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x48e781f3 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x570cbfe2 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5982ef35 free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7a89f258 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7adbc89f libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x80dee9f7 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x86e173cf libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8d161894 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8e117662 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9438e31e libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9f05ba36 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa1afddbf libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa36ca6c0 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb7e757b0 libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbf23a752 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd19fc047 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf3e821bd libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x00c6eab1 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x03978e96 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x082b0d61 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0863f8c4 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x088ed39e il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08c8ff2c il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0a7ad275 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b1f18e7 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0da92b06 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x114f89f3 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1198fe3a il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1d341a36 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x25da73fa il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x279d2e96 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x27c3752f il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2bb0433f il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2dbde385 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x33825529 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x377e9448 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x38f783f2 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x39b7aadc il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a7c4ccc il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3bf318ad il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x40ad3611 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x413f699a il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4a7172f3 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4f1b58b5 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x53bd48a9 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x57379973 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5781cf6b il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x58e3021d il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5e47d9ad il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x603e64ff il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x62f4ba13 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6381292e il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6d26e3b0 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7150b7ec il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7a9f3ff6 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7b21f1b8 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7da1d469 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7f90cf6a il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x80d7eb47 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x81846056 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x87289c21 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88d5c394 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x89918568 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x89f908a8 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x89fc75af il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8abca19b _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8c9d403a il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8eae4ab5 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ec3c393 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ee3722e il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8f3268dd il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9373dfb6 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a1293e3 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c25561a il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa12eecbf il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa1a444a5 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa5646763 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa6c46c5e il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa6fae1c8 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa7bb899f il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xab18c6c0 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xac57a710 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaf8478dc il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb06a5900 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb472f948 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb57959a4 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb6e910a5 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbaa7e5e6 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbab933e9 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbb09f0f3 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbba894d6 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbd5fec2d il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbfbb9df1 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc63d6d4c il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc8ea923a il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc920d755 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc9433ed5 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc9fffd8d il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xca1499b9 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc75a5ad il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xccf5deb4 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd388c86f il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd4dd2d11 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xda41cc38 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdf6b2a74 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe06cb235 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe59a01c8 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe64d5ff0 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe95161ea il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf17b52d1 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf3e94ec8 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf672c755 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf7647cda il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfb003246 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xffae9316 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1b06ce78 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x2447a6ab __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x314a20a8 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x5e9c24ff __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8c8ab242 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x9a1b1df9 __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xdced6db1 __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x07cb5f2e orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0b687bbd orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x39b32838 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3cd016bc orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x419cb68a orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5e5891c7 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x62de16c0 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x63b47f80 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x98ec342a orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xba09381b orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc3512bb4 orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc6540dd1 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc8826ea0 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd80f367c orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xeded76ed orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xef64033b hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf7e5508e free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xa4816cff rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x042f9dc4 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0630e846 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0765d442 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x114396b8 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1483094e rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x17517885 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1921e4a3 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1fa681d0 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x265df98e _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29d64d13 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2ac0b861 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2dfc9860 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4260b1b1 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4d3f57fe rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e0a1bec rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5121fb32 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5fa223c8 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6998c86c rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x704fced5 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70ee490c rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x72803da4 _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x78de47b5 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c53d869 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8222bff8 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x895c1fe2 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8cb794be rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8d493799 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8d4ef759 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ecb5276 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb7fd97ca rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xba7001d1 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbbe7e0dc rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xca943055 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd4786b7b rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7976206 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda3d0f27 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda42c43f rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdafd1ad7 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdfcbbb45 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xed7b0f23 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf3a45377 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3d479d9b rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x97eaa8d6 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xe1080709 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xef65f481 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0d2ff067 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x422f0af7 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8fde9fef rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xcef20503 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0580f232 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08f0baf8 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0c020283 rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0f8d662c rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x118b7ce5 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1bc14191 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d3b514f rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1e19af74 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2980c4d3 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2db62dcb rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d431832 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4d94c63b rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5fd91d71 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62c79e43 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6951a197 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a94e709 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6fc64852 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x764d6887 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7897fb30 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79f5e0f6 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x98003757 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad5c3ed7 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf53b33d rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc7beb2f8 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce45b51d rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xded15dc9 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfbba6fb3 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe6b1497 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4432c5c4 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x9c001482 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x9f345e49 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe93c8426 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x459bb186 fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd50631ca fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xeaf7eaf7 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x445e6f16 microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x6e966fbb microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x33f5f9ba nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x57f8d56b nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xfe52f29e nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x81ca1cb7 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x911381ae pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x34d1b6fe s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x413c708e s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x4c43d936 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x18212a5e ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3843bd17 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x547a8990 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9248747f ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x935d0e3b ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb6ae4710 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc0ecc010 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe19c8609 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xefe5d21f st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf82c1f52 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfae15ad2 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0e6c6299 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x14a5156a st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1fd70fea st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x375d65c4 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x397338d3 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3b18132c st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4f9c19b4 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5d56f8e2 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x74221243 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x89e63681 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x90cd3c63 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa2518e2c st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xaa1801a5 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xaeba7b3f st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd6c0ac98 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd9e64fb4 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe0023ec3 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf61ca0aa st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/ntb/ntb 0x2e4912a9 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x51c1668b ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x55b01010 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x7406e298 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xaefbf215 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xc4d24a01 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xc7722c57 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xd5813f3b ntb_register_device -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x7be03fcf nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xfc2d67cd nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0xfdaa699c devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x03ae8421 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x10962d8e parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x15053626 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x15d6b12c parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x18023765 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x1821e5ab __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x25c53ea5 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x3cf9d9e0 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x4c412454 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x52738651 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x57f60db2 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x58f39dc3 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x5ac34505 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x5ce818b7 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x63c90ea3 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x6c887c77 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x74a92279 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x80c8e8ae parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x8db47c41 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x9bdd0a9b parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xa85661d4 parport_release -EXPORT_SYMBOL drivers/parport/parport 0xabaf7ed7 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xad9b9ec6 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xc877513b parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xcabe1240 parport_read -EXPORT_SYMBOL drivers/parport/parport 0xcf58d542 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xd0857a6a parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0xd7822dc7 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xdbd28384 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xe99c396a parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xead4052b parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xf2f55b25 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x33363268 iproc_pcie_remove -EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x698df60c iproc_pcie_setup -EXPORT_SYMBOL drivers/pps/pps_core 0x2f5f67e1 pps_event -EXPORT_SYMBOL drivers/pps/pps_core 0x4600845c pps_unregister_source -EXPORT_SYMBOL drivers/pps/pps_core 0xb01a8225 pps_lookup_dev -EXPORT_SYMBOL drivers/pps/pps_core 0xcfebcc2f pps_register_source -EXPORT_SYMBOL drivers/ptp/ptp 0x122d9efe ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0x65a68402 ptp_clock_register -EXPORT_SYMBOL drivers/ptp/ptp 0x7763e46e ptp_clock_event -EXPORT_SYMBOL drivers/ptp/ptp 0x9b66b008 ptp_clock_unregister -EXPORT_SYMBOL drivers/ptp/ptp 0xaa4a92ed ptp_clock_index -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1d50646a rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x246c9cee rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3500661f rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x755d7d94 rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7897b029 rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7a0a9766 rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x8b35db76 rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x8c991161 rproc_alloc -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xab9ecb86 rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc3e5a019 rproc_da_to_va -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x0816b02c ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7610bb03 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x917ac5cf scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xcbb68edc scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xfd57626b scsi_esp_register -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x03971fb3 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1bea4ed9 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2ede734f fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc0b4dc75 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc0df6186 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd20a856b fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd2663857 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd29f4df2 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe59a77ef fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xead7d22b fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf4308394 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf54acc59 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x03d65fa8 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a3acf13 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27befed6 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x28ad19ac fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b223676 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ff1562b fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x37dea0d2 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x38be088f fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48c0ac3d fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4958f032 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c739018 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d8a3b04 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x609d3e7c fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6617cb06 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a33d922 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ea56029 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6eb238b8 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x72f727de fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a74bfe1 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80712a93 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x861add65 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x89988775 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9022c1c7 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x96d01975 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x975b99e8 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9dcda8c2 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9eca0783 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad1cd3f3 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb25570b5 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb35fbbb4 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4cadfca fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb3a6fcb fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf07fe03 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2059e41 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3067117 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd9b0020d fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb56b30c fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe12630d5 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe24bc950 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea4a5005 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf53a8172 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf6438d66 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc2a50cb fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x28add26d sas_wait_eh -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x49612894 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8565b213 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xed26e14e sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x803fa153 mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x047694ed osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0e3cf055 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x12c1bd13 osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x154e36a9 osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x170e2975 osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1e1f4b73 osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x20b60ad8 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x22184368 osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x26e10771 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2b1509e1 osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2c6c8506 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x308592ca osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x30fc862b osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x355bcf6d osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x41ef039e osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4bf0d107 osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5725cd28 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x670c28f6 osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x70c2e4b2 osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x71cfea74 osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x78e7b5b8 osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7a846967 osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7b57fdd2 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x868a2ad8 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x891bb254 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x98712148 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa2e709a4 osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa9d620f2 osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb3f25ac4 osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc4820d31 osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcd21e910 osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcf7f3217 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdc4652f0 osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe72d9049 osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf45e0208 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf535ef35 osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/osd 0x3fe9a85b osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x8f400218 osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0xb0e516db osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xb663afa0 osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0xbd0bf147 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0xd3f90155 osduld_device_info -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x05895ab4 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0d79c3b8 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x19a8d60d qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x33ad1085 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5e7550f8 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x78c57ca3 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9c53fea5 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xaa34f773 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc1bc14ae qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc4fd97c6 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe87d14d2 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf0336d88 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/raid_class 0x98655a42 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xc3a4d13a raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0xd30dc501 raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x116abc92 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4adee0e6 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5a49c407 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x73113c4d fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x839806ce scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x88ccd2e5 scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9c19c329 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xac08c107 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xad74cf77 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbb82c3ae fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe95b22b1 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe99b3bd4 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf3902975 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0d1d02d4 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x12ebfa11 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x20644434 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x22e7477d sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3567bf7b scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x447da373 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x59c47cff sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5c857f28 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6996f469 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x699c87d0 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6bb0688d sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6e029f81 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x732954e5 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x85e791c0 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x88aeaf93 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x919c62fe sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x92da879c sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x99b74471 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9c024ee1 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaf7700f3 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbee7a093 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd445be77 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7514c90 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0275412 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe1e48732 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe7284264 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf457c36e sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfd4974d8 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1ba554f8 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5cc028b0 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6e96fd61 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7213f090 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfe9cc779 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4972ca07 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x927afc85 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xc953d921 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd9ca11e8 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2181d86d ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x451a925c ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x68da788a ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x95be8a4f ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xe68bb4a4 ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xeb1c9c26 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xed17233c ufshcd_system_resume -EXPORT_SYMBOL drivers/soc/qcom/smd 0x2e996120 qcom_smd_driver_unregister -EXPORT_SYMBOL drivers/soc/qcom/smd 0x71d06a16 qcom_smd_driver_register -EXPORT_SYMBOL drivers/soc/qcom/smd 0xeda44e54 qcom_smd_send -EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0xad43c23b qcom_rpm_smd_write -EXPORT_SYMBOL drivers/soc/qcom/smem 0x34b57571 qcom_smem_alloc -EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space -EXPORT_SYMBOL drivers/soc/qcom/smem 0xeeffa750 qcom_smem_get -EXPORT_SYMBOL drivers/ssb/ssb 0x12547fec ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x1f2b24c1 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x28818240 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x2a72ebe1 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x4298a110 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x5a7350f5 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x650dd6f0 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x6588816f ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x699f79f7 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x6d5b1c2a __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x6fcdf2e6 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x8da144a1 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xa097e411 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0xa2fbe02d ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xa95b0196 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xadf35615 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xb2352201 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xc4d1d391 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xd821913a ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xfbb6eecd ssb_clockspeed -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0573f6fa fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x250a7b37 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2bc6171b fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2da7dc66 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2dc6fed6 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x308c936f fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x318cde33 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x42374b54 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x56e689f9 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7961633e fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x79c5d74a fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7e23ed69 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x81d10762 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x83c48d3f fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x910c2a8a fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x942e1f95 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x95603b50 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9993ebd1 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9a759e50 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa3c6e319 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd39fd50b fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xde2d763c fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe6e10573 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf04c12e5 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x0c0e9e52 dprc_get_obj_irq -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x0d4b8087 dprc_close -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x30ced9d8 dpbp_get_attributes -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x3b4e4ed3 dprc_get_obj_count -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x3c30113e dprc_get_obj -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x50b7f056 mc_send_command -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x56428ba0 dpbp_close -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x67aa6df5 dprc_get_res_count -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x81aaa963 dprc_get_res_ids -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x8ac8eaea dprc_open -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x8b7e3339 dprc_get_obj_desc -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x9d13e466 dprc_set_obj_label -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xc6905330 dpbp_enable -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xcdd17563 dpbp_disable -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xd524ad42 dprc_set_obj_irq -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xdc3a4cee dprc_get_obj_region -EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xfb09f7e9 dpbp_open -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xe8651d9b fwtty_port_put -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xfb8ac98e fwtty_port_get -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x852a949f adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x0cba70ea hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x3f05fe15 hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x7284e676 hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xc0619d6d hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xbbf6ac80 ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xc4f3b75f ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x15b931b5 cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x82ed4b33 most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x04dfee56 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d597f25 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1748fbe5 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x186671f7 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x19e24667 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x20043813 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x244dbbd2 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25e1c804 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2c4985a6 rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d986c3d notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e59b3a5 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ec0c839 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f12872f rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x370eac7c rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ee3c36f rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f08d8fa rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4312cf05 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x478be33f rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53e3cdc9 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54e78c04 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x556880be rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e6107a5 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x61f7b760 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66fbae67 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x671e4bbd rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7009914b rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x74e75a56 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7aa3e899 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e318640 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fdcb5c9 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82e8a456 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8723354e rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x87bce58b dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f92969c rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9cceeefd rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb24e3982 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc382413a rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc8d653c1 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb61e5ef RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcfb60ada alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd20e4e2c rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd446724d rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd489490d rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdac15f9e rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xddcd4699 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe59cc4d1 Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe8d52537 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xefa1b399 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfbadbcee rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfcbd0bc1 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x007a9f81 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07bdfff0 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x11bc0f04 DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x122d170b ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1353b957 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x142951ab Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x184f87d9 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x18dcdb85 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22f241cc ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x262eba06 ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x264a3d04 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32726ab3 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a61a00e ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3d0005cb Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e7f4c76 ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x40eaf2d4 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42fb8c8a ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47702d1b ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a74864a SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5d06c482 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e915975 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63025cab ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x688d3e79 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68b4974a ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6f1aa354 ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74fe4706 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ba418af ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8a58b401 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9021c187 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91f84ca0 DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9360c93e ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa1586d9b ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa333d0e6 IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6776ca2 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab41cf2d ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaba14090 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaeb02077 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3b7701c ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbdfbb0f1 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc40dc05a ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc4ed4fe7 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc659e1f6 Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb5b827d ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd72a14fa ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd78f74f5 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdda9eb8c ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe36c4a57 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6cc7346 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe73f6cc4 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xedbcd8b0 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf11fdf75 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf80edbf2 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9abe085 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x02008ed7 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08140190 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0be0f8d2 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1500f043 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1f096056 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x25ce9b90 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2624f663 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x27f41380 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x29a69bbc iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x37c5986c iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d68cfd2 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x660a8b6a iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x66764b97 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6699bcb4 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x724c94a3 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7420cdfd iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x769d2607 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x84d58349 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x85be45f0 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x95b40c58 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98d71439 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa73a4241 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xce659c59 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd619a36b iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe07a32a4 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeb40c467 iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfc0cf95f iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfec9215b iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/target_core_mod 0x01b1f9da target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x02248371 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0b88db62 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x0d6ab11c sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f5997f6 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x176013bb target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x23df691b sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x288b2202 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x28f9df67 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x2c832d13 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x355863a6 target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x37e09aa8 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x3b7cec8f sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x404c1c4d target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x496f782c core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a058fd8 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x4cbe1685 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x4ea9088b transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x5d3941ca core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x6015bbbb core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x62847277 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x65778f7f transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x674d1e98 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x6dfb5107 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6e14fe21 target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x6e3811d2 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x72dd3743 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x74f0a467 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x768b714e target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x83f060a6 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x869405a7 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x88a45447 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x8e68007c transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x8fabf361 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x9007ede0 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x95055ad6 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x9647e1e0 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x96972fe5 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x9699de53 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x96e13b35 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x9cf9d2dc transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x9e77d215 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xa1811822 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xa213beb3 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xab29da3c transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc02ad11d transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc0a0e5be target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc65d1613 target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc8a3c084 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xcb4cd91f target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xcf3c22ab transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd42d2225 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xd829325d spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xda557334 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xdb6d0a13 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xdcbcfd92 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xde0f1705 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xde691d27 transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0xe002f9ae passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xe011a9f0 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe5cfe445 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xe762c5bd target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xe8a79442 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xea8838c7 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf120ab8e transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xf460b216 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf49a28af target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd3fa730 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd79a270 core_tpg_register -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xf4d17249 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xde5922f6 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xdbaf3b79 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x098fcf81 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1e0b1c2f usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x418ccc7f usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5812aab6 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6c7b9fba usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7e0eafa1 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9e55a634 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa8ad1626 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xce6b53de usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe454017a usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xeb1dc315 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xedcfbb18 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xdb3e7de2 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xdb8c32f9 usb_serial_resume -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/video/backlight/lcd 0x184e67ea lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x88c2a0c3 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xa842f975 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xf0b50465 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0bef4e5a svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x24af617f svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x29f59579 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x90c00d86 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x96011855 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xea4d426d svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xefe70aa7 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xc13be042 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xca9884bb sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x9eedb63e sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xe74582fc cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x0f0e37c7 mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x14b8d985 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7a3548d7 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9148996d matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1e1b80ca DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x3a1f3198 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x85c51529 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x8c7c5077 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x58c91cf8 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xf8fad5d1 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x242db557 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x4e4e53ea matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb05d164b matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xda14eaf9 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x56204391 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xda971e35 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4ff2c55e matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6be2577e matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa55d026c matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc531f1de matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe3b8d790 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x5689dbee mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x219dd14e w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x257deb16 w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x26551efd w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x2bf24bb4 w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x70a8c574 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x83186466 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xc58aa3dc w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xdff0d341 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x107b9068 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x3af9e042 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x4e54b0e0 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xa8504c92 w1_add_master_device -EXPORT_SYMBOL fs/configfs/configfs 0x10308adb config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x2a9362d4 config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0x36c87d3b config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0x54bffb45 configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0x59da897d config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0x600044bf configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x6bddcff4 config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0x7e6b4ee7 configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0xae8de802 configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xbe95e1a7 configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0xc65ed1cd config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0xe39c9a98 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xe3dc59c1 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xefd4d534 configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0xf0b7c61d configfs_register_group -EXPORT_SYMBOL fs/exofs/libore 0x001f32da ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0x13fb7c5d ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0x1a024d34 extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x33ddace9 ore_create -EXPORT_SYMBOL fs/exofs/libore 0x3e3890b9 ore_remove -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x6018c511 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0x764ae434 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0x984a3612 ore_read -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xe35f9955 ore_write -EXPORT_SYMBOL fs/exofs/libore 0xfe76f7ae ore_put_io_state -EXPORT_SYMBOL fs/fscache/fscache 0x00a71d8b fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x05fea6c0 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x07526854 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x0fb04687 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x1efc3651 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x20b683c8 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x2cfb4429 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x4a1675cb __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x55073bf3 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x5a6f06c1 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x6b9111db __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x6db6aa6a __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x6f1f9797 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x7128298d __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x72ddb308 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x774d2bd9 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x7afb6da2 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x841510b7 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x89ddf9e7 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x932dabe2 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x9e03b130 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xa12ab2b6 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xa1b476d1 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xa1d4afe4 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xa5662b0f fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0xaa75e916 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xb88c607f fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0xbf5f9b99 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xc041ab33 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xc2ef5895 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xc31b9571 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xc7d7b563 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xc901cdbb __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xd2d7e730 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0xd3997f1a fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xda94e54b fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xdfd99772 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xe7aaad47 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xebe944e4 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xf1e452ad __fscache_uncache_page -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x3e1aa8e6 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x406e1010 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x7babe5b3 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x9466462c qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xde5e3877 qtree_write_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy -EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed -EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x66013ee8 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0x962cff93 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find -EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put -EXPORT_SYMBOL lib/lz4/lz4_compress 0x0c222eb5 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x47d8947b lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0x90556d75 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd9a3a74d lowpan_nhc_del -EXPORT_SYMBOL net/802/p8022 0x040dfd6c unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0x2ed79ecf register_8022_client -EXPORT_SYMBOL net/802/p8023 0x4ea4c37f make_8023_client -EXPORT_SYMBOL net/802/p8023 0xf7250b03 destroy_8023_client -EXPORT_SYMBOL net/802/psnap 0xafc5b8e1 register_snap_client -EXPORT_SYMBOL net/802/psnap 0xfd3b2005 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x05944997 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x064101b9 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x0c4e9052 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x0ce2d440 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x0d096014 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x12fce7cc p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x270e89fe p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x2989b8a6 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x2fca17b8 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x3aebf48f p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x3c57a25e p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3e60c96c p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x41cd9af4 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x4b88a9e7 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x4e478c60 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x5a9b4463 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x5ab06cd2 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x6458d1ca p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x65db6f68 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x69e4d643 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x6b2f6ff5 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x730151d3 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x73f48e6d v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x807940be p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8d3f8cbc p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xa492bd09 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xaf7180cb p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xb23ab07f p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xba2c0084 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0xba337750 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0xba6645e7 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xda1b3138 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xdaff14bb p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xde904a65 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xe15a005f p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0xe2b05e19 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xe4eb63e7 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe81df48c p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0xe8bbffde p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/9p/9pnet 0xfd99b53c p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0xfdfecd4e p9_client_open -EXPORT_SYMBOL net/appletalk/appletalk 0x0896f633 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x59628894 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x9e567c79 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0xd3bc6012 atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x0247e223 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x0c80be79 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x1f6c769f atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x317305e5 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x3e6cc419 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x4fe2aa52 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x543ed713 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x68e715ce vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x6f3b429a atm_charge -EXPORT_SYMBOL net/atm/atm 0x8dd25d71 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x93c9c05f deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xab092240 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xae053b2d atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xfac5ae25 vcc_sklist_lock -EXPORT_SYMBOL net/ax25/ax25 0x07839c86 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x3955b755 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x65e990bb ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x8b258eea ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x8fa5e4dd ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x99554f4f ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0xa1268043 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xbf76884b ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/bluetooth/bluetooth 0x01739949 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1104c07c hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1d888ce7 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x263862f7 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ce8689e bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d1317d6 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d3ac069 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x35e82776 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3994133f bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ae1ddcd bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x50e7e37d hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x56066173 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5d3c5afb hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x78750a77 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8518b6a0 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a276cc1 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8aed763a hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9955635d __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x99e54422 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0acfc28 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb2ce2ce0 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb6c81fbc hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb7313613 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbeb84f10 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf08b2d2 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf3f0c8c bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc13693c6 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2d1891c l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc70bc522 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd477b05f hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd60c27f8 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd852a646 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xda23e053 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdd1ec6a7 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0d8aa2a l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe203857d bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe899e692 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe90d5c76 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xee46df6f hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf8ed77b9 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfc9a65ec hci_alloc_dev -EXPORT_SYMBOL net/bridge/bridge 0x33eb1b0f br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x80a87de3 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc8f1f88c ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf9310f3c ebt_register_table -EXPORT_SYMBOL net/caif/caif 0x03825a9c cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x080fee96 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x17675d14 caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x93290aba get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xf0c17a34 caif_connect_client -EXPORT_SYMBOL net/can/can 0x7433c8d8 can_ioctl -EXPORT_SYMBOL net/can/can 0x94745d06 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x9839dc57 can_send -EXPORT_SYMBOL net/can/can 0xa14382f5 can_rx_register -EXPORT_SYMBOL net/can/can 0xafa10295 can_proto_register -EXPORT_SYMBOL net/can/can 0xbd0cfcbc can_rx_unregister -EXPORT_SYMBOL net/ceph/libceph 0x0246ad30 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x03137561 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x06957aa7 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x06e2d6e2 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x07ec6cb4 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0e63407e ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x0f9d6892 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x13e80e5e osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x15e7b50a ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x1dde3b53 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x20e8e7df ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2ab5b926 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x2cbab4b2 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x3372afe8 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x35781689 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x367d8976 ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0x381dc782 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x38ed41fc ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x3923aeb3 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3e5004c1 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x3e861130 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x452e825a osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x507f0b2f osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x5141883c ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x54f4f3e3 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x551910c6 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x55ebaa25 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x5659ec9a ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x57ebb07e ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0x5d291c2a ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x5e211ed8 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x5ed04b7a ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x62ec8ca2 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x662b642a ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x6881b9f0 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x68f475a6 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6b3a387e ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x6caf676e ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x6d3fb2e4 osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x7ba9c586 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x7f27a8f0 ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0x80173f12 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x80ffb3cb ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x8a1e02ad ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0x8d112171 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x8f0b7762 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x9277f2f6 ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0x931a67b5 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x96095613 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa00733e6 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xa28dbbd2 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0xa7baf98c ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0xa8985eae ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xaf618dcf osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xafc99f4e ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xb078682b ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb593d781 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xb92a6b9b ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xbb38bcf3 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xbb7636b5 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc5ade625 osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xd1c2797e ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd2e00cd4 ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0xd606b4d0 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xda66cf8f ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0xe187afca ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0xe2f56ac1 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xe36d68c9 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xe4907790 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0xe58ed115 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xeafb73f4 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xeb3f5757 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xf2c47a79 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xf47574c9 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0xf566f6eb ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xf5747cc8 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0xf691dda3 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xf69e15d3 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0xf9419fe0 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xfe94ca7b ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0xfea59f0b ceph_osdc_wait_request -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x0ce64f28 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3315400d dccp_req_err -EXPORT_SYMBOL net/ieee802154/ieee802154 0x15709215 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x733181f6 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x89415c1e wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xdf651355 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xdf7cb3f8 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0xfb71199d wpan_phy_new -EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x8f0f0505 fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xcc4d9241 gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x133922e8 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x985d709f ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xad3062c9 ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc8599787 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xcd68f6d2 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd9b04bdd ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa6712ea0 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd1001815 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe27992f3 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x739630df ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x76262b1e ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8f1d3088 ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x82eba498 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xfa2163da xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xf4ea4824 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x49476c09 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5905f35a ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xaa7fe47e ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcd27f5f4 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x623d54ca ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf675dde4 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xfac276f4 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x0b5d081f xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xc003965c xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x872646aa xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xd773f2be xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x42f1c1e8 ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x4ded5bad ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x71935a57 ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x719e36c4 ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb4e2f14c ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd80514f7 ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xdd85aa43 ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf4fbf19a ircomm_data_request -EXPORT_SYMBOL net/irda/irda 0x01590a8b irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x041570a9 irias_insert_object -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07015ee1 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x14bc139d irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0x1a30ebf6 irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0x1a9f11b6 hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0x2a17732a hashbin_insert -EXPORT_SYMBOL net/irda/irda 0x2d8e87d4 irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0x3144eade irttp_data_request -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x3601261a iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0x3bdef7d7 iriap_close -EXPORT_SYMBOL net/irda/irda 0x40f1e4f5 irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x4fe77ce2 irttp_dup -EXPORT_SYMBOL net/irda/irda 0x56b99f6a hashbin_new -EXPORT_SYMBOL net/irda/irda 0x5dc104f2 irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0x68e5fb46 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0x69c5b563 irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x6b7f50b3 hashbin_find -EXPORT_SYMBOL net/irda/irda 0x6ef49791 irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x8643c584 irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x8a5255b9 irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x9516f690 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0xa2896b18 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0xaad2d90a irias_find_object -EXPORT_SYMBOL net/irda/irda 0xaec635e4 irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0xb56220af irlap_open -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xbed791e9 irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0xcb070985 iriap_open -EXPORT_SYMBOL net/irda/irda 0xcb157eb1 async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0xcb3fdc28 async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0xd007b2a9 irda_notify_init -EXPORT_SYMBOL net/irda/irda 0xd22e8861 irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0xd4dce920 irlap_close -EXPORT_SYMBOL net/irda/irda 0xd7702e20 irias_new_object -EXPORT_SYMBOL net/irda/irda 0xdd988ce6 hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe58ba397 hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0xe73d5e4b alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0xe7aa593d hashbin_remove_this -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xee8ba40d irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0xf0f25ffe hashbin_remove -EXPORT_SYMBOL net/irda/irda 0xfaed9abd irlmp_connect_request -EXPORT_SYMBOL net/l2tp/l2tp_core 0x972386a7 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x5da4ba29 l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x09a93629 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x0bdad3f1 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x36d8bfb0 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x4456f3d5 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x4e5ed00d lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x929473d5 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xb37b0dca lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xd664cd05 lapb_data_request -EXPORT_SYMBOL net/llc/llc 0x01a63cb8 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x6c6a9cb0 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x75e9fbae llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x9817f1dc llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xa1c6cfa2 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xc4558207 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xd43a8cf9 llc_add_pack -EXPORT_SYMBOL net/mac80211/mac80211 0x00263371 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x04472cc9 ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x095cef25 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x0bd6d9fd ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x140f0cd2 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x15f927d5 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x16446521 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x187e486d ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x1aa5a4cd __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x251c4c23 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x2baa58bc ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x2d8a40ad ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x2de20a8d ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x2e237cf4 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x32bd7355 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x395f288f ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x3e1df205 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x4244f8f9 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x44d5986d ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x471bc25c ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x4ca21c59 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x4d41fec2 rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0x4ec22038 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x51f05b9d ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x5feabf83 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x6277d9e0 ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x6343c42c ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x63627d7c ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x64e0074b __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x64eeb642 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x666fe7d9 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x6b38ce0e ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0x6b7d0ad6 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x75a0ad28 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x7ef93b81 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x83e6f248 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x8892e9fc wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x89e18fb6 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x8f3c8c74 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x92fe6bec ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x937f89c0 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x958b2bd6 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x9736ba76 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x990da89b ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x99f125ea ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x9bda0bbd ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x9e0829fa ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x9fa2c575 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xa4bf97c9 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xa88236fa ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xac8fafb2 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xb5ca2038 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xb837f7b4 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xb86968f0 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xb8db45dd ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xbb7794f0 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xbcbc0185 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xbec244f5 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcae727f5 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xd309c4ac ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xd91d332b ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xd998d2b7 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xdb313c81 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xdbd65952 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xddc37a00 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xdfba5229 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xea690bc8 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xeaf1b1da ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xeba8d804 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xed395a09 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xeee54ee9 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xf1bd2e8a ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xf3349661 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xf6f495a2 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0xf9644fbf ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xfb3274df ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xfcaf9dea ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xff209d75 rate_control_set_rates -EXPORT_SYMBOL net/mac802154/mac802154 0x22e02a09 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x89fc741d ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x8cf2e1c7 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x8dbc4aa9 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x8ea39da8 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xbbd25a38 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xd0e84785 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xfe845769 ieee802154_register_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0aec7943 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1033b41f ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2f9f97a1 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x344bfe59 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x47428bfb unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x62b7c22b unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x916d9a47 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xadbef28b ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb532c463 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc5d24134 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcfc79caf ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd3ed9681 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xde6771c8 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe0767cc6 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6408a299 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xa6db7798 __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xa9ee70ee nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x175dd554 nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0x4c427932 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x52bafc08 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x61fee3c4 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xb0b3e260 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xc663bc44 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x5a8af882 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x74e85f5a xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x8e0d9621 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x8f5ec11f xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x90dd0a5c xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xa67bee1e xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xbadb9f87 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xbb1899cd xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0xd22365ff xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xea8c2137 xt_register_matches -EXPORT_SYMBOL net/nfc/hci/hci 0x0b5ac931 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x0e8af1cd nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x1ec62fb8 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x29f00141 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x554ad01b nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x56ab66ad nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x57848a3a nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x58658d66 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x70916086 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x7389137d nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x8c83c3ae nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x9c586c61 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x9dff0827 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xa2d0e730 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0xa69c50f9 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0xaf06aaaf nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0xb0243696 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xb6dffc87 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0xb768488f nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xe68bb4b2 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0xef9b99ab nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x124f30ee nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x12eca36d nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x1df51052 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x2ddf61d0 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x33f9fd3a nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x340e6e05 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x3d139542 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x4947830d nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x4cd0a3c4 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x57130244 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x6c0e7fa1 nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0x91c723d8 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x97293dc5 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0xa0fefc53 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xba6afdea nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0xc53d3fe5 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xc5b6a17b nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xc5d4d0ad nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0xcaf498ff nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xd01f5ef0 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xd22ead5d nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xd288d779 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xd3038d83 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xd83e08c2 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xd845e2f5 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xd89dc717 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xe9ea957e nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xf441725e nci_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x19dd4d0b nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x1f29b56c nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x215e5538 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x2d326c33 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x31f08cf4 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x3727483d nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x55dd100c nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x5920e5a1 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x6a02da5f nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x6af1fd38 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x7ccb13ea nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x7e05abb1 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x8177862f nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x9105c230 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x95824821 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x9886262e nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x9e9dd1a2 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xa2cb986d nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xddcd589c nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xde95d3b8 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xdf005d97 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xe111b208 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xf1128148 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xfbd6772e nfc_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x2ceb88f0 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x9b6061f5 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xb9af9249 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xdeb38494 nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x05a33f91 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x0e09edce pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x90fbf95d phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x9b1ba158 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xbca941f5 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xc18f1b0d phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xc1a0434b pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0xc64438de pn_sock_get_port -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1c6f4c6f rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1f4d5a5e rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x30539739 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x36399ca9 rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x580bd2b4 rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5b2df7f9 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5b6b8b7e rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5dd19804 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7a71431c key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7abbbadf rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xac9de06f rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xddda09de rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe031c804 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe6fdd797 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf3e24c17 rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/sctp/sctp 0x8271e318 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x1083d5a9 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2c7b76ed gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x8008383c gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x0fb36dec svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x1a3e28b2 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x97eddee7 xdr_truncate_encode -EXPORT_SYMBOL net/wimax/wimax 0x566a9f05 wimax_reset -EXPORT_SYMBOL net/wimax/wimax 0xe99de244 wimax_rfkill -EXPORT_SYMBOL net/wireless/cfg80211 0x04b4f452 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x08b232ea wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x097e97c7 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0cda4f07 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x1303ffe2 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x20b06ec4 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x224341bd cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x22a9328a wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x2ccb485e cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x2d7a54b3 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x33267b2e regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x36f74bad cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x383130a2 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x3884f829 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x391d7b67 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x3b6238c3 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x3e7c49b3 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x41dbef55 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x46117129 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4c8dc8ae cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x4f8fc134 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x511bba13 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x59a0fd0a cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x5a19f7f0 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x5da83116 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x5e1055fc cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x621410e8 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x62c89ffd cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x62d86ea8 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x62fcd969 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x650f9a55 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x695e48fc cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6a1d4f9a cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x6d46c3a5 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x7231b84d cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x7233ee0e cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x78fc39c3 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x82ee8d99 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x893ee283 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x8d437ff9 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x8dc220a5 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x8f2166ef ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x907a9d7b ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x94a5a1d0 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x98d75696 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x98dcaf0c cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x99100399 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0x9af16c35 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x9c28008c regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x9e88227b cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x9ee05cca wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x9f58babc ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0xa086b70b cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xa13bdc86 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xa4071899 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xa8bc3fa7 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0xa8eb79ae cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xb4a5454d cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xb8e8b40c cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xb99196d1 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xbed92f12 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0xc390f6cf cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xcb617c24 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xcdb8ff2c wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xd08ee186 cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0xd0a0dd59 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xd26237bd cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xd32cd76a cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xd441a4b1 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xd592b32c cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xdaa3b17d cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdbc33b6b ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xdcc4a542 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xe05d094d cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xe39a511f cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xe86567ad cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0xeb1c64a2 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf210748e cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0xf40acfed wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xf6cbc403 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xf9057cb0 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xf96b3b89 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x0fe1cba3 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x1248cd05 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x3157110a lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x3dc64c8d lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x6bbc57e7 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xb7176201 lib80211_get_crypto_ops -EXPORT_SYMBOL sound/ac97_bus 0x8dfc1b74 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x862ef513 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x0b71eafb snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6b857e9d snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xa5d54981 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xba5425db snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x40cb43cc snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x045df6a4 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x19644b06 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x237c480c snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x46d509d4 snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x48501cc2 snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x57427cce snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x6e4581b3 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xfdab5ab4 snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xdeecbbe5 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x01f633a8 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x066f0e05 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x100064c9 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x18cb6d60 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x1975bbd7 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x2466b5fa snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x24b459ac snd_card_free -EXPORT_SYMBOL sound/core/snd 0x25b25b8a snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x2646d82f snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0x2c151977 snd_register_device -EXPORT_SYMBOL sound/core/snd 0x2c3d75ba snd_device_new -EXPORT_SYMBOL sound/core/snd 0x2f22cd18 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x42da9d74 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x43075bd8 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4c16355f snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x50c16036 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x51d6de81 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x549080bf snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x5a04c455 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x5c55ac50 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x5db5ed08 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x614b8af1 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x6adb44c7 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x730f4319 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x788d0a87 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x78cd55d8 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x7aabce70 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x86cb1746 snd_device_free -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x9205da80 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x9a119f5a snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0x9f2882ba snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0xa1613252 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0xa211592e _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0xa2a65cbf snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0xa438cf11 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0xaffebd1e snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0xb182ec75 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb85b5f05 snd_info_register -EXPORT_SYMBOL sound/core/snd 0xb94a8154 snd_device_register -EXPORT_SYMBOL sound/core/snd 0xb9828f58 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0xbd0ab447 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0xcd51e4b6 snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0xd459fa3a snd_card_new -EXPORT_SYMBOL sound/core/snd 0xd6e304bf snd_card_register -EXPORT_SYMBOL sound/core/snd 0xe40daf30 snd_cards -EXPORT_SYMBOL sound/core/snd 0xe9cbd617 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0xf172019c snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xf38ac0b9 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-hwdep 0x5a916377 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x02a99c94 snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x0b6443fd snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x0d4f1eb8 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x139c8c36 snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0x14ef1559 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x16980e26 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x171fd1b1 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x1c143b2b snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x1d8d8310 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x1d9675b9 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x1e7b5c57 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x24cb27b3 snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0x283b8607 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x28aec7db snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x336be025 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x376f5838 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3a40d471 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x3b02948d snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x4d25b7c9 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x4d2cea2b _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x54bc7bf5 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x66f16b4c snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x776ec92b snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x7923da30 snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x7d9f8a27 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x85638c8c snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x87f4c758 snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x8a9855cf snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x9f5ca8e2 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0xa3a82e54 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xa5a75290 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xa91315f9 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xace741f2 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xb1672a5a snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xdec55caf snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xe4c47b40 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe7d722ea snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0xe9800e43 snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xeb36a623 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0xebbcd98e snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xec6e9442 snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0xf2258f85 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xf4507924 snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0xf6fdb4d2 snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0xfd479405 snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0xfe8bf9dd snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0afc573b snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1406319c snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2d5c5c7c __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x30b20718 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x335a11f2 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x342f8f84 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3fcff5ab snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4bd0decf snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7d3fa06e snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x82105f3d __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x85032207 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8f1dd052 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8f370b56 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa4cb514d snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa54fdbdf snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xba2fe1fd snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc2bd5dba snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc85e198c snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf155c464 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-timer 0x112618d4 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x1fa8048c snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x2bc37130 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x3fa9c3f5 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x5a277829 snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x6fdbd449 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0x92a800db snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x9ac72ac5 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xb4894a54 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0xceb79392 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0xd89a3804 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xe75e4014 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xeb787c0b snd_timer_start -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x5d471c1f snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x057423fc snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4db75799 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x58c7eb1a snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x67ea3cc9 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9c21d1d1 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdd7d0baa snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdea6cdd3 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe87a347c snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfbf218cb snd_opl3_reset -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x209afa6a snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x273ff3f8 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3732af3c snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x40c2e0fa snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5f8be155 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x81e06557 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdf7b4055 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xec6bd3c2 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfb7b61e1 snd_vx_dsp_boot -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x03f2b3d1 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x07547e48 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x103044fd cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x12d5c358 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x16d7cd5d amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1dde4098 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2daac36d amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f06e733 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x35b64121 amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x35d8a38c avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c3e3f76 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3ef1eefe amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x49695b87 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x52ae3154 snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5ba9da14 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x60818674 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x78c0d570 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x809f2506 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x826f39e7 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x85898de9 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaa0b838d cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaae9f1e2 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb158d3ca amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb4205baa fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xba705203 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbf88ec68 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc97c9af5 snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd3c6af03 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdaa23b5f cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdf979567 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe0f1c195 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfe6bab6f fw_iso_resources_free -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x654acf4d snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xedd9cbcc snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2a95571f snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x43e09f45 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x530eb348 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x592e2102 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7673b8b1 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7f066c76 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8fa5ecad snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd8307a9d snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x36a6509a snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x3794c352 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8a9964d0 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xce86d595 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x078fceea snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xad263096 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x513acf0a snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6344ac1e snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x77126288 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd1e4c27c snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf0f83e93 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf83450f6 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-i2c 0x2782f853 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x366cd597 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x4e0542c5 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x56ee731d snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x6f3ba6a2 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xcd060a21 snd_i2c_device_create -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0b106eb2 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x113c255a snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x39ff3ddd snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3a257563 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x47429fce snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4d36520b snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x60a53958 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x639ca701 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8bdfc3a3 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x94e087c4 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9c19e348 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc35bfd5c snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc4619745 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcd53d36b snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd72c6c72 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe76c9ad2 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfb8428b4 snd_ac97_bus -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1b11ad3e snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2253ab3e snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x435ed957 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x556a60de snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7076eef6 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7edefbb1 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x828b2306 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa18ed2bf snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa9ae9e28 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3209b3bf snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3f982afa snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x88fde158 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x022d3b29 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0b7f127c oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0ba02e8d oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0be7c398 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1103520c oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1c0cce4c oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x247f86b5 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3c7bf365 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x630ba492 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x837f049c oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x941204a0 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9ad74a35 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xae78a2e9 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xaed1203b oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbdf70cf2 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbf763c94 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc22d192e oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd006dba1 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe5d5be65 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe7d3a2d1 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf3fb04c9 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1713cdbe snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xba483e28 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xde8a9c2c snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xed98cd67 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf27bafa6 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x2cf6fb69 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xedb647d8 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/snd-soc-core 0xbdc0d74d snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/soundcore 0x07b855d4 register_sound_special -EXPORT_SYMBOL sound/soundcore 0x365d4617 sound_class -EXPORT_SYMBOL sound/soundcore 0x51e86e5f register_sound_midi -EXPORT_SYMBOL sound/soundcore 0x6943923a register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xa834cf1e register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xed4dbd36 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x11679efb snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1e71e0aa snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3f74341b snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x669a1672 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7405464f snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xec2104fe snd_emux_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x2139c895 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0x6aa0e079 __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x71d1f050 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x767c3549 snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xaf386200 __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0xcc9e7ea4 snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0xd0669d79 snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xf533a9d1 __snd_util_memblk_new -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd59a66ea snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x00339ce0 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x00493c8c qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x00497aeb security_inode_permission -EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x00835307 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done -EXPORT_SYMBOL vmlinux 0x0086e9b1 get_tz_trend -EXPORT_SYMBOL vmlinux 0x009a3238 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x00bb6951 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x00d51fae of_get_property -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00da6767 mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0x00e87883 rwsem_wake -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x01047d2b arp_send -EXPORT_SYMBOL vmlinux 0x0125e397 tso_count_descs -EXPORT_SYMBOL vmlinux 0x01547a79 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x0158a6dd seq_open_private -EXPORT_SYMBOL vmlinux 0x01631a1b jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x0171d14d tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x01727c05 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x01790e94 csum_partial_copy -EXPORT_SYMBOL vmlinux 0x01a0bd9f elv_register_queue -EXPORT_SYMBOL vmlinux 0x01a5b4ba ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x01bc32c1 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x01d234b4 pci_request_regions -EXPORT_SYMBOL vmlinux 0x01d6fe8e __lock_page -EXPORT_SYMBOL vmlinux 0x01d7e12f alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x02008d4c inet_frags_init -EXPORT_SYMBOL vmlinux 0x020a8c99 notify_change -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x0215880e ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x0257046d generic_removexattr -EXPORT_SYMBOL vmlinux 0x02626232 blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x026ad5c5 blk_register_region -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x0286a58d skb_copy_bits -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02aa1702 drop_nlink -EXPORT_SYMBOL vmlinux 0x02ac01ad netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x02b424e1 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x02c6ee36 __pci_enable_wake -EXPORT_SYMBOL vmlinux 0x02d39881 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x0305a89a dqget -EXPORT_SYMBOL vmlinux 0x031c703e vmap -EXPORT_SYMBOL vmlinux 0x03270192 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0356cf3d locks_init_lock -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x035f891b down_interruptible -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x0371a1ec genl_notify -EXPORT_SYMBOL vmlinux 0x03747568 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x038dd2be phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x03bbd50c nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x03c39989 __register_binfmt -EXPORT_SYMBOL vmlinux 0x03cd4faf vlan_vid_del -EXPORT_SYMBOL vmlinux 0x03dd00f9 bio_init -EXPORT_SYMBOL vmlinux 0x03e3fd08 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x03ecdfe1 init_special_inode -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x0439e0d9 igrab -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0470bc82 netlink_capable -EXPORT_SYMBOL vmlinux 0x0476dc2e no_llseek -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x048b2e88 param_get_byte -EXPORT_SYMBOL vmlinux 0x04a2c173 __destroy_inode -EXPORT_SYMBOL vmlinux 0x04d40bc1 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04f1b3ce __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x04f1da12 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x0509d987 path_get -EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0527d0fe proc_mkdir -EXPORT_SYMBOL vmlinux 0x052b2423 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x0536a676 rfkill_alloc -EXPORT_SYMBOL vmlinux 0x0544b12b locks_remove_posix -EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x0562d107 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x05739c05 set_posix_acl -EXPORT_SYMBOL vmlinux 0x05834f15 iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0x05d3f7dd blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x05e566cb dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x060425dd devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x061f4039 acpi_get_table_with_size -EXPORT_SYMBOL vmlinux 0x062cf8f7 sget -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x067bdfb7 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x069b028d netlink_ack -EXPORT_SYMBOL vmlinux 0x06ab8b59 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x06df8936 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x06ff6776 skb_append -EXPORT_SYMBOL vmlinux 0x070774fd ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x071b363c pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x0725ea73 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x07462b08 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x076f98ca lease_modify -EXPORT_SYMBOL vmlinux 0x0792a714 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x07ba00fd iov_iter_zero -EXPORT_SYMBOL vmlinux 0x07bda92c sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x080d8017 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x08102b1a mmc_erase -EXPORT_SYMBOL vmlinux 0x08200012 mmc_request_done -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083ad288 posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x0845a1b5 soft_cursor -EXPORT_SYMBOL vmlinux 0x087326df d_obtain_alias -EXPORT_SYMBOL vmlinux 0x08790919 icmp_send -EXPORT_SYMBOL vmlinux 0x087ca5a3 i2c_verify_client -EXPORT_SYMBOL vmlinux 0x0880fd71 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x088a083a module_refcount -EXPORT_SYMBOL vmlinux 0x08bab525 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x08e53b84 tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x08f16100 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x09052746 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0x09228a7c processors -EXPORT_SYMBOL vmlinux 0x093bfc3f proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x093fc766 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x0948cb00 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x0956f77b devm_memremap -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x095bea8f dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x0967d278 blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x09696626 acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x0973ff72 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x098431ba acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x099071e4 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x09a0cdb8 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09d775cc serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x09da5cea dev_get_iflink -EXPORT_SYMBOL vmlinux 0x09e6d238 generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x09f83b7f __lock_buffer -EXPORT_SYMBOL vmlinux 0x0a18f10b kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x0a19c234 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x0a28218f inode_needs_sync -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a56489b rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x0a62aaa4 blk_delay_queue -EXPORT_SYMBOL vmlinux 0x0aa201ce blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0abd92ae dentry_unhash -EXPORT_SYMBOL vmlinux 0x0abfe416 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x0ac52049 blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x0ac5523d scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad2c6f2 bioset_free -EXPORT_SYMBOL vmlinux 0x0ada9992 serio_close -EXPORT_SYMBOL vmlinux 0x0ade297a of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b11ccbe mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x0b13efb5 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b24f9e1 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b75108c devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0x0b7f09c9 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x0b8e6da1 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x0b9a55a2 __breadahead -EXPORT_SYMBOL vmlinux 0x0ba9e4a1 compat_tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x0bae2062 xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bd5e3d7 bio_flush_dcache_pages -EXPORT_SYMBOL vmlinux 0x0bd9b069 phy_init_hw -EXPORT_SYMBOL vmlinux 0x0bf4c2ea tty_throttle -EXPORT_SYMBOL vmlinux 0x0c160a59 address_space_init_once -EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c62732a __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c7e7209 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x0c80935b netdev_notice -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0ca4d8b4 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cb2d90e tty_unthrottle -EXPORT_SYMBOL vmlinux 0x0cb94e14 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x0cc62817 gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x0cda1e94 blk_requeue_request -EXPORT_SYMBOL vmlinux 0x0cf65bb8 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x0cf6e603 try_module_get -EXPORT_SYMBOL vmlinux 0x0d03573d mmc_release_host -EXPORT_SYMBOL vmlinux 0x0d1cad1a blk_put_queue -EXPORT_SYMBOL vmlinux 0x0d1ebefb netif_napi_del -EXPORT_SYMBOL vmlinux 0x0d299f1d peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x0d335d93 of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type -EXPORT_SYMBOL vmlinux 0x0d42af92 seq_putc -EXPORT_SYMBOL vmlinux 0x0d4b64f5 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x0d530ebd lock_sock_fast -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d556ffa lock_fb_info -EXPORT_SYMBOL vmlinux 0x0d5b511a pci_disable_device -EXPORT_SYMBOL vmlinux 0x0d5ca618 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d80efb5 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0dc84e83 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x0dd86eb3 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x0dde2f9c fd_install -EXPORT_SYMBOL vmlinux 0x0de99cb8 napi_complete_done -EXPORT_SYMBOL vmlinux 0x0dfdccf6 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x0e0c50a9 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x0e28d9a0 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x0e43304c i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x0e49543f pci_claim_resource -EXPORT_SYMBOL vmlinux 0x0e5c3c35 __put_cred -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e77a781 lockref_put_return -EXPORT_SYMBOL vmlinux 0x0e7a7bd1 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x0e89524e arp_create -EXPORT_SYMBOL vmlinux 0x0e8fb606 sock_no_bind -EXPORT_SYMBOL vmlinux 0x0e91ba57 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x0e9399e7 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x0ea507f2 d_move -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ec83051 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x0ed8cc7b acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x0edcf8a6 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f0f7578 nvm_get_blk -EXPORT_SYMBOL vmlinux 0x0f1bcecf clk_get -EXPORT_SYMBOL vmlinux 0x0f2ab297 dev_uc_add -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f7152a0 free_user_ns -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f7dd887 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x0f817186 serio_interrupt -EXPORT_SYMBOL vmlinux 0x0f93de80 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fd96471 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x0fdc5811 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x0fe85a7a sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress -EXPORT_SYMBOL vmlinux 0x0ff2c759 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x0ff80232 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x10148054 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x101fba19 is_bad_inode -EXPORT_SYMBOL vmlinux 0x1022189e dev_mc_sync -EXPORT_SYMBOL vmlinux 0x102a3c09 kernel_accept -EXPORT_SYMBOL vmlinux 0x102e0624 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x1031299c inet_del_protocol -EXPORT_SYMBOL vmlinux 0x1036e51d audit_log -EXPORT_SYMBOL vmlinux 0x104f353a inet_addr_type -EXPORT_SYMBOL vmlinux 0x1069fd58 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x10aeb226 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x10bbf2e0 input_unregister_handle -EXPORT_SYMBOL vmlinux 0x10c38315 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x10e2ebbd get_super_thawed -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10eed3ba xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x10f1e5fc i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x10f9c026 swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x10fb3fa5 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x11240477 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x112d1160 skb_push -EXPORT_SYMBOL vmlinux 0x1148ce16 set_wb_congested -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x1168abba phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x116a89b5 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1181a6dd sock_kmalloc -EXPORT_SYMBOL vmlinux 0x119919c9 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11a68c63 phy_device_free -EXPORT_SYMBOL vmlinux 0x11c19ff4 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x11c27637 pci_select_bars -EXPORT_SYMBOL vmlinux 0x11d455d2 __page_symlink -EXPORT_SYMBOL vmlinux 0x11d54855 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x11d847d1 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x1237af21 i2c_master_send -EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x1250dc87 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0x12850ef0 md_finish_reshape -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit -EXPORT_SYMBOL vmlinux 0x12e7ce08 mutex_trylock -EXPORT_SYMBOL vmlinux 0x12ef86f5 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0x13002bc1 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x1305d532 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x1309259d misc_register -EXPORT_SYMBOL vmlinux 0x13113ad9 from_kuid -EXPORT_SYMBOL vmlinux 0x13114e24 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x1325e004 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x1327ebfa i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x13299bb8 netdev_features_change -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc -EXPORT_SYMBOL vmlinux 0x13380bc8 simple_write_begin -EXPORT_SYMBOL vmlinux 0x134aba0e __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x134e2b52 alloc_disk_node -EXPORT_SYMBOL vmlinux 0x1354b788 cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0x1355087f mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0x1359277f pci_find_capability -EXPORT_SYMBOL vmlinux 0x1368ee3c xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x13a05020 kernel_read -EXPORT_SYMBOL vmlinux 0x13a1046b devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x13a80329 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x13b0e2e8 pci_match_id -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13e225d3 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x13edba65 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x13ef2c65 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x13f78213 pci_clear_master -EXPORT_SYMBOL vmlinux 0x14092cbe blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x141f68f8 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x14343175 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x143e75d2 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x143f7e82 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x145b53bc deactivate_super -EXPORT_SYMBOL vmlinux 0x14618e7d blk_queue_bounce -EXPORT_SYMBOL vmlinux 0x147a0e95 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x14838ca6 dev_addr_flush -EXPORT_SYMBOL vmlinux 0x14857d2b elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0x1498cd2d tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x149e368c nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x14b03ef6 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x14b0badd netdev_printk -EXPORT_SYMBOL vmlinux 0x14b43f78 copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x14bf0990 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14d0f74c unregister_nls -EXPORT_SYMBOL vmlinux 0x14deff4a bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x14e78f9f load_nls -EXPORT_SYMBOL vmlinux 0x14f9186a ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x1500c818 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0x1535652d phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x15364b63 ida_remove -EXPORT_SYMBOL vmlinux 0x1537a5cd dma_mark_declared_memory_occupied -EXPORT_SYMBOL vmlinux 0x15395e07 blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x1550897b devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x1583a583 from_kprojid -EXPORT_SYMBOL vmlinux 0x15998547 xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x15b630b3 qcom_scm_set_cold_boot_addr -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bb655e copy_to_iter -EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x15cf9bfa kill_anon_super -EXPORT_SYMBOL vmlinux 0x15d6d501 vm_mmap -EXPORT_SYMBOL vmlinux 0x15e10493 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0x1632c8ce scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x16733935 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x16766435 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x1682ea05 proc_douintvec -EXPORT_SYMBOL vmlinux 0x16af0e07 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x16d5d2cd cpu_all_bits -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x170643dc __devm_request_region -EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x171f9718 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x1736513f pnp_disable_dev -EXPORT_SYMBOL vmlinux 0x173ce798 km_new_mapping -EXPORT_SYMBOL vmlinux 0x175a783f vfs_llseek -EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x17a142df __copy_from_user -EXPORT_SYMBOL vmlinux 0x17a529ef bio_copy_data -EXPORT_SYMBOL vmlinux 0x17abdbb5 d_add_ci -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17ec5324 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x17efe54b alloc_fddidev -EXPORT_SYMBOL vmlinux 0x180e4a00 get_mm_exe_file -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183f45d2 backlight_device_register -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x184e0154 blk_init_queue -EXPORT_SYMBOL vmlinux 0x186c9d33 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x186d2f1a xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x18870ede simple_transaction_get -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io -EXPORT_SYMBOL vmlinux 0x18b4ee3f serio_unregister_port -EXPORT_SYMBOL vmlinux 0x18bcdf07 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x18dd9764 register_key_type -EXPORT_SYMBOL vmlinux 0x18e047a1 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18eed58c __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x18fef9cb xen_start_info -EXPORT_SYMBOL vmlinux 0x190077ba inode_change_ok -EXPORT_SYMBOL vmlinux 0x1904cb7d vm_insert_page -EXPORT_SYMBOL vmlinux 0x1905e655 nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0x192824ab crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x1934ac55 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x19519810 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x196239dc inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x1966bd27 param_ops_uint -EXPORT_SYMBOL vmlinux 0x1992d8dd tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0x199ec208 fifo_set_limit -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19af8aa6 put_tty_driver -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19bed6cc inet_stream_connect -EXPORT_SYMBOL vmlinux 0x19c1ffaf pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x19c8567f iput -EXPORT_SYMBOL vmlinux 0x19c8b18b twl6040_power -EXPORT_SYMBOL vmlinux 0x19d2d5dd gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x19edc9f3 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x1a085c73 __frontswap_load -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a4aebad sock_update_memcg -EXPORT_SYMBOL vmlinux 0x1a797ea9 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x1a7d2be7 pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x1a7dbd75 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x1aacc39c __ip_select_ident -EXPORT_SYMBOL vmlinux 0x1ab06748 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1aea1080 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b0dc901 bprm_change_interp -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b2d6d2c qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0x1b327336 scsi_add_device -EXPORT_SYMBOL vmlinux 0x1b337e88 from_kuid_munged -EXPORT_SYMBOL vmlinux 0x1b41014d inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x1b56f0fe scsi_remove_device -EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b64452c dst_destroy -EXPORT_SYMBOL vmlinux 0x1b731d5b netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b9a4c17 inet_sendpage -EXPORT_SYMBOL vmlinux 0x1baffbb0 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bbf25df mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x1bca2a90 prepare_to_wait -EXPORT_SYMBOL vmlinux 0x1be36232 of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x1be4ca56 find_lock_entry -EXPORT_SYMBOL vmlinux 0x1bf408f7 kobject_set_name -EXPORT_SYMBOL vmlinux 0x1bff7ce1 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states -EXPORT_SYMBOL vmlinux 0x1c2b4d2e sock_recvmsg -EXPORT_SYMBOL vmlinux 0x1c35d6a8 security_path_symlink -EXPORT_SYMBOL vmlinux 0x1c3715a5 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x1c3f98dc vme_lm_request -EXPORT_SYMBOL vmlinux 0x1c42869b dquot_enable -EXPORT_SYMBOL vmlinux 0x1c447dc5 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x1c4eabd8 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x1c6b36f5 thaw_bdev -EXPORT_SYMBOL vmlinux 0x1c79c628 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x1c83336f bio_unmap_user -EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset -EXPORT_SYMBOL vmlinux 0x1c8bb637 compat_sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x1ca546e2 profile_pc -EXPORT_SYMBOL vmlinux 0x1ca7ce77 dget_parent -EXPORT_SYMBOL vmlinux 0x1cb821d7 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x1cbb98d8 put_page -EXPORT_SYMBOL vmlinux 0x1ccd609e sk_mc_loop -EXPORT_SYMBOL vmlinux 0x1ccf278e of_find_property -EXPORT_SYMBOL vmlinux 0x1d0683e8 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be -EXPORT_SYMBOL vmlinux 0x1d1730b2 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x1d5a859e init_net -EXPORT_SYMBOL vmlinux 0x1d5ed86a scsi_register_interface -EXPORT_SYMBOL vmlinux 0x1d63aaa6 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x1d66980d security_inode_init_security -EXPORT_SYMBOL vmlinux 0x1d7fe06f pci_get_subsys -EXPORT_SYMBOL vmlinux 0x1d89bdac neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x1d92d898 complete_and_exit -EXPORT_SYMBOL vmlinux 0x1dadd71c tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x1daff594 security_path_unlink -EXPORT_SYMBOL vmlinux 0x1db6e129 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dc5794f mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x1dd115bc scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e308cc5 seq_pad -EXPORT_SYMBOL vmlinux 0x1e43c84e user_revoke -EXPORT_SYMBOL vmlinux 0x1e534f15 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x1e5d97c5 xattr_full_name -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e8571b9 qdisc_list_del -EXPORT_SYMBOL vmlinux 0x1e92bf19 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea06663 _raw_write_lock -EXPORT_SYMBOL vmlinux 0x1ea0a7ab kernel_neon_begin_partial -EXPORT_SYMBOL vmlinux 0x1ea39bc5 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0x1eb02a32 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x1eb6a5d2 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x1ee267ec skb_trim -EXPORT_SYMBOL vmlinux 0x1ee7ec7a seq_puts -EXPORT_SYMBOL vmlinux 0x1eeac885 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x1f095682 set_nlink -EXPORT_SYMBOL vmlinux 0x1f0ef611 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x1f31e0f3 simple_readpage -EXPORT_SYMBOL vmlinux 0x1f639e0b kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x1f67082e skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x1f684bce skb_seq_read -EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x1f71576e qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x1f7e0829 ll_rw_block -EXPORT_SYMBOL vmlinux 0x1fb52f61 kset_register -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fcf4d4b _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd0a36f inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0x1fdc7df2 _mcount -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9b2cb of_gpio_simple_xlate -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201059b6 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x202e16a6 netdev_err -EXPORT_SYMBOL vmlinux 0x203f0fa8 devm_request_resource -EXPORT_SYMBOL vmlinux 0x204346af proc_dostring -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x206ac1e1 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x20812fda mfd_add_devices -EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table -EXPORT_SYMBOL vmlinux 0x20906cd5 idr_destroy -EXPORT_SYMBOL vmlinux 0x2090d31f forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20dc48dd pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x20ffa7f6 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x210035a7 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x210985df pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x211d7dc5 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x2157ec04 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x21632c0b inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x21642387 of_get_address -EXPORT_SYMBOL vmlinux 0x217cbe81 default_llseek -EXPORT_SYMBOL vmlinux 0x218ea808 filemap_fdatawait -EXPORT_SYMBOL vmlinux 0x21907657 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x219c8acb register_sysctl -EXPORT_SYMBOL vmlinux 0x21cbed15 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x222b5d86 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x224ff4ad wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x22525678 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x22694ab2 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x2286646b sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x228903a5 padata_free -EXPORT_SYMBOL vmlinux 0x22a73764 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x22a8dc21 vfs_writev -EXPORT_SYMBOL vmlinux 0x22a9c5ff phy_connect -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b83fbf unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x22baea3d proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x22eb8c1c textsearch_prepare -EXPORT_SYMBOL vmlinux 0x22fef3d6 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x230e8d35 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x230f5417 posix_test_lock -EXPORT_SYMBOL vmlinux 0x231323e0 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x23281c67 nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x23361498 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x2339a1a9 scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x2343bdc7 tty_unlock -EXPORT_SYMBOL vmlinux 0x234def79 elevator_alloc -EXPORT_SYMBOL vmlinux 0x2364c326 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x236619f6 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x2381df12 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x239014fd tcf_hash_insert -EXPORT_SYMBOL vmlinux 0x2391e2f1 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x24394c10 dquot_free_inode -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x24554b35 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x2470065c of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0x2470fc94 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x249f1319 acpi_pm_device_run_wake -EXPORT_SYMBOL vmlinux 0x24aeeb57 of_translate_address -EXPORT_SYMBOL vmlinux 0x24ba153c blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x24e87640 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x24f8ec80 udp_add_offload -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x250bcdd5 genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x251a2679 nd_iostat_end -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x252b43a1 dquot_quota_on -EXPORT_SYMBOL vmlinux 0x253c70c5 nf_register_hook -EXPORT_SYMBOL vmlinux 0x255bb072 change_bit -EXPORT_SYMBOL vmlinux 0x255c3443 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2587c47a fb_set_suspend -EXPORT_SYMBOL vmlinux 0x25bfcd09 kernel_connect -EXPORT_SYMBOL vmlinux 0x25c1eb43 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x25d4bf4c flow_cache_fini -EXPORT_SYMBOL vmlinux 0x25e54269 dev_warn -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25ffad7e devm_gpio_free -EXPORT_SYMBOL vmlinux 0x260cfc76 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x260ea2ef pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x26176981 pnp_device_attach -EXPORT_SYMBOL vmlinux 0x261ff6e5 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x262413be of_device_alloc -EXPORT_SYMBOL vmlinux 0x263958e0 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update -EXPORT_SYMBOL vmlinux 0x267c956d pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x26820443 vfs_fsync -EXPORT_SYMBOL vmlinux 0x268410fa clear_nlink -EXPORT_SYMBOL vmlinux 0x268bb345 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x269d814a install_exec_creds -EXPORT_SYMBOL vmlinux 0x26e37552 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x27077c29 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x270c0215 pci_restore_state -EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x2723b1f9 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x2724ba66 __ioremap -EXPORT_SYMBOL vmlinux 0x273a82e1 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x27427ff6 mmc_add_host -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x275ea1c3 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x27737400 amba_device_unregister -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x27a24cb3 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0x27ab60df dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction -EXPORT_SYMBOL vmlinux 0x27b6701f kmem_cache_create -EXPORT_SYMBOL vmlinux 0x27bbe3a5 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27de12f5 _dev_info -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x2804521e ata_print_version -EXPORT_SYMBOL vmlinux 0x28142b28 blk_make_request -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x281c69ea blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x2830d135 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x28318305 snprintf -EXPORT_SYMBOL vmlinux 0x28368b9c inet_frag_find -EXPORT_SYMBOL vmlinux 0x2852b12b pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x2891599f mii_link_ok -EXPORT_SYMBOL vmlinux 0x2897ff4c padata_add_cpu -EXPORT_SYMBOL vmlinux 0x2899239a scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x289a2869 blk_start_queue -EXPORT_SYMBOL vmlinux 0x289cbf68 i2c_release_client -EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28a47540 d_delete -EXPORT_SYMBOL vmlinux 0x28a8d2e2 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x28b2dff7 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x28b6e278 devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x28be587d pci_release_region -EXPORT_SYMBOL vmlinux 0x28c2fa7b __genl_register_family -EXPORT_SYMBOL vmlinux 0x28d7ffea lg_local_unlock -EXPORT_SYMBOL vmlinux 0x28e96496 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x28eab0a4 follow_pfn -EXPORT_SYMBOL vmlinux 0x28f0bd7d d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0x2915b3ad tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x291ba05d udplite_table -EXPORT_SYMBOL vmlinux 0x29288f41 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x293ffe2b __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x295d9634 would_dump -EXPORT_SYMBOL vmlinux 0x2976beb1 iterate_dir -EXPORT_SYMBOL vmlinux 0x297ebbdb key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x29940191 abort_creds -EXPORT_SYMBOL vmlinux 0x29a62c5c kern_unmount -EXPORT_SYMBOL vmlinux 0x29b83dc0 input_inject_event -EXPORT_SYMBOL vmlinux 0x29bcff6d devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x29decf64 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x29eb9650 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x2a13fdd5 sock_init_data -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2a3aee0b vme_master_mmap -EXPORT_SYMBOL vmlinux 0x2a3afdd6 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x2a3f686d vme_slave_request -EXPORT_SYMBOL vmlinux 0x2a6af362 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x2a8ea4b6 skb_insert -EXPORT_SYMBOL vmlinux 0x2aa1ad41 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2aadef71 skb_find_text -EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2adefc9e serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x2ae18663 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x2ae9f701 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b0bb003 inode_set_flags -EXPORT_SYMBOL vmlinux 0x2b0f9058 mmc_power_save_host -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b3050af buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x2b35e922 blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x2b37fb78 inet6_offloads -EXPORT_SYMBOL vmlinux 0x2b558e3f elv_add_request -EXPORT_SYMBOL vmlinux 0x2b5f77ab posix_acl_valid -EXPORT_SYMBOL vmlinux 0x2b712440 elevator_change -EXPORT_SYMBOL vmlinux 0x2b788382 abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x2b88fa41 __vfs_read -EXPORT_SYMBOL vmlinux 0x2b8909da devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x2b8ad61c __find_get_block -EXPORT_SYMBOL vmlinux 0x2b9af470 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x2b9b93f3 cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2ba9a3eb dev_mc_flush -EXPORT_SYMBOL vmlinux 0x2bb2d036 param_set_ushort -EXPORT_SYMBOL vmlinux 0x2bb521ce vfs_whiteout -EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x2bd5d609 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x2be79494 security_inode_readlink -EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove -EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x2c0e9fc2 of_match_device -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c2593e0 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x2c38619d netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x2c4116aa generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x2c700ee8 elv_rb_del -EXPORT_SYMBOL vmlinux 0x2c72555f iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x2c7c5e44 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x2c83edfc sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x2c85ba90 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x2c8d0ea4 sock_no_accept -EXPORT_SYMBOL vmlinux 0x2c8f58da simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x2c9dc477 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x2ca5d842 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x2ca89eca complete_request_key -EXPORT_SYMBOL vmlinux 0x2cf0de25 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x2d08b532 proto_unregister -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d368ee5 n_tty_compat_ioctl_helper -EXPORT_SYMBOL vmlinux 0x2d3795d8 mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0x2d399bb7 dcb_setapp -EXPORT_SYMBOL vmlinux 0x2d3df015 dup_iter -EXPORT_SYMBOL vmlinux 0x2d532100 alloc_file -EXPORT_SYMBOL vmlinux 0x2d93cc54 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x2d99ef9b skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x2da8121a qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x2db1e0c6 dql_init -EXPORT_SYMBOL vmlinux 0x2dcb6091 mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink -EXPORT_SYMBOL vmlinux 0x2dde8c39 register_cdrom -EXPORT_SYMBOL vmlinux 0x2ddf27a0 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x2de1327b bit_waitqueue -EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception -EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on -EXPORT_SYMBOL vmlinux 0x2e1c5eed swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e2d46b4 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x2e36d71c pci_disable_msix -EXPORT_SYMBOL vmlinux 0x2e4c8912 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0x2e60e2b0 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x2e7be112 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0x2e974658 phy_device_register -EXPORT_SYMBOL vmlinux 0x2ea4c1c9 lg_global_unlock -EXPORT_SYMBOL vmlinux 0x2ec58bf1 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x2ecda80f blk_get_queue -EXPORT_SYMBOL vmlinux 0x2ee2bdcb dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x2ef23b0f ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2f011440 may_umount -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f2b81ac fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f3857e2 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0x2f3ded4f security_task_getsecid -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f5eb6fd dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x2f7678db blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x2f79843b netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x2f7b4da2 pipe_unlock -EXPORT_SYMBOL vmlinux 0x2f9be0ac devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x2fa70391 input_free_device -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fb6f5f0 pci_enable_msix -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2ff063b5 acpi_get_name -EXPORT_SYMBOL vmlinux 0x2ff8c3ff audit_log_task_info -EXPORT_SYMBOL vmlinux 0x3012569a param_ops_long -EXPORT_SYMBOL vmlinux 0x30236b79 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x304ec72b _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x305cec12 _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x308a993d twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30b8d34a override_creds -EXPORT_SYMBOL vmlinux 0x30d84751 netdev_crit -EXPORT_SYMBOL vmlinux 0x30de9e42 d_alloc -EXPORT_SYMBOL vmlinux 0x30e4e2bc pci_bus_type -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30fd14e4 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310f02ec memremap -EXPORT_SYMBOL vmlinux 0x3119613e compat_ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x315a8ba2 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x3168bcc8 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x3177b1d8 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31bbbad8 inode_add_bytes -EXPORT_SYMBOL vmlinux 0x31ce3888 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x31fe1b13 kill_pid -EXPORT_SYMBOL vmlinux 0x321e7622 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x3226b5c8 nobh_write_end -EXPORT_SYMBOL vmlinux 0x322afc79 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x324b3877 up -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x325e4815 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x32751233 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x327d0907 tso_build_data -EXPORT_SYMBOL vmlinux 0x327e0c55 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x3308a4f2 dquot_destroy -EXPORT_SYMBOL vmlinux 0x3318ef76 dev_driver_string -EXPORT_SYMBOL vmlinux 0x331c853d tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x3334c333 lwtunnel_input -EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x33454b0d get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x336133dd blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x33652799 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0x336e4d1d key_type_keyring -EXPORT_SYMBOL vmlinux 0x33785b93 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x3378fced kernel_write -EXPORT_SYMBOL vmlinux 0x337fba89 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x338e19fa register_qdisc -EXPORT_SYMBOL vmlinux 0x339c6cb2 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x33a0774b max8925_reg_read -EXPORT_SYMBOL vmlinux 0x33a7707b blk_free_tags -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33d21049 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0x33e0311a phy_init_eee -EXPORT_SYMBOL vmlinux 0x33e2eb06 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x33f0511e netif_receive_skb -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f0b626 page_readlink -EXPORT_SYMBOL vmlinux 0x33f989ca of_get_next_parent -EXPORT_SYMBOL vmlinux 0x33fa326d simple_open -EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x344521cf nvm_dev_factory -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x3467254b page_symlink -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x348b3744 input_open_device -EXPORT_SYMBOL vmlinux 0x34928f8e eth_gro_complete -EXPORT_SYMBOL vmlinux 0x349a3027 sk_net_capable -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x349d9fa2 load_nls_default -EXPORT_SYMBOL vmlinux 0x34e36b91 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x34ebf8cf nonseekable_open -EXPORT_SYMBOL vmlinux 0x34ed0493 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x34eef9d1 of_phy_connect -EXPORT_SYMBOL vmlinux 0x34ef873f inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f72bf5 bio_integrity_free -EXPORT_SYMBOL vmlinux 0x350afcd4 udp_poll -EXPORT_SYMBOL vmlinux 0x35115362 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x35447ed2 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x35450978 inet_accept -EXPORT_SYMBOL vmlinux 0x3550ed11 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x356baf58 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x356fb26c netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x35870145 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x3590d9e4 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x3599231b blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x35a673b2 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35c0fb26 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x35e4d29d mmc_flush_cache -EXPORT_SYMBOL vmlinux 0x35efb599 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x360f8f8a __cond_resched_lock -EXPORT_SYMBOL vmlinux 0x360ff19f down -EXPORT_SYMBOL vmlinux 0x3612f39b __skb_get_hash -EXPORT_SYMBOL vmlinux 0x362a7b33 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x364d2b35 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x366b9161 param_set_charp -EXPORT_SYMBOL vmlinux 0x3676ed0c netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x367f6f33 scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0x3682054c vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x3687d45c mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x36ba3687 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36d3b27a input_register_handler -EXPORT_SYMBOL vmlinux 0x370f9850 efi -EXPORT_SYMBOL vmlinux 0x3715403c tcp_shutdown -EXPORT_SYMBOL vmlinux 0x372d5dd5 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374db27f input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x3750b9dd dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0x375babbd pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0x37750e4c nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x378a05eb inode_init_owner -EXPORT_SYMBOL vmlinux 0x37a03830 dmam_release_declared_memory -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37ea3a83 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x37ec7582 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x37fc93b4 thaw_super -EXPORT_SYMBOL vmlinux 0x380ee87a abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0x3818d75a kdb_current_task -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x38233b0a phy_stop -EXPORT_SYMBOL vmlinux 0x382e7421 should_remove_suid -EXPORT_SYMBOL vmlinux 0x3873f586 swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38da68ed inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x3905a0a6 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x3905fa17 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x390cb871 sk_free -EXPORT_SYMBOL vmlinux 0x39327445 security_path_rename -EXPORT_SYMBOL vmlinux 0x3935d4f2 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x39693e73 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x39768f60 input_unregister_device -EXPORT_SYMBOL vmlinux 0x39919cc3 fb_set_var -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39b575de dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x39ebbf49 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x3a166d14 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x3a2d3055 skb_make_writable -EXPORT_SYMBOL vmlinux 0x3a3bdf8e inet6_add_offload -EXPORT_SYMBOL vmlinux 0x3a5c2d94 dev_deactivate -EXPORT_SYMBOL vmlinux 0x3a602689 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x3a617da7 bdev_read_only -EXPORT_SYMBOL vmlinux 0x3a66f929 param_get_charp -EXPORT_SYMBOL vmlinux 0x3a7ff72f sock_create_lite -EXPORT_SYMBOL vmlinux 0x3a929b8b get_thermal_instance -EXPORT_SYMBOL vmlinux 0x3a975923 up_write -EXPORT_SYMBOL vmlinux 0x3a9ad70c find_vma -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3a9c1336 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x3a9cc301 d_lookup -EXPORT_SYMBOL vmlinux 0x3aa0ab46 scsi_execute -EXPORT_SYMBOL vmlinux 0x3aaf109c inet6_del_offload -EXPORT_SYMBOL vmlinux 0x3aafdf28 param_set_copystring -EXPORT_SYMBOL vmlinux 0x3ab41b25 __copy_in_user -EXPORT_SYMBOL vmlinux 0x3ac1209e dm_kobject_release -EXPORT_SYMBOL vmlinux 0x3aeaed27 vfs_read -EXPORT_SYMBOL vmlinux 0x3af356e6 dev_get_flags -EXPORT_SYMBOL vmlinux 0x3b300948 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x3b54f5e5 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x3b5c5448 abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b667bb9 __free_pages -EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x3b862a12 release_sock -EXPORT_SYMBOL vmlinux 0x3bf092c6 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x3c00ca46 pnp_is_active -EXPORT_SYMBOL vmlinux 0x3c24ec3f __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x3c2c504f ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x3c5d729b phy_detach -EXPORT_SYMBOL vmlinux 0x3c767b3b pnp_request_card_device -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c873cd0 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x3c88318a uart_resume_port -EXPORT_SYMBOL vmlinux 0x3c9b9b19 abx500_remove_ops -EXPORT_SYMBOL vmlinux 0x3ca08957 compat_tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x3cc0f305 simple_unlink -EXPORT_SYMBOL vmlinux 0x3cdf5e60 dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cf1107d udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x3cfae893 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x3d093081 __percpu_counter_add -EXPORT_SYMBOL vmlinux 0x3d202708 cdev_alloc -EXPORT_SYMBOL vmlinux 0x3d216d43 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x3d2e394d simple_transaction_read -EXPORT_SYMBOL vmlinux 0x3d6617cb down_write_trylock -EXPORT_SYMBOL vmlinux 0x3d84bbbb dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x3d88aada ppp_input_error -EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page -EXPORT_SYMBOL vmlinux 0x3dab4885 scsi_host_set_state -EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x3dc8d095 phy_find_first -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3df5eba7 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x3df8d990 md_cluster_mod -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3dfec28c seq_path -EXPORT_SYMBOL vmlinux 0x3e045761 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x3e145410 __init_rwsem -EXPORT_SYMBOL vmlinux 0x3e1d3345 on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x3e29cc62 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x3e40f43a napi_get_frags -EXPORT_SYMBOL vmlinux 0x3e4a11a7 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x3e4e2ebc of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x3e585424 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x3e5f0db1 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x3e65b373 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x3e6f361f bio_endio -EXPORT_SYMBOL vmlinux 0x3e7b3a63 mdio_bus_type -EXPORT_SYMBOL vmlinux 0x3e8b8d00 __blk_run_queue -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get -EXPORT_SYMBOL vmlinux 0x3ea7c9aa jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x3ebb4814 __sock_create -EXPORT_SYMBOL vmlinux 0x3ed4041c nf_unregister_hook -EXPORT_SYMBOL vmlinux 0x3f113d71 inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0x3f150024 __kfree_skb -EXPORT_SYMBOL vmlinux 0x3f369644 param_array_ops -EXPORT_SYMBOL vmlinux 0x3f377205 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f45aff6 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x3f54f712 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x3faaee6b free_buffer_head -EXPORT_SYMBOL vmlinux 0x3fccdc32 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x3fe1e081 skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0x3fe24aec skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fe600b9 kill_fasync -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x40018653 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x4005f1dc free_task -EXPORT_SYMBOL vmlinux 0x40097573 dev_mc_add -EXPORT_SYMBOL vmlinux 0x4011b71a input_get_keycode -EXPORT_SYMBOL vmlinux 0x401a51f4 bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x4034cc43 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev -EXPORT_SYMBOL vmlinux 0x403e20c4 of_get_named_gpio_flags -EXPORT_SYMBOL vmlinux 0x40447660 generic_setxattr -EXPORT_SYMBOL vmlinux 0x404bedf1 xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x4058367a bdi_init -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b4cfdd scm_fp_dup -EXPORT_SYMBOL vmlinux 0x40bd07a6 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c64ef1 set_create_files_as -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40dfab33 km_policy_expired -EXPORT_SYMBOL vmlinux 0x40edf978 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x4105fac9 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x4107b6e2 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x410f4bb7 __irq_regs -EXPORT_SYMBOL vmlinux 0x41204efc netdev_state_change -EXPORT_SYMBOL vmlinux 0x41301aed dquot_commit_info -EXPORT_SYMBOL vmlinux 0x41345a4b __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414907f3 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x41494563 ip_options_compile -EXPORT_SYMBOL vmlinux 0x41507ac6 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x4158ffeb jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x416570ad pci_release_regions -EXPORT_SYMBOL vmlinux 0x417c5102 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418af655 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x419079df ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x419a3bf2 generic_permission -EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x41a9b68a xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x41ab6cae scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x41ad8807 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x41c89bb9 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x41d4fc36 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x41e168e1 consume_skb -EXPORT_SYMBOL vmlinux 0x41ffb6c1 scsi_print_result -EXPORT_SYMBOL vmlinux 0x4206e421 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x4231ac20 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen -EXPORT_SYMBOL vmlinux 0x4235bf50 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x42492fc5 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x424d25be of_dev_put -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4261d483 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x426a8ac5 cpu_active_mask -EXPORT_SYMBOL vmlinux 0x427d8b75 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x428deca6 security_path_mknod -EXPORT_SYMBOL vmlinux 0x42986ed6 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42a50a17 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x42ae5af0 dqstats -EXPORT_SYMBOL vmlinux 0x42b513fd xfrm_register_km -EXPORT_SYMBOL vmlinux 0x42bed478 padata_do_serial -EXPORT_SYMBOL vmlinux 0x42c5e515 param_ops_charp -EXPORT_SYMBOL vmlinux 0x42dcbcb5 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x42e0ee13 blk_end_request_all -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x433c5b95 dm_put_device -EXPORT_SYMBOL vmlinux 0x43454c5d blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x436a0097 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x436b5db1 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x4398763a delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x43c05757 nd_device_register -EXPORT_SYMBOL vmlinux 0x43d98e85 ns_capable -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x44081a4b security_mmap_file -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x441ca285 scsi_host_get -EXPORT_SYMBOL vmlinux 0x444e0ad1 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x444e0e2f alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x4463bc8f dev_load -EXPORT_SYMBOL vmlinux 0x446902ca ether_setup -EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup -EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x449d1ca8 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x44a37e36 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x44a81d5f acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44be5e6b sg_miter_next -EXPORT_SYMBOL vmlinux 0x44c1aeb8 skb_tx_error -EXPORT_SYMBOL vmlinux 0x44db61ae get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x44e09826 simple_follow_link -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x450908c0 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x4515a98f simple_lookup -EXPORT_SYMBOL vmlinux 0x451a366f scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x451ed034 pipe_lock -EXPORT_SYMBOL vmlinux 0x4528d6fc tso_start -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x45746687 sync_inode -EXPORT_SYMBOL vmlinux 0x4576a806 pcie_get_mps -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457a8339 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45b27cd6 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x45b33909 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x45c0f3d8 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x45c2329c unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x45f1e873 skb_clone -EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x461d376d __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x462c660f proc_dointvec -EXPORT_SYMBOL vmlinux 0x4638a108 force_sig -EXPORT_SYMBOL vmlinux 0x46462fc0 simple_statfs -EXPORT_SYMBOL vmlinux 0x4646a1a1 gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x46665cdd mutex_lock -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x469b9a41 set_page_dirty -EXPORT_SYMBOL vmlinux 0x469e1ff1 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x46afb265 read_cache_page -EXPORT_SYMBOL vmlinux 0x46b3f54a param_set_int -EXPORT_SYMBOL vmlinux 0x46b7f5fd dma_alloc_from_coherent -EXPORT_SYMBOL vmlinux 0x46bb2ef2 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46e10302 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x470c2ebb iov_iter_npages -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x474f0395 dev_alert -EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x4761aa7c pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x4765c2fc mmc_can_erase -EXPORT_SYMBOL vmlinux 0x4782f151 __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x47b8a597 tcp_disconnect -EXPORT_SYMBOL vmlinux 0x47c966d7 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x47ecec86 xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0x47fa92cf jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x4822a9c8 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0x4829a47e memcpy -EXPORT_SYMBOL vmlinux 0x482decda of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x48638875 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x486691b0 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x48708a93 node_data -EXPORT_SYMBOL vmlinux 0x488e5ec3 d_splice_alias -EXPORT_SYMBOL vmlinux 0x489f893d sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x48a66368 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48cd2ef4 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x48d36929 acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0x48df822c inetdev_by_index -EXPORT_SYMBOL vmlinux 0x48f2f15d xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x48f7b341 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4931955d devm_release_resource -EXPORT_SYMBOL vmlinux 0x494de405 phy_start_interrupts -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x496a669a blk_end_request -EXPORT_SYMBOL vmlinux 0x49706c6f vga_get -EXPORT_SYMBOL vmlinux 0x49737c18 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x49930938 idr_replace -EXPORT_SYMBOL vmlinux 0x49a9585e dcb_getapp -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49e4dede pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x49e59ef4 md_error -EXPORT_SYMBOL vmlinux 0x49e6dfad inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a09b319 tcp_poll -EXPORT_SYMBOL vmlinux 0x4a2ad781 reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0x4a32551b tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x4a3c0164 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x4a40c05e iterate_mounts -EXPORT_SYMBOL vmlinux 0x4a47c348 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x4a559419 down_read_trylock -EXPORT_SYMBOL vmlinux 0x4a6593dd __d_drop -EXPORT_SYMBOL vmlinux 0x4a7ef7c1 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x4aa24faa dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4acd187d dquot_release -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4ad817bc __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x4ade9174 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x4ae60802 simple_getattr -EXPORT_SYMBOL vmlinux 0x4afa7ce2 acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0x4afb9cbb vga_client_register -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b075463 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x4b0f6c37 clk_register_clkdevs -EXPORT_SYMBOL vmlinux 0x4b12badb dev_activate -EXPORT_SYMBOL vmlinux 0x4b369ac9 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x4b5d4ecb __kernel_write -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b939bcb pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x4b9bae6f nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x4b9bd599 tty_hangup -EXPORT_SYMBOL vmlinux 0x4ba678fe tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bbc3097 generic_listxattr -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c489be3 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x4c5b7b64 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x4c6db19e ps2_init -EXPORT_SYMBOL vmlinux 0x4c6f9ef3 test_and_change_bit -EXPORT_SYMBOL vmlinux 0x4c798420 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x4c7f937f tcp_prot -EXPORT_SYMBOL vmlinux 0x4c833f9e __blk_end_request -EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf -EXPORT_SYMBOL vmlinux 0x4ccb992f first_ec -EXPORT_SYMBOL vmlinux 0x4cd7bc79 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x4cdb0a2c tty_port_hangup -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4cdfea47 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x4cea1ed0 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x4cfd476e vme_slot_num -EXPORT_SYMBOL vmlinux 0x4cfde270 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x4d023fe9 generic_setlease -EXPORT_SYMBOL vmlinux 0x4d08db55 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x4d0af15e search_binary_handler -EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d2e106b input_close_device -EXPORT_SYMBOL vmlinux 0x4d40101a msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0x4d4ed98d blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x4d5130a2 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x4d5db873 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x4d6aecd2 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x4d91e400 vfs_getattr -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9fbf4e tty_check_change -EXPORT_SYMBOL vmlinux 0x4dab000f swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x4db3146f generic_end_io_acct -EXPORT_SYMBOL vmlinux 0x4dbe9057 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4de6199c unregister_console -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4df2b4db blk_get_request -EXPORT_SYMBOL vmlinux 0x4df3152d jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x4df8b45a bdi_register_owner -EXPORT_SYMBOL vmlinux 0x4e00ae1c mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x4e2b0225 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x4e31a08c dquot_initialize -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e4fc29d pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x4e5def46 __frontswap_store -EXPORT_SYMBOL vmlinux 0x4e5e49ea scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x4e5fde2a tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x4e62fcf8 acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e74f0f5 do_SAK -EXPORT_SYMBOL vmlinux 0x4e8d95cc __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x4e921b29 tty_port_close -EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum -EXPORT_SYMBOL vmlinux 0x4ebff823 tcp_check_req -EXPORT_SYMBOL vmlinux 0x4ee4c69d swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0x4ee5d942 simple_setattr -EXPORT_SYMBOL vmlinux 0x4eea8568 blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x4f0f34d6 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x4f1c57d6 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x4f4cd58b copy_strings_kernel -EXPORT_SYMBOL vmlinux 0x4f58c096 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x4f660990 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read -EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve -EXPORT_SYMBOL vmlinux 0x4f7a4827 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x4f827934 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x4fbc3b06 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x4fea8c1b __break_lease -EXPORT_SYMBOL vmlinux 0x4ffa80f1 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x502d2068 set_cached_acl -EXPORT_SYMBOL vmlinux 0x503463c2 dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x50511e41 pagevec_lookup -EXPORT_SYMBOL vmlinux 0x50542d11 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x50627174 seq_escape -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x5086f531 make_bad_inode -EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method -EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch -EXPORT_SYMBOL vmlinux 0x50adefb7 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50f9b5ab kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x510162b4 keyring_clear -EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x51355b30 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x513941c0 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x5164d248 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x516e223f register_md_personality -EXPORT_SYMBOL vmlinux 0x5172dc07 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x51749fc8 _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x51782d5b md_register_thread -EXPORT_SYMBOL vmlinux 0x51817d56 tty_do_resize -EXPORT_SYMBOL vmlinux 0x51ab6910 set_security_override -EXPORT_SYMBOL vmlinux 0x51c46441 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51d4c992 skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid -EXPORT_SYMBOL vmlinux 0x51e7c552 phy_start -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data -EXPORT_SYMBOL vmlinux 0x52130046 acpi_check_address_range -EXPORT_SYMBOL vmlinux 0x521773c1 generic_readlink -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x5239ce3b ___ratelimit -EXPORT_SYMBOL vmlinux 0x52522cd5 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x525248c0 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x5257da28 kfree_put_link -EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0x5264f1aa phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0x52920e9a genphy_suspend -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52c32450 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x52e54430 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x52ec184f eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x52f9b14f vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x5302b8b2 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x530a870d vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x532c102d __skb_tx_hash -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x534ed45e inet6_getname -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x536bba1e compat_nf_setsockopt -EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x5372ca1a dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin -EXPORT_SYMBOL vmlinux 0x537c01bd jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x53979cd7 tcp_seq_open -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x53b4cd97 d_make_root -EXPORT_SYMBOL vmlinux 0x53e876f7 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x53e9ec5d dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x53eccdf2 inet_offloads -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x5425f2ac __frontswap_test -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x5448d916 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register -EXPORT_SYMBOL vmlinux 0x54579619 seq_read -EXPORT_SYMBOL vmlinux 0x545b1989 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x5460794b phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x5467b15c dev_set_mtu -EXPORT_SYMBOL vmlinux 0x54737ce1 rt6_lookup -EXPORT_SYMBOL vmlinux 0x549faaa9 security_path_rmdir -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54d4bded ida_init -EXPORT_SYMBOL vmlinux 0x54d5e356 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x54d7d71e sock_wmalloc -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x550f139f unlock_page -EXPORT_SYMBOL vmlinux 0x551577b1 current_fs_time -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x55467f96 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x55516d0b free_netdev -EXPORT_SYMBOL vmlinux 0x5559db7e ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x556112ae fence_signal_locked -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x558cdc58 pnp_device_detach -EXPORT_SYMBOL vmlinux 0x559268b2 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x559cdf15 abx500_register_ops -EXPORT_SYMBOL vmlinux 0x55a7a8b1 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x55b19164 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x55c16c5e __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55d96bb1 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node -EXPORT_SYMBOL vmlinux 0x56054634 loop_backing_file -EXPORT_SYMBOL vmlinux 0x562f0f22 ida_simple_remove -EXPORT_SYMBOL vmlinux 0x56342ce1 down_timeout -EXPORT_SYMBOL vmlinux 0x5634596c tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x564937b4 led_update_brightness -EXPORT_SYMBOL vmlinux 0x565bd8ca param_set_long -EXPORT_SYMBOL vmlinux 0x567856e7 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x56903e7d xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x56a177c4 blkdev_get -EXPORT_SYMBOL vmlinux 0x56b22ae3 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56d060cf sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x56dccb7d fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x56e27f00 file_ns_capable -EXPORT_SYMBOL vmlinux 0x56fdc9e7 skb_store_bits -EXPORT_SYMBOL vmlinux 0x5717dc9a tcp_close -EXPORT_SYMBOL vmlinux 0x5720053a twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x572d0104 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x5753b151 scsi_unregister -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x576973c0 sock_i_ino -EXPORT_SYMBOL vmlinux 0x57702579 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x5793446d blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x579a9b0d vfs_rmdir -EXPORT_SYMBOL vmlinux 0x579c3aff of_get_parent -EXPORT_SYMBOL vmlinux 0x57a0899a acl_by_type -EXPORT_SYMBOL vmlinux 0x57a8792d walk_stackframe -EXPORT_SYMBOL vmlinux 0x57bf39ca neigh_table_init -EXPORT_SYMBOL vmlinux 0x57f40cb8 free_page_put_link -EXPORT_SYMBOL vmlinux 0x57fc00c2 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x57fe14dd fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x581baca0 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x581bb64d lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58302066 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x5831c24d iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x58399d9e xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x584cd0cd sk_wait_data -EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem -EXPORT_SYMBOL vmlinux 0x586e26be request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x58741a61 of_device_is_available -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x5892ce44 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x58a4a437 lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58d75f2d finish_open -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x590f10e4 nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0x591a0b59 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x592be593 blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0x594d310d flush_old_exec -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59a2d3e5 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59c63889 bio_add_page -EXPORT_SYMBOL vmlinux 0x59d46e16 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x59d7a74e bio_clone_fast -EXPORT_SYMBOL vmlinux 0x59fbe9ce mmc_can_discard -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a174f47 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x5a22d60b sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x5a277d6b mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x5a471972 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x5a76b610 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x5a7aa4b1 mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a9c9cf3 lg_lock_init -EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5aa23dc3 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x5aa8b059 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x5ab2f448 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0x5ac31e77 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x5ace3709 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x5ace77ca posix_unblock_lock -EXPORT_SYMBOL vmlinux 0x5af5e2d7 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b0e498b account_page_redirty -EXPORT_SYMBOL vmlinux 0x5b0fddd2 kfree_skb -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b68672a sget_userns -EXPORT_SYMBOL vmlinux 0x5b7d9f91 tcp_ioctl -EXPORT_SYMBOL vmlinux 0x5b9c808a acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0x5b9ee473 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x5bb1b13f from_kgid_munged -EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit -EXPORT_SYMBOL vmlinux 0x5bd29870 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x5be4c28d sock_efree -EXPORT_SYMBOL vmlinux 0x5beec4d3 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT -EXPORT_SYMBOL vmlinux 0x5c157375 submit_bio -EXPORT_SYMBOL vmlinux 0x5c34f255 mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x5c3fecff unregister_binfmt -EXPORT_SYMBOL vmlinux 0x5c8d2a09 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x5c9fff76 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x5ca8813f mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x5cc5b8c6 devm_ioremap -EXPORT_SYMBOL vmlinux 0x5ccf66ca swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0x5cd885d5 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0x5cdcbade blk_recount_segments -EXPORT_SYMBOL vmlinux 0x5ce25416 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d1010a4 fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio -EXPORT_SYMBOL vmlinux 0x5d141841 poll_freewait -EXPORT_SYMBOL vmlinux 0x5d227bdf generic_writepages -EXPORT_SYMBOL vmlinux 0x5d32bcda of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x5d3979fd acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0x5d41766b of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d55bece jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved -EXPORT_SYMBOL vmlinux 0x5d8e60db register_filesystem -EXPORT_SYMBOL vmlinux 0x5d92501a devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x5d99f291 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x5da12a4d dentry_path_raw -EXPORT_SYMBOL vmlinux 0x5de2d3c8 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x5de40f50 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x5de7240b dm_io -EXPORT_SYMBOL vmlinux 0x5df7eef4 dquot_acquire -EXPORT_SYMBOL vmlinux 0x5e2783c0 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x5e2914b0 lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x5e2d34f1 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x5e39da61 pci_iomap -EXPORT_SYMBOL vmlinux 0x5e61a344 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x5e61e9a4 dev_crit -EXPORT_SYMBOL vmlinux 0x5e639648 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5e97243a devm_iounmap -EXPORT_SYMBOL vmlinux 0x5e9fc5a7 dump_align -EXPORT_SYMBOL vmlinux 0x5ea79efe fence_default_wait -EXPORT_SYMBOL vmlinux 0x5eaf7ccd sync_filesystem -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec30466 of_clk_get -EXPORT_SYMBOL vmlinux 0x5ecf6e5c tty_port_close_start -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5edfbc93 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x5eef1cf4 vc_resize -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f172abc phy_resume -EXPORT_SYMBOL vmlinux 0x5f1a2c52 mdiobus_read -EXPORT_SYMBOL vmlinux 0x5f55145f request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x5f5a156b nf_hook_slow -EXPORT_SYMBOL vmlinux 0x5f65f9f9 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x5f7171d8 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x5f72e8d0 blk_queue_split -EXPORT_SYMBOL vmlinux 0x5f793de0 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0x5f79b9a4 rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0x5fa02600 fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x5fa37f51 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x5fbc49e0 iget_locked -EXPORT_SYMBOL vmlinux 0x5fcdbd07 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x5fd301e1 dcache_readdir -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5ff85a0b scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x5ffcab4e pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60439055 free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x60509fb6 dev_add_pack -EXPORT_SYMBOL vmlinux 0x6051534d bdget_disk -EXPORT_SYMBOL vmlinux 0x606603c6 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x607173f8 of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0x60851cd4 __sb_start_write -EXPORT_SYMBOL vmlinux 0x608be832 tcf_hash_create -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x60918007 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x609f5b35 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x60b102fd vfs_unlink -EXPORT_SYMBOL vmlinux 0x60c81df3 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x60cfc5af dev_uc_flush -EXPORT_SYMBOL vmlinux 0x60dd09e2 security_path_chown -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x60e7a330 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x60e8fc1f ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x60fddac0 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x610f8846 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x610ff7a7 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x611a3e8a led_blink_set -EXPORT_SYMBOL vmlinux 0x611d0dbb netdev_emerg -EXPORT_SYMBOL vmlinux 0x611fd0ad blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x613066c2 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x61520529 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0x61599075 softnet_data -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x618bf215 key_alloc -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61cbb4a7 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x61df81e8 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x61fea9a6 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x622ae334 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x622fcf0c call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x625f9c62 md_update_sb -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62748e70 acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62aa27d7 param_set_byte -EXPORT_SYMBOL vmlinux 0x62c73ba2 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x62e3fef3 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x63033bd2 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x631673fa mount_pseudo -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x632ec01a ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x63528915 mapping_tagged -EXPORT_SYMBOL vmlinux 0x6356ffd7 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x635c69eb mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x6369a0d5 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x63758c92 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x638fcd17 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f9ebeb vfs_readf -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x6408d782 lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x64107392 nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x641464c0 inet_add_offload -EXPORT_SYMBOL vmlinux 0x64361eea __napi_complete -EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0x64526361 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x647948dd kern_path -EXPORT_SYMBOL vmlinux 0x647a64b3 pnp_register_driver -EXPORT_SYMBOL vmlinux 0x647ef7b6 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x6480abd2 inet_del_offload -EXPORT_SYMBOL vmlinux 0x648ff040 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x649849ad request_key_async -EXPORT_SYMBOL vmlinux 0x6498689d __ip_dev_find -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64b27394 serio_rescan -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64eac6cd __f_setown -EXPORT_SYMBOL vmlinux 0x64f60499 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x64f85019 scsi_device_put -EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0x64ff5def xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x6518e2e9 phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x6529b036 __devm_release_region -EXPORT_SYMBOL vmlinux 0x652bb235 alloc_pages_current -EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x65345022 __wake_up -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x654cd8c3 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x6550ea5f tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x657d4cdd fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x659e488f param_set_bint -EXPORT_SYMBOL vmlinux 0x65c17ceb phy_print_status -EXPORT_SYMBOL vmlinux 0x65c85af2 dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0x65cdecbc redraw_screen -EXPORT_SYMBOL vmlinux 0x65d9e861 zero_fill_bio -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65d9fa87 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65dd2f68 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x65de4c9a pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65e259be dev_open -EXPORT_SYMBOL vmlinux 0x65ec6851 sock_edemux -EXPORT_SYMBOL vmlinux 0x65ee4a5e pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x65f45c4f end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x660e26e4 md_check_recovery -EXPORT_SYMBOL vmlinux 0x660f02e4 unlock_buffer -EXPORT_SYMBOL vmlinux 0x662587d7 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x6631c5ab twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x6636f6f1 inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0x663c3613 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0x66504ba6 bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x66609108 nf_register_hooks -EXPORT_SYMBOL vmlinux 0x6677d083 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x667ebdde sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x66a1557d put_filp -EXPORT_SYMBOL vmlinux 0x66b6f698 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x66bcdebd __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x66c79cb9 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x66ce4ba2 fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0x66e0c19b inc_nlink -EXPORT_SYMBOL vmlinux 0x670b9b20 netlink_unicast -EXPORT_SYMBOL vmlinux 0x67139447 pci_set_master -EXPORT_SYMBOL vmlinux 0x6721232c dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x6723482b ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x6723d9f1 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x67276286 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x6733ba05 of_phy_find_device -EXPORT_SYMBOL vmlinux 0x676f569b remove_proc_entry -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x6777c598 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0x678d6aee acpi_device_hid -EXPORT_SYMBOL vmlinux 0x67964c83 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x67b0b33d empty_zero_page -EXPORT_SYMBOL vmlinux 0x67b1d3a1 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b42562 ip6_xmit -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67d5a76b ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x67f23e3e pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x67f903a7 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x680adbda gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x68137318 input_set_keycode -EXPORT_SYMBOL vmlinux 0x681b60ab generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x684e88ff console_stop -EXPORT_SYMBOL vmlinux 0x6852e55e __dax_fault -EXPORT_SYMBOL vmlinux 0x6860a065 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x68980085 __ps2_command -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68c3545b kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x68d72d56 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x68dd2f2a vme_bus_type -EXPORT_SYMBOL vmlinux 0x68f302cf generic_file_mmap -EXPORT_SYMBOL vmlinux 0x690768fb tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x690d1625 inet_bind -EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x692c7dc6 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x694cfe67 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x694f5601 commit_creds -EXPORT_SYMBOL vmlinux 0x696be927 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x69867882 gen_pool_create -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69c17d09 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x69ec6127 udp_prot -EXPORT_SYMBOL vmlinux 0x69fb5832 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x69fbc0a2 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0x69fd342b blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x6a0301b4 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x6a037720 padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a1e44d8 dev_printk -EXPORT_SYMBOL vmlinux 0x6a22fdd1 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x6a38ab47 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x6a5e0887 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a60277d acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x6a63c59d seq_dentry -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a7f02b0 neigh_xmit -EXPORT_SYMBOL vmlinux 0x6a8203e4 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x6a9e82bc skb_vlan_push -EXPORT_SYMBOL vmlinux 0x6ab0d188 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x6abbcfe6 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x6abda609 write_cache_pages -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6ad65840 vc_cons -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6adebab3 user_path_create -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af8b1ea pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b18987a mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b1b8754 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x6b1f7105 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x6b1f7a3f vfs_mkdir -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b51e8c8 km_is_alive -EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6b80d3fe scsi_dma_map -EXPORT_SYMBOL vmlinux 0x6b88a1ed swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0x6ba062ee __check_sticky -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc58eed prepare_creds -EXPORT_SYMBOL vmlinux 0x6bc5d6c0 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x6bc66208 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x6bc6ba2f __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x6bcbe1df dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x6bd31745 gnttab_free_pages -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6c05014d eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x6c06c01e blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c0b7107 mount_ns -EXPORT_SYMBOL vmlinux 0x6c0ecb93 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x6c285b4c of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x6c2cdc47 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c640c95 padata_start -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c779f19 pcibus_to_node -EXPORT_SYMBOL vmlinux 0x6cab9d5d blk_peek_request -EXPORT_SYMBOL vmlinux 0x6cb0d5ea console_start -EXPORT_SYMBOL vmlinux 0x6cd06d09 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x6cd1ed35 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x6ce372c4 fb_blank -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d116a32 clear_inode -EXPORT_SYMBOL vmlinux 0x6d145b07 param_ops_bool -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d36a515 nvm_end_io -EXPORT_SYMBOL vmlinux 0x6d42f929 noop_fsync -EXPORT_SYMBOL vmlinux 0x6d46adb7 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x6d6a392e proc_set_user -EXPORT_SYMBOL vmlinux 0x6d7e002e proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x6d9253ad cont_write_begin -EXPORT_SYMBOL vmlinux 0x6db1e9d0 cap_mmap_file -EXPORT_SYMBOL vmlinux 0x6dd0d049 fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x6dd1d30f mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x6dd7a74a acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6def7bd7 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df7f520 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x6dfed984 udp_proc_register -EXPORT_SYMBOL vmlinux 0x6e00d104 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x6e0e6f00 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x6e1724d0 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x6e18dbe6 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x6e29cf2e migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x6e5573c8 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x6e66b2fb ppp_register_channel -EXPORT_SYMBOL vmlinux 0x6e6b9135 mmc_put_card -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7b0832 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x6e805810 fence_init -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea76843 ida_get_new_above -EXPORT_SYMBOL vmlinux 0x6ea9676d mii_nway_restart -EXPORT_SYMBOL vmlinux 0x6eb7ff23 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x6edd1b28 of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x6f0d9953 iterate_fd -EXPORT_SYMBOL vmlinux 0x6f1174c5 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f26cb7b idr_get_next -EXPORT_SYMBOL vmlinux 0x6f305e73 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x6f44c8ff dev_get_by_name -EXPORT_SYMBOL vmlinux 0x6f456f73 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x6f50a997 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x6f5ec7ec idr_init -EXPORT_SYMBOL vmlinux 0x6f696e74 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x6f74bdd7 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x6f74dcc1 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x6f84e37e __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6fa84fd5 netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write -EXPORT_SYMBOL vmlinux 0x7021a064 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x702e9ece xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x7033394e __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x703b7453 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x70453eb8 tcf_hash_check -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x708ac8d0 netif_device_attach -EXPORT_SYMBOL vmlinux 0x70921cb7 ip6_frag_match -EXPORT_SYMBOL vmlinux 0x70a57a3a input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x70b70d51 register_console -EXPORT_SYMBOL vmlinux 0x70d0647f mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x70de1c90 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x70dec7bd clkdev_add -EXPORT_SYMBOL vmlinux 0x70f43123 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x70fc9cd6 xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0x71094fc7 pci_dev_get -EXPORT_SYMBOL vmlinux 0x71129f6f setup_arg_pages -EXPORT_SYMBOL vmlinux 0x711b3381 do_truncate -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x71320bef blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x714a8384 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x715527a2 d_find_any_alias -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x717e62b2 i2c_master_recv -EXPORT_SYMBOL vmlinux 0x71952b83 i2c_use_client -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71ab1827 d_genocide -EXPORT_SYMBOL vmlinux 0x71b0db00 lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x71c99005 bio_chain -EXPORT_SYMBOL vmlinux 0x71db3e7e dma_sync_wait -EXPORT_SYMBOL vmlinux 0x71ebdfa1 max8998_write_reg -EXPORT_SYMBOL vmlinux 0x71f2dbaa scsi_host_put -EXPORT_SYMBOL vmlinux 0x72048bb1 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x72081f04 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x7209e9b2 netpoll_setup -EXPORT_SYMBOL vmlinux 0x72148320 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x723d0a11 wake_up_process -EXPORT_SYMBOL vmlinux 0x725fd887 nla_append -EXPORT_SYMBOL vmlinux 0x72659f28 bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x7280426d ps2_begin_command -EXPORT_SYMBOL vmlinux 0x729053f6 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x72e1ea36 udplite_prot -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x73053f22 ip_defrag -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL vmlinux 0x73274efe vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x7338ad01 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x73407a4b of_iomap -EXPORT_SYMBOL vmlinux 0x7343a887 clkdev_drop -EXPORT_SYMBOL vmlinux 0x7348bcd5 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x736f5f89 inet_ioctl -EXPORT_SYMBOL vmlinux 0x737a8bf4 nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0x7389f161 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x73b15119 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x73b8a9d6 qdisc_list_add -EXPORT_SYMBOL vmlinux 0x73c59a1c mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x73e1ca5f pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x73e4c17d pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0x7404f23e read_dev_sector -EXPORT_SYMBOL vmlinux 0x740a842b of_cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x741608c3 cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x7427df50 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x743fc203 __vfs_write -EXPORT_SYMBOL vmlinux 0x744870fd devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x74624dcc scsi_init_io -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x74979666 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0x74a22f45 tty_devnum -EXPORT_SYMBOL vmlinux 0x74b42bba dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74ca0617 register_netdevice -EXPORT_SYMBOL vmlinux 0x74d72867 of_phy_attach -EXPORT_SYMBOL vmlinux 0x74e19d4a block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74ea4013 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x751d85f4 vme_register_driver -EXPORT_SYMBOL vmlinux 0x7525fa77 inode_init_always -EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x7554c495 kobject_del -EXPORT_SYMBOL vmlinux 0x755bb6ea netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x7569cd04 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x757344aa nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x75828b28 dst_alloc -EXPORT_SYMBOL vmlinux 0x75850d01 __vmalloc -EXPORT_SYMBOL vmlinux 0x758644d8 simple_dname -EXPORT_SYMBOL vmlinux 0x75a1ca35 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x75b8c7f0 mount_subtree -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75d01f05 textsearch_register -EXPORT_SYMBOL vmlinux 0x75eda31d bdi_destroy -EXPORT_SYMBOL vmlinux 0x75eff7fe set_disk_ro -EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x76264aab __nlmsg_put -EXPORT_SYMBOL vmlinux 0x762cfac0 blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x764130e4 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x7641d856 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x76536e9c inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x7656680f mount_single -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x766c886a eth_gro_receive -EXPORT_SYMBOL vmlinux 0x7672602e __mutex_init -EXPORT_SYMBOL vmlinux 0x767dd8fd acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0x768c4f57 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x76a10cbf locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x76a5b343 iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0x76d22bbb nf_setsockopt -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76e40c89 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x76f471b5 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0x7703adfc __secpath_destroy -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x771dc27e sock_no_getname -EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x77419d48 nvm_register -EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x7748196c pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x774ccd04 vfs_setpos -EXPORT_SYMBOL vmlinux 0x7753d28a dma_common_mmap -EXPORT_SYMBOL vmlinux 0x77651bd2 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x777c239e simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77a41be4 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x77b0d83b ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77f4148e neigh_app_ns -EXPORT_SYMBOL vmlinux 0x77f53abc acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x77f9c742 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x78432398 skb_checksum -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x787b8ce4 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x7891419d nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78c19a6d mempool_resize -EXPORT_SYMBOL vmlinux 0x78cb8e3c bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x78d494e9 amba_request_regions -EXPORT_SYMBOL vmlinux 0x78d4ea13 pci_bus_put -EXPORT_SYMBOL vmlinux 0x78dc39a7 inet_select_addr -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x79052f7e of_parse_phandle -EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method -EXPORT_SYMBOL vmlinux 0x79071849 of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0x793bc4fa pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x7951ca4f input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x79789939 open_exec -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x7996f6e4 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79a65951 mdiobus_free -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79c76aea devm_free_irq -EXPORT_SYMBOL vmlinux 0x79d56aad tty_set_operations -EXPORT_SYMBOL vmlinux 0x79d9d5a2 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x79da8fac phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x79e39aa8 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x7a27a55e devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a4e1555 mount_nodev -EXPORT_SYMBOL vmlinux 0x7a5187ea __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x7a548a95 node_states -EXPORT_SYMBOL vmlinux 0x7a64dace jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x7a66b6f1 blk_finish_request -EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a87e612 bitmap_unplug -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad3f002 md_done_sync -EXPORT_SYMBOL vmlinux 0x7aed0a70 devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0x7b0dd0eb fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0x7b110e84 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b2735d8 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc -EXPORT_SYMBOL vmlinux 0x7b3294de dump_page -EXPORT_SYMBOL vmlinux 0x7b377708 nf_reinject -EXPORT_SYMBOL vmlinux 0x7b537c84 pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0x7b6646bb _raw_read_lock -EXPORT_SYMBOL vmlinux 0x7b6d12cd scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x7b793521 simple_link -EXPORT_SYMBOL vmlinux 0x7b7fa2cc filp_open -EXPORT_SYMBOL vmlinux 0x7b809578 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x7b88d3f7 read_cache_pages -EXPORT_SYMBOL vmlinux 0x7b90c9d7 kmem_cache_free -EXPORT_SYMBOL vmlinux 0x7b924e2e downgrade_write -EXPORT_SYMBOL vmlinux 0x7b9c492d of_dev_get -EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x7bc2cee7 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x7be75ffc acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x7bf1f0aa mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x7c0009ea genphy_resume -EXPORT_SYMBOL vmlinux 0x7c024e89 block_invalidatepage -EXPORT_SYMBOL vmlinux 0x7c0900cf jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0x7c0cfad6 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc -EXPORT_SYMBOL vmlinux 0x7c2f4544 page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c6b81f3 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x7c7276ce sk_stream_error -EXPORT_SYMBOL vmlinux 0x7c77085d inode_init_once -EXPORT_SYMBOL vmlinux 0x7c78f77e gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7ca21a14 d_drop -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cd0885c blk_run_queue -EXPORT_SYMBOL vmlinux 0x7cd1351e is_nd_btt -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cfa2b06 __napi_schedule -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d369e9c scsi_register -EXPORT_SYMBOL vmlinux 0x7d402ee8 new_inode -EXPORT_SYMBOL vmlinux 0x7d483be9 netif_rx_ni -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d7d63df cpumask_next_and -EXPORT_SYMBOL vmlinux 0x7d805ebf nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port -EXPORT_SYMBOL vmlinux 0x7da9dc44 make_kuid -EXPORT_SYMBOL vmlinux 0x7db6dfec scsi_device_resume -EXPORT_SYMBOL vmlinux 0x7dbb11d4 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x7dc2351e noop_qdisc -EXPORT_SYMBOL vmlinux 0x7dc84548 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7dfb89c8 blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x7e2569f7 udp_set_csum -EXPORT_SYMBOL vmlinux 0x7e4740ad sock_register -EXPORT_SYMBOL vmlinux 0x7e541f1f seq_release -EXPORT_SYMBOL vmlinux 0x7e6d7a05 try_to_release_page -EXPORT_SYMBOL vmlinux 0x7e799ba1 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x7e9da777 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x7ebd4be4 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x7ee0c5ee generic_write_end -EXPORT_SYMBOL vmlinux 0x7ee25f19 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7eea4a72 skb_queue_head -EXPORT_SYMBOL vmlinux 0x7ef8a230 max8998_read_reg -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f150e16 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x7f4c7508 replace_mount_options -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f64b178 dev_emerg -EXPORT_SYMBOL vmlinux 0x7f653989 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x7f7b81e0 register_quota_format -EXPORT_SYMBOL vmlinux 0x7f8ca4cd audit_log_start -EXPORT_SYMBOL vmlinux 0x7fa0e6fa blk_put_request -EXPORT_SYMBOL vmlinux 0x7fa1023b tcf_em_register -EXPORT_SYMBOL vmlinux 0x7fa36945 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x7fc14db0 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x7fc791e1 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x802f01e2 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x803ab6fa read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x80411c52 mii_ethtool_sset -EXPORT_SYMBOL vmlinux 0x805cce21 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x80765e9a cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0x80793878 dm_get_device -EXPORT_SYMBOL vmlinux 0x807f3efb nf_log_unset -EXPORT_SYMBOL vmlinux 0x80874a3b send_sig -EXPORT_SYMBOL vmlinux 0x8095c9eb mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x809f76c4 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x80a479bf kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0x80a549d9 freeze_super -EXPORT_SYMBOL vmlinux 0x80af0de8 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x80c0925d xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d18119 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80d9f40a ___pskb_trim -EXPORT_SYMBOL vmlinux 0x80e59fcb ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x81052d78 __inode_permission -EXPORT_SYMBOL vmlinux 0x8139d878 to_nd_btt -EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x815084a0 nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x818a828f nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x81b1e17d sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81dddc56 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81f18628 of_node_get -EXPORT_SYMBOL vmlinux 0x81f9ba3a sock_no_mmap -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x82100734 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x8211145f blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0x8228af8d netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x823239c1 path_noexec -EXPORT_SYMBOL vmlinux 0x8243660b drop_super -EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x8247d189 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x82554935 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x826d3a85 bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x828b0cd9 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x828d73df devm_clk_get -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82d9a140 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x82da96b5 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x82e6200f __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x82edddcb __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x83046e8e i2c_register_driver -EXPORT_SYMBOL vmlinux 0x830c7387 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0x831a0654 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x833cc12f km_state_expired -EXPORT_SYMBOL vmlinux 0x833db204 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x83559ee2 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x835a4bba eth_header -EXPORT_SYMBOL vmlinux 0x837cf9fa dma_release_declared_memory -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83a1b2d0 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83bd5607 bio_copy_kern -EXPORT_SYMBOL vmlinux 0x83c525ce dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83f6a72c nvm_submit_io -EXPORT_SYMBOL vmlinux 0x83fa726e compat_sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x841b4443 write_inode_now -EXPORT_SYMBOL vmlinux 0x841f10f9 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x843e1b1e lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0x844215d5 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x8451c30f register_framebuffer -EXPORT_SYMBOL vmlinux 0x8455c697 devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0x84a3ce0e devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x84bd2216 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x84c369fb make_kgid -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x85061b76 _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x8514c501 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x857d2b91 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem -EXPORT_SYMBOL vmlinux 0x85a55424 copy_from_iter -EXPORT_SYMBOL vmlinux 0x85a786bf blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85b73fbe __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x85c1f99f kill_block_super -EXPORT_SYMBOL vmlinux 0x85d2d715 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x85d357b4 ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0x85df105f tcf_register_action -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e1846b tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f4e538 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x85f7c745 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x8618629e elevator_exit -EXPORT_SYMBOL vmlinux 0x863947ba tcp_splice_read -EXPORT_SYMBOL vmlinux 0x864aeda2 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x86593a28 amba_driver_unregister -EXPORT_SYMBOL vmlinux 0x8660aeb7 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x8666b885 dump_emit -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x8690a2db nobh_writepage -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86b8442e neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x86ba4428 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x86bef296 inode_permission -EXPORT_SYMBOL vmlinux 0x86cb16c4 fb_show_logo -EXPORT_SYMBOL vmlinux 0x86d67cab clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x86db1cf5 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x86ea4d38 complete_all -EXPORT_SYMBOL vmlinux 0x86f8d88c neigh_ifdown -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x870c6b5b generic_make_request -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x871f80b8 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x872150b5 put_cmsg -EXPORT_SYMBOL vmlinux 0x8729e089 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x872e69b5 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x872eddd5 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x874ab8e5 dev_uc_init -EXPORT_SYMBOL vmlinux 0x87538db0 tty_vhangup -EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write -EXPORT_SYMBOL vmlinux 0x87823e4a generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x87addd01 set_user_nice -EXPORT_SYMBOL vmlinux 0x87b527d3 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x87e896cd seq_printf -EXPORT_SYMBOL vmlinux 0x87eb69f5 irq_stat -EXPORT_SYMBOL vmlinux 0x87fea5e8 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x880f3a06 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0x88228d3d build_skb -EXPORT_SYMBOL vmlinux 0x882714c3 phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0x8831cf89 inet_shutdown -EXPORT_SYMBOL vmlinux 0x8832ff79 set_binfmt -EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x88982bf9 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x889e7dcf jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x88a14568 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x88b4e83b down_trylock -EXPORT_SYMBOL vmlinux 0x88bc362a loop_register_transfer -EXPORT_SYMBOL vmlinux 0x88c3e4b9 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x88ccb8a5 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x88cfbc43 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x88f859b8 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat -EXPORT_SYMBOL vmlinux 0x893a93a2 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x8947712c sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x898064be dcache_dir_close -EXPORT_SYMBOL vmlinux 0x8980d177 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x898c16c7 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x89aef98b mntget -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89b20059 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x89c5fe12 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x89ce7dfc netdev_info -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x89dd9d28 vfs_write -EXPORT_SYMBOL vmlinux 0x8a039069 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x8a19d6a1 of_device_register -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a27eb0a netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0x8a326774 tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a630fd5 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x8a69f5a2 key_invalidate -EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error -EXPORT_SYMBOL vmlinux 0x8a8ff904 release_firmware -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa400d1 netif_device_detach -EXPORT_SYMBOL vmlinux 0x8aa57c4f udp_table -EXPORT_SYMBOL vmlinux 0x8ab12261 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x8ac0bd28 dev_trans_start -EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put -EXPORT_SYMBOL vmlinux 0x8b113b03 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x8b142f2b tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0x8b1e9196 seq_file_path -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b3c7f40 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b484538 iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0x8b4a94ee bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b8e786a __neigh_event_send -EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8ba25203 account_page_dirtied -EXPORT_SYMBOL vmlinux 0x8bb04f3a sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x8bd0a3fd _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x8bd89f09 swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0x8bf400ae abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0x8c0127d0 nf_log_trace -EXPORT_SYMBOL vmlinux 0x8c1e3582 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x8c41fc0d jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x8c49db08 acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x8c4b372c jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c648e83 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x8ca09e76 dst_release -EXPORT_SYMBOL vmlinux 0x8ca3f348 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x8cb596ce inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x8cbe749c eth_header_cache -EXPORT_SYMBOL vmlinux 0x8cce0256 get_fs_type -EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8ce84955 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x8ceddcc4 add_disk -EXPORT_SYMBOL vmlinux 0x8cee8ee7 proc_set_size -EXPORT_SYMBOL vmlinux 0x8cf643b2 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x8cfad409 kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0x8d05fd12 single_open_size -EXPORT_SYMBOL vmlinux 0x8d168b2d rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x8d19d345 seq_write -EXPORT_SYMBOL vmlinux 0x8d231472 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x8d37374f md_unregister_thread -EXPORT_SYMBOL vmlinux 0x8d3a5cbe d_set_fallthru -EXPORT_SYMBOL vmlinux 0x8d3e36b9 __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x8d43a6d9 end_page_writeback -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d57fe84 __bread_gfp -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d753e5b clear_wb_congested -EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x8d957611 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x8d9bcb26 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface -EXPORT_SYMBOL vmlinux 0x8dbbe4dc vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8e01e12c i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x8e12c304 dev_addr_init -EXPORT_SYMBOL vmlinux 0x8e1a0517 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x8e1e6c11 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x8e3853a3 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0x8e3d380a dentry_open -EXPORT_SYMBOL vmlinux 0x8e40c792 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x8e453c03 blkdev_put -EXPORT_SYMBOL vmlinux 0x8e52026b generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x8e527bc9 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x8e58f3df rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0x8e612a43 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x8e6e8c8a iommu_get_dma_cookie -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e9a9b77 bio_reset -EXPORT_SYMBOL vmlinux 0x8ea8cbd9 kernel_bind -EXPORT_SYMBOL vmlinux 0x8ebaa876 lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0x8ec41d5f sock_no_connect -EXPORT_SYMBOL vmlinux 0x8ec9c9bc unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x8ecc2fe8 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x8ed7ccbc fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x8ed9e557 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x8efc5c88 fsync_bdev -EXPORT_SYMBOL vmlinux 0x8f0e40fc rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x8f0f61c7 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x8f23c427 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x8f350a26 get_disk -EXPORT_SYMBOL vmlinux 0x8f3787be panic_notifier_list -EXPORT_SYMBOL vmlinux 0x8f4467e9 netif_skb_features -EXPORT_SYMBOL vmlinux 0x8f489e48 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x8f48f934 bio_integrity_endio -EXPORT_SYMBOL vmlinux 0x8f5e996b mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0x8f66c824 km_report -EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard -EXPORT_SYMBOL vmlinux 0x8f7a330c d_instantiate -EXPORT_SYMBOL vmlinux 0x8fa8b4b5 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x8fb33568 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x8ff15899 unregister_netdev -EXPORT_SYMBOL vmlinux 0x900f01aa pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x9059fb06 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x9080a37c __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x9092981f iget_failed -EXPORT_SYMBOL vmlinux 0x909384ca tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x909ed64f i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x90ac3102 dev_base_lock -EXPORT_SYMBOL vmlinux 0x90b44906 block_read_full_page -EXPORT_SYMBOL vmlinux 0x90e162b1 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x90ec5e7a __sb_end_write -EXPORT_SYMBOL vmlinux 0x9131da09 __block_write_begin -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x91590691 filp_close -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x918c6374 mempool_alloc -EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x91ff694f bio_phys_segments -EXPORT_SYMBOL vmlinux 0x91ff8982 skb_dequeue -EXPORT_SYMBOL vmlinux 0x920c00b5 ilookup5 -EXPORT_SYMBOL vmlinux 0x92180865 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x923f73d5 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x9243e91f genphy_config_init -EXPORT_SYMBOL vmlinux 0x924c8377 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x92a44a80 fence_add_callback -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92aa0be2 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x93134d9a request_key -EXPORT_SYMBOL vmlinux 0x932e9086 security_file_permission -EXPORT_SYMBOL vmlinux 0x93306a7d param_set_uint -EXPORT_SYMBOL vmlinux 0x935fde86 fb_pan_display -EXPORT_SYMBOL vmlinux 0x9369743c scsi_block_requests -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x938b5ae3 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x9390f226 ida_destroy -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b8109a xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x93b83c62 ps2_command -EXPORT_SYMBOL vmlinux 0x93e3e1ff xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x93f3e52b acpi_extract_package -EXPORT_SYMBOL vmlinux 0x93f998d6 check_disk_size_change -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x942f65aa neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x943c89e0 tty_free_termios -EXPORT_SYMBOL vmlinux 0x946b9b2d uart_match_port -EXPORT_SYMBOL vmlinux 0x947560a7 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x94798ea0 unload_nls -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x949b754f mempool_destroy -EXPORT_SYMBOL vmlinux 0x94a98e81 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x94de26aa tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x94f65083 clkdev_alloc -EXPORT_SYMBOL vmlinux 0x94fc00e5 dq_data_lock -EXPORT_SYMBOL vmlinux 0x9507017f unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x951f7cf3 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x9525bc84 dma_pool_create -EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x954b58a6 of_match_node -EXPORT_SYMBOL vmlinux 0x9568ee1a mntput -EXPORT_SYMBOL vmlinux 0x956d8f9a dentry_update_name_case -EXPORT_SYMBOL vmlinux 0x957de6bc mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x958307b8 may_umount_tree -EXPORT_SYMBOL vmlinux 0x95a05f3a blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0x95a1c6e4 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x95a3351e inet_listen -EXPORT_SYMBOL vmlinux 0x95ceab9c scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x95d18ec0 __serio_register_port -EXPORT_SYMBOL vmlinux 0x95eb31f4 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x95ebce80 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x95efdb17 tty_register_driver -EXPORT_SYMBOL vmlinux 0x961df82d blk_start_request -EXPORT_SYMBOL vmlinux 0x96220280 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x962ab633 give_up_console -EXPORT_SYMBOL vmlinux 0x9632199d fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x96350b90 start_tty -EXPORT_SYMBOL vmlinux 0x963584fc __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x966bccdf smp_call_function_many -EXPORT_SYMBOL vmlinux 0x9672affb finish_no_open -EXPORT_SYMBOL vmlinux 0x967e62b8 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x969e18e0 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x96a19bb6 neigh_update -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96c83717 of_n_size_cells -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96cff5a3 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x96d95f82 input_register_handle -EXPORT_SYMBOL vmlinux 0x972243d2 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x97321fff lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x97675fd8 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x978a0d70 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97b4b7cb gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x97b9879b tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x97d7416b bd_set_size -EXPORT_SYMBOL vmlinux 0x97d8cbde pci_read_vpd -EXPORT_SYMBOL vmlinux 0x97fdbab9 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x98082893 __copy_to_user -EXPORT_SYMBOL vmlinux 0x98129091 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x9831a4f6 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x985febfe __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x98641971 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x9865ff27 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x989c220f del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x98b62324 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98d173a3 register_shrinker -EXPORT_SYMBOL vmlinux 0x98f0b86a kfree_skb_list -EXPORT_SYMBOL vmlinux 0x98f6c0f8 param_get_uint -EXPORT_SYMBOL vmlinux 0x98fc8497 seq_release_private -EXPORT_SYMBOL vmlinux 0x98fc9c3f mii_check_gmii_support -EXPORT_SYMBOL vmlinux 0x9901e21b filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x991326b6 dump_skip -EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf -EXPORT_SYMBOL vmlinux 0x9920c035 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x992d39b5 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x9930924d registered_fb -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x993d5105 get_gendisk -EXPORT_SYMBOL vmlinux 0x994969eb sock_wfree -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x995b2c17 tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0x99680d7e bmap -EXPORT_SYMBOL vmlinux 0x99729a19 set_device_ro -EXPORT_SYMBOL vmlinux 0x9975e6ea inet6_protos -EXPORT_SYMBOL vmlinux 0x9991e957 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99cb6162 do_splice_direct -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99d05b95 cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size -EXPORT_SYMBOL vmlinux 0x99dfee7b pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x99f1e1be update_devfreq -EXPORT_SYMBOL vmlinux 0x9a03e65d compat_nf_getsockopt -EXPORT_SYMBOL vmlinux 0x9a0ba226 qdisc_reset -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1ecd01 from_kgid -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a20ef8e kernel_listen -EXPORT_SYMBOL vmlinux 0x9a27d396 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x9a338b8f iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x9a40f64d xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x9a492f7c jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x9a501fb0 bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x9a5df5cf __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x9a7d8f63 __scm_destroy -EXPORT_SYMBOL vmlinux 0x9a7fba32 PDE_DATA -EXPORT_SYMBOL vmlinux 0x9a908b80 test_and_clear_bit -EXPORT_SYMBOL vmlinux 0x9abe8cb6 cfb_imageblit -EXPORT_SYMBOL vmlinux 0x9ac30579 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9b10ccb9 devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x9b136a8c __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x9b2bf079 d_path -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b63f0a4 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x9b7e925b truncate_setsize -EXPORT_SYMBOL vmlinux 0x9b84b542 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x9b8a0383 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba16103 security_path_chmod -EXPORT_SYMBOL vmlinux 0x9ba6f0fc skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put -EXPORT_SYMBOL vmlinux 0x9bc3ef29 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x9bc6ef31 add_wait_queue -EXPORT_SYMBOL vmlinux 0x9bd305a2 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x9bdc14ea param_ops_ushort -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9c0aecc5 phy_driver_register -EXPORT_SYMBOL vmlinux 0x9c15e096 cdev_del -EXPORT_SYMBOL vmlinux 0x9c16ef05 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x9c1857c4 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x9c223d02 sock_create -EXPORT_SYMBOL vmlinux 0x9c24b727 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c5bc552 finish_wait -EXPORT_SYMBOL vmlinux 0x9c7a67c1 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x9c812cf9 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x9c844ceb mark_page_accessed -EXPORT_SYMBOL vmlinux 0x9c864a04 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x9c8dd88c sk_dst_check -EXPORT_SYMBOL vmlinux 0x9c9b9bc5 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x9ca0b4ac kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb7d2a4 vme_bus_num -EXPORT_SYMBOL vmlinux 0x9cd5ee40 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x9cde3c2f __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x9cfc843a __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d18dcfb elevator_init -EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy -EXPORT_SYMBOL vmlinux 0x9d1f5aec pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0x9d2a8909 generic_getxattr -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d49521d file_open_root -EXPORT_SYMBOL vmlinux 0x9d6f0f4d __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x9da4ebe3 input_allocate_device -EXPORT_SYMBOL vmlinux 0x9dc40a5d serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x9dcb7927 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x9de3ccbc generic_block_bmap -EXPORT_SYMBOL vmlinux 0x9e085f56 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e41d018 of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x9e457f39 udp_seq_open -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5e78e2 __blk_end_request_all -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e822ec6 done_path_create -EXPORT_SYMBOL vmlinux 0x9e9054c4 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9ec46f45 pci_pme_active -EXPORT_SYMBOL vmlinux 0x9ed848b2 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x9eda81c6 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x9ee1da11 param_ops_string -EXPORT_SYMBOL vmlinux 0x9eedb042 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x9f11be7e down_killable -EXPORT_SYMBOL vmlinux 0x9f122829 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x9f20db62 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f62ef14 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x9f7fb587 dev_addr_del -EXPORT_SYMBOL vmlinux 0x9f811ab1 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f9b8dfe fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x9f9c4b8a ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x9fa3b3a1 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x9fa85597 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x9fa866f7 kobject_get -EXPORT_SYMBOL vmlinux 0x9facf651 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x9fad5084 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x9fd3a17b key_task_permission -EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x9fd84fff ilookup -EXPORT_SYMBOL vmlinux 0x9fdb35ce __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0x9ffc3f3d mfd_cell_enable -EXPORT_SYMBOL vmlinux 0xa0039911 ip_setsockopt -EXPORT_SYMBOL vmlinux 0xa0075a11 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xa041da33 proto_register -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa0510e64 up_read -EXPORT_SYMBOL vmlinux 0xa05a531c dev_add_offload -EXPORT_SYMBOL vmlinux 0xa05aa443 dmam_pool_create -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa0838938 keyring_alloc -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa08e1a73 netdev_alert -EXPORT_SYMBOL vmlinux 0xa0ad4a10 skb_put -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa114c4cd kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0xa11f2942 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa12bb29d netdev_warn -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts -EXPORT_SYMBOL vmlinux 0xa14f37d7 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xa18a43ce vfs_path_lookup -EXPORT_SYMBOL vmlinux 0xa19e1584 sk_capable -EXPORT_SYMBOL vmlinux 0xa1b49db2 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xa1b665bc xen_biovec_phys_mergeable -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1c6ce57 __alloc_skb -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1ec54ca to_ndd -EXPORT_SYMBOL vmlinux 0xa1ef1784 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xa1f5b33a pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xa207f117 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa222cc7f devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0xa22da1dd param_set_ullong -EXPORT_SYMBOL vmlinux 0xa2725827 tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0xa2732a36 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xa281bdc0 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa286fe27 vm_map_ram -EXPORT_SYMBOL vmlinux 0xa28c0740 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0xa29b8711 dqput -EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0xa2aed24f dm_unregister_target -EXPORT_SYMBOL vmlinux 0xa2bcf91b netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xa2be4510 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0xa2c5edf0 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa320a552 dquot_operations -EXPORT_SYMBOL vmlinux 0xa327ee9e sock_wake_async -EXPORT_SYMBOL vmlinux 0xa33ffa0d simple_fill_super -EXPORT_SYMBOL vmlinux 0xa3455c63 dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0xa3542b66 mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0xa3714105 pci_request_region -EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get -EXPORT_SYMBOL vmlinux 0xa3841559 skb_unlink -EXPORT_SYMBOL vmlinux 0xa393287a iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0xa3a0b91b pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xa3a6272a abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0xa3b6efec input_grab_device -EXPORT_SYMBOL vmlinux 0xa3ca634a remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xa3ca9e17 vlan_vid_add -EXPORT_SYMBOL vmlinux 0xa3de21ed netdev_change_features -EXPORT_SYMBOL vmlinux 0xa3e17f56 node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0xa40218e0 input_set_capability -EXPORT_SYMBOL vmlinux 0xa422ae7c genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0xa432b44b mmc_of_parse -EXPORT_SYMBOL vmlinux 0xa4511467 crc16 -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa47bba95 wait_iff_congested -EXPORT_SYMBOL vmlinux 0xa47c77b7 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xa48bdbf5 scm_detach_fds -EXPORT_SYMBOL vmlinux 0xa495e3a5 dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0xa4a3f816 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0xa4ae2f79 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xa4ca5b25 mpage_writepage -EXPORT_SYMBOL vmlinux 0xa4cd4618 skb_split -EXPORT_SYMBOL vmlinux 0xa4e7b106 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0xa4f10233 serio_open -EXPORT_SYMBOL vmlinux 0xa532db1c filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0xa53db2b0 pci_platform_rom -EXPORT_SYMBOL vmlinux 0xa542b426 seq_open -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa562fd5e xfrm_init_state -EXPORT_SYMBOL vmlinux 0xa5729878 ppp_dev_name -EXPORT_SYMBOL vmlinux 0xa57307ba netpoll_print_options -EXPORT_SYMBOL vmlinux 0xa5734dbb tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xa5815a77 filemap_map_pages -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le -EXPORT_SYMBOL vmlinux 0xa5d0f54e cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xa5d38046 netif_carrier_off -EXPORT_SYMBOL vmlinux 0xa5d69130 eth_header_parse -EXPORT_SYMBOL vmlinux 0xa5ded45a max8925_bulk_read -EXPORT_SYMBOL vmlinux 0xa5f5061b udp_lib_unhash -EXPORT_SYMBOL vmlinux 0xa5fed88e key_unlink -EXPORT_SYMBOL vmlinux 0xa615fc80 kern_path_create -EXPORT_SYMBOL vmlinux 0xa61843cc pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0xa6240e2a writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xa6242f3b __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xa631a036 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember -EXPORT_SYMBOL vmlinux 0xa67177e3 dquot_commit -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa67a7605 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error -EXPORT_SYMBOL vmlinux 0xa6c09e57 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xa6d28c4d cdev_add -EXPORT_SYMBOL vmlinux 0xa6de018a vfs_statfs -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa70a0fed default_file_splice_read -EXPORT_SYMBOL vmlinux 0xa70f8e21 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa751d094 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xa764b551 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xa766c431 register_gifconf -EXPORT_SYMBOL vmlinux 0xa766d0ac file_path -EXPORT_SYMBOL vmlinux 0xa786fb58 udp_sendmsg -EXPORT_SYMBOL vmlinux 0xa7b650bd key_revoke -EXPORT_SYMBOL vmlinux 0xa7bde1e1 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xa7be526f _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xa7f2e63e migrate_page_copy -EXPORT_SYMBOL vmlinux 0xa7f78f5f scsi_register_driver -EXPORT_SYMBOL vmlinux 0xa800a821 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xa81d0653 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa8468e1c dma_mmap_from_coherent -EXPORT_SYMBOL vmlinux 0xa85495ec gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0xa858064b read_code -EXPORT_SYMBOL vmlinux 0xa8665de2 pci_save_state -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa87cf413 clear_bit -EXPORT_SYMBOL vmlinux 0xa894db81 compat_ip_getsockopt -EXPORT_SYMBOL vmlinux 0xa89668e9 tc_classify -EXPORT_SYMBOL vmlinux 0xa8a58747 do_splice_to -EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8cbef7c pagecache_write_end -EXPORT_SYMBOL vmlinux 0xa8f20474 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa914487d nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0xa9164c26 fddi_change_mtu -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa91a46cc mount_bdev -EXPORT_SYMBOL vmlinux 0xa91af45f __dquot_free_space -EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xa92664d9 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0xa9351e8c sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xa93a9a9f sock_release -EXPORT_SYMBOL vmlinux 0xa948904d blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xa96969c4 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0xa970177b lwtunnel_output -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa994c670 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9b248b6 idr_for_each -EXPORT_SYMBOL vmlinux 0xa9c2b595 iommu_dma_init_domain -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9e2fd7a devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0xa9eac194 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0xa9f41ec0 mmc_cleanup_queue -EXPORT_SYMBOL vmlinux 0xaa06a5d5 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xaa12b722 blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0xaa2f0c38 blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0xaa31b93b devm_gpio_request -EXPORT_SYMBOL vmlinux 0xaa4e19c0 padata_alloc_possible -EXPORT_SYMBOL vmlinux 0xaa4f5fb2 led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaaa8aa0c phy_attach_direct -EXPORT_SYMBOL vmlinux 0xaac1689b sk_reset_timer -EXPORT_SYMBOL vmlinux 0xaacc3134 idr_find_slowpath -EXPORT_SYMBOL vmlinux 0xaacf817b nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaed2ed7 cdrom_release -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab04b1a0 mmc_start_bkops -EXPORT_SYMBOL vmlinux 0xab343f85 init_task -EXPORT_SYMBOL vmlinux 0xab40cca9 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab83b922 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xab8b53c3 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xab9bf622 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xab9c1e60 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xabaee894 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0xabafb6bf scsi_scan_target -EXPORT_SYMBOL vmlinux 0xabb5a5dd param_ops_invbool -EXPORT_SYMBOL vmlinux 0xabbbd444 _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabd81bb8 key_validate -EXPORT_SYMBOL vmlinux 0xabe6a289 fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac0eed28 udp6_set_csum -EXPORT_SYMBOL vmlinux 0xac10bac1 blk_fetch_request -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear -EXPORT_SYMBOL vmlinux 0xac4db3e0 serio_reconnect -EXPORT_SYMBOL vmlinux 0xac502262 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xac69dad3 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xac946180 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0xac9d2d83 register_sysctl_table -EXPORT_SYMBOL vmlinux 0xaca0768a jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xacc5db69 unregister_cdrom -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacd82ba5 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xad3fd2dc rtnl_unicast -EXPORT_SYMBOL vmlinux 0xad47d447 inet_getname -EXPORT_SYMBOL vmlinux 0xad4942e0 simple_rmdir -EXPORT_SYMBOL vmlinux 0xad4b41b0 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xad641712 bio_split -EXPORT_SYMBOL vmlinux 0xad6b8283 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xada59c41 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xadb7736b jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xadb95411 xfrm_lookup -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae410f63 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xae4a1bda csum_tcpudp_nofold -EXPORT_SYMBOL vmlinux 0xae65ad40 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xae83fb5a nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0xae85d08a abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xae8c4d0c set_bit -EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xaed88b08 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xaef40243 ppp_unit_number -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf67f131 d_find_alias -EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup -EXPORT_SYMBOL vmlinux 0xaf7b32d2 vme_master_request -EXPORT_SYMBOL vmlinux 0xafe5c5e1 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xb00419f2 key_payload_reserve -EXPORT_SYMBOL vmlinux 0xb012063a sock_no_listen -EXPORT_SYMBOL vmlinux 0xb014bf83 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xb01eed55 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xb020a973 ps2_drain -EXPORT_SYMBOL vmlinux 0xb02535d5 single_release -EXPORT_SYMBOL vmlinux 0xb0270ebc genphy_read_status -EXPORT_SYMBOL vmlinux 0xb0542b49 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb06ca43a vme_register_bridge -EXPORT_SYMBOL vmlinux 0xb0765f76 netlink_broadcast -EXPORT_SYMBOL vmlinux 0xb0853746 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0ca491a blk_sync_queue -EXPORT_SYMBOL vmlinux 0xb0d2caec generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e555ca ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xb0e9d81c mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb13aec2d iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xb13ebadf cdrom_open -EXPORT_SYMBOL vmlinux 0xb13f6f21 bioset_integrity_free -EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb164b785 nf_log_packet -EXPORT_SYMBOL vmlinux 0xb16e8eda pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xb17fd116 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0xb1832466 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xb1834837 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xb19f59ec blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1e2b757 tcp_child_process -EXPORT_SYMBOL vmlinux 0xb1e5d4b8 tcp_filter -EXPORT_SYMBOL vmlinux 0xb1f0c1e8 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xb1f3c7cd make_kprojid -EXPORT_SYMBOL vmlinux 0xb20ecf88 acpi_run_osc -EXPORT_SYMBOL vmlinux 0xb23c43ba inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xb24bcd49 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0xb24c7ff2 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb283d04d __get_page_tail -EXPORT_SYMBOL vmlinux 0xb296f9d9 qdisc_destroy -EXPORT_SYMBOL vmlinux 0xb2b0b7e5 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xb2b58f61 tty_kref_put -EXPORT_SYMBOL vmlinux 0xb2bd48a4 file_remove_privs -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2d87c39 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0xb2e02ad1 unlock_rename -EXPORT_SYMBOL vmlinux 0xb2eb180a sk_stop_timer -EXPORT_SYMBOL vmlinux 0xb2f43694 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xb3056c02 filemap_flush -EXPORT_SYMBOL vmlinux 0xb319a58b bdi_register -EXPORT_SYMBOL vmlinux 0xb3213fc4 pnp_possible_config -EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xb345afbf posix_lock_file -EXPORT_SYMBOL vmlinux 0xb34b24a0 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xb371f413 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0xb37bee52 rename_lock -EXPORT_SYMBOL vmlinux 0xb389543c unregister_quota_format -EXPORT_SYMBOL vmlinux 0xb38c261c flow_cache_init -EXPORT_SYMBOL vmlinux 0xb39be34f __register_nls -EXPORT_SYMBOL vmlinux 0xb3b0a7a0 ab3100_event_register -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3db7de5 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0xb3e7f349 dst_init -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4701cd3 pci_scan_slot -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class -EXPORT_SYMBOL vmlinux 0xb473d15d param_get_short -EXPORT_SYMBOL vmlinux 0xb47f6814 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xb4911fbb backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xb494305f dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xb4b146b4 lookup_one_len -EXPORT_SYMBOL vmlinux 0xb4b85441 bitmap_close_sync -EXPORT_SYMBOL vmlinux 0xb4bc6a5d tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xb4d66f09 bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xb4dc2b75 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xb4f9543d bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xb4fc735b idr_remove -EXPORT_SYMBOL vmlinux 0xb509a844 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xb565b92a blk_execute_rq -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb5794f02 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xb57ad24e ip_do_fragment -EXPORT_SYMBOL vmlinux 0xb57e34b3 setattr_copy -EXPORT_SYMBOL vmlinux 0xb596b070 touch_atime -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free -EXPORT_SYMBOL vmlinux 0xb5cbc06e fb_validate_mode -EXPORT_SYMBOL vmlinux 0xb5db8065 nf_afinfo -EXPORT_SYMBOL vmlinux 0xb5ea61b8 get_task_io_context -EXPORT_SYMBOL vmlinux 0xb5fdab22 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0xb6241b36 udp_ioctl -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb62f48ba dma_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb68c6194 tty_register_device -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69a0369 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0xb69f9b00 mempool_free -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6cc6773 stop_tty -EXPORT_SYMBOL vmlinux 0xb6d34f95 i2c_del_driver -EXPORT_SYMBOL vmlinux 0xb6d3daf1 qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xb6d47ccc bio_advance -EXPORT_SYMBOL vmlinux 0xb6db759a shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xb6dc0278 __invalidate_device -EXPORT_SYMBOL vmlinux 0xb6e1febe fb_get_mode -EXPORT_SYMBOL vmlinux 0xb6f6c43c mfd_remove_devices -EXPORT_SYMBOL vmlinux 0xb6fe55d4 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xb702bba0 __scsi_add_device -EXPORT_SYMBOL vmlinux 0xb7096951 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xb71fb74f _raw_read_trylock -EXPORT_SYMBOL vmlinux 0xb7321419 neigh_parms_release -EXPORT_SYMBOL vmlinux 0xb7415a7e napi_consume_skb -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb74caff7 gen_pool_free -EXPORT_SYMBOL vmlinux 0xb762b475 dev_err -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb77e5644 dev_close -EXPORT_SYMBOL vmlinux 0xb7905f5f pskb_expand_head -EXPORT_SYMBOL vmlinux 0xb799bba7 import_iovec -EXPORT_SYMBOL vmlinux 0xb7bce0bb __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d700c7 __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0xb7df6688 flow_cache_lookup -EXPORT_SYMBOL vmlinux 0xb7f511da lockref_get -EXPORT_SYMBOL vmlinux 0xb8204db5 page_put_link -EXPORT_SYMBOL vmlinux 0xb821a826 i2c_transfer -EXPORT_SYMBOL vmlinux 0xb82d9918 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xb859c4f4 blk_integrity_register -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb874d57e netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xb88c5b77 nd_btt_probe -EXPORT_SYMBOL vmlinux 0xb8a9cc86 revert_creds -EXPORT_SYMBOL vmlinux 0xb8b92f34 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0xb8c4aec1 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xb8d03576 tcp_proc_register -EXPORT_SYMBOL vmlinux 0xb8e4d3fd kill_bdev -EXPORT_SYMBOL vmlinux 0xb8f64bf0 noop_llseek -EXPORT_SYMBOL vmlinux 0xb90f0a9a tty_name -EXPORT_SYMBOL vmlinux 0xb91d4f84 __quota_error -EXPORT_SYMBOL vmlinux 0xb924defe napi_gro_receive -EXPORT_SYMBOL vmlinux 0xb927e71f do_splice_from -EXPORT_SYMBOL vmlinux 0xb93c4e20 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xb955c0bd scsi_report_opcode -EXPORT_SYMBOL vmlinux 0xb9572f7b blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xb9645855 ipv4_specific -EXPORT_SYMBOL vmlinux 0xb9796ced of_find_node_by_type -EXPORT_SYMBOL vmlinux 0xb9963412 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xb9a7fcaa mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xb9b9c68c generic_file_open -EXPORT_SYMBOL vmlinux 0xb9bad778 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xb9bf2845 find_get_pages_tag -EXPORT_SYMBOL vmlinux 0xb9c7956c tcp_parse_options -EXPORT_SYMBOL vmlinux 0xb9e7c511 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9ec5027 scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0xb9ee558f blk_start_queue_async -EXPORT_SYMBOL vmlinux 0xba0e4490 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xba1192ac dquot_scan_active -EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read -EXPORT_SYMBOL vmlinux 0xba2ffec2 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xba383eda open_check_o_direct -EXPORT_SYMBOL vmlinux 0xba42d1ab always_delete_dentry -EXPORT_SYMBOL vmlinux 0xba47224f tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba59ce6a md_integrity_register -EXPORT_SYMBOL vmlinux 0xba6773a9 seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xba7c95f9 dev_set_group -EXPORT_SYMBOL vmlinux 0xba817112 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xba9769a7 __nd_iostat_start -EXPORT_SYMBOL vmlinux 0xbab9ae73 sg_miter_skip -EXPORT_SYMBOL vmlinux 0xbabf7291 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xbabf8754 write_one_page -EXPORT_SYMBOL vmlinux 0xbac6b2fe phy_register_fixup -EXPORT_SYMBOL vmlinux 0xbadd170b __brelse -EXPORT_SYMBOL vmlinux 0xbae87d3a clk_add_alias -EXPORT_SYMBOL vmlinux 0xbb03030d vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb0f93b8 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0xbb156727 dev_printk_emit -EXPORT_SYMBOL vmlinux 0xbb2c1328 eth_type_trans -EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb51a3b1 starget_for_each_device -EXPORT_SYMBOL vmlinux 0xbb57286e pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0xbb574559 __neigh_create -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb7c5680 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0xbb8959cd ps2_handle_response -EXPORT_SYMBOL vmlinux 0xbb94b433 param_get_int -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbba195e6 devm_ioport_map -EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0xbbb66f8f component_match_add -EXPORT_SYMBOL vmlinux 0xbbd64c4b blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xbbd736e0 elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0xbbf30552 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0xbc10f93c vfs_symlink -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc3b982f rtnl_notify -EXPORT_SYMBOL vmlinux 0xbc6050a2 elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0xbc674a56 cad_pid -EXPORT_SYMBOL vmlinux 0xbc9e54c9 unregister_key_type -EXPORT_SYMBOL vmlinux 0xbc9ef5c1 skb_clone_sk -EXPORT_SYMBOL vmlinux 0xbcafa45e scsi_print_sense -EXPORT_SYMBOL vmlinux 0xbcb05128 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0xbcbd19f2 con_copy_unimap -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbccb56e0 nd_integrity_init -EXPORT_SYMBOL vmlinux 0xbce4a86e napi_disable -EXPORT_SYMBOL vmlinux 0xbceed278 of_node_to_nid -EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve -EXPORT_SYMBOL vmlinux 0xbd1bdf64 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd57a78f get_cached_acl -EXPORT_SYMBOL vmlinux 0xbd5e15c8 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0xbd84e2c1 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbd9e16bf nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xbda22756 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xbdbc13a1 complete -EXPORT_SYMBOL vmlinux 0xbe1604ae cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xbe1add73 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe2431a9 mmc_can_trim -EXPORT_SYMBOL vmlinux 0xbe4cda43 dev_mc_del -EXPORT_SYMBOL vmlinux 0xbe546ae0 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xbe6f2ee4 inet_release -EXPORT_SYMBOL vmlinux 0xbe83e662 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0xbe9cb32f backlight_force_update -EXPORT_SYMBOL vmlinux 0xbead5e27 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xbeb44a17 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xbeea9d04 blk_complete_request -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf042a43 tty_port_open -EXPORT_SYMBOL vmlinux 0xbf1b9437 mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0xbf23a63d of_mdio_parse_addr -EXPORT_SYMBOL vmlinux 0xbf3793a0 md_write_start -EXPORT_SYMBOL vmlinux 0xbf3efdc9 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xbf418242 follow_down -EXPORT_SYMBOL vmlinux 0xbf52d31a jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xbf62fd47 bdput -EXPORT_SYMBOL vmlinux 0xbf76f6d5 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfa3100d textsearch_unregister -EXPORT_SYMBOL vmlinux 0xbfd57c86 get_user_pages -EXPORT_SYMBOL vmlinux 0xbfdebfe6 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xbfe82b2e tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff2e42c input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xc012d515 fence_remove_callback -EXPORT_SYMBOL vmlinux 0xc0168cf9 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0xc06a01a4 inet_add_protocol -EXPORT_SYMBOL vmlinux 0xc073ba36 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc08028ed mmc_remove_host -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0a5aa52 __module_get -EXPORT_SYMBOL vmlinux 0xc0b20652 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xc0dd9d48 __elv_add_request -EXPORT_SYMBOL vmlinux 0xc10fcb27 dst_discard_out -EXPORT_SYMBOL vmlinux 0xc14a9884 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xc14dcc6f tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit -EXPORT_SYMBOL vmlinux 0xc15f409e dev_change_flags -EXPORT_SYMBOL vmlinux 0xc1864721 param_set_bool -EXPORT_SYMBOL vmlinux 0xc1906ca8 mpage_readpages -EXPORT_SYMBOL vmlinux 0xc1a10e68 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xc1a87e88 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xc1c195dc security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1f25a43 con_is_bound -EXPORT_SYMBOL vmlinux 0xc1f42987 iunique -EXPORT_SYMBOL vmlinux 0xc26d9cf1 d_tmpfile -EXPORT_SYMBOL vmlinux 0xc27a6e1a pci_bus_get -EXPORT_SYMBOL vmlinux 0xc2846681 __get_user_pages -EXPORT_SYMBOL vmlinux 0xc285d2ac i2c_put_adapter -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2c22d72 nvm_register_mgr -EXPORT_SYMBOL vmlinux 0xc2d4103e generic_show_options -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2ea31dc dmam_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0xc2edf79d blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0xc304b458 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc316b729 page_cache_next_hole -EXPORT_SYMBOL vmlinux 0xc335cb29 dump_truncate -EXPORT_SYMBOL vmlinux 0xc3797fd1 __getblk_slow -EXPORT_SYMBOL vmlinux 0xc3a7be25 lg_global_lock -EXPORT_SYMBOL vmlinux 0xc3bfffae kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3c63d90 task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0xc3dfee56 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xc3f7463a write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xc42a0d68 phy_connect_direct -EXPORT_SYMBOL vmlinux 0xc433e52a d_walk -EXPORT_SYMBOL vmlinux 0xc46325a4 vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0xc46f3936 tty_mutex -EXPORT_SYMBOL vmlinux 0xc47394ac padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc49c4df8 mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0xc4a7c8b1 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xc4b63f5f of_n_addr_cells -EXPORT_SYMBOL vmlinux 0xc4cf348d pagecache_get_page -EXPORT_SYMBOL vmlinux 0xc50478df xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xc5139f58 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xc537bfd5 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0xc5417b7b ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5a055b9 param_ops_short -EXPORT_SYMBOL vmlinux 0xc5a1bb8f keyring_search -EXPORT_SYMBOL vmlinux 0xc5dbf4e8 lro_receive_skb -EXPORT_SYMBOL vmlinux 0xc5f5762c msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc62708c6 misc_deregister -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc63e5d9b try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xc64ab704 param_ops_int -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc668f83f tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xc67b1580 submit_bh -EXPORT_SYMBOL vmlinux 0xc6871100 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xc6a574db ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xc6adc290 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xc6b55371 handle_edge_irq -EXPORT_SYMBOL vmlinux 0xc6b76d96 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6e3cae3 vme_irq_free -EXPORT_SYMBOL vmlinux 0xc6ea546e skb_queue_tail -EXPORT_SYMBOL vmlinux 0xc6f49652 iov_iter_advance -EXPORT_SYMBOL vmlinux 0xc6f8da47 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xc7021e64 kobject_init -EXPORT_SYMBOL vmlinux 0xc709767b sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc7275dea amba_release_regions -EXPORT_SYMBOL vmlinux 0xc730f4d3 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xc75cdf01 udp_disconnect -EXPORT_SYMBOL vmlinux 0xc77fef28 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a28d7d vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7dbf4e2 unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0xc7e0a048 mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc87d3f21 phy_device_remove -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc89f79d4 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8aa73c1 tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0xc8ad1169 acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8c8110e remove_proc_subtree -EXPORT_SYMBOL vmlinux 0xc8fc06d3 lro_flush_all -EXPORT_SYMBOL vmlinux 0xc9008b81 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xc90d8bee filemap_fault -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc92bf2d5 eth_change_mtu -EXPORT_SYMBOL vmlinux 0xc93a1e03 sk_receive_skb -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96b03ca fence_wait_timeout -EXPORT_SYMBOL vmlinux 0xc97529e7 pnp_start_dev -EXPORT_SYMBOL vmlinux 0xc975d235 devm_gpiod_get -EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run -EXPORT_SYMBOL vmlinux 0xc979c58a acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0xc97afdaf ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0xc97fe268 input_unregister_handler -EXPORT_SYMBOL vmlinux 0xc9827c49 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0xc9952724 mb_cache_shrink -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9b224d2 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0xc9c22d26 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xc9d2906c block_truncate_page -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca215ae9 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xca2289a5 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0xca252e43 fddi_type_trans -EXPORT_SYMBOL vmlinux 0xca2b0ca8 get_unmapped_area -EXPORT_SYMBOL vmlinux 0xca2c193d ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xca3a7953 unregister_md_personality -EXPORT_SYMBOL vmlinux 0xca5015fe linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xca5546ad nf_log_set -EXPORT_SYMBOL vmlinux 0xca596194 phy_disconnect -EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent -EXPORT_SYMBOL vmlinux 0xca6db772 dquot_get_state -EXPORT_SYMBOL vmlinux 0xca6ea978 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xca81f6d9 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order -EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca9d94ee netif_napi_add -EXPORT_SYMBOL vmlinux 0xcab18410 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xcabb15a0 proc_symlink -EXPORT_SYMBOL vmlinux 0xcabc7888 idr_is_empty -EXPORT_SYMBOL vmlinux 0xcac43941 vfs_rename -EXPORT_SYMBOL vmlinux 0xcad153e6 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0xcad3ee5c ip_ct_attach -EXPORT_SYMBOL vmlinux 0xcae8cd43 dma_async_device_register -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb11007a blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xcb128141 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0xcb15499f param_get_ushort -EXPORT_SYMBOL vmlinux 0xcb2b1329 wireless_send_event -EXPORT_SYMBOL vmlinux 0xcb376cc5 netdev_update_features -EXPORT_SYMBOL vmlinux 0xcb4e9bd2 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0xcb661ed8 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb8384a2 page_waitqueue -EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcba6f6b5 param_ops_bint -EXPORT_SYMBOL vmlinux 0xcbabbffb blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister -EXPORT_SYMBOL vmlinux 0xcbaf1986 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0xcbb9560f kernel_setsockopt -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbf451ab ata_link_printk -EXPORT_SYMBOL vmlinux 0xcbff5e68 mempool_create -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc26a9e3 vga_put -EXPORT_SYMBOL vmlinux 0xcc29c14b dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xcc2e6a3e dma_release_from_coherent -EXPORT_SYMBOL vmlinux 0xcc44d7ef md_flush_request -EXPORT_SYMBOL vmlinux 0xcc46af9e tcp_prequeue -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc50592c genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xcc82c2a1 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xcc84d171 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute -EXPORT_SYMBOL vmlinux 0xcc983288 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0xcca6620d nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0xccbecff3 of_device_unregister -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccdd933d set_groups -EXPORT_SYMBOL vmlinux 0xccf400cb of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xccfc2031 simple_write_end -EXPORT_SYMBOL vmlinux 0xcd0a6bc1 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0xcd0d8891 acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xcd16f57c follow_up -EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xcd2704a5 fb_set_cmap -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd379d3a dquot_disable -EXPORT_SYMBOL vmlinux 0xcd407d14 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xcd4a3c66 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xcd676f47 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xcd80477d empty_aops -EXPORT_SYMBOL vmlinux 0xcd8833e3 ip_getsockopt -EXPORT_SYMBOL vmlinux 0xcd8ed10f vm_insert_mixed -EXPORT_SYMBOL vmlinux 0xcd9329f1 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xcdae5764 blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdf85935 reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0xce065200 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xce08b687 of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xce1f3540 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0xce238a27 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce45952a bio_clone_bioset -EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce505d3f vme_dma_request -EXPORT_SYMBOL vmlinux 0xce522efd current_in_userns -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce765fbb ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift -EXPORT_SYMBOL vmlinux 0xce788eca pnp_get_resource -EXPORT_SYMBOL vmlinux 0xce81f1ae param_get_invbool -EXPORT_SYMBOL vmlinux 0xce929979 arp_tbl -EXPORT_SYMBOL vmlinux 0xce99d25f register_netdev -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free -EXPORT_SYMBOL vmlinux 0xceb1717d completion_done -EXPORT_SYMBOL vmlinux 0xceeed2c6 d_obtain_root -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcefcfa18 simple_pin_fs -EXPORT_SYMBOL vmlinux 0xcf0ec104 have_submounts -EXPORT_SYMBOL vmlinux 0xcf12053a phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0xcf1ddc42 udp_del_offload -EXPORT_SYMBOL vmlinux 0xcf58b8c0 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xcfa1f7e8 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xcfb4a296 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xcfdbc9bd rtnl_create_link -EXPORT_SYMBOL vmlinux 0xd01dad21 dquot_file_open -EXPORT_SYMBOL vmlinux 0xd04b388f sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd0824c3d input_release_device -EXPORT_SYMBOL vmlinux 0xd0831eb9 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xd08a0509 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0xd08ab424 ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0b9ed78 phy_suspend -EXPORT_SYMBOL vmlinux 0xd0e7024a down_read -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fa84c5 neigh_connected_output -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd1123ace seq_lseek -EXPORT_SYMBOL vmlinux 0xd1165702 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info -EXPORT_SYMBOL vmlinux 0xd16f8f5b nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd1873fbd padata_remove_cpu -EXPORT_SYMBOL vmlinux 0xd18ff827 cpu_present_mask -EXPORT_SYMBOL vmlinux 0xd1957c90 bdgrab -EXPORT_SYMBOL vmlinux 0xd19c20b4 of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0xd1aeffb6 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xd1cae44f shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xd1cea402 dm_put_table_device -EXPORT_SYMBOL vmlinux 0xd1d03abd mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xd1d6619f inet_sendmsg -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1dc3a5c inet_put_port -EXPORT_SYMBOL vmlinux 0xd1ea4d10 neigh_lookup -EXPORT_SYMBOL vmlinux 0xd1f8e647 bh_submit_read -EXPORT_SYMBOL vmlinux 0xd20994f8 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0xd2243384 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xd23da255 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xd247d926 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xd24ba4c1 fence_free -EXPORT_SYMBOL vmlinux 0xd2506334 wireless_spy_update -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd25e16e3 remove_wait_queue -EXPORT_SYMBOL vmlinux 0xd27930c4 netlink_set_err -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd2957f0e remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc -EXPORT_SYMBOL vmlinux 0xd2d1b225 tcf_hash_search -EXPORT_SYMBOL vmlinux 0xd2d54ac4 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd315bcef blk_queue_make_request -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd3259d65 test_and_set_bit -EXPORT_SYMBOL vmlinux 0xd333c15b forget_cached_acl -EXPORT_SYMBOL vmlinux 0xd349730a mpage_readpage -EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset -EXPORT_SYMBOL vmlinux 0xd3632c24 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd395c0ba neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xd3b12742 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3e4eaed abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0xd409b88d netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xd41d4ed5 dput -EXPORT_SYMBOL vmlinux 0xd41fe818 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd4488949 migrate_page -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd46c6f8c sock_from_file -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed -EXPORT_SYMBOL vmlinux 0xd4960ab8 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xd498be3e set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0xd4992eff dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xd4a01cde xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xd4cef7e5 blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0xd4d7529f init_buffer -EXPORT_SYMBOL vmlinux 0xd4d97104 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xd4e7aa3d ioremap_cache -EXPORT_SYMBOL vmlinux 0xd4f79b91 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data -EXPORT_SYMBOL vmlinux 0xd51db045 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd551bf1d amba_find_device -EXPORT_SYMBOL vmlinux 0xd55605ac xfrm6_rcv -EXPORT_SYMBOL vmlinux 0xd559a0e0 __seq_open_private -EXPORT_SYMBOL vmlinux 0xd561805b sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xd575cb80 mii_check_link -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd5db8f9e xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0xd5e793f4 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xd5f489d2 kill_litter_super -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd61f4f45 tcp_req_err -EXPORT_SYMBOL vmlinux 0xd622d155 phy_device_create -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd62e0bf7 set_blocksize -EXPORT_SYMBOL vmlinux 0xd63a0f4b xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xd641a47a param_get_long -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd6542914 f_setown -EXPORT_SYMBOL vmlinux 0xd655dd87 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0xd655f199 acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xd65f2d64 gnttab_alloc_pages -EXPORT_SYMBOL vmlinux 0xd678e002 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xd67e1750 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xd67fd548 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd6a2e10d pci_get_slot -EXPORT_SYMBOL vmlinux 0xd6c43ac4 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xd6c455da bio_map_kern -EXPORT_SYMBOL vmlinux 0xd6e896b3 bioset_create -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6fabee0 nvm_put_blk -EXPORT_SYMBOL vmlinux 0xd727f0c3 del_gendisk -EXPORT_SYMBOL vmlinux 0xd734317a ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0xd737b9de elv_rb_add -EXPORT_SYMBOL vmlinux 0xd73fc0ca __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xd7502ee3 input_register_device -EXPORT_SYMBOL vmlinux 0xd750602f kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd7700449 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xd794ad24 pcim_enable_device -EXPORT_SYMBOL vmlinux 0xd79b33a5 inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0xd79e2ec0 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xd7aecdc0 dquot_drop -EXPORT_SYMBOL vmlinux 0xd7b53f1f tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xd7b8632d ata_port_printk -EXPORT_SYMBOL vmlinux 0xd7badda0 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xd7bc3e88 pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0xd7ccd031 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7fa62ba devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0xd847f74d padata_do_parallel -EXPORT_SYMBOL vmlinux 0xd8496f8d compat_ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xd862e4c9 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xd866ada2 nvm_erase_blk -EXPORT_SYMBOL vmlinux 0xd868162b generic_read_dir -EXPORT_SYMBOL vmlinux 0xd89121f0 __register_chrdev -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8c2fc04 md_write_end -EXPORT_SYMBOL vmlinux 0xd8cfbea1 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xd8d7cefb nobh_write_begin -EXPORT_SYMBOL vmlinux 0xd8de559c xen_dma_ops -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8f7f49c km_state_notify -EXPORT_SYMBOL vmlinux 0xd8f98513 simple_release_fs -EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0xd924e63d skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xd935e67e kmem_cache_size -EXPORT_SYMBOL vmlinux 0xd93e4764 of_node_put -EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference -EXPORT_SYMBOL vmlinux 0xd9468197 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xd95b3969 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0xd96109bf tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0xd971f195 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0xd97bcbd6 compat_mc_getsockopt -EXPORT_SYMBOL vmlinux 0xd97bf1db block_write_end -EXPORT_SYMBOL vmlinux 0xd981e789 led_set_brightness -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9862f60 vfs_mknod -EXPORT_SYMBOL vmlinux 0xd99f1088 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xd9c67e85 tty_port_close_end -EXPORT_SYMBOL vmlinux 0xd9cf3163 dev_addr_add -EXPORT_SYMBOL vmlinux 0xd9d7a49c param_ops_byte -EXPORT_SYMBOL vmlinux 0xd9d8b640 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9fbeb51 ppp_input -EXPORT_SYMBOL vmlinux 0xda01479c mempool_create_node -EXPORT_SYMBOL vmlinux 0xda0d46c2 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0xda14777d inet6_release -EXPORT_SYMBOL vmlinux 0xda25f4d6 release_pages -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda628612 path_is_under -EXPORT_SYMBOL vmlinux 0xda6de9e4 pci_enable_device -EXPORT_SYMBOL vmlinux 0xda775d91 dquot_quota_off -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda821094 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xdaa4eeaf netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xdabe9d8a alloc_disk -EXPORT_SYMBOL vmlinux 0xdabef73a vme_irq_generate -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdad4dd36 param_get_ulong -EXPORT_SYMBOL vmlinux 0xdadd97ac compat_sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell -EXPORT_SYMBOL vmlinux 0xdaef8159 path_put -EXPORT_SYMBOL vmlinux 0xdafd9653 xfrm_input -EXPORT_SYMBOL vmlinux 0xdb052b54 param_set_short -EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0xdb3e34b9 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xdb3f531b nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7ad0e3 devm_memunmap -EXPORT_SYMBOL vmlinux 0xdb824fbb blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0xdb8cdd11 module_put -EXPORT_SYMBOL vmlinux 0xdbf699cd genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc1f6cd7 param_set_invbool -EXPORT_SYMBOL vmlinux 0xdc349f4c request_firmware -EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc5fc764 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xdc772c4d skb_checksum_help -EXPORT_SYMBOL vmlinux 0xdc87b932 pci_get_class -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcb3ec6c __sk_dst_check -EXPORT_SYMBOL vmlinux 0xdcb4f167 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdcbbc012 d_rehash -EXPORT_SYMBOL vmlinux 0xdcd10cc3 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0xdcf1d0b6 icmpv6_send -EXPORT_SYMBOL vmlinux 0xdcf3ea11 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xdd0bdfa0 abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0xdd21787b __bforget -EXPORT_SYMBOL vmlinux 0xdd3246a8 phy_attach -EXPORT_SYMBOL vmlinux 0xdd4ca69d tty_port_put -EXPORT_SYMBOL vmlinux 0xdd4d61c0 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0xdd61d023 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd792b34 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xdd7dd50c follow_down_one -EXPORT_SYMBOL vmlinux 0xdd912530 block_write_begin -EXPORT_SYMBOL vmlinux 0xdd914eb8 block_write_full_page -EXPORT_SYMBOL vmlinux 0xdd9ca4eb ihold -EXPORT_SYMBOL vmlinux 0xddb49e7b fs_bio_set -EXPORT_SYMBOL vmlinux 0xdddf4a5c pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xdde0fbbb genphy_update_link -EXPORT_SYMBOL vmlinux 0xddfa34e7 padata_stop -EXPORT_SYMBOL vmlinux 0xde149a15 vme_irq_request -EXPORT_SYMBOL vmlinux 0xde434656 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0xde44358e vme_dma_list_add -EXPORT_SYMBOL vmlinux 0xde4d306a create_empty_buffers -EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0xde6603f0 bdi_register_dev -EXPORT_SYMBOL vmlinux 0xde6e86ad scsi_print_command -EXPORT_SYMBOL vmlinux 0xde8b8267 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xdec17326 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xdec62737 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xdeda0072 framebuffer_release -EXPORT_SYMBOL vmlinux 0xdee39b89 dquot_resume -EXPORT_SYMBOL vmlinux 0xdee6327b datagram_poll -EXPORT_SYMBOL vmlinux 0xdef1c419 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0xdef1fd78 da903x_query_status -EXPORT_SYMBOL vmlinux 0xdef60902 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices -EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdf166ff1 kobject_add -EXPORT_SYMBOL vmlinux 0xdf19b406 __i2c_transfer -EXPORT_SYMBOL vmlinux 0xdf1b8f43 mpage_writepages -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf3bfe68 dev_disable_lro -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf60099a __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf7b5be9 phy_drivers_register -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdfc02769 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init -EXPORT_SYMBOL vmlinux 0xdfc5235d proc_create_data -EXPORT_SYMBOL vmlinux 0xdfcc492f swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xe00c3fb9 put_io_context -EXPORT_SYMBOL vmlinux 0xe00da1d3 get_phy_device -EXPORT_SYMBOL vmlinux 0xe00e8d07 of_get_pci_address -EXPORT_SYMBOL vmlinux 0xe0101a2a alloc_fcdev -EXPORT_SYMBOL vmlinux 0xe01b3079 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0xe04690b3 find_get_entry -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe05a3cd0 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xe05bcd92 get_super -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe092adf8 max8998_update_reg -EXPORT_SYMBOL vmlinux 0xe0959bba dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xe09b04b4 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0xe09cd1c7 mmc_free_host -EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe10f36d3 seq_hex_dump -EXPORT_SYMBOL vmlinux 0xe110189e ida_pre_get -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe11f3cbc _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0xe12bc3c1 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe13b44e9 vfs_link -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe149c6c8 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xe1620fa1 swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe187512d check_disk_change -EXPORT_SYMBOL vmlinux 0xe1aa4023 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0xe1b0a089 ps2_end_command -EXPORT_SYMBOL vmlinux 0xe1b60f25 kobject_put -EXPORT_SYMBOL vmlinux 0xe1cf60f0 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xe1db4290 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0xe1e14fed skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xe1e3a18c of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0xe221d14a __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0xe23ab64f irq_to_desc -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe244d528 xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0xe247d600 pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe25af9a7 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0xe27217e6 devfreq_add_device -EXPORT_SYMBOL vmlinux 0xe2934237 kset_unregister -EXPORT_SYMBOL vmlinux 0xe29e0f1d generic_file_llseek -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2b8bf2d dquot_alloc -EXPORT_SYMBOL vmlinux 0xe2b9e8d7 fb_class -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2d7cde8 get_task_exe_file -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set -EXPORT_SYMBOL vmlinux 0xe3292a25 file_update_time -EXPORT_SYMBOL vmlinux 0xe332e879 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xe3334cf2 I_BDEV -EXPORT_SYMBOL vmlinux 0xe3563fdf __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0xe38a9c8c sk_stream_write_space -EXPORT_SYMBOL vmlinux 0xe3a53f4c sort -EXPORT_SYMBOL vmlinux 0xe3a7d9e6 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xe3b8cc8e tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3c4b0f0 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3e13213 sk_common_release -EXPORT_SYMBOL vmlinux 0xe41e798e setup_new_exec -EXPORT_SYMBOL vmlinux 0xe44026c2 genlmsg_put -EXPORT_SYMBOL vmlinux 0xe4410ccf get_acl -EXPORT_SYMBOL vmlinux 0xe452b1f3 irq_set_chip -EXPORT_SYMBOL vmlinux 0xe46237b2 elv_unregister_queue -EXPORT_SYMBOL vmlinux 0xe47f3d60 single_open -EXPORT_SYMBOL vmlinux 0xe4a53abf pci_choose_state -EXPORT_SYMBOL vmlinux 0xe4c203fd ata_dev_printk -EXPORT_SYMBOL vmlinux 0xe4e09d15 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xe4eac1b5 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xe4ecbae2 param_get_string -EXPORT_SYMBOL vmlinux 0xe5096cee dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe54e12c7 vfs_create -EXPORT_SYMBOL vmlinux 0xe559b168 sg_miter_start -EXPORT_SYMBOL vmlinux 0xe566a5db block_commit_write -EXPORT_SYMBOL vmlinux 0xe56a5c99 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe5921f03 generic_delete_inode -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5c83e7d register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xe5e613b5 bdevname -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5f1801d __netif_schedule -EXPORT_SYMBOL vmlinux 0xe5f45587 __pagevec_release -EXPORT_SYMBOL vmlinux 0xe5f8bbc0 dev_mc_init -EXPORT_SYMBOL vmlinux 0xe6080b7c invalidate_partition -EXPORT_SYMBOL vmlinux 0xe60cda5a skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xe631e2e0 down_write -EXPORT_SYMBOL vmlinux 0xe6424651 mdiobus_write -EXPORT_SYMBOL vmlinux 0xe642bf18 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xe6456bc6 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0xe6509979 generic_perform_write -EXPORT_SYMBOL vmlinux 0xe6581d2e flush_dcache_page -EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xe6734313 __dst_free -EXPORT_SYMBOL vmlinux 0xe678008a mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe6bb0aff sock_setsockopt -EXPORT_SYMBOL vmlinux 0xe6c12add phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xe6dc09b0 simple_empty -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe7118032 nd_device_unregister -EXPORT_SYMBOL vmlinux 0xe71c21eb prepare_binprm -EXPORT_SYMBOL vmlinux 0xe72fd6e2 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xe736b53e pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xe74fce83 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xe75fa078 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xe76b3c1a tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xe76f50e2 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xe7713b7b skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe77f40d1 pneigh_lookup -EXPORT_SYMBOL vmlinux 0xe78fd77b mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0xe79bc73e unregister_filesystem -EXPORT_SYMBOL vmlinux 0xe7a77ab7 sock_rfree -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7bec4ae module_layout -EXPORT_SYMBOL vmlinux 0xe7bff2bf pcim_iomap -EXPORT_SYMBOL vmlinux 0xe7cf34be poll_initwait -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7d68af1 unregister_shrinker -EXPORT_SYMBOL vmlinux 0xe7df55f5 mmc_get_card -EXPORT_SYMBOL vmlinux 0xe7df5bd1 nlmsg_notify -EXPORT_SYMBOL vmlinux 0xe7e0b1c7 freeze_bdev -EXPORT_SYMBOL vmlinux 0xe7e48e10 send_sig_info -EXPORT_SYMBOL vmlinux 0xe7ebb03a sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xe7ee99a2 fput -EXPORT_SYMBOL vmlinux 0xe80f19e2 param_ops_ullong -EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe82ddabc blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0xe8521e56 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xe85ab826 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xe876e34a d_invalidate -EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss -EXPORT_SYMBOL vmlinux 0xe88626c1 security_d_instantiate -EXPORT_SYMBOL vmlinux 0xe88bf8f2 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xe894219a pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8c3eff7 pci_get_device -EXPORT_SYMBOL vmlinux 0xe8c936c5 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xe8e3e602 __scm_send -EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 -EXPORT_SYMBOL vmlinux 0xe8fb902a scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe918e69e dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xe939ca83 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xe9430589 generic_write_checks -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0xe9773746 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0xe9b004df pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xe9e07c8f elv_rb_find -EXPORT_SYMBOL vmlinux 0xe9e2d311 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xe9f43fac dcache_dir_open -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9fc1174 sk_alloc -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea0eef0b qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xea22ae8d tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xea400cc7 passthru_features_check -EXPORT_SYMBOL vmlinux 0xea464d7e pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xea6c643a kernel_sendpage -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xeaa464f8 inet_frag_kill -EXPORT_SYMBOL vmlinux 0xeabd27c4 devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0xeac3b56f __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xeacc06f7 fence_signal -EXPORT_SYMBOL vmlinux 0xeacf5c74 km_policy_notify -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeb0d56a6 netif_rx -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb42b5e3 swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb4d4d51 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xeb5eabfd mmc_start_req -EXPORT_SYMBOL vmlinux 0xeb6556f9 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xeb87cf6d tty_port_destroy -EXPORT_SYMBOL vmlinux 0xeb8fe06b compat_mc_setsockopt -EXPORT_SYMBOL vmlinux 0xeba381e9 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xeba5e9d5 nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0xebb18f34 skb_pad -EXPORT_SYMBOL vmlinux 0xebc3396d generic_update_time -EXPORT_SYMBOL vmlinux 0xebd052e7 param_get_ullong -EXPORT_SYMBOL vmlinux 0xebd554cf tty_lock -EXPORT_SYMBOL vmlinux 0xebe23140 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0xebe8e6bf fb_find_mode -EXPORT_SYMBOL vmlinux 0xec17ae3d dev_uc_sync -EXPORT_SYMBOL vmlinux 0xec2d17ea d_alloc_name -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec5edda7 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xec7e5d34 of_mm_gpiochip_add -EXPORT_SYMBOL vmlinux 0xec9d3ba9 d_set_d_op -EXPORT_SYMBOL vmlinux 0xeca25b60 kthread_stop -EXPORT_SYMBOL vmlinux 0xeca77861 submit_bio_wait -EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xed18ef2f input_reset_device -EXPORT_SYMBOL vmlinux 0xed433664 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0xed441b18 tcf_exts_change -EXPORT_SYMBOL vmlinux 0xed55e035 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed61b960 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xed685215 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xed6e55b0 ip6_frag_init -EXPORT_SYMBOL vmlinux 0xed73a541 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0xed7a971d sock_no_poll -EXPORT_SYMBOL vmlinux 0xed81af52 simple_transaction_set -EXPORT_SYMBOL vmlinux 0xed965c7d scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xed9f2c7c tcp_connect -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedcb16e9 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xedcfa7c9 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xede176c5 inet_recvmsg -EXPORT_SYMBOL vmlinux 0xede8e237 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xedefd7ad inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xee0743c1 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0xee08a8f9 ping_prot -EXPORT_SYMBOL vmlinux 0xee118f29 vm_insert_pfn -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee33fe5a param_set_ulong -EXPORT_SYMBOL vmlinux 0xee43b816 lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0xee60b38a blk_stop_queue -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee7f430b ppp_channel_index -EXPORT_SYMBOL vmlinux 0xee815192 of_root -EXPORT_SYMBOL vmlinux 0xee81cb23 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0xee88079d fget_raw -EXPORT_SYMBOL vmlinux 0xee904096 page_follow_link_light -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee9a0e4b netif_carrier_on -EXPORT_SYMBOL vmlinux 0xee9bb85c vfs_readv -EXPORT_SYMBOL vmlinux 0xeea9b8b7 vga_tryget -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0xeecc3962 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xeef1223c of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xef36cde6 uart_add_one_port -EXPORT_SYMBOL vmlinux 0xef7a86db set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xef9c8fec arp_xmit -EXPORT_SYMBOL vmlinux 0xefbd1175 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xefc8ed68 get_empty_filp -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefd333c6 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xefd52080 compat_ip_setsockopt -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefe19dc5 sync_blockdev -EXPORT_SYMBOL vmlinux 0xefe9b544 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0xeff6dbe2 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xeffb577c neigh_destroy -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf0193e24 padata_alloc -EXPORT_SYMBOL vmlinux 0xf0545959 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size -EXPORT_SYMBOL vmlinux 0xf06ce0a6 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xf075b5f0 pci_iomap_range -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0a344fd flush_signals -EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xf0ae4c17 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xf0b09fc7 poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0xf0ed3933 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf0ff245b blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf10b3765 pcim_pin_device -EXPORT_SYMBOL vmlinux 0xf1411c53 nvm_register_target -EXPORT_SYMBOL vmlinux 0xf145a1eb touch_buffer -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf14b6072 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0xf16f1da7 dev_uc_del -EXPORT_SYMBOL vmlinux 0xf1718e46 secpath_dup -EXPORT_SYMBOL vmlinux 0xf193fb54 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1982af4 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xf19fa3fa generic_mii_ioctl -EXPORT_SYMBOL vmlinux 0xf1afc81d sock_i_uid -EXPORT_SYMBOL vmlinux 0xf1c61a26 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xf22901df ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf27dd632 mii_check_media -EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xf2a0459d lg_local_lock -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0xf2a2dd4c __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xf2b5fa4c iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xf2bd2dee tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2d4780c tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xf2df05af xfrm_state_add -EXPORT_SYMBOL vmlinux 0xf30b1dfc security_path_truncate -EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf3357352 mmc_fixup_device -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf3791134 sock_create_kern -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf38f2e4d max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xf3986b06 acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0xf39b8d8f amba_device_register -EXPORT_SYMBOL vmlinux 0xf3a426a4 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xf3d3b87b dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3fca23b iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xf3ffe9da blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xf411e235 security_path_link -EXPORT_SYMBOL vmlinux 0xf41b9ba3 pci_find_bus -EXPORT_SYMBOL vmlinux 0xf42937bb xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0xf43550a9 devm_clk_put -EXPORT_SYMBOL vmlinux 0xf44cee4d iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xf46d2fe0 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4835f92 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xf484aa28 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0xf49fd341 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xf4a3d89a __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bcc878 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4c8d8d2 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xf4c8fd7f rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf500f1ca inet_csk_accept -EXPORT_SYMBOL vmlinux 0xf509ea1f __inet_hash -EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xf52b04a5 textsearch_destroy -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf5543737 udp_proc_unregister -EXPORT_SYMBOL vmlinux 0xf55dc983 scsi_device_get -EXPORT_SYMBOL vmlinux 0xf56fc193 skb_pull -EXPORT_SYMBOL vmlinux 0xf571ec43 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xf57296a7 bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xf57df64b lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0xf58c1104 uart_register_driver -EXPORT_SYMBOL vmlinux 0xf58d9d1e __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xf59b69a6 tty_write_room -EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set -EXPORT_SYMBOL vmlinux 0xf5a2bc42 __getblk_gfp -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5e7e99c blkdev_fsync -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf606c5f1 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0xf60f373d scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xf610707f __skb_checksum -EXPORT_SYMBOL vmlinux 0xf617da80 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0xf61c7ced fsnotify_put_group -EXPORT_SYMBOL vmlinux 0xf62008da find_inode_nowait -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf63bbd1a lock_rename -EXPORT_SYMBOL vmlinux 0xf63d17c9 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xf648bdd3 key_reject_and_link -EXPORT_SYMBOL vmlinux 0xf6552667 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0xf6567da3 key_put -EXPORT_SYMBOL vmlinux 0xf6652ab8 proc_remove -EXPORT_SYMBOL vmlinux 0xf66b9c73 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xf6718a2c key_link -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf6a139f7 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6cf51f3 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xf6d0776a dev_get_stats -EXPORT_SYMBOL vmlinux 0xf6d07954 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xf6e3e74e inet6_bind -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f0ffed _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf7069dc4 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xf72b3e82 generic_fillattr -EXPORT_SYMBOL vmlinux 0xf73a466a splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xf73fd637 seq_vprintf -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio -EXPORT_SYMBOL vmlinux 0xf7778b95 fasync_helper -EXPORT_SYMBOL vmlinux 0xf77b6e1c set_bh_page -EXPORT_SYMBOL vmlinux 0xf77d6001 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xf7822b28 dummy_dma_ops -EXPORT_SYMBOL vmlinux 0xf78d735a nf_log_register -EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0xf7b0695a mem_section -EXPORT_SYMBOL vmlinux 0xf7cf4598 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xf7d7d9d6 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xf8011f04 compat_sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xf80d138e nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf836593e dm_register_target -EXPORT_SYMBOL vmlinux 0xf840c3a8 update_region -EXPORT_SYMBOL vmlinux 0xf8425a96 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xf8522b21 dev_notice -EXPORT_SYMBOL vmlinux 0xf8819757 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xf885266a pci_reenable_device -EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header -EXPORT_SYMBOL vmlinux 0xf8975bae neigh_for_each -EXPORT_SYMBOL vmlinux 0xf8a30b13 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xf8a83c88 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0xf8ae07af mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0xf8bcb305 dma_find_channel -EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0xf8dd8706 serio_bus -EXPORT_SYMBOL vmlinux 0xf8df9210 skb_copy -EXPORT_SYMBOL vmlinux 0xf8e398fc memstart_addr -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf8fa6853 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xf8fbaa90 put_disk -EXPORT_SYMBOL vmlinux 0xf91d17be scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0xf9224a0c i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xf937a3de mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xf93d0659 of_get_mac_address -EXPORT_SYMBOL vmlinux 0xf94d3056 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xf956c339 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0xf95a79b1 revalidate_disk -EXPORT_SYMBOL vmlinux 0xf95fbcb1 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xf971b318 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xf9907211 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xf99da5b8 iommu_put_dma_cookie -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9a93814 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0xf9b98967 blk_init_tags -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9dde891 wait_for_completion -EXPORT_SYMBOL vmlinux 0xfa23ea04 amba_driver_register -EXPORT_SYMBOL vmlinux 0xfa25e6d4 blk_init_queue_node -EXPORT_SYMBOL vmlinux 0xfa3097ff of_mm_gpiochip_remove -EXPORT_SYMBOL vmlinux 0xfa3d7034 vfs_writef -EXPORT_SYMBOL vmlinux 0xfa47465f ida_simple_get -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa63c9a8 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xfa6835f7 cdev_init -EXPORT_SYMBOL vmlinux 0xfa7f400c get_io_context -EXPORT_SYMBOL vmlinux 0xfac6bc79 param_get_bool -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfaed8159 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0xfaee8ded path_nosuid -EXPORT_SYMBOL vmlinux 0xfafe59ef mmc_can_reset -EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent -EXPORT_SYMBOL vmlinux 0xfb046746 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0xfb12486d sockfd_lookup -EXPORT_SYMBOL vmlinux 0xfb2b582c jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0xfb4c65bf iget5_locked -EXPORT_SYMBOL vmlinux 0xfb4c9973 save_mount_options -EXPORT_SYMBOL vmlinux 0xfb5c42d3 of_get_min_tck -EXPORT_SYMBOL vmlinux 0xfb623798 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb6bffae locks_free_lock -EXPORT_SYMBOL vmlinux 0xfb710b8c msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0xfb73adc4 tty_port_init -EXPORT_SYMBOL vmlinux 0xfb763807 kill_pgrp -EXPORT_SYMBOL vmlinux 0xfb76f3d2 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfba95235 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbe8ff5e cpu_online_mask -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc0f7160 blk_rq_init -EXPORT_SYMBOL vmlinux 0xfc158c48 pci_map_rom -EXPORT_SYMBOL vmlinux 0xfc1c40bc of_get_cpu_node -EXPORT_SYMBOL vmlinux 0xfc34ead3 brioctl_set -EXPORT_SYMBOL vmlinux 0xfc3926d1 km_query -EXPORT_SYMBOL vmlinux 0xfc3e17a8 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0xfc44b6aa fget -EXPORT_SYMBOL vmlinux 0xfc4b6d0a __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xfc4c7222 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0xfc52047f __wake_up_bit -EXPORT_SYMBOL vmlinux 0xfc52a48d pci_scan_bus -EXPORT_SYMBOL vmlinux 0xfc52f4f5 of_get_next_child -EXPORT_SYMBOL vmlinux 0xfc669546 input_flush_device -EXPORT_SYMBOL vmlinux 0xfc7d2ecd scmd_printk -EXPORT_SYMBOL vmlinux 0xfcaa2118 bdget -EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0xfcaf619b pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xfcb1e9da iov_iter_init -EXPORT_SYMBOL vmlinux 0xfcb598fa bio_put -EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcd1d4ef mutex_unlock -EXPORT_SYMBOL vmlinux 0xfcd277ec scsi_remove_host -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd085b17 pci_dev_put -EXPORT_SYMBOL vmlinux 0xfd235808 pid_task -EXPORT_SYMBOL vmlinux 0xfd4a2ce6 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0xfd5237cb mii_ethtool_gset -EXPORT_SYMBOL vmlinux 0xfd68fee7 vfs_iter_write -EXPORT_SYMBOL vmlinux 0xfd69b75f inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xfd71c8ec dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfdd24272 dquot_transfer -EXPORT_SYMBOL vmlinux 0xfde6b312 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0xfde866c4 md_reload_sb -EXPORT_SYMBOL vmlinux 0xfdf47e7f __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfdfc4346 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0xfe0b180a mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe797cac jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe862725 inet_stream_ops -EXPORT_SYMBOL vmlinux 0xfe877e8c input_event -EXPORT_SYMBOL vmlinux 0xfe8f6fdb d_prune_aliases -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfeb696b1 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xfecc92e1 lookup_bdev -EXPORT_SYMBOL vmlinux 0xfed26007 sock_sendmsg -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfef0df91 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xfef26c67 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xff033e11 kthread_bind -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff1f6fed blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xff2a9cf4 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xff7f5f31 set_anon_super -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff91cf5c of_platform_device_create -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffa06103 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xffab184e blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0xffbec94e tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xffc593d9 skb_copy_expand -EXPORT_SYMBOL vmlinux 0xffcc0b3b nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xffce4b19 cfb_fillrect -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xffde8743 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0xfff1a005 simple_rename -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x284a6ced ablk_init -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x4525a7fa __ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x8bcfb427 ablk_decrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xa8637123 ablk_exit -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xab30d71c ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xd625548b ablk_set_key -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xe4a27165 ablk_init_common -EXPORT_SYMBOL_GPL crypto/af_alg 0x03495f8e af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0x2533a521 af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x3c7b79e5 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x4c38d02f af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x5144b4d2 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x5c00137c af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0x9a43e5ac af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xb954f060 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xcb39de78 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0xcb3f9df4 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xf0b3a833 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xe3d3d5f2 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x2ec3988f async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x82b8c782 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x0ad5b7ba async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x9a63c6fb async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x02f44543 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x2f77dcac async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5e10633e __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf3f811e6 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3c596984 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x420066be async_xor -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xd1c58d39 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x9f5c9257 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd4c3b985 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x99f98c9c crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xf5268d45 crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/cryptd 0x358b0ba3 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x4b1285a6 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x536021c2 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x7fe06558 cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xa8493dc8 cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xb091cb75 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xbcf77fbc cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xda9bc746 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xe48dcec2 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xeaaa57e1 cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0x79e0c199 lrw_crypt -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/mcryptd 0x0839c595 shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0x0f4eef08 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x48f83f85 mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x4e3a7112 shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0xccd06e86 mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0xd01fd63c shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0xd6095c0c shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0xed69dd7f mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3161963e crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5c909cdd crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xa865caa9 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xd7518b32 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x7f76f7f3 serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6b61f7dc twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0x783739c8 xts_crypt -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x00891ace ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x09658a80 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x12206134 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x17630d79 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2600a1d6 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x29bf1183 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2cb89334 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x39bcd8c1 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3e49bad3 ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4b9db8b1 ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x664b0e71 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x74083dee ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8c2d5d08 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa2bbd0f0 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaa4f0b92 ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb0d8dd5c ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb2981035 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xba6b5861 ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbdc84500 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc18d4d42 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd9af059a ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdef79dc3 ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe376b465 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2acde6a8 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2ee3897f ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5609e49c ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7b500b75 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8898fa9b ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x912d6739 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa61eec7a ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb5e4a852 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe17ffa09 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf5245268 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf68abcb9 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf9b4b275 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfd32e2a2 ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x6b8dc47a __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x39bd3aa2 sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x26437b52 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x26b38b47 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x2c52a7c5 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x37c13bc9 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0211031e bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x037676c6 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0ce92d5f bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1e108578 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x332e74e7 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x37872756 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3dafb3ca bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4c0558ce bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4c7a9e39 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x600c8c19 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x604688bb bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x60f8e67f bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6368f148 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6a374cd5 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x83ba700d bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x85323ebe bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8a403bab __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8b91b4d2 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x94f9d17d bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa02fa71d bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcc46c4fb bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd0b8156c bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe944a16c bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xff8b8ee9 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1ff61ea0 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x299e5a16 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7e6fc41e btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x955e444a btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb5b091ec btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc5c2a499 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x45945047 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x45db7868 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4a8ee4c1 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4db71ceb btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7e0aa224 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x83aa523f btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x874f4daf btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8aa0f0b1 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb65a87cf btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcefa1558 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd4801914 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x00803093 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x07212909 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x59b9f5dc btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8093322a btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8e92502c btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x990c2158 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9961484e btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc367c916 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xeba177af btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf28e9503 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfab5ecd7 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xae3d24f3 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd0d3de9b qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3ce37e67 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x53d6503d h4_recv_buf -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x043fa35d clk_disable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ab2e762 qcom_find_src_index -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ad28e9c clk_rcg_bypass_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f4159b0 clk_byte2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2d97e15f clk_is_enabled_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3b0b58e5 clk_regmap_mux_closest_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x53f95e39 clk_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x54028875 qcom_cc_really_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x573c9445 devm_clk_register_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x612214bd clk_edp_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6156bb25 qcom_cc_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x669bd1fd qcom_find_freq -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x67ae803a clk_rcg_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x709d9cf0 clk_pll_configure_sr -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73964fc2 clk_dyn_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x77c457fa qcom_reset_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8c4dbdbe clk_branch_simple_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8d53d96e clk_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x90b53166 clk_pll_configure_sr_hpm_lp -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x999e1e71 clk_branch2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x99d2c773 clk_rcg2_shared_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9a5f0698 clk_enable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9e2e91a1 clk_rcg_bypass2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa553795e qcom_cc_map -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaace56b1 clk_rcg_esc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc7994798 clk_branch_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb0c5248 clk_byte_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcd0a83c6 clk_rcg2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd25fd154 clk_rcg_lcc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe703bcad clk_pll_vote_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf1f136dc clk_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf69c2f55 clk_pll_sr2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf93e315f clk_regmap_div_ops -EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x4513523b bL_cpufreq_unregister -EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x6a3d0999 bL_cpufreq_register -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x1970fa27 ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x101269ed dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x91b74d39 dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb379f798 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xcd5cc8bf dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdbbf68c4 dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x1520d35e hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x318fba71 hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xaedd2349 hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c2057ff edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0cf8b9e9 edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x11760fba edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1967855c edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x21082f4f edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x255c050e find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x40cc179f edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x44348cf5 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x53b6d78f edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x56f0bc6f edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6c9bffd3 edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x904db353 edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9421dd4d edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x943f895d edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9a0b95fd edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa6d999ac edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb9cdf260 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbf8fb1df edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd4cbc447 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xde71819d edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe898c2a3 edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xef48d129 edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfd19cdcb edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0xe342fbf5 get_scpi_ops -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x022c2f03 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x279c638b fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x83af94d7 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcbd91dbb fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcd6997f3 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd5057897 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x695cf44e __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xe6828040 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x53eca228 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9791a770 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9bfb6df5 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa663f6de drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa80e01f5 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xba564147 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x1be0bb75 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x3d0dbbc2 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xcaaf4ed0 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x10060b65 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1a26287f __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1cdea72c hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1d0401d2 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1d1badf2 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x22358e5a hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x28c9dd46 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b8e4bde hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2ba593ac hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2e5fcb1e hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x33f8ead8 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x348539e0 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x46da6710 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e830656 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5054f551 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5171cbcb hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x582cac4b hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x687794f3 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6a9f1d38 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x757c4147 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x78f93522 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x852c238b hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x937f6a44 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x97691e8c hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x997825a0 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9d4ffc77 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9ea40bf6 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9fab54a8 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcda8da03 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd214a9b8 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd346f58d hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdb0ab2a9 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdebfa7ba hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdfc6bb96 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xec1c71fb hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf4c7365b hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x1d47293b roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0d4cc52b roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1e8c0a6c roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9ed81074 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb0916d08 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xde4b0045 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf9d4860a roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2cebe8d7 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4d750c9e sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x66f1d27f sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x673747c9 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7837c01a sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x833a4bea sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x97f991da sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa879b968 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb8e7fc5f sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xb20e64b2 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0077c82e hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x16e33ef0 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2459c98f hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x50970708 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x627ad8fe hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x73092200 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9390a3ac hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa3094f60 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa352e238 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb358251e hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcb854ff1 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdacdf594 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdae02c5c hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdb30f588 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdf0e05ba hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe486fa96 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf2d6d5f8 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf8e8db7f hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x593773a7 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x5971a25b adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc3dd5db2 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x074eb68d pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0ea30fcd pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x27878e91 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3a726409 pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x72060d27 pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8489ed4c pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8a89d7c5 pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8d83bebb pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x98b79628 pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa218c8b9 pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb0485950 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbf9d5cf4 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xda6ba332 pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xed3b7878 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf9383c26 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x040582dc of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x120838f4 hwspin_lock_register -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x49155679 hwspin_lock_free -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x5a95f328 hwspin_lock_request_specific -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x7d3b2485 hwspin_lock_get_id -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x8cfabfbb __hwspin_lock_timeout -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xa0724fc7 hwspin_lock_unregister -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xaf2e2c16 __hwspin_trylock -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xb68ec387 __hwspin_unlock -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xf7172fa1 hwspin_lock_request -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x26ef7fd9 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x352dccad intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x772b039e intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x84c4088f intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8b17d8cd intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xcc760534 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xefdc5171 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1dea9455 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x378d0d37 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3839ae47 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x533b1229 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x94629bf2 stm_register_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x47286488 i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x84b95d2f i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x8a0d6051 i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xd78db290 i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xfbcaca9a i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x68dddb39 i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd48b2b13 i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xc6eb3c91 i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd911a84f i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa7aa7e69 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd5ec6819 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xe99e017b bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x27d46bb8 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x39cf0884 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6da7f805 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc58e20c8 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcc9a6503 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd4dadf2c ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd7bec983 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdeba7142 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe6022736 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x1120a383 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x583afc0e iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x0b97032f ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x625d8e50 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0d4e36c3 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xad526536 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xf994effc bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x296e041f adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4db5650b adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6d300921 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x898c5e15 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x905813db adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9e0b0907 adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xadf81e50 adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb4610c86 adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb767cff5 adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc78788d7 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd4825bf4 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf562b397 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0e97fa77 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x178b836d iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1d6c79ab iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2df4e9c4 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3061022a iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ad85c18 iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b3e2517 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b603444 devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x48db04c7 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x508f2660 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x538b2961 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x597d9485 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x721a404f iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x85dfe6be iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x877a6561 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8969127b iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x98b0b090 devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9b7bdc72 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9ca5877f iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9d7ca78f devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xacb69280 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaeb645a4 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb99f4dee iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbb4db512 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbc4b26ad iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc374bbdc iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc57e4229 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce00e208 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe54011a8 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf16e8bd2 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf9e75d66 devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x357d0fa2 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x6ea3d0de matrix_keypad_parse_of_params -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xfb24dc3a adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x001f8a4b cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x7d8e19e6 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xc373d1cd cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x2662bd09 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x82025050 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x9ef65ca1 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x8ff9e60a cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xee545484 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0c179bd3 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x63c66b06 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xca9c8f04 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcbfd67c2 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x32810d1b wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x470fc3b8 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6dfff16f wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x70296994 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x83996e7a wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x89c892ac wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9b3ee828 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa155f1f1 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb4c3b014 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbcd9345c wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbcebecab wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf9758cc9 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x040a22d8 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2a5ecf41 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2c8987e6 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3c448d38 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x492f0717 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x505c6586 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x91dbc5ab ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9e2edc9e ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9e4dac73 ipack_device_add -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0abacef8 gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1e9173ee gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3db967a6 gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x588bd29f gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x74366b32 gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7adf5c73 gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x80a6e231 gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x83b091ad gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x842e818a gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x84dcdcc2 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa80876cd gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xaa289551 gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd0075fa2 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd5e1430d gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdc145702 gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xefa95cd7 gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf7c30be3 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x698866e8 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x73f5b28b led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x8a034001 led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x95bda676 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xad12efa2 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe337fd8b led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0104561f lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x15cce837 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x22642b82 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3ac29581 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x566cad20 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5f3fe3d9 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x74eaed23 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x77c3c13d lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8c0d70fb lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x924a6005 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf4665c85 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x01d04176 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x03a63a66 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1d544d4a mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x23d2440c mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5ded17e2 mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x745aea84 mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9403ece4 mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9b8f5462 mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa45a463e mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc1abcbb2 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc2b764d5 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc7c4fd05 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd53b859f mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2e68f76d dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x31712c08 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x906fa53f dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x92e61a70 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xab29a6dc dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbac0269f dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc6772424 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdd3c3b5e dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xec56f329 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x557915fd dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x233a12ad dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x66df5563 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6a575313 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6db7ae06 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8a359683 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xef310ebc dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf23c0354 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x18c70401 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x49580f61 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x439379b9 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6d7b132f dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x776c31fd dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7a9e51c7 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xdb88f4c3 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xdf2ce570 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x827a42f4 dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9f624559 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdf016f5d dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x057230b6 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x081bdcb7 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x44a5303d saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5ff80a58 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8810c3e8 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8b1ebb3d saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9fb56644 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbcf9394f saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbd05fbd4 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdb62aa53 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0c3b3e0e saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1ba9031f saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x45f4033c saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5499de9c saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x77e65e99 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x785afd99 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8ba1fc84 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x04a0f05f smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x05c77e7b sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2191e9fb smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2426b944 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2a9c4861 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2e923a48 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3bfefeed sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3c39c3a5 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x65b2a0d0 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9ced668d smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xba513b92 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc203a7da smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd60e9c8d smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd823091c sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe3d82852 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe7452bfa smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf9d78a03 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xa3df3bda as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xa6957f10 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x42829360 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x0ca10b33 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0x1a1c25f4 media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0x1b5cd631 media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0x3f72749a media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0x469f5821 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x4fae7f6d media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0x5148c607 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0x71f41272 media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0x7a9deec8 media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0x9269d378 media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0xbcf2ca8e media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0xc216840a __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xdf4a1106 media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0xe122f436 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0xe26f2e7d media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xeac1f1c5 media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0xee042b2c media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xf06caa48 media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x0ac73a6c cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0d514214 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1d0ef5a3 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2a0c7110 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2b4bd7e3 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x34e1f129 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x53891428 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5d163eed mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6a15ffb1 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6cd877c6 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7726f289 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa93cea73 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xab543d2c mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb08a21ba mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb22147e1 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbb324aee mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcc108089 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcf145469 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeb4db38d mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf8dd532b mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x029934ee saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x21959ab9 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2c821d07 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x368df440 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3db362a3 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x45dc9c23 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4b6f1c65 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4fa99fde saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4ff250c1 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x51222c86 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6c94ebcb saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x741e4bba saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8938d347 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8dfd0df8 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x92f9f8ae saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xacd0eb48 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xaf027106 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc97b1ccc saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf7d99f73 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x400a0ae9 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x486049cd ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4cb04e69 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x824b06f2 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9e0e3dfe ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xea0179a8 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf5f05711 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x04d1189b xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x160ae86e xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x237d853c xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x30d79a6b xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7e194e74 xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb42d076c xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfd1cdc0c xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x6ec49690 xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x2e984553 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x716bf877 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x086580d0 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0945f339 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x36727aa8 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x391dd94f rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x52d03007 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x68142215 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x869139b6 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x86aa2ff2 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x935a249e ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x962022fa ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb58137ac rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbcfddeba rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc1b41c55 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc7b54d88 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc9faa84f rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xccadddbd ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd82e7748 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe5fe48c6 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe600a406 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x565a3c53 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x086148e1 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xafd5b41b mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xa21bd7f4 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xc4a2e9d8 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xe853323f tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x3f875a41 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xa26af9bd tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xc0615c8a tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc994d233 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xf92b611a tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x10a5cb44 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x2566d22d tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xe0433885 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1cd37acd cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x21e089a6 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x45a084d0 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x54830dc4 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5b8cc1f2 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5bd2c348 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6cc85430 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7925e5be cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x85ed35ee cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x92403d49 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x96c8fe75 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9fe418ed cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa5491f2d cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaa596b80 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb1b90889 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd8e1edc9 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdc2b59e2 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe8948448 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf39eb210 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfdb95f31 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x50c172fc mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x65bcc55b mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x081bad3b em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0ff9e132 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1d43ed81 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x26ac4553 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2a9e33f5 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2da32b51 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2ee284cd em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x325788da em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3e2a4665 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x47198366 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6657d5e2 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8a6e6af3 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x969761fa em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9deedc32 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcc7ca16f em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xde113c53 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe6f421af em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf3d8c0cf em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x3cdefff0 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7a35cc59 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdcae8f30 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf8f95eb6 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x76ccaf71 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7ddfa39a v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa19e1b9d v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe7393377 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe9d02d98 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf340b010 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x609c29de v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x98d4254b v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x07819d54 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0df097cc v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1227a7d0 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15f98446 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1fc802a8 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3067d230 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3a818c13 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3b18906e v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3bb604e4 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x41572247 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4b2b4957 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x52eec6ea v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6229266e v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x65cb87a9 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7327633f v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x77345c6d v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x81c582be v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x842c797e v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8a51dcd8 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x964d09a3 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9b24217b v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa706f0f6 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa97d1255 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcfd9fa4b v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd3e60168 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe69f6273 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfd735f3d v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x06766a22 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0e63683c videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1c863078 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2514bd2b videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2bc52222 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x30cc11be __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x323e8009 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x34573d7d videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x47a652f9 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4ee88765 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x50ba719c videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5461937a videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x59b0a0e2 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x70c879be videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x89844a03 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa0ba2c69 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb563ed07 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb843046b videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd19588f4 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd24983b7 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe02ed23c videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe33a4a2b videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe5435837 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf7c87445 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x17cd6ee4 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x5ce20439 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6750ba33 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x68c6fc4e videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x07380785 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xaa88bcb5 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf891e56b videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1eb5a05e vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1f560133 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3082d6e5 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x376d2957 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x457ce395 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x570ca1a3 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x692af637 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x80aab420 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8ef30cf5 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x98251cf5 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9f308d97 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xab45ca89 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xab932552 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd0bddc23 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xda0484de vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe910f3a3 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xed5f0066 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfa29195b vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xad0716e0 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xcb702f5e vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x1cb79f9a vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x3da10fa9 vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x6bf85abc vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x029cf36f vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2abf372b vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2c1ded06 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x31590781 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x378bc06c vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x485d00ae vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x53dc8cfa vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5b2233a6 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6167802b vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x629b788e vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x667ae9b6 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6fb6f48f vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x704b1bc2 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x74e98ca2 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8a10c39b vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9059e6d3 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa79cd10f vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa90e7fe0 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xab10f614 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbc130977 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbfa9f9a0 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc130d879 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc3f06543 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd0b698fd vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd1284509 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd2ad0ad0 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd90fc3df vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdb527ecd vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe24ca904 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xeb4bdfab vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf18a3c5c vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf826dbdc vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x691bb7f8 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x07ba5afe v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0dca2f45 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24d7bce4 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3c788341 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x45d8e11f v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47e3d4bf v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4ef1f6b0 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x515c80f6 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x670b75f2 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6eea57f8 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7e394468 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x802ad990 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x86ced0e5 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x89e663ab v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x91f39ebf v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa14da223 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa588792b v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9d998e8 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb877345 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbca1f22d v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc843cabe v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf26fc07 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5550f85 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdd500408 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe02e1fd3 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xecec1559 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf564519e v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfaf08f3e v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfdc87df5 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x3724808d pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xa7ed3a97 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xffcda9b8 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x20fc7886 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x297cd5e5 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x680b75e6 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x76ef0d25 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7a73cdec da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8eb8b7c3 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc44b6bbb da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0da0102d kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x153eac6b kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x40c4c7be kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x60c1072f kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x656b0237 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa2f1209d kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xdaae1754 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe35853a7 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x74aa0355 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xaffb9b83 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xf06f864a lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3f1c61af lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5079bfee lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x609b8d91 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9d24596c lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb00390dc lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc7b6613e lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf5772dea lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0b4c7514 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x61c373e1 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x76675993 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x08791f0d mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1a76ea65 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x287ebd82 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x397d0867 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x48c3542d mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x82d5723a mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3b4b7804 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x488370f8 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x499f917f pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4ff2c353 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x73c372bb pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x73ee998b pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa93041b0 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xab734258 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb233fdc6 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd8e7a4f5 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfb13f625 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x1a810227 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xe1e0f890 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8a64df45 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xcc7b47bf pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd7e761d3 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xfc6ceb5e pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xfe5ec51b pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x04eae2cd rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1a44b2df rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1b3ce8e6 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x25e4cd50 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x292253ee rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x359caf98 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x44562d7b rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4620b745 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x47162b87 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4d38f53b rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4d74fc0a rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x64e9af17 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x67953c80 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6b3ef65a rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x76a42a6f rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x770b8a7e rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x96f82b3c rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9d386621 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xad49f16f rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xad96a96e rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb6dfb7e1 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcacfa1f1 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd1c5c17f rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf0cb4abf rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x07bbe5e5 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2aa59592 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x468c0a6f rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x594ff35a rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x69c5cdf2 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8b6fd792 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb0082adf rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xbbefce41 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xcdfa3e0e rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd1bc4d34 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd861c9e2 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe355e827 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xfba0b33f rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x14409ae2 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x14e6bdb7 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1f1f0a4d si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x27a66fd9 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x37b1c1db si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3ef031e8 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5ae532ef si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5c30033d si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x68adfa9d si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x69301129 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6a05f109 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f8e4b90 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x80ffb45b devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8d078750 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x971b273c si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x98f4e0f7 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9994a7ac si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9b33ecde si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9bb16a5c si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa0a26f0e si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa6805ba7 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbabb3de1 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbb3373c3 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbf8779ee si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc2f4e25f si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc6685315 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc9750a1e si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcc6a305d si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd38ade67 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdbc26498 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdc539d7c si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe2eb77b9 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe303f25b si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3648481 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x59a4bdc0 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6b041bf9 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x75bc0b1e sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd2208137 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xdce2ab3b sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x77289dce am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8201bdce am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa28dc309 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc2b553d6 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xaa53ee83 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb894b8c2 tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xbf3c3c1f tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd7b9f13f tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xaf70878b ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x7f9691b4 bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x87a7b7aa bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xa5d745d8 bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xafa6f7be bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x363f1fe7 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x518e8b14 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc0e23636 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xeb12f8a4 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0329a0fd enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1802e31f enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1ec8a3a2 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1fe8092f enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3a61150e enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x475da701 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd7dbb1c4 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xde50a93a enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1b9dad28 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x58833049 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8cf7abab lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9ecd9779 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb19cf34b lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf1d6893c lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf7ccab9e lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfa2a178f lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x611799db st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xe73dfb4f st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x2e74d1d1 dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xbdd5d8c3 dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xcb90c02d dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0eac5381 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x14af43c9 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4c7f579a sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4ce89b03 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x59824e09 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5a3bf734 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6e6f7d98 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x707b7755 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x96076451 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaa3cbf5b sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb8a0753c sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc78b62fd sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe29898ea sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf234138e sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x11757740 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x13181470 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x469d92d1 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4a4f8506 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x57ca7011 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5d3cec80 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x650577aa sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc5481743 sdhci_get_of_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe79b5802 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x4462acea cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x8655ac94 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xb97c897c cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x4e5ffaaa cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xbda6352c cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xc3f47efc cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x372f7d0f cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x1bc187f6 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x27d3482b cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xc0c0bb77 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x07a7f55b mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0811c870 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x19aff397 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a28cddc mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ee1f250 mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f40c30d unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2292184e kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x249c072a mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x270b195c mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2c8a8e73 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2eebc2cc mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x36fd2616 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x378e181a mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3ed5776c mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x445f47d7 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x46a7584d put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x493a8df7 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4dddf0b0 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e40d190 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e6819a6 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x60bfea99 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6777d34d mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x70456f7d mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x70c31adf register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x89f1f932 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8cd62d9b mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa51917ed mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7f2155f mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa9298a6f mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa5423dd mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xae256056 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb78e30d2 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbad5aa70 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbb615ac8 mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xca3d5aa6 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcf89ce15 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd66c1b6b mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdf54d1ad __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf1da8242 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf2bad55b mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf5001748 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff6102b1 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x045086ce register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x0de9014c mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x1f9f282d deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa5c20fea del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb011ed66 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x6a6e44f9 brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x9f24f83b brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xb8e8c9f8 brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x154a0e22 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x85576421 nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xa288dc56 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x4540a523 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xcad4c802 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x9e9152c1 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x09a461e6 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1918939d ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1ceecac7 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x21ce1314 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x427c6d56 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x587b7e58 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x602bc88f ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7020160e ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9d02bb5e ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa0b7ccfa ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa3672d29 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa6162261 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfab48923 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xff39047f ubi_close_volume -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x404b44cc arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xb9a395ca devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x09e71651 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x23707285 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2f5dad9d unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd9d5d213 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf8577c1b c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xff15d133 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x21e36b05 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x330bc02d can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3985e841 can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3d45066b alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3de8e806 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6931045f alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6e39daeb can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x72c48efe can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7b0b744e open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7c9ef89e free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x84fd7cd2 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8df83754 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8f512427 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xaa2ce118 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb7a9e112 devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc85811d9 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xea034dd2 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfe9cf6bb alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0d9f3790 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x6b9b72be free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc8af857d alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd37d9b33 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x364d4871 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xacaa66e2 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf6e0b8e9 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfb5162de free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x84bc9390 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xf0d3d56a arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0becd26a mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cfaec7a mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10375805 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11b82202 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12193cc7 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17cde612 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17fccb90 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18555bee mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bfb4fef mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d5ebdfc mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e2e3a77 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ed7b8c3 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2087bcb0 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20c87560 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x226a5aa7 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24ff78bc mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25c36e0b mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b16f195 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2da78164 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2db48e7f mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e2cd4e2 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e7752fa mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ffe00e2 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30c7050b mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x313a94ad mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x326db4aa mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36ab64f4 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a1c280f mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e2dda28 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f05e2fa mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fee4b4b mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42cc3ac4 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b1a8c63 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b45b882 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b8bc9b1 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e10e699 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51bee3f7 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52aa8539 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x552f4b3b mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57d1a201 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x580d0614 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x587453a4 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58c9d4fc mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a8ea40d mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d020cfe mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d40130d mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d62c8ab mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e3153b9 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ea8d6f6 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6461e63e mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6884cc04 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dbd3eff mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fd0c566 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72474bee mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72d8dc87 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x796eb958 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fa425bf mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82326122 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82a0879a mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83515b37 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x842aa21b mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85775616 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x863e8209 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x881ad0e8 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x889d9e68 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a110e26 mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8daa6e88 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dea7009 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fbddc1d __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9031ca07 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x903fc6ef mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91eb7773 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95855d88 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96dab992 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9835af08 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x992abdf8 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c44afef mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d1ea4cc mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fcd9e1d mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fd97679 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fe851af mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa138e6bc mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6a94e66 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa766e6ab mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac4b94e9 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xada03f51 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf6027ca mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb29a52f9 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7e94818 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9a6396a mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba1c69b2 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbc12471 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc612d34 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc22c7fb2 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc387b393 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc478e2f2 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc66ed1e1 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc960a5a mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce23c57c mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce715726 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcff68dfc mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1295360 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd184105c mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3bf4222 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3f1322e mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8a421ff mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9683b36 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb9acd43 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde9513e1 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf4805fc mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfefa6da mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0074a81 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe201d872 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6fd6f4d __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7276aca mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8eb943f mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe94d5c5e mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf47896c9 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4da1fb1 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf690c120 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf77416cd mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa77bc0a mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc5d5182 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff5027bd mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x004a9170 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x075fb221 mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a59bb3d mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11a53a6b mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x168d5786 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16bb52d1 mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x176fc1da mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x184cf7ab mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x191cd94f mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24479e23 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x303224bc mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36a4a05d mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43422c50 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ba51718 mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x529b56ed mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57b73f8f mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x636dc5e3 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63c2cb88 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69408ec1 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7051c20c mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x734aaf47 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b34efc2 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f327039 mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f53951c mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f2b248a mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f34fc9c mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9154e847 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b200b6c mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1a5b0b3 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4860032 mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa293c53 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb18170fb mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4914b6f mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbaec8d8 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcadb9eb mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6d598c4 mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc92c4c35 mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce95452c mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcef2ad52 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2ed1c62 mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5df7676 mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe716fca0 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe77ca49b mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed2aef8d mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1d1bf2f mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x4e5ad9e5 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0f4db3c0 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0fe758fc stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x375b7f4e stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8af968c4 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x056f87cf stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9e2ede28 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd0e9c4ac stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xdf5b6f32 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0923b1c0 cpsw_ale_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x14f861e2 cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x23065d56 cpsw_ale_control_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x39503260 cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4d89d234 cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4fd2c214 cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5cd77c2e cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5fe09f8b cpsw_ale_dump -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x66f84ae5 cpsw_ale_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x738c0ea8 cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8e30d332 cpsw_ale_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9213e2e7 cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc5d196ed cpsw_ale_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xcd8ac793 cpsw_ale_control_get -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd630b782 cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL drivers/net/geneve 0x155030cd geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/geneve 0x7767f913 geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x02c26339 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0a648d76 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x9e6715ca macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf333ae26 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x060e7014 macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2c4ca3cb bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2d40410b bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2ee1df28 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x583ca9eb bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6839a221 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7a8f8821 bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9f0e07d2 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcc026790 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe25b7db3 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfbab5ff9 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x09ead6cd mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x77bccceb usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbe1b9932 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc5def287 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe1916ba8 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x237bd8a6 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3a8c9dea cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x749c4e34 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x93e919de cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb24b3ab2 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdb73cb2b cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe4bcfc12 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf2529ce5 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf3a76087 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3e741287 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x76af4a0a rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x83e7376d rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb96aaa28 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc13d4386 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf5228d6d rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0f5c8e5f usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x24e339eb usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x36733295 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3714028b usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3e08b5b9 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x44788e19 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x527d9cfb usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5d0ff4d1 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x68e991e4 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x75ece0ad usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x78f1cde1 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x796e75e9 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7a6d2f51 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7dede6be usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x80016bc8 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x88ec6c24 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x92773c5e usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa3680ffb usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa4212b1d usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa433da14 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb3c628cf usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb4e9ddbb usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb56baacd usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd10d2bfe usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd163becb usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd18145aa usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd72713af usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdcccf117 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdfb90c76 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe587cfc0 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf3ad6486 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf5aa817f usbnet_open -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x5206b9a9 vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x9a9e0ada vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x09d4d6e4 i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x10bec5c6 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x162e718e i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1e019c98 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4aa11eb0 i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x504521d5 i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7b3c3705 i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x82309117 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x82829fd6 i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8ed63e56 i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xae05933c i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc7a90368 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd317c77c i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdcca3fb1 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe87d6693 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfa6bc6a2 i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x0f586e96 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xb79de074 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xbb1c49c7 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xc4326bf0 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x7b8ee0cd libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x2c199fa7 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x3304b7a3 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x64674c83 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x6aaef7f9 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xb301af15 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x014ec469 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0dceb69e iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0df63bff __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x216d960a iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2b117fd0 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x369972ca iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3db3dba2 iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3f56a2e2 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x472e0490 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x47e5051f iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4da50812 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x529b9432 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x56845365 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c1c18ab iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x621e8bdc iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x63bcd115 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6f5441b2 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7ab0e0f7 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7b53f22f iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7dde5b58 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8da16094 iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xafde7dbb iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb3e19967 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb5834377 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbbce4ff9 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc5014db6 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcf869eca iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdd0b45e8 iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe3d7f3b8 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe7a4a9e9 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfa914b67 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x24f5bb85 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2cc23e8d lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x33f26a92 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4d1f235e lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x63231d17 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6d8d3bf2 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6f00694f lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x756794a4 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8506d53c lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x969f02a4 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9f45bb67 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbb7d3f1e lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbda70c47 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe52719aa lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xee4faff2 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfff9e66a lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x04da1330 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x3fc40128 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x5ecf3bae lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6f220c77 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x84ad3961 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x9b9757ec lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xcce4e791 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xce6b1132 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2f72e4e7 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4158b25a mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5408f9f7 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5be09d6f mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x791df670 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8693fd5a mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9f49f538 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa5eecd19 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa9e49261 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xab1d3f70 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb085ab3f mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb770ec6e mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc8027c3c mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf0d3610e mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf2d8483b mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf3905b79 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf454228b mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfe6555fe mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xff8bf049 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0d1835e1 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x188d0ece p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3032c98b p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x458d4916 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x49c95bd3 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x5c6334c6 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6a17eee9 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7559d3a7 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xce00bfbc p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15a61299 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9bff9fe9 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa349fcc1 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd84f182a dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x00b04fe6 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1569c030 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x16ee95fa rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x31b730ab rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x40058974 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x443b60e3 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x66813800 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6686cb03 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6f79dd64 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x70226920 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x74bfeaf9 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7873fc20 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x82535006 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x86370230 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8b5f35bd rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8fd8c159 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x93679a8a rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9fa81013 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa2f56e92 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa9e7cc05 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaa250550 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xabc1af06 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xad14f6f3 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb17e0b8f rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe8763ab2 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeaaaa100 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf141826b rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0858f941 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c9dc433 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x201a8563 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x213f2876 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2b455c64 rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2cb16d45 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x34178325 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37d97940 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a3c3b64 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e003173 rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52b1dc33 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6835a363 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8184efde read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b6d42de rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb19502b2 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb49ad90c rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xefe76acb rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf243255d rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6c15fcc rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff975f1f rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3f198e09 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x60923770 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7e7f2f35 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9e4ad1a0 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x03036b29 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x072adaf8 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0997dbb0 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0d316aa7 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0e296f16 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0ff48df6 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x18d3897d rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1d86ef11 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x21bbfc2f rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x35751fb0 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3882c87b rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4702ace7 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4762eec4 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x51d7d7b1 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6110abf9 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x653a1674 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6b25af28 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6c3eeec2 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x715e4027 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x76e6f1ab rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x864df446 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x87b793b7 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x936c0be4 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9a43af12 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa93aad89 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xab188d06 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xba09d175 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xba8e1bbf rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbaa4943e rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbe6991fe rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc15fc146 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc1e69e57 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc792a8e0 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd946557f rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdb57b46a rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe9fa074d rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf4c3789f rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfded523f rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x15c40f5a rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x188c86ca rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3a6c644a rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x42c6d29c rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x542f4e82 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5bd68e31 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x81141754 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x830781e8 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xabc3bd97 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb86925dd rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc373e741 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xecce14df rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf1ee5c24 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x001b348d rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x01ca7750 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x025c908c rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x069ce80e rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x06d0393f rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x15e3341f rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x18107255 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x19c045b4 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x36bcca7e rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3f680a08 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4c9ccfb4 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x50f3f48e rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5567364d rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x567c2092 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5ba234d0 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5e85948c rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x615d3725 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x67aa3b9f rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x692a4b85 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x71aa2723 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7659f8aa rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7a2d514e rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7dd54090 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x84acd7bf rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x96b0b9a7 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9757a6ed rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x97c52200 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x984dad92 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa142514a rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa5d8cc0f rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc008969b rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc7e4da9f rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc8bf9ee5 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xca294888 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcb1c91b8 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xccab9932 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcd6debc0 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd2274f78 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdedaddc7 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdf0e93b6 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe33a4bb1 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xead6858c rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xed15495a rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf20a6cb2 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf339ef0d rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf9dd0bab rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x1d720056 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x4ebc2dff rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x77cd0142 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x90991419 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xb6008144 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x08c6c549 rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xb23ede51 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xef35934a rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xf317ef31 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0b95c6e1 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1173567f rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x160224db rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1acf9547 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x200f90c2 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x206704d7 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x55b73837 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x703a9284 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7ade5101 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x87237e52 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb19598fc rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb78199d1 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc17d959b rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd2c96185 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe4672dbc rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf84693ac rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x318ed96f wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x9726c1c8 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd575ffb9 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0b256e3a wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0e710ed1 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b9aab0f wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1fe152cd wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x22b85153 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2e5f9f95 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x32bab072 wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x32facabe wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3a1ab7a1 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x44a3e87d wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5268e75c wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5597a94c wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5a4607b9 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x645ea86f wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x654769c4 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6acd2d04 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6d0610c8 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6e4430d2 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7266a518 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x730f7b33 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x781c2299 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x869305fe wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8a4c00c5 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91a5042a wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa6d28b70 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa9e9979b wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaeffe905 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5ce6dbd wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb65fa68b wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb92558f7 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbf472a8a wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcfeaa1e9 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd65a6d2f wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd6e870b3 wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdc1c9a77 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe63ab16f wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe9625c4e wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xed2b4ab9 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xefdb3f05 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf196c8ea wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf8e5b7be wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa7e5dde wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa922af6 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfcb1e500 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x0e91d82e nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x991447c8 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb786c13e nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xdaffba81 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x061c8583 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x572d15cb st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x676c90a8 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x862611c2 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8a45bde0 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8c42925d st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd22646f7 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe4c47882 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x18cc7377 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x5bc9c43e ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xe19572ab ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x198aded1 devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x5223d669 of_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x6a743f39 of_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x9483f2fe devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xa952ef80 nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc0be9a5c devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xcd1019e6 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xd446d1e7 nvmem_register -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x25fdb39a ufs_qcom_phy_disable_iface_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x26614419 ufs_qcom_phy_remove -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x3e863fd4 ufs_qcom_phy_enable_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x43597d19 ufs_qcom_phy_disable_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x4de79e75 ufs_qcom_phy_calibrate_phy -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x6b245f4c ufs_qcom_phy_start_serdes -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x7ed98285 ufs_qcom_phy_exit -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x821b96b0 ufs_qcom_phy_init_clks -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x874ef473 ufs_qcom_phy_set_tx_lane_enable -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x9099326c ufs_qcom_phy_disable_dev_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xa9384966 get_ufs_qcom_phy -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xaaef7c34 ufs_qcom_phy_save_controller_version -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xc37b47fa ufs_qcom_phy_enable_iface_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xc54bade6 ufs_qcom_phy_power_off -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xdd6facf8 ufs_qcom_phy_enable_dev_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xded57f62 ufs_qcom_phy_init_vregulators -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xf317fab0 ufs_qcom_phy_calibrate -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xf9454933 ufs_qcom_phy_generic_probe -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xf95ea2a4 ufs_qcom_phy_is_pcs_ready -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xffae0398 ufs_qcom_phy_power_on -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x417732c1 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x63d4bfb9 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xc19a116b pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1dd11c35 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x37a544a3 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x79f6e7e1 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xbf6c9b28 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc67dda04 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x45905daa wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4bc4d66b wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7c3ce4e0 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x88b82adc wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa8b2810d wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd6966b32 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xe1cb334e wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00964ff3 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0128a517 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02e5fa00 cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a9fe774 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x13848777 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e9f154a cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x259558c0 cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2668ab9a cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26bdcc71 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2799a36d cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3cfbcb18 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3dd64363 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e2c79f8 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3fccc9a7 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x40787cfb cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x43941a2d cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x482a389d cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x521cfba5 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6732a25c cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x69700a42 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x795e5a36 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ceecf27 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x85798e93 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x89e59244 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x900e6044 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x90218581 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x997ee34d cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99a2cafe cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c443448 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ccb4960 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa1197e60 cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8d619b2 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb9ac8f66 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbc182e31 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xca44f411 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc0bdd75 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc11292b cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc4b21be cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd6db93eb cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda6da3db cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdde9a820 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xde5d8f9c cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0ac3e7e cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfda9241a cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfde47803 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xff56a5bc cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x05083bd5 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1326f3e0 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4630aaad fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4836ce92 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x676edd50 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7077a9bc fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x965d9626 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa6715bd7 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaf83ad8c fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb00df705 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc0b46095 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc5e647a0 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc6a61a1c fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcb1bf35f fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xce4e2e07 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd5de4c4e fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x87f2835e iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x8ccd2a49 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa57fadd0 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xaad2b6a7 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe140d842 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf3d1c1d3 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x017f21d4 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0606601f iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x06db50f6 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13b21ad9 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x189e3cd6 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x18c95bbe iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x34e50fa7 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36481887 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x391b65c7 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40b3574a iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4566e874 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4730cf70 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x53258df9 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f6b454e iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f94db5e iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x638393f7 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6620a757 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69a30a13 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7250ce4a iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7990cfd4 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b869d5b iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x88e562ea iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x914221bf iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x92f90cf8 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x98f49866 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa161a082 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa2843772 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae1fc8f4 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3fbf007 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb88ac547 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc039b0a6 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcdcad7e3 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3bee82e iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde822bb0 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe36b3247 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab6b475 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeacaef81 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xefe3144c iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf9970f91 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf9cf7ed9 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa02af53 iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfcb01fab iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0547c6b4 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x22fd180e iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x335b71fc iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x57841813 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5cbc3d15 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6211d831 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x783326cb iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x93771e4a iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa3fb63f8 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa41472dd iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa92a9a0f iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xac42f6ee iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbb45abb7 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbe5cb471 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc89d8276 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd7e5334d iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdfac6d47 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x01957ad8 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x02f1c66e sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0442306c sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x13d301f4 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x18d36cc2 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x20f21145 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2cc0c7d7 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4377bdfe sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x48b950a9 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52169ef5 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x54ad8eb3 sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x57951096 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x64a9cb72 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6a4911a6 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x73827886 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b300b9b sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7eb1b192 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8143ec97 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x82018e4a sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8809b909 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ab19342 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa0b68e37 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd040e53b sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf8449008 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0437f19f iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17f52b70 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x192ff18e iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e44a900 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x233efff4 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x26281730 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2df8a642 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e823721 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x32ab418c iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x34d8acbb iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3aa132eb iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d18c41b iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5262682c iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55a7e9a2 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8453aeb3 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88133a8c iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a3e415c iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c961c83 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x93c59451 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x947e77fd iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x992ad806 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d846a42 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e5c584e iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ffc3e63 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa350dbd4 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4a9a0f5 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa61f8103 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac4d4fef iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad096829 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4b76d23 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7cb5597 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc1c39f87 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc47a8227 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7940285 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd68a4145 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd82fc145 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2c14123 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe89be258 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf51bf8e1 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb20c1ae iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2a625c2a sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x300e958f sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x43ea8156 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa18eb2cf sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xb415c8e7 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3d8923b0 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4df29aef srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6d287b42 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9df5c01f srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee223303 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xef62867c srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0ac0d658 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0de588a1 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x39406c4d ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x86edc2ed ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x8fb50dc5 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x9e21441a ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe558c514 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x23a8ef9c ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x67c9538e ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7040113a ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x9c3ce9d8 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xacd0fef4 ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc7ed0539 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf50585cd ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3fdc3e59 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4fba7ad1 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa50bdf5c spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb771c9db spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcae5ea91 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x07805ea7 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0cfc6ffa dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3a892b58 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5db85d22 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x077dc8e6 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0e74b2eb spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1445c783 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x20bd2291 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2dd35d6b __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x35a390e6 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x502f1fa3 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x563083f0 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6568911c spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6d8ebe14 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6f07e433 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x80375f8b spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x83637dbb spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa22eb604 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbf1ceaeb spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc76d6b57 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xca393394 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf0fd6f68 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xf2426c64 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0932f3fc comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0e32d829 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x154d15f2 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1730d342 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1991cae2 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2d448f03 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2e45d7b9 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x31878054 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3fcacbe2 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x46b9078d comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4952112f comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4bba22a0 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x601e82fa comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6c0c1cc6 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x74729f5c comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x75053b28 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x96af3b7a comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9c5912a7 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9d6bce2d comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa153b360 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa9f9cd40 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaa78a1e5 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xab9e70cc comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xadfd68ab comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd405dc1a comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xde82d430 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe4489a87 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xea5efa4a comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xed59f0a1 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf1eb59f1 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf3f3635f comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf96ab2fb comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfa9ed7f4 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfbe24c01 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xff4df81a comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x28717fa1 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5cd28571 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5eee70af comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x670f8e6a comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x75e428d4 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x921eb531 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa78c3fc7 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf635cb80 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x09f1141d comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x6867a0e7 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x84925714 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x850ab829 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xbe08d85d comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xec7e97c0 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x4a33adb6 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x43d61c06 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xf37cea94 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x2b28b2f8 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x15fd2d31 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1786d582 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1ec1255a comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x21b3c82d comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x41ac9538 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x53a173cb comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x76fed139 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x81e4a787 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8afd028a comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc9ce309f comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd02f592e comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe96207e6 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xefdebb8c comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x635e1391 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x792db9a1 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xfa52bac8 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x45be3769 das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x02fe35d6 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0e5f5ee9 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x37886d3a mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4546908a mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4749f01e mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x58c549fc mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x722f251f mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7fbbb6d4 mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8e0066f6 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9d88cea5 mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa638a04e mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb97c6510 mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc74a0220 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd77b904f mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd881e813 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdaef0384 mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdccea7b1 mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xde23e648 mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe7ac8064 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe7fc02b8 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf313b75a mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xa39d4e25 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xe409b7cd labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x4dd749ac ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x61c2ade0 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x66ba83df ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x989e7f73 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb1584594 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc587a07d ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xdddd9047 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe21f7a14 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x28497e19 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x2e39e9f2 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x301b6c8a ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x538a8954 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x59746f91 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9ed45fcd ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x2687e2d6 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x2bb3283c comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x33db35ff comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x6cb953aa comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x713ed4a1 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xb53ceedd comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe4ef7008 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x0238bd99 fsl_mc_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x0c95cb18 dprc_scan_objects -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x142ada6c fsl_mc_io_set_dpmcp -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x1a945d5a fsl_mc_object_free -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x373b24d4 fsl_mc_portal_free -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x44288515 fsl_mc_resource_free -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x452bfb72 fsl_mc_object_allocate -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x53d7cd1e __fsl_mc_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x685c48ba fsl_mc_bus_type -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x6d48e82f fsl_mc_bus_exists -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x74767d26 fsl_mc_resource_allocate -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x8941f119 fsl_mc_portal_allocate -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x8f8064d9 dprc_scan_container -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xc185a455 fsl_create_mc_io -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xe6f7f770 fsl_destroy_mc_io -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xe7b754ce fsl_mc_portal_reset -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xeaa2eabe fsl_mc_device_remove -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xfeadf031 fsl_mc_io_unset_dpmcp -EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xff4b53e4 fsl_mc_device_add -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x5035a356 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x08261a76 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x26d0064d most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x3095a4ba most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x46ec5199 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4c6d53d1 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6152270b most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6faaccce most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8f143540 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9128cae3 most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa52c8fd3 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe8d33767 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xeb2c625c most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0a9d9ba6 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1b5efcaf spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1b8405aa speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2cf27f72 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4a893dbb spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x56355aa9 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5f7680f1 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8771f20d spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x92761834 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb9c481d9 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcb802ac5 spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xebf81049 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x7aa0cdbb uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0x80da5c2d uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xa39bbcf7 __uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x91772be7 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x95b30a1c usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x60fabfac ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x78fec0f7 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x24a7dfcf imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x66b76c74 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd4efc83c imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x135f624e ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1f8abd5f ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4c3d53ea ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x932698b5 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9905db0c ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb8f3645e ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x16edb841 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x23ec5735 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4da4d0b7 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x529f5b7f gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x57d942d2 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5a6a0b7f gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x61d40f6d gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8184cb3b gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x89566b93 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8ba56cb5 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x926e82d9 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa79112d5 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc204cb02 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe55cd8c7 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe6d59dc2 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x0f6d173b gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x13e0916e gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x044c92d4 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x227eb03e ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xd1c7d17d ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2f86da90 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3abd8b42 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3dfe6530 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x48b28f2e fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4e8363c5 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x62a870d6 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x65e3f844 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x797d879f fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x830a2cea fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa11e96ef fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb999a94f fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdab1c53e fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe7b21887 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf9a98d3b fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfc8e6dda fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0d00df4e rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2c05609b rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x43a3deae rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4f24b1f3 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x60fdc866 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x85d523cb rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x871dfe4f rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8e7fc5ed rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa24e6de3 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb755e8bd rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc664613c rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe28fcb1d rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe370c284 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf7db3c4f rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfd0bfbb4 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0556d124 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x08594976 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x17c0deed usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x20e5dc9b usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x262d7aad usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2b5681bd usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3531a5ef usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x36b5b2b2 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x391273a2 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3d23f0f3 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4669c451 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x47d09724 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5803656b usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x583b4996 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5bd93813 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5e3f66fc usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6e8c2e02 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7bebbf02 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x868e0e75 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x994bc358 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa1dfaed0 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa86fd0a7 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbcaf84c0 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc238afcc usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2a96907 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdec1707c usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe213ceae usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf05411be usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf72fbf37 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf8e26ce4 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x09f12b15 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1a1de8ec usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1fd434bc usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7394d720 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8b437797 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x975b58e3 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb42ccc usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce61c708 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd2bb5e42 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdee27ae5 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe6eea801 usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf013c998 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf6c5bc88 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x3d6e808a ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xd5c35eb0 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0ef22e1b usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x294390b3 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4aed5a2f usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4bc8821d usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x60bac121 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x64d8dcec ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x98258b95 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf045be5f usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf0b5e13d usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf6ca8dd9 musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xdd14bb25 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x28245c70 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0d78f3ab usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1b49c51a usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2945cb65 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x29650cb0 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x39fac445 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3ad9cc89 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x46b3ee01 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5552495d usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5f8e2855 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7e0a75eb usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x85fd3ec1 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8fb561a6 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x95158999 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xae2d08a7 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb6879d91 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcc2523fb usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd22edabe usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd6660ed2 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd74280f2 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe336d455 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe5ad0315 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x02141f0e usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2d3bd711 usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x32d20bb3 usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3f061996 usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x40ed69f6 usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x443a8a31 usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x47b69d35 usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5323c9ab usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x696adb74 usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x75ac872f usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x76dad1eb usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x79e68556 fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x87511de7 usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x947cc806 usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x99958b33 usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9bfbb38f usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa90c5ecf usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb39e9893 usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xba147cef usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc3d5b664 usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xca9f5e66 usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd163f83b usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xeb040ce8 usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf5d38c02 usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x092a1e08 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x14289f03 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x22cc7d64 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x24b03ad7 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x32cf5db3 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x39d7972d usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x689cf4be usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8cd33739 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa21b4b66 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa9b2e0f4 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd8a014b2 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ec7ce0 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x2d999970 wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x30d5c2ed wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x62d6ae4e rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7ba57523 wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x97249d28 wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x9d61f40b __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf26b8de0 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0cf3e00b wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x23d85543 wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2ee59273 wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x361e3931 wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x38de2905 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5faaf22a wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x910e7c62 wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x91d76793 wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9d90f123 wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa36e00be wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbdc351ff wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc6db0b46 wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfd26de8b wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfd9bd59a __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x12278d41 i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x361f90b8 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x42ff8101 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x1127aa21 umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x15b24db8 umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x479ecf8c umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x833d8b0c umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x83d7752e umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xabb88c33 umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe1bd78a1 __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf8c2e6a7 umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0756172a uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1342d4a7 uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x167088c1 uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1dc3e491 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x21783bdd uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x240f97c9 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2b786d65 uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x306985c7 uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x307fa91b uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3a2a077a uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x44bc4e04 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4add1fc7 uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4bdc7584 uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x59e87116 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5d592653 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x65606716 uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x73e2ec6b uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7f53b164 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x814836bc uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8f54f79e uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x923e551d uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x986925bf uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9a272b80 uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9b2a55a5 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9d6d5f8a uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa039d14a uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa20446aa uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa684c5c7 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb3452bde uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xba87f8d9 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbd7094f0 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc47d1e1c uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd53d61f0 uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe08ae7eb uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe7ea1ec0 uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe965d2a2 uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xec62df8d uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/whci 0x97ade7ab whci_wait_for -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x75a80ee8 vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xb85769cf vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xba2ce0d5 vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xdc25d938 __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x24c913e7 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x776a8835 vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8127a384 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x85eb9c45 vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb35b1368 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf7c86b43 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x1c9cfb99 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x9bd1e9bf vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02c79fb2 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x08627c44 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x166d005b vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x176b0fdd vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1c4c50c4 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1e52f6f9 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21d06bef vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x246d9285 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x25026320 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2b1d2ebb vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2d315b7b vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36316064 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x466af26d vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f8af3e6 vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x62ef9c0b vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x665e7181 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x72f0c2f7 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7f7a93b0 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x94e96ee3 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x95a1ea52 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x97b6805d vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x99024eeb vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa64bf58c vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb5e7cb3b vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb9019a7d vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbb55e124 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcfb4fdda vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd7fe8c4e vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe91b9698 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf3b2e7aa vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0c908e1d ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3d846b6d ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x654ae428 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6b5e050e ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6dd0773a ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8119ed4f ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9ba8f890 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x13a04bf9 auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x501c3cc1 auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5c27b4d5 auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x79e23aca auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x820f80e1 auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x87c7d596 auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x96a3c44c auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xdbad5480 auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe69c66cd auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf60211c9 auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x5b8ad242 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x73056508 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xec6f4a3e fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x5a40418e sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xf896186c sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x196b49bd w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x39e1de68 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x427b1161 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x52c5e4bd w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5570d21d w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x68a9b330 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x75796777 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc47b5781 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xea7cabb9 w1_write_block -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x6f50bd35 xen_privcmd_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x1f96ca7a dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x648ce6cd dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xe4df7cd7 dlm_posix_get -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x48e584b6 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x74a6cf1b lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8cd67267 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9d8ecfa0 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb9fdc7d5 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc7b359ef nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd0c7d83b nlmclnt_proc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x008f35db nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00b95fb6 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x022f2931 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0240e819 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x032ad76f nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x071a2527 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09b34395 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ac4395c nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e401cb4 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x127fbaf1 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x147e89b0 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15659d79 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16c0ad74 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17426187 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x178e6c17 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1891e8f1 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x198feef0 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1be9319d nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c276a76 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d31b41e nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1da1f3ab nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20ac836a nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b33b720 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cf6675b nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d477940 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e887fb1 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x302e9156 nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x312055ef nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36455dbb nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3981d326 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ae7f3ae nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3dce10f9 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42113881 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x455c816c put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46943f4e nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47e4941b nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48e48424 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a8cb981 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b396d0d nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d50165f nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dff8d1c nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x587ca63a nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x589dcdce nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a72f7ce nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fb67dd3 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fce520d nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x641a2f71 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x675932c5 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68d47b0b nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a33098b nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e0b6cbc nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e4eee30 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7068781c nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73d279a1 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7827b4b2 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ac8c4bb nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d3714e5 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8546e161 nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87473723 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87d8ba77 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87e901ae nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c44379c nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8caad3fd get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9001f80a nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92ac3dc9 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94982dea nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9722c4cf nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9753d719 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97940791 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b3506f1 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bda521d nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f3748ac nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa061e9a0 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0bcd052 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0c02b5c nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa239f1ca nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2c2416b nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5f721b0 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa63ad323 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa715d6e1 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa74c6cb2 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8de4d01 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacc554a5 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2a67abf nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb799b7aa nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb81e30ab nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdbae9d1 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe36dba1 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbea3e442 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbeac68ac nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0a6dc47 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6a3134a nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9dfc60b nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb239e7d nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbea383f nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc081a86 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2f80e1e nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd313ec3a alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5622d26 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6a076ba nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda1780d2 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda9630ef nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc093ed4 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc158a26 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc81202e unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd3d9656 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1d57a6e nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2544933 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe31d2a0d nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3aec4dc nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4bcd2d8 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6ad5d52 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8cb09dc nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe96f2730 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeaced964 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1ddbf42 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6309ef9 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf700ef10 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf70a0165 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf816ac6f nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8b275df nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7e7957 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff09fbf1 nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xc9950e13 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02bb3082 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0887b33d nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09db726c pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a2413b3 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ee73edc pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0fb35cf9 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1021997b pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x130332b9 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f7dd416 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22cc85cb pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2376f49b pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2754d344 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a83f8d3 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37a4b5c4 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e01343c nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4164d9ea pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44366e69 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44e91f41 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f133615 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51232a13 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59a0277e pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59a7bdd2 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a05644c pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b16a545 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x705dfc4b nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x784b81c6 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a57b493 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b18d8c3 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8466396d pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x910fd50b nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9312a8be pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x964ceef5 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99dd50a7 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b6f13a3 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f380ca5 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa48915e3 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4c2ecf2 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab85cd5c pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5c407d5 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9386c06 pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb945ce7f nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbaaafd1c pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0c3930a pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4e74273 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc1c5dcd nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ac3565 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1f53739 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd31accd2 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5560497 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd96d9c82 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdbf9f6a8 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8d5684a nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xefdb4d0e _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4c9ba96 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf55ad4a8 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf736a431 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe5f35fb nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff741148 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x75df6987 locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xb4bb0075 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xdf87b8f3 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb0b5d541 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xf7f26aa2 nfsacl_encode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0b4455b7 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x100ff1e7 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9495e4db o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb0eb1e14 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd352e73d o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf08a1cf8 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfeaea520 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x261036b4 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3f96144e dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x49c0bfec dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6069b12e dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6b152317 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9a8765ff dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00e4eed6 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x36dbd459 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc4910ca2 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x347090e4 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x5984a294 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xca61d6e1 torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xa1dd0468 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xc4e8a7a4 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x5fc1d6e5 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xe3765de9 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x3dafa258 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x46c118ed garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x662bdeee garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x79c41177 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xe706b1ef garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xf2987040 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x44e1b5af mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x7b7897ab mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x8b5f5cf7 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xc2b06efe mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xda9804bd mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xefa27bce mrp_request_join -EXPORT_SYMBOL_GPL net/802/stp 0x620012c2 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0xb2caea3c stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0x00ba953f p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xb3cea7a4 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0x40cb2cc7 ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x024e7726 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x07a4edfd l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0b4227a2 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x26bd60cb l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x666c0e43 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc2f98f7b bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe76752c9 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf69782c1 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1153a850 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1399468d nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x507c07f3 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x51e50fae br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa235f1ee br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa7474043 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xba1de682 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf33edc3e br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x0734fe0e nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x20974471 nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x055bafcb dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x05ea9ebd compat_dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x11053c6c dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x12b3806b dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1457b084 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1829acd2 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d1f0a43 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f00ad96 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f0cb705 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2c65210e dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x372e3e26 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3b9b8c97 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x467d811c dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4c7645ea dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5a784ff1 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x609abaa7 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x64e8ebe0 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6eec1b76 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x737fe466 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8a29ca24 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8e72d558 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x922bdabc dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x943ef8f2 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9666267f dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9991a15c dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9d0eeec9 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9e71de9e dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa007524e compat_dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb3618317 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb95d3e58 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbce9241e dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc81bb1e8 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe36f7a0c dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf079d024 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf7f46645 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfb493e99 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x02dfbf2a dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x164a9446 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6f5c2ace dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe78bfe1f dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xec34cd2e dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfbbd854f dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x3e914d0e ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x63907846 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7addaf64 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc80dc167 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ipv4/gre 0x0809af2b gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xad060b10 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x06cc942f inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x31e50794 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4c14acfb inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x529b519d inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6651f197 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe86d8cce inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x2f409470 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x11e41b11 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2c972b58 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3a994814 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4f766bcf ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5231a85d ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6d4fce15 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7b24be79 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa418e2e1 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbd8d7101 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbeb9ab97 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc7f08f32 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcb2b68fb ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf4c11089 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf69624d9 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf9d8d40a ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x4110b36c arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xf518712c ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x9de8be28 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x56818b39 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x6120a25d nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x74467103 nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x7a080e8c nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xd177e17b nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x45133b2e nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x170a76b7 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3fb651d7 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9a3e8e3d nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xace7b99d nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb0649029 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x193ea695 nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2a1341cf tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x610213f1 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcd11e4a7 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd4ee0936 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfb0e8c9d tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1038fe58 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7c3ac014 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9db8758c setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf4794908 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2c71ddbc ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4bf66a94 ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9ba39728 ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa855747b ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb78bf807 ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd6fcb778 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe5d23b9f ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x53df3bcf udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xb0effcbb udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xecf6cdd0 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x4bee2413 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x9c20139c nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xcd269147 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x334757b2 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x44a06f8b nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x8851a802 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x8ccf7e73 nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xfd6130dd nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x83991555 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6030a810 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x83442f5d nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8c8c86a5 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa58e8270 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc76bd89f nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xb0d1eb5c nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x045558db l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5464d45a l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x590c2af2 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6ab7055e l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7ed30d09 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x80b3810e l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x80ff6bfb l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x849c4720 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x885ed272 l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x969929f1 l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9aac598b l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9f9e73b8 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb8cded9c l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe4cca64f l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeb37d4c3 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf4d5b585 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xb2dc5caa l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0b406e69 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16e3a63d ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x22241149 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x397ca076 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5b15e273 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6367cb9c ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x70124827 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x78bc4e8e wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x932c57b0 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbc4408dd ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc418706a ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc66a53c7 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xce0bca56 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe057b580 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe7648f40 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x72f10e5b mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xad2df99b nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbe40c115 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfbf7cdc2 mpls_output_possible -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x09283d50 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0bbdf3c8 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x32472990 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3a8e5c49 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3e57f7a5 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x44ae96ab ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fa18871 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x83b864ab ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8ab3ccb3 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb7f798a1 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbb687e36 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbff76316 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcb45fbaa ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe642f108 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe87fb7c8 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf6ea1bfb ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x132e9f76 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x58b8168b ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb0a6e562 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe1a32b03 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x055a2726 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x072465e1 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a419669 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e0f474d nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11eac221 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x161c06e2 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19f01de9 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fd3c6e6 __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ffea943 nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x212e5d22 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x271e7319 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29d73d88 nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2bd48ab9 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2da412cc nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3206d978 seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x339bc216 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x364b8f9b __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b046cde nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c3925cf nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f25631a nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x435ec555 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46edd522 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4902e140 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4dcb1447 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53b8f3a9 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54eff86c nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x561ed8e0 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57b3f292 nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x585ef5fa nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e37cde7 nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6358347b nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6393b1b9 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x643046f2 nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64a30d19 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64adfaf2 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65b1a0ac nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67159cf1 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67c8ac8e nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6974d9c3 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ad673e7 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ad9e65f nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c07ab2c nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7069eaa4 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x717bd4b0 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x739e2214 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x759eed9a nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79d12573 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c134907 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x804e87e9 nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80697388 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83e15de3 nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84f7bb8e nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8aaed095 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8cd98648 nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f821973 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9155df6c __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92755323 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x985ec558 nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6485c7f nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa0bf0c3 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xada65297 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xade42c72 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2f1fecc nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb29cb9b nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdb13acf nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe1f9b37 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2988893 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3cf22ab nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6d4bcab nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcce79ddf nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce2afbfe nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd090c1e4 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd95d32ba nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd961fea0 nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0d40788 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe314d738 nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb579c22 nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef89f2eb nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1003fbf __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa70a2b2 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xfc33f5dd nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x2b15d373 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x1df12616 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0cc1d6ed set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x163f9b4c set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4a51a33a nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x68df0228 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8f9e4fae nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa72dc0ef nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xaeeca3da nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbb14b5ea get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc323e8d8 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdc72039a nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xc921d7ee nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0e5e1db5 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x77795aa9 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x9ae1cd86 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd5543831 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xa6e25ae9 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xb4771159 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x13f03b90 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1cb8478b ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3b6e11e8 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x50461a34 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x87a1a7ea ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbe530d34 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcb48ec83 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xc8d5c374 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x4cf401d6 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x1be07c20 nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x5e719d7f nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x94536823 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xa633542f nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x10f9cb49 nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x30107188 nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3ae6ea54 nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6dd74e5c nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x83f42c43 nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8743de56 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x954e665d __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xac43b9ff nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfc1a48ec nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xe69a9a4c nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xf9390364 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x675b5e0f synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7cafcd3b synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0285fae7 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x03cb6c2c nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1d7f3afe nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x36f10711 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x42a02323 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x44956e1a nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5a8cce60 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e9b822d nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x65ef7be0 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8aef5212 nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b664563 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa4cf2cf9 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9c59420 nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb8254011 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc271e646 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd6146184 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdc54ad24 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x19341f59 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x38c99d13 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x63c0c138 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6af90580 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7c2e5b87 nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x84f1fa78 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf76297c5 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x433e325c nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x88fedeaf nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xaa9465b1 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x25e7fd04 nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x228ade52 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x9efc42cd nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xcc1ecf64 nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x117377da nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x14a34650 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x18c12da2 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x36f5346e nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xa6af83e4 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xe77fda74 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x6a526646 nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x6f2aa35d nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xbc0e1a0f nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x86fa2bc5 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xf3a37a6b nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0fc5420d xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2214d9fb xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x223f349e xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2c56aa97 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x54a6c900 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x567421f6 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5cfdd970 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x660b8c2a xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6a4925c3 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6bbdf6fa xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x89ed67a7 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8a86b62c xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x95e5fc14 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb3f55ba2 xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb409b6eb xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcf10ee35 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcf35561f xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeb357fc3 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xecbb611f xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xe9ef9dd0 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xf156a7fd xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x663987de nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x7e400952 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xffb17f2c nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x2a9f142a nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xcde83d07 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xe5d5777d nci_uart_set_config -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0dd1f27a ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x161ed359 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x57e0e0ed ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb89c6f14 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xde4a82fd __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe40170f3 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xeac11999 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xec1be27d ovs_vport_receive -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xedce970b ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x099e3769 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x0eeef195 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x18af086a rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x1f64ea0b rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x2690f3df rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x33571c24 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x3ada3d4e rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x49f333e0 rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x51932dd7 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x63283241 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x676b3787 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x6bb4a763 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x75de2c48 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x78930210 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x86fda2e9 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x92257286 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xb81e3411 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xbefc246d rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xd1494dc9 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xe1536652 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xe418b444 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xe926247a rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xf6c40879 rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0xff3ef848 rds_info_register_func -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x5840dd98 rxrpc_register_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x9bfde38e rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x64a7ce77 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbce87184 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe6ee37de svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0345f807 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x043b598d xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04942a71 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x051990b0 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0523d5aa cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05a1d301 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07300633 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07c170a8 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09b07b46 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c3459ae rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fca2702 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1303f03c xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x152e6c68 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x173ce6d5 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17e6a4e4 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cfc7be5 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1db84577 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e1cfd08 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eb306bd rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ebd3b9f svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f915520 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x206c1e81 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2103d362 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x229ff6fb rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27271db3 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x279d6467 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28cc61dd xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28f8cc09 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b2d0995 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b341332 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31481cd2 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31dc384e put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x324cc993 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3316d82b cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x342a6b99 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x342fb3af svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x365d034c xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37709bd0 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3852bc5b rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38f2e8d8 rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39698753 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a20d858 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a2ead80 rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a674001 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c1dee24 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d1c7738 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e008938 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40350d8d xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40d63d96 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41302422 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x416bddd1 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4201e117 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4298ab90 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x433b4a14 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44009635 rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4579cf5c cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47ca2ef8 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48d252bf rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49ca45d8 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a408ac4 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c6884d9 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c7f94bd svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c8aee22 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d38ca61 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dfbd1c5 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ee01efa xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f7255a4 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fd9013d xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51495cdb sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55b39dee xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x568b9268 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56de6cc8 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x574ebfc9 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58ec008b rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ae78b64 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b081879 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b0ec780 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f0023bc cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f81a519 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x602493c3 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60fcfbfa svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64c33ee6 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65e711dc rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x669d09d7 cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cb123e9 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ceb5963 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7077007d cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70a842eb svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71a1a601 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x733f4c3f sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7456ffaa rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74b5cc72 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75a75a20 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79b39d79 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b8b7e63 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e8502bf rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ebdbbb9 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8010a4fa svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x808edc40 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82f9f868 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x836f5a41 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x838b3b57 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83b039b5 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85972d5c auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85e3651a rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85f53f3e xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86795a2c xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88dc2510 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a494f51 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b0ebff1 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c90c58c rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cc3d368 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8da47c38 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9180b93d svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92eeeb84 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x970d8b20 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c22212f svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e73c457 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f504fb4 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0720737 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0c13fc3 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0edd074 rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1f6cc11 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa268535e xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3dba085 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4fe2011 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa858b7c3 rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa55afdf rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae42e30c rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb13a0001 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2802474 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb299854c read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb48b236f sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb59a9f50 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb66b176a svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb691aac9 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8cef8d9 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8dfa8ea rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb998ab1c xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbce69391 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbce77546 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd189956 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd4dea11 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdf5a863 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe5ee2b5 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf0570b5 sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf5fdce7 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfbe8a3f xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbff463db xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc18d1c55 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc34f536f rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3a795b9 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5ed0f64 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc66501e6 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6790912 rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc774a4af rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc954b65f xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccfa127d xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf1c46e2 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf54dd7c rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd06d5351 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd42286d8 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd49e727c rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4ce230d svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd57e1e15 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd614e4d6 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd65a67d8 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7056dc9 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8e48867 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc9fdc2d xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd66ffb1 rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdda81f94 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0a6e430 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe26dffce rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2c36756 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8782674 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9542c4e svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9718a15 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9bbd99f rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeab20e40 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedee49cb __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee66cade svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefbc3fc2 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf024da28 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0886346 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf40deb60 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4b3ee08 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4cc5d46 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf53c44b4 rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5d0390b xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf81a7a33 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8cac71c sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf93f643b svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9912511 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9b867ac svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfab569e0 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaefebf9 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd5a89d3 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d902c2b vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x53a13302 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x55247054 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5626ce40 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6eb517d5 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x75d47003 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x99ea0cea vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf15e00e __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb6f33cd1 __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc022cf41 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd597a2ec vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd7a934f7 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfc5dd915 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/wimax/wimax 0x0210c9e7 wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0x24fa32c8 wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x252a24c6 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x2edc5fcd wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0x494883ee wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0x4950336f wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0x674b67cf wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0x8ea1c331 wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc3a3ddc8 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc50758b6 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc8e9a29f wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xcb33f803 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0xcbdc5f18 wimax_msg_data -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x10daed64 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x23e7f2fb cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3077a9a6 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x36b35057 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3f3b44d5 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4861ba59 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4c60db11 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4f361d56 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9cf1e1a8 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc8049097 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdb50793c cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdc12daab cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf54f3483 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x37a03742 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9cc8526a ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xbe4fff87 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfc51bef7 ipcomp_input -EXPORT_SYMBOL_GPL sound/ac97_bus 0x18595a47 snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xd51d8d39 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xf7c8fc38 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd 0x4f2aeb52 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x62a2a98c snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x6cfc92dc snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x71380376 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0xb3a0ab7a snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xc61b69b5 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0xcb9bcd6c snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x31fac978 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x50b98db3 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x546a9265 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x82b0b9fc snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8ce7dbf9 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9cb8bb2a snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc0d32249 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc32a00b9 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcc82565f snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1fd9e421 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x43afd426 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6d1be272 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x74b48d4a snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x95771351 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9773751f snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xaf52202e snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb176855a snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd7308c78 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd924b9c7 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfc745306 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x09982550 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3b2124de amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4cce2df3 amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x716a646b amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8e321cd2 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb69c0467 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf2d350b6 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a02a7f7 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d2a5b9b snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f8170d1 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1007d1ef snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10d5fd36 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x128ee59b snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14ffb884 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x151e4627 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a539e27 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a1e0376 snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e8789ca snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32fa54b0 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37750514 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b6099b4 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d52e1dc snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3dbeefac snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43138fbb snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4982834c snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a99ac99 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4b4bedd0 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4bb3f753 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5357c0af snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54342b06 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e3ba7d2 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f27c370 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61a46b33 snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6535bd76 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d6a9756 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73016ee8 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7447ecd3 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x759c99c0 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75bba4ef snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77a13f2d snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77d21680 snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f0feba3 snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88b602d6 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x890b48c9 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d96eb3a snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f0ee97f snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92e9e0ab snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95fd3d48 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b12f1bd snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d7bf28b snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e28ad64 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e8e3350 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e9b7c16 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa075f40d snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2583e8e snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa472d770 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaed3e09f snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb21ed344 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2ef91db snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbce3c353 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbdf63b7c snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1b9ae41 snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5dce1ec snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc80ad13f snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8f4e405 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcdaa89ac snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2a53690 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb19fb14 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf1537fa snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe3339fc4 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7910dc8 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe88e6fc7 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe99ea1ea snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xef1b089c snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf00f8cd2 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2804764 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5ded6e0 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfab89e01 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x25290657 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x80542829 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa78576c7 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbb2cc366 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbf98ba4d snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd13503e2 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01481e00 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x017007eb snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01afe1c5 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04a0b4e1 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0840f93a snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08f79273 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0aba6c9a snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ae45a76 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0be3e1bf snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cb44afa snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x136e99c6 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1864506f snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x217641a5 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24e72043 snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2534797b azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2826fc96 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29579268 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b24ad42 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2dd03610 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e02eedb snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ffa8e8d snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x330b3169 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3336588a hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3380b49b snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33dc9b8e snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3579e47b azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3733748a __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x373eeaad snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4073bfc7 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4084f0e4 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44ec60b0 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45095a02 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4706953c snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47dad199 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4855642d snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4aebaae5 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cebbba9 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x517b902d azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a39d100 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c7bd86c snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e96f7eb snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x603538d9 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62a8b2cf snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62b5f778 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x656e3522 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67de097c __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6928cde6 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b9224a2 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d08491b snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d13bdbc snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f9b7ee0 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73e6f341 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73e79646 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75ed25ef snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b0a69b1 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e35bcb3 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8077ca22 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8332eb54 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x835bcf9d snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8463681c snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85b20928 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87447dc8 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8808cb99 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b3abb8e snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bc20192 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c310aa3 snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fb17e1b snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9059b27b snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9214a4fb snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94710444 snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95109239 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95119e67 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x965bbcd9 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b624810 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cd458aa snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9dd6c002 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f4cc2be snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f615cfb azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fe91d09 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5671ef6 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6d45318 snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9a1c589 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaae2dd76 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac65c724 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf25bc06 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0649db5 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1ee61f9 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb36c7741 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3cb73f3 snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc12ddb86 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1483f3b snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1cc062c snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6c38039 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc77dc30a snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc851bbb2 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc86c1c8f snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca032d77 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb97c52a snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xced4e638 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf6b04ce snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf718c57 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd050a336 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd09dc26e snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2a83bc3 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2d5a7f1 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd700d745 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8664c05 snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9be3e2a snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9d6b28d snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3e213e9 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4ba50c5 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe61951ed snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeaed9ec2 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xedec51ec query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef6e431a snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3423b2d snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3b30a54 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3bd0da9 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf499ba83 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf79665df snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9acc3be snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc7cb068 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe1d5882 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe6ac4d7 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0d01ef9d snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x125aceef snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x20b86775 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x23a0107c snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x31c1b52e snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x34376b0e snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x357498cb snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5253d7f5 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5aee2900 snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x61aea631 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6bb52036 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6c2e46e0 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x824098ce snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x87923e64 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x94f599be snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa95c29a9 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb24b1f8e snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc1824a40 snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdd8df7ba snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe72fe965 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xff8923fd snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x57418004 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x8498684a cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x125d62db cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x6cf9c947 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x2296a74b cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xa223ee21 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xf16cc67b cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x2ed2e7a2 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x77def4e7 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xbe2103b2 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x001d3085 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5ca803e6 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x600213ae pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x8614ea0d pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x4913795c rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x9249c075 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x92fb1073 rt5677_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x0a842d15 rt5677_spi_write_firmware -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x8d584a9f rt5677_spi_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xd658ccf9 rt5677_spi_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5a353a57 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x72954410 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x74e2a7c2 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa1a2100f sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb3c88d34 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x349aea5d devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x995c9852 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xf0dd76d4 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x92a9c7a6 tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xc417811c tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xb08fac31 ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1f57605b wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xabdcd51d wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xaf093755 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xee84734a wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xadeeea2a wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xcc9ea368 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x62b4b3eb fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xc61cd445 fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x164d4623 asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x59a35fa0 asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x898b740c asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xca89305c asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x4144b098 asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00a962f6 snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x015572f6 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01e377f3 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x028b0390 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x040f90c7 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0611bead snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08c5cdc3 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0afca69e snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bf0c279 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e5ec10d snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e9b014b snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x113e5133 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1180d544 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1522c869 snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x152b0086 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16a873fa snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17e8ba64 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e9ddd78 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22ea6b99 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24b53572 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2590a626 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25f4ab79 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2979f8b5 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29832893 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x299f8c8d snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a58cf55 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b0a061a snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b75961f snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b8c757e snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dcfc250 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e3948c0 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f4ef514 snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x305201ee snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x305599c1 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x306139a3 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36c90c58 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38290966 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a73d6c2 snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b4193b2 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e7f0af7 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40cc2afe snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b7feaaa snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4cc4f79c devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x504928f9 snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x524c158f snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53f9f8fd snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x540adaa2 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x544b0334 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54c31f66 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55274bcb snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59f2554a devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b0d46cd snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b61aaad snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c9696ba snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5dd6b10c snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x627c223a snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x630e2115 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6534910e snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x655c4dd0 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69bc963c snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69e05f84 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b918a77 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b9aa8ab dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c080361 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d26c528 snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x709466d2 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x781d30b3 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d0757fa snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d380ddd snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fa9e0a0 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80b79500 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x817f7620 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81acbf0c snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83dc4371 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84758ef6 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85fddcc0 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89e2beba snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8aa3b149 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d8a7291 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e5efa00 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f697906 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x967794eb dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x977a1272 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97a56635 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99673855 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d1316c8 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ef528ab snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1ec82e5 snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2237cc3 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2434bc3 snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4702ccd snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4dd8185 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa56ed552 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8ab7af4 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9e570f4 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac2b35fa devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac6d20cf snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae7aa4c8 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf6af037 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2b7813e snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb612169c snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6f653c7 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7e4c88f snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc49b256 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc8979ef snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbccaf456 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfb5a65c snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc00ee52f snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1c7a30c snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc25cb662 snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4ec295f snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7acb77f snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7bd81a4 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc8f14ea snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd18180ed snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1935bff snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1bb9368 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4e2f54b snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd587ee1f snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd670459d devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd67e3153 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd70426dc snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd76e094d snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8b84dfa snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda1a3d1a snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb73ea69 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcebf07f snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd4e143c snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde7d4093 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1406b16 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe21e4c71 snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6fab898 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe98faff2 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed3a0c9e snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee5152d9 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0c8ec9d snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf139373b snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2ac1ab2 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4e4d6fa snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf588fa4b snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8073c80 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9333882 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa6c46ce snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfba38615 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfba3fbca snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe82774e snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff232940 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff983698 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x06094b75 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0a10494a line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x15bf470a line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x23b3159c line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3ccedd55 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x609d7529 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x75592800 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x809aefdc line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8cf834c9 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x906809ef line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbaa9a828 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd159ee61 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe5a21b2b line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xed386b2b line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf01b0436 line6_init_midi -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x001731f9 pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x0050da4a __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x0060a9de vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x007f54db of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x00932be9 inet_csk_compat_setsockopt -EXPORT_SYMBOL_GPL vmlinux 0x009ef0ee usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x00a7b514 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x00cd813e xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x00fb1ff6 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x01053667 dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x01121178 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x01567d8a securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x015f3bfb mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x0176fa48 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x018b12b9 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x019a34df mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x01abdedf __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x01afbd09 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x01b8bf5c dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x02126d25 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x0213fc6d irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x0263180d acpi_subsys_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x0279d180 tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x0293bce5 of_reserved_mem_device_init -EXPORT_SYMBOL_GPL vmlinux 0x02a24d84 acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0x02a2af6d regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0x02a3d232 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x02aa2292 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x02d5a392 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x02e584db irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x02e67430 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x0302d826 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0x0303bd46 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x031570e6 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x03275457 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0x03291541 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x032dab8b device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x0345555a ioremap_page_range -EXPORT_SYMBOL_GPL vmlinux 0x038647c5 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x03975558 get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03a8a59e perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x03beb25a pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x03d633ee scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x03dab185 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x03e0f595 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x03fefe66 devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x04090cb2 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x040c1ca3 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x044334df pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x045cc2ba noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x045ed6af __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x046c2e34 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x04722c9d pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x04775c04 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x0478c6be inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x047c13d0 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x049467f2 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x04a6a25b kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04a8b1ae dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x04ab60b6 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x04aca3d6 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x04b969ef debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04fb85fb of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0x05235b3d mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x0537b4b5 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x054cc119 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05573fd7 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x05627fb7 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x056f779d posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x057db067 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x058c1885 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x059314c3 napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x05a6d32e ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x05ad9aac sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x05d8608b led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x05fdf5f5 vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0x06078b15 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x064dd94c inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x0662edaf nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x0679900d crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x06805b0d usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x0688f361 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x0689a4c5 pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x069d69e7 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x06aa3d79 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio -EXPORT_SYMBOL_GPL vmlinux 0x06ee065f xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x0704c287 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x07232047 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x0728dbc7 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x074f4409 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x0752453c fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x076a0a32 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x07853cf7 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0789d610 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07d503b7 usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0x080b3e55 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x080fa905 nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x0839dbd6 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x0848d190 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x084dd671 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x08691fc0 devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x0876cd24 single_release_net -EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x08954889 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x08a955b4 of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x08a95b8c md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x08b34dfd bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec -EXPORT_SYMBOL_GPL vmlinux 0x08c715ee power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x08cc47e2 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x08d249f7 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x08d9075e pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x08eaa226 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x090ba684 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x09474d39 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x0976e2b6 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x09a0d71d devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x09c328f1 clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x09c43b9a cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x09db1d05 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x09dd60f0 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x09ef72db usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x09f2191e devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x0a0808e1 arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x0a0d05e0 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x0a52747a regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0a578a18 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x0a7c3544 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x0a83ef3d scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x0aa41fd4 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x0aa86053 of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x0ab4f55b tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x0ae782ba debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x0af655f9 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b1cc8d0 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x0b1f7965 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x0b260dc7 fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x0b26bd1a __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b3f2bf8 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x0b41a897 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x0b5c0cb6 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x0b6babfe phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0bc0923b pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x0bc6da26 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x0bccaf64 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x0bd18336 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x0be13fff smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c2a6d39 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x0c2c6451 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c38d4ff set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x0c394abb kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x0c4a6ad3 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x0c4cd0c7 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x0c508ff7 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x0c6a0390 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init -EXPORT_SYMBOL_GPL vmlinux 0x0c858d19 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x0cc011b2 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0cc74a0c crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x0cc766a4 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x0cd4e209 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x0cd76f84 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x0ce0f486 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x0d15e196 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x0d2b21b2 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x0d3487c7 dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d4bf69f sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x0d50ef4c usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x0d7700f9 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x0d7c90da scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d8b55c1 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x0d9f7236 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de237cd ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x0df9a326 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e113fe0 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x0e18313e iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x0e266b5d vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x0e2ccb97 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x0e36fd5e do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x0e382f89 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0x0e5a320b regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x0e8352bb of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x0e873685 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x0e9eebb5 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x0ea61577 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x0ee700f5 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0ef5068c scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x0ef67c93 component_master_add -EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f3b9e73 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x0f45dbad dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0f8e9462 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x0f9ad7d9 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x0fcd9706 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x101dc44f __class_create -EXPORT_SYMBOL_GPL vmlinux 0x101f99fa dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x103ab2d6 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x10524829 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x10573188 of_genpd_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x10b4ab19 security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x1108e60e gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x1121013a dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x1135f8cf vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x1142f9e1 xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x114c57e7 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x11a6e873 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x11c4b3cb apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x11caddc7 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x11d9c487 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x1208ea7b devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1236d89a usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x12425927 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x12461d6e pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x12489113 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x1267d747 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x127f6421 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x12b17889 dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x12cf9729 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x12da7995 regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0x12fd75eb bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x130de01d trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x131f3125 ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x13349615 thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0x13370247 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x13552436 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x135dd44a devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x135fee96 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x137f854c fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init -EXPORT_SYMBOL_GPL vmlinux 0x138c6ad9 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x142391c8 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x1430e07f anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x145cba1a da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x146c2cb3 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x14821ef8 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x149940be blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x149f1edc vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x14a10551 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x14a535ac show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x14adcb5c dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x14e074af usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x14f68d3f rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x15160241 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x151ddb62 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x1534bc07 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x1542833c ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x154e3a44 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x15564673 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x155f3538 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x15684a9e fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x156c8319 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x157555be sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x15a4a12c blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x15a7719d blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x15bfda66 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x15e321e9 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x1608934e pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x1622e3b7 crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x165efb44 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x1685ba20 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x16978297 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x169c1d26 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x16ef47e6 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x17202dbf dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x1742f91d regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x174cecc1 tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x174efb6a clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x17713e52 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x178dc088 sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0x1799b77b ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x17aaf6ff pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x17b64d86 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x17d2e1b4 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x17ea3bf0 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x1809afd2 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x180f44c1 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x180fc2e3 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0x1820c40c debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x18369de0 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x1837153a crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1855aef9 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x186140d6 gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x187b0cd2 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x187b7511 dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0x187dc12e devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x18dbe21b acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x18edf7e6 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x18eec4eb ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x18fc39dd sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x18fc60a1 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x190e0d67 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x191d7961 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x19328b9c dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x194359b0 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x196bf85f inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x19749558 pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x197e461b blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x19827d2e usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x198ce0a1 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19d19a14 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x19d2e06a cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x19f0522a __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x19fbe248 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x1a3d51b6 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x1a57e998 regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0x1a6f643d devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x1a709669 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x1a8a4f92 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x1a94a8e0 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1a9c462e hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x1aa97e1f acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x1ab0e79f register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x1ac98f2e tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1ae69d3a sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x1b173f19 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x1b5d6d36 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1bab1e9e crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x1bb396ea crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bfe2f46 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x1c23f41e devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x1c31ae19 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c61f149 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x1c675fc6 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1c78fd83 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c859d9d fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x1c876952 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c8e638e dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x1cade373 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x1cae724d devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x1cb10b3e uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x1cc7b6e5 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x1cc9bded __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x1cf4ac90 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x1d17af73 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d40f60d spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x1d442be5 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x1d4c1648 blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d652735 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d788f2b gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x1da076f3 of_get_nand_ecc_mode -EXPORT_SYMBOL_GPL vmlinux 0x1dae7dc3 xen_swiotlb_sync_single_for_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1dc0e857 wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1dcd0dbf device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x1de6c3a7 xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0x1ded7a60 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x1df6b5a9 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x1dfd4f4d __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x1e07d460 device_create -EXPORT_SYMBOL_GPL vmlinux 0x1e14968e crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0x1e27c6a9 nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x1e383ac8 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x1e3bde00 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e64c76f debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x1e68ce14 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1e7a113e blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op -EXPORT_SYMBOL_GPL vmlinux 0x1e872da4 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e916f28 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x1e9e23fe of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x1ea76994 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x1eb72626 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1eebd7e1 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x1f18cfc5 default_iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x1f2df7ce inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1f51afac perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f95b596 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x1fdfa13c iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x1fecfa27 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1fef2190 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x2006c50c xen_swiotlb_map_sg_attrs -EXPORT_SYMBOL_GPL vmlinux 0x20206a94 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x2045b04e __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x204d22a2 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x20549200 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x206776a8 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x206b6b15 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x20842c21 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x209a3e06 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x20a38608 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x20a901f9 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20abb08f of_get_nand_ecc_step_size -EXPORT_SYMBOL_GPL vmlinux 0x20af7c7e pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x20c85af8 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x20c9536f rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL vmlinux 0x20e1ecf7 kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x211ca02e alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x2131dcb8 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x21375db0 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x21399186 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x21404bac ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x21416666 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x2155f664 iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x215bdb91 tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x217b4451 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21d4cffa pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x21dbe258 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x21e14254 dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0x21ec5d84 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x221eb471 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x222e1940 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2230b424 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x223cf9d7 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x227c369b pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x22b84537 pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0x22bbc7af ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x22dd4a43 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x22e03059 pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x22f651bd register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x22f947c3 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x23037d1c inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x235f26ee blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata -EXPORT_SYMBOL_GPL vmlinux 0x23703e36 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x23860bca ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238d2512 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x239dd63a gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x23a4870d rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x23a61e7d pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x23a9e838 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x23b797db btree_last -EXPORT_SYMBOL_GPL vmlinux 0x23c89095 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x23caa6a9 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x23ed98bb devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x24008d9e ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x24297ce1 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x244d31de of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0x245394b6 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x246df34a bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x2478f5ca da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x247ab68f ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24b68c76 get_device -EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x24d502eb of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0x24e4472a device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x25077755 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x25223a90 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x255fd97d wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x256c2f7f subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2574b121 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x2591340a thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x259900d5 rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0x259a457c wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x25a1aa0c max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x25ba1e05 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x25c1065b ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x25c18cb1 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x25fae7b0 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x26252ff8 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x26612cbe sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x26616e0e mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x2688c38e tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x26a440a3 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x26a86e35 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x26aa78ce platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x2730351d nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x2762c233 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x276413ca __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x2774208c tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x277ca335 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x278b0e9f phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x2794bdd8 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x27a3ea55 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x27ab892c serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27cdcac9 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x27e05a64 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x27e38fec iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x27eae343 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x280fe86e of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0x28157fe6 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x281b81e6 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x2846296b irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x28677411 component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0x28787bd1 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x2883dcf8 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x28a2d5e7 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x28a4049f scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x28b45a3e mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x28f16116 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x29227f44 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x292e91f2 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x294ad1bc dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0x2963da18 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x299cdb35 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x29e495c0 thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x29e8a01a devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29ff6ca3 of_css -EXPORT_SYMBOL_GPL vmlinux 0x2a0e1ab9 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x2a225182 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x2a2f2809 ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x2a59086d ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x2a647ea0 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2a66e311 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a76b8a7 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x2a7afcef ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x2adbc2da acpi_dev_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x2add1a93 find_module -EXPORT_SYMBOL_GPL vmlinux 0x2add957b tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0x2ae1c392 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2ae2d96b bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x2aea6a03 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x2b1eacff iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x2b2666a9 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b4b4b9d regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x2b5295d7 of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x2b903b61 bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b9ac1c3 blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0x2bb1b213 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x2bd4d242 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x2be2fe8d crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x2bee5950 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0x2c0e67de tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x2c167fe9 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x2c1a790f cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c23e272 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c324ab3 rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x2c4868a9 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x2c5677f9 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x2c68cefd blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x2c74e530 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c7fa102 extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x2c8cfdf9 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2cb75af7 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0x2cbcd085 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x2cda5cdf crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cefda77 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x2cf93c3b arizona_of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d1d1850 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x2d1dbc94 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d6d09d3 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x2d94c87e pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x2da91988 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x2dc7904e power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x2de221e6 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x2e1e8ff2 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e27027e tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e45fa8f ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x2e815665 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x2e91f7ac fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x2e9366a0 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x2e9670c0 pl320_ipc_transmit -EXPORT_SYMBOL_GPL vmlinux 0x2e980cff __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x2ea1b87c devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x2eaae579 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2ecfd647 dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x2ed3f905 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x2ef2368a posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x2ef4fed0 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f71cb5c class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x2f7b888b napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0x2f8e9846 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x2f927ee6 __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0x2f93cd58 of_irq_parse_pci -EXPORT_SYMBOL_GPL vmlinux 0x2fad6d9b ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x2fe63624 mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x2ff1eea1 __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0x2ff909ca vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0x301d60ea devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x3037eec3 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x303b15a3 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x304a7678 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x306971b7 crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0x306c9f27 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x30923a5d crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x30c1daaa inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x30c646bc attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x30c7da15 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x30d493a1 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x30dedf05 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x30fcc5ec regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x31099bde sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x3115521f fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x312aceee seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0x312b60a0 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x313be0c4 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x313d4e6c cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x3141d39b i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x317be6e9 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0x317d33b9 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x318adbce trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c6a8ac usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31e4cb91 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x31e9384e usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x31f46641 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x31f5b8c2 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x321040bd sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval -EXPORT_SYMBOL_GPL vmlinux 0x322c99a2 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x32674150 of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0x32762475 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x3280c731 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x328c7930 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x328dc31a pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x329346fc put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x32a07f29 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c04624 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32d8d4d1 device_reset -EXPORT_SYMBOL_GPL vmlinux 0x32eeffcc wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x32f1884c bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x32ff03c6 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x33032e55 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x3303ef85 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x3311c752 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x331c7acb usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x3320262e fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x33283d90 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x336a9e28 dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0x336f5377 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x33814279 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x33831c26 cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x339ad9ba alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x33a3e5d6 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x33ca5c03 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x33e08f9d serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x33f6e134 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x341a8571 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x34272b36 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x342b18b7 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x342e0735 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x342f5453 gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x34331655 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x3447fe03 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x344f2ed6 xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x34592714 regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0x3474a3ba init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x347cbd2a single_open_net -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x34894311 device_move -EXPORT_SYMBOL_GPL vmlinux 0x348deb36 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x34b39fb7 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x34b63e71 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x34bc891b device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x34d2e8d7 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x3509a221 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0x35272191 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x352947d5 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x3537a23c ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x3546dcb1 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x356734d7 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x35680ca3 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x357e3ba8 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x35819cf8 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x358d4894 arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x3599be20 set_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0x35aa9905 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0x35ab4bcf iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x35cadb15 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x35d0c391 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x35d5db14 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x360bf64c generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x360d11bb scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x361622e0 dev_pm_opp_get_suspend_opp -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x363469b8 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x363971af crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x3671d2bc vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36b826d9 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x36e06648 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x36f3886d wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x36f8fab3 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x36fdc652 of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x37016475 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x371c041f preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x3726eacf pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x372861aa irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x375520d0 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x375f5fc1 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x376061e2 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x3766468a gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x37891a84 kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0x378afbef device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x379c1fdf __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x37be4724 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x37d540d2 dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0x37e0bd51 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x37e73513 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x37fc32b3 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x3802ee81 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x3805bbe8 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x381103d5 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x3822c161 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x382e7f97 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x38387761 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x383e306e usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x384c3987 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy -EXPORT_SYMBOL_GPL vmlinux 0x38893f5e watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x389a1108 regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x38b4817c rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38ed8969 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x391271f5 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x392c767b devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x39441f43 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x395249b5 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x397716e7 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x3990bad0 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x39ad989b pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x39b5e431 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x39bbc5e0 pci_fixup_irqs -EXPORT_SYMBOL_GPL vmlinux 0x39c5253e kvm_write_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a360683 dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x3a3b9a48 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a4fcd9f thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a76a7bc of_pci_find_msi_chip_by_node -EXPORT_SYMBOL_GPL vmlinux 0x3a855d3f regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x3a942697 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aaf4303 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3acef81a device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x3ae9fe78 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x3aeac4f7 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x3af48712 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x3b1552fc ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0x3b1bf1d2 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x3b600d3e tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x3b7b7dea devres_release -EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x3b99bb1e ping_close -EXPORT_SYMBOL_GPL vmlinux 0x3ba3ffaa mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0x3bbe4c3b ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x3bd682d5 _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x3bf255f3 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x3bfa729c unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x3c0ddf02 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x3c39d98d rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x3c4448c6 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x3c6ac511 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x3c831441 arm_check_condition -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3c940549 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3ca09268 irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x3ca57560 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x3cbc42e4 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3ce554f6 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x3cf8a054 xen_swiotlb_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x3d0a6fd7 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x3d0c1b94 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x3d107969 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x3d226cd9 platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x3d293196 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x3d2f0e98 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x3d319f5f cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x3d3273b1 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d5f392d acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x3d64abc6 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x3d69fd20 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0x3d7c056c power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x3d84507b mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x3d91617c fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x3db04d3b debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x3db3e468 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dcdfd3e debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3dfb40e0 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x3dfc3566 device_register -EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x3dff89ba iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x3e1897cf ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e3e91ed __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x3e57e5bc ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e634137 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e7e4e1d regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x3e7fdb5f transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3e90ebee rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0x3e9f1a02 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x3ea4ac05 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x3eb8b893 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x3ebccc48 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x3ec1febf fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x3edb2911 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x3edf2c69 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x3ef326dc devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x3ef4c814 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x3ef65728 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3ef884a0 of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f01632e request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x3f0ab050 kvm_io_bus_write -EXPORT_SYMBOL_GPL vmlinux 0x3f108a3a led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x3f172496 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x3f1b8845 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x3f252ece device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x3f31f978 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x3f3fce18 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x3f5cb3e7 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x3f6dbae5 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x3f804fde amba_ahb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x3f896171 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x3f932de0 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x3f9574ba proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0x3fb4426f cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x3fb579fb gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x3fc9a0e9 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3fe66323 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x40214b32 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x402760c2 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x40280eae irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x402d5c03 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x40685dcc __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x409e1611 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x40a193de find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40dbc442 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x40ef6e16 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f371c5 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x413c46e0 bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0x4154a5b9 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x415c5c4b platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x4179ad21 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41899c42 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x41bb4de8 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x41cbecb1 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41f6a755 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x42028126 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x4203e4b4 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x422f254a shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x423ff4ac pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x425fd0f7 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x42647725 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x426e380a skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428a4ff4 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x428ba3b9 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x42921e7d virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x42bbef73 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x42c0f9c1 rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0x42d79225 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x42ddd431 kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0x42efcbe0 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x4324eb41 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4337ee4c sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x433e1e5f pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x433eac8b usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x43557613 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x43646c7d usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x4396e6db irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43ad3fb1 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x43c2a786 __cpu_clear_user_page -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43f0b02d hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x43f9744a spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x4405e49a devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0x4422c1ec pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x4426ad29 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x444eb329 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x446c1190 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44eb4094 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x44eed9a9 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x44f77e5f regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x45112648 tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x45331b26 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x4545f2c3 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x455622a7 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x45640c9d __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x456e73c2 edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x4576337f atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x45789271 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x457ecaee tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x45885a1e stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x45b6937e crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x45b8535d acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45c183f3 xen_swiotlb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x45d31e22 dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0x45e24242 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x45e8b1f6 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x45fa9181 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name -EXPORT_SYMBOL_GPL vmlinux 0x461a2e5d clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x462f795e spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x463893e9 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x463f7ce4 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x46512845 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x465ccbf8 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x46878648 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x468dfeaf __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0x46b1b100 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x46b7d56f irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x46bb2326 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x46be3599 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x46f746ed devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4714830a gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x47187836 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x471d9297 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x471daf86 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4734121c unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x47520a75 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x476d7c30 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x477461a3 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x47784568 amba_apb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x4795582e platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47ac5838 kvm_vcpu_init -EXPORT_SYMBOL_GPL vmlinux 0x47c4c954 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47eca7b5 acpi_dev_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x47eeccca bus_register -EXPORT_SYMBOL_GPL vmlinux 0x47f4baf6 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x48156eb8 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x4817de9d da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x48251e4e get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x482f23e6 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x484407e5 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x485017fb tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x48503a14 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x4854fc4c gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x4857724d serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x485fb188 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x485fb8e5 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x488860a8 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x48a732c7 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x48a7ba2b pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x48af6dfb kvm_get_dirty_log -EXPORT_SYMBOL_GPL vmlinux 0x48c09761 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x48c7ae23 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x48f38cf2 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x48f612e3 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x49878c23 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x498867b7 of_get_nand_bus_width -EXPORT_SYMBOL_GPL vmlinux 0x498b1d6a page_endio -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49c00781 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x49e0fd21 __cpu_copy_user_page -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f26f21 gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0x49feb496 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x4a2c0b34 of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x4a35c1d8 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a49174f fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x4a495165 of_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a4db6cd of_console_check -EXPORT_SYMBOL_GPL vmlinux 0x4a61906c ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x4a71c697 xenbus_map_ring -EXPORT_SYMBOL_GPL vmlinux 0x4a77da71 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x4a8e547c __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ab0b790 devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x4ab904e0 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x4ac92fa8 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x4ae3a7cf xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x4af4bc13 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4af56a26 free_iova -EXPORT_SYMBOL_GPL vmlinux 0x4b028d36 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x4b15462e dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x4b3aa99b mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x4b3d997b tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x4b408960 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x4b471720 arch_pick_mmap_layout -EXPORT_SYMBOL_GPL vmlinux 0x4b4924e7 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x4b51e79f crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x4b58d2ce usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x4b7d4db4 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x4b8feb6d spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x4b98d381 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x4bbcd384 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x4bf55ac7 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x4bfe88be pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x4c3f8268 ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x4c4e98d6 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x4c542d14 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0x4c5832c4 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x4c9a576e aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x4ca08072 nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x4cab30fb console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x4cb6843b power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x4ccd79fa dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x4cd684f6 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x4cded578 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x4ce16796 regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x4cefc941 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d261c2b skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x4d35b2b9 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x4d3b35cb pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x4d4152c2 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x4d444cf1 input_class -EXPORT_SYMBOL_GPL vmlinux 0x4d44c060 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x4d463076 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0x4d515f1d percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x4d6a2780 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x4d740800 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x4d76356e bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x4da201fc ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x4dc5d7f6 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x4dcc9c49 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x4dcefc83 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4ded8510 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x4dfa9acf shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x4dfcfc42 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x4e08ef5e scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e113519 elf_hwcap -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e2a6532 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x4e310e0e gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x4e4afe29 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4e6ba079 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x4e84ceca gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x4e933327 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x4e9851e5 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4f19f3c3 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x4f29d8ec iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x4f2c7eff __of_genpd_xlate_simple -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f38e446 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fda0a60 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe28792 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x4feb2a97 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x5005b69e btree_update -EXPORT_SYMBOL_GPL vmlinux 0x50079a66 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x5051dd71 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x505f796b irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5065fc06 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x5067809f amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x50763593 kvm_vcpu_block -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50b7c2a2 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x50ba3e3f key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x50dfa437 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x511ba139 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x5141c74a shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x51666b85 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x5177afc3 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x518cd9c6 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x5191bd3c efivar_work -EXPORT_SYMBOL_GPL vmlinux 0x51dc9f42 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x51f5dddc ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x520d72df efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0x520e159e pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x5210bbac regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x52117049 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x5214602e spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x521a612c disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x521d5e9e __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x525d78b3 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x525e1e5d kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x52761b05 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x5279934c regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x527e46b4 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x52ad72ea clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x52b19dba crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x52e5821f trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x52fe05b5 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x5304b3aa clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x530b2711 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x531267ff relay_close -EXPORT_SYMBOL_GPL vmlinux 0x5329da1b pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x532ad808 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x53547c6d fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x53614ff1 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x5393d303 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x53db29b0 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x53e49063 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x53edafa5 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x53ff07db mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x540a6db9 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x5412c994 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541a6c2a nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x541e41d8 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x5445f8db pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x5484a756 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549bb5c9 acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x54c41e16 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x54c9e33c pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54f433af ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x54fb9814 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x55039ecd ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x550ad00a ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x551e9ea2 efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0x552a30e9 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x554266ed class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x55496ae6 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x555dd77b mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x5566fce7 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x556bfd46 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x5589017c ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x558da13a pm_genpd_syscore_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x55c19269 pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55ffe1b9 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x5606adb5 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x560dd77c ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x561f3e1a of_overlay_create -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564fdb62 tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x569af38a ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x56cc96cf usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56daad1c __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56ed0ae2 kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x57056b3a acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x570ac4dd alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0x57115120 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x573f8291 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x574379e1 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x5744867b spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x574af28d spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0x575b6aed usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x576f85dc efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0x5787979a gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x578f47a5 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57b4c29d kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57cbc0e1 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x580d442d regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x582097ca regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x582ba94e tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x58391673 ref_module -EXPORT_SYMBOL_GPL vmlinux 0x583c231d thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x58410dfe sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x5848696f pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x585413d0 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x5862ca0e spi_async -EXPORT_SYMBOL_GPL vmlinux 0x58687be2 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x589271b7 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58a1a5a2 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x58b8ac1d blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x58c30e60 swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x58c3e6c9 __nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x58c59da9 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x58c73781 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x58d79b64 of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x58df5a51 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op -EXPORT_SYMBOL_GPL vmlinux 0x58ea79bb pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x58febdde xenbus_unmap_ring -EXPORT_SYMBOL_GPL vmlinux 0x590caf27 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x590fc013 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x596c8346 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x59a31e82 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x59adf137 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59ca79b1 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59f1eec5 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x5a15c5d9 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x5a25d02a irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x5a2b4722 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x5a2bd4d9 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x5a322201 cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x5a32a77a is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0x5a401898 acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x5a509bb2 __of_genpd_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x5a6aaf98 regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a81445f sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x5a9fa62d mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x5aa4b3f3 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x5ab78cea ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0x5ac624d3 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5acd6c3b verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x5ad0bb2e phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x5ae79466 percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x5b10d3b8 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x5b17f834 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x5b1b0650 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5b1e15fb __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x5b2f38b5 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x5b31fc45 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x5b447047 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x5b50d3e7 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x5b6b6413 nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x5b6ce4d3 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x5b7a8a3a mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x5b868143 of_get_dma_window -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5be309d1 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x5c08816d amba_apb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x5c0b6822 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x5c336f21 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker -EXPORT_SYMBOL_GPL vmlinux 0x5c6c5ff3 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cb0288a user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5cc0063a set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5ccb0c2c tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x5cccc80b regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x5cd79a9d sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x5ceb3add ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x5cf74a1c wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x5d0495e7 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x5d128171 kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d280ab1 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x5d305066 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x5d30508a unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x5d313e26 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x5d5fbd9e skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0x5d60a216 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x5d87270a efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dbedb42 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x5dcb3f5e kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x5dcd7160 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x5dd06477 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x5ddc6865 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x5e18b7da da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x5e35536c of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0x5e45234a rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e5c1aed wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5e5c4f1c inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x5e972f47 __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0x5ea3aa17 genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x5eaccf7d ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x5ebfe273 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x5ef6b840 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5efa61c9 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x5f2e8f73 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0x5f35b809 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x5f48f7e0 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x5f4cf789 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5f5b58a7 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x5f70caeb cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5f752bd9 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x5f965324 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5f9d90a3 xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x5faa1a72 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x5fab2c58 bgpio_remove -EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x5fd59e1f task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x5ff52bbd inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x60031d6f debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x6007c5b8 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x60125a86 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x60188f5a sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach -EXPORT_SYMBOL_GPL vmlinux 0x604613f8 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x6055fb25 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x60823d86 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x609002e9 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60aa3177 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x60aed4c4 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x60baa90c stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x60be4bdd pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60f276b7 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x6106ef4b ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x611c1bc9 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x612eada2 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x61351440 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x6139592a pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x6160fe1e crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x6166a6d3 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x6168a0c6 irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x616d4208 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x616fe226 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x61747730 efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0x618a8cf3 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x61b51668 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x61b7638b acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x61c3a9bf ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x61c42ff3 wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0x61dfb4a4 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x61e5f94b devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x61e6194f gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0x61fd7c09 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x620bf64b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x620e5098 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x621f9065 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x623199f7 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x6253ef01 kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x625ecb1b devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x6262100b vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x6273c091 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x62824d1a kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0x628fbb6f uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x629014cf usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x62966b49 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x62eab2cf udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x62f2a675 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x62f3f527 crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x63008809 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x630751c5 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6308ce4a _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x632a50c6 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x63301ad9 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x6332f942 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x635d6b7e usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x636d1e41 page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x638d89aa devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x639657f8 acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x63c8f163 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x63eab056 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x643923f2 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x64847c8f bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x6490109b register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x64cd041c of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x64d6f94d crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x64ea21ec da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x650d4817 regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0x65268540 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x6554ede8 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x657d614c of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65c3bba9 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x65c40763 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65fcb767 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x660fba69 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6627d1db __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x662bdbfc set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x6644894c usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x666e86e6 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x666fe4e6 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x667711e1 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x669a1213 trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0x66a28430 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x66ab55c2 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0x66b64440 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x66b8ef91 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66ca9352 otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x66d1e10c tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66ff3756 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x67275626 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x672a5ad8 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x673b7225 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x673eca16 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x675281ce __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x67898591 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x6789a60e devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x678aa9bb led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x679abc76 acpi_dev_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x67c31c88 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x67e9a403 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x680576df md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x6809855f pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x680d90ce security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x683c0e25 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x6841c582 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x684707c3 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x684e0572 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x685f2acd fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x688eea86 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x68aacf96 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x68c20662 clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x68d7f725 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x68fa0e0e fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x6920b42e register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x6920c12a regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x69243941 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x69386c3d usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6947a748 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x6949e109 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x694f967a rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x698cab26 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x699f1f80 xen_swiotlb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x69b47f66 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x69c65f2e tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x69e3ea8d rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x69fc72db of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a48eabe da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a588c56 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a893659 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x6a8ff5b5 clk_debugfs_add_file -EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x6a94b397 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x6ab56c79 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x6afac0fb of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0x6b0601d8 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x6b0d28c1 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b19e073 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b59bd52 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x6b67a73c __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x6b6e73c8 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x6b719e85 acpi_get_psd_map -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8eaed7 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x6ba8f2ef __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x6bb196b1 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x6bc16640 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x6bc9a6dc sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x6bfb8791 xen_swiotlb_sync_sg_for_device -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c19f69d alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x6c264fac disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c46a101 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c4c6e57 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x6c57629f tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x6c587acf spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6c62f2a4 devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c6ce79f pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x6c7768bc dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x6c79aa0f wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x6c81f679 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6c8657ec rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x6c889af8 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x6c9ab185 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x6c9f7c83 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6ccbf857 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cea45c9 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d51aab1 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x6d577be8 of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x6d5a458d alarm_init -EXPORT_SYMBOL_GPL vmlinux 0x6d9b1ffa ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x6da96701 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x6dcdf659 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x6dd77f80 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x6df5ea78 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e0571fe device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x6e05bd23 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x6e13d5f5 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x6e222e42 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x6e44596f blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x6e742654 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e7e6d59 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x6e892e44 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6ead15bb ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x6ead3bfd pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0x6ee07147 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x6ef16ac9 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x6f06dcf6 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6f1033f3 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f36f606 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x6f3c3ce5 blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x6f40cce1 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x6f433ffd __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f9f82a2 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x6fa8c6e4 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6fe45fbf regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x6ff36644 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x6ff5fecc cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ff74084 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x7029805b blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x704e9a07 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0x705a1b05 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x705d54a7 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x7064da8b btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x70752f28 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70eadf54 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x70f74485 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x711b19fd subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x711eaeb5 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x7146c8b7 wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0x7146ed13 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x7164fde0 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x716d1c7e param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x71910e39 device_add -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a4ef4d of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x71b70328 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71c53052 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x71e2cb5c ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x72135176 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x72171cdc netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x72216955 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x7258b99a __of_genpd_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x7263eac0 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x728bec69 xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0x72a4a8bc kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x72b4e094 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x72cc277d led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x72d13235 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x72e0da2c spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x72e84681 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x7300418b gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x7318d1a9 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x733ec849 pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x734053a2 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x7350a1f6 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x735cbc59 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x7369a3b5 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b10fe3 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x73b5ab26 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73d68063 __dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73eed33f regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x73fa2112 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x74235b35 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x74650605 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x746f1165 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x74936138 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x7494876d skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74f22cf3 of_display_timings_exist -EXPORT_SYMBOL_GPL vmlinux 0x7505fcdd crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7525b8bc regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x753c5d34 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x7553224a of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x7555863a tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x7583f64b cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x758f8dd2 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x759aa4b8 xen_swiotlb_set_dma_mask -EXPORT_SYMBOL_GPL vmlinux 0x75cb33d0 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75e07e45 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x75ed4314 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x762fb47d mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7642d435 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x76444ca4 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x764ea112 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7693cdcb acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x76a616fc ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0x76c3ebb4 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0x76d5f292 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76e3ad97 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x76ea35d4 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x76fb02a3 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x771b92a0 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775bfa7f sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x77743f43 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77bc251e xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x77d2376b inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x77ec8763 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x77f82a1e trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x7808b2e4 gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0x780a00ee crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x780e53bc pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0x78248ca7 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7828e50a register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x784498cf xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x787a5fbb __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x787bf987 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x788dfdf8 dax_fault -EXPORT_SYMBOL_GPL vmlinux 0x7899c1f7 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78b4ecfc dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0x78b56c53 i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x78dd5d9a da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x78fc93cb pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x79457967 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x79852264 acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x798ba580 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x79a7645e blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x79bc09b5 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x79c78bbe regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x7a01bebe stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x7a1c6173 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x7a43505d ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x7a4abc49 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x7a5326c6 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x7a5682dc driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x7a59bb8e relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x7a5b1d31 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x7ac571ff sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ae136f7 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0x7b06b9a5 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b11130e pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x7b18ae3c acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b2163bd HYPERVISOR_tmem_op -EXPORT_SYMBOL_GPL vmlinux 0x7b452fb6 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x7b536a0c acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0x7b5a05a3 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x7b6a5389 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x7b7bbfb1 spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b9da505 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x7bbc1060 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x7bc396e0 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x7c0f3367 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x7c147be2 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x7c1935ea regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x7c1ad650 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x7c322808 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x7c6407f6 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x7c66206c uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x7c73b53c ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x7c741b7c of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0x7c7992e3 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x7c8123b1 init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7c9ca74d irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x7ca170eb __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x7cbc632d usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x7cd1e559 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x7cd4f301 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cd8c6e5 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x7ce949e0 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x7cee0b0f devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x7cf6985b usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x7cf8b35a i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d1b219a usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x7d4aedf2 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7d4bc13c dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d64f63b relay_open -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7dabddb0 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x7db7a991 xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x7dc9ca7c acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x7dca0518 HYPERVISOR_multicall -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de44cd1 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0x7df5d8b6 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x7e1dd2b7 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7e3325c5 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x7e5d646a raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e8fdc3e spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x7ea7b67f blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x7ec2d83f devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x7ec6b97c spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x7ec7348d regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x7ed2f374 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x7eee749d i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7f18f17f irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f4c39bc dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f8dd207 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7f90228f pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x7fa43937 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x7fbbd831 of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fc4fd2e platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7fe505d2 of_fixed_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x7fec85e5 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7fed6038 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x7feda40e posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x803fa408 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x806b7b84 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x807191fb gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80a2c7b9 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80e8e978 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x80f21d71 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x80fd94c2 xen_swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x8118eb39 pci_get_hp_params -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x8120f0e9 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x8129172a tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x81359901 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x813d257f serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x8143b386 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x8162427e bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x8168bcde pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x81d224b5 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x81d38425 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x81ea1bf3 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x820e8a37 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x822c2059 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x8241382f ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x8273c5b1 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x8291382b blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x829af5ea debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x82b5b016 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x82c226cf of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0x82d01104 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0x82d0abb6 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82e745ef debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x82f057ba tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x82f53e0b cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x82f8dc34 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x82f967b1 pin_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x830c7ea9 gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x832cfd6b eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x8346aac2 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x8361d4e0 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x83914f42 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x83c3805e dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x83cce2de bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x83f0cbdf regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x843a38d7 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x844d59b6 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x849775b8 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x84a51c89 swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0x84a8c4ef ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84c24e93 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x84cda450 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8505ddec gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850a8f4b __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x850d1401 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x852fbf20 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x8542c06e crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x85467dec of_get_nand_on_flash_bbt -EXPORT_SYMBOL_GPL vmlinux 0x85477f0e spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x854905f2 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x85573e10 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x85606ef6 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x85797eb3 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x858fee3b ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x85b439ea bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85e602df sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x85fa0961 acpi_dev_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x8647a742 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x865a0a75 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x865c687d devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x869d461b ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x869e9511 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x86ffe4c1 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x8702afcc regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu -EXPORT_SYMBOL_GPL vmlinux 0x870961b6 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x87098231 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x870a3ab2 xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x87334d2b ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x8749f302 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x874c5776 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x879aec71 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x88019fc0 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8838d299 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x888dad04 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x88961ee9 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x88a5285b shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x88a58527 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88e8240f vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x8900cc39 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x891a09a3 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x89233095 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x8923411a acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x892b26a0 set_memory_nx -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x895321b6 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x89549385 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x8955d8f3 pm_genpd_syscore_poweron -EXPORT_SYMBOL_GPL vmlinux 0x89768634 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x899da30d acpi_dev_gpio_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x89bacf81 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89c3a3e4 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x89e31167 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x8a0306f9 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8a1888c4 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0x8a3b727c pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x8a3c4c09 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a69a131 crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x8aaafe17 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x8ab1a0e8 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ae56974 xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b3ff5a9 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x8b616408 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x8b79a995 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b83569d device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x8b964ec4 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op -EXPORT_SYMBOL_GPL vmlinux 0x8bcf28a8 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x8bdb4864 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x8be373be tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x8be5d9ad iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x8c0784b4 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x8c3f3aa8 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x8c601ac9 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c659b6c btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c9617fd usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x8c9955a8 kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0x8ca17bdc acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x8ca1a20a user_update -EXPORT_SYMBOL_GPL vmlinux 0x8ca1e204 percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8ccc0b10 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cd9e1af __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x8cef1a5d of_pci_msi_chip_add -EXPORT_SYMBOL_GPL vmlinux 0x8d1bc26a reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d5ada3a tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8d845c18 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8d9fa235 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call -EXPORT_SYMBOL_GPL vmlinux 0x8e0f8b93 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x8e100db0 xen_remap_domain_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e35afe5 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x8e6126dd mmput -EXPORT_SYMBOL_GPL vmlinux 0x8e80399f xen_swiotlb_dma_mapping_error -EXPORT_SYMBOL_GPL vmlinux 0x8e963a6e crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x8ea4cac7 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x8eab694e tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x8eac5cce xen_dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x8ebfe4da l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x8ec951ca thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8ed494ac dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f15f778 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x8f1774c7 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x8f397e1e flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x8f460f8f scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x8f60da41 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x8f6695a2 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f7e2559 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x8f8881cf disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x8f90088b securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x8f97f770 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8faac947 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x8fb94cbb raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x8fd1e9e0 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0x90046d0c ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x901f6175 kvm_clear_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x90297489 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0x9049a062 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x9058d81e gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90a8cc7a of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io -EXPORT_SYMBOL_GPL vmlinux 0x90caca42 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x90cfef7a devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x90f5ba7c pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x9122fb7c pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x913a908a usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x913aaaf2 fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0x914c8537 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x9152fab5 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x915796f3 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0x915b7a3c sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x915d23bf smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x917dc828 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x9184dff2 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x91891a36 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x918e0f95 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x9195b1e3 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x91a6e851 of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91cad57d pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x91cb39a6 crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x91ce475f simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x91f5fdcd usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x920aacca nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x920f3c29 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x922af470 tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x92356e56 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x92533245 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x926f3d00 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x9275939e arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x927df400 use_mm -EXPORT_SYMBOL_GPL vmlinux 0x928f7a33 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x92d6edc0 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x931944fb wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x93321f61 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x939b7bd4 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x93aee187 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x93b95fa4 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x93e0fe0e nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x93f87250 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x94124f8a dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x944cf193 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x94992439 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94cc6713 of_fixed_factor_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94fe4aa5 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x94fed04c __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x95247d41 ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x9561eea1 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x956deaa2 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x957a4e56 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x95828c8c dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95ca7e75 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x95cc7fb6 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0x95e84380 inet_csk_compat_getsockopt -EXPORT_SYMBOL_GPL vmlinux 0x96078637 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x9612cd5e wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9625e652 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x962a8600 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x9639edeb gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x9648de3e md_run -EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x964d5c39 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x966d8e75 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x967ad385 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x969530e5 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x96aa8cd9 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x96b0ec66 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x96f7afbc i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x97046d95 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x9705a0ba __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x9753fb19 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x9788bb68 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x97a97106 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x97aa0379 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x97c76b3a devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x97ccfe9b scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x97d0f57f fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97fc752a bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x97fc7c08 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x98220a79 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x982bdbfd pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x983fe89f extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x985be06d nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x986d4463 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x9879883c ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x98821c26 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x988ed85d set_memory_x -EXPORT_SYMBOL_GPL vmlinux 0x989e8973 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x98a2cdc5 kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0x98c2c19a of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x98d704e8 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x98dcec5c max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x98de812d locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x98ec216a tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x98f1dd0e regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fb8c0a uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x9902d136 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x9913d999 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x992aa2a1 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x994d3102 usb_string -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9970231c gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x99869513 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99ba91f8 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99c2e667 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x99c56a09 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x99cd7906 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x99d473db __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x9a06872d ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a306a20 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x9a4c0639 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x9a7cd2e5 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9a923583 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x9abf1b45 crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9acb3c59 pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af3d46a vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0x9b033355 __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x9b067bfa regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x9b26534b regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x9b34706c debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x9b364658 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x9b5f6b40 regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0x9b6a8dd4 acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x9b6b58c9 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x9b859f50 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x9b8edb16 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9b945f35 pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x9b991135 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x9b9a7e47 efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9bb67d43 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x9bd83434 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf1d00d wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9c03c0d9 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x9c04e08f dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x9c088dfb vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x9c1e8879 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x9c3c5790 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x9c7fb7f7 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x9ca0df67 xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x9cb437bc i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cd98839 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x9cdf40d1 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x9cf31ff8 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x9cf4dd20 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x9d2bc06c perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0x9d35b315 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x9d4c5abc regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x9d508e85 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x9d90bfa0 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x9d98c678 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9dbbccca usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x9dd5a523 nl_table -EXPORT_SYMBOL_GPL vmlinux 0x9ddb4d84 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x9dee5a55 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x9df21beb aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x9e040889 efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x9e16f047 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x9e183f13 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x9e1d3e31 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x9e265687 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x9e3bd650 acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e61ddc9 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x9ec76671 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ee57548 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x9ef1ed93 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x9ef25ca0 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x9ef7dfda btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9ef97ba5 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x9ef9c9f0 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x9efb2382 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x9f221c2e blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x9f3ae623 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x9f3e6587 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op -EXPORT_SYMBOL_GPL vmlinux 0x9f5f3306 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9f71e465 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x9f7dadbe kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x9f991c59 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x9fb1b933 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe0d75b serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x9fe8f067 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff39a0b wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x9ff50d96 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0xa012e575 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0xa014a6ac trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xa016c3f5 xen_swiotlb_sync_single_for_device -EXPORT_SYMBOL_GPL vmlinux 0xa05df341 ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0xa083cde3 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0xa08586f7 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0xa0e351d9 acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0xa0e69b4a split_page -EXPORT_SYMBOL_GPL vmlinux 0xa0feafea ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xa1043ff4 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa133cfbb debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xa138ea2c regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xa147e3fa dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xa17b8e03 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xa183f8b2 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa1a382f2 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0xa1b752a2 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0xa1c980a4 find_iova -EXPORT_SYMBOL_GPL vmlinux 0xa1cf5bcb class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa1da923d devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region -EXPORT_SYMBOL_GPL vmlinux 0xa1fc7574 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xa20105ed pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0xa20d775a clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xa22aa419 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xa24397a1 virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0xa2575e42 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa291d2fe sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xa2aff7b3 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa2b48d16 btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2bbf17a cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xa2c124cf usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xa2c9f337 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xa2e2357d blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0xa30019c3 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xa308227c ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0xa3154be7 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xa31691ea xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xa31812b3 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0xa324fd2a ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xa35b247a regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0xa37dda3b debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xa384918b pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa386c029 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3b178fc __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3c92bc7 fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0xa3d3c851 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa3e99fc3 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xa3fd199f blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xa42b62f4 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa44a6b44 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa465799e pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xa478c1f4 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xa481486b mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa488adb3 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0xa496db4c usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xa4cba0a2 gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0xa50658a6 skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa51729d4 raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0xa534c04c relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xa54a2be3 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa5724fc7 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0xa58300ac mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa5a65121 acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0xa5cec443 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xa5cee848 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa5d7b4ef to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f99794 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xa60eaacb devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xa618fd2c pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xa61fd267 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list -EXPORT_SYMBOL_GPL vmlinux 0xa64bbb3a crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xa663cf2d blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa67307e8 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL vmlinux 0xa68cb88c __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0xa68fd692 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xa6ab177b usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6cdc61c sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xa6d0d38e of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6eb388c of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0xa6fa9079 kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0xa716bd15 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0xa73d621c virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0xa7456cb9 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xa74a34ac inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xa75f7c28 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xa763de3a dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa773dea6 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xa77ccad1 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0xa789349b component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xa7985328 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xa79ef700 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xa7a82011 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0xa7afeea8 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa7d04abd __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xa7d15c1c list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0xa81768fb blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xa850dafc idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa85a0fd4 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xa8743264 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xa87d1948 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa88547df perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xa88649df amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0xa8a402fe component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8d2cb78 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xa929bf7f phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL vmlinux 0xa9be5388 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xa9c11a86 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xa9c2e3bb devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9dbbd42 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9fdc00d unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xa9fe2bbd fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xaa0f4270 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xaa3f609b wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xaa41a148 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xaa4b85d2 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xaa5ca10c sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xaa865af6 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaac1704d __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xaac5595a bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xaae8a602 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xaaf8b869 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xaafd57e3 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0xab02aa9f crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xab1734fd dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0xab27ba9f __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab41df1b regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xab46b6f1 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab607262 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0xab62abb2 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab72aeab of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xab8ceced gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0xaba5a522 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xabab79ed usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xabb7bd40 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabe94894 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0xabf4b140 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xac0985ce blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0xaca47822 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xace21140 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xacf47a0e ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xad150a59 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xad2e8d95 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xad36a8ed bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xad3d3ae5 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xad496e63 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xad78f718 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xad8271ee mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xad83bce2 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xad97338c perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xad984628 irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0xadbdf392 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0xadc006cb led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xadc916db devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae199987 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xae20b550 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6e0baf ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xae764de8 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae805748 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all -EXPORT_SYMBOL_GPL vmlinux 0xaeaa4f49 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xaefa3f74 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0xaf16aacb regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xaf511df1 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xaf5819a2 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn -EXPORT_SYMBOL_GPL vmlinux 0xafc01a86 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0xafc47e58 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xafeb572e pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xafff90eb sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xb01dc880 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xb0220ff3 kick_process -EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb03976c9 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb043cef4 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xb05abb01 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xb05bdd56 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0xb0716e8a add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb0aff57b usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xb0b33050 skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0d4074f tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0xb0ed478b __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xb1211a21 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0xb1368e45 napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0xb13c680b cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb159f650 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb188ed32 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xb1897c48 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1c7806b pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1eb0fa4 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xb1ee687e get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0xb20cefeb of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xb21239d6 xen_swiotlb_unmap_sg_attrs -EXPORT_SYMBOL_GPL vmlinux 0xb2147493 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb234fb34 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0xb260786e __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xb260bfa5 unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xb265bcf3 efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0xb27ef2b3 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall -EXPORT_SYMBOL_GPL vmlinux 0xb29620b4 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xb29d09ac acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0xb2c36097 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb2dd9029 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xb2e3f2f1 crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb3310c3e ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy -EXPORT_SYMBOL_GPL vmlinux 0xb365699e register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xb3703fb3 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xb373e2d2 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xb3a42878 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xb3b8bd46 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0xb3d53fc1 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xb3e5794e usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xb3e8826b usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb3fe3bce adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb436becb handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xb43c242a irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0xb43c96ba devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xb46f416f wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xb483eb96 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xb489c93d extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb4912210 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xb494c197 percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0xb49cf718 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xb49e2551 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xb4a19da1 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0xb4a66a69 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xb4b59d58 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4bbcca6 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xb4cac147 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb506a466 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xb50b4f37 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb5306bac flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xb5311657 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb54d2bc4 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0xb56f97db led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xb580b2c7 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xb582eff2 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5bf6fd1 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0xb5c47814 pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0xb5cc5487 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xb6260c25 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb632930d acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0xb637ff0b da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xb65066fc ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xb651d133 tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xb659680c devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xb6621443 fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid -EXPORT_SYMBOL_GPL vmlinux 0xb673e3e7 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xb68f91ae i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xb6a03c97 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xb6a51b69 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6f4ba8c ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xb72270a2 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb73004db anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb7305a4f invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb738e229 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xb73b740a trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0xb760d9d1 of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0xb76452de __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0xb7669923 ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0xb77d42fd usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0xb7805aff disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xb780f106 clear_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0xb7b3de60 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xb7f2aaa9 inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb7fc45cc tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xb8287afd debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xb8332057 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0xb84521ff sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xb845e7d5 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0xb8529493 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xb85ca5ff sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xb862f2aa pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb865f3b6 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0xb88aaff8 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb89b546b spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xb8a890d3 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xb8afb061 blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0xb8c4e6b1 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d19035 dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xb8d1f25c dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xb8ed85fd iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb90726cc of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0xb91076ae iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xb911104a usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb92875d6 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0xb929f4cb gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xb94a6ebb dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0xb9567e1e __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9c1d799 bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d9f99d bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xb9eed13e devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xba07139f sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xba0777cd power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xba10a4de __module_address -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba36c493 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xba389319 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0xba3f5714 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xba5040ca ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xba681c75 i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xbaa9cda3 amba_ahb_device_add -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbabcf41b mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0xbad282ea srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0xbadd3ce7 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb21d246 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xbb53d1e4 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0xbb55e083 acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0xbb5a8738 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0xbb78288d ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xbbaaf880 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xbbb219e9 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xbbd6e6f8 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xbbd90162 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0xbbfcb77d rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xbc2ac592 devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xbc316ca7 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xbc3ee8fa mddev_init -EXPORT_SYMBOL_GPL vmlinux 0xbc67b1c5 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc70bc85 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xbc8ee0e1 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcbcdd2f hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xbcc3a6f4 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0xbcc527c2 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce3deac scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0xbce7772e regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0xbcee366c reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbcf0ae32 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xbcf0d2af dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0xbcfe1a8a kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd5ccf42 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xbd765d89 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0xbda6c799 xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbdd943e4 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xbdf8c387 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xbe0a671a of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xbe10e375 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe34cab4 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xbe458538 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0xbe5aa4d6 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0xbe66fafa dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeade8f8 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbee9783d reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf20f1fc blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0xbf2518e1 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xbf3f61bf irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0xbf43613e pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xbf45b8c5 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0xbf4d5b53 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xbf66d961 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xbf7d4329 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xbfba22d7 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfcf74ca regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xbfdc0bbd of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0xbfddddcd dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xbfe12eb1 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfe9d1f1 ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0xbff8a564 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space -EXPORT_SYMBOL_GPL vmlinux 0xc013048c regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc024a1f5 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xc03bb8f0 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0xc04895ba bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xc04b21bd acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0xc052e6fa virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0xc05a3421 kvm_vcpu_kick -EXPORT_SYMBOL_GPL vmlinux 0xc0628e66 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xc080f1b8 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0xc097ef95 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xc0a9126c devres_find -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0ea8e03 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xc0eb325e of_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xc0ee1c2b irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f3b720 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xc14acaea xen_swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0xc14c2824 xenbus_probe -EXPORT_SYMBOL_GPL vmlinux 0xc155d91a sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xc17269f0 nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc1dcf0d8 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0xc1ea24e0 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xc2033cd4 __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xc20b76a0 __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0xc217b67e clk_register -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc239feb9 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xc27fcaf8 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc2a8ddbd clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0xc2bd7249 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xc2e64179 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xc2ed1692 nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xc30e21f3 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0xc30e7bbb blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xc30fac23 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xc32f45a6 posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc347a382 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc347c89d fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xc349845f serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xc352cb02 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xc355d5ac regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xc357bf91 rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xc36b8f61 xenbus_dev_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc3726c38 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0xc3779cc8 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters -EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xc39396eb screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc3cbd8de devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc3eac09c rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xc42344cb tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48f2764 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xc49a9dd8 rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0xc4bda7c8 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4daa619 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xc4e9e47b percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc52433ba ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xc52bf28d netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xc53c0a3a power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc54cd539 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc57d8430 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xc59fa8b5 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xc5c31069 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0xc5cde998 amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xc5eb9264 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xc5ed23ac rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0xc5f6f696 put_device -EXPORT_SYMBOL_GPL vmlinux 0xc601373a elv_register -EXPORT_SYMBOL_GPL vmlinux 0xc6052a46 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc62d06cc __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xc647ca89 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc67f400a iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6b9368d devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xc6c47524 xen_swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0xc6c98da9 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc6cba445 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xc6f701f9 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc708fc8b __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xc70e1d00 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xc71cb5df devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xc7278816 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xc72d1f99 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc762dc16 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc76359b6 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xc7694ec5 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xc78aba43 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7b9dded crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xc7bda5e8 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7dde9d0 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc82a8fd0 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xc8305ab6 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xc870a254 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc87f51db inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xc8819c5c gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xc88374cb iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xc8a443fc tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8ae5af7 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xc8b5e1fb xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xc8d17fcc init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0xc8dcddb7 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8fa5bc6 skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xc90a91cb __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc9341c0c extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0xc9407e9d input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc96a8aa0 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level -EXPORT_SYMBOL_GPL vmlinux 0xc98fc2b8 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xc9b1c154 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc9d8babe usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0xc9dc8d46 percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0xc9e2d1f2 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9f78cdb ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xca0cdb03 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xca10c2a7 pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0xca33c3e2 percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0xca44ab74 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xca4ae557 xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0xca51aaa1 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xca558d89 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xca5fbbaa acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xca730d51 acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0xca73f58c usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0xca8a65e4 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xca8b0fed sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xca91c902 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xca96a663 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0xcaa5b438 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcabede22 wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0xcadf5492 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xcaf9933c __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xcb115534 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb2462bd ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xcb24bdec ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xcb3773aa md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xcb3c704f devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb4eb164 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0xcb56006b ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xcb81648e acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0xcb82d01b of_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xcb981192 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xcbaa3816 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xcbb9aed7 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0xcbdcb740 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcc0b8240 swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0xcc167e80 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xcc207622 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xcc433ff8 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xcc4df464 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0xcc66d4c3 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xcc686107 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcc79aa6a gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc9920c8 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xccabbfb4 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xccbd4c73 acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd8c628 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xcd123d5b acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xcd23545b devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0xcd2a7d29 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcdadb9f9 of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xcdae4e60 max_gen_clk_probe -EXPORT_SYMBOL_GPL vmlinux 0xcdb46c22 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdbd7f4c regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xcdc7df30 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcde4988f lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xcdf02eea gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xcdfd2394 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xce18df2b kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xce405071 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xce543029 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xce659bc6 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce7348f2 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xceafdf85 phy_init -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xceb516c2 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xceb6be05 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcedbbb1d pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee52877 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xcee66e49 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xceffd917 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0xcf1211e9 of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0xcf25d2c2 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf686bb5 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xcf7d543b yield_to -EXPORT_SYMBOL_GPL vmlinux 0xcfb323ca device_del -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfcd4664 acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0xcfd251d7 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0xcfd7a0af acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xcfdfad18 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0xcfdfe4ae acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0xcfe028b6 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xcfe12ece dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0xcff45452 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd04a71ce __class_register -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd068437e unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xd0b3c300 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xd0bada08 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c23b66 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xd0cc1008 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xd0d750c3 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xd0efd86b pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xd0f24b96 queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xd0fd521c crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xd1068fb5 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xd148bdca dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd16a1cee crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xd175d927 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0xd1842217 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xd191f0e4 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xd1cc294c device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xd1dda478 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21c54a6 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0xd21d1cc0 kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xd2446d42 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0xd24c80a1 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd2669ead crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd280a1d2 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xd2ab202f usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xd2b7cce4 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xd2bbfd6a devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xd2c71f5b pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xd2ce3ae0 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2e7403b pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd2fdc444 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd30c9f6b ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd329bc74 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xd32a46fe md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd33afd1a alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xd33d21a4 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xd37d6c06 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xd38319f7 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xd384ee2f fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xd385bf94 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xd3967d59 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3bb1c35 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0xd3e20cd2 irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xd3e8e9ad pwm_free -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd4366030 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd463caa0 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd49b8f81 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0xd4ac412c swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0xd4bc789c clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c15c5d of_pci_msi_chip_remove -EXPORT_SYMBOL_GPL vmlinux 0xd4caf07b fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xd4cdcd97 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xd4ff2354 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xd507385c devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xd558ce27 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd56a937e regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0xd578894e root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd57fc23e regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd5b3eb07 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd6210e52 of_get_nand_ecc_strength -EXPORT_SYMBOL_GPL vmlinux 0xd64da839 nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd67a2189 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xd68b94b0 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xd6b3949a kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xd6b43f4b of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0xd6d80e75 xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0xd6e23924 xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd7217e57 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xd72bc747 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd73d9081 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd74de873 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0xd752b636 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xd756e9a6 rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0xd763000c pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd792294d klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0xd7ce956f blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0xd7d1e158 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0xd7d4bcbf of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7e63416 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd833e3c4 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xd8447049 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xd864ccf3 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0xd8709773 tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd88ebf7d task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xd8998175 xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0xd8a329e8 arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xd8b3a5fb power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xd8b67b31 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xd8c91141 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd8cc353d adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xd8fcce8f nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0xd94e9f70 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xd9522100 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd96d61d3 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xd9904238 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0xd993ae33 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xd9e846a0 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9fd25dc virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xda05fee8 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0xda257eb4 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xda27b639 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xda3211d9 blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0xda3e17c4 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0xda755305 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaacc153 nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xdab8d1a6 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xdabe5751 kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xdac1ca0e usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0xdac65f23 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xdadc7de9 copy_reserved_iova -EXPORT_SYMBOL_GPL vmlinux 0xdae187bb devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb1b8017 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xdb3da8b9 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb450c87 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0xdb57baf6 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xdb61bad7 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb65d1cd blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xdb759992 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xdb7cedb1 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb916fd0 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xdb9ff0d9 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xdbcb5029 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xdbcc9135 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xdbcd793a tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xdbece484 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xdbf394e5 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbfa2fa1 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xdc039383 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc2124ea kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0xdc2b9d86 acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc39f757 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xdc3c1c21 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdce66513 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0xdd075e9e regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xdd17b0cd ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd186177 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd3f3698 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xdd40bdf3 shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0xdd8b78dd pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xdd8d4403 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0xdda3eccd acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0xdda90851 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xddb6a0ff efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc58884 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xddef5ac9 acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xde1401ed skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xde2bb38b platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xde2ceb58 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xde373d89 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0xde396b3b ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0xde429ea7 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xde4a3e2f ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xde6d73ad skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xde73e6bc device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xde838025 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xde843b93 xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdee3253a clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf156a8f alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xdf26d633 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xdf2c3944 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xdf3ce270 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xdf73114d dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0xdf876efc irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xdfab3f86 device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0xdfb1e617 pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0xdfb79567 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0xdfe2d2f2 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xdff6a768 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xe003ad1a acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe00b1f81 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xe0186110 posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0xe01f8e69 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe036be07 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xe043f42e devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xe048816d bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xe050c7a3 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0xe06374c7 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0xe06856bd wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe07e0684 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xe0949cbf pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xe0a2d14c ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xe0a6d288 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b87205 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xe0cb3e7a arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0xe0d6c480 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0xe0d93559 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xe0e18cfb __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op -EXPORT_SYMBOL_GPL vmlinux 0xe116289a regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xe12ee3a6 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0xe13fec70 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xe145bc0f mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe145fe8a dev_pm_opp_get_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe15cfa38 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0xe16bd5e1 kvm_get_dirty_log_protect -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe17c5f08 wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe1a1c335 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xe2141d9a ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0xe2351cb1 component_del -EXPORT_SYMBOL_GPL vmlinux 0xe25163b7 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xe256ae00 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xe2772d46 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe29d00e7 user_read -EXPORT_SYMBOL_GPL vmlinux 0xe2ad4525 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xe2b3d219 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xe2bb7e39 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xe2c23f37 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xe2daae29 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe33fbf26 xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0xe3451c80 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xe34d34e3 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xe362e265 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0xe37ebb3e task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xe382cae4 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list -EXPORT_SYMBOL_GPL vmlinux 0xe39ebb0d cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xe3bf5916 trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0xe3cc8b1b led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xe3f0a423 kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0xe400e992 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xe40fd3a0 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0xe422de8c crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe44c81fe __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0xe458bfbc i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe47508c4 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4994429 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xe49d20f2 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xe4ae32a1 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0xe4aece97 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xe4bd2b7b dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4ccf6e3 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xe4e0b11a pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xe50f6e85 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0xe52d97f0 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0xe52e2aba inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0xe52e5531 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0xe53d056d klist_next -EXPORT_SYMBOL_GPL vmlinux 0xe55a2c33 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0xe56335ef ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xe574a391 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xe575b277 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58e8791 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5b4513a l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe5b53248 xen_dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0xe5c1199a unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xe5ce00eb irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xe5df6ff9 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xe5e60e05 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5f93605 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xe6189c59 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xe6193b66 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xe6196ffe vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xe63c37b7 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xe6512c5e pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe65f4a46 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xe66dd5b3 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xe6aeaf8b fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6eca503 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe6f372a8 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe6fb8a4b pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xe71ef4ff kvm_init -EXPORT_SYMBOL_GPL vmlinux 0xe7216340 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xe743f1c6 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe74f6bac fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xe762c6b2 phy_create -EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe78849f6 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0xe78ac1a2 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xe78cf0bd rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe7ad7708 xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0xe7c1fc4e tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xe7d3244c sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe801da41 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe815083e crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe821aa58 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xe823d9e1 arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0xe8312f41 of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0xe84a3ea5 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe8779e4e crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0xe894fd51 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe8a96073 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0xe8c54464 of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0xe8def097 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xe9104bba __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xe92b0938 xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0xe933af98 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe956cbf6 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0xe95d71fd pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0xe998f67f fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xe9acc642 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0xe9bd8ea9 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xe9c2d92e of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0xe9c851b0 __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9f4d4a8 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xe9f6a1c8 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea29cbe9 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xea35757a mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xea3d9388 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea50eab7 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0xea8c6e0a crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xeaa1104a od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xead43e46 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xeae26120 bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xeb17ee3f pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xeb19c90c kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region -EXPORT_SYMBOL_GPL vmlinux 0xeb2eb288 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xeb434bcf efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb647d9e xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0xeb72b888 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0xeb780f4e usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xeb840c9b mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xeb86afe7 securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0xebaadd5e system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0xebc012d5 gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0xebe55c94 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xebfc6885 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0xec0e5c97 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec6079a8 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xec6b5b5c usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xec82fc5e sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xecc1eb4d devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0xecd1454c acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0xecd1e589 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xed043f29 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xed114982 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xed47c7f5 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xed49faad powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xed4ed738 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xed64fe11 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0xed75d80d pci_intx -EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xedcbdc9d syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xedcf8ff8 mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xedd26dec cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xedf3da1d reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xedfafe48 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xee29e597 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xee2afadc __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0xee4279de of_pci_get_host_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xee67b1c9 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee77c577 extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0xee87a30c gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xee8cf52e adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xeec3490c hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xeec34e4f inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0xeedc74da transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xeee84a16 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0xeef0fd3e wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xeef8151e crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xef047e1e pwm_config -EXPORT_SYMBOL_GPL vmlinux 0xef1473b0 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0xef302581 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xef44d027 __put_net -EXPORT_SYMBOL_GPL vmlinux 0xef478479 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat -EXPORT_SYMBOL_GPL vmlinux 0xef7c7c4c pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0xef8ad295 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xef9e9d57 xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa8a648 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0xefac4f80 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0xefb625e8 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xefba951d device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xefbcd352 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xefe1e91b dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0xeff5c3f4 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0xf02a1973 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf05b744f blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf08072ef max_gen_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0xf080d378 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf085d167 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xf096d665 arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xf0a53352 __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0xf0b3b902 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0xf0bc14fa regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0d0db15 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xf0e24b9c sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xf0f5a4c1 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf1175da8 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xf1399cae scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0xf13cc64a of_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xf1520437 tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xf159f9d6 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xf1790f16 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1b633fa max_gen_clk_ops -EXPORT_SYMBOL_GPL vmlinux 0xf1c6786b devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xf21aec76 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf237ad7b xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0xf23ada58 of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xf2771d06 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf280d1b7 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xf28968cb usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2baa4c9 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xf2d237e2 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xf2d2d381 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xf2e2305c fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0xf2eb2bc8 xen_remap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xf2faff5f xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30c24a0 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31b3be0 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf32dba85 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xf32fa439 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xf3417475 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0xf3654792 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf38d8734 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xf3a53884 nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xf3a92cde blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3d16a69 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0xf3d49d97 arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0xf3ec7fee tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xf3ec9cb7 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf3fd6410 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xf40586eb blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xf40cbb3d usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xf41ed923 seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0xf4230828 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xf43e417b handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xf445fa04 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xf44a19ca inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xf44d524c md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xf45faf09 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xf475a46a nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xf47dce1e powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xf4894e02 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4a5ff1d dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xf4aa8800 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xf4aabe9c fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xf4b8786d usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xf4d77e66 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5164874 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xf52860eb i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf54cca05 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf555f614 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5c6c1fc wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xf5de22ff dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xf5f084c0 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xf5f28b36 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xf5faaadc debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xf5fd10b2 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0xf6036f3e dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xf60f4cc0 part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0xf61dbfad skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xf64e2d1d pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xf65e30df cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0xf67a7490 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xf68309af ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xf688c0c3 extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0xf689b346 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0xf68e0f0d device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xf69c3c43 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xf6c57315 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6cbb896 x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6ec00be md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xf6ed60c1 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather -EXPORT_SYMBOL_GPL vmlinux 0xf70ce02d __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0xf785e8f2 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xf79ad0f5 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf7a74c4a regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xf7b2070c devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7c88f72 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xf7cbd27a regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0xf7ddc639 sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xf811810f da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xf81972ce vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf834e554 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xf8419ef8 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xf862be64 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf86ae1df pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xf86f48cd __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf87c20da fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf8837687 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf894ecc8 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xf8997555 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xf89cbf73 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xf8a5fd40 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf905e972 md_stop -EXPORT_SYMBOL_GPL vmlinux 0xf90cc693 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xf90f2bb0 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0xf921c86f gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xf9285c87 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf93aa401 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf958e2c7 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version -EXPORT_SYMBOL_GPL vmlinux 0xf96a353c crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xf9f85fdf unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf9fc0911 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa087406 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1eff4c subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa4a1d57 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xfa5591fd debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xfa65cd2f extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0xfa7bf64b ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xfa845859 scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec -EXPORT_SYMBOL_GPL vmlinux 0xfaa92ebb platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xfacb22fd pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0xfad26c94 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xfaecde7f ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xfaf47b35 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xfaf57205 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xfb0c13a4 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xfb1586e1 nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb4367ba udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfb5b97e1 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xfb645e6b thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xfb6be717 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xfb6c08df wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb70cb33 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfb798ea7 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xfb7cf5dc power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xfb9064af dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0xfb967968 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xfb9cb168 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xfba47c07 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xfba5590c get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc2b8a7 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0xfbc75040 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xfbd9384e virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xfbfffff4 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0d7027 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xfc128699 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xfc156157 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0xfc1c73cd blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc24f5cd regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc25da26 put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xfc33900e xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc46a447 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xfc563a26 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xfc56ab54 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xfc6c43d4 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xfc7b08cf ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfc837c32 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xfcb01769 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xfcb80b23 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xfcfcc0a7 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0xfd14d525 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd8b7982 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xfdd10a92 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0xfdeb1912 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xfdf41202 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xfe1a0e48 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xfe20dff1 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xfe25c023 component_add -EXPORT_SYMBOL_GPL vmlinux 0xfe3e6e97 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xfe44c6cc pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfe9dabfa sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xfeb55e21 genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfede34b4 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xfef37279 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xfef7b28e fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xfefc57d8 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff144cd3 to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2d21b6 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xff2d94aa nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xff3a1f56 pinctrl_utils_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0xff57da6c regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff67d82c regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0xff7099c8 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0xff726b17 spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0xffb258fc usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0xffb3fb36 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0xffb4e288 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xffc4bbf7 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xffd8030a tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xffdf1069 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xfffc4854 of_fdt_unflatten_tree reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/arm64/generic.compiler +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/arm64/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/arm64/generic.modules +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/arm64/generic.modules @@ -1,4392 +0,0 @@ -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_fintek -8250_mid -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -DAC960 -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -ablk_helper -ac97_bus -acard-ahci -acecad -acenic -acpi-als -acpi_ipmi -acpi_power_meter -acpiphp_ibm -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -aes-ce-blk -aes-ce-ccm -aes-ce-cipher -aes-neon-blk -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -ahci -ahci_ceva -ahci_platform -ahci_qoriq -ahci_xgene -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am53c974 -amba-pl010 -ambakmi -amc6821 -amd -amd-xgbe -amd5536udc -amd8111e -amdgpu -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apbps2 -apds9300 -apds9802als -apds990x -apds9960 -appledisplay -appletalk -appletouch -applicom -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arm_big_little -arm_big_little_dt -arm_mhu -arm_scpi -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -asc7621 -ascot2e -asix -ast -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atm -atmel -atmel-flexcom -atmel-hlcdc -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avmfritz -ax25 -ax88179_178a -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1pci -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-keypad -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm63138_nand -bcm7038_wdt -bcm7xxx -bcm87xx -bcm_iproc_tsc -bcma -bcma-hcd -bcmsysport -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -berlin2-adc -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmnand -brcmsmac -brcmstb_nand -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -cap11xx -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -ccp -ccp-crypto -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipone_icn8318 -chipreg -chnl_net -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -clip -clk-cdce706 -clk-cdce925 -clk-max77686 -clk-max77802 -clk-palmas -clk-pwm -clk-qcom -clk-rk808 -clk-s2mps11 -clk-scpi -clk-si514 -clk-si5351 -clk-si570 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -colibri-vf50-ts -com20020 -com20020-pci -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_parport -comedi_pci -comedi_test -comedi_usb -configfs -contec_pci_dio -cordic -core -cp210x -cpia2 -cppc_cpufreq -cpsw_ale -cpu-notifier-error-inject -cramfs -crc-ccitt -crc-itu-t -crc32 -crc32-arm64 -crc7 -crc8 -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -csiostor -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -ddbridge -de2104x -decnet -deflate -defxx -denali -denali_dt -denali_pci -des_generic -designware_i2s -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9601 -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -dp83848 -dp83867 -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_mmc -dw_mmc-exynos -dw_mmc-k3 -dw_mmc-pci -dw_mmc-pltfm -dw_wdt -dwc3 -dwc3-pci -dwc3-qcom -dwc_eth_qos -dwmac-generic -dwmac-ipq806x -dwmac-lpc18xx -dwmac-meson -dwmac-rk -dwmac-socfpga -dwmac-sti -dwmac-sunxi -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -ec_sys -echainiv -echo -edac_core -edt-ft5x06 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efi-pstore -efi_test -efs -egalax_ts -ehci-msm -ehci-platform -ehset -elan_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emac_arc -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_usb -emu10k1-gp -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -ene_ir -eni -enic -epic100 -eql -esas2r -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f71805f -f71882fg -f75375s -f81232 -fakelb -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdp -fdp_i2c -fealnx -ff-memless -fintek-cir -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fixed -fjes -fl512 -flexfb -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -fsa9480 -fscache -fsl-edma -fsl_lpuart -fsl_pq_mdio -ft6236 -ftdi-elan -ftdi_sio -ftl -fujitsu_ts -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcc-apq8084 -gcc-ipq806x -gcc-msm8660 -gcc-msm8916 -gcc-msm8960 -gcc-msm8974 -gcm -gdmtty -gdmulte -gdmwm -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -genwqe_card -gf128mul -gf2k -gfs2 -ghash-ce -ghash-generic -gianfar_driver -gianfar_ptp -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -gluebi -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-addr-flash -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-amd8111 -gpio-amdpt -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-fan -gpio-grgpio -gpio-ir-recv -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-rdc321x -gpio-regulator -gpio-syscon -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio-xgene-sb -gpio-zynq -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gpio_wdt -gr_udc -grace -grcan -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gxt4500 -hackrf -hamachi -hampshire -hanwang -hci -hci_uart -hci_vhci -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hi6421-pmic-core -hi6421-regulator -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hih6130 -hip04_eth -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi-acpu-cpufreq -hisi504_nand -hisi_thermal -hix5hd2_gmac -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hnae -hns_dsaf -hns_enet_drv -hns_mdio -hopper -horus3a -hostap -hostap_pci -hostap_plx -hp100 -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -hsu_dma -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hwa-hc -hwa-rc -hwmon-vid -hwspinlock_core -hx8357 -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-bcm-iproc -i2c-cadence -i2c-cbus-gpio -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-emev2 -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-mt65xx -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-nforce2 -i2c-nomadik -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-qup -i2c-rk3x -i2c-robotfuzz-osif -i2c-scmi -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-thunderx -i2c-tiny-usb -i2c-versatile -i2c-via -i2c-viapro -i2c-viperboard -i2c-xgene-slimpro -i2c-xiic -i40e -i40evf -i5k_amb -i6300esb -i740fb -ib_addr -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_qib -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibmaem -ibmpex -icp_multi -icplus -ics932s401 -idma64 -idmouse -idt77252 -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imon -ims-pcu -imx074 -imx2_wdt -imx6ul_tsc -imx_thermal -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int51x1 -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -iproc-rng200 -iproc_nand -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irqbypass -irtty-sir -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it87 -it913x -itd1000 -ite-cir -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -kafs -kalmia -kaweth -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -kvaser_pci -kvaser_usb -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan78xx -lanai -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcc-ipq806x -lcc-msm8960 -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-aat1290 -leds-adp5520 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-ktd2692 -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-ss4200 -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -liquidio -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -litelink-sir -lkkbd -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -macb -macmodes -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mailbox-test -mailbox-xgene-slimpro -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max5821 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77686 -max77693 -max77693-haptic -max77693_charger -max77802 -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc-bus-driver -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -mdc800 -mdio -mdio-bcm-iproc -mdio-bcm-unimac -mdio-bitbang -mdio-cavium -mdio-gpio -mdio-mux -mdio-mux-gpio -mdio-mux-mmioreg -mdio-octeon -mdio-thunder -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -metro-usb -metronomefb -mf6x4 -mga -michael_mic -micrel -microchip -microread -microread_i2c -microtek -minix -mip6 -mite -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_spi -mmcc-apq8084 -mmcc-msm8960 -mmcc-msm8974 -mmci_qcom_dml -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi001 -msi2500 -msm -msm-rng -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt8173-max98090 -mt8173-rt5650-rt5676 -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-afe-pcm -mtk-pmic-wrap -mtk-sd -mtk_wdt -mtouch -multipath -multiq3 -musb_hdrc -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxser -mxuport -myri10ge -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nand -nand_bch -nand_ecc -nand_ids -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -ncpfs -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_labpc -ni_labpc_common -ni_labpc_pci -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicpf -nicstar -nicvf -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nosy -notifier-error-inject -nouveau -nozomi -nps_enet -ns558 -ns83820 -ntb -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nuvoton-cir -nvidiafb -nvme -nvmem_core -nvmem_qfprom -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_mmc_spi -of_xilinx_wdt -ofpart -ohci-platform -old_belkin-sir -omap4-keypad -omfs -omninet -onenand -opencores-kbd -openvswitch -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -palmas-pwrbutton -palmas-regulator -pandora_bl -panel -panel-lg-lg4573 -panel-samsung-ld9040 -panel-samsung-s6e8aa0 -panel-sharp-lq101r1sx01 -panel-simple -parade-ps8622 -parkbd -parport -parport_ax88796 -pata_acpi -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pc300too -pc87360 -pc87427 -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-stub -pci200syn -pcie-iproc -pcie-iproc-platform -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmda12 -pcmmio -pcmuio -pcnet32 -pcrypt -pcwd_pci -pcwd_usb -pda_power -pdc_adma -peak_pci -peak_usb -pegasus -penmount -percpu_test -pfuze100-regulator -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-berlin-sata -phy-berlin-usb -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-msm-usb -phy-mt65xx-usb3 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-qcom-8x16-usb -phy-qcom-apq8064-sata -phy-qcom-ipq806x-sata -phy-qcom-ufs -phy-qcom-ufs-qmp-14nm -phy-qcom-ufs-qmp-20nm -phy-tahvo -phy-tusb1210 -physmap -physmap_of -pinctrl-apq8064 -pinctrl-apq8084 -pinctrl-ipq8064 -pinctrl-msm8660 -pinctrl-msm8916 -pinctrl-msm8960 -pinctrl-msm8x74 -pinctrl-qdf2xxx -pinctrl-spmi-gpio -pinctrl-spmi-mpp -pinctrl-ssbi-gpio -pinctrl-ssbi-mpp -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl172 -pl2303 -pl330 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-pwrkey -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pn533 -pn544 -pn544_i2c -pn_pep -poly1305_generic -port100 -powermate -powr1220 -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_core -pps_parport -pptp -prism2_usb -ps2mult -psmouse -psnap -ptp -pulsedlight-lidar-lite-v2 -pvrusb2 -pwc -pwm-atmel-hlcdc -pwm-beeper -pwm-berlin -pwm-fan -pwm-fsl-ftm -pwm-lp3943 -pwm-mtk-disp -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa168_eth -pxa27x_udc -qcaspi -qcaux -qcom-coincell -qcom-spmi-iadc -qcom-spmi-pmic -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom-wdt -qcom_bam_dma -qcom_gsbi -qcom_hwspinlock -qcom_rpm -qcom_rpm-regulator -qcom_smbb -qcom_smd-regulator -qcom_spmi-regulator -qcrypto -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio500 -rivafb -rj54n1cb0c -rk808 -rk808-regulator -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-as3722 -rtc-bq32k -rtc-bq4802 -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-hid-sensor-time -rtc-hym8563 -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max77686 -rtc-max77802 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-pl030 -rtc-pl031 -rtc-pm8xxx -rtc-r9701 -rtc-rc5t583 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-snvs -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7706h -safe_serial -salsa20_generic -samsung-keypad -samsung-sxgbe -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sb1000 -sbp_target -sbs-battery -sc16is7xx -sc92031 -sca3000 -sch5627 -sch5636 -sch56xx-common -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scpi-cpufreq -scpi-hwmon -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sdhci -sdhci-acpi -sdhci-iproc -sdhci-msm -sdhci-of-arasan -sdhci-of-at91 -sdhci-of-esdhc -sdhci-pci -sdhci-pltfm -sdhci-pxav3 -sdhci_f_sdh30 -sdio_uart -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serio_raw -sermouse -serpent_generic -serport -ses -sfc -sh_veu -sha1-ce -sha2-ce -shark2 -shpchp -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skd -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -slcan -slip -slram -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smd -smd-rpm -smem -smipcie -smm665 -smsc -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pcxhr -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-apq8016-sbc -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-imx-audmux -snd-soc-lpass-apq8016 -snd-soc-lpass-cpu -snd-soc-lpass-ipq806x -snd-soc-lpass-platform -snd-soc-max98090 -snd-soc-max98357a -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rl6231 -snd-soc-rt5631 -snd-soc-rt5645 -snd-soc-rt5677 -snd-soc-rt5677-spi -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-storm -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-ymfpci -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -solo6x10 -solos-pci -sony-btf-mpx -soundcore -sp2 -sp805_wdt -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -speedfax -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-fsl-dspi -spi-gpio -spi-lm70llp -spi-mt65xx -spi-nor -spi-oc-tiny -spi-pl022 -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-qup -spi-rockchip -spi-sc18is602 -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spl -splat -spmi -spmi-pmic-arb -sprd_serial -sr9700 -sr9800 -ssb -ssb-hcd -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stmmac -stmmac-platform -stmpe-keypad -stmpe-ts -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -svgalib -sx8 -sx8654 -sx9500 -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -t1pci -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc3589x-keypad -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -thmc50 -thunder_bgx -thunderbolt -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -torture -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_atmel -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_infineon -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish_common -twofish_generic -typhoon -u132-hcd -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -us5182d -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vcan -vcnl4000 -ves1820 -ves1x93 -veth -vexpress -vf610_adc -vfio -vfio-amba -vfio-pci -vfio-platform -vfio-platform-amdxgbe -vfio-platform-base -vfio-platform-calxedaxgmac -vfio_iommu_type1 -vfio_virqfd -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-rhine -via-sdmmc -via-velocity -via686a -videobuf-core -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videodev -vim2m -viperboard -viperboard_adc -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -vitesse -vivid -vlsi_ir -vmac -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vrf -vringh -vsock -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83627ehf -w83627hf -w83781d -w83791d -w83792d -w83793 -w83795 -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wcn36xx -wd719x -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -wire -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xc4000 -xc5000 -xcbc -xen-blkback -xen-evtchn -xen-fbfront -xen-gntalloc -xen-gntdev -xen-kbdfront -xen-netback -xen-privcmd -xen-scsiback -xen-scsifront -xen-tpmfront -xen_wdt -xenfs -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgene-dma -xgene-enet -xgene-rng -xgene_edac -xgifb -xhci-plat-hcd -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx_can -xilinx_uartps -xillybus_core -xillybus_of -xillybus_pcie -xor -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yurex -zaurus -zavl -zcommon -zd1201 -zd1211rw -zforce_ts -zfs -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -znvpair -zpios -zr364xx -zram -zunicode -zynq-fpga reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/armhf/generic +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/armhf/generic @@ -1,17609 +0,0 @@ -EXPORT_SYMBOL arch/arm/crypto/aes-arm 0x276b2f72 private_AES_set_encrypt_key -EXPORT_SYMBOL arch/arm/crypto/aes-arm 0x6c62e582 AES_decrypt -EXPORT_SYMBOL arch/arm/crypto/aes-arm 0xc30fcbed AES_encrypt -EXPORT_SYMBOL arch/arm/crypto/aes-arm 0xcf024ae9 private_AES_set_decrypt_key -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x45379c58 crypto_sha256_arm_finup -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xb10f07ee crypto_sha256_arm_update -EXPORT_SYMBOL arch/arm/lib/xor-neon 0x0f051164 xor_block_neon_inner -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x28865246 mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0xa650d33a suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x4cd14fd2 bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0x960f54ec bcma_core_irq -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x0684dc1e pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x24db0c4c paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x6b87548f pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x749dfa0e pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0x81d6919a pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x840ab44f pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x84172b8c pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x99b7d6b8 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xa530f41c pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xb4e1bcd4 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0xe1490ed1 paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0xf9f24c3b pi_init -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xa17b786e btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0a33695c ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0dac46a5 ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4146f1fc ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7c940023 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8798e305 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte -EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x23c1a99f st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2480db83 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4cfc00eb st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb9f81737 st33zp24_probe -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x551cdb73 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x97cb6ab3 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x98ee229a xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/crypto/caam/caam 0x1c758e97 caam_get_era -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x11c8f59b gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x31f85dd5 caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x4e5dc435 caam_jr_strstatus -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x6bf1e286 split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x9ba9cb01 caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xa7951e02 caam_jr_alloc -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x3c66f7f7 dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x6016dd0e dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xb3da9a87 dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xda1585c1 dw_dma_get_src_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xdb8c3825 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xeb7ea187 dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/dma/pl330 0x2f44bd0d pl330_filter -EXPORT_SYMBOL drivers/edac/edac_core 0x903229d3 edac_mc_find -EXPORT_SYMBOL drivers/firewire/firewire-core 0x02a79390 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x06fc3029 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x102e8b80 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1497c2b0 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1be9259e fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1c8b102a fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x20f5c70a fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2c6b325f fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4020dadd fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x407e1be1 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x45f63f3a fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d8876ad fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4f13ade8 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x57e47e54 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x63a3f784 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x718372d0 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x77916ced fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7b025fa9 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8e2567ea fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x94b85747 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9caf3f8b fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbd2a537f fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcaab6d07 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcc8df061 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcdacb6ce fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd6ac033f fw_card_add -EXPORT_SYMBOL drivers/fmc/fmc 0x06f0fedf fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0x2498b80c fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x4304063c fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0x4c67a18c fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x7811e31c fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0x916d5464 fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x9c951c4f fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xaf1559de fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0xb5346bbe fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0xe758091f fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0xfe66196a fmc_driver_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x010ba202 drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01ea6713 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01efaeb3 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04b5e8e5 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04b80211 drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0565f54e drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x059d07d3 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0657978a drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x068322b4 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06991989 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07332ef0 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07358e92 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x078b5f9d drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0793bb1a drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x085b83c9 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08b23a0e drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09b7d254 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09f62b37 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c6c5a3f drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eeaa6f8 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f1fc605 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10b5582f drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1212ecb9 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x129be1f2 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c0a96d drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13396edf drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1340ee45 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13c4253b drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14cadc9b drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1584514f drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1675a7ee drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dbd3d9f drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f717b36 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f862d59 drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x201f9286 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2022c6d3 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22ad0576 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c1d7a0 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22cb3e42 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24ac2ef5 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24de41b4 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24e42696 drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26e1a170 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x270c9392 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a2325bc drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c8c2798 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d0f6ddf drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eab702d drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f8dc014 drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3225e18f drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x342dcef2 drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34647eff drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34726176 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x347ebb57 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34860200 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a99f2b drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x367e6a6a drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x376d8d22 drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38b461c8 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38fdd883 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a117cca drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a2237d8 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a7b2583 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a89433c drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b7a8f6b drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3be59899 drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e6d9286 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f574cf3 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4153c132 drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4246a587 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a8a61a drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x476c9f23 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4777f0be drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48ca57fd drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48d76e27 drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49ecc649 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a493d57 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ad91170 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c703643 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ca3ea4d of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ce2434a drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ce5a029 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cedbf94 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d155498 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d8132ca drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fd7a12d drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51479134 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51c88f74 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x520de052 drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54541cfc drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5486ae2a drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56a5c20b drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x570f2c16 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57a9fdd5 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x580a2364 drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59dee875 drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a268d54 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a4ae78e drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d5aa62c drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x603ead6d drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60a5c490 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61634761 drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6169264b drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61fac006 drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6695f56d drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x678bcfd4 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x688a9706 drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x689a4f43 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69b6347b drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a1b99db drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ab02bf0 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b5d1513 drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6c183a drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bbe7396 drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bde367d drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c2cdb2e drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cc9ddd2 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e89b5d8 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f00b538 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f79cbba drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x719a262a drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72f498dc drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72ff801d drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x734b94b9 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0x735953cc drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7418c3cc drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x766d02eb drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76c3d223 drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7730179d drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7874ef94 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79605436 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79928fd1 drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9fbf85 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7be6b5a0 drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c340129 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d610d20 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d930265 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ef1c463 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f01e85a drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f36ee93 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fd3883a drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x804d9940 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x818f676b drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81f0f658 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82d2566c drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83034d23 drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8358de7c drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x844f618c drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84cbddc8 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x894e109c drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x897ca313 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8af7b56e drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b504de9 drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e0b49d3 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eb53779 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f939bf5 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x937b63e3 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9400ba81 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x950b1a51 drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9543b694 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x954dfd1f drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97b3f044 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x981f9e7e drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9832eb4c drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98c6e9ea drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99debd40 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bb9b0d8 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c148575 drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa05309f2 drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0d01b22 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa142614c drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa19430c9 drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa295eab9 drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa362e9cf drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa386be21 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3fd22e8 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4013500 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5adfd0e drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa74fec35 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7b51bff drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7c1b739 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8478908 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9018a30 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab402bd5 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabaa3222 drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaca3f4d6 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacbfee44 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad17454b drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf2509d7 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0ea068f drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11a86d0 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1f7eef3 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2550e79 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb25e8346 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb346e44c drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4339af5 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4c1cf1f drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5856972 drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6381a23 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7870727 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7a7ff5e drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb88095ea drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba48950d drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb4f4057 drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc04c992 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcf1870e drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd83813b drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe10d988 drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe29d124 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe586bfd drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbedd2ef5 drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfea5292 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0690cef drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc06cd37b drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc084b7f7 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0987e95 drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0fa0eee drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc219e1a2 drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2c609b7 drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2dddc1d drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3a20262 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5bfa529 drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc799e296 drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d4b03b drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc847c222 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8ade174 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8fa0967 drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9987eca drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbc1d92e drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc9c7759 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd2f8d89 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd5cc886 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce36b0eb drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce5e85c4 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce6b2ff2 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfc54dc4 drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfcaf421 drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd00d2228 drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd10141ff drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1768fab drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd18a2d02 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd190c3db drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd38b3df2 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd47274c8 drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd64afb6f drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8118ee0 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8c23781 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdac23ad5 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb1fe716 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbcb036c drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbec6ad1 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde7f9524 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdff2439a drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe147fa57 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1cc2b88 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe211b278 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3316cd1 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe61b55c2 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe62d28d5 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6aa617d drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea007ac4 drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb782856 drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed34b426 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf16ba707 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2b78605 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2e89d72 drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2ec7a3e drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3f70b01 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf803368e drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf881d732 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb02e9dc drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb645844 drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbbfddaa drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfec18d69 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfee91dc4 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff1edb84 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff6faa54 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0108cee6 drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bba74d3 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fca3801 drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1223108b __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12e6c06e __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1491acf1 drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19696a14 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x197e5f73 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19891f65 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a511cd8 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20424c5a __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22093194 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23c87c80 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25c3f220 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2604a4dc drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x262e62bd drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x282c9347 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a313615 drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a33f48a drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a919545 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2acad8be drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b16f494 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b6ff161 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2de12739 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e3106f7 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e6a5e4f drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fdddf67 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35d8d151 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35ea05a8 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392b0ed9 drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b2b5b2e __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bc5128c drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e2ed783 drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41bb1466 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46d55b0a drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49533b4a drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49aa95a8 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4afabbec drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d3c7c4f drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d4bf64a drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e3c2c4c drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e5dc052 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50af785c drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x514f3a65 drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5190260e drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51f94928 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55262995 drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55bdad40 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x583ebdda drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59c0bdeb drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c04e420 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c8af522 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c98d441 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ed660b7 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x605ac6f3 drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x606f3bb7 drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60ebce54 drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64915072 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b529a0a drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71baa571 drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x720cbaa9 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x752faff7 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7795e366 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78add99a drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a28d446 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b4a3d9d drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e791984 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fdd9c87 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8078ad91 drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80aa2ed2 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80f67a96 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81a506bf drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81ed1ecb drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x854bc2e3 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85d17cbd drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x864d913c drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x873488e5 drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b931d64 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ccbdb39 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d3b6f71 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d5a90d9 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f8062f0 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fda62f0 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92853ec0 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95c79af9 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9733ed1a drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e389c0a drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ff9163b drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ff9ce19 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2f93478 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa357402f drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47ce465 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6406966 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa801b841 drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae88f626 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb18f4966 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb52ebe5d drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb96294c8 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbacfb305 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbad202e1 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbcaaecd drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe5f82f7 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbecce3a3 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc019bff4 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0b8d46d drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3d56727 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc434d66c drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4535f27 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6797fb4 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc81c370f drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca612d41 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb842259 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdca34cc drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcea613b9 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd04e1311 drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd08564d5 drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd08e2a28 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd28aa748 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4985992 drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5884e9e drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd80d065c drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdab4dd5f drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd01acb2 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd8e35d5 drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfd89a2c drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02bc64f drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe255c12d drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe39f86be drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4b6d1cf drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5648dcd drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb9edcbd drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee4643b5 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeedeede0 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf281f025 drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2c751ed drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5e61903 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf838955b drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa00fa23 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbb5c8d4 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfca8b5d4 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe0fd795 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe943356 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05d7e58f ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x136ec7fa ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ab77a40 ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1cdd3c43 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x23c9df99 ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25964ffe ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c7fac9b ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x307c631f ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31a3ea89 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x443e5993 ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4628b006 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x473f5365 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4836d47c ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ecdce82 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x51822248 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ea486ab ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6902850e ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a32978a ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c0ec969 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x717ada9e ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7c1645a0 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8173dc20 ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8226cde4 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8589758d ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86bb8a6c ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x918952b4 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9272459a ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9db1c07b ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa363b9d0 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5210d5c ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa8b80521 ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb33bb868 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb42d22df ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb53f741e ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba97a114 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbcd39992 ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbfb82835 ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc14da548 ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3276602 ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc537e0eb ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc643c86b ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc968d68f ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9dfa815 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca107145 ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcdefb69c ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd082b8a8 ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe3721125 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe44b4c56 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8a25dda ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb09cd2b ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec1f175c ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xed97e3dd ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefc4df0d ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0d5ec82 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf130b6c2 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf48bab58 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5acb62c ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf694a4c4 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf9685ae0 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbf94d9b ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd7484d3 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe8cc064 ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff187da0 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0289b35e host1x_job_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2ecc8b30 host1x_driver_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x43799a4e tegra_mipi_calibrate -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4625cf85 host1x_channel_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x48485133 host1x_channel_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x50acae6e host1x_syncpt_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x519a8f03 host1x_job_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51db3529 host1x_syncpt_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x525b42c4 host1x_job_add_gather -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5586317e host1x_device_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x58daa8b8 host1x_job_submit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6a709747 host1x_syncpt_read_min -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x734b7f43 host1x_job_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8809becb host1x_syncpt_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8d4b1ff5 host1x_device_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x91c8174f host1x_syncpt_read_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9729fa7a host1x_syncpt_incr_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa158b6e7 host1x_syncpt_base_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaabb2c87 tegra_mipi_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaf2c1f41 host1x_syncpt_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb9215872 host1x_syncpt_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcf66a71 host1x_syncpt_get_base -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbf98005a host1x_channel_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc197256c host1x_syncpt_read -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc61f6cf9 host1x_driver_register_full -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdacd6cb9 host1x_job_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe13ab211 host1x_job_unpin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf7c32bf9 host1x_channel_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfb8e5929 host1x_syncpt_incr -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfe790f9a host1x_client_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xffb8f20a host1x_client_register -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5eb20f6 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x36467e87 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x58c79a63 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xaf543dac i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x3a3faa3e i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xc7f6660f i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x5c4e2474 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0ce9cee8 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x194c2c60 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1dfff8e0 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2a28b4f6 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6b866f3e mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7f6ff198 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x868f847f mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x93ed25c0 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x96df12e2 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xab7434cd mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc7bc96e6 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc9f8f647 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd159f3f4 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xec1ec49d mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xeef6cd05 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xef97fd1a mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xbc7bca39 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xfeec35c6 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x8bda5f46 iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xe0991ecd iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x1e2a29c4 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8dce71af devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xd1e36663 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf17cc5ac iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x3f0d0d1d hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x58ccbea9 hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x687471a9 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x98aedba8 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xbea5e947 hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xd51021b8 hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x4be3d45d hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x9f2d8da7 hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xb0aec6d0 hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xc909d841 hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x050a519d ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x158e4aef ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1fcb3e40 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3f7ba406 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x47eba7d3 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7dd84db9 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb30a0613 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xea768ae3 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfa3ffbc3 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x47308a4a ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9ccbfe1a ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xbf9443a5 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf33177e2 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xfbd44f41 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x105c0766 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xda0e5c0a ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xed3b028a ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0fcaf826 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1413e8fd st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x21845439 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x278b32ce st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x33abebb2 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3b41f075 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x578c48f9 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5cf745da st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x63b34f55 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x743d140f st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaf8aa79b st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb27b1713 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb5a2946f st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbd98fb5e st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc16307e4 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc2349896 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdb1a032e st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x26294b4f st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x51a034b6 st_sensors_of_i2c_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xabea387e st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xc16d8fe2 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xd07ad07f st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x389e6edc hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x3ab91ae2 adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xdba1f8d6 adis_enable_irq -EXPORT_SYMBOL drivers/iio/industrialio 0x038a569c iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x15f5c108 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x19f61117 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x25c78150 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x27ea3a65 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x2904e6e2 iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x2a96a879 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x34b724fc iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x42f1b21c iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x599fe5eb iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x64766737 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x7e0f888e iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x81c97d73 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x888a12b3 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x9755a87a iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xdcca3995 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe15bc1e9 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x84c2cec5 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x84de06e3 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x800993f8 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xb2e1ea22 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xea7d3e86 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x35cf8970 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x99849c5f st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x5347cc38 rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x67efd325 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x7c97712c rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x7df81f32 rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x80d6e332 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xd9108c98 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x02aef254 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x261cf979 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x29dbed46 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3b9ea293 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5560220b ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x56e29cb6 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6b2b0283 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6e3d8eb5 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9239e093 cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb470f0e4 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbac9b2af ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc4ba68fa ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe76cce06 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe84dd8c2 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf39cbf8e ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf8fbf7eb ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf9765985 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfbc8ee17 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02991324 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x054cf132 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06a6166b ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08a3fe01 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09d23fd9 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b545c93 ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f4a4e00 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1002e477 ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12420b85 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a271da9 ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a6a2dd2 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b3bf771 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1eba5288 ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1edd91c0 ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f74be25 ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24948656 ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25d4ec01 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27c3c03b ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29aa159c ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3306996f ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37097de9 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3af07ced ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3eb0e3e8 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4064998d ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44c5ef99 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49f06040 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a4ca936 ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bee5a43 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d515689 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f3a9a2f ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57e7d4fe ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a198fe2 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bf7faf2 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c917623 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e1d0e72 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x627b0a27 ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x658919a1 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b85600d ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d2cb1de ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dd7844c ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f037c92 ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75f38c86 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76ee3af5 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a5809fe ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82a0972d ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b416346 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cafe996 ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d280580 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dc88541 ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x901f3837 ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93b64fe1 ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x969875a7 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a5b3a38 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b8913fd ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e00cbd5 ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1b08fb8 ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa22e9132 ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadbea68f ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf29ba78 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3956bb7 ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3a96cc9 ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb525ef58 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb87cfa31 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8b00e44 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8fc1494 ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbde39149 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc38f12d1 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc49b487b ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce880c53 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfff4660 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8ee3960 ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1bb89b6 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3141a2a ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe75f7ad2 ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe88f80ea ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8b6d92c ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea03ce57 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed5f8d31 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf274f027 ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2ccc606 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6171a01 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6746bae ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa44970d ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x0a271f68 ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x20b0f59b ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x29d91ebe ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2ec44615 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x307a9c0b ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x3cf8228c ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x434e15a0 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4430d8e0 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x59799dca ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xbc2c1e16 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc37394fb ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xcc299d66 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xfb14f73f ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x23cbeb3d ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x42f13df8 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x87c28832 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x89bff619 ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9e7aad54 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb31972ea ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb6758e97 ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd93ece2c ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xde9e1b2c ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe0551454 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xebb5545b ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x09283464 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbb0199b7 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x142ccdd2 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1a61f009 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5a3ba630 iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6224e13c iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x743192d6 iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7589f40f iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x79ddfa7d iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x83de0cc8 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x86a2dcaa iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x959fef81 iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x982c25f0 iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xaa2bdff0 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcef73a13 iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd5101dbc iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfa9a2882 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0cbe1a6c rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1567deb8 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1be3e76a rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5ded1704 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6056343b rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x619d8b4f rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x67270bcb rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x714e402c rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x76a80f10 rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7f47fc51 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8089040e rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8353aa9d rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8f5f60ea rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa963f12f rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb50ed48d rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb6b654ed rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc0b675ae rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xda1318b9 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xde0b61e6 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeca01221 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfe93874e rdma_leave_multicast -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0b4fcd2b __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2be8c6c8 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2cf3b855 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4acbf29e __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4c7d7618 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb7b5521f gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xbbf74e8d gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xc7aaaad8 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xd73dcb83 gameport_stop_polling -EXPORT_SYMBOL drivers/input/input-polldev 0x0da0bf70 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x4215acb5 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x46cdbf7d input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x64a02901 input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x91706c8d devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x2abfdda6 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x2df2b4e8 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x38fff33b ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x3cac8351 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xaa04a69e cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x33055473 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x405e3ba4 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x6adbd770 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x83a0d4da sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0xa9fad94e sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0xf8a6e255 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x297aac70 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x3bf9716c ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x24fba3a6 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3ccc3d7f capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x530a2f5f capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5c0f91a9 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x622bf2bc capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x86b31ac4 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8a9553f7 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe4cd47bc detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xea1ba492 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xedcc9e70 capi20_release -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0f5a78e0 b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1e120002 b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2be8fa3c b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2c08bf8c avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2fa67516 b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x31102b4b b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5bc11408 b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x74e35ab6 b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x84219686 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x865e2ae1 b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xcb36a521 b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe4b3e79a b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xec4f2578 b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa58e874 avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfe94bb23 b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x11cf825b b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x65b25110 b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x87c9b227 b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb5c4cf21 t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xca333e7c b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xcb800970 b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe6c0a11e b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe6cb7e8f b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf5ad234b b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x4b64bd28 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8e9f01db mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xdc60217b mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe0157fd7 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x910f89bb mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xdcea4116 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xb0f11f45 hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x34cb51d7 isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x8d61be30 isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xd9f56710 isacsx_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xdb2799bc isac_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xee6c84a4 isac_irq -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x903df726 isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xd4b5fffe register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xd591d83c isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x12589302 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x21d6e05c get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x267e9fc2 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2b9cb5a6 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3732f434 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x38791174 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3faa367e bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4c01227c get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50614c0c mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x75a92a26 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7b3515e3 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x80b9a682 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9041e0da queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x94d683a3 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9ea122ab mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9eb80405 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb9c5ebf9 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc37aa1bb mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc920ec04 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcfd376e4 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe713beb7 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeaef3fe9 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf8508270 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x05ff9d4f omap_mbox_request_channel -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x69a67088 omap_mbox_restore_ctx -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xa07dde6c omap_mbox_enable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xab3fe809 omap_mbox_disable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xdbadd781 omap_mbox_save_ctx -EXPORT_SYMBOL drivers/md/bcache/bcache 0x05a16f03 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0x21c7828c bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0x3361c614 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7c6a80d4 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3456dd1 closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc6130b74 closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xf8fd4bac bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-log 0x140bad47 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x1b8c8feb dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x5c5aa83c dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xf4aadcdf dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x060ff306 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x437878c7 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x589cc040 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x75f6c244 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa991785f dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd097ae02 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/raid456 0x9a364111 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0deb2df6 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x20337697 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2b41f319 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x436ca701 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x62450d2a flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x64a2445c flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x93211c20 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9416438b flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xaa832bfd flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xde4cbf70 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe3223fd7 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf9ee3264 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfde1df00 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x4120cf9c cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0x60fa3099 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc7bb4366 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xee4a214c cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x2dd75cf4 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x3f26a97a tveeprom_read -EXPORT_SYMBOL drivers/media/common/tveeprom 0xdd92c879 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x03b54d78 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x091163f1 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x10fee097 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1b76bf02 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x24cab32c dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28c40493 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x344908d4 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3656cb10 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x368e634e dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3bf108b1 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5efab63b dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x629f9d31 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6821b35f dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6866e611 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a6ee265 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6b5ae76d dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72180695 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x75b5d118 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8633f37b dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x86b9c7d8 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8b50d08d dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x95ff7a2a dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9850cb88 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x989a080a dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9c19040b dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4b7b473 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb018713d dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb39222a9 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbcc3cd18 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd4869be4 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd78c9e83 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xda3771ee dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb1a8bd4 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdc094c39 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdd50c8e2 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe8168683 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf48116c6 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xff444eaf dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x026d9838 af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x94ba0dc9 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x07f1d893 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0e097f5f au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x88a7d470 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8c3935bb au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8feebae1 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa149a85c au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa6796574 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xadfee8fa au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb4cfe611 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe4f54fb9 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x886fa9dd au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x0fbb3384 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xe2caf1c7 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xb0b93416 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xdd1f16f5 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x72ad6948 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x86c3c1b5 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xe5956330 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xe9077f1c cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x641a298b cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xb3b075d4 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x8d0292fc cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x3a3ea17b cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x51db1db3 cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x950d27e8 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4555e6f0 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb174c64b dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb290b96c dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe8e3d227 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf0ecc719 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0a714d7c dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x11eda209 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3574520c dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x50b353e7 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x529f70ad dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x52d743b9 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x683f2c43 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8132f3b4 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8e5d3851 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9171d9cf dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x926eb1ce dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaba08e18 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc1d5a63f dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd733f282 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xea0a8696 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x737642fc dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1e429a91 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x281c8895 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4831f8b3 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6964609c dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x83a598ab dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x8c82d313 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x14fe5062 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3c30b3d8 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xbb9a1cc9 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xeb5d552d dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x6237a45f dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x69b76d7c dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7b28adee dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xcce130b9 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd0a4888c dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xecbbde22 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf68d829b dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x9c522fd6 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xff645606 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x98490131 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xe89a099b ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xb06af602 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xebdf4516 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x630fc993 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xdf406f97 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x392cba26 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x238abedb isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x61d68744 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xa74076dd ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x1617e599 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xbbcfa298 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x78df03f7 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x712c9bad lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xd8819e1b lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x52f2e731 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x04dcc277 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x53f35ed5 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x9bd7855f lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x6e80ff4e lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x7239bd69 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xde0cdf06 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x2e469d7c m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x3b91a392 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x53c563f9 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x76ac1a33 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x424c2540 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x02d51612 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x0e0c9d11 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xaccee66d or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xa68c9bbf or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xce79ce81 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x0afebb62 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x32783d26 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xa8f38578 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x14b62225 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x83a2d80e si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x5ca98897 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xcde397b5 sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xecc816d4 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x8f2ac7d4 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xc5b36d51 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x898cd6a0 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x0c671e66 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x65311dbf stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x57b63455 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x30dc0dc3 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xe63e0824 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x169d474a stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x8beebb2e stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xed9304da stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x092087fe stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x3992f98a tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xe063241c tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x485c480e tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xa7578218 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xb5a91152 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x64dac17f tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x2a080342 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x3bc9f190 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xc1cd4d0e tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xb95e4f73 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x0007b843 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x8dd57184 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xa1ed6d34 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xf47fd188 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x6b08857b zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x1eee442e zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x1bd2a922 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1d566ead flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x386dfa75 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3d18075d flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9f28c021 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa1699d03 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc82ae31d flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xeaece34e flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x34ac12a0 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5c90ee17 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xce191e61 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xfe95b4b3 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7cab5172 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xb2e4132d bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xfd716e82 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x122c01f3 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1af5e7ae dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x29ef1a4c dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2afbe722 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x41270882 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7e5b1cdf rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9ef440ea write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd7a80240 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf166be68 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x54a8982b dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x359be1ea cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc1fa39cb cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd0d2b91a cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe0849f24 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe6ae0a48 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x2dcf4ede altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x16fa3422 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1e1ef148 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x347d0be8 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb46dd58a cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xda06e059 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe4cb2e28 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xeb2ceb91 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x5685e706 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x6ef6b975 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x2a7b56f4 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x54865698 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd33bfcdc cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf89b41c4 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x16c691c2 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2597f971 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x28fdccd9 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x511f95f3 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5459e197 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x995e2d26 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbd002449 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x00502f81 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0d81ecd2 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x307fd523 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x55568643 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x55d255de cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x62a7406f cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x76148f10 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x81d62fb0 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x84332fab cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8a312b1e cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x906da14d cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa85c118f cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb48542ae cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbc6697dc cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc7ce11fe cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd2b5295f cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd49bbecd cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd7ee5176 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd8c8199b cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe76d8f09 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x02800abb ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0ac6e138 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0f402c4e ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2defb8a9 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3008e911 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x359028df ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x46306123 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5010c614 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5b02b870 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6b23183b ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6fd520d3 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7a5d656e ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x83ed19a9 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xae4223c8 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd30c1027 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdb996296 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfc2bda96 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x02378e43 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0cc3bc31 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x138ac499 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x17c919b7 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x36b07e6b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3c5d4db3 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb4b9f90a saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb6f32d13 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb8dff0ab saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbd756f3b saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcd236610 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd84653e8 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x081d14ad ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x36cc5379 soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x6d7224a4 soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x9acd2114 soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa97dd954 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xcb483f02 soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xecb21a00 soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xfa8af359 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x021df6c3 soc_camera_calc_client_output -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x15abd9a8 soc_camera_client_g_rect -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xb3d167f2 soc_camera_client_s_crop -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xf7550b6c soc_camera_client_scale -EXPORT_SYMBOL drivers/media/radio/tea575x 0x166995de snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x2233a24d snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5346f306 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x71f44e67 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x73334a36 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x7a70ddb2 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xa2991250 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x08e30053 lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3c99f3a4 lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x493853e7 lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8bd3cf35 lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9afc59b2 lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xad148c21 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc1c87948 lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xfb90dbb6 lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/rc-core 0x3ca0161a ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0x8c1af3d7 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xa3823075 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0xa71b56de fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x32782f17 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xd12817c3 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xd73a47a6 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0x53b2654e max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x2a22a1a7 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x7726ddaa mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0xf4eedb5e mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x721a8efd mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x14622346 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xc7a7d9d5 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x193bfdf8 tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xc449e069 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xe91a6cd7 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x2379362a xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x073f0161 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xb6669644 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x02ec2051 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x310f1952 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3491d348 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3d9c4f7b dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4a49846e dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8f5d9171 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb49bbc3e dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb5296138 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfd676559 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x07a241d4 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x173afe06 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x491a41e6 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5b7b2742 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7c81b539 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xaf3a1157 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf5b11110 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x1aa36199 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0d9e353e dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1150c64e dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1ab37409 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x36da32c9 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3de1cb36 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4d29bc54 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5c99f5e7 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6b0cec50 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8152f00d dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe44f2e77 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfba44267 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x2e9ed736 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x8ac6e5cc em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x462a469c go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x48761eae go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7c38b13c go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa13f7b8e go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xaa29d4c6 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xaefa7dd5 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe5c740dd go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf397d119 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfa2c9f75 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x108b38b6 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1aa1fdc7 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x38a62eb4 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4ae6e9c1 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5c9f51b5 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x618b3e11 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x86a574f5 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x97bc4d2a gspca_suspend -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x11f96d10 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x348c3fd4 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x4cb2d3a6 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x12606c13 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x39a76dd9 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x56f30622 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xb3736f6b v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xbc6a0d83 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x076c7861 videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x0a60d00d videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x4964570b videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x759d646f videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb7859d6d videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb96a9c12 videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x6cf39557 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x708e4dd0 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x16c57655 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x81a70627 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xa233fb45 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xde3e18d7 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xdf6bf657 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xfdeb4576 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x9c980bea vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00909b60 v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00988eba __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03fc8bc7 v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x08e4c328 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b442b47 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1326c14d v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13aead98 v4l2_of_free_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x155c84b9 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1631fbf5 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x163adfad video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b9a5bdd video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d031b87 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1fd60137 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x21fb3967 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2257046f v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x264c8db0 v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c428d59 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2fb6993c v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x312d763e video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x328d60be v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36ac00ea v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36d7dbe4 v4l2_of_alloc_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36db6fb6 v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a523282 v4l2_of_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ef284b5 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x41ef3f8c v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x42d1ed56 v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x436e8249 v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d07eae0 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e93e1fa v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51353f9d v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5400adef v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a565413 v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x658e4a20 v4l2_of_parse_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ebf241a video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74d1a8e6 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75e859e8 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x791b1b62 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x799e067a v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e579704 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8550dd1e v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x88f5f1cb v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c80ed03 v4l2_of_put_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e38f70b v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x93c90c4f v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x981f33af v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d6e0f02 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9e2c04e1 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f6233c0 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5b6db15 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaed3d373 v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb2e4b01e v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb92b5466 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb9b40737 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe491161 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc02e1960 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc74a1c6d v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc86f58ae __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce834504 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd09ee68e v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd27cbc5d v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd64aa5f5 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd974537e v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde2a5b0a v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6c36299 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xebd2af72 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xebf73caa video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee5b36b8 v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xef16b461 v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf01ffcf8 v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf4294126 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf4885160 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xffaf2111 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/memstick/core/memstick 0x04e49e84 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x1a173846 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x28eb06e2 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x30d70c3a memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5b5c17c8 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x665e4758 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x832b6563 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8b166f47 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8c9b5da4 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb938df24 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xbd2cb131 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc2ed3012 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe401d4b8 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xfcf9c3de memstick_next_req -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x09b94275 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x14ecada6 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1959b61b mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2dac03dc mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x322b3b41 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x35ce9b3b mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x440d3b8d mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x48e8f48e mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x59925147 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5faa3796 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x61ad9ad3 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x63c82129 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x69dc96e1 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6ad885eb mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x739d6bd2 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x76173c54 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7ed88098 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fabf903 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x832c20b0 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x84d074ba mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x87f74971 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x924fd1e6 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xabb0520e mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd8ce7478 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdb3f8b87 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe9884c2f mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeca35028 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf1cfc1b9 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf985cc00 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x04003de8 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0e997a43 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x28abfd4b mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3e807c1f mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x422ee039 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4a7ee347 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4f68d2a9 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x55ec629a mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5618a4e1 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x57d97a4c mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5a28d640 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x63ce65f8 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x70f9199c mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x76bf4de8 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7c41ff87 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8ae0184c mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8f3c9fb8 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x95b46c38 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x972389c7 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9aec30b4 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9df8a2f1 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa1588a9a mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xabdefc5f mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb3f37cce mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc2fce3c0 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xca8532a5 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd306b2a5 mptscsih_host_attrs -EXPORT_SYMBOL drivers/mfd/cros_ec 0x00451549 cros_ec_suspend -EXPORT_SYMBOL drivers/mfd/cros_ec 0xce04c8c7 cros_ec_resume -EXPORT_SYMBOL drivers/mfd/cros_ec 0xdc3a5e30 cros_ec_remove -EXPORT_SYMBOL drivers/mfd/cros_ec 0xf8d7e21a cros_ec_register -EXPORT_SYMBOL drivers/mfd/dln2 0x2b1079e9 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0x36904b89 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x55515bdd dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x2094f4ae pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x8767b89f pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x12db3264 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x19a00a28 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x512c5742 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x575f32fd mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6052e9f9 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7ec7bfb3 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8758eb7d mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x905f8e5b mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb76fba14 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xba94e851 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf2160755 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/qcom_rpm 0xd042c9be qcom_rpm_write -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x14622a5e wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x9eb8db6b wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x54c9de9e wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x72f2d4ac wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xcbabdcb3 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xf991672a wm8994_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x45a2cfa5 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xa9f6e38a ad_dpot_remove -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x8a05ed90 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x54c9565d c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xa35cd785 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/ioc4 0x2ed8a2c0 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0x32b86820 ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/tifm_core 0x10923a3a tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x1cb03de8 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x4351a088 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x4db5cff4 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x633ad3fd tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x84bf5147 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x92207a6e tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xbc366510 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xc5f8cc62 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xd8d5fbe2 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xe3e4cb7a tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xe89e7462 tifm_has_ms_pif -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x336e6efc dw_mci_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x6e842ebb dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x96445ea9 dw_mci_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xdf59173a dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x3893554d tmio_mmc_host_free -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x59d07841 tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x6d3deee9 tmio_mmc_sdcard_irq -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x7a6fd700 tmio_mmc_sdio_irq -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x83331982 tmio_mmc_host_probe -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x8aa697e7 tmio_mmc_host_remove -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x932be2e2 tmio_mmc_host_alloc -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xf02062dd tmio_mmc_card_detect_irq -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xf7d8cd19 tmio_mmc_host_runtime_resume -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3248771d cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x35b1498f cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5d60667b cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa1b14108 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa4eadb2e cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa6c5a794 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb85a98ae cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xe9707871 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xfca92ef1 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/nand/denali 0x792375d0 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/denali 0xd242ddbe denali_init -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x023f0853 onenand_scan_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x044e0109 onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x06a382e6 flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x7d51ac1d onenand_default_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x054c5e82 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x148bd311 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1bd97e4b arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1f4d16d8 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4f2d7cd0 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5840233a arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb0d8b062 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xda141cb5 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdec26c44 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf6d47704 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7c2e834a com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa8f0d597 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd86cd2a1 com20020_found -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x15488f3f ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x32040b4d ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8b186bb2 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8efbe36e ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb33b9ed6 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe49d5bf6 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xeb4e378a NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xec8b5cc9 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xefdcbbae ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf9be518e __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x688226f3 bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x1265ddc5 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0afa1c22 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0bd79c3d cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x35e1261f t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x38f65442 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x46e2b67d cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x517c797e cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x55a16686 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5be1310e cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x91628ffc cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaea308e0 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb3e5d047 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbb280a18 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc1ce2533 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc1ebc671 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc1ff824b cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xea9b29de t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ec3aa1a cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f472900 cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x219fea59 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f82318c cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31343597 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3551330d cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c7d7285 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x411b805b cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x448f3b34 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47a6e307 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47f66a07 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4de31aaf cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4fe943a2 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x528ba6bf cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a672141 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5e68d8e8 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x601512df cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ba57c04 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x71e987b8 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7ec07a99 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x81551329 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x853ff181 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c6531a7 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x935cc2bf cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x94be0b51 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ee09b1c cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa527ea1b cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb66fb4f8 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbeaf49bc cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc531fffc cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00a4f2f cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd265fe84 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe74f3899 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedf2f2b4 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa50af6d6 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbe1fe4a4 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc4e065f5 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd7c52d49 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xde104e12 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xde2a7e26 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x0bc0d58e be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xee21a946 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/gianfar_driver 0x79f28897 gfar_phc_index -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x1564812f hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x5d14048c hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x8c0e4680 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb86b0777 hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xc2b81a7c hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06b62382 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10f09d58 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x140fb178 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x233f4efd mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f749dad mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fc8c258 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31c357d5 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c2bf5ed mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3edb43c3 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4095939b mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40f41cb4 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4984a8c2 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bfb97eb mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f65310c mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x501d61a5 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x531d0fde mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x589063c9 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83ba5815 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89d4b411 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91e77545 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94275ace mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94691021 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ffc64bd set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaed620cd mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2dadc1a mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3cbf345 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6ecff36 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8496086 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb5af146 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3c32786 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0f5b7ee mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1429642 mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4e5460a mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6fc2396 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7f69839 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf16738fd mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf810eeb8 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff4dbb72 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x004fca02 mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0365cb01 mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x126a0576 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12fb9b48 mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20177e41 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c2d41ca mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cb3919c mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d41ee57 mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fd244b7 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3436f509 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c307ca1 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x484ad3a5 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d987c89 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54454eb6 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x546b1606 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x609ab20d mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6735c50b mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x698f0402 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ae2cf80 mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82987e7c mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84afeebf mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88070736 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9216fc2b mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa003bfc2 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5f0ca03 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa88f4dc3 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8e422e9 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb34e7c45 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb596e77e mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8193a36 mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xceacccd1 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd166ac14 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3fc55a1 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd934d330 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3bd99e4 mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe542d01c mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf980c6a2 mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe7831a8 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1d54dcff mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x316d25f3 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x40e2bd82 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x69328077 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x842a4628 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd58b0f8e mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeeb529ee mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xb8e6f918 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1fbc75fe hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x402395e6 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa0707869 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd87f9621 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf461c6ac hdlcdrv_register -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0039c713 irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x237dd3fc sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4571d630 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6accc96d sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7f4b9dbd sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9e974696 sirdev_raw_read -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xacb86b5e sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb6c11ba7 sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc9605541 irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xecebbb33 sirdev_raw_write -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x1240a87c mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0x1d3f755e mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x1f1b15c0 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x2069d048 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x76dbe88d mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x8b7193a9 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x9334e8aa mii_check_media -EXPORT_SYMBOL drivers/net/mii 0xe406289d mii_check_gmii_support -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x1d3644f7 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xfd7ea216 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x19b95766 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x6565b844 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xcca3c456 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/vitesse 0x7a4a9fe2 vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x70043fce register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xa290ea44 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xc9932f7b pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xab89b828 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x0fe39fec team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x5373d479 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x5d6a4871 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x5f58125c team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x76828711 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xc2f915f7 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xc6472a67 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xf0479513 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/usb/usbnet 0x04869496 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0x3eb177e6 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xa657b12c cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/usb/usbnet 0xdfb5b9dd usbnet_link_change -EXPORT_SYMBOL drivers/net/wan/hdlc 0x13e5e912 hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0x48701ac0 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x648ad85e hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x81072959 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x81e3ec2c unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x86804d10 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa6c1d7d9 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xadb2e7cb hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xbd4c630a hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc1e5e3b3 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd68515e4 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x5915e34d i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x00f1093e ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0157bfa3 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x07758a33 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0da18e1f dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x14fc5a9c ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4385c3bd ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6ea3b122 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x990065d0 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb84db79b ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc3deace0 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd1b7529e ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf65de9dc ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0473fcce ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0dba1626 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5a6c195f ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f06a447 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8f8cc2d1 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x91b4e705 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9d0d361d ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb04e2cb5 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb71fc75d ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6c50248 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd90d1581 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8b47f3d ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xec9653c2 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfb4f9841 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfe11dcc4 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x00729f6c ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x009ecd44 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2825c037 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4ffa80db ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x53381425 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x63cdf0c0 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8078c1ad ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6aec276 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb843bc86 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd70cea11 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf4aaef3d ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0522024e ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0e750e7a ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x136f2300 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a47c869 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x27b3035c ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x288a392a ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3bdf6d4a ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x48baa369 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x54b151b1 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x668a4577 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6d8f732f ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7cb9b216 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa51acd74 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa8646744 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaa7ec9dd ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbabb68e9 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbb172ab8 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd67092af ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd7860687 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe200b9c2 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe5e7b97f ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe6ee97ab ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf21c4dce ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00ab8a50 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0141f56d ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x019cfce0 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0325af88 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0512c4fc ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08590bdd ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08de8c56 ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0919370c ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c02d349 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x127802c4 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14c44702 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16b2fb91 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x180e10e8 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1bb7d81e ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x222fe188 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2286f990 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x262892ef ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2635a735 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29dba423 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c0705fa ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ced4195 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e0a1a18 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3246fcbf ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34c1fc82 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36548b61 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37526809 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37ecc374 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b022f5b ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fa6fce5 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40627b4d ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40de8176 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41a1e160 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42144f1e ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4354fc7c ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x473ce218 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48c80215 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48ed0a93 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48fd83b1 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b20acaf ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b7c9ee8 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c852d8a ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4daa5e89 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4dc95de1 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50ac90ec ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52525747 ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52a52c24 ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x547061a4 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59eccec2 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b4981ec ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61c1eafe ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63f52679 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66a2715c ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67b57e8e ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68c52928 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74014971 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a0a4f54 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ab8798d ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7cc0a99d ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x816733cf ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88ce2993 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cc1b9bd ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f3ecfe6 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91920a7c ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91d02a9f ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9458a1f9 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94e1c137 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa51227c2 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa69e9bd6 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7ca5473 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaae6caef ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae39ecd7 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaed4b0d4 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb18dde93 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2f2bfb7 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3b88b05 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5f7056d ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6a86099 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbab44d26 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc00cdf0 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcd063e0 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdabb05c ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbfa42fb1 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3525249 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc51d7211 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5afe991 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd07be5a4 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2261a30 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd87237c6 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd97455fc ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb56abde ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd438785 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdeef7d9c ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf19fd39 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe356c6ac ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe482d35b ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe49cf79c ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb4d3ba9 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xedec40b2 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee3c5952 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0aa8455 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf537dee0 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8a6e9fe ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfdd7ccc6 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff20e310 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff4b1c2b ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x419c90dd stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xa58386e1 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel 0xd435f998 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x38a056b2 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x50ee6b0c brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x592a0bc1 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5bc5a9d3 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5e88ec88 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x72b3781a brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7d746e72 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8ff954f4 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x93bada69 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9411c18a brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9c5a293c brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc6cfca3b brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xfe60aef8 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x01e186c5 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x039908f6 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x04e2233d hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0c2dbf79 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x28f10aba hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x328f4d49 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x33bec01c hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x433a77da hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x48366272 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5a7f03c3 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x61a81122 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7f8ad806 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x80cc2f3c hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x894c13c9 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa4d3b124 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa83f190b hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa85cade0 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc62755da hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc699168f hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xda14ec08 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdd921a3f hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe5d8a0e3 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xec5781e4 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf749f279 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfde7c2bc hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x14ece757 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1865117a libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1908014b libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1e180ecb libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x247c051d libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x27b035e5 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x29c65115 free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3a07e6e1 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5e944be6 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x738e7826 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7acb5193 libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x86d89da2 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x936963fd libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x950043ea libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x95e3412d alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x96857b3a libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9be08e13 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa2f53f18 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa4d3d020 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb2d7edbb libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xdba6c309 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x01395283 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x038da7ec il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05ef4d3b il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0ae56129 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0af881c8 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0f624f4e il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x14e7cad7 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1ec13fb4 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x276ebaf4 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2c94f0f8 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x307526b5 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x32f25f12 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x339166f8 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x389552d3 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x389cc4ba il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3e90bfa4 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3e9e075d il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x42a43983 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4335e19d il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x444045b8 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4b6a6f0f il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4c3ac897 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4c9c8164 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e1bf299 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e3fa598 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e8ff4b5 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x505369fd il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x515987e4 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x51a5cfdc il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x55d870f8 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x57b96d4c il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x59b17e2c il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5f13b2f9 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5fed026a il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x693b4dbb il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6dfd8681 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6ec218af il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x73362886 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7d862931 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7e2e702c il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x812b2e50 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8534f76f il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x87665214 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88df3e45 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8c381b05 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ea8fad6 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8eafeb0e il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ff2b8b0 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9265707f il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9580dd00 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9cfcd297 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9dc68b84 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9ff22507 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa24cb9ab il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa35d53b7 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa64fc134 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa75054db il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa7934d46 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaa333ee5 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xafbe77cd il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb034e490 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb08614f9 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0983513 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb1f98d5c il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb3ac89ad il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb6d48d9a il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba58c792 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbd853a9c il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbf94aee9 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbfd27df4 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc40a99f2 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc6acc2ac il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcf7d3056 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcfbabc6b il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd1271d71 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd71ea040 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdab450ee il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdc114bf3 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdc85c25a il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdd54eb9d il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2084f3f il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2cc00dc il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe7191120 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe7b53054 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe9c408a0 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xea1c447b il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeca20d10 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf0d4beba il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf231106f il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf49e3db7 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf5fabc95 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf608d7d0 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf8472c32 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf8f7bd1b il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfa565cba il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfb60f22d il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfbb369b2 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfe9f9c91 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfff9c318 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x180d7a46 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x208d96c4 __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x26bb7eb8 __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x436814a2 __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x496d7aef __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8f81067c __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xfd34aff0 __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x048637e1 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0748dbdb orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0c94a6b2 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x10eed857 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x16f777c8 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3226817d __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x377d3f18 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4b501113 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5613a386 orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5bfb0c47 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x644cbb5d orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x69eb267e orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6d4117b8 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x74252f91 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x83195bcc orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa4cd96e0 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xde12069e orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x554eb9e9 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x051be132 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x12fb86d7 _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x13672c47 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1a417884 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1a4b2329 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2aa39470 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x32ecc793 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x389274b9 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3e4a6894 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x425268ef rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x55198963 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x57bfd586 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x618fadef rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x64d4d2b5 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x67c1e92c rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70c3ad79 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x748f6250 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x85ebc259 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9f406a80 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xac1fa64a _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaca0563c rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad0998f1 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xae992a55 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb45c2558 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb463e6cd rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbccee282 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc0610f4d rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc3dfdf23 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc3fdd326 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc67e7dea rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc8539eb2 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc894d0d2 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xca0926e4 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xca96a640 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xce8af2b1 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe2c37484 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6b4c292 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xec623d08 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf36b15f0 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf3f0e9e3 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf88ef502 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x41e460d5 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x8da14f56 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x92f186a5 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa0a5eaff rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x836e6da0 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x9524af11 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa514e743 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb65c842c rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14bab42c rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x23df966c rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a209fb8 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33101f6b rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x457c1244 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x45d7152d rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46cb3be3 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48c56a6b rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62c2a891 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65cf369d rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x68ec60ce efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79d442cb efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x81e07828 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8a4a3e8e rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6211fc1 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8cba4af rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab8586b6 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb2d5d22f rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb697e889 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc068a2be rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc1061903 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc50c859d rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc5b1df21 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc7eb5f30 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce83b25d rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdbbb3fc7 rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfb244a23 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc47726c rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x40996919 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc0fd0b6c wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf23cd90a wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf3922531 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x3f8f4284 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x9a649dc7 fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xb3d4a6a7 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x9822762c microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x9f409473 microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x043fb2cf nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x9d9231d9 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xbf1b9973 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x00b35434 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x8cad9253 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x2d6412db s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x663c9e27 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x670298a3 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x00318778 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x335f87a8 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3fdc7d06 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x465f95c1 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x64b10957 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6aec9ac3 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8e5e5f41 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbf08fe1c st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xea3b7c2f st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf36d45ac ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf3e57380 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x02a2ca35 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x03fc64c7 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x118f8f06 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1cce87ff st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3534ec3c st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3814ef79 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x441a5ddb st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4926bf85 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4eab03fc st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x530905e4 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8e92ef43 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x907b7db7 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa47ec328 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa822ac64 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb539da4a st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc37fc09f st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc3adbb9f st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcca790d3 st21nfca_hci_probe -EXPORT_SYMBOL drivers/ntb/ntb 0x052569b7 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x174c299a ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x4701ad1a ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x7531dfa3 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x8494ea68 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xb266cfca __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xd84516e2 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xf9c45153 ntb_db_event -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x4d177f8b devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x13d5c7b5 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x34afad3c parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x3adf20e0 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x424eb232 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x43e55637 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x4835181c __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x4f71b423 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x51415000 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x5b2231f6 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x632b8ff4 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x6be284ba parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x7d30d6ad parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x99b071e9 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0xa55636dc parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xa983ac3d parport_write -EXPORT_SYMBOL drivers/parport/parport 0xb4bb5f38 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xbfdc02fc parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xc18430d1 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xc84a8c4b parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xc88ae353 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xce5ad19f parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xd08186cb parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xd117f820 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xd1498007 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xd3412604 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xed719e6b parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xf6281bb3 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xfbab6cd8 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0xfc00b7aa parport_read -EXPORT_SYMBOL drivers/parport/parport 0xfc4b60bb parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xfc9cf78f parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xfccf7a7a parport_get_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x5feb0888 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x9b861483 parport_pc_probe_port -EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x7292016d iproc_pcie_setup -EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x7864896b iproc_pcie_remove -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0034cc1e rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x069cd47f rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3f763126 rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x67a6a044 rproc_alloc -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x81f8da30 rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x87cadd83 rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb7fc67a0 rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc9befde0 rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd1d310fe rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf2102a7d rproc_da_to_va -EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0x6b065015 rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0x6fc06164 register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0xb7f71591 rpmsg_send_offchannel_raw -EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0xbbaa7caa rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0xbff3281a unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xe904e5d0 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4e574b74 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa7495edb scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe73f307f scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe908a916 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x00c4be1c fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x11085498 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1e435d92 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x38a0b0ca fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3978c59d fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4febbc26 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5638e001 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x69a78a58 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x69e05866 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9ab34a77 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf1c88816 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfd058268 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x028b131e fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x038e242c fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06bf647e fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b4e130a fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x105aef17 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x15e40521 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18c1f5e8 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x192c8b7e fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x218ca200 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x24a1dab2 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b1265b7 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31e71fbd fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34a58872 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x363d4e00 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39b9dd88 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d068c79 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3dc66f55 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40df61b4 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x413dcd0e fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x44b01239 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x495af2be fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ebcf44e fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x543aed97 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c944b46 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d7c1c66 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65ba5e2e fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ae3313 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69b98d9b fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aac9ed2 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7316bdf6 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7bbbf554 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80c024e7 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8fbb20f2 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x99a2d8dd fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7a5406d fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaa527817 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb051d8a3 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb318db48 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb45980d6 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4b7fb72 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf846810 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1f4a104 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd1b51f58 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd1f8a023 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe6ecc18b fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf3216982 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf694f2bd fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x2d975579 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7db32536 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x84c84161 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb77d71fd sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xd99c6c86 mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x02452ab2 osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x077ffdf1 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0bd96d83 osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x18affb7a osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1ccb418c osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2ac43ade osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2d42ea7f osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x34b4a0fa osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3576256b osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x40464532 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x44a6e602 osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x47072fd5 osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x47182352 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x60c6b02b osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6216b265 osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x65da1a3f osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6f0845e2 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x77cee188 osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x78d2d454 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x889f3878 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8a394602 osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x92c6e15c osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9a4a7504 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb2bdc975 osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc149dd09 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc44ad303 osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcdb4015a osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd4ba18ec osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd8e972e1 osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdaf9e0be osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xea24104d osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeb8d50fa osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xec3dcad1 osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf078ca45 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfe747c2b osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xff0083dc osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/osd 0x0692bc8c osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5c932d81 osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xadcf8e7e osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0xec47ef1f osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0xfb7b938e osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0xffab365c osduld_register_test -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1861ec16 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x269cb592 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x32917a57 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x37391d61 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3ce39da2 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x581feaea qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5ccd8e6d qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8a865b41 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa14eef3d qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb5cd46a1 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe0d9c3cb qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe4c49de0 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/raid_class 0x1c91fc03 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0x49c810e5 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0x4faa8267 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1265d4b3 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x254f82eb fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2ec10f8c fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3a77b1b6 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x645bdd36 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x64ceb2d8 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x972a38f6 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa4900939 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc7583724 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd0dd2b38 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe15c9171 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe48e1b1a scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xee4bde62 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x01b5b621 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x026a969f sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1016dc1e sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x113d0c07 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x266d10de sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x384269d9 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c530668 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4ff521b0 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x52d4495b sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x55d0c095 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x666d305e scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69f6f661 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6d4dd002 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x82b7c662 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8714a9a6 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8df06f2e sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8fc4677e sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9e6ff424 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa814899e sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc10d1dca sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xca7cbd49 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcd2237e4 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd3764156 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd5422188 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe1e29d4e scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xef6bd31c sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf02fc12e sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfcd98a5c sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x08e66653 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5c4ea976 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x64c15aac spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x929c7868 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa0f97d0d spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x36f5e7a8 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4982cd07 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4c8df456 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe5061379 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x129bf2a8 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x21465e5a ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xa79996dd ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb076f117 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb616a892 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xc57ad7a8 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xe5a0507f ufshcd_system_suspend -EXPORT_SYMBOL drivers/soc/qcom/smd 0xa1aefa6f qcom_smd_driver_register -EXPORT_SYMBOL drivers/soc/qcom/smd 0xa3249e47 qcom_smd_driver_unregister -EXPORT_SYMBOL drivers/soc/qcom/smd 0xeda44e54 qcom_smd_send -EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x2f5501c0 qcom_rpm_smd_write -EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space -EXPORT_SYMBOL drivers/soc/qcom/smem 0x63ef36e3 qcom_smem_alloc -EXPORT_SYMBOL drivers/soc/qcom/smem 0x932eb0e3 qcom_smem_get -EXPORT_SYMBOL drivers/ssb/ssb 0x02df8b05 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x044feaab ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x0d93c228 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x12573d90 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x164f616e ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x18dd77f1 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x1945aceb ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x27586499 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x30bfdaf9 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x3eb4264d ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x5238bf49 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x8bcd965b ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x9d0d65bf ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xb3a10fc8 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0xb92489ff ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xba195a8a ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xc406eba0 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xc5b11a9f ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xd4ec413f ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xeff728a4 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x07186147 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x11217548 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x169337c2 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x20077350 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3e542cb9 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4e06f8ea fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x51dcf4a4 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6000119e fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6cd27bec fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x774bb484 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7b694a0c fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x80dd3464 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x884d7de5 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9d54d607 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaa3f26d8 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xba517453 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc238f5e4 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc30a037c fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc31e6fee fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xce2541e8 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd4938e8e fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf2371c71 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf3aea690 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfa27e96e fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x268c933d fwtty_port_put -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xbf97ae9e fwtty_port_get -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xac71fe66 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x32d0c917 hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xbecdb51e hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xdd342c84 hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xf234b577 hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x49b9e3f3 ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xc5b47bc7 ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xc1c92036 cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x1165b5a7 most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/nvec/nvec 0x1a0fd88d nvec_write_async -EXPORT_SYMBOL drivers/staging/nvec/nvec 0xccffce81 nvec_write_sync -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x01a41c4c rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x029535c9 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0334f9b5 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x05b88278 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06eeb346 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0a94f8fb Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d96d2f2 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1532688f rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x336ab6a8 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x34e5e12f rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x385a1fb6 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3c9779f9 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4298e160 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x44e624b1 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4e271ff9 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58dcf85e rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x595f0c30 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x60ae8c62 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x643cb5db rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a723767 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6cfd830f rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x70fb3887 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73a38d83 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7786c2bb rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b66e29a rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7d2d067b rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e2dce06 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x874590b0 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x875c61ea dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x87c88c6a rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c1823d7 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e4c075e rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x93dcca40 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94bbcdbf rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa532ac79 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8f88b09 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaf216f0d rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2655a81 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe53b4f3 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbf93e151 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2978c74 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc80af2e9 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0947a90 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb8858aa rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde32deba rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xea17389f rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed03ebf0 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf48ef988 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfae105fb rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb7178a0 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04e65183 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0527f3ca ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07306cbb ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x147864cb ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x190be47e ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x296e8b39 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e00651e ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x303a5027 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31fc3f0b Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3225ed5e ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x359e21fe ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3d49d092 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x41648937 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42484cbb ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4eaa617e ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53622447 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53f15956 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56b2fb22 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a0ab1b0 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b0c461b ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5bec72d7 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5c70b831 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5d41be26 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f8e02bd ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ad1f60 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x718ada53 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a3806f7 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88003a1f ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9275e2b2 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f066207 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa61b9231 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb150fd2c ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb214c8e7 Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb57071a7 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc237d99 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbe21c749 ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc33c6393 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5a93a63 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6eccb1a IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8fbe2ce ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf05984a ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd1906937 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda76d6f0 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe0ea4654 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe2f2acce ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe4e6d914 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe80c8abb DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeaab2fb8 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf4e9945a ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf5e0fcf2 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa0c529e ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfbc2bd76 Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfda9eea0 DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b99be81 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1b177180 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23259aec iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4a50a044 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4cff9f1d iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x75dca4f2 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x77fd146a iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c0d6861 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x856b7327 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x88ac54ee iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e0a3256 iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x92887869 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x981eb096 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa174c314 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa3aab0dd iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa3d29a81 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5b2db9f iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa789a3ff iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xab23efa2 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb1c0c942 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbdd1b655 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbfabc83c iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc4368bf3 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd67c49cb iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd78a0222 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xded41b1b iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe2f6aab4 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf54ac31f iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x071a2be3 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x0c0489a1 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x0c9a03fb transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x0e33e9bf transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x0e7a2829 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x14b1f5cc target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x16315a08 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x16baf601 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x1a25cf02 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x1d3e7917 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x1eff4da3 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x27befec6 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x29b90101 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x2af7e6b5 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x2c0f51bf target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x2d0f1909 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x2e169183 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x32302d52 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x336ec4dd spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x3418f41b target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x3919b282 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x3b04a43c spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x3b52d258 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x3c857508 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x3cb7d5c2 target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x46209f91 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x542f564c target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x5b8975ad core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x6243a2e8 transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x64f64915 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x6b086c5a target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6c4307a3 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x6c461ce4 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x6efe880e target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x703f4b37 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x76d335ea target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x7723b2e6 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x7857fef2 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x83246cad target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x8acc862f transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x8d1e6510 target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8dc9af90 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x9460b670 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x97c419bb transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x981d40b1 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xa14e46df spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xa1d21511 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xa2f72539 transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0xab35a59a core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xb056bbb4 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xb882eaf1 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xbb0231ec sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xbde532dc transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc023c175 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xc1faeed6 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc2f4bc07 target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc82b3f4b transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd5c72b2 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xd375df70 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd98c8015 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xe434a80a sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xe4e6f047 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xeb8c247e target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xed203788 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf285a92d transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xf65804c3 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xfccf5003 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xfcec0720 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd1ded9c transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x84054353 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x96b20d44 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x59e91862 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x041ef935 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x07c737da usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x15ab85f9 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x465ca2db usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x49031343 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x54e4b1f4 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x568bcc31 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x84efe609 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa54c8d0b usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbcd98eb4 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xee8fca90 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf8751580 usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x675ba212 usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xdb6adcc6 usb_serial_suspend -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0x4c1c4c42 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x4e69392b lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xa48826b7 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xc6115c77 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0428f053 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0abf74e1 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1cca6a04 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3ca40859 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xae0a6a24 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd0418cf1 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd323dd16 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x4ca8ee13 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x6a62babb sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x3c5e28ba sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x376e566c cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x5ae721d6 mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x0888fdfe g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x1bb751e6 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x34fc37d6 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0c8dba75 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7541939b DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc9c440f2 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe993d1ae DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x038a252a matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xd28a25e0 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x20f6dc4a matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x510b7178 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa7ae8971 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xc8bad5e5 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xaf7bc139 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xd29b64d5 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4adad820 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4b8d150e matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x557300df matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x76746803 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcbe8c306 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xf1463567 mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x0074818d w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x08eac693 w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x2559a220 w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xee3b6448 w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x29630d7f w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x6b167560 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xa0f7bc76 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xe8f78136 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x2b7770f1 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x509cae4b w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x8823c9b6 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xb40f8e4b w1_unregister_family -EXPORT_SYMBOL fs/configfs/configfs 0x06d382ac configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0x1e7b9a8a config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0x236e42bd configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x31e63287 configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0x416e1912 configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0x428804c1 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x4fdf250d config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0x68e68da0 config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0x84e3d51e configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x96a077b1 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xb97bbf97 configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0xd2a7f61a config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0xda1437b2 configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0xe4132d8f config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xf5cdb856 config_item_put -EXPORT_SYMBOL fs/exofs/libore 0x17d175ee ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0x1dbe177b ore_write -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x35ddfb63 ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x7cc6fe5f extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x7e2cf891 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0x8aaf1a21 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0x8cc1558a ore_read -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xaae0bd82 ore_create -EXPORT_SYMBOL fs/exofs/libore 0xacc2331a ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0xe33b2119 ore_remove -EXPORT_SYMBOL fs/fscache/fscache 0x059b3101 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x05a6e2c2 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x16c53250 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x2096a008 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x21f94820 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x22cfa350 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x25631afd fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x37989b09 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x49e8b4d0 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x51369600 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x59f3fb2f __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x5c4348ad __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x667775bb fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x696a1f36 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x79a2faa6 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x7d92b841 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x81b9f484 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x8d067585 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x964fddd9 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x9826e25a fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x9f9e6d18 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xa5cb0a68 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xa70eae7d fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xa79a4e27 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xabc8467d fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0xb037e8d4 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xb327bc10 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xb4f3c0fb fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xb81b6bcf __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0xbdc3981f fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xc60d0e8e __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xcb6b831c __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xcca05465 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xd14fa338 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0xd7be13c8 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xdb977752 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xdddb4a4b __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xe995de51 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0xfb60c4c4 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xfbc4d789 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x2b4b37b6 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xa5c625e6 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0xb46ce50e qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xd88d2fa7 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xf96125d8 qtree_write_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t -EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create -EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put -EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed -EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set -EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get -EXPORT_SYMBOL lib/lru_cache 0xd34f34b6 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xe34df49e lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del -EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of -EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find -EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x086df241 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x28b914db lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xa2f024bd lowpan_netdev_setup -EXPORT_SYMBOL net/802/p8022 0x3cf504bf unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xa9067a7a register_8022_client -EXPORT_SYMBOL net/802/p8023 0x4ed5e8c9 destroy_8023_client -EXPORT_SYMBOL net/802/p8023 0x8315c743 make_8023_client -EXPORT_SYMBOL net/802/psnap 0x1c98412e register_snap_client -EXPORT_SYMBOL net/802/psnap 0xe04aaa05 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0740038e p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x0e439b7b p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x0f02cda0 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x14879599 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x15badc22 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x16f5908a p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x1bac481e p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x243fc2f1 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x24929df5 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x26e8ba31 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x299f7fa7 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x2cbc53d6 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x2fcbf9ae p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x371a133c p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x37c03ff3 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x3b88c0e5 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x45946329 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x5b501c87 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x5c7e79bd v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x60b1b85e p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x65068818 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x6b3fffea p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x7a53d427 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x8a421c8e p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x8c52e39b p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x8c9f4d4d p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x933a0856 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x9390aed9 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x9531e251 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x9ce58e4f p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0xa0b0db25 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xa1f0724d p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xa376604f p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0xb5109ebd v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xb805802b p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0xbaea656b p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xce042686 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xd605f6ef p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xf34694d3 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfb881a2d p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/9p/9pnet 0xfdc1ea81 p9_client_mknod_dotl -EXPORT_SYMBOL net/appletalk/appletalk 0x112f837f alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x91f0b02a atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xf2de8e96 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xf591a33b aarp_send_ddp -EXPORT_SYMBOL net/atm/atm 0x26c10695 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x36f18196 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x6cff7213 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa5569a2c atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xade6d700 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xb0bdb77c atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xc4f0d6f0 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0xd19b66af atm_charge -EXPORT_SYMBOL net/atm/atm 0xd54e3fb1 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0xd7bcd5d7 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xd95f52c9 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xdcd9a931 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xe034d084 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0xf1774b53 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x0a8281c2 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x29edff43 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x33ac7244 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x36b418ec ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x42bc8c2e ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x475f2295 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x8655360d ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xe260ebe5 ax25_linkfail_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x00632d54 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x053891da l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x05977e89 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x05e06d91 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a06c045 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ed4be3c hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x100f2b82 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x171f9806 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x272187f7 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2c535852 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x370c6783 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d15e0d1 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6087900b hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x621508dc l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x677307c2 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x69776ae4 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6e502cf8 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6e530c93 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7901443a bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8f1a9af9 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91d28cf1 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9753319a hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9bdb4626 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa1c1e777 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa1ed53cf hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa3b64660 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0a8350c hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb2d13388 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb355fddc bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbe6949dc bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc42ec5fc hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc50078b5 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc903c8e7 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcd329343 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd4cc08c8 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd60752bb l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd83fd086 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0xda538133 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdec7c8c8 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe6be4ee1 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfdcae967 bt_sock_poll -EXPORT_SYMBOL net/bridge/bridge 0x93c7093c br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa9e1f29e ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xca36e036 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf7916b3c ebt_do_table -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x1b59983a cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38576d19 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xad60b009 get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xd9b140cd caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0xf5e2b126 caif_enroll_dev -EXPORT_SYMBOL net/can/can 0x2b68e90d can_rx_unregister -EXPORT_SYMBOL net/can/can 0x347e18a4 can_rx_register -EXPORT_SYMBOL net/can/can 0xa39ca2c9 can_proto_register -EXPORT_SYMBOL net/can/can 0xa436ab34 can_send -EXPORT_SYMBOL net/can/can 0xbc7ae2da can_ioctl -EXPORT_SYMBOL net/can/can 0xc3420e4d can_proto_unregister -EXPORT_SYMBOL net/ceph/libceph 0x025e130e ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x06e1aa91 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0bb4042b ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x0dc33579 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x122816e8 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x133170a1 osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0x1421d5af ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x1fff0489 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x22d9e0de ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x2950d536 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x2aa65d69 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x2ec160be ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x34bf868b ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x37020413 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3cb07155 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x3d7eaef7 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x4837f357 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x4ad54c1a ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x4e230d9c ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0x51245f9c osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x5588aa14 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x580a3522 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0x5d30bd26 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5dbb7ee6 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x5e998d8c ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x60f3d5d1 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x626b71b8 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x6615b7c5 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6b500db7 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x6fc009a3 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x7003b5d4 ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0x74fed70d ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x756bf187 ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0x7609370c ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x771f1953 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x7a67d749 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x7d32f973 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x7e4cf001 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x7e8cd2fb ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x80fdf4d4 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x8e04e742 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x916a5396 ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0x95ce80ea ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0x981325f5 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x99e628d0 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x9cb1934a ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xa6283466 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xaabd6ae6 ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xb291cda6 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xb31a1f82 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0xb4509db6 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xb769757a ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0xbd2a71e2 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xbe783cca ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0xbf74801b ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0xc128afdb osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0xc13075d9 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xc19d3912 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xc4509450 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc608c39a ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xcca04015 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0xccfbb936 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0xd1903869 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xd1bbf475 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xd80e1c0e osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xda6349ef ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0xdb12faec ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xdd0aa897 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0xde201780 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0xdea33884 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xdeb51752 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0xe15b1b7a ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xe2c19c4e osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0xe6b17293 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xe85c1e1f ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xec588e44 ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0xee1b6180 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xf318d8ae ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0xfbc95130 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0xfcb5145d ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xfeae9b0f ceph_osdc_flush_notifies -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x08734dc5 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x684f0b68 dccp_syn_ack_timeout -EXPORT_SYMBOL net/ieee802154/ieee802154 0x3cd325fc wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x4ea461eb wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x7dc568f7 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xa1c5864d wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0xa97c63c7 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xe4b3da01 wpan_phy_new -EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x2408a50b fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0x4df0a89d gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x033544ed ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3e6f9002 ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4537c877 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x66e681bd ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6fc60a78 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9a266eb1 ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4bc749e5 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x70f2347d arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9481d34b arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x39d0da12 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x48433b31 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xdbf8fa03 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/tunnel4 0xa8437681 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xc79ed2f9 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xe32622ca udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0a449a93 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1a9fde0f ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x923faad3 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x96795653 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x19aa760e ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3a27534a ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd0b5bcb5 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x9838e521 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xd0a3d619 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xbf09ac36 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xdfaa062b xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0ce04980 ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x4982e063 ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x58120884 ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x94f29835 ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x97b24383 ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x9a892f93 ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb55a7e2c ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xbe3a8614 ircomm_data_request -EXPORT_SYMBOL net/irda/irda 0x0074816a irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x072391db iriap_open -EXPORT_SYMBOL net/irda/irda 0x0756ccfc irda_notify_init -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x0df5bbd3 irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x1290f89e irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0x14c20815 irlap_open -EXPORT_SYMBOL net/irda/irda 0x17a491c5 irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x36cad55b hashbin_remove_this -EXPORT_SYMBOL net/irda/irda 0x37791344 hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0x3b8f0603 async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0x41ed8362 irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x4a1c06d4 irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0x6245825f irttp_dup -EXPORT_SYMBOL net/irda/irda 0x6492e28c hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x670f3109 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x6b76aa70 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0x6d69982b irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x731cec71 hashbin_insert -EXPORT_SYMBOL net/irda/irda 0x73ab1be5 iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7e67ca6e irias_new_object -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x8005367b irttp_data_request -EXPORT_SYMBOL net/irda/irda 0x80bee48c irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0x8982c8d9 irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x8a44dd5e hashbin_new -EXPORT_SYMBOL net/irda/irda 0x8b9e282b irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0x90ddb6bd hashbin_remove -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x9d08b29e irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x9ffda243 irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0xa170ccd4 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0xa224ee91 irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0xa8e2f9d0 irlap_close -EXPORT_SYMBOL net/irda/irda 0xb3c13d7f irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xbf7dd554 hashbin_find -EXPORT_SYMBOL net/irda/irda 0xbfa7c08d hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0xc477368d irias_find_object -EXPORT_SYMBOL net/irda/irda 0xd62dbb66 irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe069ffe0 irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0xe70b7e42 iriap_close -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf199cba4 irias_insert_object -EXPORT_SYMBOL net/irda/irda 0xfa2902f5 async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0xfb94cfb8 alloc_irdadev -EXPORT_SYMBOL net/l2tp/l2tp_core 0xc990c396 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x92bc3afa l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x4e7c28d0 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x51aaa016 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x68d542fe lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x96cd284c lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xc8ceb28d lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xc993c50e lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0xcaab19b9 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xda771460 lapb_getparms -EXPORT_SYMBOL net/llc/llc 0x02660cfa llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x55acc877 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x880819b8 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xe0b8ab37 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xe168e79b llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xedc95f4c llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xf70ae947 llc_sap_close -EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x021774ad ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x02291cd7 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x044cf5b0 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x0ce5303a __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x0d814334 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x0d9b894f ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x124aac70 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x13cea54d ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x1495019e ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x18e3ea89 ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x194e4a87 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x19fe0576 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x28010ded ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x28693b6a ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x2ad950cd ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x2e9796c3 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x35f8ff15 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x3f8c80ce wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x43fc9d96 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x450779f4 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x47ebcb24 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x4d81d137 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x50ef9fba ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x58c640d6 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x64667ac4 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x6a2de2f4 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x6a488314 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x6b9bfa8f ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x6d3c9834 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x6eb95464 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x723e14a3 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x78c35a9f ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x7f289b76 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x82de4aba ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x85010897 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x86b3fe23 rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0x895a275c ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x8c20c41b __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x8f0080f1 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x8f4e9a08 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x91fe137b ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x9228bef3 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x97b17f47 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x98c6bcd7 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xa45d6c1f ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xa7f5b1cf __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xa93b8a20 ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0xa98e7993 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xa9e7df72 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xaa32ff83 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xaca82973 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xb1b557ce ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xb2602bc7 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xb2a409ad ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xbace3191 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xbbffc00f ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xc4cc66bd ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xc71bf05e ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xc7df71f9 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xc8b7b070 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xc9821183 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xca5b7a93 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xcb2d5797 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xcdef0256 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xd2baed10 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xd482c78c ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xd572a65d ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xda5d2d42 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xdce3471b ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xde74a13f ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xdfe86fca ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xe81a34d3 ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xe8da23dc ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xea85aba2 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xf404598d ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xf5134c7b ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xf7389591 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xfc2ddff7 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac802154/mac802154 0x0caa0027 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x662ff11e ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x77dec562 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xb602409e ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xcf03fd77 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xde34009b ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xf2a2fea8 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xf37738bf ieee802154_xmit_complete -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x05a5b16a register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0d014a0e ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x159218f7 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1f84aac2 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2bbbb9ab unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x33579322 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x62186f6f ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6da7db2d ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x818be6e5 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9760d5a6 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9f18abc5 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc9e78bdb ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd4463eab unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfe36b4c3 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x33b24572 __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xb0cc65a3 nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xdd689806 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x1d774edb nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0x24d5db76 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x3c85dc05 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x899526e9 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0x99a4eb40 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xfc06324a __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/x_tables 0x2cedbc5f xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x3cfdc0ee xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x74f9e8ce xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xb9ac0b61 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xc55cd577 xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0xd0a2f25c xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xd1bd214c xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xe3f10f81 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0xe7ad7923 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xf43eacde xt_unregister_targets -EXPORT_SYMBOL net/nfc/hci/hci 0x0cb52b41 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x1d42cfc1 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x275a43be nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x34b27671 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x448cae92 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x51736509 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x5d03b4b9 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x5fa2297f nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x602cc473 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x69666220 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x867572e5 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x91aa018b nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x946d3161 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x950b5d4a nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xa9398714 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xafed7b72 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xbcf15af2 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xbea7b48e nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0xd647c6fa nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xe999da45 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xef51240e nfc_hci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x0bfcb648 nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0x0c22dabb nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x25714a57 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x33f94ccc nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x3ce2196c nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x53d41d96 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x5a25ab30 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x5f241faf nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x6317e4c2 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x6502a4f4 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x75a4b9e6 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x771ce97a nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x78b40d73 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x798a0bc0 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x83452723 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x8bd4c6f2 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x8ecd1e8b nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x925533da nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x9da02ac5 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xa10d3966 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xa692cdd3 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xb17cf298 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xb4329daf nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbd6df2e8 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xd1ebd568 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xe61c54e2 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xe9a30674 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xfab27fb1 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nfc 0x1079b9e8 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x2164b8f9 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x4708caa4 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x48afb70c nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x4c806257 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x4fc8c018 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x5905c888 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x5babbd17 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x61587d77 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x622590ae nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x780ccab9 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x839d9e74 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x882ee9eb nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x91ca2a90 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xa1d21b05 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xa1da32f3 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xc320c24e nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xc6f9df20 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xc9f6daaa nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xdc3ba02f nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xe305e561 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xfb802e8b nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xfd03acb4 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xfd23ded9 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x3b85aa69 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x6b364cf4 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x91a5156d nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xed19f53b nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x23323d84 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x2d7214f4 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x3939ae82 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x52ff34b0 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xc600bb7c phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xd26cddb7 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xda92936f pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0xff91bdb2 phonet_proto_unregister -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x186ddfc6 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x24444cfc rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4b6046ee key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x65360dfb rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x755b54eb rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7646c79c rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x77af3b4c rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x80389c12 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa8bd27e2 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa9eb14a6 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb8cef7ac rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbd2ff332 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xde2487e0 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xedb78c88 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf588ecd2 rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/sctp/sctp 0xee373cba sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x1f178005 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x5d1e652e gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe0dd5244 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x01f5f6eb xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x03bf7514 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x5ef90d65 xdr_truncate_encode -EXPORT_SYMBOL net/wimax/wimax 0x25d1c8ce wimax_rfkill -EXPORT_SYMBOL net/wimax/wimax 0x5efe370e wimax_reset -EXPORT_SYMBOL net/wireless/cfg80211 0x00351569 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0135da95 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x0521e8ca cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0d8308d6 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x0eb82851 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x1642812a cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x1f9e18f8 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x2402a2f8 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x25dd6c44 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x27ee0275 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x2987ce0c ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x2a75a4f3 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x2b7fa0bc cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x2f0e9896 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x37d0a425 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x3c065b20 ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x402dd665 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x40608207 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x41ea4435 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x42a904ac wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x430abb58 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x4422b4ee wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x45a6a3e6 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x4746e148 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4a407932 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x4f8f48bd cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x4fe1c71d cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x5306f02a cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x54abcd60 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x54e335ee cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x54f6fb3b cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x56ab5278 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x578e2c95 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x5bb01a1f cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x5da9f880 cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0x5f89813b cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x5fef8070 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x61023707 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x6405fc04 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x680090bd cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x6ef1ce55 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x7031b921 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x7347170b cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x7464fb9d cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x80d08260 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x8569a99e cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x89c19f94 wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x8a34ce05 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x8bb0927e cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x91ae82ae cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x95f2e30d cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x96f178d8 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x9951726e cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x99d70705 cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x9b4e7e31 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xa052f48c cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xaa5dea84 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xac7a0467 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xaf2c30ef cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xb263cb50 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0xb6a82d1c cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0xb8420be0 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0xbe37591f cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xbf3d2b45 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xbf91b886 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xc542589e cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc6f13f90 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xcca24aa3 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xcf805adb cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0xd05b2c53 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xd0ee0efe wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xd64f3178 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xdb8b4437 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdd5d9c2c regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xe0cd4354 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xe64aab46 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xe817df72 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xeb7dbc86 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xee34b402 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf70e3df3 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xf930d3c9 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xfde035f4 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x1ebdb9df lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x3478970d lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x4ba9c74e lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x9877ca62 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x9f4af152 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xee8f1b21 lib80211_crypt_info_init -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x5321db06 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x5d2f9626 snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x87d8bc3d snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcf6fc3de snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xf10472a0 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x7b05bf19 snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x127b30fb snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1cdc0812 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x59eb74ae snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8102ed2f snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb11ba32d snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb2c7f684 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xea0e5748 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xed42580b snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xb6610eec snd_virmidi_new -EXPORT_SYMBOL sound/core/snd-hwdep 0x75cf7585 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x090d91fd snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0a3d8f5a snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x21f63dc3 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2351ceb6 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2364c6e1 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2ab3901d snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3acbd14e snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4c6d3ab2 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x50762e3a snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5bbf6327 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6fb047ff snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa411bae9 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb78ee677 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd2d46411 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdc24d0bd snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xeda6f908 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf18dd1df snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf9450e97 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xffaa0ed8 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xba54f142 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x09b159d5 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0e5b05c6 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1dea9c3d snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x20ab5528 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x29c851a0 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2ad87e8a snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8eeb3a2e snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa25e6c29 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xee735f58 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x004fef40 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0bd5f4bc snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x232a9920 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x244d53a7 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x572d9475 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5b9899d7 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x766e5623 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa9fc7bad snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcc322e44 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x09e61ee7 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0a8f3b06 amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0b2ac788 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x14e6664a iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2086f854 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x22e39b2c cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x26a1914f amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2c7b62e0 snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2c9906a0 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3484f3f3 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3b24d994 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4733f0bc cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x684c82c5 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6fda56f2 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7c6c1788 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7da4bcc8 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7e892619 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x960a8cb6 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa2aacfc9 snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xabec2a1c avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xad029151 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaee70988 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb00e7d1a amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb3748930 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbb19d0f1 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbd0a5968 amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xddc6c4a7 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe51db242 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf2f0658e fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf5b39afe amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfd2bfc9e fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfd6880ac amdtp_stream_start -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x2bcbb579 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xbdb98cfd snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0c4d0092 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x11742b54 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1b2b5080 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3d957a29 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x431bad95 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x868d31d9 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8b895d4b snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc9037028 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x42b07214 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x48ef92bf snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa3238408 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc2c9e5fd snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x97195b9c snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xc0c7f466 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-i2c 0x1723cab0 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x6bda8d6a snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x9b30f7b2 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0xf331d281 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xf80b14fe snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xffcf4f4e snd_i2c_readbytes -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x01aad051 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x071ef010 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x10d4b5c5 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3e391123 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6bd6c83d snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7275ebeb snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7d52f4ac snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x80bc0df4 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x89c318f9 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x90d6651c snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9641b19a snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9c609317 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb3f6d09a snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd12b9e81 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd572ca7f snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd8a0bd29 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xddf3b25d snd_ac97_write -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x4070917b snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xaa46e92f snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xcdfe4ce2 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2a59df1a oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x357fbb71 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x38d63dc9 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4625e3cd oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4e689cb6 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x553168ca oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6665ef1e oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x724d6835 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x80853b42 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x876aa6ac oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8b94782f oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x95ea0cc9 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9a3f16cd oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa069f5cd oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa74974a9 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb935dfe4 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb93940fd oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbb73e8a1 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd6400798 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xda17d135 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf0e195a3 oxygen_write_uart -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x40a3a01b tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xcd6fc831 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x55597c49 fsl_asoc_get_dma_channel -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x42ce25f0 snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x000816a9 kfree_put_link -EXPORT_SYMBOL vmlinux 0x001ee95a imx_ssi_fiq_base -EXPORT_SYMBOL vmlinux 0x002b82f3 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x002ea836 swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0x003ed69a __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x0048fcc7 tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0x004bda03 scsi_host_put -EXPORT_SYMBOL vmlinux 0x008c2695 blk_complete_request -EXPORT_SYMBOL vmlinux 0x0091cd4d register_console -EXPORT_SYMBOL vmlinux 0x00c30a91 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x00cb6dd6 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00f15ecc i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x00f79290 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 -EXPORT_SYMBOL vmlinux 0x013fb4d2 of_get_pci_address -EXPORT_SYMBOL vmlinux 0x014a9714 snd_pcm_new_internal -EXPORT_SYMBOL vmlinux 0x01510f0b inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0x01556adc inet6_add_offload -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x0173d42e __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x01804d3c mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x018589e3 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x01866676 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many -EXPORT_SYMBOL vmlinux 0x018cc84c mapping_tagged -EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode -EXPORT_SYMBOL vmlinux 0x01b7fd59 dispc_read_irqstatus -EXPORT_SYMBOL vmlinux 0x01c896eb xattr_full_name -EXPORT_SYMBOL vmlinux 0x01ea132e dispc_runtime_put -EXPORT_SYMBOL vmlinux 0x01ee934f cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x01f29403 phy_device_register -EXPORT_SYMBOL vmlinux 0x01fd6d8e devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x020ec9ec elv_rb_find -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x0213ff89 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv -EXPORT_SYMBOL vmlinux 0x0224cff8 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x0237af23 proc_set_size -EXPORT_SYMBOL vmlinux 0x023a386a account_page_redirty -EXPORT_SYMBOL vmlinux 0x0241e8aa scsi_register_interface -EXPORT_SYMBOL vmlinux 0x0246b957 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x02573b36 omap_disable_dma_irq -EXPORT_SYMBOL vmlinux 0x0260de62 mount_nodev -EXPORT_SYMBOL vmlinux 0x026212cd phy_attach_direct -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027ba579 snd_register_oss_device -EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL vmlinux 0x028b797a pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x028e092d neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x0293e693 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a5029a install_exec_creds -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02d6d984 param_get_int -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02ef742b percpu_counter_set -EXPORT_SYMBOL vmlinux 0x03005606 omapdss_get_version -EXPORT_SYMBOL vmlinux 0x03026722 mempool_alloc -EXPORT_SYMBOL vmlinux 0x03115097 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x031f847e bio_copy_data -EXPORT_SYMBOL vmlinux 0x032048b0 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0337a780 user_revoke -EXPORT_SYMBOL vmlinux 0x034e6562 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x035955cc d_find_alias -EXPORT_SYMBOL vmlinux 0x035b2bb9 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x0366023a input_open_device -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x036fa0ec md_reload_sb -EXPORT_SYMBOL vmlinux 0x0378aea4 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x037b6662 of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x039517e3 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x03a127f5 ps2_command -EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all -EXPORT_SYMBOL vmlinux 0x03bdf18e I_BDEV -EXPORT_SYMBOL vmlinux 0x03d13423 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x03db9f1d input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x03ee7ed2 omapdss_register_display -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0411d3de i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x041a3e2a ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0452156d current_in_userns -EXPORT_SYMBOL vmlinux 0x04817921 nf_log_trace -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x048a5fa2 simple_map_init -EXPORT_SYMBOL vmlinux 0x04941ecc tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine -EXPORT_SYMBOL vmlinux 0x04dc8d74 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04ed9c3f skb_free_datagram -EXPORT_SYMBOL vmlinux 0x04fbfc94 seq_read -EXPORT_SYMBOL vmlinux 0x05004223 unload_nls -EXPORT_SYMBOL vmlinux 0x05122f2e i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x051730b8 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x05176253 led_set_brightness -EXPORT_SYMBOL vmlinux 0x05226e89 processor -EXPORT_SYMBOL vmlinux 0x0522cba9 brioctl_set -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0527c416 pcie_get_mps -EXPORT_SYMBOL vmlinux 0x053123e5 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x05363b74 dev_notice -EXPORT_SYMBOL vmlinux 0x05546cce __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x056595f8 backlight_device_register -EXPORT_SYMBOL vmlinux 0x056a040c netif_napi_del -EXPORT_SYMBOL vmlinux 0x05735d1d netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x057b4c31 key_task_permission -EXPORT_SYMBOL vmlinux 0x0580aed8 registered_fb -EXPORT_SYMBOL vmlinux 0x05b06d41 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x05c7e422 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x05f976c4 consume_skb -EXPORT_SYMBOL vmlinux 0x060676de block_commit_write -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x06265991 fput -EXPORT_SYMBOL vmlinux 0x06321cec blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x0632cfcb blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x06364f75 filemap_fdatawait -EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x06607f92 dss_feat_get_supported_outputs -EXPORT_SYMBOL vmlinux 0x06691112 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x06696cd9 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x069a9bac scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x06a213a1 bio_flush_dcache_pages -EXPORT_SYMBOL vmlinux 0x06c7ad18 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x06d4cfd8 i2c_use_client -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x072a8f8d __set_fiq_regs -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x0745bce0 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x075028a6 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x076f66f8 generic_listxattr -EXPORT_SYMBOL vmlinux 0x0781db80 register_sound_midi -EXPORT_SYMBOL vmlinux 0x0784a72f ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x07982a66 block_write_full_page -EXPORT_SYMBOL vmlinux 0x07a2a937 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07bd744e tcp_conn_request -EXPORT_SYMBOL vmlinux 0x07c6eea2 vfs_mknod -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07cf9099 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x07d01694 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x07e88930 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x07f27010 tty_vhangup -EXPORT_SYMBOL vmlinux 0x07ff1c56 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x07ff3cea __devm_request_region -EXPORT_SYMBOL vmlinux 0x08162d64 omapdss_default_get_timings -EXPORT_SYMBOL vmlinux 0x081f3afb complete_all -EXPORT_SYMBOL vmlinux 0x081fff9d fs_bio_set -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x0837cfd1 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x0840f13a jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x084bca1a tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x087d015a pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x0889b4a4 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0x088b4f44 force_sig -EXPORT_SYMBOL vmlinux 0x0894712e nand_lock -EXPORT_SYMBOL vmlinux 0x08ba6058 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x08bfbd01 irq_set_chip -EXPORT_SYMBOL vmlinux 0x08cf590c inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x08e04f71 udplite_prot -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x0905e61a dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x0933d4ba eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x095aa0cd netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x097dcce8 __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x097ec1ff _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0x09806e06 kernel_write -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x0991a59e of_match_node -EXPORT_SYMBOL vmlinux 0x09b0a826 netlink_unicast -EXPORT_SYMBOL vmlinux 0x09b20295 proto_unregister -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09cf1b46 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x09d09a05 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x09d2a92d iterate_mounts -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09d5556c snd_pcm_lib_writev -EXPORT_SYMBOL vmlinux 0x09ed3ade input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x0a059be1 dst_discard_out -EXPORT_SYMBOL vmlinux 0x0a0786de udplite_table -EXPORT_SYMBOL vmlinux 0x0a1491f3 simple_fill_super -EXPORT_SYMBOL vmlinux 0x0a24c10f kill_bdev -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift -EXPORT_SYMBOL vmlinux 0x0a402ccf blk_free_tags -EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell -EXPORT_SYMBOL vmlinux 0x0a6bde4f skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x0a755ef6 abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x0a81072e genphy_read_status -EXPORT_SYMBOL vmlinux 0x0a8b487c thaw_bdev -EXPORT_SYMBOL vmlinux 0x0a9f0a4e kfree_skb -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad135bb phy_connect_direct -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b1186e6 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b251505 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL vmlinux 0x0b41d4ff snd_ctl_new1 -EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init -EXPORT_SYMBOL vmlinux 0x0b4f51ac vfs_writev -EXPORT_SYMBOL vmlinux 0x0b5379bc mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x0b57155e tegra_io_rail_power_off -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b7e13de xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x0b89136f set_blocksize -EXPORT_SYMBOL vmlinux 0x0b8da528 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x0b941cf3 put_tty_driver -EXPORT_SYMBOL vmlinux 0x0b95cd24 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc8f754 nvm_submit_io -EXPORT_SYMBOL vmlinux 0x0bd75794 dss_mgr_unregister_framedone_handler -EXPORT_SYMBOL vmlinux 0x0bfbbb66 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x0c063cf5 elevator_init -EXPORT_SYMBOL vmlinux 0x0c2c1ff1 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x0c31818f netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c52809c _snd_ctl_add_slave -EXPORT_SYMBOL vmlinux 0x0c549551 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c684534 clkdev_add -EXPORT_SYMBOL vmlinux 0x0c878fb5 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0ca32da5 mmc_can_reset -EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cc4a80e forget_cached_acl -EXPORT_SYMBOL vmlinux 0x0cfefe1e percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x0d01c1ee d_move -EXPORT_SYMBOL vmlinux 0x0d396bf7 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x0d3b8f7b ppp_channel_index -EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le -EXPORT_SYMBOL vmlinux 0x0d4782e6 simple_open -EXPORT_SYMBOL vmlinux 0x0d4d7a32 _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x0d4e62c3 d_obtain_root -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d70c372 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0db781bc user_path_at_empty -EXPORT_SYMBOL vmlinux 0x0dbb9964 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dc6e9c2 of_match_device -EXPORT_SYMBOL vmlinux 0x0dd75eeb d_walk -EXPORT_SYMBOL vmlinux 0x0dff996a phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x0e12ee6e mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x0e1ddff9 tty_lock -EXPORT_SYMBOL vmlinux 0x0e25d651 mtd_concat_create -EXPORT_SYMBOL vmlinux 0x0e312249 devm_clk_put -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e778918 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x0e8914aa generic_end_io_acct -EXPORT_SYMBOL vmlinux 0x0e92ae1b of_device_unregister -EXPORT_SYMBOL vmlinux 0x0eacdea1 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ecd66dc rwsem_wake -EXPORT_SYMBOL vmlinux 0x0edd1cd2 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x0ee7300d pci_request_regions -EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy -EXPORT_SYMBOL vmlinux 0x0efc762c cpu_user -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f0bc42f blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x0f1929c5 arp_send -EXPORT_SYMBOL vmlinux 0x0f1c0ddb blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x0f2501cb tcf_action_exec -EXPORT_SYMBOL vmlinux 0x0f2ebac4 thaw_super -EXPORT_SYMBOL vmlinux 0x0f37b04b i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f902857 get_super_thawed -EXPORT_SYMBOL vmlinux 0x0f9114d9 end_page_writeback -EXPORT_SYMBOL vmlinux 0x0f93d33e nf_log_register -EXPORT_SYMBOL vmlinux 0x0f9dc92d sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x0fa2a45e __memzero -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fbe2dab scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x0fde18bf scsi_remove_host -EXPORT_SYMBOL vmlinux 0x0fe6c3a9 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod -EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress -EXPORT_SYMBOL vmlinux 0x101c7043 blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0x10240388 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x103aaee4 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x10650a20 setup_arg_pages -EXPORT_SYMBOL vmlinux 0x106991bf d_rehash -EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x10716403 snd_cards -EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x1079529a neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x1087cc4b vfs_unlink -EXPORT_SYMBOL vmlinux 0x10899604 kernel_read -EXPORT_SYMBOL vmlinux 0x10a01d54 snd_device_free -EXPORT_SYMBOL vmlinux 0x10a71c31 flow_cache_fini -EXPORT_SYMBOL vmlinux 0x10aa329c generic_block_bmap -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10f64285 tty_register_driver -EXPORT_SYMBOL vmlinux 0x10f6e922 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x10fecf06 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x1125c638 dquot_free_inode -EXPORT_SYMBOL vmlinux 0x112748bd omap_vrfb_adjust_size -EXPORT_SYMBOL vmlinux 0x112ae52f devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x11760eff xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x117c2934 d_alloc -EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11a176f7 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x11a3faf1 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x11a5df04 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x11bd4dcb key_revoke -EXPORT_SYMBOL vmlinux 0x11ca3bc2 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x11d0f791 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x11f3940d jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x120845f9 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x1217a33b simple_write_begin -EXPORT_SYMBOL vmlinux 0x1219c359 lro_receive_skb -EXPORT_SYMBOL vmlinux 0x123a9f1f fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0x12644897 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x1269998e keyring_alloc -EXPORT_SYMBOL vmlinux 0x126a0e68 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0x127ed5ba input_unregister_handle -EXPORT_SYMBOL vmlinux 0x128d974e dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x129619af hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12a9e9a6 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x12ad0e62 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x12b318fe simple_getattr -EXPORT_SYMBOL vmlinux 0x12d8e07e security_path_symlink -EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc -EXPORT_SYMBOL vmlinux 0x12dae0bd dqget -EXPORT_SYMBOL vmlinux 0x12e90898 vfs_statfs -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc -EXPORT_SYMBOL vmlinux 0x13408916 sock_wake_async -EXPORT_SYMBOL vmlinux 0x134d7839 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x13518222 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x136e230c __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x137400db netlink_set_err -EXPORT_SYMBOL vmlinux 0x137a1265 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x13823d33 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0x13921e6c mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x13a44f30 kern_unmount -EXPORT_SYMBOL vmlinux 0x13b66256 set_cached_acl -EXPORT_SYMBOL vmlinux 0x13bb0355 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d108c6 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x1410febd inet_shutdown -EXPORT_SYMBOL vmlinux 0x141cc0e5 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0x141e56d2 pps_event -EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x1444d50c security_inode_init_security -EXPORT_SYMBOL vmlinux 0x1456e139 nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x147b81b8 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x147da157 blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x148ded11 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x14a341aa padata_start -EXPORT_SYMBOL vmlinux 0x14ac61ac dev_uc_sync -EXPORT_SYMBOL vmlinux 0x14b8c06d unregister_filesystem -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit -EXPORT_SYMBOL vmlinux 0x14eb0be1 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x14f1a17c dcache_dir_open -EXPORT_SYMBOL vmlinux 0x14fb8716 pci_request_region -EXPORT_SYMBOL vmlinux 0x152de06f snd_ctl_find_numid -EXPORT_SYMBOL vmlinux 0x154b64bc __nlmsg_put -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x158a0c14 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x1596c0c1 kill_pgrp -EXPORT_SYMBOL vmlinux 0x159920d6 blk_recount_segments -EXPORT_SYMBOL vmlinux 0x15a11330 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x15aec122 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x15b7c488 cfb_copyarea -EXPORT_SYMBOL vmlinux 0x15ba7776 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15e52b53 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x15eac042 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x16068224 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x1608e6df omapdss_register_output -EXPORT_SYMBOL vmlinux 0x1616b81e pcim_enable_device -EXPORT_SYMBOL vmlinux 0x162ccc0c lg_local_lock -EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null -EXPORT_SYMBOL vmlinux 0x1631eb28 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0x163ce5c4 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x164793d8 devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x16495db5 of_get_parent -EXPORT_SYMBOL vmlinux 0x166d3322 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x1678b9c8 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete -EXPORT_SYMBOL vmlinux 0x16cabfbd nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0x16d7def9 param_get_ulong -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16f00df5 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x17052eef dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x17335fb9 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x1736a83a pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x173a738e eth_mac_addr -EXPORT_SYMBOL vmlinux 0x173f3c0a __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x174afb1a __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x1752c09b dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x176c0efb omap_dss_find_output -EXPORT_SYMBOL vmlinux 0x1784f057 dispc_ovl_set_fifo_threshold -EXPORT_SYMBOL vmlinux 0x17b0c75e i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17f89d4d neigh_update -EXPORT_SYMBOL vmlinux 0x180f5837 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x1811cbec simple_follow_link -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x1840da44 migrate_page -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x18513947 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x185fa1d0 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x186448aa do_truncate -EXPORT_SYMBOL vmlinux 0x18790c45 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1897fb3d tty_hangup -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x189c5980 arm_copy_to_user -EXPORT_SYMBOL vmlinux 0x18a11242 no_llseek -EXPORT_SYMBOL vmlinux 0x18b7a986 alloc_disk -EXPORT_SYMBOL vmlinux 0x18bd76a4 _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x18c2227f cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x18cbd996 cdrom_release -EXPORT_SYMBOL vmlinux 0x18d19cb7 blk_put_queue -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x1903bea5 request_key -EXPORT_SYMBOL vmlinux 0x19168c38 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x191a4179 of_clk_get -EXPORT_SYMBOL vmlinux 0x1923be53 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x192947b3 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x192e549d dss_install_mgr_ops -EXPORT_SYMBOL vmlinux 0x19392f8f of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x193b6510 sock_edemux -EXPORT_SYMBOL vmlinux 0x1945fbdb sk_dst_check -EXPORT_SYMBOL vmlinux 0x195928e8 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits -EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode -EXPORT_SYMBOL vmlinux 0x197e4ddd bio_phys_segments -EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19aaba44 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x19ae41b2 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c781a0 max8998_write_reg -EXPORT_SYMBOL vmlinux 0x19ca07ce vm_event_states -EXPORT_SYMBOL vmlinux 0x19cfe0c3 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x19f2ddf9 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x19f5809b dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0x1a01acbc mmc_detect_change -EXPORT_SYMBOL vmlinux 0x1a058d4d generic_setlease -EXPORT_SYMBOL vmlinux 0x1a1ee7fc abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0x1a20c540 omap_vrfb_supported -EXPORT_SYMBOL vmlinux 0x1a5da1c0 dquot_alloc -EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn -EXPORT_SYMBOL vmlinux 0x1a699095 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x1a93d828 misc_deregister -EXPORT_SYMBOL vmlinux 0x1abe1128 blk_stop_queue -EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0x1ad2d45f down_write_trylock -EXPORT_SYMBOL vmlinux 0x1addbe61 nobh_write_end -EXPORT_SYMBOL vmlinux 0x1aecc2fc qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b168ca9 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x1b1d8a1b snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL vmlinux 0x1b1ecec3 __d_drop -EXPORT_SYMBOL vmlinux 0x1b24d8f4 alloc_file -EXPORT_SYMBOL vmlinux 0x1b2a27c8 sock_register -EXPORT_SYMBOL vmlinux 0x1b2b4d0a kernel_getsockname -EXPORT_SYMBOL vmlinux 0x1b2d6d2c qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0x1b35ae99 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b633acd pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b9bfc3c blkdev_get -EXPORT_SYMBOL vmlinux 0x1ba0ee07 set_wb_congested -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bd84e91 blk_start_queue -EXPORT_SYMBOL vmlinux 0x1be0bc4b generic_fillattr -EXPORT_SYMBOL vmlinux 0x1beac4ec simple_dname -EXPORT_SYMBOL vmlinux 0x1c0ff8e6 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x1c17fcd2 security_inode_permission -EXPORT_SYMBOL vmlinux 0x1c24e00f framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x1c450478 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c7a6cd9 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x1c7bb214 security_path_chmod -EXPORT_SYMBOL vmlinux 0x1c81cdf1 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x1c86dcc6 nand_unlock -EXPORT_SYMBOL vmlinux 0x1c91196e tty_unthrottle -EXPORT_SYMBOL vmlinux 0x1cab9a06 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x1cc36483 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x1ccf9bd3 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x1cdebdef md_error -EXPORT_SYMBOL vmlinux 0x1cebb44e __mdiobus_register -EXPORT_SYMBOL vmlinux 0x1cfb04fa finish_wait -EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL vmlinux 0x1d236e44 console_stop -EXPORT_SYMBOL vmlinux 0x1d4d097b do_map_probe -EXPORT_SYMBOL vmlinux 0x1d7ea355 snd_timer_start -EXPORT_SYMBOL vmlinux 0x1da6ccfd scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x1db7dc40 pgprot_kernel -EXPORT_SYMBOL vmlinux 0x1dbd6c98 noop_llseek -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1dfae290 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt -EXPORT_SYMBOL vmlinux 0x1e0c0f5d vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e44bcd9 simple_rename -EXPORT_SYMBOL vmlinux 0x1e4bf2d6 dcb_getapp -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e713390 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x1e77eefc jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x1e7e805b tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x1e83699a dma_find_channel -EXPORT_SYMBOL vmlinux 0x1e8ea2ce d_drop -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ecfd80f xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0x1ee28b29 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x1ee97298 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x1eeb848e __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x1f0e07a6 up_write -EXPORT_SYMBOL vmlinux 0x1f134ca2 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x1f177f19 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x1f1f4991 of_phy_find_device -EXPORT_SYMBOL vmlinux 0x1f21b145 ptp_clock_index -EXPORT_SYMBOL vmlinux 0x1f26627f xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0x1f3a40f8 down_read_trylock -EXPORT_SYMBOL vmlinux 0x1f47dff5 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x1f503c28 sock_i_ino -EXPORT_SYMBOL vmlinux 0x1f63cce7 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x1f687d39 fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x1f6f0ad0 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x1f76c35b tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x1f89cdfa key_put -EXPORT_SYMBOL vmlinux 0x1f90e51b skb_checksum -EXPORT_SYMBOL vmlinux 0x1fa185e1 amba_driver_register -EXPORT_SYMBOL vmlinux 0x1fab5905 wait_for_completion -EXPORT_SYMBOL vmlinux 0x1fb7b626 mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fbd9417 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0x1fc847ba vfs_fsync -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd9c5b6 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x1fdca591 serio_close -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1feaa9aa from_kprojid -EXPORT_SYMBOL vmlinux 0x1ffba72b devm_request_resource -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x2005e854 tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x203b4e4f pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0x20421305 on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x20464fde sock_from_file -EXPORT_SYMBOL vmlinux 0x2049ed22 inode_add_bytes -EXPORT_SYMBOL vmlinux 0x204b6c7b __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x205ec8de omap_dispc_register_isr -EXPORT_SYMBOL vmlinux 0x2066764e freeze_bdev -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x207d9fdd file_ns_capable -EXPORT_SYMBOL vmlinux 0x2088a7b0 pipe_unlock -EXPORT_SYMBOL vmlinux 0x208d1e3d page_symlink -EXPORT_SYMBOL vmlinux 0x209ce62d rtnl_create_link -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20ab327d udp_proc_register -EXPORT_SYMBOL vmlinux 0x20b38ce4 rt6_lookup -EXPORT_SYMBOL vmlinux 0x20b7952f lock_sock_fast -EXPORT_SYMBOL vmlinux 0x20bd66cd genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20e76dcf ppp_dev_name -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x20fccef2 scsi_add_device -EXPORT_SYMBOL vmlinux 0x21110dbf mmioset -EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 -EXPORT_SYMBOL vmlinux 0x2157965d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve -EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy -EXPORT_SYMBOL vmlinux 0x217e6fb1 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x21950058 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x21a78024 nand_scan_tail -EXPORT_SYMBOL vmlinux 0x21aa8c9d dev_close -EXPORT_SYMBOL vmlinux 0x21c52919 tc6393xb_lcd_set_power -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21e51c0c mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x21f7eb8f claim_fiq -EXPORT_SYMBOL vmlinux 0x22164af8 user_path_create -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve -EXPORT_SYMBOL vmlinux 0x222f7d24 skb_clone -EXPORT_SYMBOL vmlinux 0x222fa684 lg_global_lock -EXPORT_SYMBOL vmlinux 0x2232a8a5 mempool_free -EXPORT_SYMBOL vmlinux 0x22356176 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x223cc898 omap_vrfb_max_height -EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x226f8605 param_get_ullong -EXPORT_SYMBOL vmlinux 0x22754d70 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x2277d558 mx53_revision -EXPORT_SYMBOL vmlinux 0x2291572d register_shrinker -EXPORT_SYMBOL vmlinux 0x2292b897 __sock_create -EXPORT_SYMBOL vmlinux 0x22ac7d73 tso_start -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b4f216 kmap -EXPORT_SYMBOL vmlinux 0x22bcad4e input_unregister_device -EXPORT_SYMBOL vmlinux 0x22d07cda dev_load -EXPORT_SYMBOL vmlinux 0x22d5c6f0 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x22e6181f udp_sendmsg -EXPORT_SYMBOL vmlinux 0x22ed9e5d eth_header_parse -EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x230e83ab inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x23134276 sock_update_memcg -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x231e4b46 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x2342b302 cont_write_begin -EXPORT_SYMBOL vmlinux 0x235275ab xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x23658e58 sock_no_accept -EXPORT_SYMBOL vmlinux 0x239cdafe get_disk -EXPORT_SYMBOL vmlinux 0x23a50adf put_filp -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23aa49d3 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x23d24dec scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x23dde419 nvm_dev_factory -EXPORT_SYMBOL vmlinux 0x23f324e9 snd_pcm_hw_constraint_list -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x2415eb64 bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x2429d8c6 devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0x2435c483 module_layout -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2450b563 bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x247a741a inode_get_bytes -EXPORT_SYMBOL vmlinux 0x24817edb neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x24827459 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x24938e7b tty_name -EXPORT_SYMBOL vmlinux 0x249a2e24 posix_lock_file -EXPORT_SYMBOL vmlinux 0x24a43ba3 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL vmlinux 0x24ae0cd0 igrab -EXPORT_SYMBOL vmlinux 0x24b1ff83 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x24c5d880 fifo_set_limit -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x25072318 cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x2527a087 vme_slave_set -EXPORT_SYMBOL vmlinux 0x253da76d of_get_cpu_node -EXPORT_SYMBOL vmlinux 0x254bc7dd snd_unregister_oss_device -EXPORT_SYMBOL vmlinux 0x25505046 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x255acb5f tegra_powergate_sequence_power_up -EXPORT_SYMBOL vmlinux 0x25606aa1 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x25a1e471 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x25bb9448 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x25c6cff7 nvm_register_target -EXPORT_SYMBOL vmlinux 0x25d81cbb security_path_mknod -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25ed97b8 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x260c08a3 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x262f5885 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x26465331 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x26929508 bitmap_unplug -EXPORT_SYMBOL vmlinux 0x26b3ad78 dev_set_group -EXPORT_SYMBOL vmlinux 0x26b43ad5 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26c2128c lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x26c65781 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x26ca8c29 dquot_release -EXPORT_SYMBOL vmlinux 0x26dfca9c max8998_update_reg -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26eca22c sockfd_lookup -EXPORT_SYMBOL vmlinux 0x2724db0f submit_bh -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x275ef902 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x2761d421 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x2773ed0a remap_pfn_range -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x278a4252 __alloc_skb -EXPORT_SYMBOL vmlinux 0x27b80760 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c26b25 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x27cb6c09 nand_scan_bbt -EXPORT_SYMBOL vmlinux 0x27d30bc2 input_allocate_device -EXPORT_SYMBOL vmlinux 0x27d70e7e zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x27dc5f7a iov_iter_npages -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x27f5de0d proto_register -EXPORT_SYMBOL vmlinux 0x2800847a blk_sync_queue -EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 -EXPORT_SYMBOL vmlinux 0x2814a085 may_umount_tree -EXPORT_SYMBOL vmlinux 0x28171944 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28327587 security_path_unlink -EXPORT_SYMBOL vmlinux 0x285ec89b icmp_send -EXPORT_SYMBOL vmlinux 0x2865d680 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x28690c2c scsi_init_io -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28ce18f7 mount_bdev -EXPORT_SYMBOL vmlinux 0x28d6861d __vmalloc -EXPORT_SYMBOL vmlinux 0x28e22ffd vme_slave_request -EXPORT_SYMBOL vmlinux 0x2911f27e lwtunnel_input -EXPORT_SYMBOL vmlinux 0x2913289c remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x29136e3c nvm_put_blk -EXPORT_SYMBOL vmlinux 0x2933635e __pci_register_driver -EXPORT_SYMBOL vmlinux 0x2952c58e read_cache_pages -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x295db1dc __neigh_create -EXPORT_SYMBOL vmlinux 0x2972b4f3 sk_common_release -EXPORT_SYMBOL vmlinux 0x297376c4 devm_release_resource -EXPORT_SYMBOL vmlinux 0x297822fa neigh_seq_start -EXPORT_SYMBOL vmlinux 0x29783d44 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x297d5a3c cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x2983bf83 snd_card_free -EXPORT_SYMBOL vmlinux 0x298920e8 __sb_end_write -EXPORT_SYMBOL vmlinux 0x29985cd0 inet_listen -EXPORT_SYMBOL vmlinux 0x299fb99a of_parse_phandle -EXPORT_SYMBOL vmlinux 0x29b4dd00 flow_cache_init -EXPORT_SYMBOL vmlinux 0x29e1b020 ida_simple_remove -EXPORT_SYMBOL vmlinux 0x29faa53a netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0x2a01df00 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x2a09afbd sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x2a0cf153 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit -EXPORT_SYMBOL vmlinux 0x2a4a28b4 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x2a4df3ab security_path_truncate -EXPORT_SYMBOL vmlinux 0x2a4ec071 inet_offloads -EXPORT_SYMBOL vmlinux 0x2a6b982e sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x2a6bdfbb sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x2a7cac99 pci_add_resource -EXPORT_SYMBOL vmlinux 0x2a8fab22 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x2a9acce3 scsi_dma_map -EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2adeb01b dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0x2ae36456 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x2ae9e875 tcf_hash_create -EXPORT_SYMBOL vmlinux 0x2aee3ceb blkdev_put -EXPORT_SYMBOL vmlinux 0x2b02e57d sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x2b0462c6 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x2b0684e6 __pagevec_release -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b1111f6 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x2b11fdca sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x2b1246ee get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x2b12925d cpumask_next_and -EXPORT_SYMBOL vmlinux 0x2b1ddd71 km_report -EXPORT_SYMBOL vmlinux 0x2b2b437f snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b2eb1df blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x2b380200 ilookup5 -EXPORT_SYMBOL vmlinux 0x2b4e956e mempool_create -EXPORT_SYMBOL vmlinux 0x2b640858 give_up_console -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba1409a fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2bd9d7c4 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed -EXPORT_SYMBOL vmlinux 0x2bfe1f13 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x2bfe55ce dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0x2c0121c1 mb_cache_shrink -EXPORT_SYMBOL vmlinux 0x2c0c57f7 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x2c0edf17 revalidate_disk -EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c747183 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem -EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs -EXPORT_SYMBOL vmlinux 0x2c8e29bb generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x2c988955 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x2ca59c81 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x2cad5296 pcim_iomap -EXPORT_SYMBOL vmlinux 0x2cd1e424 nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0x2ce5c411 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x2cfd6b83 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x2d009091 seq_printf -EXPORT_SYMBOL vmlinux 0x2d00d76c map_destroy -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d5835be serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x2d6507b5 _find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0x2d715fcb omapdss_unregister_display -EXPORT_SYMBOL vmlinux 0x2d770676 dispc_mgr_go -EXPORT_SYMBOL vmlinux 0x2d7b8cd0 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x2d842fd3 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x2da85270 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x2db0b380 set_security_override -EXPORT_SYMBOL vmlinux 0x2dcb56b1 bd_set_size -EXPORT_SYMBOL vmlinux 0x2dcd73cc skb_trim -EXPORT_SYMBOL vmlinux 0x2dcda3be udp_disconnect -EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink -EXPORT_SYMBOL vmlinux 0x2df1b5d6 dquot_initialize -EXPORT_SYMBOL vmlinux 0x2df2fd21 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x2e035597 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x2e08b2aa stop_tty -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e35dc12 __genl_register_family -EXPORT_SYMBOL vmlinux 0x2e39fe25 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x2e3ac8eb jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x2e5810c6 __aeabi_unwind_cpp_pr1 -EXPORT_SYMBOL vmlinux 0x2e84ae8c of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x2e8efd0c __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x2e9d2b81 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x2eb7d146 __kernel_write -EXPORT_SYMBOL vmlinux 0x2ebaa78e wireless_spy_update -EXPORT_SYMBOL vmlinux 0x2ebe1fe7 read_dev_sector -EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x2ecd441b fence_free -EXPORT_SYMBOL vmlinux 0x2ed7a699 devm_memremap -EXPORT_SYMBOL vmlinux 0x2ef5d0a3 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2efbebbc tso_count_descs -EXPORT_SYMBOL vmlinux 0x2efc9fe5 revert_creds -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f08d3c5 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x2f0d68ed uart_match_port -EXPORT_SYMBOL vmlinux 0x2f1cb013 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x2f251366 pci_map_rom -EXPORT_SYMBOL vmlinux 0x2f28d0db sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f4e822f param_array_ops -EXPORT_SYMBOL vmlinux 0x2f570202 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x2f64f18d unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x2f728344 md_flush_request -EXPORT_SYMBOL vmlinux 0x2f755255 sg_miter_start -EXPORT_SYMBOL vmlinux 0x2f7cb73d genl_notify -EXPORT_SYMBOL vmlinux 0x2f9541a5 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x2f97749b kobject_put -EXPORT_SYMBOL vmlinux 0x2fa0b909 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x2fad211d inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2feefb02 omapdss_default_get_recommended_bpp -EXPORT_SYMBOL vmlinux 0x2fefeefa of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x3012fcf7 __lock_buffer -EXPORT_SYMBOL vmlinux 0x301d632d fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x302382e4 swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x303c04f5 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x3048790b mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x304b249b inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x305b3669 elv_register_queue -EXPORT_SYMBOL vmlinux 0x3069ca27 register_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x3082a0b3 dss_feat_get_supported_color_modes -EXPORT_SYMBOL vmlinux 0x3086acf5 default_llseek -EXPORT_SYMBOL vmlinux 0x308aad56 omap_vrfb_min_phys_size -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a74c2d __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30b059ea jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x3102f1f4 clk_get -EXPORT_SYMBOL vmlinux 0x310917fe sort -EXPORT_SYMBOL vmlinux 0x311d77e1 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x312475cf param_set_short -EXPORT_SYMBOL vmlinux 0x312e7ff2 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x313856e2 devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x31717c6a vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x317530b6 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x31866d0e simple_write_end -EXPORT_SYMBOL vmlinux 0x3190440b tcp_prequeue -EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc -EXPORT_SYMBOL vmlinux 0x319f6221 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31afef9c arp_create -EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x31e0bcf0 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx -EXPORT_SYMBOL vmlinux 0x31f61579 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x3200092b snd_pcm_hw_rule_add -EXPORT_SYMBOL vmlinux 0x3205ae61 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0x32203538 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x3220cd91 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x3224a895 devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x327fd926 param_ops_ullong -EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy -EXPORT_SYMBOL vmlinux 0x32907b91 idr_remove -EXPORT_SYMBOL vmlinux 0x32b1bbcf sock_sendmsg -EXPORT_SYMBOL vmlinux 0x3304e049 __pci_enable_wake -EXPORT_SYMBOL vmlinux 0x3316845e idr_get_next -EXPORT_SYMBOL vmlinux 0x3327874e filp_open -EXPORT_SYMBOL vmlinux 0x3356918b arm_coherent_dma_ops -EXPORT_SYMBOL vmlinux 0x3369bd84 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x336a7618 security_mmap_file -EXPORT_SYMBOL vmlinux 0x337349a6 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x337d9020 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x339b370d __find_get_block -EXPORT_SYMBOL vmlinux 0x33c43767 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x33e7202f input_free_device -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f97b84 padata_alloc_possible -EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x34452058 iov_iter_init -EXPORT_SYMBOL vmlinux 0x344b7739 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x344c7c70 ping_prot -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x34740989 param_set_bool -EXPORT_SYMBOL vmlinux 0x3493ef04 input_reset_device -EXPORT_SYMBOL vmlinux 0x34956d82 phy_connect -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34bab2f6 inet_sendpage -EXPORT_SYMBOL vmlinux 0x34bed31d tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x34c8097d dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x34df9e9e __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f8d20e nvm_erase_blk -EXPORT_SYMBOL vmlinux 0x3507a132 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3519d020 key_type_keyring -EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 -EXPORT_SYMBOL vmlinux 0x353e7c47 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x353fc8d5 rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x35664598 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x35824a0c reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0x358c8fcd __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x3590151a put_disk -EXPORT_SYMBOL vmlinux 0x35909ebf mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0x3590bf89 dss_mgr_set_timings -EXPORT_SYMBOL vmlinux 0x35961e43 swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x35a10aab unregister_md_personality -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35c48745 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x35cba09b snd_ctl_find_id -EXPORT_SYMBOL vmlinux 0x35fbd6a1 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable -EXPORT_SYMBOL vmlinux 0x36218a0f check_disk_change -EXPORT_SYMBOL vmlinux 0x363074df security_d_instantiate -EXPORT_SYMBOL vmlinux 0x364bb6dc iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x3653a79f pci_fixup_device -EXPORT_SYMBOL vmlinux 0x3673a1fc disk_stack_limits -EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x3684bae4 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x368aa375 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x36ae626a __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x36b1a94c dss_mgr_enable -EXPORT_SYMBOL vmlinux 0x36bb7fc0 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36caa8e5 follow_down -EXPORT_SYMBOL vmlinux 0x36f19c75 skb_seq_read -EXPORT_SYMBOL vmlinux 0x36f41625 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x372f8bb4 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374f4636 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x3753b704 param_set_ulong -EXPORT_SYMBOL vmlinux 0x3766d3b4 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x3767038d dmam_release_declared_memory -EXPORT_SYMBOL vmlinux 0x3770d139 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x378095e3 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x37895944 free_buffer_head -EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c145a9 seq_vprintf -EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 -EXPORT_SYMBOL vmlinux 0x37e758ff tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x37ea0e54 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x37f6eb7e pci_bus_get -EXPORT_SYMBOL vmlinux 0x380486ef register_sound_special_device -EXPORT_SYMBOL vmlinux 0x381127af devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381be4d1 pci_get_class -EXPORT_SYMBOL vmlinux 0x3876538e of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure -EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a903a7 snd_ctl_notify -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38ce0f93 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x38fbac52 touch_buffer -EXPORT_SYMBOL vmlinux 0x39167b81 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x3924dd56 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x392fec3b invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x3942ef81 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x39434c8e xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x39594a68 task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0x3964cf1f skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0x39697802 inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL vmlinux 0x39730d06 atomic_io_modify -EXPORT_SYMBOL vmlinux 0x3976f287 kill_anon_super -EXPORT_SYMBOL vmlinux 0x3978b232 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0x3981e698 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x39897b09 dump_truncate -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x39b0f385 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x39b4ffdb __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL vmlinux 0x39c1eb76 ptp_clock_register -EXPORT_SYMBOL vmlinux 0x39cd5b81 omapdss_output_set_device -EXPORT_SYMBOL vmlinux 0x39e83dbe inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x39f2b263 htc_egpio_get_wakeup_irq -EXPORT_SYMBOL vmlinux 0x3a09a53c input_event -EXPORT_SYMBOL vmlinux 0x3a1924f0 vfs_readf -EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x3a3f7c34 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x3a43de9a __ip_select_ident -EXPORT_SYMBOL vmlinux 0x3a632e56 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3abb26b0 ioremap_wc -EXPORT_SYMBOL vmlinux 0x3abef4b3 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x3acdd5ca seq_puts -EXPORT_SYMBOL vmlinux 0x3ae3b7f1 param_get_bool -EXPORT_SYMBOL vmlinux 0x3afd70ec fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0x3affa906 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x3b098236 ppp_input_error -EXPORT_SYMBOL vmlinux 0x3b1b3c41 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x3b1fe3cc __get_user_pages -EXPORT_SYMBOL vmlinux 0x3b24c4db sock_wmalloc -EXPORT_SYMBOL vmlinux 0x3b439b0d ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x3b522542 fb_find_mode -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6f3166 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x3b91f3af snd_free_pages -EXPORT_SYMBOL vmlinux 0x3bac4764 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0x3bbd9556 phy_init_hw -EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base -EXPORT_SYMBOL vmlinux 0x3bcd8bd6 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x3bdc83c3 bio_split -EXPORT_SYMBOL vmlinux 0x3be3c0c9 input_flush_device -EXPORT_SYMBOL vmlinux 0x3bee55e0 generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x3c162428 vme_irq_free -EXPORT_SYMBOL vmlinux 0x3c23eeea fb_set_var -EXPORT_SYMBOL vmlinux 0x3c352a43 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c4c5cab page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x3c5573ab devm_iounmap -EXPORT_SYMBOL vmlinux 0x3c71cf1b bio_integrity_free -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c86b986 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x3ca47bb2 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x3cc02c3a devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x3cd2e1e8 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x3cdd86d0 phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cedbcb0 proc_set_user -EXPORT_SYMBOL vmlinux 0x3cedea51 of_find_property -EXPORT_SYMBOL vmlinux 0x3cfa969a proc_douintvec -EXPORT_SYMBOL vmlinux 0x3cfb127d mmc_erase -EXPORT_SYMBOL vmlinux 0x3cfd7e8a amba_release_regions -EXPORT_SYMBOL vmlinux 0x3d06cf8a ps2_drain -EXPORT_SYMBOL vmlinux 0x3d08dbe0 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x3d0b77d8 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x3d138e13 get_task_exe_file -EXPORT_SYMBOL vmlinux 0x3d247ea2 omapdss_unregister_output -EXPORT_SYMBOL vmlinux 0x3d30409d iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0x3d3a7bdf tcp_proc_register -EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap -EXPORT_SYMBOL vmlinux 0x3d61f092 ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0x3d71fc3e padata_do_serial -EXPORT_SYMBOL vmlinux 0x3d814218 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x3d826650 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x3d9d120e inc_nlink -EXPORT_SYMBOL vmlinux 0x3da0f2c1 dev_emerg -EXPORT_SYMBOL vmlinux 0x3dac9f55 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x3dc8256e nand_scan -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dd7bcae send_sig -EXPORT_SYMBOL vmlinux 0x3ddaae95 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x3dde48cb unregister_netdev -EXPORT_SYMBOL vmlinux 0x3debc57c scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x3df23708 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e019586 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x3e028c10 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x3e13a3b9 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x3e17b8eb pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x3e261eac pci_enable_device -EXPORT_SYMBOL vmlinux 0x3e2ea22d phy_stop -EXPORT_SYMBOL vmlinux 0x3e351334 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x3e4a9521 clk_add_alias -EXPORT_SYMBOL vmlinux 0x3e571fbb dss_mgr_register_framedone_handler -EXPORT_SYMBOL vmlinux 0x3e5a755f max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x3e742194 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x3e884f4b vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x3e894415 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x3e8ada02 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3ea28439 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x3eb1d159 update_region -EXPORT_SYMBOL vmlinux 0x3eb51f0b md_cluster_mod -EXPORT_SYMBOL vmlinux 0x3ec5fea4 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x3edaa3c4 cdev_add -EXPORT_SYMBOL vmlinux 0x3ef050b9 free_netdev -EXPORT_SYMBOL vmlinux 0x3ef3b58a __put_cred -EXPORT_SYMBOL vmlinux 0x3ef60823 tty_port_close_start -EXPORT_SYMBOL vmlinux 0x3f0398eb would_dump -EXPORT_SYMBOL vmlinux 0x3f07cffc bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x3f0997bd mmc_start_req -EXPORT_SYMBOL vmlinux 0x3f12162c __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x3f1b6aba nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x3f43a534 dst_destroy -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f5b67d5 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x3f628897 km_query -EXPORT_SYMBOL vmlinux 0x3f6c619b elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0x3f6f56b4 override_creds -EXPORT_SYMBOL vmlinux 0x3f7dbc5c textsearch_register -EXPORT_SYMBOL vmlinux 0x3f8a6f15 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL vmlinux 0x3fab3ca9 register_sysctl_table -EXPORT_SYMBOL vmlinux 0x3fb6136a devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x3fbefe88 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0x3fc601aa amba_driver_unregister -EXPORT_SYMBOL vmlinux 0x3fcd0399 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x3fe915c3 cad_pid -EXPORT_SYMBOL vmlinux 0x3fe938a6 unregister_key_type -EXPORT_SYMBOL vmlinux 0x3ff0416e register_qdisc -EXPORT_SYMBOL vmlinux 0x40138a2b simple_unlink -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x402ea1d8 of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0x40331c30 bdi_destroy -EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev -EXPORT_SYMBOL vmlinux 0x40444d4d nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x40568d7a ip_ct_attach -EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x405add29 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x40670b7e inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 -EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma -EXPORT_SYMBOL vmlinux 0x407a8a2c mmc_can_erase -EXPORT_SYMBOL vmlinux 0x4080315f gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size -EXPORT_SYMBOL vmlinux 0x40a2d864 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40ad3abc neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x40b8551f skb_pad -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c82599 kill_litter_super -EXPORT_SYMBOL vmlinux 0x40cb6a75 set_disk_ro -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40d7a289 dst_release -EXPORT_SYMBOL vmlinux 0x40e6e247 snd_pcm_lib_ioctl -EXPORT_SYMBOL vmlinux 0x40e6ed8c da903x_query_status -EXPORT_SYMBOL vmlinux 0x40ed524a _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 -EXPORT_SYMBOL vmlinux 0x40fec183 inet_ioctl -EXPORT_SYMBOL vmlinux 0x4108bc11 cpu_tlb -EXPORT_SYMBOL vmlinux 0x41096aca cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x4109d229 vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0x4132a001 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x4143c5f6 dentry_unhash -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414ef953 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x41a17885 do_splice_to -EXPORT_SYMBOL vmlinux 0x41acd42e param_ops_ushort -EXPORT_SYMBOL vmlinux 0x41d9a2e9 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x41dc8b16 nf_afinfo -EXPORT_SYMBOL vmlinux 0x41fabed0 cdev_init -EXPORT_SYMBOL vmlinux 0x42052a61 page_waitqueue -EXPORT_SYMBOL vmlinux 0x4215330e xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x423d81ed ida_pre_get -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4255a1ba scsi_host_set_state -EXPORT_SYMBOL vmlinux 0x42717674 dev_addr_flush -EXPORT_SYMBOL vmlinux 0x428c5b86 __register_nls -EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all -EXPORT_SYMBOL vmlinux 0x429be6d3 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42a32143 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x42ad2e84 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0x42c0d3b8 param_get_byte -EXPORT_SYMBOL vmlinux 0x42cb3be2 vga_put -EXPORT_SYMBOL vmlinux 0x42e323cd locks_copy_lock -EXPORT_SYMBOL vmlinux 0x42ea8a2e dquot_file_open -EXPORT_SYMBOL vmlinux 0x42f65cc8 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x43269900 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x43528a47 PDE_DATA -EXPORT_SYMBOL vmlinux 0x435c636c netdev_info -EXPORT_SYMBOL vmlinux 0x43638472 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x43662421 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x439f3b02 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x43a2d17d scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x43b1e841 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0x43b266eb ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x43c4cf5c netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x43cb9b6e frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x43d8490f pipe_lock -EXPORT_SYMBOL vmlinux 0x43dfb774 of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x43e29b5a pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x43f93ab3 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x44198c95 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x441ed159 omap_get_dma_src_pos -EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume -EXPORT_SYMBOL vmlinux 0x4426da53 get_empty_filp -EXPORT_SYMBOL vmlinux 0x4428679b passthru_features_check -EXPORT_SYMBOL vmlinux 0x44300981 pci_get_slot -EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin -EXPORT_SYMBOL vmlinux 0x4443c172 dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0x44470d45 param_get_uint -EXPORT_SYMBOL vmlinux 0x44545a2f filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x4457b528 set_page_dirty -EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul -EXPORT_SYMBOL vmlinux 0x4464588b bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x44886881 lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0x44911ad5 param_ops_string -EXPORT_SYMBOL vmlinux 0x4495ae5b poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0x449cc565 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x44a9f08d posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x44dd3d8d completion_done -EXPORT_SYMBOL vmlinux 0x44e592f4 inet_put_port -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x45077cb4 free_task -EXPORT_SYMBOL vmlinux 0x450f2705 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x4516b99f key_link -EXPORT_SYMBOL vmlinux 0x452e4989 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x453376dc genlmsg_put -EXPORT_SYMBOL vmlinux 0x45389414 irq_to_desc -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x456b62b7 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457d1613 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x458d7334 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x458de8da d_find_any_alias -EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low -EXPORT_SYMBOL vmlinux 0x45f9f999 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x460249d8 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy -EXPORT_SYMBOL vmlinux 0x4640e952 shdma_reset -EXPORT_SYMBOL vmlinux 0x4651635b devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x465757c3 cpu_present_mask -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x46662a4b snd_pcm_mmap_data -EXPORT_SYMBOL vmlinux 0x4671b03c simple_link -EXPORT_SYMBOL vmlinux 0x46730857 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x469a0610 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x46a6555f eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x46ab31b7 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x46ab44eb sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x46ae5d16 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 -EXPORT_SYMBOL vmlinux 0x46e57457 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x46ebe6e1 snd_pcm_set_ops -EXPORT_SYMBOL vmlinux 0x46fcc525 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x470a3303 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x472a7ecf flush_old_exec -EXPORT_SYMBOL vmlinux 0x472c2df3 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x4749e781 swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0x474e95e4 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0x475b591f fb_blank -EXPORT_SYMBOL vmlinux 0x47783fa3 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x47a5eeaf snd_pcm_hw_param_last -EXPORT_SYMBOL vmlinux 0x47acf829 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0x47cfd62c snd_pcm_notify -EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range -EXPORT_SYMBOL vmlinux 0x47f44afe ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x47f757de elf_platform -EXPORT_SYMBOL vmlinux 0x4802b2d9 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x48153aa5 param_set_invbool -EXPORT_SYMBOL vmlinux 0x481ce6ce cpu_active_mask -EXPORT_SYMBOL vmlinux 0x4831196e dma_async_device_register -EXPORT_SYMBOL vmlinux 0x48354997 generic_write_checks -EXPORT_SYMBOL vmlinux 0x4838b4af md_integrity_register -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x485a267d inet_sendmsg -EXPORT_SYMBOL vmlinux 0x485b8194 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x485c8f4d tcp_child_process -EXPORT_SYMBOL vmlinux 0x485d0210 blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0x4873c8bd bio_reset -EXPORT_SYMBOL vmlinux 0x4882e20b dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x488bc737 netif_napi_add -EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type -EXPORT_SYMBOL vmlinux 0x48b5f5f8 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48c02c31 copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x48e7a3ab blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x48f42aa0 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x48f5ea83 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x490fa664 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x4924fd1b dma_mark_declared_memory_occupied -EXPORT_SYMBOL vmlinux 0x493ea922 tc_classify -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x4967c56e input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x499161ef tcp_poll -EXPORT_SYMBOL vmlinux 0x499cb58c prepare_to_wait -EXPORT_SYMBOL vmlinux 0x49aa7a27 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x49ad5f46 devm_gpio_free -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b3c950 write_one_page -EXPORT_SYMBOL vmlinux 0x49d6b424 dev_uc_init -EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit -EXPORT_SYMBOL vmlinux 0x49ed7a5d seq_open_private -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a2a05b2 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x4a2d91d0 devm_clk_get -EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params -EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL vmlinux 0x4a4f3eb8 tegra_ahb_enable_smmu -EXPORT_SYMBOL vmlinux 0x4a57b339 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x4a5aa5dc skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x4a87133c tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x4a9a0c20 snd_unregister_device -EXPORT_SYMBOL vmlinux 0x4aa6ed17 tty_unlock -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4ade45f8 blk_delay_queue -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b060f8f genphy_config_init -EXPORT_SYMBOL vmlinux 0x4b1b7a3a generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x4b361640 __block_write_begin -EXPORT_SYMBOL vmlinux 0x4b5a0119 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b78933c qcom_scm_set_cold_boot_addr -EXPORT_SYMBOL vmlinux 0x4b8fbe3b netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x4ba30d7b xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bafd021 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat -EXPORT_SYMBOL vmlinux 0x4bc6075b input_register_handle -EXPORT_SYMBOL vmlinux 0x4bce0f36 gen_pool_create -EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x4bde5993 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x4be0e493 d_set_d_op -EXPORT_SYMBOL vmlinux 0x4be7fb63 up -EXPORT_SYMBOL vmlinux 0x4be85a03 memweight -EXPORT_SYMBOL vmlinux 0x4c233a44 _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c33081d omapdss_compat_uninit -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c4f9d08 blk_rq_init -EXPORT_SYMBOL vmlinux 0x4c5fc58c _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x4c6b01af pcie_set_mps -EXPORT_SYMBOL vmlinux 0x4c71de1f nand_bch_init -EXPORT_SYMBOL vmlinux 0x4c72659a iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x4c75c47c scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x4c86184b remove_wait_queue -EXPORT_SYMBOL vmlinux 0x4c90c92e input_get_keycode -EXPORT_SYMBOL vmlinux 0x4ca6d783 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0x4ca75d7d pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x4cae8608 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x4cb33f62 acl_by_type -EXPORT_SYMBOL vmlinux 0x4cc2854d tegra114_clock_assert_dfll_dvco_reset -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4ce9977f module_refcount -EXPORT_SYMBOL vmlinux 0x4d013370 vm_insert_mixed -EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d175c6e mutex_trylock -EXPORT_SYMBOL vmlinux 0x4d2e6d31 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x4d3ac3b6 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask -EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x4d4a664d kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x4d68072b lease_get_mtime -EXPORT_SYMBOL vmlinux 0x4d83b295 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x4d8f1dc1 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size -EXPORT_SYMBOL vmlinux 0x4d9f3bda dev_get_by_name -EXPORT_SYMBOL vmlinux 0x4da0a617 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x4db4abc7 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x4dcc5e0b crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x4dd572c4 flush_signals -EXPORT_SYMBOL vmlinux 0x4dd5adec tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x4de2c60c uart_resume_port -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4de5a124 elevator_change -EXPORT_SYMBOL vmlinux 0x4dec6038 memscan -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4df715c5 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x4dfe07f1 inet_del_offload -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e423967 skb_unlink -EXPORT_SYMBOL vmlinux 0x4e4bbba2 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x4e506013 omap_dma_link_lch -EXPORT_SYMBOL vmlinux 0x4e5723a5 __register_binfmt -EXPORT_SYMBOL vmlinux 0x4e646169 generic_write_end -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6a8b9b dentry_update_name_case -EXPORT_SYMBOL vmlinux 0x4e6b7170 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7f7c31 nobh_write_begin -EXPORT_SYMBOL vmlinux 0x4e8108a9 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x4e8319a8 shdma_request_irq -EXPORT_SYMBOL vmlinux 0x4e911e98 bdev_read_only -EXPORT_SYMBOL vmlinux 0x4ea134ed blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x4ea61498 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x4ea868a2 i2c_verify_client -EXPORT_SYMBOL vmlinux 0x4edff6db bio_unmap_user -EXPORT_SYMBOL vmlinux 0x4ee08a2a netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0x4f0f3e06 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x4f57821c console_start -EXPORT_SYMBOL vmlinux 0x4f5813be __skb_checksum -EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f7d300e __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x4f7ee019 input_grab_device -EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL vmlinux 0x4f837de0 ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free -EXPORT_SYMBOL vmlinux 0x4f9b264c neigh_app_ns -EXPORT_SYMBOL vmlinux 0x4fac9364 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x4fdf3c5e netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x4fe00d79 module_put -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x50108f73 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x50373e87 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL vmlinux 0x504435bf km_state_expired -EXPORT_SYMBOL vmlinux 0x5047c7e7 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x504c8792 devm_gpiod_get -EXPORT_SYMBOL vmlinux 0x505f4f68 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x5070c43b of_node_put -EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x508d1162 soft_cursor -EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit -EXPORT_SYMBOL vmlinux 0x509e8cf8 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x50a23fd9 tty_port_close -EXPORT_SYMBOL vmlinux 0x50a6298d nf_getsockopt -EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x50c6071b netif_rx -EXPORT_SYMBOL vmlinux 0x50cbb8d4 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x50cddcd0 tso_build_data -EXPORT_SYMBOL vmlinux 0x50d5612e dispc_mgr_get_sync_lost_irq -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50e1d9db pci_save_state -EXPORT_SYMBOL vmlinux 0x50e88b35 snd_jack_set_key -EXPORT_SYMBOL vmlinux 0x5105f020 find_get_pages_tag -EXPORT_SYMBOL vmlinux 0x51125c8b audit_log_task_info -EXPORT_SYMBOL vmlinux 0x511746c1 dump_fpu -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x514cc273 arm_copy_from_user -EXPORT_SYMBOL vmlinux 0x5188a872 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x518c7ae2 fsync_bdev -EXPORT_SYMBOL vmlinux 0x518e0186 amba_device_register -EXPORT_SYMBOL vmlinux 0x518fca96 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x51d559d1 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x51e02066 read_cache_page -EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid -EXPORT_SYMBOL vmlinux 0x51e9de1c inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup -EXPORT_SYMBOL vmlinux 0x51fd3bce edma_filter_fn -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x521f964e xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x5253fe11 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x525c008e iterate_supers_type -EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x528d0c14 idr_init -EXPORT_SYMBOL vmlinux 0x52a68d1f mmc_power_save_host -EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le -EXPORT_SYMBOL vmlinux 0x52bb841c atomic_io_modify_relaxed -EXPORT_SYMBOL vmlinux 0x52bdcca9 netdev_features_change -EXPORT_SYMBOL vmlinux 0x52bdf17e param_ops_charp -EXPORT_SYMBOL vmlinux 0x52ccfdc0 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x52d8ed2d qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL vmlinux 0x52f2f95a tty_port_close_end -EXPORT_SYMBOL vmlinux 0x52fed8b2 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x53157bc9 udp_del_offload -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x534acd28 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x53523f83 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL vmlinux 0x535b7168 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x5375c6c1 omap_dss_get_device -EXPORT_SYMBOL vmlinux 0x538f7a7a tegra_dfll_register -EXPORT_SYMBOL vmlinux 0x53beccea blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x53d93782 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0x53e33635 lookup_one_len -EXPORT_SYMBOL vmlinux 0x53f5e664 blk_init_tags -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x54232660 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x547077ec __wake_up_bit -EXPORT_SYMBOL vmlinux 0x547ce898 dispc_read_irqenable -EXPORT_SYMBOL vmlinux 0x54a612b6 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54b33491 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0x54bde74e create_empty_buffers -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54dc8eac of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54f6830a omapdss_get_default_display_name -EXPORT_SYMBOL vmlinux 0x54fadc6a i2c_master_send -EXPORT_SYMBOL vmlinux 0x5511dd8b softnet_data -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x5521e96f jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x5535e999 bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x5538bc64 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x5553469d input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x555ee82e xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x5560c8fb snd_pcm_open_substream -EXPORT_SYMBOL vmlinux 0x55650976 amba_find_device -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x559320dc inet_getname -EXPORT_SYMBOL vmlinux 0x55933c10 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x559c4476 __init_rwsem -EXPORT_SYMBOL vmlinux 0x55a8b8b8 twl6040_power -EXPORT_SYMBOL vmlinux 0x55b1a499 generic_read_dir -EXPORT_SYMBOL vmlinux 0x55b1d2e4 nf_log_set -EXPORT_SYMBOL vmlinux 0x55b87ce5 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x55b959db dev_get_by_index -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55d97507 skb_copy -EXPORT_SYMBOL vmlinux 0x55fcb6a8 shdma_chan_filter -EXPORT_SYMBOL vmlinux 0x55fe1dbb follow_down_one -EXPORT_SYMBOL vmlinux 0x560f2df0 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x562c4b36 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x564b1de3 downgrade_write -EXPORT_SYMBOL vmlinux 0x564f6721 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x5662e31d __mutex_init -EXPORT_SYMBOL vmlinux 0x56680480 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL vmlinux 0x567c2264 udp_proc_unregister -EXPORT_SYMBOL vmlinux 0x567fcb50 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x5689afe7 dispc_ovl_enable -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x5690a273 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x56adda6f sk_reset_timer -EXPORT_SYMBOL vmlinux 0x56b25f7a netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x56bc2f15 dispc_ovl_set_channel_out -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56dfd560 napi_get_frags -EXPORT_SYMBOL vmlinux 0x56e7c2cd param_set_bint -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x57364015 xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x5752050a snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL vmlinux 0x57557853 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x578b6542 snd_card_new -EXPORT_SYMBOL vmlinux 0x579a2c6a of_phy_attach -EXPORT_SYMBOL vmlinux 0x57a6f02a flow_cache_lookup -EXPORT_SYMBOL vmlinux 0x57aba1fa loop_register_transfer -EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits -EXPORT_SYMBOL vmlinux 0x57d6a74b __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x58013636 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x5813553f sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x581846a5 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58353dad udp_set_csum -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x58512968 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack -EXPORT_SYMBOL vmlinux 0x585fb581 arp_tbl -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x587e157d simple_release_fs -EXPORT_SYMBOL vmlinux 0x58992d6d inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0x58ad6221 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x58b59a11 __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58d633c7 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58e6a5b7 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x59212c4f remove_arg_zero -EXPORT_SYMBOL vmlinux 0x592f6d99 eth_header -EXPORT_SYMBOL vmlinux 0x593aa615 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x5945b444 param_set_int -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 -EXPORT_SYMBOL vmlinux 0x595d6fc8 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x596acc85 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x596adf73 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x597421a0 __blk_end_request_all -EXPORT_SYMBOL vmlinux 0x598542b2 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x598cd828 udp_table -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59a17bfc tegra114_clock_tune_cpu_trimmers_high -EXPORT_SYMBOL vmlinux 0x59a73e5e serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59aee2b1 kern_path -EXPORT_SYMBOL vmlinux 0x59bcb55a dev_uc_del -EXPORT_SYMBOL vmlinux 0x59c304fd dev_uc_add -EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area -EXPORT_SYMBOL vmlinux 0x59d8223a ioport_resource -EXPORT_SYMBOL vmlinux 0x59debfa0 sget_userns -EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 -EXPORT_SYMBOL vmlinux 0x59fe7d1a blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a221dcc vfs_rmdir -EXPORT_SYMBOL vmlinux 0x5a51bb81 get_user_pages -EXPORT_SYMBOL vmlinux 0x5a5ecb3e snd_timer_global_new -EXPORT_SYMBOL vmlinux 0x5a70e5f7 dquot_destroy -EXPORT_SYMBOL vmlinux 0x5a751f49 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x5a770002 phy_print_status -EXPORT_SYMBOL vmlinux 0x5a8a06b6 nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x5aad6fb3 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x5abe179e nf_register_hooks -EXPORT_SYMBOL vmlinux 0x5ad4d560 find_lock_entry -EXPORT_SYMBOL vmlinux 0x5ae5be44 lg_lock_init -EXPORT_SYMBOL vmlinux 0x5ae7bb5f sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x5ae9acfd single_release -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b04be5a disable_fiq -EXPORT_SYMBOL vmlinux 0x5b05734f __lock_page -EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem -EXPORT_SYMBOL vmlinux 0x5b233103 register_cdrom -EXPORT_SYMBOL vmlinux 0x5b2a5039 vme_bus_type -EXPORT_SYMBOL vmlinux 0x5b4c5e85 snd_pcm_lib_readv -EXPORT_SYMBOL vmlinux 0x5b4d9274 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x5b66a429 done_path_create -EXPORT_SYMBOL vmlinux 0x5bb9daec __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0x5be8112a peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x5bf76296 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x5bf84cac pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x5c20a7af audit_log_start -EXPORT_SYMBOL vmlinux 0x5c265cba sg_init_one -EXPORT_SYMBOL vmlinux 0x5c3704dd ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x5c45de05 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x5c49e234 keyring_search -EXPORT_SYMBOL vmlinux 0x5c4d75b7 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x5c5ed08c single_open_size -EXPORT_SYMBOL vmlinux 0x5c759eee submit_bio -EXPORT_SYMBOL vmlinux 0x5c793eb9 snd_card_disconnect -EXPORT_SYMBOL vmlinux 0x5c8b4936 ipv4_specific -EXPORT_SYMBOL vmlinux 0x5c8fb043 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id -EXPORT_SYMBOL vmlinux 0x5c98676a devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x5ca17649 __scm_destroy -EXPORT_SYMBOL vmlinux 0x5ca4d16d dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x5caf5485 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x5cbd5ef6 bio_map_kern -EXPORT_SYMBOL vmlinux 0x5cbf9519 param_get_invbool -EXPORT_SYMBOL vmlinux 0x5cc0f2e2 mount_pseudo -EXPORT_SYMBOL vmlinux 0x5cc7f2e6 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x5ccc44fd skb_queue_tail -EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d1662f8 abx500_register_ops -EXPORT_SYMBOL vmlinux 0x5d18cc46 pci_clear_master -EXPORT_SYMBOL vmlinux 0x5d284bea ___pskb_trim -EXPORT_SYMBOL vmlinux 0x5d38172a notify_change -EXPORT_SYMBOL vmlinux 0x5d4e74ee netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d5befda get_io_context -EXPORT_SYMBOL vmlinux 0x5d62c191 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x5d72bf79 scsi_host_get -EXPORT_SYMBOL vmlinux 0x5d81ca69 rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0x5dad8c9f netif_carrier_off -EXPORT_SYMBOL vmlinux 0x5dc9630b vme_bus_num -EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache -EXPORT_SYMBOL vmlinux 0x5de61b24 tty_port_put -EXPORT_SYMBOL vmlinux 0x5e070524 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x5e0f0dc9 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x5e1b65c7 ether_setup -EXPORT_SYMBOL vmlinux 0x5e3e186f dev_err -EXPORT_SYMBOL vmlinux 0x5e427b9f netdev_printk -EXPORT_SYMBOL vmlinux 0x5e5763aa blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x5e686816 fget_raw -EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes -EXPORT_SYMBOL vmlinux 0x5e871cf4 sock_no_poll -EXPORT_SYMBOL vmlinux 0x5e8fa560 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5ea1d389 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x5ea4625e blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec50fb1 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ede44b4 commit_creds -EXPORT_SYMBOL vmlinux 0x5ee3a01a mount_ns -EXPORT_SYMBOL vmlinux 0x5ef0888b pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f03d860 blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0x5f049f83 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f0a295e truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x5f1d0d41 pci_find_bus -EXPORT_SYMBOL vmlinux 0x5f27323c _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x5f40d48c pci_assign_resource -EXPORT_SYMBOL vmlinux 0x5f589276 vlan_vid_add -EXPORT_SYMBOL vmlinux 0x5f5bdb55 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x5f5d48e0 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x5f754e5a memset -EXPORT_SYMBOL vmlinux 0x5f805824 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5feebbab get_fs_type -EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io -EXPORT_SYMBOL vmlinux 0x5ffa47a9 km_state_notify -EXPORT_SYMBOL vmlinux 0x5fff8bef inet6_offloads -EXPORT_SYMBOL vmlinux 0x60055baa dispc_mgr_get_vsync_irq -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600731db udp_ioctl -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60458fa5 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x60645eaa dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x606fcd9f scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x609b0e84 mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60ab04fd register_framebuffer -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x60edcd0e __dquot_transfer -EXPORT_SYMBOL vmlinux 0x60f5aad5 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x610c409d dispc_ovl_check -EXPORT_SYMBOL vmlinux 0x6122b723 pci_get_subsys -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x61391145 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x61482568 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x61516a88 register_sound_dsp -EXPORT_SYMBOL vmlinux 0x615bb3ef unregister_binfmt -EXPORT_SYMBOL vmlinux 0x6164fc26 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x617880b4 blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0x617a218d __cond_resched_lock -EXPORT_SYMBOL vmlinux 0x61832fb8 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x618bcf49 kunmap_high -EXPORT_SYMBOL vmlinux 0x61a1392b snd_pcm_hw_refine -EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61bf984d vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x61e4d8e4 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x61f09b27 netdev_notice -EXPORT_SYMBOL vmlinux 0x62003614 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x62296be1 qcom_scm_get_version -EXPORT_SYMBOL vmlinux 0x622fbe03 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x623adbbb may_umount -EXPORT_SYMBOL vmlinux 0x623f213e balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x62711b1a fb_show_logo -EXPORT_SYMBOL vmlinux 0x6272f5bb mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x6276eec8 generic_perform_write -EXPORT_SYMBOL vmlinux 0x628186bb abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62a355a3 _dev_info -EXPORT_SYMBOL vmlinux 0x62af81aa jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x62b12df4 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x62edec59 fddi_change_mtu -EXPORT_SYMBOL vmlinux 0x6306f0db scsi_print_command -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x632b35d8 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x6366c708 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x636b3461 omap_dss_get_num_overlays -EXPORT_SYMBOL vmlinux 0x636d61a9 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x63914f83 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63be19f7 serio_interrupt -EXPORT_SYMBOL vmlinux 0x63be4eed twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c8c471 lro_flush_all -EXPORT_SYMBOL vmlinux 0x63d7a74d snd_pcm_lib_free_pages -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x64350157 lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x6444c586 locks_free_lock -EXPORT_SYMBOL vmlinux 0x644f6ca1 free_page_put_link -EXPORT_SYMBOL vmlinux 0x6450135e dquot_acquire -EXPORT_SYMBOL vmlinux 0x6457a00f kmalloc_caches -EXPORT_SYMBOL vmlinux 0x6459e9e4 cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x646c2adb iov_iter_advance -EXPORT_SYMBOL vmlinux 0x648168fb padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x6489c8e0 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a22ff0 dispc_mgr_set_lcd_config -EXPORT_SYMBOL vmlinux 0x64a7cea2 send_sig_info -EXPORT_SYMBOL vmlinux 0x64bb2295 sk_alloc -EXPORT_SYMBOL vmlinux 0x64ca3c20 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x64cefccd sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x64ee0738 napi_consume_skb -EXPORT_SYMBOL vmlinux 0x64ee873e d_splice_alias -EXPORT_SYMBOL vmlinux 0x650b7be5 tcp_prot -EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x651b118d __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x65389e27 input_register_device -EXPORT_SYMBOL vmlinux 0x653d53e5 tcp_seq_open -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x65466939 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x6548778a kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x655db43c __get_page_tail -EXPORT_SYMBOL vmlinux 0x656b3679 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x6578db1f of_get_next_child -EXPORT_SYMBOL vmlinux 0x658f0c7a dev_alloc_name -EXPORT_SYMBOL vmlinux 0x659e02ac inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e7d511 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x66031a22 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x661a5ad1 elv_unregister_queue -EXPORT_SYMBOL vmlinux 0x661f1791 get_gendisk -EXPORT_SYMBOL vmlinux 0x66227eae vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x66313647 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x663804c6 phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0x6646dc5a prepare_creds -EXPORT_SYMBOL vmlinux 0x667919ac __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x66b3585f phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x66c99965 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x66d32097 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x670242ab lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x67306b31 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x67458ec4 __blk_run_queue -EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x6788b24c blk_requeue_request -EXPORT_SYMBOL vmlinux 0x6790e0db skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x67b00139 blkdev_fsync -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67bf5ee7 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x67d4cc9a inode_init_once -EXPORT_SYMBOL vmlinux 0x67daa43d devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x67e02294 kobject_set_name -EXPORT_SYMBOL vmlinux 0x67e572cd xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x67f44a52 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x67fc007a blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x680bebac rfkill_alloc -EXPORT_SYMBOL vmlinux 0x6822d759 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x682c4c83 sk_receive_skb -EXPORT_SYMBOL vmlinux 0x68355427 find_vma -EXPORT_SYMBOL vmlinux 0x683ff047 pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0x68446625 cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x6844c404 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x685c3391 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x685ebc3d block_write_end -EXPORT_SYMBOL vmlinux 0x686fcf3b deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x68869bae panic_notifier_list -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL vmlinux 0x68b6bd72 mdiobus_read -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68d2ea49 udp_add_offload -EXPORT_SYMBOL vmlinux 0x68f12e31 abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x69032ece bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x690b1787 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x6915eb38 down_interruptible -EXPORT_SYMBOL vmlinux 0x691bdfe9 have_submounts -EXPORT_SYMBOL vmlinux 0x693d0d1d gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x695d4adf xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x696ffd60 set_bh_page -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params -EXPORT_SYMBOL vmlinux 0x69c8c72f param_ops_bint -EXPORT_SYMBOL vmlinux 0x69e01482 dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a1c11dc of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0x6a2281bf blk_put_request -EXPORT_SYMBOL vmlinux 0x6a48da4e scm_detach_fds -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a74bc37 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x6a76d30d blk_finish_request -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a92614a ppp_input -EXPORT_SYMBOL vmlinux 0x6a934bcf bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x6ab581b3 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6acea4d4 prepare_binprm -EXPORT_SYMBOL vmlinux 0x6ad8d707 proc_remove -EXPORT_SYMBOL vmlinux 0x6ae2741d get_phy_device -EXPORT_SYMBOL vmlinux 0x6ae6e205 kernel_listen -EXPORT_SYMBOL vmlinux 0x6aecdabc pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af1c22f cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b3fe5b8 vfs_whiteout -EXPORT_SYMBOL vmlinux 0x6b40deac rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x6b41ac53 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x6b49fbec mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x6b602531 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x6bb1c55b seq_escape -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc5eb7b lookup_bdev -EXPORT_SYMBOL vmlinux 0x6bccc386 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x6bd40c80 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6befbea4 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c0dfc32 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn -EXPORT_SYMBOL vmlinux 0x6c2158f7 dquot_resume -EXPORT_SYMBOL vmlinux 0x6c24bf96 nf_log_unset -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c5e9f05 devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c6cdd4d wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c8e0c0e dma_release_declared_memory -EXPORT_SYMBOL vmlinux 0x6c9bc238 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x6caf3031 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x6ccdeae9 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x6cd09fb4 sg_miter_next -EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6ce32092 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x6cef43fa unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x6cff697f pci_disable_msix -EXPORT_SYMBOL vmlinux 0x6d0aa456 __napi_schedule -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d1c44dd lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d2c53e0 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d4eb411 nonseekable_open -EXPORT_SYMBOL vmlinux 0x6d4fa716 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le -EXPORT_SYMBOL vmlinux 0x6d785eff starget_for_each_device -EXPORT_SYMBOL vmlinux 0x6d81221d tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x6d87d5db dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x6da62d78 dcache_dir_close -EXPORT_SYMBOL vmlinux 0x6ded10a9 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e310f7e xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x6e35547d open_exec -EXPORT_SYMBOL vmlinux 0x6e3b819f sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x6e5383b4 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x6e61ece7 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e88e8a4 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x6e8f542f mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea533ae security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x6ec9ccdb _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x6ecc5c36 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x6ef5a7a3 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL vmlinux 0x6efadd3d twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x6f048d27 of_mdio_parse_addr -EXPORT_SYMBOL vmlinux 0x6f082d36 bh_submit_read -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f29cdfe inet_frag_kill -EXPORT_SYMBOL vmlinux 0x6f3b7ba3 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x6f41a74d inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x6f6bfcd1 pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x6f754189 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x6f828087 zero_fill_bio -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6fa12fe7 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fc5b6a0 __getblk_slow -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd3130d max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x6ff90e91 __break_lease -EXPORT_SYMBOL vmlinux 0x7001bcc4 eth_type_trans -EXPORT_SYMBOL vmlinux 0x70097aa0 nand_bch_free -EXPORT_SYMBOL vmlinux 0x700c66e6 bdi_register_owner -EXPORT_SYMBOL vmlinux 0x7012b6d8 blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0x7019a2e1 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x70213279 phy_device_create -EXPORT_SYMBOL vmlinux 0x703215d2 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7057bc64 page_readlink -EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x706f5c00 dev_warn -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x708a5de0 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x70b26541 snd_jack_set_parent -EXPORT_SYMBOL vmlinux 0x70b76a94 of_gpio_simple_xlate -EXPORT_SYMBOL vmlinux 0x70b869d9 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x70bbfabf generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x70cd3cd3 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x70d8fee9 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x70d905bf __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x70e39dae dss_uninstall_mgr_ops -EXPORT_SYMBOL vmlinux 0x70f63889 input_close_device -EXPORT_SYMBOL vmlinux 0x70f857d7 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x7119db7f omap_dss_pal_timings -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x71593d62 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x715d50f9 make_kuid -EXPORT_SYMBOL vmlinux 0x7169102e omap_dss_ntsc_timings -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71816460 tty_set_operations -EXPORT_SYMBOL vmlinux 0x7185944f alloc_fddidev -EXPORT_SYMBOL vmlinux 0x718f79ed truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x7191bda1 page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71a9029d snd_pcm_release_substream -EXPORT_SYMBOL vmlinux 0x71c90087 memcmp -EXPORT_SYMBOL vmlinux 0x71d12003 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x71e2be5e i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x720a09a6 snd_device_register -EXPORT_SYMBOL vmlinux 0x722e8f9b mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0x72350130 ___ratelimit -EXPORT_SYMBOL vmlinux 0x723ba5cc blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x7256b855 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x725d8148 uart_update_timeout -EXPORT_SYMBOL vmlinux 0x726f3256 sock_no_getname -EXPORT_SYMBOL vmlinux 0x72712163 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x7296d8a2 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x72a0e6f2 __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x72b9492b textsearch_prepare -EXPORT_SYMBOL vmlinux 0x72d51615 bmap -EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x72d66eaf pcim_pin_device -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731f251c unregister_cdrom -EXPORT_SYMBOL vmlinux 0x7331f547 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x73325c1e tcp_release_cb -EXPORT_SYMBOL vmlinux 0x73357d58 snd_pcm_limit_hw_rates -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x733e8357 param_set_uint -EXPORT_SYMBOL vmlinux 0x73513dc3 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0x73515c8e jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x73938ff9 of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x739a28b8 blk_start_request -EXPORT_SYMBOL vmlinux 0x73b2cbc5 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x73c28ec1 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x73ecca7a eth_change_mtu -EXPORT_SYMBOL vmlinux 0x73f54941 netif_device_attach -EXPORT_SYMBOL vmlinux 0x73f662e5 nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0x740d53e3 skb_split -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x7410c9b2 inet_bind -EXPORT_SYMBOL vmlinux 0x742d431b pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x7433552c ihold -EXPORT_SYMBOL vmlinux 0x7448d2fa bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x744c18ee __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x746b0170 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x74aa3cc2 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74e46dac imx_ssi_fiq_tx_buffer -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f50f46 netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x750af912 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x752838d8 icmpv6_send -EXPORT_SYMBOL vmlinux 0x7530fcef tcp_close -EXPORT_SYMBOL vmlinux 0x753c5b7e vfs_mkdir -EXPORT_SYMBOL vmlinux 0x755546a2 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x7561a5af load_nls_default -EXPORT_SYMBOL vmlinux 0x75638434 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs -EXPORT_SYMBOL vmlinux 0x75713f48 of_get_named_gpio_flags -EXPORT_SYMBOL vmlinux 0x7593c0a3 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 -EXPORT_SYMBOL vmlinux 0x75accea0 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75ff9b18 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x76237e8a param_set_copystring -EXPORT_SYMBOL vmlinux 0x76249ac1 netdev_update_features -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764aea85 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x76541f00 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x765a8dab setattr_copy -EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append -EXPORT_SYMBOL vmlinux 0x7661f0f3 account_page_dirtied -EXPORT_SYMBOL vmlinux 0x766fbba0 lock_fb_info -EXPORT_SYMBOL vmlinux 0x769e8e6e dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x76c9e04c nf_unregister_hook -EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be -EXPORT_SYMBOL vmlinux 0x76e58481 __brelse -EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order -EXPORT_SYMBOL vmlinux 0x76f878b6 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x77046e10 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x77188b75 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x771a0060 block_truncate_page -EXPORT_SYMBOL vmlinux 0x77226c9a sk_capable -EXPORT_SYMBOL vmlinux 0x772519be gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x77347a34 pci_get_device -EXPORT_SYMBOL vmlinux 0x7742a685 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x77474153 mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0x774a8f7f netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x77576b86 genphy_suspend -EXPORT_SYMBOL vmlinux 0x775a130e __sg_free_table -EXPORT_SYMBOL vmlinux 0x77629bd8 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x777b24d2 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x7780281d kill_fasync -EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x77953308 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77a6185c posix_test_lock -EXPORT_SYMBOL vmlinux 0x77acbf84 try_module_get -EXPORT_SYMBOL vmlinux 0x77b1e8cb phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77d75d98 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x77d7644b tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x77f847a2 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x77fa1a63 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x780a13ca __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x780b08be phy_disconnect -EXPORT_SYMBOL vmlinux 0x7810a88b fence_signal_locked -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x783be0ce put_io_context -EXPORT_SYMBOL vmlinux 0x783fffdb ip6_frag_match -EXPORT_SYMBOL vmlinux 0x7842adfa kmem_cache_size -EXPORT_SYMBOL vmlinux 0x7852ef27 of_mm_gpiochip_remove -EXPORT_SYMBOL vmlinux 0x78779c0b set_fiq_handler -EXPORT_SYMBOL vmlinux 0x78799180 skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x787a64be tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788fe103 iomem_resource -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78b06467 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x78b6ac5c of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x78bdb6d6 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0x78da72e0 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78ec2564 register_netdev -EXPORT_SYMBOL vmlinux 0x790ab0ed sk_mc_loop -EXPORT_SYMBOL vmlinux 0x79231280 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x79246907 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x7934d3dc scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x79451438 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x795abe55 write_inode_now -EXPORT_SYMBOL vmlinux 0x796a7c2c sk_stream_write_space -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x7973811d pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x7998987a __kfree_skb -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79c5a9f0 ioremap -EXPORT_SYMBOL vmlinux 0x79e78cc3 vfs_readv -EXPORT_SYMBOL vmlinux 0x79fa1deb imx_ssi_fiq_rx_buffer -EXPORT_SYMBOL vmlinux 0x7a0369ca generic_permission -EXPORT_SYMBOL vmlinux 0x7a1f2611 dispc_mgr_set_timings -EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 -EXPORT_SYMBOL vmlinux 0x7a31b258 tcp_check_req -EXPORT_SYMBOL vmlinux 0x7a355e6b pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x7a42a85c mpage_readpages -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a466173 load_nls -EXPORT_SYMBOL vmlinux 0x7a4c0984 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ac02b55 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x7ac11124 up_read -EXPORT_SYMBOL vmlinux 0x7acbfc84 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad8899e nvm_end_io -EXPORT_SYMBOL vmlinux 0x7ae18756 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x7ae61044 xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x7af85856 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf -EXPORT_SYMBOL vmlinux 0x7afb173c end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL vmlinux 0x7b0fce78 mpage_readpage -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress -EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x7b436ff6 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7bb10d10 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x7bb99506 param_ops_byte -EXPORT_SYMBOL vmlinux 0x7bca0d90 netdev_state_change -EXPORT_SYMBOL vmlinux 0x7bcc1737 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x7c098be3 skb_put -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c34b632 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c495fe8 key_unlink -EXPORT_SYMBOL vmlinux 0x7c4c6d0b snd_pcm_new -EXPORT_SYMBOL vmlinux 0x7c4f956e fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x7c54cd9b jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x7c66782d filemap_fault -EXPORT_SYMBOL vmlinux 0x7c74f4cc sock_efree -EXPORT_SYMBOL vmlinux 0x7c7c7560 blk_get_request -EXPORT_SYMBOL vmlinux 0x7c7ee7f9 vm_mmap -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7ca170f3 register_md_personality -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 -EXPORT_SYMBOL vmlinux 0x7cc7f9c9 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce7493c finish_no_open -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7d076924 snd_jack_add_new_kctl -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d346d8f blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x7d3ab71a mutex_lock -EXPORT_SYMBOL vmlinux 0x7d6c4c9a sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7da87624 rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0x7dc6b96a dquot_operations -EXPORT_SYMBOL vmlinux 0x7dccc294 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x7de106d5 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x7de6bf1b scsi_remove_device -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7df045a2 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x7e138b7e filemap_flush -EXPORT_SYMBOL vmlinux 0x7e467891 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x7e5922d6 bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x7e6fa3ef tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0x7e94268d copy_from_iter -EXPORT_SYMBOL vmlinux 0x7e9868f6 seq_pad -EXPORT_SYMBOL vmlinux 0x7e9efe8e complete_and_exit -EXPORT_SYMBOL vmlinux 0x7eb0f331 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x7eb6d603 filp_close -EXPORT_SYMBOL vmlinux 0x7eb73ee9 put_page -EXPORT_SYMBOL vmlinux 0x7ebdb0ec path_get -EXPORT_SYMBOL vmlinux 0x7ec846e6 mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x7ee5d9ce pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7ee7f093 dispc_ovl_compute_fifo_thresholds -EXPORT_SYMBOL vmlinux 0x7ee86774 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x7f00e0c2 proc_mkdir -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f133b4b inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x7f249160 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f2fdebe snd_ctl_boolean_mono_info -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio -EXPORT_SYMBOL vmlinux 0x7f928e3f component_match_add -EXPORT_SYMBOL vmlinux 0x7f98b561 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x7faa3a3b secpath_dup -EXPORT_SYMBOL vmlinux 0x7fb193e2 param_set_charp -EXPORT_SYMBOL vmlinux 0x7fb7af38 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x7fd2193e sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe9a947 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 -EXPORT_SYMBOL vmlinux 0x800e5ae4 omapdss_default_get_resolution -EXPORT_SYMBOL vmlinux 0x8032338f empty_zero_page -EXPORT_SYMBOL vmlinux 0x80365cab inet6_release -EXPORT_SYMBOL vmlinux 0x803c2110 lease_modify -EXPORT_SYMBOL vmlinux 0x80462f48 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x804aabdf idr_is_empty -EXPORT_SYMBOL vmlinux 0x804dcf87 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x805ae143 kunmap -EXPORT_SYMBOL vmlinux 0x80617d23 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0x8067a31c dm_get_device -EXPORT_SYMBOL vmlinux 0x80b04469 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x80b171ef kdb_current_task -EXPORT_SYMBOL vmlinux 0x80b47693 noop_fsync -EXPORT_SYMBOL vmlinux 0x80bbfcd1 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80d81308 omap_vrfb_release_ctx -EXPORT_SYMBOL vmlinux 0x80f61b1f dm_io -EXPORT_SYMBOL vmlinux 0x80f7e4ad remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x81022641 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0x8116756d pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x814058bd md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x8143496a __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x8145e051 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x8146465d mmc_of_parse -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x8151099e fsnotify_put_group -EXPORT_SYMBOL vmlinux 0x815684a7 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x8160ae94 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x81733ecf pci_reenable_device -EXPORT_SYMBOL vmlinux 0x81837288 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x818a6536 of_get_property -EXPORT_SYMBOL vmlinux 0x819a5a61 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x819f2c51 tcf_em_register -EXPORT_SYMBOL vmlinux 0x819f4e19 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x819f7bf7 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x81ab4346 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL vmlinux 0x81be0469 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x81bf2c89 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x81c7541e of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81f4d8de clkdev_drop -EXPORT_SYMBOL vmlinux 0x81fee07d bioset_free -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x820e2b6f sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x82137448 vm_insert_page -EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb -EXPORT_SYMBOL vmlinux 0x822c2109 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr -EXPORT_SYMBOL vmlinux 0x82652512 md_register_thread -EXPORT_SYMBOL vmlinux 0x826c3fab arp_xmit -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x8279f456 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x82a1a1d9 from_kgid -EXPORT_SYMBOL vmlinux 0x82a99c82 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x82ac7c93 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82b2e6ed jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x82c17f16 ptp_find_pin -EXPORT_SYMBOL vmlinux 0x82d21f89 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x82efef3d abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x83098e52 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x831396c3 fence_signal -EXPORT_SYMBOL vmlinux 0x831abda8 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 -EXPORT_SYMBOL vmlinux 0x8321128c mtd_concat_destroy -EXPORT_SYMBOL vmlinux 0x8340c651 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x8370ca2a vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x8375d79d ida_destroy -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83b68cee scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x83b9e57e blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x83bf7437 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x83c35991 fb_class -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83f0505b mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x83fdcd92 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x840784ab bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x840e03df of_platform_device_create -EXPORT_SYMBOL vmlinux 0x841444ba scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x84415fa0 of_dev_get -EXPORT_SYMBOL vmlinux 0x844cc3a7 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x84772ac9 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x849b3eac devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x84a089af bdgrab -EXPORT_SYMBOL vmlinux 0x84a69fdc vme_slave_get -EXPORT_SYMBOL vmlinux 0x84b183ae strncmp -EXPORT_SYMBOL vmlinux 0x84b46459 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x84b8c99c generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x84d117ce tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x84d96522 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x85125b1a write_cache_pages -EXPORT_SYMBOL vmlinux 0x851c06d2 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x853a8a9d should_remove_suid -EXPORT_SYMBOL vmlinux 0x854e1c0b sg_nents -EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info -EXPORT_SYMBOL vmlinux 0x856201bf inode_dio_wait -EXPORT_SYMBOL vmlinux 0x856229a8 generic_readlink -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x85765fee omap_enable_dma_irq -EXPORT_SYMBOL vmlinux 0x858da458 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x85b3cc38 pci_dev_get -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85cb96cc security_task_getsecid -EXPORT_SYMBOL vmlinux 0x85cc1b66 set_user_nice -EXPORT_SYMBOL vmlinux 0x85d7058e blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e10b50 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x85ed73e0 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85fb4901 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x8618d6cc dev_get_iflink -EXPORT_SYMBOL vmlinux 0x861b2cc2 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x86354b76 scsi_print_result -EXPORT_SYMBOL vmlinux 0x863882ef netlink_capable -EXPORT_SYMBOL vmlinux 0x863f40cd ip6_frag_init -EXPORT_SYMBOL vmlinux 0x86419ede pci_disable_device -EXPORT_SYMBOL vmlinux 0x8648199f path_is_under -EXPORT_SYMBOL vmlinux 0x8649b4b3 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x864f2ec8 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x86637168 padata_alloc -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x866c72f2 snd_ctl_remove_id -EXPORT_SYMBOL vmlinux 0x867e733a jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x86860195 dss_feat_get_supported_displays -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x86b7df32 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x86c2bc88 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x86c6dc27 pci_iounmap -EXPORT_SYMBOL vmlinux 0x86d96166 snd_timer_new -EXPORT_SYMBOL vmlinux 0x86e77a32 sock_rfree -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x87003790 fence_init -EXPORT_SYMBOL vmlinux 0x87151f8a nand_correct_data -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x872f2860 pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0x87390c76 phy_suspend -EXPORT_SYMBOL vmlinux 0x874a7270 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x8751112e sock_recvmsg -EXPORT_SYMBOL vmlinux 0x8759195d iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x875b7734 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x876b0771 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x877c91ed skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x87961c69 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x87980a5e pci_choose_state -EXPORT_SYMBOL vmlinux 0x87abb2a5 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x87ca1a71 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x87cdf3ab snd_jack_report -EXPORT_SYMBOL vmlinux 0x87d824dc unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0x87e2b4cd __bforget -EXPORT_SYMBOL vmlinux 0x87ef31b0 tegra_dfll_runtime_suspend -EXPORT_SYMBOL vmlinux 0x87fc511d lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x883dde40 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x88420e3f elevator_alloc -EXPORT_SYMBOL vmlinux 0x88651017 abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0x886bc76f mempool_resize -EXPORT_SYMBOL vmlinux 0x887c34ef touch_atime -EXPORT_SYMBOL vmlinux 0x887ee60f tcp_connect -EXPORT_SYMBOL vmlinux 0x88879639 mutex_unlock -EXPORT_SYMBOL vmlinux 0x888ffcbc simple_pin_fs -EXPORT_SYMBOL vmlinux 0x88a3d5ce swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0x88a4ab3b devm_free_irq -EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial -EXPORT_SYMBOL vmlinux 0x88b6f48b dentry_path_raw -EXPORT_SYMBOL vmlinux 0x88d3760f __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x88d4f64b netdev_warn -EXPORT_SYMBOL vmlinux 0x88e3331e release_firmware -EXPORT_SYMBOL vmlinux 0x88fadb6f xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x890def52 __netif_schedule -EXPORT_SYMBOL vmlinux 0x893986b7 iunique -EXPORT_SYMBOL vmlinux 0x893f7d86 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0x895d8864 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x89705ea0 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x89929f4f netdev_crit -EXPORT_SYMBOL vmlinux 0x89b5ae33 blk_fetch_request -EXPORT_SYMBOL vmlinux 0x89c0f1f7 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x89c45d00 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x89d5d199 seq_open -EXPORT_SYMBOL vmlinux 0x89da9347 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x89dd943d kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x89f1ffef pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x89fb5e19 seq_dentry -EXPORT_SYMBOL vmlinux 0x8a09bd02 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x8a0b843a udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x8a0dd61c seq_file_path -EXPORT_SYMBOL vmlinux 0x8a0f4230 rename_lock -EXPORT_SYMBOL vmlinux 0x8a1535ae scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0x8a1711f0 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a208f2d __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a896da6 amba_request_regions -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8abebec3 __check_sticky -EXPORT_SYMBOL vmlinux 0x8ad1f8ff snd_dma_free_pages -EXPORT_SYMBOL vmlinux 0x8ad503f6 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x8af2c157 vfs_setpos -EXPORT_SYMBOL vmlinux 0x8afae9fa __frontswap_test -EXPORT_SYMBOL vmlinux 0x8b0a0c18 inode_permission -EXPORT_SYMBOL vmlinux 0x8b163909 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x8b2ed345 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x8b4132eb pskb_expand_head -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b4cb494 of_device_is_available -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b7d69a6 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b836d96 snd_pcm_lib_write -EXPORT_SYMBOL vmlinux 0x8ba5f12c tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x8bbfa68a end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x8bc05e33 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x8bcd5f47 fasync_helper -EXPORT_SYMBOL vmlinux 0x8bd763d3 fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x8be271a0 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x8c225b55 inet_select_addr -EXPORT_SYMBOL vmlinux 0x8c3cd901 sock_no_listen -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c7ec288 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x8c945237 down_read -EXPORT_SYMBOL vmlinux 0x8cbae91d neigh_table_init -EXPORT_SYMBOL vmlinux 0x8cc0c74d skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x8ccd6478 snd_power_wait -EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma -EXPORT_SYMBOL vmlinux 0x8ce388a0 blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x8ceb0778 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL vmlinux 0x8d134c39 idr_replace -EXPORT_SYMBOL vmlinux 0x8d29d07b path_nosuid -EXPORT_SYMBOL vmlinux 0x8d335387 inet_frags_init -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d60a316 inet6_getname -EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x8d6c1eff mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 -EXPORT_SYMBOL vmlinux 0x8d6fe1f3 ac97_bus_type -EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d8b6353 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x8da358c9 dev_crit -EXPORT_SYMBOL vmlinux 0x8da3ac9c dump_page -EXPORT_SYMBOL vmlinux 0x8dafa19c pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x8db1cd28 __skb_tx_hash -EXPORT_SYMBOL vmlinux 0x8dcff6e2 __pv_offset -EXPORT_SYMBOL vmlinux 0x8dd53474 seq_write -EXPORT_SYMBOL vmlinux 0x8dd913fd pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL vmlinux 0x8e0a951e xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x8e1e0bf6 __elv_add_request -EXPORT_SYMBOL vmlinux 0x8e28a539 do_SAK -EXPORT_SYMBOL vmlinux 0x8e38f015 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x8e52fb63 lock_rename -EXPORT_SYMBOL vmlinux 0x8e53682b security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x8e714d53 netif_rx_ni -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e7eadfc jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops -EXPORT_SYMBOL vmlinux 0x8ebc1742 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL vmlinux 0x8ecc6533 pci_dev_put -EXPORT_SYMBOL vmlinux 0x8f13fd0a of_device_register -EXPORT_SYMBOL vmlinux 0x8f1b9e4e fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x8f4eb2de xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x8f4ef3cb pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x8f52c4f2 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major -EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard -EXPORT_SYMBOL vmlinux 0x8f72dab7 snd_ctl_remove -EXPORT_SYMBOL vmlinux 0x8f7975a9 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x8f7b01c9 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x8f8753eb vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x8f8b0714 __scm_send -EXPORT_SYMBOL vmlinux 0x8fa4130a omap_set_dma_callback -EXPORT_SYMBOL vmlinux 0x8faa01ba eth_header_cache -EXPORT_SYMBOL vmlinux 0x8fb4f22d of_dev_put -EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin -EXPORT_SYMBOL vmlinux 0x8ff0d3f4 pneigh_lookup -EXPORT_SYMBOL vmlinux 0x8ff9a6dc address_space_init_once -EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 -EXPORT_SYMBOL vmlinux 0x8ffe187c inet_stream_ops -EXPORT_SYMBOL vmlinux 0x9016abdf blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x9022ab06 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x906af0d1 generic_make_request -EXPORT_SYMBOL vmlinux 0x9079af8c blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x909a2ba4 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x90a2505e iov_iter_zero -EXPORT_SYMBOL vmlinux 0x90a424ec inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0x90b6aa21 dev_addr_init -EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x9103ce7b sock_no_bind -EXPORT_SYMBOL vmlinux 0x9104458c __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x9117576d mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x9153be91 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x91621d6a allocate_resource -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x918229cb tty_register_device -EXPORT_SYMBOL vmlinux 0x91824e03 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug -EXPORT_SYMBOL vmlinux 0x919bd690 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x91b096ab elm_config -EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x91f98ebf input_set_keycode -EXPORT_SYMBOL vmlinux 0x920f8c34 simple_readpage -EXPORT_SYMBOL vmlinux 0x921b7225 udp_prot -EXPORT_SYMBOL vmlinux 0x92201219 skb_dequeue -EXPORT_SYMBOL vmlinux 0x9238cc72 param_get_short -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x9242a40d ll_rw_block -EXPORT_SYMBOL vmlinux 0x924bd8ad d_add_ci -EXPORT_SYMBOL vmlinux 0x927c6700 param_ops_long -EXPORT_SYMBOL vmlinux 0x92808ab8 snd_ctl_register_ioctl -EXPORT_SYMBOL vmlinux 0x9281967b uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x9286c7c1 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92ba7485 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x92c1d82b alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x92ce46b3 __napi_complete -EXPORT_SYMBOL vmlinux 0x92ec5d1b dispc_mgr_enable -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x92fc0d8f cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x930b300b dentry_open -EXPORT_SYMBOL vmlinux 0x9316e308 tegra_dfll_unregister -EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x9330cb9f sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9347fca9 dev_get_stats -EXPORT_SYMBOL vmlinux 0x934c9f16 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x937184dd netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937c3951 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x9393f14b dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x9395a05f get_mm_exe_file -EXPORT_SYMBOL vmlinux 0x93963a85 dss_feat_get_num_mgrs -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93dd54c2 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x93e2a9f1 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x93ebfa68 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x940855f6 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list -EXPORT_SYMBOL vmlinux 0x940c4b1b dev_printk -EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x941394c9 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x941f7fa9 pci_bus_type -EXPORT_SYMBOL vmlinux 0x9433ab59 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x943d2c71 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x943edd3a ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x94418a8e tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x946efbfa __wait_on_bit -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x949f1a78 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x94a4f5da ip_options_compile -EXPORT_SYMBOL vmlinux 0x94b2590f vme_free_consistent -EXPORT_SYMBOL vmlinux 0x94c944df dcache_readdir -EXPORT_SYMBOL vmlinux 0x94d35086 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x94d3da68 rtc_lock -EXPORT_SYMBOL vmlinux 0x94e8883f f_setown -EXPORT_SYMBOL vmlinux 0x94e8bf3e xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x94ff3fac nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x9521b09e of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x95561dfc blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x95564289 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x95622f41 down_timeout -EXPORT_SYMBOL vmlinux 0x956e9f62 textsearch_destroy -EXPORT_SYMBOL vmlinux 0x9596c23c dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x9599efec dev_mc_del -EXPORT_SYMBOL vmlinux 0x95b2fa0c mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x95b42b47 omap_dss_get_next_device -EXPORT_SYMBOL vmlinux 0x95cab154 get_tz_trend -EXPORT_SYMBOL vmlinux 0x95cc4596 security_inode_readlink -EXPORT_SYMBOL vmlinux 0x95d47993 register_sound_mixer -EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 -EXPORT_SYMBOL vmlinux 0x95e65e4b dev_mc_add -EXPORT_SYMBOL vmlinux 0x95eca7fb thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x95f348b6 default_file_splice_read -EXPORT_SYMBOL vmlinux 0x95f420fc blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x9623f72f xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x9629cf83 abort_creds -EXPORT_SYMBOL vmlinux 0x9632fe82 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x963d2880 tty_throttle -EXPORT_SYMBOL vmlinux 0x96496ef1 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x965518e1 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x965aacdb genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x967da80b scsi_unregister -EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x9691ac59 omap_dss_get_overlay -EXPORT_SYMBOL vmlinux 0x969c08ef setup_new_exec -EXPORT_SYMBOL vmlinux 0x96a1f438 posix_unblock_lock -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96cf356a blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x96d6d217 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x96dce98c resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x96f2f5a5 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x96fc5153 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x97086b90 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x971a2feb inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x97255bdf strlen -EXPORT_SYMBOL vmlinux 0x9727699d iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0x972a4b92 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x972b1491 cfb_imageblit -EXPORT_SYMBOL vmlinux 0x974121cd bio_copy_kern -EXPORT_SYMBOL vmlinux 0x974318bc truncate_setsize -EXPORT_SYMBOL vmlinux 0x974f4cac nf_log_packet -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x975bab1b tcp_shutdown -EXPORT_SYMBOL vmlinux 0x976e700f down_trylock -EXPORT_SYMBOL vmlinux 0x9793c93a dispc_mgr_setup -EXPORT_SYMBOL vmlinux 0x9798d176 snd_pcm_kernel_ioctl -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x979f0743 param_set_ullong -EXPORT_SYMBOL vmlinux 0x97cf8677 tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0x97ddf613 sk_net_capable -EXPORT_SYMBOL vmlinux 0x97f718f8 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x97f904de jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x98037418 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x9804719f max8998_read_reg -EXPORT_SYMBOL vmlinux 0x98116c79 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint -EXPORT_SYMBOL vmlinux 0x984d9d01 snd_pcm_period_elapsed -EXPORT_SYMBOL vmlinux 0x984ed34d kmap_atomic -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x9872db86 netif_skb_features -EXPORT_SYMBOL vmlinux 0x9875a46a gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset -EXPORT_SYMBOL vmlinux 0x988e47cb ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x988f18f9 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x98c0fab1 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x98c90ee7 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x98ccefd3 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x98e67b46 md_finish_reshape -EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x98f0ced1 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x98f4ba98 param_set_byte -EXPORT_SYMBOL vmlinux 0x9921fc74 init_buffer -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x994f0632 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x9950980e dev_change_carrier -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x996c4d30 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x99878cde napi_complete_done -EXPORT_SYMBOL vmlinux 0x9989164a tty_check_change -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99aa79bb snd_info_free_entry -EXPORT_SYMBOL vmlinux 0x99b32f21 inet6_protos -EXPORT_SYMBOL vmlinux 0x99b4508e snd_pcm_suspend -EXPORT_SYMBOL vmlinux 0x99bb8806 memmove -EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99ce9fd7 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x99d2f243 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x99f43be2 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x99f58330 lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a3246f9 vme_register_driver -EXPORT_SYMBOL vmlinux 0x9a487084 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x9a4b510f __sb_start_write -EXPORT_SYMBOL vmlinux 0x9a5e8896 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x9a623142 ida_get_new_above -EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range -EXPORT_SYMBOL vmlinux 0x9a9308d5 pps_register_source -EXPORT_SYMBOL vmlinux 0x9ad5974b __dst_free -EXPORT_SYMBOL vmlinux 0x9ae0e595 pagecache_write_end -EXPORT_SYMBOL vmlinux 0x9ae70a81 follow_up -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9b11bb40 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b446cfc netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x9b46133b down_write -EXPORT_SYMBOL vmlinux 0x9b4c6f15 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b746872 phy_init_eee -EXPORT_SYMBOL vmlinux 0x9b79e97a inet_csk_accept -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bacad22 fd_install -EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put -EXPORT_SYMBOL vmlinux 0x9bbfdc2a inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x9bcaf348 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x9bce482f __release_region -EXPORT_SYMBOL vmlinux 0x9be5bb4b do_splice_direct -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9bfaf77a __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x9c0bd51f _raw_spin_lock -EXPORT_SYMBOL vmlinux 0x9c3a764e inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0x9c3e4ae9 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x9c485678 elv_rb_add -EXPORT_SYMBOL vmlinux 0x9c553781 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x9c6631f0 page_put_link -EXPORT_SYMBOL vmlinux 0x9c7535d6 serio_bus -EXPORT_SYMBOL vmlinux 0x9c79323a truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x9c7f0db3 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0x9c9ec2a0 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x9ca07ed0 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cba3c37 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x9cc3b2cf snd_device_new -EXPORT_SYMBOL vmlinux 0x9ccdd907 lwtunnel_output -EXPORT_SYMBOL vmlinux 0x9cd58d5b poll_freewait -EXPORT_SYMBOL vmlinux 0x9cf1f7b4 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x9cfcae3f pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d2fb3b0 nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x9d360bd5 clear_inode -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d3c6070 mdiobus_free -EXPORT_SYMBOL vmlinux 0x9d4e65bc serio_reconnect -EXPORT_SYMBOL vmlinux 0x9d50d0d9 single_open -EXPORT_SYMBOL vmlinux 0x9d63d9a7 devm_ioremap -EXPORT_SYMBOL vmlinux 0x9d669763 memcpy -EXPORT_SYMBOL vmlinux 0x9d96151f _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL vmlinux 0x9db4356f fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x9dc086ad snd_ctl_make_virtual_master -EXPORT_SYMBOL vmlinux 0x9dce7606 __frontswap_store -EXPORT_SYMBOL vmlinux 0x9debaeaf kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x9df2d967 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9dfe9cb9 __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e1ee228 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x9e22097a fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x9e2cbc4a dma_release_from_coherent -EXPORT_SYMBOL vmlinux 0x9e37f62f generic_setxattr -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e672ff6 scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x9e6764c9 mount_subtree -EXPORT_SYMBOL vmlinux 0x9e6cac91 path_noexec -EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL vmlinux 0x9e75f242 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e9f9ae2 __serio_register_port -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9eaca857 xfrm_input -EXPORT_SYMBOL vmlinux 0x9eb634be adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x9eb6ee10 tcp_disconnect -EXPORT_SYMBOL vmlinux 0x9eb936eb scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x9ebbdaac dst_init -EXPORT_SYMBOL vmlinux 0x9ed8fd63 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x9ef93e52 qdisc_list_del -EXPORT_SYMBOL vmlinux 0x9efee630 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0x9f2adc65 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x9f2b5a8d of_root -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f4c9fd3 inode_init_owner -EXPORT_SYMBOL vmlinux 0x9f4e4abd sk_stop_timer -EXPORT_SYMBOL vmlinux 0x9f5a9cfb ata_print_version -EXPORT_SYMBOL vmlinux 0x9f688fb6 ip6_xmit -EXPORT_SYMBOL vmlinux 0x9f75687c proc_create_data -EXPORT_SYMBOL vmlinux 0x9f823cea dispc_mgr_is_enabled -EXPORT_SYMBOL vmlinux 0x9f8a1f22 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x9f8d5ce4 blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fa1817f invalidate_partition -EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fdfc5e0 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0x9ffe42fd seq_path -EXPORT_SYMBOL vmlinux 0xa0044066 kset_register -EXPORT_SYMBOL vmlinux 0xa00eb15b ioremap_page -EXPORT_SYMBOL vmlinux 0xa01459a7 blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0xa0397105 omapdss_find_output_from_display -EXPORT_SYMBOL vmlinux 0xa03a79c2 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0xa03def0e vfs_link -EXPORT_SYMBOL vmlinux 0xa03f0985 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa0657aa8 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0xa065c15e ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0xa071f166 inet6_bind -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa0820170 d_lookup -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa092ad08 seq_release_private -EXPORT_SYMBOL vmlinux 0xa0aae687 imx_ssi_fiq_end -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0d2214c contig_page_data -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0f4a5e7 __skb_get_hash -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0fbc668 sock_init_data -EXPORT_SYMBOL vmlinux 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts -EXPORT_SYMBOL vmlinux 0xa1571a0d block_read_full_page -EXPORT_SYMBOL vmlinux 0xa157ada5 redraw_screen -EXPORT_SYMBOL vmlinux 0xa1684575 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0xa1793e7e tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xa1909f35 sk_stream_error -EXPORT_SYMBOL vmlinux 0xa192813b idr_for_each -EXPORT_SYMBOL vmlinux 0xa196960b skb_append -EXPORT_SYMBOL vmlinux 0xa1ae816d kthread_stop -EXPORT_SYMBOL vmlinux 0xa1b12abd get_unmapped_area -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1bb6976 vme_master_request -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1d55e90 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1f0ebea bit_waitqueue -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa20eefbe dev_activate -EXPORT_SYMBOL vmlinux 0xa2447e14 qdisc_reset -EXPORT_SYMBOL vmlinux 0xa269ba20 request_firmware -EXPORT_SYMBOL vmlinux 0xa26fd7f2 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa2923c35 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xa2a15710 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xa2c4e589 ata_link_printk -EXPORT_SYMBOL vmlinux 0xa2c7ad03 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xa2e4663d blk_init_queue -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa33009fd netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL vmlinux 0xa3465bf2 mmc_release_host -EXPORT_SYMBOL vmlinux 0xa35444e4 dispc_write_irqenable -EXPORT_SYMBOL vmlinux 0xa37949d5 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get -EXPORT_SYMBOL vmlinux 0xa381944f dql_reset -EXPORT_SYMBOL vmlinux 0xa384413f __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0xa391a5a1 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0xa39a123a fence_add_callback -EXPORT_SYMBOL vmlinux 0xa3b502cc elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0xa3c3341d xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xa3c7b7bf uart_register_driver -EXPORT_SYMBOL vmlinux 0xa3dde6b4 of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xa414882d add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xa4187d24 mfd_add_devices -EXPORT_SYMBOL vmlinux 0xa439edb8 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf -EXPORT_SYMBOL vmlinux 0xa45e05e3 free_user_ns -EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa471a04d kernel_accept -EXPORT_SYMBOL vmlinux 0xa4852e14 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xa4868311 ip_setsockopt -EXPORT_SYMBOL vmlinux 0xa48f5b09 omap_dma_set_global_params -EXPORT_SYMBOL vmlinux 0xa497049f vfs_rename -EXPORT_SYMBOL vmlinux 0xa4a4c646 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority -EXPORT_SYMBOL vmlinux 0xa4d12e2e dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0xa4df0da4 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xa4fb939c dm_unregister_target -EXPORT_SYMBOL vmlinux 0xa4fd19f8 __dquot_free_space -EXPORT_SYMBOL vmlinux 0xa50ee7fd tty_kref_put -EXPORT_SYMBOL vmlinux 0xa5280aa1 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xa53bed36 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa56ac56a inode_set_flags -EXPORT_SYMBOL vmlinux 0xa58fea9d mempool_destroy -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5a633b9 sg_last -EXPORT_SYMBOL vmlinux 0xa5cef8ad release_resource -EXPORT_SYMBOL vmlinux 0xa5d0cb55 elm_decode_bch_error_page -EXPORT_SYMBOL vmlinux 0xa5e9f34f ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xa5ee76f3 __invalidate_device -EXPORT_SYMBOL vmlinux 0xa5ef4d0d tcp_req_err -EXPORT_SYMBOL vmlinux 0xa5f91ea9 set_binfmt -EXPORT_SYMBOL vmlinux 0xa604e2b2 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL vmlinux 0xa61ccce5 msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0xa61e3648 path_put -EXPORT_SYMBOL vmlinux 0xa61e4362 omap_request_dma -EXPORT_SYMBOL vmlinux 0xa6247d7b iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xa638b92a tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember -EXPORT_SYMBOL vmlinux 0xa64d6d90 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0xa652c4ef __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0xa6685ef3 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xa66dcfef blk_peek_request -EXPORT_SYMBOL vmlinux 0xa66f11d7 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xa67374f0 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6921846 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa6a21d0b locks_mandatory_area -EXPORT_SYMBOL vmlinux 0xa6a22a9d pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xa6bab23d dqstats -EXPORT_SYMBOL vmlinux 0xa6e85d41 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xa6fd9f06 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa7085a5d xfrm_state_add -EXPORT_SYMBOL vmlinux 0xa734a3e9 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa74ab82e d_genocide -EXPORT_SYMBOL vmlinux 0xa75a937c kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xa766db9d skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xa77a8c25 dev_mc_init -EXPORT_SYMBOL vmlinux 0xa7800f19 kobject_del -EXPORT_SYMBOL vmlinux 0xa785f31c call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xa78c6278 dev_get_flags -EXPORT_SYMBOL vmlinux 0xa791693b phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0xa7ae38d9 search_binary_handler -EXPORT_SYMBOL vmlinux 0xa7aea945 input_release_device -EXPORT_SYMBOL vmlinux 0xa7e79c07 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xa7fcb087 sock_create -EXPORT_SYMBOL vmlinux 0xa8006b2b ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xa8139b55 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa87247ad __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xa882eaf4 empty_aops -EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8aa3175 omap_dss_get_output -EXPORT_SYMBOL vmlinux 0xa8b2083a cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0xa8b740a7 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xa8be9ca0 phy_resume -EXPORT_SYMBOL vmlinux 0xa8e2ef86 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xa8f70f84 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa9146f17 msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa9217872 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0xa958f3e8 security_path_link -EXPORT_SYMBOL vmlinux 0xa95d2726 nf_ct_attach -EXPORT_SYMBOL vmlinux 0xa961a947 i2c_release_client -EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request -EXPORT_SYMBOL vmlinux 0xa9658cd3 kobject_add -EXPORT_SYMBOL vmlinux 0xa96adbcf pci_release_region -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa97e15e7 scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0xa9b6d804 kernel_bind -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9d2f3f7 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xaa040d0c init_special_inode -EXPORT_SYMBOL vmlinux 0xaa342aaf i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0xaa3655e2 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xaa37cdbd phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa8e4a8b dquot_enable -EXPORT_SYMBOL vmlinux 0xaa92147f key_validate -EXPORT_SYMBOL vmlinux 0xaa933b9d jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xaab144c1 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad219e2 deactivate_super -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaae2e8d1 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0xaaefa673 omap_dss_find_device -EXPORT_SYMBOL vmlinux 0xaaf1b5f2 d_set_fallthru -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab081701 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xab2c5bfe xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0xab2d5e6b pci_iomap -EXPORT_SYMBOL vmlinux 0xab39a174 inode_change_ok -EXPORT_SYMBOL vmlinux 0xab39ab28 get_task_io_context -EXPORT_SYMBOL vmlinux 0xab419ea1 lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0xab485148 block_invalidatepage -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab694444 bsearch -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab6fbed8 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0xab7603e7 imx_ssi_fiq_start -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab8aba04 unregister_qdisc -EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xaba92027 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabe5aff7 clear_nlink -EXPORT_SYMBOL vmlinux 0xabefab3c generic_file_open -EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac2a9812 md_cluster_ops -EXPORT_SYMBOL vmlinux 0xac390091 dev_base_lock -EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear -EXPORT_SYMBOL vmlinux 0xac3a2c3a sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL vmlinux 0xac48ac97 tegra_powergate_remove_clamping -EXPORT_SYMBOL vmlinux 0xac55c5db jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xac6a3d66 set_groups -EXPORT_SYMBOL vmlinux 0xac933926 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xac969751 remove_proc_entry -EXPORT_SYMBOL vmlinux 0xac9f1656 ps2_begin_command -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd12f23 nvm_register_mgr -EXPORT_SYMBOL vmlinux 0xacd552c7 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xace0d1c3 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xace2851e dcb_setapp -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad05438e neigh_parms_release -EXPORT_SYMBOL vmlinux 0xad0c53fb pps_unregister_source -EXPORT_SYMBOL vmlinux 0xad0d808f neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xad2af3d3 vme_register_bridge -EXPORT_SYMBOL vmlinux 0xad2d0b5a skb_copy_bits -EXPORT_SYMBOL vmlinux 0xad3b5e8c tcp_v4_connect -EXPORT_SYMBOL vmlinux 0xad5f9eb7 omapdss_find_mgr_from_display -EXPORT_SYMBOL vmlinux 0xad715b31 nand_bch_calculate_ecc -EXPORT_SYMBOL vmlinux 0xad7c7cd2 vfs_getattr -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad8c0f3a mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0xad8c4ce2 netdev_emerg -EXPORT_SYMBOL vmlinux 0xad9b55ef d_instantiate -EXPORT_SYMBOL vmlinux 0xadafef0e skb_tx_error -EXPORT_SYMBOL vmlinux 0xadd96ca9 mdio_bus_type -EXPORT_SYMBOL vmlinux 0xade23f7a tcf_hash_search -EXPORT_SYMBOL vmlinux 0xade83bdc dump_skip -EXPORT_SYMBOL vmlinux 0xade88e76 snd_malloc_pages -EXPORT_SYMBOL vmlinux 0xadf42bd5 __request_region -EXPORT_SYMBOL vmlinux 0xadf67998 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae084607 scsi_device_resume -EXPORT_SYMBOL vmlinux 0xae3544f0 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xae4141af md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup -EXPORT_SYMBOL vmlinux 0xaebbcf11 d_tmpfile -EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0xaef8f175 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xaf0af921 sync_blockdev -EXPORT_SYMBOL vmlinux 0xaf2cf437 uart_suspend_port -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality -EXPORT_SYMBOL vmlinux 0xaf600e11 i2c_transfer -EXPORT_SYMBOL vmlinux 0xaf6a62f2 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xaf7bd1e5 bioset_create -EXPORT_SYMBOL vmlinux 0xaf83fbcc get_acl -EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 -EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev -EXPORT_SYMBOL vmlinux 0xaf8c661b dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0xafd3cbb0 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0xafd41f21 generic_file_llseek -EXPORT_SYMBOL vmlinux 0xafe0350c pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xaff13c8a dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xaffdf6e5 vfs_llseek -EXPORT_SYMBOL vmlinux 0xb013d66c clocksource_unregister -EXPORT_SYMBOL vmlinux 0xb04cf0fe lg_local_unlock -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb066b530 iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0xb07ec4d3 elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xb083e003 seq_putc -EXPORT_SYMBOL vmlinux 0xb0996a8a dget_parent -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0a6ec3d sync_inode -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0c468f9 nf_setsockopt -EXPORT_SYMBOL vmlinux 0xb0cc1d61 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb13bcb6a dma_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0xb14d6a7e blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb16ff88b md_write_end -EXPORT_SYMBOL vmlinux 0xb194c3c3 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1d7ad49 pci_read_vpd -EXPORT_SYMBOL vmlinux 0xb1d9aabd lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0xb1ff736f generic_ro_fops -EXPORT_SYMBOL vmlinux 0xb2019b81 dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0xb207960c complete_request_key -EXPORT_SYMBOL vmlinux 0xb219ba4d skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xb22f8bbf bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xb233b5e4 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xb23a10b7 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xb2433a86 dev_driver_string -EXPORT_SYMBOL vmlinux 0xb245054b pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xb2520f28 xfrm_lookup -EXPORT_SYMBOL vmlinux 0xb2582a77 shdma_init -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb26a6ff1 __inode_permission -EXPORT_SYMBOL vmlinux 0xb282422b mntput -EXPORT_SYMBOL vmlinux 0xb29cdf03 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on -EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL vmlinux 0xb2ec3e21 pci_enable_msix -EXPORT_SYMBOL vmlinux 0xb31907a2 flush_kernel_dcache_page -EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xb3301ed6 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xb338157e mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xb344418d vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xb36164de pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xb367c984 mxc_set_irq_fiq -EXPORT_SYMBOL vmlinux 0xb3862db3 mntget -EXPORT_SYMBOL vmlinux 0xb3912858 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xb3b28a9d con_is_bound -EXPORT_SYMBOL vmlinux 0xb3b84a3b vfs_create -EXPORT_SYMBOL vmlinux 0xb3bbf95a tcp_init_sock -EXPORT_SYMBOL vmlinux 0xb3c72ed9 snd_ctl_add -EXPORT_SYMBOL vmlinux 0xb3c78ded param_set_long -EXPORT_SYMBOL vmlinux 0xb3cf811e writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d4eb05 dss_mgr_disable -EXPORT_SYMBOL vmlinux 0xb3d82d69 bdi_register_dev -EXPORT_SYMBOL vmlinux 0xb3e7979b open_check_o_direct -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb4159aa7 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0xb42368c8 snd_card_file_remove -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4245ee9 scsi_target_resume -EXPORT_SYMBOL vmlinux 0xb4390f9a mcount -EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem -EXPORT_SYMBOL vmlinux 0xb4664989 wake_up_process -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb47e4d4d locks_init_lock -EXPORT_SYMBOL vmlinux 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL vmlinux 0xb4d1fce7 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xb4e43666 dev_change_flags -EXPORT_SYMBOL vmlinux 0xb4ec2916 cap_mmap_file -EXPORT_SYMBOL vmlinux 0xb4fc9e48 bio_init -EXPORT_SYMBOL vmlinux 0xb506b39d phy_detach -EXPORT_SYMBOL vmlinux 0xb513cc46 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0xb5198b77 _raw_read_lock -EXPORT_SYMBOL vmlinux 0xb5466a9c vme_irq_generate -EXPORT_SYMBOL vmlinux 0xb5592c38 lock_sock_nested -EXPORT_SYMBOL vmlinux 0xb5684e29 idr_find_slowpath -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb57ebf21 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5c00014 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0xb5c66b8f dqput -EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free -EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit -EXPORT_SYMBOL vmlinux 0xb5de3573 snd_ctl_rename_id -EXPORT_SYMBOL vmlinux 0xb5df6221 inet_accept -EXPORT_SYMBOL vmlinux 0xb5e548be gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0xb5e99233 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0xb5ef70f1 sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xb5f0f233 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xb60d7db4 seq_lseek -EXPORT_SYMBOL vmlinux 0xb61f713c devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xb65e8cd8 unregister_nls -EXPORT_SYMBOL vmlinux 0xb65fcff0 vga_get -EXPORT_SYMBOL vmlinux 0xb675c645 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69830d8 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6d3daf1 qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xb6f051a4 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xb6f78efb gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0xb6fc3d0e pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xb6fe8b99 dev_open -EXPORT_SYMBOL vmlinux 0xb700d57a bdi_register -EXPORT_SYMBOL vmlinux 0xb70483d8 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xb706610d try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xb71bb443 xfrm_init_state -EXPORT_SYMBOL vmlinux 0xb71e457f always_delete_dentry -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb769d1d8 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb7823e2f dispc_ovl_setup -EXPORT_SYMBOL vmlinux 0xb78c55b8 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0xb79a2fb0 start_tty -EXPORT_SYMBOL vmlinux 0xb79c3787 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xb79e2561 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0xb7aff3a9 new_inode -EXPORT_SYMBOL vmlinux 0xb7ba76c7 __aeabi_unwind_cpp_pr2 -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7e5cb74 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xb81960ca snprintf -EXPORT_SYMBOL vmlinux 0xb81a7423 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xb81c9d8d sound_class -EXPORT_SYMBOL vmlinux 0xb81ce4ed simple_lookup -EXPORT_SYMBOL vmlinux 0xb8658e23 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb87ee772 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xb8a1fa00 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0xb8cf5bc2 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xb9117686 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xb91b75e3 blk_make_request -EXPORT_SYMBOL vmlinux 0xb9590657 pci_dev_driver -EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io -EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL vmlinux 0xb99fcc8d pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma -EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 -EXPORT_SYMBOL vmlinux 0xb9b299b4 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0xb9b4dd87 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xb9b7ce00 generic_show_options -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9f794a8 of_iomap -EXPORT_SYMBOL vmlinux 0xb9fa2b77 qdisc_destroy -EXPORT_SYMBOL vmlinux 0xba179eae pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xba3630e2 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xba4268f7 devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4ae097 enable_fiq -EXPORT_SYMBOL vmlinux 0xba7d870a __mxc_cpu_type -EXPORT_SYMBOL vmlinux 0xba941b9c simple_rmdir -EXPORT_SYMBOL vmlinux 0xbaa7b46e devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xbab25a4d snd_timer_interrupt -EXPORT_SYMBOL vmlinux 0xbabc355c md_check_recovery -EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0xbadee6c3 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xbae96ff1 inet_frag_find -EXPORT_SYMBOL vmlinux 0xbaf110d8 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0xbaf60259 swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0xbafeee36 dispc_runtime_get -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb088cbd param_ops_uint -EXPORT_SYMBOL vmlinux 0xbb1069f6 blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0xbb231d1c udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xbb2aeef3 uart_get_divisor -EXPORT_SYMBOL vmlinux 0xbb30cee8 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb3ded47 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL vmlinux 0xbb43caa6 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0xbb454966 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xbb49e636 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xbb4c9200 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 -EXPORT_SYMBOL vmlinux 0xbb8dd5ac tegra_io_rail_power_on -EXPORT_SYMBOL vmlinux 0xbb927f56 serio_open -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbbb0d307 __serio_register_driver -EXPORT_SYMBOL vmlinux 0xbbb79be2 phy_device_remove -EXPORT_SYMBOL vmlinux 0xbbbbd701 pci_bus_put -EXPORT_SYMBOL vmlinux 0xbbc09fff snd_timer_notify -EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 -EXPORT_SYMBOL vmlinux 0xbc1f25ec snd_pcm_stop -EXPORT_SYMBOL vmlinux 0xbc24671c param_get_string -EXPORT_SYMBOL vmlinux 0xbc50b2ab md_done_sync -EXPORT_SYMBOL vmlinux 0xbc6329b0 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xbc8d6470 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xbcb8780a kernel_getpeername -EXPORT_SYMBOL vmlinux 0xbcb96eab devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcd5cbcf proc_symlink -EXPORT_SYMBOL vmlinux 0xbce540b9 ata_port_printk -EXPORT_SYMBOL vmlinux 0xbd041cab skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xbd0739f7 i2c_register_driver -EXPORT_SYMBOL vmlinux 0xbd156ca0 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xbd17c6de gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xbd66d584 __bread_gfp -EXPORT_SYMBOL vmlinux 0xbd740dbf md_write_start -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbd982453 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xbd9cd076 ip_do_fragment -EXPORT_SYMBOL vmlinux 0xbda3c3e0 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xbdb486f5 d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0xbdbaa7e9 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xbdd4d936 of_translate_address -EXPORT_SYMBOL vmlinux 0xbdec4d08 fence_remove_callback -EXPORT_SYMBOL vmlinux 0xbdedb6b2 irq_stat -EXPORT_SYMBOL vmlinux 0xbdf5bd0a snd_pcm_lib_read -EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe1bc67a posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0xbe1c6b52 dev_alert -EXPORT_SYMBOL vmlinux 0xbe1d6657 seq_release -EXPORT_SYMBOL vmlinux 0xbe1f0ffd ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xbe50156a devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xbe55b331 snd_ctl_replace -EXPORT_SYMBOL vmlinux 0xbe63ee40 request_resource -EXPORT_SYMBOL vmlinux 0xbe68021d freeze_super -EXPORT_SYMBOL vmlinux 0xbe7545df kobject_init -EXPORT_SYMBOL vmlinux 0xbe83d081 register_key_type -EXPORT_SYMBOL vmlinux 0xbe8860a8 dispc_mgr_go_busy -EXPORT_SYMBOL vmlinux 0xbe8fb90c dispc_mgr_get_framedone_irq -EXPORT_SYMBOL vmlinux 0xbe9b292e of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0xbe9cb01c get_super -EXPORT_SYMBOL vmlinux 0xbec7dae6 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf210558 lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0xbf285272 vme_dma_request -EXPORT_SYMBOL vmlinux 0xbf66c529 __destroy_inode -EXPORT_SYMBOL vmlinux 0xbf6da219 make_kgid -EXPORT_SYMBOL vmlinux 0xbf75ea6c tegra114_clock_tune_cpu_trimmers_low -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf90cd05 ps2_init -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfad3f8c skb_ensure_writable -EXPORT_SYMBOL vmlinux 0xbfb0f9d9 clkdev_alloc -EXPORT_SYMBOL vmlinux 0xbfbc4fd4 snd_timer_resolution -EXPORT_SYMBOL vmlinux 0xbfbf6372 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfd5f87f netlink_broadcast -EXPORT_SYMBOL vmlinux 0xbfd9d802 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xbfe19c78 dquot_get_state -EXPORT_SYMBOL vmlinux 0xbfe86653 dm_put_table_device -EXPORT_SYMBOL vmlinux 0xbfed28a3 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc0056be5 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xc01da140 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0xc04d9ab9 blk_register_region -EXPORT_SYMBOL vmlinux 0xc05119fe sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xc05856d7 uart_add_one_port -EXPORT_SYMBOL vmlinux 0xc05f898d snd_card_set_id -EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc08b3dc6 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xc092c5ba __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode -EXPORT_SYMBOL vmlinux 0xc0a7cbe5 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc -EXPORT_SYMBOL vmlinux 0xc0ac1d01 __vfs_write -EXPORT_SYMBOL vmlinux 0xc0b41b46 elv_add_request -EXPORT_SYMBOL vmlinux 0xc0c701e6 snd_card_file_add -EXPORT_SYMBOL vmlinux 0xc0cf95f9 omap_vrfb_request_ctx -EXPORT_SYMBOL vmlinux 0xc0d0dc57 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0xc0e330ed d_path -EXPORT_SYMBOL vmlinux 0xc0e79c8e napi_gro_flush -EXPORT_SYMBOL vmlinux 0xc1056c7d tty_unregister_device -EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten -EXPORT_SYMBOL vmlinux 0xc121c78b posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0xc12cfa0d inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xc156daee scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xc1677a21 param_get_ushort -EXPORT_SYMBOL vmlinux 0xc18dc13a inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0xc1a45b00 of_phy_connect -EXPORT_SYMBOL vmlinux 0xc1a840c7 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1daf86f sock_wfree -EXPORT_SYMBOL vmlinux 0xc1e25542 set_device_ro -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1e74e3d pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xc1ea42c7 snd_mixer_oss_notify_callback -EXPORT_SYMBOL vmlinux 0xc1f12ee5 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xc1f3c1ff __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xc1fa6a0a snd_register_device -EXPORT_SYMBOL vmlinux 0xc20a3261 omapdss_output_unset_device -EXPORT_SYMBOL vmlinux 0xc22d62e2 security_path_mkdir -EXPORT_SYMBOL vmlinux 0xc23cf1ae vmap -EXPORT_SYMBOL vmlinux 0xc23fedc9 i2c_del_driver -EXPORT_SYMBOL vmlinux 0xc258fb4b netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xc267a05c bio_put -EXPORT_SYMBOL vmlinux 0xc2770608 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0xc2899ac8 input_inject_event -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xc2aec364 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xc2bccad8 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xc2d19759 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc -EXPORT_SYMBOL vmlinux 0xc2dc9071 bdget -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2ed3e62 __seq_open_private -EXPORT_SYMBOL vmlinux 0xc30edf37 tcp_ioctl -EXPORT_SYMBOL vmlinux 0xc31753c3 tegra_powergate_power_off -EXPORT_SYMBOL vmlinux 0xc318c9cb blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xc3216635 d_alloc_name -EXPORT_SYMBOL vmlinux 0xc32a97e5 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xc33294df pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xc348022c netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xc3543b68 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xc359fb65 abort -EXPORT_SYMBOL vmlinux 0xc35cf89c __tcf_hash_release -EXPORT_SYMBOL vmlinux 0xc373589c nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xc3996936 dquot_commit -EXPORT_SYMBOL vmlinux 0xc39af50c pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3f3f670 ip_defrag -EXPORT_SYMBOL vmlinux 0xc3fb7391 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0xc403b55f add_random_ready_callback -EXPORT_SYMBOL vmlinux 0xc4044579 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0xc4052bc6 release_sock -EXPORT_SYMBOL vmlinux 0xc40946e9 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xc41f0516 node_states -EXPORT_SYMBOL vmlinux 0xc428f0df uart_remove_one_port -EXPORT_SYMBOL vmlinux 0xc43efdab jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0xc44a37cc mpage_writepages -EXPORT_SYMBOL vmlinux 0xc45078e7 dmam_pool_create -EXPORT_SYMBOL vmlinux 0xc465e8b9 snd_pcm_hw_constraint_step -EXPORT_SYMBOL vmlinux 0xc467b13d __quota_error -EXPORT_SYMBOL vmlinux 0xc48998cc jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc4c296aa netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xc4c54d47 mmc_flush_cache -EXPORT_SYMBOL vmlinux 0xc4cb4f8c jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xc4f450db scsi_register -EXPORT_SYMBOL vmlinux 0xc5202b04 ip_check_defrag -EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params -EXPORT_SYMBOL vmlinux 0xc52dc3f6 __scsi_add_device -EXPORT_SYMBOL vmlinux 0xc5320ce2 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0xc55a532e dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xc5718627 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59aecb3 sk_free -EXPORT_SYMBOL vmlinux 0xc5a4442e ppp_register_channel -EXPORT_SYMBOL vmlinux 0xc5a64848 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xc5bad692 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xc5c928aa msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xc5cb802c put_cmsg -EXPORT_SYMBOL vmlinux 0xc5f9763a neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc606ff00 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc63df81a of_mm_gpiochip_add -EXPORT_SYMBOL vmlinux 0xc65537d0 memremap -EXPORT_SYMBOL vmlinux 0xc6608821 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xc66fa6a6 ida_remove -EXPORT_SYMBOL vmlinux 0xc683297d fb_get_mode -EXPORT_SYMBOL vmlinux 0xc692f1f9 of_device_alloc -EXPORT_SYMBOL vmlinux 0xc6a3e864 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xc6c8bd78 led_blink_set -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d370e7 dquot_disable -EXPORT_SYMBOL vmlinux 0xc6de77b4 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xc6ee5828 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xc702d733 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xc7060972 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xc7063e5f tcp_sendpage -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc72f1914 file_path -EXPORT_SYMBOL vmlinux 0xc7416eba inode_init_always -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc7690ff3 qdisc_list_add -EXPORT_SYMBOL vmlinux 0xc76bb459 simple_statfs -EXPORT_SYMBOL vmlinux 0xc77b99ef security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc78f3f62 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL vmlinux 0xc79a134a phy_driver_register -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc79bd254 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xc7a06332 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7ab4086 seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xc7b0a738 dev_addr_add -EXPORT_SYMBOL vmlinux 0xc7b23df8 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xc7bcbc8d add_wait_queue -EXPORT_SYMBOL vmlinux 0xc7d1aa20 snd_timer_stop -EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc8026de7 security_path_chown -EXPORT_SYMBOL vmlinux 0xc81eb580 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xc824220c devm_gpiod_put -EXPORT_SYMBOL vmlinux 0xc82b8707 scsi_execute -EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc850a49c swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0xc862fc40 skb_make_writable -EXPORT_SYMBOL vmlinux 0xc8715cde vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc88ac3c8 kmem_cache_free -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc8a697d0 ab3100_event_register -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8dbaf45 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xc8fd844b devm_gpio_request -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc928ab8d tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xc93fda42 skb_push -EXPORT_SYMBOL vmlinux 0xc94a2830 genphy_resume -EXPORT_SYMBOL vmlinux 0xc95a6995 xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0xc95ae870 km_new_mapping -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc966af3f bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0xc966cfff dma_pool_create -EXPORT_SYMBOL vmlinux 0xc97c2246 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9aaf6a6 swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xc9b4928f __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0xc9b8c308 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xc9db3e63 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xc9e131b1 dst_alloc -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca235a92 sock_no_connect -EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xca4f75c5 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0xca7bf10e unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xca8c193f ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca9a6a01 snd_info_create_card_entry -EXPORT_SYMBOL vmlinux 0xca9d25fa jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0xcab419d7 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xcab97ccb inet_del_protocol -EXPORT_SYMBOL vmlinux 0xcac66b96 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xcacbd9ae phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0xcad7220b fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcafb90eb xfrm4_rcv -EXPORT_SYMBOL vmlinux 0xcafdf319 __frontswap_load -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb0e4e6e dev_trans_start -EXPORT_SYMBOL vmlinux 0xcb275aa3 bdevname -EXPORT_SYMBOL vmlinux 0xcb3de20b snd_pcm_set_sync -EXPORT_SYMBOL vmlinux 0xcb466063 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0xcb595ad9 pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0xcb96a708 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xcba7c303 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xcbaacdf4 tcf_register_action -EXPORT_SYMBOL vmlinux 0xcbac1c5a neigh_connected_output -EXPORT_SYMBOL vmlinux 0xcbb61b5e mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbd8c148 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xcbea8a71 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcbee6439 ida_simple_get -EXPORT_SYMBOL vmlinux 0xcc182b8f unlock_buffer -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc273426 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xcc44728e vga_tryget -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc55d28a dquot_scan_active -EXPORT_SYMBOL vmlinux 0xcc75056d generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xccb2f14a kobject_get -EXPORT_SYMBOL vmlinux 0xccbe62e1 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccde3332 unregister_shrinker -EXPORT_SYMBOL vmlinux 0xccf953e3 netdev_change_features -EXPORT_SYMBOL vmlinux 0xccfb06fc xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div -EXPORT_SYMBOL vmlinux 0xcd3a4f59 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0xcd464fcc mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0xcd4a5fb1 generic_writepages -EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr -EXPORT_SYMBOL vmlinux 0xcd6ac63f pci_set_master -EXPORT_SYMBOL vmlinux 0xcd6dee5b wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xcd790c21 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xcd9035af tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0xcda46fd0 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xcda7d07f tcp_make_synack -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc49e19 lockref_get -EXPORT_SYMBOL vmlinux 0xcde4a1dd do_splice_from -EXPORT_SYMBOL vmlinux 0xce14aaad snd_dma_alloc_pages -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce303161 snd_timer_close -EXPORT_SYMBOL vmlinux 0xce30f482 gen_pool_free -EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL vmlinux 0xce421b76 generic_file_fsync -EXPORT_SYMBOL vmlinux 0xce526a2b serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce62b552 vfs_write -EXPORT_SYMBOL vmlinux 0xce6a55b2 mmc_align_data_size -EXPORT_SYMBOL vmlinux 0xce93e3cb mount_single -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcec08a96 unlock_rename -EXPORT_SYMBOL vmlinux 0xcee03252 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xceeb0985 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0xceed7f85 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcefd8628 pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0xcf0a1823 sget -EXPORT_SYMBOL vmlinux 0xcf0a5f27 param_ops_int -EXPORT_SYMBOL vmlinux 0xcf0fed4e blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xcf169fea kset_unregister -EXPORT_SYMBOL vmlinux 0xcf226ea7 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xcf27b7ce dma_common_mmap -EXPORT_SYMBOL vmlinux 0xcf2c3028 make_bad_inode -EXPORT_SYMBOL vmlinux 0xcf72a300 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xcf7a6a9d param_ops_bool -EXPORT_SYMBOL vmlinux 0xcf88625f mempool_create_node -EXPORT_SYMBOL vmlinux 0xcfa020f1 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xcfe4d1ff cros_ec_check_result -EXPORT_SYMBOL vmlinux 0xcff6b676 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0xd01371b9 del_gendisk -EXPORT_SYMBOL vmlinux 0xd034105f lockref_put_return -EXPORT_SYMBOL vmlinux 0xd03ac0d1 pci_scan_slot -EXPORT_SYMBOL vmlinux 0xd03b1c46 bdi_init -EXPORT_SYMBOL vmlinux 0xd0637be6 try_to_release_page -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd0730544 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0xd079d3ed bio_endio -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a302f2 iterate_dir -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0b912ce pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd100acbd _raw_write_lock -EXPORT_SYMBOL vmlinux 0xd1067ba7 dispc_ovl_enabled -EXPORT_SYMBOL vmlinux 0xd1157735 release_and_free_resource -EXPORT_SYMBOL vmlinux 0xd12c1fe6 inet_frags_fini -EXPORT_SYMBOL vmlinux 0xd12db648 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xd1321b80 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0xd13627b4 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xd13ba0c7 neigh_seq_next -EXPORT_SYMBOL vmlinux 0xd13bdb7a xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xd145eb46 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL vmlinux 0xd15529d3 omap_dss_find_output_by_port_node -EXPORT_SYMBOL vmlinux 0xd17b45b0 pci_release_regions -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd192eff0 clear_wb_congested -EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xd1974bb2 phy_start_interrupts -EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xd1ce6d75 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1e79cae fence_wait_timeout -EXPORT_SYMBOL vmlinux 0xd1e970bc d_make_root -EXPORT_SYMBOL vmlinux 0xd22e5091 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0xd235d5ba snd_timer_open -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd29c6d2d blk_end_request -EXPORT_SYMBOL vmlinux 0xd2a92bbc set_nlink -EXPORT_SYMBOL vmlinux 0xd2a941d4 sg_init_table -EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class -EXPORT_SYMBOL vmlinux 0xd2c25e5f snd_component_add -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e6c327 snd_ctl_free_one -EXPORT_SYMBOL vmlinux 0xd2eacd0a swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0xd30753b0 dev_add_pack -EXPORT_SYMBOL vmlinux 0xd30bdfc9 i2c_master_recv -EXPORT_SYMBOL vmlinux 0xd31019ea km_is_alive -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd31cd1d2 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xd322b039 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0xd3477092 udp_seq_open -EXPORT_SYMBOL vmlinux 0xd3520b7c bio_integrity_endio -EXPORT_SYMBOL vmlinux 0xd3709393 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xd3765b79 dma_mmap_from_coherent -EXPORT_SYMBOL vmlinux 0xd39464e0 netlink_ack -EXPORT_SYMBOL vmlinux 0xd3a1ec7f of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xd3b41b62 make_kprojid -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3c98807 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xd3cc7863 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xd3cd2f35 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xd3dbfbc4 _find_first_zero_bit_le -EXPORT_SYMBOL vmlinux 0xd3e6f60d cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xd40b0e9d pci_scan_bus -EXPORT_SYMBOL vmlinux 0xd418e1c0 adjust_resource -EXPORT_SYMBOL vmlinux 0xd423c618 find_get_entry -EXPORT_SYMBOL vmlinux 0xd4252cda lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0xd42e5204 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0xd42f690e dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xd438be43 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xd43b937d blk_init_queue_node -EXPORT_SYMBOL vmlinux 0xd4579700 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xd45fc43c pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0xd4669fad complete -EXPORT_SYMBOL vmlinux 0xd46a1ed2 replace_mount_options -EXPORT_SYMBOL vmlinux 0xd47c555d follow_pfn -EXPORT_SYMBOL vmlinux 0xd47c7673 simple_setattr -EXPORT_SYMBOL vmlinux 0xd497dc54 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xd49c0bb5 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xd4a5c30d ilookup -EXPORT_SYMBOL vmlinux 0xd4aa92b2 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xd4dd467f vc_cons -EXPORT_SYMBOL vmlinux 0xd4f518d0 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xd52d7606 neigh_for_each -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd55cafba snd_card_register -EXPORT_SYMBOL vmlinux 0xd56c20df inet_release -EXPORT_SYMBOL vmlinux 0xd5820708 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd5d841d2 param_ops_short -EXPORT_SYMBOL vmlinux 0xd5e15de1 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xd5eba4d5 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xd61347c6 register_sysctl -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd61a552d ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xd61be4dd set_anon_super -EXPORT_SYMBOL vmlinux 0xd6264a95 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xd627480b strncat -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd6373f7c tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xd63c5346 blk_queue_bounce -EXPORT_SYMBOL vmlinux 0xd63f8a71 is_bad_inode -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd651ff32 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xd6581920 current_fs_time -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68af720 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xd6c3008b dm_kobject_release -EXPORT_SYMBOL vmlinux 0xd6e86823 napi_disable -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f5453f pci_alloc_dev -EXPORT_SYMBOL vmlinux 0xd6fbbb88 tty_devnum -EXPORT_SYMBOL vmlinux 0xd708164b snd_pcm_suspend_all -EXPORT_SYMBOL vmlinux 0xd70e226e pci_find_capability -EXPORT_SYMBOL vmlinux 0xd711f48c filemap_map_pages -EXPORT_SYMBOL vmlinux 0xd7235b48 mem_map -EXPORT_SYMBOL vmlinux 0xd723cae2 iget_failed -EXPORT_SYMBOL vmlinux 0xd734e8d2 reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0xd73ce9b6 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0xd73d73c6 request_key_async -EXPORT_SYMBOL vmlinux 0xd74289f9 __percpu_counter_add -EXPORT_SYMBOL vmlinux 0xd74a1f4e find_get_pages_contig -EXPORT_SYMBOL vmlinux 0xd7595ee8 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd7851d59 inet_add_protocol -EXPORT_SYMBOL vmlinux 0xd7945ab3 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write -EXPORT_SYMBOL vmlinux 0xd7ceefb2 nf_reinject -EXPORT_SYMBOL vmlinux 0xd7d7408d snd_timer_global_free -EXPORT_SYMBOL vmlinux 0xd7e1f371 blk_get_queue -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea128d tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f06f9c save_mount_options -EXPORT_SYMBOL vmlinux 0xd80447bd pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0xd81b3b0b snd_soc_alloc_ac97_codec -EXPORT_SYMBOL vmlinux 0xd8229da2 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0xd82a3675 input_register_handler -EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put -EXPORT_SYMBOL vmlinux 0xd8543c39 snd_timer_continue -EXPORT_SYMBOL vmlinux 0xd85cd67e __wake_up -EXPORT_SYMBOL vmlinux 0xd87bdf7f dss_mgr_disconnect -EXPORT_SYMBOL vmlinux 0xd87ccfe2 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xd88ccab9 fb_pan_display -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8ba6a6a dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8df357e snd_pcm_new_stream -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8e94ba8 import_iovec -EXPORT_SYMBOL vmlinux 0xd8f980bc neigh_lookup -EXPORT_SYMBOL vmlinux 0xd927f41b __ps2_command -EXPORT_SYMBOL vmlinux 0xd92c1388 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack -EXPORT_SYMBOL vmlinux 0xd955fbb1 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL vmlinux 0xd959b122 led_update_brightness -EXPORT_SYMBOL vmlinux 0xd95da950 bio_add_page -EXPORT_SYMBOL vmlinux 0xd97edd47 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0xd97ef76b vlan_vid_del -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9a372e6 pwmss_submodule_state_change -EXPORT_SYMBOL vmlinux 0xd9ad2a1c jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xd9c6f307 check_disk_size_change -EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9db281b neigh_destroy -EXPORT_SYMBOL vmlinux 0xd9e8868c pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xd9fc600d phy_device_free -EXPORT_SYMBOL vmlinux 0xda12bfc5 dss_mgr_set_lcd_config -EXPORT_SYMBOL vmlinux 0xda1f607e skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xda3198e8 __register_chrdev -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda48a413 vme_slot_num -EXPORT_SYMBOL vmlinux 0xda6ace22 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda7e09c4 loop_backing_file -EXPORT_SYMBOL vmlinux 0xda7f6fb6 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda97ad62 snd_seq_root -EXPORT_SYMBOL vmlinux 0xdaa19ca4 neigh_table_clear -EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages -EXPORT_SYMBOL vmlinux 0xdaafc807 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xdabfd019 bioset_integrity_free -EXPORT_SYMBOL vmlinux 0xdac1526a netdev_alert -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdace0de5 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw -EXPORT_SYMBOL vmlinux 0xdae9d7cd inet_addr_type -EXPORT_SYMBOL vmlinux 0xdaf57860 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0xdaf58465 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xdb111480 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xdb19c08f vfs_read -EXPORT_SYMBOL vmlinux 0xdb39fd19 __breadahead -EXPORT_SYMBOL vmlinux 0xdb3e5126 __secpath_destroy -EXPORT_SYMBOL vmlinux 0xdb4292e4 omap_set_dma_params -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6e1bfc mmc_get_card -EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7a1701 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xdb83d6dc __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xdb8ec6a5 cdrom_check_events -EXPORT_SYMBOL vmlinux 0xdb93b838 dispc_free_irq -EXPORT_SYMBOL vmlinux 0xdba1ed79 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0xdbaa16f5 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL vmlinux 0xdbb1741e scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xdbcca5e5 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xdbd3ad14 skb_find_text -EXPORT_SYMBOL vmlinux 0xdbda08cb kill_pid -EXPORT_SYMBOL vmlinux 0xdbefdbe0 skb_pull -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc2be03b tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xdc3f04e1 clk_register_clkdevs -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc59ba41 register_sound_special -EXPORT_SYMBOL vmlinux 0xdc5c6297 videomode_to_omap_video_timings -EXPORT_SYMBOL vmlinux 0xdc600bbb kill_block_super -EXPORT_SYMBOL vmlinux 0xdc80438f fb_set_suspend -EXPORT_SYMBOL vmlinux 0xdc815867 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xdc942659 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xdc9e8c01 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xdcaf58cc copy_to_iter -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcb46869 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xdcb58d05 xfrm_state_update -EXPORT_SYMBOL vmlinux 0xdcc07d52 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xdce6e9f9 generic_update_time -EXPORT_SYMBOL vmlinux 0xdced7d0b __module_get -EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd15d985 datagram_poll -EXPORT_SYMBOL vmlinux 0xdd1a89ce mmc_add_host -EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw -EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr -EXPORT_SYMBOL vmlinux 0xdd3916ac _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xdd727a85 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xdd7e1b04 pci_match_id -EXPORT_SYMBOL vmlinux 0xdd90c326 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0xddbdb170 dev_add_offload -EXPORT_SYMBOL vmlinux 0xddc5068f ps2_handle_response -EXPORT_SYMBOL vmlinux 0xddc57eae sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xddcf8699 fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0xddee357f snd_info_register -EXPORT_SYMBOL vmlinux 0xddf0c00d kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xde008489 keyring_clear -EXPORT_SYMBOL vmlinux 0xde00adcd fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0xde263916 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xde491649 padata_add_cpu -EXPORT_SYMBOL vmlinux 0xde71f392 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xde93552c __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde9914c3 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0xdea40cf6 mark_page_accessed -EXPORT_SYMBOL vmlinux 0xdeb40504 dma_supported -EXPORT_SYMBOL vmlinux 0xdec030e5 arm_clear_user -EXPORT_SYMBOL vmlinux 0xdec4e871 pci_restore_state -EXPORT_SYMBOL vmlinux 0xdeea158b skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xdef74f4d phy_find_first -EXPORT_SYMBOL vmlinux 0xdf000578 block_write_begin -EXPORT_SYMBOL vmlinux 0xdf0412ce ip_mc_join_group -EXPORT_SYMBOL vmlinux 0xdf27f0df register_netdevice -EXPORT_SYMBOL vmlinux 0xdf2b346f atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf3e4852 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xdf4da8f7 of_n_size_cells -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf55b224 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xdf5741a1 dquot_transfer -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf7471dc xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xdf8c2cb1 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf99bdc6 simple_dir_operations -EXPORT_SYMBOL vmlinux 0xdfab5790 misc_register -EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init -EXPORT_SYMBOL vmlinux 0xdfc71b2c cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type -EXPORT_SYMBOL vmlinux 0xdfe1215e mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xe013cd22 elevator_exit -EXPORT_SYMBOL vmlinux 0xe028e16f bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xe03c3eea vm_insert_pfn -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe05cdef0 sg_miter_skip -EXPORT_SYMBOL vmlinux 0xe05e94ea framebuffer_release -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe063ea8b iget_locked -EXPORT_SYMBOL vmlinux 0xe06cbad0 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe07746b7 netpoll_setup -EXPORT_SYMBOL vmlinux 0xe07d6809 omap_dss_put_device -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe094ef39 sg_next -EXPORT_SYMBOL vmlinux 0xe0aab0e3 bprm_change_interp -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0d79ed2 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe1223f3c grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xe127fb18 down_killable -EXPORT_SYMBOL vmlinux 0xe12a85e1 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe1456f60 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xe146b294 tty_free_termios -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe1a3ae5b jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xe1c2271b pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0xe1e6b844 sock_release -EXPORT_SYMBOL vmlinux 0xe1ead671 security_file_permission -EXPORT_SYMBOL vmlinux 0xe1f0ab3a _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xe1f46631 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe2111948 locks_remove_posix -EXPORT_SYMBOL vmlinux 0xe21b9015 scsi_device_put -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe267bb07 tty_do_resize -EXPORT_SYMBOL vmlinux 0xe2696545 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xe28c08b0 __i2c_transfer -EXPORT_SYMBOL vmlinux 0xe28db0cb pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0xe29164f7 kernel_connect -EXPORT_SYMBOL vmlinux 0xe29730ab snd_pcm_hw_param_first -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2adba0c pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0xe2ca58ca tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0xe2cc96f7 __do_once_done -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e4a361 of_get_next_parent -EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user -EXPORT_SYMBOL vmlinux 0xe2f37ca0 file_update_time -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup -EXPORT_SYMBOL vmlinux 0xe3158252 of_get_mac_address -EXPORT_SYMBOL vmlinux 0xe360369e register_gifconf -EXPORT_SYMBOL vmlinux 0xe36765a8 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xe37d10ae omap_dispc_unregister_isr -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3bc1f9a mmc_start_bkops -EXPORT_SYMBOL vmlinux 0xe3c1be07 snd_info_create_module_entry -EXPORT_SYMBOL vmlinux 0xe3c52497 of_cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3e9a596 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xe40261c8 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xe413be4a memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0xe41c2d8a inet_add_offload -EXPORT_SYMBOL vmlinux 0xe41d77be filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0xe43274bc proc_dointvec -EXPORT_SYMBOL vmlinux 0xe43cf282 pci_write_vpd -EXPORT_SYMBOL vmlinux 0xe43db144 phy_start -EXPORT_SYMBOL vmlinux 0xe4459546 tcf_hash_insert -EXPORT_SYMBOL vmlinux 0xe44c8d69 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0xe474e309 security_path_rename -EXPORT_SYMBOL vmlinux 0xe47d7cce finish_open -EXPORT_SYMBOL vmlinux 0xe489bb1e genphy_setup_forced -EXPORT_SYMBOL vmlinux 0xe4909a79 scm_fp_dup -EXPORT_SYMBOL vmlinux 0xe4aac4a4 blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid -EXPORT_SYMBOL vmlinux 0xe4df8829 dm_register_target -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe4e95c1a mmc_can_discard -EXPORT_SYMBOL vmlinux 0xe4f2d8ef km_policy_notify -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe5445af6 omap_get_dma_dst_pos -EXPORT_SYMBOL vmlinux 0xe544de21 register_filesystem -EXPORT_SYMBOL vmlinux 0xe546bae6 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xe552860e input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0xe557e281 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL vmlinux 0xe571d5db tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xe575f1e2 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe582f13f get_mem_type -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe58778e1 cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0xe58f2d28 vfs_symlink -EXPORT_SYMBOL vmlinux 0xe5a1553c tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0xe5bb18b8 blkdev_reread_part -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5cde2eb blk_end_request_all -EXPORT_SYMBOL vmlinux 0xe5debfbd blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5f8a681 dump_emit -EXPORT_SYMBOL vmlinux 0xe609af6d tty_port_hangup -EXPORT_SYMBOL vmlinux 0xe654e2a6 padata_stop -EXPORT_SYMBOL vmlinux 0xe66452ab dql_init -EXPORT_SYMBOL vmlinux 0xe6924853 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size -EXPORT_SYMBOL vmlinux 0xe697bd50 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe6984b2a simple_empty -EXPORT_SYMBOL vmlinux 0xe69d9f6c wait_iff_congested -EXPORT_SYMBOL vmlinux 0xe6a45518 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xe6cb4fee set_posix_acl -EXPORT_SYMBOL vmlinux 0xe6d96a00 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update -EXPORT_SYMBOL vmlinux 0xe6ee6e00 elv_rb_del -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe7075b97 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv -EXPORT_SYMBOL vmlinux 0xe73a806f read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xe74c37b3 phy_attach -EXPORT_SYMBOL vmlinux 0xe75900c1 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0xe75a34ad dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xe75efd91 mmc_free_host -EXPORT_SYMBOL vmlinux 0xe7617334 unregister_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0xe77165ba kmap_to_page -EXPORT_SYMBOL vmlinux 0xe7958d22 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7b1b1bd security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xe7b324d0 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7e15910 dispc_clear_irqstatus -EXPORT_SYMBOL vmlinux 0xe7f6809f get_cached_acl -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe8486e3a dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0xe84e9573 blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0xe8571157 pci_select_bars -EXPORT_SYMBOL vmlinux 0xe86dca99 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xe86fbe45 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0xe876bb29 param_set_ushort -EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss -EXPORT_SYMBOL vmlinux 0xe8981cff nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xe89ad353 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0xe89d5202 release_pages -EXPORT_SYMBOL vmlinux 0xe8a6a808 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8b70b00 udp_poll -EXPORT_SYMBOL vmlinux 0xe8b9a3d4 mx51_revision -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8cfce09 tegra114_clock_deassert_dfll_dvco_reset -EXPORT_SYMBOL vmlinux 0xe8d36584 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xe8e795d5 scsi_device_get -EXPORT_SYMBOL vmlinux 0xe8ebf804 bio_clone_fast -EXPORT_SYMBOL vmlinux 0xe8f3f49e tcp_filter -EXPORT_SYMBOL vmlinux 0xe90574ef dev_deactivate -EXPORT_SYMBOL vmlinux 0xe90d69e6 inet_register_protosw -EXPORT_SYMBOL vmlinux 0xe912da6b unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0xe960f6b4 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xe98d62f6 ns_capable -EXPORT_SYMBOL vmlinux 0xe99f7e74 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xe9a087d4 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0xe9ae88ed wireless_send_event -EXPORT_SYMBOL vmlinux 0xe9be808d lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xe9ccfcd3 ioremap_cache -EXPORT_SYMBOL vmlinux 0xe9d68853 nvm_get_blk -EXPORT_SYMBOL vmlinux 0xe9de82b9 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0xe9e38e9c iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xe9e9270d key_alloc -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea1818d5 tty_port_init -EXPORT_SYMBOL vmlinux 0xea1f5b88 samsung_rev -EXPORT_SYMBOL vmlinux 0xea37491b pci_platform_rom -EXPORT_SYMBOL vmlinux 0xea3dbef4 bitmap_close_sync -EXPORT_SYMBOL vmlinux 0xea44b726 skb_insert -EXPORT_SYMBOL vmlinux 0xea4a0060 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xea4a5b70 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xea633a0f shdma_cleanup -EXPORT_SYMBOL vmlinux 0xea67c36a bio_advance -EXPORT_SYMBOL vmlinux 0xea6b04b4 snd_pci_quirk_lookup -EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xeab6994a dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xeac15688 tegra_dfll_runtime_resume -EXPORT_SYMBOL vmlinux 0xeada35b9 pid_task -EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl -EXPORT_SYMBOL vmlinux 0xeb1300d6 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xeb159807 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0xeb1b120e omap_set_dma_write_mode -EXPORT_SYMBOL vmlinux 0xeb21fcaa fb_set_cmap -EXPORT_SYMBOL vmlinux 0xeb2adc2c scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xeb2ce7e0 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb3e85a3 unregister_console -EXPORT_SYMBOL vmlinux 0xeb51adf2 iput -EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xeb5b8d9c dev_set_mtu -EXPORT_SYMBOL vmlinux 0xeb6f6987 scsi_ioctl -EXPORT_SYMBOL vmlinux 0xeb75c111 update_devfreq -EXPORT_SYMBOL vmlinux 0xeb75e5c9 nand_bch_correct_data -EXPORT_SYMBOL vmlinux 0xeb89a3d4 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xeb8b64f5 skb_copy_expand -EXPORT_SYMBOL vmlinux 0xeb9eceff dma_alloc_from_coherent -EXPORT_SYMBOL vmlinux 0xeba75fd8 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0xebac61bd tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0xebc6cf38 __devm_release_region -EXPORT_SYMBOL vmlinux 0xebd18deb sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xebd68dc7 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xebda1b9c wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xebecacfc md_update_sb -EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high -EXPORT_SYMBOL vmlinux 0xec009505 poll_initwait -EXPORT_SYMBOL vmlinux 0xec10b80e genphy_update_link -EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit -EXPORT_SYMBOL vmlinux 0xec230b6d blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0xec40a4df vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xec413cbe __page_symlink -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec4f1e26 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0xec55d761 dmam_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0xec686535 mmc_remove_host -EXPORT_SYMBOL vmlinux 0xec6c6dc6 alloc_disk_node -EXPORT_SYMBOL vmlinux 0xec787917 file_remove_privs -EXPORT_SYMBOL vmlinux 0xec83ad9d free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xec8aa373 __inet_hash -EXPORT_SYMBOL vmlinux 0xecb6a422 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xecc94933 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xecce9bcf netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl -EXPORT_SYMBOL vmlinux 0xecf98c50 ip_getsockopt -EXPORT_SYMBOL vmlinux 0xecfe5c22 vfs_writef -EXPORT_SYMBOL vmlinux 0xed1240bf filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xed149bf2 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xed269465 __free_pages -EXPORT_SYMBOL vmlinux 0xed2dedc0 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0xed4df457 ata_dev_printk -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed62917d ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xed66a6bb add_disk -EXPORT_SYMBOL vmlinux 0xed6f0f78 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xed81f4f2 inetdev_by_index -EXPORT_SYMBOL vmlinux 0xed86d132 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xeda97396 from_kuid -EXPORT_SYMBOL vmlinux 0xedb0ed71 kthread_bind -EXPORT_SYMBOL vmlinux 0xedb159a2 omap_dss_get_overlay_manager -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc7f4ec dq_data_lock -EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 -EXPORT_SYMBOL vmlinux 0xeddd7522 generic_delete_inode -EXPORT_SYMBOL vmlinux 0xede2265b alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xede67d9e phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xedf0037d jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xedfa0539 input_set_abs_params -EXPORT_SYMBOL vmlinux 0xee114ffb pagevec_lookup -EXPORT_SYMBOL vmlinux 0xee115063 of_get_min_tck -EXPORT_SYMBOL vmlinux 0xee250b54 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xee2bc2d0 omapdss_is_initialized -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee3496c3 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0xee3d08a5 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xee5dae7b mmc_request_done -EXPORT_SYMBOL vmlinux 0xee651f37 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xee6bbb40 sock_create_lite -EXPORT_SYMBOL vmlinux 0xee70b9c8 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xee715ef8 lg_global_unlock -EXPORT_SYMBOL vmlinux 0xee7aefb9 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xee830a9a nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee9b708f crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xee9c3647 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xee9ec3b1 init_net -EXPORT_SYMBOL vmlinux 0xeea0cdf6 netif_device_detach -EXPORT_SYMBOL vmlinux 0xeea74485 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeed3635b proc_dostring -EXPORT_SYMBOL vmlinux 0xeedd0ccb kern_path_create -EXPORT_SYMBOL vmlinux 0xeedf5b51 ptp_clock_event -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xeef79a24 __blk_end_request -EXPORT_SYMBOL vmlinux 0xeef80138 noop_qdisc -EXPORT_SYMBOL vmlinux 0xeefad4b5 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL vmlinux 0xef0f3eb3 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0xef2fdc4f __percpu_counter_init -EXPORT_SYMBOL vmlinux 0xef370f97 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xef3973b3 sock_i_uid -EXPORT_SYMBOL vmlinux 0xef3b046d read_code -EXPORT_SYMBOL vmlinux 0xef465d5e of_get_address -EXPORT_SYMBOL vmlinux 0xef4fb948 bio_chain -EXPORT_SYMBOL vmlinux 0xef5dfc6c bdput -EXPORT_SYMBOL vmlinux 0xef7c0ede page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0xef7f9f15 scmd_printk -EXPORT_SYMBOL vmlinux 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL vmlinux 0xef88cc7c drop_super -EXPORT_SYMBOL vmlinux 0xefa71e3a page_follow_link_light -EXPORT_SYMBOL vmlinux 0xefbdd446 set_create_files_as -EXPORT_SYMBOL vmlinux 0xefcf3143 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefd6cf06 __aeabi_unwind_cpp_pr0 -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefe9f666 vme_irq_request -EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf00714c4 mmc_fixup_device -EXPORT_SYMBOL vmlinux 0xf047059f lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xf04b9980 tty_write_room -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf062d066 bdget_disk -EXPORT_SYMBOL vmlinux 0xf06c303c omap_video_timings_to_videomode -EXPORT_SYMBOL vmlinux 0xf07c30ee vga_client_register -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf0985645 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xf0988917 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0a8b0ac tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xf0abc223 kmap_high -EXPORT_SYMBOL vmlinux 0xf0c3f822 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xf0c4b3de twl6040_set_pll -EXPORT_SYMBOL vmlinux 0xf0c86ede dm_put_device -EXPORT_SYMBOL vmlinux 0xf0eab179 get_thermal_instance -EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf12318b5 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0xf12f4da3 of_get_next_available_child -EXPORT_SYMBOL vmlinux 0xf1403b40 dss_mgr_start_update -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf14a3e36 skb_store_bits -EXPORT_SYMBOL vmlinux 0xf15433bf blk_queue_split -EXPORT_SYMBOL vmlinux 0xf17e5a72 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xf192ed79 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xf193fbd2 tty_port_open -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19e9355 cpu_online_mask -EXPORT_SYMBOL vmlinux 0xf1a103b0 init_task -EXPORT_SYMBOL vmlinux 0xf1a2387e freezing_slow_path -EXPORT_SYMBOL vmlinux 0xf1a5b0fb bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xf1aa263e sg_miter_stop -EXPORT_SYMBOL vmlinux 0xf1b04363 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0xf1d2de7e __f_setown -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1dc30c4 phy_drivers_register -EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 -EXPORT_SYMBOL vmlinux 0xf1f26427 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xf20ae132 shdma_chan_remove -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf2186468 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0xf22ef2d6 blk_integrity_register -EXPORT_SYMBOL vmlinux 0xf22efb86 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xf233ca96 nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf244bac9 nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0xf24fadfc d_invalidate -EXPORT_SYMBOL vmlinux 0xf285486b ppp_unit_number -EXPORT_SYMBOL vmlinux 0xf287c1ce of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0xf28e7ff2 nvm_register -EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xf2a08962 swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2b4f31f blk_run_queue -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2ce86cd inet_recvmsg -EXPORT_SYMBOL vmlinux 0xf3044a9c of_device_is_compatible -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf3343409 snd_timer_pause -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf361e054 km_policy_expired -EXPORT_SYMBOL vmlinux 0xf36741b1 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xf36d63fd iterate_fd -EXPORT_SYMBOL vmlinux 0xf36f4519 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf3937772 con_copy_unimap -EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xf3bf2d1e tegra_fuse_readl -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3ea5f8d of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xf40019c0 tegra114_clock_tune_cpu_trimmers_init -EXPORT_SYMBOL vmlinux 0xf4039cfc led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0xf409f4ed nf_register_hook -EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xf453d27c cdrom_open -EXPORT_SYMBOL vmlinux 0xf463e05e of_node_get -EXPORT_SYMBOL vmlinux 0xf473ffaf down -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf477cc41 netdev_err -EXPORT_SYMBOL vmlinux 0xf49c0bbd zpool_register_driver -EXPORT_SYMBOL vmlinux 0xf4a7d793 generic_removexattr -EXPORT_SYMBOL vmlinux 0xf4a7fc6d omapdss_compat_init -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4d33e08 vc_resize -EXPORT_SYMBOL vmlinux 0xf4da472c rtnl_notify -EXPORT_SYMBOL vmlinux 0xf4dc8ace pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf5027aeb __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0xf50917fa snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL vmlinux 0xf50fe23d sock_kmalloc -EXPORT_SYMBOL vmlinux 0xf514050c iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xf51d80e9 sync_filesystem -EXPORT_SYMBOL vmlinux 0xf52c4831 snd_timer_global_register -EXPORT_SYMBOL vmlinux 0xf53ca38f gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf53e4788 scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0xf54c51a2 dma_pool_free -EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp -EXPORT_SYMBOL vmlinux 0xf5670e15 scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0xf56c798e tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0xf58adcd4 from_kgid_munged -EXPORT_SYMBOL vmlinux 0xf58e8f17 neigh_xmit -EXPORT_SYMBOL vmlinux 0xf5928d69 __getblk_gfp -EXPORT_SYMBOL vmlinux 0xf5bebf8a mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5e3f265 file_open_root -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf62ced06 serio_rescan -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf63b0733 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xf65a0e90 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6851d5f register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xf692c5c2 mpage_writepage -EXPORT_SYMBOL vmlinux 0xf69e5de2 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xf6a37965 d_prune_aliases -EXPORT_SYMBOL vmlinux 0xf6ab44f5 dev_addr_del -EXPORT_SYMBOL vmlinux 0xf6b0214f of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0xf6b5c93b mmc_cleanup_queue -EXPORT_SYMBOL vmlinux 0xf6b847ae phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6cebccd key_reject_and_link -EXPORT_SYMBOL vmlinux 0xf6d5e603 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f3cef6 omap_vrfb_setup -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf70bef57 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb -EXPORT_SYMBOL vmlinux 0xf71bb6eb find_inode_nowait -EXPORT_SYMBOL vmlinux 0xf72ad610 ps2_end_command -EXPORT_SYMBOL vmlinux 0xf73a276d pci_pme_active -EXPORT_SYMBOL vmlinux 0xf7477502 swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf76c531d iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xf777f1ae build_skb -EXPORT_SYMBOL vmlinux 0xf77f5cd9 mmc_put_card -EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod -EXPORT_SYMBOL vmlinux 0xf7921e98 input_unregister_handler -EXPORT_SYMBOL vmlinux 0xf798da4f key_invalidate -EXPORT_SYMBOL vmlinux 0xf7a922b4 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0xf7a9ef9b skb_checksum_help -EXPORT_SYMBOL vmlinux 0xf7aaeddc ida_init -EXPORT_SYMBOL vmlinux 0xf7adbb16 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xf7ba98e0 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xf7c8a599 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xf7dd55ed phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xf7e1cad0 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xf7ff87f2 generic_getxattr -EXPORT_SYMBOL vmlinux 0xf7ff9db4 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf81f6ab4 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xf823da10 vme_lm_request -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf83d9b27 page_address -EXPORT_SYMBOL vmlinux 0xf853bbca omap_vrfb_map_angle -EXPORT_SYMBOL vmlinux 0xf8591203 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xf872d3df scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xf87de133 tc6393xb_lcd_mode -EXPORT_SYMBOL vmlinux 0xf885ad67 invalidate_bdev -EXPORT_SYMBOL vmlinux 0xf8990e2a netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xf89bc12f vm_map_ram -EXPORT_SYMBOL vmlinux 0xf8aa55bc nand_calculate_ecc -EXPORT_SYMBOL vmlinux 0xf8ade395 cdev_del -EXPORT_SYMBOL vmlinux 0xf8b35b1c snd_card_free_when_closed -EXPORT_SYMBOL vmlinux 0xf8de718d tty_mutex -EXPORT_SYMBOL vmlinux 0xf8e0139c dss_mgr_connect -EXPORT_SYMBOL vmlinux 0xf8e8d0db tcp_sendmsg -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf9089426 fget -EXPORT_SYMBOL vmlinux 0xf909a9e4 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0xf933aa04 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run -EXPORT_SYMBOL vmlinux 0xf9427374 dispc_request_irq -EXPORT_SYMBOL vmlinux 0xf98e522a snd_jack_new -EXPORT_SYMBOL vmlinux 0xf993fd2d register_quota_format -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9c32f2d nf_log_unregister -EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf -EXPORT_SYMBOL vmlinux 0xf9e8f623 param_get_charp -EXPORT_SYMBOL vmlinux 0xf9f5f337 padata_free -EXPORT_SYMBOL vmlinux 0xfa0d174c abx500_remove_ops -EXPORT_SYMBOL vmlinux 0xfa21d488 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xfa2a765f xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xfa4b68fe of_find_node_by_type -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa613b20 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xfa6b6df4 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xfa83800d jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xfac44d7f security_path_rmdir -EXPORT_SYMBOL vmlinux 0xfac68eba arm_elf_read_implies_exec -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfac9a196 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xfacd2e14 pgprot_user -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfaee9a4a dput -EXPORT_SYMBOL vmlinux 0xfaf2bd0b param_get_long -EXPORT_SYMBOL vmlinux 0xfb025bd9 unlock_page -EXPORT_SYMBOL vmlinux 0xfb04ee27 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xfb4fddd1 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbb3a4ef i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xfbbc66d8 from_kuid_munged -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbd87199 drop_nlink -EXPORT_SYMBOL vmlinux 0xfbea3721 kfree_skb_list -EXPORT_SYMBOL vmlinux 0xfbecd554 d_delete -EXPORT_SYMBOL vmlinux 0xfbff6ef0 audit_log -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc10ee40 mdiobus_write -EXPORT_SYMBOL vmlinux 0xfc17b186 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0xfc1e647b tcf_hash_check -EXPORT_SYMBOL vmlinux 0xfc2af4a3 cdev_alloc -EXPORT_SYMBOL vmlinux 0xfc3908f5 fence_default_wait -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc649e64 amba_device_unregister -EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xfc74cf7a backlight_force_update -EXPORT_SYMBOL vmlinux 0xfc771a58 blk_run_queue_async -EXPORT_SYMBOL vmlinux 0xfc8f2283 mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0xfcb6b1db arm_dma_ops -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcd353d9 fddi_type_trans -EXPORT_SYMBOL vmlinux 0xfcd72f07 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0xfcda77e3 snd_ctl_unregister_ioctl -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf8798b mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd00a98c xfrm6_rcv -EXPORT_SYMBOL vmlinux 0xfd038cbf sk_wait_data -EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe -EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xfd5683b9 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0xfd71be24 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xfd8c5afc release_fiq -EXPORT_SYMBOL vmlinux 0xfd8e1a24 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfd9e64e3 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL vmlinux 0xfdc3e4fe devm_memunmap -EXPORT_SYMBOL vmlinux 0xfdcd3f99 dquot_quota_on -EXPORT_SYMBOL vmlinux 0xfdd59c47 skb_queue_purge -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe10ca0f scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xfe2569db inet6_ioctl -EXPORT_SYMBOL vmlinux 0xfe350191 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xfe40bf95 dss_feat_get_num_ovls -EXPORT_SYMBOL vmlinux 0xfe55568b scsi_report_opcode -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe5ea631 input_set_capability -EXPORT_SYMBOL vmlinux 0xfe628e63 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xfe6a6bdf page_cache_next_hole -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe9f4492 dquot_drop -EXPORT_SYMBOL vmlinux 0xfea3b6e6 __vfs_read -EXPORT_SYMBOL vmlinux 0xfebb6c83 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee18a22 nobh_writepage -EXPORT_SYMBOL vmlinux 0xfeea9c9d nand_scan_ident -EXPORT_SYMBOL vmlinux 0xff1714ff shdma_chan_probe -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff266941 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xff2b0b34 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xff335447 dev_disable_lro -EXPORT_SYMBOL vmlinux 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL vmlinux 0xff65c414 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xff67b37f __lshrdi3 -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff6e3a9b sock_create_kern -EXPORT_SYMBOL vmlinux 0xff7832ba dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xff8cbb1f idr_destroy -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffb1c082 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit -EXPORT_SYMBOL vmlinux 0xffc2e05e buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xffcd6807 dup_iter -EXPORT_SYMBOL vmlinux 0xffd2cf99 omap_dss_get_num_overlay_managers -EXPORT_SYMBOL vmlinux 0xffd59535 skb_queue_head -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xffd93122 insert_inode_locked -EXPORT_SYMBOL vmlinux 0xffdb82bc sg_free_table -EXPORT_SYMBOL vmlinux 0xffdb96d5 iget5_locked -EXPORT_SYMBOL vmlinux 0xffdd76e3 dump_align -EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xc1cfa7ee sha1_update_arm -EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xc6f13ac4 sha1_finup_arm -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x0c9c9740 __ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x0d8afbe9 ablk_decrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x1c92579f ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x3d182de4 ablk_init -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x591878ab ablk_set_key -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x7e4f4df6 ablk_exit -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xc384818d ablk_init_common -EXPORT_SYMBOL_GPL crypto/af_alg 0x24a742cf af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x2b360478 af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0x6bfaa20e af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x8269c294 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x9e54f579 af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0xa7e34e25 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xb6d6ea44 af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xc1a1ca4d af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xc2a70aa3 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xd954ef95 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0xf9ca278f af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x5cc91ad4 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x7d14fc56 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x9596f5a0 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x5e8aa129 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xd84024aa async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1de000e1 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6d116dab async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7a733777 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa427d437 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3e296d39 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xa22b5eb1 async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xa0474f2a blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x702c6e63 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xb76f5ff3 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xa5bff6e1 crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xc6f43d57 crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x597c7e9a cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x86b2fc65 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x87d0a238 cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x89b900ca cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x927821ec cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x9383ddad cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x9baa911b cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x9e5d9191 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xc0384aed cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xf9681fc6 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0xb583baac lrw_crypt -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x15989b3f shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0x1fdd1357 shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0x2aa9a6e9 mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0x5c7a182d shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0x68db8e53 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xa0d5699e mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xf6380a2f shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0xf83135bc mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3577fa14 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x7c023228 crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xc40b307b crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xe87d8afc crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x9cd1d56f serpent_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x7be620c8 twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0x58ecb667 xts_crypt -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xf5eb74af __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x2f883ed3 sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x18ae83c3 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x2ffb4354 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x3aefac82 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x770be0cd __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x01e0b915 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x10e2aed9 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1ce68afa __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2aa17326 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3733a5aa bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x38c07a24 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x49b00825 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5e29fb3c bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7ae33dc4 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x89e187a3 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9241d2f2 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x99b18106 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9ae977f1 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9ec6ba46 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa00e1281 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa7bf8f60 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaaeddb17 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb5b0777a bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc099b778 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd71a1076 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe3016b81 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf2aaad73 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf651a71f bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfcd18217 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2accd517 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4223a776 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x48614957 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9864a370 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd1c7a313 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd746be29 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0966ed66 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1fd9d202 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4af90561 btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x51ab0a33 btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6ff2063b btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x807807f4 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x80ba7587 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x86950fc3 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa0c962ce btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb94de350 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe12c9902 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x074ce9f1 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x09f36a7d btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0ea4e7a2 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x510c2276 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5c359bd8 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x63cd8a8d btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7b62623f btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8cbfc4d6 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9af3f38e btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe0d6b4a0 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xead1f8d7 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb12ba7b9 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xead0aeff qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x40c505fb btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x83fcd9a3 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0465aa28 qcom_cc_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ad28e9c clk_rcg_bypass_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f4159b0 clk_byte2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3b0b58e5 clk_regmap_mux_closest_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4e487b60 qcom_find_src_index -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x53f95e39 clk_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x612214bd clk_edp_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x649debc2 qcom_cc_really_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x669bd1fd qcom_find_freq -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x67ae803a clk_rcg_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x709d9cf0 clk_pll_configure_sr -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73964fc2 clk_dyn_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x77c457fa qcom_reset_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8515ef29 clk_is_enabled_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8c4dbdbe clk_branch_simple_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8d53d96e clk_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x90b53166 clk_pll_configure_sr_hpm_lp -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x948a106f clk_enable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x999e1e71 clk_branch2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x99d2c773 clk_rcg2_shared_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9e2e91a1 clk_rcg_bypass2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f6dd9ca clk_disable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaace56b1 clk_rcg_esc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc7994798 clk_branch_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb0c5248 clk_byte_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcd0a83c6 clk_rcg2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd25fd154 clk_rcg_lcc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd2ce2c2c devm_clk_register_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd9217c67 qcom_cc_map -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe703bcad clk_pll_vote_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf1f136dc clk_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf69c2f55 clk_pll_sr2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf93e315f clk_regmap_div_ops -EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x5e32e556 bL_cpufreq_unregister -EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0xf750efd2 bL_cpufreq_register -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa3bb64ee dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xafa47062 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc1a2e907 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd82453ec dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfb8c963d dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x189d5922 hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x5b838ea0 hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xe4910e6d hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0dd96f25 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x148504dd edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x22c90d67 edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2d1d72f2 edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x36b400b8 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x38c00bb7 edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x398ee283 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x43c7bcaf edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x638c998c find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7d6e5de5 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x85117975 edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x888bede7 edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x93e0e40c edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x93e62f57 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xaf8a3439 edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb30e7b4b edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc86f8aae edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xccadc2aa edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdd43c1d6 edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdf983894 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe2b40ddd edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe82d66ef edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe9e2bbd8 edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0xe342fbf5 get_scpi_ops -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x25037972 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x278f4e36 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2d529325 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x571bd604 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc285ae13 fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd243e23c fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x17b0ea78 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xb56b32bf __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0x5cc1a32c dw_hdmi_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0x6f407d05 dw_hdmi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0xce27012a dw_hdmi_audio_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0xd8fe547b dw_hdmi_audio_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0c272162 drm_gem_cma_prime_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2231d0dd drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x33cbbebc drm_gem_cma_prime_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3e643cfe drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5f3cd996 drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x703a87d0 drm_gem_cma_prime_vunmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x71fc2957 drm_gem_cma_prime_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x84716dea drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x970dfad0 drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9f76e893 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa78be962 drm_gem_cma_describe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb2a45eeb of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbbac77de drm_gem_cma_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbc2251aa drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdd0fc76b drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdd76f1e8 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdf006213 drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe111ca9a drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe2ed7bb9 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1148b623 drm_fbdev_cma_fini -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x34456159 drm_fb_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9cfd72f8 drm_fbdev_cma_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb2c912af drm_fbdev_cma_hotplug_event -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbf870624 drm_fb_cma_debugfs_show -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc337fd5 drm_fbdev_cma_restore_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xeb739fe8 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x0fbdbc7b imx_drm_encoder_destroy -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x1cfe024a imx_drm_crtc_vblank_get -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x3306a689 imx_drm_add_crtc -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x37707c0a imx_drm_crtc_id -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x3ea022e9 imx_drm_connector_destroy -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x419b08de imx_drm_handle_vblank -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x5f056ff0 imx_drm_crtc_vblank_put -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xaf452fe4 imx_drm_set_bus_format -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xbf396f53 imx_drm_encoder_parse_of -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xc61d6ca5 imx_drm_set_bus_format_pins -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xd652b5a4 imx_drm_remove_crtc -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xd7e51a83 imx_drm_encoder_get_mux_id -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchip_drm_vop 0xcbb38e36 rockchip_drm_crtc_mode_config -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x0abf400e rockchip_drm_dma_detach_device -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x215f824b rockchip_drm_encoder_get_mux_id -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x3fe81da6 rockchip_drm_dma_attach_device -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x6db409de rockchip_unregister_crtc_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x9e7bce1f rockchip_register_crtc_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xc0296bc6 rockchip_fb_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x0b616bb0 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6fb55a55 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xa704a1a9 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0178f0f1 ipu_cpmem_interlaced_scan -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x04f7075a ipu_csi_set_mipi_datatype -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x08011ba4 ipu_srm_dp_sync_update -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x09062fda ipu_cpmem_set_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0e42bd95 ipu_csi_set_dest -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0eefdccf ipu_module_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x118160e1 ipu_ic_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x11d8f100 ipu_stride_to_bytes -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x13952dfe ipu_dmfc_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x15ec2ba5 ipu_di_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x17ac81c7 ipu_idmac_set_double_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x199bd5c8 ipu_dp_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1aef5216 ipu_cpmem_set_yuv_interleaved -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1b3b9d17 ipu_idmac_lock_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1ba497eb ipu_pixelformat_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e3a50b7 ipu_idmac_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e913d9f ipu_csi_get_window -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2348d668 ipu_cpmem_set_rotation -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2424c9a6 ipu_csi_is_interlaced -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2d52be66 ipu_idmac_wait_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f92d651 ipu_ic_task_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f9751b4 ipu_degrees_to_rot_mode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x30b6999c ipu_rot_mode_to_degrees -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x31309ef8 ipu_module_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3166aec7 ipu_dmfc_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x339981ab ipu_idmac_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x36c3c3d9 ipu_dp_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3afbb44e ipu_smfc_set_watermark -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3e86ea72 ipu_di_get_num -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x43124552 ipu_ic_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x43e14ec9 ipu_idmac_get_current_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4595556d ipu_cpmem_set_block_mode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x46105b72 ipu_idmac_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x47e2db87 ipu_cpmem_set_high_priority -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51475e87 ipu_dmfc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x527f3b94 ipu_smfc_set_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x53de277c ipu_di_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5bbaf995 ipu_dc_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5e4ae2f3 ipu_di_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x60bdf2ec ipu_csi_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x623722e2 ipu_ic_task_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x633d6180 ipu_dc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x69115969 ipu_idmac_channel_irq -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7069ac46 ipu_cpmem_set_resolution -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7121bd07 ipu_di_init_sync_panel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x76302d14 ipu_csi_set_skip_smfc -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x78dd20a9 ipu_idmac_enable_watermark -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x80cf657d ipu_dmfc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x886c35aa ipu_smfc_map_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x91536b15 ipu_cpmem_set_stride -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x929b053e ipu_cpmem_set_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x94b41ee0 ipu_smfc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x951a09d5 ipu_csi_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x99a0ef07 ipu_drm_fourcc_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9a4b5a67 ipu_map_irq -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9c335d85 ipu_pixelformat_is_planar -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9c498d1d ipu_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9e611269 ipu_cpmem_set_yuv_planar_full -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9f38e177 ipu_dp_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa1f40d68 ipu_cpmem_set_axi_id -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa4b0cabd ipu_dc_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa579616b ipu_di_adjust_videomode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa60b144b ipu_csi_set_window -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa6acfb76 ipu_cpmem_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96882d8 ipu_ic_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xab96c5d4 ipu_idmac_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb228bf1e ipu_dp_set_global_alpha -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb42c73ed ipu_cpmem_set_image -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb54f60e5 ipu_set_csi_src_mux -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb94ca95a ipu_dmfc_init_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbd0533ff ipu_cpmem_set_format_rgb -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc3c2cdb0 ipu_smfc_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4027028 ipu_idmac_buffer_is_ready -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc6675aa9 ipu_csi_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc677177d ipu_smfc_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc817263f ipu_cpmem_set_yuv_planar -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc848c5d7 ipu_dmfc_free_bandwidth -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc88d89a1 ipu_mbus_code_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc97e7a0f ipu_di_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcb7bbb7a ipu_csi_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd7c6998 ipu_ic_task_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd0313497 ipu_dc_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd064a453 ipu_ic_task_graphics_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd38991f4 ipu_dp_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd429473d ipu_set_ic_src_mux -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd5055dd9 ipu_dmfc_alloc_bandwidth -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd90e8f64 ipu_wait_interrupt -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xda5ce4ea ipu_idmac_channel_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xda74f26b ipu_idmac_select_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe300a959 ipu_dp_setup_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe36106e2 ipu_cpmem_zero -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe3b86336 ipu_csi_init_interface -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe3eb34f7 ipu_cpmem_set_fmt -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe53df01c ipu_cpmem_set_format_passthrough -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe6243c52 ipu_dc_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe757f242 ipu_ic_task_idma_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf28df19a ipu_idmac_clear_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf541e070 ipu_dp_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf69d6cb6 ipu_csi_set_test_generator -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf7d99d69 ipu_dc_init_sync -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf9ed222e ipu_dp_set_window_pos -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0240849b hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x025857b3 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x02c2c52d hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x068b5c3b hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c85b00a hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x142bf6a7 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c7e027d hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1d165795 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e6b17df hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f6425b3 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x31192de7 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x380a77cd hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a6b2cd8 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c7998d2 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x42f3335d hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a045aad hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5c539dd3 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5fa514ee hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6b57f9e1 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x84c7ba5e hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9287ca32 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a8acdee __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b90f440 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa6a796f1 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb1bdb444 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb4e821be hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb65f7321 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb75cca15 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbacf6039 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd04ee8c hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcf34b0b3 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd17389f5 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe42df6d9 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf26c0cc8 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf87b9a79 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf9e44732 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x5d8a3c89 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2d442f4b roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x30ff8f42 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x33d5747c roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x65232a34 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd4621974 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xdecb082b roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x060cdda8 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x114fcf18 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x39059e37 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3bf04555 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x49b93194 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5de56b4f sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9d0dedf2 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcb4b87ef sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xeda241c4 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x7fe11562 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x426a9ee2 ssip_slave_get_master -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x4ce34706 ssip_slave_running -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x9025b0fb ssip_reset_event -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x936e02e1 ssip_slave_stop_tx -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xb7729872 ssip_slave_start_tx -EXPORT_SYMBOL_GPL drivers/hsi/controllers/omap_ssi 0x24393af5 ssi_waketest -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x014df259 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x06355f19 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x088da6de hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x17c591c0 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1bed0bd1 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x34e6e647 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3ba84eef hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4ecba994 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x64411481 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7acee6e0 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8b70a700 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8f305b4a hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9ac8f948 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc45d3e55 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdcd977f8 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe18766ab hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf071dc68 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf65eb2ab hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xf62058a5 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xfd5e8c31 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xfe685e46 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0438d60e pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x192a76a9 pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2813fc9f pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3c4b580f pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x41dab528 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x428f32a3 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5044628d pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x73bf527e pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x795d102e pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x90df3ff2 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9d433adb pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xab619335 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xed415563 pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf00f8e82 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf29ad0a8 pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x04fbbfb5 hwspin_lock_unregister -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x09318723 hwspin_lock_register -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x58bad34d __hwspin_trylock -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x83e0876d hwspin_lock_get_id -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x970b7017 hwspin_lock_request -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x99297467 hwspin_lock_free -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xaf425e7c __hwspin_unlock -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xb5263293 hwspin_lock_request_specific -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xd5903a36 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xf9b39c3e __hwspin_lock_timeout -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0a2f27f8 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1f47a9d8 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x38c60a2a intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5c5bf1fe intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5fcb3f00 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa38efcdf intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe2e8448d intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1359894a stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2513a37d stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x375c426e stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6a0d77e9 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x88001000 stm_register_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x74cfbd44 i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x92f48c3d i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xac39e56e i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xd3cf5435 i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xd50db6e9 i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x1ac2872a i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xde7b9b03 i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7daeb044 i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xbf35ab7d i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x0b2e0460 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x84781519 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xcad67bbb bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x10a991b3 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x28bbd88b ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5f01645a ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x699dbc24 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x70a62129 ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9d54a40f ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb8b6da69 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc412c0f9 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdcb124bb ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a5b11d5 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x8c635970 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x11b100ee ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x8cd32a51 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x6e1f3288 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa6b1eca9 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa86d3f6c bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x161a4fa8 adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x548ff8ef adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5b8757ff adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x69712328 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7a07eea8 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8789948f adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x87a8d685 adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9f4b8478 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa2ae3baa adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb5955c04 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd7b45a51 adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe1838f9b adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0725f37e iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x08c98086 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0b0895d2 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x16971480 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x18313cd4 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1cca1873 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2c96910c iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x462ca0ac iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5c5d8126 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5c818fc3 iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x68cbf29c iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x72312b0c iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x72d6e7a3 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x74289419 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7f17befa iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x82062204 devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8848e738 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x88684d24 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa14e5c93 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3404836 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xac080a87 devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb23bb197 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb80bdc91 iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc1ec0271 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8fb36e7 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd6a3ec40 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xebd53fa5 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xec41131a iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xefd85e5a devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf7d40d2f iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc6ffdba iio_channel_release -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x1bce412e input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x16b9b377 matrix_keypad_parse_of_params -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x5d07923d adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x58fef585 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x61631cc5 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xdabe069e cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x7f96a316 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x9e7cc5c4 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf7198c97 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x49ddc945 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xc4cb8171 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0bc41e4c tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2703c33c tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4fe54f49 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd767debd tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0f9ff371 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0fc2c8d2 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x11a550a1 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x127cd588 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x35f8fb9d wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4e8a6ab2 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5be80d7b wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5e52773d wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x70caf916 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x770dc98e wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xded6d516 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf7b6b1bd wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x052918b2 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x05dc5dd7 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1fbfc750 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x35af49e3 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3c625896 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x47a16527 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb0c3d7a4 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd62709e1 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe2cd5727 ipack_device_del -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x00508532 gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0236141e gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x19323d7c gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2249b24a gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x29cd217a gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x43b26305 gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x535c4743 gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x58304eca gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x65765c51 gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6a9e0f7b gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x778e1dbf gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa037cc19 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xad25dc63 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb4a28767 gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcdd49384 gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcee04492 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfc31f305 gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4f6dac77 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x70ccb833 led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7a508eaa led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x8ab24b78 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb4c637d7 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbf4da3c8 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1dde48a3 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x365855d1 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x445f1335 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5315f06f lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x717d910f lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7d484fb7 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x839778a6 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9a59a263 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9cfc6126 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb01635fe lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd84dbeff lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2591e659 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3220b262 mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x514b2cb7 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x51925b7d __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6b90d1f6 mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x72af4521 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x834addd2 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x99b26a28 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb13fda93 mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb385b1d6 mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc3429856 mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc533a23c mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf9cca8f3 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfeb8aae9 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06628c2f __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06b11706 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x07e2c777 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0b1ed8cb __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1683a5f6 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16c3fa29 __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16c8cc13 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x18d1988c __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2061620b __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x230dd380 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29a4c5fd __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b277945 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ee17aab __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x402d6200 __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x49c216ec __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d1e9f82 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7930d50e __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7d597e2d __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8461608d __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84e60671 __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92d61794 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9415be3c __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad2d4ca2 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb21fadc0 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb364194a __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbe406c76 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc72008a2 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd6d1aa5e __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc24ee1e __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcc8ed24 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xffd8c38e __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x09f73dab dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x16f591a4 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x62cebd59 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x693cf65d dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x85e010bc dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x99c91866 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa9489be1 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb458b9bf dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xff17414c dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x70b8ecfe dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x07090f09 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x46bb33ef dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5f2cd43c dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x700785ff dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9849df67 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcd033480 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xde8ed891 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x8e4d4815 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xde8ccff0 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2db32928 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x35ba8dfb dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6936d1db dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x819f4433 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x899614d2 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa2d061b9 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2507774 dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfddaca74 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x07e44321 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x19658529 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2cbee1e9 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x711dbe26 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8f47c83e saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9b8f8246 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9e07c41a saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xae4a664f saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd39a3aba saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe565fc70 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x02d97628 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2fb9323b saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8f61a6c5 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa4c23a83 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbecaaec0 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc430aeee saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe7602d73 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x48af17d9 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4b9c5d6c smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x544d47fe smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x59da888f smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x708a4482 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x800a2b1d smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x96ffe80f smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9915a743 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c087880 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa6293789 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbc86cefd sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe5a58b8c smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe6c030a9 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xec4eb2de sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf8a4c150 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xff152671 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xffc03614 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x4e710fb8 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x260270bb cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xb28b8344 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x04c98f5e media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0x192882da __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0x1c97c811 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0x2d4e7be6 media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0x52e91c22 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0x536b859c media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0x59841afa media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0x635d22cb media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0x834208ab media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0x8461fb58 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x8be845dd media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0xa321cf35 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0xa7ab57c8 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0xb3779a69 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xd5962b79 media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0xdabcf9ab media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0xeec1e07a media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0xfcc4ed18 media_entity_init -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xb0fb60bd cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0ed3fa12 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x122828d9 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x187a1943 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2bb79f82 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3a8a7d59 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x505b10e8 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x557ec199 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x595bc35b mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x682ed6b1 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6bfdf3dc mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x753f7578 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x84d2bca4 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x88bc69bb mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x89dbb281 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcd1d9b63 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe27e883a mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xec28530f mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf08649ab mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf2373deb mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x146a4884 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1667aada saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1a6ca5a9 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2cb205c2 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x33643c77 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x39b9b5b9 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x42a1ff43 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5b775531 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9305cf93 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9bfa8d58 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb4a131a7 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb8a7e68b saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc4f7d7d5 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcc2f8d6d saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd3b4f80f saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd9a35dd7 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe97959fc saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf427e4fd saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfbad5f74 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x08908e7c ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x29ffa8a7 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5c0b5ff9 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7402a661 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x947f136b ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb746fc0b ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbbf9ff8a ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x085d8e48 omap_vout_try_window -EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x1da5563e omap_vout_default_crop -EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x3739df24 omap_vout_new_window -EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x6db65fc8 omap_vout_new_format -EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0xc1644e97 omap_vout_new_crop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7c276e77 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa39b4408 xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xaf077b04 xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb655762e xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xcb3d9c0b xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xea800016 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xef5e465a xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xdde2b614 xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x545cc9aa radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xcef3bcba radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x041d52d9 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x193b1431 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1d78bdaa ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x65e8694f ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x67a74f02 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x77d3c187 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7c133f6b rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8cf3e59a ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x904171ab ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa179fa60 rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa7c49aad rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb639c48c rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbada1145 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbe9b206e rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc64f4323 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xca9ea515 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdb704472 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1d16e58 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe2d85bb2 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x6f0c11bc mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x45afb415 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x55e32ca7 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x6da2ecf5 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x56595aba tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x57bf07df tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x1e383ae4 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xbb694299 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x4f747dc0 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x22c13675 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x4a1006f7 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x0f577505 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xe072092f tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xa3ddcb61 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x01a8b77d is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0df10e6d cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x13afdc67 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2156151b cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2b861054 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2ec88c4b cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3b7ee1a8 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x42f59c4c cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x59921c7a cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x692bb487 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x82ea8a5e cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x99c76f65 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb8fda134 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbb80f5ca cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc239bca1 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd6c23cb6 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd839b476 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe63a978f cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe810bef1 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xefc167a6 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x13a6abc2 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xfdb5469e mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x06f6ba2f em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1b8866f8 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x25187484 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x42428a28 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4ec9c3ef em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x52b2d1d5 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x66e65624 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6bb30ec5 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x76473a7d em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x899e1c68 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8a4c9bb3 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9606b71a em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xabf22bf5 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb5fe4dc5 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb664e7ba em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb6d93140 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc8d5560d em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd128420d em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x027ee043 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x3e6133a1 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x94b69c95 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xcc7b7180 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x11ca595e v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x2de367cf v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x797f2b4a v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x9749d9ee v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x97f9dfb5 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe0eeb4e0 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xbb489526 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xd37a3886 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x11a82695 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x16492640 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1a0c565d v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2b9d65ed v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2be26dc3 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2c1d5835 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3931c0d5 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x426d494c v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4c1b3b3a v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5225cbd1 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f476f86 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6ff2287f v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x743715b1 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7ad20f3d v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x84774736 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x875d1983 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x90aabd1e v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x91d19748 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x96036a12 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa255a651 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xad6c4877 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb4133c4b v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcf7bb588 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd1ced00c v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd6db6af7 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdbd2dd06 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf9f0276f v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x002b7ccc videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0abf5050 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1e4de988 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2d403594 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x369ab520 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x49928af0 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4aff2102 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4e59ab41 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x61d78c88 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x62bf2be1 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x82b28e65 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x90287228 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa7f79743 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xac8aaa93 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb6b3c43c videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbbe12876 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc7b9baf5 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd6e43652 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd7e66062 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe1bf721f videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xef9d87a7 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf1f6a246 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfd2e2b24 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfe51acf3 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x5a3bbe2f videobuf_queue_dma_contig_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x9d5bb4e9 videobuf_dma_contig_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xda3b36f9 videobuf_to_dma_contig -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x08c13f9e videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x0cbbf3ab videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x22f6e2f4 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x7c1caf3e videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x3e16f80a videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xcb3ceaba videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xe38f58a7 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x06a239a0 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0e6f5732 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1784e468 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1c4a908a vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1c8a346c vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1dce8ffe vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x371c1172 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x57121788 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x70ca42f4 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x823248e6 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8914c853 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa038c0db vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xae3a378e vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb33b2aa0 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc2dcb1cd vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd3009e6a vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe7d5029e vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xeb2bb7d8 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x2ff3d34d vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x61b1161e vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x3e73b5fb vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x63f0d87b vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x8857f524 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x119f04e3 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1961cab2 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1abdb3b3 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x28690aeb vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3025c76f vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x32698b05 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3467c5d7 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x370041a5 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3a1e0a1b vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3cd2a8fb vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3cfa11b0 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3d62c881 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x515e8182 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5458c60b vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x57c7704c vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5b4ce20b vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5c4b753f vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x62653d6e vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x63769f60 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x67db727f vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x67e598ba vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb8d08470 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc3032c15 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc3d185d6 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd50983a3 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xddff7ddf vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdfa60b1d vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe3062335 vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe75ad53d vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xec54252f vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xecc4e818 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf975d428 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x538c221c vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x023992ae __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x081f5533 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0892d6b8 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b40a4a3 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0ec6ae0c v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x13f79442 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x189a3a75 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20b66938 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x214fdfbd v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2246f8c1 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ed57e60 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f828290 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47c1260f __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x591696a9 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5e508298 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x60d147eb v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65f49885 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x885c1923 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8a8cb2cb v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8bd7a9ae v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x942faeee v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a4042e3 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e490001 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa7dac8ad v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab06e74e __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae082517 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7e61a2f v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbfc30eb5 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc7710779 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd647c3cc v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8b26023 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9d69cce __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0e83c69 __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe53ae0aa __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf144056f v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff210da8 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x169e0cf4 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x226b756f pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x300124d5 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x11a3aa3a da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4365cf01 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa29cdbe5 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcc10f33d da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xea370201 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf93b1622 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xffdb33ab da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x086e2f7a kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x315c1cd4 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3b007696 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5b4be54a kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6422a3ca kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x946534f7 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb3b09a67 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcee7bdb2 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x1ab7b5f8 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x3d3cc0ac lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xebc658ec lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1f84916c lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2bc41b7c lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x39ea940a lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5fb1fff6 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8002ec34 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xab955b08 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf7d83300 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x2f26f8f5 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x5604580f lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xcab32156 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x00b37157 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x034621d0 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x40093a77 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5206cf1f mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xbee48d0a mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe746dac8 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1478bdde pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1dd2f12e pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4870940c pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9447fe82 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9784a77f pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9ea155fd pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb794fbf0 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc9a1c73a pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd5c9a438 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe04c49a5 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf94dc75a pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x1b1c3ef1 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xde921cf3 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4a1a387a pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x82b0c4f7 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8b6f30fe pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa1148ca3 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa7bd81a4 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0b67f98b rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0d4504f9 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x179e32d7 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x273cd840 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2c022d2c rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x382a0cc0 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x39fd1ed7 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4dd6b944 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x51b12552 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x58c7d9fd rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6a4a498e rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6eb17946 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa1edc737 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa42d9aa1 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xad4bb82f rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb6e3abc4 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbf395d37 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc3e5fd36 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcdfa5666 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xce32355e rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe0cca919 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe40754d7 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf34a2cf5 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf382a6e9 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x19243f61 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x19df6fe1 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2f303a25 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2f7b3b96 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x33c53536 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5ebcd067 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5f0ff17c rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x821e4a83 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xcb2193d7 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xda75de80 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xdf5c132f rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe4213653 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf9528f8a rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a52bb0a si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x11f010ed si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x12f5e3aa si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x15e01c21 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x21a6000f si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2a28d74c si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3d348150 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x44b7cd64 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x45d0b5a5 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4a439ad8 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4d3f6697 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x62da883b si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x64932106 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x673c55c3 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7e67d23e si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82186579 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8421195f si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x872aeac7 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8bca970b si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8e840263 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x979111d4 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9ec72dde si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa5a0adb8 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaaf803dc si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb02e74f0 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb0371963 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb59d4fe5 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb9c98880 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb9dcdfa9 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbc0df749 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd554ed70 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd62868c7 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd73bb232 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeaf64e12 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x261541aa ssbi_read -EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xf9dea623 ssbi_write -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x22a3bb0c am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa728af93 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xeb54f2b4 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xfd6fcefb am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x154dc9c4 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x6d29be90 tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xbe178c9b tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe576daac tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xb1244268 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x62b21c14 bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x850fc134 bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xf0024eaa bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xf319b0cb bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x7081bb7f cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xac7c96c8 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc75b475f cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xddf8348d cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x040cd9be enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x215484cd enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x21e94eac enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4f30421d enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x89b646c6 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa966d536 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe6233bd5 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf34b2260 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x09bf5e71 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x27d0ac80 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x38315814 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3845b4d0 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7198a0c4 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x72c99601 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcbb67e57 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd78cafb6 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x98206a1e st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xee4aba47 st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x0065a28c dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x09db9a06 dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xe2b1f517 dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x7191fd94 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x8c8fd802 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xb3a6fdea cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x0b84ce0a cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x862f4a5c cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xf87d018c cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x02dc2c71 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x0e53108a cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe5a25fad cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf2bc54c0 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x3ced58ed brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x6d454835 brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xd30a5280 brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x42af3fe4 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x33ee3f0a onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x852a5830 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x968c67ca spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x010466da ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x06b87242 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x09ac1d25 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0b288b71 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x553da260 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6db5e979 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x89347032 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xade4fd89 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaea501ea ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaf97afab ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc27b2109 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc637849f ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcdaf048f ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe42752a0 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x40bdc694 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x9b8bdac2 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x08ec30f6 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x16c73cb2 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9b231ed6 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa28d1561 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc9ee093e register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xcf758e5d free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x08aab703 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0e868f16 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x148b9ea7 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x18a310d7 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x40255a3f unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x42c13c26 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5b29044d can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x619fea3b open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x61a5ee64 can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x69b1c2c2 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x758f7114 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x788f5674 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9582278c register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa68c1899 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb2b35e52 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcbdb1a61 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf1ce23f3 devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfa5604b3 alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x13605961 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7634d535 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x96840f6c alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd4fd7877 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0970c95f free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x33a9fb50 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x5981ab4b register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x68f95f74 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x910e4b27 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xc3307ff7 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06a531cb mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0720ca54 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0729c35e mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c769d31 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cde6c3c mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d0cfa8b mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f8d5e2f mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x104dab8d mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19f91e3b mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a9af6f6 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b971f69 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c09cf62 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1dd172b6 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22b0f406 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22baaba1 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x256b463e __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25717863 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x275e1a84 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27d5319b mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2832b315 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b88adb3 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e18f3c6 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e972286 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f3dc744 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f642fb3 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2faf5f7a mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31384af3 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x358304fa mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x361576ac mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x370f7cfa mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37aed48d mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a69c654 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b277733 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bb0968d mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f9fb784 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44787165 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44967698 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45be34dc mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4648da4e mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47259e56 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x474aafbe mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47890486 mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47b09a7d mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d8dedaa mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50988a21 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52c7fc15 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x581bd69b mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x591ff785 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59260c52 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c284429 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e67219c __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e8c9864 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5eb6517b mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ec5c08b mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x640b5ced mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6480a54c mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d428707 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72f95603 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7320d74f mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77123ead __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x779bf2d3 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77adf9b2 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79724719 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c9b59b8 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8097d006 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x818de1b1 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82cd7143 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x835f9517 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x839b0bf1 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85ca1a8f mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8728899c mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8adfb801 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bb2c45f mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e5fa02e mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fb4bcc0 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95cab5d7 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97d88add mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9aecdf71 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e7479e2 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3a4b834 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3c1059b mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4426238 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8b0ea6a mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab7206ea mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae585b5f mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafb97c65 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb15c16e9 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb461ed47 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5cc85f5 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6b5a428 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba0daaaa mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba6346a2 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdb6d198 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0dbb661 mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0df3a43 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0eaef63 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6283171 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9f0468f mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf894f86 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd144f453 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1a74f36 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd26cc630 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd33093d3 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd383195a mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4bdd2f8 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5275a28 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8d3a4d1 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb13a918 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcf96f33 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdea8878b mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf601ff2 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe064d47a mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9b7ba5b mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9fa0121 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed173369 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeed31108 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf09ae295 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5495aa2 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd200350 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe18355f mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe26f220 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff449a29 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffc5bf42 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffefec44 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x009be155 mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03b3eb84 mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c003ddc mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e71a7e7 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c2c3e49 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x225a0f9e mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24562ee8 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x318d330b mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3983b32e mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42714bf7 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46587874 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5900dfa2 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x617e7239 mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x621daef9 mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x629d1454 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72742075 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fce0081 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x813cfeca mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83213757 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x836220b0 mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d0665cc mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e4840e3 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9367626e mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x968f635d mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x975fddb3 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1458a99 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa49108a1 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa69f887b mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadf6c7d6 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaed05bf4 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2fff45d mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3d20e2b mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc96e89ea mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca0b15ff mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd01bb7d2 mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd455fec0 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd83c2fd8 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd5e229e mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf5d12b0 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3496e03 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8a5a4bc mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec92eabf mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed4feb8d mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee4860ef mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4b77431 mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffa1b460 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xbbd1268d devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1a4fcaee stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x2424e748 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x38ea55a5 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xfa064994 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x50e58736 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa0e00200 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc931d9f0 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe2d98602 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/geneve 0x15e56947 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/geneve 0xadeb3ede geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x25ecf06d macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x327fb4b9 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5a70993e macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xbfce9f0b macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvtap 0xdc95d3f8 macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2f64c4e9 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x662efe9e bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x81b2a0df bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x97ed2ac7 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa2c57095 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa3e372b8 bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbc375bae bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc9785479 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd1a9bce7 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd82945cf bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x90c1c860 mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x092a358e usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1abfc734 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6adf5669 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc3ad727e usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x09ebec11 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0d2d79b4 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4e7bc8d5 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x67b778d0 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7b55bcaa cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7e4def00 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8aaa5c6c cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb1a12c54 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfd9c176c cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8e4470bd rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x979c2444 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbdae5ba9 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc5ff8f77 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe31e3499 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe7204347 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x042aa0bc usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0c8588dc usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x15e1e5f4 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x18be306d usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1de8b06f usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x31a28efb usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x32483e6b usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x36fcd9f7 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x39aadc19 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3aa35582 usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3ab17947 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3c600341 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x43fa291e usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x46170fcd usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x849adf84 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8d807ce4 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x979ef70a usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9d56c874 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa06ec3d7 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa28440b0 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa36777d2 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa7eaaa3d usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaa38f5a7 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc429242e usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc51dadb2 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xce2157ac usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xce4b6601 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd1f55153 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd9c8e12a usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdf32e5c1 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeb412b36 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf8602b28 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x3860f7d3 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xf1c0888e vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x04441608 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0dc1e743 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x21523bf6 i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2cc49b16 i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4051b92c i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5ee7c949 i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x956a8bb1 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x99151191 i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa1c23c89 i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa43df02a i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xaa0cb652 i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xacc1385f i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc72485fd i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcca5e96e i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xde9f68dc i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xea3438ef i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x4f6707dc cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x6458e808 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xae5b06f8 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xca872948 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xb8fbdd9e libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x14a52001 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x9259a290 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x9aceeaa1 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xdbf4e85d _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xfdcc27ce il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x03ffddf9 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x131a729f iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x16474139 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x194202ee iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1eaf3f06 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x229171c0 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x39ba2b36 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x49b542fb iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4a5509b2 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4ab37160 iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x50205162 iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5a10d898 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5e53c9cd iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x79a203fb iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7b48f259 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x94cd9812 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9bf16097 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9c77eed0 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9d744193 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa90c70cb iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xae5f882d iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc00ff135 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc6b893c7 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcb1baca4 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd76667fa iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdf62a86a iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe9a21aa5 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xefa5e7a6 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf312aabc iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf88aa70f __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfc305542 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x13431ce7 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3ab4cc9f lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3bc60ee1 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6ee6c2c8 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x774db21d lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x82bac452 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x85514e49 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8b2e3bc9 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8bfc1195 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8f83e7f9 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x952412bb lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb4d262ff lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc2285812 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xcfbaefd9 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf4399ec7 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf4c54a44 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x1d748ed4 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2e20243c __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x3dd9bd1c lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x40d39ade lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4a2f3bff lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x73f0cdc6 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa07a14f0 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xe8444804 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x12683fc4 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x190e49b4 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x19128140 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1b141e4c mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x220aed27 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x26fc7e94 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2a8e1f8c mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2bd2fdd0 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x335f9f35 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x44822ef7 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x59010367 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x63275c59 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7e0d904b mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa0e9936f mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb32a386f mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc5b3dfe4 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc945c9f0 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdb5e20e5 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe66b876f mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3509f02e p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x469d5aa3 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x8d1cd00e p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x9213cf8a p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x9315f3a4 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x99309b04 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xbc6ea987 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xcacb8e0d p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xdae12dfd p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1000ca5e dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f8cd9d6 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9cfeb4ad dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc80baf66 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0b9dda24 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x28ecaad6 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2988bd2a rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2e225bd2 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4710fcad rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x47c7ff79 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x48e483e1 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4b38be8c rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4e1e9617 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x59d3f3d6 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5ba0a970 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5cc5e9c3 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5e775116 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6f34669e rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7015bf3c rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x828d6b5c rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x886275b1 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x91a0b523 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9af8fdf3 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb5a1f3b9 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb8f9fb40 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd0fc19ca rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd546a866 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdbfcaa8b rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xece931b3 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf426bcde rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf7c0978c rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x20c76c0b rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d882d91 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33cb8959 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a8bd50f rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x659e2d23 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e53ebcc rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x724fdff0 rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72e8b527 rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x75461f43 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7efc9787 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x811d24fb rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x857dc240 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x85f315e2 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x914da1b6 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9948c8ae rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb1ee45dc rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5e44927 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd89310f0 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe16a0fe2 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc36f0af rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x17315b85 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4a004542 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x933280de rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd98932f9 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0b5e1497 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0d4b67d1 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x13f62b2e rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x221c0347 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2c714280 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3122ca35 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3214b774 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x32c75392 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x34bcfdaf rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x443e6557 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4cb00681 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5191b3fd rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x536ebac5 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x57292a04 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x576d5e6a rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x57f7bbd3 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x69302836 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x74cd92c8 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x74f3263e rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7698827f rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x77c7915a rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7ed09f03 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x85c004fa rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x86e29034 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8f04c71c rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x931389fe rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x99067028 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa4341cb2 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb5b2d02c rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xca84a262 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd58c3b10 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe13ed03f rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xee9c7cf9 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf141db66 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf5a05d59 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf882a1ef rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfbc280ea rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xffb9ea67 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0e2cd4ec rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x33512c7b rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4f1a380e rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x513e7973 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x749fd19a rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x85d2b2de rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa40d3bb1 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xac42857c rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb4b3dc2a rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb85af004 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc62d57a2 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd73044c8 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xfe852ea0 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x11cc541e rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x12f4bb2d rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x13f0d79a rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x176d8510 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x19172904 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x19388e96 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1fa49ba7 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1fa96d68 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x23e5d9c8 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2e508317 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2e8b5343 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x341b8a89 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x36b7146a rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3df9e245 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x47b63b9a rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x485b3e95 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4fd7522a rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x63f2165b rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6431cb7c rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x68123e8b rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6d69253e rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x821a5764 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8469b4c3 rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8539b29f rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9cf649f0 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa9f62ac3 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xafef3761 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb2b361bd rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb367c523 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb4b84bfc rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb5fb9889 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc171b381 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc5d0c337 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xca688b28 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcc21c3d2 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcd33f4b1 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd05435fe rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd13c2bae rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd4d1a5f3 rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd71c939d rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xda643386 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdc72075b rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe67e5792 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xee91644e rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf0725724 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfd9f1f58 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x00385a75 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x1872c46b rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x66f81908 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xc5e5ef14 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xd0ce7278 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x2e61a343 rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x83ef5eb9 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x8e993133 rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xf22b00fc rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2757668c rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2d01d275 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2dcd6250 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x33502226 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x371ef23b rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6b7e91b2 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x823331ee rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x82938dd6 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8b17ce34 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8f884466 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9d3f1235 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xad9ac208 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc6991ad9 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdad98fa7 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf2965b14 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf58e3b80 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x40f57e7d wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x5f6544b2 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xaba3d5c2 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x01e263a5 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x13dfa07c wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x18954e41 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a2cda95 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21b69d8e wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2428d75d wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x27b6f8c7 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2dbf9f32 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x322c0461 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x330c3c7a wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x43c546e0 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x443fff4c wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x48b755d6 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e93976b wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4ee9c56c wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5897bcd3 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b3fa10b wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61fc390c wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x620855c8 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ca76bd2 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6d2c141f wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x816d1484 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x83231ba9 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8661f843 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8772f860 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8cc269d3 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d89370c wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x94ddf52b wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa066ef69 wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa7b0c7ec wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae3ccdad wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaf5c61e4 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb028ff87 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0e0cd81 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbf6e2e72 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1dce986 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd17a59ef wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd2749b8e wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe1205f92 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe3b0a7db wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe781e103 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf2686b86 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf4bb1458 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf683c7fa wlcore_remove -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1301e1e8 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x5ff17867 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8946b074 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xacad4d02 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0c6dbf39 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x133175b8 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x19422f0c st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x52a94457 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5e782359 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcd392a3e st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd9fad371 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe59d70ac st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x02485fec ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x303e1952 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7d2d931d ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0b09b92a devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0c62f61d nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0f6789be nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x16d7b645 of_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x1ecf994c of_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x5080f207 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xfc389d0b devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xffdc6140 devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x2293ed36 omap_control_pcie_pcs -EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x62c0d7b4 omap_control_phy_power -EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0xcdf2960c omap_control_usb_set_mode -EXPORT_SYMBOL_GPL drivers/phy/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x0014fbc9 ufs_qcom_phy_enable_iface_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x07b6c201 ufs_qcom_phy_calibrate -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x12d2dffb ufs_qcom_phy_exit -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x15518c56 ufs_qcom_phy_is_pcs_ready -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x240020ba ufs_qcom_phy_init_clks -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x25056dc2 ufs_qcom_phy_init_vregulators -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x59a8616a ufs_qcom_phy_enable_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x6b4cace6 ufs_qcom_phy_enable_dev_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x72798502 ufs_qcom_phy_generic_probe -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x790d3aed ufs_qcom_phy_power_on -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x7aae4f8f ufs_qcom_phy_start_serdes -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x7b315b51 ufs_qcom_phy_disable_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x860722dd get_ufs_qcom_phy -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x8b73ccad ufs_qcom_phy_remove -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x908b4fc1 ufs_qcom_phy_set_tx_lane_enable -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xba699b42 ufs_qcom_phy_disable_dev_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xc0dc50ae ufs_qcom_phy_calibrate_phy -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xc94942ed ufs_qcom_phy_save_controller_version -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xcdbc620a ufs_qcom_phy_power_off -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xfaaaefda ufs_qcom_phy_disable_iface_clk -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x20d71cdb pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x52e02c2b pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x85faf402 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4ccae8ba mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x505a5cd9 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x61e014f3 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x78fec37a mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xee45d56d mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x36c73756 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x840350a6 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb4f6b302 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbfd66fce wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc6a1f6d2 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfb302e5f wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x3dfa1347 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02494e60 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04d8b347 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x08ea0a3c cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0908c5cc cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x09ecf4dd cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c795e41 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x12091b9e cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x13dc38b4 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x16f04e2e cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x22331f6a cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x25598709 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2ac86e0c cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2ec51a2d cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44a61b69 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44d21fe0 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x51dc3e8e cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5368a509 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c687d86 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5eefa07a cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ff5b8e1 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6416d275 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7def7c98 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x818f33ba cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c6b2a14 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9de6a823 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa80b3236 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaba6c734 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaf9b4b20 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xafdb9efd cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb2c7bee6 cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb31d34a0 cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcf30d8a2 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2279a3e cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd31099ce cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd424d249 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5304d50 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5b6611f cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdccfb69c cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1158ac0 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1be2485 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5603b2f cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea094a71 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeaca527e cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfa95d53c cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd54e59f cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xff9bb868 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x315d87e1 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3a54e04d __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x47a0c349 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4e1d92dd fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x57b39ea3 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5938a423 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x69d93a8d fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x712f8db0 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x833a27dd fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84128308 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8c1ffd29 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8c7cc3b9 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9e3f6c5c fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbd23bd50 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd486577c fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf9d69cb5 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x15126736 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1c65ebf4 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7a9cc10a iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9d5c4988 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd46e858f iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfe9e54de iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e308d0f iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10095900 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x14d1a54d iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x193ca282 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x219d5820 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23078d8f iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x241579a0 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x24bd324b iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32659bca iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3381ae26 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33a75fb7 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d0f3c06 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d4dcf0e __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x55fcb7b5 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x615d5bc3 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63ee5b8d iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x654ab269 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6be46077 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70eeee27 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x732d8c16 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c30b3c5 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x84748d21 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0b8b65d iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa628dd50 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa6c0c425 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa93e6905 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xad126366 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb26d1434 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5b48b2b iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5f136b7 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb63bb69f iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc085ca24 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7eb3e2d __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc806fb82 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc992857c iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca2c934d iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcad51abc iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdeb2b19b iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe79473e0 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf45483bd iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa4bc88f iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe408196 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x008c3466 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x069dd86f iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0e5a3616 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x15e38375 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x16075829 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3798bb31 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4e506ecd iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x513208ee iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6b7c4467 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x84fcd2b3 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa36cf848 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa5705e46 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb9e9377b iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xccab4d6f iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd708cccf iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe5fe9604 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xee1db6a0 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x17680f1b sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1af5555a sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x47c6d473 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x547dafb1 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5ac4ed9d sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x65223dfd sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6ca4420b sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6cd7011f sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x702b44a3 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x73fedf3f sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b49b056 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b890558 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x80c9cc3e sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a8cd83e sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9f02f51e sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa91ce494 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaf69a6c1 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbe9ab6a9 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc14550fb sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc35f0c46 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcead9c6b sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe03b8904 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe93f4241 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf8414718 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x098e71ac iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x165f527d iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19c3ad7f iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x237b4add iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2592c9d7 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a9de75c iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b10d7ff iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2bf7adab iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c97144e iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x35d69387 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49c1758a iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c7a0b7c iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ebf6e4d iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60712c04 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60b849e0 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67be3127 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6a122c51 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6c903e8d iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7282a3cd iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x806a6343 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x880028e6 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88381253 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d5fbbb7 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x903e3b93 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9325f777 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x96556e9c iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x991c3c7d iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x996f2950 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f0090c7 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f252be6 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa117dee5 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa58a3899 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7531800 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9018c31 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbff05bdd iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8394772 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe248882a iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2af87a4 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf3be7d7c iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb273e60 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3963d25b sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4afaca16 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x705472cc sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7ea79a25 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x55ad1534 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x34e30d88 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4c4dcda6 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x76156c38 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xbd8c75b2 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd62e5d50 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf0cc94a7 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x04e4a386 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x1cda9749 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2c44c59d ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x4c743508 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xac51f9b0 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xb7c5a23f ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc3c07d2c ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x25489de4 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x292b1565 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7a1f991b ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x92a6f553 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe042810b ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe49bada2 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xece7917d ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x26b09c88 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x686a47c1 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa672821a spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe2b1f1cc spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf86004bf spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x59200d5b dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x67b8d186 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x7f297107 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa87c6a0f dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0c1683a1 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x195f6993 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3ad9cec9 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4084b139 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x497d6ed6 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4f872a5e spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x64f09afb spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6968ae92 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x83ed5661 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x98b6df5d spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa2727ed9 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb39ffa09 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xba5e837e spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbb0448ad spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbd314931 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd0e4d03a spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe4fc912f spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe6cd8598 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x5cc05df7 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1491baad comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1ca6ca4f comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x25648056 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2a03bab3 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x37a4227b comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3acf852e comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4135567d comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x43466418 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x56df1036 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x571ec098 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x62164bc3 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x653c42b6 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6aff6d85 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x799f954f comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7e18a4ad comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x84a4b222 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x89e75809 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x97377aaa comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa5a534a7 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa8479195 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa8d7eb17 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb483d75d comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb4d2d777 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbbe96e5d comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xccefa7af comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd5dc15f9 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xda28050c comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdc2f6b47 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdeef062b comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe8f2ebf7 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xeaab7e2a comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf45a59a5 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf6864c9e comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf819d8a5 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfdf8cd97 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x07c7fddd comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1b0f719e comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2b5f49e7 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x58298e4d comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x8f3b5ef2 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa7c9ad1a comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xbaf72e51 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xe735e12f comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0d86ee5e comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x215750eb comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x57f3a761 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x8036d2e1 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd67a8562 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xfdb1617d comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xc0ea3a10 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x29bd2470 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x29f25703 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xc101aab6 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x07d669b5 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x08eae1d1 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2b96f77f comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4c7281e8 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5379ef61 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5569b23c comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x67ba484b comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x717b9369 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x74debb51 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa0cbc297 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xaf6f3d49 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd5808d15 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xdd0dc117 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x1e6c6f07 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xaef4fa75 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xed5aa69d subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0xa498af20 das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x002fda01 mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0df886d0 mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x18c492eb mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4fa14329 mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5fd3414b mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6c8026c1 mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7b1bec34 mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x914fdd05 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9631fc02 mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9ae77342 mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9b6d113d mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa1d84b34 mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa75d2fc0 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaa40601d mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xbd384825 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc2e418d3 mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcec6b0cb mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd46839fb mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd66ee006 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd98420f5 mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf745c087 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x430e3b7d labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xf5ce4d54 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2038bda7 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x42dd2ae1 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x4c4dfd25 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5d938b03 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x68130591 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x79ece2d4 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb104a4f5 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xdf7d6520 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x08ab3415 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x2fdd893b ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x84769f90 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x89e70922 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x96f8d106 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd452b7f6 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x4f60a390 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5401559c comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x8e322952 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9d75c3b0 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa89a740e comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xd49f6ba5 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xfa3feb78 comedi_close -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x6935b655 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x13d02b33 most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2c39a82e most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x3da74fe5 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5850fbb0 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x78e11aa8 most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x83fe6ce3 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x85408575 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xaa67c1a0 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xaadf78a2 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xaf5740b8 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc09ea58e most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc305fc3f most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x57fcbbc5 nvec_msg_free -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xb23d9c1b nvec_register_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xf29b191f nvec_unregister_notifier -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1ca18669 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3bc80ff0 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4172e317 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6496a532 spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x753bef59 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x86442336 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b0f97d9 spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xab24f0b4 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb2978dbc speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd3f03955 spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe622aa2e spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf1f9a552 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0xd2d2d9f8 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xe2850b25 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xfa0d8cd7 uio_event_notify -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x3be83cdc usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xb753d5a9 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd1b5f3fe ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xfd9da0ee ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x51d23b79 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd4267473 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xe6b574cb imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x47557685 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4f964ce0 ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x83284dc9 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x997f02bd ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa59ffe64 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe4ed090f ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x082015b0 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1a20055b gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1d41292c gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x220ec5b3 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3c31bd42 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x64c2f380 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8ed39b27 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9e090a3a gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaac684ee gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb31eeefa gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcf41add0 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdb3665ec gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdbd0bb93 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe57dfdc1 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xea4e441f gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4d2167cf gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x692041fb gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfa82ecf0 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb39f842 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x094007ea ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x16acb2ba ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x5802e78c ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0a90dc86 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1eaa5693 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2becb557 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3e0bb60f fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4cef6e2d fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x67f02d54 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6c94b43f fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x74d8e233 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e6aa647 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7ed8c698 fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x89a7b155 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa6aa8e8a fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcfc38887 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe121e62f fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe8ca405a fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x033dcf43 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0816dd90 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0a74cabd rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1b9011f2 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x23b4a4ff rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x562b5b4a rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x60b60459 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb672c89a rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb76c160d rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb7cdc3ef rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe6fb139b rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xebd38046 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf11ba47b rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfac6a2ca rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfce8a413 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x00113b7a usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0f7bb61f usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0fe31602 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x19a9b760 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1ab390a7 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d58a88f usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x202bcbd5 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2178065f usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2ef9e1ad usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3288dcba usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3516f89d usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x37b94f6b config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x458f6264 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4c09be81 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x61983464 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7848be03 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8315fb9c usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x838a92ed usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f856728 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x90942b88 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94c8dc16 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9fa1d4dc usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbb8fc880 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbe653efc usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbf0e9783 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc5b3f964 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc7378e09 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc9d22445 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe02b0d03 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3a52516 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe68b56db usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeb442dc3 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xc53386af ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xe5da0bd4 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0767c431 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x14cb5c6c usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2e9fa0e2 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8e131631 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbc0382e9 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd9c7e947 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdb586bdd usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdc4c01cb usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xecfd34b4 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/musb/omap2430 0x6fb55e1f omap_musb_mailbox -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0xf0b6a12e am335x_get_phy_control -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x133e06e7 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x05e6b87d tegra_usb_phy_preresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x0f7adff0 tegra_usb_phy_postresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x4e32f4a7 tegra_ehci_phy_restore_end -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xf0971542 tegra_ehci_phy_restore_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x50a24895 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x00b13162 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0b4b050d usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x217baec9 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2f1be2eb usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x32ae36b0 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3de6a9e2 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x427d27e9 usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4491a3bc usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x596ac14b usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5ecf0e07 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7082e674 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x74990b70 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x88893af9 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa0f90fea usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa3d44fc7 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbda4d8f4 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc7df9da3 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xda4966d0 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf5aa9fb6 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf9263583 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfba25f10 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x06604000 usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1a5f8c47 usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x247260c5 usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3aa05bc4 usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x43fa035f usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x463dfbf0 usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x562c44a3 usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x81839736 usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x89720cef usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9cc8b0a9 usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9eb8fdf3 usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa7e561f9 usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xab956ae4 usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb8749f90 usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc7ecb708 usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcc24ed8d usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xce4c1015 usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcf3e3f72 usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd797645c usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe578c695 usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xea7b3a37 usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf65bb5d2 usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf7d097d3 usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf8705fd2 fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x07688e29 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x23599d0f usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3e5d9598 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4767c5e8 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x523d2e34 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x591d8be0 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5e36359e usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5f6008fe usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5f683528 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xad1fe79c usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd46a12f3 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe0d2bcf5 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x13d9bcc2 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x1e4d33d4 rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x78f6df13 wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa890676b wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb252b55f wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb747b0d2 __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcc881957 wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x24d5be7f wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2f181a32 wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x42e95f44 wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4ad7a157 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5913b2cb wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7b299cb7 __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7bf12a10 wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x830efb60 wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x932cfc8e wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9a5151f9 wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa9a208cb wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb3c394d5 wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd354c1df wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf4ba6535 wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xd5622ec3 i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xe2e025c1 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xf862417c i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x212c3597 __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x4b3c7eed umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x6167455f umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x80612f5c umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x81dfe60e umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa130843a umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xdf0aec55 umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xec17e906 umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0536f670 uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0ad4e620 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fac2ea9 uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc0d35d uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x13471530 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x225c7fcb uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x22ac50c7 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x22b56803 uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2544b431 uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2787770e uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2a8a80b6 uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2e30cb27 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2fc06898 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x471b68d6 uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4aafb53f uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5385ed62 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x54f858fa uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x55fe35eb uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e6da8a7 uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5f839933 uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6c911aac __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6f683be7 uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7537e357 uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x75eb9d7c uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x76cd6e1e uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7ab37969 uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x81e81a4e uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8ab87fb1 uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x942867fd uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x99515fbf uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9c328818 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa56923ec uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb059847e uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb10c4262 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc7ff0b8e uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd94e7f5c uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf6fb69e9 uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/whci 0x77b97abd whci_wait_for -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x2b748483 vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7c21d21b vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x9667bd4c vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xc80c1b74 __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4ce91299 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9d873de6 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbdf292ae vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xca11a82e vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd8a1f46a vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfd19fbba vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x49cf06f5 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x9b49b8c3 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x043032af vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0d27506d vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0dc2126c vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2829b3d5 vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2ac8094a vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32bcc5e8 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x34151da2 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a2dc1e3 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3b8c1a5a vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x45384bfa vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x472c77ed vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x49cfd21a vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x545bfa50 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57443988 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x61a8e576 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6754a1d3 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6f0ea7db vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x786be0e4 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78c81500 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7dee0016 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8a6f5abb vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d70022a vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x902e3bd8 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xac280102 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc4a2075b vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcdbe6e39 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdf097091 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec066801 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xed63198e vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfc00e30c vhost_log_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x26c03007 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x65ce1ab6 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7a43d89a ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x82c424c8 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x986a8133 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb99558db ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc665d816 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1a0c794b auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x2e2f8c48 auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3a0cda0d auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x41556636 auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x73b18916 auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9a8ef067 auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb325e218 auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xbf3acc50 auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xef7c6cf9 auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf543afb6 auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x49e08e0f fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x16cd94e0 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xe2520901 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x4438286d sh_mobile_meram_free -EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x656ae9a3 sh_mobile_meram_alloc -EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xa0398cf1 sh_mobile_meram_cache_alloc -EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xcf6c025f sh_mobile_meram_cache_update -EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xd29a246f sh_mobile_meram_cache_free -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x3c789401 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc5dff0d5 sis_free_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1525a347 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5386d1fc w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x730ab01b w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x824af5a5 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xaceb0589 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb5d2150a w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc6934e04 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xeb9a7cf3 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xfa994e14 w1_reset_select_slave -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x776527ea dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xafef6cc3 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb1cdf304 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1e47d509 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x32ca88c1 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x32e4106b nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x655ab149 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6bf19caa nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7e007e01 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbbdfeafe nlmclnt_done -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x047341cd nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04e3a35f nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x073ab369 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08070aad nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0acc26ed nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0babaec3 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ca226fe nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ed857e4 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fa70672 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13348142 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14583b9f nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16952231 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16eb0e15 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x192e8ec3 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1aa63e20 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b25013d nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x236916aa nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x238d813d nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x241fedc7 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a0772ba nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a8010e9 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a9afaba nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c0843de nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2df8ba94 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3479a6e9 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34f6b7af nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e3d0a5 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bc2c019 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ebc80c3 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x425cce74 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42656ee1 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45870b55 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x480902b7 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50400e41 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51017291 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51582c9b nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54073fa9 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x549268b6 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x549d0a6a nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59a49f54 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b7127ea nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b7a9ea8 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e6b5dae nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6081053a nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63692700 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6429d42d get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x654f9d77 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x660142b0 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x682a2e5b nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b730554 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ccafc00 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7097b50a nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72fa3abd nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76aee407 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78f45945 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8336bcce nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8340439c nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84100a2d nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8569fbcb nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87f138b2 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89a5a03d nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89e8d19e nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a11e096 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d1e623f nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e3978e7 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92c443f5 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93ca8dd7 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9826bea8 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98cef1f7 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a328663 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a68c9f1 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ba7fc55 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c08bf12 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dd351e2 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ec27ad7 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa19fd4bd nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2992edc nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa78ec9f4 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9b556fe nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab507d90 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac144f49 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac19f8de nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xace8c698 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad6b68b6 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb198b1d6 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1ae4a5f nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb31a5872 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb37da90f nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb441d6ee nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5574c40 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd418766 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe20f145 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe4a1744 nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfbe2265 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc15b5f39 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc39fb419 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4591417 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5906c76 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc4f5405 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcce0cc71 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf8b98f2 nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd14408f2 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd25b3bab nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5616b85 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5b7289d nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6cbd1a4 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9223cdb nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9ab254c nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbb6a5a0 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1898cbe nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe377e449 nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7dbc1f9 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea354f4c nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec8e250a nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecba604d nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee51eb52 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2df1052 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3ed9ac1 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf83105fe nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb747ef2 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcd5ca28 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe4b04e3 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfecfc0d1 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff086224 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffe28a0f nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x8cac92dd nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00236b7e nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x037993e3 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08e07a57 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d65254d pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1658593c nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1cd1ef4d pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d7e22a2 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e824ce1 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e9b30f9 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x276cce73 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x311d32ef nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c8b2841 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3f87cc78 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x432cb8e9 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x449c50f5 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x451df9c1 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ab56cff pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d88dcb2 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f667c75 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50a78c71 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x573c1085 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x596f6669 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63d71669 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66bfed88 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68befb8e nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x729e8cc6 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x737c4cd2 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74b8e577 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8164e753 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x848c7d06 _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8595eda4 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89406f33 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8bb3696f nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9324220d pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x933e6009 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9dc1b96e pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa075f2ba pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0d609e3 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3f83416 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa85eeeca nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa0b0a91 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabc6c776 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae57df7d nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb30f007f nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3b2b45c pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3cc296d pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5c036e1 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb908aa3d pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd4193f1 nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc14f8d8c pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc171b767 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca05a008 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca810620 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2a2ad5d nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7f661fe nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3460e94 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9600f3b pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed47dbbc pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3346abb pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3b40b25 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf53047fa nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x15de0e53 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x8fadc5b0 locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xe837954f opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x8363dda9 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe98d82af nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0b124eaf o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x282df55c o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3ab8078d o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x59aafc97 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdf5ec43b o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xebd444b6 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfc78fac1 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x16b8052c dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1d7ed91a dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa251d977 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbd1b4930 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf5175409 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf5a93f1e dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x249c7552 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa351d367 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa99a6a51 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x3fbb8eaa _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xaa77fb9f _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xcf7c918a torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x502ef512 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xae143f88 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x2d107b5e base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x41ecf87a base_inv_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x72eb4ea9 base_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x767b8ba8 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x8d490167 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9af6b231 base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xdba4feef base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xde0e6eb2 base_old_true_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x1d9444bf lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xf82ab576 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x35b7638b garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x45e39638 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x5b9847a2 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xa7f22b47 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xd3a4ef11 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xdcd09b3c garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x0a047506 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x2cd013dd mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x3773593a mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x782d8658 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xddbb4af1 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0xf2d32607 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/stp 0xc31aa6aa stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xe7304a53 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x2e5d8eda p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xdb7faffa p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0x0b0eac73 ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x274ecf31 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x290e7d57 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x296057fd l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4d320592 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x55cc53f1 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5b09cb7a l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6601fd75 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdc799747 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0456c758 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x11984861 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x504c2db4 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x585eac65 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb5de85c7 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc6bf08c5 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf58aee5e br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf86dd1f5 br_deliver -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x20590552 nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x86cd9b62 nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x022a8abb dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x02701486 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x09a123b7 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0x14b80968 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x178d8ff5 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x19724da9 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d0a9edf dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x31026450 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4490eb70 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x44a29338 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4c914dc8 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5034dece dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x511b973f dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x595a587e dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5a1d1820 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x68b35e53 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x69f298b0 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x75e404e9 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c6bb17f dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x83162d8c dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x964b061a dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa29c3b3f dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa5610879 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa5fa86a7 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0596156 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbc8ac681 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc65c7efd dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xca2ab20d dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe1afa795 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xedc30d86 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfa3ca275 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfb99e23a dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfbb2f37a dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfd810f0a dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4d50e5f4 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x71506759 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x85aee5de dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb1c8af7d dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc8404e33 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd50a83c3 dccp_v4_connect -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x480315ef ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x48e74295 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x49a380c1 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5716fbd0 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ipv4/gre 0x0f441362 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x3a1f7f6c gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x43ae8c01 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8db4f827 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa6c2648f inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb2a282f2 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcd51c72d inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfe393ec9 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xcd640586 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x156b838e ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x17651cd1 ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x19c082bc ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x35e9eb5d ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x37fd772c ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x68e1d29c ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6ea719bf ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x70a7ea1c ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8f6cff9b ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9cc9ba00 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xae39822b ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb29ec2fc ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb5a4deeb ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf5fa9745 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf7cdf94c __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x37ba3a28 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xf77b2e76 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xe287ecdf nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x0e500626 nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x1be7e15e nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x1c8eafa3 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xe0c5a826 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xf9ed7709 nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x509fa32d nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3e73aeac nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x75df1628 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa4154bae nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xad1677f7 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xaf8178a6 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x77341adc nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x24667925 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4bf934c7 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5e0860c6 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x751905d0 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xdff69087 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0a87ccda udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2bb1535e udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5c017f4d setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc76c1806 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2093112f ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x30f04ba8 ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3b68f23f ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x75e49cce ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x8089e458 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9e9c73cb ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfe82c82b ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x30b60e9d udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x6f2eff81 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xb6fe88f2 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x10215010 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x851cb138 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x22790dc9 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x15681d74 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x19582eea nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x81d99c36 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x98e7f031 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb11b6eaa nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xea9a4775 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7ef795c9 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x96da8fd0 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd6d5a837 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf3073e55 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf907d0b2 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xb2acd74f nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0ae9a1e1 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x10cee256 l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1c48c86f l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2cbdcca0 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2eec7465 l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x43538a75 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4d8275f7 l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5ec9d198 l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x65fc4e49 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8e4e8d6e l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9c0a2fbb l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc2cdc847 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe275e9ec l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xed3a7b52 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfa97cd34 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xffabbc38 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x270fa6e2 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0891bb50 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1baa3be4 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x36264b42 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3da3861f ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x48c8da00 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4e6a1d52 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5d8d81ec ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6e367810 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x802e9406 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8b903c22 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa33db093 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb00b441a ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe4da9c3f ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec8883dc ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf589a000 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4f23b469 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xcf520a84 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd67e8843 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xebf0a090 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x21a7c3db ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x39376f6d ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x656d154c ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x758f0bcc ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8df6ba37 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8e932548 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x96319d91 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9b3762c5 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9c89e867 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9f071646 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc2c74a45 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xca17bcf6 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcabc7fbc ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeb50e79b ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf78dfb7f ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xffde0ddf ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0f00b9f9 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3683b810 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x98370690 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xcbe37ab3 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03a00ea8 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x065f2231 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07cfd8c0 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x088fc5df nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10a494ac __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x111b6b9e nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12ff1982 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1368b02c nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x150119b7 nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x158a13b2 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x198a8d82 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19a84fc9 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e70a1ab nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f9bda07 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22a5855c nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2531e1d9 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2905ccf9 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cc8ebd2 nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e28255d nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30b77b56 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34de9860 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35fda94e nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3838d8b9 nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b2ea8cf nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c1a0ba1 nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3da0fe0f nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4088b6fa nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42f6a4a6 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4302037e nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44d21619 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44d7cd13 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x496c5c13 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ab5dc1c nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4adde19d __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58346323 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d863626 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6252e5c3 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x629ae157 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6adac265 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6dbdf508 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f10b959 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fafb841 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70809961 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7087d3f5 nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73269528 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7883be9e nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d240ca0 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x822d55c5 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x880ab31c nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ce0f949 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8fb3bc7c nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9304aa9d nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94891c4e nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9789534b nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a457fff nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c43806a nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c8a4361 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaae8f949 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab7a3c09 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xacee88fb nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb735109d nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb767c97e nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb939e633 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0d810d9 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2abd2fd nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc540c605 nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc589f63f nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc3474d1 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcfa559d9 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1c455c7 nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1cbede4 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5b83588 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe210676d nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea49e2ee nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4894635 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7c9e29e nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8da89c0 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfac96d0b nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc2ad7fe seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe021653 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xb678eaad nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x42d15a89 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x508fcf24 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2badc305 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x436c80d0 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6132ab47 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6c227a4b nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x849ee68c nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x884fd38f set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9d5a31b2 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xac28275f get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd1420e7a set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe384ab96 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x5de087c1 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x35f989f0 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x5a540cc4 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc7c81f14 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd71bfbb9 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xa43ce7c8 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xbed4cdca nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1aa4f132 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2bc09794 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7573e853 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x79cb44cd ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8b813426 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb6d17ef7 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe0fd63ce ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x40197064 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x16a6fe5c nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x0da4ebe9 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x1b6e5be1 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x374b6b59 nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x455bb138 nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x268ddec9 nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x359bd7f7 nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x584e5fc6 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x613a8c4f nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x996554b1 nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa5323388 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbeb0e947 nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf07827a8 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfb91769c __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x60773bf5 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x8563fb85 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6b3f7ce1 synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9ce85cbf synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x041d2c0e nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x15934938 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a2028a3 nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3a382ec1 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3b746223 nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x53db625b nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x573779a3 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6a6f05f0 nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6ea535ae nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7ebb6551 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x82bf08e9 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x84b51694 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9c8e5a4e nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbb9a989c nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcc191867 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf6f261b nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfd4ba3e9 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x53d5c1ef nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5f2411f3 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x799292f6 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7df10808 nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8a4e29b0 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xaf8a962e nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcc6fdebd nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x732343b4 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf92f1b74 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xfbbc8415 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xbf8f71ab nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x5735f057 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x6151b9ff nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x7f9124cd nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x57141111 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x8ec224c6 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xda9e85e3 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xdd9a927e nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xf004cb3d nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xfddcad43 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x21404ddc nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x26f4fb9e nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xf1b7f5b6 nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xf7ce98ee nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xfec52c39 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x16f885f9 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x23e993f7 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3489f728 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3dbfac06 xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6c8133be xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8d03a2f0 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x92af20fa xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa4f31cf6 xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb357c1b6 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdd4a5d42 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe9f0daad xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xef7d969e xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfba78d7b xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x57909dc1 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd0f26ea3 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x4d8701ba nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xd9c2df26 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xf580f8fe nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x08d02907 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x399fa2ee nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x3cdda86e nci_uart_set_config -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x08b94c95 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0dc18c45 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x16d1251a ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1f313ad4 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6fe3f637 ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x701db216 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7bd96ddb ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa9d33625 ovs_vport_receive -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xaadbd623 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x27c5614b rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x29fa5dad rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x2a5cf89e rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3a1e9c96 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x3e79df29 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x4622b59b rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x4ff240c7 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x6c192039 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x72ee2cc5 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x8a4d93a7 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x922f9461 rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x981054a0 rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0x9f881e48 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xa9f2b353 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xb3e38738 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc2f8ef86 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xc5404893 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xc642cc2c rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xc7117ea6 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xd075fd00 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xd23ce9e7 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xd7290a73 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xdb8ffc38 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xeb785175 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xec2074cb rds_conn_destroy -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x31890007 rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xb0aec96e rxrpc_register_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x0638addb gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8adfb9e0 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe5c0b9e0 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00346e1a rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0142af05 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x032a9f9b svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x038ebbc7 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0479d502 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x081b761d gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x090128af rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09f9177e rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a9e3dbb cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f2b4192 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ff2d89c rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x108bfd96 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1135ff8c rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16060cf8 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17881a93 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17d98bfd rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19adee34 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bb151de svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c7bf399 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d71ece4 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1da4b62c svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e40c41b xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e693552 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ec71f84 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ece1c20 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f836035 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ff72c64 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20c1b757 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x228105fe rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x240dec9b xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24beb62a rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24c9ce03 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24dd38e6 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26d0a0aa svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x271a6d71 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x284e2fc3 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28c3e87e cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29845422 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a01cbc1 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b6b9569 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30e7ea66 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x310f7d50 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x318284e9 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31fab267 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33d0346c read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x350a797c svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x376c28ff rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x391e2624 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a164963 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a1d0ea0 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aa8004e xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bdf289a rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be97fa1 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fc7387b rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fec007b bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41275d36 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x434ce5b1 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x436c6c6d rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4445f189 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44a049f8 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46142b7f xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46b29d78 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x472d09eb rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47b31ca8 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49260100 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a4b5329 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a71f5ff rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ac6982f xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b9747a1 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d561a4e rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e1dc7f7 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e34aefe xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f40a704 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f674bfe rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50dd5e41 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52cc1626 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53fc680a xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x550b7fb5 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58821a78 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5925d00a svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b5898be rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c44a2d0 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cd2c928 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ce45e0b svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d81f9d1 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f7dd3ad xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61904ccd xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62fb8a42 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x630e4f67 xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x644abe98 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x673e149a xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68a47057 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b65c971 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bd011e1 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c13d402 cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d00e788 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ee51848 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71b79f62 rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x723fa6e8 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73466131 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7476108c rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74c6afc0 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x771d0b84 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77ca6ebf rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x785f7f4b rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79ce61df svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c8155c1 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f28d5f5 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83b43a3a xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84e8329e xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85c39f3a rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x885e893b xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c128c5e rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c32c04a rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c6f8cda rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cf6960c sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dea0c25 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f914031 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f99e20f xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fa0f31a svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90a631ad svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91ed74dd xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x925f6017 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95b5ea5f svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a10d2c8 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bc6c220 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c08ad29 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d654ebe sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e69e49f rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa158a103 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa549b07d xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e2d45b rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa8d1277 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab0d979d auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaec1087d xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaed9d194 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb18818ab rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb394d1e7 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3d0a3bd xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4c8be55 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb539362c rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb73211bd svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb73c0041 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb75c96c7 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb795726 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbba7b481 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbcb0101 cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbf04421 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbde29ff0 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfe282d1 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc005c407 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc00a2cef svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1885625 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc23925d4 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2fb4b6a svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6855336 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7e399a7 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc89b2b23 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc89c531c xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8a705e8 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9986d22 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca11941d svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccb68416 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd036066f rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd123c8a9 sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3a378b2 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd441cd0c svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4b9edd4 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd907880e cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda3b9234 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda822df7 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb4f2de9 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc31ed9d rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcaeed14 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcee36ae xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd2af746 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde4d445a svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe329e7ba rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe42892b0 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6291da4 rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe696217c rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec403fa8 xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecaa452b rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0409dd8 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf18f8456 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1ea3b81 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf43b3265 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf489f8c3 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5a63582 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf64e3d41 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7b58b27 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7fb9073 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf939047d svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc2c4f12 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfda687a9 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff56d6ad xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff738f5b rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfff4e691 rpc_call_sync -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0a3562a0 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0a35f74b __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0b939084 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4217fba0 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x452e12db vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6a5eac1a vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x99b48f38 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa06f90fc vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb059d4df vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbde05a88 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd462fac6 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd53eb765 __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe44f612a vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work -EXPORT_SYMBOL_GPL net/wimax/wimax 0x03eedc84 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x0ca1fe63 wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0x1204e61b wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0x369f637a wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x43206c0a wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x7a1109f1 wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0x913092b0 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa605cbb2 wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xabdecd5a wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xaec66b5f wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc36a16ac wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0xd462db51 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xe641159e wimax_dev_init -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x310bb6a8 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x35451f6b cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5737e133 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6b838450 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x97714542 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa39da59a cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb0c10c4d cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb1d4f2b7 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcb44a009 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdf00e75e cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xeab5cee3 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfccd9748 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xff6b2edd cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x08261400 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x418f09ae ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x78fbeefd ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfebc3ee8 ipcomp_destroy -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x77e45908 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xf714ce8e __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0ab34b91 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0ed830ab amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x300ea371 amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x32ab7640 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc1730f05 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc5f52728 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xecfc4a6c amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06b8250c snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07875852 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f1b0cc6 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f6d4932 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13a3ca4c snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17e50235 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18f15a8a snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c9cb2a3 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x255fe4fd snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a8afef7 snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d272ae5 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2eab1b0f snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3148ef1f snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31f5a43e snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x322c4859 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33e16f9f snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33f839a3 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3441ba34 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x345f19b2 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x378bba79 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37a55186 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3baf58f4 snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x475749b2 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x484f8329 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49413c3d snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ad9732d snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4bd1eedc snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c995392 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5311184f snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53ae54f4 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62d1f253 snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x688c78dd snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71425c53 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x729770fd snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ec580e4 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fd5f742 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x812c7991 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86431bfd snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88d65f4f snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a01f973 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a3be593 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa13321c8 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa39304cd snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3ab4d6f snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa5de8f18 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa655955f snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3741404 snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb6329d12 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2998b9b snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc88acee6 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8dc4a4a snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcafb3cfb snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd35deeb5 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4075b4c _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd449497d snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd44dff9a snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4f69de0 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5249469 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd6403819 snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd81d7882 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdbe12ac9 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2959df1 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7825bd2 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe805d7a4 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf279a8f1 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3cf4fb3 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4ec0eb9 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf66bbbc2 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf69f8826 snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfaa140f1 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfd3ec0a1 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1997cec1 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1f8f3cec snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x27e05eac snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6216af9b snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb931efee snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcc31d77b snd_ak4113_create -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x024e341f snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05bef204 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0642da15 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06ce6dc5 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0903e0d5 snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b94facc _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bca0ae1 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0dd02c49 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12f1eefa snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13800b44 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15a22c07 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16dad70d snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18cd7464 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ad90129 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c580655 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fbd3d29 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2010f945 snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x217b7464 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2194c252 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22fea336 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23e75f87 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2756c271 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a97888d azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cdb19fd snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d8e760d snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fa561c2 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x302c80c7 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x305a9642 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30beb269 snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3641b3e2 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ba653b snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b47956b snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3be2545c snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d35efae snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3fd3ec4c snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45793641 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d757a5e snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4def43fa snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f24c377 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f2637ab snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4faede25 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x514861d4 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53475079 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59f73f2c snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c43f823 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cfb6955 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f878a12 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6704f145 snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6838b73f snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d3427d6 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d6b3d5d snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7235842f azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x738e5a98 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a86e4c5 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b6f90b9 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8011e13b snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80d7340b snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83828b58 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83ae850c snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bacd17a snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bfa4a06 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c36b79b snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d71e896 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93906a0b is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x993e712f snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a478918 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0002e47 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa195b328 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4589cca azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6474d02 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8b67e1c snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa0bcee6 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab2f7696 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0795ad9 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb141a919 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2e2b4eb snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb37b5890 snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb46ee3a3 snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5e8a97a snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7a60e44 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba7e4084 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbda6e393 snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf189e79 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0e4d9e4 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc211e849 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2310049 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc391897d snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3ad92b5 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4e9e99e snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7e95f23 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb8b0373 snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbc44eb4 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf24494e __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd06bb990 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0e812ed snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0eed35c azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd20a1d4c snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3685a38 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd47f5fc2 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbde3695 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2c6c3c9 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3d96535 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe544980c snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6e294bb snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe774b659 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8b94723 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebfccd6e query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec4fd149 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeca53b7c snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee8c284a hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeed9865b snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeef3c569 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf03419b6 snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf10e98e4 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1779d5f snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf32a8149 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4f6ee89 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6231267 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf623ddfd snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6790b2b snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6bd0457 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfca58847 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfda0168d __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe7be918 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0950a156 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x248a4ec1 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2999c080 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2f6a7c5b snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x364ac8e1 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x410996e4 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x432983f7 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x48228890 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4b69eb30 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5b81b2e9 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x70527bc7 snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x87d18f90 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x91db8926 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x92ce0bbc snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa61b622c snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaa92b96e snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb6e7d123 snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcd4b3078 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe27444ac snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe6d26203 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf79c1a9f snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x2371e14e cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x852b36aa cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x32f922ca cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x4d656788 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x5d7ec08e cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xe4575bcd cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xe4694c9f cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x082eeac2 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x966e0bba es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xa71c4ce9 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0x3359fcbd max98095_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5964adcb pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x658518ca pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xa78844c2 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xce715095 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xe5656f4a rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x458a759b rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xfb3ef510 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x74bf48ac rt5677_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x67057ff1 rt5677_spi_write_firmware -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x952df541 rt5677_spi_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xdc9e2327 rt5677_spi_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xadbf8f0c devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb09eaf35 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xdd112d95 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe725b9d7 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xed05a075 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x77007130 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x5390f7b2 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x8c6705e4 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x5b2a99d8 tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x8b9ad0c1 tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xd122756f ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x2567a39a twl6040_get_dl1_gain -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x517b7842 twl6040_get_hs_step_size -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x7cb1ec2e twl6040_get_trim_value -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xc95714af twl6040_hs_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xe7925827 twl6040_get_clk_id -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0cc23586 wm_hubs_vmid_ena -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x14e597c8 wm_hubs_hpr_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2d39f423 wm_hubs_hpl_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x41423255 wm_hubs_set_bias_level -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x54f64e9f wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7e13131b wm_hubs_add_analogue_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x8c536927 wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xe716b898 wm_hubs_update_class_w -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x394f392a wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x4eb9c808 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x71b7bd43 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xbcc0ac93 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xaecc39b3 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x2745a803 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x3432073c wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x5d63eacb wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/davinci/snd-soc-edma 0x5030bb06 edma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x0ae97236 fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xe57eab85 fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/omap/snd-soc-omap-mcpdm 0x184bb4df omap_mcpdm_configure_dn_offsets -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x04960e38 asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x81c9abab asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x84390c5f asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xf2310422 asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x1aea00d3 asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-idma 0x776c599d idma_reg_addr_init -EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0x1d564a00 samsung_asoc_init_dma_data -EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0xc6c524e5 samsung_asoc_dma_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x9facb8e2 tegra_pcm_platform_register_with_chan_names -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xa6fa6136 tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xc95f30d3 tegra_pcm_platform_unregister -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x1e61ab18 tegra_asoc_utils_fini -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x1e7b35a5 tegra_asoc_utils_set_rate -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x543d4bbb tegra_asoc_utils_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0xabeb0ebc tegra_asoc_utils_set_ac97_rate -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xb52cfca4 tegra20_das_connect_dac_to_dap -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xbced7431 tegra20_das_connect_dap_to_dap -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x04ecb471 tegra30_ahub_allocate_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x55a40206 tegra30_ahub_disable_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x5d7237ff tegra30_ahub_set_cif -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x6fe20143 tegra30_ahub_set_rx_cif_source -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x72a91a91 tegra30_ahub_allocate_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb419329b tegra30_ahub_disable_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb4a9367d tegra30_ahub_enable_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb81bca9d tegra30_ahub_free_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xc78c7125 tegra30_ahub_free_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccb67e55 tegra124_ahub_set_cif -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccc98372 tegra30_ahub_enable_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xe549513a tegra30_ahub_unset_rx_cif_source -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x103ece5d line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1880319a line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3fdcd1ce line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4c2dcdf8 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x54dee2ea line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5ad52350 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5d4ecb8a line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x61db6d24 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x62905daf line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6a85d968 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb36d2ff8 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xeda21742 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf34d266a line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf3c62a2f line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfe050da3 line6_disconnect -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x0008aeeb devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x002acb04 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x00543de0 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x006a5394 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x0097d28a __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x00bae356 rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0x00bcb642 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x00cff1ad stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x00eba5e9 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x0112fbba xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x0133a97e apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x01366308 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL vmlinux 0x013aa668 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x01630ec5 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL vmlinux 0x018eace4 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x018edcce cpdma_ctlr_dump -EXPORT_SYMBOL_GPL vmlinux 0x01a75cf0 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01f5384a usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x01f6c29e devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x0200b1d3 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x0210454a extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0241c7ae invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x02460dde gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x0279d228 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x027b6181 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x028045d6 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x02871c99 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x02b1121a gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x02bd074b usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x02ce8610 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x03083522 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x032375b0 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x03310ea2 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x03501e86 blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0x035354ab spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x03623cbf sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x03669cbe irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x036846d2 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x0368542d __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0379cee9 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL vmlinux 0x037f093b balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03a3d808 sm501_unit_power -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x03e44983 ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x03f34eb9 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x0402b504 __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0x042002bb blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x04387e47 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x04620be6 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x04687e67 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x046d6bf0 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x047cf436 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x048d152a ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04bc9ffc led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04cd2cb7 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x04d1130d pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x050cb70f ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x05208e81 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x05241c20 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x0527c167 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05542702 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x056d644c __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x0590db21 wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x05dd1266 _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x06114741 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x06153a59 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0618170b balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x06438115 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x064ed2cf netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x06681a61 virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0x06751eb9 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x06a4078f __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio -EXPORT_SYMBOL_GPL vmlinux 0x06dbfe4a uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x06f4e262 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x06f64b7d gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0x07049761 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x0707fd07 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x072937ba unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x074068eb fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x0757c9f3 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x075e5c84 iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x07621bf7 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x07634306 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x07684a40 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x0797945f snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL vmlinux 0x0797e492 part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07bdc5c2 posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0x07c54153 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x07c958d3 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x07cfa8d8 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x07fac35d tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x0800c483 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x0807d7ae pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x081c2f75 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x083057fc xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x0836c6eb ahci_shost_attrs -EXPORT_SYMBOL_GPL vmlinux 0x08493c3a mtd_get_user_prot_info -EXPORT_SYMBOL_GPL vmlinux 0x084f8fab genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x0858b673 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x085e902b snd_soc_info_volsw -EXPORT_SYMBOL_GPL vmlinux 0x0875930a of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x0877e884 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x08828030 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL vmlinux 0x089abf9e scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x08adfe44 sdhci_alloc_host -EXPORT_SYMBOL_GPL vmlinux 0x08b2ce27 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x08f11df5 ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x08f25a59 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x092b2133 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x092c8ab4 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x093af436 platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x0958637c list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x0967b96f of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x096b63a6 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x096df3c9 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x097bc3bd ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x0983ecd5 devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x098fb4ee vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x0994294e pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x09ad7a97 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x09c9e118 page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x09e22fd2 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x09e7aa42 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x0a118e68 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0a3b3762 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL vmlinux 0x0a48c261 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x0a58724d da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x0a5e5132 omap_dm_timer_set_match -EXPORT_SYMBOL_GPL vmlinux 0x0a65b5b1 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0x0a6b3024 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x0a806a65 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x0a80a166 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x0a921f23 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x0a94ac2d devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x0ab2537e irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x0ab308a3 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x0ab7fb82 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ab83758 sdhci_set_bus_width -EXPORT_SYMBOL_GPL vmlinux 0x0add754b blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x0af5c193 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b65e2a2 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x0b932790 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x0ba76805 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x0bbae511 return_address -EXPORT_SYMBOL_GPL vmlinux 0x0bbba62c of_get_nand_bus_width -EXPORT_SYMBOL_GPL vmlinux 0x0bbda2e1 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x0bd09e43 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0bff279e crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c1ed373 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x0c1fd328 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c320aec pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x0c4e4013 mtd_write -EXPORT_SYMBOL_GPL vmlinux 0x0c7eefc3 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0c84da71 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x0cb64d33 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0ccad57c scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x0ccfaf85 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x0d01e180 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x0d2260e3 md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d6ae5c2 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x0d6e9a1e device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d96c82a serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x0d9b98bd scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x0dad8e6e pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x0dcf4546 regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de60f83 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x0e16c05f ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x0e318065 __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x0e5bb2a5 amba_ahb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x0e7259e2 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0eabea56 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x0eb148ac dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x0ebb66de ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x0edf4f03 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL vmlinux 0x0ee2e6af regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x0efd9c1d omap_dm_timer_request_by_cap -EXPORT_SYMBOL_GPL vmlinux 0x0f124349 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x0f2e98b4 i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f33c4bb fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x0f33f93e md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x0f6b7d19 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x0f6e9ed5 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0f807aff pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x0f80dd01 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x0fa1eee0 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x0fa38c94 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x0fb302c7 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x0fdfc6a0 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x0ff97d06 snd_device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x0ff9af09 cpdma_ctlr_int_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x0ffa93fb gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x103d0bea security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0x104f35e9 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x10543a39 dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x105cde41 of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x106f9c51 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0x1073f2d6 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x1099f010 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x109a04f7 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x10a04cf5 mtd_del_partition -EXPORT_SYMBOL_GPL vmlinux 0x10b15e52 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10f33a68 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x10ffec74 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x11025677 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x1113d167 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x111f78f2 mtd_unlock -EXPORT_SYMBOL_GPL vmlinux 0x112867b6 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x11434fda rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x11438bd6 arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x1146dc43 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x1152f491 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x11537736 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL vmlinux 0x11710484 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x11764ab2 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x1183300d irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x11964fc4 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x11b22484 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x11b95d5d regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x11d839ae posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x1215ad96 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x121e09d2 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x123dfb9c sdhci_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x12407aae subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x1241e9db usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x12527762 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x125d89cb usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x1293ebfa srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x12ca90f4 ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x12d61247 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x12dd45f9 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x12ddb1a6 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x12e2000c of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x13354608 scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x1338b824 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x1344a99f fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x13451233 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1350d93d crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x135bbe71 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x13693117 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x1371cab8 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x1373a10c list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x137b5e2c hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x13979951 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x13984ba7 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x1399bbd8 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio -EXPORT_SYMBOL_GPL vmlinux 0x13bb4133 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x13c69526 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x13c8b53f rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x13dbe2b4 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x13e1864f stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x13e593b4 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x13ecf0be __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x13eeb29d pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x140e6e0a gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x140f5e67 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x1418832b spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x14390279 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x14403e36 gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x1462114a pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x1487b96d pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x14ac1b6d adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x14c210a3 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL vmlinux 0x14cde349 __class_register -EXPORT_SYMBOL_GPL vmlinux 0x14d04840 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x14e46f97 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x15083ec9 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x1510c9e3 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x153b08d3 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x156241af cpsw_ale_stop -EXPORT_SYMBOL_GPL vmlinux 0x158559f8 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x15a34394 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL vmlinux 0x15a70951 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x15a7c21a crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0x15b7ef47 dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x15ea0922 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x15f5b31a kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x16002856 max_gen_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x1610f2b0 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x1614c724 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x163d3b4d sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x163fa874 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x164d5cda skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x164ff07b fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x16532176 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x168fe0ab devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x16d55cf8 pin_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x16e7d3f1 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x16f26651 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x1717a05d omap_get_plat_info -EXPORT_SYMBOL_GPL vmlinux 0x17256fc4 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x17405494 mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0x174078b4 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x1740c4ee exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x174ca45c sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x1758a691 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x1768d5f6 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x176a48a9 tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x17b17f9e watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x17b310aa regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x17cdc969 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x181c8051 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x185237b5 ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x18543a04 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x1859603d ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x186196ae ahci_save_initial_config -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x187cc813 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x1880ffe9 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x188af33b usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x1891ef92 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x189b3d16 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x18c19542 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x191cb8a9 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x192441c6 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x1927a4c9 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x192ebf4b pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x193d04a7 __mtd_next_device -EXPORT_SYMBOL_GPL vmlinux 0x193f5c2a regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x1950b6a7 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x1957341e ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1968bbab aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x197267d9 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x197c5960 blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x19910015 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x19928635 mv_mbus_dram_info -EXPORT_SYMBOL_GPL vmlinux 0x199b598a ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19ad902e __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x19bc2711 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x19d25199 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x19f7977d phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x1a134ad6 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x1a298357 mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x1a2fe7c1 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x1a3975c6 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x1a6137f7 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a7e4ad8 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x1a94ceae skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1a9c0289 cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL vmlinux 0x1aa2d954 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x1aa98085 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1aabe552 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1ad3eabc da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x1ade903b of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x1b170e98 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x1b2b98ca relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x1b3261e0 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x1b64286e ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0x1b6d6c9a ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x1b85672a xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0x1b86f5a7 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b91960f clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1baee47b regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x1bb4d1f1 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x1bb5fc26 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x1bc57e41 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bf9f8f0 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x1c018680 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x1c10cac4 of_pci_get_host_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x1c36dad4 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x1c3d0288 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c587983 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c716881 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x1c754648 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c8d83d6 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x1c9e39ae pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x1cb99ff6 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x1cdd4baa gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0x1cecee21 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0x1cf9e287 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x1cfea3e0 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x1cff6366 i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d2c7f32 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x1d36fd75 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x1d4abf91 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d6c996c phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x1d9fcad8 omapdss_of_find_source_for_first_ep -EXPORT_SYMBOL_GPL vmlinux 0x1dbf87af fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x1dcd7742 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x1de64cd9 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x1e1067e5 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x1e1cb2ac vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x1e2abb25 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x1e4acae4 of_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e6512d4 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1e8679bc usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1ea1ddf7 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebb7a0c sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec23859 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x1ec6f639 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL vmlinux 0x1ece5042 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0x1eddfdff kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x1efc1357 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x1f0e1c0e arm_iommu_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x1f58f3e1 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x1f689687 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1f832206 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f99661c spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x1fa3c99e rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1fa72589 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x1fbcbee1 nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x1fe2a5a4 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x1ff6c8b8 perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1ff86609 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x200eefd9 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL vmlinux 0x20292ee3 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x20423acd usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x20781cc8 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x20869545 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2097d395 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x20a771f5 extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x20a7d6e4 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x20afb8e9 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x20cb3366 of_genpd_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x20d640bc of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x20fd1155 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x210ef0d0 omap_dm_timer_set_int_disable -EXPORT_SYMBOL_GPL vmlinux 0x21228bb1 omap_dm_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x214c430a __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x215491a1 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL vmlinux 0x215d6b35 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x215d91a7 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x21790065 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x2182d647 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x21960ce1 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x2198faf7 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21c72bb0 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21febf58 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x22225b53 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x222471aa dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x22353d14 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x22427eb1 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x22444e56 snd_soc_limit_volume -EXPORT_SYMBOL_GPL vmlinux 0x22595e76 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x226a674d atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x22a89b8e __class_create -EXPORT_SYMBOL_GPL vmlinux 0x22ddd205 crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0x22df50f1 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0x22e63625 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL vmlinux 0x2323c74b kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2324e79d dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x232865f6 regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x233e9dde dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x236551cc snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL vmlinux 0x236be6f2 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x237bba75 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0x237e0996 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x23861419 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238802f0 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x239f0f4f pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x23c762f3 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x23f3d27f snd_soc_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x243b9fc5 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x244ad9f2 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x244c1899 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x245caec1 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24941b17 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24c29f1f usb_gadget_map_request -EXPORT_SYMBOL_GPL vmlinux 0x24cbdd03 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x24cd5860 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x24d4600a dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f80317 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x250f6aa0 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x25482ac8 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2548d4e8 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x25492174 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x25686eda pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x2576aefd devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x257b3a41 vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0x25857d81 omap_dm_timer_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x2592d11a evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x25a42e4a net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x25d5299a crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x25dc2c98 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x25e45974 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x25e4fa8c btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x25fbdc2e of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x25ffa6de ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x261098a6 of_display_timings_exist -EXPORT_SYMBOL_GPL vmlinux 0x2616dea3 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x2629580e pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x2629cacb cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x26373a1e uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x265af428 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x265cdf9d __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0x266a2f46 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x266ced9e device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x267b4f32 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x2697b17e devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x26adb815 thread_notify_head -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c133dc pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26c8b665 cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26ca67c0 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x26d47e17 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x26e02ba4 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x26ea0ac4 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x26f2f49d wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x27183fed ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x27419ac2 tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x2742cb33 sm501_find_clock -EXPORT_SYMBOL_GPL vmlinux 0x27457198 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x2795baa3 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL vmlinux 0x27a186c2 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x27aa9ac6 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27d5a111 soc_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x280b00f6 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x281a79a8 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x2843a5c8 device_del -EXPORT_SYMBOL_GPL vmlinux 0x2848e50f debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x28722874 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x2887afa2 of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x28917e61 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x289a69a3 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x28b16bbb max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x29207411 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x292fadc2 omap_dm_timer_trigger -EXPORT_SYMBOL_GPL vmlinux 0x293aec20 rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x29513f39 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29b8db3b inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x29bd06f1 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x29c616cd pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x29dc3f2c rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x29e16d97 snd_soc_unregister_component -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL vmlinux 0x29ff799d uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x2a0a16c3 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2a0a274e max_gen_clk_probe -EXPORT_SYMBOL_GPL vmlinux 0x2a0e5478 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2a145741 imx_pcm_fiq_exit -EXPORT_SYMBOL_GPL vmlinux 0x2a1959ed __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x2a293e4d pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x2a3e6b28 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x2a4187f2 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x2a4b43d8 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x2a507176 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a816a05 dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0x2aae43f7 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x2ac6c6d9 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2ad9d326 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x2ae137bd usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x2ae34b4b list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2aeab832 sdhci_free_host -EXPORT_SYMBOL_GPL vmlinux 0x2aeceb6c splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x2af2e4b1 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x2b08e881 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b2ca6c8 of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x2b2ecf13 snd_soc_component_write -EXPORT_SYMBOL_GPL vmlinux 0x2b3a1e5c dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x2b53604c wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x2b5f2237 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x2b678ef9 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x2b76df20 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b98ecba devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x2babe81f __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x2bb9a1f1 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x2c1600d0 sdhci_get_of_property -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c6194a3 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x2c6c1378 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x2c773d95 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2ca181f9 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x2cce5c6e bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x2ce50117 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea0a91 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cefd67e debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d236ff3 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d459322 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x2d49649f devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d7e9f24 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x2d8f772e devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x2d9681b6 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x2dad9b05 register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x2db898ba wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x2dcc544a sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x2dd20565 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x2dd3ad96 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e278f88 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x2e2e08b7 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e49da13 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x2e742b00 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x2e8134a7 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x2e87e504 arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x2e8d2db6 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x2e9670c0 pl320_ipc_transmit -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2ed7284b cci_ace_get_port -EXPORT_SYMBOL_GPL vmlinux 0x2edca14d blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x2eea162f fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x2eead55d sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x2ef4d512 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x2ef6b5bf smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x2efb0cfb regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x2efeadd6 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x2f0468ae gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f20ab9b relay_close -EXPORT_SYMBOL_GPL vmlinux 0x2f38a491 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f5d9629 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f6ed73b platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2f7699d1 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x2f7f5b23 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x2f8a1db7 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x2fc28d7c sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x2fc7b541 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x2fd83c0e snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x2fe63cc0 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x2fe7de64 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x2fec39c0 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL vmlinux 0x30299df8 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x302cffbc driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x30323c27 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x3039b3cf pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x3039c487 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL vmlinux 0x3074cdc9 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x30a4f4b3 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x30b2bfa2 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x30c18d35 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x30d1a514 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x30d3839f regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x30eedaac devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31397f2d kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x3143de2e crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x3145bf2c power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x3163a40c device_add -EXPORT_SYMBOL_GPL vmlinux 0x3164e8ca scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x3166fa65 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x316dd9c2 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x31727f88 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x31743b56 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31ca3a11 omap_pcm_platform_register -EXPORT_SYMBOL_GPL vmlinux 0x3215962b iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x324cbfbe blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x3258bab1 of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x325ac982 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x32692fc0 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL vmlinux 0x3288b127 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x32988497 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x32b342ae clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c5dab8 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x32ceb3b3 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x32dd31d4 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x32fdf156 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x330b89b7 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x331a5112 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x331c2892 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0x3320c9f5 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x333818c1 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x334867c7 thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x339dfd6a device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x33a024fb bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0x33d85171 thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x33e20277 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x33f7d5f8 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x33fc6ef4 dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x33fd29c5 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x3404717d snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL vmlinux 0x341643ba omap_dm_timer_modify_idlect_mask -EXPORT_SYMBOL_GPL vmlinux 0x3468feaf pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x346ee368 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x3488b6bd snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3499f996 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x349b62e4 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x34ead649 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x34ed0a04 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x350362c4 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x350e4a88 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x35150d73 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x351e0ab2 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x35219bd0 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x353766e4 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x355c7391 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x3564ccf9 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x3591dd2d inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x359fa0f9 ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0x35d07437 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x35d0c16e arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x35df8fd9 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL vmlinux 0x35f6afa4 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x360c0339 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x360daa1b ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x36159b10 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x362e81da tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x363fc20a kick_process -EXPORT_SYMBOL_GPL vmlinux 0x366456f0 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x366ef43d mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x37114dbb iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x372446e0 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL vmlinux 0x372d8e73 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x372e3340 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x375bcac9 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL vmlinux 0x37923277 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x379c16e6 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0x379cc953 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x37a21f22 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x37fb1eda input_class -EXPORT_SYMBOL_GPL vmlinux 0x3802a55a fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x38145144 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x382a5dd9 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x38308b89 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x38598929 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy -EXPORT_SYMBOL_GPL vmlinux 0x386b6a44 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x387db951 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x38814ddc blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0x3883e6bf ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x38b57dd5 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x38de457b blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x38e269f7 swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38f784e2 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0x3911fbec snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL vmlinux 0x3938c1ce snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL vmlinux 0x395e0bce regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x39664fc7 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x397b4719 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x397e43a9 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x3998b8f5 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x39c4aecc ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x39c6e7ba device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39d04b61 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x39d59859 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39f02c2d snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0x39f3f42a virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x39f5c3b3 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x39f5fb9f ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x3a4cb31c sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3af950d3 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x3b12927d blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x3b23d797 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x3b2d58bc task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x3b87394b __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x3b94a426 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x3ba76e33 iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x3baeceaa show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x3bbc816c led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x3bc5c5ff securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0x3bc6b0ac __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x3bc6fcf7 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL vmlinux 0x3bd01321 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x3bfd1410 snd_soc_read -EXPORT_SYMBOL_GPL vmlinux 0x3c250376 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x3c56869e bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x3c56ab8f nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x3c600efa usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x3c831441 arm_check_condition -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd4bfd4 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x3cd76f46 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x3cdbca49 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3cfb18b4 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x3d0902eb palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x3d16f4d0 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d5fb516 tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x3d6c52bb __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x3d74cf92 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x3d7d2191 snd_ctl_activate_id -EXPORT_SYMBOL_GPL vmlinux 0x3d8b2c73 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x3d9c0c4f mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x3da37b25 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x3dc4bbc7 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dc5f9ec inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dcaa428 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3e410620 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x3e48094a virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e60a34f devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e77fe76 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x3e8f1a82 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x3e9917e1 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x3eb0d5eb scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x3eb454b6 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f58ff54 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x3f601a5e usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x3f664fa5 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x3fb70cf6 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x3fbe32a7 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x3fc1b126 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x3fcbb9e6 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x3fd7f874 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x3fd98acf skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x3fe952f7 __cci_control_port_by_device -EXPORT_SYMBOL_GPL vmlinux 0x3fed2a9c snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0x3ffcab1c ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x4033274e __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406c0c86 ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x4073629a pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x40905a7a devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x40abfa54 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40c86d1f ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40e2b74c devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x40e8fc1c dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x411c2296 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x41258f57 register_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0x4133f42c rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x4163c1aa mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x41660057 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41b5e6d1 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x41c5274c __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x41ca9a17 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41f9cfd7 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x421478c7 irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0x4231d9a9 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x4232b811 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x42490742 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x42557d0c ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x425d30ae pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42b364ef scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x42e8be5e bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x42f33991 pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x42f66283 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x4302fe5c serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x432f028f cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL vmlinux 0x4336376e of_console_check -EXPORT_SYMBOL_GPL vmlinux 0x43435448 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x4346ba04 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x434f8fe7 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x43578cf5 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x436951f6 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x436ddb34 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x43757102 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x4378c42e ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x437fe91b cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x43a17583 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0x43a2ca85 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43aad42f platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43e95f26 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x43eae793 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x43f8e8dd debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x43fc6371 bgpio_remove -EXPORT_SYMBOL_GPL vmlinux 0x43ff3082 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x444ad24e devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4455e859 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x44613f88 otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x4463a8b0 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x44691629 pm_genpd_syscore_poweron -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x4491a03d pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x44ae8631 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44bdc1d1 snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL vmlinux 0x44c181c7 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x44e252a2 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x44f0d506 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x44fe83e0 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x44ff4487 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x45227b56 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x452e1eee max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x454e98ea regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x45612a89 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x45629a6c omap_dm_timer_request -EXPORT_SYMBOL_GPL vmlinux 0x456b9e1a blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45794472 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x457f530c regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x45ab92ad usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x45ba1367 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x45bd0d44 kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45fc1ea8 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name -EXPORT_SYMBOL_GPL vmlinux 0x4607bb96 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x46166d1a powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x4648cf9b task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x4653bb7e sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x467d5361 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46919322 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x46b81979 of_pci_msi_chip_remove -EXPORT_SYMBOL_GPL vmlinux 0x4703bb13 musb_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x47319c32 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x47466de2 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x4746a4f9 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4759063d snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x475fedb6 cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4782af92 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47a800f4 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47b0d809 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x47b6c45c tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x47db7b68 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47fa1f18 ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0x480319eb generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x480f63c2 rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4817ec3b fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x481d87d5 get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x482efa55 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x4837bdca key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x4871fb7c __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x48770b3c usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x487b27a3 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x4884f3d3 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x489c6b4d dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x48a560eb sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x48ae268a platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x48b188b4 mtd_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x48ba9341 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x48ca312a locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x48cb013a pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x48d7d99c mtd_block_isreserved -EXPORT_SYMBOL_GPL vmlinux 0x48dcbc87 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0x48f7c39d dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x492771ac ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x4927e348 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x4929b1b4 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x4941bf24 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x495006b1 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL vmlinux 0x496d5a9f fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x49776780 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x4978cab3 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x497a4ab1 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49b6ad2c snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL vmlinux 0x49e4a4ef __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f4bcdb disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4a133669 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a5462d9 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x4a63f3b2 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0x4a934fc1 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x4a97e17e phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4a9bb315 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x4a9f5deb snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0x4aab35dc ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x4aacc513 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ab1a16b usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x4abd8327 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x4ac46668 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x4af23ce7 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x4b407c18 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x4b6c2fe1 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x4b7c8e00 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0x4b94940c dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x4b98c891 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4bafcdd8 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x4bb33fc9 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL vmlinux 0x4bc21e3b usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x4be9e1dd pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x4c079a11 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x4c14d056 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x4c32ad1e unregister_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0x4c3f2c08 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x4c47ec15 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x4c4df406 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c6923e1 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x4c977c73 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x4cbf4089 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x4cc0d198 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x4ccbfeeb ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x4cd56503 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x4ce5a66e __get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x4ceb1ff0 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d2986c2 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4d3dc0cf skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x4d47de6a regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x4d71ee85 blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x4d9bb018 clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0x4d9d588a sm501_set_clock -EXPORT_SYMBOL_GPL vmlinux 0x4dab11ec devm_snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0x4dc57665 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x4dd1be32 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x4dd8adc6 mtd_unpoint -EXPORT_SYMBOL_GPL vmlinux 0x4ddfb1d3 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4e002fe2 posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x4e0a50b8 tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e21d556 sdhci_reset -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e27c04a devres_find -EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x4e2da19c ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x4e3b546f dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x4e598542 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x4e5fb646 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0x4e60b2b3 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x4e61e840 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x4e90e426 pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x4ea5f369 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x4eb777d1 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL vmlinux 0x4ed5a2aa get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f090aee register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x4f1f3e1e snd_soc_component_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x4f20f9dc snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f480057 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x4f497ffa pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x4f584b2d amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0x4f681bdf of_get_nand_on_flash_bbt -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f780999 snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4faafec2 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x4fd88706 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fee44e5 arm_iommu_release_mapping -EXPORT_SYMBOL_GPL vmlinux 0x500307b3 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x504dcc80 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x5068cfc8 rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0x5076c135 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x5080c352 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50928d5f debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x509f15d3 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x50a88db0 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50de4d7f crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f50bda clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x5104a1fd sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x510d3b40 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x5125c665 mtd_is_partition -EXPORT_SYMBOL_GPL vmlinux 0x51288a2c ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x51370890 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x51484c55 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x515198a3 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x515829c6 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x51656403 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x51664ffc dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x516bc1c5 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL vmlinux 0x51767333 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL vmlinux 0x51855f81 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x51b90d33 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x51bbebd8 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x51d5e3b5 shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x51f37e85 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x51f8103b ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x51ff4404 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0x5200c3b4 usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x5208e43b sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x520e1235 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x5217530f snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL vmlinux 0x523b6a0c rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5243c927 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0x524673c2 omapdss_of_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x5249e8e5 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x524f16f9 deregister_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0x5254dcd6 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x5257dc51 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x525ecd07 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x52768e58 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x52807f8e rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x52851ef2 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x5288b747 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x528970f2 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x5295e707 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x5296e7b0 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x52991f30 of_irq_parse_pci -EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x52b8b07a ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x52bb0828 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x52c0d5d8 scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x52ca1c4a cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x52e9d735 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x52fbf209 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x530b2d59 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x53101a2d serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x531b2900 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x532c75df simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x53326633 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x533668f8 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x534b1fb2 regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0x535133af md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x53529e9f power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x535363ca mtd_read_oob -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x535b5f6f __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x5361d901 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x5364da61 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x5385a417 pinctrl_utils_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0x53883cce cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x538aabf4 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL vmlinux 0x53cbbfc9 inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x53e898f8 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x53e9bb9a platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x53fd863a ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x5400d45f debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x5406ae8b tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54274285 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x543ce17a regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x5445f0b2 vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0x544aab61 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x545e9b6b fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0x545fec86 percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x5488054e ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL vmlinux 0x548d1b54 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x54930dae inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549b420b blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x54a0ab55 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x54b0b63f register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x54c187d3 i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x54e57b6a snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0x54e6f6ac snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0x54ef2d58 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x55109732 blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55450e74 snd_soc_bytes_get -EXPORT_SYMBOL_GPL vmlinux 0x5555b0c7 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55af4e55 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x55afe34d fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x55cf07a9 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x55e10d06 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x56036e0c stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x560722be rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56261738 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x563de01b device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x56776a92 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x567c5b26 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x568341a8 mtd_add_partition -EXPORT_SYMBOL_GPL vmlinux 0x56a991f8 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56cf464b __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56da582a regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56fa3b11 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x5700c63f event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x57257845 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x5756881e snd_soc_resume -EXPORT_SYMBOL_GPL vmlinux 0x575b617f attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x576daecc pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x57847272 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x5799b095 spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57b16b82 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57c626bf get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x57d55193 amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0x57f61d64 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x58063ede srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL vmlinux 0x588b4db6 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x589c6f61 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x589e4964 of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0x58c4dbe7 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x58d89784 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x5914f3ae __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x59341126 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x593bcce5 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x596226ca tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x59aa31f7 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x59bae273 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x59bb5186 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x59c1f691 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x59c4a32e snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL vmlinux 0x59c5c2a2 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x59d87718 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59f53711 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x5a004927 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x5a078c26 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x5a213f7e free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a7bd420 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a8f213c cpdma_ctlr_eoi -EXPORT_SYMBOL_GPL vmlinux 0x5aa78597 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x5aac84a0 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x5ab2c412 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL vmlinux 0x5ab94c6a crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x5ac75461 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x5acf6567 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x5ae9b70d dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x5aece601 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x5af1b117 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x5afa2ded percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x5b4b56be unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x5b6362c0 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0x5b6bbd98 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x5b732275 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5b8bab2b snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL vmlinux 0x5b90c895 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x5b9c9c72 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x5bb40278 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x5bbbddd2 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x5bc26167 genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd12035 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x5bd29b25 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5c08f9e0 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x5c186b3d ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0x5c24a9eb snd_soc_add_platform -EXPORT_SYMBOL_GPL vmlinux 0x5c2ae9d7 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x5c2fe4a5 cpdma_chan_stop -EXPORT_SYMBOL_GPL vmlinux 0x5c3df43d md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x5c51915e blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x5c58c5a0 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5c76ac36 omap_dm_timer_free -EXPORT_SYMBOL_GPL vmlinux 0x5c87c38b usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x5c8f628f ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x5c9841a6 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5c9e1590 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cb89b6a thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5cdeb682 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x5cf1de4e of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0x5cf64e36 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d153a7a hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x5d20ec03 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x5d255a60 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x5d30525d devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x5d50c3c9 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x5d51bcf7 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0x5d964f0b usb_udc_attach_driver -EXPORT_SYMBOL_GPL vmlinux 0x5d9de28d snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dbcf19c usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x5dc09c33 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL vmlinux 0x5de10645 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x5de692d9 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x5deb6b16 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x5df24c20 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x5df2b9d7 ref_module -EXPORT_SYMBOL_GPL vmlinux 0x5dfb25c9 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e246f8a wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x5e269505 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x5e3ab7b8 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x5e4894d4 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e550f31 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x5e6750e0 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x5e76c481 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x5e8b9f8e snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL vmlinux 0x5eafceb1 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x5ed27bc0 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x5eda3e37 snd_soc_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x5ede4225 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x5ee08939 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x5efe4cc6 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x5f0e7dd4 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x5f1622e4 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x5f27aef6 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x5f2c64c8 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x5f3a5514 of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0x5f46fbae sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0x5f550841 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x5f630009 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x5f683ecd ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x5f76d73e usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x5f7c129b omap_dm_timer_set_load_start -EXPORT_SYMBOL_GPL vmlinux 0x5f854645 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x5fb01483 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5fc028c0 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x5fc2bef1 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5fef1548 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x5ffe27bf of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x5fffdd54 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x600c5d09 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x6018403a unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x60522b5b crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x6059ed40 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init -EXPORT_SYMBOL_GPL vmlinux 0x6090b313 get_device -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60b146c7 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x60b1e9df wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60ec67ee tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x60ed0a36 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x61078039 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x61185af3 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x6152fff9 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x618968c4 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x61a40dc3 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x61ae29a8 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x61e3c4cb default_iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x61f1fba1 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0x61fa2707 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL vmlinux 0x620673ab pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x6210299e scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x623679e9 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x6261c269 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x62666fc5 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x62a7d29f debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x62bcc777 omap_dm_timer_read_status -EXPORT_SYMBOL_GPL vmlinux 0x62c5c2a4 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x62c8226e attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x62cc5d57 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x62cda11e mtd_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x62f39ae2 ping_close -EXPORT_SYMBOL_GPL vmlinux 0x62f3ece0 get_mtd_device_nm -EXPORT_SYMBOL_GPL vmlinux 0x63014d77 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x63162e3d mtd_panic_write -EXPORT_SYMBOL_GPL vmlinux 0x632736c7 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x632d466a sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x635ccb21 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x6361b1f7 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x636a0d14 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x63764834 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x63871878 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x6391bd2a ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x639d170a clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x639f47d4 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x63befda3 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x63e3d9d7 snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0x63ebbfd0 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x63f3280c cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x63ff14aa usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x6406658a usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x640a894f usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6412f421 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0x6429f8d6 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x643146d5 single_release_net -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x646b7d45 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x64a61ec5 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x64c0fe6e usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x64d23e37 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x64de8349 ti_cm_get_macid -EXPORT_SYMBOL_GPL vmlinux 0x64fe5b63 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x654076ce regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x65427d72 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x6545f55c usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x654d54f7 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x6553dec8 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x655fcb8c icst_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x6563b104 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x65944b13 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x65a10e14 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x65a36f0b fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65cc52de register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65dc513f ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x65debae8 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x65e1ccee ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x65f9cbfd usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x65fd9d08 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x65ff0ce5 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x6600e301 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x661141fa gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x662155d0 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x6639334c usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x6670eb84 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x667b1268 kill_mtd_super -EXPORT_SYMBOL_GPL vmlinux 0x667d0050 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x6681f306 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66d81ebb regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66f4e9ab arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x66fad13b scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x6703802b __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x6727da8f pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x673c43b1 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6742788c subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x674baea5 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x674e85b9 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x6788f958 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x678a420c tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x67929cef xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x679dde0e tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x679f7bb7 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x67b1e52c dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x67e856a7 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x6800aaee snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL vmlinux 0x6804a3f0 ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0x6816984a platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x682b91cd sdhci_remove_host -EXPORT_SYMBOL_GPL vmlinux 0x682f66cb rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x68358b3a rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x685795f4 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x68738283 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x689dd8b3 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x68bffdca ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x68c063fa verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x68c2941f devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x68e47b2c cpdma_ctlr_destroy -EXPORT_SYMBOL_GPL vmlinux 0x68fb222b of_get_dma_window -EXPORT_SYMBOL_GPL vmlinux 0x6909c74e _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL vmlinux 0x690bf973 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x69193dd3 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0x691c63e3 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x69239bb7 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x692597b1 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL vmlinux 0x692fb069 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x694be42a usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x694d0683 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x695cb8ab device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x69a77b18 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x69ad6c09 mtd_writev -EXPORT_SYMBOL_GPL vmlinux 0x69cd2581 swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0x69d2a8e5 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x69f792b8 of_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x6a161ee7 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x6a1733b0 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a19a60b pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6a3920c4 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5b0a38 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a664f92 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x6a66f268 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x6a79d43e ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x6a7ed470 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x6a802984 mtd_device_parse_register -EXPORT_SYMBOL_GPL vmlinux 0x6aa2d98c cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x6adda79b bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x6ae43cd4 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x6af56757 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x6b218354 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x6b25f5cd dapm_clock_event -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b480ef6 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x6b4f6765 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x6b5dc377 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8bb129 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x6bd19361 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x6bdd6302 pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0x6be8a34a virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x6c015dec device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x6c02141f sdhci_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c1cbc41 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0x6c26b848 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c629ec8 snd_soc_cnew -EXPORT_SYMBOL_GPL vmlinux 0x6c6de73f blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0x6c753aa2 snd_ac97_reset -EXPORT_SYMBOL_GPL vmlinux 0x6c7994e9 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6c91fd9e usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x6c951cf6 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x6c97de7c crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6cb1dcb5 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x6cb35790 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x6cbdd8ec led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x6cbf47e2 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cda7c9c of_pci_find_msi_chip_by_node -EXPORT_SYMBOL_GPL vmlinux 0x6cf81450 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x6d095256 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x6d09af89 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x6d0ade1a snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL vmlinux 0x6d1c644c put_device -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d424356 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x6d4e0b3c power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x6d6ed257 omap_dm_timer_get_fclk -EXPORT_SYMBOL_GPL vmlinux 0x6d75d025 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x6d78d657 fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6d7d5301 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x6d8f8a8c irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x6da08d71 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x6da9e0a5 bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x6dc7bb08 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0x6dcf1a58 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x6df22d6a pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e074fdf tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x6e33a4fb regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x6e3f56f4 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x6e400837 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x6e5d7152 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x6e708789 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e8e985a seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0x6e9470cc platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x6eb6a11a usb_udc_vbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6ec872e4 ahci_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x6eedecf3 irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x6eef77df snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0x6f154795 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f2b4af7 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x6f2c0e12 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x6f301df9 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x6f3ab38b usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x6f5a2634 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x6f5c638f kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f955ca4 mtd_is_locked -EXPORT_SYMBOL_GPL vmlinux 0x6fa2a3ab sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x6fb1a3b3 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x6fb8d866 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL vmlinux 0x6fbbc594 md_stop -EXPORT_SYMBOL_GPL vmlinux 0x6fdbd09f devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ffa9ed2 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x70331a53 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x70348bf5 dapm_regulator_event -EXPORT_SYMBOL_GPL vmlinux 0x704427b7 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x70483d98 regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0x70549761 omap_dma_filter_fn -EXPORT_SYMBOL_GPL vmlinux 0x706106c9 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x706211bb regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x706da281 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x7072699f sdhci_pltfm_free -EXPORT_SYMBOL_GPL vmlinux 0x707c23b6 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x708cc3a5 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x70a40dfb bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cd1b36 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x71008581 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x711adf8b snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL vmlinux 0x7120adda get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x712ed478 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x71361150 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x7167b069 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x71728f22 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x718e7cc5 uniphier_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x7191fdad regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x719edf54 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x71a15872 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x71b9adc1 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x71bd7ab5 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x71c9c714 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x71ca7153 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x71cfd306 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x71e188f8 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71f4fda9 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x7206d2c7 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x72168f36 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL vmlinux 0x7230cb93 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x724b1f37 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x725e3ea8 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x728bb648 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x7291019b __cci_control_port_by_index -EXPORT_SYMBOL_GPL vmlinux 0x72a90352 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x72d1c686 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x72d4a115 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x72dfc584 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x72e84598 snd_soc_unregister_card -EXPORT_SYMBOL_GPL vmlinux 0x72f77095 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x7304fc38 of_reserved_mem_device_init -EXPORT_SYMBOL_GPL vmlinux 0x730bd0c7 asic3_write_register -EXPORT_SYMBOL_GPL vmlinux 0x731064d4 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x73219f8a mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x732a2380 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x735266ce md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x737541bc devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x738c3276 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73afcbbe irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x73c51260 arm_iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x740d7b7c snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL vmlinux 0x74193707 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x7440d989 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x745db179 crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x747b014a usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x747fdf8c ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b94544 i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74cc5a61 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7532c62c usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x753975d3 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x7562a5ec crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x75b1e020 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x75c57e23 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75d14d9f thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x75dc66b4 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x76172da7 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x761e0aca btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x7633fef0 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x764928a2 cpdma_chan_create -EXPORT_SYMBOL_GPL vmlinux 0x7661e33c device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0x7665d02f crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x767a4122 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76b62c86 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x76bd3278 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x76bfc5e6 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x76d1018c ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76e6613d ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x76ffb3c7 tegra_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x770019e4 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x7708343f ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775c871a mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x775ee7d4 omap_dm_timer_request_by_node -EXPORT_SYMBOL_GPL vmlinux 0x777166ad sm501_misc_control -EXPORT_SYMBOL_GPL vmlinux 0x7777aec7 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x77805ebb power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77cc685f pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x77d37a7f dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x77d67abd gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x77dee5fa pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x77ee9cfc usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0x78006309 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x78027ec8 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x7807340e snd_soc_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x7822fe06 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x784ec71b rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x78762633 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0x78772cb0 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x788f8921 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78b976b1 wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0x78bbd7c4 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x78bfdfbc devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x78d3c0ff ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x78e06e5b of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x7905643b input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x7913bb4a vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x792cda3b sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x7931c5b8 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x7933b116 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x7941bab2 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x7956db98 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x798e48be devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL vmlinux 0x79cc0161 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x79d19e1c pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x79de96ee of_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e47ee2 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x79f659ac __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a2f6325 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x7a455245 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7a984e15 napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x7ad708fe deregister_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0x7adf3b91 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x7af893ce snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b372d8c irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x7b402e71 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x7b596bba crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x7b5d09fb md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7b96530e shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x7b9e2509 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x7bbf5ec7 of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x7be16a7c add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x7be4fd1b aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x7c6a49ce unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x7c74bc99 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL vmlinux 0x7c7bc2cb sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x7c8fc32a of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x7c981cc2 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7c9cca56 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x7ca7fa10 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x7cd6d1e6 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf499ce of_fixed_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x7cfb72d2 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x7d0dcf1b ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0x7d14fc1e tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7d3c58d3 sdhci_pltfm_register -EXPORT_SYMBOL_GPL vmlinux 0x7d4b8f86 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x7d536f7b devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d640fdd ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x7d723f9a __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0x7d766537 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x7d776e72 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x7d7bbe0b ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x7d8d9f17 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x7d8faf54 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x7d9dc168 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7db3ff15 devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0x7db9eab4 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL vmlinux 0x7dc8e02e ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x7dd3aa16 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x7dd430c2 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7deab6b3 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x7df21f51 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x7e001f28 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x7e02ae14 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x7e04cca0 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x7e1884ae spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0x7e4a296c cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7e584aab snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x7e5f50ef __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e671dca dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x7e685078 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x7e6e93aa lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7e990ee4 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x7e9db583 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x7e9ee513 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7ea820f9 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x7ed68941 asic3_read_register -EXPORT_SYMBOL_GPL vmlinux 0x7f0c6142 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7f0dac04 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL vmlinux 0x7f14d328 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f3cc476 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x7f62b781 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x7f6d3889 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x7f79fce6 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f7e7185 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x7fa64a8d ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x7fbb5711 probes_decode_arm_table -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fc59e57 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x7fd92593 fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0x7ff51e55 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x80040a38 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x800dc65b ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x8010d2c6 percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0x8026254a snd_soc_platform_trigger -EXPORT_SYMBOL_GPL vmlinux 0x80333f53 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x8067cbeb of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0x8075f234 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x807a3fa7 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80b2da7a pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x80b2de20 snd_soc_remove_platform -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d58142 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80ecc046 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x81376439 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x816b8721 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL vmlinux 0x817dccd1 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x8180fca3 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x81acbca7 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x81b1dada regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x81c21c5a nl_table -EXPORT_SYMBOL_GPL vmlinux 0x81c5136b blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x81d1c040 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x81f498ab sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x8200b1be snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL vmlinux 0x82062992 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x8207bdaf ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x822737fa dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x822f8f5f sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x82585eab ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x82975ee0 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x82b285fa srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x82bdfb32 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL vmlinux 0x82cb029e debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x82d521a8 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82d8083a crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x82dd6e42 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x82e3edad tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x83256aa1 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x83589f5c fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x83668dc1 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x837aec51 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x837ccec5 extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x83994b77 nand_release -EXPORT_SYMBOL_GPL vmlinux 0x83bb91b6 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x83c63f23 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x83cf4bb0 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x8409200b wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0x840ba10b xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x842b5b80 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0x8437bfd3 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0x8443996a snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x84594ce4 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x845fc457 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x84617146 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x848bd0fb call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x848c1e1e mtd_get_device_size -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84bead7b dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x84c58d5e ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x84d7b94e kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x84fa7325 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x8507e622 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x852cb564 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x8530af1a scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x8531bcc7 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x8572fd66 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x85bf4a5f blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85dac49f bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x85de677d crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x85e54c50 usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x85e92405 fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0x85efee73 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x85faf83c crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x85ff1370 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x861abb66 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x862b9816 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0x863fdab7 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x864476d8 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x86536f58 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x866253e7 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868bb9f0 of_get_nand_ecc_step_size -EXPORT_SYMBOL_GPL vmlinux 0x869aa7dc pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x869dc051 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x86afc572 of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x86d09b20 rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0x86d5db8e register_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0x86dccbd1 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x86eb94be tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x86f00932 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x87056d54 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8717df8b __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x872f7006 usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x87ac9c1b ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x87bb7e33 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x87bf0091 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x87dc938b root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x87f0090e usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x87fae600 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x87fe34c5 pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0x880bc56b crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8820dca2 crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x883721f2 regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8848c399 pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x884ee575 skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x88a3c1af of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0x88a8186b queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b193cb sdhci_send_command -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88c8da9a inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x88ed9e46 devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x890683b0 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x89171d9e driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x891d88c4 amba_ahb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89270c72 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x892ba77a snd_soc_bytes_put -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x89791984 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x897b9c9d ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x897ceee1 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x899fc821 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x89a63435 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x89b400a2 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89c1afa6 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL vmlinux 0x89f03d9f spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x89ffa9bd fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x8a122ee8 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x8a255774 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x8a344133 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x8aaa4265 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8acb6bdf ahci_platform_init_host -EXPORT_SYMBOL_GPL vmlinux 0x8ae0b737 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x8ae7caac i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x8af23b81 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x8af36386 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x8af89a90 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b45085b tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x8b619411 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x8b69e2a9 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x8b7732a0 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x8b775d3a __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x8b7dd2e6 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL vmlinux 0x8bb3fab5 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x8be64f1d usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x8bf92a65 device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c0271d8 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c122a94 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8c1d1ef6 regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x8c3926d7 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x8c456a6e pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c6bc44d cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c81791e omap_dm_timer_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x8c927674 skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0x8cab620c wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x8ccfa390 of_overlay_create -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cf25f87 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x8d05cfcc of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x8d200e9f __of_genpd_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d23e9b1 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x8d64706b ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x8d7ba8f8 mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0x8da17b42 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x8dc5de7a crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x8dc7a2c8 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0x8dc818d7 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x8dcb2038 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x8e0b1fb1 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x8e0b52d5 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x8e19d61b usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e38decb gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x8e42e821 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x8e5a7520 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8e71f9a5 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x8e7894bd __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8e7d02d3 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x8e889e70 stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x8e9b828c snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8eb1df5f usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x8ec09ad7 mtd_point -EXPORT_SYMBOL_GPL vmlinux 0x8ec36cf8 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f199f19 tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0x8f267ee4 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x8f4ff145 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x8f54b511 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x8f55a8be ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x8f58c5e1 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x8f6107fc iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8fd25618 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x8fe5e493 mtd_table_mutex -EXPORT_SYMBOL_GPL vmlinux 0x8feb7278 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x9014d5f6 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x9034389f bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903bc9e2 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x90681b96 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x9091aea4 arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90a14dda proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x90bd9283 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL vmlinux 0x90c11616 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x90c6c41b get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x90e57e6d user_describe -EXPORT_SYMBOL_GPL vmlinux 0x90f13194 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x90f26940 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x9105aecf inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x910c55d5 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x9121f625 omap_dm_timer_set_source -EXPORT_SYMBOL_GPL vmlinux 0x91586205 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x916307ec fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x916dd02a irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x916ed7c2 blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x918bfefd ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0x919e9788 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x91b161a4 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91cafe7d tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x91d8d6e7 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x91db88a2 snd_soc_component_read -EXPORT_SYMBOL_GPL vmlinux 0x91dc47c6 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x91e9c31e led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x91ed075d dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x920484dd blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x922e61d4 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x9242b4e0 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x92473901 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x92652448 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x927533e1 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x92819b4d thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x92a46963 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x92accbf3 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x92d31d88 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns -EXPORT_SYMBOL_GPL vmlinux 0x9315fe24 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x933bcbc7 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x9350212c dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x9355efbd sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x937bddea vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x9390a282 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x93a6ae10 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x93b5e6ea iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x93b6d654 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x93b8f1a9 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x93d3b951 of_fixed_factor_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x94077f3a cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x943328f7 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x943decb6 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x94521a0b ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x945874d3 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x9459f30d of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL vmlinux 0x947fd4f9 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x948c21b2 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x948e9d19 device_move -EXPORT_SYMBOL_GPL vmlinux 0x94906ed0 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0x949334db cpdma_ctlr_start -EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x94b66273 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x9502ccac add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953da520 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x9543f238 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x955561d0 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x955af1eb synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x957965b5 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x957ac70b transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9586a6ed cpdma_chan_get_stats -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95c1298c pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x95c36be4 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x95c578a0 ioremap_page_range -EXPORT_SYMBOL_GPL vmlinux 0x95d098ac gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x9601f47e sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x9611011b omap_iommu_restore_ctx -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x96319203 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x96348e43 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9669382d __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x9684a821 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x96919667 musb_readl -EXPORT_SYMBOL_GPL vmlinux 0x96a76c5b __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x96aa7e90 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL vmlinux 0x96c5b26a spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x96ca6121 get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x96d2ffb0 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x96d39fbb regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x96d88eda snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL vmlinux 0x96dab4fb devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x970c9f22 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x97138ca6 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x9748dfa4 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x97aef434 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x97ba67c1 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97ea36d5 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x9801b455 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x98205c53 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98491c0a dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x985e5a9d cpsw_ale_destroy -EXPORT_SYMBOL_GPL vmlinux 0x986c4794 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x98842124 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x98a115bb sdhci_pltfm_init -EXPORT_SYMBOL_GPL vmlinux 0x98b025c6 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x98bfcd89 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x98c9a9cb watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x98c9f584 klist_init -EXPORT_SYMBOL_GPL vmlinux 0x98d8af2c ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x98e47bbc __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x98f5fb22 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x98fe47f3 split_page -EXPORT_SYMBOL_GPL vmlinux 0x990f40f8 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x99227bf0 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x9982b324 md_run -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x99aec12f rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x99afac9e da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99bd80c5 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x99c74b49 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x99cf0e60 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x99f9f449 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x9a0bc6f1 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a1b93d7 ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0x9a2c9b02 kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0x9a44f06b add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0x9a608525 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x9a6b6b55 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9aa5e8a5 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac99f24 omap_dm_timer_disable -EXPORT_SYMBOL_GPL vmlinux 0x9acfa0cb of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x9ad4309a serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9afceed9 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0x9b18fdfc ahci_reset_controller -EXPORT_SYMBOL_GPL vmlinux 0x9b23bfb9 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9b30d7a4 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x9b30f6e7 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x9b50f391 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x9b7271d3 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x9ba7e46c rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x9bae0277 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9bb96f07 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x9bca7de5 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9be37c53 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x9be5f76f device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c1b628d sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x9c1cd7cc phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x9c29d0b7 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x9c3e5b59 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9c3fe019 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x9c46712c device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x9c4e5408 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL vmlinux 0x9c56a095 mtd_block_isbad -EXPORT_SYMBOL_GPL vmlinux 0x9c67a4d1 snd_soc_register_platform -EXPORT_SYMBOL_GPL vmlinux 0x9c729411 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x9c786b7e crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x9c984e2d ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x9ca54a8d driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cd170bc extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0x9cdc9867 cpdma_ctlr_stop -EXPORT_SYMBOL_GPL vmlinux 0x9cded4d4 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x9ce8ae6c pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x9cfd1fdb pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x9d0298aa aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x9d21b8cc sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x9d457e5c wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x9d4c0a28 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x9d60b3b0 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x9d6fe6db mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x9d70c754 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x9d746094 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x9d77345b register_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x9d83caab usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x9d8dd3e7 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x9d903074 cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL vmlinux 0x9da3d3a2 tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9dcb0f8e desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x9df183bd __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x9df78db4 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0x9e107a88 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0x9e1fc618 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x9e312055 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x9e33ad68 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x9e43f298 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e66c9f4 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x9e79ff1b crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0x9ea2fcaf __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x9ea556f8 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9eb5d89f input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x9ec340e7 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ee7e60a mtd_lock -EXPORT_SYMBOL_GPL vmlinux 0x9eed8ddc ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x9f23aad7 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x9f2f6852 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9f431085 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x9f52cbc8 of_pci_msi_chip_add -EXPORT_SYMBOL_GPL vmlinux 0x9f959b7a ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0x9f9d470e pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x9fa1363c omap_iommu_save_ctx -EXPORT_SYMBOL_GPL vmlinux 0x9fc27709 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd2a59f devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9fdef1ba spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9fec0550 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x9ffb8d52 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0xa00fe1a5 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xa013a9cf init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xa0150e13 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0xa02d2664 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xa033df40 clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xa048012b pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xa084dacb ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xa0897893 cpsw_phy_sel -EXPORT_SYMBOL_GPL vmlinux 0xa08d7c4b snd_soc_unregister_codec -EXPORT_SYMBOL_GPL vmlinux 0xa09a27f5 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0xa0a684af dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0xa0cee821 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xa0d805dd usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xa0dad543 __of_genpd_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xa0ff6530 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xa127d925 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xa12cd99c rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xa152b9e5 i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa154029e snd_soc_component_test_bits -EXPORT_SYMBOL_GPL vmlinux 0xa15c901e input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa16cf0a0 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xa177fc9f __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa18158fc __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa20ad45e dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0xa21e5859 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0xa223f7ce sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL vmlinux 0xa29e978a da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xa2a4f2d9 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2c60092 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0xa2e4fd7a virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xa2ebfbf6 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xa2ef439b power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xa315dd8d ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xa385ec7e of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa38e0cdd ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3c1abc5 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xa3da036a irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xa3df41b1 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xa3e07c85 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa3fd87bd alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xa40f4acb regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xa416ae38 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xa42b6150 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xa439bf10 tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xa439c5ab blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xa456b54b cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xa45a9bf4 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xa45dd4bc arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xa45f337d tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa477e827 arizona_of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0xa47e32b0 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0xa47f783b dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa48c7903 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xa49f8e8f regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xa4b47ff5 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0xa4b565f6 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xa4c79092 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xa4e43d2b aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa4e51356 x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xa5069811 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL vmlinux 0xa5304f6a ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0xa533ac04 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xa53401a3 __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0xa542efee regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xa55e1507 __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0xa5a07dfd snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xa5af0ef4 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0xa5b5e664 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa5c64cd2 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f8854a usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xa602bd73 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xa61b11f6 crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xa61b74e6 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa6252c17 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0xa6389bde usb_string -EXPORT_SYMBOL_GPL vmlinux 0xa650fa68 blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0xa683c3a5 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0xa6ae0045 sdhci_add_host -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6d8f1e8 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6eb8e93 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0xa717689b ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xa724e01d raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xa72ba281 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xa74ac4f1 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xa7619dbb vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xa765ddac pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xa76c73d0 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xa78e1989 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0xa7d8ea75 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xa818aa04 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa86087da pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xa86a4e79 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xa892b665 snd_device_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xa8a78a79 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0xa8a91138 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xa8af0aec hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xa8b6a9a1 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8bc717e percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0xa8e0100a init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xa8e98132 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0xa8efa318 __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0xa8f198d4 of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xa90767f7 skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0xa911660e crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa94478d8 mv_mbus_dram_info_nooverlap -EXPORT_SYMBOL_GPL vmlinux 0xa98ec8b4 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xa992c0c4 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e59bf7 register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xa9ffbfb4 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xaa1ac48a ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0xaa243c72 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0xaa2afd83 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable -EXPORT_SYMBOL_GPL vmlinux 0xaa601461 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xaa693526 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xaa82da0b blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaaa1b84 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0xaace5fba fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xaad65140 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xab22bc67 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xab393b51 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xab59a581 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab70d895 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xab8133cc pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xabb825e8 of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0xabbbd5d9 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL vmlinux 0xac048ac1 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xac04fee0 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xac20c2ef dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xac3d6e74 omap_dm_timer_set_int_enable -EXPORT_SYMBOL_GPL vmlinux 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL vmlinux 0xac748e2b flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0xac83e733 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xac900d4f of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xac937d8d mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0xacb3cd9c __module_address -EXPORT_SYMBOL_GPL vmlinux 0xacdea2f1 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xad0c7d6c napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0xad51fd87 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xad53f3b6 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xad5abb06 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0xad99ad4c elv_register -EXPORT_SYMBOL_GPL vmlinux 0xadae4596 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xadb9ad8b iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xadfc675d perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xae20bd12 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xae3911a5 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xae39483f ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xae4a5786 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0xae5f99ea gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae7ad444 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all -EXPORT_SYMBOL_GPL vmlinux 0xae830a9b uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xae85a9c9 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0xae8a2a4f pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xae9f9d59 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xaeafb01c gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xaeb5bd59 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xaed298b6 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xaed52238 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xaee2287b fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xaee4331a trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0xaf12bfb3 tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0xaf217f65 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xaf34a5ff securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xaf44beeb snd_soc_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0xaf4bdf90 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaf81383f usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0xaf85b7ec xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0xafa92df1 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xb00986c5 regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0xb00a4682 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0xb010abea of_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xb0128a78 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xb01f6a8d gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb04b4470 cpdma_ctlr_create -EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xb050f329 init_rs -EXPORT_SYMBOL_GPL vmlinux 0xb0530e92 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb091da9e xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xb0daaef8 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xb0de0204 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xb0e470cd pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xb0f8f469 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xb0fcfe1a tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xb107a4fd pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb12297b6 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xb125ceb2 cpdma_control_set -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1887940 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0xb19313ea usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0xb19cb0ac pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xb19efcda task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xb1abb8f3 use_mm -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1bf6ddf usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0xb1bf773f cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1d5f0ec devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xb1d80b2f scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1eb2731 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xb1fe3a67 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xb217ab64 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb25be248 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xb25f3c37 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb26ce439 skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xb27427b0 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0xb27e434a crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xb28f692d rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb2b436ef dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xb2b8c3e7 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0xb2beb6f4 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xb2d88612 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xb2dce5af of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xb2e20078 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2eb8155 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xb3096fae usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xb3191fa3 blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0xb331f65e cpsw_ale_create -EXPORT_SYMBOL_GPL vmlinux 0xb3493861 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xb362dcb7 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xb369329e snd_soc_register_codec -EXPORT_SYMBOL_GPL vmlinux 0xb3775b95 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0xb3821f3b ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xb398f553 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0xb39ad961 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xb3b52252 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0xb3f5b0da regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0xb4055838 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb4253154 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xb43786a9 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xb47129d7 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb47775f6 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xb47e9749 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xb48d8bba pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xb48e3a35 clk_register -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4cd3dbf tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb4cf0322 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb4d98faf get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0xb4e1238e lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xb4e555c3 nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xb4e6fb94 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4f10871 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0xb4f88ac1 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb5486e13 device_reset -EXPORT_SYMBOL_GPL vmlinux 0xb5529248 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xb557bc8e __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0xb56e23a2 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL vmlinux 0xb57e4f6e crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5cba789 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xb5cf9df4 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb6138306 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb6446d6a unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xb6469bb6 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xb66c96b0 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xb68e87ed ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6f5425d replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xb6f6308f usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xb7025ddb inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xb7136e18 snd_soc_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0xb715dfb5 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xb71bebef ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb74bfae0 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xb74fcab3 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb75f324b snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0xb76ebca4 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb -EXPORT_SYMBOL_GPL vmlinux 0xb773a7ba fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xb77714a6 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xb77cb0a8 cpdma_chan_submit -EXPORT_SYMBOL_GPL vmlinux 0xb7a5a320 snd_soc_platform_read -EXPORT_SYMBOL_GPL vmlinux 0xb7c33400 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL vmlinux 0xb7e07fd6 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xb7e64a53 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb80b06f4 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb820bbcf driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable -EXPORT_SYMBOL_GPL vmlinux 0xb8346aeb percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb84bb204 __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0xb85b3928 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0xb87f853c xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb88e2859 tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xb89f4c01 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0xb8b89a5c led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xb8bc8a06 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d3fd8e irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb8ee111a event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xb90f4ffa pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0xb91dd860 cpsw_ale_control_set -EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xb9334913 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xb933bce5 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xb9345c62 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb93858ae da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xb98fb281 flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xb99974ae pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xb99b0cc9 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9c1d2f3 omap_dm_timer_set_prescaler -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9ca03de bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger -EXPORT_SYMBOL_GPL vmlinux 0xb9f41a39 mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0xba1fc8ed regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba313386 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xba67ac9c pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xba8104b5 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xba84ebab wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbaca6444 tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xbacdd83c xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb084645 wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb11cfba klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xbb4b29a3 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbb7ab7b7 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xbb7d3621 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbb7e6a18 component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xbb9e2ab5 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xbba3a3e3 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xbba6d24c omap_dm_timer_stop -EXPORT_SYMBOL_GPL vmlinux 0xbbc0888b tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xbbc857cc mtd_block_markbad -EXPORT_SYMBOL_GPL vmlinux 0xbbcd9478 of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0xbbf7d228 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0xbc07cb63 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0xbc0ae0ad of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0xbc0c7027 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0xbc1a07fe led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xbc37723d powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xbc435692 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xbc4fa7ac device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xbc56a57d omap_dm_timer_start -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7f2db2 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xbc871663 tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xbc90a0c7 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xbca8311d sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xbca9e68f crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcb01d61 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xbcb2794a usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xbcb3b918 spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0xbcbaa80a __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0xbcc3cbaf platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd7021a dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xbcd8825a extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce27a6e pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0xbce58b80 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xbcf359ba crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0xbcf89ab6 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xbcff817b wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xbd3ea936 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd416ad0 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xbd4c7d8b pci_ioremap_io -EXPORT_SYMBOL_GPL vmlinux 0xbd4e9d48 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd80314c trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0xbd9bf5e0 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xbdb55e74 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xbdbcfd54 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbddb0d35 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0xbddd8b1e dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0xbdf512de free_bch -EXPORT_SYMBOL_GPL vmlinux 0xbdf5a544 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xbdfd6bd0 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xbe042bcb trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe3717ac scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe97c87d handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbee6859a crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xbeea0ceb ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0xbeec4b3b skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf565292 omap_mcbsp_st_add_controls -EXPORT_SYMBOL_GPL vmlinux 0xbf63b645 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0xbf748a52 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xbfa3bf9f irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xbfada186 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfbcddf8 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbfc6cf6c usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0xbfcfeda1 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbff76282 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xbffe3d78 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 -EXPORT_SYMBOL_GPL vmlinux 0xc00fb6eb da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xc024c22d pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xc029eabc bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc02e139a pm_genpd_syscore_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xc03a654b memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0xc07b1fc7 omap_dm_timer_write_status -EXPORT_SYMBOL_GPL vmlinux 0xc07ea6b5 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc07ec3e5 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0c5a639 user_read -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0d69bdf spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0xc0da0577 mtd_erase -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 -EXPORT_SYMBOL_GPL vmlinux 0xc0eca556 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0fc0c63 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0xc104b3ea rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0xc111861c mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xc121fcca inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xc124d753 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0xc131f2db blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xc1334b0d gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xc134c64a bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc17d4c37 mount_mtd -EXPORT_SYMBOL_GPL vmlinux 0xc18377f6 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu -EXPORT_SYMBOL_GPL vmlinux 0xc186ac81 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL vmlinux 0xc194cc3b dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0xc1a63abe scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xc1bced6a cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xc1c3be51 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0xc2189f2d mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xc21b3cca devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc2362fe7 cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0xc263ab0e dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0xc26a4e94 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc283ee19 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0xc2a51785 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xc2a9b6b1 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0xc2ad04ec blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xc2bd4951 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xc2c005c2 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xc2c56abb usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xc2d8a780 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xc2ff62bc dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xc30b3a36 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0xc3121908 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL vmlinux 0xc3286b97 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xc32e7129 of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0xc33a7244 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc351cdac clk_debugfs_add_file -EXPORT_SYMBOL_GPL vmlinux 0xc36accd6 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc380896e pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters -EXPORT_SYMBOL_GPL vmlinux 0xc3a64a0a pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xc3b93bba klist_next -EXPORT_SYMBOL_GPL vmlinux 0xc3be5ebe get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0xc3be8b1f skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xc3c91ff2 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xc3d734ab devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xc4136c26 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xc41e0178 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42c804c iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xc432fb5d usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xc4412203 rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0xc45346c0 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc4aad4a4 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc4ab207a ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4e8f3bc pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xc52b5346 find_module -EXPORT_SYMBOL_GPL vmlinux 0xc538a729 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc54d8fa7 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc56b837a wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xc56c0e03 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc57ed0f5 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xc58374ba ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xc585e2cc snd_card_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xc5864652 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xc5880cc0 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0xc5a95962 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xc5ab5d1e inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xc5c6fc6c pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xc5ce0820 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0xc5d5513e cpdma_chan_process -EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xc5e0dd66 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0xc5e59aa7 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xc6103e1b inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc626d10a mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc644a920 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xc645ae07 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xc649229a clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xc64c00ee request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc661d867 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc6816358 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xc684ffe3 ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xc685c037 cpdma_check_free_tx_desc -EXPORT_SYMBOL_GPL vmlinux 0xc699ed0a cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc69d4f51 imx_pcm_fiq_init -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6aa3a34 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xc6b807d0 rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0xc6db209b inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xc6e34f36 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xc70113ac inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xc7063e6b usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc733bec1 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xc75e8305 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xc76089e4 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xc761a212 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xc773ecfc ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xc77f6aee put_pid -EXPORT_SYMBOL_GPL vmlinux 0xc7987956 ping_err -EXPORT_SYMBOL_GPL vmlinux 0xc7a002a5 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7cbfd65 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xc7d6cf69 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7f042ba ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xc7fe9e60 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL vmlinux 0xc80486a2 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xc8134a71 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc823c1fd phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL vmlinux 0xc83c0359 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xc894c8d0 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0xc897bfb6 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0xc8ad7522 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8cb630b snd_soc_get_strobe -EXPORT_SYMBOL_GPL vmlinux 0xc8dd2a31 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8fd23af crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc9276d79 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xc931fc51 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0xc9516b9b kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xc9529b2a dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc967b9d0 mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xc968081e __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level -EXPORT_SYMBOL_GPL vmlinux 0xc99107e0 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0xc99484a4 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0xc9c6d7b9 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xc9d8613d adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xc9dc6848 kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0xc9e9a801 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9ff541a thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xca1b5e3a pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xca309b89 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xca4bacd5 clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xca4cfd98 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xca5fece1 __of_genpd_xlate_simple -EXPORT_SYMBOL_GPL vmlinux 0xca6059f6 ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xca69db54 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcacb2e8e pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xcad97f8d ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xcafe0305 swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb198859 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xcb24b4e2 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL vmlinux 0xcb376496 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xcb3d5525 ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb561ed5 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xcb77980b pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0xcbb34a18 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xcbbd11a5 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbedf069 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcbf05b29 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xcbfa29ca sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xcc3926a3 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xcc411690 sdhci_set_clock -EXPORT_SYMBOL_GPL vmlinux 0xcc44f3cb class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xcc4a76bc tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xcc591b34 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xcc5c4c19 edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0xcc8334a2 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc88a05d device_create -EXPORT_SYMBOL_GPL vmlinux 0xccbc64d6 snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL vmlinux 0xccbca9bc ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xcccccfdf tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xcd0bf205 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xcd20ea87 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0xcd350dcd xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xcd4bdfcc of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0xcd5c7b16 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xcd6b0047 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0xcd740a07 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xcd751277 snd_soc_bytes_info -EXPORT_SYMBOL_GPL vmlinux 0xcd7545a9 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcdb26681 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xce15ee70 dev_pm_opp_get_notifier -EXPORT_SYMBOL_GPL vmlinux 0xce3015e4 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0xce3255f4 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xce393337 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce783a47 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xce826c5d usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0xce858a24 pci_fixup_irqs -EXPORT_SYMBOL_GPL vmlinux 0xce9024fb raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0xce979a5d ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xcedc5494 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xcedebf54 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcef851f4 devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xceff9843 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0xcf0f2473 mmput -EXPORT_SYMBOL_GPL vmlinux 0xcf16a2d0 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0xcf1cd37d noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0xcf3dc50c cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL vmlinux 0xcf4620ac fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf5d867f dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xcf6d410a vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xcf870c39 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xcf8f8d56 cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xcf91887c of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0xcf999247 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xcfa2ed20 cpsw_ale_start -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfb66203 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfcbe8d5 blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xcfce4497 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xd0165061 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xd0305dd2 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd0407299 omapdss_of_get_first_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06911a0 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xd076f792 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0xd0829750 dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd0a34a50 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xd0a73af8 ahci_print_info -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c52e06 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xd12df8d4 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xd1389c59 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xd139d60d component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xd143c323 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0xd14af968 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xd14babaf __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd151dc23 arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0xd153a0f3 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xd15b58dd sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd16fd71e uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xd1822f0b cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd188f643 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xd18d4af4 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xd18f2caa extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xd1cfdc07 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xd1dcceee mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xd1f0a011 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd208619b serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd2131c2a pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd26a4173 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd29646b2 thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xd2ae5d79 arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0xd2d0ab9d vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0xd2de7533 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd33a0654 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd34a7544 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0xd353a29c bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd35d4f51 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xd368e35f unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xd38e1b32 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3cb4ba1 __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xd3dccbd7 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xd3dde034 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xd3f488c7 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0xd3f5dfc6 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xd401336e cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd41daa43 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd4295c68 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xd4400ee0 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44c2f38 cci_disable_port_by_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd44c3437 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xd4677045 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xd46a2348 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xd47e63eb regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0xd4a9bc46 of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xd4ada886 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4cdd571 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xd4da7503 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xd4e2cb10 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd51262fa scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0xd51664f5 omap_dm_timer_enable -EXPORT_SYMBOL_GPL vmlinux 0xd517d553 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xd524f506 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xd5385500 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xd53da4e3 omap_dm_timers_active -EXPORT_SYMBOL_GPL vmlinux 0xd5418ede __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0xd54838c8 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xd54bfce5 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xd54dde1c pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd55b93fd ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xd5752fd4 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xd57b486e invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xd5a72bc4 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL vmlinux 0xd5acb1b6 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5f0ee97 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0xd6025f62 irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd6187220 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0xd62818d2 omap_dm_timer_set_load -EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd67acc09 page_endio -EXPORT_SYMBOL_GPL vmlinux 0xd688e15d component_del -EXPORT_SYMBOL_GPL vmlinux 0xd68a57b8 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0xd6a4765a snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL vmlinux 0xd6a76f9a usb_gadget_set_state -EXPORT_SYMBOL_GPL vmlinux 0xd6c24507 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0xd6d3239d usb_gadget_udc_reset -EXPORT_SYMBOL_GPL vmlinux 0xd6f6585d __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xd7044381 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd73e5c28 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xd7627bb1 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xd767939a device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd76d5962 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd78626f4 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xd7876791 snd_soc_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xd7981076 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xd7a08d90 of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0xd7abab9d of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0xd7b05c81 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xd7bc7ddb dev_pm_opp_get_suspend_opp -EXPORT_SYMBOL_GPL vmlinux 0xd7cfb7bb gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xd7d6cb5b regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7d933d3 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd7f757a5 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xd815802a dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0xd81b7ef5 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd839f426 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd8a705d0 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xd8d092f1 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0xd8d89ecd thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd8ef600e gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0xd8f9a1a9 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xd902dcf7 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0xd939978b dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd9a4f7cb snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL vmlinux 0xd9d2cf93 snd_soc_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd9d41b57 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0xd9daa03b __put_net -EXPORT_SYMBOL_GPL vmlinux 0xd9e2821e pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xd9ea09f5 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xda146b07 nand_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xda451e28 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xda6ca117 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xda74489c policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0xda8e7f5b __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xda9ba2b0 __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0xdaa10d7f ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0xdadcf0bc devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaefd446 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xdaf3b85a devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xdb0ff28d debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xdb2bc82a i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb5532a1 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xdb6c9719 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xdb729232 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb92861d __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0xdbc4fe25 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL vmlinux 0xdbcbf762 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xdbd5db54 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xdbdcb406 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xdbdfa8f4 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc1fab00 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xdc3a9ff6 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xdc4bef3e usb_del_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0xdc732b7d vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc8bf900 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xdc97acd1 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9b8a21 dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcc2806b shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0xdcc70fe0 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xdcd8e4e2 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xdcdcca84 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xdcf5def2 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd200ce5 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xdd297faf reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd79f866 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xdd8d6c4f fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0xddb2703d ahci_platform_disable_resources -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xddf3ec6f cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL vmlinux 0xde0c42cc tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0xde0c74d8 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xde128f99 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xde651f98 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xde7a9e5d ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0xdeb7bb2f trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xdebe8556 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xdedd7529 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0xdeff93b9 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xdf0a0108 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf26109a fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xdf33dbba ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xdf38a330 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xdf3d7f70 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xdf4ecc29 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdf8cac26 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0xdfb88e67 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xdfbc1fa1 reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0xdfcf9868 __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0xdfdd3e0c pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe0451f49 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xe06513e3 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xe06e4157 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe070bb19 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe07ca631 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xe082c133 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xe0a658c8 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xe0a9b175 ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0xe0b16d26 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c32a cpsw_ale_control_get -EXPORT_SYMBOL_GPL vmlinux 0xe101c027 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0xe104c61c wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0xe1073072 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0xe11863c8 ahci_platform_resume_host -EXPORT_SYMBOL_GPL vmlinux 0xe11e7e45 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xe13bc8a4 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xe13d0329 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe16d6265 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xe1719dd1 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe1818cf6 snd_soc_jack_report -EXPORT_SYMBOL_GPL vmlinux 0xe18e2fef pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xe18e3ea6 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0xe19f5ea4 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL vmlinux 0xe1a1f8f4 led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xe1ac8da3 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL vmlinux 0xe1d0d00d sm501_modify_reg -EXPORT_SYMBOL_GPL vmlinux 0xe1ee898f scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xe1ff72fd inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0xe202eb74 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xe20f8a11 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xe2695b5d device_register -EXPORT_SYMBOL_GPL vmlinux 0xe26c1e7c regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe28abeb5 uniphier_pinctrl_remove -EXPORT_SYMBOL_GPL vmlinux 0xe2a02cc8 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xe2b4f0a3 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xe2bd1f82 devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe308d133 dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0xe317a70d sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xe32fae58 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0xe333e70c crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xe33d8a69 ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0xe357c750 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xe36790d2 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xe37a6883 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xe3a9ecc6 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xe3b12125 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0xe3bc8b42 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xe3be624c dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xe3c4aaa6 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0xe3cbec00 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xe3eaf570 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xe3ed0714 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0xe3f8a30f crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xe3f953b1 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xe3fab2e9 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xe3fc7b8b driver_register -EXPORT_SYMBOL_GPL vmlinux 0xe414f98b ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xe422138c extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xe42e1f70 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe43d2097 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xe45c6264 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4ac65f2 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0xe4add08a relay_reset -EXPORT_SYMBOL_GPL vmlinux 0xe4bb91de regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0xe4c22565 cpdma_chan_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe505d3e5 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0xe50aa05e snd_soc_debugfs_root -EXPORT_SYMBOL_GPL vmlinux 0xe5160c44 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0xe522fc3f pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xe5252179 mtd_read -EXPORT_SYMBOL_GPL vmlinux 0xe54b5dd7 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0xe5635619 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xe56a6327 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0xe571773e ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5bfd87e devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5d67021 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0xe5eed4b3 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xe5f0f1c7 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xe603c40a udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe61640be attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xe62d9c69 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xe63446ba percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0xe645075d __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xe645e9a9 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xe651c47e pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe658c603 pwm_config -EXPORT_SYMBOL_GPL vmlinux 0xe665765a devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xe66b5945 clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xe675abb1 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xe6bf620f ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6d5c5c6 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe70b14cb snd_soc_platform_write -EXPORT_SYMBOL_GPL vmlinux 0xe70e59f0 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0xe72e83aa of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe74c9b64 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xe74f139c __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe771cbad device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xe77425ae virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe79337a6 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0xe7a4ab89 devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xe7b7d05a snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0xe7e0d5a6 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xe7e0e262 tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0xe7eb264d sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe858cb37 reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe863872f ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xe865070b ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xe86561d2 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xe87e8df1 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0xe8831ae3 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xe8876a95 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xe8a03510 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe8a8ecc6 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xe8ad03b1 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xe8ae1a36 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xe8b03a3c gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xe90482e7 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xe90e8aef imx_pcm_dma_init -EXPORT_SYMBOL_GPL vmlinux 0xe935f6d1 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xe93cafca __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe93e5ef5 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xe9473c2b blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0xe9504a08 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe9640d94 __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe96757c5 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xe97333fc usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xe97fc522 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0xe9877084 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xe9893d1e kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xe997a768 btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xe9ab9bc2 component_add -EXPORT_SYMBOL_GPL vmlinux 0xe9c88c43 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xe9cd4f05 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d6e070 put_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0xe9fd2d0a ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0xea2da8d7 ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0xea380ec5 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0xea3904f1 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea4535c4 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea5feddc device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xea76c480 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xea954677 amba_apb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0xeaf1b096 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xeaf272e9 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xeaf53dfd snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0xeb0d6580 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xeb2a5f2b crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xeb62d882 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL vmlinux 0xeb79439c snd_soc_write -EXPORT_SYMBOL_GPL vmlinux 0xeb8f0aa2 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xeb917a71 user_update -EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 -EXPORT_SYMBOL_GPL vmlinux 0xebb7e578 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xebb940d3 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xebb9f152 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xebcaf734 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xebd07cc4 mtd_erase_callback -EXPORT_SYMBOL_GPL vmlinux 0xebd46cc3 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xebfea5da devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xec034c4c iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec514ca1 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xec67977d snd_soc_put_strobe -EXPORT_SYMBOL_GPL vmlinux 0xec922cd0 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xecc5ad2f alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xecfd8761 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xed02e5e4 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xed0f9951 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL vmlinux 0xed3bcb0f ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xed4ff908 __put_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0xed52d099 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL vmlinux 0xed6bc592 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0xed787b4b perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xedd76a3f power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xede0ef97 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xede44b52 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0xedf38710 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xedf52ffe wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0xedfb6cf9 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xee1187aa simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xee3dd398 rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xee5d3973 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee760c3b snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL vmlinux 0xee8d7539 cpdma_chan_start -EXPORT_SYMBOL_GPL vmlinux 0xee9331a3 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xee9532b3 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0xeeba4ce2 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xeeba7c64 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xeecec569 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xeefb8b06 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0xeefff858 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xef3ad916 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef593cc6 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL vmlinux 0xef6127c2 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xef66075c usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef778618 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xef83bbf8 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xef8e2cda sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xef95edb8 amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xef9abfa2 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xef9f8553 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0xefa1a568 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefaf23bb class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xefc87358 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xefc95c00 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xeff967c6 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0xf0352dae __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0xf0393ab3 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf059e6ac clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xf06a4305 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf08c4665 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xf0b07729 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0c50a0e omap_dm_timer_set_pwm -EXPORT_SYMBOL_GPL vmlinux 0xf0d6a7b7 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf0dad463 shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0xf0e57433 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xf0e734e5 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xf0ea26d3 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf112d524 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0xf1175350 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0xf11db8a2 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xf1234ad5 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xf12caf22 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xf13ed0c9 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xf14307cc led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xf1506cd1 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xf1528ee5 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0xf16b258e iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xf17fe1d0 ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf19ab5f8 seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0xf1aaa2cd ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1ce2332 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xf1e24a8b serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0xf1e8c78b of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xf1eaf181 iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0xf1f16c9e unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0xf1f86871 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xf205b4bd virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xf2077fdd napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0xf21b2642 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xf21db9e7 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf22a3450 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xf23fca74 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xf247f0a8 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xf2675686 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xf26b8559 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf285c7af of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0xf28f0043 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xf297c53d cpsw_ale_dump -EXPORT_SYMBOL_GPL vmlinux 0xf2a2ed0e snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2b86de3 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0xf2d3b3dc dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xf2d516bd pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xf2e52578 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xf2e94b9b dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf31d547b serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xf32b2df4 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf35d549b ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0xf35dd68c dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xf3623718 snd_soc_unregister_platform -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf38a3a6e amba_apb_device_add -EXPORT_SYMBOL_GPL vmlinux 0xf3a811c6 crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b91a7c rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3c3d282 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xf3c8b723 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf420ef23 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xf42151f5 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xf42a2feb dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xf42cc313 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL vmlinux 0xf4314e6c devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xf43c2803 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0xf4411471 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0xf443a54f simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xf4454792 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xf456ca10 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0xf467ec23 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xf47cc349 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL vmlinux 0xf47f2ef6 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0xf4874398 max_gen_clk_ops -EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf48e02ff regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4a66195 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0xf4b0aa9d is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xf4b23aae snd_soc_dapm_free -EXPORT_SYMBOL_GPL vmlinux 0xf4b6639b raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0xf4dc7c63 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xf4dd72cd sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xf4e9fad4 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf5029583 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xf50a0890 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5122c3b ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0xf513bdc1 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0xf54417e4 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf5702c96 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xf57190f8 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL vmlinux 0xf5730faa shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0xf573b024 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xf58af22f devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xf596dd54 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0xf59b64a1 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5bfd4a4 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xf5c94e6f swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0xf5c9976c pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xf60458e0 component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0xf604b933 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xf61677a0 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf67384dd crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0xf68bbf53 ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0xf6b5c005 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xf6c3f53c snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf70c02aa aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xf7539aa2 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0xf75c563b ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer -EXPORT_SYMBOL_GPL vmlinux 0xf78347f0 tegra_pinctrl_remove -EXPORT_SYMBOL_GPL vmlinux 0xf78b8261 devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL vmlinux 0xf79f328d crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xf7cce204 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xf7da55b5 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xf81d0b70 bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xf829016d sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf857e798 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xf85afcef __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0xf87611d4 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf880ac26 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xf8852305 irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf8a7ba79 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xf8ab49fd irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0xf8cd91e2 ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8e92c7a shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf90273c2 bus_register -EXPORT_SYMBOL_GPL vmlinux 0xf90ab0ff of_get_nand_ecc_strength -EXPORT_SYMBOL_GPL vmlinux 0xf913d3fd vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xf91a8541 of_css -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf93dc6d2 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xf9443b5e snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL vmlinux 0xf94e42b5 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xf951b85e led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf9643e60 of_get_nand_ecc_mode -EXPORT_SYMBOL_GPL vmlinux 0xf9698abc con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xf97e7909 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf988fafb perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xf989fb3f pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf991c370 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a91ad7 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xf9bbc79d snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xf9bcfab2 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9f6de03 snd_soc_lookup_platform -EXPORT_SYMBOL_GPL vmlinux 0xfa0a192c sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xfa0eac37 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xfa1b3374 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa26f622 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xfa2ca778 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0xfa413a01 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xfa42331e ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xfa5bfb0a driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xfa874dbb sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xfa96da27 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xfa9fbd7b ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0xfaaf2593 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL vmlinux 0xfad9cf85 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xfaf2dc6a fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xfaf4e386 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0xfafb0f2c vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xfb08b373 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb36832d pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xfb515fad usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xfb6d36f7 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb7a6f03 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xfb94f014 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xfba370a5 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xfbaa0d2a hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbbe1ee9 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xfbf13ca5 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0xfbfabdf9 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xfbfcd2e5 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc13385c regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0xfc147364 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xfc1d5cfb ahci_platform_ops -EXPORT_SYMBOL_GPL vmlinux 0xfc307adf iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xfc35d4e0 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xfc4b3c65 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0xfc61075e device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xfc642a35 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xfc7c45a5 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xfc9000cc iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xfc95943a enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xfc961e17 dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0xfc98a9e4 regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0xfca22c35 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xfca36fa4 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xfca89bc7 nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0xfca8e475 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xfca8e57c blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xfcbb6282 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xfd195688 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xfd2e78fa power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xfd41c7ce btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xfd74f8a1 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd7fc6d2 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xfd9809a5 omap_dm_timer_write_counter -EXPORT_SYMBOL_GPL vmlinux 0xfdb01f43 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xfdb87bcd devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0xfdbe0d72 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xfdcae422 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xfde1a33e klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xfdec5195 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xfdfd3f70 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xfe009c06 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xfe0fe9bd gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xfe1cf6ab pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0xfe2e2701 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xfe48930c usb_add_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0xfe5826ae virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0xfe742390 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0xfe97824e tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfeac611b usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xfebd8f6b key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xfebeebf3 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed973f7 phy_put -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xff043d2a securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2df3ac kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xff32da7b crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xff3cb6c7 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff6110fe crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff6b5e43 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xff7d322f arm_iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xff8e06ef usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xffe697d9 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xffea8d96 omapdss_of_get_next_port -EXPORT_SYMBOL_GPL vmlinux 0xfff19274 devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xffff0221 unregister_pernet_subsys reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/armhf/generic-lpae +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/armhf/generic-lpae @@ -1,17629 +0,0 @@ -EXPORT_SYMBOL arch/arm/crypto/aes-arm 0x276b2f72 private_AES_set_encrypt_key -EXPORT_SYMBOL arch/arm/crypto/aes-arm 0x6c62e582 AES_decrypt -EXPORT_SYMBOL arch/arm/crypto/aes-arm 0xc30fcbed AES_encrypt -EXPORT_SYMBOL arch/arm/crypto/aes-arm 0xcf024ae9 private_AES_set_decrypt_key -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x428131e8 crypto_sha256_arm_update -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xc98be6f2 crypto_sha256_arm_finup -EXPORT_SYMBOL arch/arm/lib/xor-neon 0x0f051164 xor_block_neon_inner -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x28865246 mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0x66e0cb49 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x68283fb0 bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0xce35eb4a bcma_core_irq -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x07b77e9a pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x1370cec5 pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x17e518ea pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x1ae35344 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x236f1866 pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x28d0c3b6 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x63f2ea09 paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x694076f8 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x8d75f538 pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xa6114974 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xb6c4ad27 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0xbc9ce9e6 paride_register -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x1e8bea15 btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7a3a71c1 ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb78208d5 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd363097a ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe5dfd927 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xea1c24e2 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte -EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x6e211bc4 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x88ea7ba4 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc8e0513f st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xfdcec597 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3f77ceea xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x72403d46 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe467bbb2 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x15d31042 dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x206b8187 dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x383613b1 dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x742803cd dw_dma_get_src_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xa5e70c3b dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe6743ce5 dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/pl330 0xdb3f73a9 pl330_filter -EXPORT_SYMBOL drivers/edac/edac_core 0x98a8af6f edac_mc_find -EXPORT_SYMBOL drivers/firewire/firewire-core 0x00e2dae1 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x034764de fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d1080a fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x07597ab2 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x086d67ba fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0df3496d fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x22162694 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a7fd863 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3d55b81f fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x474d9cda fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4c1034e4 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5a01b85a fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5a108652 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x621b942d fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7efe3930 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8258a114 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8ffe0d15 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x96ea07f6 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9cee384e fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9cf53da6 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa826e6bd fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xacfb4a41 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb08e7369 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb3ec349 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe602d207 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xea4c6dec fw_iso_context_start -EXPORT_SYMBOL drivers/fmc/fmc 0x06f0fedf fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0x2498b80c fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x4304063c fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0x4c67a18c fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x7811e31c fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0x916d5464 fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x9c951c4f fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xaf1559de fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0xb5346bbe fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0xe758091f fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0xfe66196a fmc_driver_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x042fe837 drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04984c10 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x050bffd9 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05432e3e drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05e56929 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0626b0d6 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x065e3daa drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06c79c9c drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7c5c47 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f0b7ae3 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1067d9f2 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x115cb557 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x142015c5 drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14f2dda3 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16815763 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16cf40d6 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x173197a7 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x174ba34b drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17563d21 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1766789f drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17f7056a drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19c7bb93 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a39f0dd drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c0029dc drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c247491 drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c2c7531 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e072d3d drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e4fab49 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f66e83f drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fc62f1f drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21fbd0a3 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c1d7a0 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22cb3e42 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x233c3ed6 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x249dab7f drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24de41b4 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x250eb6e8 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d982e1 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2839bc83 drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a9cdf56 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b3fffe7 drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c14ad88 drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c2fac76 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d035009 drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d2053ff drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e050cca drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x343114f7 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x345370fe drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35fe8474 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36a21815 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36b88f0f drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36bfcfa8 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x372f3ddf drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ad1140f drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b7a8f6b drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c5c5fda drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d2bead6 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e397182 drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e698e37 drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e7351d1 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x400b4e11 drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40dac646 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4146ca5a drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41b12db9 drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44d49b46 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45373c24 drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45c71cae drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x463bb845 drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48009bf5 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49e9bb04 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bf9ae88 drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4da107c3 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fbed130 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x505d0fa9 drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x509607b8 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51733557 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51aadf70 drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52acdfca drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x531df8f2 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53271e33 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54390720 drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54541cfc drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55d564d8 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55de1720 drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57f952e3 drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58d57080 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59a91e47 drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59c14b14 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59c40bdd drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59e01005 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a38fb54 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c2d1a98 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c8cb087 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e8cbd2e drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e9d29b0 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ec1c5c0 drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6201003e drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62d16a08 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63f0b719 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x642818b3 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6458b83b drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65dae7fb drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6820e9fa drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6877ed98 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69a7eb06 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c9604f7 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d05bc2c drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e4c22f4 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6efa1c41 drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7026b67e drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x722ab9e3 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7295ec56 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72eeedfc drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x732864ee drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x744d189c drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fff6e0 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75229d03 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75fa43de drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76233ab8 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77695474 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77e5dfb8 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77e91056 of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77fa3c98 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7883647e drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78854c54 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x791721b3 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x795c72f4 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79a55400 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9fbf85 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bb78231 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bd312b5 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c9d922f drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eb363c6 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x801a6736 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80a9354f drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80ca5cb5 drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x814b08d6 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81b4032f drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x831b247f drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85c7a103 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x868b83a6 drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86b004b9 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8794ad6c drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87e5a7e7 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x882f58ea drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x887d40c4 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88821814 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88a0ed4c drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88db58d1 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x898a031a drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d4baa34 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d58cdf4 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ef98d97 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9064cbd0 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92cdb5a4 drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93cd8a6b drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9462f4ce drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x949d7180 drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94df2248 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94fa1147 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9741db4f drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99ebcd46 drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b24ac25 drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b721885 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8cfd8e drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f2215fa drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0f3edae drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa142614c drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa14fb2df drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa17d6aca drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa226b9a3 drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa247470b drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa306dc1d drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4812401 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4919477 drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5f497ce drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7f71a67 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa963568b drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaaa1f627 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaab288ee drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab2b50e4 drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab2f8de5 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab40de9a drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xababf9c4 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae77a626 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae9ef61b drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf0e6ba8 drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0fc0b35 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26da777 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb29b2358 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2ddffbd drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb361c951 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb38b6029 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4c7e8f9 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb55429eb drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb710bbb5 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb76218b2 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7eab695 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb84cf10e drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb91d4d1c drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9b3fb7c drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe023a01 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe0b1f62 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf92288a drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfea5292 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc04e2668 drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc084b7f7 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0b2d4ad drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2bdfce3 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2cd15d3 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc31c1dfc drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3e682c0 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7a5f763 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d1fb59 drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc81985b8 drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8a0dc2c drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8b28b41 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc97bfbdf drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcabc7f62 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb99c769 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcba31881 drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbb98ea9 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0333891 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd106873d drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1b6a7a6 drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3dbc13f drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5498e40 drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5e24852 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd64afb6f drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7127f97 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd76851f5 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7cdd512 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd81e1014 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8f6674f drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd91bd55b drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9ec6c6b drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad91f35 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb904b35 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc450559 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd7c7338 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf26a593 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe013cc4f drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe13e5538 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1b48d02 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe306ba17 drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe36358e4 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe45f9cb8 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe50a3be4 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe50b57de drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6208a80 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe705ab26 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7a06d7f drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7ec8d60 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8ba1ef2 drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9eba25a drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea2dbf82 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea95a95c drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedc7e5b3 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedfc627f drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeeae7940 drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef1ae25f drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf23d178d drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5141013 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf51f3034 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5f6531d drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf75e5699 drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf76aed26 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8e05c21 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf93548a7 drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa17647c drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa30d4f6 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaab2ab8 drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb2ed25f drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc0c8fda drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe232810 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff1b9496 drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x017fe928 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x030247ee drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0389a4cf drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03f1e0c7 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x046ee402 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0aa13a10 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d5bdc69 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dffee60 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e21b4dc drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f38f190 drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1163fc8e drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x126afba3 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15c23b62 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b00a7d8 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2137558f drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21a7c995 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x221fc01a drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x223e3df3 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23f2ca99 drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2578a609 drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29e728c7 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b986d5c drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bb5366e drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30c71a34 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30d14112 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32e051d7 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x369cb1d1 drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37b82156 drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3956d4cd drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c802148 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cf78fd0 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4428f5e0 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46e5c327 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x490d6fd2 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x491a8119 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49709ba1 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49cd95b6 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e32f9e2 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e556b01 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f98bab2 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f99e6f1 drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fa844bd drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5014c75b drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51d4364b drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56adaa2a drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x584a8481 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ae2206e drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b7f7368 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bd19d11 drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e213433 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x626301de drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62ed1fe8 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63285bf0 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x678f8d89 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b8b9b02 drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c701098 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d7d0d69 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x714bb633 drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74f2d40a drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76415b94 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77fb5816 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78b43e80 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e1b1a85 drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f112758 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fc80b89 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82f5a21b drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x845ea3d0 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a15da43 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a87df9f drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b34cb95 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8dd1f8ff drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92ef8804 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96ab0641 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98a31400 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99627afa drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c334402 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa008d8e5 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1253c52 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3719f9a drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3e241a4 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa487ae25 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa507ec16 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa66c3b89 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9132073 drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa2d317b drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa992533 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad4375ed drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadd10dfd drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf23407c drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb12d305e drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4d55f93 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb572f5a2 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb62fdfe2 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6cfc880 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb768310f drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb82016d7 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba3c3370 drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd0d9cb1 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0effe32 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc17f3677 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc430533e drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7ad2c46 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8e260a3 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc96cfca2 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca19c32e drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfe42190 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1585356 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2604e6b drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2f6a086 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3866cee drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3bdfa0a drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4b657b7 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd632e9e8 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd650b035 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb36b87a drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbd3697c drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde7d83c0 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe21248f4 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4068cf7 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe453c9b4 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe76e6486 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7741afc drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeaacd3a7 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb5559c8 drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec57f712 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecf7ccd6 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee406bdf drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0a43903 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf26fc738 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf43afc78 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf595e87c drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6338666 drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6bdd3a2 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6f7835b drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8822ce7 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8a98d15 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9f26019 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfac6efb3 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfba2892d drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc17bec2 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe2e001e drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe3e7318 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0677d271 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x08f00c21 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0e423df0 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1230f120 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x136ec7fa ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x274187ba ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c189d87 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d012ac5 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33ca21a1 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33e881d4 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x376b6d89 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x384fe76b ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3b3ac728 ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x436a839d ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4628b006 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50ae950b ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x514e8dad ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x51cc715f ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x51d481b6 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x526d5a21 ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x57980ffa ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x57e1dde8 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a586134 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x603e0747 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60f89cec ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c0ec969 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x715fc4b3 ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74bb6f68 ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75b43d43 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7bb6d681 ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7bc32084 ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x83b88afa ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8589758d ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86bb8a6c ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87828ffe ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b033f92 ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x93dfb21b ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x97ced2b8 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa334a947 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5c883eb ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaca68f5f ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae87b61d ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae9e2ff1 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2ea76ad ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0551837 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc29c12d6 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc6f7ee96 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc968d68f ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0ac658f ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd5e342a5 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd663a31b ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdae2e8fc ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe0b3b40a ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeab3eddf ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefc4df0d ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf16096eb ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5ef677d ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf68720b7 ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa81813f ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd7484d3 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe8cc064 ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfefd05a9 ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xffd9403d ttm_mem_global_free -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0d998c14 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x2299d02c i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x5a1b87ad i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x74bfae9b i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x34d02782 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x64aadb16 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x4c86a9e5 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x041bc6a9 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3bc616f3 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x43f67c06 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x532c909e mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5e344031 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6898b0a8 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6ed0e759 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x736ff7ea mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x753e9b36 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7b02211e mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8635fc55 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x86e4e50a mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb5144553 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc0ba6dde mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcd51aae8 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf3b79649 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x1b9be0dd st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xdb8b500a st_accel_common_probe -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x41ab9d36 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xdd72c124 iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5083ae21 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x61ba877f iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe30f831c iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf55e54d8 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x08d9cfd9 hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x21fed865 hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x5a12740a hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xb5bd9fc8 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc7978f8b hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xfdb1a2bf hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x5325c915 hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x9f2d8da7 hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xa83cf5ae hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xc99ca01c hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0913af86 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x23e2d56b ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2df8ae75 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x41a27fe0 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x45e6c536 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4dda48c4 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5acdf906 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe17e6cc9 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe3ffa8f7 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x25d6477f ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x41a0cac6 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x5ee59ed2 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x62ed1791 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9e826d37 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x9f0fce18 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xa3e28bb6 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xbaae186b ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x08b3efd3 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1289f787 st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x20e6f6c0 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2d89c168 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x366e501c st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x46be2dc1 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4b06b392 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4ee70872 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x686f255c st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7f59149a st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x970c5a66 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x989d13e8 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa325e6da st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc8f3741e st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe423b549 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xec444331 st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf4d5ab40 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x9132bf89 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x9e604174 st_sensors_of_i2c_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x6b74df52 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x3ccace28 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xa3d644f3 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x389e6edc hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x1337c5b0 adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x519f0b4d adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/industrialio 0x038a569c iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x0c5901b7 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x15f5c108 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x19f61117 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x27ea3a65 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x29fb9800 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x42f1b21c iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x43cb1301 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x477176cf iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x599fe5eb iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x5abecb29 iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x63ada6ed iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x64766737 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x888a12b3 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x9755a87a iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xaac1a6c3 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xf6071bed iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x84c2cec5 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x84de06e3 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x65544aef st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xa68f8d64 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xea7d3e86 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x40697d0c st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xf7b89cb5 st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x14a97e6b rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x2d9bced0 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3f02282e rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x5347cc38 rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x776b9de8 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x7df81f32 rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x08625343 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x09ca059e ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0a4c0694 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x73a93a86 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7dad4bb9 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x840ab206 cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8ca44ce5 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9a75180b ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa96e937f ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaa78cc23 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb0aa27f8 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb5cc97e2 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc4bab8f3 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc70245bf ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc73937d0 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd7e58b1c ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd963deb3 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf75628aa ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x031290e2 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0427d1c1 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0472d161 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0eec558d ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ef8e96d ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1020168f ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x112b475e ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x113412ce ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x121d932b ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x123c3ab3 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13427d45 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x140377ed ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15c93ef5 ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x179f6793 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x206e9e1d ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x234e8829 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2860770a ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2978a460 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f6ca22b ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35318c25 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35fee1d9 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a5ae2dc ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a82f527 ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c46e28e ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ccf168e ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x410c25d9 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4322e788 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x491bd9dd ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51fb3ea6 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a522004 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bcf7e5b ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d4adddc ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e913ecc ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x609ed0d1 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60a6cadf ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64f201e9 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x675bbe52 ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6854dfc4 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a1b4cc9 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a4854bb ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d73f8bb ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f96b482 ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7075d308 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74c0ad1c ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83984d65 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85294036 ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x854ec0bf ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a766bc0 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ca7093f ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8eae408c ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90ec1416 ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92cf2c88 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x963f3646 ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x986731f4 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cfe486f ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa327f768 ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba004acb ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbac0d0c2 ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1cf59ab ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc361a530 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5a4f2cc ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5e35b7e ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6ddb8b2 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc80d9cce ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc88d36b9 ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8bf4064 ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca316f5a ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf84a755 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0b95f2f ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd186ef8f ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd27b3676 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd27dfc81 ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd336afc8 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9f3fd26 ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdef279a0 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf923e67 ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe35b357d ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe39ed97f ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3a2b808 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8de778f ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee299673 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2e9f337 ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3bfdc25 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x05df40c4 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2352c88c ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x3230044f ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x3dda0778 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4a2d9c6f ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4e2908d9 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x62c0a534 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x686c2c40 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6ec5f17a ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x76743881 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7d7f2ba2 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb1f3c15f ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xbbd4faba ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x3b8a3424 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6a9cbf9e ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x76efd514 ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x848ad95b ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8565e4e5 ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x945aed0a ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9e7aad54 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb655b469 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb800fa16 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xdcca95b9 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xde9e1b2c ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x39173321 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf5c282c5 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x297d9ce8 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x331111a8 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x47403865 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x492894b4 iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x59d1fe87 iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x836b7fc3 iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x889bb509 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x98405304 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99effe9c iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa1939ed5 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbf1ab752 iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcd5211f6 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd88a7cff iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe5446220 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xef7882e4 iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x07e853a4 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x09a24a09 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x157b0c23 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1eaff8f3 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x443c754d rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x61fbacbf rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x656aa193 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6e9f7847 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f1a6553 rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x73e72fa7 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x91002c54 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9f603d54 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa89143e7 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbebefc7b rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc0b47cd7 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc10268ba rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd2d8f14d rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdd0ab036 rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdee431fa rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe5baff46 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xed050017 rdma_resolve_addr -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3765df19 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x40febcd1 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x7cd1acec gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x841e07a0 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa07530a4 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xaf9b82a3 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xe5df6c66 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xee8fba0a __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xfbadaf5c gameport_set_phys -EXPORT_SYMBOL drivers/input/input-polldev 0x0da0bf70 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x4215acb5 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x46cdbf7d input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x64a02901 input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x91706c8d devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x2abfdda6 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x2df2b4e8 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x38fff33b ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x3cac8351 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xaa04a69e cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x33055473 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x405e3ba4 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x6adbd770 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x83a0d4da sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0xa9fad94e sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0xf8a6e255 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7b23c3ac ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xe78d011a ad7879_probe -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x588fe0b5 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7414d43f capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x83ed3d28 capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x954a1aa0 capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x99fe594c capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb249d6c4 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd6adc268 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xdfa03105 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf6f10be1 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfcb8d158 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0b78b76c b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x280138f0 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2f0ad758 b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x49378ae2 b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x77058cb5 b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8474452b avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9348cdf6 b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9e973bba b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb18054db b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb651bb84 b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb69c2a1a b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xba784fdf b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdc955196 b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf2468d5c avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xff32c80c b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x14fbe437 b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x16ee3ff6 t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2384099b b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2d396353 b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3d2dfd10 b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6302d2c9 b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x79b305df b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8238dade b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb107754d b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x85a01abd mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x868cf122 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x905856ab mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9b4c3e57 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x1c865b0e mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xb167cff0 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x5f660ba2 hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x6fdfa722 isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xb2c77439 isac_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xc2d05619 isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xf8c09921 isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xfb9cad05 isacsx_irq -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x07f7f9de register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x29716cfb isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xdb79348f isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0cc43cc5 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3345796c recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x46c887ae mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x539d0b0c mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x54751159 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x553d0a76 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5b1f7a8f get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5d8abe91 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5e2a666b mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5e888573 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8942a939 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x929d0fd7 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9f75b7ee bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xac9f3007 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbffdffa9 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc232d175 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc983362c dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcbc0be36 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd8b357b2 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe656614f bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xedd484e4 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf89c2715 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9925529 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x059ca49b omap_mbox_request_channel -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x46df06d9 omap_mbox_enable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x65b15e3a omap_mbox_save_ctx -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x7764f69e omap_mbox_restore_ctx -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xae517f4d omap_mbox_disable_irq -EXPORT_SYMBOL drivers/md/bcache/bcache 0x05224fb5 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0x21c7828c bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0x29671226 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x2d671458 closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x3361c614 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xbf1ad7ae closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xf8fd4bac bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-log 0x0a359638 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x1a5890b0 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x9bf6ab10 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xb52f0d16 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x563f3d5b dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x60b577d1 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xcdfe1f47 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd6a3d7db dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xf6fe4bbc dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xfe87d135 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/raid456 0xa2993fb7 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x006000f3 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x07e3003b flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1e78a521 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x265a1b75 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x41a23233 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4d0476d7 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4dce9769 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x54db0766 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xab31818a flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xad5b6d9e flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbdfbfee7 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc3c79a72 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xebf8287c flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xd34d6171 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xe7ffb8bc cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xe8b6c7dc cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xeb4aad73 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x11f70dda cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0xe94ccfb1 tveeprom_read -EXPORT_SYMBOL drivers/media/common/tveeprom 0xef22e66c tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x03b54d78 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0aa376f2 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d6985ba dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x10fee097 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28c40493 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x300fa8f0 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3088dde5 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3109017e dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x344908d4 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3656cb10 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x41df80b9 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5efab63b dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x629f9d31 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x67067bbf dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6821b35f dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6d3887c9 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72180695 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8633f37b dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9562352a dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x956b645d dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9850cb88 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x989a080a dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9c19040b dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa2265d15 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb018713d dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb5bbaa06 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc03490ca dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc7050af0 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcdbcbc7d dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb1a8bd4 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdc094c39 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdfd900ec dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe327cb6f dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5c11f47 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe7461791 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xea8dc43f dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf431d564 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf48116c6 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xc7423adb af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x61b843d0 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xfefcd2bf atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x26038775 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x29adff5d au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3a1f2187 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x65b31c8c au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9b1ded32 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa824e3dc au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb4c0f901 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xebc77e18 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xffa42c86 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x624041aa au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x99079221 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xa8f6debe cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x36b247a0 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x9723398c cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x050cbb6e cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x68f266f9 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x686bffc5 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x466cd3bc cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x642e91e1 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xf680f374 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x0c37802c cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x20a739db cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x4b428513 cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x8f94bf48 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x1c38271c dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8815648a dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8dd58119 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd1790b96 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xfe42a621 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1328f42a dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x185954fd dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1913fda4 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x23298e5b dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x494ce8e6 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4d695c43 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5bdd9f0e dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6f50d60c dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7173ce46 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x825d7305 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbeb3e828 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc4dd9166 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd2979b15 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfc2b5551 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xffbdc787 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x754c09ea dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0e2be731 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4c7aab2d dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa25ac87e dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc9f37795 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xcd94f308 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe2e0f78f dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6959c798 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x932ce859 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xac353095 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc3926a18 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x35d7ecce dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x1ef4636f dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x5dc3f63c dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6bae8180 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb6afbdf8 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc6277246 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd0bcfd76 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xb629269a drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x2438ce41 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xc165a2dd drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x73ba021d ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xd1a2ccc4 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x3d137f66 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x960d878a horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x1a76fa99 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x4b4a1599 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xdf44d3f4 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xb977e594 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xccc0d9aa ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xff249311 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xda784e31 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x801ddbd7 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xa4ef486b lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x76111848 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xb2da96b8 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x5a3ba4d2 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x177935e7 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x86c187a1 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x5d254e41 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xb277ca28 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xe78bf9fa m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x28b96b95 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x80eb0159 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xcfddd91a mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x284b7c96 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x0e214d45 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x3ff48f9c nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x97743d76 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x91ef7fe3 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xe8fc4a24 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x0b566c62 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xa9838fe4 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xedc303d8 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xfbaf7fb9 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x57faff31 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xc18ab7e5 si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xdaa2fb21 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x1407ec08 sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x352c6d69 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x4573c65f stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xb8349ac1 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xf394a570 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x4524e823 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x9c3d44da stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x9a9ca4ed stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x5d44aaef stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x8ba6af08 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x2fc3d123 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x5d3b8411 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x58150e46 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x9203e2eb stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x42015639 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xe69cd2f5 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xf5485f90 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xe634bd2b tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xf4ca2e61 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x0f5a6e08 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xda31b9cd tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x71f5dee9 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x6caaf1f0 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x728ba0fc tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x592b1baf ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xf0528614 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x2697a906 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x68676b6b ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x0b8f91bd zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x9e8765a1 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x67a6b249 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x364214ba flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4089ed2c flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x44a8715c flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x44dc0af4 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x85d191fd flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb4f6eeb8 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xdee5d713 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x00c849f1 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x015057df bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x3cfc5cc1 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x858bd290 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x57781da6 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xaa88ca0f bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xe25a2900 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x33ecbd6d dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3f27e8d6 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4dd79279 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4f6c4462 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x55295d89 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9584450a rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb1ae1fa1 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcde725c8 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfec60803 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xf5f68526 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0cbda6ee cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x89843fbb cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe1cc4210 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe20f8e97 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe36f913f cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xf089a7b5 altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x030c1f59 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x40fa15ec cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7c05f8e1 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x839ce207 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8c331ecb cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb2281e67 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf4e3287b cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x38c31073 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x44dd44a3 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x63cdba20 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x82bb6146 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x93a191bc cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd9fc9214 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2af23f8a cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x62859905 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8f849112 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa6dfefd1 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb23bd2af cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe5806c3b cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf95ed8b8 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x011b2bb6 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0a3449c9 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0b236d4b cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1a93f2a2 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4f047e14 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5a24da8a cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6a0dde8a cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6e45ee39 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6fcbf446 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x74976024 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7a98dcf2 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8207a61b cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xab4bbaa7 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc3e6b61a cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc5228c5d cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd33f2e92 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xebfd4c00 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf619d5f7 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf70623ce cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfa525b44 cx88_reset -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0887a6f2 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x13694ba6 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1b80110a ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1d785b87 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x311f5f5a ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x32c6495e ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5b287ca4 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x65979948 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x65cc178a ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6a8da30a ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x87e178a4 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb54f1ccd ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc8b1fc71 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc8b457cb ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd221b79f ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe5098fcd ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf5e678e1 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x09b684d6 saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x28674fee saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3da93b50 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4b159a64 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5690e88b saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x59888266 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa3540aed saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaa9a7e80 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaf79569e saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb1a9cdc8 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb2e669f5 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc961d1d5 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xeb43ada1 ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x0e782d49 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x0e969b3f soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x2c3c4d85 soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x2ebc0e58 soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x41b63db4 soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xc93e6e1f soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xcae464ec soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x3db94de3 soc_camera_client_s_crop -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x96c27df4 soc_camera_client_scale -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xac2cdaa0 soc_camera_calc_client_output -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xc5200871 soc_camera_client_g_rect -EXPORT_SYMBOL drivers/media/radio/tea575x 0x0537a93e snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x0faaaf22 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x47167713 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x52a8f10b snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6e9bdbab snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x75451f14 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x93bc272b snd_tea575x_exit -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x26b497c6 lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x66b74f24 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7832d31a lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9213b5b9 lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb78e9b60 lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xd8affe6b lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe35922bf lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf460fbf3 lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/rc-core 0x2213e8f7 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0xa51b53cb ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xf19141ec fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x0131bd18 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x427b8878 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xca04ae38 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xfdfbb4c7 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/max2165 0x420e2f8a max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x13bd0adf mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xa55cf985 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x2694ff71 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x87e966d6 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x4d4e80aa mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x325431fe qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xacbdf764 tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x9316315f xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x4a675851 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0xeaae74b5 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x9d8c2b8d cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xbcefc3a4 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x02b16740 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x55b8dd28 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x619c52ce dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x699c5c4c dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x70a2a16d dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xac6ca43e dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb67ce409 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xca6bd931 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcc9c0b5c dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2a33aa7b usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6940a1b3 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7e930487 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x81d9dec3 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa4949757 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xccf2c6e2 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xde987811 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x493f301e af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0066f8a3 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0448986a dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x24d90288 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4d6bf026 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6fcb0880 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x82b451a9 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9338816e dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x959e7584 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9e140c05 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc19793ec dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe8913212 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x739ed24b em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xe9b7b897 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x00a3b645 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x307a7320 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x37fe6c3e go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x570b89c2 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5b33a65b go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x609f9930 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbc4805d1 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbfd0173b go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe84bdd36 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2c7ead47 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x322ba10c gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x40d20767 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4cde52b6 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x59ea7dea gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5a56650b gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6bff7919 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc6d8cff2 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x9d425ac3 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xb3a633a2 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xcd8fd14c tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x0a8bb1dc ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x214cb016 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x0605ecbf v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x670b6023 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xd3f30fd8 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x32d65c4f videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x5da74224 videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x78eaa71b videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x92b50988 videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xc3afd6c5 videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xfa9aef09 videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x27fc331a vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x682d3881 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x67ee2e1a vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x6d1cdb28 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xa356ab17 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xc81f8166 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xcf167e6a vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xf5d7b12f vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x38138cc4 vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01b8c774 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x04d27de8 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x070a65fc v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x07f611b1 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09d92a45 v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b77ace2 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f48389e v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0fe1de6a v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x112ebcfc __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13aead98 v4l2_of_free_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14760da4 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1916ae63 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b21ee33 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c1f707d v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36d7dbe4 v4l2_of_alloc_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x37cb9ed0 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x38973f60 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a523282 v4l2_of_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3cb5945c v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3e8db564 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x407f4ed5 v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4576e28c v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45c126d9 __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x47454564 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a312eeb v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4bc01fbc v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c487670 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4cf8688f v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5072bcf9 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a2975ea v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c6e72e1 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x62397640 v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6259d84a v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x658e4a20 v4l2_of_parse_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x67779ac3 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6929ff48 v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e5c5ed6 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x808885dc v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83fd1fcf v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83fe9ce2 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x86df6ad5 v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c80ed03 v4l2_of_put_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9600e7a6 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9899e6b7 v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ac742e7 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9cc5bfa2 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa3e09477 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xabe036ac v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4c8c639 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb66d9bac video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbde057af __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe7a24f1 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe9d0b45 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc232d304 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc24b8079 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5c966af v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc88ccf87 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca3f39f8 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce45dd80 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcf33050f __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd24b820b v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3254c4b v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd5f263c1 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6df30e9 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda24763c v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe238dda6 v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe45ac063 video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe981dbe7 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xea8c1476 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xedd5883f v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf06315c7 v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3c03348 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf80f2463 v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/memstick/core/memstick 0x17f7178f memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x259de547 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x45cf7d7b memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4dca47db memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5b8068a4 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x7a16c10d memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x80489da6 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x832bd2f2 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x95e1dd5e memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb94ab0f6 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd69b5808 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xda26d167 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0280ad2a mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x32a18172 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x404c5b52 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x46fc20e8 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4f078d00 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x55c71b23 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5703335d mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5c76577a mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5e934b7a mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x67b74da4 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x727a1f23 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8183b6d3 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9741d87e mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xab6f030b mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb684d795 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb92e3933 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0beb86f mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc2818ec8 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc29a7501 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc7577faf mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc88466d3 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc99a56c4 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9166139 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xda97f604 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe5429188 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6419f2e mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf0169b72 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf29be71c mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf891f6cb mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x08b325f8 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0bba6741 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x105f621e mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1fc5d13a mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x257338c8 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x26377234 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3953e345 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3acb03cc mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3bd01ade mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3f8d69b8 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5193dbf6 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5cb2d726 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x61416f5b mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x62f30098 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6c917f17 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x94db96ea mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9ff4baea mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb1b344da mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb3e4803f mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb9a38200 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc06fc8e2 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xddd23179 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf56fc29 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xee1bf2a1 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf1dff4c8 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf2c6f7a4 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf352ddd2 mptscsih_qcmd -EXPORT_SYMBOL drivers/mfd/cros_ec 0x00451549 cros_ec_suspend -EXPORT_SYMBOL drivers/mfd/cros_ec 0xce04c8c7 cros_ec_resume -EXPORT_SYMBOL drivers/mfd/cros_ec 0xdc3a5e30 cros_ec_remove -EXPORT_SYMBOL drivers/mfd/cros_ec 0xf8d7e21a cros_ec_register -EXPORT_SYMBOL drivers/mfd/dln2 0x98edeb9c dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xaa8a1af5 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xb1c14ad1 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x2094f4ae pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x8767b89f pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x12db3264 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x19a00a28 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x512c5742 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x575f32fd mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6052e9f9 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7ec7bfb3 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8758eb7d mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x905f8e5b mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb76fba14 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xba94e851 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf2160755 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/qcom_rpm 0xd042c9be qcom_rpm_write -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xa5fcbcf0 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xcb30783c wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x54c9de9e wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x72f2d4ac wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xcbabdcb3 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xf991672a wm8994_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x45a2cfa5 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xa9f6e38a ad_dpot_remove -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x8a05ed90 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0xbd7cd007 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0xec155d55 c2port_device_register -EXPORT_SYMBOL drivers/misc/ioc4 0x48ee4985 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0x9d1a3442 ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/tifm_core 0x099cd496 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x1e514b87 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x396c0889 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x4f47d6c1 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x81cab064 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x9ce4a69f tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x9f761faa tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xa0a5bb11 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xa91679e3 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xcfd0aea1 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xda0667a4 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0xefa06a41 tifm_remove_adapter -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x72eca10e dw_mci_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x8ede77ad dw_mci_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xe90005fc dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xf898ff42 dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x05d9008e tmio_mmc_host_free -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x6d3deee9 tmio_mmc_sdcard_irq -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x7a6fd700 tmio_mmc_sdio_irq -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x9785d0a1 tmio_mmc_host_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xa589b97c tmio_mmc_host_alloc -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xe2a45dd9 tmio_mmc_host_probe -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xf02062dd tmio_mmc_card_detect_irq -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xf2364578 tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xfe6799d3 tmio_mmc_host_remove -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2cf4ef01 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3a9317a1 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5b30fde0 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7e9216c7 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbdd7488a cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcd0982cc cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xefb9a7cc cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xa3cbee86 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xf190a266 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/nand/denali 0x52dacec0 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/denali 0x60bd817a denali_init -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x55c97258 onenand_default_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x75b1ab06 onenand_scan_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xcaee84ce onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xce6c2bbf flexonenand_region -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x03e6e7d0 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2797f785 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x31073fd6 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3c550259 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x76daec0f alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7c70407d arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x811d2282 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9dbf8bd3 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc4e5c8c7 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdbab2878 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x9b33af75 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa2997ae9 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa39df0cd com20020_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x07afb286 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3358a583 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x608b19da ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x76379950 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x967e0da7 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x96ff5b2b ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9a2c607e ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb19adb92 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb83c1ac5 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf39953b2 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x2748c13e bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xfd715a23 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x013eb15e t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x09175587 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0973175d cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1826c07c cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1be54631 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x27416a33 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x30548d47 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4a50de1d cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x698dc9cb t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x94b4bf1b cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa9c3b1f1 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaac4e2db cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe3e1f008 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe81bed2c cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf62724b5 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf9b6c1ee cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x063aad53 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b6dbdc4 cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0cf31e1d cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ec3aa1a cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x18384f60 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2dd6c3f4 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3fbace24 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x448f3b34 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4de31aaf cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4f4a5a13 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5450a30a cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5ef3faf6 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5effae17 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6af4c72f cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6dd163ab cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x726b2e1f cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76d16ea3 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7f3940bf cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c8df3a6 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c2f469b cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab7ae98d cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb67539c4 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbc4e6bf0 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc531fffc cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00a4f2f cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdf155350 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe08629be cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe1c3791f cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe2043230 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe49e1ca3 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe74f3899 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeb9e1466 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf57646df t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfed497cc cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1245dd90 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3292d47a vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6c8af693 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x96af5322 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe9b0a610 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xede99d9a vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xb4e855b6 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xe8d4cfae be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x2e4998c2 hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4a74980f hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4bf347ac hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x9a17afd8 hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xf95978dc hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x080868f5 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1130ef58 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15305ec9 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a064acc mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e0fef1d mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34677fc4 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48f7bd5f get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d549a25 mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68aceef2 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7155246a mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72d915d4 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72fae3d4 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82607694 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90480bf7 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ace2d31 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f0321de mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa873b12e mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa92d98b6 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9572a90 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5183743 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb83ebabe mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbaac94bc mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe5bba68 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfc5b539 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2befc49 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4d9e3ab mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2825d14 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3843513 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3d4ab4a mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcbe7fab mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf66eaf1 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1769a39 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2b96263 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf61d0448 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6af3ac4 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbd25da4 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdc2c524 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe28edcf mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c1b9fed mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f8d7557 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11d25aaf mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15a0d16d mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e32cac1 mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3183b9f1 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x340228b9 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3404ac76 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x361c8b63 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36a99884 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c3f1f7d mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c7c8d95 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43640491 mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47f53f1b mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e8fc040 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51e8716f mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e8386a6 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x657f4ea3 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66872aa5 mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73178e2f mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83e64444 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d68f3d1 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6fd7dd2 mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaec0fadc mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb00d6d47 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb815317 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbba7a6c4 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd605cbe mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbeb8a08f mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc200e508 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7efe523 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb563c1a mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd32901f1 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8571fd5 mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb588046 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0b66cb7 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef21e44c mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4e5c528 mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1d37990b mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2512bfaf mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3b369001 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3efe01dc mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c7fece7 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63af48d5 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7ab57145 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x805dc795 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x149c2903 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x66550579 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x8f55bc53 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe4fde60d hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe9810cf7 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x21a20cdd sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2bb8520b sirdev_raw_read -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4627e65a sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5a92dd6f irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5bf1fb9f sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6ad7d546 sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9edbb168 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb5e18f89 sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd9412945 irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xebefb641 sirdev_put_instance -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x3183e4f1 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x50f61507 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x52fccdc1 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x5438a73c mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x8d7f06ac mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0xb77acd36 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0xc6d09aa8 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0xfb4c8d7e mii_check_link -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x3fc7bd9a alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x82afa8b5 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x144e8068 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x154423a2 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xf528db72 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/vitesse 0x11e8a157 vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x440d29a0 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xb707289e pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xc9ee6be5 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x1789a23f sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x2d63d646 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x37393c32 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x8d24b995 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xb1c41aa6 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xc5a80536 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xc72a9abc team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xcc039427 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xe34690a2 team_mode_unregister -EXPORT_SYMBOL drivers/net/usb/usbnet 0x3ebc6b64 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x5a2a2ad3 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0x89b86e4a usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x8ee2e5f7 cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/wan/hdlc 0x123f5cf5 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x3d70bea8 hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0x7c53c85c register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x7df2a37a hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x9899c8c8 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb3aa34f4 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc93b69c2 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xcd27ac7a hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xcdaac827 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xed463cba hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xfe4f507e alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xb25c9aa9 i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x278986db dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2b2b72b6 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4ef46411 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5789a5f6 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x99b980ab ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9cce78f7 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9fd8310a ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb5273f0c ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd108ed3f ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd181d42a ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xeb4f15fc ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfe78ac84 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x059c765e ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x19a747c8 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4582f97a ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x540e1bf8 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5d995371 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x78fd0502 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8818babd ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa0632593 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xae6f3987 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbf19b476 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc495211e ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd19af143 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd28ac533 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe790a101 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf9712859 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0b0979db ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0dad2ed6 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x14f7c08d ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x16aa87cd ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1c82e8ad ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4aaa1f8f ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x92189f83 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa40661c0 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb8c6dac5 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe0beaedf ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xec898c9a ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0086c3e5 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x07496420 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1e861937 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2dc77d46 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3b7a3308 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x447c2ede ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4807173c ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4bc24e86 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4d4eafd8 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fc0a910 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x90d0b27c ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x90fa117f ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9272ad57 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9ab664fd ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaafcf48d ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb6ee427e ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb7dab6f0 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc55a9aa7 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe83b5174 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe9fbc230 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf278d321 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf2f0c3cb ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfaf8ca7a ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x041d2338 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0659181b ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x090aac43 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09c0835a ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12579ee1 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12bf1957 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16edaa42 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x174a9545 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1761bacc ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a8f05ca ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b566f05 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1bd5428e ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1db05461 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2022a9b1 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20dfa2d6 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x231b0773 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x243b3fd8 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27a7601a ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27ab98b6 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2800c3ac ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c8ebb09 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2cbb9813 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f1bf515 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33910a65 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33afa4e7 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x341421fa ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35352f66 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x469e47e5 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d4d3768 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5087bae8 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5103c505 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5705e289 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5926c637 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x599ea5eb ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d73c821 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60fe50ac ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6427ff14 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x696814df ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69fc2459 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x708f1701 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x710a1165 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72fdef24 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x744ab8c9 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78ba638d ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x797070bc ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a33986d ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80535300 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x815a36ab ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8201e55e ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x855a3206 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cded103 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ecdb659 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9398f253 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93efde6a ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97f1948f ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x991291b5 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3798320 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa44ce11d ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7609476 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaad2bc56 ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab8192fe ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xacbd3245 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae24709f ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb03e6c1b ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb183ac68 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb29415d0 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2cddaac ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8d99e5d ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba92301a ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb067468 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbba6bff5 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd1592ea ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbec00be1 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc63d8d7e ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9db3f13 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcdfab3f6 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf1ec6bf ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0293fea ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd08707d1 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1ca4219 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3466024 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd891f89f ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9e23ed4 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda78699c ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcd48729 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdec2637b ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe05fc27e ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe195bac3 ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe348fbd2 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe40fc8e4 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe732ce3f ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe769c8e4 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe788d6cd ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7d64ccb ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe906ca5a ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9fa3445 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb3324c4 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef749467 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf258f8af ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf31ff536 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf848bb99 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbd72d1a ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd6b23ec ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe85fb08 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfef3907c ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x2faa52e8 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xc9426b51 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel 0xda5975d3 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x17c11627 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2a100051 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2dd777d2 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x341490fe brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x40a9585b brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x540ed272 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6d2c4331 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x72dd404e brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x74128830 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x780d06b9 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x80e17ee5 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc50b9c79 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe6dbe123 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1300ec3d hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1d8610bf hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x205dbfe4 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2d1088b5 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2f4c3bd6 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3e4bf9fe hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4e265dea hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x55dc5d48 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x587284e4 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5d44651f hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5f0e114d hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x65745805 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6a297f3a hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x70da1a3c hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7680b86f hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7eff11bd hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7ffaf93e hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9ef8f2a7 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xafdda9ed hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb9e2206b hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbac582ee hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbc002dc0 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc7045a4e hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcdd229d0 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xed54e114 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x02b27de5 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x07ba519f libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x098a2f4c libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0fa57e7e libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x13897a3c libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3983193f libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x427cd24f libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4491708c libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4e7054f7 free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x511b4300 libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x512a69f3 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x736ea634 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x77663123 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x792bbef9 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x84362b40 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xada5bcd1 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbf8791c5 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc8e28f58 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe69018bb libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xede57773 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf6edb219 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x050fba6d il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05fe89a4 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08b88f75 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0914243a il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0af0bcdb il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0f01c792 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x102477b5 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x105afa7c il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x10762534 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1127e132 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x112db4d5 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x158acf95 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x16717468 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1e90c6d9 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1fb54211 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22b40c7b il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22d82d21 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x23de0d72 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2495ffd2 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x303f7061 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3358c228 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x362f2347 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x371a4249 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3736ffb4 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3db65dfb il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x40667d55 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x436ef479 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x46412d5d il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x466ed128 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4b4d7b79 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e82c280 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4ed8243f il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4f7863cf il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x57640467 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5ba5ae18 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d611edf il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5dd9152e il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x633b189a il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6374efcc il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x64128882 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6514311f il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x65e24452 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x672a8355 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6804014a il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6999c281 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6f793178 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x76d1328f il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x77795794 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7a2f124b il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7a87b35e il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7aa36f0b il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7ce15935 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7dbfa3a0 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7f4afd82 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x817201f4 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84979172 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8cf7ecf4 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8e80d630 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8edd21ea il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x905f3708 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x96381266 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9912c6f5 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9af9fa3c il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9b0f4465 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9bfe9661 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9d7cf523 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa67ab79b il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa7807d0f il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa92c46c6 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xab159ce4 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xab4be234 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xabc73741 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xae47d66d il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb246836c il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb34f5701 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7195253 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba632fee il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbb1213c0 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbef43ef9 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc55b02e4 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc69a2397 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xce73df97 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd408e3f0 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd438db08 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd471b53a il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd546c872 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd90f169d il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd96ae1f5 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdbb6c83c il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe00693e3 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe39776c6 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe707f6e7 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xedd05769 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf1146fba il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf1672039 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf1dd367a il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf59de4e0 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfa34f889 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x180d7a46 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x208d96c4 __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x26bb7eb8 __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x436814a2 __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x496d7aef __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8f81067c __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xfd34aff0 __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x01b3e4ee orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0f6443c6 orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1e4904ff orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x37c3dbd3 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x38229a0a orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5570975f orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5bd4bc60 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5bfb0c47 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x605e5315 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8893b031 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x907c037c orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9f566c2c free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9fcb9dc5 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd3ec4d1b orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xde5321a7 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe07df55e __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe3b2032e orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xd74f757f rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x027e87f4 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x02b3e3af rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x07bfd5c7 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x07c99024 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x130e117c rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x13d136fa _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1875563c rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1beb3f11 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1ea9c45e _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x255dbff2 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x360cd145 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x36cec5e8 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x50a94172 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a1a7a95 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ea3cb33 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x649a59ac rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f5f0245 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x729616a6 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x794cad07 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x80eee2c8 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8b5f421a rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8c896969 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x95650e76 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x984385c8 _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa00e24d9 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa1682c85 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa4747061 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa517b7b0 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa7a8d42e rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaae4fac5 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb654a2fc rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb77bc42d rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb792f38e rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc55cafe8 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc8869761 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcb2a0b1f rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xef1cfe4d rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xefbc710f rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf0c00643 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf75c90ae _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfbe4cbc9 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x46d6f549 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7757c957 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xaeff62e4 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb43dee2c rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1595ae0d rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6dca00b7 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x9eb70ea5 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xdbac81d7 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x11f68a7a rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x194ebde0 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x238e6198 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28ead3a8 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30800a45 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48572f04 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x50408724 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x619bc305 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6285039e rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74793e0d rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a19d262 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fe77e27 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x83c94810 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c32668d efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba36edb0 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc18f7671 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3386b10 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc710d6a1 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc81cb878 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9e56e00 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc1f830a rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd58a6fce rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9d02d55 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2b32cfb rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe9500d9e rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0188855 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf777d189 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9da4ecd rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x146ea22a wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2b96edba wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x883a347e wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf4c263d2 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x5d093f3b fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xa4c232f2 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd71a3f7d fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/microread/microread 0xd46cbb56 microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xf94f10cc microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x27d98b41 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xbbc7286f nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xfa58e154 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x572544e6 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x97e50c1c pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x38055c88 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x46c112da s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9bb62f5d s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x04cfcdc2 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4913756c ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x52f5c90c st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8cb62be0 st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8f8d872c st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xaa95df39 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbcee9051 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcbd74aab st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xde243ed8 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf7b553b2 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf9348949 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x062a9532 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0e678657 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x142bc8d8 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1aa9f886 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1f1bdd9e st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x23527aed st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x38be3e43 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x568a21a8 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x84ff3296 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x99a9a1a5 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa56db3e0 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xad62b33e st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb5822ce6 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc7fcb152 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd3168a0d st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdfbddbdb st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xecf93cc2 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfb6023de st21nfca_hci_se_io -EXPORT_SYMBOL drivers/ntb/ntb 0x161c9708 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x493b3d74 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x4a76572c __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x5d1b3489 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x5e75143b ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x5ee272a9 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xc13148a1 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xc5653c1c ntb_link_event -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x07708f97 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x9c82ab3a nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x4d177f8b devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x017b27e4 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x13002e9a parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x164dc4de parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x17ad53f8 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x17d5fc36 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x277d3e69 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x2cf20c5b parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x3315b8f7 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x3699267c parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x4140cec7 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x4350b35c parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x45631a29 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x465cfd53 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x4a2750a7 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x531fa5f0 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5e7d4359 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x677441cb parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x6c4ff513 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x8ba8d0b8 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x8c33a39b parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x9109c298 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x99eb4860 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x9d72ef5e parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x9fe459bb __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xa9e077e3 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0xb0c7a75a parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xc1dd4928 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xc1ec65f9 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0xcb55befc parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xd6ff3819 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xee3ac49a parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xf8238311 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport_pc 0xac6e9d2a parport_pc_probe_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xc2cc041e parport_pc_unregister_port -EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x0c50b300 iproc_pcie_remove -EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0xd3c4dac7 iproc_pcie_setup -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x056cfb4c rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x19fe032d rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1a468735 rproc_alloc -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1ef6afad rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2658efa5 rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x60830eaa rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xa30d5336 rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb84f3c9a rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc3090c10 rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfc1a99ad rproc_del -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x858ac070 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5cbdce83 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x6fb62348 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8c1c84b2 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xaa5897fb scsi_esp_template -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x10f1294b fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x119fe21f fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x148d6773 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x31e84e8e fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x53863081 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6b8bf9d9 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x72d62065 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7727302a fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x94f3bf2e fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xab85a1c2 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xba26a575 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd6f3563c fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0380dc03 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ae45ae9 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0efb8b67 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a1294a0 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2217b835 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x23806431 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30beba18 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x384be8e4 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x420961d1 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4461b079 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4bfa1763 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59d2cd41 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c8b1673 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e8360c5 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6302291c fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64f11a66 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6688ddd0 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66b012e5 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ae3313 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aac9ed2 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6db60949 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x710d7f0c fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x720be896 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75d8bf7a fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77b34ec4 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79f2b4bc fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7bb6a158 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ef38b2d fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x841d74d3 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ea03cf2 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa3b1c594 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa6a2c773 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb00b7000 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb051d8a3 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb318db48 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb60ac0c4 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7419a02 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd78a639 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9276ee1 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcbc7deb0 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcebbff7c fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd47a5bc2 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd525e340 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe0ba16a2 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8d8b211 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b107a6 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb01c942 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0a89ce49 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x45f91de0 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x66a6b117 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6fb507bf sas_wait_eh -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x66635a10 mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x01fe79cf osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0b13d1de osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x13117180 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x162d168c osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1bb2e639 osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x204be944 osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x258a3b5d osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3c2e4300 osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4004231c osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x42c574d3 osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4c8b0b62 osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x55d9b913 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x56ed5bf5 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5b66955f osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x71541a74 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x751b24d0 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x757e96c7 osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x779c19b8 osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8d1ae170 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8dbcdef0 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9216bc5a osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9313c4d5 osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x99f23f4c osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa10ac054 osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaab55cbb osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xadb93d66 osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xae6e15e0 osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb0815464 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb2f21f73 osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb9175e0c osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc8cbc471 osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xca2537d6 osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd76334d0 osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdaaec42e osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe25d51b8 osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xff0ee1cd osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x6180c040 osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0xac9ecaab osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0xb478c732 osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0xc7cad049 osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xcd7ad719 osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0xdba240d2 osduld_device_same -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x113aafb4 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x12af2fc5 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1f436773 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3637cde3 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x660b67f6 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6c358a06 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8d957262 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x96b77300 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x99ab741b qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9e77702c qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa1bd2011 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd43bfbdc qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/raid_class 0x2ad473c7 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0x644b43a6 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xd7949541 raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x07800ff9 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0790346f fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0c0b93f7 scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x163ca006 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3e933d29 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4a74b3a2 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x537d2540 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x721772ea fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x80e03fea fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8a84bc1a fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x984fc63a fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdd72a970 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdd928fdf fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0c0b0abf sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x157a4322 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x19c76ac5 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2a425596 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3894dddc sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3b65b6d8 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4a7f8fb0 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4a877603 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4dfdaf81 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5e4e33ff sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6169fe3d sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6f4ddd0b sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x74d0306c scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x76426f42 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7831f06f sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7a13c4cd sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8d985d5e sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8e4d9396 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x938cfc9a sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa4bdf691 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb834d675 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc5dfba16 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc808af77 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd91bb343 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe61c06ae sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeb61c27d scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf9798df0 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xff5aec7f sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x04db4d60 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x06fc5446 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x53274ddd spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7193ca65 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb3de82ea spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x06745061 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa2d0400c srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xc154982c srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe5915e1a srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x48d2d0ac ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x780eb0dc ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xbc17c9db ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xc5580e84 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd91a46a3 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf1def841 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf8583a60 ufshcd_alloc_host -EXPORT_SYMBOL drivers/soc/qcom/smd 0x02d2ad8f qcom_smd_driver_unregister -EXPORT_SYMBOL drivers/soc/qcom/smd 0xe9ea13d4 qcom_smd_driver_register -EXPORT_SYMBOL drivers/soc/qcom/smd 0xeda44e54 qcom_smd_send -EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x2f5501c0 qcom_rpm_smd_write -EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space -EXPORT_SYMBOL drivers/soc/qcom/smem 0x63ef36e3 qcom_smem_alloc -EXPORT_SYMBOL drivers/soc/qcom/smem 0x932eb0e3 qcom_smem_get -EXPORT_SYMBOL drivers/ssb/ssb 0x0d672dfb ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x1185b1d1 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x25e1cac5 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x35c7c0f0 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x3de7c42e ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x46874c24 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x4a519a47 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x58e86830 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x7c0e36a8 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x7d7d842b ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x7db6f9be ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x8558179a ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xb80f0cac ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xc0c8a537 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0xc7ccbece ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xd5620651 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xe8f3aaa1 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0xf67f18ee ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xf93f6065 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xffecf426 ssb_clockspeed -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1512fc31 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x21b930c7 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x21d512cd fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2ca85a47 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2ff5ab74 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3982478c fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3a219faf fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x410ce85b fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4ca61d9c fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5052e5ae fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x54d2744d fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5c30af34 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6d4b1b7c fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x79115d3f fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa36567c5 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xab31f745 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaf00ed60 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb205b56d fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb566c60e fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbfb1ec2d fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc9f52df7 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd4261d20 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd585838d fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeba2946d fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x252a9e65 fwtty_port_put -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x4f94cbca fwtty_port_get -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x4afde0c2 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x32d0c917 hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xbecdb51e hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xdd342c84 hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xf234b577 hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x49b9e3f3 ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xc5b47bc7 ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xbd16aeed cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x1c0db7f8 most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x037f734e rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x04144723 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x048a2840 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x144743d6 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1634adaf notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c5d76b8 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x241cbda2 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25113e0d rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x278950e3 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x285c2617 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3130464d rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ae97b9c rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3e83d5e8 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x432310a4 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4b69c699 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d194f24 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d704bc6 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54d1d20b rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5642cecb rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5a0bd12d rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5a12d660 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5ff904fc RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x62662740 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x69cb3ac5 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x76287c28 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e2c70fd rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7f5575eb rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c6c20e1 rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x962760b5 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb315689c rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb633a49e rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb8ff712d rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbc919748 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbdf073d5 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc178a42d rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc663c59b rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc79e3d4b rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc915b12f rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd207da11 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd773d902 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd783a175 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd93b5605 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd986e82a rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe0f64922 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe37289ad rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe430cd5a rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed1cb1a6 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf12d5981 Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7e3479d rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf92f922e rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x00fa0d39 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e3beff1 Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x160b2f3a ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a82c0a4 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x228ef8fd ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x28be3b21 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e6777f8 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2ebe905e DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2fad935d ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31aae3c0 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32d9fff7 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3804dedc ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3cb2e2c6 Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3ce65c9c ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x421c0b9b ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47daaec5 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b2ed730 Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x52bd5590 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56ae72dc ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61b46c62 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e47b81d ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a6ab791 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7de7aad2 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7df204f3 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ac908ab ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8deb559a ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x921f3b47 ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93f26235 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x949d79c2 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9d91c5a1 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa7742083 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab9e3af7 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5323ad3 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5761451 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbcdcf7f0 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc072bf1f ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc1a60e86 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc570da82 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xccaf3c0b ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcec31e5b SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4398696 DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd79fff13 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd86638ed ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdbbb5369 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdc2179af ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe35254d5 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe68a8839 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf0dba4a8 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3627cd1 IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf5da948e ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfbe15b4f HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff782ee3 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xffeaebbc ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x099ae869 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x203bd149 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d9e140f iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42a23b79 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b910777 iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4d9e44fa iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e90372d iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5510e4e3 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a734eb8 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b793a94 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5cb3ef8d iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e06de69 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6f1c5c9f iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7315b42d iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7584ee6b iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c0908d1 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f33babd iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e4779f5 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c2f13f9 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e7134b3 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa2e0683c iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe933ac8 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc12568e5 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd34b9906 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe1ff5e44 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe465f5e1 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf10995a6 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf1ff6e08 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/target_core_mod 0x02a0fea5 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x05e26cd7 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x06dbe4d9 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x09167b0a transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x0a57fdd7 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x0c528549 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f60f0de target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x0fceb8f5 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x13bbca87 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x15fa8f1d sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x1796f925 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x1bd3bb36 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e31f349 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x227892ee target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x231ae47a transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x25ef8e32 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x26204c34 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x2e0db806 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x3047794d transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x3583fdce transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x456474f5 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x45d90c9f transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x4801b761 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4bb9d183 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4bcb9c39 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x50a60b3c target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x523aad04 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x55cc132b target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x59f0015a target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x65a4da8e target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x68d86cab passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x6aa4d14a target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x767573db target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x768fb2f3 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x7866cd28 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a68d7d6 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x7b1418cd transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c4dc34f __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x7fb1a768 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x8191f160 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x81b934db target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x8bc43e95 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x8ce92932 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8f21d482 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x91e4536a transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x92f52cb3 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x996ec42d target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x9b65b4a6 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xa58f515b target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xa5e65734 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xad2ad086 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xb07f2546 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xb0cdbd8b transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xb209a606 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xb6ab230d target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xb93b1ae2 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xbe8d365d core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xcac18f8e target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xcc79378e transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd7064c2 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xcf4fc6e0 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xd9571f0e core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc44393b transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xdd819b56 transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0xe0462c09 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xe3964f26 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xeb28d521 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf8b95fa6 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xfefb7d2d target_get_session -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x3c234a8e usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x49a9ecbe usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xb8f6a0ab sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1f00ad30 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x25a36944 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x27d87f0f usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2ccfc9e6 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x455e919f usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7244a3a7 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa66577c3 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xacfc5f4a usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd4b8b179 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd6900d48 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe3c27c24 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe7641ed9 usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7c036f55 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xbff431c1 usb_serial_resume -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0x0d89d40f devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x35074c72 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x985d5481 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xe3562624 lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0e66bebd svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x46bfc768 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x63f2168e svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa6557ea3 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xbd29863b svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcfe058c2 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd3c93ba2 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xb2fbf37c sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x3a566722 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x8b154b21 sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x62103531 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x2939a65e mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xdceef123 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xeab0131c g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xee81cd09 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x12be17c9 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x638c76df DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7e88e5f3 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xbf69951e matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xbc2df440 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x65f51e91 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x84e7419a matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x94470f17 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbd5a399e matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd8ae2929 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x7d78666f matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xe8ce1049 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3735d45d matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5c08096e matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcbcd0720 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xce9a3a27 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf23b5d44 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xc847bd16 mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x0074818d w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x08eac693 w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x2559a220 w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xee3b6448 w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x29630d7f w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x6b167560 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xa0f7bc76 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xe8f78136 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x28e6e3e3 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x8551fadf w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x9e46357f w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xa75499b7 w1_remove_master_device -EXPORT_SYMBOL fs/configfs/configfs 0x06d382ac configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0x1e7b9a8a config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0x236e42bd configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x31e63287 configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0x416e1912 configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0x428804c1 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x4fdf250d config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0x68e68da0 config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0x84e3d51e configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x96a077b1 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xb97bbf97 configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0xd2a7f61a config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0xda1437b2 configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0xe4132d8f config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xf5cdb856 config_item_put -EXPORT_SYMBOL fs/exofs/libore 0x0b51190d ore_read -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x6ac923c5 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0x6bea6016 ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0x6cd35c2b ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0x857de70c ore_remove -EXPORT_SYMBOL fs/exofs/libore 0x95025b55 extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x956d81b0 ore_write -EXPORT_SYMBOL fs/exofs/libore 0x98787f01 ore_create -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xab766aff ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0xff053dc6 ore_truncate -EXPORT_SYMBOL fs/fscache/fscache 0x034dce2b fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x0640e5ae fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x0856f03b __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x25631afd fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x2a7273e4 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x2fd6917f fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x3434031c __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x55110766 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x57630204 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x5ae60cc7 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x5b56cba2 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x5be596e5 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x606c2b15 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x67360f6b fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x789965bf __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x794abbe6 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x7d350cfb __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x7f23ba71 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x89808b9c __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x8abf3e96 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x8aeef39d fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x91e7ee8e fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xa0bef3be __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xa4db235a __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xaafb67cc __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xbd7ffbd5 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xc430c960 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xc5957a64 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xc7961fcd fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xc80873a9 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xcfada6da fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xd07b8a2b __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xdb9a206d __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0xdbda8b8e fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xe253c62f fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xe5988c29 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xedd42b46 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xef465e0b __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xfb3f5bca __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xff70e5b9 fscache_object_destroy -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x2b4b37b6 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xa5c625e6 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0xb46ce50e qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xd88d2fa7 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xf96125d8 qtree_write_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t -EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create -EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put -EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed -EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set -EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get -EXPORT_SYMBOL lib/lru_cache 0xd34f34b6 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xe34df49e lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del -EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of -EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find -EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x2180a48f lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x842ff0c5 lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0xc7e03414 lowpan_nhc_add -EXPORT_SYMBOL net/802/p8022 0x5df4a968 register_8022_client -EXPORT_SYMBOL net/802/p8022 0xd1768181 unregister_8022_client -EXPORT_SYMBOL net/802/p8023 0x0a63c24b destroy_8023_client -EXPORT_SYMBOL net/802/p8023 0xe2ea8d8e make_8023_client -EXPORT_SYMBOL net/802/psnap 0x2781acce unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0x5dc3202f register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0babdd69 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x15066442 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x1b7976ab p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x22ebd670 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x238590fc p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x28301c52 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x29cf76af p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x33f6f716 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x3c222771 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x41418ee0 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x42e87c34 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x43a585f0 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x4400dd3a p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x4544f8d8 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x45946329 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x4fa73d68 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x5123f203 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x553efdd4 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x5fee21f7 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x64785d8a p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x69ae8048 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x6b84e657 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x77af8d56 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x7ea2ea18 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x81916307 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x847de070 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x95718376 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x965da098 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x9b3384af p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x9ce58e4f p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0xa28da03d p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xa65d7f3e v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xa717bd5b p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xacd32ca7 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xad9be338 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xc65de8f2 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xccc57180 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xd605f6ef p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xe0d157f6 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfc4ca735 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/9p/9pnet 0xfe3370ef p9_client_getlock_dotl -EXPORT_SYMBOL net/appletalk/appletalk 0x0c382d48 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x3ec9f8c2 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x3f77d4f9 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x4c4e5c15 atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x551db13e atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x5a817369 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x60a866ab vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x694fc81c atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x9f6921a9 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb35d486c vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0xb8cc604d register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xc826d0d1 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xd2d3dc08 atm_charge -EXPORT_SYMBOL net/atm/atm 0xdab98539 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xe0499f30 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0xf1774b53 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xf6c6fe59 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xfb92b335 atm_init_aal5 -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x3f6e6656 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x4248a1bd ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x753049f3 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x7ccce1ad ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x964df54d ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xbb11b06d ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xd49eb3ba ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0xe751e2c6 ax25_find_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0919c2b1 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d6fa889 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1406ae69 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x142034c0 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x21384900 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x246ef8da bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x250c3e33 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ac0adf6 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d0e2537 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e6bbe5b bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x368c5b05 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x36da3997 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x37099e7a bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3bec30a3 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f568000 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x41351e61 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x50e2665e hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5448e368 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x658e7fff hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6af6ac6b bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6ea6e06a __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e262311 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x826006ff hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x897a538d bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c07578 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9c2db175 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ff4fba6 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa19431cb l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa434b8e1 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa7b368d4 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb4308e12 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb4f68b5c hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5a46f93 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb65d978b hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc6966674 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd198ef59 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd91022a5 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe71b75c6 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7f19447 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe8ccb196 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf4aca992 l2cap_is_socket -EXPORT_SYMBOL net/bridge/bridge 0xba58ff19 br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1556f678 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb9465ed9 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf6cb92ac ebt_register_table -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x318a14c0 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x481f98b3 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x7fcc0f8a caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xa05bc22a get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0xa0ecc593 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/can/can 0x08ffadf8 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x39589901 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x5cb44273 can_proto_register -EXPORT_SYMBOL net/can/can 0x93a316d8 can_ioctl -EXPORT_SYMBOL net/can/can 0xab4b4e58 can_send -EXPORT_SYMBOL net/can/can 0xc1789339 can_rx_register -EXPORT_SYMBOL net/ceph/libceph 0x00996d0e ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x026639b8 ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0x07093278 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0a38fd56 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x14bedb66 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x1967417f osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x198f607c ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x1c160615 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x1d001c57 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x1f01f6ab osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x230bf7d9 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x28dff8f1 ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0x2c7dbb47 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0x2f8d3259 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x3244042b ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x325e66ee ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x34d0b7b9 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x38cbc6d6 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3ef07833 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40c35c17 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x42855ed3 ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x45d1ffc5 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x45d94e57 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x463a9e37 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x54bc85fe ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x57f645e3 osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0x5925a429 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5d919bc8 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x66e57368 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6df1779c ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x73a26928 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x79253251 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x7a6fc826 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0x7ce80f93 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x7d930d0d ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0x7ef25919 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x8326bf30 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x89391646 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x8b145d7a ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x90e4a0d1 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x90ed043a ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x923cd69a ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0x92a54be3 ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0x930ef693 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x93415311 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x97e5be1d ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9bef35d7 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x9c6c557f ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x9d2b8cfc ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x9e035cdb ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa0b6fb83 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xa569d45d osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0xa75ca1d1 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xa9fd2125 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xaede66d3 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xb1d0a5d8 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xb3f9375d ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb57c6b53 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xb6935782 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xb6955591 osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0xb81be268 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xb8f983a4 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xb9265898 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xbc7cc6d8 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xbe98dca4 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc78c9242 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0xc8a9a128 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xccb1d1f3 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xce320578 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xd5c0e867 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xd76cc076 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xdae503e3 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xdd7d7184 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0xde3a2268 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0xe84f768e osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xeb84ca0f ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xebe15895 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xf0e397be ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xf2124205 ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0xf56e837b ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0xf7324212 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x92fb2054 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xb3551205 dccp_req_err -EXPORT_SYMBOL net/ieee802154/ieee802154 0x0149d12b wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x089d1356 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x41847741 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x94dd1b99 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0xadbc48dd wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0xde67c3de wpan_phy_free -EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x4c13e7b5 gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xc982cb25 fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x08ea7400 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x137227e4 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4b22e38a ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc8f030d0 ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc9dae8ff ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xfff27852 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2bb2dfe3 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xb8f69259 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf0bdfc43 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0ce1309b ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa9adf5b3 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xcca6c8ab ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x2ad8a866 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xcddead73 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x28be3588 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x49899b72 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd0f0b3df ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xea964452 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfc5320a7 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x00040751 ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x505fd507 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x57d8360d ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x207a2eab xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x51d9ff89 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x49caf8c7 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x9f45ba13 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1f93817d ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2381d24d ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2e56eb1f ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x3b4013b7 ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x476aa68f ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6444e1f1 ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x942b2bba ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa9e7a8bc ircomm_data_request -EXPORT_SYMBOL net/irda/irda 0x05682865 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x092e1997 irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x17a491c5 irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0x21645a64 irlap_open -EXPORT_SYMBOL net/irda/irda 0x216b225c irlap_close -EXPORT_SYMBOL net/irda/irda 0x29b53f74 async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x36056c41 irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0x365df05d iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0x36cad55b hashbin_remove_this -EXPORT_SYMBOL net/irda/irda 0x37791344 hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x5c981766 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0x628674a7 irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0x6492e28c hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x6b76aa70 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x731cec71 hashbin_insert -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7e67ca6e irias_new_object -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x837cf0f8 alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0x8982c8d9 irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x8a44dd5e hashbin_new -EXPORT_SYMBOL net/irda/irda 0x90ddb6bd hashbin_remove -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x9aab014d irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0x9eae562d iriap_close -EXPORT_SYMBOL net/irda/irda 0x9ef46d1b irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x9ffda243 irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0xac8bdb0d irttp_dup -EXPORT_SYMBOL net/irda/irda 0xac9992ad irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0xb3c13d7f irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0xb4fa9cca irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0xb563571b irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xba84dc43 iriap_open -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbdea6d30 irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xbeeb6d99 irttp_data_request -EXPORT_SYMBOL net/irda/irda 0xbf7dd554 hashbin_find -EXPORT_SYMBOL net/irda/irda 0xbfa7c08d hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0xc477368d irias_find_object -EXPORT_SYMBOL net/irda/irda 0xcba53881 irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0xd6805641 irda_notify_init -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe2c9b612 irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0xea6a6187 async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0xec32d303 irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf199cba4 irias_insert_object -EXPORT_SYMBOL net/l2tp/l2tp_core 0xf2b46e01 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x594f2e39 l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x0de7c73f lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x107f791f lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x3151a84f lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x54d77540 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x5f604b9b lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x69c5d57e lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x823c16cf lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xa024295c lapb_getparms -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x39c9f85a llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x59c05382 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x84585e4b llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x9abb58aa llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xbe8562ec llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xd4c3a371 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0xe5a6d942 llc_add_pack -EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x02b3ebb3 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x04aef6e2 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x04f9e417 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x07c552e4 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x0c764e45 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x0e31fa8d ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x12417df4 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x136b9bae ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x1660adcd ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x202f8b5a ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x23bd439b ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x27642757 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x277fc31f ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x2ad99f69 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x2cc74be2 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x2cebe645 ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x2ec47f76 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x35a96d26 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x3d1c0850 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x3e656567 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x3ec80e17 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x3f8bd478 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x4ae70a15 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x4d94dd4b ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0x4db871ae ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x4e4de5b3 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x4eae6f10 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x50f4a64d ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x56cf116e ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x5b009184 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x5fa9a0c8 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x63144283 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x65dcc526 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x677022f9 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x6ec08894 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x70684944 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x720dec8e ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x72a052e7 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x747558b5 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x749f5316 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x7565c69f ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x779689e4 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x7c19bfb8 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x7d67db31 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x82ff1de1 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x83508651 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x84b0bf4f ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x85f06bad ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x874807ae ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x8e8bed03 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x90787f76 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x9083f122 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x93325c93 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x963df417 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x9d771537 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xa60ba525 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xaf71c0c2 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xb3554940 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xb379193a ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xb421cd73 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xb6eda79e ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xb956a146 rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0xbf5cd48d ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xc3505e24 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xc3be9035 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xc5369303 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xc66ea372 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xc71f4244 ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xca6ecda8 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcbce47f7 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xd8d6e6d3 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xe3552534 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xe9cee8e7 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xf0825c54 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xf78a32a9 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xf7f666d7 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0xfa5a5aa1 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xfb0de1b9 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac802154/mac802154 0x26f8040e ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x289468e8 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x40f0e0f2 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x4a4f9b1d ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x65632051 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x96dd8515 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xa5cbd1ef ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xc33bd3d7 ieee802154_alloc_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2e787d38 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3904576f unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4d2e248b register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x61417b61 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6d641219 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7ccfb863 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x93ad8eda ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x95060baf unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa49678c5 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbba9d72e ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd8f272fa register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe3cdcbab ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeff87a7c ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf6f6376c ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x13f326f8 nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x86a726fc __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xe439ea09 __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x5e8637d6 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x805f55ee nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x86f21261 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0xa0c202fc nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xc89ced9c nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0xd4517b47 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x83852b3b xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x9b554e1b xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xad81ac6a xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xb0fdb22f xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xb651680b xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xc14dc619 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xc7845be6 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xd434f44a xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xe1ee3780 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xf4017b59 xt_find_target -EXPORT_SYMBOL net/nfc/hci/hci 0x0352c64b nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x0607acae nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x08bf8b73 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x12903521 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x129c3392 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x2dc73851 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x33b53c8b nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x3f4e1928 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x5ae6d9d9 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x5ec8bb19 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x883f0581 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x9f37b365 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x9ff7efa5 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xa2d53c4c nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0xb458bc0d nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xb4fd80ff nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xc55b8df1 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xc83f882e nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xd3976040 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xec26cffb nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xfe441454 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x005a5e92 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x0125f503 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x10d38c93 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x345d21ac nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x371754cc nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x3902dc0a nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x4448ea14 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x446cc10a nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x49c3eda3 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x5a6b290a nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x606af96a nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x67ca87a3 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x70d50ff9 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x71968f5c nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x7330a00f nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x77124cd6 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x876d0f6b nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x88413535 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x8cd14662 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xb9089f51 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc5d0e869 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xcc76d102 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xd26f9645 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xd85bbb73 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xdad5c878 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xe29065f5 nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0xe7da96d7 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xf037591d nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nfc 0x0c7ba19b nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x0f6ca69e nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x149c7f61 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x17b53d4d nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x1dcc0f07 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x3dca9faf nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x3e33a7de nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x443e2ac7 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x5078d8b9 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x598d8de1 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x5ccf1a09 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x67ebd77c nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x71f7ccfc nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x7e82f497 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x83677568 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x84c505af nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x8c392820 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x90618f30 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x934498d9 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xa2c91063 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xb0598ed3 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xe57da9aa nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xf103ccd0 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xf1f6cb7f nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc_digital 0x263c19d6 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x8ba39d26 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xe69f2edf nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xf774dd53 nfc_digital_allocate_device -EXPORT_SYMBOL net/phonet/phonet 0x4c05d722 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x5ce80187 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x64cb656d phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x74c71bb8 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x7e095831 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xbfaba39c pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xc306082a phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xf57b9f48 phonet_proto_register -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3d692ddc rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x47edc4f0 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x47feff50 rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x53783504 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6071a082 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x68ae359d rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x720243c6 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x86b13e25 rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9c60f545 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa4681944 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xaa2a96c2 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb03ab984 rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbea3849a rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbf7189a1 rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc834ef09 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/sctp/sctp 0x4b68989b sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xa5910da9 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd4ea6824 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe41cacca gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x2c81a151 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x328d0ef9 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xdd5baaec xdr_restrict_buflen -EXPORT_SYMBOL net/wimax/wimax 0xa76cfb95 wimax_reset -EXPORT_SYMBOL net/wimax/wimax 0xe2360e9d wimax_rfkill -EXPORT_SYMBOL net/wireless/cfg80211 0x01ca903d wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x0485304f cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x06b3726a cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x07aa5605 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x08d21c94 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0x09294c7b cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0c3b2f8c cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x119c1b4f cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x11eff6a6 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x152ae801 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x18b13597 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x19fc60cb cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x1dbf2703 cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0x255d3a65 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x2765ec5d cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x294bd600 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2b752756 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x2d68005d ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x309e7500 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x33669567 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x382d0f33 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x3ac3a234 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x4174776b freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4ae059c4 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x4cf5968d cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x4d4705a3 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x52688021 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x5a851cde cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x5d6db6d8 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x677a1a24 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x68923af7 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x68ae46a0 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6c919114 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x6ce5eb55 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x6d03bf5c cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x6fc86e45 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x77d94ebe cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x7a17d3f9 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x7c6fed52 cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x805ed29f cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x8a11aec8 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x8a9ef38d cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x8b3383ab cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x8b4efa45 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x8d65f747 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x8dcc796a __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x946e901e wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x94fa975c wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x95b933ab cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x975d191a cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x9822ccb0 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x983f2b94 cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x993a1435 ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x9959f153 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x9e5047cf cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0xa10e7fc7 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xab5c0951 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xb0f4d9dc cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xb106d090 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0xb6a9d1fd cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0xb9a5e069 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0xbc3a8219 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xbd074721 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xbdc2f898 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xbee57aa6 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xbf223327 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xbfcab800 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xc4455846 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc6f8c1b3 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xc88f8514 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xcb522323 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0xd0a3b3ad cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xd47dd054 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xd8f832f5 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xda39757c cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0xdb883401 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdc63b4ec cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xea8edae0 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0xeb03e3e1 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf48d7398 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xf787d9ce ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0xfa969d54 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x670481e1 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x6a32b9e4 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x6f26c169 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x9fe9d575 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xc31461ad lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xf7232b9a lib80211_unregister_crypto_ops -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x6a557e7b snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x64b0bfba snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x88ba1ec1 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xaafda01a snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xf128b05d snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x06bb9754 snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x127b30fb snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1cdc0812 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x59eb74ae snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8102ed2f snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb11ba32d snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb2c7f684 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xea0e5748 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xed42580b snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xfcac0266 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd-hwdep 0x9958a755 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x10f38e91 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x162a4640 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x18afe15d snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1ad96272 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x211f1493 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x32e81e9c snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x38be7cf6 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4e2da09c snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4fcf83d7 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5807db35 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x58d2d7d3 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb3a54df1 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb754d7a0 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbd21062b snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc8a49cac snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0xcd5da986 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xcdfe1f8f snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdc8b7d15 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdf8bddb8 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xd8feacae snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1e2d2918 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x29bae125 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x684fdf8d snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x82a2cdd9 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc63d55fd snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcbe4df3e snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf6d2a13a snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfb85e051 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfd630788 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0f281723 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x556614f5 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5ab58b69 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5c664e19 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x60d8818b snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x662b664a snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6e34bb77 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6e7064be snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x804a69bf snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x01aad273 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x04bb1aff amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x09996676 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0d4879a3 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0f30e678 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x154ac726 amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1be03375 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2e77ed69 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2eccec33 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x39d444a0 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4a56c71b cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5cb67663 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5dcad5da cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x61242086 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x614dd25a amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6c70464c avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8204c3f4 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8a630f67 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9781574d fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9fc8eefc amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa37c1a2d amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb2d09aa8 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb73ef9a1 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbac71c80 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbf01d5a6 amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc82ceaa0 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcb30c997 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcd36ec4d avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd416fb54 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd4819c76 snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xebed8533 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf20fa593 snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x8826b289 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x8e33a867 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x09975729 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4510f48d snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x50046376 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8525ab9f snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbfe1eb76 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc4115056 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcab3419c snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcfb19476 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x77197c0d snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8c3fb2cb snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xad9cde78 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf75e93dd snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x5880a883 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xabe58d76 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x03c7e372 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2f1f33a8 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x39b09acc snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7bf61d41 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbc2efea6 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xc6181979 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-i2c 0x3fd2c364 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x49e4e0d7 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x4d329560 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x5b1bdc68 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xb2097e75 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xbc36ea7f snd_i2c_readbytes -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0175ed12 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x04b50113 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x32f96fe8 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x407c8279 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x45a61381 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4bfe6811 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4ef2d78e snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x57c75d28 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5e2c131d snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x64b70512 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6ff36813 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa64660e6 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbde006f1 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc20c107f snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd96e5dd3 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdde7ab92 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf4e42669 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0f9bb090 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4b783ea1 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4e396540 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6a94d617 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8637543c snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9fe654c3 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xbaf0d4d6 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdcb8cf60 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfb3081b1 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xdf73666e snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xf267f3d0 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xf64cf174 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x05b320a0 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x06ee7cab oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x30fe71e6 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x323a8e93 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x365631d6 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4b15f41a oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4cb13dac oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5d6cccaf oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x67376b29 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7bfc2233 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x87d2eb9d oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x96cabb09 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9a52dd7e oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9acfd4e6 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa83854e8 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa96496f2 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xba5329f7 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcd47e41e oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd1935dc6 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfda7a8ea oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xffd344df oxygen_write_spi -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2f988599 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7522bc07 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb43c36ec snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc990a091 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd0e6578d snd_trident_write_voice_regs -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x2af6505e tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xfcd43357 tlv320aic23_probe -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x303c6e44 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x45d1cf73 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9557e83a snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb38e116b snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc2d10fba snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc7461b54 snd_emux_register -EXPORT_SYMBOL sound/synth/snd-util-mem 0x1266ebc6 snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x16cd90ce __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x1763d5d9 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x28d6ba3f snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x726d807f snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x78bc00f9 __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xcf027a82 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0xe4db7a5a __snd_util_mem_free -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xc7ce0cc3 snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x00012f37 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x0002ff76 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x0012c2be map_destroy -EXPORT_SYMBOL vmlinux 0x00159b5a jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x004a4257 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0x006c4aad pci_set_master -EXPORT_SYMBOL vmlinux 0x007f6840 down_write -EXPORT_SYMBOL vmlinux 0x00804bc3 do_SAK -EXPORT_SYMBOL vmlinux 0x00999728 scsi_execute -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00f28a29 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x01104ae8 devm_request_resource -EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 -EXPORT_SYMBOL vmlinux 0x013fb4d2 of_get_pci_address -EXPORT_SYMBOL vmlinux 0x0142c357 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x014e22dd sk_stop_timer -EXPORT_SYMBOL vmlinux 0x016199e8 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many -EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode -EXPORT_SYMBOL vmlinux 0x01b7fd59 dispc_read_irqstatus -EXPORT_SYMBOL vmlinux 0x01c2ee6b zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x01c84c46 mmc_get_card -EXPORT_SYMBOL vmlinux 0x01ea132e dispc_runtime_put -EXPORT_SYMBOL vmlinux 0x01eb204d wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x01f65ebb prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x01fadb82 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x01fd6d8e devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv -EXPORT_SYMBOL vmlinux 0x02243c43 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x02322fbc mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0x0237a78f bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x0252d9fd rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0x02573b36 omap_disable_dma_irq -EXPORT_SYMBOL vmlinux 0x025a324c ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x0260b569 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027df9a9 file_remove_privs -EXPORT_SYMBOL vmlinux 0x027eb164 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x028195ad snd_pcm_lib_free_pages -EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL vmlinux 0x02846e41 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a41254 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02cf5968 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x02d6d984 param_get_int -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02ef742b percpu_counter_set -EXPORT_SYMBOL vmlinux 0x02fa4230 do_splice_from -EXPORT_SYMBOL vmlinux 0x03005606 omapdss_get_version -EXPORT_SYMBOL vmlinux 0x03026722 mempool_alloc -EXPORT_SYMBOL vmlinux 0x03076614 nand_bch_init -EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0334fd49 iterate_fd -EXPORT_SYMBOL vmlinux 0x0353cf1c scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0x0358d1b0 bitmap_unplug -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x0378aea4 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x037b6662 of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x03ba1968 snd_timer_resolution -EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all -EXPORT_SYMBOL vmlinux 0x03cd8325 bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x03db9f1d input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x03ee7ed2 omapdss_register_display -EXPORT_SYMBOL vmlinux 0x03fb5723 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04093dd5 phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x045db442 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x0467e44d sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x0472be67 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x047bd75f free_page_put_link -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x04ab9a1e would_dump -EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x04cb4b69 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine -EXPORT_SYMBOL vmlinux 0x04d485d8 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0x04e07a27 snd_timer_global_free -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x05004223 unload_nls -EXPORT_SYMBOL vmlinux 0x050edbad audit_log_start -EXPORT_SYMBOL vmlinux 0x05176253 led_set_brightness -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x053123e5 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x054dc5bd twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x05558669 ata_link_printk -EXPORT_SYMBOL vmlinux 0x0555eef4 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x05610051 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x05744482 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x05796e48 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0x05aaec0f netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x05b7bc21 brioctl_set -EXPORT_SYMBOL vmlinux 0x05c40ff5 console_start -EXPORT_SYMBOL vmlinux 0x05ca6617 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x05db4158 lease_modify -EXPORT_SYMBOL vmlinux 0x05e0e1d8 snd_pcm_hw_param_first -EXPORT_SYMBOL vmlinux 0x05e13e02 __ps2_command -EXPORT_SYMBOL vmlinux 0x05efe538 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x060291f1 blk_stop_queue -EXPORT_SYMBOL vmlinux 0x060843ce dst_init -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0624173c dst_alloc -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x064daa4e jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x06607f92 dss_feat_get_supported_outputs -EXPORT_SYMBOL vmlinux 0x066e5505 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x0674cf06 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x068b436c seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x06c31627 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x06cc803e skb_copy_expand -EXPORT_SYMBOL vmlinux 0x06e60af3 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x06e6e679 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x06e8c1f8 fd_install -EXPORT_SYMBOL vmlinux 0x06fcb433 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x07032cfd ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x072fd00c bio_map_kern -EXPORT_SYMBOL vmlinux 0x073d3380 i2c_verify_client -EXPORT_SYMBOL vmlinux 0x07916cee snd_dma_alloc_pages -EXPORT_SYMBOL vmlinux 0x0796d223 generic_write_checks -EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free -EXPORT_SYMBOL vmlinux 0x07a5f810 vc_cons -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07bc95d9 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x07c1c867 tc6393xb_lcd_set_power -EXPORT_SYMBOL vmlinux 0x07c4b49d vme_slot_num -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07cf9099 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x08123b7d kernel_listen -EXPORT_SYMBOL vmlinux 0x08162d64 omapdss_default_get_timings -EXPORT_SYMBOL vmlinux 0x081b8451 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x081f3afb complete_all -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083b1b79 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x083b621a inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x0874c821 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x087b9b7c tcp_parse_options -EXPORT_SYMBOL vmlinux 0x08a77deb input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x08bf32d2 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x08cc8425 pci_iomap -EXPORT_SYMBOL vmlinux 0x08d7122f tcp_disconnect -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x09055969 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x090c0317 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x0939797e unlock_new_inode -EXPORT_SYMBOL vmlinux 0x09547204 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x096a1917 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x097ec1ff _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0x0985635b qdisc_destroy -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x098fe6ca lro_receive_skb -EXPORT_SYMBOL vmlinux 0x0990607b freezing_slow_path -EXPORT_SYMBOL vmlinux 0x0991a59e of_match_node -EXPORT_SYMBOL vmlinux 0x099925bb shdma_reset -EXPORT_SYMBOL vmlinux 0x099ee4d1 seq_puts -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c7ac64 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09cf1b46 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x09d40401 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09db059b fddi_change_mtu -EXPORT_SYMBOL vmlinux 0x09e420b4 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x09e51c44 dquot_commit -EXPORT_SYMBOL vmlinux 0x09ed3ade input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x09edb549 sock_wfree -EXPORT_SYMBOL vmlinux 0x0a0786de udplite_table -EXPORT_SYMBOL vmlinux 0x0a0dd313 tty_set_operations -EXPORT_SYMBOL vmlinux 0x0a169eb2 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift -EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell -EXPORT_SYMBOL vmlinux 0x0a5d9a0c mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x0a6b3f09 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x0a7dbe3e del_gendisk -EXPORT_SYMBOL vmlinux 0x0a8ef5ae netdev_printk -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0ab89556 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x0ab92ead padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x0ac2cea9 mmc_can_erase -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b118913 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b24f1e2 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x0b25dd05 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x0b3bebce devm_memunmap -EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init -EXPORT_SYMBOL vmlinux 0x0b4ca21f i2c_clients_command -EXPORT_SYMBOL vmlinux 0x0b5379bc mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b7198d8 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0ba1d36a scsi_host_get -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bbf51f1 init_task -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bd75794 dss_mgr_unregister_framedone_handler -EXPORT_SYMBOL vmlinux 0x0be2e762 generic_make_request -EXPORT_SYMBOL vmlinux 0x0c133f84 inet6_protos -EXPORT_SYMBOL vmlinux 0x0c2b059e snd_pcm_lib_read -EXPORT_SYMBOL vmlinux 0x0c309d6c tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x0c3bdbb4 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c549551 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x0c56bda4 snd_power_wait -EXPORT_SYMBOL vmlinux 0x0c56cfa8 snd_card_file_add -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c684534 clkdev_add -EXPORT_SYMBOL vmlinux 0x0c710689 bio_integrity_endio -EXPORT_SYMBOL vmlinux 0x0c9f9cff mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0ca1ec04 nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit -EXPORT_SYMBOL vmlinux 0x0ca63941 get_cached_acl -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cb2969d pci_request_region -EXPORT_SYMBOL vmlinux 0x0cb72306 nand_scan_bbt -EXPORT_SYMBOL vmlinux 0x0cc25c11 snd_timer_new -EXPORT_SYMBOL vmlinux 0x0cc58245 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x0ccb5a0e nf_ct_attach -EXPORT_SYMBOL vmlinux 0x0cd25f82 xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0x0cd8b668 bh_submit_read -EXPORT_SYMBOL vmlinux 0x0ce2b677 input_free_device -EXPORT_SYMBOL vmlinux 0x0cfefe1e percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x0d093fff amba_device_register -EXPORT_SYMBOL vmlinux 0x0d0a263b blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x0d1687d3 nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0x0d25b260 lock_rename -EXPORT_SYMBOL vmlinux 0x0d2cdb88 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x0d36a6b3 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x0d36d91f arp_send -EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le -EXPORT_SYMBOL vmlinux 0x0d4d4a0f rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x0d4d7a32 _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x0d5245e5 snd_cards -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d5e0197 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d855a9d inet_put_port -EXPORT_SYMBOL vmlinux 0x0d93154c sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x0d9d09c4 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0db6fdfc scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dd386fe blk_recount_segments -EXPORT_SYMBOL vmlinux 0x0dd7e443 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x0dd874f9 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x0df26713 __module_get -EXPORT_SYMBOL vmlinux 0x0e0d22b3 _dev_info -EXPORT_SYMBOL vmlinux 0x0e2c01ab netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x0e312249 devm_clk_put -EXPORT_SYMBOL vmlinux 0x0e360803 skb_store_bits -EXPORT_SYMBOL vmlinux 0x0e519942 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x0e61e40e dquot_transfer -EXPORT_SYMBOL vmlinux 0x0e640ca6 __inet_hash -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e75eb67 pci_dev_put -EXPORT_SYMBOL vmlinux 0x0e778918 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x0e854398 zero_fill_bio -EXPORT_SYMBOL vmlinux 0x0e9ace41 security_file_permission -EXPORT_SYMBOL vmlinux 0x0e9d2b69 uart_match_port -EXPORT_SYMBOL vmlinux 0x0eacdea1 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0eb670ff inet_bind -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ed593ef dquot_quota_on -EXPORT_SYMBOL vmlinux 0x0ed8184b blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f149fc0 blk_finish_request -EXPORT_SYMBOL vmlinux 0x0f16d329 phy_drivers_register -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f51fb3e pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x0f5adbbf dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x0f5e3d09 genphy_resume -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f76e2b4 kfree_put_link -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f92ec14 inet_listen -EXPORT_SYMBOL vmlinux 0x0fa2a45e __memzero -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fc97948 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x0fcdf29e generic_update_time -EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod -EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress -EXPORT_SYMBOL vmlinux 0x10092d6e xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x101146ca phy_detach -EXPORT_SYMBOL vmlinux 0x103f145d xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0x10583733 set_security_override -EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10910791 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x10a1b75c crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x10bf2559 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x10c63996 igrab -EXPORT_SYMBOL vmlinux 0x10d2b05f pci_match_id -EXPORT_SYMBOL vmlinux 0x10d71940 pci_enable_msix -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10fffbd6 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x111354e5 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x11188556 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x112ae52f devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x1130d834 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x114ae4f3 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x1163047e memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x117d6a2b __register_chrdev -EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11aa15fb xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x11c39e87 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x11d32d30 blk_free_tags -EXPORT_SYMBOL vmlinux 0x11dc9c5d blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x11ed4801 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x12005401 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x1203963c vfs_iter_write -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x1218f8a5 submit_bh -EXPORT_SYMBOL vmlinux 0x121ae907 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x121b4e4b memremap -EXPORT_SYMBOL vmlinux 0x122a8b9f inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x1249a9f8 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x124f7c16 d_set_d_op -EXPORT_SYMBOL vmlinux 0x1252ea77 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x126a3f74 snd_pcm_hw_rule_add -EXPORT_SYMBOL vmlinux 0x12856b9c fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0x129619af hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x129b5ea6 abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc -EXPORT_SYMBOL vmlinux 0x1302dc8f __devm_request_region -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x131cda94 generic_writepages -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc -EXPORT_SYMBOL vmlinux 0x1345f802 blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0x13501584 sock_no_getname -EXPORT_SYMBOL vmlinux 0x1379017a follow_pfn -EXPORT_SYMBOL vmlinux 0x139b9251 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13daf32b dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x13f3c820 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x13fd2973 audit_log_task_info -EXPORT_SYMBOL vmlinux 0x1416ac21 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x14170db9 follow_down_one -EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x145024dc sk_net_capable -EXPORT_SYMBOL vmlinux 0x14574ebd dst_release -EXPORT_SYMBOL vmlinux 0x1457a797 wireless_send_event -EXPORT_SYMBOL vmlinux 0x146d6aa3 get_task_io_context -EXPORT_SYMBOL vmlinux 0x146e0f30 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x1492ee1f blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x14b4be00 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x14beb2ff softnet_data -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit -EXPORT_SYMBOL vmlinux 0x14e484cd lock_sock_fast -EXPORT_SYMBOL vmlinux 0x14fb5906 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x151c663e d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x1562c3fc dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x159e5a01 devm_iounmap -EXPORT_SYMBOL vmlinux 0x15a641fc xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x15a767a5 md_check_recovery -EXPORT_SYMBOL vmlinux 0x15b3a08a snd_ctl_add -EXPORT_SYMBOL vmlinux 0x15b5d713 scsi_host_put -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15d3b9b5 md_register_thread -EXPORT_SYMBOL vmlinux 0x15f66d67 path_nosuid -EXPORT_SYMBOL vmlinux 0x15fa7be9 uart_resume_port -EXPORT_SYMBOL vmlinux 0x160588b8 ppp_input_error -EXPORT_SYMBOL vmlinux 0x1608e6df omapdss_register_output -EXPORT_SYMBOL vmlinux 0x1629b591 sget_userns -EXPORT_SYMBOL vmlinux 0x162ccc0c lg_local_lock -EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null -EXPORT_SYMBOL vmlinux 0x16329554 acl_by_type -EXPORT_SYMBOL vmlinux 0x16436073 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x16495db5 of_get_parent -EXPORT_SYMBOL vmlinux 0x16711e38 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x16766435 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x167ee56d __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete -EXPORT_SYMBOL vmlinux 0x1693ba07 touch_atime -EXPORT_SYMBOL vmlinux 0x16ae1a72 snd_timer_pause -EXPORT_SYMBOL vmlinux 0x16b39ba3 netdev_warn -EXPORT_SYMBOL vmlinux 0x16d7def9 param_get_ulong -EXPORT_SYMBOL vmlinux 0x16dc9c27 __frontswap_load -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16f977fa skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x17026949 fb_pan_display -EXPORT_SYMBOL vmlinux 0x170ba8bb bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x170f2ef4 register_sound_special -EXPORT_SYMBOL vmlinux 0x1710d9e6 fsnotify_put_group -EXPORT_SYMBOL vmlinux 0x17673949 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x176b2707 nd_iostat_end -EXPORT_SYMBOL vmlinux 0x176c0efb omap_dss_find_output -EXPORT_SYMBOL vmlinux 0x17811951 snd_timer_notify -EXPORT_SYMBOL vmlinux 0x1784f057 dispc_ovl_set_fifo_threshold -EXPORT_SYMBOL vmlinux 0x179ce145 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL vmlinux 0x17a89fdf sock_from_file -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17b69fe0 __get_page_tail -EXPORT_SYMBOL vmlinux 0x17c7f8de pci_disable_msix -EXPORT_SYMBOL vmlinux 0x17cad55c tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x17e67c4c tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x180f39f4 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x1815a9df bioset_integrity_free -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x1832523f delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x18460e86 have_submounts -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x186680b4 __skb_checksum -EXPORT_SYMBOL vmlinux 0x1872aa3f scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x188c36d3 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x189c5980 arm_copy_to_user -EXPORT_SYMBOL vmlinux 0x18a97711 ac97_bus_type -EXPORT_SYMBOL vmlinux 0x18ae8e17 blk_end_request -EXPORT_SYMBOL vmlinux 0x18bd76a4 _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x18c2227f cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x18c4b432 lock_fb_info -EXPORT_SYMBOL vmlinux 0x18d8cd40 pci_bus_get -EXPORT_SYMBOL vmlinux 0x18dff843 snd_ctl_make_virtual_master -EXPORT_SYMBOL vmlinux 0x18e18777 blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18f25fb3 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x190002ed netdev_change_features -EXPORT_SYMBOL vmlinux 0x1905178a mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x190796b5 bdev_read_only -EXPORT_SYMBOL vmlinux 0x190b95aa neigh_app_ns -EXPORT_SYMBOL vmlinux 0x191a4179 of_clk_get -EXPORT_SYMBOL vmlinux 0x19249c6b generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x1926dd6a starget_for_each_device -EXPORT_SYMBOL vmlinux 0x192a27db trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x192e549d dss_install_mgr_ops -EXPORT_SYMBOL vmlinux 0x19392f8f of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x19462804 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits -EXPORT_SYMBOL vmlinux 0x19693a11 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode -EXPORT_SYMBOL vmlinux 0x1985b3bf vme_register_driver -EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL vmlinux 0x198f5740 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a4411a mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x19b04b4d dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x19b0b7e1 bio_phys_segments -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c1dad6 __lock_page -EXPORT_SYMBOL vmlinux 0x19d921d9 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x19f5809b dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0x1a023df7 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x1a30637e __sock_create -EXPORT_SYMBOL vmlinux 0x1a327641 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x1a3ad6ec mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0x1a3c07d5 snd_ctl_remove -EXPORT_SYMBOL vmlinux 0x1a4fc48b i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x1a5ffef3 d_alloc_name -EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn -EXPORT_SYMBOL vmlinux 0x1a6918dd generic_setxattr -EXPORT_SYMBOL vmlinux 0x1a75d7f9 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x1a8c5daa xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x1a93d828 misc_deregister -EXPORT_SYMBOL vmlinux 0x1a9a2f43 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x1a9f64bd sock_rfree -EXPORT_SYMBOL vmlinux 0x1aa37bf2 from_kuid_munged -EXPORT_SYMBOL vmlinux 0x1aa87cc8 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x1aacf324 phy_disconnect -EXPORT_SYMBOL vmlinux 0x1ab04dc1 i2c_master_recv -EXPORT_SYMBOL vmlinux 0x1abbaea2 find_get_pages_tag -EXPORT_SYMBOL vmlinux 0x1ac6b8f0 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0x1ad7f2dc netif_rx_ni -EXPORT_SYMBOL vmlinux 0x1afce38c lro_flush_all -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b17e0bb snd_pcm_hw_refine -EXPORT_SYMBOL vmlinux 0x1b1a3ff3 init_net -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b1feba5 dev_load -EXPORT_SYMBOL vmlinux 0x1b2d6d2c qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b63ae03 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x1b7fb44a dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x1b806755 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b836c8f bioset_free -EXPORT_SYMBOL vmlinux 0x1b993c74 pci_map_rom -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bb33f23 inet_add_offload -EXPORT_SYMBOL vmlinux 0x1bb46b87 __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x1bddfb2d mark_page_accessed -EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states -EXPORT_SYMBOL vmlinux 0x1c1743ae sk_dst_check -EXPORT_SYMBOL vmlinux 0x1c29924f cad_pid -EXPORT_SYMBOL vmlinux 0x1c2e72ee mmc_add_host -EXPORT_SYMBOL vmlinux 0x1c53cc93 pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c654a78 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x1c70ddba get_tz_trend -EXPORT_SYMBOL vmlinux 0x1c9d8290 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x1cab9a06 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x1cdc601a __sk_dst_check -EXPORT_SYMBOL vmlinux 0x1cfb04fa finish_wait -EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL vmlinux 0x1d09df8e xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x1d353c2a put_io_context -EXPORT_SYMBOL vmlinux 0x1d385143 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x1d3876de vme_irq_request -EXPORT_SYMBOL vmlinux 0x1d3aca0d d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0x1d3d6f62 downgrade_write -EXPORT_SYMBOL vmlinux 0x1d456b8b neigh_ifdown -EXPORT_SYMBOL vmlinux 0x1d6efbdf blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x1d77fdcb add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x1d8349e6 nand_bch_correct_data -EXPORT_SYMBOL vmlinux 0x1d9e3a08 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0x1db1ab1f neigh_connected_output -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1de93574 mount_ns -EXPORT_SYMBOL vmlinux 0x1df3923c vfs_llseek -EXPORT_SYMBOL vmlinux 0x1df6343d skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e5c3267 d_lookup -EXPORT_SYMBOL vmlinux 0x1e66e2e3 put_page -EXPORT_SYMBOL vmlinux 0x1e672be5 phy_device_free -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e92b4a2 vfs_create -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ec2d76d inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x1ec86d5c scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x1eeb848e __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x1efab608 dev_mc_init -EXPORT_SYMBOL vmlinux 0x1f003933 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x1f225f58 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x1f3f0bc6 icmpv6_send -EXPORT_SYMBOL vmlinux 0x1f4243c2 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x1f432a48 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x1f51dd53 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x1f8b3350 kdb_current_task -EXPORT_SYMBOL vmlinux 0x1f8f3b9c new_inode -EXPORT_SYMBOL vmlinux 0x1f97a767 mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x1f9aa2b4 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x1fa7eb60 __lock_buffer -EXPORT_SYMBOL vmlinux 0x1fab5905 wait_for_completion -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9587b register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x1fefe44d simple_setattr -EXPORT_SYMBOL vmlinux 0x1ff37c0b mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201994bb iterate_supers_type -EXPORT_SYMBOL vmlinux 0x201f65a4 tcp_req_err -EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x20361239 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x203dc851 sock_no_connect -EXPORT_SYMBOL vmlinux 0x20421305 on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x205ec8de omap_dispc_register_isr -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x2098841f pipe_unlock -EXPORT_SYMBOL vmlinux 0x20a31cae tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20afec08 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x20b31ed1 nand_unlock -EXPORT_SYMBOL vmlinux 0x20b6bcb5 kern_unmount -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20c6a4cd request_firmware -EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x21110dbf mmioset -EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 -EXPORT_SYMBOL vmlinux 0x21188b83 cpu_tlb -EXPORT_SYMBOL vmlinux 0x2128bd70 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0x213f520f free_netdev -EXPORT_SYMBOL vmlinux 0x21482de9 dev_activate -EXPORT_SYMBOL vmlinux 0x214de4b5 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x2154efb0 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x2159d5c0 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve -EXPORT_SYMBOL vmlinux 0x21681a7e bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy -EXPORT_SYMBOL vmlinux 0x21711832 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x218c3192 vm_mmap -EXPORT_SYMBOL vmlinux 0x21a73b15 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x21bb7cee simple_transaction_read -EXPORT_SYMBOL vmlinux 0x21bd6587 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x21c59d85 tcp_poll -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21e61085 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x21fa3f81 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x22036518 __secpath_destroy -EXPORT_SYMBOL vmlinux 0x22148e34 dev_close -EXPORT_SYMBOL vmlinux 0x2216079d max8998_write_reg -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve -EXPORT_SYMBOL vmlinux 0x222fa684 lg_global_lock -EXPORT_SYMBOL vmlinux 0x2232a8a5 mempool_free -EXPORT_SYMBOL vmlinux 0x223be99f gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x223e83cb mount_pseudo -EXPORT_SYMBOL vmlinux 0x2246a7ea dev_uc_init -EXPORT_SYMBOL vmlinux 0x224766d7 pcim_iomap -EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x226f8605 param_get_ullong -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x22953084 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x22961bf3 mem_map -EXPORT_SYMBOL vmlinux 0x22a17beb mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b6373f pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x22cd137a page_follow_link_light -EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x22e92fcc msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0x22f1a98c bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x22fec1d1 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x2363d1fb blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x237ac871 register_netdev -EXPORT_SYMBOL vmlinux 0x238ce9c3 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23aa49d3 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c8ea65 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x23d12d4c jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x23ea0607 snd_card_file_remove -EXPORT_SYMBOL vmlinux 0x23f49b1b thaw_super -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x240944ad sock_no_mmap -EXPORT_SYMBOL vmlinux 0x241085e0 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x2412bb8c sg_miter_start -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x2429d8c6 devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x24645c72 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x246f149d unregister_console -EXPORT_SYMBOL vmlinux 0x247627fb ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x247f64e1 bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x249f1d60 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL vmlinux 0x24ad1098 make_kgid -EXPORT_SYMBOL vmlinux 0x24f56268 simple_follow_link -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x24fe94d6 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x250dbe23 dquot_get_state -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x253da76d of_get_cpu_node -EXPORT_SYMBOL vmlinux 0x254fcb1e copy_strings_kernel -EXPORT_SYMBOL vmlinux 0x255928d2 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x2560865e xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x257460c0 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x25ac88db netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0x25b35abb bio_clone_fast -EXPORT_SYMBOL vmlinux 0x25bcb050 nand_scan -EXPORT_SYMBOL vmlinux 0x25cbd2b7 serio_bus -EXPORT_SYMBOL vmlinux 0x25cf8cd8 single_open_size -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25ec71c4 register_sound_midi -EXPORT_SYMBOL vmlinux 0x2612d9ce vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x26711c72 lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0x26737f64 snd_pcm_release_substream -EXPORT_SYMBOL vmlinux 0x26942519 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26c2128c lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x26c7a7a7 swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x26d3d7c5 write_inode_now -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26f1d8e4 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x270777ee generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x2711edf6 snd_ctl_notify -EXPORT_SYMBOL vmlinux 0x27157e2a pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x272a70cc bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x272ba213 prepare_binprm -EXPORT_SYMBOL vmlinux 0x27362402 open_exec -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x274f378a truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x2754b64c d_instantiate_unique -EXPORT_SYMBOL vmlinux 0x275ef902 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x2762b955 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x278b0a23 empty_zero_page -EXPORT_SYMBOL vmlinux 0x27ae4288 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27cfe645 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x27e7cf80 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x27ee494c block_truncate_page -EXPORT_SYMBOL vmlinux 0x27fd1506 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x2809f2c8 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x281ce0ee md_update_sb -EXPORT_SYMBOL vmlinux 0x285f1515 invalidate_partition -EXPORT_SYMBOL vmlinux 0x28632238 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x286e3c67 __init_rwsem -EXPORT_SYMBOL vmlinux 0x2870b38e pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x2884204c clocksource_unregister -EXPORT_SYMBOL vmlinux 0x288b5d52 notify_change -EXPORT_SYMBOL vmlinux 0x28956435 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x290fcdff seq_printf -EXPORT_SYMBOL vmlinux 0x292108c0 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x293e24ff genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x29589f18 security_path_chmod -EXPORT_SYMBOL vmlinux 0x29783d44 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x297c1416 vfs_setpos -EXPORT_SYMBOL vmlinux 0x299fb99a of_parse_phandle -EXPORT_SYMBOL vmlinux 0x29a7acd9 input_allocate_device -EXPORT_SYMBOL vmlinux 0x29b051a4 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x29d0f68c pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x29d49afd blkdev_put -EXPORT_SYMBOL vmlinux 0x29e1b020 ida_simple_remove -EXPORT_SYMBOL vmlinux 0x29e835b7 revert_creds -EXPORT_SYMBOL vmlinux 0x29f44d1a register_filesystem -EXPORT_SYMBOL vmlinux 0x29f46405 module_layout -EXPORT_SYMBOL vmlinux 0x29f5db98 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x29fbd136 snd_pcm_hw_constraint_step -EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0x2a1f51a9 posix_test_lock -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a369b36 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit -EXPORT_SYMBOL vmlinux 0x2a497a03 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x2a4e1b14 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x2a629ddf file_ns_capable -EXPORT_SYMBOL vmlinux 0x2a6a518d blk_delay_queue -EXPORT_SYMBOL vmlinux 0x2a6bb72d __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x2a6d0956 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2aae2da2 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x2ab5a10d irq_to_desc -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2ae3deaa release_and_free_resource -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b12925d cpumask_next_and -EXPORT_SYMBOL vmlinux 0x2b181a1a gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0x2b1f57d8 vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b4e956e mempool_create -EXPORT_SYMBOL vmlinux 0x2b5ec749 try_module_get -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2bacade3 cont_write_begin -EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed -EXPORT_SYMBOL vmlinux 0x2bf2f833 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x2bf52245 xfrm_input -EXPORT_SYMBOL vmlinux 0x2bfd1557 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x2c18adea locks_remove_posix -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c54cad1 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem -EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs -EXPORT_SYMBOL vmlinux 0x2c82216b snd_jack_set_parent -EXPORT_SYMBOL vmlinux 0x2c988955 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x2c9b30b1 dquot_alloc -EXPORT_SYMBOL vmlinux 0x2c9b3fa6 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x2ca8bcbe dev_addr_flush -EXPORT_SYMBOL vmlinux 0x2cba3655 setattr_copy -EXPORT_SYMBOL vmlinux 0x2cc1d414 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x2cdcbef1 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x2cddf449 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x2cded30b netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x2cea5b84 ps2_end_command -EXPORT_SYMBOL vmlinux 0x2cf7af07 simple_empty -EXPORT_SYMBOL vmlinux 0x2cfbefb9 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x2d0fddd4 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d182e1a blk_queue_bounce -EXPORT_SYMBOL vmlinux 0x2d1c8d32 posix_unblock_lock -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d35fd60 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x2d475448 genphy_update_link -EXPORT_SYMBOL vmlinux 0x2d57abfb contig_page_data -EXPORT_SYMBOL vmlinux 0x2d627846 phy_attach -EXPORT_SYMBOL vmlinux 0x2d6507b5 _find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0x2d715fcb omapdss_unregister_display -EXPORT_SYMBOL vmlinux 0x2d770676 dispc_mgr_go -EXPORT_SYMBOL vmlinux 0x2d8e4437 ps2_command -EXPORT_SYMBOL vmlinux 0x2d96c50f clear_inode -EXPORT_SYMBOL vmlinux 0x2d9903d9 inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0x2dce310e iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink -EXPORT_SYMBOL vmlinux 0x2dfa0935 dput -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e22c6ad no_llseek -EXPORT_SYMBOL vmlinux 0x2e2818e3 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e2eb6d2 filemap_fdatawait -EXPORT_SYMBOL vmlinux 0x2e4d2a05 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x2e5810c6 __aeabi_unwind_cpp_pr1 -EXPORT_SYMBOL vmlinux 0x2e5c58a4 read_cache_page -EXPORT_SYMBOL vmlinux 0x2e68cc9d remove_proc_entry -EXPORT_SYMBOL vmlinux 0x2e6ae8a4 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x2e70b5fe devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x2e7f800d pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x2e84ae8c of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x2e89e827 md_flush_request -EXPORT_SYMBOL vmlinux 0x2e8be1c3 mpage_readpage -EXPORT_SYMBOL vmlinux 0x2e9ad254 kern_path_create -EXPORT_SYMBOL vmlinux 0x2ea05f21 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x2ebf369f truncate_pagecache -EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x2ecd441b fence_free -EXPORT_SYMBOL vmlinux 0x2ed20556 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x2edbc296 reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0x2ee31e11 lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2efbe7e9 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0x2efc012a inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f04e8a3 tcp_child_process -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f08d3c5 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x2f1b4030 napi_get_frags -EXPORT_SYMBOL vmlinux 0x2f3fad5b pci_write_vpd -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f49eabc snd_pcm_new -EXPORT_SYMBOL vmlinux 0x2f4e822f param_array_ops -EXPORT_SYMBOL vmlinux 0x2f585a17 ata_print_version -EXPORT_SYMBOL vmlinux 0x2f5d068e snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x2f65b661 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x2f97749b kobject_put -EXPORT_SYMBOL vmlinux 0x2fab14bc xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x2fb61281 genlmsg_put -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fdc01d0 seq_release -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2feb83c7 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x2feefb02 omapdss_default_get_recommended_bpp -EXPORT_SYMBOL vmlinux 0x300c6208 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x303eb3b6 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x3082a0b3 dss_feat_get_supported_color_modes -EXPORT_SYMBOL vmlinux 0x3096a3c4 tcf_hash_search -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x309e444e generic_readlink -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30a97cfb __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x30b87908 key_revoke -EXPORT_SYMBOL vmlinux 0x30d14261 dev_driver_string -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30e75623 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x3102f1f4 clk_get -EXPORT_SYMBOL vmlinux 0x3105b87a nand_correct_data -EXPORT_SYMBOL vmlinux 0x310917fe sort -EXPORT_SYMBOL vmlinux 0x311d3cb7 mutex_unlock -EXPORT_SYMBOL vmlinux 0x312475cf param_set_short -EXPORT_SYMBOL vmlinux 0x313006bb input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x313856e2 devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0x313daa70 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x31444755 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x316160a9 key_type_keyring -EXPORT_SYMBOL vmlinux 0x316b6cfa md_finish_reshape -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc -EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x31decd45 check_disk_change -EXPORT_SYMBOL vmlinux 0x31e3b20f pci_disable_device -EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx -EXPORT_SYMBOL vmlinux 0x3224a895 devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0x322d2f4c dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x322f2832 pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0x3234fa6d kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0x3239d454 path_get -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x3265394f skb_append -EXPORT_SYMBOL vmlinux 0x327fd926 param_ops_ullong -EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy -EXPORT_SYMBOL vmlinux 0x32907b91 idr_remove -EXPORT_SYMBOL vmlinux 0x32a50852 fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x32aa1ca0 ppp_channel_index -EXPORT_SYMBOL vmlinux 0x32b12cce snd_card_disconnect -EXPORT_SYMBOL vmlinux 0x32b7ccfe get_mem_type -EXPORT_SYMBOL vmlinux 0x32dbbcec __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x32e88c47 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x32f74124 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x33082943 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x3316845e idr_get_next -EXPORT_SYMBOL vmlinux 0x333665b9 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x33372d57 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x33380dbf tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x334853b0 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x3370911f copy_from_iter -EXPORT_SYMBOL vmlinux 0x337113c4 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0x3375f309 nf_log_register -EXPORT_SYMBOL vmlinux 0x33af3193 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x33c2727e neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x33dfa2ca kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x33ea2187 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f95a5e alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x34169691 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x342302ef copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x342c32b4 __alloc_skb -EXPORT_SYMBOL vmlinux 0x342e1710 udp_prot -EXPORT_SYMBOL vmlinux 0x3431ea11 do_splice_to -EXPORT_SYMBOL vmlinux 0x3439ecc2 sync_filesystem -EXPORT_SYMBOL vmlinux 0x344b7739 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x34589ed4 nvm_register_mgr -EXPORT_SYMBOL vmlinux 0x345d6110 phy_start -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x346881db vme_slave_request -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x34740989 param_set_bool -EXPORT_SYMBOL vmlinux 0x34880048 read_dev_sector -EXPORT_SYMBOL vmlinux 0x3498fea8 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34b98530 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34fc8eba skb_queue_tail -EXPORT_SYMBOL vmlinux 0x3507a132 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3529ba2a devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x3590b9c7 fget_raw -EXPORT_SYMBOL vmlinux 0x3590bf89 dss_mgr_set_timings -EXPORT_SYMBOL vmlinux 0x359419d4 dump_skip -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35a92770 dev_add_offload -EXPORT_SYMBOL vmlinux 0x35af1273 submit_bio -EXPORT_SYMBOL vmlinux 0x35e24299 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x35ead2cb __pci_register_driver -EXPORT_SYMBOL vmlinux 0x35f9e2e4 swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable -EXPORT_SYMBOL vmlinux 0x3614b452 nvm_erase_blk -EXPORT_SYMBOL vmlinux 0x363551bc proc_symlink -EXPORT_SYMBOL vmlinux 0x36389282 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x363fcafd elm_decode_bch_error_page -EXPORT_SYMBOL vmlinux 0x36473e4b blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x3660f356 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x36687b89 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x36b1a94c dss_mgr_enable -EXPORT_SYMBOL vmlinux 0x36b1eb29 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x36b2ead5 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x36bb7fc0 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36c32ffa tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x36f24d5c pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x37028c0b of_phy_find_device -EXPORT_SYMBOL vmlinux 0x3709b440 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x37113672 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x371b18c3 dup_iter -EXPORT_SYMBOL vmlinux 0x3729b733 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x37315b2b of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x37343274 netpoll_setup -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x3753b704 param_set_ulong -EXPORT_SYMBOL vmlinux 0x376038d8 pci_bus_type -EXPORT_SYMBOL vmlinux 0x3766d3b4 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x376bdb03 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x3774e0ba tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x377dd288 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x378be57a jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x378c4fbf netlink_ack -EXPORT_SYMBOL vmlinux 0x378e9108 d_genocide -EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 -EXPORT_SYMBOL vmlinux 0x37a7ce0d jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b3a5e7 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c483ee __genl_register_family -EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 -EXPORT_SYMBOL vmlinux 0x37f34054 bio_advance -EXPORT_SYMBOL vmlinux 0x37f5b840 sock_recvmsg -EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x37f63be5 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x37ff7390 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x381127af devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x381f01dd dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x382ecebf pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x38315ef5 dev_warn -EXPORT_SYMBOL vmlinux 0x3876538e of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x38978e52 ip_do_fragment -EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure -EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 -EXPORT_SYMBOL vmlinux 0x389f4229 get_io_context -EXPORT_SYMBOL vmlinux 0x38a0db42 snd_pci_quirk_lookup -EXPORT_SYMBOL vmlinux 0x38a453ec netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b552e3 skb_find_text -EXPORT_SYMBOL vmlinux 0x38e1f128 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x390c5d00 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x39102b99 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x3920e82b fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x3924dd56 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x394d21c9 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x3957a30b of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x396c54bd nvm_dev_factory -EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL vmlinux 0x39730d06 atomic_io_modify -EXPORT_SYMBOL vmlinux 0x399640e0 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399e3d6a set_disk_ro -EXPORT_SYMBOL vmlinux 0x39a5042c inet6_release -EXPORT_SYMBOL vmlinux 0x39a68a30 udp_proc_unregister -EXPORT_SYMBOL vmlinux 0x39b4cba8 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39b61885 seq_pad -EXPORT_SYMBOL vmlinux 0x39b8dd10 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL vmlinux 0x39cb1771 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x39cd5b81 omapdss_output_set_device -EXPORT_SYMBOL vmlinux 0x39d102da __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x39d171c8 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x39f2b263 htc_egpio_get_wakeup_irq -EXPORT_SYMBOL vmlinux 0x39fa081c mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0x3a08c24e tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x3a440994 rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0x3a447c56 ip_options_compile -EXPORT_SYMBOL vmlinux 0x3a819266 may_umount -EXPORT_SYMBOL vmlinux 0x3a897cd1 elv_rb_add -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3aa7c843 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x3aa82f7d cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x3aa981f6 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x3ae16fbd pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x3ae3b7f1 param_get_bool -EXPORT_SYMBOL vmlinux 0x3b1c8345 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x3b30d223 arp_xmit -EXPORT_SYMBOL vmlinux 0x3b555894 scsi_remove_device -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b669084 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0x3b6fa80f inet_add_protocol -EXPORT_SYMBOL vmlinux 0x3b712af8 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x3b91f3af snd_free_pages -EXPORT_SYMBOL vmlinux 0x3ba13de3 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base -EXPORT_SYMBOL vmlinux 0x3be49f3f get_thermal_instance -EXPORT_SYMBOL vmlinux 0x3be86a29 netdev_info -EXPORT_SYMBOL vmlinux 0x3c093d14 give_up_console -EXPORT_SYMBOL vmlinux 0x3c1b690a mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x3c252a90 nd_device_register -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c4570f7 __getblk_slow -EXPORT_SYMBOL vmlinux 0x3c4a6f18 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x3c5abe5b neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x3c6e978f gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x3c769f2e block_invalidatepage -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3ca4c99e kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x3cab19eb __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x3cdff669 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cec9bf9 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x3cedea51 of_find_property -EXPORT_SYMBOL vmlinux 0x3cfa969a proc_douintvec -EXPORT_SYMBOL vmlinux 0x3d144457 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x3d247ea2 omapdss_unregister_output -EXPORT_SYMBOL vmlinux 0x3d30409d iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0x3d351f55 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL vmlinux 0x3d3a4a51 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap -EXPORT_SYMBOL vmlinux 0x3d3f71dd scsi_ioctl -EXPORT_SYMBOL vmlinux 0x3d771ed8 unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0x3dab63fb uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x3daf853e phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x3db44799 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x3dbff628 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x3dc787a1 __find_get_block -EXPORT_SYMBOL vmlinux 0x3dc964ec pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3de06b6c pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x3de5c6fe check_disk_size_change -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e010944 fs_bio_set -EXPORT_SYMBOL vmlinux 0x3e2b0cba snd_ctl_remove_id -EXPORT_SYMBOL vmlinux 0x3e3f5748 mmc_can_discard -EXPORT_SYMBOL vmlinux 0x3e4884c9 scsi_device_get -EXPORT_SYMBOL vmlinux 0x3e4a9521 clk_add_alias -EXPORT_SYMBOL vmlinux 0x3e571fbb dss_mgr_register_framedone_handler -EXPORT_SYMBOL vmlinux 0x3e866399 complete_request_key -EXPORT_SYMBOL vmlinux 0x3e8ada02 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e929b87 flush_kernel_dcache_page -EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get -EXPORT_SYMBOL vmlinux 0x3e978d49 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0x3ea3c925 mntget -EXPORT_SYMBOL vmlinux 0x3eaa5eb3 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x3eb6a837 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x3ed08566 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x3ee1b318 noop_llseek -EXPORT_SYMBOL vmlinux 0x3eeac572 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0x3efcd44d mmc_erase -EXPORT_SYMBOL vmlinux 0x3f086f06 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x3f3424b5 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x3f40be58 shdma_cleanup -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f50e8e0 mdiobus_free -EXPORT_SYMBOL vmlinux 0x3f53ed2d phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x3f5b67d5 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x3f6fce10 file_path -EXPORT_SYMBOL vmlinux 0x3f7dbc5c textsearch_register -EXPORT_SYMBOL vmlinux 0x3f8618af mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x3f8696b8 of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x3f892216 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x3f9a4c0a read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x3fab3ca9 register_sysctl_table -EXPORT_SYMBOL vmlinux 0x3fae8a46 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x3fb6136a devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x3fbbbc49 from_kprojid -EXPORT_SYMBOL vmlinux 0x3fcd0399 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x400a69e9 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x4016ac83 bdi_register_dev -EXPORT_SYMBOL vmlinux 0x402260a0 elv_unregister_queue -EXPORT_SYMBOL vmlinux 0x4023e6ee _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x402ea1d8 of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev -EXPORT_SYMBOL vmlinux 0x4041778b inode_init_owner -EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x406e697d __serio_register_port -EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 -EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma -EXPORT_SYMBOL vmlinux 0x407d90c8 register_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0x408ae0e9 snd_pcm_notify -EXPORT_SYMBOL vmlinux 0x40958c08 fb_show_logo -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x409cea10 elv_rb_del -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40ad3abc neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40cc2878 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40ed524a _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 -EXPORT_SYMBOL vmlinux 0x40f2b06c eth_header -EXPORT_SYMBOL vmlinux 0x412cc21c tcp_proc_register -EXPORT_SYMBOL vmlinux 0x413c3eb1 cdev_add -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414b46d9 dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x41556a8f skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x4183ca87 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x41862ad4 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x419dd5a1 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x41acd42e param_ops_ushort -EXPORT_SYMBOL vmlinux 0x41ae7fa5 pci_get_subsys -EXPORT_SYMBOL vmlinux 0x41be24a0 poll_freewait -EXPORT_SYMBOL vmlinux 0x41cf7ff0 input_close_device -EXPORT_SYMBOL vmlinux 0x41d41231 simple_dname -EXPORT_SYMBOL vmlinux 0x41e11889 amba_find_device -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x4216b1b2 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x42249ebd to_ndd -EXPORT_SYMBOL vmlinux 0x423d81ed ida_pre_get -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424b3063 snd_card_set_id -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4265381d ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x4266ce7c dget_parent -EXPORT_SYMBOL vmlinux 0x426992b0 generic_file_open -EXPORT_SYMBOL vmlinux 0x427b49e2 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x4280c21b xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x4289b806 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x428b57e1 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x428c5b86 __register_nls -EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all -EXPORT_SYMBOL vmlinux 0x429eb850 tcp_prot -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42c0d3b8 param_get_byte -EXPORT_SYMBOL vmlinux 0x42e8deeb ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x42ecf546 ioremap -EXPORT_SYMBOL vmlinux 0x42f398b3 stop_tty -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4304c612 vfs_symlink -EXPORT_SYMBOL vmlinux 0x4337f106 blk_put_request -EXPORT_SYMBOL vmlinux 0x4347f52e register_netdevice -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x4356a2a1 sk_stream_error -EXPORT_SYMBOL vmlinux 0x4357549c filemap_fault -EXPORT_SYMBOL vmlinux 0x4357916a kernel_accept -EXPORT_SYMBOL vmlinux 0x4381b5a4 phy_start_interrupts -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x4386bf3d __blk_end_request_all -EXPORT_SYMBOL vmlinux 0x43a62b33 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x43dfb774 of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x43ef6087 bio_integrity_free -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x43f69912 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x44198c95 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x4421fd0c __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume -EXPORT_SYMBOL vmlinux 0x443585d0 pci_iounmap -EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0x443bf1f1 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x44430160 sockfd_lookup -EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin -EXPORT_SYMBOL vmlinux 0x44470d45 param_get_uint -EXPORT_SYMBOL vmlinux 0x444baf95 tty_devnum -EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul -EXPORT_SYMBOL vmlinux 0x4476fcb4 replace_mount_options -EXPORT_SYMBOL vmlinux 0x44850648 dma_common_mmap -EXPORT_SYMBOL vmlinux 0x44911ad5 param_ops_string -EXPORT_SYMBOL vmlinux 0x44a0dbac locks_init_lock -EXPORT_SYMBOL vmlinux 0x44aff156 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44b48c23 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x44b58bcd snd_pcm_hw_rule_noresample -EXPORT_SYMBOL vmlinux 0x44c12bcd pci_set_power_state -EXPORT_SYMBOL vmlinux 0x44c76ca1 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x44d037f1 mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x44d8a385 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x44dd3d8d completion_done -EXPORT_SYMBOL vmlinux 0x44e0d5ce fb_get_mode -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44ed8289 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x4502cbfa __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x4530ce39 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x4560a8f9 blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457d157d buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x4582022f sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45bc6978 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low -EXPORT_SYMBOL vmlinux 0x45c7cc42 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x45cb5c6f __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x4602878b qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x461b52c6 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy -EXPORT_SYMBOL vmlinux 0x46510555 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x465757c3 cpu_present_mask -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x465e04bc xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x465e7bb0 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x46602fbc snd_dma_free_pages -EXPORT_SYMBOL vmlinux 0x4663c8f2 padata_do_serial -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x468e037d set_nlink -EXPORT_SYMBOL vmlinux 0x469abe76 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x46a4bb9a pci_save_state -EXPORT_SYMBOL vmlinux 0x46a5e80e vga_client_register -EXPORT_SYMBOL vmlinux 0x46ca246c omap_get_dma_src_pos -EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 -EXPORT_SYMBOL vmlinux 0x46d936f7 nobh_write_begin -EXPORT_SYMBOL vmlinux 0x46da3dc9 unlock_page -EXPORT_SYMBOL vmlinux 0x46fb1e45 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x4710c9bb __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x4733b990 uart_update_timeout -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x4743b302 netif_rx -EXPORT_SYMBOL vmlinux 0x474e95e4 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0x47645692 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x47783fa3 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x4799bed2 xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0x47acf829 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0x47b393f7 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x47beec5c elm_config -EXPORT_SYMBOL vmlinux 0x47d70c02 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x47e11ffa pci_set_mwi -EXPORT_SYMBOL vmlinux 0x47e4353b cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range -EXPORT_SYMBOL vmlinux 0x47f757de elf_platform -EXPORT_SYMBOL vmlinux 0x48153aa5 param_set_invbool -EXPORT_SYMBOL vmlinux 0x481ce6ce cpu_active_mask -EXPORT_SYMBOL vmlinux 0x4843d97c dm_get_device -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x486265c9 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x487a8c4c napi_disable -EXPORT_SYMBOL vmlinux 0x4895c133 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type -EXPORT_SYMBOL vmlinux 0x48ad87ba block_write_end -EXPORT_SYMBOL vmlinux 0x48b84c22 nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48e063fa dqput -EXPORT_SYMBOL vmlinux 0x48f4df64 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x48f4f996 __destroy_inode -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x490ccea0 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x4916988f nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x49363759 pci_find_capability -EXPORT_SYMBOL vmlinux 0x493d73ae dmam_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0x4954822f account_page_redirty -EXPORT_SYMBOL vmlinux 0x4957aa4a wireless_spy_update -EXPORT_SYMBOL vmlinux 0x495c3fd1 pci_release_regions -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x4967c56e input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x497e3dc2 of_device_alloc -EXPORT_SYMBOL vmlinux 0x499cb58c prepare_to_wait -EXPORT_SYMBOL vmlinux 0x49ad5f46 devm_gpio_free -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b0b5d8 lwtunnel_output -EXPORT_SYMBOL vmlinux 0x49bd387d scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x49c279f8 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x49c29e8e tcp_make_synack -EXPORT_SYMBOL vmlinux 0x49d17cf0 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x49d65115 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a13e3b5 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x4a255477 inet_stream_ops -EXPORT_SYMBOL vmlinux 0x4a2c02b4 proto_unregister -EXPORT_SYMBOL vmlinux 0x4a2d91d0 devm_clk_get -EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params -EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL vmlinux 0x4a57b339 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x4a6462fc vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x4a6542b5 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4abcdcf3 get_user_pages -EXPORT_SYMBOL vmlinux 0x4abd6593 qdisc_list_del -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4af1e3ae xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b17b3cc skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x4b25adea snd_register_device -EXPORT_SYMBOL vmlinux 0x4b3d126a snd_card_register -EXPORT_SYMBOL vmlinux 0x4b41ecde page_waitqueue -EXPORT_SYMBOL vmlinux 0x4b41f24f sock_i_uid -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b765034 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x4b78933c qcom_scm_set_cold_boot_addr -EXPORT_SYMBOL vmlinux 0x4b7fe004 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0x4baa9f45 skb_checksum -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bafd021 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat -EXPORT_SYMBOL vmlinux 0x4bb20d4c free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x4bcb1e0e page_put_link -EXPORT_SYMBOL vmlinux 0x4bce0f36 gen_pool_create -EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x4be458ae __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x4be7fb63 up -EXPORT_SYMBOL vmlinux 0x4be85a03 memweight -EXPORT_SYMBOL vmlinux 0x4bf3b060 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x4c233a44 _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x4c259987 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c2c218b blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x4c33081d omapdss_compat_uninit -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c3aacc4 pci_choose_state -EXPORT_SYMBOL vmlinux 0x4c3ccd4e tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x4c4dc8ef d_make_root -EXPORT_SYMBOL vmlinux 0x4c5b3e69 skb_copy -EXPORT_SYMBOL vmlinux 0x4c5fc58c _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x4c7ebde9 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x4c7f4124 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x4c86184b remove_wait_queue -EXPORT_SYMBOL vmlinux 0x4cc975db tty_vhangup -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4cf6d718 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d1741e8 noop_qdisc -EXPORT_SYMBOL vmlinux 0x4d2120df napi_gro_flush -EXPORT_SYMBOL vmlinux 0x4d3ac3b6 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask -EXPORT_SYMBOL vmlinux 0x4d3fe23b amba_device_unregister -EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x4d6b83e9 thaw_bdev -EXPORT_SYMBOL vmlinux 0x4d769a91 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x4d82b8a5 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size -EXPORT_SYMBOL vmlinux 0x4da20916 genphy_suspend -EXPORT_SYMBOL vmlinux 0x4ddd4b32 phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4de55f43 file_open_root -EXPORT_SYMBOL vmlinux 0x4dec6038 memscan -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e35cfbd seq_putc -EXPORT_SYMBOL vmlinux 0x4e506013 omap_dma_link_lch -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e90667a scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x4e908c48 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x4ece4d3e scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x4ed6c92b blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x4ee2492c phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f6e1b33 netdev_state_change -EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL vmlinux 0x4f8406bc abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free -EXPORT_SYMBOL vmlinux 0x4f8ded5a mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x4fa45365 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x4fc33e38 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x4fd7e3d9 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x4fd861dc abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0x4ff4e0dc pci_enable_device -EXPORT_SYMBOL vmlinux 0x4ff5bb15 serio_rescan -EXPORT_SYMBOL vmlinux 0x4ffda263 blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x502d4d93 con_is_bound -EXPORT_SYMBOL vmlinux 0x50355a27 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL vmlinux 0x50423a31 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x504c8792 devm_gpiod_get -EXPORT_SYMBOL vmlinux 0x50527991 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x50690af4 set_device_ro -EXPORT_SYMBOL vmlinux 0x506e90a0 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x5070c43b of_node_put -EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit -EXPORT_SYMBOL vmlinux 0x5098481b nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x5098ea46 bio_reset -EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x50d5612e dispc_mgr_get_sync_lost_irq -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50e91b2c vfs_mkdir -EXPORT_SYMBOL vmlinux 0x51079c5d mdiobus_write -EXPORT_SYMBOL vmlinux 0x510fade9 kunmap_high -EXPORT_SYMBOL vmlinux 0x511746c1 dump_fpu -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x51463a97 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x514cc273 arm_copy_from_user -EXPORT_SYMBOL vmlinux 0x51724b0f nobh_writepage -EXPORT_SYMBOL vmlinux 0x5183dc23 scsi_init_io -EXPORT_SYMBOL vmlinux 0x51850e41 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x5188a872 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x51d559d1 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid -EXPORT_SYMBOL vmlinux 0x51e9de1c inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup -EXPORT_SYMBOL vmlinux 0x51f9c021 xattr_full_name -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x5242a968 kernel_connect -EXPORT_SYMBOL vmlinux 0x524b7522 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0x52783175 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x52863f6c tcp_seq_open -EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x528d0c14 idr_init -EXPORT_SYMBOL vmlinux 0x5298beeb ip6_frag_init -EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le -EXPORT_SYMBOL vmlinux 0x52b4875f pci_scan_bus -EXPORT_SYMBOL vmlinux 0x52bb841c atomic_io_modify_relaxed -EXPORT_SYMBOL vmlinux 0x52bdf17e param_ops_charp -EXPORT_SYMBOL vmlinux 0x52bf0257 __netif_schedule -EXPORT_SYMBOL vmlinux 0x52d0a35b napi_consume_skb -EXPORT_SYMBOL vmlinux 0x52e1a3fa scsi_host_set_state -EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL vmlinux 0x53064407 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x530c3c6a jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x532dc2c8 elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x534145c2 PDE_DATA -EXPORT_SYMBOL vmlinux 0x5341f105 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x5346eb31 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x536a4c63 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x5375c6c1 omap_dss_get_device -EXPORT_SYMBOL vmlinux 0x538b8423 arp_create -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x53c0ec3c clear_nlink -EXPORT_SYMBOL vmlinux 0x53c35b75 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x53e64be3 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x53f233d0 input_release_device -EXPORT_SYMBOL vmlinux 0x540208fa is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x5403b96d ip6_xmit -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x5412e17d skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x5422db49 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x5432a81c nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54440f2b serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x5462e6ca cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x547077ec __wake_up_bit -EXPORT_SYMBOL vmlinux 0x547ce898 dispc_read_irqenable -EXPORT_SYMBOL vmlinux 0x5485c1b5 snd_pcm_lib_writev -EXPORT_SYMBOL vmlinux 0x54918ea3 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x54a3c8bb icmp_send -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54b33491 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54d003ef get_task_exe_file -EXPORT_SYMBOL vmlinux 0x54dc8eac of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x54e4fb1c blk_end_request_all -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54ea27c9 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x54f6830a omapdss_get_default_display_name -EXPORT_SYMBOL vmlinux 0x54fc940a of_mdio_parse_addr -EXPORT_SYMBOL vmlinux 0x54fe5039 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x55073b9e __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x5510287f blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x5522de13 simple_link -EXPORT_SYMBOL vmlinux 0x552c5014 dev_deactivate -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x5553469d input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x5587812a swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x55914344 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x55929809 inet6_bind -EXPORT_SYMBOL vmlinux 0x559531dd __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55d78182 dev_err -EXPORT_SYMBOL vmlinux 0x55ddd963 snd_timer_close -EXPORT_SYMBOL vmlinux 0x55e995f9 write_cache_pages -EXPORT_SYMBOL vmlinux 0x5609f816 swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x563c8f02 bdi_destroy -EXPORT_SYMBOL vmlinux 0x5644b1c9 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x566b062e put_disk -EXPORT_SYMBOL vmlinux 0x567451ed vm_insert_page -EXPORT_SYMBOL vmlinux 0x5689afe7 dispc_ovl_enable -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x5696eedc skb_unlink -EXPORT_SYMBOL vmlinux 0x56bc2f15 dispc_ovl_set_channel_out -EXPORT_SYMBOL vmlinux 0x56c25ee6 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56cebabb dquot_resume -EXPORT_SYMBOL vmlinux 0x56d461b7 snd_card_free -EXPORT_SYMBOL vmlinux 0x56e7c2cd param_set_bint -EXPORT_SYMBOL vmlinux 0x570ba83a snd_card_new -EXPORT_SYMBOL vmlinux 0x571b3100 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x575ecd5c xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x577152e1 qdisc_list_add -EXPORT_SYMBOL vmlinux 0x577e7047 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x579b037f get_phy_device -EXPORT_SYMBOL vmlinux 0x57be018c input_unregister_device -EXPORT_SYMBOL vmlinux 0x57c3dc06 inet_del_offload -EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits -EXPORT_SYMBOL vmlinux 0x57cde477 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x57d08e98 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x57faaa68 dm_put_table_device -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58237e5a dquot_destroy -EXPORT_SYMBOL vmlinux 0x5827f712 dev_notice -EXPORT_SYMBOL vmlinux 0x58376f4b ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack -EXPORT_SYMBOL vmlinux 0x5857b7cd pgprot_kernel -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x588d6dbe pci_get_class -EXPORT_SYMBOL vmlinux 0x58946471 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x5897b4f1 kmap -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58d633c7 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58ead7ee input_set_capability -EXPORT_SYMBOL vmlinux 0x58ec0474 proc_remove -EXPORT_SYMBOL vmlinux 0x5945b444 param_set_int -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 -EXPORT_SYMBOL vmlinux 0x5962ca4e d_obtain_root -EXPORT_SYMBOL vmlinux 0x596b4759 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x597d4fe8 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x598542b2 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x59858690 i2c_del_driver -EXPORT_SYMBOL vmlinux 0x598593c1 sock_efree -EXPORT_SYMBOL vmlinux 0x598ac84a mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x598cd828 udp_table -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x598f2232 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x599aeabb nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59be6631 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area -EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a2f7ba9 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x5a33db56 simple_getattr -EXPORT_SYMBOL vmlinux 0x5a38269a dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x5a5981be audit_log -EXPORT_SYMBOL vmlinux 0x5a9142bf register_cdrom -EXPORT_SYMBOL vmlinux 0x5aad0fcb simple_fill_super -EXPORT_SYMBOL vmlinux 0x5acfde61 sock_no_listen -EXPORT_SYMBOL vmlinux 0x5ae43482 fb_find_mode -EXPORT_SYMBOL vmlinux 0x5ae5be44 lg_lock_init -EXPORT_SYMBOL vmlinux 0x5ae857b4 get_gendisk -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem -EXPORT_SYMBOL vmlinux 0x5b1b370d find_vma -EXPORT_SYMBOL vmlinux 0x5b640c83 vme_bus_num -EXPORT_SYMBOL vmlinux 0x5b6505a0 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x5b682b7e simple_release_fs -EXPORT_SYMBOL vmlinux 0x5b69d2f4 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0x5b78ec13 generic_listxattr -EXPORT_SYMBOL vmlinux 0x5b817421 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x5b82e6d9 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x5b91fc7b scsi_scan_target -EXPORT_SYMBOL vmlinux 0x5b93281a snd_component_add -EXPORT_SYMBOL vmlinux 0x5ba100a1 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x5bb6a820 __invalidate_device -EXPORT_SYMBOL vmlinux 0x5bc6211c import_iovec -EXPORT_SYMBOL vmlinux 0x5bc9f108 cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x5bf76296 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x5bfc2de9 of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x5c205d21 genphy_config_init -EXPORT_SYMBOL vmlinux 0x5c4d659a sock_create_kern -EXPORT_SYMBOL vmlinux 0x5c583015 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x5c83d010 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id -EXPORT_SYMBOL vmlinux 0x5cbf9519 param_get_invbool -EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x5ce7438a bio_flush_dcache_pages -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d21b9ef snd_ctl_find_id -EXPORT_SYMBOL vmlinux 0x5d27fe7d devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x5d3f0822 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL vmlinux 0x5d4877a0 blk_requeue_request -EXPORT_SYMBOL vmlinux 0x5d50511a from_kuid -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d589f59 cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0x5d688efc inet_shutdown -EXPORT_SYMBOL vmlinux 0x5d7fc9b9 __skb_tx_hash -EXPORT_SYMBOL vmlinux 0x5d8f3422 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x5da7824e snd_pcm_lib_malloc_pages -EXPORT_SYMBOL vmlinux 0x5dc5f6fd dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache -EXPORT_SYMBOL vmlinux 0x5dd446fb posix_lock_file -EXPORT_SYMBOL vmlinux 0x5dfced5e shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x5dfea4f1 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x5e060142 block_read_full_page -EXPORT_SYMBOL vmlinux 0x5e0ed5d5 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x5e0f0dc9 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x5e2858ba tty_port_close_start -EXPORT_SYMBOL vmlinux 0x5e299ec1 nvm_submit_io -EXPORT_SYMBOL vmlinux 0x5e4aa393 write_one_page -EXPORT_SYMBOL vmlinux 0x5e4fb457 blk_init_queue -EXPORT_SYMBOL vmlinux 0x5e7344e5 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x5e7a5b6e eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x5e7c72c9 tty_port_hangup -EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5ea61591 tcp_filter -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec78e10 mpage_writepages -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f20e55d simple_transaction_get -EXPORT_SYMBOL vmlinux 0x5f27323c _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x5f2cc686 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x5f445f7c d_add_ci -EXPORT_SYMBOL vmlinux 0x5f4721af dma_sync_wait -EXPORT_SYMBOL vmlinux 0x5f6415b4 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x5f754e5a memset -EXPORT_SYMBOL vmlinux 0x5f848b48 snd_timer_stop -EXPORT_SYMBOL vmlinux 0x5f8dfc36 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x5f9f0b71 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x5fa45964 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x5fae43b6 dst_destroy -EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5fdebc45 ip6_frag_match -EXPORT_SYMBOL vmlinux 0x5fe50ab7 md_done_sync -EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io -EXPORT_SYMBOL vmlinux 0x60055baa dispc_mgr_get_vsync_irq -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600ef545 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x601776de tty_port_put -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602680dd pps_event -EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60599be3 override_creds -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x60825868 phy_device_create -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60b34d89 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x60cf757c bio_split -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x60f5aad5 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x60f6a997 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x60fe7610 eth_header_cache -EXPORT_SYMBOL vmlinux 0x6101dd1b mtd_concat_create -EXPORT_SYMBOL vmlinux 0x6121878f mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x61482568 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x614bd653 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x614f9371 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x617a218d __cond_resched_lock -EXPORT_SYMBOL vmlinux 0x61a18002 neigh_lookup -EXPORT_SYMBOL vmlinux 0x61a85f26 down_read_trylock -EXPORT_SYMBOL vmlinux 0x61a863c0 rtnl_notify -EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61d69dc1 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x61e586a0 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x61e90e71 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x62296be1 qcom_scm_get_version -EXPORT_SYMBOL vmlinux 0x622e5742 pps_register_source -EXPORT_SYMBOL vmlinux 0x6237b31e pci_get_slot -EXPORT_SYMBOL vmlinux 0x623db438 mmc_put_card -EXPORT_SYMBOL vmlinux 0x6241f53c mmc_remove_host -EXPORT_SYMBOL vmlinux 0x6249b77c snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL vmlinux 0x625f9502 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x6260fade blk_peek_request -EXPORT_SYMBOL vmlinux 0x626bed6e serio_unregister_port -EXPORT_SYMBOL vmlinux 0x6272ba76 sock_no_poll -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x627e311b __inode_permission -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x6293ac51 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x63008f15 dev_get_by_name -EXPORT_SYMBOL vmlinux 0x63172961 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x636b3461 omap_dss_get_num_overlays -EXPORT_SYMBOL vmlinux 0x638f9b75 follow_down -EXPORT_SYMBOL vmlinux 0x6391b322 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63a8dd58 ns_capable -EXPORT_SYMBOL vmlinux 0x63c11206 snd_pcm_period_elapsed -EXPORT_SYMBOL vmlinux 0x63c2ed83 sg_miter_next -EXPORT_SYMBOL vmlinux 0x63c30138 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c913dc sk_capable -EXPORT_SYMBOL vmlinux 0x63cb5a40 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0x63e81d07 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x63eab1f2 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f14434 tcf_hash_check -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x64030b7d pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x644bbc72 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x645ae1d5 dev_addr_init -EXPORT_SYMBOL vmlinux 0x6460b4d3 make_kprojid -EXPORT_SYMBOL vmlinux 0x6461ce9d bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x647cf0de sock_edemux -EXPORT_SYMBOL vmlinux 0x64827217 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x649b56cb fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x64a09049 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x64a22ff0 dispc_mgr_set_lcd_config -EXPORT_SYMBOL vmlinux 0x64a8680d inet_frags_fini -EXPORT_SYMBOL vmlinux 0x64adc837 always_delete_dentry -EXPORT_SYMBOL vmlinux 0x64d0ba18 udp_proc_register -EXPORT_SYMBOL vmlinux 0x64da3d2d phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0x64dc6e36 vfs_rename -EXPORT_SYMBOL vmlinux 0x64e23fd2 passthru_features_check -EXPORT_SYMBOL vmlinux 0x650903a0 tty_register_device -EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x651a441a fb_blank -EXPORT_SYMBOL vmlinux 0x6529f993 keyring_clear -EXPORT_SYMBOL vmlinux 0x652f3dff vme_register_bridge -EXPORT_SYMBOL vmlinux 0x6535d7af xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x65466939 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x6546a67b request_key_async -EXPORT_SYMBOL vmlinux 0x6555d0c9 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x6578db1f of_get_next_child -EXPORT_SYMBOL vmlinux 0x6594ca1e elevator_init -EXPORT_SYMBOL vmlinux 0x65ab5e48 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x65ba57c6 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x65bb8bc2 dev_add_pack -EXPORT_SYMBOL vmlinux 0x65c06dfc poll_initwait -EXPORT_SYMBOL vmlinux 0x65ceb127 mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0x65d21822 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65ddf6e5 sock_no_accept -EXPORT_SYMBOL vmlinux 0x65ec293d copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x6603a1ed snd_jack_add_new_kctl -EXPORT_SYMBOL vmlinux 0x6604f0d6 dentry_open -EXPORT_SYMBOL vmlinux 0x662619cc __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x6626f3b0 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x66432f67 padata_free -EXPORT_SYMBOL vmlinux 0x66433706 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x6645ed92 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x6654bcae snd_soc_alloc_ac97_codec -EXPORT_SYMBOL vmlinux 0x666ddd90 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x6679c922 __breadahead -EXPORT_SYMBOL vmlinux 0x667f6253 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x66a4764a pcim_enable_device -EXPORT_SYMBOL vmlinux 0x66a8deae user_revoke -EXPORT_SYMBOL vmlinux 0x66b661db devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x66ce26ac dev_mc_sync -EXPORT_SYMBOL vmlinux 0x66d96857 inet_ioctl -EXPORT_SYMBOL vmlinux 0x66edcd07 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x66ff3181 netdev_err -EXPORT_SYMBOL vmlinux 0x6711987f jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x6724cba0 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x672d0dbc pci_read_vpd -EXPORT_SYMBOL vmlinux 0x673fbd44 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x6767b9ec ether_setup -EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit -EXPORT_SYMBOL vmlinux 0x6771fbfe sock_create -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x679f808b alloc_file -EXPORT_SYMBOL vmlinux 0x67b21704 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67cca074 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x67e02294 kobject_set_name -EXPORT_SYMBOL vmlinux 0x67ef45e9 inet_offloads -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x680afa40 dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0x68251d74 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x68446625 cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x6852f719 iget_locked -EXPORT_SYMBOL vmlinux 0x685c3391 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x68677a39 udp_ioctl -EXPORT_SYMBOL vmlinux 0x686d890c nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x6876ce4e vme_dma_request -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x68869bae panic_notifier_list -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68bdeba9 bio_init -EXPORT_SYMBOL vmlinux 0x68c1a974 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x68c4205f blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x68f4296a scsi_print_sense -EXPORT_SYMBOL vmlinux 0x68f42c78 of_dev_get -EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x69012ca5 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x6915eb38 down_interruptible -EXPORT_SYMBOL vmlinux 0x69710ace cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x697c0f91 mtd_concat_destroy -EXPORT_SYMBOL vmlinux 0x698187de __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x698ae6ef cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x699046f4 ptp_find_pin -EXPORT_SYMBOL vmlinux 0x69977c2f pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69a4edfd ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params -EXPORT_SYMBOL vmlinux 0x69c8c72f param_ops_bint -EXPORT_SYMBOL vmlinux 0x69d6f954 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x69db851a inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x69e08f92 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x69ea9684 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x69f20aff snd_pcm_hw_constraint_list -EXPORT_SYMBOL vmlinux 0x69fc2d5b xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x6a0066dd loop_backing_file -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a9e743c sock_kmalloc -EXPORT_SYMBOL vmlinux 0x6aa2fd79 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x6ab06649 generic_getxattr -EXPORT_SYMBOL vmlinux 0x6ab581b3 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6adfc319 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af1c22f cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b219b08 pcim_pin_device -EXPORT_SYMBOL vmlinux 0x6b2b399c fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b5b6788 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x6b690126 vfs_read -EXPORT_SYMBOL vmlinux 0x6b714db5 rfkill_alloc -EXPORT_SYMBOL vmlinux 0x6bb33dc2 bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x6bb5f565 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x6bb7bd6c disk_stack_limits -EXPORT_SYMBOL vmlinux 0x6bbbee55 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc5f2f9 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0x6bcb88c7 mmc_request_done -EXPORT_SYMBOL vmlinux 0x6bd73ba0 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c126be7 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn -EXPORT_SYMBOL vmlinux 0x6c344273 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x6c346917 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x6c40abb4 abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c5e9f05 devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c6af706 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x6c6cdd4d wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c86c635 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x6c908323 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x6c9bc238 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x6cb6d583 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x6cb8e589 touch_buffer -EXPORT_SYMBOL vmlinux 0x6cbc9a6a f_setown -EXPORT_SYMBOL vmlinux 0x6cbd893d fb_validate_mode -EXPORT_SYMBOL vmlinux 0x6ccc00eb vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6cf9f148 sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x6cffd4fb blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x6d010814 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x6d06d2ce xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d0ff711 snd_card_free_when_closed -EXPORT_SYMBOL vmlinux 0x6d110220 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x6d1c44dd lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d30a6c1 __frontswap_test -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d441802 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x6d592fa0 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le -EXPORT_SYMBOL vmlinux 0x6d6fd302 blkdev_get -EXPORT_SYMBOL vmlinux 0x6d8b298c xfrm_state_add -EXPORT_SYMBOL vmlinux 0x6d983312 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x6d9d815e dev_mc_del -EXPORT_SYMBOL vmlinux 0x6dbf5b35 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df66022 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x6e03b248 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x6e26c597 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x6e40aa06 scsi_device_put -EXPORT_SYMBOL vmlinux 0x6e5a1b0b vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x6e61ece7 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6e706870 neigh_destroy -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7b3df3 key_put -EXPORT_SYMBOL vmlinux 0x6e7f6caa devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea6ae29 vfs_writev -EXPORT_SYMBOL vmlinux 0x6eab9139 snd_register_oss_device -EXPORT_SYMBOL vmlinux 0x6eaf69c4 dev_mc_add -EXPORT_SYMBOL vmlinux 0x6ebe2330 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x6ec9ccdb _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x6ed01938 fput -EXPORT_SYMBOL vmlinux 0x6ee24ea5 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x6ee6027d __scsi_add_device -EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL vmlinux 0x6f01d991 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f80b3ce kmem_cache_create -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fdf0c42 netdev_crit -EXPORT_SYMBOL vmlinux 0x6ff52926 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x7008a08a neigh_for_each -EXPORT_SYMBOL vmlinux 0x70097aa0 nand_bch_free -EXPORT_SYMBOL vmlinux 0x70155561 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x702c5116 input_register_device -EXPORT_SYMBOL vmlinux 0x7033be8d tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x7042040c sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x7079e067 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x707fdf38 nand_scan_ident -EXPORT_SYMBOL vmlinux 0x708bd93a kernel_read -EXPORT_SYMBOL vmlinux 0x709600b3 single_release -EXPORT_SYMBOL vmlinux 0x70b76a94 of_gpio_simple_xlate -EXPORT_SYMBOL vmlinux 0x70e39dae dss_uninstall_mgr_ops -EXPORT_SYMBOL vmlinux 0x70f65fb4 __register_binfmt -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x7106101f netdev_emerg -EXPORT_SYMBOL vmlinux 0x7119db7f omap_dss_pal_timings -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x7148a3c9 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x714e5512 ptp_clock_index -EXPORT_SYMBOL vmlinux 0x7167bb69 sock_update_memcg -EXPORT_SYMBOL vmlinux 0x7169102e omap_dss_ntsc_timings -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x7185d533 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x719c9e1c dcb_setapp -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71b76eea ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x71c90087 memcmp -EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x71ffcb9e register_gifconf -EXPORT_SYMBOL vmlinux 0x720899f8 dst_discard_out -EXPORT_SYMBOL vmlinux 0x72089bf4 d_alloc -EXPORT_SYMBOL vmlinux 0x7216d19a release_firmware -EXPORT_SYMBOL vmlinux 0x72234ae8 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x72248694 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x72350130 ___ratelimit -EXPORT_SYMBOL vmlinux 0x7249fb76 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x72531d1d clear_wb_congested -EXPORT_SYMBOL vmlinux 0x726eae9e netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x727b5802 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x7281d2ca __check_sticky -EXPORT_SYMBOL vmlinux 0x7296d8a2 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x729cf37c path_put -EXPORT_SYMBOL vmlinux 0x72b9492b textsearch_prepare -EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x72e7bc56 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72efc25c truncate_setsize -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731c3529 fb_class -EXPORT_SYMBOL vmlinux 0x73231bfe input_flush_device -EXPORT_SYMBOL vmlinux 0x733ac6c3 dev_trans_start -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x733e8357 param_set_uint -EXPORT_SYMBOL vmlinux 0x73736f90 registered_fb -EXPORT_SYMBOL vmlinux 0x7381cb91 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x738ad79b vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x73938ff9 of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x7393a41e iov_iter_npages -EXPORT_SYMBOL vmlinux 0x739fa1b5 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x73d41332 sock_init_data -EXPORT_SYMBOL vmlinux 0x73e1b71f udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x73f2e6b8 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x73f560c3 simple_open -EXPORT_SYMBOL vmlinux 0x73f8a8b7 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x73fa313e parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x74238f8b dev_remove_pack -EXPORT_SYMBOL vmlinux 0x74347d6b generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x7478a07f padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x749074ac pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x74ad22f5 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x74afaaba set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74ca9a2d pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x74d7cca8 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f80ed3 tcp_prequeue -EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x7515c139 blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x753ad0f1 start_tty -EXPORT_SYMBOL vmlinux 0x754445b2 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x754bdea7 of_match_device -EXPORT_SYMBOL vmlinux 0x7561a5af load_nls_default -EXPORT_SYMBOL vmlinux 0x75713f48 of_get_named_gpio_flags -EXPORT_SYMBOL vmlinux 0x757fa796 kill_litter_super -EXPORT_SYMBOL vmlinux 0x75850d01 __vmalloc -EXPORT_SYMBOL vmlinux 0x758f1a9c blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 -EXPORT_SYMBOL vmlinux 0x75ae0f44 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x75b57cf7 reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75e9c4c0 nvm_put_blk -EXPORT_SYMBOL vmlinux 0x75ed0597 dentry_path_raw -EXPORT_SYMBOL vmlinux 0x75fb5910 snd_pcm_open_substream -EXPORT_SYMBOL vmlinux 0x7609136c serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x76237e8a param_set_copystring -EXPORT_SYMBOL vmlinux 0x762d52fb pneigh_lookup -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764bc91e ___pskb_trim -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append -EXPORT_SYMBOL vmlinux 0x765fb4b4 mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0x7662477d udp_disconnect -EXPORT_SYMBOL vmlinux 0x768ae606 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x769728a9 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x7698852e proto_register -EXPORT_SYMBOL vmlinux 0x7699eedb nf_log_unset -EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be -EXPORT_SYMBOL vmlinux 0x76e610de nvm_register_target -EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order -EXPORT_SYMBOL vmlinux 0x7707e540 put_tty_driver -EXPORT_SYMBOL vmlinux 0x771cb7ff kill_fasync -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x772519be gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x774a6528 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x77910a43 mount_subtree -EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x7798ba08 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77a67cf4 netlink_unicast -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77fa1a63 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x7810a88b fence_signal_locked -EXPORT_SYMBOL vmlinux 0x7817a664 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x7820f97b pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x782b7cf7 dump_page -EXPORT_SYMBOL vmlinux 0x7833deb2 pgprot_user -EXPORT_SYMBOL vmlinux 0x7835c393 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x784e8a57 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x7852ef27 of_mm_gpiochip_remove -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a2d50f inode_init_once -EXPORT_SYMBOL vmlinux 0x78ab0681 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x78b6ac5c of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e23efe uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x78ff4499 unlock_rename -EXPORT_SYMBOL vmlinux 0x79107416 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x791b0400 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x79211db4 ihold -EXPORT_SYMBOL vmlinux 0x79246907 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x7929e582 iterate_mounts -EXPORT_SYMBOL vmlinux 0x793001f5 get_mm_exe_file -EXPORT_SYMBOL vmlinux 0x79418513 vm_insert_mixed -EXPORT_SYMBOL vmlinux 0x7958ec65 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x7962510c inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x797aa0a1 mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0x79981fec module_refcount -EXPORT_SYMBOL vmlinux 0x79a132b6 max8998_update_reg -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79e00edf flow_cache_init -EXPORT_SYMBOL vmlinux 0x7a1f2611 dispc_mgr_set_timings -EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 -EXPORT_SYMBOL vmlinux 0x7a35e806 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x7a36ce56 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x7a41bb30 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x7a423a4e blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a466173 load_nls -EXPORT_SYMBOL vmlinux 0x7a539861 netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0x7a6e2c01 inet_accept -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aad61b3 keyring_search -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7af5a8c8 flow_cache_lookup -EXPORT_SYMBOL vmlinux 0x7af85856 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf -EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL vmlinux 0x7b003673 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x7b01cee7 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b16df3c skb_pull -EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress -EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x7b3dfb7d seq_file_path -EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7b62aea6 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x7b65df47 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x7b6c4041 bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x7b70113c i2c_register_driver -EXPORT_SYMBOL vmlinux 0x7b7035f9 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x7b775c9b pci_restore_state -EXPORT_SYMBOL vmlinux 0x7ba463d2 shdma_chan_probe -EXPORT_SYMBOL vmlinux 0x7bb99506 param_ops_byte -EXPORT_SYMBOL vmlinux 0x7bd333d9 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x7bdc42f6 blk_get_queue -EXPORT_SYMBOL vmlinux 0x7bdde9cd lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x7be8afc0 blkdev_fsync -EXPORT_SYMBOL vmlinux 0x7bea0cec iterate_dir -EXPORT_SYMBOL vmlinux 0x7c0151fc tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c162019 napi_complete_done -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c5e9809 inet_select_addr -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7c9f3d7c tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0x7ca894f4 skb_trim -EXPORT_SYMBOL vmlinux 0x7cad1b43 padata_start -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cb6da75 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 -EXPORT_SYMBOL vmlinux 0x7ccda9f6 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x7cd4abd5 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce9f988 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cfa1292 rt6_lookup -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d36be01 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x7d4415d6 bio_copy_data -EXPORT_SYMBOL vmlinux 0x7d497424 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x7d506261 netif_napi_del -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d865442 read_code -EXPORT_SYMBOL vmlinux 0x7db2742c __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x7dccc294 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x7de9fd36 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7e1b7931 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x7e398f4b snd_jack_new -EXPORT_SYMBOL vmlinux 0x7e467891 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x7e5f0daa snd_device_free -EXPORT_SYMBOL vmlinux 0x7e6fa3ef tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0x7e7d80ef __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x7e80d4ce dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x7e8be22e ppp_input -EXPORT_SYMBOL vmlinux 0x7e932f5f skb_queue_head -EXPORT_SYMBOL vmlinux 0x7e9efe8e complete_and_exit -EXPORT_SYMBOL vmlinux 0x7ea24be9 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x7eac5ef8 nand_bch_calculate_ecc -EXPORT_SYMBOL vmlinux 0x7ee4dde5 input_event -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7ee7f093 dispc_ovl_compute_fifo_thresholds -EXPORT_SYMBOL vmlinux 0x7eebb966 mntput -EXPORT_SYMBOL vmlinux 0x7f01c771 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f2b144b neigh_seq_start -EXPORT_SYMBOL vmlinux 0x7f2efa2d __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x7f56701d generic_read_dir -EXPORT_SYMBOL vmlinux 0x7f575895 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio -EXPORT_SYMBOL vmlinux 0x7f7ad0fd neigh_update -EXPORT_SYMBOL vmlinux 0x7f91bb43 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x7f928e3f component_match_add -EXPORT_SYMBOL vmlinux 0x7fae5c10 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x7fb193e2 param_set_charp -EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe3ce8a sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x7fe9d29a set_blocksize -EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 -EXPORT_SYMBOL vmlinux 0x800e5ae4 omapdss_default_get_resolution -EXPORT_SYMBOL vmlinux 0x800faefb vfs_whiteout -EXPORT_SYMBOL vmlinux 0x803109d1 dev_emerg -EXPORT_SYMBOL vmlinux 0x80360b57 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x8047bfb6 blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0x804aabdf idr_is_empty -EXPORT_SYMBOL vmlinux 0x805db6a3 sk_wait_data -EXPORT_SYMBOL vmlinux 0x8073ced2 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x808e97ab __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x80b931e4 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x80bf4bee processor -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80d92115 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x80db6178 snd_ctl_rename_id -EXPORT_SYMBOL vmlinux 0x80ec3a40 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x80ecb4ea debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x80f19cd1 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x80fa68e7 dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x81073dfc of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x810dea5b netif_device_attach -EXPORT_SYMBOL vmlinux 0x811ac9ec vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x818a6536 of_get_property -EXPORT_SYMBOL vmlinux 0x81ab4346 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL vmlinux 0x81bc7e85 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x81ca140e pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81f1f901 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x81f4d8de clkdev_drop -EXPORT_SYMBOL vmlinux 0x81fd490e key_payload_reserve -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x821a2409 put_cmsg -EXPORT_SYMBOL vmlinux 0x821ecbc8 drop_super -EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb -EXPORT_SYMBOL vmlinux 0x822a17c0 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x82318ac7 __brelse -EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr -EXPORT_SYMBOL vmlinux 0x824a6690 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x8288fdd7 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x8295ed7b pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x82a811ab generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82c3e279 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x82d02f2b dentry_update_name_case -EXPORT_SYMBOL vmlinux 0x82d21f89 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x82e6890d fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x82e98538 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x830037ed sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x831396c3 fence_signal -EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 -EXPORT_SYMBOL vmlinux 0x832343fe sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x8332ae11 neigh_xmit -EXPORT_SYMBOL vmlinux 0x83565584 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x835adfef pipe_lock -EXPORT_SYMBOL vmlinux 0x836341c2 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x8375d79d ida_destroy -EXPORT_SYMBOL vmlinux 0x837a7062 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x8381aa1a block_write_full_page -EXPORT_SYMBOL vmlinux 0x838eae00 snd_device_new -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83990141 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83b1f8e9 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x83c258c3 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83d390e6 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x83f9db63 free_buffer_head -EXPORT_SYMBOL vmlinux 0x84044fbe __neigh_create -EXPORT_SYMBOL vmlinux 0x84120f76 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x8428260f alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x844102d5 dma_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0x84440c4b inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x84603002 nand_scan_tail -EXPORT_SYMBOL vmlinux 0x846ea1c3 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x847bd828 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x847ea797 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x8489bafa tcp_check_req -EXPORT_SYMBOL vmlinux 0x84b183ae strncmp -EXPORT_SYMBOL vmlinux 0x84b7fb80 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x84e468ca dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x84e567e9 finish_open -EXPORT_SYMBOL vmlinux 0x84e9a6d1 blk_complete_request -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x8514ecc9 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x854cd073 arm_dma_ops -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x85688955 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x85765fee omap_enable_dma_irq -EXPORT_SYMBOL vmlinux 0x858057fa snd_unregister_oss_device -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x8608030c kmap_to_page -EXPORT_SYMBOL vmlinux 0x860b664f of_get_mac_address -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x865457f8 set_bh_page -EXPORT_SYMBOL vmlinux 0x86559eb7 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x8655c6a9 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x865a2772 done_path_create -EXPORT_SYMBOL vmlinux 0x86638d73 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x866a808d locks_free_lock -EXPORT_SYMBOL vmlinux 0x866f1a8a devm_memremap -EXPORT_SYMBOL vmlinux 0x868429ea skb_checksum_help -EXPORT_SYMBOL vmlinux 0x86860195 dss_feat_get_supported_displays -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x86bab857 i2c_release_client -EXPORT_SYMBOL vmlinux 0x86ec66a3 of_device_unregister -EXPORT_SYMBOL vmlinux 0x86edf667 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x87003790 fence_init -EXPORT_SYMBOL vmlinux 0x87071d0d pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x871bc8c4 nand_calculate_ecc -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x872fce39 padata_stop -EXPORT_SYMBOL vmlinux 0x87398e2d rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x873e3c5f ioremap_wc -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x87961c69 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x87aae00a iget5_locked -EXPORT_SYMBOL vmlinux 0x87b25c64 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL vmlinux 0x87b7a87c netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x87d5859a unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x87e8c4af mfd_add_devices -EXPORT_SYMBOL vmlinux 0x882f5975 d_tmpfile -EXPORT_SYMBOL vmlinux 0x885c8daa swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0x8862fbac crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x886bc76f mempool_resize -EXPORT_SYMBOL vmlinux 0x889146fc pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x88a4ab3b devm_free_irq -EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial -EXPORT_SYMBOL vmlinux 0x88f577eb __frontswap_store -EXPORT_SYMBOL vmlinux 0x88fbf10c netpoll_print_options -EXPORT_SYMBOL vmlinux 0x8932f39f __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x8964e820 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0x897b65a1 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x899253c4 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x8993f9af blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0x899d2141 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x89a307d7 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x89a727b0 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89b7d1aa inet_sendpage -EXPORT_SYMBOL vmlinux 0x89c037ff sock_sendmsg -EXPORT_SYMBOL vmlinux 0x89c45d00 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x89cb76fa qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x89df7042 fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0x89e6123d default_llseek -EXPORT_SYMBOL vmlinux 0x89ff29cd ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x8a07b4de mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x8a0f4230 rename_lock -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a3832f2 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a699fd4 __blk_end_request -EXPORT_SYMBOL vmlinux 0x8a6cc59f seq_lseek -EXPORT_SYMBOL vmlinux 0x8a7be1a4 d_splice_alias -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a95f26a rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8a99a183 inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0x8a9e56b2 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x8ab348ed fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0x8ae4b4f4 ab3100_event_register -EXPORT_SYMBOL vmlinux 0x8b1620a1 tty_do_resize -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b3d2331 __get_user_pages -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b472434 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x8b4bce66 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x8b4c48c7 phy_device_remove -EXPORT_SYMBOL vmlinux 0x8b4cb494 of_device_is_available -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b70d2ab scsi_unregister -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b922ffa key_invalidate -EXPORT_SYMBOL vmlinux 0x8badbaba insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x8bc05e33 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x8bc06dc0 dquot_file_open -EXPORT_SYMBOL vmlinux 0x8bd6ea68 vme_irq_free -EXPORT_SYMBOL vmlinux 0x8c0e82ee __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x8c32eaff md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x8c4988fd _snd_ctl_add_slave -EXPORT_SYMBOL vmlinux 0x8c4ae52c __nlmsg_put -EXPORT_SYMBOL vmlinux 0x8c5a2ba1 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c75c89c tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x8c88185b blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x8c9f6966 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x8cb1cf07 generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x8cb31534 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x8cc05346 register_sound_dsp -EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma -EXPORT_SYMBOL vmlinux 0x8ce9eb47 nd_btt_probe -EXPORT_SYMBOL vmlinux 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL vmlinux 0x8d0d8485 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x8d134c39 idr_replace -EXPORT_SYMBOL vmlinux 0x8d2db1f5 pci_bus_put -EXPORT_SYMBOL vmlinux 0x8d38ee9d kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d5a09c6 mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0x8d6091c2 netlink_set_err -EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x8d6c1eff mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 -EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d7cb54e bdget_disk -EXPORT_SYMBOL vmlinux 0x8d893463 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x8d89761a vmap -EXPORT_SYMBOL vmlinux 0x8d8b6353 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x8da602d5 amba_release_regions -EXPORT_SYMBOL vmlinux 0x8dcafcd6 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x8dcff6e2 __pv_offset -EXPORT_SYMBOL vmlinux 0x8dd36d02 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x8dd37924 key_task_permission -EXPORT_SYMBOL vmlinux 0x8de1c4a5 lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL vmlinux 0x8df65395 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x8dfefd12 vme_bus_type -EXPORT_SYMBOL vmlinux 0x8e03a878 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x8e1f75c7 nobh_write_end -EXPORT_SYMBOL vmlinux 0x8e46592e key_alloc -EXPORT_SYMBOL vmlinux 0x8e48cd89 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0x8e4e4505 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x8e51385a twl6040_power -EXPORT_SYMBOL vmlinux 0x8e59e885 security_inode_readlink -EXPORT_SYMBOL vmlinux 0x8e6433b1 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e7bf2ce dma_pool_create -EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops -EXPORT_SYMBOL vmlinux 0x8e8e33a7 tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0x8eaed044 kill_bdev -EXPORT_SYMBOL vmlinux 0x8ec5c313 __pagevec_release -EXPORT_SYMBOL vmlinux 0x8eca0b3d da903x_query_status -EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL vmlinux 0x8ed1330a fb_set_cmap -EXPORT_SYMBOL vmlinux 0x8eded610 of_dev_put -EXPORT_SYMBOL vmlinux 0x8f1ae357 filp_close -EXPORT_SYMBOL vmlinux 0x8f2cf583 nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0x8f37e386 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x8f393aff scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x8f4ad630 d_invalidate -EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major -EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard -EXPORT_SYMBOL vmlinux 0x8f755d18 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x8f7eace7 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x8f942c0b pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x8f9787b5 blk_start_request -EXPORT_SYMBOL vmlinux 0x8fa4130a omap_set_dma_callback -EXPORT_SYMBOL vmlinux 0x8fceb126 sk_free -EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin -EXPORT_SYMBOL vmlinux 0x8fd9dcea pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 -EXPORT_SYMBOL vmlinux 0x901e4338 get_acl -EXPORT_SYMBOL vmlinux 0x901f961d register_quota_format -EXPORT_SYMBOL vmlinux 0x903b9373 netif_napi_add -EXPORT_SYMBOL vmlinux 0x90427cd3 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x90687d80 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent -EXPORT_SYMBOL vmlinux 0x906fed62 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x90723f98 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x907288ab tty_check_change -EXPORT_SYMBOL vmlinux 0x90950d5d set_page_dirty -EXPORT_SYMBOL vmlinux 0x909d91bc mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x90b1324e snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL vmlinux 0x90bc73c8 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x90c3a2f7 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x90c68629 __blk_run_queue -EXPORT_SYMBOL vmlinux 0x90d5897c scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x90d9e302 blk_get_request -EXPORT_SYMBOL vmlinux 0x9101d363 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x910af538 amba_request_regions -EXPORT_SYMBOL vmlinux 0x910dc952 security_path_chown -EXPORT_SYMBOL vmlinux 0x9132caea scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x9152f069 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x9172f973 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug -EXPORT_SYMBOL vmlinux 0x91a4855f freeze_super -EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91df7e60 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x91f259e6 setup_new_exec -EXPORT_SYMBOL vmlinux 0x91f488d2 dentry_unhash -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x9215f343 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x9217de69 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x921a2868 ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0x9238cc72 param_get_short -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x9243025d tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x926a8e24 inode_permission -EXPORT_SYMBOL vmlinux 0x926e172d i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x92721356 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x927c6700 param_ops_long -EXPORT_SYMBOL vmlinux 0x92815cad __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92b15890 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x92c5b218 phy_connect -EXPORT_SYMBOL vmlinux 0x92ccc28b register_sound_special_device -EXPORT_SYMBOL vmlinux 0x92cd6a77 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x92d03276 of_phy_connect -EXPORT_SYMBOL vmlinux 0x92ec5d1b dispc_mgr_enable -EXPORT_SYMBOL vmlinux 0x92ec7134 simple_write_begin -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x9360109d i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x9369ad1d blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937e042c grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x937ec3da neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x938205ca kthread_stop -EXPORT_SYMBOL vmlinux 0x93963a85 dss_feat_get_num_mgrs -EXPORT_SYMBOL vmlinux 0x93a097d0 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x93b26a69 netdev_notice -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93c6a717 security_path_mknod -EXPORT_SYMBOL vmlinux 0x93df9983 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x93e5eec7 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x93f2faaf __page_symlink -EXPORT_SYMBOL vmlinux 0x93faacde km_report -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list -EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x9412cf39 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x9421a516 fasync_helper -EXPORT_SYMBOL vmlinux 0x94248083 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x943568cf scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x9450354e soft_cursor -EXPORT_SYMBOL vmlinux 0x9459b1eb inode_get_bytes -EXPORT_SYMBOL vmlinux 0x945cd9a8 kunmap -EXPORT_SYMBOL vmlinux 0x9466d789 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x946c3d1e udplite_prot -EXPORT_SYMBOL vmlinux 0x946efbfa __wait_on_bit -EXPORT_SYMBOL vmlinux 0x94781caf xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x947dd791 ps2_drain -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94a4114a tcp_sendpage -EXPORT_SYMBOL vmlinux 0x94b886e9 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x94c972a3 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x94d3da68 rtc_lock -EXPORT_SYMBOL vmlinux 0x94d91581 nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x950f435f lookup_one_len -EXPORT_SYMBOL vmlinux 0x9531e194 pagevec_lookup -EXPORT_SYMBOL vmlinux 0x953829f5 bdget -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x9552320a lock_sock_nested -EXPORT_SYMBOL vmlinux 0x9559a71a jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x955d49f2 mmc_cleanup_queue -EXPORT_SYMBOL vmlinux 0x95622f41 down_timeout -EXPORT_SYMBOL vmlinux 0x956e9f62 textsearch_destroy -EXPORT_SYMBOL vmlinux 0x9592d924 copy_to_iter -EXPORT_SYMBOL vmlinux 0x95b42b47 omap_dss_get_next_device -EXPORT_SYMBOL vmlinux 0x95bc4a6f backlight_force_update -EXPORT_SYMBOL vmlinux 0x95c7bf73 add_disk -EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 -EXPORT_SYMBOL vmlinux 0x95e60557 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x962fb8c7 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x963d3c3d netdev_alert -EXPORT_SYMBOL vmlinux 0x964392fd posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x965f7021 km_state_expired -EXPORT_SYMBOL vmlinux 0x96773d83 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x969a9557 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x96a9af64 __block_write_begin -EXPORT_SYMBOL vmlinux 0x96af2e5c phy_device_register -EXPORT_SYMBOL vmlinux 0x96caf966 init_buffer -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96cf2978 tcf_em_register -EXPORT_SYMBOL vmlinux 0x96d9b4c8 key_validate -EXPORT_SYMBOL vmlinux 0x96ecd4d7 peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x96fa209f dispc_ovl_check -EXPORT_SYMBOL vmlinux 0x9712e926 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x971a3463 alloc_fddidev -EXPORT_SYMBOL vmlinux 0x97255bdf strlen -EXPORT_SYMBOL vmlinux 0x9740c9fd bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x974d8b7c tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x976265d9 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x976e700f down_trylock -EXPORT_SYMBOL vmlinux 0x97719552 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x977529db unregister_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0x9793c93a dispc_mgr_setup -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x979f0743 param_set_ullong -EXPORT_SYMBOL vmlinux 0x97b9039f tty_port_destroy -EXPORT_SYMBOL vmlinux 0x97bb9b0f qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0x97cd1473 flow_cache_fini -EXPORT_SYMBOL vmlinux 0x97cecacd tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x97d633d3 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x97f47ad1 simple_write_end -EXPORT_SYMBOL vmlinux 0x97f99fd4 dispc_ovl_setup -EXPORT_SYMBOL vmlinux 0x98037418 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x98043c04 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x980af0a0 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0x9813fb88 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset -EXPORT_SYMBOL vmlinux 0x9897be20 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x98a19fb1 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x98d1c19e xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0x98da9417 inet_frags_init -EXPORT_SYMBOL vmlinux 0x98e3a3c2 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x98f4ba98 param_set_byte -EXPORT_SYMBOL vmlinux 0x98fd5f7b phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x9928a4fa tso_build_data -EXPORT_SYMBOL vmlinux 0x992e9e5d scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x99302fec devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x994e03aa ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x995637d1 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x995b8e4c sock_create_lite -EXPORT_SYMBOL vmlinux 0x996c4d30 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x998b4ebc blk_integrity_register -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x9997f183 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99bb8806 memmove -EXPORT_SYMBOL vmlinux 0x99c58db6 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99d43f01 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x99dc44d9 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x99f1e440 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x99f58330 lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0x9a01e80a key_link -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a28aa18 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x9a2abfc4 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x9a3bbf75 init_special_inode -EXPORT_SYMBOL vmlinux 0x9a3ca3ea current_in_userns -EXPORT_SYMBOL vmlinux 0x9a436485 mutex_lock -EXPORT_SYMBOL vmlinux 0x9a623142 ida_get_new_above -EXPORT_SYMBOL vmlinux 0x9a6d72d2 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range -EXPORT_SYMBOL vmlinux 0x9a9564fd serio_interrupt -EXPORT_SYMBOL vmlinux 0x9abe813c dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x9ac5ddf8 sk_receive_skb -EXPORT_SYMBOL vmlinux 0x9ad2e2eb dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x9adf5396 pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9af3d643 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x9af7a097 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x9afb8a6e devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x9b0cb286 setup_arg_pages -EXPORT_SYMBOL vmlinux 0x9b12441b __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b3f9ad5 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b70df30 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x9b74eca7 revalidate_disk -EXPORT_SYMBOL vmlinux 0x9b788ff7 input_set_keycode -EXPORT_SYMBOL vmlinux 0x9b8e9d4d install_exec_creds -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bb143dd snd_timer_open -EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put -EXPORT_SYMBOL vmlinux 0x9bca30ab i2c_transfer -EXPORT_SYMBOL vmlinux 0x9be12112 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9bf94c35 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x9c0bd51f _raw_spin_lock -EXPORT_SYMBOL vmlinux 0x9c231ed8 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x9c3fc32e nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x9c4828c4 arm_coherent_dma_ops -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c53244b vfs_writef -EXPORT_SYMBOL vmlinux 0x9c697d62 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x9c6e8db7 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x9c7a69c9 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x9c7f0db3 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0x9c9ec2a0 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb218a6 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x9cb49fb7 mdio_bus_type -EXPORT_SYMBOL vmlinux 0x9cba3c37 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x9cc09aef phy_init_eee -EXPORT_SYMBOL vmlinux 0x9cd35dc4 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x9cd73292 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x9cd73a9d blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x9d0d1eed phy_resume -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d2ce553 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x9d302541 account_page_dirtied -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d420a86 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x9d56862c ip_check_defrag -EXPORT_SYMBOL vmlinux 0x9d669763 memcpy -EXPORT_SYMBOL vmlinux 0x9d70cfc7 tty_hangup -EXPORT_SYMBOL vmlinux 0x9d7331b4 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9dfe9cb9 __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0cd5f6 bmap -EXPORT_SYMBOL vmlinux 0x9e22097a fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x9e29ad06 phy_find_first -EXPORT_SYMBOL vmlinux 0x9e41d68f generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x9e4b226f inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x9e4b80ee __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e6717b8 vfs_link -EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL vmlinux 0x9e75f242 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e86a59e netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x9e9e1ce6 vga_put -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea4351f __sb_start_write -EXPORT_SYMBOL vmlinux 0x9ea51d7b phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x9eadc922 __mutex_init -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9ec2df20 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x9efc163c d_instantiate -EXPORT_SYMBOL vmlinux 0x9efee630 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0x9f14d632 scmd_printk -EXPORT_SYMBOL vmlinux 0x9f2b5a8d of_root -EXPORT_SYMBOL vmlinux 0x9f3c9f34 snd_pcm_kernel_ioctl -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f8231ac xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x9f823cea dispc_mgr_is_enabled -EXPORT_SYMBOL vmlinux 0x9f95e2a3 elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe08609 prepare_creds -EXPORT_SYMBOL vmlinux 0x9fe5b768 iunique -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa0044066 kset_register -EXPORT_SYMBOL vmlinux 0xa004d35e dev_get_stats -EXPORT_SYMBOL vmlinux 0xa01d09fa inetdev_by_index -EXPORT_SYMBOL vmlinux 0xa0397105 omapdss_find_output_from_display -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa045ad0b scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xa047702f xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa0570d18 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0xa070b311 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xa072e488 dquot_operations -EXPORT_SYMBOL vmlinux 0xa07b0687 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa0a31c78 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0f39d76 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0fbd612 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL vmlinux 0xa0ffd7e6 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa12526b6 input_get_keycode -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa1432768 eth_change_mtu -EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts -EXPORT_SYMBOL vmlinux 0xa1504a35 elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0xa157a48b snd_unregister_device -EXPORT_SYMBOL vmlinux 0xa166311c inet6_offloads -EXPORT_SYMBOL vmlinux 0xa1684575 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0xa18f8d2d dm_io -EXPORT_SYMBOL vmlinux 0xa192813b idr_for_each -EXPORT_SYMBOL vmlinux 0xa1935b62 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0xa19eaf9a vga_tryget -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1d55e90 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1e1780c ptp_clock_register -EXPORT_SYMBOL vmlinux 0xa1e4456e snd_timer_continue -EXPORT_SYMBOL vmlinux 0xa1f0ebea bit_waitqueue -EXPORT_SYMBOL vmlinux 0xa203b9fc cfb_copyarea -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa2203b03 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xa228dbfd snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL vmlinux 0xa22c5a17 security_path_truncate -EXPORT_SYMBOL vmlinux 0xa2382978 bdev_stack_limits -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa2859036 i2c_master_send -EXPORT_SYMBOL vmlinux 0xa288ee60 __elv_add_request -EXPORT_SYMBOL vmlinux 0xa28e5f5e nf_setsockopt -EXPORT_SYMBOL vmlinux 0xa29186c2 __d_drop -EXPORT_SYMBOL vmlinux 0xa2923202 dev_change_flags -EXPORT_SYMBOL vmlinux 0xa29a2b05 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xa29c2019 pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0xa2b51a57 make_kuid -EXPORT_SYMBOL vmlinux 0xa2bc3fe4 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xa314421b km_policy_expired -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL vmlinux 0xa35444e4 dispc_write_irqenable -EXPORT_SYMBOL vmlinux 0xa364f476 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0xa37a6aff ata_dev_printk -EXPORT_SYMBOL vmlinux 0xa37a79a6 tty_kref_put -EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get -EXPORT_SYMBOL vmlinux 0xa381944f dql_reset -EXPORT_SYMBOL vmlinux 0xa39a123a fence_add_callback -EXPORT_SYMBOL vmlinux 0xa3a2f881 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xa3c0dbaf get_disk -EXPORT_SYMBOL vmlinux 0xa3c46cd2 phy_stop -EXPORT_SYMBOL vmlinux 0xa3c53da8 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0xa3f34a0b udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xa3f63d1e dqget -EXPORT_SYMBOL vmlinux 0xa3fb5ed9 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xa414882d add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xa418382a bdi_register -EXPORT_SYMBOL vmlinux 0xa42d3832 dquot_disable -EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf -EXPORT_SYMBOL vmlinux 0xa43d254a scsi_scan_host -EXPORT_SYMBOL vmlinux 0xa43d8d77 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev -EXPORT_SYMBOL vmlinux 0xa466a33c snd_pcm_suspend_all -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa48f5b09 omap_dma_set_global_params -EXPORT_SYMBOL vmlinux 0xa49a1456 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority -EXPORT_SYMBOL vmlinux 0xa4cbf932 blk_queue_split -EXPORT_SYMBOL vmlinux 0xa4d0ee00 free_user_ns -EXPORT_SYMBOL vmlinux 0xa4dcbb1f sock_i_ino -EXPORT_SYMBOL vmlinux 0xa523b942 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xa532092f unlink_framebuffer -EXPORT_SYMBOL vmlinux 0xa54e1c15 blk_start_queue -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa588b8c0 irq_set_chip -EXPORT_SYMBOL vmlinux 0xa58fea9d mempool_destroy -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5b47af1 mmc_release_host -EXPORT_SYMBOL vmlinux 0xa5d17a5b ipv4_specific -EXPORT_SYMBOL vmlinux 0xa5fa0ae8 snd_pcm_stop -EXPORT_SYMBOL vmlinux 0xa615a3b2 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL vmlinux 0xa61acc22 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xa61e4362 omap_request_dma -EXPORT_SYMBOL vmlinux 0xa62abe8b jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xa637359d pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember -EXPORT_SYMBOL vmlinux 0xa63f3cfb i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xa640df16 __pci_enable_wake -EXPORT_SYMBOL vmlinux 0xa645473b snd_pcm_lib_readv -EXPORT_SYMBOL vmlinux 0xa655d0ae ps2_handle_response -EXPORT_SYMBOL vmlinux 0xa65ef250 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xa67374f0 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0xa673d593 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa6979b9a poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0xa69a8371 tcp_shutdown -EXPORT_SYMBOL vmlinux 0xa6a1d90c vme_irq_handler -EXPORT_SYMBOL vmlinux 0xa6ae24c3 get_unmapped_area -EXPORT_SYMBOL vmlinux 0xa6bab23d dqstats -EXPORT_SYMBOL vmlinux 0xa6bfab0f md_write_start -EXPORT_SYMBOL vmlinux 0xa6f1d4c5 abort_creds -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa7033689 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xa705788d crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xa706b350 eth_type_trans -EXPORT_SYMBOL vmlinux 0xa71470a7 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xa71ffc34 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xa734a3e9 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa742a183 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xa756e34b eth_gro_complete -EXPORT_SYMBOL vmlinux 0xa7774810 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0xa7800f19 kobject_del -EXPORT_SYMBOL vmlinux 0xa78b6e26 skb_insert -EXPORT_SYMBOL vmlinux 0xa79dec90 build_skb -EXPORT_SYMBOL vmlinux 0xa7acbb57 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0xa7dca496 dump_truncate -EXPORT_SYMBOL vmlinux 0xa7e40e6e kernel_write -EXPORT_SYMBOL vmlinux 0xa809214d dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa85a96aa blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0xa85e26c1 wait_iff_congested -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa884e7ca sk_mc_loop -EXPORT_SYMBOL vmlinux 0xa89a923b snd_ctl_boolean_mono_info -EXPORT_SYMBOL vmlinux 0xa89c8560 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8a90214 km_query -EXPORT_SYMBOL vmlinux 0xa8aa3175 omap_dss_get_output -EXPORT_SYMBOL vmlinux 0xa8afa65c padata_alloc_possible -EXPORT_SYMBOL vmlinux 0xa8b2083a cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0xa8cce06b seq_dentry -EXPORT_SYMBOL vmlinux 0xa8dc0170 security_path_unlink -EXPORT_SYMBOL vmlinux 0xa8dddfe9 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0xa8f70f84 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa91107b9 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa928444f down_read -EXPORT_SYMBOL vmlinux 0xa929262a fget -EXPORT_SYMBOL vmlinux 0xa93bf26b generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xa95e66ab __dev_remove_pack -EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request -EXPORT_SYMBOL vmlinux 0xa9658cd3 kobject_add -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa98b6f02 snd_pcm_lib_ioctl -EXPORT_SYMBOL vmlinux 0xa98e2186 elv_register_queue -EXPORT_SYMBOL vmlinux 0xa99040fa nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9c7e949 dquot_acquire -EXPORT_SYMBOL vmlinux 0xa9d2f3f7 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xa9e2f557 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xa9e661a4 user_path_at_empty -EXPORT_SYMBOL vmlinux 0xaa02935a of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xaa2a334d input_set_abs_params -EXPORT_SYMBOL vmlinux 0xaa38862d jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xaa4801fe blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xaa62ef65 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa775cc4 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xaa78d74b snd_seq_root -EXPORT_SYMBOL vmlinux 0xaa7c9572 unlock_buffer -EXPORT_SYMBOL vmlinux 0xaa8479ea jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaae2e8d1 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0xaaefa673 omap_dss_find_device -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xaaffd7de jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xab154ed9 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xab1f93b0 security_path_rmdir -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab62f1e3 finish_no_open -EXPORT_SYMBOL vmlinux 0xab68ca92 generic_removexattr -EXPORT_SYMBOL vmlinux 0xab694444 bsearch -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab98b6d3 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xabb2b0f0 d_walk -EXPORT_SYMBOL vmlinux 0xabb38c00 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xabb5b921 simple_transaction_release -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabd70721 tty_free_termios -EXPORT_SYMBOL vmlinux 0xabe6ff9a padata_remove_cpu -EXPORT_SYMBOL vmlinux 0xabe83954 bioset_create -EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xabfd51da iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac390091 dev_base_lock -EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear -EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL vmlinux 0xac797a10 nonseekable_open -EXPORT_SYMBOL vmlinux 0xac7a89eb fddi_type_trans -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacafeee8 d_move -EXPORT_SYMBOL vmlinux 0xacb7b853 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0xacc30ada nlmsg_notify -EXPORT_SYMBOL vmlinux 0xacc6b1c7 of_device_register -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacf7f35e dquot_drop -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad3d648a read_cache_pages -EXPORT_SYMBOL vmlinux 0xad3fc593 kernel_bind -EXPORT_SYMBOL vmlinux 0xad44de32 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xad5f9eb7 omapdss_find_mgr_from_display -EXPORT_SYMBOL vmlinux 0xad70f332 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xad772a15 dev_printk -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad91cde2 release_pages -EXPORT_SYMBOL vmlinux 0xada5e517 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xadb92c83 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xadbf980d wake_up_process -EXPORT_SYMBOL vmlinux 0xadcf95b7 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xadd62d8c nvm_get_blk -EXPORT_SYMBOL vmlinux 0xade60e58 tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0xade88e76 snd_malloc_pages -EXPORT_SYMBOL vmlinux 0xadef66fc tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae051a8c filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0xae0b6293 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xae271732 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xae4944f6 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0xae81fd73 __nd_iostat_start -EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup -EXPORT_SYMBOL vmlinux 0xae8cc6d7 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xae90578a input_register_handler -EXPORT_SYMBOL vmlinux 0xae992b15 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xaebced5b swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0xaee34de1 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xaee9549e pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0xaeee83bd inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xaef48626 __kfree_skb -EXPORT_SYMBOL vmlinux 0xaf0a4fda __seq_open_private -EXPORT_SYMBOL vmlinux 0xaf1a2a22 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xaf2143e6 dma_mmap_from_coherent -EXPORT_SYMBOL vmlinux 0xaf2173c3 snd_pcm_mmap_data -EXPORT_SYMBOL vmlinux 0xaf32cbd2 md_unregister_thread -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality -EXPORT_SYMBOL vmlinux 0xaf7d8936 simple_unlink -EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 -EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev -EXPORT_SYMBOL vmlinux 0xafb3f171 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xafc5eb5f buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xafd2b884 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xafde90f4 blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0xaff8dcb4 bdi_register_owner -EXPORT_SYMBOL vmlinux 0xaffd6b2d skb_put -EXPORT_SYMBOL vmlinux 0xb00d878c sound_class -EXPORT_SYMBOL vmlinux 0xb028eed5 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xb041ad10 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0xb04cf0fe lg_local_unlock -EXPORT_SYMBOL vmlinux 0xb05136ff generic_file_mmap -EXPORT_SYMBOL vmlinux 0xb057cd27 cpu_user -EXPORT_SYMBOL vmlinux 0xb05a9cdf sg_miter_skip -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb060e92c dev_open -EXPORT_SYMBOL vmlinux 0xb063a2dc blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0xb066b530 iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0xb0760745 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xb0979130 module_put -EXPORT_SYMBOL vmlinux 0xb0982b7a consume_skb -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0b6f17d linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xb0be9d1b jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xb0cf0082 unregister_key_type -EXPORT_SYMBOL vmlinux 0xb0d4017d end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e33557 skb_dequeue -EXPORT_SYMBOL vmlinux 0xb0fb9508 skb_split -EXPORT_SYMBOL vmlinux 0xb0ffcb55 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xb1118010 inode_init_always -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb126d474 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb130ce4c input_grab_device -EXPORT_SYMBOL vmlinux 0xb138e552 simple_lookup -EXPORT_SYMBOL vmlinux 0xb1456a31 bio_put -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb15df4c1 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb164faab tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0xb16b8437 netdev_features_change -EXPORT_SYMBOL vmlinux 0xb16c5ba3 empty_aops -EXPORT_SYMBOL vmlinux 0xb16f7a32 padata_do_parallel -EXPORT_SYMBOL vmlinux 0xb195a486 path_noexec -EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1cef70e scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0xb1cf2db5 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1d9aabd lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0xb1deb984 tty_lock -EXPORT_SYMBOL vmlinux 0xb2282df8 drop_nlink -EXPORT_SYMBOL vmlinux 0xb22ead7a ll_rw_block -EXPORT_SYMBOL vmlinux 0xb2302ead pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xb2383807 rwsem_wake -EXPORT_SYMBOL vmlinux 0xb2408dd0 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xb24c36da vfs_readf -EXPORT_SYMBOL vmlinux 0xb251a0bf input_unregister_handle -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb27b70b9 inet_recvmsg -EXPORT_SYMBOL vmlinux 0xb28ab56c blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0xb293b8fc tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xb2a3fcdc simple_map_init -EXPORT_SYMBOL vmlinux 0xb2ad8233 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2c90fde xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on -EXPORT_SYMBOL vmlinux 0xb2d4b1a8 arm_dma_zone_size -EXPORT_SYMBOL vmlinux 0xb2d51123 security_path_link -EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL vmlinux 0xb2e8bba7 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xb2eb511f tcp_close -EXPORT_SYMBOL vmlinux 0xb2ed8934 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xb2f0afb5 lookup_bdev -EXPORT_SYMBOL vmlinux 0xb2f17caa page_cache_next_hole -EXPORT_SYMBOL vmlinux 0xb30859e0 generic_perform_write -EXPORT_SYMBOL vmlinux 0xb32a209a __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xb33c351f ioremap_cache -EXPORT_SYMBOL vmlinux 0xb369d294 skb_clone -EXPORT_SYMBOL vmlinux 0xb380aa41 abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0xb39b49a1 task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0xb3c78ded param_set_long -EXPORT_SYMBOL vmlinux 0xb3cf54a1 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d4eb05 dss_mgr_disable -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb4075266 mount_nodev -EXPORT_SYMBOL vmlinux 0xb40a4c8b vme_master_request -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb42fa66e xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xb431a7fe arp_tbl -EXPORT_SYMBOL vmlinux 0xb4390f9a mcount -EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem -EXPORT_SYMBOL vmlinux 0xb45432ca set_anon_super -EXPORT_SYMBOL vmlinux 0xb45a8f4a vfs_getattr -EXPORT_SYMBOL vmlinux 0xb46b74f7 pci_disable_msi -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb49b9c05 kill_pgrp -EXPORT_SYMBOL vmlinux 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL vmlinux 0xb4bf4765 bdi_init -EXPORT_SYMBOL vmlinux 0xb4f456eb kthread_bind -EXPORT_SYMBOL vmlinux 0xb50985d8 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xb50e5f5c snd_pcm_limit_hw_rates -EXPORT_SYMBOL vmlinux 0xb5198b77 _raw_read_lock -EXPORT_SYMBOL vmlinux 0xb52482eb scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xb5359509 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xb54a2df3 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xb54b4687 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0xb563bf6a inet_addr_type_table -EXPORT_SYMBOL vmlinux 0xb5684e29 idr_find_slowpath -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb57ebf21 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5c00014 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0xb5c174b3 update_devfreq -EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free -EXPORT_SYMBOL vmlinux 0xb5d46ed6 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit -EXPORT_SYMBOL vmlinux 0xb5de6e7b blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xb5e90f34 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xb600ad2c nf_log_trace -EXPORT_SYMBOL vmlinux 0xb60f2de5 unregister_netdev -EXPORT_SYMBOL vmlinux 0xb62444e2 kill_pid -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb63a3fb1 is_nd_btt -EXPORT_SYMBOL vmlinux 0xb65e1b88 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xb65e8cd8 unregister_nls -EXPORT_SYMBOL vmlinux 0xb65fbda5 lease_get_mtime -EXPORT_SYMBOL vmlinux 0xb66225a6 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL vmlinux 0xb66a9532 get_super_thawed -EXPORT_SYMBOL vmlinux 0xb675c645 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0xb6775e10 sk_common_release -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb68492ff __dquot_free_space -EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif -EXPORT_SYMBOL vmlinux 0xb690d5ea bdevname -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69c3b59 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6bc85a9 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xb6c07dff tcf_hash_create -EXPORT_SYMBOL vmlinux 0xb6d3daf1 qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xb7020c56 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xb7100329 set_binfmt -EXPORT_SYMBOL vmlinux 0xb7117fb5 security_path_symlink -EXPORT_SYMBOL vmlinux 0xb7180780 sget -EXPORT_SYMBOL vmlinux 0xb732a316 fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0xb736ad6f of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0xb736b6c4 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb74b6e5f tty_port_close -EXPORT_SYMBOL vmlinux 0xb75461a8 __napi_complete -EXPORT_SYMBOL vmlinux 0xb76126d7 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0xb767d9a4 nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb7782446 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xb78f443c padata_add_cpu -EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0xb7a2151f tc6393xb_lcd_mode -EXPORT_SYMBOL vmlinux 0xb7ba76c7 __aeabi_unwind_cpp_pr2 -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7e36f01 ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xb7f49735 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xb80de1e3 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0xb81960ca snprintf -EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xb8445ed0 generic_permission -EXPORT_SYMBOL vmlinux 0xb8479faa ip_ct_attach -EXPORT_SYMBOL vmlinux 0xb84a7f01 sk_alloc -EXPORT_SYMBOL vmlinux 0xb8658e23 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xb86c92be inet_stream_connect -EXPORT_SYMBOL vmlinux 0xb86e33ef __put_cred -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb874d12c __free_pages -EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xb8aa438f mpage_writepage -EXPORT_SYMBOL vmlinux 0xb8bcc972 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0xb8c6b570 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0xb8e68cee send_sig -EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xb8ebddc9 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xb9088e64 sock_wake_async -EXPORT_SYMBOL vmlinux 0xb91d7eb7 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xb930f5d3 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xb938b9be nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0xb95c5d3d ps2_begin_command -EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io -EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL vmlinux 0xb97ca743 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xb986fdb6 snd_timer_global_register -EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma -EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 -EXPORT_SYMBOL vmlinux 0xb9b9b358 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0xb9be64f4 genphy_read_status -EXPORT_SYMBOL vmlinux 0xb9d96897 cfb_imageblit -EXPORT_SYMBOL vmlinux 0xb9d9f491 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9f54614 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xb9f794a8 of_iomap -EXPORT_SYMBOL vmlinux 0xba16ef3b neigh_table_init -EXPORT_SYMBOL vmlinux 0xba231f6d security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0xba4268f7 devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba55bd09 cap_mmap_file -EXPORT_SYMBOL vmlinux 0xba5c42a5 bd_set_size -EXPORT_SYMBOL vmlinux 0xba640e13 km_state_notify -EXPORT_SYMBOL vmlinux 0xba74d24a kernel_getsockopt -EXPORT_SYMBOL vmlinux 0xba79bcdc md_write_end -EXPORT_SYMBOL vmlinux 0xba977ba1 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0xba9c951d tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xba9eeb59 inode_change_ok -EXPORT_SYMBOL vmlinux 0xbaa01d5e skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xbaa45f7f follow_up -EXPORT_SYMBOL vmlinux 0xbaab14a4 nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xbab66852 xfrm_init_state -EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0xbad3bf31 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0xbaf27747 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0xbaf4a6ed ip_setsockopt -EXPORT_SYMBOL vmlinux 0xbafeee36 dispc_runtime_get -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb088cbd param_ops_uint -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb43caa6 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0xbb542c5c ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xbb554b4c dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbba6e1f9 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0xbbbca314 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 -EXPORT_SYMBOL vmlinux 0xbc24671c param_get_string -EXPORT_SYMBOL vmlinux 0xbc43aa41 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xbc54988e xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xbc6329b0 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xbc7cf66d devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xbc90977d snd_pcm_set_sync -EXPORT_SYMBOL vmlinux 0xbc929da8 rtnl_unicast -EXPORT_SYMBOL vmlinux 0xbc9dfdf3 inet_getname -EXPORT_SYMBOL vmlinux 0xbcb5f0a0 __dst_free -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcc4f7ba max8925_bulk_write -EXPORT_SYMBOL vmlinux 0xbcc81d4a snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL vmlinux 0xbccdd804 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xbcda356b secpath_dup -EXPORT_SYMBOL vmlinux 0xbce98825 kern_path -EXPORT_SYMBOL vmlinux 0xbcf25a79 dma_find_channel -EXPORT_SYMBOL vmlinux 0xbcf4b727 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0xbd101442 proc_mkdir -EXPORT_SYMBOL vmlinux 0xbd123f16 omap_dss_get_overlay -EXPORT_SYMBOL vmlinux 0xbd14fd7a snd_timer_interrupt -EXPORT_SYMBOL vmlinux 0xbd156ca0 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xbd17c6de gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xbd1e5d5d sk_send_sigurg -EXPORT_SYMBOL vmlinux 0xbd2a2ce8 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xbd378732 ptp_clock_event -EXPORT_SYMBOL vmlinux 0xbd545fe0 scsi_block_requests -EXPORT_SYMBOL vmlinux 0xbd591921 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xbd6294fb jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xbd65fea1 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xbd6affbb shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbd922112 dma_release_from_coherent -EXPORT_SYMBOL vmlinux 0xbd951e47 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xbdca5eda ppp_unit_number -EXPORT_SYMBOL vmlinux 0xbdd41bb4 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xbdd4d936 of_translate_address -EXPORT_SYMBOL vmlinux 0xbde41af3 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xbde7cd76 __ip_select_ident -EXPORT_SYMBOL vmlinux 0xbdec4d08 fence_remove_callback -EXPORT_SYMBOL vmlinux 0xbdedb6b2 irq_stat -EXPORT_SYMBOL vmlinux 0xbdfdbda3 path_is_under -EXPORT_SYMBOL vmlinux 0xbe0c7bdd jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp -EXPORT_SYMBOL vmlinux 0xbe115946 snd_ctl_free_one -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe26e104 scsi_dma_map -EXPORT_SYMBOL vmlinux 0xbe482fcf dm_put_device -EXPORT_SYMBOL vmlinux 0xbe50156a devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xbe55ae3c serio_reconnect -EXPORT_SYMBOL vmlinux 0xbe7545df kobject_init -EXPORT_SYMBOL vmlinux 0xbe815740 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0xbe8860a8 dispc_mgr_go_busy -EXPORT_SYMBOL vmlinux 0xbe8fb90c dispc_mgr_get_framedone_irq -EXPORT_SYMBOL vmlinux 0xbe988045 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xbe9b292e of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0xbed190ed sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xbee5e223 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbef5fac7 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xbf0d3ef2 mpage_readpages -EXPORT_SYMBOL vmlinux 0xbf0f2099 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xbf30f8e3 elv_add_request -EXPORT_SYMBOL vmlinux 0xbf312e08 phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0xbf313ebb tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0xbf44a94a dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0xbf45e6e3 tty_mutex -EXPORT_SYMBOL vmlinux 0xbf4dcd88 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf927513 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfb0f9d9 clkdev_alloc -EXPORT_SYMBOL vmlinux 0xbfb6c1ef dev_addr_del -EXPORT_SYMBOL vmlinux 0xbfbe2084 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0xbfccacf3 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0xbfd36ac7 swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0xbfdac810 mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc0056be5 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xc05f17db devm_release_resource -EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc0939df3 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode -EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc -EXPORT_SYMBOL vmlinux 0xc0b2a6ce elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xc0cfe21a netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xc0e99f66 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0xc0fcf473 jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten -EXPORT_SYMBOL vmlinux 0xc121516c bdput -EXPORT_SYMBOL vmlinux 0xc1336084 blk_sync_queue -EXPORT_SYMBOL vmlinux 0xc13af843 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xc152cf3c netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xc157d6f7 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xc1642f3c mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xc1654450 snd_info_free_entry -EXPORT_SYMBOL vmlinux 0xc1677a21 param_get_ushort -EXPORT_SYMBOL vmlinux 0xc16bd78c phy_print_status -EXPORT_SYMBOL vmlinux 0xc1775062 search_binary_handler -EXPORT_SYMBOL vmlinux 0xc188a060 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xc19d3bbc phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xc19d5650 vlan_vid_add -EXPORT_SYMBOL vmlinux 0xc1a23e24 skb_clone_sk -EXPORT_SYMBOL vmlinux 0xc1bf9465 nand_lock -EXPORT_SYMBOL vmlinux 0xc1c5d2fb dev_uc_add -EXPORT_SYMBOL vmlinux 0xc1d47d64 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1de83a0 dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1f83b40 blk_register_region -EXPORT_SYMBOL vmlinux 0xc20a3261 omapdss_output_unset_device -EXPORT_SYMBOL vmlinux 0xc214c3e2 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xc21c48f7 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0xc225786a tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0xc25cce84 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xc26d8909 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0xc2770608 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0xc28559c1 genl_notify -EXPORT_SYMBOL vmlinux 0xc29a1da4 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xc29cc1c0 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xc2a0cbf6 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0xc2a14439 page_readlink -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xc2b4e83f request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0xc2b5dae2 pci_select_bars -EXPORT_SYMBOL vmlinux 0xc2bc1ef6 register_shrinker -EXPORT_SYMBOL vmlinux 0xc2c21851 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xc2d3db81 snd_info_register -EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2f73a61 dev_uc_del -EXPORT_SYMBOL vmlinux 0xc3273037 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xc331c654 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xc338328c bprm_change_interp -EXPORT_SYMBOL vmlinux 0xc341e573 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xc35926b3 try_to_release_page -EXPORT_SYMBOL vmlinux 0xc359fb65 abort -EXPORT_SYMBOL vmlinux 0xc35b72ab ping_prot -EXPORT_SYMBOL vmlinux 0xc36f5426 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xc38d4e2d scm_fp_dup -EXPORT_SYMBOL vmlinux 0xc39787d9 vga_get -EXPORT_SYMBOL vmlinux 0xc39dadcd pagecache_write_begin -EXPORT_SYMBOL vmlinux 0xc39f31c5 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3d470b4 of_phy_attach -EXPORT_SYMBOL vmlinux 0xc3d6e2a8 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xc3dc6df4 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xc3eccbe4 abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xc40946e9 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xc41b48f7 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xc41f0516 node_states -EXPORT_SYMBOL vmlinux 0xc42e4daa register_md_personality -EXPORT_SYMBOL vmlinux 0xc4350ef6 to_nd_btt -EXPORT_SYMBOL vmlinux 0xc43fcd21 bio_copy_kern -EXPORT_SYMBOL vmlinux 0xc44358f1 bio_unmap_user -EXPORT_SYMBOL vmlinux 0xc45ab099 put_filp -EXPORT_SYMBOL vmlinux 0xc486a50a skb_push -EXPORT_SYMBOL vmlinux 0xc48ca027 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xc490c797 edma_filter_fn -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc49aad6f swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xc4a44c15 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xc4c55ac8 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0xc4cc7cb3 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xc4e8f6cb phy_init_hw -EXPORT_SYMBOL vmlinux 0xc5296399 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params -EXPORT_SYMBOL vmlinux 0xc535ef52 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xc5375d00 __break_lease -EXPORT_SYMBOL vmlinux 0xc5386fa1 lwtunnel_input -EXPORT_SYMBOL vmlinux 0xc54a287f blk_init_tags -EXPORT_SYMBOL vmlinux 0xc56aff2a nf_register_hook -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59d3da1 dev_addr_add -EXPORT_SYMBOL vmlinux 0xc5a3f5a4 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc60db386 backlight_device_register -EXPORT_SYMBOL vmlinux 0xc60e7d63 seq_path -EXPORT_SYMBOL vmlinux 0xc619b4f3 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xc620dbf1 blk_put_queue -EXPORT_SYMBOL vmlinux 0xc625f165 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xc627c050 mdiobus_read -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc63df81a of_mm_gpiochip_add -EXPORT_SYMBOL vmlinux 0xc645508c snd_ctl_new1 -EXPORT_SYMBOL vmlinux 0xc6460283 padata_alloc -EXPORT_SYMBOL vmlinux 0xc66bb62b register_console -EXPORT_SYMBOL vmlinux 0xc66fa6a6 ida_remove -EXPORT_SYMBOL vmlinux 0xc67058d6 netif_skb_features -EXPORT_SYMBOL vmlinux 0xc68a9f83 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0xc6b33f32 register_sound_mixer -EXPORT_SYMBOL vmlinux 0xc6b86ee8 security_inode_permission -EXPORT_SYMBOL vmlinux 0xc6c7ea9b __getblk_gfp -EXPORT_SYMBOL vmlinux 0xc6c8bd78 led_blink_set -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d64e90 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xc6dcd12b mapping_tagged -EXPORT_SYMBOL vmlinux 0xc6de77b4 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xc6ee5828 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xc70dea60 lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0xc7139c2f unregister_cdrom -EXPORT_SYMBOL vmlinux 0xc71f7aed mmc_register_driver -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc749dde2 set_cached_acl -EXPORT_SYMBOL vmlinux 0xc751a533 mmc_can_reset -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc75cac7b generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc786fac5 devm_ioremap -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc79e0131 dma_release_declared_memory -EXPORT_SYMBOL vmlinux 0xc7a06332 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7a8fdcd register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xc7ab4086 seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xc7bcbc8d add_wait_queue -EXPORT_SYMBOL vmlinux 0xc7ce5e82 pci_find_bus -EXPORT_SYMBOL vmlinux 0xc7d7a51e inet_csk_accept -EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc7ef62b7 vfs_fsync -EXPORT_SYMBOL vmlinux 0xc804fd97 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xc824220c devm_gpiod_put -EXPORT_SYMBOL vmlinux 0xc825cd48 generic_setlease -EXPORT_SYMBOL vmlinux 0xc8323f9d dcache_dir_close -EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc83ebd39 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc8511ad6 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xc862cf12 __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0xc86c575e inc_nlink -EXPORT_SYMBOL vmlinux 0xc8724a25 proc_set_user -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc87b4278 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8e9cd6e tty_write_room -EXPORT_SYMBOL vmlinux 0xc8f75927 ppp_register_channel -EXPORT_SYMBOL vmlinux 0xc8fd844b devm_gpio_request -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc912b86b vfs_statfs -EXPORT_SYMBOL vmlinux 0xc935cd4b d_path -EXPORT_SYMBOL vmlinux 0xc948405e mount_single -EXPORT_SYMBOL vmlinux 0xc95a75cd blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc98a2ba1 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9bac0b0 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xc9bc7179 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0xc9bfa20e eth_header_parse -EXPORT_SYMBOL vmlinux 0xc9ef45ca csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca133d2c cdev_alloc -EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xca4f302e end_page_writeback -EXPORT_SYMBOL vmlinux 0xca51dc78 dmam_release_declared_memory -EXPORT_SYMBOL vmlinux 0xca8427f0 skb_free_datagram -EXPORT_SYMBOL vmlinux 0xca86ea29 vme_lm_request -EXPORT_SYMBOL vmlinux 0xca92e945 msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcaa8c42b sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xcabdb14a skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xcac14837 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xcae50d99 vc_resize -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb319db4 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xcb3c3349 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xcb3dea45 seq_open -EXPORT_SYMBOL vmlinux 0xcb466063 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0xcb6b28ab tcf_register_action -EXPORT_SYMBOL vmlinux 0xcb9b126e seq_escape -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcbee6439 ida_simple_get -EXPORT_SYMBOL vmlinux 0xcc0c8017 dev_set_mtu -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc50928e fifo_set_limit -EXPORT_SYMBOL vmlinux 0xcc59a1b0 dm_register_target -EXPORT_SYMBOL vmlinux 0xcc704928 up_read -EXPORT_SYMBOL vmlinux 0xcca1c520 abx500_register_ops -EXPORT_SYMBOL vmlinux 0xccb2f14a kobject_get -EXPORT_SYMBOL vmlinux 0xccc14bb6 set_wb_congested -EXPORT_SYMBOL vmlinux 0xccc16676 generic_file_llseek -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccc51feb gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xcce58a55 blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL vmlinux 0xcd211606 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0xcd24242c fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div -EXPORT_SYMBOL vmlinux 0xcd3915a2 serio_open -EXPORT_SYMBOL vmlinux 0xcd5c09f8 dump_emit -EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr -EXPORT_SYMBOL vmlinux 0xcdbbfa18 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc49e19 lockref_get -EXPORT_SYMBOL vmlinux 0xcddd39b5 nd_integrity_init -EXPORT_SYMBOL vmlinux 0xce00b978 do_splice_direct -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce30f482 gen_pool_free -EXPORT_SYMBOL vmlinux 0xce346d8d mark_info_dirty -EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL vmlinux 0xce48a1f0 neigh_table_clear -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce61d72d pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0xce6882c7 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xce994f8f mmc_of_parse -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcec8a710 down_write_trylock -EXPORT_SYMBOL vmlinux 0xced934fb dev_get_flags -EXPORT_SYMBOL vmlinux 0xcedbcdfa snd_jack_set_key -EXPORT_SYMBOL vmlinux 0xceeb0985 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0xceeb663f tcp_splice_read -EXPORT_SYMBOL vmlinux 0xceed7f85 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcefe8f29 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xcf0a5f27 param_ops_int -EXPORT_SYMBOL vmlinux 0xcf10ebc4 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xcf169fea kset_unregister -EXPORT_SYMBOL vmlinux 0xcf1b5492 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL vmlinux 0xcf2c3028 make_bad_inode -EXPORT_SYMBOL vmlinux 0xcf2ffc16 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0xcf620540 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xcf6ff80c may_umount_tree -EXPORT_SYMBOL vmlinux 0xcf7a6a9d param_ops_bool -EXPORT_SYMBOL vmlinux 0xcf7f22fc bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xcf88625f mempool_create_node -EXPORT_SYMBOL vmlinux 0xcf9758ad md_reload_sb -EXPORT_SYMBOL vmlinux 0xcf9a2f20 tty_port_open -EXPORT_SYMBOL vmlinux 0xcfbbe90f nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0xcfbee608 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xcfc0df0a simple_rename -EXPORT_SYMBOL vmlinux 0xcfe4d1ff cros_ec_check_result -EXPORT_SYMBOL vmlinux 0xcfe9e264 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xcff6b676 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0xcff94b36 d_drop -EXPORT_SYMBOL vmlinux 0xcff9c8e0 nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0xd002d47c snd_pcm_hw_param_last -EXPORT_SYMBOL vmlinux 0xd034105f lockref_put_return -EXPORT_SYMBOL vmlinux 0xd037d1c4 ip_defrag -EXPORT_SYMBOL vmlinux 0xd0655827 tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd08839e4 get_fs_type -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd09b2de3 alloc_disk_node -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a4c226 do_map_probe -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0bbbdd8 kmap_high -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd100acbd _raw_write_lock -EXPORT_SYMBOL vmlinux 0xd1067ba7 dispc_ovl_enabled -EXPORT_SYMBOL vmlinux 0xd13627b4 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xd14c5afd scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0xd1511740 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xd15529d3 omap_dss_find_output_by_port_node -EXPORT_SYMBOL vmlinux 0xd15b4a7f generic_file_fsync -EXPORT_SYMBOL vmlinux 0xd169a4c1 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd185217b vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xd1a2f251 skb_seq_read -EXPORT_SYMBOL vmlinux 0xd1b0c443 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xd1c10775 neigh_event_ns -EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xd1d38794 flush_old_exec -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1de566e __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xd1e79cae fence_wait_timeout -EXPORT_SYMBOL vmlinux 0xd1fa6de0 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xd1fdb7cc mmc_power_save_host -EXPORT_SYMBOL vmlinux 0xd225c2ba bio_chain -EXPORT_SYMBOL vmlinux 0xd2433948 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0xd247aa61 udp_seq_open -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd2560ff9 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xd25c3c9c seq_release_private -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd2636a96 seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd26c19af pci_request_regions -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd2976511 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class -EXPORT_SYMBOL vmlinux 0xd2c35ed9 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xd2c832fd nvm_end_io -EXPORT_SYMBOL vmlinux 0xd2d1b0fa inet_release -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2f29632 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xd301c41f mmc_start_req -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd3220164 pci_fixup_device -EXPORT_SYMBOL vmlinux 0xd3378681 udp_set_csum -EXPORT_SYMBOL vmlinux 0xd33887c9 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xd376c39b xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xd37d61e1 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xd3a2f725 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xd3b819db seq_open_private -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3bebe5b skb_make_writable -EXPORT_SYMBOL vmlinux 0xd3ccc4b6 up_write -EXPORT_SYMBOL vmlinux 0xd3dbfbc4 _find_first_zero_bit_le -EXPORT_SYMBOL vmlinux 0xd3de9f9d iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0xd3e64d8c blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xd3e6f60d cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xd3fd1b67 i2c_use_client -EXPORT_SYMBOL vmlinux 0xd408965b shdma_init -EXPORT_SYMBOL vmlinux 0xd40af836 freeze_bdev -EXPORT_SYMBOL vmlinux 0xd4122a96 bio_uncopy_user -EXPORT_SYMBOL vmlinux 0xd4179eb7 amba_driver_register -EXPORT_SYMBOL vmlinux 0xd436e0a9 free_task -EXPORT_SYMBOL vmlinux 0xd461584c mmc_alloc_host -EXPORT_SYMBOL vmlinux 0xd4669fad complete -EXPORT_SYMBOL vmlinux 0xd47c5a4e inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xd48a1fd6 pci_dev_get -EXPORT_SYMBOL vmlinux 0xd498e258 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xd4aa15aa tcp_connect -EXPORT_SYMBOL vmlinux 0xd4b22408 ilookup5 -EXPORT_SYMBOL vmlinux 0xd4b8690f snd_pcm_new_stream -EXPORT_SYMBOL vmlinux 0xd4bcc88e dquot_enable -EXPORT_SYMBOL vmlinux 0xd4ece391 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xd4fe381b flush_signals -EXPORT_SYMBOL vmlinux 0xd51822be nf_log_set -EXPORT_SYMBOL vmlinux 0xd5315f18 ip_getsockopt -EXPORT_SYMBOL vmlinux 0xd538574b alloc_disk -EXPORT_SYMBOL vmlinux 0xd549d76a seq_vprintf -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd55b4360 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xd57676f7 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0xd586600a xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd5c69790 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0xd5d841d2 param_ops_short -EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xd609d2e3 dma_supported -EXPORT_SYMBOL vmlinux 0xd61347c6 register_sysctl -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd6176711 blk_run_queue -EXPORT_SYMBOL vmlinux 0xd627480b strncat -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd63a630e pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xd63f8a71 is_bad_inode -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd64f4cd8 pci_clear_master -EXPORT_SYMBOL vmlinux 0xd6647482 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xd66e1bc0 nvm_register -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd692e250 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0xd6a8a9a6 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xd6a914db mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0xd6c57aee bio_endio -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd723cae2 iget_failed -EXPORT_SYMBOL vmlinux 0xd74289f9 __percpu_counter_add -EXPORT_SYMBOL vmlinux 0xd74c2a75 key_unlink -EXPORT_SYMBOL vmlinux 0xd757f294 generic_fillattr -EXPORT_SYMBOL vmlinux 0xd7595ee8 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xd759b412 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd7689de2 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0xd7722554 set_user_nice -EXPORT_SYMBOL vmlinux 0xd77828ab inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write -EXPORT_SYMBOL vmlinux 0xd7b47a40 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xd7b8c4d4 proc_create_data -EXPORT_SYMBOL vmlinux 0xd7c21447 address_space_init_once -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7e67afd iov_iter_init -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd81ff596 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0xd833056a clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put -EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xd85cd67e __wake_up -EXPORT_SYMBOL vmlinux 0xd86e76ee inet_del_protocol -EXPORT_SYMBOL vmlinux 0xd876a92f in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xd87bdf7f dss_mgr_disconnect -EXPORT_SYMBOL vmlinux 0xd87bff47 kfree_skb_list -EXPORT_SYMBOL vmlinux 0xd882d76e ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xd899cebb remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8af6df4 dma_alloc_from_coherent -EXPORT_SYMBOL vmlinux 0xd8afa33c blk_fetch_request -EXPORT_SYMBOL vmlinux 0xd8b1901a tty_register_driver -EXPORT_SYMBOL vmlinux 0xd8bb3ddb tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0xd8c87c39 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8df7a9a proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xd8e0783e save_mount_options -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8f1efa7 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0xd90a2156 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xd913adac dquot_free_inode -EXPORT_SYMBOL vmlinux 0xd9285187 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xd92bc263 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xd9318b5a ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xd95137b5 find_get_entry -EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack -EXPORT_SYMBOL vmlinux 0xd959b122 led_update_brightness -EXPORT_SYMBOL vmlinux 0xd9766a7d pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xd97edd47 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98d304d nf_register_hooks -EXPORT_SYMBOL vmlinux 0xd995c515 page_address -EXPORT_SYMBOL vmlinux 0xd99d3225 elv_rb_find -EXPORT_SYMBOL vmlinux 0xd9a372e6 pwmss_submodule_state_change -EXPORT_SYMBOL vmlinux 0xd9b8dbb3 sk_stream_write_space -EXPORT_SYMBOL vmlinux 0xd9c53ee1 __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xda07ba7f security_task_getsecid -EXPORT_SYMBOL vmlinux 0xda12bfc5 dss_mgr_set_lcd_config -EXPORT_SYMBOL vmlinux 0xda20e832 pci_release_region -EXPORT_SYMBOL vmlinux 0xda25a3d0 redraw_screen -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda416011 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0xda4be64a kill_block_super -EXPORT_SYMBOL vmlinux 0xda567ff4 snd_pcm_new_internal -EXPORT_SYMBOL vmlinux 0xda5de496 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xda6af5ce rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xda79b962 input_unregister_handler -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda87e3c0 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages -EXPORT_SYMBOL vmlinux 0xdaae5b14 pci_platform_rom -EXPORT_SYMBOL vmlinux 0xdaafc807 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xdab56660 uart_get_divisor -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw -EXPORT_SYMBOL vmlinux 0xdaed9e65 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xdb2491c7 md_error -EXPORT_SYMBOL vmlinux 0xdb3eeff4 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xdb4292e4 omap_set_dma_params -EXPORT_SYMBOL vmlinux 0xdb5354b4 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xdb58cdcf skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0xdb5e448d nf_unregister_hook -EXPORT_SYMBOL vmlinux 0xdb68190d dma_mark_declared_memory_occupied -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6bd200 snd_mixer_oss_notify_callback -EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb815d87 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xdb93b838 dispc_free_irq -EXPORT_SYMBOL vmlinux 0xdba5a03e dcb_getapp -EXPORT_SYMBOL vmlinux 0xdbad1ada blk_rq_init -EXPORT_SYMBOL vmlinux 0xdbb533f3 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xdbb763d5 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xdbd39dcc max8925_set_bits -EXPORT_SYMBOL vmlinux 0xdbfd9b32 nf_reinject -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc05c391 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xdc0f3cf6 dump_align -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc2dcc06 dev_uc_flush -EXPORT_SYMBOL vmlinux 0xdc3f04e1 clk_register_clkdevs -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc5384d3 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xdc5c6297 videomode_to_omap_video_timings -EXPORT_SYMBOL vmlinux 0xdc6969d1 tso_start -EXPORT_SYMBOL vmlinux 0xdc6de3a8 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xdca9606d __dev_get_by_name -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdce78526 inode_needs_sync -EXPORT_SYMBOL vmlinux 0xdcf3a1c0 input_inject_event -EXPORT_SYMBOL vmlinux 0xdcfce02b submit_bio_wait -EXPORT_SYMBOL vmlinux 0xdd0126d1 xfrm_lookup -EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw -EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr -EXPORT_SYMBOL vmlinux 0xdd332ce7 vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0xdd387cfb add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0xdd3916ac _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xdd483830 mutex_trylock -EXPORT_SYMBOL vmlinux 0xdd51a7d3 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xdd628da8 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xdd826604 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xddfc05fc jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xde0629ed generic_ro_fops -EXPORT_SYMBOL vmlinux 0xde385b77 dev_set_group -EXPORT_SYMBOL vmlinux 0xde42049a mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xde43219c page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0xde44a5da d_rehash -EXPORT_SYMBOL vmlinux 0xde5b9a52 fb_set_var -EXPORT_SYMBOL vmlinux 0xde6dd4e0 __quota_error -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde9b0ee3 update_region -EXPORT_SYMBOL vmlinux 0xdea751ff security_inode_init_security -EXPORT_SYMBOL vmlinux 0xdec030e5 arm_clear_user -EXPORT_SYMBOL vmlinux 0xdec2a318 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xded931f3 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0xdee6befa current_fs_time -EXPORT_SYMBOL vmlinux 0xdee9134c napi_gro_frags -EXPORT_SYMBOL vmlinux 0xdf023aa0 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xdf057d04 pagecache_get_page -EXPORT_SYMBOL vmlinux 0xdf06277c set_create_files_as -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf30a1c9 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf3b5cdd snd_info_create_card_entry -EXPORT_SYMBOL vmlinux 0xdf4da8f7 of_n_size_cells -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf6589b9 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0xdf65a81b scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xdf6cdd1d jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xdf7deb22 skb_tx_error -EXPORT_SYMBOL vmlinux 0xdf7eef0a __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xdf88d60f pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0xdf8e039e inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf9e6b52 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0xdfab5790 misc_register -EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init -EXPORT_SYMBOL vmlinux 0xdfd14f55 kmem_cache_free -EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type -EXPORT_SYMBOL vmlinux 0xdfe1215e mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xdfe17d3c jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xe01f8080 input_reset_device -EXPORT_SYMBOL vmlinux 0xe0463a47 mount_bdev -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe051b308 filemap_flush -EXPORT_SYMBOL vmlinux 0xe055ccc5 simple_rmdir -EXPORT_SYMBOL vmlinux 0xe05aa5ef tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe0624ef2 security_path_rename -EXPORT_SYMBOL vmlinux 0xe0666836 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe07a1322 shdma_chan_remove -EXPORT_SYMBOL vmlinux 0xe07d6809 omap_dss_put_device -EXPORT_SYMBOL vmlinux 0xe0806be1 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0cf2079 of_platform_device_create -EXPORT_SYMBOL vmlinux 0xe0d9eb61 eth_mac_addr -EXPORT_SYMBOL vmlinux 0xe0dc75e2 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xe0dcc502 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe127fb18 down_killable -EXPORT_SYMBOL vmlinux 0xe133877e send_sig_info -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe13cbede call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xe15c6847 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe1762d7d netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xe17b6a3d mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0xe1acdafc twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0xe1cf645f __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xe1e16b69 simple_readpage -EXPORT_SYMBOL vmlinux 0xe1e4b6bc __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xe1f0ab3a _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe20d2091 release_sock -EXPORT_SYMBOL vmlinux 0xe211c6de dev_get_iflink -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe2519467 user_path_create -EXPORT_SYMBOL vmlinux 0xe2546b85 vlan_vid_del -EXPORT_SYMBOL vmlinux 0xe259ff40 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0xe261360a __scm_destroy -EXPORT_SYMBOL vmlinux 0xe261821c blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xe2829ca6 inet6_getname -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2a238bc vfs_unlink -EXPORT_SYMBOL vmlinux 0xe2c293b2 abx500_remove_ops -EXPORT_SYMBOL vmlinux 0xe2cc96f7 __do_once_done -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e4a361 of_get_next_parent -EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup -EXPORT_SYMBOL vmlinux 0xe30ea387 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0xe31b3a28 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xe36bf292 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xe37d10ae omap_dispc_unregister_isr -EXPORT_SYMBOL vmlinux 0xe3994cd4 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0xe39f7f34 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3bd19fc block_write_begin -EXPORT_SYMBOL vmlinux 0xe3c52497 of_cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0xe3ce42c5 km_new_mapping -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3f552c5 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xe3fa1512 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xe40179be sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xe413be4a memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0xe4216e52 dquot_release -EXPORT_SYMBOL vmlinux 0xe42b851c pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xe43274bc proc_dointvec -EXPORT_SYMBOL vmlinux 0xe47ad305 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xe48ae9f7 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xe4bc0c3b nf_log_unregister -EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid -EXPORT_SYMBOL vmlinux 0xe4cb0b8c pcie_port_service_register -EXPORT_SYMBOL vmlinux 0xe4d4be71 nf_log_packet -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe5123824 __kernel_write -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe530e07d pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xe546bae6 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xe552860e input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0xe557093d genphy_config_aneg -EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL vmlinux 0xe5744e2a force_sig -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5cfb87b netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xe5db7577 snd_jack_report -EXPORT_SYMBOL vmlinux 0xe5e190a1 filemap_map_pages -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5ef73ea snd_pcm_hw_constraint_integer -EXPORT_SYMBOL vmlinux 0xe5f12d11 tso_count_descs -EXPORT_SYMBOL vmlinux 0xe5f16375 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0xe62fdd9a register_qdisc -EXPORT_SYMBOL vmlinux 0xe65a8ab3 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xe66452ab dql_init -EXPORT_SYMBOL vmlinux 0xe66f3282 input_register_handle -EXPORT_SYMBOL vmlinux 0xe68c84ae deactivate_super -EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe69f813b skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0xe6a21cb9 swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0xe6a33b93 mmc_start_bkops -EXPORT_SYMBOL vmlinux 0xe6b438f1 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xe6ca4938 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xe6cfe935 snd_pcm_suspend -EXPORT_SYMBOL vmlinux 0xe6e13033 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe7075b97 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv -EXPORT_SYMBOL vmlinux 0xe71deffe scsi_print_result -EXPORT_SYMBOL vmlinux 0xe72a11a5 commit_creds -EXPORT_SYMBOL vmlinux 0xe75170d5 single_open -EXPORT_SYMBOL vmlinux 0xe757aeb6 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xe76e7a27 __f_setown -EXPORT_SYMBOL vmlinux 0xe7748c22 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL vmlinux 0xe7907e0c pid_task -EXPORT_SYMBOL vmlinux 0xe790afc3 omap_get_dma_dst_pos -EXPORT_SYMBOL vmlinux 0xe7a3d8b9 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7e15910 dispc_clear_irqstatus -EXPORT_SYMBOL vmlinux 0xe7e5914a filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xe7edf4ea tc_classify -EXPORT_SYMBOL vmlinux 0xe8030dc9 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xe80af32c jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xe81e9797 cdrom_release -EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe833f381 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xe85fb5d6 noop_fsync -EXPORT_SYMBOL vmlinux 0xe8709096 ata_port_printk -EXPORT_SYMBOL vmlinux 0xe875b667 simple_dir_operations -EXPORT_SYMBOL vmlinux 0xe876bb29 param_set_ushort -EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss -EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer -EXPORT_SYMBOL vmlinux 0xe8801e4d inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0xe89ad353 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8cafc1c open_check_o_direct -EXPORT_SYMBOL vmlinux 0xe8d3b5ea uart_register_driver -EXPORT_SYMBOL vmlinux 0xe8e93ab4 register_key_type -EXPORT_SYMBOL vmlinux 0xe8f9de1a generic_end_io_acct -EXPORT_SYMBOL vmlinux 0xe912da6b unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe9379429 blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0xe93ed297 skb_pad -EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0xe9606593 dcache_readdir -EXPORT_SYMBOL vmlinux 0xe979352b elevator_alloc -EXPORT_SYMBOL vmlinux 0xe97cd291 I_BDEV -EXPORT_SYMBOL vmlinux 0xe97f2df1 eth_gro_receive -EXPORT_SYMBOL vmlinux 0xe999b42a tty_unthrottle -EXPORT_SYMBOL vmlinux 0xe99a0dc7 loop_register_transfer -EXPORT_SYMBOL vmlinux 0xe9a0c149 blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0xe9be808d lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xe9ddc6cb kmap_atomic -EXPORT_SYMBOL vmlinux 0xe9e94a6f dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea032811 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea1cc7d0 netlink_capable -EXPORT_SYMBOL vmlinux 0xea1f5b88 samsung_rev -EXPORT_SYMBOL vmlinux 0xea2e514a fib_default_rule_add -EXPORT_SYMBOL vmlinux 0xea3107bb frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xea4bc21a i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xea51f930 tty_unlock -EXPORT_SYMBOL vmlinux 0xea577c54 phy_suspend -EXPORT_SYMBOL vmlinux 0xea62b7ca pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0xea631ab9 ps2_init -EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea87b1b0 serio_close -EXPORT_SYMBOL vmlinux 0xeace3e1a netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0xeaced6bd bio_add_page -EXPORT_SYMBOL vmlinux 0xeae799f4 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl -EXPORT_SYMBOL vmlinux 0xeb1b120e omap_set_dma_write_mode -EXPORT_SYMBOL vmlinux 0xeb1cc2e9 __bread_gfp -EXPORT_SYMBOL vmlinux 0xeb32fe5b __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xeb7fd495 nf_afinfo -EXPORT_SYMBOL vmlinux 0xeb87a1d5 d_obtain_alias -EXPORT_SYMBOL vmlinux 0xeb9a353b pci_get_device -EXPORT_SYMBOL vmlinux 0xeb9dba13 mdiobus_scan -EXPORT_SYMBOL vmlinux 0xeba334d0 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0xebb30bde __sb_end_write -EXPORT_SYMBOL vmlinux 0xebb58d23 pci_pme_active -EXPORT_SYMBOL vmlinux 0xebe3340b kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xebe5f3d8 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xebfda697 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high -EXPORT_SYMBOL vmlinux 0xec03ce4d invalidate_bdev -EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit -EXPORT_SYMBOL vmlinux 0xec1fbfde vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xec283e95 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xec28f31d d_delete -EXPORT_SYMBOL vmlinux 0xec39ab59 lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0xec3cc61a d_prune_aliases -EXPORT_SYMBOL vmlinux 0xec498525 udp_del_offload -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec8fa2e7 input_open_device -EXPORT_SYMBOL vmlinux 0xeca5d679 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xeca9faa6 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0xecb42179 max8998_read_reg -EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xece5e808 snd_pcm_set_ops -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl -EXPORT_SYMBOL vmlinux 0xed0ecf6d remap_pfn_range -EXPORT_SYMBOL vmlinux 0xed1f97a5 generic_write_end -EXPORT_SYMBOL vmlinux 0xed2e286c seq_write -EXPORT_SYMBOL vmlinux 0xed548e19 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed8502bc inet_sendmsg -EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic -EXPORT_SYMBOL vmlinux 0xed9986f6 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xeda42f7d uart_add_one_port -EXPORT_SYMBOL vmlinux 0xedb159a2 omap_dss_get_overlay_manager -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc7f4ec dq_data_lock -EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 -EXPORT_SYMBOL vmlinux 0xeddc82c1 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xeddf0360 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xedfdc038 sock_register -EXPORT_SYMBOL vmlinux 0xee071f7d pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xee115063 of_get_min_tck -EXPORT_SYMBOL vmlinux 0xee2bc2d0 omapdss_is_initialized -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee3cfe9c pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xee46e4fe nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xee6dd67e jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0xee715ef8 lg_global_unlock -EXPORT_SYMBOL vmlinux 0xee73b2bc nd_device_unregister -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee986941 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xee9bcb4d blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xee9c3647 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeae6d0e snd_timer_start -EXPORT_SYMBOL vmlinux 0xeeb7b49b sock_no_bind -EXPORT_SYMBOL vmlinux 0xeec53492 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xeed3635b proc_dostring -EXPORT_SYMBOL vmlinux 0xeeda81a2 tty_port_init -EXPORT_SYMBOL vmlinux 0xeedd2b2d sync_blockdev -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xef0666cd elevator_exit -EXPORT_SYMBOL vmlinux 0xef0f3eb3 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0xef2fdc4f __percpu_counter_init -EXPORT_SYMBOL vmlinux 0xef3a65c4 inet_frag_find -EXPORT_SYMBOL vmlinux 0xef465d5e of_get_address -EXPORT_SYMBOL vmlinux 0xef4d5aec ppp_dev_name -EXPORT_SYMBOL vmlinux 0xef550258 file_update_time -EXPORT_SYMBOL vmlinux 0xef5ee74c keyring_alloc -EXPORT_SYMBOL vmlinux 0xef7ed4d6 km_policy_notify -EXPORT_SYMBOL vmlinux 0xef807155 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL vmlinux 0xefb6b89a pci_dev_driver -EXPORT_SYMBOL vmlinux 0xefbb0ef0 ilookup -EXPORT_SYMBOL vmlinux 0xefcf3143 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefd6cf06 __aeabi_unwind_cpp_pr0 -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefe12241 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xefe87a21 __napi_schedule -EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf00714c4 mmc_fixup_device -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf0212b24 dev_crit -EXPORT_SYMBOL vmlinux 0xf0397e81 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xf03ccca5 pcie_set_mps -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf06c303c omap_video_timings_to_videomode -EXPORT_SYMBOL vmlinux 0xf070cb39 block_commit_write -EXPORT_SYMBOL vmlinux 0xf079ac82 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0xf07c9f30 xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0xf082e7b1 xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0af3aad scsi_register -EXPORT_SYMBOL vmlinux 0xf0e1196d fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0xf0ec0c54 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf0f285a8 pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf12096cd cdev_init -EXPORT_SYMBOL vmlinux 0xf12f4da3 of_get_next_available_child -EXPORT_SYMBOL vmlinux 0xf1403b40 dss_mgr_start_update -EXPORT_SYMBOL vmlinux 0xf141d3e4 dev_alert -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf150d82c datagram_poll -EXPORT_SYMBOL vmlinux 0xf160120b should_remove_suid -EXPORT_SYMBOL vmlinux 0xf1644eca framebuffer_release -EXPORT_SYMBOL vmlinux 0xf16d5d47 vfs_mknod -EXPORT_SYMBOL vmlinux 0xf17989d2 snd_ctl_register_ioctl -EXPORT_SYMBOL vmlinux 0xf1871eae cdrom_open -EXPORT_SYMBOL vmlinux 0xf190dee1 set_groups -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1960ac1 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19bc145 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xf19e9355 cpu_online_mask -EXPORT_SYMBOL vmlinux 0xf1a3861c scsi_host_alloc -EXPORT_SYMBOL vmlinux 0xf1a6f13a d_find_alias -EXPORT_SYMBOL vmlinux 0xf1a81a03 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0xf1da0ca7 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 -EXPORT_SYMBOL vmlinux 0xf1fa65a0 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xf209ffd5 seq_read -EXPORT_SYMBOL vmlinux 0xf20b71b3 proc_set_size -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf21d6225 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf25fbaf4 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0xf2600db8 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xf276a64d xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xf287c1ce of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0xf294c1ca sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xf2a0510f alloc_fcdev -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2be78c4 find_lock_entry -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2f350c3 scsi_add_device -EXPORT_SYMBOL vmlinux 0xf3044a9c of_device_is_compatible -EXPORT_SYMBOL vmlinux 0xf30741af copy_page_to_iter -EXPORT_SYMBOL vmlinux 0xf312c4fd request_key -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf32bbf91 blk_make_request -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf35619b5 dm_unregister_target -EXPORT_SYMBOL vmlinux 0xf357b8ab snd_ctl_replace -EXPORT_SYMBOL vmlinux 0xf35a47b9 inet_addr_type -EXPORT_SYMBOL vmlinux 0xf36c1f10 pps_unregister_source -EXPORT_SYMBOL vmlinux 0xf36db7b2 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0xf377d058 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf38f5482 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xf3911f81 blk_init_queue_node -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xf399697b nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0xf3c060b4 unregister_filesystem -EXPORT_SYMBOL vmlinux 0xf3d92681 udp_add_offload -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3ea5f8d of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xf3ed4c52 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xf3f89689 default_file_splice_read -EXPORT_SYMBOL vmlinux 0xf4039cfc led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xf40da019 neigh_parms_release -EXPORT_SYMBOL vmlinux 0xf41f9a90 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xf4225a3c generic_show_options -EXPORT_SYMBOL vmlinux 0xf429ada3 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0xf4343faf kfree_skb -EXPORT_SYMBOL vmlinux 0xf43eecca netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xf43eeebe filp_open -EXPORT_SYMBOL vmlinux 0xf461bd1e con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xf463e05e of_node_get -EXPORT_SYMBOL vmlinux 0xf4701afc amba_driver_unregister -EXPORT_SYMBOL vmlinux 0xf473ffaf down -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4a7fc6d omapdss_compat_init -EXPORT_SYMBOL vmlinux 0xf4b2871c fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4ce3eb5 __vfs_read -EXPORT_SYMBOL vmlinux 0xf4d2285e mmc_free_host -EXPORT_SYMBOL vmlinux 0xf4da2e26 pci_scan_slot -EXPORT_SYMBOL vmlinux 0xf4e737b4 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf5066a29 tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0xf51f6569 tty_unregister_device -EXPORT_SYMBOL vmlinux 0xf526386b skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf54187b5 register_framebuffer -EXPORT_SYMBOL vmlinux 0xf5514ce0 ioremap_page -EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp -EXPORT_SYMBOL vmlinux 0xf578561b vfs_write -EXPORT_SYMBOL vmlinux 0xf57e5c7b udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xf5823211 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xf5884d9a sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set -EXPORT_SYMBOL vmlinux 0xf5b08dbd dquot_initialize -EXPORT_SYMBOL vmlinux 0xf5bebf8a mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5c47579 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf5edb3f3 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0xf5f8e525 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0xf600cb5f tcp_ioctl -EXPORT_SYMBOL vmlinux 0xf60841d9 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf640d348 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xf6520746 page_symlink -EXPORT_SYMBOL vmlinux 0xf66088db snd_info_create_module_entry -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf67d88ee filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xf67eec4e vfs_readv -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6851d5f register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf69864d1 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0xf6ac7aee dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xf6b0214f of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6c38397 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0xf6c5dcd1 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xf6c69ff7 tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0xf6cd1046 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0xf6d60e05 mb_cache_shrink -EXPORT_SYMBOL vmlinux 0xf6d85f29 snd_device_register -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf7144903 shdma_request_irq -EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb -EXPORT_SYMBOL vmlinux 0xf73915eb xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xf7533388 neigh_seq_next -EXPORT_SYMBOL vmlinux 0xf7564d5b kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf773de0c md_cluster_mod -EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod -EXPORT_SYMBOL vmlinux 0xf7aaeddc ida_init -EXPORT_SYMBOL vmlinux 0xf7cd0ad3 simple_statfs -EXPORT_SYMBOL vmlinux 0xf7e69f7e neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xf7ef391a phy_driver_register -EXPORT_SYMBOL vmlinux 0xf7fd4b08 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf81faf0a scsi_print_command -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf8370aec snd_ctl_unregister_ioctl -EXPORT_SYMBOL vmlinux 0xf8485f81 lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0xf84b70a3 iput -EXPORT_SYMBOL vmlinux 0xf84c7d19 inode_set_flags -EXPORT_SYMBOL vmlinux 0xf8663a5f d_find_any_alias -EXPORT_SYMBOL vmlinux 0xf8792890 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xf88d599a cdev_del -EXPORT_SYMBOL vmlinux 0xf89e8171 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0xf8ac94db get_empty_filp -EXPORT_SYMBOL vmlinux 0xf8de83aa posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0xf8e0139c dss_mgr_connect -EXPORT_SYMBOL vmlinux 0xf8e6e4cb swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0xf8e801d9 tty_name -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf8f017e0 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xf906e196 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0xf9263064 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run -EXPORT_SYMBOL vmlinux 0xf938cd5c phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0xf940ddd2 swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0xf941c279 netdev_update_features -EXPORT_SYMBOL vmlinux 0xf9427374 dispc_request_irq -EXPORT_SYMBOL vmlinux 0xf944ff6a pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xf94bc605 blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0xf9503db6 __vfs_write -EXPORT_SYMBOL vmlinux 0xf959ce4c try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xf96a36da mmc_hw_reset -EXPORT_SYMBOL vmlinux 0xf976e19a con_copy_unimap -EXPORT_SYMBOL vmlinux 0xf9866ea3 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xf99c3e7e snd_timer_global_new -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9b97227 bdgrab -EXPORT_SYMBOL vmlinux 0xf9c2250b xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf -EXPORT_SYMBOL vmlinux 0xf9e8f623 param_get_charp -EXPORT_SYMBOL vmlinux 0xfa10900f elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xfa127f57 migrate_page -EXPORT_SYMBOL vmlinux 0xfa3f86c4 md_integrity_register -EXPORT_SYMBOL vmlinux 0xfa4b68fe of_find_node_by_type -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa5766e9 sync_inode -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa65dc7b sock_release -EXPORT_SYMBOL vmlinux 0xfab055a7 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0xfabc603d dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xfac68eba arm_elf_read_implies_exec -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfaf2bd0b param_get_long -EXPORT_SYMBOL vmlinux 0xfb08f365 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xfb0f2ab3 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0xfb161f45 tty_throttle -EXPORT_SYMBOL vmlinux 0xfb1de485 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xfb28dc91 from_kgid -EXPORT_SYMBOL vmlinux 0xfb3d76ff snd_ctl_find_numid -EXPORT_SYMBOL vmlinux 0xfb664b82 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfb9b7cd1 do_truncate -EXPORT_SYMBOL vmlinux 0xfb9bf536 elevator_change -EXPORT_SYMBOL vmlinux 0xfba9b11d blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbb45f25 scsi_remove_host -EXPORT_SYMBOL vmlinux 0xfbc3fffd __bforget -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbcdfe9f inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0xfbd223cc get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xfbd55407 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc0e8dae mmc_flush_cache -EXPORT_SYMBOL vmlinux 0xfc3908f5 fence_default_wait -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3f1333 tcf_exts_change -EXPORT_SYMBOL vmlinux 0xfc47dd9e scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xfc77531d sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xfc9442a8 qdisc_reset -EXPORT_SYMBOL vmlinux 0xfc94a1be kill_anon_super -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcd3e815 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfce25691 set_posix_acl -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd0065e3 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xfd23a71f __devm_release_region -EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe -EXPORT_SYMBOL vmlinux 0xfd3153d2 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xfd35b876 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xfd5683b9 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0xfd7ce5bd inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xfd8122ca mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfd9e64e3 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfdbf42d3 netif_device_detach -EXPORT_SYMBOL vmlinux 0xfdc6cd15 fb_set_suspend -EXPORT_SYMBOL vmlinux 0xfdd4e7ab vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xfdf20f4b create_empty_buffers -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe076419 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0xfe350191 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xfe40bf95 dss_feat_get_num_ovls -EXPORT_SYMBOL vmlinux 0xfe44405b fsync_bdev -EXPORT_SYMBOL vmlinux 0xfe498ec3 get_super -EXPORT_SYMBOL vmlinux 0xfe4c4b10 inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0xfe4c723b tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xfe4e0cff __scm_send -EXPORT_SYMBOL vmlinux 0xfe5964b5 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe636a0f __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xfe741fe1 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe8e46e0 security_mmap_file -EXPORT_SYMBOL vmlinux 0xfe9ba126 vm_map_ram -EXPORT_SYMBOL vmlinux 0xfea523b5 shdma_chan_filter -EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0xfed42a44 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0xfed6f2c8 snd_pcm_lib_write -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfef4d002 fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0xff1d2ea4 tcf_hash_insert -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff2d9d0d xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL vmlinux 0xff61ca8c km_is_alive -EXPORT_SYMBOL vmlinux 0xff62415c udp_poll -EXPORT_SYMBOL vmlinux 0xff67b37f __lshrdi3 -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xff8cbb1f idr_destroy -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffb1c082 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit -EXPORT_SYMBOL vmlinux 0xffbb7fa2 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xffd2cf99 omap_dss_get_num_overlay_managers -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xfff15ce6 console_stop -EXPORT_SYMBOL vmlinux 0xfff4885b generic_key_instantiate -EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x3b149529 sha1_finup_arm -EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x840ca7ac sha1_update_arm -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x1cbb6271 ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x3ac48f52 ablk_exit -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x789e6bca ablk_init_common -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x8fcffd75 ablk_set_key -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xc9ab917e __ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xcdaea51d ablk_decrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xd5f273f0 ablk_init -EXPORT_SYMBOL_GPL crypto/af_alg 0x0c4e84de af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x31ec8b5c af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x426036a6 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x4a8bf8f9 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x606450c4 af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0x6768654b af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x689a45ca af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x6fd8e1ff af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x719d68cf af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0xbbccdcf2 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xd954ef95 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xec6458bd async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x166373f9 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xff78f2ef async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x29705d56 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x8c351bb3 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4fdb3eb6 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7f6dfd52 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xcff02882 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd01204fd async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x148e0490 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x63477ece async_xor -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x02121b90 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x897a4dfe cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd91c3d41 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x238b0d65 crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x90d03100 crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x06ba1951 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x0c6dff74 cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x22075ac8 cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x27b77006 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x2c930d7f cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x2dd9f9f0 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x4cd03dcf cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x6acc432b cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xe7a864a4 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xeb3613b4 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3106d0fd lrw_crypt -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/mcryptd 0x07c68ab9 mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x326af6ee shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0x60c13a34 mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0x68655189 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0x846d1407 mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0xdd995639 shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0xfbe79662 shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0xfc40bd65 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x42942ffd crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5dd94329 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x7e2cd001 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x9d952e4f crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5e91d34d serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0x50bb4f0e twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0xa9774b31 xts_crypt -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x7282207e __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xabdc7a74 sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x18ae83c3 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x2ffb4354 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x3aefac82 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x770be0cd __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1008100e bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1878354b bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2131b42e bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x256823c9 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2bc81e1f __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x39c3ccfa bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3ac31101 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3df9b7f4 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x43ffdc0a bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4b893693 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4fb7c5fb bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x59bb4a24 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7bd56d96 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7dbf4b23 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7f279e7c bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x88658cbf bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x905e9702 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x94b0e6d0 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9cd9049a bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc7aa73a2 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcc773f60 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdcb92951 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe97ac443 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf2e1b811 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x42af4a8f btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7b7a601a btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x86b3068c btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9686e940 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc8cb29d5 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe609671e btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0040287a btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x125046fc btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1846b017 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1daa4443 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1e01d537 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x486f716a btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4eca3416 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6add4fd5 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xaf60f7a8 btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xea8f7b13 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf2234507 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x087415dc btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x20ed3b1a btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x29a590f4 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5f2b9ebe btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x78d2536e btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa14bd95d btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa719175e btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xab508861 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xafa8f61d btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xedc68710 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfce7543f btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6d017173 qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd1be8114 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xdfc872d3 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x500bb088 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ad28e9c clk_rcg_bypass_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f4159b0 clk_byte2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3b0b58e5 clk_regmap_mux_closest_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4e487b60 qcom_find_src_index -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x53f95e39 clk_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x612214bd clk_edp_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x612fcdee qcom_cc_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x669bd1fd qcom_find_freq -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x67ae803a clk_rcg_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x709d9cf0 clk_pll_configure_sr -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73964fc2 clk_dyn_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x77c457fa qcom_reset_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8515ef29 clk_is_enabled_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x86045d5d qcom_cc_really_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8c4dbdbe clk_branch_simple_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8d53d96e clk_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x90b53166 clk_pll_configure_sr_hpm_lp -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x948a106f clk_enable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x999e1e71 clk_branch2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x99d2c773 clk_rcg2_shared_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9e2e91a1 clk_rcg_bypass2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f6dd9ca clk_disable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaace56b1 clk_rcg_esc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc7994798 clk_branch_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb0c5248 clk_byte_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcd0a83c6 clk_rcg2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd25fd154 clk_rcg_lcc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd2ce2c2c devm_clk_register_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe703bcad clk_pll_vote_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xeb14fbb9 qcom_cc_map -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf1f136dc clk_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf69c2f55 clk_pll_sr2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf93e315f clk_regmap_div_ops -EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x5e32e556 bL_cpufreq_unregister -EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0xf750efd2 bL_cpufreq_register -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x63292973 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9252df6e dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc0129b29 dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xcd33eec4 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf99e3fe1 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x8ad3965b hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xd8a9dd48 hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xf2b48f6b hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x13e9397b edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x15bf564e edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x15c2dc32 edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x15c8981b edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x29172342 edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2adcb2e2 edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x46209067 edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4f6f5552 edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x532bfd05 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x54693f77 edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x56dd1bec edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5dd68d5a edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e130d95 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7280d8ee edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8aedeab9 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x900694e1 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x90337f83 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xce7f78d5 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd180d58c edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdded334e edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf6cf1da6 edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf7d65643 find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfa5ebcae edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0xe342fbf5 get_scpi_ops -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x25037972 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x278f4e36 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2d529325 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x571bd604 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc285ae13 fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd243e23c fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x17b0ea78 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xb56b32bf __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0x50f61152 dw_hdmi_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0xce27012a dw_hdmi_audio_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0xd8fe547b dw_hdmi_audio_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0xeff29889 dw_hdmi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x022f80f6 drm_gem_cma_prime_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0dab9e62 drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x22bd75e5 drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2ee9438d drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3de36e85 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5dac7b98 drm_gem_cma_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5e1be19e drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x61617670 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6a87aa17 drm_gem_cma_prime_vunmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6d5c7aba drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7eeede68 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8fa295c9 drm_gem_cma_prime_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9bfc288f of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb00f9814 drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbc6b2a88 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcd247ad4 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf8880658 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf98561ac drm_gem_cma_describe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfeee47c9 drm_gem_cma_prime_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1148b623 drm_fbdev_cma_fini -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4f57f330 drm_fbdev_cma_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x59b9d46f drm_fb_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb2c912af drm_fbdev_cma_hotplug_event -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc337fd5 drm_fbdev_cma_restore_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf8310753 drm_fb_cma_debugfs_show -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf92c5d40 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x1cfe024a imx_drm_crtc_vblank_get -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x1d65955f imx_drm_encoder_get_mux_id -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x33dd9abf imx_drm_set_bus_format_pins -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x37707c0a imx_drm_crtc_id -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x419b08de imx_drm_handle_vblank -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x5f056ff0 imx_drm_crtc_vblank_put -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x61767092 imx_drm_set_bus_format -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x6c2226f5 imx_drm_encoder_destroy -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x7ab2ea87 imx_drm_encoder_parse_of -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xc6e2ec4c imx_drm_connector_destroy -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xd652b5a4 imx_drm_remove_crtc -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xe6f978eb imx_drm_add_crtc -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchip_drm_vop 0x0e85d69f rockchip_drm_crtc_mode_config -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x001e21a4 rockchip_drm_encoder_get_mux_id -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x2c316abe rockchip_drm_dma_detach_device -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x329f95df rockchip_fb_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xaa4509bc rockchip_unregister_crtc_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xb304b369 rockchip_drm_dma_attach_device -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xca1c557e rockchip_register_crtc_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xaec8eefc ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xf0023839 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xfc063e43 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0087e67a ipu_cpmem_set_yuv_interleaved -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x01c43600 ipu_cpmem_set_yuv_planar_full -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x04f7075a ipu_csi_set_mipi_datatype -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x07e2ba88 ipu_cpmem_set_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x08b051bb ipu_cpmem_set_high_priority -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0a66110a ipu_idmac_channel_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0e42bd95 ipu_csi_set_dest -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0fe7bc36 ipu_idmac_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x118160e1 ipu_ic_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x11d8f100 ipu_stride_to_bytes -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x13952dfe ipu_dmfc_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x15ec2ba5 ipu_di_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x199bd5c8 ipu_dp_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1b90e586 ipu_dc_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1ba497eb ipu_pixelformat_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1ca0ac3c ipu_idmac_select_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e913d9f ipu_csi_get_window -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2424c9a6 ipu_csi_is_interlaced -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f92d651 ipu_ic_task_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f9751b4 ipu_degrees_to_rot_mode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x302aed49 ipu_dc_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x30b6999c ipu_rot_mode_to_degrees -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3166aec7 ipu_dmfc_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x360bae4b ipu_dmfc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3afbb44e ipu_smfc_set_watermark -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3cd51bc6 ipu_module_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3e86ea72 ipu_di_get_num -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x429e2eb4 ipu_module_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x43e87136 ipu_cpmem_zero -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x45d2cabe ipu_cpmem_set_block_mode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4ebfbc68 ipu_cpmem_interlaced_scan -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51475e87 ipu_dmfc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x527f3b94 ipu_smfc_set_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x53de277c ipu_di_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x55576d44 ipu_cpmem_set_yuv_planar -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5eb54316 ipu_idmac_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x60bdf2ec ipu_csi_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x611f0f63 ipu_cpmem_set_image -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x623722e2 ipu_ic_task_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x627c2ee2 ipu_wait_interrupt -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6f2ead39 ipu_idmac_channel_irq -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x703a8339 ipu_csi_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7121bd07 ipu_di_init_sync_panel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x73b8f6ca ipu_cpmem_set_axi_id -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x76302d14 ipu_csi_set_skip_smfc -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x78f9ed08 ipu_idmac_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x869fc805 ipu_cpmem_set_resolution -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x886c35aa ipu_smfc_map_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8c0ee903 ipu_idmac_lock_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x92d3f709 ipu_dp_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x93bdb12b ipu_set_csi_src_mux -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x951a09d5 ipu_csi_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x99a0ef07 ipu_drm_fourcc_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x99c47ab1 ipu_cpmem_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9c335d85 ipu_pixelformat_is_planar -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9cb840ad ipu_dp_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9e6b69c8 ipu_idmac_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9f38e177 ipu_dp_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa4b0cabd ipu_dc_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa579616b ipu_di_adjust_videomode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa60b144b ipu_csi_set_window -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa6200b90 ipu_dp_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa798a231 ipu_srm_dp_sync_update -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96882d8 ipu_ic_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb228bf1e ipu_dp_set_global_alpha -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb5c19387 ipu_idmac_enable_watermark -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb7ab859f ipu_idmac_wait_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb94ca95a ipu_dmfc_init_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbd8b1be2 ipu_idmac_buffer_is_ready -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbfb57b94 ipu_cpmem_set_format_rgb -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc07cf393 ipu_idmac_get_current_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc3c2cdb0 ipu_smfc_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4291179 ipu_set_ic_src_mux -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc52818e9 ipu_idmac_clear_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc6675aa9 ipu_csi_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc677177d ipu_smfc_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc848c5d7 ipu_dmfc_free_bandwidth -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc88d89a1 ipu_mbus_code_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc97e7a0f ipu_di_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcaaa7ca3 ipu_cpmem_set_stride -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd7c6998 ipu_ic_task_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd064a453 ipu_ic_task_graphics_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd4141e83 ipu_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd5055dd9 ipu_dmfc_alloc_bandwidth -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd6941e42 ipu_smfc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd6a7c1a8 ipu_di_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd716ec23 ipu_cpmem_set_rotation -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdfe31656 ipu_idmac_set_double_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe1ff2191 ipu_ic_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe300a959 ipu_dp_setup_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe3b86336 ipu_csi_init_interface -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe48f2f5e ipu_cpmem_set_fmt -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe4e02695 ipu_cpmem_set_format_passthrough -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe6243c52 ipu_dc_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf2c20949 ipu_cpmem_set_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf69d6cb6 ipu_csi_set_test_generator -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf7d99d69 ipu_dc_init_sync -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf9313cda ipu_map_irq -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf9ed222e ipu_dp_set_window_pos -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfdcb7676 ipu_dc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfdf0115e ipu_ic_task_idma_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0298f4b5 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x02c2c52d hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1227ae86 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1367e134 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x13ce55b0 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1ae96950 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2df9846b hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f6321c4 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x31192de7 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x328d50a1 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x413c2b30 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a045aad hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5d55ab37 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5de04d69 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5e2181d4 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x60e90669 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x64028ff0 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6b57f9e1 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7aa04f5a __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c2114c9 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x893e4db3 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9d983ed1 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa1efc72b hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa6a796f1 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa82ce4c4 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xaff08230 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb332b95c hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb4e821be hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb65f7321 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc4e76610 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc7534012 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc966b3d2 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd1ed8b85 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe8b04a00 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xeb1f4874 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd6e8fea hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x36d4f672 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x60795be3 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb62e9423 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb6b38cd0 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xcc90f543 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd99ac069 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xec151778 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x060cdda8 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x39059e37 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3bf04555 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x49b93194 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5de56b4f sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9d0dedf2 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb1229c92 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcb4b87ef sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xeda241c4 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x7ce53fe4 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2ce9f613 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x42775fc4 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x515f8214 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5b2887ea hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5b9a59ef hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6473bd73 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6efbb23b hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x70bf66e6 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9ebbf59a hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xac7e7992 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb067d82b hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb839feae hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc2217bc5 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc9fda7a4 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe61e99e8 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf0c4a362 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf9dfebf8 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfe5fbeaa hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xf62058a5 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xfd5e8c31 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xfe685e46 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x09f7d3a3 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x140dcd8c pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1ce98fb2 pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2e1285dc pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x40cb5c12 pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x45481ac2 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4b47848c pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x59270db8 pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5b0018a6 pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8fdf8458 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa0fa2e7f pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb663dd07 pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc46a12fb pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xca1e431f pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf8e52362 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x0f5a74bb hwspin_lock_unregister -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x3dc1b54e hwspin_lock_free -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x4d73a0e3 hwspin_lock_register -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x55b14622 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x73a5bff6 __hwspin_unlock -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x76829e1a hwspin_lock_request_specific -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xa36e6a43 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xa81858a9 __hwspin_trylock -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xb793bd01 hwspin_lock_request -EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xbe253edc hwspin_lock_get_id -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x144136bd intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2a37dce5 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4030b3d8 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x405c4a67 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7adbfcca intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc583eae3 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xed972810 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x192e37ca stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6ab899f4 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9b3cfccc stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa28806ba stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xecfcf56a stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x4ac30e5f i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xa093ad2d i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xbefee348 i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xd7f5db08 i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xe467623c i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x365ccc6d i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7d7b3ba0 i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x13e7e9dd i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xe3c8f05c i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x2d259cf0 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd067a39d bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd65126ac bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2f38cf7a ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3e7a883d ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x437f238d ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5f2760c2 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9d046150 ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa89364aa ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc6ec517e ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd149e713 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe7e77c4b ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a5b11d5 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x8c635970 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x11b100ee ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x8cd32a51 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x3b48574e bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa22eb738 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xcbcfe8b3 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1dc5d09b adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2afc6ee5 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2f88e440 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x399e8821 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4903ef7b adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4c3bffc6 adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x714c0da9 adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x73cdbae7 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7cfc18c6 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x980cb1bc adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc085e019 adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc52a2bc4 adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0150b04c iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x16971480 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1b5c41f2 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1cca1873 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x220f7926 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x25afd436 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2c5d80e4 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2c96910c iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x391d1d9c iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3d0fd8fe devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x462ca0ac iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x475f30da iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5c5d8126 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x74289419 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ad294a2 iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7f17befa iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x82062204 devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8848e738 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x88684d24 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x949a3e79 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3404836 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb23bb197 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc804e8e6 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8fb36e7 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd6a3ec40 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd6e782bb iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xec41131a iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf34c0f0d iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf7d40d2f iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc6ffdba iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfd3e37f3 devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x1bce412e input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x16b9b377 matrix_keypad_parse_of_params -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x5d07923d adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x45b78b34 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x98936f09 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xfcceaa94 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x7f96a316 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x9e7cc5c4 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf7198c97 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x1dfb2dec cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xe6233298 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0bc41e4c tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2703c33c tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4fe54f49 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd767debd tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x15a7176e wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x44f58918 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x460efeba wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5fd7f234 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x69aca89c wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6ecca03d wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8aa4fe24 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x971ae37e wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xacae50b9 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb5e9d309 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbacc2476 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf059e0af wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0d36ae39 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x50f8065f ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x64125899 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6d46e284 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x83035269 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9960c8ee ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc17e6a99 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc4651205 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcfa851b2 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0e107fb5 gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2a072f42 gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x35872f78 gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x55c70862 gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x596fd790 gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5b937d33 gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5cf97d8f gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7a9e06a5 gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7aa52816 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8ee9eea9 gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8f71f576 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcbea6807 gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd655420b gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe3033f52 gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe31fa28c gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf4dba4b8 gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf7afaca7 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4f6dac77 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x70ccb833 led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7a508eaa led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x8ab24b78 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb4c637d7 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbf4da3c8 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x27a39426 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x40fb8a78 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4ab215c7 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x810b9f6e lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x85ebc1b1 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8a99a777 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa766a7f2 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xad1cc5be lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcc35556f lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd3e5ddfd lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdb7e3dff lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x075cca2f mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1eddc4e3 mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x32913647 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4b77e98c mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x79129f2f __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x80ce730e mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb60f8d43 mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc868817d mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd613c84f chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd8abee62 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe53436e8 mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf80ebaec mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf891148f mcb_device_register -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06628c2f __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06b11706 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x07e2c777 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0b1ed8cb __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1683a5f6 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16c3fa29 __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16c8cc13 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x18d1988c __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2061620b __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x230dd380 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29a4c5fd __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b277945 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ee17aab __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x402d6200 __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x49c216ec __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d1e9f82 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7930d50e __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7d597e2d __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8461608d __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84e60671 __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92d61794 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9415be3c __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad2d4ca2 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb21fadc0 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb364194a __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbe406c76 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc72008a2 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd6d1aa5e __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc24ee1e __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcc8ed24 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xffd8c38e __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0928db49 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x250ca999 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3df64d0f dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x60110c2b dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x628683f7 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x64d68796 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7ae5c1cd dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd5d84d1a dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf9e683db dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x953a74dd dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x382cfe11 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x403f4514 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x53830e0f dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6620f73f dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6b119468 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc0a4648f dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf77b7858 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xe31fea57 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xf4ae5a3e dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3e9e7c3c dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x48250948 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8f0d2afa dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd46cd5f0 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf1c320cb dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xff764d5a dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x809d7471 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2507774 dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3a42986d saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x444a4308 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x688667c1 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x78c088fd saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8651949b saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc9ba4a9a saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3932645 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe95b1a25 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfc662083 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfca2b8bb saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x049dd658 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x18477a06 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x87389f87 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8f1ebad5 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb6e03309 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe00bd454 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf026d8ce saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x008c1b92 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0b1a27ed smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x14a85bfb smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x154218e2 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5a77be3f smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5b4a282f smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x82296318 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8c028c8a smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8f88ddfc smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x97eebbaf smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa0351a3f smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa662db50 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa7fa11c0 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc2923d82 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xea9676ac smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfbb7e907 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfc533858 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x86a4e167 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x6c3e5fc2 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xe53604b8 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x04c98f5e media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0x192882da __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0x1c97c811 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0x2d4e7be6 media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0x52e91c22 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0x536b859c media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0x59841afa media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0x635d22cb media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0x834208ab media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0x8461fb58 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x8be845dd media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0xa321cf35 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0xa7ab57c8 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0xb3779a69 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xd5962b79 media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0xdabcf9ab media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0xeec1e07a media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0xfcc4ed18 media_entity_init -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x5963fdd0 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x04415c34 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x08a29726 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0b82f284 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0bbff103 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x109d00bf mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1892261c mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x32b6731a mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x34b77e09 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4527ee66 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x64c9c767 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x753b702f mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa6ae4943 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb32e4604 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb37a659c mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbb9232b5 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc7ed1738 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe7c8fb11 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf1ce4def mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf248f456 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1f52105e saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x31b54e21 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x48c4e75d saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5b0b5ee7 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6f4d713d saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x719ef98b saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x726b2f56 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7eaafceb saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x895a962d saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x89aba0f5 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8ba20b91 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8c5f5686 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x91709c73 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x98730fb7 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa2f5c326 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xab85fb98 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb72b4fab saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xeaed6440 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf3fa1f5c saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x03302aa0 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x302d1305 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x36825b87 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5450d5a3 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x783cddee ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9c06967f ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9dbc586f ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0357a80f xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x1a5b8d96 xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2f89f7fb xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x443a676f xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x6996251c xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd4612684 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfea157c1 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x7490eaf2 xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xc8ddb1b0 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xfe08dffc radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x258791f1 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x26f2be9d rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x327d26ab rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x33585171 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x47850841 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x73acdf15 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7408a819 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7a5bdc7f rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8819b291 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc123f401 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xca9ea515 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcd7b0bba rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcf3862bc ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd8ac2a19 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1d16e58 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe2d85bb2 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xea429170 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf41fde4a ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf4ee1fd0 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x5693bac4 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xb5dda0a6 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x60e81ed0 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x8f74139a r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x7b5d5c9c tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xab397b5d tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x2a4c53c7 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x5061e4f9 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xc287396c tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc05a190f tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xca792778 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x527b2d58 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x8f3e548a tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x8031c036 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x03cd533a cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1dab4285 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x232f5519 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x29bcaf7c cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2d5aaa75 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3684e145 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3c6c8ded cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x45b56c5c cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x60bcfa2f cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x78c68729 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x85a6d868 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x864e73b9 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa8f06cfb cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb2a52033 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb2dae5e6 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcb39c4df cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdb4b8482 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf690ce70 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf6b2ed68 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf6e3e583 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x662f2e6a mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xb0623345 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x02e0962f em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0be30983 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x35cc5e18 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3a3eb5f2 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x512ae12f em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x63dffe8f em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x64f8c550 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6ffc0fe7 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x70359412 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x757a83fe em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x851b8f2a em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x87699d15 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa0ac3fb9 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaad26484 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc23cc3ce em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd2375716 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdb79f9d6 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe9332f39 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x57aee0bc tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x654dae48 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x8b8ac120 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xb5ef6a7d tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x06f1e911 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x11094f60 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x752be841 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7581cf1e v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x97a93b76 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa5b594c0 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x8bdb1987 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xbeaacdf3 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x06a8b28d v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0c69aee7 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x136b83fe v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x298f7bb9 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a4f8843 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3065eb46 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3454d2df v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x444e0502 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4e9bd2c7 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x59d85988 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5c1500d3 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5cb095ea v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x73acb468 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7471b455 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x98d9a605 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xafb0643e v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb8fe0bc3 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbb00efdf v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc2198056 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc2225692 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcb8b1766 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcee76bd9 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcf3b157e v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcffffac4 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd734836f v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeb9b5dbb v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfba8461c v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x068b4037 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1574259d videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1af5b9e1 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1fb47a69 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x202dfdf8 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x26834ef7 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x292a5011 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x38541c3c videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x47095f1b videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4e4de2e9 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5616fb68 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x66f5fc30 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x73f5436b videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8fe9542e videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x94714f23 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x997fa72c videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9e2513c9 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb5a90682 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb64b6062 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc76cedc4 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcd543260 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd07d603b videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdf322965 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf0082ee8 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x4ad8d73f videobuf_to_dma_contig -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x6bbbead8 videobuf_dma_contig_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xa921b1f8 videobuf_queue_dma_contig_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x33e45e8f videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x65855d72 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x702a15cd videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa01bb9ff videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x43cb18d2 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x530cde70 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x87f73dad videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x093db81a vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0e52a679 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x13a8c0f9 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x155d12dd vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x160bf8a8 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1a7fc9a9 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2eecae29 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x50667983 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x567cff99 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5ed5c6c7 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x767b639d vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x792af42e vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9a1dc74b vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd1a4f43b vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd740ba02 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe611f76f vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe780131e vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfe23b972 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x53f34f25 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xdfef28f9 vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xb6969cf3 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xdf0e56cb vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0xa7ac61a8 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x09470a54 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0f5eca96 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x16eb8b18 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x194f9d08 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x196b1b86 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1cae2ab8 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x22006f44 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2434ec25 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x31a8b34d vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x45eb2151 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4d227a4a vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4fb1694e vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6202bb86 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6a3b5631 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6ff752a2 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x87f6af40 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x88654e78 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8a328044 vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8dde3ff1 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8fd10fdc vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa2537ea6 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa91ee250 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xafea1f6a vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb0317030 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb574afba vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbae07d13 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xce048894 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe1b7d2cf vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe3a44dd7 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe8f69b46 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xec4cbbcd vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf24ec3c7 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x5ddf4f07 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x023992ae __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x047aef57 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x189a3a75 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28e17901 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2cc44a7e v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f828290 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x336a7018 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x400ff708 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47c1260f __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x60d147eb v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x648763b9 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x658b6c2a v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65f49885 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x676e0d48 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x73696e7a v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x77bdcf66 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fa6583a v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x85410f79 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8626e88a v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8bd7a9ae v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x943bc9da v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a4042e3 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab06e74e __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb5439ae v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc45ea521 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc7710779 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3dd4a6e v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd58a6692 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8b26023 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9d69cce __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0e83c69 __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe53ae0aa __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2600b76 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5f7c975 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf95d2039 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff210da8 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xacd21247 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xaf13de62 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xdc71c9c2 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x11d5a675 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1df60264 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1e81e2dc da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x698502d7 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xbe0d40cd da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc6bff5ef da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd0b6adf6 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x086e2f7a kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x315c1cd4 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3b007696 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5b4be54a kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6422a3ca kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x946534f7 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb3b09a67 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcee7bdb2 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x0edae408 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x84e3fb58 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc25a030d lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1f84916c lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2bc41b7c lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x39ea940a lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5fb1fff6 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8002ec34 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xab955b08 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf7d83300 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0050e236 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x2f6c04c9 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc0179e64 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x00b37157 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x034621d0 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x40093a77 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5206cf1f mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xbee48d0a mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe746dac8 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0470bd14 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6a607483 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x76f5723a pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x95934d4b pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9e54792e pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa8b35630 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc1ee6551 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd53ef623 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd6bb24fa pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd74c82cb pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd758852e pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x2a59d8c9 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x9eae0d70 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2a91df11 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x799286c5 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7c7cd503 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc1eb7544 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xec0a8a83 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0a49f370 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2c8b65e5 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2f082d0c rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2f3bd31e rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x33d78cf8 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3429348f rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x342cbf5a rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3accb31f rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5f83e704 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x70dd7520 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7c6c5b03 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa4109be7 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa4340418 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa999f159 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xac21a63d rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xadee32a2 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb2cb49d4 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb6aaf3f1 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbeb501b8 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcc6e49e6 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xda805ef5 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe2e4f71f rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xef75038c rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf38547a5 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x10c5f28e rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1f1eccef rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2a0bfbd1 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2a7a4754 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4b9cbfc5 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4d39c30c rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x53976ee3 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5987168e rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa69ccfd6 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb9433041 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc133520f rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe894853f rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xfaadbcda rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x01c15913 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0308b29e si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x05c31fe5 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0851975c si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0ffc87b6 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x10d674c2 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x18af5482 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x198e4751 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x34b02781 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x39a4c88a si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4f41e7f8 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x56165b17 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5fe83fd7 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x660feb8b devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x67e464e6 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x69bfc9b3 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6b441caa si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x70f6e2d7 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x71b96871 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x79c54999 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7c46a699 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9ffcda79 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa637579f si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa64ccf16 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xac7603d4 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb10ca519 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbff57f74 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc4e489ec si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcc719453 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcd95565c si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe5db92a9 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeb92911e si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf4283fcb si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfa695e2f si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x261541aa ssbi_read -EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xf9dea623 ssbi_write -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7e6ba63c am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb3d5af16 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xbdb97058 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd7d26728 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x073b71c4 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x5359a405 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x96fa273b tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x99744675 tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x04a72e3c ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x62b21c14 bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x850fc134 bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xf0024eaa bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xf319b0cb bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1fee0983 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x3b25c82e cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9cd29d80 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xdbc0f753 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x040cd9be enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x215484cd enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x21e94eac enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4f30421d enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x89b646c6 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa966d536 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe6233bd5 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf34b2260 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x010e2876 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x235ac634 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x375dfc39 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3bad779d lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5afa3484 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6264f846 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8f9a9da9 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xaaba12ea lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x98206a1e st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xee4aba47 st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x1521299c dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x1c9e0c98 dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x8bbba274 dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x5a94b1a9 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x98a3b1d7 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xa78a943f cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3c7e8388 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x422cc858 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb1d507de cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x29d9604c cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x342e6064 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x87d6d035 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe4f506ad cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x29d67757 brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xa42a6f56 brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xe92810e1 brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xa82b5c21 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x6188d54c onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xb2405d51 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xf5b467c9 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x020ef41c ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0a180d6d ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0c0987ab ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0d22c491 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x157f8495 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x477b1a6c ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5575d4ce ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6292974e ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x65476739 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa1620489 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb73304fb ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe22a0326 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe46b49b0 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfb3899b3 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x0efd38b7 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xe75f29f9 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x343142c6 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5a14fe7d c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x902ca1d6 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb687c4ad c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdfd8a5e5 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf02a3b9a unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x029519a9 devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x079cb91b close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0d3dbeb3 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x21f75507 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2f1d7d85 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x41bcbf6b register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4fafbca7 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x58270d8f alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5b33924c alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5d73afe4 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5f390ee6 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6283d6c1 can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa1c39212 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xaeb1da67 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc2d4466a can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xda3214a7 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdf18f72d alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfa574ec0 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2f9d0480 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4b08990d unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x6002a5df alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xeecbc39d free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7ee913ed free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x841684de unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x8485e9b4 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x91121e7f alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x1bc56a6e arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xf7747e28 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00be1007 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00fb47c0 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07eb72d6 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a735ae9 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d76116b mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e830274 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ff51a75 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x103ad4cb mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1482c482 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1494753e mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x171856ff mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18d287df mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19f46070 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ed6700c mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22748a43 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22828ec7 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x249eef29 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x270be5af mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27cbafac mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x282a0d10 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a113a4e mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a11cebb __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x308b5bee mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x320bb917 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3460d725 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34b40d4e mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x359c1b7e __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a09632f mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bb0fffc mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c33a186 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c458507 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d32427a mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41851841 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4376a37e mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43ab9e90 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44363e50 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45bf4d78 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x462be51e mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x468cf62d mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49436fa2 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c8931f6 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4db72016 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e0dafa1 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e34fc14 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f7f696d mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x517679a5 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56e866be mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bc85f27 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c26de62 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64d9420a mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65ce5e55 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x661494c4 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x699a4a4f mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d932e77 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71d1a6f2 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7280f901 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x735aec43 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74a394e5 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75acb957 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d7d6e1b mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d8bd2b6 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84820a2c mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85806ffa mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87dacd43 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88e12786 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89d4d968 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d429080 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ea204bd mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f48e595 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f5e1511 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f881c74 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x906e54c6 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95508d08 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95b8e33a mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x966b21eb mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b07c6df mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bcb6461 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cd0824d mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e3b479f mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ec0a5d9 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa119b01d mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa32c2c5a mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa70b801d mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7ea3189 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa88b20eb mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf56bd4d mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb096878d mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3cad69e mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb567fffb mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6926d01 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7441edb mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbab5a25e mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb3e5a2a mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb5630cd mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc00caa7 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdf2b324 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0d465ef mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc487ac85 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4c6bc53 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc55d5d62 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7f89ccc mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1261c9f mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd177f22f mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd527f828 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd669ba89 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd829ce7d mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd87df202 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddc95384 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdef88723 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf05609a mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf29559e mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf3410c7 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0c4771d mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5cca893 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe77d3cb1 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe89d2faa mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeaee6594 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeba52633 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebbaa8d2 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf07e6926 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf420dd42 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4a4e4e9 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf744ee9b mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb711804 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x043c0234 mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a48e8d3 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bb4f3f2 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x207677e4 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2095bb52 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2806a333 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x323088d7 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x328b8257 mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b16d9b9 mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46b1061a mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f0c6e7c mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x528f77d8 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5427fbd6 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x565482f3 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c9d3028 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x663a55f0 mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ceb6e0f mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7685df82 mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7767b186 mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77986422 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a23f822 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96b224bb mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x996e31d6 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a1800bb mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9aa5cfdc mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fc4ae84 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa15639f0 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa37e181b mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa484cce9 mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7af141a mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7dc4f5e mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad8bf99a mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc22eba75 mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc81fadbc mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2192e0d mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9d94e69 mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf6a445d mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0723b8d mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe36f9354 mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef6fecd0 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef7eb971 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1a83b78 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf517d779 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf643a755 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfde68272 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xc0b01d03 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4d5b06c2 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6ffc5dc3 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x807c7ee5 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb54275db stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7cce8e7f stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8f7a0d3a stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa57ed2ab stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb35ffdd5 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/geneve 0x90294032 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/geneve 0xc27661ad geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4944ec57 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc82f1a94 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xebd0da6b macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xefd3b6eb macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x5509ba6e macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0c4659b5 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x12c22f3c bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x61cd80ec bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6f6aee56 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7337c754 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8caad0cc bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb7bf2af8 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xca369b11 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe855a18f bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfce49af3 bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x13552c4d mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2948c627 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xcbadc815 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xeb938dfa usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xffed9f14 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x14de7d60 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4ff7c1f4 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x51f899db cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x764afb42 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7bd826c2 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x935216dc cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd0d47d24 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd3d318c5 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xef391dc1 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0e775335 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x437119ca rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4d0f1cbd rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa3443725 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xacbecb82 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfcc1835d rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0243dc64 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x05185365 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x083fe9bd usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0b20ce08 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1283a485 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x18054bd0 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x254e88d0 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x28da0486 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f78f667 usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x44793291 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4caa2a9f usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4fbd3a62 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4ffd5ae3 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x53e1df3a usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5dd9bd3a usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x67748f95 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6b624dbd usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7687ddf2 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x78a77f34 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x865d451a usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa813fa1d usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb5ecc3d9 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbc6f7432 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc3121a98 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc72f00a0 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcff92fd5 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd2783f72 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd751039b usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdf77ae65 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf237ebb0 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf84b7a75 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfdd2eb4c usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x2f0e77f5 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x4062d4a7 vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0f8edf21 i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x122ed028 i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x178f41f7 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2b15ae5e i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x394a888d i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x63c8f121 i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb3dc969a i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbdcc3558 i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd7000d0b i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdd270335 i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe429c0f4 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe8a0219f i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xed43bab5 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xedc73f40 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf1e775ba i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfbf65825 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x5cd16355 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x714f55ff cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xdbb0b7c3 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xff86725b cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x469b7c23 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x1d9ea786 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x306c8972 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x4c33b8e7 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x716ebf22 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xbf61f0fd il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x11619a5e iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x16474139 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x194202ee iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x19d04188 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1c3a9d2b iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x47b12910 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x49b542fb iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4dfbb7b9 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5385f2db __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5a10d898 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5a212a2b __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7160e1d0 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7d395a5f iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7defa547 iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7f8d6d5e iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8b9504e0 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8c812188 iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x95883ae7 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x980337fe iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9951ced3 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9bf16097 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9c77eed0 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa98a7702 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xac85c619 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb0f165eb iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbb8ccc52 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc60ea6fd iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd92aef5f iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe29bd81e iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe7c36a43 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfe732180 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x01969260 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1f6fbc9a lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x267b499d lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2e715c58 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x42ca0db7 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5817ac16 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x68b0b088 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x995d19c1 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9b3096d5 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdbb7f21b lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdf90b549 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe8b11912 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf1be0854 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf6b565cf lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf804dc14 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfd4c1dae lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x45d2d6bf __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4cf862f2 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x543b7ff4 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x646f99fb lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa9a10648 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc6fb83ff lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xca8895f7 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xd0355cdc lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x108aad84 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x156b1b24 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1c1f29b2 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x301a377f mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4cb741e4 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5814c028 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x73000466 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x79779864 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x79e20425 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x93e3f8bf mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9c7a5a25 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9d6921c0 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa25e53b2 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb64af626 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc6183942 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc9a72d6d mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd3558748 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdc01b33c mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xed5adee7 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x15f7a72e p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3787491e p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3d453291 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7545c852 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd3d7e35b p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd7a39777 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xdd2a05c4 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xe7d120d5 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf9fc6ea9 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1626b8f3 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d2fdcce dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9ea23f88 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf3e9fa0 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x01e8b023 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0367ca47 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x04aa28e7 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1b7b4754 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1bd50dfb rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x21791c72 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x25eaeb4d rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x26537b76 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x312520d5 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x47cefff2 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4fbf75e3 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5457aac3 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x550aa0af rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5bc4c20a rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5c730252 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6d583fae rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x932b6fb2 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa00db31f rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb5d03be4 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd6b31de2 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdeef2e7a rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdf95608e rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe18172d6 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeaac3b75 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfb5d4cdd rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfc15de95 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xffa90431 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1568f038 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x16847654 rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d882d91 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x387f42b5 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x49547ff6 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53cefc0b rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5af05cbe rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e28235e rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e999d03 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5fcc1c8d rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x85ebeb09 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8801c9c3 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94050737 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9a9c0b30 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb740bbf0 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc7891c7c rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8552197 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9169e32 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfcffde43 rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff15a9ce rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x011b8947 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x08583ab6 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x211e797b rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x62108e3e rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x05080b57 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0ccae030 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0cf5b798 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x111d3ad1 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1e190bb4 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x23cff977 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2fe66e51 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x396ce0a5 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3c2c3898 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3c4c0b1a rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3c94bdf1 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3e3f8c2a rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4577438b rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4dca0f54 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x59d6ed6a rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x657d2f6e rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x70dc3d59 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x711890a6 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7164ba02 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x791a9051 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7eb1a822 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x817ad34e rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8781efcb rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8907719f rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9984878d rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa645879c rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa6c0370d rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xab11bb35 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc3637b4b rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcb64bec6 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xccf397a4 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcea816d7 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd53e2b89 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdeff4f4b rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe51c357a rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xecdf7390 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xee716a90 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfbd45ff1 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x045b9459 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0eaf1072 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4773619b rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5424f125 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5733c36f rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x589d8dd3 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7f0773c5 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xac6e0b60 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbd71d261 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xda38131d rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe3885c0d rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe43048c7 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf1643be0 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x04f09b87 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0a5c2d71 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0cda41fa rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1033a4e8 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x123344a6 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x15b6e877 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1699649b rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1d6440ab rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2b9755b1 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2c8c6650 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x334a918d rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x35746769 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x35a6bc9b rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x38398a80 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x38914450 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3c6078b1 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x54d0928f rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5652dd58 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x638322c3 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6a8fd482 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6be5b9cb rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6c6c97a7 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x76a4f3e0 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x82ee3116 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x882b4eb2 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x90573587 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x91517199 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9a771b67 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa95c4a46 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb407a46b rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbc17c306 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbdd9eeff rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc0b281c0 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd3243687 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd38b5af1 rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdb053b37 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe82924da rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe95e8ae0 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe98bf291 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xea10cc49 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf0f342ee rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf1834aae rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf2e895a4 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf3d80fb0 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf8379138 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xff69538f rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x236c1eda rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x4fae52bf rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x7f273953 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xa46c3679 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe006bb5f rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x43cde7bf rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x56a5a7a7 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x79077894 rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x859f8753 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1bbb31d3 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x21d90384 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2c1e2129 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x353a8195 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x447c006b rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x493133ed rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x529a05a2 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x54a502fc rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x62ad2e2a rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x74ce44b4 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9871fdda rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xcd3c79b6 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xcfb2a30d rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd543b4c8 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdf935f31 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfab99931 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x4d786bd3 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x60de283a wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xcacaa9be wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x001603b0 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00855145 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x03c051d1 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0e2e1d19 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x227183f9 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2476c4b1 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2a8e214d wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x367d88d2 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f37e137 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4c6f7e36 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d283239 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4f5d09d8 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x52c1118c wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5af3fd6c wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f256426 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f5b2c18 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7928ce69 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7b872b59 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x800a7119 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x822303b9 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8a02f073 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8ab833af wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8b5ff609 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x914609a4 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9279f3a0 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9fd21c9e wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa26dbd04 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa7bbe0ae wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbf979adb wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc5948250 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc8a0f38a wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xca8b61f6 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xced0ad91 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd2731d44 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd2c9d5b2 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdd585bc9 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe1d14d71 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe3f3e1e6 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe6e7a446 wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeaf6beec wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeb938941 wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf32e3357 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfad85a0a wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfaf46113 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x18de6db3 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x29a9f1e4 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2d54a8bc nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x971de1a1 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x36a2d2d1 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3cfa15b6 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4ceeccfb st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x50bf279e st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6cf7f718 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x977b6bf2 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf2265b36 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xfdcf8bb8 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x86cf3fd4 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xad344bf8 ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf82a490e ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0b09b92a devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0c62f61d nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0f6789be nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x16d7b645 of_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x1ecf994c of_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x5080f207 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xfc389d0b devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xffdc6140 devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x2293ed36 omap_control_pcie_pcs -EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x62c0d7b4 omap_control_phy_power -EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0xcdf2960c omap_control_usb_set_mode -EXPORT_SYMBOL_GPL drivers/phy/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x0014fbc9 ufs_qcom_phy_enable_iface_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x07b6c201 ufs_qcom_phy_calibrate -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x12d2dffb ufs_qcom_phy_exit -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x15518c56 ufs_qcom_phy_is_pcs_ready -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x240020ba ufs_qcom_phy_init_clks -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x25056dc2 ufs_qcom_phy_init_vregulators -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x59a8616a ufs_qcom_phy_enable_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x6b4cace6 ufs_qcom_phy_enable_dev_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x790d3aed ufs_qcom_phy_power_on -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x7aae4f8f ufs_qcom_phy_start_serdes -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x7b315b51 ufs_qcom_phy_disable_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x860722dd get_ufs_qcom_phy -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x8b73ccad ufs_qcom_phy_remove -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x908b4fc1 ufs_qcom_phy_set_tx_lane_enable -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xba699b42 ufs_qcom_phy_disable_dev_ref_clk -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xc0dc50ae ufs_qcom_phy_calibrate_phy -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xc94942ed ufs_qcom_phy_save_controller_version -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xcdbc620a ufs_qcom_phy_power_off -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xf31a50a5 ufs_qcom_phy_generic_probe -EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xfaaaefda ufs_qcom_phy_disable_iface_clk -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x93fb56b1 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xd51563ad pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xd7705a30 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x495d885d mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5089e8f8 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xada7fde7 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xdac9db53 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf6ed16b8 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x18e85042 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x73839a41 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x90768e7a wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x94aa9d10 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf265735d wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf3737fe4 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x27d3abb6 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04a3d1f8 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0b3cc1a3 cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c79202f cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c963dde cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f04dd72 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x181406d6 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1ed771e6 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x25a83613 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a405a2d cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x306a7510 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x34ecef62 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a2d54cb cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d1cca88 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x410b6441 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x48e4a6a3 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4d9120cf cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x52e14729 cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x579604b6 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6289ec7d cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6444a486 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6ee715cc cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7282fbb7 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7314282a cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x752bef80 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7a9e1f8f cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a8770f1 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95e78aca cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9cdda381 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9fb92e84 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa124535c cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaf7de612 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb92d3457 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb768fc2 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbf51b648 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd07f8d5d cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1bdadb3 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdbf21d3b cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdc602c25 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe29ee19d cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe2d84136 cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5eb8f04 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe63bfb19 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf4dacc3a cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf87742f8 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfac8bf1b cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfbee038a cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x00346a59 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0555ffd9 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x05e4ff54 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1957d4df fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4cda8734 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5b02d260 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x627f2e9b fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x930dd97c fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x967347ba fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb6c23321 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc1576e3b __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd5c1e5f7 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd7f0b640 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xea348011 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xecd15d87 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf89871f7 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x15126736 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1c65ebf4 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7a9cc10a iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9d5c4988 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd46e858f iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfe9e54de iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x00841889 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x03f4e15a iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0eeef15f iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x14910da3 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c629d37 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x24f80d85 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b73ad90 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2f0d31e1 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3172476d iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32eb7cfe iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3beec4a7 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x41625b3c __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x48cc3c4e iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x55b7972e iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x596c613c iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5caea4c6 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60b08dea iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60ec4c04 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6584229f iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70150df8 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x744cb48b iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x781e69ff iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78f8911b iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x80270659 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x861782dc iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x87dc672a __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91bb66d2 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9affaeae iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa58d633f iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab5b4674 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xacbb8d3f iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf4c5e12 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0b78979 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca6bb961 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf35f66b iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd60eb1d9 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd22bf57 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe004a976 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe10e8725 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9a6c064 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf353ea74 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfaf5e2d8 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x038a6204 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x110723c0 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x18ea4fe1 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x21d6634b iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x285f80b9 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3adbd92e iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x41dba609 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x48ea6e2a iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5cfe29d9 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x931a1876 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa7cc1702 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xab9ef59e iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb5fa9cca iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc341e09f iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcb4ca159 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xce4edcbc iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf7b87bfe iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1631f5ab sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1bf1b4de sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x247ea57a sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2b621dfc sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3b724bf2 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3f9ff333 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4fe7beda sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x612b8347 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x634c2239 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x68d76737 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b094406 sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x883305d3 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa538edcc sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa82c7e1e sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa9e504cf sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xab1b09c1 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaf957200 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc6258fe3 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdacd0cc1 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdeabbdb6 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe48f7693 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf99ddca1 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf9f06c64 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfd084750 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0c666e96 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a3b89cd iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2809c3cb iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c5726d1 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x352f84aa iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x370fa634 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x372641f8 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x377643b8 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39aad803 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f796c7b iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41440369 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54502765 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5683c788 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5948be22 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x610bf9eb iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f9db977 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x73d84b09 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75ea0300 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7697a0bb iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7cd55636 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8125078a iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82d2c2d7 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x83829e4e iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85cbd933 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8bce08b9 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e10d854 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2140c0b iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb15473e0 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbcf76cb4 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc9c080e6 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd3b91a0 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd448d62b iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd67cd00e iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda96d5ee iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdba1bbdf iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdde173ad iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe1e657d6 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf0d299b5 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4386584 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd14b338 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x07058b5d sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1786f57d sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x823e39b7 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xab957f1a sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xc3d5f932 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x12ddb35d srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x72fb5e00 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x76418608 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7e19ba17 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa81d278b srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfcf704c0 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x39952ad7 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x6949afc8 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x7d3bb537 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x8be91eb3 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa6b4fc62 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xbd5ea960 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xcc71d926 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x52f79487 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xaa103285 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xba04848a ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xbf4bcf5c ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe1ce2398 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xefb2377c ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xfe5e807b ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0aad3378 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x558ed476 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9b3d60a1 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9fc90c4a spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc5bbee9e spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0ed8a6f3 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x29231dd5 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x6c1524cb dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xd2951b08 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0327a9d4 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0745549f spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x21af8386 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2fe090a6 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x53b8d29d spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x67625bc6 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6cd1692f spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6fe95532 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x71db1ad8 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8fa32451 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9bfb0ec5 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa4a608e9 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb83d9dc1 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd04ad59a spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd8c60021 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe54447c9 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf5d8eed9 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf9455338 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x599d14a3 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x01d583c0 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0797a580 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0beacb91 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0ca24b9c comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0e6ac4f5 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1530349e comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x33b6af2e comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3568ca3b comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3a7d08e6 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3ae0ad17 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4bbe341f comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4def8535 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5582cc49 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5914a7c5 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5aeb7e9d __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6d257793 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x725a67e8 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7d0f5541 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7df45278 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7e050ca8 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8bcf61bf comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8e756617 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa0beabc2 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa2442087 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa2ff442d comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa4fa9bd2 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa92bffbe comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaa7ab3d9 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xafa74217 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc8812f78 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcb5a2696 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcddadb07 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe4dffd0b comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xed4deab4 comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfc91a7c1 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2f383ca6 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x4d0b25bc comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x50721828 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x7675c1e7 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x78ad6208 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa2d70116 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd37c485e comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfc9745ee comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x397046f2 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x8fd3ed39 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x959ab3d6 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x97dca5cc comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xde4c3429 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xfec739dd comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x21c5fd34 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x120554f0 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xbcec919c amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x80eac0d3 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0d1ebfcb comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3054b84e comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3448ffac comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x49dcb94a comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5faaf6c2 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x88f5ddcf comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x96343a69 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x96ab8365 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa7b5af87 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb631f6f7 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb6707577 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb7297d48 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe789a65c comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x2b21df97 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x9f25f147 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xcffe6411 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x702c5d03 das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x12220854 mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x148ffeef mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x15b0f53d mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1a3516b4 mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x34fa8cb6 mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3f085870 mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x45060434 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x50987f03 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5663899b mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5b5df30f mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6431dbe9 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x66b0bed5 mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x87d83bcb mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8897f70b mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa04d8c97 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xad15a121 mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaecddb30 mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc68d4dc6 mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdfb15bb7 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xec5d2e51 mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfc87e953 mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x12e29183 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x7ef6b228 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x1f899664 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x347a37a4 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x575edce0 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa05b2a29 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa66c048e ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xaf4d2692 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd239f365 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xfbd6af8e ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x4b635563 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x72605261 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb19418f0 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb941e730 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xebdc0a40 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xfab8d216 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x4bb8e03a comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x54b79c97 comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x6c27ce2a comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9714e4e8 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9c72e6f9 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9e47f198 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xd302c516 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xe1c7b4f7 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1288dedb channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x38ddc662 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x40e87c61 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x43c2b9ca most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x73395518 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa8a0a9fe most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb4c7ab40 most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc5362e1b most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd199b6a3 most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xdfba392a most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe7e4f1a8 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf7e35dc0 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x02ac1d0a spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x039ee845 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1529cf6a spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5af3f933 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x82519b8f spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x84223700 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x86442336 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb2978dbc speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbffab261 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcfead155 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd162aa5e spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfd251bea spk_var_store -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x1aebfe41 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x2e9f7160 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xbca61cbc uio_event_notify -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x1f0474fd usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xcd1cc360 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x2b891d52 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xfbd5a889 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x51d23b79 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd4267473 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xe6b574cb imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1e77e27d ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2898dfe3 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x65385b5e ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x77a80ebb ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7c0603e0 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xab8701dc ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x057c77e0 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x120b7e7a gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1f807ac4 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1ffa7272 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x32e5fa50 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x49170fcf gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x49560a4b gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x52f1bf4e gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x95cb9374 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9efa6cef gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaaa7d82f gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb1d63350 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd48d8fe9 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf0dcf6ee gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfbaeda1c gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x1f642c01 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd1d68dd7 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x09fd97d2 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xe4bed85f ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xeaa09089 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1108da7f fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3f33c7ac fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3ff02b2c fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x576cb441 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x578e59a8 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x64fa7d97 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6b4a7ba5 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6b4c76ac fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x87f59bda fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5265881 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa55e342e fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd88c0efe fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdf640bd7 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe4acb154 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe6375e4d fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x04e78da7 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0d1149b4 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1ec57837 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3c576854 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4b7ade92 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x63d0a83b rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x66f8b363 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x89b0e3bd rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa4c005e6 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaf020973 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xafaff28f rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdaf6d81c rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe5811e7c rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xea31bc4b rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf338dbbc rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x103ee391 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x11c0b504 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x238d7af6 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3c9f5b69 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4840a5ea usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4f4fcefb usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5018fd50 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x54e9b920 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5c557740 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x61cda8d8 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x62689a04 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6c119a1e usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x77593e65 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7c6bda75 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fcab1a3 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x83bfd91f usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x90f16ff7 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x915d3cea usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb524b264 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbf0bd430 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc2d5fcac usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc6ff46d2 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdaef5fcb usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdb337123 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdbca1d0b usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xddd4c25e usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xebcea464 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf4d21658 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfcdfa100 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xff02ee48 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x383ee257 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x4f2c941c ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x20c9d45e usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x22f2985f usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x384d42a7 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3e3fc597 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x527681d0 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5b53d576 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x979935ef usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdaba028c ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfc993e77 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/musb/omap2430 0x6fb55e1f omap_musb_mailbox -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0xf0b6a12e am335x_get_phy_control -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xcc6399a9 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x3570518c usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x055922fc usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0665d941 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1d52cc72 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x26673479 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x41b62325 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4d903db6 usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x58d1cf91 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6d0e4816 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8c445f7c usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8c86d106 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8db5004c usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa117d7ec usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa7ea0804 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa882be4d usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xabdaef09 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb4317eca usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbf515b5e usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc4044c85 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd3553184 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdd3572bb usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xedc14d36 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0234de97 usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x03d2c324 usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x08fc2927 usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0e59935e usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0eef38ed usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x16236594 usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1f004489 usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2be183d7 usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x31632396 usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3a68a9b4 usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x775d88be usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8c90f7ba usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9791f863 usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa464b76b usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb22e40e9 usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcd6295b2 usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd0a3be48 usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd3743df6 usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdd6ac9aa usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xde12ae40 fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe51d7a8c usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xee8c08d1 usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf24fbf49 usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfd8970b0 usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x183ab1d8 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x294a1c80 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x32d4ce6d usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x41fb3207 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x504c7473 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x53cbd047 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7d648fbc usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x85751fae usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9fe99b1c usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xded53d2c usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf412659a usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf8b679f5 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x29f3c243 wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x319d1931 wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x96d6d380 rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc37379c4 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xdb44fe3f __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xe65a5d4b wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf5c505d1 wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0ed92f8b wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1951c3e5 __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1aa44031 wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x34a1b878 wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x49159768 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x59bb29a9 wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x705ffb71 wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8d8523d3 wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa2112bd7 wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa53d3e92 wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xac92d5ed wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc70797fe wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe3f7075f wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe963dc88 wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x0dcb6fd2 i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x1b7687d1 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x5def5bc7 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3d65460d umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x5803d921 umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x94071e3c umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xad621bbb umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xcb7ed0fb __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe64815a2 umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe6b6e9ac umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf4083c40 umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x03b254ee uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x07a4ee9c uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x085c032d uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0885b279 uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0f527992 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x25c433b8 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x336fb5c1 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x382f5dcb uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3ecbd848 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x405c695d uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x43ad0b66 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e3d1045 uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6462abc4 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6544a10a uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7809e485 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8477c3ed uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x877be2de uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8882e908 uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x900ebb48 uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9d907d9a uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa5d50613 uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xaab67916 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xab1f38bd uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xad1d60a5 uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xaf06800e uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb9a424e6 uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbbb60a1b uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbc63ed78 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcc8ca176 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdc57d200 uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdf518e40 uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xea160b74 uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf08fcb0e uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf2f9ee97 uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf43b32b6 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf46249ba uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf6b9be53 uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/whci 0x7457ffe3 whci_wait_for -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x2e4408b7 vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x54f13c26 vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xa7b423c2 vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xd25ca2e7 __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0bd00629 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5f6f118e vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7b2d5fe8 vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe1b24267 vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf4adb7e4 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfc116735 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xc6df6541 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xe173bdff vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0d2fd33a vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1317d16b vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x15537d7d vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1d7bba2e vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x212153cd vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x31f2189c vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32bcc5e8 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x361a5e4d vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x45a086b6 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x463a92e5 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4ba278f8 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e3311be vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5969c1c5 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x648281a6 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7403a82f vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78e838f8 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8acef4ac vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9d4175a4 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa27f573e vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa6d9c086 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa77c6cdb vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xac690394 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb201c095 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc56fdeb6 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd1ad31e3 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdabe93f7 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe018aa03 vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfab2a852 vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd59cb8f vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe633e40 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5250083d ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x793073fd ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x85918368 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8f150c76 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9a6edf47 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb0d56a0f ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd19641b8 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x063e2b78 auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x6d3f8fd1 auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7a2bbba2 auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x86608ccd auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x96224051 auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xacd93ea5 auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe8247552 auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf0251b2a auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf2f120e3 auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf3ad7e53 auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x11064585 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x7cb3ff0d fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xfd40e180 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x2887d8d7 sh_mobile_meram_cache_update -EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x3e5d4eea sh_mobile_meram_free -EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x5dd2c97d sh_mobile_meram_alloc -EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xcb7db836 sh_mobile_meram_cache_alloc -EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xea2204b1 sh_mobile_meram_cache_free -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x26809f4a sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x60b1fba9 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1525a347 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5386d1fc w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x730ab01b w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x824af5a5 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xaceb0589 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb5d2150a w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc6934e04 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xeb9a7cf3 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xfa994e14 w1_reset_select_slave -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x206a421f dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x75938108 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x95acc435 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0a10d954 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1a591c8a nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x65a1747e nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7f356ae7 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8924370a lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xceca13c3 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf9cd4aa1 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0393ea33 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x092fd69b nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0942dfd1 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0aa9c35a nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e14e557 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ebb5909 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ed5fc5d nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0eed6787 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f67e11c nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1080a90b nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14d24812 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x196e299b nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cbbe58d nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2068c49b nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x238a69fb nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x244c056f nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28597a98 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28dd452a nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2959cedc nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b466bfa nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b7e3f69 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cee2107 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f2f62d4 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x338a1b49 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33d6362e nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34195b2d nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37d8a0b6 nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a71b887 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41802481 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x423fa82a nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x475a0e5d nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dbb7b97 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e0765c8 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e5ad177 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54c107d6 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54ce2db0 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55ba14a5 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56f48b1f nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5790e864 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5791ecc8 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a211a47 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a95ba5f nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f5c4964 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62490513 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62e14961 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6451ee3f nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x652b2b0d nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65651dbf nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6787692d nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ccef2e3 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e2e0f7e put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f9bd524 nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x737194f7 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x747c5c9f nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75e0cc23 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7627b3a2 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x777d6abd nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x792775ed nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b2f81ac nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cb54e10 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d39dc6e nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81c8d7d9 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82152ec4 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x831bc7b9 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83729c7e nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83e31f33 nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8452f265 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85160620 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8654c5bd nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x877bb293 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d78831f nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ea806df nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ee349c8 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f35e54e nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9131a595 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9368c05c nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a791113 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c83515f nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1ceb43d nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3237dab nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa460c950 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa97f8ee6 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad3fae94 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad640172 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xade0d130 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb07ec78f nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb348a3e0 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4ddcef6 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6296fde nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6356222 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6646fb0 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb744853d nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba18951f nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba1e762d nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5eb11e1 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6e186bc nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8a36b48 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca9adc79 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbca82fb nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xceea1c7c nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcff4c153 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd211e477 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd71be6c2 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd85fa5cb nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbb6a5a0 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc78d659 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0852a86 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3cffa90 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4b24ae2 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7dbc1f9 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeeb14bf8 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef35f000 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefc5af96 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf24d8665 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2747ce8 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf331d52c nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf494b107 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf75240ed nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9a09b73 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfaa26257 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe8b6a5e nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe990d84 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfec527e3 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfef14c27 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff4eeb90 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x31c6b6dc nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e640bb2 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10b18465 pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x165196f2 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1a20111a nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29a71efb pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3058ec6e pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x358fd9a2 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x398aca59 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b81e2fb pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4583dab9 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x490e3b9f pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b1ed2e9 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d7750a9 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d88dcb2 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5306da03 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a3b5b9d pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5bae0046 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65e67871 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e64a4b7 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x729e8cc6 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72eac778 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81f112dd pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82885c95 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8771ef25 nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b9030f0 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ca32d91 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ca7fadc pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8fe5a25c nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x920a2aac nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x933a45f2 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93444e71 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9bb6a780 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9dfe5338 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa418ab90 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9a25712 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaba895f4 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabeb3c91 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac9e2d5a nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4eec5a2 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5c036e1 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb88875a5 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb8e416e nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf082022 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0c1704b nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1474b64 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc80ece56 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcdec3985 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdbff6a72 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf2dc1b1 _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1b8ad36 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1fa7471 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe2a68d72 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe4ce8da0 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6e264ce nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea684eef nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebecd962 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed008344 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed2f488f nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef0a4a3c pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfad079cc pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfda75b25 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6bbd47c1 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x93322eee locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xcdf50f24 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x976b771e nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x9a2a861d nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x226c0ce3 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2b85bd45 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2e45bb7a o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x32a9f938 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4ebd99a7 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5642de27 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xab24bc55 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x8f44615b dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xaae70383 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc1778e7b dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc6343d32 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe7af3b27 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xed2af3e0 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x249c7552 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa351d367 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa99a6a51 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x63e689a6 torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0x9bff8a7f _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x9d498bf4 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x502ef512 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xae143f88 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x2d107b5e base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x41ecf87a base_inv_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x72eb4ea9 base_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x767b8ba8 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x8d490167 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9af6b231 base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xdba4feef base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xde0e6eb2 base_old_true_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x5507fdbe lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xb483eb49 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x37783a51 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x4c4814ef garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x567d532a garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x7cb78496 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x9bc69d73 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0xc5c1cdbc garp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x0eca1ca0 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x10b25bb2 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x1282283f mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x1c2755de mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x4febfc35 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x6089d694 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/stp 0x018d17c2 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xb2b3c219 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x209b8de2 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0x6cd9155d p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/ax25/ax25 0xc7b0789e ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0b9ffd89 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1cec7ce6 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x72d1f865 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7f82e045 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8339f987 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb717bc53 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd727a087 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xddfaf622 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4db94fa2 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x565822e5 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x89c17e8a br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x916206d1 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa243d489 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd1d56e87 br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd29c7875 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xfb70c52b br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x7a0d2c2a nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xaa7952f5 nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x09a123b7 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0x10766753 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x14b80968 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1e8d26e1 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2263eb2b dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x261f047d dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d699410 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x32dfe6a8 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x42f0a033 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4547dc2f inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4f5e1269 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ff092bc dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x52e4eb20 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b3de729 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d1fa7c5 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x68c067f5 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x71de9491 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7b05a038 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x81271333 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8bdc938e dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8d61c84d dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x983a761a dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4409c6b dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa73332e3 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xabcc4fb3 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0596156 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb4b0b819 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb58917bb dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc057e8ff dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd06fd888 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xda232611 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe0bb65f3 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe7df779a dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe96eba39 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x27d1b6c7 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x39aeb5b7 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x60d41fc8 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x83766d87 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xba6c15db dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xda541451 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x611c1ced ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9e1fcd1a ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa0a58a12 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xfbf500bd ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ipv4/gre 0xcbd8a69d gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xfd83324c gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x13fd940a inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2b10be62 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x320f44bf inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x44122d9a inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9a5e1f27 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc1109168 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x90326773 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1c23f7b5 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2b96e6be ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4beefa5a ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x62551e6f __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6a700902 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x746ed3bd ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7b5acb64 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x83454daf ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x86a48793 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8729b64a ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8b831be8 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbecb3619 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe7a85779 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xecad4b80 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf873478f ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xc430a3b5 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x54aedfaf ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x4e6246ec nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x59bf7d07 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x695f9573 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x8e337870 nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xdccb49bf nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xebb19082 nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xdc801483 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x313593ef nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6a9c2d36 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbce982f1 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbf5564c7 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf4753987 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xbb475b90 nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x03f3c462 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3c5733e9 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x64b32c03 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb3e2c569 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf79453c1 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2f895ad8 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3e5eb865 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x89136859 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd229c37e setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5b562b26 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6c6a619a ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x700a6924 ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x8b6509e8 ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xbadfa902 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xca5afd46 ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xdcdb5f5e ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xabe4e955 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe5494005 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xdff7739b ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x09b2c856 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x51ae5bf6 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xd252bf52 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x156019e4 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x57b7282a nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x750a4d20 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xad0a5539 nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb8611299 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x6661695d nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3027a347 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x377b8095 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6da54261 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6f2c7908 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x706a36c8 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x59343108 nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0679c316 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x08fc0062 l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1d66f21b l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1e3ef91c l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x23ca5d88 l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x32b07461 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x356354a2 l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x357cd2c5 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x38fc3868 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4cb628e6 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5ba87ea8 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x784300e9 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8ddbb3a6 l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x925cb9fd l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd42dfb00 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe15b5691 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x68038f3b l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x05c37a73 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x106f7b88 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x394b82c9 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x41c1e647 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x48cb7f1f ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5e0fa363 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x69ac4d45 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7c3ca1f1 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x844adaac ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x91de7e15 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc2b237f5 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc4ab39c0 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xefce2f9c ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf4f868e5 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf7fccf5e ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6991a630 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8a59a850 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb9f7c3da mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc5ac0d63 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x189c22e8 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x32b27880 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3ecd0716 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x44ce8ceb ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6714273c ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6c410bde ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x787cf1d7 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7dd553f5 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x87aee4df ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x92cb7334 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaba02a55 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xac3b805e ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb16378ac ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc1fa9b7d ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc9c7f34a ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcd00499f ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1948ec74 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x23febc1e unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9de5fa15 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa4b1c81e register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04fc1581 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x079e2efd nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07cfd8c0 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x092ccc01 nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09c467ca nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d6f8673 nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ef236fa nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x111d8d46 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1bb5747f nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1bc70fe7 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x204e7051 nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20894d29 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20fe430d nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x211390e3 nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b7d9e75 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3191b3c4 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31acc0e5 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36a72822 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b7c568b nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4eadfaf3 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5223eb3a nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56dc5002 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ab1fba1 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b9c9203 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e044c91 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60b28400 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61a55854 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63f50f91 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68879923 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7427b96a nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a79d90e __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b1f8bbf nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87b8f00d nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88189719 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8bac6e51 nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f3dce73 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e5d11b8 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0bdafe7 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa533fb27 nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa54562ca __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa860ee70 nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2f53656 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6e01182 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb71c7858 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb72cdb38 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb759327e nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba7b0221 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbec39023 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc07a0e4c nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0db110e nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2abd2fd nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4a3d617 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc574c376 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5fbfce5 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9061fc5 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca8fb10c nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd6f2c74 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce3562b9 seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce36b8ac nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd259a553 nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3446de6 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd353cdf9 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3919226 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3b6d67e nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd681c49a __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7268fe3 nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd79d9515 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd937e51a nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9b98174 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcea9d36 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd75967a nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe510ed61 nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5ee5b77 nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8795434 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe9ec1bab nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea4d69ae __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0cb79d4 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf575c5c5 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb832b69 nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff3d196a nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x281e0397 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xd84b132f nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x8a3b3805 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x30a617e9 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4e2de480 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5219262a nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5b099b37 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7c810f58 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7f1b8c01 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa2005ca0 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa9733bfa set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xacf8f6f2 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd3c07447 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x8c3870fe nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x07a05c20 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1ca491bb nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x5062c8b5 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc8ff8c30 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x4e437df6 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x9a8c283e nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0154b9e7 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2b949102 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x47b46699 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xad2d7278 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb1ad2f03 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcf9b8a01 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe301a1bf ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xeac333b4 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xa76c86e3 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x062c931e nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x277dba15 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x43e38792 nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x540ce38c nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x216d998d nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x239ab419 __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x258e0b4d nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4ecb91a2 nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7b7b2f57 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa1d796bb nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa8f40d8a nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa9ad60ae nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf4827b7f nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x7ee8e85e nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xb027b0a9 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x43da71a4 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbb342099 synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x116acc56 nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1df87ea0 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x29f575f2 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x37e9553a nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3a06fd10 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c11e32c nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x769b5ea5 nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x83f6d572 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8ac3e3b8 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9562bad3 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x96225a40 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb365d112 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbea9f944 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3ed44cb nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc42bdd6d nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcd55a1af nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed013cb8 nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0862537f nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3731cbfd nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7b93674f nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x91fec097 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x98a8d9ed nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa32b4796 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa6278e8e nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x15b39d50 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x24e3353b nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x3d95946c nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xe89518d6 nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x28b47891 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x694a59c6 nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x8ccb9120 nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x16ac427a nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x27485701 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x3d120af5 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x572b60d9 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7169cdf9 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xe3207c1d nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x1e63afb5 nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x30e15dc0 nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5e6989b nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x979c8dd4 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa0f88f92 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x224e0ea5 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x351ed470 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x389229f8 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x44daa471 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4614f7e1 xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4863e2c2 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x91b03546 xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9474d674 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaad10b79 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb6df926b xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcca075a9 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd2dd45eb xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe3b0a560 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x57909dc1 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd0f26ea3 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x02458aa3 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb38f62dd nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb500033d nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x97ffac47 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xc5615001 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd5195765 nci_uart_set_config -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x29cd8f52 ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x31ddf5c6 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x44317472 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4c50deed ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4f6b641a ovs_vport_receive -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x66883667 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8ec5113a ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xefd15bd5 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf0222586 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x05d302cb rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x13fa0289 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x1520267c rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x1602e2bc rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x1d35451e rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x22605aa9 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x30f6939f rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x45418ba4 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x552eea96 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x5df78727 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x6596e296 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x6ac128ba rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x9de9e7fd rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xa4833109 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xa5213ef3 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xa6050e72 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xa99109ee rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0xabb08e2e rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0xbeeefe55 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xc13c8101 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc642cc2c rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xd2902b22 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xd2a86f35 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xdb979256 rds_send_xmit -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x3a8e9327 rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xa2aca218 rxrpc_register_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x483978c5 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xda6fde82 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf25a3068 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02d6e879 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04abb8ee rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x064b7024 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x075242a2 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08c0a6de cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08f22db8 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09d48757 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c534c90 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c773000 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cb15ea8 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e0fa22f sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ef1bdfa xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f29ef9e rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f2cb648 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1248b8f4 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1293d52d rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13cc9d64 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16326e63 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1791d98e svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x183e38b2 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1930fa41 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1970bcdc rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19e89641 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ab1c143 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c5a0a28 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d17a56e svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d7ce315 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eaa906b write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2283aa25 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2364b70b rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x239b8e28 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23c42bd0 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25da72aa svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x292dc140 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29a675a7 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29fc05ee xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a6d2f62 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b5466ab xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c2a07d7 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d609951 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2feb4281 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34040043 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34e5ad88 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3589e8f5 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3713bf69 rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3882d5a9 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x393a39ea rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b599885 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be97fa1 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x407ebf5c rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x416f474d svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41e28b6c cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x422b6804 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x427cb354 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x456ec8e7 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45eac2e6 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x473b0b93 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48611a51 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x488dbbcc rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48f8cef9 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49ade85f rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a4b5329 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ac81f4a svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b56f12c rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b82ec89 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bb1e2d9 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bd89470 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4df207b7 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ea45a76 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50bab9e6 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x553aa8c2 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5614e794 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5673085b svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x586f13e4 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58821a78 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59fedca6 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b5898be rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bed0a85 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d45eace xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f16011c xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f84dd47 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6313d9c6 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63c122af svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x657f08dc rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69abe6e3 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aaaff88 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c8be933 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ca86bee svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e408046 rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f14fcce xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f7c8963 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72d518bb rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7347d71c rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x734a9489 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x744cc45d svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x749b4c44 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7551506c svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x756f7209 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77ca6ebf rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a7eab46 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a9a4cc4 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b0e621d svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e48effb rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85c64e2a sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8769ec45 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88257aa6 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8af3dac1 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c2f5d9c rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c7ab67d xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cbd0f3e svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cc58bd0 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f2f1d41 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x903e7605 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x905c2033 rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x920edb5c xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x927d4ac8 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x962bf42d sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96807151 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97be08f8 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9878f180 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98bfea5f svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99ec0547 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cc39e6e cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d76e2b6 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f54ce5e xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa021765d xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa12cb497 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3b5ff97 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5990645 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7e533c9 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7fb84a0 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8d99ef2 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9d243fd rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e2d45b rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabb82153 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabd7aa41 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac07819b svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac8f5d64 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaca2fb56 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaca9d02d xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad03d251 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad22d9f0 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad2671ea cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadb027b5 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae63ceff rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb030af1e xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb20929d5 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb61151b6 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9042af2 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaa48459 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbcf3669 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd658832 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdbbbfb0 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe049818 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf6ccd2f xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfd766f5 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0a35ade xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1b63043 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc36f1ab8 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5dc1d92 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9945d3c xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca5661fd svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca6085fc rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcca33611 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd1b0124 xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd7f260d rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf959e86 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10935b8 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1914e2b svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1a565b8 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2dd251e rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd37ab10d gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4e3ce75 rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd755ac71 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9c659cf rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcd314bd bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde498082 cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf69051b rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf9c48b0 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe283e650 cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2c50183 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe341c050 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe39c50e6 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6028971 rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe61d946b rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe68725ef xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe84b568d svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8949b7c auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef8ece0a svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3dbbb03 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf49b0c84 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7e2b544 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf85dde6a svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa7a6e54 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfabb00df xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfedbc214 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff38799f cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffaf0ffb rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x46c1ba4d vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x47ae6f91 __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6d7d4029 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x76665bfb vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x781c81ab vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x799707c1 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x80fe5ef6 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8532e2a8 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x99218d5f vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdf7210c3 __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe94ebbf9 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xea179c44 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfd7b27c8 vsock_remove_bound -EXPORT_SYMBOL_GPL net/wimax/wimax 0x04489a79 wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0x0c16a8b0 wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0x1f181344 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x40fe3311 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0x472cddc2 wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x529f90df wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0x758aeb36 wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0x90a7d43e wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x9136c757 wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0x974b8e8f wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0xce177dbf wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xd19694e9 wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0xf264ab9d wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x207638f3 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2777fcd8 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3205ca63 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3244dc92 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3d8d9407 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x56d986e0 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x59d690d2 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x66f394fb cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x67fbcbd2 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa8de758f cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xec61902f cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xed6f0515 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf5013979 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x12620085 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x16492b6f ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x18f7f6fc ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3c8c40ad ipcomp_input -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xb6d6b056 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xc01a527f __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x21ef79a4 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x96ef7796 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc64211e4 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc8226efc amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xcae8a126 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd120781b amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfe9d1bd2 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0108b5d9 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x039b0565 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05944a96 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ecc701a snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ed461e5 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fc4638c snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1091423b snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x165fd518 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x181ac748 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a156241 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22adcee3 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2da03703 snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e10c86a snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x303804f5 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35be8ef1 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x361149e7 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x394a07b9 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4077b4c1 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4de0a21d snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51adbcf1 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x532baace snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x556e2871 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57d371b3 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5fe69a37 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62901ad7 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63273e20 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6370d971 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6740ebea snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73363e9d snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x78abcfb1 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e958769 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f135395 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82eddd00 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88307573 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b73d38a snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ce6d6af snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d0ab411 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90c858c8 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9240b4c1 snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x937ceeee snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x937ecf48 snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94f8dd36 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x997afd07 snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9cede4be snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d18e805 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2458cde snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6a8c94f snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7e82154 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad070bb7 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae3d1972 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc65f930 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd4cf95d snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe40fb92 snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf779cce snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc140d48a snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc166980c snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb843c63 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd18bab19 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd216f67f snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3c8e1c3 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd739aebf snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9466be1 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd96d2a91 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf154df0 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe9bb01e7 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb6a07f8 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf13877f0 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf33d39da snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf53f0780 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf60499d9 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa8a913b snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0a5eaf7a snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2ef7cdb9 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x46e3d15b snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x868c5260 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa00d51e5 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa53fa242 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0198246b snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x019f0c42 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x039421e2 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x042256d7 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bf6be4d snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d0171a8 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d3e7a01 snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10957aeb azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1319043c __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13a22b44 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c3fdc16 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c4955ee snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f7b0a7c snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24fcfab4 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2555f769 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2568685e snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2606e88d snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2810701e azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28581e68 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2acb7f04 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2dea57d3 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e0ad3fc snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fdf5e97 snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34153ced snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36da6053 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x371f03aa snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cefc500 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d8b3044 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4028d146 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x403df190 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42211796 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46377b04 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49756181 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ac4368a snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4da93228 snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e8444ab snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5192eefd snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52b3ff41 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53be8326 snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55a66c72 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57ac3c16 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a9690d4 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5dad9741 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e273692 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f9c1e80 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x601203f7 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62d2dd40 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63a31c9d azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63c8a0c0 snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x662a270b snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66d3dad9 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6778f3be snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x690f426c snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a4ffc19 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6beadada snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d197074 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d2ea35c snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6dbd03d3 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75949507 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x786338fe snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x791ae14e snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7bfce7dc snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d49180b snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x816b9c7a azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84344ec1 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x846ba50e snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b250d5f snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8cde2769 snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e884ca2 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91a83347 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93a5f79e _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9758ff92 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1b5b304 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa438a6c6 snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa66dd175 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6a3a235 snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8734a44 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac749cfc snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0ffef58 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb12606d1 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2381115 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb259aca3 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb25b18ff snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb309cc4a snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3e90f19 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4536bc3 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbae7b4da snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbc4f44e snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc284484 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd05e470 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdc1df89 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf6c1758 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc08852f6 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc111a155 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc12c773c snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc147e624 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc177d41f snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2ea63c6 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc55c5f37 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc769abd3 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc621151 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc8a8a05 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd747a47 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce1b95cf snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce30f033 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfb3a19a snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0247f36 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd061bc6f snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd27643c8 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd46585e4 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4bbcf2a snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd85b5b02 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9b3e8b0 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc47c956 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde15c282 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe082688d snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3bcaf29 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3d25c06 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe51bab4a snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5036d8c snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf78d4b4e snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe0f140f snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfee69ac6 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfef32a8d snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x06b79572 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0e194df0 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2df74f05 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x46c81344 snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x499f3c80 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4a6e3563 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x54752b12 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5f3a42b2 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x60f2f0ff snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x657d37b4 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6f60e26b snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xab80d50c snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb3c61db1 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbdf8b03d snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcaae717c snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcd21d0b5 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd94953f7 snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdc7b7c3f snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe7003a84 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xebff6f62 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf7811ed9 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x2b2c683b cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x42304566 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xa561d24d cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb0f78b84 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0fbf8793 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x13d2162d cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x9dbb504a cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xa6dd28b3 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xf1e90fbd es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x7298b228 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0xa88f9a79 max98095_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5a1aa8ce pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5e71ab7a pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6071e90e pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd9466f1b pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x10603445 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x680852f0 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xc020f15b rt5677_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x952df541 rt5677_spi_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xdc9e2327 rt5677_spi_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xfa47e04e rt5677_spi_write_firmware -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x18d181f1 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x49d8effe sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x57214a7d sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x6eb51e57 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe75b8b44 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x9b424ea4 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x4145f60a ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xf58b0e63 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x753f5875 tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xe5bab904 tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x13cb0033 ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x1e2a90d9 wm_hubs_vmid_ena -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x9bdf30fa wm_hubs_add_analogue_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xbfb81063 wm_hubs_update_class_w -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc6d2f182 wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc9a48bfa wm_hubs_hpl_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xdf9ff571 wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf03caadc wm_hubs_set_bias_level -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf078e811 wm_hubs_hpr_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x0e736500 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x15658720 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7e0aeb01 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xda987f79 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x27e73567 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x82bc4e81 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x87c9b3a0 wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xdd7a12b8 wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x3a24ea2e fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xfbcaf9f3 fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x01771c3c asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x78a0c531 asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xbbd3722b asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xfc374f44 asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x055077e0 asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-idma 0xade84e1d idma_reg_addr_init -EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0x1fe8d079 samsung_asoc_dma_platform_register -EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0xac068233 samsung_asoc_init_dma_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0319462e line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1ea5d2be line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x484d3f1c line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9011d5df line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9542547c line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x96bcec0e line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa041745f line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbee3f766 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc0e700b8 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe01abf7a line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xeafd84e2 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfcca988e line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfe22233d line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xff1eb6d7 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xff8e0d51 line6_send_sysex_message -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x0023761d crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x0035907d of_get_nand_ecc_mode -EXPORT_SYMBOL_GPL vmlinux 0x00391bba deregister_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0x004f2e72 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x006f4e43 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x0075cbaf mtd_block_isbad -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x00941428 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x00994dc3 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x00ada98a bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x00da475d __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x0177b4f0 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x017d6bd8 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x0189d855 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x018edcce cpdma_ctlr_dump -EXPORT_SYMBOL_GPL vmlinux 0x01ae4b71 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01d908a3 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e22d42 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x01f6c29e devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x0210454a extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x022f1cdf dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x0241f7c4 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x02426f3c cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x02787dbf iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x0279d228 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0297880d sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x02bef433 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x02c37d39 __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x02dda22b usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x03083522 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x0308fb18 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x032375b0 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x032b2d4b kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x0334cfb4 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x0335e669 __put_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x033eb2dd snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x034466f1 mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x0345555a ioremap_page_range -EXPORT_SYMBOL_GPL vmlinux 0x03486850 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0349ed82 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x0355521f of_get_nand_ecc_strength -EXPORT_SYMBOL_GPL vmlinux 0x03581792 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x03623cbf sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x03669cbe irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x037ab90c security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03ae7446 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x03ce68b6 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x03dc0d8a mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x0402b504 __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x0415b1a6 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x0466ee0e snd_soc_put_strobe -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x048bd988 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04aa76fa sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x04bc9ffc led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04c658f1 fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x04d1130d pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x04dd229c snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x04ed538a ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x04f244c8 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x04f63245 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x04f93d2b skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x0511f65d ahci_shost_attrs -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x054f0d1e call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x0553d928 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x05542702 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x05639e5f vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x056c608e virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x05910732 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x05a6a9aa posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x05d07e6b crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x05e96887 gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x05f71c9b uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x06311cb3 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x06438115 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x064a6ec2 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0667a036 nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x0681e937 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x068a9ef7 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x068cffa0 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0x069c0738 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x06c9c645 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio -EXPORT_SYMBOL_GPL vmlinux 0x06f8cbf5 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0x071bb0e8 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x07490b0f perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x07614657 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x07684a40 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x07737343 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07c47f8a get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x07cd92a4 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x07cfa8d8 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x07f74d22 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x07fcb924 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x0807d7ae pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x08105ec4 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x08205426 gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0x082b6464 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x0875930a of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL vmlinux 0x08b2ce27 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x08cfcc18 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x08d7b5c5 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x09009b8d pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x0909bbf0 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x0958637c list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x0967b96f of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x096df3c9 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x097f8223 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x0983ecd5 devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x0994294e pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x09b5c518 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x09c9f280 max_gen_clk_probe -EXPORT_SYMBOL_GPL vmlinux 0x09d6aa4e blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x09e22fd2 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x09f471a8 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x0a0cb0e5 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x0a4db210 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x0a4e6584 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0x0a65b5b1 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0x0a80a166 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x0a9854dd omap_dm_timer_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x0abe8350 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x0ae2acf0 mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x0af5c193 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b2e3e15 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b2e5bcb gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x0b42a7ef usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x0b4bc0b2 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x0b526fea amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0x0b587f3b blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x0b9e8eb2 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x0bb51813 __get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x0bb8811c cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL vmlinux 0x0bbae511 return_address -EXPORT_SYMBOL_GPL vmlinux 0x0bd8d96a pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x0bdfe340 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x0bf25c7a nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c252750 reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0x0c2b4df5 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c320aec pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x0c48eb64 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x0c4b0ed9 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x0c5a49f0 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x0c84da71 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x0c901758 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL vmlinux 0x0c9d57a1 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0cdae1bd list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x0ce4c9e0 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x0d0a0879 snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0x0d18506f __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0d1a35fd blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x0d2260e3 md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d559ad7 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x0d59d4cd dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x0d618a0f scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x0d779926 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d971587 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x0daa502b mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0daf9347 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0x0dd7bd27 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x0dd94566 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de12793 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0de36b3e cpsw_ale_create -EXPORT_SYMBOL_GPL vmlinux 0x0dfd239e ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x0e430138 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x0e877c88 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0ea6267f irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x0ebb90c2 snd_soc_bytes_get -EXPORT_SYMBOL_GPL vmlinux 0x0f188d29 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x0f1adbc6 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x0f2430c1 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x0f2bb7fd snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f43382f rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0x0f442609 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x0f55d9f6 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x0f654272 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x0f6b7d19 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x0f6c4d5b scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0f75d23e __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0x0f782a20 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x0f90983f devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0f964257 amba_apb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x0fa1eee0 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x0ff9af09 cpdma_ctlr_int_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1016df0e snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL vmlinux 0x101cc910 cpdma_ctlr_create -EXPORT_SYMBOL_GPL vmlinux 0x10354137 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x1035b067 iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x104fc1cc spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1057daa9 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x106f9c51 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0x1073f2d6 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x109cac3c spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x10a7a76e ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x10ae23fb pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x10b15e52 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x10df600e of_css -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x11025677 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x1102609b snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x1143656a snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL vmlinux 0x1146dc43 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x11710484 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x11764ab2 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x118b7f4d usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x11921fe4 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x11b3ebaf ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x11d78a08 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x11fa35f4 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x120830c6 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x1219e5c4 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x122f8873 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x1238627b pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x12407aae subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x125d89cb usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x12914d62 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x12d46e45 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x13036bc2 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x1338b824 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x133dc4d6 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x134246da __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x1344ac3f usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1363e3f9 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x1366b80f pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x13693117 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x1373a10c list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x138034b7 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x13979951 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x13984ba7 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x13a4953f device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio -EXPORT_SYMBOL_GPL vmlinux 0x13c176cd usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x1420a333 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x142526cf sm501_modify_reg -EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x1433ef06 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x1449b39e fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0x14505f6e request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x14862649 snd_soc_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1487b96d pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x149d1b00 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x14a8bcb2 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x14c732fc __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x14cde349 __class_register -EXPORT_SYMBOL_GPL vmlinux 0x14ddd613 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x14ef7136 __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x15047db2 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x1510c9e3 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x1510d7d5 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x1524426d relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x15353f78 user_read -EXPORT_SYMBOL_GPL vmlinux 0x153a9288 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x153ef402 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x1566e0ac snd_soc_register_codec -EXPORT_SYMBOL_GPL vmlinux 0x157336d4 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1594511b ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x15a70951 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x163a9607 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x163fa874 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x1644e175 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x164ff07b fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x16502d9c rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x1667f625 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x16702f83 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x168aeb55 snd_soc_unregister_codec -EXPORT_SYMBOL_GPL vmlinux 0x168fe0ab devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x16af16af mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x16d55cf8 pin_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x16fb5921 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x1717a05d omap_get_plat_info -EXPORT_SYMBOL_GPL vmlinux 0x1717f2ca unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x171e3d7b ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x172ed19c ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x17584d4e pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x1766aacf omap_dm_timer_set_source -EXPORT_SYMBOL_GPL vmlinux 0x176a48a9 tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x178557ac queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x1789ea16 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x178e92a4 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x17b17f9e watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x17b9b079 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x17d8f757 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x17e9fad6 ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x180ae539 mtd_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x18540ea9 devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x187a5ea5 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x1897e478 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x18a1cd08 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x19098d24 sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x191d6b18 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x192441c6 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x1927a4c9 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x194c586b omap_dm_timer_write_counter -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x1950b6a7 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x1985a698 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x198b6ba7 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x19928635 mv_mbus_dram_info -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19b2a03a __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x19bda1fd tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x19c24077 mtd_point -EXPORT_SYMBOL_GPL vmlinux 0x19d7ce30 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x19ec87ba get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x19f1ff34 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x19f7977d phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x1a134ad6 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x1a24d614 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x1a961e02 pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1a9e83bc snd_soc_debugfs_root -EXPORT_SYMBOL_GPL vmlinux 0x1aabe552 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1ad3eabc da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x1add1486 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x1ade903b of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x1ae76bea blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x1aeb56c9 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x1b170e98 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x1b2f9016 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0x1b325515 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x1b3261e0 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x1b73358e crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1bb5fc26 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bc7a9ef xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x1bd21f49 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x1bda79c6 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x1be009f4 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x1be8f6cf to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x1bec1aac dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x1bec83f3 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x1bf68b09 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL vmlinux 0x1bf8e229 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x1c278d94 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x1c536625 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x1c5486b6 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c587983 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c6b7150 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x1c716881 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c9f70b7 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x1cc47132 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x1ce74e82 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x1d09c80d pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x1d0b3a21 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x1d0f9e7b rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d6c996c phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x1d9fcad8 omapdss_of_find_source_for_first_ep -EXPORT_SYMBOL_GPL vmlinux 0x1dae4357 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1dccb045 snd_soc_bytes_info -EXPORT_SYMBOL_GPL vmlinux 0x1dcd7742 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x1dd400c8 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x1de83f77 tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x1dfb5cf2 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x1e02bd3a dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x1e1dd066 wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0x1e4acae4 of_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e66e802 swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x1e6a8f48 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1e7e547c crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x1e80aaa2 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1e891477 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x1e8e20c5 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e90c35e scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x1e90d576 __mtd_next_device -EXPORT_SYMBOL_GPL vmlinux 0x1ea1ddf7 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x1ea7f49d usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL vmlinux 0x1eb12237 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x1eb8027b irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec989aa usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x1eddfdff kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x1ef3b59a kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x1ef44bb3 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x1f0f1c40 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x1f21785a cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x1f3ba563 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x1f6806f9 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1f832206 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8b1de3 of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f989617 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL vmlinux 0x1fa72589 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x1fac2c87 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x1fece727 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL vmlinux 0x1ff6c8b8 perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0x2005976b ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x20080b53 vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL vmlinux 0x202fd314 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x20681abf regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0x206ed846 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x207380f9 cci_ace_get_port -EXPORT_SYMBOL_GPL vmlinux 0x2075781d blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0x2097cb62 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x20a771f5 extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x20b0a759 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL vmlinux 0x213bf568 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x216700db input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x21705bf5 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x2182d647 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x2191db7e snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL vmlinux 0x2198ebac bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x21a21890 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21febf58 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x220f2afd device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x22147683 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x226a674d atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x22a89b8e __class_create -EXPORT_SYMBOL_GPL vmlinux 0x22df50f1 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0x22eed644 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL vmlinux 0x22f1ef84 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x230de898 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x23129e3f omap_dm_timer_set_match -EXPORT_SYMBOL_GPL vmlinux 0x23153f0e ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL vmlinux 0x231da004 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x2362ea07 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x23729e64 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x238222c9 ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0x23861419 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238aef0d add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x2395faab ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23a8bc13 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x23abd4e8 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x23c69dfb ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x23cc6511 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x23d4b945 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x23d6e367 __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x23e0c4c0 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x2406d59e usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x2413cb29 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x241918f0 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x2441a435 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x244c1899 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x24584f86 user_update -EXPORT_SYMBOL_GPL vmlinux 0x2464a8f5 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x246c85d0 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2492fa6e ahci_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x249308dc register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x249bf56c snd_soc_add_card_controls -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24af4e09 omap_dm_timer_write_status -EXPORT_SYMBOL_GPL vmlinux 0x24c04d89 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f6606c dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x24f80317 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x25006e02 seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0x25030f33 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x25302a82 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x25482ac8 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2550d57b sm501_unit_power -EXPORT_SYMBOL_GPL vmlinux 0x255681ba dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x2565ad62 snd_soc_get_strobe -EXPORT_SYMBOL_GPL vmlinux 0x2576aefd devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x259462c8 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x25ba78c9 snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL vmlinux 0x25c03bcd md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x25c3f200 usb_gadget_map_request -EXPORT_SYMBOL_GPL vmlinux 0x25c9fccc ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x25e4fa8c btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x25f2a1ef kvm_get_dirty_log_protect -EXPORT_SYMBOL_GPL vmlinux 0x26018911 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x261006c7 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x261098a6 of_display_timings_exist -EXPORT_SYMBOL_GPL vmlinux 0x26138249 omap_dm_timer_trigger -EXPORT_SYMBOL_GPL vmlinux 0x2629580e pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x262dc844 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x262f63a5 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x26355ff1 blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x2658e485 md_stop -EXPORT_SYMBOL_GPL vmlinux 0x265af428 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x266b789b gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x266f7615 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0x267b4f32 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x2697b17e devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x26a75796 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x26adb815 thread_notify_head -EXPORT_SYMBOL_GPL vmlinux 0x26b2626d xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c133dc pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26c8b665 cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26e02ba4 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x2745a3f9 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x275bbaf2 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x2776b100 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x278023f6 of_irq_parse_pci -EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x27965abc mtd_erase_callback -EXPORT_SYMBOL_GPL vmlinux 0x27a3cd98 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x27ac6fa8 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x27b3aaca irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x27fed85b ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x28127d43 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x28289090 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x28289784 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x2868a361 ahci_platform_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x28722874 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x2885e47c blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0x2887afa2 of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x28d5eb1a dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x28d947bd kvm_get_dirty_log -EXPORT_SYMBOL_GPL vmlinux 0x28dc0632 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x28fd1bca snd_soc_dapm_sync -EXPORT_SYMBOL_GPL vmlinux 0x28ff499c crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x290d47d4 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x290f435e __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x2913edc7 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x2921cb1a pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x2980da40 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x298f1232 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29a50286 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f6e37b rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0x29f7e169 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL vmlinux 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL vmlinux 0x2a030f5b ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x2a05e69a vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x2a0a16c3 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2a0e5478 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2a1959ed __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x2a1c2730 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x2a1e7556 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x2a4187f2 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a816a05 dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0x2aae43f7 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x2ab9520a omap_dm_timer_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x2abdcb85 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x2ac6edba kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x2ad9d326 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x2adfc714 page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x2ae34b4b list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2af2e4b1 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x2af53110 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x2b08e881 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x2b106d72 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x2b14bb60 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b28beb4 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x2b2ca6c8 of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x2b2ea84c clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x2b3345c1 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2b5c59af apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x2b8a132b fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b98ecba devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x2bab0ccf __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x2babe81f __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x2bade703 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x2bcf679a regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x2bd045df regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x2bdf3d0e ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x2bee957f sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0x2c06c723 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x2c07e676 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c3f29a8 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x2c6194a3 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x2c76b6f9 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2caebccd platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x2cdb751f crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cead0e6 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x2cee5f19 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x2cf3e12b tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x2d14d93f ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d1c092c bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x2d1d6146 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x2d34cf32 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d459322 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x2d49649f devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d8f772e devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x2dad9b05 register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x2db898ba wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x2dcc544a sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x2dd1d32c ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x2dd3a384 mtd_del_partition -EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x2defa1db rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x2df7a597 of_pci_find_msi_chip_by_node -EXPORT_SYMBOL_GPL vmlinux 0x2e10b18f virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x2e1ea43a omap_dm_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e278f88 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x2e2c0523 snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e2f2106 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x2e34925f trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x2e49da13 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x2e6588c4 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x2e6da46e sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x2e742b00 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x2e8134a7 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x2e91924c to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x2e92e93b blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x2e9670c0 pl320_ipc_transmit -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ebfefbf tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2eca977d device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x2ed087ed usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x2ee2c08c max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x2eead55d sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x2ef4d512 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x2ef6b5bf smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x2efb0cfb regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f1b0e95 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x2f28625a snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL vmlinux 0x2f2ab34d sm501_find_clock -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f59cf73 vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0x2f59fe6d handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x2fb85805 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x2fc7b541 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x2fefffb6 genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x2ffc8fe9 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL vmlinux 0x30303ca4 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x3055e254 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x307e4a82 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x30818be9 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x3087144b gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x30a4d32c pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x30d1a683 regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0x30d3839f regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x30dee7f6 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x30eedaac devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x310f939b snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31402020 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x3145bf2c power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x31468175 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x3158bc22 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x3166c09d sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x3166fa65 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x31727f88 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x31743b56 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x3183a32b usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x31870ceb crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x318a91cc sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x319a38bf fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x31a24f62 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x31bffa27 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31cbbd1c pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x31da1966 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x31e51def bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x31fc665a usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x3223eff4 nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x3281120a wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x32988497 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x32aa958a blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x32b342ae clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c0aa46 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32cdb60d ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x32ceb3b3 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x32e09c5f nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x3302ef8c ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x330b89b7 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x33115bda ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x33526530 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x33730a7b ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x3391fd7a pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x33a2445b usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x33bfb9a8 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x33ce3d68 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x33d85171 thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x33e04745 ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0x33e30b2b i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x33e5e35a clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x33e64915 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x33f166fe snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0x33fc6ef4 dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x341643ba omap_dm_timer_modify_idlect_mask -EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x345cb553 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x3499f996 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x349d81a4 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x34ed0a04 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x350e4a88 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x35150d73 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x35586356 kvm_init -EXPORT_SYMBOL_GPL vmlinux 0x355b83d2 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x355c7391 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x355cb9e9 inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x3564ccf9 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x358c6278 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35ba0f8e raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x35c67035 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x35d0c16e arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x3602335c find_module -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x3622929f iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x36608e34 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x366f50be get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x36724266 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x36955db9 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a61a92 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x36b30c3a virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x36baf170 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x36d89541 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x36e1511c ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0x3700a989 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x37076028 kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x371a9b1e thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x374b18e1 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x37508211 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x3762cf4f thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x37685c94 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x37c8c659 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x37c96994 snd_soc_read -EXPORT_SYMBOL_GPL vmlinux 0x37ffded5 of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0x381b73a2 ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy -EXPORT_SYMBOL_GPL vmlinux 0x38675d2e sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x38688c1c sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x386b6a44 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x387c7cd9 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x38e177ec usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38f784e2 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0x3921f1db snd_ac97_reset -EXPORT_SYMBOL_GPL vmlinux 0x395e0bce regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x3971ac6b nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x397b4719 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x3991d1a8 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x39a0489e iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x39b314bc cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL vmlinux 0x39c119a7 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39d37c00 snd_ctl_activate_id -EXPORT_SYMBOL_GPL vmlinux 0x39d7d9d5 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39fa9ed4 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x3a13c5e8 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a372ebc snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x3a3d3594 clk_register -EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a722c70 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aa946a5 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x3ab409f2 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3adeb83a tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x3ae1ba32 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x3b284dc6 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x3b28c8a2 mtd_block_isreserved -EXPORT_SYMBOL_GPL vmlinux 0x3b42814f pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x3b459fdb regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x3b478df2 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x3b4c1de5 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x3b4fc369 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x3b54922a sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x3b5653a8 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x3b65db4b dapm_clock_event -EXPORT_SYMBOL_GPL vmlinux 0x3b78b28f inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x3b87394b __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x3b8ca8db devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x3baeceaa show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x3bbc816c led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x3bc6b0ac __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x3bfbf744 ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x3c0cf717 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x3c10405f pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x3c250376 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x3c2a488f sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x3c2a5873 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x3c2dee4d snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0x3c56869e bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x3c770c7a ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x3c831441 arm_check_condition -EXPORT_SYMBOL_GPL vmlinux 0x3c91e872 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x3cb1f7ee cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x3cbf9524 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd671b5 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x3cde98e4 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x3cf5dd36 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x3d00e64c dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL vmlinux 0x3d16f4d0 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x3d1ca8ab fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x3d2ba538 crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d486fd1 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x3d512b9a blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x3d90ecf5 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x3d9c852c bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x3da0cec3 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x3da37b25 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x3dbf82d6 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3dfc66a8 blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x3e0eb5d6 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x3e0f1667 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e2e8d10 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3e3ddaa2 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x3e410620 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x3e4817c1 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e60a34f devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e9d4a0d sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x3ea2bdfc bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x3ea6bce1 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x3eb26369 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f1002ea pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x3f6602ca sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x3f664fa5 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x3f7817c0 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3f83e6c2 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x3f868e19 omap_dm_timer_set_prescaler -EXPORT_SYMBOL_GPL vmlinux 0x3f9c6ec9 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x3fa5123d regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0x3facfbf6 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x3feb8aa9 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3ffae087 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0x40128853 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x402bbc7a pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x40560e27 dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x4061be97 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x40861a28 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x40905a7a devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4098be36 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x40abfa54 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x40adde33 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40bfae54 of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40d48c9e device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x40e2b74c devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40faf7d6 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x41100f21 sm501_misc_control -EXPORT_SYMBOL_GPL vmlinux 0x411d3d86 spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0x411fc7ec kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x4124e9d2 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x4128746b stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x413883f2 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x414b9c7a regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x4154d3b9 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x4162d05a ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x4163c1aa mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x41682f4b pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41b5e6d1 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x41b9d499 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x41c5274c __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x41c94bcd register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x41ca9a17 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x41cbcb1e usb_del_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41d89bea usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x41db7d64 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x41f47c5f xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x4211c687 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x421478c7 irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0x42217ab5 regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0x422e2736 kvm_clear_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x4239afe8 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x425f7576 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42aaa3dd ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x42b558d4 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x42b6dfc2 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x42b9a498 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x42e3c178 ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0x42e8be5e bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x42f6088d sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x4309c4dd balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x43327e78 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x4336376e of_console_check -EXPORT_SYMBOL_GPL vmlinux 0x433a5367 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x4346ba04 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4350e63a ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x436b3c41 ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x437b5b2f set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x43842bce inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x43903086 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43a77469 spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x43a8236f pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x43a91498 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x43ab3340 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x43afcc69 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x43bf5e27 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x43cae50c regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x43fc6371 bgpio_remove -EXPORT_SYMBOL_GPL vmlinux 0x440cd0d4 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x444ad24e devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4450d848 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x4475c274 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44bff7b3 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x44e770d9 of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0x44ee2758 fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0x44f0d506 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x44fecf2d to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x45070e68 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x453c0de8 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x454d0dac mtd_is_locked -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45840e30 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4584c4fb virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x4586a717 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x45ab1b7e snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL vmlinux 0x45b6980b page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x45ba1367 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45ef9da1 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x45f39301 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x45f5022f of_pci_msi_chip_remove -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name -EXPORT_SYMBOL_GPL vmlinux 0x4614fa4b unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x46166d1a powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x4629c569 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x4641d7e3 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL vmlinux 0x46492394 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x4650d9b6 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x46595f09 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0x46622188 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x466544df spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x466925d6 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x466b73a7 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x466edaed balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x467d5361 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46a32e96 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x46d93464 __of_genpd_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x46da956f gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0x46e456d4 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x470c8ab2 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x4719545f spi_async -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4731d7e3 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x476220eb fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x47676c71 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x47682dfa crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x4776b116 bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0x477ba8b2 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47b0d809 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x4801f3ef device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x480f63c2 rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4814a62b ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x48158e83 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x4818b5ac ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x481b3e7d __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x4847b8a8 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x484ce5d9 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x4869c9d0 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x4871fb7c __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x487f4407 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x488699c9 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x48a47c78 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x48be48f2 security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0x48cb013a pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x48e93fba omap_dm_timer_set_int_enable -EXPORT_SYMBOL_GPL vmlinux 0x48f37188 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x48f7c39d dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x491ed8af vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x4941bf24 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x496ce8a6 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4978cab3 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x497aa719 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x497c14cc ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x498f3cc4 gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x499cd3d9 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x49bfee19 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49eacb78 omap_dm_timer_set_pwm -EXPORT_SYMBOL_GPL vmlinux 0x49fc7572 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x4a04e0a2 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL vmlinux 0x4a2f965b blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x4a356786 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x4a40bb8c blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a613d4a udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4a63f3b2 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0x4a69f842 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x4a766a80 max_gen_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x4a7d271b pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x4a7dc00b platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x4a934fc1 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x4a94185a pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x4a97e17e phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4a9b6ace snd_soc_unregister_card -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ab1a16b usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x4abc65c6 ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0x4ac0e639 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x4b11e5ec ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x4b28c6ec omap_dm_timer_request_by_cap -EXPORT_SYMBOL_GPL vmlinux 0x4b41522d tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x4b49d60b sdhci_remove_host -EXPORT_SYMBOL_GPL vmlinux 0x4b5c74f7 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x4b7c8e00 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0x4b7d200a trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x4b9108f7 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x4b98c891 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4b9fe48a map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x4ba282c1 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x4ba57024 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL vmlinux 0x4bafcdd8 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x4bb3d63a crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x4bb7b444 gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x4bb81dbb ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x4bc62472 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x4bca1012 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x4bca6f19 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x4beae10e device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x4bf949f0 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x4bfe693d ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x4c025594 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x4c079a11 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x4c1ac1a1 skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4c26798b cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x4c3c6376 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x4c47ec15 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x4c4ec507 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x4c59f6d4 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c81dcca pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4c81fefd device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x4c8ca59e regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0x4c977c73 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x4cbb9a07 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x4cbf4089 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x4cc6f143 soc_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0x4cd56503 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x4cdbef96 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d26cef0 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x4d35332c dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x4d358be6 use_mm -EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4d39cc44 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x4d5217be ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0x4d5dd62a __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x4d76f180 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x4d89b46e inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x4d9287df usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x4d971bea pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x4d9bb018 clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0x4db288f1 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4dd1be32 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x4ddbf562 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4df87243 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x4e0a50b8 tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e1f79e1 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e27c04a devres_find -EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x4e38afe8 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0x4e46e87e relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x4e50fb1b tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x4e5b3cd2 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x4e7538f1 ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0x4e899dcf i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x4e90e426 pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x4eaf1ba7 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x4eb2cc59 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x4ebb581e blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x4eddc89e virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f072d0e dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x4f074117 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x4f121745 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x4f19302f pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x4f1d1e0a da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x4f277f94 shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x4f2b56df __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x4f2c139d each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f480057 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x4f6463bf is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f91de39 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fa59b1c crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x4fad154c regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x50143464 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x503003d1 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x50345ca5 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x5079e7bd omap_dm_timer_request -EXPORT_SYMBOL_GPL vmlinux 0x507a4abd nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x507d42f8 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5080c352 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x50901b22 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x50912986 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x509f15d3 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x50c4da79 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50cbd0bb ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f205a1 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x50fa9880 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510d3b40 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5153c2ef virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x51540180 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x51615c35 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x51656403 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x51826f26 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x51855f81 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x51ab89e5 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x51b0dc8a skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x51bb789a ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x51d745a7 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x51f37e85 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x5200c3b4 usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x5205ec94 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x5208e43b sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x52101b9d cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x5238f934 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x524673c2 omapdss_of_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x5249cf85 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x528c80e4 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x52b447b8 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0x52cec7cc arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x52d46f12 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x52ea5ded modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x52edfb30 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x530b2d59 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x5313db61 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x531b2900 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x534a83bd omap_dm_timer_free -EXPORT_SYMBOL_GPL vmlinux 0x53529e9f power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x5361d901 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x53752f59 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x537dfb64 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x5385a417 pinctrl_utils_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0x53869f11 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x539e1066 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x53be0382 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54251abd irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x542724cd usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x5432f55d usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x543ce17a regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x544aab61 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x54576c31 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x545fec86 percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x54659e2f pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x547c2568 __cci_control_port_by_device -EXPORT_SYMBOL_GPL vmlinux 0x548d1b54 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549f3140 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x54b05cae kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x54b9cc10 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x54e4ff91 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x54f9a03d inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5529ef2e snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5555b0c7 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x556000b5 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x5567a8c9 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55a27ffb iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x55ae827b tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x55b6da8f sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x55be7ed2 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x55cd2096 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x55d68219 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x5612e7a7 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56261738 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564b4aff swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0x56569a7d l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x565de5a2 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x56672167 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL vmlinux 0x56731902 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x567c5b26 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x569bc484 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL vmlinux 0x56d5604c serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56f13f19 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x57082cbf wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x575b617f attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x575ca08c get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x5769b9e8 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x5777ab92 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x578b7781 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x578edac2 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a7bcf8 skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57cf4bcb __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x57ecb292 sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0x57fe8b37 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x58063ede srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x584ba479 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x5853e91c inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x5882a9ab __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0x589919fa scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58a27f6d regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x58c4dbe7 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x58e303e6 x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x58e7e230 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x58ed0205 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x590ab735 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x59238683 pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0x593e5778 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x593e8d4e usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x596ab382 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x5997d2e4 kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0x59aed670 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x59bc76a3 usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x59bde460 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x59c1c30f pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59fdfc93 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x5a009c03 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x5a078c26 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x5a521aec gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a7bd420 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a802a53 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x5a8673c5 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x5a8f213c cpdma_ctlr_eoi -EXPORT_SYMBOL_GPL vmlinux 0x5ac7ded7 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x5acf6567 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x5ad66bd6 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x5ae668c7 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x5ae9b70d dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x5aece601 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x5af293e2 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x5afa7f6c of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x5b4b49cd usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x5b4b56be unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x5b611070 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x5b6362c0 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0x5b6ffe52 of_reserved_mem_device_init -EXPORT_SYMBOL_GPL vmlinux 0x5b7308f3 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x5b732275 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5b91b16a snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0x5ba938af fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0x5bad1075 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5bbbddd2 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bdd57bd __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x5bec23c9 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x5c03231a pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x5c166d44 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x5c2fe4a5 cpdma_chan_stop -EXPORT_SYMBOL_GPL vmlinux 0x5c369588 raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c603676 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x5c651058 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5c84dba6 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cb89b6a thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5cba5b11 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5cdeb682 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x5d06a387 shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x5d0e3213 arm_iommu_release_mapping -EXPORT_SYMBOL_GPL vmlinux 0x5d0ec81d usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x5d0fac13 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d153a7a hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x5d294294 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x5d30525d devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x5d3db9a9 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x5d433a37 crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x5d582a5d crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x5d6d72b9 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x5d6fafb8 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x5d81e8d3 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x5d8be662 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5db12537 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x5de2d2e2 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x5deea921 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x5dfb25c9 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e01ea04 mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x5e06525f metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x5e2ce14f crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x5e45d198 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x5e4894d4 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e774786 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x5e80e586 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x5ebc3f72 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x5ee08939 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x5ef72e33 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x5efe4cc6 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x5f0e7dd4 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x5f1656e1 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x5f2c64c8 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x5f3a5514 of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0x5f3bd115 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x5f466090 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x5f46f166 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5f615846 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x5f7fb048 __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x5fade359 snd_soc_unregister_component -EXPORT_SYMBOL_GPL vmlinux 0x5fb7b659 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL vmlinux 0x5fc028c0 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x5fc21f47 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x5fc2bef1 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5fc61a3a posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0x5ff53549 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x5ffb8f79 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x600503d8 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x6009d678 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x6028b890 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x60682e3d xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init -EXPORT_SYMBOL_GPL vmlinux 0x607bd17d scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a86817 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x60a8d7f4 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x60d3b8ec snd_device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60fa8d2c cpsw_ale_control_set -EXPORT_SYMBOL_GPL vmlinux 0x610b0789 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x61452225 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL vmlinux 0x61602d5f tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x61814acc spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x618968c4 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x61a1af9b crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x61a40dc3 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x61a9ba89 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x61ae574a max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x61d8db66 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x62058e2d of_get_nand_bus_width -EXPORT_SYMBOL_GPL vmlinux 0x62080f84 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x620a4108 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0x6210e8ac ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x622ded01 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x623db8de relay_close -EXPORT_SYMBOL_GPL vmlinux 0x6252fddc omap_dm_timer_get_fclk -EXPORT_SYMBOL_GPL vmlinux 0x62b0fe1d serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x62b9d3d1 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x62c5c2a4 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x62c8226e attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x62fc74b4 mtd_lock -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x631f2cfa ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x632e35a7 snd_soc_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x6379bfdf usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x63802466 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x6399091d ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x63a49542 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0x63b9e6b7 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x63c9a3b9 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x63de7441 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x63eb74ad usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x640a9c41 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x641232f0 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0x642ac632 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x643b1039 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x6461b65c tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x646bdf30 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6478e7fc snd_soc_platform_trigger -EXPORT_SYMBOL_GPL vmlinux 0x648db9ed bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0x648f1792 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL vmlinux 0x6498685a tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x64afb400 of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x64bc04b1 gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x64be8fff virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x64ccff37 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x64d23e37 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x64da243b usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x64e4b27c sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x64f1816a regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x651d1461 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x6528f044 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x654076ce regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x65427d72 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x655fcb8c icst_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x6567fd71 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x658c7229 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x65a79cb8 kvm_vcpu_block -EXPORT_SYMBOL_GPL vmlinux 0x65adbe1a shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x65b17a0d pm_genpd_syscore_poweron -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65e670d5 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x65f6c9a4 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x65fec26d ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x664b3cbe device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x66686986 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x6668dd1e of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x6670eb84 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0x66c6b3fe tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66ce752e ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66e96085 swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0x66f4e9ab arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x6704f1af device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x670683c4 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6716fb40 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x671fa490 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x67212178 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x673c43b1 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6742788c subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x67785091 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x678529c1 snd_soc_dapm_free -EXPORT_SYMBOL_GPL vmlinux 0x67860ee5 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x6788f958 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x678b2ea8 crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67a19fbf regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x67a557c5 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x67a9b656 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x67acd368 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x67c1704b pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x67ce88c3 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x67f4d698 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x6828d577 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x687c922d amba_ahb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x68a5ba6a snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0x68d87170 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x68e47b2c cpdma_ctlr_destroy -EXPORT_SYMBOL_GPL vmlinux 0x68ea5486 snd_soc_bytes_put -EXPORT_SYMBOL_GPL vmlinux 0x691c63e3 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x691f36a8 cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x694be42a usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x69596558 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x6970d724 napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x699393d0 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x69a85d2a get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x69c0f53b tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x69ca011e serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x69e2e5a1 of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x69f792b8 of_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x69ff6809 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a52f711 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6adda79b bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x6af56757 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x6b1f8c71 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b4f6765 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x6b708cf6 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x6b73fd73 nl_table -EXPORT_SYMBOL_GPL vmlinux 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8621d2 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x6b8a6186 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x6ba37299 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x6bac742b __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x6bccd523 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x6bd19361 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x6bf96a69 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x6c02c8a4 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x6c047140 pm_genpd_syscore_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c10c9db trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x6c1e8ce4 amba_ahb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0x6c26b848 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x6c380700 regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0x6c438efd ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x6c44a90a blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c51dd48 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x6c522d0f mtd_unpoint -EXPORT_SYMBOL_GPL vmlinux 0x6c5f1bd8 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x6c62d293 snd_soc_resume -EXPORT_SYMBOL_GPL vmlinux 0x6c76f04b gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x6c7994e9 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x6c839fc8 register_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6c913050 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca6103c reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6cbdd8ec led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x6cca1727 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cdbd0b0 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0x6ce41392 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x6d1135fd tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x6d2af283 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d424356 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x6d4c637a debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x6d4e0b3c power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x6d5d1456 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x6d80e8fc omap_dm_timer_read_status -EXPORT_SYMBOL_GPL vmlinux 0x6d865498 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x6d92e0b4 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x6d9d2fe1 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x6da9e0a5 bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x6ddefc1b netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e144d4c pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x6e363711 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x6e3b2de0 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x6e5d7152 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x6e5e0932 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x6e7909f2 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e8bd37c snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL vmlinux 0x6e8ed364 snd_soc_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0x6e91dd5c dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6e95b433 ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0x6e961b24 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x6ea3fa94 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x6ece11e1 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6ed4620c fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x6ee8e119 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL vmlinux 0x6eec18f6 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x6eedecf3 irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x6f00d3e6 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x6f07a716 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x6f0840d2 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x6f154795 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x6f1e3e98 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x6f1e51bc scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f2b4af7 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x6f33fe89 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x6f3b4bb8 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x6f5a2634 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x6f5c638f kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x6f6d4396 mtd_add_partition -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f9b00b8 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0x6fa2a3ab sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL vmlinux 0x6fd95d9c posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x6fdbd09f devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7000d6ca i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0x70012b3f __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x700e5688 blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0x70151900 dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0x702c861b usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x7078ae91 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x707e165c pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x70938d4e ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x70ad4acb tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x70afc307 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x70bdad83 __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0x70c3bb19 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70e103fe kick_process -EXPORT_SYMBOL_GPL vmlinux 0x71008581 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x712a8958 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x712dcdb0 fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0x71361150 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x71363f5c clk_debugfs_add_file -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71728f22 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x7185891d arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x7185e6c9 mtd_read_oob -EXPORT_SYMBOL_GPL vmlinux 0x7191fdad regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71c89fab unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x71ca7153 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x71e188f8 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71f4fda9 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x71f8947e cpsw_ale_dump -EXPORT_SYMBOL_GPL vmlinux 0x7220e2e7 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL vmlinux 0x723fe396 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x724b1f37 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x72540c25 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x725e3ea8 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x72635aeb ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x7279158e __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x728864b3 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x728bb648 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x7291019b __cci_control_port_by_index -EXPORT_SYMBOL_GPL vmlinux 0x72a1445d __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x72b53a02 omap_dma_filter_fn -EXPORT_SYMBOL_GPL vmlinux 0x72c90843 mtd_read -EXPORT_SYMBOL_GPL vmlinux 0x72cae35b of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x72d4a115 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x72e18002 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x7304ed97 mmput -EXPORT_SYMBOL_GPL vmlinux 0x7308ffc7 __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0x730bd0c7 asic3_write_register -EXPORT_SYMBOL_GPL vmlinux 0x731eeaee ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x73219f8a mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x732a2380 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x73616454 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x737541bc devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x738a4192 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x738c3276 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73ac5849 sdhci_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x73bbd7a1 omap_iommu_save_ctx -EXPORT_SYMBOL_GPL vmlinux 0x73c0a5c5 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x73c59b88 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x73c5b99e nand_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x73c6dc22 of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73eeac03 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x742c457a da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x743f3739 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x74747ee0 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x7476a145 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x74919cc6 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x74a68c6a snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL vmlinux 0x74b04515 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74ba0404 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74cc5a61 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x74cd53a7 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x751fdd9f usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x753f274a kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0x754371d0 usb_string -EXPORT_SYMBOL_GPL vmlinux 0x75822104 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x75842637 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x75937c00 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x7594518d trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x75a631e5 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x75a8d2bb tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x75b0c25e blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x75b9b2f6 rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0x75bca5e3 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x75cbd85d splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75ffb402 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x760113d6 virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0x761193f2 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x7618e6a8 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x761e0aca btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x7630dd96 omap_dm_timer_set_load_start -EXPORT_SYMBOL_GPL vmlinux 0x76345b40 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x764928a2 cpdma_chan_create -EXPORT_SYMBOL_GPL vmlinux 0x765596ea sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x7657d843 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x7660d89f pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0x7671f23a regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x768a3392 of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x76a81764 mtd_writev -EXPORT_SYMBOL_GPL vmlinux 0x76b75f26 __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x76bd0b51 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x76bd3278 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x76be6937 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76e5403d nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x7716723b sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x771c520b vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x772a937b snd_soc_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x774ae55f regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x776c1ff4 rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0x7777aec7 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x77805ebb power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x77a41c12 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b49d59 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x77cc685f pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x77e0d6e2 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x7808c444 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x782938b0 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x7846540a regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0x784ec71b rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x7858953a regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x787ae079 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x788ad990 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78b38f4d trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x78bfdfbc devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x78e06e5b of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x78f41101 kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x78f6116b virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x78f7a638 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x78fa74e4 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x7941bab2 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794a7b87 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x795595f4 cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL vmlinux 0x79619eae __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x799b4855 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x79ac221a snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x79b364a4 cpsw_ale_control_get -EXPORT_SYMBOL_GPL vmlinux 0x79b759d1 kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0x79de96ee of_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79f659ac __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x79f9f698 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x7a689655 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x7a7b35b8 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x7a8074ca pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x7a8a4726 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7a99b2f3 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x7a9f26f1 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x7aa59966 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x7aaf71b3 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x7ab404b3 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x7abecc25 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x7ac1b18e ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x7afb67eb ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x7b025314 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b226ec2 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x7b32a7ed ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0x7b341496 blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x7b402e71 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x7b475251 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x7b6230aa del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0x7b7078d9 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x7bbf5ec7 of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x7bfd5f12 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x7c1ced26 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x7c37d3b7 mtd_is_partition -EXPORT_SYMBOL_GPL vmlinux 0x7c3e707b snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0x7c3f8bb1 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7c586706 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL vmlinux 0x7c6a49ce unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x7c981cc2 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7c9cca56 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x7cd6abbe regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cdd06c4 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf499ce of_fixed_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d093d56 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7d45e7fa sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x7d536f7b devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d776e72 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x7d795022 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x7d949319 sdhci_set_bus_width -EXPORT_SYMBOL_GPL vmlinux 0x7da80026 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7db3ff15 devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0x7dbb381b inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x7dbf53c8 of_genpd_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x7dd430c2 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x7dd5b030 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de3d92b tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x7de950ac fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x7e0f75d8 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x7e171b4c crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x7e233ee7 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x7e2843e5 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL vmlinux 0x7e3a9f55 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e671dca dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x7e75b5d5 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7ea6a79a ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x7ea820f9 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x7ea880f6 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x7eb2360e mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x7ec05505 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x7ed68941 asic3_read_register -EXPORT_SYMBOL_GPL vmlinux 0x7ef5c041 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x7f0f3c79 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x7f1873d2 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x7f19bf9c key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f5563cd md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7fb4bc0f blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x7fbb5711 probes_decode_arm_table -EXPORT_SYMBOL_GPL vmlinux 0x7fbbfdbc clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x7fbe31cf relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fc59e57 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x7fce7c28 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x7fd07cc4 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0x7ff1f184 usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0x800d124b wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x8010d2c6 percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0x8016e046 dapm_regulator_event -EXPORT_SYMBOL_GPL vmlinux 0x801fb9f8 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x803c35fc pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0x80513807 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x80698a68 pci_ioremap_io -EXPORT_SYMBOL_GPL vmlinux 0x807a3fa7 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x809e3d41 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x80b02e45 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80cbd1cb i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x81376439 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x814fb30e cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x8156497e unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x8167ffba crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0x817dccd1 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x8196ad09 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x81997ec4 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x81acbca7 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x81f94716 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x81f99b76 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x8207076e usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0x8223d04e snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x823895d6 stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x82459466 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x824dfa31 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x826621bd regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x826aebbb dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x826f7fd5 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x82b285fa srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x82b33376 devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x82d2f4be __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82dadf52 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x82dd6e42 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x82eb57ce gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x83028298 cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0x830b48e5 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x831c874d nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x83313602 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x8343232a do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x8347e535 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x837b1da3 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x837ccec5 extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x83840645 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x83bf0f25 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x83f9548f dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x83fd4cbc snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL vmlinux 0x84042bc8 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x840e0d97 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x84412add register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x848bd0fb call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84ba3feb get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x84d98f0b netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x84db8d35 arm_iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x852e2174 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x85351eec xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x855cc48e __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8565bc03 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85de6975 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x85dee474 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x860c6e33 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x862b9816 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0x863fdab7 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x86896313 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x86afc572 of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x86e0a44f usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x86e2817b xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f494f6 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x86fe60e2 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x87056d54 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8717df8b __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x871877a2 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x872078cc crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x872e2c6d ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x873c7481 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x875472ca platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x87967752 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x87a5ca27 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x87a74eee blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x87bb7e33 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x87bf0091 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x87d168e0 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x87f28275 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x87fae600 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x87fe34c5 pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0x88071cbf device_move -EXPORT_SYMBOL_GPL vmlinux 0x880eb869 mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x884cb3b2 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x8853806c skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x8871be89 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x888a41b2 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x8894a62a snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0x88a094f9 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88c8da9a inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x88cb2b63 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x88e829aa usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x88ed9e46 devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x890683b0 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x89171d9e driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89270c72 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x894f24bd tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x895e5b00 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x89682da7 __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x897ceee1 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x897daa2a arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x8a0fb1ea virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x8a1da485 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x8a3283ea fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x8a3d4f42 swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0x8a470637 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x8a470fef adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x8a7222ed dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x8a886f8c fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x8a8996e7 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x8a8fe35a __of_genpd_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x8ab3b541 regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ad82da9 otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x8adb19ee gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x8aec9745 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x8af23b81 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x8af36386 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x8af72832 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b33e493 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x8b41f519 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x8b619411 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x8b699b6b usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x8b775d3a __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x8b7dd2e6 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b8a8ce4 usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL vmlinux 0x8bb3fab5 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x8bc07773 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL vmlinux 0x8be626ff skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c06a231 snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL vmlinux 0x8c22bfd1 regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x8c2fea3c ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x8c3926d7 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x8c5ae2cc digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x8c62270a scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x8c62755e adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c6c11c6 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c8be2a1 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x8c962942 ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x8c9a9b37 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x8ca46bf8 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x8ccfa390 of_overlay_create -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8d05cfcc of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x8d17f28d sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x8d19ceba snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d2696b2 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x8d2990b4 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x8d7c98a4 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x8d9f6ce8 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL vmlinux 0x8dc7a2c8 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0x8dcb2038 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x8dd42b69 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x8dd845eb snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0x8dda0292 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x8e049b15 uniphier_pinctrl_remove -EXPORT_SYMBOL_GPL vmlinux 0x8e0b52d5 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e30c265 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL vmlinux 0x8e3540f5 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x8e42e821 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x8e49cf1f __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x8e5a7520 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8e7894bd __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8eac864c dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x8ec13642 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL vmlinux 0x8ec36cf8 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x8ecc3c80 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0x8ed88291 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x8ef3469a iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x8ef64477 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x8f06a5f5 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0f022f rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x8f24ae17 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x8f2a8d9a tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x8f58474e tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f77afd5 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x8fa453ad pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x8fa58f61 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x8fb69a3a mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8fb7e1d5 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8fe074c7 snd_soc_platform_read -EXPORT_SYMBOL_GPL vmlinux 0x8fe9a2af sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x9006dcac snd_soc_component_write -EXPORT_SYMBOL_GPL vmlinux 0x900a89df crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x9012c075 amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x90414d0e get_mtd_device_nm -EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x9059878e disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x906145ec virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x907fb38c get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x909ea758 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90a16ff9 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0x90b22b03 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0x90b53d5c omap_dm_timer_request_by_node -EXPORT_SYMBOL_GPL vmlinux 0x90c402f3 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x910c7651 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL vmlinux 0x914978fe cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x91618352 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL vmlinux 0x91671cc0 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x916dd02a irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x917e9588 rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x91bc6d1b musb_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91d7007f crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x91d8d6e7 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x91dc47c6 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x91e9c31e led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9200e8ff xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x923fad7f sm501_set_clock -EXPORT_SYMBOL_GPL vmlinux 0x9244714b snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x924d4cda cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL vmlinux 0x9255cd5e sdhci_free_host -EXPORT_SYMBOL_GPL vmlinux 0x92560b42 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x925e7808 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x92652448 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x927533e1 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x92780d16 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x9291ec05 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL vmlinux 0x92a46963 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x92accbf3 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x92bb15f0 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x92d2de76 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x92d31d88 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x92d60d00 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e76999 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns -EXPORT_SYMBOL_GPL vmlinux 0x931a6cce __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x931c4f50 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x931dfd10 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x93316cce aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x934d189a sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x9355efbd sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x93911418 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x93b45d58 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x93c405a1 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x93c5a19d wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0x93d3b951 of_fixed_factor_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x940704e8 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x94077f3a cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x94152e3a flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9435f1d5 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x943decb6 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x9459f30d of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x945b2147 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x946199ea usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL vmlinux 0x94678fa3 regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0x9470bf63 of_pci_msi_chip_add -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x949334db cpdma_ctlr_start -EXPORT_SYMBOL_GPL vmlinux 0x949b36fc of_get_dma_window -EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x94ea0a6d crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x95124515 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x95203c3a usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x952ad482 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x954d4520 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x95505a19 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x955af1eb synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x9574ca7d kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x957832e9 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x957ac70b transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9586a6ed cpdma_chan_get_stats -EXPORT_SYMBOL_GPL vmlinux 0x958b2f00 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x959c2d39 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x95a7c994 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x95ad1ae6 amba_apb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x95b1b324 mtd_erase -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95c1298c pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x95d098ac gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x95f3a5f2 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x95f5b0af omap_dm_timer_disable -EXPORT_SYMBOL_GPL vmlinux 0x9613ac30 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x961460c7 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x962d5d3f device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x96319203 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x963a3422 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x96425ff1 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x96523454 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x967788a4 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x9678c30d mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x9684a821 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x9686afdc tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x96919667 musb_readl -EXPORT_SYMBOL_GPL vmlinux 0x96ab1cd9 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x96bdc6de fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x96d39fbb regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x96d5bd58 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x96dab4fb devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x96e39e40 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x96ea17fa trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0x96f32967 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x96ff4802 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x9709ead9 snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL vmlinux 0x970c9f22 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x9718dd65 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x972cd112 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x97611aac vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x976713e8 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x976ba0dc blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x976ffb1f regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x978131e2 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0x97879dee ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x97916e35 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x979752da cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x97bca95e tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x97c14d5b tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x97c3ad62 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x97d8a738 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e3c2b0 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x9822f19c tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98491c0a dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x984af301 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x986c4794 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x988ca6c6 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x98bec574 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x98c714f3 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x98c9a9cb watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x98c9f584 klist_init -EXPORT_SYMBOL_GPL vmlinux 0x98ed852d devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x98ef1b8d arizona_of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0x98f33a5a tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x98f394c3 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x990fe3e7 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x993b348d dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x993b6d3f sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x9951d386 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x9952c008 ping_close -EXPORT_SYMBOL_GPL vmlinux 0x995720b1 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x998efa43 of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0x99afac9e da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99dba883 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x99f8581d device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a12f715 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL vmlinux 0x9a2ef4ba dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x9a52ba4d pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x9a5fcc76 ti_cm_get_macid -EXPORT_SYMBOL_GPL vmlinux 0x9a6b6b55 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9a8a0b10 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x9a8dc8dd snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL vmlinux 0x9a9f111c crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x9aa0b252 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x9aafb564 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ace07f4 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x9adfae6a gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9aeeb57b snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL vmlinux 0x9af827b1 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x9b12c968 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x9b1b7897 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x9b22d44b pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x9b23bfb9 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9b25c26f ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x9b30d7a4 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x9b33a021 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x9b49d0c1 nand_release -EXPORT_SYMBOL_GPL vmlinux 0x9b4cb39f mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x9b4e1024 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x9b580d1f dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x9b6b4529 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x9b86a1ca __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x9ba806d5 mtd_write -EXPORT_SYMBOL_GPL vmlinux 0x9bae0277 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9bb495fd of_get_nand_ecc_step_size -EXPORT_SYMBOL_GPL vmlinux 0x9bc3fb18 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c1cd7cc phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x9c1f2a09 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x9c3e5b59 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9c416914 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x9c61f838 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x9c729411 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x9c7a2e6d rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x9c85f4e0 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x9c8d36b2 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL vmlinux 0x9c935230 iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0x9ca54a8d driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9cb14311 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cceae5c nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x9cd170bc extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0x9cdc9867 cpdma_ctlr_stop -EXPORT_SYMBOL_GPL vmlinux 0x9cded4d4 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x9ce337a1 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x9d21c9ae vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x9d22d00d pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x9d281fdb platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x9d338a7e regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x9d33eabf crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x9d38c45b kvm_io_bus_write -EXPORT_SYMBOL_GPL vmlinux 0x9d48faf3 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x9d5be7f9 spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0x9d70c754 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x9d746094 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x9d75586e raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x9d79532b kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x9d8dd3e7 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9dc275b9 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x9dd2e728 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x9dd49332 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x9df78db4 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0x9e069886 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x9e0b1a33 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x9e0fcc47 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL vmlinux 0x9e1fc618 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x9e2e2cb0 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e6bcaa0 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x9e9ec6f7 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x9ea556f8 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9eafb3bc mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x9ecd5b6e ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ed56f69 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x9ef1bdb8 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0x9f23aad7 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x9f3621ab blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0x9f431085 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x9f45a73d i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x9f4b6d25 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL vmlinux 0x9f54be86 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x9f61e091 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x9f6cae85 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x9f7905d0 arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x9f8a2c75 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x9f9d470e pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x9fb8c5ae platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x9fbf9a11 ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x9fc27709 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x9fc840ee usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd2a59f devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff51d9e bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x9ffb8d52 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x9ffcab45 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL vmlinux 0x9ffff044 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xa013a9cf init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xa033df40 clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xa06a9d6e br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xa0805719 cpsw_ale_start -EXPORT_SYMBOL_GPL vmlinux 0xa0932c3e cpsw_ale_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa097a141 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0xa0b0842e netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xa0b13f46 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL vmlinux 0xa0ffc5a4 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xa115cfb9 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xa1255bfd securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xa127d925 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xa156300a crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xa16cf0a0 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xa17631e7 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa1a327e3 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0xa1a8b9a6 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xa1bb1eda dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xa1bb9e64 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xa1d55251 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xa1dbd1e7 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xa1f7dcc0 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL vmlinux 0xa1ff725b pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0xa21f06a8 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xa223f7ce sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xa227eef4 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xa264de17 nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa27b7a90 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL vmlinux 0xa2aeac2d task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2c4dc85 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0xa2d1b496 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xa2ebfbf6 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xa2ef439b power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xa31e960f sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0xa35a72ef wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa389be0a omap_mcbsp_st_add_controls -EXPORT_SYMBOL_GPL vmlinux 0xa3923f5c blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa39acdc1 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3b571ef i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3e0ebd4 ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa402a609 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0xa40f6c54 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xa41f6826 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xa41f9c5a crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0xa422cd3f pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xa451153e spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xa45a9bf4 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xa45ab2d3 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xa45dd4bc arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xa45e54ce bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xa45f337d tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa4744dba usb_gadget_giveback_request -EXPORT_SYMBOL_GPL vmlinux 0xa47e32b0 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0xa47f783b dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4ca5b28 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0xa4f21d35 uniphier_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xa4fb7920 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xa5087af8 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xa51fe97d snd_device_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xa523ab6e blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0xa52b67f9 kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xa53479e6 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL vmlinux 0xa5410b53 omap_pcm_platform_register -EXPORT_SYMBOL_GPL vmlinux 0xa54f3511 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xa56a73f2 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xa583c150 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xa586dd85 snd_soc_component_read -EXPORT_SYMBOL_GPL vmlinux 0xa5b5e664 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa5bf1870 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f8854a usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xa60a1fb7 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xa60c798b ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa66c5be0 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0xa6a4709a dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6c33c48 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL vmlinux 0xa6d8f1e8 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa7042c49 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xa7137671 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0xa715607c key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xa737f0b8 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xa7452166 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xa749ac3a omap_dm_timer_set_int_disable -EXPORT_SYMBOL_GPL vmlinux 0xa74ac4f1 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xa7bade6a ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xa7bdb568 regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0xa7cac83f of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0xa7d8ea75 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xa7db62c1 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0xa7e11bd5 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xa7e599a8 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xa818aa04 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xa836b984 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xa84c2471 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa85da658 xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0xa86087da pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xa8885285 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0xa88e65dc snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL vmlinux 0xa8a0cfda clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xa8a24dd6 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xa8b09b42 crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8bc717e percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0xa8cf3acd netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xa8e2bda4 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0xa8e98132 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0xa8efc75e rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0xa8fd9557 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xa9254c79 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0xa92942e2 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa9296676 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa93cd2aa clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0xa94478d8 mv_mbus_dram_info_nooverlap -EXPORT_SYMBOL_GPL vmlinux 0xa9643ba2 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xa965524c ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xa98436dc usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa992c0c4 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0xa99e0bcc mtd_get_device_size -EXPORT_SYMBOL_GPL vmlinux 0xa9ac582b pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL vmlinux 0xa9c6f4ed device_create -EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e59bf7 register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xa9ee68b2 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0xaa235611 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0xaa3377f8 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable -EXPORT_SYMBOL_GPL vmlinux 0xaa4d4ebc inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xaa5866a3 bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xaa5956cf kvm_vcpu_init -EXPORT_SYMBOL_GPL vmlinux 0xaa676d93 ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0xaa693526 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xaa8f9219 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0xaa9650d0 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaaf62be device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xaafbdd0c unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xab16d5e0 napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xab22bc67 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xab2a8b97 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xab2b53cf snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0xab59a581 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xab9a57bc dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0xabb4d470 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xabbff910 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabc9a6cf nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xabca23f2 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xabd8c79b pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL vmlinux 0xabfd4796 default_iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xac007c87 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0xac20c2ef dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xac454e93 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xac4efab5 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xac51a5e0 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL vmlinux 0xac6f8dd2 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xac7148c9 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xac8244db __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0xac85cf05 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xac900d4f of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xac9f1f2b kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xacab8577 dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0xacc1412a usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0xacd81bb5 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xacdea2f1 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xacfdd5e5 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0xad49320d inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xad5ad3b8 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xad847c67 arm_iommu_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0xada3e2a3 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xadae4596 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xadb0eef4 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xadd3be6c __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae08cd4d usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all -EXPORT_SYMBOL_GPL vmlinux 0xae9f91c8 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0xae9f9d59 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xaeb6b9db devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xaec2d546 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0xaec652f8 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xaed21579 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xaf0ba4f6 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaf12bfb3 tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0xaf1fb060 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xaf34b57c wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xaf5a005f init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xaf5a4a5d eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xaf665246 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xaf75f295 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xaf775ffa nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xaf86ac3d usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xafa497d3 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0xafa6555c usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xafaaf491 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xafab581d __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xafad9f34 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xafbc015d sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0xafe9b587 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xb00a6c26 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xb010abea of_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xb0128a78 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xb01f6a8d gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0xb023073c pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xb02bf844 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0xb0304a24 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xb05055f7 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xb050f329 init_rs -EXPORT_SYMBOL_GPL vmlinux 0xb05f49fe ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb08775c3 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xb0a3c1f2 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb0a52038 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xb0e7d55e ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xb107a4fd pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb11c0075 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0xb12297b6 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xb125ceb2 cpdma_control_set -EXPORT_SYMBOL_GPL vmlinux 0xb132874b mtd_get_user_prot_info -EXPORT_SYMBOL_GPL vmlinux 0xb13b2694 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1887940 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0xb1a923da get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1b94e63 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1c2afb1 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0xb1ce0e7c mtd_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb200c78f __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb20c8c44 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xb21128fe blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb23ae4c5 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2832e92 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xb283d306 ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0xb2beb6f4 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xb2d88612 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xb2dce5af of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xb2e726de __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2ef43de spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0xb34c895b gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0xb36a8af6 omap_dm_timer_start -EXPORT_SYMBOL_GPL vmlinux 0xb390c41b kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0xb3c27b11 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0xb3db2104 ahci_print_info -EXPORT_SYMBOL_GPL vmlinux 0xb4009aa7 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xb40bd0f6 unregister_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb41e3b73 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xb451e89c usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xb46e1b52 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xb47e5bc6 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0xb4908cd2 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb49afdc7 omap_dm_timer_stop -EXPORT_SYMBOL_GPL vmlinux 0xb4a76da1 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb4ae1b73 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xb4b89d7c iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4cf0322 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb4d95a87 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4f88ac1 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb5467b4e device_register -EXPORT_SYMBOL_GPL vmlinux 0xb5486e13 device_reset -EXPORT_SYMBOL_GPL vmlinux 0xb559a158 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xb5731ed8 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb5987a3f mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5b1176e replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xb5ca331e tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0xb5cba789 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xb5dbdb95 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb5f94086 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0xb60e67a2 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xb6138306 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0xb6232865 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb6296491 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xb64e1092 omap_iommu_restore_ctx -EXPORT_SYMBOL_GPL vmlinux 0xb65c6e6c vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xb65e4957 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xb6751435 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0xb6857bf3 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xb6901c88 mtd_table_mutex -EXPORT_SYMBOL_GPL vmlinux 0xb691770e snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL vmlinux 0xb6ae2c2d ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6c2cdb4 of_pci_get_host_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xb6d48896 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb74329d0 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xb74bfae0 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xb74fcab3 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb76c06ab crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb -EXPORT_SYMBOL_GPL vmlinux 0xb77cb0a8 cpdma_chan_submit -EXPORT_SYMBOL_GPL vmlinux 0xb7804c48 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xb798ad0d of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0xb7b82770 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xb7b8d1eb io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xb7ba7744 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xb7d92b7e gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xb7e07fd6 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb80b06f4 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb820bbcf driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable -EXPORT_SYMBOL_GPL vmlinux 0xb82687e4 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xb832b4a0 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xb8346aeb percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb8418a14 bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0xb84c721f ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xb85d4a6a thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb88f8dba rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb89a9a70 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xb8b754f3 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xb8b85645 sdhci_alloc_host -EXPORT_SYMBOL_GPL vmlinux 0xb8b89a5c led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xb8bc8a06 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xb8c49640 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d3fd8e irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb90ff267 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0xb919e1fd da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb91a8cca gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xb91a9632 ping_err -EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xb926cf1a of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0xb93858ae da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xb9980c74 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0xb99f19bc ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0xb9b7fffc ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger -EXPORT_SYMBOL_GPL vmlinux 0xb9fc474c xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba33d22c kvm_vcpu_kick -EXPORT_SYMBOL_GPL vmlinux 0xba379257 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xbaa45d7d crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xbab7c7a6 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbaca6444 tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xbad17ed0 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xbad69820 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xbad79340 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbaf815a9 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb11cfba klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xbb2c9d1b tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbb7e6a18 component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xbb8e5a43 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xbb9e2ab5 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xbba3a3e3 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xbba568f1 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xbbb1b5e0 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0xbbbc677e snd_soc_add_platform -EXPORT_SYMBOL_GPL vmlinux 0xbbdb0a6c cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xbc0ae0ad of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0xbc108aad spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xbc1a07fe led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xbc321ae4 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xbc37723d powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xbc3be693 device_del -EXPORT_SYMBOL_GPL vmlinux 0xbc3c6731 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0xbc441bce perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xbc638b0c input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbc65976d kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcbaa80a __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0xbcbe0450 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd8825a extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce58b80 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xbcf89ab6 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xbcff817b wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xbd3e9484 sdhci_send_command -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd43a659 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0xbd48ed45 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd73c787 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xbdb81e60 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xbdc3a4bf ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbddb717e nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xbdf512de free_bch -EXPORT_SYMBOL_GPL vmlinux 0xbe0da88e split_page -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe37a273 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xbe49a307 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xbe4a57d6 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xbe640a6b regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xbe6422ed mtd_panic_write -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe6b3c38 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0xbe71dab2 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xbe846803 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xbe924596 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe97a5c4 mtd_block_markbad -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf1f653d crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xbf28abf0 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xbf4dfec1 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0xbfab9460 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xbfbb49bf usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfbcaad5 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0xbfbcddf8 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbfc475ae adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xbfcf1331 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfe7fbb3 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xbff76282 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xbff7aa97 posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 -EXPORT_SYMBOL_GPL vmlinux 0xc01b6e29 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xc029eabc bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc035144d mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0xc03a654b memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0xc0587af5 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0xc0686ff5 ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0xc06e5305 kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0xc0742709 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xc07c52c9 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0abbde8 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL vmlinux 0xc0d1e477 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 -EXPORT_SYMBOL_GPL vmlinux 0xc0e798f6 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xc0eca556 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc1274d13 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xc14769ef __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xc148a000 kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0xc16132f6 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu -EXPORT_SYMBOL_GPL vmlinux 0xc1bced6a cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xc1bdd231 ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xc1e02251 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xc1e24737 sdhci_pltfm_init -EXPORT_SYMBOL_GPL vmlinux 0xc1e60933 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xc1e867f1 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xc1f014c2 nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xc205e44c nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xc217a2f1 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xc21b3cca devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc2362fe7 cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0xc2403539 genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0xc2632498 ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0xc265ffbb sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0xc274d51d uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc2abc091 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xc2bd5c82 snd_soc_jack_report -EXPORT_SYMBOL_GPL vmlinux 0xc2d64172 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0xc2dbeca6 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xc2df41f7 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xc326bb53 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0xc32e7129 of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0xc33b5311 xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3702bf9 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc3820f67 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters -EXPORT_SYMBOL_GPL vmlinux 0xc38e44da pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xc3a90042 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xc3a93326 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc3afcf8c ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xc3b93bba klist_next -EXPORT_SYMBOL_GPL vmlinux 0xc3c5f387 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xc3cd1e32 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xc3d734ab devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xc3e5104e ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xc3edd3e6 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xc40034c2 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xc41e0178 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc43299eb regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xc441a839 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc46cb055 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48fbaff usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xc49bf064 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xc49f932c sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xc4a4b925 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xc4b0acc4 snd_soc_info_volsw -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4f41814 usb_gadget_set_state -EXPORT_SYMBOL_GPL vmlinux 0xc5361871 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc5437f2e ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xc54976f0 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0xc54d8fa7 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc571580c dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc58b2555 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0xc5aaabe8 get_device -EXPORT_SYMBOL_GPL vmlinux 0xc5afe9be snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL vmlinux 0xc5c6fc6c pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xc5ce0820 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0xc5d5513e cpdma_chan_process -EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xc5da8055 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0xc5e0dd66 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0xc5e3e310 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xc5e59aa7 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xc5f2747e gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc626d10a mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc64028bf blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0xc644a920 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xc649229a clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc661d867 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc671ee86 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0xc685bf00 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0xc685c037 cpdma_check_free_tx_desc -EXPORT_SYMBOL_GPL vmlinux 0xc68b710c ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a06d88 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xc6a1436f part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0xc6a186ce snd_soc_add_component_controls -EXPORT_SYMBOL_GPL vmlinux 0xc6a47992 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6c1048e rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc6f03b21 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xc6f3f854 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc70db494 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xc71f018f ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc75072bb add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xc75e8305 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xc7832039 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0xc7944c2b arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7d34c7a sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0xc7d6cf69 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xc7e16a66 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc823c1fd phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL vmlinux 0xc82e28f7 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xc854a534 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xc87f730a dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xc891ed6d single_release_net -EXPORT_SYMBOL_GPL vmlinux 0xc897bfb6 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8b6b05a usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xc8d13607 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xc8d19cbe dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8fd552e ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xc9082aae usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc922f7a9 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xc9260e8a debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xc9345ded fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xc93bc97d devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc968081e __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level -EXPORT_SYMBOL_GPL vmlinux 0xc980c71a snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0xc99107e0 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0xc9a65864 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0xc9c465ee fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xc9e9a801 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9fce26a bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xca123bac __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xca21f0ee nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xca31c01f usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0xca38371f cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xca43e44b ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0xca448e76 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xca4bacd5 clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xca4cfd98 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xca69db54 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xca6a5cca __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca8ab2b8 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xca960068 kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0xca9f5275 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0xca9fd2ec crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xcaa24c7e ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcaa2b7cf regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcad753e9 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xcad9a4fe ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xcae99016 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb198859 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xcb24b4e2 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL vmlinux 0xcb41d3bf mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb6fb06f ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xcbbd11a5 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xcbce0ab6 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xcbd09a53 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0xcbd8b885 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbe5a579 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcc3bfc1d __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xcc44f3cb class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xcc51ef8c spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0xcc5c4c19 edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0xcc83ceec xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcca8de79 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xccc31bb7 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xcd01fc89 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcd1a9fee blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0xcd36e7c7 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0xcd49d8d7 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcd4bdfcc of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0xcd5c7b16 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xcd5ec8c5 ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0xcd648178 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xcd7545a9 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xcd8a523a usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0xcd8f9632 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd934534 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcdae4d70 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd024a9 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xcdd5294a __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xcdd613d8 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0xcdd9a0a6 snd_soc_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xcde68f14 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xce06b91b da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xce15ee70 dev_pm_opp_get_notifier -EXPORT_SYMBOL_GPL vmlinux 0xce3255f4 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce765e84 __nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0xce85a566 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0xce9dbb42 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0xceabdec3 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0xcede06a3 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xcede656d usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcef7cc73 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0xcef7ce7a kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xcef851f4 devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xceff9843 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0xcf16a2d0 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0xcf3e7dfa ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xcf405e59 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0xcf4361dd __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xcf4b3e95 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf5d7308 kvm_write_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0xcf5db517 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xcf8f8d56 cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xcf915b2c regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xcf9225c9 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL vmlinux 0xcf932714 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xcf939f3b ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0xcf96062b bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0xcf9cdb2e pci_fixup_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfb66203 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfce4497 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xcfd16a5a thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xd001f5c1 ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xd00d9015 tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd03d8375 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xd0407299 omapdss_of_get_first_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd06581f2 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06af707 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xd06e6b8e pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xd076f792 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0xd0829750 dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd0a9029f verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd0b7f364 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xd0b83c8e regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xd0bb8b63 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd129e42e tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xd1389c59 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xd139d60d component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd1822f0b cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd1887b12 ahci_save_initial_config -EXPORT_SYMBOL_GPL vmlinux 0xd18f1c2c snd_soc_unregister_platform -EXPORT_SYMBOL_GPL vmlinux 0xd18f2caa extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xd1956ce9 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xd1a22f44 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xd1a270dd spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd1aaef60 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xd1cfdc07 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xd1dcceee mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xd1ef9030 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xd1f0a011 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f5352e sdhci_reset -EXPORT_SYMBOL_GPL vmlinux 0xd1ff4ca2 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xd20ae5cc virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd20d6897 devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21cdc9b rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xd21daac4 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0xd224bd7f sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xd269b7b8 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xd26b8ea5 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd2a296ef nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xd2de7533 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2e805a5 put_device -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd305bb21 tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xd3298e8e pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xd33a0654 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd353a29c bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd3812fc0 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3b4bc0d dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0xd3c9856a trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0xd3e97c21 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd401336e cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd412ed05 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44c2f38 cci_disable_port_by_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd44c3437 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xd4677045 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xd47a44ce usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xd49cbb9e debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0xd4a3d6cd register_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0xd4a9bc46 of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xd4ae837d snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4ccba0c fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xd4cd5108 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xd4d7a2a3 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0xd4ec5946 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0xd4f036d9 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xd52334a6 wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0xd528f099 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd53da4e3 omap_dm_timers_active -EXPORT_SYMBOL_GPL vmlinux 0xd54219b4 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xd54838c8 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xd550fd7c kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0xd556d328 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xd558db19 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd57fd747 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0xd59a49e1 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0xd5a8b444 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5d86f75 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0xd5e7cb2a device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd60e875a usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xd61e16d6 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xd62bbad3 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse -EXPORT_SYMBOL_GPL vmlinux 0xd64e2733 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd6636c6e cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0xd6711fbb usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6794fc1 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0xd688e15d component_del -EXPORT_SYMBOL_GPL vmlinux 0xd6a8757c cpsw_phy_sel -EXPORT_SYMBOL_GPL vmlinux 0xd6cd8df2 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xd6ceef71 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xd6d14c6d i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xd6db91ef sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xd6e2a893 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd6f7b593 seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0xd70079f7 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd70d44b2 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xd711792e snd_soc_remove_platform -EXPORT_SYMBOL_GPL vmlinux 0xd71f7d4c regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xd73f6e54 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd783e2bc of_get_nand_on_flash_bbt -EXPORT_SYMBOL_GPL vmlinux 0xd7884d72 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xd796a2de ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd7a08d90 of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0xd7bc7ddb dev_pm_opp_get_suspend_opp -EXPORT_SYMBOL_GPL vmlinux 0xd7c2f588 __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xd7c8619b kill_mtd_super -EXPORT_SYMBOL_GPL vmlinux 0xd7cc661f input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0xd7d6a47f iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd815802a dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0xd81b7ef5 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd83f9888 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xd8412303 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xd865f998 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xd86f4564 tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd88cf84e ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xd8b0b678 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xd8c82b0c usb_udc_attach_driver -EXPORT_SYMBOL_GPL vmlinux 0xd8c8a664 to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xd8c9ff5d ahci_platform_ops -EXPORT_SYMBOL_GPL vmlinux 0xd8e8bd26 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xd8f55dc6 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xd8fee534 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0xd902dcf7 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0xd9247ab4 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0xd9390a50 snd_soc_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0xd94045d7 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd99a30ff usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9f4e325 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0xd9f9f518 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xd9ff2842 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xda090c99 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xda174827 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0xda2a4b7e omap_dm_timer_enable -EXPORT_SYMBOL_GPL vmlinux 0xda390d0c device_attach -EXPORT_SYMBOL_GPL vmlinux 0xda3c3923 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0xda401a20 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0xda54fdaf relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xda69e811 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xda74489c policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0xda7569fc ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xda79b763 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL vmlinux 0xdaa517d3 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xdaabbe8e elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdabbd004 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xdadcf0bc devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaefd446 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xdb0e88be shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb44ef00 nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xdb51aac9 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0xdb67b9ce snd_soc_test_bits -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdba29f28 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0xdba631a6 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdbb4c471 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xdbc5679c mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xdbdcb406 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xdbdfa8f4 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xdbe7e355 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbf87e37 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL vmlinux 0xdc004508 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL vmlinux 0xdc281c00 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xdc3a9ff6 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcdcca84 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd59ef86 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xdd79f866 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xdd7e2c02 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xdd82d022 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xdd848c3e pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdde1bd56 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xdde395c3 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xdde7b4d5 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xddfbf073 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xde02e755 rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0xde07772f skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xde0c42cc tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0xde13709b ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xde34146c wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xde5b5139 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0xde5ef558 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0xde651f98 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xde6e2fba usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0xde8f9414 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0xdeafe050 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xdecd86a8 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf164ac2 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf2e3721 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0xdf38a330 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xdf3b2e0a iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0xdf4eff58 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0xdf957a6f ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xdf9e9c34 skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0xdfc902dc inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xdfd5cb5d kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xdfe857a9 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xdfe94e10 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe010b4c0 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xe02a88db skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe03823a4 iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xe0455061 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe065ea58 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xe06e4157 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe07ca631 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xe0816994 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL vmlinux 0xe081d804 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b347e7 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe0cc2404 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xe0d1587c pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xe0d7e7c2 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xe0de739c user_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe1073072 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0xe11acf1b sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL vmlinux 0xe11e7e45 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xe13ca002 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0xe13e6e6e bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe18520f0 vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0xe1a1f8f4 led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xe1bc54c1 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0xe1d87577 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xe1f53080 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0xe2076a1e tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xe20c9f02 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0xe247e44f ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xe25363c2 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0xe2613306 cpsw_ale_stop -EXPORT_SYMBOL_GPL vmlinux 0xe26c2330 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0xe278d6c1 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xe28983a3 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe29055b7 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xe2b89a48 sdhci_pltfm_register -EXPORT_SYMBOL_GPL vmlinux 0xe2bd1f82 devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xe2df080b kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0xe2f0e884 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe3565e48 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xe3571348 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xe371bb56 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0xe37d36e2 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xe3814921 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xe3a5be07 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0xe3a9ecc6 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xe3d5a514 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xe3ecd885 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xe3f953b1 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xe3fc7b8b driver_register -EXPORT_SYMBOL_GPL vmlinux 0xe422138c extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xe42e1f70 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe45047ab snd_soc_limit_volume -EXPORT_SYMBOL_GPL vmlinux 0xe45a0c09 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe47c05d1 blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0xe48095d0 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4aac3e0 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe4b8b941 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xe4c22565 cpdma_chan_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe50d8781 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5c64c4e blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0xe5cde33a tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0xe5d5bdef do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xe5e55d76 ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0xe5ed2fdb devm_snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0xe60440cf ahci_platform_init_host -EXPORT_SYMBOL_GPL vmlinux 0xe60ccbce mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xe60eb35b dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xe6144159 tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xe61640be attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xe63cbb70 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xe645075d __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xe645e9a9 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xe651c47e pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe658c603 pwm_config -EXPORT_SYMBOL_GPL vmlinux 0xe665765a devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xe669a96b set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xe66b5945 clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xe69d7a33 crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0xe6b27fef blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6ded94a blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe7079fdf snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL vmlinux 0xe71dba04 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL vmlinux 0xe72ebb2b scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe74c9b64 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xe76149e6 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xe761774b simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe79337a6 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0xe7adba2a uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0xe7bad929 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xe7c2151b smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xe7e0d5a6 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe80939bb wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xe817fdab regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe82004f9 cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL vmlinux 0xe8400819 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe856e203 input_class -EXPORT_SYMBOL_GPL vmlinux 0xe858cb37 reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xe85aca05 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe87b6ac9 snd_soc_write -EXPORT_SYMBOL_GPL vmlinux 0xe87ff2c1 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xe8a03510 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe8a246f6 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xe8b32430 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xe8c042ad __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xe8c2189e vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xe8ee3f9c snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL vmlinux 0xe8f1e74e cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0xe9063020 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xe9233d95 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe952413a inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xe9527be2 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe95b93ba xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xe9640d94 __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe9809997 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xe98c647a pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xe9955afb fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xe997a768 btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xe9ab9bc2 component_add -EXPORT_SYMBOL_GPL vmlinux 0xe9b2b6a3 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0xe9c6dec1 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0xe9c8fce0 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9feae74 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea16c0f0 snd_soc_register_platform -EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0xea1f6e0e hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xea2a48e4 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL vmlinux 0xea2f706e debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea503168 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xea922581 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xea930363 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0xea98b869 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0xeac187b9 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xeafdfc63 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xeb0731e5 percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0xeb13d02b gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xeb344522 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL vmlinux 0xeb47d8e4 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xeb5187c9 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xeb6462d8 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xeb70a5b6 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 -EXPORT_SYMBOL_GPL vmlinux 0xebb7e578 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xebb940d3 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xebb9f152 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xebbb9d99 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xebcab8da trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0xebd7877d __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xebe88bd2 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xebfea5da devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec225d00 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec49d3b4 vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0xec5f2463 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xec6afdb1 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xec7533d3 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xec8d306b wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0xec922cd0 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xecb2d256 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xecb5df1f debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xecc5ad2f alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xecc6c1f0 of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xecdeca20 mount_mtd -EXPORT_SYMBOL_GPL vmlinux 0xecf7d2d7 arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0xecfd8761 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xed04c00a fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0xed23d082 tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xed399e85 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xed76356d pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0xed7dc80c tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xed80b0dd irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0xedc00de6 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xedc22bf3 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0xedc6aee0 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xedd76a3f power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xeddfa206 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0xede44b52 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0xedf0a669 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xedf38710 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xedf52ffe wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0xee34b0eb ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xee3d925e usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0xee489427 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xee62fa53 skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee79d158 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0xee8d7539 cpdma_chan_start -EXPORT_SYMBOL_GPL vmlinux 0xee92bf87 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xee94c75a crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0xeea96e5f mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xeec8aef3 ahci_reset_controller -EXPORT_SYMBOL_GPL vmlinux 0xeecae52b snd_soc_platform_write -EXPORT_SYMBOL_GPL vmlinux 0xeee7b821 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef5ea897 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0xef66075c usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef778618 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa41bc2 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xefaf23bb class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xefc386e6 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0xf00848dc crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xf00b47de dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xf031becf netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf042611a __of_genpd_xlate_simple -EXPORT_SYMBOL_GPL vmlinux 0xf0512078 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL vmlinux 0xf059e6ac clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xf06a4305 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xf06d538a iommu_map -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf07a157d ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xf0852f67 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0d6a7b7 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf0e57433 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf112d524 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0xf115f3fa gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xf11db8a2 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xf12caf22 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xf12cfc23 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xf13d82ce ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0xf14307cc led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xf1474fa8 wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf19bc520 scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1bb4b6c virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xf1ce2332 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xf1cef55c pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xf1db8836 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xf1e12927 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xf1e8c78b of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xf1f16c9e unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0xf1f27a5e mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL vmlinux 0xf1f86871 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xf1fb768f nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xf2019018 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xf20911d9 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf22a3450 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xf247f0a8 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xf254dc5b crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xf26a4f0e regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xf27762ff nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf285c7af of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0xf28f0043 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xf2a9631f mtd_device_parse_register -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf326f042 wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0xf32e9e9d pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf33c83e8 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xf340677f sdhci_get_of_property -EXPORT_SYMBOL_GPL vmlinux 0xf3475372 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xf35dd68c dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xf3761f09 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf37c6786 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3acbc8c usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3c3d282 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf3f5e635 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xf4059843 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xf42151f5 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xf422230b ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xf42a2feb dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xf42efcef gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xf4314e6c devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xf43c94eb device_add -EXPORT_SYMBOL_GPL vmlinux 0xf444bfd6 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xf4534c46 __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0xf457e12c rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xf467ec23 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xf47e1e01 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xf4874398 max_gen_clk_ops -EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf49edca3 put_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0xf4a20a41 crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xf4da6042 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf4fed3e1 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xf50098fa _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0xf5029583 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xf5068be4 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5136112 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xf53883b1 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf58af22f devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5a7dadc fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xf5ae2437 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0xf5d081f0 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0xf5d70f2e of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0xf5dac218 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0xf5f988e1 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf5fe91db inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xf60458e0 component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0xf604b933 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xf60e0f5c securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0xf6155990 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf6299a21 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xf64ea43e regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xf689823c snd_soc_lookup_platform -EXPORT_SYMBOL_GPL vmlinux 0xf68d6aaf dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xf696d9dc usb_gadget_unmap_request -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf70c903d fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xf71a912d usb_add_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0xf73a160d percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xf73c958d ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xf7539aa2 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer -EXPORT_SYMBOL_GPL vmlinux 0xf7743a21 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xf791f2e6 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL vmlinux 0xf7b883fb device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xf7eb619f snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf7ee29e5 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xf7f151b7 wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0xf80369ad blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xf811c371 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf833d4dd pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xf8371d37 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf85968ee platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf87a8e7a crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf89547dc blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xf8ab49fd irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0xf8b18750 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0xf8ce3ba7 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xf8d5475a flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8ea4a9c blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xf8ef2f15 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8f79b81 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf90273c2 bus_register -EXPORT_SYMBOL_GPL vmlinux 0xf90294ad blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xf90ccbbb generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xf92c31af da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf945e466 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xf951b85e led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf9896b0e perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9b6c210 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0xf9b834de irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xf9ba5079 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9ca70bf pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0xf9da1e0d sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xf9e64b06 arm_iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf9fb0c62 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa26f622 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xfa2ca778 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0xfa413a01 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xfa531e51 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xfa5bfb0a driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xfa629902 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xfa714835 sdhci_pltfm_free -EXPORT_SYMBOL_GPL vmlinux 0xfaa7afec device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0xfaab3c4d tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xfaaf544b inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xfab537eb snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL vmlinux 0xfacaec08 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL vmlinux 0xfacf1ad6 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0xfb2694a3 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xfb27be5e __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb4aa794 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xfb51c2ba ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xfb573566 register_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0xfb597ee8 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0xfb6a30e8 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb78ad94 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xfb90875b handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xfb94f014 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xfb970d6d crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0xfbabefb5 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0xfbb72ca9 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbd94f57 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0xfbf22fb1 sdhci_set_clock -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc098080 ref_module -EXPORT_SYMBOL_GPL vmlinux 0xfc137067 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xfc5e6b93 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xfc7c179b tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0xfc9529c1 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xfc95943a enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xfc961e17 dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0xfcbb0968 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xfcc84250 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0xfccfdf19 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0xfd07cc53 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xfd08ae20 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL vmlinux 0xfd131f62 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL vmlinux 0xfd2d9454 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xfd2e78fa power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xfd41c7ce btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xfd46fe27 sdhci_add_host -EXPORT_SYMBOL_GPL vmlinux 0xfd515eef usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0xfd5f1005 relay_open -EXPORT_SYMBOL_GPL vmlinux 0xfd74b611 __module_address -EXPORT_SYMBOL_GPL vmlinux 0xfd770c33 of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd7b4806 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xfd9d9916 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xfdb74aca pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xfdc2f8d0 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfdc8dfa8 sdhci_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0xfdcae14e usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xfdcae422 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xfdcef86d nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xfdd5180a securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xfde1a33e klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xfde1d386 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xfdec5195 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xfdf94f60 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0xfe009c06 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xfe033772 amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0xfe2423b3 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xfe4537b6 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xfe610922 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfe9cd0ec kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xfeac5c21 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xfeb2eb84 md_run -EXPORT_SYMBOL_GPL vmlinux 0xfebb0e51 snd_soc_cnew -EXPORT_SYMBOL_GPL vmlinux 0xfebbf618 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xfebeebf3 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0xfec61878 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed973f7 phy_put -EXPORT_SYMBOL_GPL vmlinux 0xfedd6a7f pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xfee061d9 __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff270100 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff5c99b3 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff64d7df omap_dm_timer_set_load -EXPORT_SYMBOL_GPL vmlinux 0xff6b5e43 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xff79cc5f kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xff87fda5 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0xffa3622b thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xffd33078 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xffe58960 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xffe697d9 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xffea8d96 omapdss_of_get_next_port reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/armhf/generic-lpae.compiler +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/armhf/generic-lpae.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/armhf/generic-lpae.modules +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/armhf/generic-lpae.modules @@ -1,4539 +0,0 @@ -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_mid -8250_omap -8250_uniphier -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -DAC960 -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -ablk_helper -acard-ahci -acecad -acenic -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -aes-arm -aes-arm-bs -aes-arm-ce -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -afs -ah4 -ah6 -ahci -ahci_ceva -ahci_mvebu -ahci_qoriq -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am35x -am53c974 -amba-pl010 -ambakmi -amc6821 -amd -amd5536udc -amd8111e -amdgpu -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apbps2 -apds9300 -apds9802als -apds990x -apds9960 -appledisplay -appletalk -appletouch -applicom -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arm_big_little -arm_big_little_dt -arm_mhu -arm_scpi -armada -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -asc7621 -ascot2e -asix -ast -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atm -atmel -atmel-flexcom -atmel-hlcdc -atmel-hlcdc-dc -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avmfritz -ax25 -ax88179_178a -ax88796 -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1pci -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bL_switcher_dummy_if -bas_gigaset -batman-adv -baycom_epp -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bcm-keypad -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm63138_nand -bcm63xx_uart -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcmsysport -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -berlin2-adc -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpck6 -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmnand -brcmsmac -brcmstb_nand -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -cap11xx -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipone_icn8318 -chnl_net -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -clip -clk-cdce706 -clk-cdce925 -clk-max77686 -clk-max77802 -clk-palmas -clk-pwm -clk-qcom -clk-rk808 -clk-s2mps11 -clk-scpi -clk-si514 -clk-si5351 -clk-si570 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cma3000_d0x -cma3000_d0x_i2c -cmac -cmtp -cnic -cobalt -cobra -coda -colibri-vf50-ts -com20020 -com20020-pci -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_parport -comedi_pci -comedi_test -comedi_usb -comm -configfs -connector-analog-tv -connector-dvi -contec_pci_dio -cordic -core -cp210x -cpia2 -cppi41 -cpu-notifier-error-inject -cramfs -crc-ccitt -crc-itu-t -crc32 -crc7 -crc8 -cros_ec -cros_ec_devs -cros_ec_i2c -cros_ec_keyb -cros_ec_spi -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -cs89x0 -csiostor -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -ddbridge -de2104x -decnet -deflate -defxx -denali -denali_dt -denali_pci -des_generic -designware_i2s -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9000 -dm9601 -dme1737 -dmfe -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -dove_thermal -dp83848 -dp83867 -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_hdmi -dw_hdmi-ahb-audio -dw_hdmi-imx -dw_hdmi-rockchip -dw_mmc -dw_mmc-exynos -dw_mmc-k3 -dw_mmc-pci -dw_mmc-pltfm -dw_mmc-rockchip -dw_wdt -dwc3 -dwc3-exynos -dwc3-omap -dwc3-pci -dwc3-qcom -dwc_eth_qos -dwmac-generic -dwmac-ipq806x -dwmac-lpc18xx -dwmac-meson -dwmac-rk -dwmac-socfpga -dwmac-sti -dwmac-sunxi -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -echainiv -echo -edac_core -edt-ft5x06 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efs -egalax_ts -ehci-msm -ehci-omap -ehset -elan_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emac_arc -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -emif -empeg -ems_pci -ems_usb -emu10k1-gp -enc28j60 -enclosure -encoder-opa362 -encoder-tfp410 -encx24j600 -encx24j600-regmap -eni -enic -epat -epia -epic100 -eql -esas2r -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -exynos-gsc -exynos-rng -exynos_adc -exynosdrm -ezusb -f2fs -f71805f -f71882fg -f75375s -f81232 -fakelb -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdp -fdp_i2c -fealnx -ff-memless -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fl512 -flexcan -flexfb -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fsl-dcu-drm -fsl-edma -fsl_lpuart -ft6236 -ftdi-elan -ftdi_sio -ftgmac100 -ftl -ftmac100 -fujitsu_ts -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_multi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcc-apq8084 -gcc-ipq806x -gcc-msm8660 -gcc-msm8916 -gcc-msm8960 -gcc-msm8974 -gcm -gdmtty -gdmulte -gdmwm -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -gf128mul -gf2k -gfs2 -ghash-arm-ce -ghash-generic -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -gluebi -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-addr-flash -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-amd8111 -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-fan -gpio-grgpio -gpio-ir-recv -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-rcar -gpio-rdc321x -gpio-regulator -gpio-syscon -gpio-tps65912 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gpio_wdt -gr_udc -grace -grcan -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gxt4500 -hackrf -hamachi -hampshire -hanwang -hci -hci_uart -hci_vhci -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hi6421-pmic-core -hi6421-regulator -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -highbank-cpufreq -highbank_l2_edac -highbank_mc_edac -hih6130 -hip04_eth -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi-acpu-cpufreq -hisi504_nand -hisi_thermal -hix5hd2_gmac -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hnae -hns_dsaf -hns_enet_drv -hns_mdio -hopper -horus3a -hostap -hostap_pci -hostap_plx -hp100 -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -hsu_dma -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hwa-hc -hwa-rc -hwmon-vid -hwspinlock_core -hx8357 -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-axxia -i2c-cbus-gpio -i2c-cros-ec-tunnel -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-emev2 -i2c-exynos5 -i2c-gpio -i2c-hid -i2c-hix5hd2 -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-meson -i2c-mt65xx -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-mv64xxx -i2c-nforce2 -i2c-nomadik -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-qup -i2c-rcar -i2c-riic -i2c-rk3x -i2c-robotfuzz-osif -i2c-sh_mobile -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-slave-eeprom -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-uniphier -i2c-uniphier-f -i2c-versatile -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i40e -i40evf -i5k_amb -i6300esb -i740fb -ib_addr -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibmaem -ibmpex -icp_multi -icplus -ics932s401 -idma64 -idmouse -idt77252 -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -impa7 -ims-pcu -imx-ipu-v3 -imx-ipuv3-crtc -imx-ldb -imx-tve -imx074 -imx6ul_tsc -imx_thermal -imxdrm -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int51x1 -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -iproc_nand -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irqbypass -irtty-sir -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it87 -it913x -itd1000 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -k3dma -kafs -kalmia -kaweth -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan78xx -lanai -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcc-ipq806x -lcc-msm8960 -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-aat1290 -leds-adp5520 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-ktd2692 -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-ns2 -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -litelink-sir -lkkbd -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr2_nvm -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -macb -macmodes -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mailbox-test -mantis -mantis_core -map_absent -map_ram -map_rom -marvell -marvell-cesa -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max5821 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77686 -max77693 -max77693-haptic -max77693_charger -max77802 -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-gpio -mdio-mux -mdio-mux-gpio -mdio-mux-mmioreg -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -meson-ir -meson_uart -meson_wdt -metro-usb -metronomefb -mf6x4 -mg_disk -mga -michael_mic -micrel -microchip -microread -microread_i2c -microtek -mii -minix -mip6 -mite -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmcc-apq8084 -mmcc-msm8960 -mmcc-msm8974 -mmci_qcom_dml -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi001 -msi2500 -msm -msm-rng -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt8173-max98090 -mt8173-rt5650-rt5676 -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd_dataflash -mtdoops -mtdram -mtdswap -mtip32xx -mtk-afe-pcm -mtk-pmic-wrap -mtk-sd -mtk_wdt -mtouch -multipath -multiq3 -musb_am335x -musb_dsps -mv643xx_eth -mv_cesa -mv_u3d_core -mv_udc -mvmdio -mvneta -mvpp2 -mvsas -mvsdio -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxser -mxuport -myri10ge -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nbpfaxi -nci -nci_spi -nci_uart -ncpfs -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_labpc -ni_labpc_common -ni_labpc_pci -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicstar -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nosy -notifier-error-inject -nouveau -nozomi -nps_enet -ns558 -ns83820 -nsp32 -ntb -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nvidiafb -nvme -nvmem_core -nvmem_qfprom -nvmem_rockchip_efuse -nvram -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_xilinx_wdt -old_belkin-sir -omap -omap-aes -omap-des -omap-mailbox -omap-ocp2scp -omap-rng -omap-sham -omap2430 -omap4-keypad -omap_hdq -omap_hwspinlock -omap_wdt -omapfb -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -orion_nand -orion_wdt -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -palmas-pwrbutton -palmas-regulator -pandora_bl -panel -panel-dpi -panel-dsi-cm -panel-lg-lg4573 -panel-lgphilips-lb035q02 -panel-nec-nl8048hl11 -panel-samsung-ld9040 -panel-samsung-s6e8aa0 -panel-sharp-lq101r1sx01 -panel-sharp-ls037v7dw01 -panel-simple -panel-sony-acx565akm -panel-tpo-td028ttec1 -panel-tpo-td043mtea1 -parade-ps8622 -parallel-display -paride -parkbd -parport -parport_ax88796 -parport_pc -parport_serial -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pbias-regulator -pc300too -pc87360 -pc87427 -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-stub -pci200syn -pcie-iproc -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmda12 -pcmmio -pcmuio -pcnet32 -pcrypt -pcwd_pci -pcwd_usb -pd -pda_power -pdc_adma -peak_pci -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-am335x -phy-am335x-control -phy-bcm-kona-usb2 -phy-berlin-sata -phy-berlin-usb -phy-dm816x-usb -phy-exynos-usb2 -phy-exynos5-usbdrd -phy-gpio-vbus-usb -phy-hix5hd2-sata -phy-isp1301 -phy-msm-usb -phy-mt65xx-usb3 -phy-omap-control -phy-omap-usb2 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-qcom-8x16-usb -phy-qcom-apq8064-sata -phy-qcom-ipq806x-sata -phy-qcom-ufs -phy-qcom-ufs-qmp-14nm -phy-qcom-ufs-qmp-20nm -phy-rcar-gen2 -phy-rcar-usb -phy-rockchip-usb -phy-tahvo -phy-ti-pipe3 -phy-tusb1210 -phy-twl4030-usb -phy-twl6030-usb -physmap -physmap_of -pinctrl-apq8064 -pinctrl-apq8084 -pinctrl-ipq8064 -pinctrl-msm8660 -pinctrl-msm8916 -pinctrl-msm8960 -pinctrl-msm8x74 -pinctrl-ph1-ld4 -pinctrl-ph1-ld6b -pinctrl-ph1-pro4 -pinctrl-ph1-pro5 -pinctrl-ph1-sld8 -pinctrl-proxstream2 -pinctrl-spmi-gpio -pinctrl-spmi-mpp -pinctrl-ssbi-gpio -pinctrl-ssbi-mpp -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl172 -pl2303 -pl330 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8921-core -pm8941-pwrkey -pm8941-wled -pm8xxx-vibrator -pmbus -pmbus_core -pmc551 -pmcraid -pmic8xxx-keypad -pmic8xxx-pwrkey -pn533 -pn544 -pn544_i2c -pn_pep -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_parport -pptp -prism2_usb -ps2mult -psmouse -psnap -pt -pulsedlight-lidar-lite-v2 -pvrusb2 -pwc -pwm-atmel-hlcdc -pwm-beeper -pwm-berlin -pwm-fan -pwm-fsl-ftm -pwm-lp3943 -pwm-mtk-disp -pwm-omap-dmtimer -pwm-pca9685 -pwm-rcar -pwm-regulator -pwm-renesas-tpu -pwm-rockchip -pwm-samsung -pwm-tiecap -pwm-tiehrpwm -pwm-twl -pwm-twl-led -pwm_bl -pxa168_eth -pxa27x_udc -pxa3xx_nand -qcaspi -qcaux -qcom-coincell -qcom-spmi-iadc -qcom-spmi-pmic -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom-wdt -qcom_bam_dma -qcom_gsbi -qcom_hwspinlock -qcom_rpm -qcom_rpm-regulator -qcom_smbb -qcom_smd-regulator -qcom_spmi-regulator -qcrypto -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qoriq-cpufreq -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ravb -raw -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rcar-dmac -rcar-du-drm -rcar-hpbdma -rcar_can -rcar_jpu -rcar_thermal -rcar_vin -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -regmap-spmi -regulator-haptic -reiserfs -remoteproc -renesas_usbhs -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio500 -rivafb -rj54n1cb0c -rk808 -rk808-regulator -rmd128 -rmd160 -rmd256 -rmd320 -rmobile-reset -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rockchip-io-domain -rockchip_drm_vop -rockchip_saradc -rockchip_thermal -rockchipdrm -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-armada38x -rtc-as3722 -rtc-bq32k -rtc-bq4802 -rtc-cmos -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-hid-sensor-time -rtc-hym8563 -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max77686 -rtc-max77802 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-pl030 -rtc-pm8xxx -rtc-r9701 -rtc-rc5t583 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-snvs -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3c-fb -s3c2410_wdt -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s5p-g2d -s5p-hdmi -s5p-hdmiphy -s5p-jpeg -s5p-mfc -s5p-mixer -s5p-sdo -s5p-sii9234 -s5p-sss -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7706h -safe_serial -salsa20_generic -samsung -samsung-keypad -samsung-sxgbe -sata_highbank -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_rcar -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sbp_target -sbs-battery -sc16is7xx -sc92031 -sca3000 -sch5627 -sch5636 -sch56xx-common -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scpi-cpufreq -scpi-hwmon -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -sdhci-dove -sdhci-msm -sdhci-of-arasan -sdhci-of-at91 -sdhci-pci -sdhci-pxav3 -sdhci-s3c -sdhci_f_sdh30 -sdio_uart -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serio_raw -sermouse -serpent_generic -serport -ses -sfc -sh-sci -sh_eth -sh_flctl -sh_irda -sh_keysc -sh_mmcif -sh_mobile_ceu_camera -sh_mobile_csi2 -sh_mobile_hdmi -sh_mobile_lcdcfb -sh_mobile_meram -sh_mobile_sdhi -sh_veu -sh_vou -sha1-arm -sha1-arm-ce -sha1-arm-neon -sha2-arm-ce -sha256-arm -sha512-arm -shark2 -shdma -shmob-drm -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -slcan -slip -slram -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smc911x -smc91x -smd -smd-rpm -smem -smipcie -smm665 -smsc -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd-aaci -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm-oss -snd-pcxhr -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-apq8016-sbc -snd-soc-armada-370-db -snd-soc-arndale-rt5631 -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-davinci-mcasp -snd-soc-es8328 -snd-soc-fsi -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-i2s -snd-soc-idma -snd-soc-imx-audmux -snd-soc-kirkwood -snd-soc-lpass-apq8016 -snd-soc-lpass-cpu -snd-soc-lpass-ipq806x -snd-soc-lpass-platform -snd-soc-max98090 -snd-soc-max98095 -snd-soc-max98357a -snd-soc-odroidx2-max98090 -snd-soc-omap-hdmi-audio -snd-soc-pcm -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rcar -snd-soc-rl6231 -snd-soc-rockchip-i2s -snd-soc-rockchip-max98090 -snd-soc-rockchip-rt5645 -snd-soc-rockchip-spdif -snd-soc-rsrc-card -snd-soc-rt5631 -snd-soc-rt5645 -snd-soc-rt5677 -snd-soc-rt5677-spi -snd-soc-rx51 -snd-soc-s3c-dma -snd-soc-samsung-spdif -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-smdk-spdif -snd-soc-smdk-wm8994 -snd-soc-smdk-wm8994pcm -snd-soc-snow -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-storm -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm-hubs -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-wm8994 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-ymfpci -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -soc_scale_crop -softdog -softing -solo6x10 -solos-pci -sony-btf-mpx -sp2 -sp805_wdt -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -speedfax -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-meson-spifc -spi-mt65xx -spi-nor -spi-oc-tiny -spi-orion -spi-pl022 -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-qup -spi-rockchip -spi-rspi -spi-s3c64xx -spi-sc18is602 -spi-sh-hspi -spi-sh-msiof -spi-ti-qspi -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spmi -spmi-pmic-arb -sr9700 -sr9800 -ssb -ssbi -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-asc -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm32-usart -stm_console -stm_core -stmmac -stmmac-platform -stmpe-keypad -stmpe-ts -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sudmac -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -svgalib -sx8 -sx8654 -sx9500 -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -t1pci -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc3589x-keypad -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teranetics -test-hexdump -test-kprobes -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -thmc50 -thunderbolt -ti-adc081c -ti-adc128s052 -ti-soc-thermal -ti-vpe -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_hecc -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -tilcdc -timeriomem-rng -tipc -tlan -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmio_mmc -tmio_mmc_core -tmio_nand -tmiofb -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -torture -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tusb6010 -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish_common -twofish_generic -typhoon -u132-hcd -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -us5182d -usb-dmac -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vcan -vcnl4000 -ves1820 -ves1x93 -veth -vexpress -vexpress-spc-cpufreq -vf610_adc -vfio -vfio-amba -vfio-pci -vfio-platform -vfio-platform-amdxgbe -vfio-platform-base -vfio-platform-calxedaxgmac -vfio_virqfd -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-rhine -via-sdmmc -via-velocity -via686a -videobuf-core -videobuf-dma-contig -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videodev -vim2m -viperboard -viperboard_adc -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -vitesse -vivid -vlsi_ir -vmac -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vrf -vringh -vsock -vsp1 -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83627ehf -w83627hf -w83781d -w83791d -w83792d -w83793 -w83795 -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wcn36xx -wd719x -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -wire -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xc4000 -xc5000 -xcbc -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xgmac -xhci-plat-hcd -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx_uartps -xillybus_core -xillybus_of -xillybus_pcie -xor -xor-neon -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yurex -zaurus -zd1201 -zd1211rw -zforce_ts -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -zr364xx -zram -zynq-fpga reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/armhf/generic.compiler +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/armhf/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/armhf/generic.modules +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/armhf/generic.modules @@ -1,4631 +0,0 @@ -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_mid -8250_omap -8250_uniphier -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -DAC960 -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -ablk_helper -acard-ahci -acecad -acenic -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -aes-arm -aes-arm-bs -aes-arm-ce -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -afs -ah4 -ah6 -ahci -ahci_ceva -ahci_mvebu -ahci_qoriq -ahci_tegra -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am35x -am53c974 -amba-pl010 -ambakmi -amc6821 -amd -amd5536udc -amd8111e -amdgpu -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apbps2 -apds9300 -apds9802als -apds990x -apds9960 -appledisplay -appletalk -appletouch -applicom -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arm_big_little -arm_big_little_dt -arm_mhu -arm_scpi -armada -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -asc7621 -ascot2e -asix -ast -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atm -atmel -atmel-flexcom -atmel-hlcdc -atmel-hlcdc-dc -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avmfritz -ax25 -ax88179_178a -ax88796 -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1pci -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bL_switcher_dummy_if -bas_gigaset -batman-adv -baycom_epp -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bcm-keypad -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm63138_nand -bcm63xx_uart -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcmsysport -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -berlin2-adc -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpck6 -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmnand -brcmsmac -brcmstb_nand -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -caam -caam_jr -caamalg -caamhash -caamrng -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -cap11xx -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipone_icn8318 -chnl_net -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -clip -clk-cdce706 -clk-cdce925 -clk-max77686 -clk-max77802 -clk-palmas -clk-pwm -clk-qcom -clk-rk808 -clk-s2mps11 -clk-scpi -clk-si514 -clk-si5351 -clk-si570 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cma3000_d0x -cma3000_d0x_i2c -cmac -cmt_speech -cmtp -cnic -cobalt -cobra -coda -colibri-vf50-ts -com20020 -com20020-pci -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_parport -comedi_pci -comedi_test -comedi_usb -comm -configfs -connector-analog-tv -connector-dvi -contec_pci_dio -cordic -core -cp210x -cpia2 -cppi41 -cpu-notifier-error-inject -cramfs -crc-ccitt -crc-itu-t -crc32 -crc7 -crc8 -cros_ec -cros_ec_devs -cros_ec_i2c -cros_ec_keyb -cros_ec_spi -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -cs89x0 -csiostor -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da8xx-fb -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -davinci_emac -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -ddbridge -de2104x -decnet -deflate -defxx -denali -denali_dt -denali_pci -des_generic -designware_i2s -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9000 -dm9601 -dme1737 -dmfe -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -dove_thermal -dp83848 -dp83867 -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_hdmi -dw_hdmi-ahb-audio -dw_hdmi-imx -dw_hdmi-rockchip -dw_mmc -dw_mmc-exynos -dw_mmc-k3 -dw_mmc-pci -dw_mmc-pltfm -dw_mmc-rockchip -dw_wdt -dwc3 -dwc3-exynos -dwc3-omap -dwc3-pci -dwc3-qcom -dwc_eth_qos -dwmac-generic -dwmac-ipq806x -dwmac-lpc18xx -dwmac-meson -dwmac-rk -dwmac-socfpga -dwmac-sti -dwmac-sunxi -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -echainiv -echo -edac_core -edt-ft5x06 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efs -egalax_ts -ehci-msm -ehci-mxc -ehci-omap -ehci-tegra -ehset -elan_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emac_arc -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -emif -empeg -ems_pci -ems_usb -emu10k1-gp -enc28j60 -enclosure -encoder-opa362 -encoder-tfp410 -encx24j600 -encx24j600-regmap -eni -enic -epat -epia -epic100 -eql -esas2r -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -exynos-gsc -exynos-rng -exynos_adc -exynosdrm -ezusb -f2fs -f71805f -f71882fg -f75375s -f81232 -fakelb -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdp -fdp_i2c -fealnx -ff-memless -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fl512 -flexcan -flexfb -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fsl-dcu-drm -fsl-edma -fsl-mph-dr-of -fsl-quadspi -fsl_lpuart -fsl_pq_mdio -fsl_usb2_udc -ft6236 -ftdi-elan -ftdi_sio -ftgmac100 -ftl -ftmac100 -fujitsu_ts -fusb300_udc -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_multi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcc-apq8084 -gcc-ipq806x -gcc-msm8660 -gcc-msm8916 -gcc-msm8960 -gcc-msm8974 -gcm -gdmtty -gdmulte -gdmwm -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -gf128mul -gf2k -gfs2 -ghash-arm-ce -ghash-generic -gianfar_driver -gianfar_ptp -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -gluebi -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-addr-flash -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-amd8111 -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-fan -gpio-grgpio -gpio-ir-recv -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-rcar -gpio-rdc321x -gpio-regulator -gpio-syscon -gpio-tps65912 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gpio_wdt -gpmi_nand -gr_udc -grace -grcan -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gxt4500 -hackrf -hamachi -hampshire -hanwang -hci -hci_uart -hci_vhci -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hi6421-pmic-core -hi6421-regulator -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hifn_795x -highbank-cpufreq -highbank_l2_edac -highbank_mc_edac -hih6130 -hip04_eth -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi-acpu-cpufreq -hisi504_nand -hisi_thermal -hix5hd2_gmac -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hnae -hns_dsaf -hns_enet_drv -hns_mdio -hopper -horus3a -host1x -hostap -hostap_pci -hostap_plx -hp100 -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -hsu_dma -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hwa-hc -hwa-rc -hwmon-vid -hwspinlock_core -hx8357 -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-cbus-gpio -i2c-cros-ec-tunnel -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-emev2 -i2c-exynos5 -i2c-gpio -i2c-hid -i2c-hix5hd2 -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-meson -i2c-mt65xx -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-mv64xxx -i2c-nforce2 -i2c-nomadik -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-qup -i2c-rcar -i2c-riic -i2c-rk3x -i2c-robotfuzz-osif -i2c-sh_mobile -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-slave-eeprom -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tegra -i2c-tiny-usb -i2c-uniphier -i2c-uniphier-f -i2c-versatile -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i40e -i40evf -i5k_amb -i6300esb -i740fb -ib_addr -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibmaem -ibmpex -icp_multi -icplus -ics932s401 -idma64 -idmouse -idt77252 -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -impa7 -ims-pcu -imx-dma -imx-ipu-v3 -imx-ipuv3-crtc -imx-ldb -imx-sdma -imx-tve -imx074 -imx21-hcd -imx2_wdt -imx6q-cpufreq -imx6ul_tsc -imx_keypad -imx_thermal -imxdrm -imxfb -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int51x1 -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -iproc_nand -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irqbypass -irtty-sir -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it87 -it913x -itd1000 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -k3dma -kafs -kalmia -kaweth -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan78xx -lanai -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcc-ipq806x -lcc-msm8960 -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-aat1290 -leds-adp5520 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-ktd2692 -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-ns2 -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -litelink-sir -lkkbd -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr2_nvm -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -macb -macmodes -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mailbox-test -mantis -mantis_core -map_absent -map_ram -map_rom -marvell -marvell-cesa -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max5821 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77686 -max77693 -max77693-haptic -max77693_charger -max77802 -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-gpio -mdio-mux -mdio-mux-gpio -mdio-mux-mmioreg -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -meson-ir -meson_uart -meson_wdt -metro-usb -metronomefb -mf6x4 -mg_disk -mga -michael_mic -micrel -microchip -microread -microread_i2c -microtek -mii -minix -mip6 -mite -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmcc-apq8084 -mmcc-msm8960 -mmcc-msm8974 -mmci_qcom_dml -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi001 -msi2500 -msm -msm-rng -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt8173-max98090 -mt8173-rt5650-rt5676 -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd_dataflash -mtdoops -mtdram -mtdswap -mtip32xx -mtk-afe-pcm -mtk-pmic-wrap -mtk-sd -mtk_wdt -mtouch -multipath -multiq3 -musb_am335x -musb_dsps -mv643xx_eth -mv_cesa -mv_u3d_core -mv_udc -mvmdio -mvneta -mvpp2 -mvsas -mvsdio -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mx3_camera -mxb -mxc4005 -mxc_nand -mxc_w1 -mxcmmc -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxs-dcp -mxser -mxsfb -mxuport -myri10ge -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nbpfaxi -nci -nci_spi -nci_uart -ncpfs -nct6683 -nct6775 -nct7802 -nct7904 -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_labpc -ni_labpc_common -ni_labpc_pci -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicstar -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nokia-modem -nosy -notifier-error-inject -nouveau -nozomi -nps_enet -ns558 -ns83820 -nsp32 -ntb -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nvec -nvec_kbd -nvec_paz00 -nvec_power -nvec_ps2 -nvidiafb -nvme -nvmem-imx-ocotp -nvmem-vf610-ocotp -nvmem_core -nvmem_qfprom -nvmem_rockchip_efuse -nvram -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_xilinx_wdt -ohci-omap3 -old_belkin-sir -omap -omap-aes -omap-des -omap-mailbox -omap-ocp2scp -omap-rng -omap-sham -omap-vout -omap2 -omap2430 -omap3-isp -omap3-rom-rng -omap4-keypad -omap_hdq -omap_hwspinlock -omap_remoteproc -omap_ssi -omap_ssi_port -omap_wdt -omapfb -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -orion_nand -orion_wdt -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -palmas-pwrbutton -palmas-regulator -pandora_bl -panel -panel-dpi -panel-dsi-cm -panel-lg-lg4573 -panel-lgphilips-lb035q02 -panel-nec-nl8048hl11 -panel-samsung-ld9040 -panel-samsung-s6e8aa0 -panel-sharp-lq101r1sx01 -panel-sharp-ls037v7dw01 -panel-simple -panel-sony-acx565akm -panel-tpo-td028ttec1 -panel-tpo-td043mtea1 -parade-ps8622 -parallel-display -paride -parkbd -parport -parport_ax88796 -parport_pc -parport_serial -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_imx -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pbias-regulator -pc300too -pc87360 -pc87427 -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-stub -pci200syn -pcie-iproc -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmda12 -pcmmio -pcmuio -pcnet32 -pcrypt -pcwd_pci -pcwd_usb -pd -pda_power -pdc_adma -peak_pci -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-am335x -phy-am335x-control -phy-bcm-kona-usb2 -phy-berlin-sata -phy-berlin-usb -phy-dm816x-usb -phy-exynos-usb2 -phy-exynos5-usbdrd -phy-gpio-vbus-usb -phy-hix5hd2-sata -phy-isp1301 -phy-msm-usb -phy-mt65xx-usb3 -phy-omap-control -phy-omap-usb2 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-qcom-8x16-usb -phy-qcom-apq8064-sata -phy-qcom-ipq806x-sata -phy-qcom-ufs -phy-qcom-ufs-qmp-14nm -phy-qcom-ufs-qmp-20nm -phy-rcar-gen2 -phy-rcar-usb -phy-rockchip-usb -phy-tahvo -phy-tegra-usb -phy-ti-pipe3 -phy-tusb1210 -phy-twl4030-usb -phy-twl6030-usb -physmap -physmap_of -pinctrl-apq8064 -pinctrl-apq8084 -pinctrl-ipq8064 -pinctrl-msm8660 -pinctrl-msm8916 -pinctrl-msm8960 -pinctrl-msm8x74 -pinctrl-ph1-ld4 -pinctrl-ph1-ld6b -pinctrl-ph1-pro4 -pinctrl-ph1-pro5 -pinctrl-ph1-sld8 -pinctrl-proxstream2 -pinctrl-spmi-gpio -pinctrl-spmi-mpp -pinctrl-ssbi-gpio -pinctrl-ssbi-mpp -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl172 -pl2303 -pl330 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8921-core -pm8941-pwrkey -pm8941-wled -pm8xxx-vibrator -pmbus -pmbus_core -pmc551 -pmcraid -pmic8xxx-keypad -pmic8xxx-pwrkey -pn533 -pn544 -pn544_i2c -pn_pep -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_parport -pptp -prism2_usb -ps2mult -psmouse -psnap -pt -pulsedlight-lidar-lite-v2 -pvrusb2 -pwc -pwm-atmel-hlcdc -pwm-beeper -pwm-berlin -pwm-fan -pwm-fsl-ftm -pwm-imx -pwm-lp3943 -pwm-mtk-disp -pwm-omap-dmtimer -pwm-pca9685 -pwm-rcar -pwm-regulator -pwm-renesas-tpu -pwm-rockchip -pwm-samsung -pwm-tegra -pwm-tiecap -pwm-tiehrpwm -pwm-twl -pwm-twl-led -pwm_bl -pxa168_eth -pxa27x_udc -pxa3xx_nand -qcaspi -qcaux -qcom-coincell -qcom-spmi-iadc -qcom-spmi-pmic -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom-wdt -qcom_bam_dma -qcom_gsbi -qcom_hwspinlock -qcom_rpm -qcom_rpm-regulator -qcom_smbb -qcom_smd-regulator -qcom_spmi-regulator -qcrypto -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qoriq-cpufreq -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ravb -raw -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rcar-dmac -rcar-du-drm -rcar-hpbdma -rcar_can -rcar_jpu -rcar_thermal -rcar_vin -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -regmap-spmi -regulator-haptic -reiserfs -remoteproc -renesas_usbhs -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio500 -rivafb -rj54n1cb0c -rk808 -rk808-regulator -rmd128 -rmd160 -rmd256 -rmd320 -rmobile-reset -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rockchip-io-domain -rockchip_drm_vop -rockchip_saradc -rockchip_thermal -rockchipdrm -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-armada38x -rtc-as3722 -rtc-bq32k -rtc-bq4802 -rtc-cmos -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-hid-sensor-time -rtc-hym8563 -rtc-imxdi -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max77686 -rtc-max77802 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-mxc -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8563 -rtc-pcf8583 -rtc-pl030 -rtc-pm8xxx -rtc-r9701 -rtc-rc5t583 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-snvs -rtc-stk17ta8 -rtc-tegra -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3c-fb -s3c2410_wdt -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s5p-g2d -s5p-hdmi -s5p-hdmiphy -s5p-jpeg -s5p-mfc -s5p-mixer -s5p-sdo -s5p-sii9234 -s5p-sss -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7706h -safe_serial -sahara -salsa20_generic -samsung -samsung-keypad -samsung-sxgbe -sata_highbank -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_rcar -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sbp_target -sbs-battery -sc16is7xx -sc92031 -sca3000 -sch5627 -sch5636 -sch56xx-common -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scpi-cpufreq -scpi-hwmon -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -sdhci-dove -sdhci-msm -sdhci-of-arasan -sdhci-of-at91 -sdhci-of-esdhc -sdhci-pci -sdhci-pxav3 -sdhci-s3c -sdhci-tegra -sdhci_f_sdh30 -sdio_uart -seed -sensorhub -seqiv -ser_gigaset -serial-tegra -serial2002 -serio_raw -sermouse -serpent_generic -serport -ses -sfc -sh-sci -sh_eth -sh_flctl -sh_irda -sh_keysc -sh_mmcif -sh_mobile_ceu_camera -sh_mobile_csi2 -sh_mobile_hdmi -sh_mobile_lcdcfb -sh_mobile_meram -sh_mobile_sdhi -sh_veu -sh_vou -sha1-arm -sha1-arm-ce -sha1-arm-neon -sha2-arm-ce -sha256-arm -sha512-arm -shark2 -shdma -shmob-drm -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -slcan -slip -slram -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smc911x -smc91x -smd -smd-rpm -smem -smipcie -smm665 -smsc -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd-aaci -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4xxx-adda -snd-aloop -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-ens1370 -snd-ens1371 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hda-tegra -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm-oss -snd-pcxhr -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-alc5632 -snd-soc-apq8016-sbc -snd-soc-armada-370-db -snd-soc-arndale-rt5631 -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-davinci-mcasp -snd-soc-dmic -snd-soc-edma -snd-soc-es8328 -snd-soc-es8328-i2c -snd-soc-es8328-spi -snd-soc-eukrea-tlv320 -snd-soc-evm -snd-soc-fsi -snd-soc-fsl-asoc-card -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-utils -snd-soc-gtm601 -snd-soc-i2s -snd-soc-idma -snd-soc-imx-es8328 -snd-soc-imx-mc13783 -snd-soc-imx-spdif -snd-soc-imx-ssi -snd-soc-imx-wm8962 -snd-soc-kirkwood -snd-soc-lpass-apq8016 -snd-soc-lpass-cpu -snd-soc-lpass-ipq806x -snd-soc-lpass-platform -snd-soc-max98090 -snd-soc-max98095 -snd-soc-max98357a -snd-soc-mc13783 -snd-soc-odroidx2-max98090 -snd-soc-omap-abe-twl6040 -snd-soc-omap-dmic -snd-soc-omap-hdmi-audio -snd-soc-omap-mcpdm -snd-soc-omap3pandora -snd-soc-pcm -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rcar -snd-soc-rl6231 -snd-soc-rockchip-i2s -snd-soc-rockchip-max98090 -snd-soc-rockchip-rt5645 -snd-soc-rockchip-spdif -snd-soc-rsrc-card -snd-soc-rt5631 -snd-soc-rt5640 -snd-soc-rt5645 -snd-soc-rt5677 -snd-soc-rt5677-spi -snd-soc-rx51 -snd-soc-s3c-dma -snd-soc-samsung-spdif -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-smdk-spdif -snd-soc-smdk-wm8994 -snd-soc-smdk-wm8994pcm -snd-soc-snow -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-storm -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tegra-alc5632 -snd-soc-tegra-max98090 -snd-soc-tegra-pcm -snd-soc-tegra-rt5640 -snd-soc-tegra-rt5677 -snd-soc-tegra-trimslice -snd-soc-tegra-utils -snd-soc-tegra-wm8753 -snd-soc-tegra-wm8903 -snd-soc-tegra-wm9712 -snd-soc-tegra20-ac97 -snd-soc-tegra20-das -snd-soc-tegra20-i2s -snd-soc-tegra20-spdif -snd-soc-tegra30-ahub -snd-soc-tegra30-i2s -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-twl6040 -snd-soc-wm-hubs -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-wm8994 -snd-soc-wm9712 -snd-soc-xtfpga-i2s -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-variax -snd-usbmidi-lib -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-ymfpci -snic -snvs_pwrkey -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -soc_scale_crop -softdog -softing -solo6x10 -solos-pci -sony-btf-mpx -sp2 -sp805_wdt -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -speedfax -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-fsl-dspi -spi-gpio -spi-imx -spi-lm70llp -spi-meson-spifc -spi-mt65xx -spi-nor -spi-oc-tiny -spi-orion -spi-pl022 -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-qup -spi-rockchip -spi-rspi -spi-s3c64xx -spi-sc18is602 -spi-sh-hspi -spi-sh-msiof -spi-tegra114 -spi-tegra20-sflash -spi-tegra20-slink -spi-ti-qspi -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spmi -spmi-pmic-arb -sr9700 -sr9800 -ssb -ssbi -ssd1307fb -ssfdc -ssi_protocol -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-asc -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm32-usart -stm_console -stm_core -stmmac -stmmac-platform -stmpe-keypad -stmpe-ts -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sudmac -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -svgalib -sx8 -sx8654 -sx9500 -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -t1pci -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc3589x-keypad -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tegra-devfreq -tegra-drm -tegra-kbc -tegra124-cpufreq -tegra_wdt -tehuti -tekram-sir -teranetics -test-hexdump -test-kprobes -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -thmc50 -thunderbolt -ti-adc081c -ti-adc128s052 -ti-soc-thermal -ti-vpe -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_hecc -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -tilcdc -timeriomem-rng -tipc -tlan -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmio_mmc -tmio_mmc_core -tmio_nand -tmiofb -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -torture -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tusb6010 -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish_common -twofish_generic -typhoon -u132-hcd -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -us5182d -usb-dmac -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vcan -vcnl4000 -ves1820 -ves1x93 -veth -vexpress -vexpress-spc-cpufreq -vf610_adc -vf610_nfc -vfio -vfio-amba -vfio-pci -vfio-platform -vfio-platform-amdxgbe -vfio-platform-base -vfio-platform-calxedaxgmac -vfio_virqfd -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-rhine -via-sdmmc -via-velocity -via686a -videobuf-core -videobuf-dma-contig -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videodev -vim2m -viperboard -viperboard_adc -virtio-gpu -virtio-rng -virtio_input -virtio_rpmsg_bus -virtio_scsi -virtual -visor -vitesse -vivid -vlsi_ir -vmac -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vrf -vringh -vsock -vsp1 -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83627ehf -w83627hf -w83781d -w83791d -w83792d -w83793 -w83795 -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wcn36xx -wd719x -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -wire -wishbone-serial -wkup_m3_rproc -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xc4000 -xc5000 -xcbc -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xgmac -xhci-plat-hcd -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx_uartps -xillybus_core -xillybus_of -xillybus_pcie -xor -xor-neon -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yurex -zaurus -zd1201 -zd1211rw -zforce_ts -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -zr364xx -zram -zynq-fpga reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/fwinfo +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/fwinfo @@ -1,996 +0,0 @@ -firmware: 3826.arm -firmware: 3com/typhoon.bin -firmware: 6fire/dmx6fireap.ihx -firmware: 6fire/dmx6firecf.bin -firmware: 6fire/dmx6firel2.ihx -firmware: BCM2033-FW.bin -firmware: BCM2033-MD.hex -firmware: BT3CPCC.bin -firmware: RTL8192E/boot.img -firmware: RTL8192E/data.img -firmware: RTL8192E/main.img -firmware: RTL8192U/boot.img -firmware: RTL8192U/data.img -firmware: RTL8192U/main.img -firmware: a300_pfp.fw -firmware: a300_pm4.fw -firmware: a330_pfp.fw -firmware: a330_pm4.fw -firmware: a420_pfp.fw -firmware: a420_pm4.fw -firmware: acenic/tg1.bin -firmware: acenic/tg2.bin -firmware: adaptec/starfire_rx.bin -firmware: adaptec/starfire_tx.bin -firmware: advansys/3550.bin -firmware: advansys/38C0800.bin -firmware: advansys/38C1600.bin -firmware: advansys/mcode.bin -firmware: agere_ap_fw.bin -firmware: agere_sta_fw.bin -firmware: aic94xx-seq.fw -firmware: amdgpu/carrizo_ce.bin -firmware: amdgpu/carrizo_me.bin -firmware: amdgpu/carrizo_mec.bin -firmware: amdgpu/carrizo_mec2.bin -firmware: amdgpu/carrizo_pfp.bin -firmware: amdgpu/carrizo_rlc.bin -firmware: amdgpu/carrizo_sdma.bin -firmware: amdgpu/carrizo_sdma1.bin -firmware: amdgpu/carrizo_uvd.bin -firmware: amdgpu/carrizo_vce.bin -firmware: amdgpu/fiji_ce.bin -firmware: amdgpu/fiji_me.bin -firmware: amdgpu/fiji_mec.bin -firmware: amdgpu/fiji_mec2.bin -firmware: amdgpu/fiji_pfp.bin -firmware: amdgpu/fiji_rlc.bin -firmware: amdgpu/fiji_sdma.bin -firmware: amdgpu/fiji_sdma1.bin -firmware: amdgpu/fiji_smc.bin -firmware: amdgpu/fiji_uvd.bin -firmware: amdgpu/fiji_vce.bin -firmware: amdgpu/stoney_ce.bin -firmware: amdgpu/stoney_me.bin -firmware: amdgpu/stoney_mec.bin -firmware: amdgpu/stoney_pfp.bin -firmware: amdgpu/stoney_rlc.bin -firmware: amdgpu/stoney_sdma.bin -firmware: amdgpu/stoney_uvd.bin -firmware: amdgpu/stoney_vce.bin -firmware: amdgpu/tonga_ce.bin -firmware: amdgpu/tonga_mc.bin -firmware: amdgpu/tonga_me.bin -firmware: amdgpu/tonga_mec.bin -firmware: amdgpu/tonga_mec2.bin -firmware: amdgpu/tonga_pfp.bin -firmware: amdgpu/tonga_rlc.bin -firmware: amdgpu/tonga_sdma.bin -firmware: amdgpu/tonga_sdma1.bin -firmware: amdgpu/tonga_smc.bin -firmware: amdgpu/tonga_uvd.bin -firmware: amdgpu/tonga_vce.bin -firmware: amdgpu/topaz_ce.bin -firmware: amdgpu/topaz_mc.bin -firmware: amdgpu/topaz_me.bin -firmware: amdgpu/topaz_mec.bin -firmware: amdgpu/topaz_pfp.bin -firmware: amdgpu/topaz_rlc.bin -firmware: amdgpu/topaz_sdma.bin -firmware: amdgpu/topaz_sdma1.bin -firmware: amdgpu/topaz_smc.bin -firmware: ar5523.bin -firmware: asihpi/dsp5000.bin -firmware: asihpi/dsp6200.bin -firmware: asihpi/dsp6205.bin -firmware: asihpi/dsp6400.bin -firmware: asihpi/dsp6600.bin -firmware: asihpi/dsp8700.bin -firmware: asihpi/dsp8900.bin -firmware: ast_dp501_fw.bin -firmware: ath10k/QCA6174/hw2.1/board-2.bin -firmware: ath10k/QCA6174/hw2.1/board.bin -firmware: ath10k/QCA6174/hw2.1/firmware-4.bin -firmware: ath10k/QCA6174/hw2.1/firmware-5.bin -firmware: ath10k/QCA6174/hw3.0/board-2.bin -firmware: ath10k/QCA6174/hw3.0/board.bin -firmware: ath10k/QCA6174/hw3.0/firmware-4.bin -firmware: ath10k/QCA6174/hw3.0/firmware-5.bin -firmware: ath10k/QCA9377/hw1.0/board.bin -firmware: ath10k/QCA9377/hw1.0/firmware-5.bin -firmware: ath10k/QCA988X/hw2.0/board-2.bin -firmware: ath10k/QCA988X/hw2.0/board.bin -firmware: ath10k/QCA988X/hw2.0/firmware-2.bin -firmware: ath10k/QCA988X/hw2.0/firmware-3.bin -firmware: ath10k/QCA988X/hw2.0/firmware-4.bin -firmware: ath10k/QCA988X/hw2.0/firmware-5.bin -firmware: ath10k/QCA988X/hw2.0/firmware.bin -firmware: ath3k-1.fw -firmware: ath6k/AR6003/hw2.0/athwlan.bin.z77 -firmware: ath6k/AR6003/hw2.0/bdata.SD31.bin -firmware: ath6k/AR6003/hw2.0/bdata.bin -firmware: ath6k/AR6003/hw2.0/data.patch.bin -firmware: ath6k/AR6003/hw2.0/otp.bin.z77 -firmware: ath6k/AR6003/hw2.1.1/athwlan.bin -firmware: ath6k/AR6003/hw2.1.1/bdata.SD31.bin -firmware: ath6k/AR6003/hw2.1.1/bdata.bin -firmware: ath6k/AR6003/hw2.1.1/data.patch.bin -firmware: ath6k/AR6003/hw2.1.1/otp.bin -firmware: ath6k/AR6004/hw1.0/bdata.DB132.bin -firmware: ath6k/AR6004/hw1.0/bdata.bin -firmware: ath6k/AR6004/hw1.0/fw.ram.bin -firmware: ath6k/AR6004/hw1.1/bdata.DB132.bin -firmware: ath6k/AR6004/hw1.1/bdata.bin -firmware: ath6k/AR6004/hw1.1/fw.ram.bin -firmware: ath6k/AR6004/hw1.2/bdata.bin -firmware: ath6k/AR6004/hw1.2/fw.ram.bin -firmware: ath6k/AR6004/hw1.3/bdata.bin -firmware: ath6k/AR6004/hw1.3/fw.ram.bin -firmware: ath9k_htc/htc_7010-1.4.0.fw -firmware: ath9k_htc/htc_9271-1.4.0.fw -firmware: atmel_at76c502-wpa.bin -firmware: atmel_at76c502.bin -firmware: atmel_at76c502_3com-wpa.bin -firmware: atmel_at76c502_3com.bin -firmware: atmel_at76c502d-wpa.bin -firmware: atmel_at76c502d.bin -firmware: atmel_at76c502e-wpa.bin -firmware: atmel_at76c502e.bin -firmware: atmel_at76c503-i3861.bin -firmware: atmel_at76c503-i3863.bin -firmware: atmel_at76c503-rfmd-acc.bin -firmware: atmel_at76c503-rfmd.bin -firmware: atmel_at76c504-wpa.bin -firmware: atmel_at76c504.bin -firmware: atmel_at76c504_2958-wpa.bin -firmware: atmel_at76c504_2958.bin -firmware: atmel_at76c504a_2958-wpa.bin -firmware: atmel_at76c504a_2958.bin -firmware: atmel_at76c505-rfmd.bin -firmware: atmel_at76c505-rfmd2958.bin -firmware: atmel_at76c505a-rfmd2958.bin -firmware: atmel_at76c505amx-rfmd.bin -firmware: atmel_at76c506-wpa.bin -firmware: atmel_at76c506.bin -firmware: atmsar11.fw -firmware: atsc_denver.inp -firmware: av7110/bootcode.bin -firmware: b43/ucode11.fw -firmware: b43/ucode13.fw -firmware: b43/ucode14.fw -firmware: b43/ucode15.fw -firmware: b43/ucode16_mimo.fw -firmware: b43/ucode5.fw -firmware: b43/ucode9.fw -firmware: b43legacy/ucode2.fw -firmware: b43legacy/ucode4.fw -firmware: bfubase.frm -firmware: bnx2/bnx2-mips-06-6.2.3.fw -firmware: bnx2/bnx2-mips-09-6.2.1b.fw -firmware: bnx2/bnx2-rv2p-06-6.0.15.fw -firmware: bnx2/bnx2-rv2p-09-6.0.17.fw -firmware: bnx2/bnx2-rv2p-09ax-6.0.17.fw -firmware: bnx2x/bnx2x-e1-7.12.30.0.fw -firmware: bnx2x/bnx2x-e1h-7.12.30.0.fw -firmware: bnx2x/bnx2x-e2-7.12.30.0.fw -firmware: brcm/bcm43xx-0.fw -firmware: brcm/bcm43xx_hdr-0.fw -firmware: brcm/brcmfmac43143-sdio.bin -firmware: brcm/brcmfmac43143-sdio.txt -firmware: brcm/brcmfmac43143.bin -firmware: brcm/brcmfmac43236b.bin -firmware: brcm/brcmfmac43241b0-sdio.bin -firmware: brcm/brcmfmac43241b0-sdio.txt -firmware: brcm/brcmfmac43241b4-sdio.bin -firmware: brcm/brcmfmac43241b4-sdio.txt -firmware: brcm/brcmfmac43241b5-sdio.bin -firmware: brcm/brcmfmac43241b5-sdio.txt -firmware: brcm/brcmfmac43242a.bin -firmware: brcm/brcmfmac4329-sdio.bin -firmware: brcm/brcmfmac4329-sdio.txt -firmware: brcm/brcmfmac4330-sdio.bin -firmware: brcm/brcmfmac4330-sdio.txt -firmware: brcm/brcmfmac4334-sdio.bin -firmware: brcm/brcmfmac4334-sdio.txt -firmware: brcm/brcmfmac43340-sdio.bin -firmware: brcm/brcmfmac43340-sdio.txt -firmware: brcm/brcmfmac4335-sdio.bin -firmware: brcm/brcmfmac4335-sdio.txt -firmware: brcm/brcmfmac43362-sdio.bin -firmware: brcm/brcmfmac43362-sdio.txt -firmware: brcm/brcmfmac4339-sdio.bin -firmware: brcm/brcmfmac4339-sdio.txt -firmware: brcm/brcmfmac43430-sdio.bin -firmware: brcm/brcmfmac43430-sdio.txt -firmware: brcm/brcmfmac43455-sdio.bin -firmware: brcm/brcmfmac43455-sdio.txt -firmware: brcm/brcmfmac4350-pcie.bin -firmware: brcm/brcmfmac4350-pcie.txt -firmware: brcm/brcmfmac4354-sdio.bin -firmware: brcm/brcmfmac4354-sdio.txt -firmware: brcm/brcmfmac4356-pcie.bin -firmware: brcm/brcmfmac4356-pcie.txt -firmware: brcm/brcmfmac43569.bin -firmware: brcm/brcmfmac43570-pcie.bin -firmware: brcm/brcmfmac43570-pcie.txt -firmware: brcm/brcmfmac4358-pcie.bin -firmware: brcm/brcmfmac4358-pcie.txt -firmware: brcm/brcmfmac43602-pcie.bin -firmware: brcm/brcmfmac43602-pcie.txt -firmware: brcm/brcmfmac4365b-pcie.bin -firmware: brcm/brcmfmac4365b-pcie.txt -firmware: brcm/brcmfmac4366b-pcie.bin -firmware: brcm/brcmfmac4366b-pcie.txt -firmware: brcm/brcmfmac4371-pcie.bin -firmware: brcm/brcmfmac4371-pcie.txt -firmware: c218tunx.cod -firmware: c320tunx.cod -firmware: carl9170-1.fw -firmware: cbfw-3.2.3.0.bin -firmware: cis/3CCFEM556.cis -firmware: cis/3CXEM556.cis -firmware: cis/COMpad2.cis -firmware: cis/COMpad4.cis -firmware: cis/DP83903.cis -firmware: cis/LA-PCM.cis -firmware: cis/MT5634ZLX.cis -firmware: cis/NE2K.cis -firmware: cis/PCMLM28.cis -firmware: cis/PE-200.cis -firmware: cis/PE520.cis -firmware: cis/RS-COM-2P.cis -firmware: cis/SW_555_SER.cis -firmware: cis/SW_7xx_SER.cis -firmware: cis/SW_8xx_SER.cis -firmware: cis/tamarack.cis -firmware: cmmb_ming_app.inp -firmware: cmmb_vega_12mhz.inp -firmware: cmmb_venice_12mhz.inp -firmware: comedi/jr3pci.idm -firmware: cp204unx.cod -firmware: cpia2/stv0672_vp4.bin -firmware: cs46xx/cwc4630 -firmware: cs46xx/cwcasync -firmware: cs46xx/cwcbinhack -firmware: cs46xx/cwcdma -firmware: cs46xx/cwcsnoop -firmware: ct2fw-3.2.3.0.bin -firmware: ct2fw-3.2.5.1.bin -firmware: ctefx.bin -firmware: ctfw-3.2.3.0.bin -firmware: ctfw-3.2.5.1.bin -firmware: cxgb3/ael2005_opt_edc.bin -firmware: cxgb3/ael2005_twx_edc.bin -firmware: cxgb3/ael2020_twx_edc.bin -firmware: cxgb3/t3b_psram-1.1.0.bin -firmware: cxgb3/t3c_psram-1.1.0.bin -firmware: cxgb3/t3fw-7.12.0.bin -firmware: cxgb4/t4fw.bin -firmware: cxgb4/t5fw.bin -firmware: cxgb4/t6fw.bin -firmware: cyzfirm.bin -firmware: daqboard2000_firmware.bin -firmware: digiface_firmware.bin -firmware: digiface_firmware_rev11.bin -firmware: dvb-cx18-mpc718-mt352.fw -firmware: dvb-demod-m88ds3103.fw -firmware: dvb-demod-m88rs6000.fw -firmware: dvb-demod-mn88472-02.fw -firmware: dvb-demod-mn88473-01.fw -firmware: dvb-demod-si2165.fw -firmware: dvb-demod-si2168-a20-01.fw -firmware: dvb-demod-si2168-a30-01.fw -firmware: dvb-demod-si2168-b40-01.fw -firmware: dvb-fe-af9013.fw -firmware: dvb-fe-cx24117.fw -firmware: dvb-fe-drxj-mc-1.0.8.fw -firmware: dvb-fe-ds3000.fw -firmware: dvb-fe-tda10071.fw -firmware: dvb-fe-xc4000-1.4.1.fw -firmware: dvb-fe-xc4000-1.4.fw -firmware: dvb-fe-xc5000-1.6.114.fw -firmware: dvb-fe-xc5000c-4.1.30.7.fw -firmware: dvb-tuner-si2158-a20-01.fw -firmware: dvb-usb-af9015.fw -firmware: dvb-usb-af9035-02.fw -firmware: dvb-usb-dib0700-1.20.fw -firmware: dvb-usb-dw2101.fw -firmware: dvb-usb-dw2102.fw -firmware: dvb-usb-dw2104.fw -firmware: dvb-usb-dw3101.fw -firmware: dvb-usb-ec168.fw -firmware: dvb-usb-it9135-01.fw -firmware: dvb-usb-it9135-02.fw -firmware: dvb-usb-it9303-01.fw -firmware: dvb-usb-lme2510-lg.fw -firmware: dvb-usb-lme2510-s0194.fw -firmware: dvb-usb-lme2510c-lg.fw -firmware: dvb-usb-lme2510c-rs2000.fw -firmware: dvb-usb-lme2510c-s0194.fw -firmware: dvb-usb-lme2510c-s7395.fw -firmware: dvb-usb-p1100.fw -firmware: dvb-usb-p7500.fw -firmware: dvb-usb-s630.fw -firmware: dvb-usb-s660.fw -firmware: dvb-usb-terratec-h7-az6007.fw -firmware: dvb_nova_12mhz.inp -firmware: dvb_nova_12mhz_b0.inp -firmware: dvb_rio.inp -firmware: dvbh_rio.inp -firmware: e100/d101m_ucode.bin -firmware: e100/d101s_ucode.bin -firmware: e100/d102e_ucode.bin -firmware: ea/3g_asic.fw -firmware: ea/darla20_dsp.fw -firmware: ea/darla24_dsp.fw -firmware: ea/echo3g_dsp.fw -firmware: ea/gina20_dsp.fw -firmware: ea/gina24_301_asic.fw -firmware: ea/gina24_301_dsp.fw -firmware: ea/gina24_361_asic.fw -firmware: ea/gina24_361_dsp.fw -firmware: ea/indigo_dj_dsp.fw -firmware: ea/indigo_djx_dsp.fw -firmware: ea/indigo_dsp.fw -firmware: ea/indigo_io_dsp.fw -firmware: ea/indigo_iox_dsp.fw -firmware: ea/layla20_asic.fw -firmware: ea/layla20_dsp.fw -firmware: ea/layla24_1_asic.fw -firmware: ea/layla24_2A_asic.fw -firmware: ea/layla24_2S_asic.fw -firmware: ea/layla24_dsp.fw -firmware: ea/loader_dsp.fw -firmware: ea/mia_dsp.fw -firmware: ea/mona_2_asic.fw -firmware: ea/mona_301_1_asic_48.fw -firmware: ea/mona_301_1_asic_96.fw -firmware: ea/mona_301_dsp.fw -firmware: ea/mona_361_1_asic_48.fw -firmware: ea/mona_361_1_asic_96.fw -firmware: ea/mona_361_dsp.fw -firmware: edgeport/boot.fw -firmware: edgeport/boot2.fw -firmware: edgeport/down.fw -firmware: edgeport/down2.fw -firmware: edgeport/down3.bin -firmware: emi26/bitstream.fw -firmware: emi26/firmware.fw -firmware: emi26/loader.fw -firmware: emi62/bitstream.fw -firmware: emi62/loader.fw -firmware: emi62/spdif.fw -firmware: emu/audio_dock.fw -firmware: emu/emu0404.fw -firmware: emu/emu1010_notebook.fw -firmware: emu/emu1010b.fw -firmware: emu/hana.fw -firmware: emu/micro_dock.fw -firmware: ene-ub6250/ms_init.bin -firmware: ene-ub6250/ms_rdwr.bin -firmware: ene-ub6250/msp_rdwr.bin -firmware: ene-ub6250/sd_init1.bin -firmware: ene-ub6250/sd_init2.bin -firmware: ene-ub6250/sd_rdwr.bin -firmware: ess/maestro3_assp_kernel.fw -firmware: ess/maestro3_assp_minisrc.fw -firmware: f2255usb.bin -firmware: fm_radio.inp -firmware: fm_radio_rio.inp -firmware: fw.ram.bin -firmware: go7007/go7007fw.bin -firmware: go7007/go7007tv.bin -firmware: go7007/lr192.fw -firmware: go7007/px-m402u.fw -firmware: go7007/px-tv402u.fw -firmware: go7007/s2250-1.fw -firmware: go7007/s2250-2.fw -firmware: go7007/wis-startrek.fw -firmware: i1480-phy-0.0.bin -firmware: i1480-pre-phy-0.0.bin -firmware: i1480-usb-0.0.bin -firmware: i2400m-fw-usb-1.5.sbcf -firmware: i6050-fw-usb-1.5.sbcf -firmware: i915/bxt_dmc_ver1.bin -firmware: i915/skl_dmc_ver1.bin -firmware: i915/skl_guc_ver4.bin -firmware: i915/skl_guc_ver6.bin -firmware: icom_asc.bin -firmware: icom_call_setup.bin -firmware: icom_res_dce.bin -firmware: intel/ibt-11-5.ddc -firmware: intel/ibt-11-5.sfi -firmware: ipw2100-1.3-i.fw -firmware: ipw2100-1.3-p.fw -firmware: ipw2100-1.3.fw -firmware: ipw2200-bss.fw -firmware: ipw2200-ibss.fw -firmware: ipw2200-sniffer.fw -firmware: isci/isci_firmware.bin -firmware: isdbt_nova_12mhz.inp -firmware: isdbt_nova_12mhz_b0.inp -firmware: isdbt_pele.inp -firmware: isdbt_rio.inp -firmware: isdn/ISAR.BIN -firmware: isi4608.bin -firmware: isi4616.bin -firmware: isi608.bin -firmware: isi608em.bin -firmware: isi616em.bin -firmware: isight.fw -firmware: isl3886pci -firmware: isl3886usb -firmware: isl3887usb -firmware: iwlwifi-100-5.ucode -firmware: iwlwifi-1000-5.ucode -firmware: iwlwifi-105-6.ucode -firmware: iwlwifi-135-6.ucode -firmware: iwlwifi-2000-6.ucode -firmware: iwlwifi-2030-6.ucode -firmware: iwlwifi-3160-13.ucode -firmware: iwlwifi-3945-2.ucode -firmware: iwlwifi-4965-2.ucode -firmware: iwlwifi-5000-5.ucode -firmware: iwlwifi-5150-2.ucode -firmware: iwlwifi-6000-4.ucode -firmware: iwlwifi-6000g2a-5.ucode -firmware: iwlwifi-6000g2b-6.ucode -firmware: iwlwifi-6050-5.ucode -firmware: iwlwifi-7260-13.ucode -firmware: iwlwifi-7265-13.ucode -firmware: iwlwifi-7265D-13.ucode -firmware: iwlwifi-8000-13.ucode -firmware: kaweth/new_code.bin -firmware: kaweth/new_code_fix.bin -firmware: kaweth/trigger_code.bin -firmware: kaweth/trigger_code_fix.bin -firmware: keyspan/mpr.fw -firmware: keyspan/usa18x.fw -firmware: keyspan/usa19.fw -firmware: keyspan/usa19qi.fw -firmware: keyspan/usa19qw.fw -firmware: keyspan/usa19w.fw -firmware: keyspan/usa28.fw -firmware: keyspan/usa28x.fw -firmware: keyspan/usa28xa.fw -firmware: keyspan/usa28xb.fw -firmware: keyspan/usa49w.fw -firmware: keyspan/usa49wlc.fw -firmware: keyspan_pda/keyspan_pda.fw -firmware: keyspan_pda/xircom_pgs.fw -firmware: korg/k1212.dsp -firmware: lattice-ecp3.bit -firmware: lbtf_usb.bin -firmware: lgs8g75.fw -firmware: libertas/cf8305.bin -firmware: libertas/cf8381.bin -firmware: libertas/cf8381_helper.bin -firmware: libertas/cf8385.bin -firmware: libertas/cf8385_helper.bin -firmware: libertas/gspi8385.bin -firmware: libertas/gspi8385_helper.bin -firmware: libertas/gspi8385_hlp.bin -firmware: libertas/gspi8686.bin -firmware: libertas/gspi8686_hlp.bin -firmware: libertas/gspi8686_v9.bin -firmware: libertas/gspi8686_v9_helper.bin -firmware: libertas/gspi8688.bin -firmware: libertas/gspi8688_helper.bin -firmware: libertas/sd8385.bin -firmware: libertas/sd8385_helper.bin -firmware: libertas/sd8686_v8.bin -firmware: libertas/sd8686_v8_helper.bin -firmware: libertas/sd8686_v9.bin -firmware: libertas/sd8686_v9_helper.bin -firmware: libertas/sd8688.bin -firmware: libertas/sd8688_helper.bin -firmware: libertas/usb8388.bin -firmware: libertas/usb8388_v5.bin -firmware: libertas/usb8388_v9.bin -firmware: libertas/usb8682.bin -firmware: libertas_cs.fw -firmware: libertas_cs_helper.fw -firmware: liquidio/lio_210nv.bin -firmware: liquidio/lio_210sv.bin -firmware: liquidio/lio_410nv.bin -firmware: matrox/g200_warp.fw -firmware: matrox/g400_warp.fw -firmware: me2600_firmware.bin -firmware: me4000_firmware.bin -firmware: mixart/miXart8.elf -firmware: mixart/miXart8.xlx -firmware: mixart/miXart8AES.xlx -firmware: mrvl/pcie8766_uapsta.bin -firmware: mrvl/pcie8897_uapsta.bin -firmware: mrvl/pcie8997_uapsta.bin -firmware: mrvl/sd8688.bin -firmware: mrvl/sd8688_helper.bin -firmware: mrvl/sd8786_uapsta.bin -firmware: mrvl/sd8787_uapsta.bin -firmware: mrvl/sd8797_uapsta.bin -firmware: mrvl/sd8887_uapsta.bin -firmware: mrvl/sd8897_uapsta.bin -firmware: mrvl/sd8997_uapsta.bin -firmware: mrvl/usb8766_uapsta.bin -firmware: mrvl/usb8797_uapsta.bin -firmware: mrvl/usb8801_uapsta.bin -firmware: mrvl/usb8997_uapsta.bin -firmware: mt7601u.bin -firmware: mts_cdma.fw -firmware: mts_edge.fw -firmware: mts_gsm.fw -firmware: mts_mt9234mu.fw -firmware: mts_mt9234zba.fw -firmware: multiface_firmware.bin -firmware: multiface_firmware_rev11.bin -firmware: mwl8k/fmimage_8363.fw -firmware: mwl8k/fmimage_8366.fw -firmware: mwl8k/fmimage_8366_ap-3.fw -firmware: mwl8k/fmimage_8687.fw -firmware: mwl8k/helper_8363.fw -firmware: mwl8k/helper_8366.fw -firmware: mwl8k/helper_8687.fw -firmware: myri10ge_eth_z8e.dat -firmware: myri10ge_ethp_z8e.dat -firmware: myri10ge_rss_eth_z8e.dat -firmware: myri10ge_rss_ethp_z8e.dat -firmware: ni6534a.bin -firmware: niscrb01.bin -firmware: niscrb02.bin -firmware: orinoco_ezusb_fw -firmware: ositech/Xilinx7OD.bin -firmware: pca200e.bin -firmware: pca200e_ecd.bin2 -firmware: pcxhr/dspb1222e.b56 -firmware: pcxhr/dspb1222hr.b56 -firmware: pcxhr/dspb882e.b56 -firmware: pcxhr/dspb882hr.b56 -firmware: pcxhr/dspb924.b56 -firmware: pcxhr/dspd1222.d56 -firmware: pcxhr/dspd222.d56 -firmware: pcxhr/dspd882.d56 -firmware: pcxhr/dspe882.e56 -firmware: pcxhr/dspe924.e56 -firmware: pcxhr/xlxc1222e.dat -firmware: pcxhr/xlxc1222hr.dat -firmware: pcxhr/xlxc222.dat -firmware: pcxhr/xlxc882e.dat -firmware: pcxhr/xlxc882hr.dat -firmware: pcxhr/xlxc924.dat -firmware: pcxhr/xlxint.dat -firmware: phanfw.bin -firmware: prism2_ru.fw -firmware: prism_ap_fw.bin -firmware: prism_sta_fw.bin -firmware: qat_895xcc.bin -firmware: qed/qed_init_values_zipped-8.4.2.0.bin -firmware: ql2100_fw.bin -firmware: ql2200_fw.bin -firmware: ql2300_fw.bin -firmware: ql2322_fw.bin -firmware: ql2400_fw.bin -firmware: ql2500_fw.bin -firmware: qlogic/1040.bin -firmware: qlogic/12160.bin -firmware: qlogic/1280.bin -firmware: qlogic/sd7220.fw -firmware: r128/r128_cce.bin -firmware: r8a779x_usb3_v1.dlmem -firmware: radeon/ARUBA_me.bin -firmware: radeon/ARUBA_pfp.bin -firmware: radeon/ARUBA_rlc.bin -firmware: radeon/BARTS_mc.bin -firmware: radeon/BARTS_me.bin -firmware: radeon/BARTS_pfp.bin -firmware: radeon/BARTS_smc.bin -firmware: radeon/BONAIRE_ce.bin -firmware: radeon/BONAIRE_mc.bin -firmware: radeon/BONAIRE_mc2.bin -firmware: radeon/BONAIRE_me.bin -firmware: radeon/BONAIRE_mec.bin -firmware: radeon/BONAIRE_pfp.bin -firmware: radeon/BONAIRE_rlc.bin -firmware: radeon/BONAIRE_sdma.bin -firmware: radeon/BONAIRE_smc.bin -firmware: radeon/BONAIRE_uvd.bin -firmware: radeon/BONAIRE_vce.bin -firmware: radeon/BTC_rlc.bin -firmware: radeon/CAICOS_mc.bin -firmware: radeon/CAICOS_me.bin -firmware: radeon/CAICOS_pfp.bin -firmware: radeon/CAICOS_smc.bin -firmware: radeon/CAYMAN_mc.bin -firmware: radeon/CAYMAN_me.bin -firmware: radeon/CAYMAN_pfp.bin -firmware: radeon/CAYMAN_rlc.bin -firmware: radeon/CAYMAN_smc.bin -firmware: radeon/CEDAR_me.bin -firmware: radeon/CEDAR_pfp.bin -firmware: radeon/CEDAR_rlc.bin -firmware: radeon/CEDAR_smc.bin -firmware: radeon/CYPRESS_me.bin -firmware: radeon/CYPRESS_pfp.bin -firmware: radeon/CYPRESS_rlc.bin -firmware: radeon/CYPRESS_smc.bin -firmware: radeon/CYPRESS_uvd.bin -firmware: radeon/HAINAN_ce.bin -firmware: radeon/HAINAN_mc.bin -firmware: radeon/HAINAN_mc2.bin -firmware: radeon/HAINAN_me.bin -firmware: radeon/HAINAN_pfp.bin -firmware: radeon/HAINAN_rlc.bin -firmware: radeon/HAINAN_smc.bin -firmware: radeon/HAWAII_ce.bin -firmware: radeon/HAWAII_mc.bin -firmware: radeon/HAWAII_mc2.bin -firmware: radeon/HAWAII_me.bin -firmware: radeon/HAWAII_mec.bin -firmware: radeon/HAWAII_pfp.bin -firmware: radeon/HAWAII_rlc.bin -firmware: radeon/HAWAII_sdma.bin -firmware: radeon/HAWAII_smc.bin -firmware: radeon/JUNIPER_me.bin -firmware: radeon/JUNIPER_pfp.bin -firmware: radeon/JUNIPER_rlc.bin -firmware: radeon/JUNIPER_smc.bin -firmware: radeon/KABINI_ce.bin -firmware: radeon/KABINI_me.bin -firmware: radeon/KABINI_mec.bin -firmware: radeon/KABINI_pfp.bin -firmware: radeon/KABINI_rlc.bin -firmware: radeon/KABINI_sdma.bin -firmware: radeon/KAVERI_ce.bin -firmware: radeon/KAVERI_me.bin -firmware: radeon/KAVERI_mec.bin -firmware: radeon/KAVERI_pfp.bin -firmware: radeon/KAVERI_rlc.bin -firmware: radeon/KAVERI_sdma.bin -firmware: radeon/MULLINS_ce.bin -firmware: radeon/MULLINS_me.bin -firmware: radeon/MULLINS_mec.bin -firmware: radeon/MULLINS_pfp.bin -firmware: radeon/MULLINS_rlc.bin -firmware: radeon/MULLINS_sdma.bin -firmware: radeon/OLAND_ce.bin -firmware: radeon/OLAND_mc.bin -firmware: radeon/OLAND_mc2.bin -firmware: radeon/OLAND_me.bin -firmware: radeon/OLAND_pfp.bin -firmware: radeon/OLAND_rlc.bin -firmware: radeon/OLAND_smc.bin -firmware: radeon/PALM_me.bin -firmware: radeon/PALM_pfp.bin -firmware: radeon/PITCAIRN_ce.bin -firmware: radeon/PITCAIRN_mc.bin -firmware: radeon/PITCAIRN_mc2.bin -firmware: radeon/PITCAIRN_me.bin -firmware: radeon/PITCAIRN_pfp.bin -firmware: radeon/PITCAIRN_rlc.bin -firmware: radeon/PITCAIRN_smc.bin -firmware: radeon/R100_cp.bin -firmware: radeon/R200_cp.bin -firmware: radeon/R300_cp.bin -firmware: radeon/R420_cp.bin -firmware: radeon/R520_cp.bin -firmware: radeon/R600_me.bin -firmware: radeon/R600_pfp.bin -firmware: radeon/R600_rlc.bin -firmware: radeon/R600_uvd.bin -firmware: radeon/R700_rlc.bin -firmware: radeon/REDWOOD_me.bin -firmware: radeon/REDWOOD_pfp.bin -firmware: radeon/REDWOOD_rlc.bin -firmware: radeon/REDWOOD_smc.bin -firmware: radeon/RS600_cp.bin -firmware: radeon/RS690_cp.bin -firmware: radeon/RS780_me.bin -firmware: radeon/RS780_pfp.bin -firmware: radeon/RS780_uvd.bin -firmware: radeon/RV610_me.bin -firmware: radeon/RV610_pfp.bin -firmware: radeon/RV620_me.bin -firmware: radeon/RV620_pfp.bin -firmware: radeon/RV630_me.bin -firmware: radeon/RV630_pfp.bin -firmware: radeon/RV635_me.bin -firmware: radeon/RV635_pfp.bin -firmware: radeon/RV670_me.bin -firmware: radeon/RV670_pfp.bin -firmware: radeon/RV710_me.bin -firmware: radeon/RV710_pfp.bin -firmware: radeon/RV710_smc.bin -firmware: radeon/RV710_uvd.bin -firmware: radeon/RV730_me.bin -firmware: radeon/RV730_pfp.bin -firmware: radeon/RV730_smc.bin -firmware: radeon/RV740_smc.bin -firmware: radeon/RV770_me.bin -firmware: radeon/RV770_pfp.bin -firmware: radeon/RV770_smc.bin -firmware: radeon/RV770_uvd.bin -firmware: radeon/SUMO2_me.bin -firmware: radeon/SUMO2_pfp.bin -firmware: radeon/SUMO_me.bin -firmware: radeon/SUMO_pfp.bin -firmware: radeon/SUMO_rlc.bin -firmware: radeon/SUMO_uvd.bin -firmware: radeon/TAHITI_ce.bin -firmware: radeon/TAHITI_mc.bin -firmware: radeon/TAHITI_mc2.bin -firmware: radeon/TAHITI_me.bin -firmware: radeon/TAHITI_pfp.bin -firmware: radeon/TAHITI_rlc.bin -firmware: radeon/TAHITI_smc.bin -firmware: radeon/TAHITI_uvd.bin -firmware: radeon/TAHITI_vce.bin -firmware: radeon/TURKS_mc.bin -firmware: radeon/TURKS_me.bin -firmware: radeon/TURKS_pfp.bin -firmware: radeon/TURKS_smc.bin -firmware: radeon/VERDE_ce.bin -firmware: radeon/VERDE_mc.bin -firmware: radeon/VERDE_mc2.bin -firmware: radeon/VERDE_me.bin -firmware: radeon/VERDE_pfp.bin -firmware: radeon/VERDE_rlc.bin -firmware: radeon/VERDE_smc.bin -firmware: radeon/bonaire_ce.bin -firmware: radeon/bonaire_mc.bin -firmware: radeon/bonaire_me.bin -firmware: radeon/bonaire_mec.bin -firmware: radeon/bonaire_pfp.bin -firmware: radeon/bonaire_rlc.bin -firmware: radeon/bonaire_sdma.bin -firmware: radeon/bonaire_smc.bin -firmware: radeon/hainan_ce.bin -firmware: radeon/hainan_mc.bin -firmware: radeon/hainan_me.bin -firmware: radeon/hainan_pfp.bin -firmware: radeon/hainan_rlc.bin -firmware: radeon/hainan_smc.bin -firmware: radeon/hawaii_ce.bin -firmware: radeon/hawaii_mc.bin -firmware: radeon/hawaii_me.bin -firmware: radeon/hawaii_mec.bin -firmware: radeon/hawaii_pfp.bin -firmware: radeon/hawaii_rlc.bin -firmware: radeon/hawaii_sdma.bin -firmware: radeon/hawaii_smc.bin -firmware: radeon/kabini_ce.bin -firmware: radeon/kabini_me.bin -firmware: radeon/kabini_mec.bin -firmware: radeon/kabini_pfp.bin -firmware: radeon/kabini_rlc.bin -firmware: radeon/kabini_sdma.bin -firmware: radeon/kaveri_ce.bin -firmware: radeon/kaveri_me.bin -firmware: radeon/kaveri_mec.bin -firmware: radeon/kaveri_mec2.bin -firmware: radeon/kaveri_pfp.bin -firmware: radeon/kaveri_rlc.bin -firmware: radeon/kaveri_sdma.bin -firmware: radeon/mullins_ce.bin -firmware: radeon/mullins_me.bin -firmware: radeon/mullins_mec.bin -firmware: radeon/mullins_pfp.bin -firmware: radeon/mullins_rlc.bin -firmware: radeon/mullins_sdma.bin -firmware: radeon/oland_ce.bin -firmware: radeon/oland_mc.bin -firmware: radeon/oland_me.bin -firmware: radeon/oland_pfp.bin -firmware: radeon/oland_rlc.bin -firmware: radeon/oland_smc.bin -firmware: radeon/pitcairn_ce.bin -firmware: radeon/pitcairn_mc.bin -firmware: radeon/pitcairn_me.bin -firmware: radeon/pitcairn_pfp.bin -firmware: radeon/pitcairn_rlc.bin -firmware: radeon/pitcairn_smc.bin -firmware: radeon/tahiti_ce.bin -firmware: radeon/tahiti_mc.bin -firmware: radeon/tahiti_me.bin -firmware: radeon/tahiti_pfp.bin -firmware: radeon/tahiti_rlc.bin -firmware: radeon/tahiti_smc.bin -firmware: radeon/verde_ce.bin -firmware: radeon/verde_mc.bin -firmware: radeon/verde_me.bin -firmware: radeon/verde_pfp.bin -firmware: radeon/verde_rlc.bin -firmware: radeon/verde_smc.bin -firmware: riptide.hex -firmware: rp2.fw -firmware: rpm_firmware.bin -firmware: rsi_91x.fw -firmware: rt2561.bin -firmware: rt2561s.bin -firmware: rt2661.bin -firmware: rt2860.bin -firmware: rt2870.bin -firmware: rt73.bin -firmware: rtl_nic/rtl8105e-1.fw -firmware: rtl_nic/rtl8106e-1.fw -firmware: rtl_nic/rtl8106e-2.fw -firmware: rtl_nic/rtl8107e-1.fw -firmware: rtl_nic/rtl8107e-2.fw -firmware: rtl_nic/rtl8168d-1.fw -firmware: rtl_nic/rtl8168d-2.fw -firmware: rtl_nic/rtl8168e-1.fw -firmware: rtl_nic/rtl8168e-2.fw -firmware: rtl_nic/rtl8168e-3.fw -firmware: rtl_nic/rtl8168f-1.fw -firmware: rtl_nic/rtl8168f-2.fw -firmware: rtl_nic/rtl8168g-2.fw -firmware: rtl_nic/rtl8168g-3.fw -firmware: rtl_nic/rtl8168h-1.fw -firmware: rtl_nic/rtl8168h-2.fw -firmware: rtl_nic/rtl8402-1.fw -firmware: rtl_nic/rtl8411-1.fw -firmware: rtl_nic/rtl8411-2.fw -firmware: rtlwifi/rtl8188efw.bin -firmware: rtlwifi/rtl8192cfw.bin -firmware: rtlwifi/rtl8192cfwU.bin -firmware: rtlwifi/rtl8192cfwU_B.bin -firmware: rtlwifi/rtl8192cufw.bin -firmware: rtlwifi/rtl8192cufw_A.bin -firmware: rtlwifi/rtl8192cufw_B.bin -firmware: rtlwifi/rtl8192cufw_TMSC.bin -firmware: rtlwifi/rtl8192defw.bin -firmware: rtlwifi/rtl8192eefw.bin -firmware: rtlwifi/rtl8192sefw.bin -firmware: rtlwifi/rtl8712u.bin -firmware: rtlwifi/rtl8723aufw_A.bin -firmware: rtlwifi/rtl8723aufw_B.bin -firmware: rtlwifi/rtl8723aufw_B_NoBT.bin -firmware: rtlwifi/rtl8723befw.bin -firmware: rtlwifi/rtl8723efw.bin -firmware: rtlwifi/rtl8821aefw.bin -firmware: sb16/alaw_main.csp -firmware: sb16/ima_adpcm_capture.csp -firmware: sb16/ima_adpcm_init.csp -firmware: sb16/ima_adpcm_playback.csp -firmware: sb16/mulaw_main.csp -firmware: scope.cod -firmware: sd8385.bin -firmware: sd8385_helper.bin -firmware: sd8686.bin -firmware: sd8686_helper.bin -firmware: sd8688.bin -firmware: sd8688_helper.bin -firmware: slicoss/gbdownload.sys -firmware: slicoss/gbrcvucode.sys -firmware: slicoss/oasisdownload.sys -firmware: slicoss/oasisrcvucode.sys -firmware: sms1xxx-hcw-55xxx-dvbt-02.fw -firmware: sms1xxx-hcw-55xxx-isdbt-02.fw -firmware: sms1xxx-nova-a-dvbt-01.fw -firmware: sms1xxx-nova-b-dvbt-01.fw -firmware: sms1xxx-stellar-dvbt-01.fw -firmware: sndscape.co0 -firmware: sndscape.co1 -firmware: sndscape.co2 -firmware: sndscape.co3 -firmware: sndscape.co4 -firmware: softing-4.6/bcard.bin -firmware: softing-4.6/bcard2.bin -firmware: softing-4.6/cancard.bin -firmware: softing-4.6/cancrd2.bin -firmware: softing-4.6/cansja.bin -firmware: softing-4.6/ldcard.bin -firmware: softing-4.6/ldcard2.bin -firmware: solos-FPGA.bin -firmware: solos-Firmware.bin -firmware: solos-db-FPGA.bin -firmware: sun/cassini.bin -firmware: symbol_sp24t_prim_fw -firmware: symbol_sp24t_sec_fw -firmware: tdmb_denver.inp -firmware: tdmb_nova_12mhz.inp -firmware: tdmb_nova_12mhz_b0.inp -firmware: tehuti/bdx.bin -firmware: ti-connectivity/wl1251-fw.bin -firmware: ti-connectivity/wl1251-nvs.bin -firmware: ti-connectivity/wl1271-nvs.bin -firmware: ti-connectivity/wl127x-fw-5-mr.bin -firmware: ti-connectivity/wl127x-fw-5-plt.bin -firmware: ti-connectivity/wl127x-fw-5-sr.bin -firmware: ti-connectivity/wl128x-fw-5-mr.bin -firmware: ti-connectivity/wl128x-fw-5-plt.bin -firmware: ti-connectivity/wl128x-fw-5-sr.bin -firmware: ti-connectivity/wl18xx-conf.bin -firmware: ti-connectivity/wl18xx-fw-4.bin -firmware: ti_3410.fw -firmware: ti_5052.fw -firmware: tigon/tg3.bin -firmware: tigon/tg3_tso.bin -firmware: tigon/tg3_tso5.bin -firmware: ttusb-budget/dspbootcode.bin -firmware: turtlebeach/msndinit.bin -firmware: turtlebeach/msndperm.bin -firmware: turtlebeach/pndsperm.bin -firmware: turtlebeach/pndspini.bin -firmware: ueagle-atm/930-fpga.bin -firmware: ueagle-atm/CMV4i.bin -firmware: ueagle-atm/CMV4i.bin.v2 -firmware: ueagle-atm/CMV4p.bin -firmware: ueagle-atm/CMV4p.bin.v2 -firmware: ueagle-atm/CMV9i.bin -firmware: ueagle-atm/CMV9i.bin.v2 -firmware: ueagle-atm/CMV9p.bin -firmware: ueagle-atm/CMV9p.bin.v2 -firmware: ueagle-atm/CMVei.bin -firmware: ueagle-atm/CMVei.bin.v2 -firmware: ueagle-atm/CMVep.bin -firmware: ueagle-atm/CMVep.bin.v2 -firmware: ueagle-atm/DSP4i.bin -firmware: ueagle-atm/DSP4p.bin -firmware: ueagle-atm/DSP9i.bin -firmware: ueagle-atm/DSP9p.bin -firmware: ueagle-atm/DSPei.bin -firmware: ueagle-atm/DSPep.bin -firmware: ueagle-atm/adi930.fw -firmware: ueagle-atm/eagle.fw -firmware: ueagle-atm/eagleI.fw -firmware: ueagle-atm/eagleII.fw -firmware: ueagle-atm/eagleIII.fw -firmware: ueagle-atm/eagleIV.fw -firmware: usb8388.bin -firmware: usbdux_firmware.bin -firmware: usbduxfast_firmware.bin -firmware: usbduxsigma_firmware.bin -firmware: v4l-cx231xx-avcore-01.fw -firmware: v4l-cx23418-apu.fw -firmware: v4l-cx23418-cpu.fw -firmware: v4l-cx23418-dig.fw -firmware: v4l-cx2341x-dec.fw -firmware: v4l-cx2341x-enc.fw -firmware: v4l-cx2341x-init.mpg -firmware: v4l-cx23885-avcore-01.fw -firmware: v4l-cx23885-enc.fw -firmware: v4l-cx25840.fw -firmware: v4l-pvrusb2-24xxx-01.fw -firmware: v4l-pvrusb2-29xxx-01.fw -firmware: v4l-pvrusb2-73xxx-01.fw -firmware: vicam/firmware.fw -firmware: vntwusb.fw -firmware: vpdma-1b8.bin -firmware: vx/bd56002.boot -firmware: vx/bd563s3.boot -firmware: vx/bd563v2.boot -firmware: vx/bx_1_vp4.b56 -firmware: vx/bx_1_vxp.b56 -firmware: vx/l_1_v22.d56 -firmware: vx/l_1_vp4.d56 -firmware: vx/l_1_vx2.d56 -firmware: vx/l_1_vxp.d56 -firmware: vx/x1_1_vp4.xlx -firmware: vx/x1_1_vx2.xlx -firmware: vx/x1_1_vxp.xlx -firmware: vx/x1_2_v22.xlx -firmware: vxge/X3fw-pxe.ncf -firmware: vxge/X3fw.ncf -firmware: wavefront.os -firmware: wd719x-risc.bin -firmware: wd719x-wcs.bin -firmware: whiteheat.fw -firmware: whiteheat_loader.fw -firmware: wil6210.brd -firmware: wil6210.fw -firmware: wlan/prima/WCNSS_qcom_wlan_nv.bin -firmware: xc3028-v27.fw -firmware: xc3028L-v36.fw -firmware: yam/1200.bin -firmware: yam/9600.bin -firmware: yamaha/ds1_ctrl.fw -firmware: yamaha/ds1_dsp.fw -firmware: yamaha/ds1e_ctrl.fw -firmware: yamaha/yss225_registers.bin -firmware: zd1201-ap.fw -firmware: zd1201.fw -firmware: zd1211/zd1211_ub -firmware: zd1211/zd1211_uphr -firmware: zd1211/zd1211_ur -firmware: zd1211/zd1211b_ub -firmware: zd1211/zd1211b_uphr -firmware: zd1211/zd1211b_ur reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/i386/generic +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/i386/generic @@ -1,18855 +0,0 @@ -EXPORT_SYMBOL arch/x86/kvm/kvm 0xf19e2e39 kvm_cpu_has_pending_timer -EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x254e5667 scx200_gpio_base -EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x35a3c008 scx200_gpio_configure -EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x8cfa375c scx200_gpio_shadow -EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x907665bd scx200_cb_base -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x2d7e229d mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/acpi/nfit 0xa7e9a159 to_nfit_uuid -EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type -EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister -EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register -EXPORT_SYMBOL drivers/acpi/video 0xa06f85eb acpi_video_get_edid -EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type -EXPORT_SYMBOL drivers/atm/suni 0x55ff552d suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0xa9fb3713 uPD98402_init -EXPORT_SYMBOL drivers/bcma/bcma 0x1cf5c26d bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0x3d598999 bcma_core_irq -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x28a6793d paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x2a4c2825 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x2e573b0d pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x3ff1a328 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x454b2e8d pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x798154bd pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x8e665e0c pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0xa5b47c36 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0xb07a78ef paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xb25c096b pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xc5efb8a8 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xf7c17a83 pi_connect -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x0bde6101 btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fe6dbef ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31ce9f62 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x58f9fcbd ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7167f48e ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfd5b079c ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/nsc_gpio 0x428dbcdd nsc_gpio_read -EXPORT_SYMBOL drivers/char/nsc_gpio 0xd329fb63 nsc_gpio_dump -EXPORT_SYMBOL drivers/char/nsc_gpio 0xf6316cdf nsc_gpio_write -EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte -EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x6287f8c1 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7a76d909 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xbc634401 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc3dd38e1 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x157a0b61 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xcb863a9a xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xfee570d7 xillybus_init_endpoint -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x1a1203fb dw_dma_get_src_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x1f633947 dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xac717d84 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xbe4ab300 dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xdf6f6889 dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xfa75bf36 dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/edac/edac_core 0x16d47a7a edac_mc_find -EXPORT_SYMBOL drivers/firewire/firewire-core 0x02c2f355 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x05fd7a99 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0efe8286 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x17510e7f fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x34283399 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3f4a7df9 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x41369a00 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x627a51e3 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x668a6eaf fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6805e640 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x69ab1b78 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6e840ac3 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7cfb726c fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8033824e fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x909d9b77 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x98a1b894 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9c1048c3 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa9c886d5 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb8bf30a fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd152357e fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd41f028b fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd962a2b5 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdb491cfa fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0xea19a149 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xec9c1418 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf3b931e8 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request -EXPORT_SYMBOL drivers/fmc/fmc 0x1c5735af fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x1c5de978 fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x3f7a354f fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0x4255cb73 fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0x8f14bcdf fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x93aed2be fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0x98a7123d fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0xa7243c45 fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0xbaf9cafc fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xeaf2b64d fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xffc12ffa fmc_driver_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00653fe7 drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0104cc65 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x027009c6 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0285d0bc drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03b01f5c drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04481608 drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04d678be drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0502a264 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x067b36e2 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x087e9762 drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x091b4c9d drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a9d2b8c drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ad437a4 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae1b55b drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae3a0fa drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b0dee34 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0baca5cb drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bdfe1c2 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0db7efb7 drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0df907b0 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e468f37 drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e5267b9 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1087075f drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12b3aa9a drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14d4688b drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16699e0c drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1853f243 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19469000 drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19946bce drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19d240f2 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a8f8a89 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ab46f15 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b6d5927 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c504c08 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ce6a99c drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d2e9f0b drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e63968c drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ea87c0a drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ead409e drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20a6824c drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20e880f3 drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x219dc264 drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c3d030 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24a266f9 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27bff397 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28015ee6 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x282f1ef2 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2865efdc drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0x287375cc drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ac9ab08 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b16b6a5 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b604b85 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bedc6fe drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d0746e8 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2db49998 drm_agp_bind_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e5117b4 drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed4ad10 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30014c17 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30396b31 drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30708150 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3173dfdd drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31d3855a drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32ca2a5d drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x331efdf6 drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3406fa91 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x349459d8 drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x362c5ce1 drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37e8db77 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3927a673 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a12c3a1 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3aa5e960 drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cee2dbe drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cf60daa drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d88c3dd drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e61c99c drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40997646 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4134af5d drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x414a285f drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41e68b27 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4206d357 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x429f0cf4 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4399554e drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x462dedbd drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x467a57c5 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x469ce785 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4727d421 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x478e4851 drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x488a3efe drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bd7abb4 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c3ad2ee drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c90d696 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ccd4703 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cfb3115 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50147d16 drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x506fe340 drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50f110db drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5201e6f5 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5394e6d9 drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54111ce8 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57a540dd drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x590d694d drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5acf38cb drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b26a554 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cca4788 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e824dc1 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5eb0789d drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f9b111a drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60705842 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62fab159 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x631db832 drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x634e459e drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6362fe02 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6428491c drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6474193a drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64aa2af1 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64e4bc47 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x655c31c9 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x657948ad drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6584e769 drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65ad256a drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x670aae39 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69231a9e drm_legacy_addbufs_agp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c79caa3 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ce2cf66 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cee0bf3 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d03fe4b drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d090693 drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e7bb4d7 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x705d72d8 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70647c36 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7093f2a4 drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x714ae9df drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71c34421 drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71ede5f3 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73f53d5c drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x782f05f6 drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79905c23 drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79b13b6b drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b692c4e drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b99235c drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c89f3d1 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ce0e318 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f7aa923 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fbacebd drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x820eddfc drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84b1ab19 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86cb7750 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x874b7d40 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89361952 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8972bfa1 drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bebdd77 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2e58ec drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c5f087a drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8df6c1e8 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e55703f drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e907bfb drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x903cfe31 drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x906985fb drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90934f93 drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90c4b2b3 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x921d3f87 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x930c20dd drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94ca72f4 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9560e01a drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95ee4af5 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x963b3db0 drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9757b331 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9872da20 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98f8fad1 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bde525d drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0fdc71 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9df68376 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e333ba1 drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f82717f drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa08100b7 drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4eb354d drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6abda12 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa76f8f53 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9dbae65 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9faa9b4 drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa746a9e drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac98e98 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabdb9845 drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadf40693 drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae597c79 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf113f6b drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafb457bf drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafcf5827 drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2c64dc1 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2e75574 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb349f971 drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4637bf6 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5dd0648 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb64d03bb drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb65eca2f drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb688ac4b drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8685ed2 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8d1a16b drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb903c19d drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb95971ee drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9eccd97 drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba8e83e8 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaa80bcd drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbac609b0 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaf81d62 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd08d707 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe645775 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe8044a6 drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbeb6cce8 drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0c4f7c4 drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0d32226 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0f707c9 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1205246 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc19b00e1 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc24bd39e drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3485874 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3fab6a9 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc54e41d2 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc55a543c drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7dad17f drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc832194e drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc953a117 drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9979f9b drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca06724f drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca3caaff drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb155835 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb8527fe drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce8098a1 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd01a80da drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1d0a76a drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2e4459c drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3e0f3fa drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd461efb1 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5351ca6 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8acc069 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9140bb3 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdaa43609 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb145197 drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb1a422c drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb2de489 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc523cec drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcdf9b4b drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd17f140 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd68b9b5 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd6e03ee drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddb6d359 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf33785d drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf402dbc drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe087e2e8 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0a5ab44 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe161a18e drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe522d4ba drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5841eb9 drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe84047db drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8632371 drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec09217c drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee015087 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeec96222 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef23c3db drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef6aefa4 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0e22db5 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf187bf16 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1f4e7e2 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3154546 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf317d468 drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf573f4a1 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7146ed6 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7c9aa08 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf89d12c3 drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf95d101a drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa4dd951 drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa7bee6f drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb6adf77 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc82b24c drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf30891 drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd0f3838 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfec53f5b drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffd91edb drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x030561ec drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03ca64a0 drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0516e0da drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05c17365 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06aee64b drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0979b1ab __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09d9db61 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a18b81c drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0aa1b804 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ac2aa09 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c56e43d drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c71b695 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cd5e3c9 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f4632f3 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11dac89c drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1365b799 drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13e1ea36 drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16a83a72 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a38d3bd drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b96719e drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bf7e83e drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dbb6882 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ec94eb8 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20be964a drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28680fb4 drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29ce7678 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d6afe8a drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d9a7733 drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30fdd263 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3213937d drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33a97ff5 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x355f4644 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36c57b36 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x377661a1 drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f470dfe __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4024aa9b drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4097970b drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41f12593 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43e75558 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4459a3b2 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x468a2bd3 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47ff2a97 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a9b359d drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ca68efc drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fb4305c drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51d43d97 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x525910ff drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5884b50e drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c76baaf drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d19490a drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fb8b29e drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ff86bc0 drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60114ab6 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64e74d35 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66256d82 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68ab63a9 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a3ec9be drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a880b8f drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ac34a65 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cb2d270 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x703ec627 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71116461 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x716a6a7e drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7740b4da drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a0b3e16 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ace0564 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bdd0a65 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f2f4ed4 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80acea87 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8288d7ba drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83d32f4d __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e0ca5a drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x879c31a7 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x880d1f01 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c976382 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f4cbc9c drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x912449f7 drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9180833e drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92a90495 drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94e8096f drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94f91349 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x973583ac drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a7c1001 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cf69e09 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d797b58 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f376da5 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa075cb6f drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0aa04e8 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1501fb1 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5be4e03 drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa606a2a4 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6c5d83f drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8744df3 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9aad0fc drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacc5ba18 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafd926b4 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2afeee8 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb314b8ee drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51d591f drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb80e87dd drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc78c7c6 drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc858df5 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1eddb4e drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc682cc4c drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcafb9ef5 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf804082 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfa120d8 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd14b1c22 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd159872e drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd24d1db3 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd556a76d drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd58c89e9 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6b37603 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd95139cf drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaded31c drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb03fa39 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc1fd817 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc69ed87 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd5a68f4 drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd7c059f drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe160fe64 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1e97e96 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2094a0e drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe22cc843 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3781232 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe48f4885 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe661c904 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea1bee15 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec2a99cc drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec9d4152 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed7889b3 drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee220d20 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee52608e drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeee10a67 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef2ef6a1 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0713f52 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1a954f4 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf50d803f drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8e3b412 drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc88a0fd drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfeed6b10 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff36b460 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01186980 ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06c979c3 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06e50123 ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b9a2729 ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x12921363 ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x188b65d5 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22ec80fe ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24765c33 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x253fc7ff ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25880fd6 ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x266d8a60 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x27060ffd ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d36235d ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42c621e1 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x46360d38 ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4669951a ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4964c6ed ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4efd5a99 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58f2a71c ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ce12785 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f41e346 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x600b7ba5 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67032bbb ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a4d70a4 ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c8dc6bf ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d4931bb ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e6837dc ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e875de9 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x716ce58e ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a242ff6 ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7af8b08c ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7cb0225b ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fad07dc ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81bb2bca ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x821336a0 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836d8fd0 ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85a78109 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85dce7a9 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86146b59 ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86a9baa1 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8748c96e ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8779bdde ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x946d9ea3 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94958366 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96232434 ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x970d4f68 ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9dc5ce53 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa431be55 ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa52ff761 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaa5b5998 ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xacec825f ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb44ed3f3 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb4f6812e ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc286846a ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc58d634f ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc6ce0a69 ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcd382acd ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf49f835 ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb3f94f7 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdbaba5cc ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe93a2866 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xedd71ed9 ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3275744 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf32d9416 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x04f92213 vmbus_sendpacket_ctl -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xa6c6b38a vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xbe4354d8 vmbus_recvpacket -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x4f957983 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x1b027daa i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x5af2e9f4 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xabf8d813 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x382c46b0 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xe52ba971 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x4b31f6d1 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x03ae011e mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0f0aefb0 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x195310f4 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x412e63e5 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4385868a mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4d824dca mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6fc7803c mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7948fb38 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb3ff5379 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb5a3aa66 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb71d1211 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbaa96e88 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc6ef77df mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe84df21b mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xea13da92 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf6014114 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xb4547324 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xe443bda0 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xc546edd4 iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xfe1b1754 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x439e62f6 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x7ef020f1 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xa563237d devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf86477c3 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x1784f8fe hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x37e29607 hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4d6b4a90 hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x60c9f91f hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa3939614 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa4bf7641 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x85e0885e hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xbab6b14d hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd6e8cede hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xec443175 hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x434e2c55 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5335deb7 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x53cb38bb ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x89b9a269 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8e679569 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa37d7d23 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xdf241dcb ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf7879b74 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfacac8ca ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x285fcc3b ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x697d3f21 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x7b82cfe4 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xe61af4c0 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf41f224a ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x23a3f0f9 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x86c1ef18 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x92510b0d ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x193fbbf3 st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x325ac075 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x348181eb st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x400cd024 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x47493298 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5be38c43 st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x684215dd st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x69c3c0e5 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x79c46cd7 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7cb250cc st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x85afcddd st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x866adef3 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9e6f2e45 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa135a68f st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc1197aa9 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xde172fdb st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfe95c33c st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x811e6826 st_sensors_match_acpi_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xb7346ee9 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x2db6cfe3 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x03b7be84 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xd1edabe9 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x2daf312d hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x982d84d6 adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xfbefd24a adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/industrialio 0x1a62bd14 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x1e8f506e iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x246db3eb iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x367b6bda iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x3b8c6ef7 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x3c3c4ba5 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x3e7266e8 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x4aec6b4a iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x50a90ed1 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x92c009b1 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xc178f399 iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xc31a1604 iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xd77e99d3 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0xdab930af iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xdb81453e iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xdeda2f40 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xf876cab2 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x1a11af76 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x402e3be8 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x2ff98710 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xc728e010 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xd0c799af ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xe5b7d83c st_press_common_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xf77ec65d st_press_common_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1edc4064 rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x32f99bfd rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x515ecf14 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x957d6a3b rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d9cabc5 rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xac4773f4 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x18d94dc4 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1d3ddd68 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x223ab3ed ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2494788a ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4b0b6674 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x515def81 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x524e589c cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x67aaebc0 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6d9207f7 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x76c271b8 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x788965b7 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7b57c14d ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8bc3a7dc ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8f0a0421 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa2e64d3a ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb0c1e40e ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb65eb475 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfe5c45e7 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0078fc81 ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00e94db3 ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c242a69 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d452229 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e2427b3 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ec7bc78 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x105cfcbb ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x109878ef ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10e3b601 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x123dd1ac ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1654c5c7 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c85e517 ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ef8b0b3 ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x217e05db ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x221e7bd3 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2973d318 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cdc91b2 ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d1b5f26 ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30303b95 ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34e91ff1 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c256dd6 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f0e198b ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4552dcca ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4584cf92 ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e311ad ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a07447b ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ac07bc9 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c2f7e20 ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ce0214a ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cfeff38 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f62f633 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f7ab917 ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ff294fe ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5635f320 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b98941a ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5be5eea8 ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5da5d4cb ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6347fd66 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x640a73b2 ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6600497f ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66741f8f ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66d3091c ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x701ecc85 ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71e77c10 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a31a30e ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fe29249 ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84f4744a ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91452aea ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x958cfc87 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99660e97 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b8a0ef1 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ff3b27c ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa427a6b8 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5609476 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6093c05 ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6b24ec4 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab8879a0 ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad96d0cf ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb063d8be ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb168fe65 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1d1ed1e ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2d3c037 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5692409 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb662ecf9 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7ff03ae ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb818c04c ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9259f10 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba21961a ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba9171e2 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc201836a ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb36d995 ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb43804f ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd57e72a7 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6685481 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd941a1b ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe26c3466 ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3c57c89 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe83b1674 ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9370bfc ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecfbc4d2 ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed104ff8 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf622f4bf ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd5b9513 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x18b00402 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2ad63917 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x32f38174 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x52e597a5 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x611f126b ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x72435af9 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8a46edc1 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x9ecfcb88 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb5b28b75 ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc42f82a2 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xcc589648 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe79d1636 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xefbee6cb ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x05f51c4a ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x287d1e73 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x34babbb8 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x84cfc50f ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x924190bb ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd2f2528c ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd3bac8fb ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xde4a4c0c ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe53d5353 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf65145dd ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xfd02868a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x362e8272 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc3c6bc05 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x29cf03d9 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2d6ae23e iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x67af1d05 iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6b5e96e0 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c09ce34 iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x74da5106 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8b7b40e3 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa0868145 iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xab7b5b50 iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb997df24 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb9e0eb51 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc337aa89 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe533e82c iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfa31e080 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfb8a061e iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x00116bb8 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x100db68f rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x164c75db rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1bdbcfe9 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1e8a9a05 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x23f59668 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x27f32934 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2f45b054 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5d108cac rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x62b0307f rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x768c2e85 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8739a842 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa380294 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb61d2c27 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc4431c3b rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcd0a3102 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd869045f rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe0a4ee06 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe5ea04cd rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xee57fd8a rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeecdd8d1 rdma_bind_addr -EXPORT_SYMBOL drivers/input/gameport/gameport 0x089a9008 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x345d989c __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3940c0c1 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3b1a933e gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x492772c0 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4c9f25dd __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4d8e20af gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x5093c7ab gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xd8d2c940 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/input-polldev 0x46ea379a input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x74d32ac6 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x761bc259 devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xb4502e91 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xf68275a3 input_allocate_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x1caa6772 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x1d0c24e3 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xe2b7c0c6 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xe7c3ee58 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x3780b207 cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x187855fc sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0x294abe64 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x54990ab2 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x5caf3b55 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x89710808 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xea3242da sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x484b8d9a ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xa2bae43a ad7879_pm_ops -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x19e0bf61 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x41cefac1 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4b113c9d capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4d6b9601 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x670a2978 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9568fc45 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9dfc09be capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa4efe4c0 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb1fdb2ec capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc2dc40c4 capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x02e2730e b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0437cda6 b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0dc3e3a5 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0e039914 avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1417b964 b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2eebac54 b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4074feeb b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x791581cb b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x948dcf79 b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb109ef7b b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb9adf27f b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc4c50393 b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc6c3b003 b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd4c104df b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf234ce0e avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x0162558f b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3a6bd17f b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3ce1484b b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x4b753ac1 b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x58400888 b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xac928220 b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd4d0f5cd b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xea80bf68 b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf51c39bf t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x18a78448 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x6e168f79 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8eb00252 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb85af61e mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x1a977601 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xcfac150e mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6bffdd55 hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x1715d696 isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x237b8937 isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x82d088ca isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x8cbb56a0 isac_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xefccdf1d isacsx_irq -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x2f32de03 isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x8703bda5 register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xd3f59793 isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0f59f3e1 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3160afef mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3a29f451 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3c3d38be dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x493d9093 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x51af09d5 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5ab6c825 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5efe4992 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x66600b8f mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x682f73b2 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a5856d0 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x85a2d98c create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa022ea01 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xacd97996 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbb9c36b0 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbd87182c bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcaecb9a3 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcd50086a bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe04d4be7 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe43e906e mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe5625aa2 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeacd58f1 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfa7ad1ff mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0x277cd6af closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7f2a56c0 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x92ea9e38 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc7930853 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe0f264bf closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xecf7cef9 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0xfbf30701 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-log 0x26e932af dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xa9d99798 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xe53c5309 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xef7fc197 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x85435932 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x89f4a190 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa2420d42 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd53c795c dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd74b61f3 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0xdca792b6 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/raid456 0x10b297d5 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x249301dd flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2898320c flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2d6c9caa flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x37a72672 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3820480e flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5425ddb4 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6164d70f flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9e10d835 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa04dd8ad flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xaf2cd422 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc742b074 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xec8aaef1 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf1c4f0bf flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2e7bbcae cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x8913cbac cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0xadc8b695 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xbeddb314 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xfdb0edc9 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x092ec652 tveeprom_read -EXPORT_SYMBOL drivers/media/common/tveeprom 0x753e89ac tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x018dc007 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0edb67eb dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e5f0bdd dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2320c161 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2907e8ed dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2a79a27b dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2cf288a0 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3c3b742c dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ee8cfed dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4672414b dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4923d8a5 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4e040262 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4f8f08a4 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x581837ac dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58c0b3ca dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5a6f883d dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70de704a dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8ae37ce4 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8b91e59c dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c7e8ea1 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x95b8d8bc dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x96bccda5 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x99631b84 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ab4d06a dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb6f95286 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xba73db4e dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc33a0f2e dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc37e96c4 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc645fbc3 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc706cc42 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdf532985 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe33b5ee5 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe7d43d1b dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe81c114f dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebd38af9 dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xec4aa900 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfa9ed849 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc594b15 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x6ac0f5fd af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xb3bcbb83 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x2f588862 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1a3b3f47 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2f1a3e6d au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x385a677c au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x53e32af0 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x58dc3cc8 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5b85f94d au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x76784d95 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe71852ca au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf487e67b au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xac5c30fe au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x90e62708 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x02a6c677 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x0ce20102 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xcd3f0aab cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x6fd09a9a cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xfc11779c cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x727c792d cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x1418868c cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xf24d8a66 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xfda21cc2 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x6a171e61 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x646eab48 cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x763c9850 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x9c7ff2e4 cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x12bc10f6 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x21217299 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x610ab723 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xacecf843 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xeccec225 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2edaa8fb dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3e501757 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x44802c6b dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x472217bf dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x575537b8 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5db7fb12 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x64ff273c dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6da09fd0 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7faf34e9 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x82a1b3c2 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8b04abc0 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x954238e7 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd36c5d39 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdfe6da40 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf54b5d8d dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x551e667e dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x35adfcb1 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x40cd87cf dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4ca08de2 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6bc5d019 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x85086a07 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9483da95 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x30a7f896 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3471149b dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc289dc3e dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf17a3df4 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xac2a9664 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x90b4f0a3 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x083dad26 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x25d28cd0 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x383f401e dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x720cb6ab dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc23d4659 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xbcc0d766 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x7e6ccf85 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xad3e1f7a drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xfef3b1c3 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x8c7a2462 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x43865eca ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x8b2e92fa horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xf09a3c6d isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x5b691d97 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x1bfded5d isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x249d0a99 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x4dec904a ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xefd8cb11 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x5222d059 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x0df6bcf9 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x05d0e99e lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x0b9d393a lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xcaadc9fa lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x1c468bfe lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x31a4902b lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xe2302253 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x5718e597 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xa87793e5 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xc77cd291 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xa2bb16d6 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xe3eb82d3 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xdf9eee0e mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x62102745 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x2ebbaa1b mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x0a5c1ad1 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x37b7cc25 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xb182eae4 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x9864f0eb or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xd2acbbef s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xf0471589 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xd50b0937 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xe90e7aca s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x70db76e3 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x4e64c293 si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xb3b563dd si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x505b424e sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x03ee808f sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x46edd442 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xe8eb2f70 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x4054f594 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x4efbb14d stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xe7b2dcc3 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x2e79efe4 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x80015a71 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x8358626b stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x8e4cd678 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x3735baf9 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x5c8e2885 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xf412a459 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xba1eb54e tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x88db3151 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x63213aa6 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x52fd45f4 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x66e8ed9c tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xc30cfad9 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x1ec1afb7 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x6f1cc62b tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xe0384129 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xfcf17c94 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xaec54b39 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x2321b2b1 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x4c876ef8 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xde672ef9 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xb6124e6d zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x786ac7ea zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x63576870 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x175d6c65 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x37e91769 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8572103a flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa68e8086 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb6ee1eb7 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe412a340 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf20a008a flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x87273228 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb4f3b495 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xbb205958 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf0d00d45 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x00c77b71 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x2471e097 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xf4323a5e bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x064cb095 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4f5eca8c write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x755ee42a dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8a27199f dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8dafa413 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa0b5575b dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xaea10c64 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb873440f dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe9e5c69b dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xcc70b7eb dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x09d3c3fe cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x43c36039 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x44f3f170 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8d302391 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb4b1b17d cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x4565df18 altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0b9bd3a2 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x60fabbca cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa5b7de52 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbed056b1 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbff09805 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc4dffdba cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe913adae cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x9fed99d3 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xe3e18771 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x07b64f30 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x268bb0ab cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa9f68385 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb4d4eaf9 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2ad10718 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x32c702e4 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3ab4106d cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x45ef9de5 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4e7c93e5 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf059120d cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfe68e2a5 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x16197b62 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x25d5ba01 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2c8841c6 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4f52419a cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5912929b cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x61cdfdbe cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6988e401 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6b5d6cb1 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6b9c1875 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x71ea0f4c cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x81bf91b7 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8a377963 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x907d6e7a cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9d331cbd cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9e5211af cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa65c68e4 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc3812f7d cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc8b37b7c cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdb14f9be cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xeae9fdf3 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0552757b ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x13392f55 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1b279cd3 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3909c619 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3abbe7eb ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x48bdd8cd ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6868764f ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x81fa8ed9 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8c4900ab ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x946525d4 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xaaf5951b ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbca48541 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcbf83e8e ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe0290258 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe5f76b8c ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xee2a9079 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfa031735 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x35c53de4 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4440ba50 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x73483d90 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75d6c0bf saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8a0a863a saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9c30cb55 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa2a8d4d3 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaac17f08 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbd0e6027 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc03680cd saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc1d3eb33 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf36a416a saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xbdfc67ef ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x2690c193 videocodec_register -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x539e27be videocodec_detach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x67510ded videocodec_attach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x978b6509 videocodec_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x24fc3a07 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x5c907255 soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x80abe3ec soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa2851a67 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xab4c779b soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xc1dbdc07 soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe6c224f3 soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x4bbb7969 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x58f6a52b snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5aa2f692 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5fc7e3a6 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xbb2373b7 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xe407410b snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0xe7bb7981 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2c02cdb1 lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3f8135cd lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x5408ff8e lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x746d01e5 lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7a284c98 lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x88319b40 lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa8ba5e1d lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xee0dd0c0 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/rc-core 0x865fb620 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0xa01c217f ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x19651fb1 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0xbb27d28b fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x9b377e5e fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa596fbca fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xe099aeaa fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/max2165 0x87464cf4 max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xa97dfc84 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x30155ee2 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x085de9c7 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x19022960 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x9ec3a6d2 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x60ad2a4a qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xcdab301c tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x21d260ae xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xccfd4ba7 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x7dedd3ee xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x3c3a3158 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x62292f0a cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x52a905dd dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5b191361 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7b8b03d9 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8787c9c0 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x93a583eb dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x970edaf4 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc0488a4d dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdde74b59 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf7fa0279 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x06c91796 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3d255d4f dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7f991a3d dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb65b64ce dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc3c19568 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc64627ff usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd620a347 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xe89492c7 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x056775d9 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0687bd69 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x36936d20 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x44c4125c dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x48ef4e3b dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5048348d dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x57194197 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x658e5145 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9e4b2304 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc2caeca0 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf18efd52 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xd181d796 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xd6b48a1d em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4d9a24cb go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4e8ecc7e go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x53982dc9 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x54f8d98a go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x82d73113 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x878c5656 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x93f715f3 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xba1049fc go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcea4872e go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x059a66cc gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2209b4ec gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2c7a1298 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2ef91e47 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x56140ee5 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x71f4271d gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe55db0c9 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe860bef5 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x4f8992fd tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x8bca11e3 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xed127141 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x498f1ed2 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x62481f18 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf63c96a8 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xfc140480 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xfcc51297 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x0d826ff9 videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x30f813eb videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x5b4a8ae7 videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb6dfec35 videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xca113a37 videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xea7f859c videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x376e234d vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xb4dfa4fe vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x2c6fb4ca vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x4cd20cbe vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x6fd7393f vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x93fbf08a vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xd87c3452 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xfc208ff1 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x0a3dbf46 vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0289a9e5 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03ae3924 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0be02861 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12c9a7cc v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13ea4550 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x148c2f0a video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1593add5 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15e158c7 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x18fb71e7 v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x23d60fa5 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27830b14 v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ad556e7 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c419d53 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e60e1dc v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x317f703f __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34099588 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36a7fece video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x417716dc v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x47d32bd8 v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x49533024 v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52862a28 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55d5f561 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a2f15fb v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ab12d81 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5cb5f95b v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f8de0a3 v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x65250c55 v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x652c1001 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x66a5ae0e v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69fae46a v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x71c9dd7d v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73110425 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f3bdbaa v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85efac8d v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c278864 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c604a5b v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e2f6892 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b2609d4 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b98130d v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa29b1fe5 v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab77365c v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaca8c10c v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb1e91701 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb2bff2ea v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3ae6eec v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6201aed v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6ec7521 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb98e8b84 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd80a23d v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc10f816a v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc2adc8a9 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcbfbe69f v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcca506fc __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd29c96c1 v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd77aac1e v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda626419 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd3024c0 video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe28352c3 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe722713c video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8eb4723 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe962124a v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9c5f440 __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xece5b81b v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf0185b7c v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf523ebbd v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf86cc239 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfcad1579 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xff32a4f9 v4l2_clk_put -EXPORT_SYMBOL drivers/memstick/core/memstick 0x03641862 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x401f0965 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x447d593f memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x55cabdbe memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x76bf8d6e memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x7e8d1afc memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x882f31a6 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x892db96a memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xace61a8b memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd10a13d2 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf11154c2 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf5a2af16 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1469722b mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1aa04c24 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1dc5c404 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1ea43c97 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x260a02b4 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x28a57cf5 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2bd7538d mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2db4ae7f mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2f8d1668 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x321f3ed6 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3cf9469e mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3f1515ce mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x44229b36 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4d5dbea9 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x526312b2 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6c9232bb mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x70ca8ef1 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x84a222b7 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x950a52de mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbee682ee mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcaf4b251 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcbf0c08e mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd184432b mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdf6a8c02 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe015be3f mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe723f1cc mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe9075395 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf02419d8 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf6ca3e82 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x02fb0fad mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0603f347 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0d63f3da mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x270e4f33 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2de0f7ea mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x33f9bbf1 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3b75fe24 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3c97a247 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x48764a62 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x509fa0d5 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5341a01c mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5cf3707f mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5d77ca8a mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5db74bff mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x73cb7b73 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x774db210 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x79281d6a mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x792eea5e mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7e618e6e mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb7a2af8a mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbb32178a mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc24cc5ab mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc3efe298 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe57ffe1b mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf54b3176 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf82cc115 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfd32e924 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/mfd/cros_ec 0x11fab0e6 cros_ec_register -EXPORT_SYMBOL drivers/mfd/cros_ec 0x4f8553df cros_ec_suspend -EXPORT_SYMBOL drivers/mfd/cros_ec 0x5c8af493 cros_ec_resume -EXPORT_SYMBOL drivers/mfd/cros_ec 0xe16116af cros_ec_remove -EXPORT_SYMBOL drivers/mfd/dln2 0x945a5c82 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x97250c92 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xe396d19c dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x150ff376 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xc8f31ea6 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0168ebe5 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x139a97bc mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x258d2918 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x424bfe3e mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4777afc3 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x585dcb21 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6afbc15a mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb03ddff3 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe948641b mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf65a9f51 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf6f40216 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x0dcbc383 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xdbb0297f wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x255f3106 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x880788b2 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xba3d332b wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xd22265e6 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x279c407f ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x63501826 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x075983d1 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x5def65ff c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xa00b195d c2port_device_unregister -EXPORT_SYMBOL drivers/misc/ioc4 0x417bfa21 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0x66b55ef8 ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/mei/mei 0x0b3c2389 __tracepoint_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0xafdfce69 __tracepoint_mei_reg_read -EXPORT_SYMBOL drivers/misc/tifm_core 0x07e30dd9 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x2d040836 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x2efacfde tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x38781904 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x4d580dd5 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x5b8e0003 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x6c901170 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x85510bae tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x8c735c03 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xc8682355 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xe09de813 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xe7bee087 tifm_has_ms_pif -EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xffa3b18b mmc_cleanup_queue -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0dd20cbd cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x74ce6466 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8a3eba66 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8e9d32b2 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9f854ed0 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa18259a5 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xed952062 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x05538aad register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x6258f6aa map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x7ff45a61 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd11b1ba4 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xbe3ba576 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x90ae7833 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x6603e300 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x67d3f8eb mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0xab4ad2ac mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/denali 0x252e9eeb denali_init -EXPORT_SYMBOL drivers/mtd/nand/denali 0x9ebcaaba denali_remove -EXPORT_SYMBOL drivers/mtd/nand/nand 0x00a167eb nand_lock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x1740cd96 nand_unlock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x1ad008bd nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand 0x345da4bd nand_scan_tail -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/nand 0xa48a4ff2 nand_scan -EXPORT_SYMBOL drivers/mtd/nand/nand 0xd622bd4b nand_scan_ident -EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x1e44ae58 nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xb6fb6f54 nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xbd331f1b nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x76ee057e nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x9b2d3a13 nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x4d14c3ed onenand_default_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x83001f21 flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xdb0ec662 onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xe90af0a1 onenand_scan_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x272d9104 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x462d4985 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x87c8632d arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x956569a8 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcfb15491 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xde6a8dcf alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdedea656 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe45d60f1 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe8c25c46 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xec367e26 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x2008743a com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6426b895 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x97ae3ecb com20020_check -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0ccce7c1 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1cc7cb2a ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x397d6ff2 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3cea198b __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4ae17d77 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5641c09e ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x92767993 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x95be806f ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa731f127 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb81a7b27 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x2f0c973e eip_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x3fa47598 eip_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x5fe6d4ae NS8390p_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x8e10a390 eip_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x99c03fd7 eip_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x9becd8a9 eip_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xb9194192 __alloc_eip_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xd9b8a77e eip_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xe0ecad0f eip_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xf0ff38c0 eip_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xfb5cdb30 eip_get_stats -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x4bcd74e9 bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xfa502a7c cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x238253ca dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x26b5cccf t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2bdffe15 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2e9e63e1 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x30067fd3 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x41be18d2 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x54ac4b0b t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8d30cab6 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8d4513eb t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x91dedc92 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x92151edf t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc010dfbf cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc31f44fc cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdaa456e5 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xee17e710 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf0a4d3ec cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x04c54c74 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0de06336 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x12028eac cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f8c5a65 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31cf2637 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3273364c cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35d51ca9 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x44d423ad cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x480fb3fe t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x51c14346 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57707dfc cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5d726e04 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5dbd4f03 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x640ce286 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x64bcf56d cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76b28c73 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7a437215 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7f080482 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x941a78f2 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9567c608 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x95aa2b30 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9696ea39 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x97948fa7 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa486717d cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4e4ccc0 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab6618b8 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb3d9ace8 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc5713da1 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8f8cbae cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdfd1449d cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfd4ad463 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1511cbc8 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2b8a9c87 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa05d263f vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xcc0cc4d5 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd5efad2a vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf93c3cc9 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e806ed6 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x6660fc9b be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a18ba98 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d5b3f89 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19399f5e mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24a1550e mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x317d5efd mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3727eded mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3dd4548e mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4065b145 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46a604e6 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5817e98f mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b50ec11 mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c955429 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61385a93 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6631914e mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e58ad7f mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e215a45 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82b1f677 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x872e4840 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ea128f5 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa20f9779 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa39158e8 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7acb01b mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaaf2c51f get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2d9f1d7 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb9d5fc7 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc15eff9 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4742f8c mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9280ba6 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcad8fa7c mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd38cbb65 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6238119 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6828282 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xead5c648 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1633a3c mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf314d81d mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7455172 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9bc661c mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdede2bb mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01a1b1ea mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08f9224c mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c7d67b2 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d16a6bf mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a785490 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f5a1728 mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27fac42d mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3be1c134 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40a328f9 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43d5b647 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x459f8759 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47388e94 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54817a74 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x562f9ea4 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x595fbe7e mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cb85942 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64fb7a66 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x722d9a87 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95801499 mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95a8e4cb mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x976e5665 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ab60b11 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7e7eace mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb83a2dbb mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb33c66d mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc08e4f4f mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9224167 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccdcd40b mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd17b723 mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7abc20d mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb7fea5c mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc5fa132 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde41b53f mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf17628e mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe84a81ec mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea2874ee mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf08c12eb mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfef6f5b2 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x091cb017 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x414d0eec mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5242fab5 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbb5a516f mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd8c92fdd mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe174e383 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe51905e3 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x8b84dcfb qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x32e90576 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3c231bdc hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x47a36062 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc03f77f8 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf58be185 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x35929195 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4643364a sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x49ab5954 sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x50b659f3 sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5b446d26 irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7df174c5 sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xbdaedcd4 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc06ea017 sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xcac7077c irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf94f4240 sirdev_raw_read -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x004a2509 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x1bb30e83 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x1e035a87 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x306446c8 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0xac6ddf06 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0xc2f7c4d2 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0xc9779f7e mii_check_link -EXPORT_SYMBOL drivers/net/mii 0xfa1ded02 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x0cb7ee5f alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xace07beb free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x2a983aba xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x62d07902 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x8fec6563 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/vitesse 0x62939719 vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0xcf952bab pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xdd499cd3 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xf323b25d register_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x4e1cfd52 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x61accbf3 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x664ddecf team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x667bc146 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xabe37279 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xad169872 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xae217817 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xe1085909 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xe5c81de1 team_mode_unregister -EXPORT_SYMBOL drivers/net/usb/usbnet 0x335c4356 cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/usb/usbnet 0x6ca227f4 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x6d2dafa4 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xa8647345 usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x2f6a666f hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0x30e60dd7 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x586e6451 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6039e5dd hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x70a8360d unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x7a1ea7a1 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x809a2c7e unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x9ae1d59c hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa6178567 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xaa215455 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xfa0961cc attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/z85230 0x0db6458b z8530_nop -EXPORT_SYMBOL drivers/net/wan/z85230 0x10c78988 z8530_dead_port -EXPORT_SYMBOL drivers/net/wan/z85230 0x1c6cf916 z8530_sync_txdma_open -EXPORT_SYMBOL drivers/net/wan/z85230 0x200a7b42 z8530_sync_dma_open -EXPORT_SYMBOL drivers/net/wan/z85230 0x350df6cb z8530_describe -EXPORT_SYMBOL drivers/net/wan/z85230 0x5cd24d29 z8530_hdlc_kilostream -EXPORT_SYMBOL drivers/net/wan/z85230 0x733b13e7 z8530_shutdown -EXPORT_SYMBOL drivers/net/wan/z85230 0x98b4b289 z8530_channel_load -EXPORT_SYMBOL drivers/net/wan/z85230 0x9c513bb2 z8530_init -EXPORT_SYMBOL drivers/net/wan/z85230 0xa858d6bf z8530_null_rx -EXPORT_SYMBOL drivers/net/wan/z85230 0xb3e5ea64 z8530_sync -EXPORT_SYMBOL drivers/net/wan/z85230 0xbb08ac9d z8530_sync_open -EXPORT_SYMBOL drivers/net/wan/z85230 0xbc8314a2 z8530_sync_txdma_close -EXPORT_SYMBOL drivers/net/wan/z85230 0xc64e2a5f z8530_sync_close -EXPORT_SYMBOL drivers/net/wan/z85230 0xd0b9e7cd z8530_sync_dma_close -EXPORT_SYMBOL drivers/net/wan/z85230 0xd4ffebf0 z8530_interrupt -EXPORT_SYMBOL drivers/net/wan/z85230 0xe3d80064 z8530_hdlc_kilostream_85230 -EXPORT_SYMBOL drivers/net/wan/z85230 0xe8693c13 z8530_queue_xmit -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xf0e736c1 i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/airo 0x39ab1980 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0x7dab125f init_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0x9c7775f9 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x04371341 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1901b8da dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x32668a80 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x44481435 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x47029a2a ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5d0ee9ee ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9296a670 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa8af7106 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xac3f33ad ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaf9e5dd8 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd480142c ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf86cdfb9 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x118071ff ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1307f179 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x31af9b94 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x48734678 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4cb023a1 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x716c41c2 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x852d1cad ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x899718bc ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x95def7f7 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc4534042 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc856a72e ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd02cb06 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcf9c50b8 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8c28b06 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8f17ff2 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x137b55e8 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x32ca2a4a ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5e1d5680 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x63ffd173 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6c796f7f ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8eb33a70 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9ab6b033 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa2cae2cf ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa2d92f00 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc2a6847d ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd033f99e ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x01262290 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x07c68e63 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x14608df5 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1aa02000 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x24714a8c ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2828c821 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3338c6e2 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3eae8d3a ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41f5baca ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x43808141 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x44acae96 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x54c2169a ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5a620b7b ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9a818189 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbb0e3f3e ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbd9add06 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc2079dbc ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcac62d4b ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd15b2f70 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe52ca095 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xecb97191 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf40817f3 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf68a3440 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0173a3f6 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x034a685b ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x039db0c3 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05503d16 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08de1472 ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ccd2cae ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0daeafd7 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f7569b2 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0fcb1d3a ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1415062d ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x150899bf ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15560c39 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16057034 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17ebc7ed ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1848e281 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e413574 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27f9b4d4 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b3657bd ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2dd387f7 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f66b3bf ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x327eed30 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33319826 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x397280ec ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e0f3521 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fa0b837 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4682dd9f ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46db1a99 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4903cb9c ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a6c3f96 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c2209cd ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ecdd416 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x531ac4cf ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56311cec ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x572a91d3 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5745ce4e ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x576e77ea ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5817efba ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x590affba ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x598c5098 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fcd2dd5 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60514bac ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61a52054 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64b68232 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6592aada ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6744ecc6 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69994765 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69eb81c8 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ee89bd2 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x703dd4e4 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7274f8d5 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72f5cabd ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x779e3f1a ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7842e3b9 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d952983 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7dbcddef ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x813ca78c ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86918f5d ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x870638df ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x895b4b46 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x910f95a9 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92667a56 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x986cf64f ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99b7dbbc ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99e3802e ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c15e859 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa17a99ed ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa79d581a ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaac871d1 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xacd618a7 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad89a645 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1ef10bf ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1fb49d1 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb521c35d ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb807c181 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb09434e ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbb71e4b ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc2bf001 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbedf4fb9 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2a9de77 ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc392ad61 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc54b5130 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6de7b3b ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7572f22 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc92c592e ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc0ae949 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce5279b8 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xceac363e ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd25ee596 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd38cc314 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd42a23f7 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd732361b ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd744c38c ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd760364a ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9885951 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd518538 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf321aa0 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe323c0e7 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe39dcfd1 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3dd4908 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4c81214 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe67d9ad3 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8d38077 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8eb00d5 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee91b026 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe3c8ba8 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x2670a355 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel 0x69efd786 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0x8a176b64 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x11c1b29f brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2419ba87 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x52eae9f5 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x55b7f708 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5daaa694 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7397d11b brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x93fbb8c8 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa029fd7e brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa218e0b6 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc25bcf9e brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd6198511 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe9863c8b brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xfc83fc95 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x045784d9 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x18d5278a hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1fd03159 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x24c88e75 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2b244650 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3099016a hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3d10c036 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4db6f4af hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4df13dc7 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x550c2b34 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5517ada7 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x577b5121 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5b150b9f hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5b5179f1 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x77ecdd6b hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7cba94e7 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7d030e53 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7e904aa0 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x87890dbb hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8d238b41 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa3c22dd1 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa613f26a hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa9197958 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd695b030 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf4dc189f hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0f181988 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x16efee27 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1e0739f5 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2150974d libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x351239c5 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x537a451e libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7003e83e libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x719f477e libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7f740e37 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x84388dd7 libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8d8eda25 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x93d51c70 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xac42257c free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb633e592 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb6f50bb5 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbf63cecc libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc1c2df11 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xca7d49e5 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd708a5a7 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xeb2f4e90 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xff528f5e alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x020fc32e il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x084b01e6 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08ad8da9 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0f22ba87 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x12dfd68b il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x16e1362e il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x17c071e5 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x18942d7e il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x194c7e1d il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1b937f41 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1c2d7880 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1d693891 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1e73eb94 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x23966cab il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2479928d il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2d2b5013 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x31441c2a il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x35935d71 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x363c0ad3 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3b14bc4b il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3e458fd9 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x452e20e2 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x474c5845 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4877584c il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e937b64 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x527a98b3 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x540cb39a il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x563cb331 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5cced903 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x63910336 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x653a8e83 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x67c6cf48 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6e8a6bc7 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6f2ae0d5 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6fe6b057 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x72685f9a il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x72b0231e il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x78e73d9c il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7a5a1540 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7b8417e0 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7bdf8662 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7d806ef4 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7fe416c2 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x805387ee il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x81620534 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x81cdec48 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88c80eac il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8979c1bb il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8bcf8e33 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8bee532a il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8cef4fa6 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8da22a91 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8f91d45b il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x90ead841 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x938630ee il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x95378d49 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x96c95509 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a0cfe94 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9aa78c66 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9ba0870b il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9fb7a488 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa0883b50 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa10a7a70 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa1d9d48d il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa22c6c5c il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa2d9f8bb il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa352fb14 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa63f4de6 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa76787fe il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa83fef08 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaa13c8f4 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0b42f9d il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0bd2271 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb5f4e5a7 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbc01a245 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc282ef0f _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc452d7f4 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc5d0e775 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc6b23db6 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc718ee1e il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc7d1fa7b il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc9f5eae9 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcd250313 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcff74738 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd26bf480 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd9ba6a8f il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xde9e8bf4 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdf93a628 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdffb8c07 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe0615da8 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2244327 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe67f421e il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe98b4eea il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf0e51997 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf280d8b3 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf41b07c6 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfadd7edb il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfeabce28 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x08c6664d __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x4379786d __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x95a8ab3c __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xa2b6ec39 __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xb69add1f __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xcd60e86e __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xd4f50457 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x02cf7fcf hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x04582b62 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x17379490 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4f351ebd orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5f0d3814 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6680bfdb orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x773746fa free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7d892769 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8dc587f2 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbf32f724 orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc012bed6 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc82de86f orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xded8d20f __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe125bb04 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe798ccd6 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xec6b8bc1 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfede2283 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xec00264e rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04770d67 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1078372a rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x12d14661 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15168704 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2adc9c37 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2c56617c rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x36df0017 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x38f0704c rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a9ced14 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x40ced371 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x486531d7 _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x48d747ac rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x52bb6aed rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5364b9ce _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6e2c86c0 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70091fb3 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x709c573d rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x756bf30a rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x761d6564 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c8b35ca rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7dc311d2 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa25b11b4 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xacabc924 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb7d541fa rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb9b4f91f rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbcabac2e rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc6073ee5 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc719da16 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xca3797ff _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd51cadbf _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd84cbf42 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda013a80 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdb765670 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeaf1577e rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeceef122 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf7575242 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf84778bc rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf8a8fbe6 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb71609f rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfc0b3257 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd32cfff rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x1c61d288 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6e805e3c rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xda5eff0b rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xfe5b7831 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0a8d5681 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0f1ba408 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x55bd19db rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd5b40c7e rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d3d8d35 rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1be189b8 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x249f1913 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28dae495 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2b5c60ed rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35a38b20 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x405d0beb efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x453b2f6d rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a8ce2d6 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4cbdbf76 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5093a7f2 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x592faf2a rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62bf210d rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x846251cf efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8a07e6e7 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c9d981c rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x909ca9bc rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0c9b638 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa9add47d rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0506d80 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe0c3ba1 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xca1fc38b rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xced72473 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd660e7a9 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc371ada rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe51b7340 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe76c5c4e rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf268283b rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0de555e9 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4cb49b06 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc594bf8e wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd22e9348 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x6438ca8a fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xc6ba1a8a fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xc8d37f25 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x9ff7e30b microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0xc55e222a microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x4cd7450e nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x9c70b6e8 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x9fe87b3c nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x3b92a6c2 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xac791c58 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x20502afe s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7e4ac920 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xb6dd890a s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x05966fde ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x29adce69 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x53ce473c ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x70b667dc ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x841c1fc2 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x87b7b95a st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8a16e070 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x98b12cd8 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xeaa5413b st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfa223d6c st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfc77f76b ndlc_send -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0d53c5ca st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1f7b7081 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3576a0bd st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4777eb47 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5028921b st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5f97c700 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x76fad1d4 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8d867eca st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb355d669 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbcb14097 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc540408c st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe9585bee st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xee5e4796 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeedbc8ee st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf068424b st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf293ceb8 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf5d4c93b st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf8a06cd9 st21nfca_hci_remove -EXPORT_SYMBOL drivers/ntb/ntb 0x4c83055a ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x6a0ce429 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x7f1b480e ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x9b9ca226 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xa36ab724 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xb2631d8c ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xe796f816 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xf76e23ae ntb_unregister_client -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x00fe529f nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x417b76ce nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x38a8da9d devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x055dfba3 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x15119d76 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x1f508533 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x25c50776 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x2af5106c parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x3362987b parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x35f2eeba parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x362727e5 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x4048ada6 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x434f5dbd parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x540ab5c1 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x5d2cb5d2 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x679dcf5b parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x6852d41b parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x6c08192e parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x74924914 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x7b392d6c parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x8dbf36e4 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x99370d33 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x994e8930 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x9f24eb58 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xa322e99f parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xacc7638e parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xb48f1eac parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xb790dc5f parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xbcb96cca parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xc17f731b parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xd1961dba parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xd4cc5164 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xd6f7fc2b parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xead40836 parport_read -EXPORT_SYMBOL drivers/parport/parport 0xf5f07a5f parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport_pc 0x1592a862 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x61812e90 parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0321d73c pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x231a8364 pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2797b500 pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x367f577f pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x45a26745 pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x49927e25 pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4e7500a0 pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5b787869 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5c6e7436 pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6e48995b pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x74e7ee15 pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x95fa5f70 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x99a6ef8e pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9fe03dd8 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xaf505548 pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb5ceb42d pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd517f45c __pcmcia_request_exclusive_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdfa6c3fd pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf5f7ba0d pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x062448e5 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x32b2dae6 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x603c6ea1 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa191140b pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa30afe75 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xafd001c2 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb580c541 pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbfa70620 pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xccb28a5f pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd796db78 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfac02461 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x7e522e01 pccard_static_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x9caaf56c pccard_nonstatic_ops -EXPORT_SYMBOL drivers/platform/x86/intel_ips 0xf97d7d0e i915_bpo_enabled -EXPORT_SYMBOL drivers/platform/x86/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command -EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command -EXPORT_SYMBOL drivers/pps/pps_core 0x28f1a45d pps_unregister_source -EXPORT_SYMBOL drivers/pps/pps_core 0x48e3086d pps_event -EXPORT_SYMBOL drivers/pps/pps_core 0xa413bfa8 pps_register_source -EXPORT_SYMBOL drivers/pps/pps_core 0xaad2fbc2 pps_lookup_dev -EXPORT_SYMBOL drivers/ptp/ptp 0x6294541d ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0x782ed2f8 ptp_clock_register -EXPORT_SYMBOL drivers/ptp/ptp 0xbbd86335 ptp_clock_index -EXPORT_SYMBOL drivers/ptp/ptp 0xef782383 ptp_clock_unregister -EXPORT_SYMBOL drivers/ptp/ptp 0xfa36dd0d ptp_clock_event -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x11e0040a pch_set_station_address -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x12f4e60f pch_ch_event_write -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x1d9108e6 pch_src_uuid_hi_read -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x2bb7a402 pch_ch_event_read -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x433584fb pch_rx_snap_read -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x732f45b1 pch_ch_control_write -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x9f124ed3 pch_ch_control_read -EXPORT_SYMBOL drivers/ptp/ptp_pch 0xa15508cb pch_src_uuid_lo_read -EXPORT_SYMBOL drivers/ptp/ptp_pch 0xce696282 pch_tx_snap_read -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0b78a2e4 rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x10ff8804 rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x368d72d5 rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4f5b3bc1 rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x84534752 rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x8a625303 rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb24c0c73 rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf266fc95 rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf4e8e0ad rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xff62dff7 rproc_alloc -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xfd02a01a ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/53c700 0x3a8b79ae NCR_700_release -EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr -EXPORT_SYMBOL drivers/scsi/53c700 0xf86220ba NCR_700_detect -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1fbae264 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa09b9b3d scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc4b4ed4e scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xfa843056 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x209a2352 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x28adb1f9 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x30c007e5 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x41c670b1 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x489040f1 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9b71c859 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9e3b2b30 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa1fd83fd fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc370f906 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe703174a fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe968804e fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf512970f fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x07d275ae fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ec59920 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f3f0b28 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x299a1014 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31ac87f6 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x35b7e98b fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36c1fd9b fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b74a124 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4170c52c fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46bc18be fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x476214d1 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e98b8f7 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x502bdddd fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5213f2d6 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5660d492 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59115ceb fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x61778253 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6348d8ac fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ae3313 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aac9ed2 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x70c0be43 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x717d5f72 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x71c18a0b fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x725fd050 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x72ee5b4d fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x773842f3 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78e77d3e fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x85f9c084 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b4e1f24 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e9d3a43 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x958650a3 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9bb5b84b fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f2a877f fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae28e0af fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb051d8a3 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb318db48 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb410e232 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc14cde76 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6114065 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca7023e9 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd028b5b8 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3f9a656 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd527a65b fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xedc185f6 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xee3c7c53 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb3dfea0 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd4f2865 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x186f07e3 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5f9f1b39 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x87175a5b sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xdc9ef726 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x07c2542c mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0514a5fe osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x08ef93bf osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0db82e5e osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0f6311da osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x10cead9c osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1eea88c6 osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2f11006c osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x38dcb55d osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x39038840 osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3af5448c osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x40132e3f osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x411c0ee6 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x43d323bc osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x47dc86c3 osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4b057cea osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x53b44f4a osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5a9c13cd osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5c3f4257 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6ac7e5a6 osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6f516b5c osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x75394123 osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7859b69b osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x81c49234 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9609b4b9 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9a315c66 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa1f76fbb osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xabccdc33 osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb148042f osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb638aec8 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb76b8dc3 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb782ede5 osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd4aafc32 osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf10acee7 osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf15313b9 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf654dd0e osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfcc85007 osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/osd 0x08bab9f7 osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x63d317b2 osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x6c3b8c2a osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0x9b68504d osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xdfa3cea7 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0xe6b6f1b2 osduld_device_info -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x21b34ed6 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3afc6355 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x496c77df qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5fe977bf qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9ca67a53 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9d25cd83 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xab558221 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc83b8e8d qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcfbeba1b qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdf2fd5ba qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xecd4f546 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfa868c47 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x5acd4531 qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x72b24417 qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x9ddec888 qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xaa467d2f qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xeb0f7e3b qlogicfas408_bus_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xfdad4624 qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/raid_class 0x61638034 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0x9a6756c1 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xa6727502 raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x141a92aa fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x17059a66 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x364bed64 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x45a519b3 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4874a8a8 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4d390fb2 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x678ac568 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6834a1e2 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa6496398 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb8767c04 scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcf7cc7ee fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd176e191 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe3f82afb fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0019bc7c sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x09dcaf95 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0af759dc sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0e819c55 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x10ceb848 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x22994ffd sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3b3fe566 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x46662128 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x536cbebe sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5ba81865 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5e737866 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x63087679 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x70d8de1a sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7510f26a sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7cc12778 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x864e15cd sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x928f6f2d sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa21c9719 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa9b9c937 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb4caf300 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb813ac76 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbafc28b1 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd4ab271e sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd8c5cd1d sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe2706a5d sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe91c6f89 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xed9fefd7 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf939ce4c sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4b4bfaff spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x54b00ca7 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x654c9d2b spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa107048e spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc7fe2e18 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x04795469 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x0da7da47 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x36c91403 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x740e1b07 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x548e2a8d ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x5b42f905 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6dfde548 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7a2be13b ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7c234c55 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x9fce5582 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb075bcf5 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x40fb38d7 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x4305d910 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x476177ae ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x4982296d ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x4db3b532 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x54638aab ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x5ddafdd1 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x5e164a65 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x6a593111 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x6c22e916 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x6d8f39e2 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x758acd39 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x78983ca2 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x85356885 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x8b0320c9 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0xa4698a5f ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xb3aeb589 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0xb6f6a1a7 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe1069f3e ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xedc387d8 ssb_bus_powerup -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x09355e00 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x09a6b317 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0d35bd55 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2b470bc9 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3501859d fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3be8da9c fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x417d1025 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5f3edaa5 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x62a16e89 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x67775913 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6bf606a6 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6c146b3a fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x78bca15b fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7dc952c6 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9b6c9eed fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb1742296 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb4cbb38c fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb67ff3ef fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc36d1ef7 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc5773177 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd70fb1a8 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe0abdc9e fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeae44c65 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf516c0a7 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x2bfd1bdb fwtty_port_get -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x48c88df7 fwtty_port_put -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x0cf207f8 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x175eea42 hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x68948cf2 hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x6a532fc8 hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xe24e7de4 hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x8fd3d23c ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xc719e356 ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x08aa43ac cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xfd960217 most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0bee7e6e rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0daecd8b rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x10cceb92 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1378afc5 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x19399296 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28af89e9 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x34ddd452 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x36ba2015 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x37826da8 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x39ebd749 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x39f1a6ba HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3d96fb9c rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4aa23798 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d62ad9e rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4e0de229 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53c465d8 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5436ae4d rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5a08196a rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5c83b495 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5df937e7 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5f466ff5 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63b49894 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x68068ea5 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6838e008 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x68730dae rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x68e67f44 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x734b9ada rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8435e853 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x84b26a56 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8af9c9cd rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f6f98e0 Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x91b4ddb2 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e416057 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa3ba4a7d rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa531e782 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb521e87d rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb6ced2a8 rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc22dde37 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3055a2d rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xca201c6a rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf49ad8e rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0ee524c rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd6e39c32 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdc440b37 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xded30073 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe4ccdbb3 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xedf299ad free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef40a32f rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc0f0304 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc83aba0 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x02c63582 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0431a67c IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0487e13e ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x11cca130 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x121f59d3 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1746adf3 ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a6a1c13 ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b515271 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d992b12 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e3f328a ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x211a9861 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2395493f ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x250274fe ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3422e213 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x36c7ac90 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38fac7f6 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42722cc6 DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4392ccb9 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45f1722f Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46b33cd7 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d0b4b2f ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e6010b7 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x512350aa Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x54535d6a ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56b70a2b ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a6e360c ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f0fc0dc ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x62a0860c ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63b6508e ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68fd6ac6 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6f9a5095 DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7296a816 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7d2c1d2b ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x80f92994 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x92080b65 Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x95d23ffb ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9785cd1e ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a22c2b9 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6b96f1f ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7b56642 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd12ead3e ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd2236c7f ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd46c80ce ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd741710d ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda403fca ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdfb34d9e ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec487c71 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee04b051 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf58e2a1a ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf724d588 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf90c31f6 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9b87b7f ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb2c5782 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x00b1a884 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x16de00a3 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x19abde9e iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x19eb2eb8 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1dba3a11 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2392be3b iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2a339bea iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3292a6dc iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3e3a9879 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b461f6c iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4fb5b2c2 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5e0f3d1d iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6091f87d iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x717d5313 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x775ed1c0 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x869c58c0 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8c4f1f47 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x99e2807b iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9acf8841 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ff6e531 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae8f8548 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb2f6dbb9 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb5b4fcdb iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd96b7d1e iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdaa2cfc7 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xecdf034c iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfd6e82ba iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff9227d8 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x03c99696 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x069c2c02 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x0720aa16 target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x095ee020 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x14001eb6 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x153ef170 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1d679105 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x253575c5 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x29e0099d core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x2ff87795 target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x324ff9a0 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x39357b9b transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x3bfda80e core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x3fc10398 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x40f7c619 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x43bc0681 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x4f6a7ff7 transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x501cabd2 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x50c3184f transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x5529a6ce core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x5bf02e0a passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x60f35b62 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x63e0c216 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x65d384ab target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x667751d6 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x66d3aa35 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x67507400 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x708b04f7 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x74f20ab4 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x75b31a62 transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0x7755bd32 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x794189ee transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x79985df3 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x79b40fad target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x7d75891e transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x828e8248 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x83d1c434 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x855f6063 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x866d8b55 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b211e18 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x8ce9bcf8 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8ed3625c target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x9182bf77 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x990984a7 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x996fd53a __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa4499624 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa72698fe transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xa74a58dc target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xad2c4420 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xaeb88071 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xb1689bb0 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xb16fde49 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xb4cf170a transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb642a104 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xb7535b6c core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xb758d297 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xc1180f78 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xc25f583c target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xcf7d30c8 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xcf9278bf transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xd113492b target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xd4e407a0 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xd74a72e3 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xdccff108 target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xdd0f631b transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf0234ff1 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xf15ea67c transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xf341a718 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xfb8369c0 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x5007fc2c acpi_parse_art -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0xdf707fab acpi_parse_trt -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x1c6fa6c2 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x2ca3063f usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xbf1d5d83 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x078825ba usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x28436ac0 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x44280287 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x637120dd usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x889b16e4 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9d34e527 usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xafd0b96b usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb1c8e8c8 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc2828763 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc56fe119 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc8eea2c8 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd7353a97 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x56a7a6fb usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xc66c00c6 usb_serial_resume -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0x00917509 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x22d372c8 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xa04c7788 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xd5dbf23f lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x20b27cc5 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x28fbd77b svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x34eb07de svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3fb4d0f9 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xaddd81a6 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf3093b05 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xfa3fcd22 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x2b31c93b sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x4ecdb230 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x2d8a74a4 sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x6897a1a1 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xec78800f mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x94317412 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9eae2e81 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xb641ddd7 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0f1be959 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1258626e DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x448d2544 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x4537a4ac DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xe1739d9b matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x5dab52a0 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x146f07a2 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x9069adc0 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb0c10329 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xdf969a95 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x748b8590 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x8a19cd61 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0547f9a8 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x17553285 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x64669cb9 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x90daaaa0 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xba92dcb9 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x38101151 mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6028f22d w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6331920f w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xe0734b84 w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xe48ad25b w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x2c9bff10 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x60fdbf9b w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x4038bdcc w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xa45e3a68 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x12ea13aa w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x3b48f623 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x4254e86d w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x6862601f w1_register_family -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xb5f20875 iTCO_vendor_pre_keepalive -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc4f657bf iTCO_vendor_pre_stop -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xdc6effc9 iTCO_vendor_pre_start -EXPORT_SYMBOL fs/configfs/configfs 0x0dc2d7b3 configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0x0ea6978f config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0x1e9649e6 configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x376b0680 configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x55aea2c3 configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0x61580ac5 config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x63fb31c8 config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0x6f15a494 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x8b016b91 configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0x8c85e46a configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0x9399309b config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0xcd70269a config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xd47047b0 config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0xd9f2c959 configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0xe5486ca4 config_item_get -EXPORT_SYMBOL fs/exofs/libore 0x15c85c2e ore_read -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x35e6f488 extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x43f2b617 ore_remove -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x5bf8f8f6 ore_create -EXPORT_SYMBOL fs/exofs/libore 0x8592f83a ore_write -EXPORT_SYMBOL fs/exofs/libore 0x87a69924 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0x96b35f68 ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xa8443efe ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0xc4f35bdf ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0xd01a8d51 ore_get_io_state -EXPORT_SYMBOL fs/fscache/fscache 0x03bab713 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x0b96448a fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x17b6b79e fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x1e098798 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x1f09084c __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x25a0c9b0 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x26ed7f32 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x2918924d __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x3dc70284 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x3ff8a0a8 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x40b3c64f __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x4ae695b3 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x4e4e87a3 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x5f096f32 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x6583543e __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x666a758e fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x679100db __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x69c7d618 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x7cf6b759 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x85cf0b5c __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x8760c3e6 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x8bf33328 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x9d1fd0fb fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0xab553e32 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0xb2f0e70e __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xb472544b fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xbfae47ae fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xc26c09c3 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xc54aee72 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xd1b73c59 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xd4a741c1 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xd955660b __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xda1589e6 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0xdb58a895 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0xe5ebc1ec __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0xef6f3531 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0xf52b33c8 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xf71e60d9 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xfa27718f fscache_add_cache -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x29b34d11 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x38b3e8e7 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x53f160e1 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x7b684d8b qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x981e2eb1 qtree_delete_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t -EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create -EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put -EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed -EXPORT_SYMBOL lib/lru_cache 0x98878622 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xb0adb4a6 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set -EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get -EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del -EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of -EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find -EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x18771258 lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0x9f0ec6a3 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xc4e617a1 lowpan_nhc_del -EXPORT_SYMBOL net/802/p8022 0x742d8d2e unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xbd88c0c7 register_8022_client -EXPORT_SYMBOL net/802/p8023 0x1216b48c destroy_8023_client -EXPORT_SYMBOL net/802/p8023 0xe6f8c031 make_8023_client -EXPORT_SYMBOL net/802/psnap 0x64b4d65c register_snap_client -EXPORT_SYMBOL net/802/psnap 0x95ac5bf9 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0927a8a5 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x107c91f2 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x12bf1ca3 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x19468218 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x1c9f73c9 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x27a05536 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x2b6f0ca9 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x2e0e72f5 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x405ad5a1 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x408ba062 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x40a0310a p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x4a12f6b7 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x4e6eda46 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x53d292e9 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x588d83b2 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x6c10a12c p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x6cb375ea p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x750abef7 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x80cce476 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x8124b72e p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x81b1cfd3 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x93b27f53 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x94119ab4 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x94b75709 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x94d7008d p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xa4e1fdbc v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xaa444c37 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0xaa9245ae p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0xacfabde1 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xaed53f39 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xb1414235 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xb293c81d p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xb32296a8 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0xb9bfddbb p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xbb185dd0 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0xbd1e6d29 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xca23f973 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xd1e74b74 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0xdb1630b4 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0xe44a9b95 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfad9912c p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/appletalk/appletalk 0x01625e07 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x1cd88188 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xcc2530f0 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0xddc88129 atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x0356be3d vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x1285e3b6 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x293e1fc4 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x45f914ee register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x644f0937 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x789281f7 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x78d4e6cf atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x8ddbfc86 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x9928f2a9 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb48aa187 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xc483fd91 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0xdb2694d6 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xe2c0ca50 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xf4c4cc53 atm_charge -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x3ccf5b52 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x736b0abf ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x98824f68 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x9fd76b92 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xa8d8d232 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0xaf58503a ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xe870c8ef ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xf4383a15 ax25_header_ops -EXPORT_SYMBOL net/bluetooth/bluetooth 0x00c54a05 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x06500d39 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0702c8fb bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ea23b44 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0f27fced l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b610da1 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c921b16 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x30cd41b7 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x325ffe24 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3364eb83 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x381e9fe7 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3db70466 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f45d74e __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c9fb59d hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f053caa bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x50c6fc4f bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x512b3558 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x57623a18 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5bdb3a1b hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5fa3590c hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5fbb1a5a bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x723dc57b hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x805ea2f4 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f968dc9 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa6dd0a50 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb09bfbc0 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb3c3080d hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5c0d083 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb74435a9 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf75e829 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd812679c l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd9eaedd3 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe2e29950 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe6ce225e __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe795ab7a bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0xea5c3c84 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf57ec8cb hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf916e67d bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfba2eeec bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfbde42a0 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfd51533d hci_register_dev -EXPORT_SYMBOL net/bridge/bridge 0xda55c434 br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb66e5896 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xbd54d0c0 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xfe597b94 ebt_unregister_table -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x1f0d1166 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x5a9562e4 get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xd7fa3ee4 caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0xebd7ea94 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0xfd910cf4 caif_connect_client -EXPORT_SYMBOL net/can/can 0x777886d2 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x9dbdae6c can_rx_unregister -EXPORT_SYMBOL net/can/can 0xcc83d500 can_proto_register -EXPORT_SYMBOL net/can/can 0xd5d15c0a can_rx_register -EXPORT_SYMBOL net/can/can 0xd8c7b686 can_send -EXPORT_SYMBOL net/can/can 0xffcd2e87 can_ioctl -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0ef473a0 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x13fc7e6d ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x1957e8c8 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x1ce8c21d ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x1dc6c18e ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0x1e95a667 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x1fbfc8ed ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x2029d832 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x22c0bb08 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x2388e3d0 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x241c2566 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x25eaa08d ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x2679fc35 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x288c6c11 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x2a3611f8 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x2d2d182e ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x2fd01f06 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x33a7ae45 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x33f7021c ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x352344a3 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x382af8bb ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x421e8da1 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x48b5e4fe ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0x4a33c351 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x4b740841 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0x4cc1064f ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x4dfa013d ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x5451ef9f ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x578cd474 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5873b1db ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x59d6cbc2 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x5ca10bea ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x60f4d220 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x676bf98d ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6b93ab6b ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x6bef8139 ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0x7152f6a0 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x729e8abc osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x72fc2e90 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x745212e1 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x74d4a10d ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0x783b8e2f __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x79e3d13d ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x7f03d5c2 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x86f2e077 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x8dd9f743 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x8eed0e13 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x8f3007d5 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x90575af2 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x95e1be56 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x9658bfd6 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x9705b8e6 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x98f426a4 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9a77d316 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x9af175a0 osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0x9ca1b151 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x9d536e96 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0x9f3e7454 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xa37267b2 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0xa900c3c7 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xb82a6b39 ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0xba36f9d5 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0xbd9c4ad0 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xc1e0c09a ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xc30eed00 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc5951a88 ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc79fa408 ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xcc00892c ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0xcc89d741 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd3b5f71f ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xd56c3912 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xd5a32ec4 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xdbaedb38 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xddc5fddb osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0xde5b6ea5 ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0xe2901b1b ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0xe88c43bc ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0xe965772c osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xee7eb0c4 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xf7ade311 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xff6001e9 ceph_con_init -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x7406df10 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x8e905bde dccp_syn_ack_timeout -EXPORT_SYMBOL net/ieee802154/ieee802154 0x626b4d9d wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x6418aef2 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x69588597 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x6c942b9c wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x752c127e wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x7de2ab4b wpan_phy_unregister -EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x10a9b3a5 gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0x8768a3c9 fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2c0619c5 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x320dcef0 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x854ed11b ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd18e0c7c ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe0af5ba4 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf702cc2b ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x28a70058 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xde8b8ce7 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf33fd1ca arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5959f9dc ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf8039f74 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfc2b0828 ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0xb7bf2bd8 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xb927c917 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x5ea3d46d udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3c6346c9 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x906b2455 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbcb6dd5e ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf53d4ea2 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x46c12b83 ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x61908484 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xee2835df ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x6d60b314 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xb33d39be xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1127581a xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x7a0d6dc1 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x143b7f96 ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x31b7c7cf ircomm_data_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5737d2e5 ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x98654cbe ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x9d27c502 ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xaac095d2 ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf89d8f3a ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xfc0d161c ircomm_connect_response -EXPORT_SYMBOL net/irda/irda 0x01e44e68 irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0x0341880a iriap_close -EXPORT_SYMBOL net/irda/irda 0x057a7f93 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x0963c24b irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0x09939c11 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0x0ead0b19 irda_notify_init -EXPORT_SYMBOL net/irda/irda 0x1e304bca irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object -EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x3797f4bd irttp_dup -EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x3bbfbccc alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46b00fdf irias_insert_object -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x4a8ebabf irttp_data_request -EXPORT_SYMBOL net/irda/irda 0x4c8925e2 iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0x574c7506 async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0x5788b351 irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x646c6057 irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0x68595812 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x70a3f20f hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x806957ef irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0x83445fc7 irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0x88ea94a5 irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x98a8b3b4 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert -EXPORT_SYMBOL net/irda/irda 0xa55812b0 irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbc270b99 async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xc893f405 irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0xc9f5de90 irlap_close -EXPORT_SYMBOL net/irda/irda 0xcb1f8aaa irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0xd3769d7f irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma -EXPORT_SYMBOL net/irda/irda 0xdc0196c2 hashbin_remove -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe1ba6308 irias_new_object -EXPORT_SYMBOL net/irda/irda 0xe329462a hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0xe56f64e9 irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0xe868ee06 iriap_open -EXPORT_SYMBOL net/irda/irda 0xeb78333e hashbin_remove_this -EXPORT_SYMBOL net/irda/irda 0xec242b93 hashbin_new -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf0780a10 irlap_open -EXPORT_SYMBOL net/l2tp/l2tp_core 0x1205bd71 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x8e8dcf5d l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x06192a81 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x1607b51c lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x4b80e7ce lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xb5b6c77f lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xb8ea601f lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0xc432ce9e lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xd46ff052 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xdfe15854 lapb_data_received -EXPORT_SYMBOL net/llc/llc 0x05becb64 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x10af228e llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x20867a9f llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x2219b673 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x351b33b0 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0xcbbb0298 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xd9af3462 llc_mac_hdr_init -EXPORT_SYMBOL net/mac80211/mac80211 0x0294c35e __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x07637328 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x088d3417 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x0f6222c6 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x10fd30ce ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x1329449c ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x141b3a14 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x1ab1d821 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x1cc77cba ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x1dfc9fd0 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x1e1d08b1 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x1fe50a81 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x215822d6 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x22227e70 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x231c1acb ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x24a0c475 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x28866452 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x2a31aa40 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x2d729d79 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x301075fb ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x30a6a73f ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x3204c8c8 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x376edfb9 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x3bd50968 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x42e62682 ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x477623b7 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x48d1385b rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0x51114681 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x5cbe1442 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x5d38b11d ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x5d4661eb ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x5dad8c0c ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x614441a9 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x6171948c ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x646d45df ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x65b57b1f ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x66be7453 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x68a26692 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x7126ce58 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x714c3c9c wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x7a64825a ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x80295b22 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x815bd1a2 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x81e39c6d ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x8319eabc ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x83e4f8ac ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x83e97242 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x84f0a111 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x8a277930 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x8d7440fe ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x8d85b52c ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x912b290e ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x991742b8 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x9a023cd3 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xa2e0fb0a ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xa3c924b7 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xa5068599 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xaca080b6 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xad70ebe4 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xb4bbb806 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xb536dbf3 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xb99262c7 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xb9b5aeb1 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xbb5aec6f ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xbff00ea5 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xc320f7bc ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xc9c8e1b4 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xd4942995 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xd7274d11 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xd9c0f4c1 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xdc431aaf ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0xe74a6286 ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xe759d272 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0xe828dd3b ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xec5b2c30 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xf761221a ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xf8b68098 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xfa61f528 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xfb532f7a __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xfdf17bf2 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xfec1edd6 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xff6ed728 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac802154/mac802154 0x09459b30 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x0f99fb2a ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x14b63660 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xce2d116f ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xd203dd88 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xdf85283a ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0xeae040f7 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xf0a108df ieee802154_stop_queue -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x164616cd ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x349cffcb ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3f01b64d ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4f5a838c ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x61961d8d ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x693c03b2 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x763d25e7 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x80863e44 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8aa1f189 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb3f0f7dc register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe3593bda ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe4ab3bdc unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe969a9ac unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf379b1fd ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x5382b90b nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x5c0d544b __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x7d2abce1 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x09f0981a nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x0b009e74 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x43fef95a nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x82cb6516 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0x8664a0d3 nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0xd651e9fc __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/x_tables 0x080ef494 xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0x081e073c xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x0e2062bd xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x116b3181 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x4133645a xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x4e75d764 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x896f2be3 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xa81ca9b0 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xba6b505b xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xc754ebe5 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/nfc/hci/hci 0x078d0bd0 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x1a95d0f8 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x44d25dfc nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x5350f0d7 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x580a951d nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x587edad6 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x621a40fd nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x636c01a8 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x6fb26dbe nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x75f43a0b nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x89224e60 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x8b4a8c15 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x8ba88348 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x92b83d27 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0xb19aa0d8 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0xb872bb1d nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xcd442175 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xd0b947e6 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xd878a666 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xee97d409 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xf859d2d0 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x04adb427 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x0d245f55 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x0dfa6480 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x13825f04 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x19c304bb nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x2167c508 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x273b6e96 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x35603309 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x458b616a nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x49105ffc nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x4fb95114 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x52f5c883 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x58100a50 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x6305a688 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x75569711 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x77ce8ee7 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x7b0cfc33 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x7ee653f2 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0xb02c4a98 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbb60ff58 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xc8030329 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xd15b96fb nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xd73f0afd nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xddd7d333 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xeb0dcf98 nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0xf99a29d9 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xfbb84d7e nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xfec4a971 nci_core_reset -EXPORT_SYMBOL net/nfc/nfc 0x106a46a9 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x20927d5b nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x21e022a1 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x2ccb7177 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x3c4babe6 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x3e8d66ab nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x4822eacc nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x52d84092 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x55318473 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x5ad308e0 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x85cc2e1c nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x8d1e0f49 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x8e12c97c __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xa10efaee nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xa339131a nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xa3d00994 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xa53af0c2 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xaedfa115 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0xb0ff0133 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xb6bc0c8f nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xcb849a2f nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xd15d3873 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xd88a23b7 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xe5699177 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x6b3af542 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x7a182a05 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xae638e60 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xef053c89 nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x0c429e15 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x23b18c8d phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x44d6d0fb phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x5774e4dc pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x7d411637 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x94f65ba3 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x953256ec pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xd00adf1e phonet_stream_ops -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0e880526 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x13716bf0 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2fcc663a rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4f7f62b1 rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x615ade4d rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6e590523 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x910c8961 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa0cd8b7d rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc15bfb93 rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc2de9459 rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xdde0b8a5 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xdfdf1a04 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe18285f8 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfb50cf36 rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfea5ca39 rxrpc_kernel_end_call -EXPORT_SYMBOL net/sctp/sctp 0x6972cbe2 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xae8d964b gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xc0dc0e9d gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xc16e6206 gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x24a34623 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xa5bc81cd xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xba53416d xdr_restrict_buflen -EXPORT_SYMBOL net/wimax/wimax 0x17738608 wimax_reset -EXPORT_SYMBOL net/wimax/wimax 0x48710c79 wimax_rfkill -EXPORT_SYMBOL net/wireless/cfg80211 0x03190481 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x06dda434 ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x083ccb6d cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0b919390 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x0c34ab52 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x0ebeb0b5 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x14baea04 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x158a4bca cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x1797cbd7 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x1953e567 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x1ccdbc5c cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x1cfbb570 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x1d81bd51 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x22878868 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x22c934f6 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2471fd83 cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x27964156 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x27db6a6e regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x294e1aff cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x2a837709 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x2bbaff92 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x2d00c083 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x348db8bf ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x3778b404 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x3ad33856 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x3f9cfaef __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x403127b2 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x438a4690 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x44dbc378 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4c5f153e wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x5023b378 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x537ab65f cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0x5c9d7208 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6a021fdb cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x6df89bb6 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x75a167bf cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x77927aa7 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x86372658 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x873d225b cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x8993429d cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x8eb10da7 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x90e2bdde cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x91aa22f9 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x925aa57b wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x94401ad0 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x9eaaabe8 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xa628df9b cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0xabc28897 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xac273782 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xae52ad5e cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xb0416eec cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xb1e7d182 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xb337dd2b cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xb4792069 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xb5e2cdf7 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xbd8b555d cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xbeb555ad cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0xc36bf6c9 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc6578c78 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xc8a311dd cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xc982a0ec cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xcbd00f0e cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xcc8df9f5 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xd075bae7 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xd35539ad wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0xd3b4751d cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0xd66bc33e cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xd6f187c0 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xddd1263c cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xdedae042 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xe2683bef cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xe2b8ec71 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xe8025a88 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xe9bb9e7d wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xebfad8e2 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xeeef2ce3 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf0f4cae1 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xf0fefce7 wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xf79e8e2d wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xf93dcb58 cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0xfab41e73 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/cfg80211 0xffbf384a cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/lib80211 0x19776bdd lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x2eb5559a lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x7a7d469d lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x8b25123f lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xc4a99545 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xed4d0053 lib80211_crypt_info_init -EXPORT_SYMBOL sound/ac97_bus 0x189ffb0a ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xea9f8df2 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x137149fa snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x54daa252 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x753e93fa snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7d7acb95 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xf8e9c196 snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x205395a0 snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x614705ff snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7746bb9b snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x79794472 snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x991c0f60 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xef8fa3d2 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf3f0324e snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf6fdda44 snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xc1b502d1 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x03206055 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x06039dd7 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x0b3b38c8 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x10126094 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x10df2d01 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x14c31f7f snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1cab942d snd_device_free -EXPORT_SYMBOL sound/core/snd 0x1e0c3b14 snd_cards -EXPORT_SYMBOL sound/core/snd 0x1eca11f8 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x23503498 snd_info_register -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x28402dce snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0x2f64c154 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3bf52031 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x3db2c386 snd_device_new -EXPORT_SYMBOL sound/core/snd 0x425c7ede snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x44af8cb5 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x46311375 snd_device_register -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x5407e947 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x63ef8338 snd_card_new -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x78c25e2a snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x7b37ef13 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x82ede7a6 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x898f3e3f snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x89da77db snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x8dc97d40 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x8f61d0df snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x94d6c4ba snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x96ce5dec snd_card_register -EXPORT_SYMBOL sound/core/snd 0x9b926a6e snd_card_free -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0xa3a7d60f snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0xa92c4a6c snd_register_device -EXPORT_SYMBOL sound/core/snd 0xabb633a0 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xb0c59446 snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb305bb1d snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0xb8f7410d snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0xc4158a07 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0xc9a843a9 _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0xc9d753ae snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xcada9dc4 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL sound/core/snd 0xdaf05844 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0xdb06b254 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xe8d59e44 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0xeb356840 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xf311d013 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0xf67ee28b snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xfb0db0d0 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd-hwdep 0xc0a4968e snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x02ac4fb0 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x05619c88 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x06543d5a _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x06ca9f77 snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x0804400e snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x08e2dba2 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x0939ea4f snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0x0b15db5c snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x0e3697dc snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x189ed927 snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x20424e2a snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0x2249f2ea snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x24c5afe8 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x2cd7aabe snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x36a971eb snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x37c88c06 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3b91f3af snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x4b02ac98 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x4d216534 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x58025373 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x6a329a8c snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x6e87af6a snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x73a57289 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x798ff021 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x806e75ca snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x85ad8200 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x8d727ce5 snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0x9197ae17 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x95507344 snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0x96c2ce64 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xa15944cd snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xb33da6c5 snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0xb373dbd9 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xb536c537 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xb80e4063 snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0xb817dcba snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xba6224fb snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0xbe3b8ccd snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xc06e202b snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0xc072b4a8 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0xc3f64980 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0xc91616c5 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0xcf5a3928 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xcf6c91a2 snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0xd6a048e1 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0xe47a5a50 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xecfc1371 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0xf3dc069d snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0xf9d68bad snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0xff49b8c1 snd_pcm_sgbuf_ops_page -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0641bbef snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0c32b75b snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1037c522 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1238d29d snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x13bba0a0 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1524474f snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x31d5222c snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3fb3a38b snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x486dc50a snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5a0f5fcb __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6e2c1f35 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x74b70b9d snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7f29b4fe snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x874c5534 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8932f265 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa97eafb3 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdad8c064 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe1afeca6 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf2642314 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-timer 0x26fc4501 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0x39ecf34c snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x43b18790 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0x584a88d3 snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x64e0f355 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x6bd2a5e1 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x8485dc69 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x8b6d42c8 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x8fd711d2 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x96b979a2 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x9c303e1a snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xbd4de7e2 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0xf649c471 snd_timer_notify -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x72404139 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0e899965 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x13abf301 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x14f01851 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x49b638f2 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4c559b94 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4d5b6855 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa618666b snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb504e0f4 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbf54db9c snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x37b8f5ec snd_opl4_read -EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x68657301 snd_opl4_create -EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x71abc220 snd_opl4_write -EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x8a20369b snd_opl4_write_memory -EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xc09856db snd_opl4_read_memory -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x381401a4 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4bb41429 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x57e443a0 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7d9091ad snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8ca9fdbe snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9bfcb8df snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9e2ae2e4 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9f85ec92 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfbcfdd3a snd_vx_suspend -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x00fdf05f avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x011a7c45 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x03ab94d2 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0c0b900f fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0f1f97ef cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x183eec76 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x19ab4604 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2dc40013 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f474515 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x343677f0 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x35f96ae6 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3b251609 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c5206c5 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x530ac3c1 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5acba57e snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x66985cf3 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7108693a avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x769914bd fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7a1e5cd1 amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98e9875a snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb4ea7da6 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbc923ccb amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcad11c01 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xceeb57bc fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd39d7cbe fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd8fe2ff7 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdbb9d22a fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe55965de amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf3c8d436 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf5c15a49 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf83e3e39 amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf8b79c04 amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x31dc7891 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xc2d6c706 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1dd61a91 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2ef1c932 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2f718c7e snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3fd0e36f snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5b05bcfc snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xac1abd25 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc43a38e4 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xee7764e6 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x32f7d1fb snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x53f14d6e snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x5f4090c8 snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x710db6df snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8641007d snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x87432c3d snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x1aecac77 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5d833828 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa6aa2948 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe00a47b0 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x238eb43d snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x8c55218c snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x10ba17a4 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x48aac4ff snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x79bb4993 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xcc671f0c snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xcdefebd1 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xcea41aa5 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-i2c 0x09c23ae0 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x24918b8d snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x2897aa40 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x3172f829 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x7f667336 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xe7aa56a8 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x6b420239 snd_tea6330t_update_mixer -EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x81f4b61d snd_tea6330t_detect -EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x31bc983f snd_es1688_create -EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x5f33ba01 snd_es1688_pcm -EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x8f982952 snd_es1688_mixer -EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xe86dc399 snd_es1688_reset -EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xf82c0594 snd_es1688_mixer_write -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x00d2e667 snd_gf1_rawmidi_new -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x0c7d9555 snd_gus_use_inc -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x182ba764 snd_gf1_free_voice -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1c1ce117 snd_gus_interrupt -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1f6b9e09 snd_gf1_i_write8 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x30cec7b7 snd_gus_dram_read -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x325bdf1a snd_gf1_write16 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x32858709 snd_gus_create -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x38d86d33 snd_gf1_mem_xfree -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x46db8d67 snd_gf1_lvol_to_gvol_raw -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x51e637d5 snd_gus_use_dec -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x684d4fe1 snd_gf1_stop_voice -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x6ede3639 snd_gf1_mem_alloc -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x814d2f89 snd_gf1_poke -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x8c912e54 snd_gf1_ctrl_stop -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x91d22637 snd_gf1_write8 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x95bc2f58 snd_gf1_look16 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x98f41458 snd_gf1_translate_freq -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x9ba26aa7 snd_gus_initialize -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x9edccb4a snd_gf1_delay -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa812d499 snd_gf1_new_mixer -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xb0f6e831 snd_gf1_dram_addr -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xb74aeea2 snd_gf1_mem_lock -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xb8115c47 snd_gf1_i_look8 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xbcd535fe snd_gf1_alloc_voice -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc0fae18d snd_gf1_write_addr -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc43a5527 snd_gf1_atten_table -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc75b3601 snd_gf1_look8 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xd99864c6 snd_gf1_pcm_new -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf74e46d6 snd_gf1_i_look16 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf7d30379 snd_gf1_peek -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf84f1bcb snd_gus_dram_write -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf9da1aca snd_gf1_mem_free -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x0e096be3 snd_msnd_init_queue -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x1155ae50 snd_msnd_disable_irq -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x1fbe7a7f snd_msndmix_new -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x23917964 snd_msnd_enable_irq -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x5d4d7f20 snd_msnd_upload_host -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x75026b24 snd_msndmidi_input_read -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x7afe7d99 snd_msnd_pcm -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x84cc6a62 snd_msnd_send_word -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x892c1da6 snd_msnd_send_dsp_cmd -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xb02492f9 snd_msnd_DAPQ -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xd5f46c1d snd_msnd_dsp_halt -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xf51143f4 snd_msndmix_setup -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xf65597a7 snd_msnd_DARQ -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xfedbab5b snd_msndmix_force_recsrc -EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0x06441522 snd_aci_get_aci -EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0xbf8b702a snd_aci_cmd -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0aca3774 snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3f563777 snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5e52cd1a snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x62b097e5 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x71216b01 snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x94f19ad6 snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa60c47c6 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc26bbfbb snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc8781904 snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe4ec1f50 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb16-csp 0xecf0dbbf snd_sb_csp_new -EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x3dcb0103 snd_sb16dsp_pcm -EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x6882ff69 snd_sb16dsp_get_pcm_ops -EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe0b3f690 snd_sb16dsp_interrupt -EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe73edc0f snd_sb16dsp_configure -EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x303b87fe snd_sb8dsp_midi -EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x58ba32fa snd_sb8dsp_pcm -EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x869b6be5 snd_sb8dsp_midi_interrupt -EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0xa781641b snd_sb8dsp_interrupt -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x176d196c snd_emu8000_load_reverb_fx -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x1f323584 snd_emu8000_dma_chan -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x28e71623 snd_emu8000_load_chorus_fx -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x83d07c76 snd_emu8000_update_chorus_mode -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xd359f8b7 snd_emu8000_poke -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xe1b77e8a snd_emu8000_peek -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xea8fb779 snd_emu8000_init_fm -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xec0a226f snd_emu8000_peek_dw -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xed8c8523 snd_emu8000_update_equalizer -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xf716d179 snd_emu8000_update_reverb_mode -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xff5a2ea4 snd_emu8000_poke_dw -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x31f8e876 snd_wss_pcm -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x324f261b snd_wss_mce_down -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x3da23b84 snd_wss_get_pcm_ops -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x413e44dc snd_wss_chip_id -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x4572b43f snd_wss_put_single -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x560fbb65 snd_wss_timer -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x6f6efe23 snd_wss_put_double -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x72fa62a0 snd_wss_overrange -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7386a29f snd_cs4236_ext_out -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7697af5b snd_wss_mce_up -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7b202637 snd_wss_interrupt -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x99366e50 snd_wss_info_single -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x9fe25938 snd_wss_out -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xbe8a34d0 snd_wss_create -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xcc1f7282 snd_wss_get_single -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xcfe67a13 snd_wss_mixer -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xe603389e snd_wss_get_double -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xea57e6ab snd_wss_info_double -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xef890ece snd_cs4236_ext_in -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xfb1b5425 snd_wss_in -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x24e2aabd snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x48df546d snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4a6d5c37 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5d04757a snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6880b673 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7038f150 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x78d73106 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7afee888 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9340d57d snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa92c59b5 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb60b2a3c snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb9175f62 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbfbb9a59 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd0d8d754 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xebc0b1e8 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf635cfac snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfa967371 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x9b257eb4 hpi_send_recv -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3b67a756 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x42819060 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x95a0b415 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa68a1060 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc0672459 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdd2996d3 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xec6aaab9 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf9012719 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xffc402ef snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x09663689 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x59f4129f snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc8537357 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0f53ddae oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x28d9079f oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x304b2c68 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x36498f7d oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4ff01d27 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x585bf972 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5bd8930d oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x68966643 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x69936474 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x751f67d0 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7dcf17d4 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x88c02d5f oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x989d968a oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9d026f35 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa4dfc1ab oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa99c643a oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb800c8b5 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc2723899 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcf7d2db5 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdcfc4b5a oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xeef33427 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x32526ca2 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4ebd48c1 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6cd2e50f snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x92ba7fda snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xacd10b7c snd_trident_write_voice_regs -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x685dbeee tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xae985f4b tlv320aic23_probe -EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0x7710dbbd sst_dma_new -EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xdc045797 sst_dma_free -EXPORT_SYMBOL sound/soc/snd-soc-core 0x9e6c0a0b snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/soundcore 0x05a4b176 register_sound_special -EXPORT_SYMBOL sound/soundcore 0x18e4d6f8 register_sound_midi -EXPORT_SYMBOL sound/soundcore 0x1e714013 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x53833e4b register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xcd9636e7 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xfcab1a43 sound_class -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x4fdfb573 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x85e458e2 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9ce4e998 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc55089b2 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe2bb829c snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xebfd3ba2 snd_emux_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x588635e7 snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x5fb0e2f8 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0x8b0e139a snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xa5ea526e __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0xa7aa3d10 __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xa8b0e503 snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xbaa576a4 snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xf85c967a __snd_util_memblk_new -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xe35fa1f5 snd_usbmidi_create -EXPORT_SYMBOL ubuntu/hio/hio 0x4aba1a81 ssd_get_version -EXPORT_SYMBOL ubuntu/hio/hio 0x5f859226 ssd_register_event_notifier -EXPORT_SYMBOL ubuntu/hio/hio 0x91b35591 ssd_get_label -EXPORT_SYMBOL ubuntu/hio/hio 0xaf1085a1 ssd_get_temperature -EXPORT_SYMBOL ubuntu/hio/hio 0xb39484bc ssd_set_wmode -EXPORT_SYMBOL ubuntu/hio/hio 0xb59a6816 ssd_unregister_event_notifier -EXPORT_SYMBOL ubuntu/hio/hio 0xbaca71cc ssd_reset -EXPORT_SYMBOL ubuntu/hio/hio 0xd4fdbb06 ssd_set_otprotect -EXPORT_SYMBOL ubuntu/hio/hio 0xe2766cb8 ssd_get_pciaddr -EXPORT_SYMBOL ubuntu/hio/hio 0xeb5a85b6 ssd_bm_status -EXPORT_SYMBOL ubuntu/hio/hio 0xf8c169f5 ssd_submit_pbio -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x002d778d VBoxGuest_RTMpNotificationDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0064d4f7 VBoxGuest_RTSemFastMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x00712528 VBoxGuest_RTAssertMsg2Weak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x01795170 VBoxGuest_RTMpGetCoreCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x03d8513f VBoxGuest_RTThreadSetName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x05626dc7 VBoxGuest_RTR0MemObjReserveKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0665bcaa VBoxGuest_RTAssertSetMayPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x06ab676b VBoxGuest_RTLogPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0823cb2f VBoxGuest_RTMemAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08b98b3c VBoxGuest_RTMpCpuIdFromSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08d7a261 VBoxGuest_RTThreadSelfName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x09458185 VBoxGuest_RTR0MemAreKrnlAndUsrDifferent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b14ec2c VBoxGuest_RTThreadCreateF -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b628628 VBoxGuest_RTSemEventMultiDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b94344b VBoxGuest_g_pszRTAssertExpr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0d1abebe VBoxGuest_RTLogFlush -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0dfb68c6 VBoxGuest_RTSemEventWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0e1a390f VBoxGuest_RTStrToInt8Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x104391d1 VBoxGuest_RTSemMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x113a02d9 VBoxGuest_RTMpOnPair -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x127e9d01 VBoxGuest_RTTimerRequestSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x143fba5b VBoxGuest_RTThreadPreemptDisable -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x14835127 VBoxGuest_RTAssertMsg2AddWeak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x16d72922 VBoxGuest_RTR0MemObjIsMapping -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x17d84704 VBoxGuest_RTSpinlockCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x187c16e2 VBoxGuest_RTLogCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x19087f6f VBoxGuest_RTSemEventMultiWaitEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1a79fedb VBoxGuest_RTSemMutexRequestNoResumeDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1abe7e93 VBoxGuest_RTThreadGetNative -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1ad481e4 VBoxGuest_RTLogLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1d042132 VBoxGuest_RTMemContFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1e7216d7 VBoxGuest_RTThreadFromNative -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1efa8169 VBoxGuest_RTThreadUserSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f152547 VBoxGuest_RTMpGetMaxCpuId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1fc40aab VBoxGuest_RTR0MemObjReserveUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x21b1ee43 VBoxGuest_RTThreadSleepNoLog -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x221205d1 VBoxGuest_RTThreadSetType -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2280771d VBoxGuestIDCCall -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x22bd51c7 VBoxGuest_RTErrConvertToErrno -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x23a552fd VBoxGuest_RTMpIsCpuOnline -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x246391eb VBoxGuest_RTStrToUInt16Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x25938e5f VBoxGuest_RTLogWriteDebugger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x267da4c4 VBoxGuest_RTThreadIsMain -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x27740cb3 VBoxGuest_RTStrToUInt8Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2902013c VBoxGuest_RTTimerGetSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29066860 VBoxGuest_RTStrConvertHexBytes -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2972116c VBoxGuest_RTThreadPreemptIsEnabled -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29bf3685 VBoxGuest_RTThreadGetName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2b015c38 VBoxGuest_RTMpOnAll -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2b5f52a8 VBoxGuest_RTMpCurSetIndexAndId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2bad2a8e VBoxGuest_RTStrToInt16 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2c5b3002 VBoxGuest_RTErrConvertFromErrno -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d27c026 VBoxGuest_RTSemEventWaitExDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2e136d3c VBoxGuest_RTR0MemObjAllocPhysExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x309de102 VBoxGuest_RTMpCpuId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3519743a VBoxGuest_RTMpCurSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3534ed69 VBoxGuest_RTMemAllocVarTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x353b64a3 VBoxGuest_RTSemMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x353e5a81 VBoxGuest_RTSemEventMultiReset -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x365d44f1 VBoxGuest_RTR0MemObjMapKernelExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x36e780e0 VBoxGuest_RTStrToUInt8Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x37b2d47a VBoxGuest_RTStrPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x39df70a0 VBoxGuest_RTStrPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a29bcdb VBoxGuest_RTThreadIsInitialized -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a77155a VBoxGuest_RTMpOnPairIsConcurrentExecSupported -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b0a3d87 VBoxGuest_RTMemAllocZVarTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3d00f113 VBoxGuest_g_u32RTAssertLine -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3ed3a918 VBoxGuest_RTAssertMsg1 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3f452f12 VBoxGuest_RTR0MemObjAllocPageTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3f8d56e7 VBoxGuest_RTMemDupTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4002b8b4 VBoxGuest_RTTimeSpecToString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x405901ff VBoxGuest_RTStrFormatTypeRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x428e3456 VBoxGuest_RTR0Term -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x428eb5ba VBoxGuest_RTMemTmpAllocZTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x42c5bff2 VBoxGuest_RTLogRelLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x432b6724 VBoxGuest_RTR0MemObjAllocPhysNCTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x433ceadb VBoxGuest_RTLogWriteStdOut -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4453e900 VBoxGuest_RTR0MemObjProtect -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4484f9ee VBoxGuest_RTTimerStart -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x44ce618e VBoxGuest_RTMemAllocExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x453e64fb VBoxGuest_RTSemEventMultiSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x45933412 VBoxGuest_RTStrToInt8Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4597652f VBoxGuest_RTStrFormat -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x45d332ae VBoxGuest_RTMemReallocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x46b36f60 VBoxGuest_RTTimeSpecFromString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4819f15e VBoxGuest_RTThreadWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x48487b79 VBoxGuest_RTLogDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4983ea42 VBoxGuest_RTAssertShouldPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4aca506e VBoxGuest_RTStrToUInt32Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4d0161ca VBoxGuest_RTLogBackdoorPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4d47859f VBoxGuest_RTR0MemKernelCopyTo -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4e6d6986 VBoxGuest_RTStrToUInt16 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4e7faa59 VBoxGuest_RTStrToInt64 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x503f488a VBoxGuest_RTLogRelSetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5045b702 VBoxGuest_RTLogGetDestinations -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5118e8ae VBoxGuest_RTStrToUInt64 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x52041f46 VBoxGuest_RTThreadPreemptIsPossible -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53602f45 VBoxGuest_RTMemTmpFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x539dd662 VBoxGuest_RTTimeSystemMilliTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53b772da VBoxGuest_RTAssertSetQuiet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x543527dc VBoxGuest_RTLogWriteStdErr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5460fc01 VBoxGuest_RTTimeImplode -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54abe5d4 VBoxGuest_RTSemMutexRequestNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54e45046 VBoxGuest_RTR0MemObjAllocLowTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x55c48692 VBoxGuest_RTMpIsCpuWorkPending -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x57280c42 VBoxGuest_RTR0MemExecDonate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x57406d20 VBoxGuest_RTR0ProcHandleSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5929b954 VBoxGuest_RTPowerSignalEvent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5936a317 VBoxGuest_RTR0MemObjAddress -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x59390acb VBoxGuest_RTTimeIsLeapYear -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ad3216a VBoxGuest_RTR0MemKernelIsValidAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5b0eaa4d VBoxGuest_RTThreadWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5c15981f VBoxGuest_RTMemContAlloc -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ca67994 VBoxGuest_RTLogDestinations -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x613042f7 VBoxGuest_RTR0MemObjMapUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x622a261f VBoxGuest_RTPowerNotificationRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x622bf330 VBoxGuest_RTMemAllocZTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x62fd45a8 VBoxGuest_RTTimeNanoTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63ba9fd2 VBoxGuest_RTLogGetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x64655cd4 VBoxGuest_RTSemEventMultiWaitExDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x64af2463 VBoxGuest_RTStrToInt32 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x650e77e8 VBoxGuest_RTMpGetCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x651c778b VBoxGuest_RTSemEventMultiCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6549a3e0 VBoxGuest_RTTimeFromString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x65b04e5d VBoxGuest_RTStrToUInt64Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x687ae6ac VBoxGuest_RTStrToUInt64Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6a930d21 VBoxGuest_RTTimerCanDoHighResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6bcedab4 VBoxGuest_RTThreadPreemptIsPending -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c17021e VBoxGuest_RTThreadUserReset -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c2df755 VBoxGuest_RTAssertMsg1Weak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6ca5b4ec VBoxGuest_RTSemEventMultiGetResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6f8ed216 VBoxGuest_RTStrToUInt16Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6fd2e761 VBoxGuest_RTTimeNormalize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x713f25d5 VBoxGuestIDCClose -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x715699a0 VBoxGuest_RTSpinlockDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x72d1c8f4 VBoxGuestIDCOpen -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x73a23c8b VBoxGuest_RTLogRelPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x73f65247 VBoxGuest_RTStrToInt32Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x744623d2 VBoxGuest_RTSemMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x753d3a3a VBoxGuest_RTLogFormatV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x755479c2 VBoxGuest_RTR0MemObjLockKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x75bee68e VBoxGuest_RTThreadIsSelfKnown -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76608be1 VBoxGuest_RTSemSpinMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x766a8684 VBoxGuest_RTThreadCreateV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76b885fb VBoxGuest_RTLogGetDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76bb35b9 VBoxGuest_RTLogLoggerEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76dbecb7 VBoxGuest_RTProcSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x77248ef3 VBoxGuest_RTR0MemObjLockUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7841b10d VBoxGuest_RTMpIsCpuPossible -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x78ad2401 VBoxGuest_RTStrToInt8 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x797e701f VBoxGuest_RTLogCreateEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x79aefc0b VBoxGuest_RTTimeNow -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7ac53b51 VBoxGuest_RTR0MemUserCopyFrom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7ae3b63b VBoxGuest_RTStrToUInt32 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7b423f4c VBoxGuest_RTLogGetFlags -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7cef940f VBoxGuest_RTStrToUInt8 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x80162938 VBoxGuest_RTStrFormatV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8229caac VBoxGuest_RTThreadUserWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x847577ac VBoxGuest_RTMpGetOnlineCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x84e86094 VBoxGuest_RTStrPrintfExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x854806f2 VBoxGuest_RTSpinlockAcquire -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8587f091 VBoxGuest_RTR0MemUserCopyTo -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x85afce7f VBoxGuest_RTMpNotificationRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x867199c4 VBoxGuest_RTMpPokeCpu -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x86f9f023 VBoxGuest_RTSemFastMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x87abe8dd VBoxGuest_RTR0MemObjSize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8ab21a95 VBoxGuest_RTSemSpinMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8b4fd3ef VBoxGuest_RTTimeSystemNanoTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8ff5c8e5 VBoxGuest_RTSemEventMultiWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x937cd6a2 VBoxGuest_RTLogComPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9474d99a VBoxGuest_RTSemFastMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x951fbe81 VBoxGuest_RTLogLoggerV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x953b2ba4 VBoxGuest_RTLogSetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x983f332c VBoxGuest_RTSemSpinMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9853901a VBoxGuest_RTAssertMsg2Add -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x98a8f55f VBoxGuest_RTMpGetPresentCoreCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9909ff3d VBoxGuest_g_pszRTAssertFunction -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x993cc778 VBoxGuest_RTLogRelSetBuffering -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x99ee476f VBoxGuest_RTThreadYield -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9b02b021 VBoxGuest_RTThreadSleep -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9be73ec4 VBoxGuest_RTMpCpuIdToSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9dc75797 VBoxGuest_RTLogBackdoorPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9e97ef59 VBoxGuest_RTSemEventWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9eb3db26 VBoxGuest_RTR0MemObjAllocPhysTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa21775d1 VBoxGuest_RTSemFastMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa2c23601 VBoxGuest_RTR0MemObjAllocContTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa3ff74bf VBoxGuest_RTStrToInt16Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa52847a2 VBoxGuest_RTR0MemUserIsValidAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5655a80 VBoxGuest_RTTimerReleaseSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa582aeba VBoxGuest_RTMemExecFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5f0f1ad VBoxGuest_RTAssertMsg2 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa61aa915 VBoxGuest_RTR0MemObjFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6209fc7 VBoxGuest_RTLogPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa74258ab VBoxGuest_RTTimeExplode -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa8a47d40 VBoxGuest_RTLogLoggerExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaaab8c57 VBoxGuest_RTLogRelGetDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaadc0b5d VBoxGuest_RTTimerChangeInterval -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xab5ee692 VBoxGuest_RTLogWriteUser -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xab871924 VBoxGuest_RTThreadPreemptIsPendingTrusty -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xacaac41d VBoxGuest_g_szRTAssertMsg1 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xadb5cc54 VBoxGuest_RTStrFormatTypeSetUser -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xae21ae1f VBoxGuest_RTThreadCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb2f248c6 VBoxGuest_RTStrCopyP -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb33ca348 VBoxGuest_RTLogRelPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb3f592b9 VBoxGuest_RTThreadNativeSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb4227efb VBoxGuest_RTTimeToString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb42ea0e3 VBoxGuest_g_pszRTAssertFile -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb5676d46 VBoxGuest_RTLogSetCustomPrefixCallback -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb5ec2977 VBoxGuest_RTStrToInt16Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb6fc848a VBoxGuest_RTStrToUInt32Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9a86152 VBoxGuest_RTStrFormatNumber -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9e03c35 VBoxGuest_RTTimerStop -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xba349142 VBoxGuest_RTR0MemObjEnterPhysTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaa97421 VBoxGuest_g_szRTAssertMsg2 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaf6967f VBoxGuest_RTR0MemObjGetPagePhysAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbba29a48 VBoxGuest_RTR0MemObjAddressR3 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbbbc6e84 VBoxGuest_RTSemMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbbccb0c7 VBoxGuest_RTTimeMilliTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc7fbd2a VBoxGuest_RTLogFlushRC -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbcd1b6de VBoxGuest_RTSemSpinMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbd0aa67d VBoxGuest_RTLogFlags -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbeed82c5 VBoxGuest_RTSemEventDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbf5b421e VBoxGuest_RTLogComPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc272f283 VBoxGuest_RTLogGroupSettings -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc2e0f25a VBoxGuest_RTMemTmpAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc312f533 VBoxGuest_RTMpIsCpuPresent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4b8857d VBoxGuest_RTThreadPreemptRestore -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4c265c6 VBoxGuest_RTMpGetPresentCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc5151dcf VBoxGuest_RTLogDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc56f27ff VBoxGuest_RTR0Init -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc57a9c9b VBoxGuest_RTStrToInt32Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc636859e VBoxGuest_RTThreadUserWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc6b243bf VBoxGuest_RTTimerDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc7601bb1 VBoxGuest_RTSemEventMultiWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc9978a5f VBoxGuest_RTAssertMsg2V -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcb6463c6 VBoxGuest_RTStrFormatTypeDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcdbc5e5d VBoxGuest_RTSemEventCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcdd40e5b VBoxGuest_RTMpOnOthers -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xceb98390 VBoxGuest_RTMpOnSpecific -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd032523c VBoxGuest_RTThreadGetType -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd1c8b171 VBoxGuest_RTStrCopyEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2ebb507 VBoxGuest_RTMpGetPresentSet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd38c5d55 VBoxGuest_RTLogCloneRC -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd4f35c7d VBoxGuest_RTSemSpinMutexTryRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd63c8527 VBoxGuest_RTMemFreeEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd76ab832 VBoxGuest_RTMemDupExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd8730925 VBoxGuest_RTLogRelLoggerV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdd31359f VBoxGuest_RTLogSetDefaultInstanceThread -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdd699fb2 VBoxGuest_RTSemMutexIsOwned -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xde296aea VBoxGuest_RTAssertAreQuiet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdead7a1c VBoxGuest_RTLogSetBuffering -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdfaa7e65 VBoxGuest_RTSemEventSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0453bfd VBoxGuest_RTTimerCreateEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0afcea8 VBoxGuest_RTR0AssertPanicSystem -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0ebf12c VBoxGuest_RTAssertMsg2WeakV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe16047ab VBoxGuest_RTLogDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe19acf09 VBoxGuest_RTStrCopy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe208c712 VBoxGuest_RTLogGetGroupSettings -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe2aa3ed6 VBoxGuest_RTR0MemKernelCopyFrom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe4104f8b VBoxGuest_RTLogFlushToLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe46f3670 VBoxGuest_RTLogRelGetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe47b5364 VBoxGuest_RTSemEventGetResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe5908cc3 VBoxGuest_RTStrToInt64Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe59fc65c VBoxGuest_RTLogWriteCom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe6a00917 VBoxGuest_RTThreadIsInInterrupt -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xebbe4bc3 VBoxGuest_RTThreadIsSelfAlive -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xecd69ee8 VBoxGuest_RTAssertMsg2AddWeakV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xed0424f7 VBoxGuest_RTMemFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xed92363f VBoxGuest_RTR0MemObjMapKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf244ec46 VBoxGuest_RTSemMutexRequestDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf2e6e2c5 VBoxGuest_RTStrPrintfEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf3cd37e7 VBoxGuest_RTSemEventWaitEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf450a3d4 VBoxGuest_RTLogCreateExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf722f7d1 VBoxGuest_RTMemExecAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf7c384ae VBoxGuest_RTStrToInt64Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf81b13f5 VBoxGuest_RTPowerNotificationDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfb5ca767 VBoxGuest_RTSpinlockRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfcfe8381 VBoxGuest_RTMpGetOnlineSet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe4fce41 VBoxGuest_RTAssertMayPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe5c0dc7 VBoxGuest_RTAssertMsg2AddV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfec59082 VBoxGuest_RTLogDumpPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfec8da5c VBoxGuest_RTMpOnAllIsConcurrentSafe -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xffc16d99 VBoxGuest_RTMpGetSet -EXPORT_SYMBOL vmlinux 0x000ae4b2 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x00158185 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x0027e791 clk_get -EXPORT_SYMBOL vmlinux 0x0028ea97 vme_bus_num -EXPORT_SYMBOL vmlinux 0x0060ab28 blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x0066651f gnttab_alloc_pages -EXPORT_SYMBOL vmlinux 0x00959abb redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x00993a85 tty_free_termios -EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc -EXPORT_SYMBOL vmlinux 0x00be5ba0 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x00bf01fb tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00ed5988 xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0x00f47090 vga_tryget -EXPORT_SYMBOL vmlinux 0x00f9193c tty_port_open -EXPORT_SYMBOL vmlinux 0x00faf22a pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x0118c5bc abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x0120390c tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x0139b504 cpu_current_top_of_stack -EXPORT_SYMBOL vmlinux 0x016ca75a phy_start -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x01783bee nd_device_unregister -EXPORT_SYMBOL vmlinux 0x017e53ff input_open_device -EXPORT_SYMBOL vmlinux 0x01984875 eth_header_cache -EXPORT_SYMBOL vmlinux 0x01b191a6 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0x01c07a36 get_mm_exe_file -EXPORT_SYMBOL vmlinux 0x01c51126 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x01cc471d get_gendisk -EXPORT_SYMBOL vmlinux 0x01d3f35c __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x01dcd194 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x01f65a0b pci_request_regions -EXPORT_SYMBOL vmlinux 0x020c027e nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x021041ad ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x021b39f8 bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x023c15a5 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027ec483 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x0280adfe misc_register -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02b937d6 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x02cef066 down_write -EXPORT_SYMBOL vmlinux 0x02e8c2d8 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02f9ec84 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x032ae0c0 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x03575c33 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x0378d4fd dcache_readdir -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x038b9ebe max8998_read_reg -EXPORT_SYMBOL vmlinux 0x038f7218 inet_add_offload -EXPORT_SYMBOL vmlinux 0x03ae2daa ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x03d308bd netif_carrier_off -EXPORT_SYMBOL vmlinux 0x03d9d1ce security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x03eab0a0 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04105971 submit_bio -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x045055f3 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x045b0ae0 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x045fd685 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x046e311c inet_frags_init -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x048de5e9 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x0497cbd1 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x049bd2bb generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x049c404d sock_wake_async -EXPORT_SYMBOL vmlinux 0x04a0f0e5 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x04c9b95d skb_queue_head -EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi -EXPORT_SYMBOL vmlinux 0x04d8e721 component_match_add -EXPORT_SYMBOL vmlinux 0x04e9fc8c jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04f05753 end_page_writeback -EXPORT_SYMBOL vmlinux 0x04fe4428 skb_insert -EXPORT_SYMBOL vmlinux 0x0500adf3 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x050182ab mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x05025a45 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x050ae5d8 add_disk -EXPORT_SYMBOL vmlinux 0x0514c6bb xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0537c1f0 from_kuid -EXPORT_SYMBOL vmlinux 0x054761b4 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0x054ca873 put_page -EXPORT_SYMBOL vmlinux 0x056b6e88 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x057596c1 pci_iomap -EXPORT_SYMBOL vmlinux 0x058bd217 intel_gmch_probe -EXPORT_SYMBOL vmlinux 0x05b5a6f9 update_devfreq -EXPORT_SYMBOL vmlinux 0x05cd1dd7 d_alloc_name -EXPORT_SYMBOL vmlinux 0x0600b149 bio_phys_segments -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x061d8642 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x0623300c tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x065d750d agp_create_memory -EXPORT_SYMBOL vmlinux 0x06619df1 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x06744b82 init_task -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x06887090 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache -EXPORT_SYMBOL vmlinux 0x069f6338 ipv4_specific -EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end -EXPORT_SYMBOL vmlinux 0x06d81228 agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0x06f700ce dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 -EXPORT_SYMBOL vmlinux 0x0729341a __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x07521d6a d_tmpfile -EXPORT_SYMBOL vmlinux 0x07592f45 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x07608604 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x07637101 igrab -EXPORT_SYMBOL vmlinux 0x078643b8 simple_link -EXPORT_SYMBOL vmlinux 0x078822e4 gen_pool_create -EXPORT_SYMBOL vmlinux 0x079ca1c4 set_pages_array_uc -EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07aa069b dev_alloc_name -EXPORT_SYMBOL vmlinux 0x07c76bc4 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07d50a24 csum_partial -EXPORT_SYMBOL vmlinux 0x07f8e605 register_netdevice -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083638a6 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x083ff4be xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x08434a1b param_ops_ullong -EXPORT_SYMBOL vmlinux 0x084abf4e ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x08565a15 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x085749a5 param_set_uint -EXPORT_SYMBOL vmlinux 0x08751079 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x08785c7d devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x087fc977 jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes -EXPORT_SYMBOL vmlinux 0x089b53bb skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0x08ab3771 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x08e4011c __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x0935c43a scsi_host_set_state -EXPORT_SYMBOL vmlinux 0x094b1b19 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x095db623 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x0969cb6c __module_get -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x0990551b sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x099319cb skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x09bfc377 inc_nlink -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09df3f3e pci_get_subsys -EXPORT_SYMBOL vmlinux 0x09e70225 register_shrinker -EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x09f1049d tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x09f8279c jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a298ad4 input_register_handle -EXPORT_SYMBOL vmlinux 0x0a2fe71a nvm_register_target -EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift -EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell -EXPORT_SYMBOL vmlinux 0x0a5d204a soft_cursor -EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a77eb73 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x0a8c3f01 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x0aa0ea25 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0acc181c tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0b0043ff __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x0b0bf305 find_lock_entry -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b10ece8 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x0b164e33 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b2a6797 mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0x0b3e4206 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b81823a sk_stream_error -EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x0b97b13b dma_ops -EXPORT_SYMBOL vmlinux 0x0b99d173 __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bbea9fa skb_copy -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bd244b2 input_event -EXPORT_SYMBOL vmlinux 0x0be38941 netdev_alert -EXPORT_SYMBOL vmlinux 0x0bee2e42 alloc_fddidev -EXPORT_SYMBOL vmlinux 0x0c066fc8 dev_set_group -EXPORT_SYMBOL vmlinux 0x0c29bd34 dev_change_flags -EXPORT_SYMBOL vmlinux 0x0c3a2895 sk_free -EXPORT_SYMBOL vmlinux 0x0c41d2a7 vga_switcheroo_client_fb_set -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c5e5e84 fb_show_logo -EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x0c776947 bio_put -EXPORT_SYMBOL vmlinux 0x0c97ed26 dump_align -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region -EXPORT_SYMBOL vmlinux 0x0ca907a3 __break_lease -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cbb33b3 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x0ccf35d7 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin -EXPORT_SYMBOL vmlinux 0x0ce03df5 tty_register_device -EXPORT_SYMBOL vmlinux 0x0cfca45f netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x0d041a98 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0x0d1085c6 no_llseek -EXPORT_SYMBOL vmlinux 0x0d151aad i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type -EXPORT_SYMBOL vmlinux 0x0d4311a2 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d688664 skb_push -EXPORT_SYMBOL vmlinux 0x0d798f98 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x0d86937e generic_writepages -EXPORT_SYMBOL vmlinux 0x0d897d97 nf_unregister_hook -EXPORT_SYMBOL vmlinux 0x0d8e2052 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0dab60ef scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x0db18d77 phy_start_interrupts -EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dcfa1e1 bdget -EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x0dfcfb78 tcp_req_err -EXPORT_SYMBOL vmlinux 0x0dfe3dc7 agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x0e155eb0 devm_memremap -EXPORT_SYMBOL vmlinux 0x0e24667a update_region -EXPORT_SYMBOL vmlinux 0x0e2da6db path_nosuid -EXPORT_SYMBOL vmlinux 0x0e4035eb vfs_write -EXPORT_SYMBOL vmlinux 0x0e444bf5 do_SAK -EXPORT_SYMBOL vmlinux 0x0e647a7d kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0x0e693799 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e7917d2 param_get_long -EXPORT_SYMBOL vmlinux 0x0e8795e2 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x0e99a6ff lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x0ea0aa8a sock_no_connect -EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0eb91af1 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x0ec568e7 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f195c1c jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x0f19efe6 ppp_register_channel -EXPORT_SYMBOL vmlinux 0x0f203e82 unregister_filesystem -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f4f14ef inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x0f527b7d tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0fa34ed5 check_disk_size_change -EXPORT_SYMBOL vmlinux 0x0fa55e29 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fbee100 xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0x0fcdecda devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event -EXPORT_SYMBOL vmlinux 0x0fd23a75 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x0fdf8510 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress -EXPORT_SYMBOL vmlinux 0x100ab205 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x10256972 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x102c56de irq_regs -EXPORT_SYMBOL vmlinux 0x102ffb1d skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x103823ea param_set_charp -EXPORT_SYMBOL vmlinux 0x1046854f sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x10471046 pci_biosrom_size -EXPORT_SYMBOL vmlinux 0x106ee26b dev_uc_sync -EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x1075961f __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x108fcb15 rwsem_wake -EXPORT_SYMBOL vmlinux 0x10c18066 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x10d8f65a elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0x10e9b6e9 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10f1752c blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0x10fd21f4 seq_path -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x112886db copy_from_iter -EXPORT_SYMBOL vmlinux 0x115869b1 get_user_pages -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1192c648 __put_cred -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11ac0e5b key_payload_reserve -EXPORT_SYMBOL vmlinux 0x11b7a105 dquot_commit -EXPORT_SYMBOL vmlinux 0x11be890e file_ns_capable -EXPORT_SYMBOL vmlinux 0x11bfa57d gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x11dd01ad intel_scu_ipc_command -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x1210768c insert_inode_locked -EXPORT_SYMBOL vmlinux 0x121b4e4b memremap -EXPORT_SYMBOL vmlinux 0x121bd8a6 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x121ecf4a max8925_reg_write -EXPORT_SYMBOL vmlinux 0x12211c5e prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x1226ddda tcp_connect -EXPORT_SYMBOL vmlinux 0x1228004d mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x1269f46f qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x12a1dfa3 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12cd0551 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x12cebe34 bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc -EXPORT_SYMBOL vmlinux 0x12dbfc0c netif_carrier_on -EXPORT_SYMBOL vmlinux 0x12e4bfb8 d_invalidate -EXPORT_SYMBOL vmlinux 0x12f37370 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x130a04cf skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x1323e134 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x132990d7 generic_listxattr -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc -EXPORT_SYMBOL vmlinux 0x1338cda9 napi_consume_skb -EXPORT_SYMBOL vmlinux 0x13445b9d setup_arg_pages -EXPORT_SYMBOL vmlinux 0x1344f9a7 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x1352693a dev_load -EXPORT_SYMBOL vmlinux 0x1364715a dm_put_device -EXPORT_SYMBOL vmlinux 0x1371ef71 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x137b925b tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x13a4d4c0 unload_nls -EXPORT_SYMBOL vmlinux 0x13adcc1b scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x13b30b22 swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13e5d629 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x13e88441 pci_get_device -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x13f9de34 cpu_info -EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x1436748d tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x1448b2dc inet_ioctl -EXPORT_SYMBOL vmlinux 0x144f8813 cdev_add -EXPORT_SYMBOL vmlinux 0x1463ae9c migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x14bb5256 finish_open -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x150389d6 acpi_processor_power_init_bm_check -EXPORT_SYMBOL vmlinux 0x1512ee5b abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x153beb3f vfs_rmdir -EXPORT_SYMBOL vmlinux 0x153ca61f i2c_verify_client -EXPORT_SYMBOL vmlinux 0x153ce778 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock -EXPORT_SYMBOL vmlinux 0x156c459b mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15fc04ce generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled -EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0x16170c59 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x1624650f phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null -EXPORT_SYMBOL vmlinux 0x167a424b tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 -EXPORT_SYMBOL vmlinux 0x16809afc param_ops_int -EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete -EXPORT_SYMBOL vmlinux 0x16a7e353 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x16dba6ba sg_miter_next -EXPORT_SYMBOL vmlinux 0x16dc4d1f fence_init -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x17209224 input_register_handler -EXPORT_SYMBOL vmlinux 0x173d580d xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x176e3476 bio_chain -EXPORT_SYMBOL vmlinux 0x17747e4b vga_get -EXPORT_SYMBOL vmlinux 0x178580fb posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x1788310c unregister_shrinker -EXPORT_SYMBOL vmlinux 0x178e0e75 pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock -EXPORT_SYMBOL vmlinux 0x179c10da freeze_bdev -EXPORT_SYMBOL vmlinux 0x17afe36c bdi_init -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17b3dc58 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x17cf79dd pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x17ed00fb __quota_error -EXPORT_SYMBOL vmlinux 0x17edd1bd backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x17f00524 devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x18066700 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x182762a4 pci_restore_state -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x189aa79d iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x18aef277 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x18d86af7 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x18d96501 atomic64_dec_if_positive_cx8 -EXPORT_SYMBOL vmlinux 0x18d9a0d2 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18ea99d8 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x18efa7e5 get_agp_version -EXPORT_SYMBOL vmlinux 0x18f9af38 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x18fab0b0 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x1903d2b3 copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x19048d58 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x19085ed0 input_free_device -EXPORT_SYMBOL vmlinux 0x190bdb26 blkdev_fsync -EXPORT_SYMBOL vmlinux 0x190dfa69 __mutex_init -EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x193147b5 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x1931bd6e netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x193d1ab2 textsearch_register -EXPORT_SYMBOL vmlinux 0x193ef1fd bio_reset -EXPORT_SYMBOL vmlinux 0x196642bb new_inode -EXPORT_SYMBOL vmlinux 0x196b55b6 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0x196feed0 tcp_check_req -EXPORT_SYMBOL vmlinux 0x199235a0 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19b150d2 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19e40eb9 bdi_destroy -EXPORT_SYMBOL vmlinux 0x19f5e57b locks_init_lock -EXPORT_SYMBOL vmlinux 0x1a161c38 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x1a247763 ping_prot -EXPORT_SYMBOL vmlinux 0x1a2d6041 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x1a3c277a dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x1a45890f set_binfmt -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a548b1a iterate_supers_type -EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch -EXPORT_SYMBOL vmlinux 0x1a75a39e pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x1a8fd007 submit_bh -EXPORT_SYMBOL vmlinux 0x1a9befc7 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x1aa986bd scsi_host_put -EXPORT_SYMBOL vmlinux 0x1aadc43d vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x1ac066a8 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x1afaa6df __lock_page -EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b063ccc agp_collect_device_status -EXPORT_SYMBOL vmlinux 0x1b08ae05 i8042_install_filter -EXPORT_SYMBOL vmlinux 0x1b16cf76 bdput -EXPORT_SYMBOL vmlinux 0x1b1833e1 inet_sendpage -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b25ad05 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x1b384767 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x1b484fad nobh_write_begin -EXPORT_SYMBOL vmlinux 0x1b505662 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x1b560274 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1b965309 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bbe728b nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0x1bbf9a9a __dquot_transfer -EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock -EXPORT_SYMBOL vmlinux 0x1bf94102 devm_release_resource -EXPORT_SYMBOL vmlinux 0x1c0965a3 elevator_init -EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states -EXPORT_SYMBOL vmlinux 0x1c11a7dd inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x1c13bfac mb_cache_shrink -EXPORT_SYMBOL vmlinux 0x1c4d5497 padata_do_serial -EXPORT_SYMBOL vmlinux 0x1c787f0c devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x1c82049e key_invalidate -EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset -EXPORT_SYMBOL vmlinux 0x1cdf4b3b __getblk_gfp -EXPORT_SYMBOL vmlinux 0x1cef3076 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0x1cf1bcb1 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x1cf4790d kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x1d0133ff complete_request_key -EXPORT_SYMBOL vmlinux 0x1d1ac069 nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0x1d6201b5 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x1d6a1c5c dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x1d9f4d25 agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0x1da34857 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x1db98008 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x1dbbcc5e keyring_clear -EXPORT_SYMBOL vmlinux 0x1dc0f995 __elv_add_request -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dc8df78 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x1dce3ced mem_map -EXPORT_SYMBOL vmlinux 0x1dcfeb80 sock_no_getname -EXPORT_SYMBOL vmlinux 0x1dd10200 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0x1debf83a passthru_features_check -EXPORT_SYMBOL vmlinux 0x1dfce184 mpage_readpage -EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe -EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt -EXPORT_SYMBOL vmlinux 0x1e04b897 genlmsg_put -EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc -EXPORT_SYMBOL vmlinux 0x1e158f9b vme_irq_handler -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e2d4086 dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x1e4d7c75 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x1e5654ab blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x1e618d4d ip_do_fragment -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e8246ed tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x1e9c2a4e dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x1ebf4b13 vfs_getattr -EXPORT_SYMBOL vmlinux 0x1ec1cb7f __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x1eca4944 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x1edca132 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x1eebf1a9 textsearch_destroy -EXPORT_SYMBOL vmlinux 0x1f10bf2a msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x1f314040 nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x1f3482f5 scsi_execute -EXPORT_SYMBOL vmlinux 0x1f39ead2 tc_classify -EXPORT_SYMBOL vmlinux 0x1f51105a shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x1f62afb3 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x1f6c01f6 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x1f7a5eac twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x1f904a7c proc_set_size -EXPORT_SYMBOL vmlinux 0x1f9303ec genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x1fa9d00c reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0x1fb70ae0 blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fbddf9e bio_map_kern -EXPORT_SYMBOL vmlinux 0x1fd07a34 generic_setxattr -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x20092385 acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201b0ac0 lg_global_unlock -EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x202ca12a init_special_inode -EXPORT_SYMBOL vmlinux 0x202f4e92 acpi_extract_package -EXPORT_SYMBOL vmlinux 0x2033ae6d pci_dev_put -EXPORT_SYMBOL vmlinux 0x203ac1e6 udp_ioctl -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x2052bf5a udp_proc_register -EXPORT_SYMBOL vmlinux 0x2055a46f dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x2071f896 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x207f8348 tty_kref_put -EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table -EXPORT_SYMBOL vmlinux 0x20907c7a xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x2095ee2c nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x20b6e1c2 md_register_thread -EXPORT_SYMBOL vmlinux 0x20b8bb24 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x20c2e51d __register_chrdev -EXPORT_SYMBOL vmlinux 0x20c50a1c file_path -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20c6192f intel_scu_ipc_ioread32 -EXPORT_SYMBOL vmlinux 0x20d3396d ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x20e32fa4 nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x2109218e abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0x211dea23 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x2123c3b7 mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x212aebe0 nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0x212d78ad sockfd_lookup -EXPORT_SYMBOL vmlinux 0x214a5fea sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x214a9aa0 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x2166ee67 tty_write_room -EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve -EXPORT_SYMBOL vmlinux 0x2169bc9e vme_slot_num -EXPORT_SYMBOL vmlinux 0x218e04a0 make_kgid -EXPORT_SYMBOL vmlinux 0x21a701fe fence_signal -EXPORT_SYMBOL vmlinux 0x21c1faf9 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x21d947e9 scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21e81009 km_policy_notify -EXPORT_SYMBOL vmlinux 0x21e8dfd3 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get -EXPORT_SYMBOL vmlinux 0x21f4eafa input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x221bacb3 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x2227a9cc ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x222b141e dma_pool_create -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve -EXPORT_SYMBOL vmlinux 0x2252030a dquot_get_state -EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem -EXPORT_SYMBOL vmlinux 0x225cba99 tty_port_hangup -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x22906ec1 noop_qdisc -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22c24eac __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x22eedd05 get_task_exe_file -EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x230534c1 sock_release -EXPORT_SYMBOL vmlinux 0x231a3482 mdiobus_read -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23b5af6c page_readlink -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23bd03fd scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x23d485dc scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x23d87360 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x23f15c4f nf_log_register -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x24171faf path_noexec -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2444857c inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0x24537bb7 cpu_tss -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x249304d7 __napi_schedule -EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x24b81545 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x24c10dce phy_find_first -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x25026d78 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x2504733e mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0x2511d4bc jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x253517b6 d_add_ci -EXPORT_SYMBOL vmlinux 0x256e4dc7 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2590a29e uart_suspend_port -EXPORT_SYMBOL vmlinux 0x25aaf846 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x25b250e4 acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x2603f6a3 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x2619685c dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x2627bd5f buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x262d1410 scsi_add_device -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x264d3e72 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x266e0318 swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0x2670fb6e tty_check_change -EXPORT_SYMBOL vmlinux 0x2672908f inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x26765052 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x267fbacd inode_init_once -EXPORT_SYMBOL vmlinux 0x268cc6a2 sys_close -EXPORT_SYMBOL vmlinux 0x269383b5 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26bcfa9c acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0x26cb082d is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create -EXPORT_SYMBOL vmlinux 0x26d0bdc1 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x26dcd999 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e3bc4a ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26eb03c4 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x26f87ba7 init_buffer -EXPORT_SYMBOL vmlinux 0x27023d04 fsync_bdev -EXPORT_SYMBOL vmlinux 0x270f02a6 is_nd_btt -EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x272069e0 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x272e4502 filp_close -EXPORT_SYMBOL vmlinux 0x2735c09e set_posix_acl -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x27553a53 to_nd_btt -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove -EXPORT_SYMBOL vmlinux 0x278d44da dev_mc_del -EXPORT_SYMBOL vmlinux 0x27999419 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x27a7472a truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27bc6100 __dax_fault -EXPORT_SYMBOL vmlinux 0x27e235be blk_execute_rq -EXPORT_SYMBOL vmlinux 0x27ecdf7b tso_count_descs -EXPORT_SYMBOL vmlinux 0x27ef04a7 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x27f7d60f clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x27fa6775 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x280d6cf7 phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x284c752a ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x2869d389 send_sig_info -EXPORT_SYMBOL vmlinux 0x287a6ff4 clear_wb_congested -EXPORT_SYMBOL vmlinux 0x288f91a8 import_iovec -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28b715a6 isapnp_cfg_end -EXPORT_SYMBOL vmlinux 0x28bcd774 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x28c55040 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x28e0902d kthread_bind -EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available -EXPORT_SYMBOL vmlinux 0x2929ae29 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x292c337c nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x29413b99 unlock_buffer -EXPORT_SYMBOL vmlinux 0x29413d12 block_truncate_page -EXPORT_SYMBOL vmlinux 0x29474e23 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x2960c69c x86_hyper_xen -EXPORT_SYMBOL vmlinux 0x296a94a7 tty_name -EXPORT_SYMBOL vmlinux 0x29985899 km_policy_expired -EXPORT_SYMBOL vmlinux 0x29b1519a cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x29b65a07 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0x29b75de6 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x29ecba14 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x29f213bd __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x29fa1eb6 __dst_free -EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0x2a02559b dentry_update_name_case -EXPORT_SYMBOL vmlinux 0x2a0307bf follow_down -EXPORT_SYMBOL vmlinux 0x2a0d74e6 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x2a12eb0c netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x2a146346 sock_no_poll -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2a3c35df default_llseek -EXPORT_SYMBOL vmlinux 0x2a4f2868 d_find_any_alias -EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x2a5def2f intel_scu_ipc_iowrite32 -EXPORT_SYMBOL vmlinux 0x2a7b4778 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x2a84a95a nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0x2a8ad21a kobject_set_name -EXPORT_SYMBOL vmlinux 0x2a9cb2a8 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2aa1ddae lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b0be3e3 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x2b0e8e32 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x2b1c5dd4 input_set_capability -EXPORT_SYMBOL vmlinux 0x2b1cb257 fddi_change_mtu -EXPORT_SYMBOL vmlinux 0x2b1fed9f submit_bio_wait -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b3620c9 release_pages -EXPORT_SYMBOL vmlinux 0x2b4616bb nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0x2b6a77d8 devm_gpio_free -EXPORT_SYMBOL vmlinux 0x2b777e1c inet_sendmsg -EXPORT_SYMBOL vmlinux 0x2b7ebcc7 serio_interrupt -EXPORT_SYMBOL vmlinux 0x2b9babc1 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2bb2003c mmc_remove_host -EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x2bd8e021 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x2c00fcc1 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x2c14a345 cdev_del -EXPORT_SYMBOL vmlinux 0x2c157041 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c31fa33 blk_rq_init -EXPORT_SYMBOL vmlinux 0x2c431f7f __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x2c4554e4 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x2c48a668 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x2c52b83c xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x2c80ce5e nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x2c8a8357 blk_end_request -EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x2cb39ff6 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x2cb8f57c debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x2cc40ecf fence_remove_callback -EXPORT_SYMBOL vmlinux 0x2cdc3453 phy_device_register -EXPORT_SYMBOL vmlinux 0x2cdd230b pcim_iomap -EXPORT_SYMBOL vmlinux 0x2ce90c6e input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x2cf1ee18 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x2d192a46 __blk_end_request -EXPORT_SYMBOL vmlinux 0x2d1e0cfe vga_switcheroo_fini_domain_pm_ops -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d37342e cpu_online_mask -EXPORT_SYMBOL vmlinux 0x2d486593 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0x2d4e6025 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x2d59ec2d sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x2d5eb760 dev_warn -EXPORT_SYMBOL vmlinux 0x2d772d65 block_read_full_page -EXPORT_SYMBOL vmlinux 0x2d8b4a58 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x2da04193 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0x2da0f50d phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x2dbf00cf dev_err -EXPORT_SYMBOL vmlinux 0x2dc8b600 find_vma -EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu -EXPORT_SYMBOL vmlinux 0x2dd67f93 free_page_put_link -EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink -EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception -EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write -EXPORT_SYMBOL vmlinux 0x2e16b890 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e2dc3aa __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0x2e401692 deactivate_super -EXPORT_SYMBOL vmlinux 0x2e642465 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x2e65c11a scsi_scan_host -EXPORT_SYMBOL vmlinux 0x2e80321a ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x2ecb9cc5 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x2ecc69da bdev_read_only -EXPORT_SYMBOL vmlinux 0x2ece5f46 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x2ecf70f7 put_cmsg -EXPORT_SYMBOL vmlinux 0x2ed54ae8 get_task_io_context -EXPORT_SYMBOL vmlinux 0x2ed6596c from_kgid -EXPORT_SYMBOL vmlinux 0x2ed83364 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x2ee1c7a4 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x2ee31eaf xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x2eea79e0 tty_mutex -EXPORT_SYMBOL vmlinux 0x2eeccc3d agp_free_memory -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2efabe09 noop_fsync -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f0b732c try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x2f0ca2a7 netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0x2f37a00e tty_port_close -EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f3b5397 dev_activate -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f6c5d7c blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x2f750670 __frontswap_test -EXPORT_SYMBOL vmlinux 0x2f779035 posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0x2f8fa1e4 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x2fa723b7 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x2fa754a2 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fefafb6 devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0x2ff13a33 phy_driver_register -EXPORT_SYMBOL vmlinux 0x2ff9d464 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x2ffd8cef dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command -EXPORT_SYMBOL vmlinux 0x302e2d93 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x3030def8 udp_proc_unregister -EXPORT_SYMBOL vmlinux 0x304d6ce3 amd_northbridges -EXPORT_SYMBOL vmlinux 0x3053d2d6 netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x305e4881 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x306396df __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x30780e93 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x30893b2f xfrm_lookup -EXPORT_SYMBOL vmlinux 0x30948ae8 bio_init -EXPORT_SYMBOL vmlinux 0x3094c9ff __sb_end_write -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30b04526 ida_init -EXPORT_SYMBOL vmlinux 0x30c3d516 lockref_put_return -EXPORT_SYMBOL vmlinux 0x30cba09e free_task -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30eed691 unregister_key_type -EXPORT_SYMBOL vmlinux 0x30f688a7 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x310108ec sget_userns -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310917fe sort -EXPORT_SYMBOL vmlinux 0x3121d1e0 vm_map_ram -EXPORT_SYMBOL vmlinux 0x312d1bfc pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x3133a979 param_get_int -EXPORT_SYMBOL vmlinux 0x313680e0 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x31493c4e blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x315ac8d0 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x316d9790 udp_poll -EXPORT_SYMBOL vmlinux 0x3173d5a2 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x3189cf89 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc -EXPORT_SYMBOL vmlinux 0x31948548 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x319647b3 blkdev_put -EXPORT_SYMBOL vmlinux 0x319d6238 kill_fasync -EXPORT_SYMBOL vmlinux 0x31d6e8e8 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz -EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx -EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs -EXPORT_SYMBOL vmlinux 0x3205b7be netif_receive_skb -EXPORT_SYMBOL vmlinux 0x321e76cb __nlmsg_put -EXPORT_SYMBOL vmlinux 0x323b73a7 set_trace_device -EXPORT_SYMBOL vmlinux 0x323e476b cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x32582b8e rt6_lookup -EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom -EXPORT_SYMBOL vmlinux 0x3268aabf seq_release_private -EXPORT_SYMBOL vmlinux 0x32697aa8 page_cache_next_hole -EXPORT_SYMBOL vmlinux 0x3270ed94 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x328a0027 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x32901b1c pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x3294d11e udp_add_offload -EXPORT_SYMBOL vmlinux 0x3295c553 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x329eab56 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x32b5fa2f mem_section -EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x33054181 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0x3313990f input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x3338d627 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x333d745c I_BDEV -EXPORT_SYMBOL vmlinux 0x334014f4 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x33423b82 vm_insert_page -EXPORT_SYMBOL vmlinux 0x33740a4a clk_add_alias -EXPORT_SYMBOL vmlinux 0x33969c30 kern_path -EXPORT_SYMBOL vmlinux 0x339f442f mount_ns -EXPORT_SYMBOL vmlinux 0x33a7029f ppp_input_error -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x33ec0717 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x340f6255 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x34223881 make_kuid -EXPORT_SYMBOL vmlinux 0x342f60fe apm_info -EXPORT_SYMBOL vmlinux 0x3436f104 param_set_short -EXPORT_SYMBOL vmlinux 0x344f84cb pnp_is_active -EXPORT_SYMBOL vmlinux 0x3457cbe0 lro_flush_all -EXPORT_SYMBOL vmlinux 0x345e1fe3 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x34681877 dev_uc_add -EXPORT_SYMBOL vmlinux 0x346cf0ee register_console -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x347dc19e current_in_userns -EXPORT_SYMBOL vmlinux 0x3492de32 swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34b6095a param_set_long -EXPORT_SYMBOL vmlinux 0x34be5d42 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x34c2a699 dentry_open -EXPORT_SYMBOL vmlinux 0x34c52cce pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x34d900c8 follow_down_one -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x35118245 dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x352bd945 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x35580e3c mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x357196ab acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0x357575e0 find_get_pages_tag -EXPORT_SYMBOL vmlinux 0x358da634 swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0x35984ca2 dev_crit -EXPORT_SYMBOL vmlinux 0x35a80d9d xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35f37edd pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x35f3a87c jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x35fd3b8a kill_anon_super -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x3617fc54 tcf_register_action -EXPORT_SYMBOL vmlinux 0x36195ced locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x362bb1d5 led_set_brightness -EXPORT_SYMBOL vmlinux 0x363a8164 seq_read -EXPORT_SYMBOL vmlinux 0x3640a28f nf_ct_attach -EXPORT_SYMBOL vmlinux 0x364f4321 __invalidate_device -EXPORT_SYMBOL vmlinux 0x365ebc9f sock_get_timestampns -EXPORT_SYMBOL vmlinux 0x3664e66f set_anon_super -EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x369821ef __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x369ba8c1 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36c6af51 intel_scu_ipc_iowrite8 -EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x370f6983 netlink_set_err -EXPORT_SYMBOL vmlinux 0x370f9850 efi -EXPORT_SYMBOL vmlinux 0x37107495 iunique -EXPORT_SYMBOL vmlinux 0x373d3218 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x37431aac xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x3754d714 sync_inode -EXPORT_SYMBOL vmlinux 0x3768fd4c sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x3789191e genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x37945a6b seq_printf -EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c871e9 bio_add_page -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37de53c7 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 -EXPORT_SYMBOL vmlinux 0x37e9cc09 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x37fc6f16 d_path -EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x3815e403 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x384ea192 register_cdrom -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x388799f6 unregister_kmmio_probe -EXPORT_SYMBOL vmlinux 0x388f0813 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38ce46c4 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x38e31626 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x38f08fae udp_del_offload -EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages -EXPORT_SYMBOL vmlinux 0x3909b25b clkdev_alloc -EXPORT_SYMBOL vmlinux 0x390dd406 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x39476d1e icmpv6_send -EXPORT_SYMBOL vmlinux 0x39567a42 devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0x3967b3bd blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x39699d62 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x39703af8 mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39c49643 dev_get_stats -EXPORT_SYMBOL vmlinux 0x39d8ffa2 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x39d9e237 kill_litter_super -EXPORT_SYMBOL vmlinux 0x39da5fa2 sock_i_ino -EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above -EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify -EXPORT_SYMBOL vmlinux 0x3a13386f generic_write_checks -EXPORT_SYMBOL vmlinux 0x3a13e533 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush -EXPORT_SYMBOL vmlinux 0x3a382843 pci_get_slot -EXPORT_SYMBOL vmlinux 0x3a6812ee security_task_getsecid -EXPORT_SYMBOL vmlinux 0x3a6b4179 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x3a7f6ac3 mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x3a9786eb iov_iter_init -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3aa444ff tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0x3aa99369 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x3aac95a6 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0x3ab85fcb netif_napi_del -EXPORT_SYMBOL vmlinux 0x3aba2f7c __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x3ad0160c blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x3b201620 machine_real_restart -EXPORT_SYMBOL vmlinux 0x3b46bb13 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x3b480b81 cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6f6cd2 udp_table -EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait -EXPORT_SYMBOL vmlinux 0x3bc40c7d elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0x3bfc5c9f generic_delete_inode -EXPORT_SYMBOL vmlinux 0x3c031bac param_get_byte -EXPORT_SYMBOL vmlinux 0x3c053e31 inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0x3c088940 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x3c0f02ec mdiobus_scan -EXPORT_SYMBOL vmlinux 0x3c1c6b03 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x3c2e774c gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c5077e4 clk_register_clkdevs -EXPORT_SYMBOL vmlinux 0x3c63e308 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x3c709b3e sock_rfree -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3caec126 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x3cb367af acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x3cdb3a36 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce60f15 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x3cffa29a take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x3d1e7350 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x3d1fc0e6 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x3d44bcc8 current_fs_time -EXPORT_SYMBOL vmlinux 0x3d6bc870 fget_raw -EXPORT_SYMBOL vmlinux 0x3d6f6e53 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc -EXPORT_SYMBOL vmlinux 0x3d98c731 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start -EXPORT_SYMBOL vmlinux 0x3da19c2c neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x3da598a1 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x3da9a87b param_set_ulong -EXPORT_SYMBOL vmlinux 0x3daef6b4 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3ddd176b generic_write_end -EXPORT_SYMBOL vmlinux 0x3df73f7c fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x3dfad849 inet_put_port -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e0fbe00 scsi_device_get -EXPORT_SYMBOL vmlinux 0x3e23ef16 ip6_xmit -EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock -EXPORT_SYMBOL vmlinux 0x3e4e1a8d xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x3e5cde56 agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0x3e5d2bc6 mount_single -EXPORT_SYMBOL vmlinux 0x3e654f49 acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x3e6c488b agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0x3e70dac2 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x3e72238a set_bh_page -EXPORT_SYMBOL vmlinux 0x3e727e28 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x3e742fd9 tso_start -EXPORT_SYMBOL vmlinux 0x3e831956 tty_port_close_start -EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get -EXPORT_SYMBOL vmlinux 0x3e98c168 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x3ea9a87f generic_file_fsync -EXPORT_SYMBOL vmlinux 0x3eace283 sk_alloc -EXPORT_SYMBOL vmlinux 0x3ec40c8d __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x3edb1d26 dev_printk -EXPORT_SYMBOL vmlinux 0x3ef78d80 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x3eff5ac2 intel_scu_ipc_writev -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock -EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x3f36b50d xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x3f414760 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f503d46 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x3f6f1145 kfree_put_link -EXPORT_SYMBOL vmlinux 0x3f78745b fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x3f86cd64 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x3faa5c83 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x3fc62d3b i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x40054cfe pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x4019bd78 migrate_page -EXPORT_SYMBOL vmlinux 0x401d792f fput -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev -EXPORT_SYMBOL vmlinux 0x4052820a i8042_remove_filter -EXPORT_SYMBOL vmlinux 0x40579b9d vme_register_driver -EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x405a876f blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x40652d43 ps2_end_command -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size -EXPORT_SYMBOL vmlinux 0x40a34204 d_make_root -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40abfbf0 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x40bf6c0c locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put -EXPORT_SYMBOL vmlinux 0x40c500af vfs_link -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40f4f141 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x410511fc xen_biovec_phys_mergeable -EXPORT_SYMBOL vmlinux 0x410a46f5 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x41122c6d scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x41352bb4 __page_symlink -EXPORT_SYMBOL vmlinux 0x41374fea sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x41862ad4 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x41ba9336 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x41bbae58 save_mount_options -EXPORT_SYMBOL vmlinux 0x41dfbb4a twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x41f976a8 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x4229e62a blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x425c846b blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x426df0af dst_alloc -EXPORT_SYMBOL vmlinux 0x4290aa81 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x4292364c schedule -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache -EXPORT_SYMBOL vmlinux 0x42d21af3 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x42ee861c neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x42f70246 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x43018f04 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4305968c udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x43358639 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x43359ebf pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x435e520a __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x43604a87 __genl_register_family -EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43e3c6f5 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x43e3ea91 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x43e8293f xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x43ec52ee skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x440425be led_update_brightness -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x441f643b generic_file_mmap -EXPORT_SYMBOL vmlinux 0x441f677c poll_initwait -EXPORT_SYMBOL vmlinux 0x44265893 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x442c8b1e path_is_under -EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0x443d407d nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin -EXPORT_SYMBOL vmlinux 0x4450e424 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x4469dd25 __init_rwsem -EXPORT_SYMBOL vmlinux 0x44711dc5 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x448f1e64 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x449a505a mfd_add_devices -EXPORT_SYMBOL vmlinux 0x449fe84b acpi_set_firmware_waking_vectors -EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44e1d0d7 qdisc_list_del -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44f1f5e8 padata_alloc_possible -EXPORT_SYMBOL vmlinux 0x44f614f6 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x44ffcca9 make_kprojid -EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x4523cf1d input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x454d58dd elevator_alloc -EXPORT_SYMBOL vmlinux 0x45533f7e simple_nosetlease -EXPORT_SYMBOL vmlinux 0x45554619 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x456500de scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45938011 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x45a470ee pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45e21b11 security_path_chown -EXPORT_SYMBOL vmlinux 0x45ea3908 pci_bus_type -EXPORT_SYMBOL vmlinux 0x45fa76b5 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x4616263b agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0x462913cd devm_gpio_request -EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count -EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy -EXPORT_SYMBOL vmlinux 0x4631ce9f blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x46354da7 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x463b1503 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x463ebc6c read_cache_pages -EXPORT_SYMBOL vmlinux 0x464d4efa gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46605152 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x466abeba blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x46830f67 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x4691f37b try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x46b6e232 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x46c16d3c input_inject_event -EXPORT_SYMBOL vmlinux 0x46c91411 d_lookup -EXPORT_SYMBOL vmlinux 0x46f64e99 agp_unbind_memory -EXPORT_SYMBOL vmlinux 0x46fd21f6 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x4767aaf5 dev_addr_add -EXPORT_SYMBOL vmlinux 0x478b9f0d seq_dentry -EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x47a37d2a cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x47af7666 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x47e31e07 register_xen_selfballooning -EXPORT_SYMBOL vmlinux 0x47eca9c4 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x47fa59be ilookup -EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x4826dbe8 blk_start_queue -EXPORT_SYMBOL vmlinux 0x4834d61e cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x48830959 prepare_creds -EXPORT_SYMBOL vmlinux 0x48a63171 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x48af2400 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48c6dc6c netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x48ca0709 reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0x48debf0a pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x48f6d546 key_alloc -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x490c3bb6 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x494b79e5 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x49582b22 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x496437ea dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x498580e1 param_get_string -EXPORT_SYMBOL vmlinux 0x4994f5cb md_flush_request -EXPORT_SYMBOL vmlinux 0x499f46cc inet_select_addr -EXPORT_SYMBOL vmlinux 0x49a3630b unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49b68e23 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x49d353d1 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x49de2443 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x49e403b1 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x49f3080a dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a075df1 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x4a14448c netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x4a219df7 vfs_unlink -EXPORT_SYMBOL vmlinux 0x4a2a8185 netdev_printk -EXPORT_SYMBOL vmlinux 0x4a367a8e nvm_dev_factory -EXPORT_SYMBOL vmlinux 0x4a3b9be7 serio_bus -EXPORT_SYMBOL vmlinux 0x4a5a29bc isapnp_protocol -EXPORT_SYMBOL vmlinux 0x4a619f83 memcpy -EXPORT_SYMBOL vmlinux 0x4a87d801 set_pages_nx -EXPORT_SYMBOL vmlinux 0x4a89a751 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x4a99bd4d jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4ae9ed11 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b05b5bc iget_locked -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b10c43b uart_register_driver -EXPORT_SYMBOL vmlinux 0x4b16f49e inode_set_bytes -EXPORT_SYMBOL vmlinux 0x4b1c5f4d install_exec_creds -EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x4b2a1692 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x4b4f598c skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x4b516d17 netdev_features_change -EXPORT_SYMBOL vmlinux 0x4b5cbc0a __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b5ff30c __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat -EXPORT_SYMBOL vmlinux 0x4bb3435d module_refcount -EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x4be687a8 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x4be85a03 memweight -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c084c14 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x4c1d028e dump_emit -EXPORT_SYMBOL vmlinux 0x4c299dca set_wb_congested -EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c48bf57 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x4c564431 tcp_proc_register -EXPORT_SYMBOL vmlinux 0x4c6f4585 netdev_change_features -EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify -EXPORT_SYMBOL vmlinux 0x4cb72de9 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x4cd91047 pci_disable_msix -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4ce5c30f phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x4d0c3c45 __frontswap_store -EXPORT_SYMBOL vmlinux 0x4d0c7d13 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x4d0f4f6c pci_get_class -EXPORT_SYMBOL vmlinux 0x4d16c2c3 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x4d346881 posix_acl_valid -EXPORT_SYMBOL vmlinux 0x4d351d97 sg_miter_start -EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask -EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x4d5f6f26 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4dc2b200 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4e04cbe4 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x4e2fe33e simple_statfs -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e3a8bde key_unlink -EXPORT_SYMBOL vmlinux 0x4e508292 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x4e5b8b0f netpoll_setup -EXPORT_SYMBOL vmlinux 0x4e6021ef udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e925314 inet_stream_ops -EXPORT_SYMBOL vmlinux 0x4e996dbc kmalloc_caches -EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4eb2fe63 generic_readlink -EXPORT_SYMBOL vmlinux 0x4f0898bf ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f28da71 __register_binfmt -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query -EXPORT_SYMBOL vmlinux 0x4f62f71d phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user -EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read -EXPORT_SYMBOL vmlinux 0x4f850b71 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user -EXPORT_SYMBOL vmlinux 0x4f9a83fb iov_iter_npages -EXPORT_SYMBOL vmlinux 0x4f9e3373 ___pskb_trim -EXPORT_SYMBOL vmlinux 0x4f9f8bc4 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x503c4119 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method -EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x50d490ea request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del -EXPORT_SYMBOL vmlinux 0x50dd330c tcp_read_sock -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50e421e3 set_cached_acl -EXPORT_SYMBOL vmlinux 0x50e8bb73 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x50eedeb8 printk -EXPORT_SYMBOL vmlinux 0x5116972e inet6_getname -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x51282962 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x51363fc3 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x5142f3ac tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x51432199 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x516c0749 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock -EXPORT_SYMBOL vmlinux 0x517f01f4 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x5186518f profile_pc -EXPORT_SYMBOL vmlinux 0x5194d984 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x519a4912 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x51ac2c3a eisa_bus_type -EXPORT_SYMBOL vmlinux 0x51be1710 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x51c18fe6 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x51ce307e pci_find_capability -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51e61087 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x5229592e should_remove_suid -EXPORT_SYMBOL vmlinux 0x522ec914 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0x5277228f __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x52a3a5e0 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le -EXPORT_SYMBOL vmlinux 0x52b3728a inet_getname -EXPORT_SYMBOL vmlinux 0x52c15472 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x530b1e4c rdmsr_on_cpus -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid -EXPORT_SYMBOL vmlinux 0x532ef9ae get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x53460bf7 bmap -EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x53867179 param_get_charp -EXPORT_SYMBOL vmlinux 0x5395d1b6 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x539951dd xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x53c524a7 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0x53d9d180 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x541382d1 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x542891d9 rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register -EXPORT_SYMBOL vmlinux 0x54612bb9 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler -EXPORT_SYMBOL vmlinux 0x5467ed44 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x5475294d sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x5475e859 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x547b6341 simple_rmdir -EXPORT_SYMBOL vmlinux 0x5480502f elv_rb_find -EXPORT_SYMBOL vmlinux 0x54912a6a xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x54a86c7e from_kprojid -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54b317f1 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x54b759b0 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x54b9c96d open_exec -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54cec4d1 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x54e6c1bb dma_supported -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54edce96 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x54f24d1a fence_default_wait -EXPORT_SYMBOL vmlinux 0x54f35493 user_path_create -EXPORT_SYMBOL vmlinux 0x54f50474 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0x5507954b lock_fb_info -EXPORT_SYMBOL vmlinux 0x55181792 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551bedc7 fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x551f2b9f pci_match_id -EXPORT_SYMBOL vmlinux 0x5523e80d pci_pme_active -EXPORT_SYMBOL vmlinux 0x552e449c tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x55434a3c __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x558b0282 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x559202ee sget -EXPORT_SYMBOL vmlinux 0x55936acb zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x5594de0f bioset_integrity_free -EXPORT_SYMBOL vmlinux 0x559f0dff input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x559fce34 kobject_put -EXPORT_SYMBOL vmlinux 0x55b2836e tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55e52d6b con_is_bound -EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait -EXPORT_SYMBOL vmlinux 0x56113370 input_release_device -EXPORT_SYMBOL vmlinux 0x5612b1c8 inode_init_always -EXPORT_SYMBOL vmlinux 0x56207f3c vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x5639f208 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x566656a7 __nd_iostat_start -EXPORT_SYMBOL vmlinux 0x5676a3e5 intel_scu_ipc_ioread8 -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x569e0bec start_tty -EXPORT_SYMBOL vmlinux 0x569f604a nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56d43ee5 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x56e56ef9 module_layout -EXPORT_SYMBOL vmlinux 0x56f6d161 tcf_hash_create -EXPORT_SYMBOL vmlinux 0x5705088a __vmalloc -EXPORT_SYMBOL vmlinux 0x5707fde5 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x5712e364 sock_create_lite -EXPORT_SYMBOL vmlinux 0x57150f08 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x575150a8 mmc_request_done -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x576e9013 fasync_helper -EXPORT_SYMBOL vmlinux 0x57948e85 page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x57a49082 touch_buffer -EXPORT_SYMBOL vmlinux 0x57b9a392 sock_create_kern -EXPORT_SYMBOL vmlinux 0x57ba72ab fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x57bc07c0 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits -EXPORT_SYMBOL vmlinux 0x5819716e rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x583f74ba bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x584460c6 fb_blank -EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x584d2436 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x584f0053 poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0x5851c908 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x585dacb9 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem -EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x587ac970 ip6_frag_match -EXPORT_SYMBOL vmlinux 0x58907f29 kunmap_high -EXPORT_SYMBOL vmlinux 0x5893c38b udp_seq_open -EXPORT_SYMBOL vmlinux 0x589681d3 fb_class -EXPORT_SYMBOL vmlinux 0x58b398bf lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58b75281 elv_rb_del -EXPORT_SYMBOL vmlinux 0x58c0b1b0 nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0x58d5282c set_blocksize -EXPORT_SYMBOL vmlinux 0x58d5ac14 vga_client_register -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58e8cea1 security_path_link -EXPORT_SYMBOL vmlinux 0x58fef6f8 ist_info -EXPORT_SYMBOL vmlinux 0x59088982 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x591a3480 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x592bc1b7 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x5943be27 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x596e4174 free_netdev -EXPORT_SYMBOL vmlinux 0x596eb642 file_remove_privs -EXPORT_SYMBOL vmlinux 0x59710cb9 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x598128be seq_write -EXPORT_SYMBOL vmlinux 0x59899091 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59921032 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x59974bd6 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register -EXPORT_SYMBOL vmlinux 0x59c988bb mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x59e273e4 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x59f20c22 blk_get_request -EXPORT_SYMBOL vmlinux 0x59faabe2 blk_recount_segments -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a154ad1 open_check_o_direct -EXPORT_SYMBOL vmlinux 0x5a1b3f45 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x5a47e3c8 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 -EXPORT_SYMBOL vmlinux 0x5a62185a mmc_start_bkops -EXPORT_SYMBOL vmlinux 0x5a8284b3 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit -EXPORT_SYMBOL vmlinux 0x5aba180c skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x5aefa4c3 kdb_current_task -EXPORT_SYMBOL vmlinux 0x5afdf07e ip_ct_attach -EXPORT_SYMBOL vmlinux 0x5afebb94 simple_write_begin -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem -EXPORT_SYMBOL vmlinux 0x5b2eec9e filemap_fault -EXPORT_SYMBOL vmlinux 0x5b528a10 register_gifconf -EXPORT_SYMBOL vmlinux 0x5b581ac8 blk_end_request_all -EXPORT_SYMBOL vmlinux 0x5b716419 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x5b88a50e elv_add_request -EXPORT_SYMBOL vmlinux 0x5b95f661 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x5b9f1942 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x5ba01e08 dm_io -EXPORT_SYMBOL vmlinux 0x5ba6959b skb_find_text -EXPORT_SYMBOL vmlinux 0x5bbe9f7e vc_resize -EXPORT_SYMBOL vmlinux 0x5bc5ace2 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x5bc8d583 copy_from_user_overflow -EXPORT_SYMBOL vmlinux 0x5bcff91a pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x5bd32fd3 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x5bd69325 lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x5bf10e5e nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x5bf790c8 dev_trans_start -EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT -EXPORT_SYMBOL vmlinux 0x5c09fca5 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x5c1ab2b3 param_ops_short -EXPORT_SYMBOL vmlinux 0x5c4969c9 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x5c4eb036 inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0x5c545234 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x5c5602af blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x5c7353d8 dquot_release -EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d2e0057 x86_hyper_ms_hyperv -EXPORT_SYMBOL vmlinux 0x5d463339 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d5e5d0e __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x5d6e87a6 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved -EXPORT_SYMBOL vmlinux 0x5d83269c dst_discard_out -EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done -EXPORT_SYMBOL vmlinux 0x5d8eca89 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x5d935b27 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x5dc8a822 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x5dcc4ac5 tcf_hash_check -EXPORT_SYMBOL vmlinux 0x5dd024f3 kill_pgrp -EXPORT_SYMBOL vmlinux 0x5de23f76 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x5dffb9b0 x86_hyper_vmware -EXPORT_SYMBOL vmlinux 0x5e158d07 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0x5e22a5c8 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x5e28b591 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x5e4d9f7a try_module_get -EXPORT_SYMBOL vmlinux 0x5e51b7fb input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x5e65ce9c tcf_em_register -EXPORT_SYMBOL vmlinux 0x5e720069 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes -EXPORT_SYMBOL vmlinux 0x5e8d9022 module_put -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec047fe netif_napi_add -EXPORT_SYMBOL vmlinux 0x5ec185db cdev_init -EXPORT_SYMBOL vmlinux 0x5ec26dfa flow_cache_lookup -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed0c064 free_user_ns -EXPORT_SYMBOL vmlinux 0x5ed268b6 generic_getxattr -EXPORT_SYMBOL vmlinux 0x5ed7ebdc xfrm_state_add -EXPORT_SYMBOL vmlinux 0x5eec3917 alloc_file -EXPORT_SYMBOL vmlinux 0x5f000caf i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f0cf102 may_umount -EXPORT_SYMBOL vmlinux 0x5f186483 pci_release_regions -EXPORT_SYMBOL vmlinux 0x5f1a4ccf intel_scu_ipc_update_register -EXPORT_SYMBOL vmlinux 0x5f3abdf8 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x5f5d4f59 wake_up_process -EXPORT_SYMBOL vmlinux 0x5f60a257 bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x5f613f77 tcp_child_process -EXPORT_SYMBOL vmlinux 0x5f751b67 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x5f7df06e tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x5fa61902 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x5fa9c996 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0x5fab9313 __napi_complete -EXPORT_SYMBOL vmlinux 0x5fac30d4 register_filesystem -EXPORT_SYMBOL vmlinux 0x5fb0946a inet_csk_accept -EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init -EXPORT_SYMBOL vmlinux 0x5fc03e6a sk_reset_timer -EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5fe3d51f sock_edemux -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600d8b26 param_get_uint -EXPORT_SYMBOL vmlinux 0x601a263f dev_uc_init -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe -EXPORT_SYMBOL vmlinux 0x605ec80f phy_attach_direct -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x609f187a inet_listen -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a28513 genphy_config_init -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60b4d4d0 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x60b526bd acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x60bdacce up_read -EXPORT_SYMBOL vmlinux 0x60c0e4b8 f_setown -EXPORT_SYMBOL vmlinux 0x60cf89e1 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x60d1e4d4 dquot_acquire -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy -EXPORT_SYMBOL vmlinux 0x610fd62d pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x612e6e0e kernel_param_lock -EXPORT_SYMBOL vmlinux 0x6136145f mmc_of_parse -EXPORT_SYMBOL vmlinux 0x615be3c9 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x6187270a always_delete_dentry -EXPORT_SYMBOL vmlinux 0x6194cd0a phy_connect -EXPORT_SYMBOL vmlinux 0x61b06a81 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x61b6c922 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61ccbdc5 nd_device_register -EXPORT_SYMBOL vmlinux 0x61ec4048 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping -EXPORT_SYMBOL vmlinux 0x6226f665 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x6227bf28 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x62292fe1 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0x62296295 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event -EXPORT_SYMBOL vmlinux 0x6241a2ab __copy_from_user_ll_nocache -EXPORT_SYMBOL vmlinux 0x62695982 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x627dcfe8 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62d1c41e dquot_file_open -EXPORT_SYMBOL vmlinux 0x62d77060 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x62ec85ce devm_memunmap -EXPORT_SYMBOL vmlinux 0x630e6e86 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x6324b850 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x632580e6 blk_put_queue -EXPORT_SYMBOL vmlinux 0x63378d43 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x633d5f8c vga_switcheroo_register_audio_client -EXPORT_SYMBOL vmlinux 0x63473657 swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x634ef257 __kernel_write -EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0x63721516 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0x6377e61a fd_install -EXPORT_SYMBOL vmlinux 0x637ac119 tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0x637e7839 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x6388591c down_timeout -EXPORT_SYMBOL vmlinux 0x638af6aa tcp_parse_options -EXPORT_SYMBOL vmlinux 0x63918c3c skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63ba00ab jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c71431 phy_suspend -EXPORT_SYMBOL vmlinux 0x63d0a339 vme_master_request -EXPORT_SYMBOL vmlinux 0x63d57a95 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x63d68c72 sock_create -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63ef1823 param_get_bool -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64042708 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x642b4cba nobh_write_end -EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0x6460f5f0 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x646fc5a9 mount_pseudo -EXPORT_SYMBOL vmlinux 0x64939e5c pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a370e6 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion -EXPORT_SYMBOL vmlinux 0x64ab9900 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x64adc4e2 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x64ae389d devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x64be4831 seq_putc -EXPORT_SYMBOL vmlinux 0x64c0110a max8925_reg_read -EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb -EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0x650f7d5f xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x651b94c9 nf_reinject -EXPORT_SYMBOL vmlinux 0x652054ba inet_addr_type -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x654d21a8 eisa_driver_register -EXPORT_SYMBOL vmlinux 0x6559309e bh_submit_read -EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc -EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x6568863c filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x656d6751 page_follow_link_light -EXPORT_SYMBOL vmlinux 0x6586a6cd vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x65a295bb atomic64_xchg_cx8 -EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry -EXPORT_SYMBOL vmlinux 0x65bfafd7 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x65d0014c get_acl -EXPORT_SYMBOL vmlinux 0x65d50bf8 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e67574 sock_register -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x65fc36aa tcp_prot -EXPORT_SYMBOL vmlinux 0x661e9ca8 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x66355efc vprintk -EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0x6641b0e0 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x665fa030 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x666b16dc mutex_lock -EXPORT_SYMBOL vmlinux 0x6673b0f0 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x667e4e80 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x66996240 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x669bf80b proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x66a125c3 security_path_rename -EXPORT_SYMBOL vmlinux 0x66aa49ad __breadahead -EXPORT_SYMBOL vmlinux 0x66b19591 dev_mc_add -EXPORT_SYMBOL vmlinux 0x66b36d1b dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x66c90eb6 inet_del_offload -EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x66dfac81 user_revoke -EXPORT_SYMBOL vmlinux 0x66ebc5a2 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x671762ca security_path_rmdir -EXPORT_SYMBOL vmlinux 0x671c8df2 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x671f0ccf jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x6720a21e blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0x6726de2c pci_iomap_range -EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 -EXPORT_SYMBOL vmlinux 0x672a8fec kmap_to_page -EXPORT_SYMBOL vmlinux 0x672efb6e jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x672f34d2 dquot_alloc -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x6763175e gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x67692d8a netif_device_detach -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x6774425b tty_hangup -EXPORT_SYMBOL vmlinux 0x679cb1ff __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67bffb47 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x67c12c76 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x67ee7862 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x680c736a skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x680ef707 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0x681a3fd7 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x68285b68 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x68329ee3 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x6847abc2 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x6868e237 input_get_keycode -EXPORT_SYMBOL vmlinux 0x6876bcf5 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x68795230 lease_modify -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x689ef72d padata_start -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a1caf5 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68c2d8ca d_drop -EXPORT_SYMBOL vmlinux 0x68f5abcf setattr_copy -EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x691c6218 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x691d0273 cdrom_release -EXPORT_SYMBOL vmlinux 0x691e5fde xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x692e0437 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x6930fdaa fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x69368df5 phy_device_free -EXPORT_SYMBOL vmlinux 0x6966f138 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 -EXPORT_SYMBOL vmlinux 0x69922d20 blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x699d5bf1 down_read -EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69bcac00 __pagevec_release -EXPORT_SYMBOL vmlinux 0x69ceb6a8 simple_setattr -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a10af41 dst_init -EXPORT_SYMBOL vmlinux 0x6a1f96a6 vga_switcheroo_get_client_state -EXPORT_SYMBOL vmlinux 0x6a27bfce csum_partial_copy_generic -EXPORT_SYMBOL vmlinux 0x6a2e9592 seq_pad -EXPORT_SYMBOL vmlinux 0x6a3a17be blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a60277d acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x6a61149f param_ops_byte -EXPORT_SYMBOL vmlinux 0x6a7079bb genphy_read_status -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a7a8062 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x6aa1e693 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x6abe7448 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x6abedaa5 stop_tty -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be -EXPORT_SYMBOL vmlinux 0x6ad4ec25 force_sig -EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6ae8ed88 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x6aeeded5 tty_lock -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b01160d keyring_search -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b084bf5 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x6b0f1f83 tcp_poll -EXPORT_SYMBOL vmlinux 0x6b10149a tty_register_driver -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b204c55 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x6b332375 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0x6b351437 kernel_listen -EXPORT_SYMBOL vmlinux 0x6b4fa689 dcb_getapp -EXPORT_SYMBOL vmlinux 0x6b626a51 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue -EXPORT_SYMBOL vmlinux 0x6b9c5b4e blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x6ba742b7 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x6bb5ab4e wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x6bbf374f lwtunnel_output -EXPORT_SYMBOL vmlinux 0x6bbf6c7d scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bcf066d _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x6bd9f6f4 md_update_sb -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6be96c19 generic_update_time -EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops -EXPORT_SYMBOL vmlinux 0x6c059325 km_report -EXPORT_SYMBOL vmlinux 0x6c091892 blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn -EXPORT_SYMBOL vmlinux 0x6c2a5662 ps2_init -EXPORT_SYMBOL vmlinux 0x6c2c4ab8 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x6c2e3320 strncmp -EXPORT_SYMBOL vmlinux 0x6c4e704b pci_clear_master -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c5b4d2b remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c65f9b7 poll_freewait -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c815881 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x6c8c4673 vm_insert_mixed -EXPORT_SYMBOL vmlinux 0x6c915fee tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x6ca6b9b2 devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0x6cab89a4 get_phy_device -EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6ce462b7 put_disk -EXPORT_SYMBOL vmlinux 0x6cf265f0 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d110acf phy_attach -EXPORT_SYMBOL vmlinux 0x6d1d5d9b iosf_mbi_write -EXPORT_SYMBOL vmlinux 0x6d266a87 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x6d2746b1 replace_mount_options -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d2f73ea xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d49d979 sk_common_release -EXPORT_SYMBOL vmlinux 0x6d57b5c6 inet_bind -EXPORT_SYMBOL vmlinux 0x6d5c7c4a genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x6d6ab785 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x6d6c6c91 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x6d821600 skb_pull -EXPORT_SYMBOL vmlinux 0x6d831d18 xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible -EXPORT_SYMBOL vmlinux 0x6dc6dd56 down -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6dfa7419 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x6dffa6da wait_iff_congested -EXPORT_SYMBOL vmlinux 0x6e02212a task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0x6e15e2e1 blk_put_request -EXPORT_SYMBOL vmlinux 0x6e2ac444 sk_dst_check -EXPORT_SYMBOL vmlinux 0x6e31eb3b kfree_skb -EXPORT_SYMBOL vmlinux 0x6e3a6063 vmap -EXPORT_SYMBOL vmlinux 0x6e450eb1 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x6e54bc50 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7e6423 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x6e876152 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6e9ded71 swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x6eed6550 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x6f0154b3 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x6f051d53 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x6f117d61 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock -EXPORT_SYMBOL vmlinux 0x6f34a336 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x6f43f3c5 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6f985777 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0x6fa67165 filemap_fdatawait -EXPORT_SYMBOL vmlinux 0x6fa96702 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fc133e1 truncate_setsize -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd5d101 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0x6fea769b security_path_truncate -EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write -EXPORT_SYMBOL vmlinux 0x6ff2a5e6 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x700f3b44 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0x702adf16 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x70351b52 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x703dff5a get_fs_type -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x70581684 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x70606d40 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x70860c82 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x7088ce72 printk_emit -EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x70acd594 done_path_create -EXPORT_SYMBOL vmlinux 0x70d0e74c acpi_pm_device_run_wake -EXPORT_SYMBOL vmlinux 0x70d1f8f3 strncat -EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock -EXPORT_SYMBOL vmlinux 0x70e36162 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x70e817e9 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x710a68ec swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x711219db mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x7117fc5f vfs_readv -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712ce4ab lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x713e26cd scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x71433d8f dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x714886da kobject_init -EXPORT_SYMBOL vmlinux 0x715b6c48 param_set_ullong -EXPORT_SYMBOL vmlinux 0x716f0dd0 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x717e82de dev_get_by_name -EXPORT_SYMBOL vmlinux 0x7181ad9e dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x718a2eb9 pipe_unlock -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71a8b0bc vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x71f99af2 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x723ad290 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x723f55a7 serio_rescan -EXPORT_SYMBOL vmlinux 0x726bfe21 dquot_drop -EXPORT_SYMBOL vmlinux 0x72826680 simple_empty -EXPORT_SYMBOL vmlinux 0x7293738d iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x72975c02 icmp_send -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72c10362 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x72c5ed46 dev_open -EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x72e8c4a9 mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f9d1fe mmc_erase -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731b938b dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x732503d1 __free_pages -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x7341a993 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x734a2c1a mpage_writepages -EXPORT_SYMBOL vmlinux 0x735513e1 bio_copy_kern -EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay -EXPORT_SYMBOL vmlinux 0x7362fc10 to_ndd -EXPORT_SYMBOL vmlinux 0x7363331d simple_unlink -EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get -EXPORT_SYMBOL vmlinux 0x7387ea1f generic_file_llseek -EXPORT_SYMBOL vmlinux 0x738803e6 strnlen -EXPORT_SYMBOL vmlinux 0x738baecb dev_mc_init -EXPORT_SYMBOL vmlinux 0x73901522 vfs_mknod -EXPORT_SYMBOL vmlinux 0x7398af68 simple_lookup -EXPORT_SYMBOL vmlinux 0x73b3a834 vm_mmap -EXPORT_SYMBOL vmlinux 0x73d769b4 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x73da1c6e kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable -EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x73ea41c0 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0x73f15a3f __scm_send -EXPORT_SYMBOL vmlinux 0x73f3a0ff netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x7412bf64 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus -EXPORT_SYMBOL vmlinux 0x741c6901 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x743b4ae3 atomic64_inc_not_zero_cx8 -EXPORT_SYMBOL vmlinux 0x7458e3c5 proto_register -EXPORT_SYMBOL vmlinux 0x745bb9fc crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty -EXPORT_SYMBOL vmlinux 0x74645f87 sock_update_memcg -EXPORT_SYMBOL vmlinux 0x74699815 agp_backend_release -EXPORT_SYMBOL vmlinux 0x746d06ae vfs_iter_read -EXPORT_SYMBOL vmlinux 0x747163c5 netdev_err -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x7485fe88 read_dev_sector -EXPORT_SYMBOL vmlinux 0x74860be3 blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74e14fc3 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x74e482a6 blk_register_region -EXPORT_SYMBOL vmlinux 0x74e5c98f ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74efdd0a insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x74f1a127 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x74f821f1 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x74fa8156 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x75132a4a udp6_set_csum -EXPORT_SYMBOL vmlinux 0x75271716 save_processor_state -EXPORT_SYMBOL vmlinux 0x752fc0ee simple_fill_super -EXPORT_SYMBOL vmlinux 0x753182a4 build_skb -EXPORT_SYMBOL vmlinux 0x7531e3dc acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x7554c93c dev_uc_del -EXPORT_SYMBOL vmlinux 0x7557a280 dev_deactivate -EXPORT_SYMBOL vmlinux 0x756281fc mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x7584294a twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 -EXPORT_SYMBOL vmlinux 0x75b0edc6 __neigh_create -EXPORT_SYMBOL vmlinux 0x75b21b06 dget_parent -EXPORT_SYMBOL vmlinux 0x75bc549a x86_cpu_to_apicid -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75d21809 vprintk_emit -EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x7602b688 write_one_page -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x762add85 atomic64_inc_return_cx8 -EXPORT_SYMBOL vmlinux 0x76319cb5 notify_change -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x7649160e scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x765a3a8c file_update_time -EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append -EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc -EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x76ad0565 udp_disconnect -EXPORT_SYMBOL vmlinux 0x76b73d4e scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be -EXPORT_SYMBOL vmlinux 0x76e098b7 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order -EXPORT_SYMBOL vmlinux 0x770a0036 isapnp_cfg_begin -EXPORT_SYMBOL vmlinux 0x771c5b49 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x775f2b49 phy_disconnect -EXPORT_SYMBOL vmlinux 0x77822297 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77a467a2 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x77b8aaeb cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77e871e3 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x77fc1918 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt -EXPORT_SYMBOL vmlinux 0x781046b6 param_ops_bint -EXPORT_SYMBOL vmlinux 0x7815f5d6 md_cluster_mod -EXPORT_SYMBOL vmlinux 0x7818ff00 proc_douintvec -EXPORT_SYMBOL vmlinux 0x7821ec28 vfs_symlink -EXPORT_SYMBOL vmlinux 0x782567ec memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x7834ad07 single_open -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x783dc023 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x784dee93 would_dump -EXPORT_SYMBOL vmlinux 0x7856fefb param_set_ushort -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x789ebceb dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x78a5ff8a fence_add_callback -EXPORT_SYMBOL vmlinux 0x78c1a85b blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x78d74834 nf_log_set -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78df8ef4 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x78e739aa up -EXPORT_SYMBOL vmlinux 0x78e866a9 unregister_nls -EXPORT_SYMBOL vmlinux 0x78e8f655 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x78f20f5c tty_unlock -EXPORT_SYMBOL vmlinux 0x78f31c4a __tcf_hash_release -EXPORT_SYMBOL vmlinux 0x78fb4898 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x78fc5997 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method -EXPORT_SYMBOL vmlinux 0x791d5f84 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock -EXPORT_SYMBOL vmlinux 0x79363c41 eisa_driver_unregister -EXPORT_SYMBOL vmlinux 0x79667860 abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0x79674938 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x7979b271 dev_close -EXPORT_SYMBOL vmlinux 0x797eec79 secpath_dup -EXPORT_SYMBOL vmlinux 0x798c57ea d_walk -EXPORT_SYMBOL vmlinux 0x79975c70 arp_send -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79ab6f72 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x79ca786e mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x79d05cb9 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x79d840a3 bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x7a23add9 led_blink_set -EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 -EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a4648bf load_nls -EXPORT_SYMBOL vmlinux 0x7a525926 security_path_mknod -EXPORT_SYMBOL vmlinux 0x7a5e6cb9 devm_clk_put -EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a97637f __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa69529 skb_put -EXPORT_SYMBOL vmlinux 0x7ab7472b neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7accce24 kobject_del -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user -EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf -EXPORT_SYMBOL vmlinux 0x7b134ddf acpi_get_name -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b199a94 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress -EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x7b32ca39 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x7b3a22cd pci_disable_device -EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7b635087 pnp_possible_config -EXPORT_SYMBOL vmlinux 0x7b63a413 sock_from_file -EXPORT_SYMBOL vmlinux 0x7b6ada6f genphy_suspend -EXPORT_SYMBOL vmlinux 0x7b76e5df i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x7b904713 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x7bac99a5 seq_vprintf -EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x7bb89238 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x7bd70dec vfs_read -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c538fa3 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c880ec7 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x7c8a1db5 scsi_init_io -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7ca7dcae phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cc17255 proc_create_data -EXPORT_SYMBOL vmlinux 0x7cdaffa9 nf_log_packet -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d3a124d param_get_short -EXPORT_SYMBOL vmlinux 0x7d42d750 kernel_connect -EXPORT_SYMBOL vmlinux 0x7d438318 pci_iounmap -EXPORT_SYMBOL vmlinux 0x7d464683 mpage_writepage -EXPORT_SYMBOL vmlinux 0x7d50af5d skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x7d655c59 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x7d684a2c sk_mc_loop -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d8489ce seq_escape -EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port -EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk -EXPORT_SYMBOL vmlinux 0x7dd5f8ce ip_check_defrag -EXPORT_SYMBOL vmlinux 0x7de90121 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x7debc33a phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x7deef2e1 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7dfaa661 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x7e4cdcb2 proc_remove -EXPORT_SYMBOL vmlinux 0x7e5c35b1 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x7e77f2b2 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x7e7ea282 set_pages_wb -EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit -EXPORT_SYMBOL vmlinux 0x7ea7fa77 do_splice_direct -EXPORT_SYMBOL vmlinux 0x7ead89e8 param_ops_string -EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x7ecfb0a8 skb_pad -EXPORT_SYMBOL vmlinux 0x7ed81e8b __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7ee73c0c memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0x7eec38e3 nvm_register -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f060a81 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x7f10651f inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0x7f1a8656 km_state_notify -EXPORT_SYMBOL vmlinux 0x7f1f9d19 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f3357d2 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x7f3fbc5e iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f983449 scsi_device_put -EXPORT_SYMBOL vmlinux 0x7f99be99 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x7f9ec835 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0x7f9ed845 acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x7fd4c05c mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fedace7 init_net -EXPORT_SYMBOL vmlinux 0x7ff1dc0f dquot_commit_info -EXPORT_SYMBOL vmlinux 0x7ff4c845 dma_release_declared_memory -EXPORT_SYMBOL vmlinux 0x8002dc2b inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x8036639b clocksource_unregister -EXPORT_SYMBOL vmlinux 0x8048e00f nvm_end_io -EXPORT_SYMBOL vmlinux 0x8056cfc2 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x805b0944 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0x80661920 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x808097a5 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x8080ffb8 iterate_dir -EXPORT_SYMBOL vmlinux 0x808b0250 write_cache_pages -EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy -EXPORT_SYMBOL vmlinux 0x80a56a80 padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x80a5780e dev_set_mtu -EXPORT_SYMBOL vmlinux 0x80bce0ba phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80ce1b49 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80d9ca85 paravirt_ticketlocks_enabled -EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x80f3bddf seq_file_path -EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x81191596 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x811d7ea9 phy_device_create -EXPORT_SYMBOL vmlinux 0x8126eec6 proc_symlink -EXPORT_SYMBOL vmlinux 0x8127b603 i2c_del_driver -EXPORT_SYMBOL vmlinux 0x81401a80 mutex_unlock -EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table -EXPORT_SYMBOL vmlinux 0x814d17cd search_binary_handler -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815c56d0 cpu_present_mask -EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x818c901e mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x81acfbfa i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x81c7b55a scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x81d490e6 agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81dd6879 agp_put_bridge -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81f450f5 seq_puts -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x8209280e nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0x822a16a9 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x822ddafd ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x822fd9c0 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x8235805b memmove -EXPORT_SYMBOL vmlinux 0x823cd7ca generic_fillattr -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x8272d24c dquot_disable -EXPORT_SYMBOL vmlinux 0x8278f306 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x8288765b xfrm_register_type -EXPORT_SYMBOL vmlinux 0x82935bdf scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x829534b3 fence_free -EXPORT_SYMBOL vmlinux 0x82abbe1a tcp_init_sock -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82c08a6a dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0x82d6bfc8 neigh_update -EXPORT_SYMBOL vmlinux 0x83094432 block_write_end -EXPORT_SYMBOL vmlinux 0x830e10c2 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot -EXPORT_SYMBOL vmlinux 0x8329e6f0 memset -EXPORT_SYMBOL vmlinux 0x832c3fc8 blk_stop_queue -EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x834a975c phy_detach -EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x8382e59a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x8383d6a9 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x83866d8f xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x839b9308 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x83a03f42 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x83a14d72 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x83a4e699 param_ops_long -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83d38729 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x83dc5f1c audit_log_start -EXPORT_SYMBOL vmlinux 0x83ef9089 inet_release -EXPORT_SYMBOL vmlinux 0x83f02413 pnp_register_driver -EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x8415ccc2 netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes -EXPORT_SYMBOL vmlinux 0x8427600e generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x843c63f3 send_sig -EXPORT_SYMBOL vmlinux 0x844b46a7 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x844c5c51 inet6_release -EXPORT_SYMBOL vmlinux 0x846f59c0 agp_generic_enable -EXPORT_SYMBOL vmlinux 0x848176bb __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x8487ebed neigh_xmit -EXPORT_SYMBOL vmlinux 0x84aeb0ba mmc_add_host -EXPORT_SYMBOL vmlinux 0x84c254cd writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x84de0340 bprm_change_interp -EXPORT_SYMBOL vmlinux 0x84e57df5 dma_mark_declared_memory_occupied -EXPORT_SYMBOL vmlinux 0x84e7e4c9 ppp_input -EXPORT_SYMBOL vmlinux 0x84fe4416 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x85052bd1 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x8516a24f mapping_tagged -EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue -EXPORT_SYMBOL vmlinux 0x85350626 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x853830b1 tty_set_operations -EXPORT_SYMBOL vmlinux 0x8544726f blk_fetch_request -EXPORT_SYMBOL vmlinux 0x8559315a devm_request_resource -EXPORT_SYMBOL vmlinux 0x855e393c uart_add_one_port -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes -EXPORT_SYMBOL vmlinux 0x857ca8ee keyring_alloc -EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem -EXPORT_SYMBOL vmlinux 0x8594457d nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x859bbc4e nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x85a4d1c5 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x85aa195b inet6_bind -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85d73a7e pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x85d76cc6 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85ed145b pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f1b7f2 pci_save_state -EXPORT_SYMBOL vmlinux 0x85f65f1c pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x8607d14d pagevec_lookup -EXPORT_SYMBOL vmlinux 0x86095e16 lookup_one_len -EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu -EXPORT_SYMBOL vmlinux 0x862452d2 simple_rename -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x8663b33d bio_split -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x86813ecc vga_switcheroo_register_client -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x86b02695 param_set_invbool -EXPORT_SYMBOL vmlinux 0x86be810f follow_up -EXPORT_SYMBOL vmlinux 0x86c356c4 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x86d44a4f cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x86e15a06 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x86e262c9 devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0x86ef8e36 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x87031d23 devm_clk_get -EXPORT_SYMBOL vmlinux 0x8704ac15 sk_net_capable -EXPORT_SYMBOL vmlinux 0x871027ac account_page_redirty -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x8720144a iterate_mounts -EXPORT_SYMBOL vmlinux 0x87694521 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write -EXPORT_SYMBOL vmlinux 0x876e4073 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x878cd015 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x8792531c mmc_put_card -EXPORT_SYMBOL vmlinux 0x8798b16b uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x879e8d37 bdi_register_owner -EXPORT_SYMBOL vmlinux 0x879f270a tcp_shutdown -EXPORT_SYMBOL vmlinux 0x87a06f12 page_put_link -EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0x87acc9de dev_mc_flush -EXPORT_SYMBOL vmlinux 0x87b262a0 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x87c70acb posix_test_lock -EXPORT_SYMBOL vmlinux 0x87deae14 dev_emerg -EXPORT_SYMBOL vmlinux 0x87e11ae8 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x8819c36c inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0x881c213a devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x881e7422 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x882e3963 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x883e15d7 first_ec -EXPORT_SYMBOL vmlinux 0x88493718 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x8856a8b0 netdev_emerg -EXPORT_SYMBOL vmlinux 0x888b3c20 tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0x88a339be xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x88b76ab1 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x8913e882 blk_run_queue -EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx -EXPORT_SYMBOL vmlinux 0x895164ba zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x89546aeb __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x895dad9b ilookup5 -EXPORT_SYMBOL vmlinux 0x898aa0e5 pneigh_lookup -EXPORT_SYMBOL vmlinux 0x899e54cc nf_log_unregister -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89b12d6a netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x89b60925 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x89ba5744 sk_capable -EXPORT_SYMBOL vmlinux 0x89d085dc skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all -EXPORT_SYMBOL vmlinux 0x8a16002b __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x8a162941 vga_switcheroo_register_handler -EXPORT_SYMBOL vmlinux 0x8a19c8e4 dst_destroy -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a35c1e3 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x8a3bf6d9 processors -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a50fd0b inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x8a51687c padata_add_cpu -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a687936 simple_dname -EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8ab02d8c vga_switcheroo_init_domain_pm_optimus_hdmi_audio -EXPORT_SYMBOL vmlinux 0x8ab39d66 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x8abb8c40 simple_follow_link -EXPORT_SYMBOL vmlinux 0x8ac846f1 dma_find_channel -EXPORT_SYMBOL vmlinux 0x8ae1a256 __get_user_pages -EXPORT_SYMBOL vmlinux 0x8aefe1c2 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x8af5d017 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x8b0d33a3 da903x_query_status -EXPORT_SYMBOL vmlinux 0x8b18496f __copy_to_user_ll -EXPORT_SYMBOL vmlinux 0x8b359a91 console_stop -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b5a7c80 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b7dc7fe __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8bbf3d4a alloc_disk_node -EXPORT_SYMBOL vmlinux 0x8bd48813 fb_pan_display -EXPORT_SYMBOL vmlinux 0x8c093878 pnp_start_dev -EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 -EXPORT_SYMBOL vmlinux 0x8c4f6c81 dump_page -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c793f8c block_invalidatepage -EXPORT_SYMBOL vmlinux 0x8c7cbcc6 key_task_permission -EXPORT_SYMBOL vmlinux 0x8c84db14 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x8c88d0a0 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x8cbcab52 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cce8449 mmc_start_req -EXPORT_SYMBOL vmlinux 0x8cd03332 dma_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0x8cda373b __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8cdca672 blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0x8ce90992 devm_ioremap -EXPORT_SYMBOL vmlinux 0x8d094ab7 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x8d176729 qdisc_destroy -EXPORT_SYMBOL vmlinux 0x8d1bcb5b vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x8d21c2c3 kmem_cache_free -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d552bd9 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x8d6b9997 security_file_permission -EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 -EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d7d3afa drop_nlink -EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove -EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x8d90765a dentry_unhash -EXPORT_SYMBOL vmlinux 0x8d9c9d78 swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface -EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init -EXPORT_SYMBOL vmlinux 0x8db59c7d get_empty_filp -EXPORT_SYMBOL vmlinux 0x8dbabab7 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x8dc6e564 restore_processor_state -EXPORT_SYMBOL vmlinux 0x8dc79763 dm_unregister_target -EXPORT_SYMBOL vmlinux 0x8dcbb0dc security_path_symlink -EXPORT_SYMBOL vmlinux 0x8de2a806 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x8de318ee netlink_capable -EXPORT_SYMBOL vmlinux 0x8df5abc6 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block -EXPORT_SYMBOL vmlinux 0x8e0ddf79 input_grab_device -EXPORT_SYMBOL vmlinux 0x8e12bea9 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x8e1a9e6f __check_sticky -EXPORT_SYMBOL vmlinux 0x8e276d6d scsi_remove_device -EXPORT_SYMBOL vmlinux 0x8e346efe genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x8e371438 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x8e8e20da tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x8e952baa fget -EXPORT_SYMBOL vmlinux 0x8ea83fba nvm_get_blk -EXPORT_SYMBOL vmlinux 0x8eaa07a0 get_disk -EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler -EXPORT_SYMBOL vmlinux 0x8ec1aff6 sock_i_uid -EXPORT_SYMBOL vmlinux 0x8eca6e62 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x8ee2be06 security_path_chmod -EXPORT_SYMBOL vmlinux 0x8f073bcc clkdev_add -EXPORT_SYMBOL vmlinux 0x8f1adf0b inet6_protos -EXPORT_SYMBOL vmlinux 0x8f25b2dc path_get -EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus -EXPORT_SYMBOL vmlinux 0x8f649f74 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x8f6ec99c swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x8f743fff eth_type_trans -EXPORT_SYMBOL vmlinux 0x8f868d44 proto_unregister -EXPORT_SYMBOL vmlinux 0x8f975a33 request_key -EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 -EXPORT_SYMBOL vmlinux 0x8fa84929 rtnl_notify -EXPORT_SYMBOL vmlinux 0x8fa9125e inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x8fabce44 mount_subtree -EXPORT_SYMBOL vmlinux 0x8fdc658b vfs_llseek -EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc -EXPORT_SYMBOL vmlinux 0x8ff4079b pv_irq_ops -EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 -EXPORT_SYMBOL vmlinux 0x90189b26 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x90229fe4 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector -EXPORT_SYMBOL vmlinux 0x905f08e9 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent -EXPORT_SYMBOL vmlinux 0x906df52a eth_header_parse -EXPORT_SYMBOL vmlinux 0x907da5e0 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0x90922867 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x909643f4 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x90965130 drop_super -EXPORT_SYMBOL vmlinux 0x90a6ccc9 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x90b66b5d bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x90c8ca7a redraw_screen -EXPORT_SYMBOL vmlinux 0x90f4f947 fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0x91161d10 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x91207dbe devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x91218a58 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x912672c2 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x912e865d dma_common_mmap -EXPORT_SYMBOL vmlinux 0x9139a08c generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x915e5a6d audit_log_task_info -EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init -EXPORT_SYMBOL vmlinux 0x919b1813 clear_inode -EXPORT_SYMBOL vmlinux 0x91a54906 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x91cc22fb mntput -EXPORT_SYMBOL vmlinux 0x91de9244 phy_device_remove -EXPORT_SYMBOL vmlinux 0x91f29748 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x920c7de0 __alloc_skb -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x923b6edb filp_open -EXPORT_SYMBOL vmlinux 0x924de8cc pci_dev_get -EXPORT_SYMBOL vmlinux 0x9268d52f pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x9273b849 napi_complete_done -EXPORT_SYMBOL vmlinux 0x9279e0f4 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x92897e3d default_idle -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92ad1c20 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x92d1fe23 cap_mmap_file -EXPORT_SYMBOL vmlinux 0x92dce7e0 pipe_lock -EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x9305b282 __bread_gfp -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x9310dcc2 seq_release -EXPORT_SYMBOL vmlinux 0x931e8daa pci_select_bars -EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read -EXPORT_SYMBOL vmlinux 0x932d1356 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x93302e05 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x933180ef current_task -EXPORT_SYMBOL vmlinux 0x933c7ad7 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x933e0adf xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0x93429631 netif_rx_ni -EXPORT_SYMBOL vmlinux 0x9343dc5f xfrm_state_update -EXPORT_SYMBOL vmlinux 0x9360dc6a pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x9361ed7f tcp_disconnect -EXPORT_SYMBOL vmlinux 0x9363b969 finish_no_open -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93792806 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x93797db1 dev_get_flags -EXPORT_SYMBOL vmlinux 0x937d571e pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x939feee3 vme_dma_request -EXPORT_SYMBOL vmlinux 0x93a53706 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x93a8b041 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b55c82 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x93c02b3b trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x94034e01 read_cache_page -EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x941195ef sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x941f99d7 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x942474a2 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x94421251 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x944749c8 blk_queue_split -EXPORT_SYMBOL vmlinux 0x945bd1fc __pci_enable_wake -EXPORT_SYMBOL vmlinux 0x9464df17 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0x946b05ac dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x947be04d dquot_transfer -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask -EXPORT_SYMBOL vmlinux 0x94d945b2 rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0x94e0d3aa sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x94e28088 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x95074a31 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x95201350 unregister_netdev -EXPORT_SYMBOL vmlinux 0x952a1117 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x95366bb5 blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x9550bdfa km_is_alive -EXPORT_SYMBOL vmlinux 0x955d6471 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x9579430c param_get_ushort -EXPORT_SYMBOL vmlinux 0x959134f5 bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x9595f807 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler -EXPORT_SYMBOL vmlinux 0x95d77a19 km_state_expired -EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x9617a00b xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0x963dc37c seq_open_private -EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x965d144c mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x966b0077 agp_bind_memory -EXPORT_SYMBOL vmlinux 0x967260c5 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x967b1aa1 invalidate_partition -EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x96a1850c bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96d27f4c pci_dev_driver -EXPORT_SYMBOL vmlinux 0x96d4ce60 touch_atime -EXPORT_SYMBOL vmlinux 0x96df1db0 put_filp -EXPORT_SYMBOL vmlinux 0x96eea27e __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x9711bd37 kmap_high -EXPORT_SYMBOL vmlinux 0x972b8d2b balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x974a99fd posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x975a1053 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x9779be85 account_page_dirtied -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x979ce9fd peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x97aea253 flush_signals -EXPORT_SYMBOL vmlinux 0x97b7d558 kmap_atomic -EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block -EXPORT_SYMBOL vmlinux 0x9807ae0d serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x980db025 generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x980e7ed1 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint -EXPORT_SYMBOL vmlinux 0x9825dbd9 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x983812a0 kern_path_create -EXPORT_SYMBOL vmlinux 0x986771e7 tty_port_put -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x987f03f4 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x -EXPORT_SYMBOL vmlinux 0x98a6fd4d dmam_release_declared_memory -EXPORT_SYMBOL vmlinux 0x98d1b714 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x98d1c64e xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x990e08e6 seq_open -EXPORT_SYMBOL vmlinux 0x991b6747 swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x991c7d29 vfs_whiteout -EXPORT_SYMBOL vmlinux 0x99233c32 cpu_core_map -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x9962df81 register_quota_format -EXPORT_SYMBOL vmlinux 0x996c29ea pci_bus_get -EXPORT_SYMBOL vmlinux 0x9984f15d sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x99852d50 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a2d0b3 vfs_create -EXPORT_SYMBOL vmlinux 0x99b95407 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x99bbfd62 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x99c9b9fe scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99d06816 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99e1856e kobject_add -EXPORT_SYMBOL vmlinux 0x99e361e3 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a271ac4 elevator_change -EXPORT_SYMBOL vmlinux 0x9a3d4d7a dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0x9a68e727 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x9a6a83f9 cmos_lock -EXPORT_SYMBOL vmlinux 0x9a7ec8be proc_set_user -EXPORT_SYMBOL vmlinux 0x9a802bed blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x9ac17729 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x9ac88e04 vc_cons -EXPORT_SYMBOL vmlinux 0x9ae952ac xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9af84720 kmap -EXPORT_SYMBOL vmlinux 0x9b03dad8 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x9b0a4c3e blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x9b27ba95 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x9b2f991c pskb_expand_head -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b72637a cdrom_check_events -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bbac0b9 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put -EXPORT_SYMBOL vmlinux 0x9bc66443 alloc_disk -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9bee27fd nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0x9c1508ff mmc_flush_cache -EXPORT_SYMBOL vmlinux 0x9c158ee5 bdi_register_dev -EXPORT_SYMBOL vmlinux 0x9c2c944a __copy_from_user_ll_nocache_nozero -EXPORT_SYMBOL vmlinux 0x9c2cbc41 from_kuid_munged -EXPORT_SYMBOL vmlinux 0x9c34126b tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x9c3b448e neigh_destroy -EXPORT_SYMBOL vmlinux 0x9c3e203d inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x9c3fac77 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x9c46e90f dev_remove_offload -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c5249ba ab3100_event_register -EXPORT_SYMBOL vmlinux 0x9c628c1a scsi_device_resume -EXPORT_SYMBOL vmlinux 0x9c752d83 clear_nlink -EXPORT_SYMBOL vmlinux 0x9c8c3756 pci_enable_device -EXPORT_SYMBOL vmlinux 0x9c9e8654 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x9ca14ae1 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cac3aaa devfreq_add_device -EXPORT_SYMBOL vmlinux 0x9cbfa0d0 bdget_disk -EXPORT_SYMBOL vmlinux 0x9ce169af neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x9cfb90dd mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d10f0e0 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x9d163bf0 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d6e097c dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x9d80171f scm_detach_fds -EXPORT_SYMBOL vmlinux 0x9d82b261 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x9d856f87 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x9d937397 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x9da6ecb6 devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e087ed0 __block_write_begin -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e24b023 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x9e2dc994 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e622dd1 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read -EXPORT_SYMBOL vmlinux 0x9e6a215f inode_set_flags -EXPORT_SYMBOL vmlinux 0x9e6af763 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0x9e6e56e0 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e9510d0 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea0c91f proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x9eaa5d0b inet_offloads -EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock -EXPORT_SYMBOL vmlinux 0x9eb6dbc1 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x9ee59afe vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x9ef2a94d eth_gro_complete -EXPORT_SYMBOL vmlinux 0x9f0ab7dc __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x9f1eb277 bitmap_unplug -EXPORT_SYMBOL vmlinux 0x9f265a22 __vfs_read -EXPORT_SYMBOL vmlinux 0x9f2d5fd1 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x9f356559 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f59e594 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fbf2bda __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0x9fcf9dee thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x9fd048cc pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe9192c security_path_unlink -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa0139dc5 __inode_permission -EXPORT_SYMBOL vmlinux 0xa019c993 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xa022d4df set_page_dirty -EXPORT_SYMBOL vmlinux 0xa02d4777 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xa03497da kernel_bind -EXPORT_SYMBOL vmlinux 0xa03cabcc vfs_statfs -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa0463dd3 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0xa073d865 netlink_broadcast -EXPORT_SYMBOL vmlinux 0xa0792541 mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa10132d8 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa114c39d mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa1254f20 scsi_print_result -EXPORT_SYMBOL vmlinux 0xa1270c87 tty_unregister_device -EXPORT_SYMBOL vmlinux 0xa137defa tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts -EXPORT_SYMBOL vmlinux 0xa1936285 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0xa19de3fd boot_cpu_data -EXPORT_SYMBOL vmlinux 0xa1a942f7 led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1ba43a9 param_set_int -EXPORT_SYMBOL vmlinux 0xa1be58ea jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xa1c2ec15 block_commit_write -EXPORT_SYMBOL vmlinux 0xa1c35853 skb_dequeue -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1cc7564 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1ea23fd pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa21d0b6c put_tty_driver -EXPORT_SYMBOL vmlinux 0xa220a660 dma_alloc_from_coherent -EXPORT_SYMBOL vmlinux 0xa2439a4d seq_lseek -EXPORT_SYMBOL vmlinux 0xa2690aba netdev_warn -EXPORT_SYMBOL vmlinux 0xa26d8579 security_path_mkdir -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa2988e45 abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0xa298d8fc security_mmap_file -EXPORT_SYMBOL vmlinux 0xa2a2650a sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xa2c7e717 mmc_power_save_host -EXPORT_SYMBOL vmlinux 0xa2d73538 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xa3065a02 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node -EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc -EXPORT_SYMBOL vmlinux 0xa36f2bd5 skb_copy_expand -EXPORT_SYMBOL vmlinux 0xa37014a1 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get -EXPORT_SYMBOL vmlinux 0xa38fcc4b tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xa3aa3e3a ps2_command -EXPORT_SYMBOL vmlinux 0xa3c9ada4 skb_seq_read -EXPORT_SYMBOL vmlinux 0xa3dcbfd3 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xa3e3d180 mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0xa3e73f8e single_open_size -EXPORT_SYMBOL vmlinux 0xa3f62003 kunmap -EXPORT_SYMBOL vmlinux 0xa415f024 i2c_release_client -EXPORT_SYMBOL vmlinux 0xa418fa91 neigh_for_each -EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf -EXPORT_SYMBOL vmlinux 0xa43bc062 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0xa445a6b7 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xa44781fc netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xa458cdf6 __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0xa4605623 blk_make_request -EXPORT_SYMBOL vmlinux 0xa4654529 generic_perform_write -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa483cd3f sock_alloc_file -EXPORT_SYMBOL vmlinux 0xa4adcd55 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xa4b8dd66 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4bd30e8 block_write_begin -EXPORT_SYMBOL vmlinux 0xa4cd667e tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4d83193 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xa4d94a26 skb_free_datagram -EXPORT_SYMBOL vmlinux 0xa4e0badb register_framebuffer -EXPORT_SYMBOL vmlinux 0xa4e70180 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0xa4f8b24e devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0xa5129973 __scm_destroy -EXPORT_SYMBOL vmlinux 0xa514c173 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0xa51904d9 blk_finish_request -EXPORT_SYMBOL vmlinux 0xa51cdfe8 __FIXADDR_TOP -EXPORT_SYMBOL vmlinux 0xa52c6c1b dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa56322c9 blk_complete_request -EXPORT_SYMBOL vmlinux 0xa572d88f dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xa574d85d sk_stream_write_space -EXPORT_SYMBOL vmlinux 0xa57d4711 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5b46106 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xa5cf5572 bdi_register -EXPORT_SYMBOL vmlinux 0xa60c9c0b pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xa613cc1c follow_pfn -EXPORT_SYMBOL vmlinux 0xa62b1c05 bio_integrity_endio -EXPORT_SYMBOL vmlinux 0xa62e6e4f acpi_get_table_with_size -EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember -EXPORT_SYMBOL vmlinux 0xa6431a81 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xa655007e pnp_device_attach -EXPORT_SYMBOL vmlinux 0xa65d2116 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xa66c7e6e blkdev_get -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa677e239 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6839f82 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xa68a1a07 kmem_cache_size -EXPORT_SYMBOL vmlinux 0xa68c714e param_array_ops -EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa6983152 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xa6b2cb14 revalidate_disk -EXPORT_SYMBOL vmlinux 0xa6b839d7 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up -EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error -EXPORT_SYMBOL vmlinux 0xa6f14846 vme_irq_free -EXPORT_SYMBOL vmlinux 0xa6f1487c generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa748f8a2 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xa76bf4ce pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xa76f5927 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0xa778b78c pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock -EXPORT_SYMBOL vmlinux 0xa78979fc copy_page_to_iter -EXPORT_SYMBOL vmlinux 0xa7cf6c2f atomic64_dec_return_cx8 -EXPORT_SYMBOL vmlinux 0xa7d6965e generic_file_open -EXPORT_SYMBOL vmlinux 0xa7ea4740 posix_lock_file -EXPORT_SYMBOL vmlinux 0xa816491d fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0xa8186b1d pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xa81c2edf netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xa81e8344 pci_choose_state -EXPORT_SYMBOL vmlinux 0xa831cb89 set_pages_x -EXPORT_SYMBOL vmlinux 0xa834d3bc iget5_locked -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa84433e2 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xa8514c4d abx500_register_ops -EXPORT_SYMBOL vmlinux 0xa8531824 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xa85b6b30 scsi_unregister -EXPORT_SYMBOL vmlinux 0xa866fedc acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0xa86aee12 lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0xa871c114 xattr_full_name -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa88661b6 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0xa888f238 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xa88aeecc pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xa88b7a9d __skb_tx_hash -EXPORT_SYMBOL vmlinux 0xa8b70cad mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xa8fa84e9 give_up_console -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa94bf737 pci_map_biosrom -EXPORT_SYMBOL vmlinux 0xa95dd9f8 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0xa9bfb672 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0xa9c0773a page_address -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9c7a6b7 pci_set_master -EXPORT_SYMBOL vmlinux 0xa9cfe574 mmc_get_card -EXPORT_SYMBOL vmlinux 0xa9cfea6b x86_hyper -EXPORT_SYMBOL vmlinux 0xa9dc5e19 key_revoke -EXPORT_SYMBOL vmlinux 0xa9ea8a41 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0xa9f4e635 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xaa48c151 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0xaa58c962 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0xaa6567b8 posix_unblock_lock -EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa88f149 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0xaa8fea18 acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xaad00d24 param_ops_uint -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad32e7b twl6040_reg_read -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaade4c38 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xaae13d98 nobh_writepage -EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaee0c55 __blk_run_queue -EXPORT_SYMBOL vmlinux 0xaaf2b3a7 vfs_readf -EXPORT_SYMBOL vmlinux 0xaafbb678 elevator_exit -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab199610 nvm_put_blk -EXPORT_SYMBOL vmlinux 0xab1f2564 dev_addr_del -EXPORT_SYMBOL vmlinux 0xab453559 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc -EXPORT_SYMBOL vmlinux 0xab694444 bsearch -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab87cc47 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xaba3159c gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xaba7666c pci_bus_put -EXPORT_SYMBOL vmlinux 0xabc7406a jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabd1890f inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xabd75081 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0xabed2a53 vfs_iter_write -EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac0db7e0 down_read_trylock -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac233c0a tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0xac250536 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xac29c893 lease_get_mtime -EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear -EXPORT_SYMBOL vmlinux 0xac4bb252 dqput -EXPORT_SYMBOL vmlinux 0xac51536b reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0xac730ed6 tty_vhangup -EXPORT_SYMBOL vmlinux 0xac769c08 irq_set_chip -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacab9990 elv_rb_add -EXPORT_SYMBOL vmlinux 0xacb19971 vfs_setpos -EXPORT_SYMBOL vmlinux 0xacb4d6a2 fsnotify_put_group -EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd6036b forget_cached_acl -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacfe53a5 netdev_state_change -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad072607 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0xad0f752a _dev_info -EXPORT_SYMBOL vmlinux 0xad13bedf mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0xad3e22a1 __secpath_destroy -EXPORT_SYMBOL vmlinux 0xad44bc97 tty_port_destroy -EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xad5645db posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xad693325 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xad698f77 dqstats -EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad85822a md_unregister_thread -EXPORT_SYMBOL vmlinux 0xad9fd613 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xadac3c97 skb_vlan_push -EXPORT_SYMBOL vmlinux 0xadb21eff phy_resume -EXPORT_SYMBOL vmlinux 0xadbe4f56 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xadc8948b set_security_override -EXPORT_SYMBOL vmlinux 0xadc98852 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xadf7a61b i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae02dd3e jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list -EXPORT_SYMBOL vmlinux 0xae2d4c19 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xae315524 md_finish_reshape -EXPORT_SYMBOL vmlinux 0xae49501b dma_release_from_coherent -EXPORT_SYMBOL vmlinux 0xae4f2ef4 lro_receive_skb -EXPORT_SYMBOL vmlinux 0xae54fe89 napi_get_frags -EXPORT_SYMBOL vmlinux 0xae5c86f5 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xae5cc546 nvm_erase_blk -EXPORT_SYMBOL vmlinux 0xae5fb259 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xae648cba jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0xae6c7fa7 pci_read_vpd -EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup -EXPORT_SYMBOL vmlinux 0xae8e065f fb_set_cmap -EXPORT_SYMBOL vmlinux 0xae996911 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xaead915c input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0xaee7db6b arp_xmit -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf4b1540 acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids -EXPORT_SYMBOL vmlinux 0xaf6c3d05 ht_create_irq -EXPORT_SYMBOL vmlinux 0xaf6f68ad mutex_trylock -EXPORT_SYMBOL vmlinux 0xaf9affc8 vga_put -EXPORT_SYMBOL vmlinux 0xafa046f0 __vfs_write -EXPORT_SYMBOL vmlinux 0xafa450ff i2c_transfer -EXPORT_SYMBOL vmlinux 0xafb5b5df simple_readpage -EXPORT_SYMBOL vmlinux 0xafd1f949 release_firmware -EXPORT_SYMBOL vmlinux 0xafdbc913 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0xaff7942e inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xb00cb23c param_set_bool -EXPORT_SYMBOL vmlinux 0xb016e46a dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries -EXPORT_SYMBOL vmlinux 0xb021ce32 may_umount_tree -EXPORT_SYMBOL vmlinux 0xb0540351 fs_bio_set -EXPORT_SYMBOL vmlinux 0xb0558b11 irq_to_desc -EXPORT_SYMBOL vmlinux 0xb05ac3aa __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb0655b11 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0xb069a523 clkdev_drop -EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b380ab __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0b61c07 xfrm_input -EXPORT_SYMBOL vmlinux 0xb0dc920c bioset_create -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0xb0ef7477 bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xb0ff6725 acl_by_type -EXPORT_SYMBOL vmlinux 0xb10cae96 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xb118123c bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xb11e8073 dquot_resume -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb12f293b set_pages_array_wb -EXPORT_SYMBOL vmlinux 0xb14d5442 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb167dac3 agp_backend_acquire -EXPORT_SYMBOL vmlinux 0xb16980ac i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xb182660d simple_release_fs -EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init -EXPORT_SYMBOL vmlinux 0xb1acbd7a __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c48579 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu -EXPORT_SYMBOL vmlinux 0xb1d11308 input_allocate_device -EXPORT_SYMBOL vmlinux 0xb1eb7222 fb_find_mode -EXPORT_SYMBOL vmlinux 0xb1f9272e __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu -EXPORT_SYMBOL vmlinux 0xb226f9e0 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0xb24582d7 pcim_pin_device -EXPORT_SYMBOL vmlinux 0xb249fd93 agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0xb2606408 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xb2638f5a pnp_find_card -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb2723b1c pnp_get_resource -EXPORT_SYMBOL vmlinux 0xb27ad159 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xb293e718 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xb29c921f dquot_quota_on -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2c1d9c0 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xb2cfea83 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on -EXPORT_SYMBOL vmlinux 0xb2d5a552 complete -EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove -EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 -EXPORT_SYMBOL vmlinux 0xb31010e6 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xb311d595 sync_blockdev -EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xb336fd0e i2c_master_send -EXPORT_SYMBOL vmlinux 0xb3442516 genl_notify -EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit -EXPORT_SYMBOL vmlinux 0xb35f9427 i2c_use_client -EXPORT_SYMBOL vmlinux 0xb35fd024 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xb36235cb blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0xb377cd5d md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xb3b00569 __devm_release_region -EXPORT_SYMBOL vmlinux 0xb3bb33ff xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb3cf4103 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3e0590d acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3f99ac3 dump_skip -EXPORT_SYMBOL vmlinux 0xb41536e0 skb_clone -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb431e837 thaw_bdev -EXPORT_SYMBOL vmlinux 0xb4390f9a mcount -EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem -EXPORT_SYMBOL vmlinux 0xb454a2ff mntget -EXPORT_SYMBOL vmlinux 0xb45578b8 memscan -EXPORT_SYMBOL vmlinux 0xb4632a9a mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb4870f64 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0xb48fe751 dm_put_table_device -EXPORT_SYMBOL vmlinux 0xb4923ae2 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xb4a1fdac up_write -EXPORT_SYMBOL vmlinux 0xb4aad2eb lwtunnel_input -EXPORT_SYMBOL vmlinux 0xb4b2b55f blk_requeue_request -EXPORT_SYMBOL vmlinux 0xb4cf3d20 alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0xb4d02e2f security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xb4dbf56b pid_task -EXPORT_SYMBOL vmlinux 0xb4e66479 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0xb4e89ce7 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xb504c942 ip_options_compile -EXPORT_SYMBOL vmlinux 0xb5099738 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xb5229392 cpu_sibling_map -EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range -EXPORT_SYMBOL vmlinux 0xb5604b25 bio_copy_data -EXPORT_SYMBOL vmlinux 0xb57110ae netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb58f44e2 pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5c5b061 ihold -EXPORT_SYMBOL vmlinux 0xb5c5e755 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free -EXPORT_SYMBOL vmlinux 0xb5d17c1f tty_port_init -EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xb600db08 netlink_ack -EXPORT_SYMBOL vmlinux 0xb61d62d7 udplite_prot -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb626be67 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xb63331b6 set_groups -EXPORT_SYMBOL vmlinux 0xb636c487 km_query -EXPORT_SYMBOL vmlinux 0xb670412f jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif -EXPORT_SYMBOL vmlinux 0xb68b4c45 generic_block_bmap -EXPORT_SYMBOL vmlinux 0xb6930b3c fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a1aaba fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6c06cf3 rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0xb6e41883 memcmp -EXPORT_SYMBOL vmlinux 0xb6ed1e53 strncpy -EXPORT_SYMBOL vmlinux 0xb6eff01f blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xb70ca2ae neigh_direct_output -EXPORT_SYMBOL vmlinux 0xb711783d tso_build_data -EXPORT_SYMBOL vmlinux 0xb7314627 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xb73b3728 genphy_resume -EXPORT_SYMBOL vmlinux 0xb73b4886 scsi_target_resume -EXPORT_SYMBOL vmlinux 0xb73f669b fb_is_primary_device -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb74c569b bdgrab -EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event -EXPORT_SYMBOL vmlinux 0xb766b5d0 __dquot_free_space -EXPORT_SYMBOL vmlinux 0xb76e9e12 uart_match_port -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb77b9f81 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xb7872a5b generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0xb79f33f6 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xb7a6d5e6 free_buffer_head -EXPORT_SYMBOL vmlinux 0xb7b0ad80 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xb7bb0230 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0xb7beff46 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d651fa md_integrity_register -EXPORT_SYMBOL vmlinux 0xb7d7a06d md_done_sync -EXPORT_SYMBOL vmlinux 0xb7f55ecc atomic64_add_return_cx8 -EXPORT_SYMBOL vmlinux 0xb7f6ef59 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xb7fc2b41 proc_mkdir -EXPORT_SYMBOL vmlinux 0xb8095c31 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0xb813f2d5 __sock_create -EXPORT_SYMBOL vmlinux 0xb8160b72 device_get_mac_address -EXPORT_SYMBOL vmlinux 0xb81960ca snprintf -EXPORT_SYMBOL vmlinux 0xb81b6f5f blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xb8285ef5 arp_create -EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xb839e07c ll_rw_block -EXPORT_SYMBOL vmlinux 0xb859915f blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0xb865bc47 abx500_remove_ops -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb87dcd6f mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xb89b9d7f pnpbios_protocol -EXPORT_SYMBOL vmlinux 0xb8a3a5ae mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add -EXPORT_SYMBOL vmlinux 0xb8cf9c6d netdev_crit -EXPORT_SYMBOL vmlinux 0xb8e50e63 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 -EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xb8ef1292 datagram_poll -EXPORT_SYMBOL vmlinux 0xb8ef502b get_io_context -EXPORT_SYMBOL vmlinux 0xb8efdaf4 check_disk_change -EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize -EXPORT_SYMBOL vmlinux 0xb9033219 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0xb91de18a md_check_recovery -EXPORT_SYMBOL vmlinux 0xb926ed41 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xb927d3f4 md_write_start -EXPORT_SYMBOL vmlinux 0xb9cac993 scsi_print_command -EXPORT_SYMBOL vmlinux 0xb9d0d1ef dmam_pool_create -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xba00b4dc __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xba0b8bd9 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0xba1b5838 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xba1c9d16 __nd_driver_register -EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read -EXPORT_SYMBOL vmlinux 0xba2f112c bioset_free -EXPORT_SYMBOL vmlinux 0xba3471eb vme_slave_request -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba6852cc vme_master_mmap -EXPORT_SYMBOL vmlinux 0xba75963c unlock_page -EXPORT_SYMBOL vmlinux 0xba99a06d qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xbab055c9 dma_async_device_register -EXPORT_SYMBOL vmlinux 0xbab7a1b9 md_error -EXPORT_SYMBOL vmlinux 0xbab7aff3 param_set_bint -EXPORT_SYMBOL vmlinux 0xbab88ff1 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0xbae3d602 d_alloc -EXPORT_SYMBOL vmlinux 0xbae4bd07 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xbae97ec3 input_set_keycode -EXPORT_SYMBOL vmlinux 0xbafcdedd get_tz_trend -EXPORT_SYMBOL vmlinux 0xbaffe035 udp_set_csum -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb15e78a ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb421a96 __find_get_block -EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb7a774e __inet_hash -EXPORT_SYMBOL vmlinux 0xbb7ef2f7 dev_notice -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbba3c8c0 sock_sendmsg -EXPORT_SYMBOL vmlinux 0xbba43948 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xbbae7660 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xbbc6f0a9 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt -EXPORT_SYMBOL vmlinux 0xbbf8aa27 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xbbfd79a0 set_pages_uc -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc358c6a dump_trace -EXPORT_SYMBOL vmlinux 0xbc3d54aa cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xbc3f86fa brioctl_set -EXPORT_SYMBOL vmlinux 0xbc435770 dump_stack -EXPORT_SYMBOL vmlinux 0xbc4a0a8f fsnotify_get_group -EXPORT_SYMBOL vmlinux 0xbc5f49cc loop_backing_file -EXPORT_SYMBOL vmlinux 0xbc618141 single_release -EXPORT_SYMBOL vmlinux 0xbc72b0fc set_create_files_as -EXPORT_SYMBOL vmlinux 0xbc811b13 x86_dma_fallback_dev -EXPORT_SYMBOL vmlinux 0xbc923675 d_rehash -EXPORT_SYMBOL vmlinux 0xbca37953 pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcc40a4c read_code -EXPORT_SYMBOL vmlinux 0xbcd8a608 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xbce0bab9 fb_validate_mode -EXPORT_SYMBOL vmlinux 0xbcfb08c7 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xbd02174b blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xbd1ff748 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0xbd24aab2 mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0xbd446f20 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xbd4947f2 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xbd59dd7a sk_wait_data -EXPORT_SYMBOL vmlinux 0xbd637321 netdev_notice -EXPORT_SYMBOL vmlinux 0xbd6d9457 tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0xbd79eb4f sg_miter_skip -EXPORT_SYMBOL vmlinux 0xbd81e852 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbd9b6200 agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0xbdae4391 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xbdc1ed63 dcache_dir_close -EXPORT_SYMBOL vmlinux 0xbdcdd816 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xbdd5f990 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xbdf6a5cc dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0xbdf8bd80 pci_find_bus -EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp -EXPORT_SYMBOL vmlinux 0xbe16e9b7 request_key_async -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe271159 sync_filesystem -EXPORT_SYMBOL vmlinux 0xbe34011a generic_make_request -EXPORT_SYMBOL vmlinux 0xbe34d664 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xbe743bb0 simple_transaction_set -EXPORT_SYMBOL vmlinux 0xbe8c37d9 intel_scu_ipc_simple_command -EXPORT_SYMBOL vmlinux 0xbe9a1dcd mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0xbea61a80 d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0xbead97dc md_reload_sb -EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu -EXPORT_SYMBOL vmlinux 0xbed2c8fb pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbef8f8c8 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xbf02f336 vlan_vid_del -EXPORT_SYMBOL vmlinux 0xbf0407c6 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xbf0e2f68 tcp_prequeue -EXPORT_SYMBOL vmlinux 0xbf21dc8a alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xbf28eaa4 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xbf2ec081 kill_block_super -EXPORT_SYMBOL vmlinux 0xbf332cb4 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xbf3bf346 netif_device_attach -EXPORT_SYMBOL vmlinux 0xbf4d65b1 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xbf552af4 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xbf604fc3 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0xbf75d1df pci_release_region -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf8b39e9 isapnp_present -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfae8f00 nvm_register_mgr -EXPORT_SYMBOL vmlinux 0xbfaedb5d __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfd66694 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xbfde47f9 nf_log_trace -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc01eed33 __copy_from_user_ll_nozero -EXPORT_SYMBOL vmlinux 0xc0241fd4 fb_set_suspend -EXPORT_SYMBOL vmlinux 0xc03e5aeb tty_devnum -EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0aca99b xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0xc0cd3b13 ___ratelimit -EXPORT_SYMBOL vmlinux 0xc0ed9606 dst_release -EXPORT_SYMBOL vmlinux 0xc0f05259 d_splice_alias -EXPORT_SYMBOL vmlinux 0xc119254f generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten -EXPORT_SYMBOL vmlinux 0xc13025ee con_copy_unimap -EXPORT_SYMBOL vmlinux 0xc13b2c8b dmam_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0xc1437de3 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xc1517937 sg_miter_stop -EXPORT_SYMBOL vmlinux 0xc155a750 kernel_read -EXPORT_SYMBOL vmlinux 0xc169e242 sock_init_data -EXPORT_SYMBOL vmlinux 0xc16f0f34 mmc_register_driver -EXPORT_SYMBOL vmlinux 0xc1a6b020 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1f62fad neigh_parms_release -EXPORT_SYMBOL vmlinux 0xc22e8703 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0xc233253f call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc25230ac netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xc280a525 __copy_from_user_ll -EXPORT_SYMBOL vmlinux 0xc28674dc get_super_thawed -EXPORT_SYMBOL vmlinux 0xc289c963 mmc_can_erase -EXPORT_SYMBOL vmlinux 0xc2a174f7 ether_setup -EXPORT_SYMBOL vmlinux 0xc2a26a64 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xc2cb1bdf mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0xc2cbfad7 kernel_accept -EXPORT_SYMBOL vmlinux 0xc2d00562 __brelse -EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2e63b78 consume_skb -EXPORT_SYMBOL vmlinux 0xc33124e2 address_space_init_once -EXPORT_SYMBOL vmlinux 0xc33b97f2 mount_nodev -EXPORT_SYMBOL vmlinux 0xc353045c pci_enable_msix -EXPORT_SYMBOL vmlinux 0xc396a4e3 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 -EXPORT_SYMBOL vmlinux 0xc3b1e142 cfb_imageblit -EXPORT_SYMBOL vmlinux 0xc3ba19b8 mdio_bus_type -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3c81c1d blk_init_queue -EXPORT_SYMBOL vmlinux 0xc3fa6a59 memchr -EXPORT_SYMBOL vmlinux 0xc41f0516 node_states -EXPORT_SYMBOL vmlinux 0xc435ed50 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0xc4503abd put_io_context -EXPORT_SYMBOL vmlinux 0xc4506858 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0xc45fdb30 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xc46fb14a devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xc47091e8 inet_shutdown -EXPORT_SYMBOL vmlinux 0xc47fb89f skb_tx_error -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc4adb839 blk_free_tags -EXPORT_SYMBOL vmlinux 0xc4b14cd3 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xc4b3e56d dquot_operations -EXPORT_SYMBOL vmlinux 0xc4c7d163 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xc4e1b11e seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xc5022a46 d_genocide -EXPORT_SYMBOL vmlinux 0xc5032e53 security_inode_permission -EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid -EXPORT_SYMBOL vmlinux 0xc51d03f6 pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0xc5462085 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0xc54e987d dev_driver_string -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc55a6371 mmc_free_host -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59ffbb4 console_start -EXPORT_SYMBOL vmlinux 0xc5a90718 dev_printk_emit -EXPORT_SYMBOL vmlinux 0xc5b2ad32 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xc5b6c880 neigh_app_ns -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5e0a8de dentry_path_raw -EXPORT_SYMBOL vmlinux 0xc5e61fb5 __ip_dev_find -EXPORT_SYMBOL vmlinux 0xc5ebb8d3 acpi_device_hid -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc60bbd6b twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0xc614c4bb padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xc61a396e dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0xc629fd47 phy_init_eee -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc6316630 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0xc6722440 d_find_alias -EXPORT_SYMBOL vmlinux 0xc678f9eb kern_unmount -EXPORT_SYMBOL vmlinux 0xc67a09fe intel_gtt_get -EXPORT_SYMBOL vmlinux 0xc683e425 lookup_bdev -EXPORT_SYMBOL vmlinux 0xc6849840 pnp_find_dev -EXPORT_SYMBOL vmlinux 0xc68c6faa cfb_fillrect -EXPORT_SYMBOL vmlinux 0xc693442c kernel_getsockname -EXPORT_SYMBOL vmlinux 0xc6b23120 intel_scu_ipc_iowrite16 -EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xc6bac585 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6cd4fb9 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0xc6d4f843 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0xc6d82301 flow_cache_init -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc7294bbb dev_addr_flush -EXPORT_SYMBOL vmlinux 0xc7306183 __blk_end_request_all -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc782b7de simple_getattr -EXPORT_SYMBOL vmlinux 0xc7851c2c release_sock -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a2c408 scsi_host_get -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7dbd6e1 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xc7e960e4 truncate_pagecache -EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xc80225f3 __ps2_command -EXPORT_SYMBOL vmlinux 0xc8065a78 d_delete -EXPORT_SYMBOL vmlinux 0xc81806f2 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0xc81b1565 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xc82e5291 netlink_unicast -EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape -EXPORT_SYMBOL vmlinux 0xc838f7c6 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc8572f2e xfrm_init_state -EXPORT_SYMBOL vmlinux 0xc870687d softnet_data -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc87999b8 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0xc87b3c4b cancel_dirty_page -EXPORT_SYMBOL vmlinux 0xc88481bf __serio_register_port -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc898c8be fddi_type_trans -EXPORT_SYMBOL vmlinux 0xc8a51a71 agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b3b1f0 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8b6c258 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0xc8ce3895 blk_get_queue -EXPORT_SYMBOL vmlinux 0xc8d133da page_symlink -EXPORT_SYMBOL vmlinux 0xc8d29d26 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xc8da7c18 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xc8ee2126 d_obtain_alias -EXPORT_SYMBOL vmlinux 0xc8fa1f45 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0xc90ca41d inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc914e9ff __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0xc91ef5a1 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xc95da88e cdrom_open -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc968bae0 mmc_can_reset -EXPORT_SYMBOL vmlinux 0xc9816ad9 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock -EXPORT_SYMBOL vmlinux 0xc9c0e42b __lock_buffer -EXPORT_SYMBOL vmlinux 0xc9e9a6e9 nvm_submit_io -EXPORT_SYMBOL vmlinux 0xc9f12662 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue -EXPORT_SYMBOL vmlinux 0xca086b5b skb_store_bits -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca2037d4 simple_write_end -EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xca5cdaf8 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xca6f2a6e tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcaa510ec d_move -EXPORT_SYMBOL vmlinux 0xcaa8ceeb gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xcabbb530 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0xcabef4e8 sk_receive_skb -EXPORT_SYMBOL vmlinux 0xcac72fa2 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xcad38029 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0xcaddadc4 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcaf69526 copy_to_iter -EXPORT_SYMBOL vmlinux 0xcb01efec kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb03f80b kmap_atomic_prot -EXPORT_SYMBOL vmlinux 0xcb0cc6d8 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0xcb48d869 blk_init_queue_node -EXPORT_SYMBOL vmlinux 0xcb4c01bb i2c_master_recv -EXPORT_SYMBOL vmlinux 0xcb4fa4b2 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0xcb7269ca blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb82f40d blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xcb8504f9 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0xcb8c8371 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0xcb911fc2 __sk_dst_check -EXPORT_SYMBOL vmlinux 0xcb985dbe __pci_register_driver -EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister -EXPORT_SYMBOL vmlinux 0xcbaeebb6 registered_fb -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcbead388 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0xcbf4e0a9 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0xcc001845 ata_dev_printk -EXPORT_SYMBOL vmlinux 0xcc017c58 dump_truncate -EXPORT_SYMBOL vmlinux 0xcc080d46 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc424eae ppp_unit_number -EXPORT_SYMBOL vmlinux 0xcc4d1bfb atomic64_read_cx8 -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc592ec2 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl -EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute -EXPORT_SYMBOL vmlinux 0xcc90209c kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xcccda200 iterate_fd -EXPORT_SYMBOL vmlinux 0xccd9d5f1 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xcd02fa1b md_cluster_ops -EXPORT_SYMBOL vmlinux 0xcd0c3540 remove_proc_entry -EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd4af2b1 freeze_super -EXPORT_SYMBOL vmlinux 0xcd506d95 __frontswap_load -EXPORT_SYMBOL vmlinux 0xcd5c87c1 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xcd5f543b page_waitqueue -EXPORT_SYMBOL vmlinux 0xcd62e080 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0xcda8cd53 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xcdac1213 tcp_ioctl -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc4ae0c bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xcdec8eb8 generic_permission -EXPORT_SYMBOL vmlinux 0xcdf83cf3 simple_open -EXPORT_SYMBOL vmlinux 0xce022d20 __seq_open_private -EXPORT_SYMBOL vmlinux 0xce247caf __register_nls -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xce384d45 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce693b24 down_write_trylock -EXPORT_SYMBOL vmlinux 0xce73d500 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0xce752477 acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0xce772346 scsi_ioctl -EXPORT_SYMBOL vmlinux 0xce8f60b2 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0xce91d545 inode_permission -EXPORT_SYMBOL vmlinux 0xce9a1dee elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0xce9e41e9 lockref_get -EXPORT_SYMBOL vmlinux 0xcea091e0 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcec64eb3 vfs_fsync -EXPORT_SYMBOL vmlinux 0xcecc5e69 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xced5010c setup_new_exec -EXPORT_SYMBOL vmlinux 0xcedfc84d lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefa35bc tcf_hash_insert -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf234190 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0xcf2af63b xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free -EXPORT_SYMBOL vmlinux 0xcf73abb7 blk_integrity_register -EXPORT_SYMBOL vmlinux 0xcf78231d __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xcf7b9286 vme_lm_request -EXPORT_SYMBOL vmlinux 0xcf976397 max8998_write_reg -EXPORT_SYMBOL vmlinux 0xcfa29214 pagecache_get_page -EXPORT_SYMBOL vmlinux 0xcfb21a1f free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xcfcd2cbb devm_ioport_map -EXPORT_SYMBOL vmlinux 0xcfd41ecf write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xcfdd6ed8 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xcfde606d sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xcfe05d4d register_kmmio_probe -EXPORT_SYMBOL vmlinux 0xcff1f9b8 nd_integrity_init -EXPORT_SYMBOL vmlinux 0xcffa9935 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xcffb2879 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0xd00d44d0 mdiobus_write -EXPORT_SYMBOL vmlinux 0xd0263444 blk_start_request -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd09f09c1 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a5a44e skb_trim -EXPORT_SYMBOL vmlinux 0xd0a90e79 kset_register -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0b420de empty_aops -EXPORT_SYMBOL vmlinux 0xd0d8621b strlen -EXPORT_SYMBOL vmlinux 0xd0e14fc4 mdiobus_free -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd103032f vme_bus_type -EXPORT_SYMBOL vmlinux 0xd10e51b6 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0xd115ac5e pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xd13ab21c filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0xd151c188 phy_init_hw -EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info -EXPORT_SYMBOL vmlinux 0xd165e0fb register_qdisc -EXPORT_SYMBOL vmlinux 0xd1740685 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd18b4aeb set_pages_array_wc -EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xd19b9df5 invalidate_bdev -EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1e50516 flush_old_exec -EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings -EXPORT_SYMBOL vmlinux 0xd2012a8f input_unregister_handler -EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace -EXPORT_SYMBOL vmlinux 0xd20970e4 set_nlink -EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd211d0ba ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xd22a0b37 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd25cd067 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd2733754 ata_port_printk -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd2a6a0f7 do_splice_to -EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class -EXPORT_SYMBOL vmlinux 0xd2b11481 generic_removexattr -EXPORT_SYMBOL vmlinux 0xd2b8adfa udp_prot -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e6a582 acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xd32fb6a4 pci_fixup_device -EXPORT_SYMBOL vmlinux 0xd3490274 register_netdev -EXPORT_SYMBOL vmlinux 0xd35d2124 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xd37776d0 zpool_register_driver -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3cfae62 framebuffer_release -EXPORT_SYMBOL vmlinux 0xd3d07acb audit_log -EXPORT_SYMBOL vmlinux 0xd3e11702 blk_delay_queue -EXPORT_SYMBOL vmlinux 0xd3e1c351 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xd3e70c5d is_bad_inode -EXPORT_SYMBOL vmlinux 0xd423f8dc md_write_end -EXPORT_SYMBOL vmlinux 0xd4351d7f bio_alloc_pages -EXPORT_SYMBOL vmlinux 0xd44537e9 max8998_update_reg -EXPORT_SYMBOL vmlinux 0xd4467796 PDE_DATA -EXPORT_SYMBOL vmlinux 0xd4640a46 default_file_splice_read -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd4a64e48 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xd4c8d128 pci_platform_rom -EXPORT_SYMBOL vmlinux 0xd4d566af neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xd4e7787c dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xd5059929 find_get_entry -EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data -EXPORT_SYMBOL vmlinux 0xd511f91d tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xd51f395a pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xd52a9461 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0xd540acce inet_frag_find -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd5608fc9 sock_no_accept -EXPORT_SYMBOL vmlinux 0xd56bd159 dev_get_iflink -EXPORT_SYMBOL vmlinux 0xd57b7ee0 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd5c27887 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xd5e31bb0 skb_make_writable -EXPORT_SYMBOL vmlinux 0xd5e493b6 mmc_can_discard -EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xd5fa438c scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xd606ac4a i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd626adc5 key_put -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd62e9f2f blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xd639bef9 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xd63e84e3 __netif_schedule -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd663fa60 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xd6817d15 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock -EXPORT_SYMBOL vmlinux 0xd6921a9d kill_bdev -EXPORT_SYMBOL vmlinux 0xd6a7b0e3 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace -EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6bb8f6b fb_get_mode -EXPORT_SYMBOL vmlinux 0xd6e99fbf __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd7002c52 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xd725abcc agp_find_bridge -EXPORT_SYMBOL vmlinux 0xd72a33dd sock_recvmsg -EXPORT_SYMBOL vmlinux 0xd7307b35 dev_get_by_index -EXPORT_SYMBOL vmlinux 0xd730959d seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xd74e49c6 phy_stop -EXPORT_SYMBOL vmlinux 0xd74eedc5 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0xd74fc792 pcie_set_mps -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd773dff7 unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write -EXPORT_SYMBOL vmlinux 0xd7af8253 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xd7afbf85 pv_cpu_ops -EXPORT_SYMBOL vmlinux 0xd7b388bd blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0xd7b80efe netif_skb_features -EXPORT_SYMBOL vmlinux 0xd7bbe4e3 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0xd7bd2e3a sock_efree -EXPORT_SYMBOL vmlinux 0xd7d08767 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f159d8 dm_register_target -EXPORT_SYMBOL vmlinux 0xd82dd277 inode_init_owner -EXPORT_SYMBOL vmlinux 0xd82f2469 inet_accept -EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put -EXPORT_SYMBOL vmlinux 0xd846080a ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xd8489ad3 eth_change_mtu -EXPORT_SYMBOL vmlinux 0xd8520b6f qdisc_reset -EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xd8628933 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xd8847827 key_link -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd89f279f jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e46ec2 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8f327a0 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0xd8f75fe1 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xd903e07e cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0xd92e2dca tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xd93e8d84 inode_needs_sync -EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference -EXPORT_SYMBOL vmlinux 0xd94b2b1d arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0xd9596409 param_get_invbool -EXPORT_SYMBOL vmlinux 0xd95a4602 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done -EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected -EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu -EXPORT_SYMBOL vmlinux 0xd97e3d77 iget_failed -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd989c434 pcibios_set_irq_routing -EXPORT_SYMBOL vmlinux 0xd98ee8d8 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xd9c49e0f elv_register_queue -EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9ed1779 rfkill_alloc -EXPORT_SYMBOL vmlinux 0xda08c0d7 pcibios_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xda2e1a82 simple_dir_operations -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda8fd495 isapnp_write_byte -EXPORT_SYMBOL vmlinux 0xdaa5618f locks_free_lock -EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages -EXPORT_SYMBOL vmlinux 0xdab65ff3 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0xdac02e8e elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac6df5f vga_con -EXPORT_SYMBOL vmlinux 0xdad95d88 mount_bdev -EXPORT_SYMBOL vmlinux 0xdadfbdf3 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg -EXPORT_SYMBOL vmlinux 0xdb42782a __ip_select_ident -EXPORT_SYMBOL vmlinux 0xdb53196e dm_get_device -EXPORT_SYMBOL vmlinux 0xdb54f34c bd_set_size -EXPORT_SYMBOL vmlinux 0xdb5812ad flow_cache_fini -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xdb7468fb agp_bridge -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7f021f param_ops_charp -EXPORT_SYMBOL vmlinux 0xdb81354e block_write_full_page -EXPORT_SYMBOL vmlinux 0xdb89d9b7 param_set_copystring -EXPORT_SYMBOL vmlinux 0xdb9b74d2 zero_fill_bio -EXPORT_SYMBOL vmlinux 0xdbe5ad15 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc11e950 dev_addr_init -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc43012d __destroy_inode -EXPORT_SYMBOL vmlinux 0xdc48a93b register_sysctl_table -EXPORT_SYMBOL vmlinux 0xdc493d86 register_key_type -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler -EXPORT_SYMBOL vmlinux 0xdc5904ce sock_kmalloc -EXPORT_SYMBOL vmlinux 0xdc70bbf7 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xdc7f7077 key_type_keyring -EXPORT_SYMBOL vmlinux 0xdca439d4 abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0xdcbb2488 inet_recvmsg -EXPORT_SYMBOL vmlinux 0xdcc2b007 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0xdcc6e0bc scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xdcdfff6a write_inode_now -EXPORT_SYMBOL vmlinux 0xdce50fe2 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xdcf30479 vlan_vid_add -EXPORT_SYMBOL vmlinux 0xdd07bcb3 get_thermal_instance -EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd2d118d abort_creds -EXPORT_SYMBOL vmlinux 0xdd3d9b9a security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xdd5e4384 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xdd608c37 genphy_update_link -EXPORT_SYMBOL vmlinux 0xdd620b10 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xdd6667e2 ppp_channel_index -EXPORT_SYMBOL vmlinux 0xdda72d0f __kfree_skb -EXPORT_SYMBOL vmlinux 0xddae9d2a thaw_super -EXPORT_SYMBOL vmlinux 0xddb37d02 proc_dointvec -EXPORT_SYMBOL vmlinux 0xddb5bc10 sock_no_listen -EXPORT_SYMBOL vmlinux 0xddcad836 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xddce9d95 scsi_remove_host -EXPORT_SYMBOL vmlinux 0xdddb3b00 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xddec236e nvm_unregister_target -EXPORT_SYMBOL vmlinux 0xde037207 neigh_seq_start -EXPORT_SYMBOL vmlinux 0xde0acd57 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xde16dc16 tboot -EXPORT_SYMBOL vmlinux 0xde51cbc4 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xde79d8e8 cad_pid -EXPORT_SYMBOL vmlinux 0xde8f68a4 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xdea2eb04 param_ops_bool -EXPORT_SYMBOL vmlinux 0xdebbe571 tcp_seq_open -EXPORT_SYMBOL vmlinux 0xdec2deb6 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xdec7f46d neigh_table_init -EXPORT_SYMBOL vmlinux 0xdecd51d0 tcp_filter -EXPORT_SYMBOL vmlinux 0xdecde886 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0xded931f3 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0xdedc7d7c agp_copy_info -EXPORT_SYMBOL vmlinux 0xdedcc653 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0xdefc89e1 ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices -EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdf1427e5 idr_remove -EXPORT_SYMBOL vmlinux 0xdf2466de lru_cache_add_file -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf314be7 fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf3a8387 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xdf4fc797 __register_nmi_handler -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf6a11dc backlight_force_update -EXPORT_SYMBOL vmlinux 0xdf79dcc3 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0xdf7a7e2d nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf9a3615 load_nls_default -EXPORT_SYMBOL vmlinux 0xdf9f321f xfrm6_rcv -EXPORT_SYMBOL vmlinux 0xdfab3957 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init -EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0xdfd6e39e __f_setown -EXPORT_SYMBOL vmlinux 0xdfd9a554 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xe04a62d7 serio_open -EXPORT_SYMBOL vmlinux 0xe04e88fb __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe062184f elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe07b1a28 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe089d701 ps2_handle_response -EXPORT_SYMBOL vmlinux 0xe090874a arp_tbl -EXPORT_SYMBOL vmlinux 0xe09a59e4 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xe09b40eb sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xe09b52ef dquot_initialize -EXPORT_SYMBOL vmlinux 0xe0a16a20 intel_scu_ipc_i2c_cntrl -EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0xe0afaeda iov_iter_advance -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b28978 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0xe10dbb9b fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xe12d74b0 i2c_register_driver -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe14549b6 kernel_getpeername -EXPORT_SYMBOL vmlinux 0xe14ba89a pci_request_region -EXPORT_SYMBOL vmlinux 0xe168f288 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe17848cf ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xe1aaab24 blk_peek_request -EXPORT_SYMBOL vmlinux 0xe1bff225 fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0xe1dc2f8f skb_split -EXPORT_SYMBOL vmlinux 0xe1e33412 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe201f69a vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xe20391cb proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0xe20538d7 vfs_writev -EXPORT_SYMBOL vmlinux 0xe2092cc9 neigh_ifdown -EXPORT_SYMBOL vmlinux 0xe219406e qdisc_list_add -EXPORT_SYMBOL vmlinux 0xe221eb16 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0xe229797c agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe2407b0d revert_creds -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xe25a1156 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xe265ff7b serio_close -EXPORT_SYMBOL vmlinux 0xe26cad40 mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2a62575 tcp_close -EXPORT_SYMBOL vmlinux 0xe2a63543 tcf_action_exec -EXPORT_SYMBOL vmlinux 0xe2bdafeb __bforget -EXPORT_SYMBOL vmlinux 0xe2d2f27a kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2dd9223 file_open_root -EXPORT_SYMBOL vmlinux 0xe2e5778d blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user -EXPORT_SYMBOL vmlinux 0xe2f2a23f mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup -EXPORT_SYMBOL vmlinux 0xe30163a2 generic_read_dir -EXPORT_SYMBOL vmlinux 0xe303f9ec param_set_byte -EXPORT_SYMBOL vmlinux 0xe30e61a7 generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0xe3197208 proc_dostring -EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set -EXPORT_SYMBOL vmlinux 0xe31cfc35 iput -EXPORT_SYMBOL vmlinux 0xe328f337 ip_defrag -EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0xe3a03e6d vga_switcheroo_set_dynamic_switch -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3bd0704 elv_unregister_queue -EXPORT_SYMBOL vmlinux 0xe3d0e96b twl6040_power -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3ead344 vfs_mkdir -EXPORT_SYMBOL vmlinux 0xe3f72192 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0xe406d628 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xe445db4a acpi_check_address_range -EXPORT_SYMBOL vmlinux 0xe44962ea lock_sock_fast -EXPORT_SYMBOL vmlinux 0xe4582019 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xe4582b81 mark_info_dirty -EXPORT_SYMBOL vmlinux 0xe4700c51 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe486329c skb_checksum_help -EXPORT_SYMBOL vmlinux 0xe48f65ae dev_add_offload -EXPORT_SYMBOL vmlinux 0xe4944208 dev_alert -EXPORT_SYMBOL vmlinux 0xe4afac9e uart_resume_port -EXPORT_SYMBOL vmlinux 0xe4b1a72f mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xe4bda608 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xe4cee4c9 netdev_info -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe506504b nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xe50f904f intel_scu_ipc_ioread16 -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe526d51d swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe -EXPORT_SYMBOL vmlinux 0xe53caeb1 dquot_scan_active -EXPORT_SYMBOL vmlinux 0xe54d8fb6 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xe5550c4e nf_log_unset -EXPORT_SYMBOL vmlinux 0xe56cf129 kset_unregister -EXPORT_SYMBOL vmlinux 0xe57335d2 sock_no_bind -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe59e8495 neigh_lookup -EXPORT_SYMBOL vmlinux 0xe5b98f5f vfs_writef -EXPORT_SYMBOL vmlinux 0xe5bb150d dquot_enable -EXPORT_SYMBOL vmlinux 0xe5bd39c7 scsi_dma_map -EXPORT_SYMBOL vmlinux 0xe5c3f10d unregister_console -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5fddc4f devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0xe6162877 down_killable -EXPORT_SYMBOL vmlinux 0xe61f8fd9 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xe6257be6 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0xe6336b60 vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs -EXPORT_SYMBOL vmlinux 0xe6544aaa kmem_cache_create -EXPORT_SYMBOL vmlinux 0xe65b20fa cont_write_begin -EXPORT_SYMBOL vmlinux 0xe664e68e mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xe6665173 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0xe666681d jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0xe67106ee dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xe67526fb bio_advance -EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe6c04f03 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xe6c576bf sock_wmalloc -EXPORT_SYMBOL vmlinux 0xe6d5c69c cleancache_register_ops -EXPORT_SYMBOL vmlinux 0xe6d66029 eth_header -EXPORT_SYMBOL vmlinux 0xe6d7643d jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe6fccfe6 get_cached_acl -EXPORT_SYMBOL vmlinux 0xe7117015 lock_rename -EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic -EXPORT_SYMBOL vmlinux 0xe72a74d7 bio_endio -EXPORT_SYMBOL vmlinux 0xe72b55ae blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xe749dfe5 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xe75ea898 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xe77e2a68 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xe781b5f6 intel_scu_ipc_readv -EXPORT_SYMBOL vmlinux 0xe78cb993 loop_register_transfer -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7f47d0b bio_integrity_free -EXPORT_SYMBOL vmlinux 0xe7fbdf77 tso_build_hdr -EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe82e698b pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0xe8364e21 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xe83954a3 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0xe8486ff6 iov_iter_zero -EXPORT_SYMBOL vmlinux 0xe86b76ff frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xe87025f0 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss -EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer -EXPORT_SYMBOL vmlinux 0xe88376d7 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8b68849 wrmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe91b7e93 request_firmware -EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xe95044db path_put -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0xe98586b9 d_obtain_root -EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu -EXPORT_SYMBOL vmlinux 0xe9acfac4 tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9fad7fc inet6_del_offload -EXPORT_SYMBOL vmlinux 0xe9fb82ad devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea1418c5 key_reject_and_link -EXPORT_SYMBOL vmlinux 0xea291af4 bio_clone_fast -EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xea49cbbe __getblk_slow -EXPORT_SYMBOL vmlinux 0xea4b8ad7 dqget -EXPORT_SYMBOL vmlinux 0xea4d25da pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xea552689 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xea62dea8 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xea638bcb rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xea730cb8 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xea7d645a fifo_set_limit -EXPORT_SYMBOL vmlinux 0xea807e68 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xea8f27bb phy_register_fixup -EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xea9ef793 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0xeab10992 inetdev_by_index -EXPORT_SYMBOL vmlinux 0xeabe6dfa param_get_ullong -EXPORT_SYMBOL vmlinux 0xeadfe3aa dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xeae3712b dput -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeaf44e72 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xeafe5e95 skb_queue_purge -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb3ced0f pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xeb449108 __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xeb610946 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xeb6c7035 scmd_printk -EXPORT_SYMBOL vmlinux 0xeb797b92 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xeb81dd97 phy_print_status -EXPORT_SYMBOL vmlinux 0xebb12929 agp_enable -EXPORT_SYMBOL vmlinux 0xebce58e4 set_user_nice -EXPORT_SYMBOL vmlinux 0xebe68b3b nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0xebe703e9 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xebff5cf5 fence_signal_locked -EXPORT_SYMBOL vmlinux 0xec1a376f tcf_exts_dump -EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit -EXPORT_SYMBOL vmlinux 0xec246e01 register_md_personality -EXPORT_SYMBOL vmlinux 0xec35de1a bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0xec46890c set_disk_ro -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec6dccb2 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xec757b7b ata_link_printk -EXPORT_SYMBOL vmlinux 0xec7bad4e padata_alloc -EXPORT_SYMBOL vmlinux 0xecadb21a __neigh_event_send -EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xece9b6d7 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xed0b2952 arch_dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xed32ad6a ilookup5_nowait -EXPORT_SYMBOL vmlinux 0xed5974e0 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed6038ff rtnl_create_link -EXPORT_SYMBOL vmlinux 0xed6b4984 get_super -EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xedb5265a del_gendisk -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedd80068 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xedf89a7e atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xedfe8214 input_unregister_handle -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee3c2d79 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xee3de0ea dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xee3ea061 prepare_binprm -EXPORT_SYMBOL vmlinux 0xee40d48e ata_print_version -EXPORT_SYMBOL vmlinux 0xee4c4123 nf_register_hook -EXPORT_SYMBOL vmlinux 0xee55e50e mmc_release_host -EXPORT_SYMBOL vmlinux 0xee7b11a1 kobject_get -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0xeed5f264 do_splice_from -EXPORT_SYMBOL vmlinux 0xeee9646c generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xeef02bd0 blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xeefbaf4d wireless_send_event -EXPORT_SYMBOL vmlinux 0xef0355da iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0xef49e1fd shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xef5954e8 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xef620641 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xef89117e gnttab_free_pages -EXPORT_SYMBOL vmlinux 0xef922859 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xef9685f7 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0xef986265 nonseekable_open -EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override -EXPORT_SYMBOL vmlinux 0xef9bf750 inet6_offloads -EXPORT_SYMBOL vmlinux 0xefb56af2 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xefbd8165 nf_afinfo -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefda8d99 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf00f4720 security_inode_readlink -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf02a4abd do_truncate -EXPORT_SYMBOL vmlinux 0xf05122d2 locks_copy_lock -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0xf07990d3 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xf07c2eb4 __skb_checksum -EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf09e8cdd xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0xf0b082c6 vga_switcheroo_init_domain_pm_ops -EXPORT_SYMBOL vmlinux 0xf0b23479 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xf0c519fc blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0xf0db3402 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xf0e9165b phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xf0eb8991 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xf0ee44b6 inode_change_ok -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf0f8e5e2 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0xf100f9d6 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf10bc7cd pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xf10ca12c scsi_register -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit -EXPORT_SYMBOL vmlinux 0xf125b06c vme_irq_request -EXPORT_SYMBOL vmlinux 0xf12c8a49 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xf12db841 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xf1301583 serio_reconnect -EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf16ae59d pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xf18242e1 atomic64_set_cx8 -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1a0736d __devm_request_region -EXPORT_SYMBOL vmlinux 0xf1b7a005 tcp_release_cb -EXPORT_SYMBOL vmlinux 0xf1c1fa71 vme_register_bridge -EXPORT_SYMBOL vmlinux 0xf1c93997 __d_drop -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1dbe652 make_bad_inode -EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 -EXPORT_SYMBOL vmlinux 0xf1e516da padata_free -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf2009ae4 kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0xf202af35 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf2696b74 inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0xf26ff71d jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0xf275d883 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xf283d74f security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr -EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xf299a1ec input_flush_device -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2b569c5 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xf2c224f7 kernel_write -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2c9e953 free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0xf2d15f12 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xf2dd2e5c bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xf2e03bcb inode_get_bytes -EXPORT_SYMBOL vmlinux 0xf3013cab dquot_free_inode -EXPORT_SYMBOL vmlinux 0xf302ae44 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf3302094 bdevname -EXPORT_SYMBOL vmlinux 0xf333b414 nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf33e3806 __get_page_tail -EXPORT_SYMBOL vmlinux 0xf3433116 pci_map_rom -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf3486c89 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf357c03f km_new_mapping -EXPORT_SYMBOL vmlinux 0xf383b17e padata_stop -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf393a19b backlight_device_register -EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xf3986b06 acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0xf3baef16 nd_btt_probe -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf402634c inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xf403ef6b netif_rx -EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf472a007 input_close_device -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf479f7a9 bio_unmap_user -EXPORT_SYMBOL vmlinux 0xf49bf3fa ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xf4a20d43 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit -EXPORT_SYMBOL vmlinux 0xf4ad5ec6 set_device_ro -EXPORT_SYMBOL vmlinux 0xf4b097df tty_throttle -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4c73b79 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xf4c9bd31 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0xf4cae8f3 bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xf4e75292 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf50201d1 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xf502d273 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0xf5105cd0 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask -EXPORT_SYMBOL vmlinux 0xf53a0bc1 __scsi_add_device -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf548a10e netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xf5693f32 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xf56e77e5 d_set_d_op -EXPORT_SYMBOL vmlinux 0xf5968c81 input_unregister_device -EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set -EXPORT_SYMBOL vmlinux 0xf5a5139f blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5d3cedf ps2_drain -EXPORT_SYMBOL vmlinux 0xf5dad531 contig_page_data -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf5ecfe01 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xf5fb9252 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xf5fc6595 param_get_ulong -EXPORT_SYMBOL vmlinux 0xf60bf0e3 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xf61169dc cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xf6169ffa lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0xf6239c3c in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf65e5ddc mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0xf661adbc pnp_device_detach -EXPORT_SYMBOL vmlinux 0xf674ecf1 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf67cdc97 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf685b496 have_submounts -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf6899c5a acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xf693a145 irq_stat -EXPORT_SYMBOL vmlinux 0xf69749ab udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xf6a61b87 filemap_flush -EXPORT_SYMBOL vmlinux 0xf6b5d642 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xf6b6c466 generic_ro_fops -EXPORT_SYMBOL vmlinux 0xf6b6d475 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6cde3b6 __sb_start_write -EXPORT_SYMBOL vmlinux 0xf6d4e0a8 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f94f40 mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf7079cc8 pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0xf726d02f atomic64_add_unless_cx8 -EXPORT_SYMBOL vmlinux 0xf745cb16 atomic64_sub_return_cx8 -EXPORT_SYMBOL vmlinux 0xf750e6ac __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf764868a udplite_table -EXPORT_SYMBOL vmlinux 0xf788424d register_sysctl -EXPORT_SYMBOL vmlinux 0xf7891779 gen_pool_free -EXPORT_SYMBOL vmlinux 0xf790b5de __ht_create_irq -EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0xf7bc35ce jbd2__journal_start -EXPORT_SYMBOL vmlinux 0xf7bcfd82 nd_iostat_end -EXPORT_SYMBOL vmlinux 0xf7cfa6fb generic_setlease -EXPORT_SYMBOL vmlinux 0xf8050fac acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xf80ea89d tty_do_resize -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf8320d3b mutex_lock_killable -EXPORT_SYMBOL vmlinux 0xf84cbc28 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0xf84ebbd2 dcb_setapp -EXPORT_SYMBOL vmlinux 0xf85088f0 skb_checksum -EXPORT_SYMBOL vmlinux 0xf866d493 misc_deregister -EXPORT_SYMBOL vmlinux 0xf86a2e85 d_instantiate -EXPORT_SYMBOL vmlinux 0xf86df3f7 agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0xf87fbd80 cdev_alloc -EXPORT_SYMBOL vmlinux 0xf8820ab8 skb_unlink -EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header -EXPORT_SYMBOL vmlinux 0xf8958b5b blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0xf8b8a53f key_validate -EXPORT_SYMBOL vmlinux 0xf8c373b7 dup_iter -EXPORT_SYMBOL vmlinux 0xf8c86e78 dev_remove_pack -EXPORT_SYMBOL vmlinux 0xf8cd8cb7 skb_append -EXPORT_SYMBOL vmlinux 0xf8dc3292 devm_gpiod_get -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf8f55686 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0xf91ddf11 freezing_slow_path -EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run -EXPORT_SYMBOL vmlinux 0xf940d843 phy_drivers_register -EXPORT_SYMBOL vmlinux 0xf9695e7c jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xf985c959 napi_disable -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9b2d17a downgrade_write -EXPORT_SYMBOL vmlinux 0xf9b7314d override_creds -EXPORT_SYMBOL vmlinux 0xf9ba1400 try_to_release_page -EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf -EXPORT_SYMBOL vmlinux 0xfa1c0b19 generic_show_options -EXPORT_SYMBOL vmlinux 0xfa33d849 input_register_device -EXPORT_SYMBOL vmlinux 0xfa472ecb mmc_fixup_device -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5e7e3d tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xfa65b376 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xfa676cb0 create_empty_buffers -EXPORT_SYMBOL vmlinux 0xfa746f60 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xfab1f11c memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xfab740bf phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xfabab6ac vga_switcheroo_unregister_client -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent -EXPORT_SYMBOL vmlinux 0xfb0ebaa5 blk_init_tags -EXPORT_SYMBOL vmlinux 0xfb1f4d50 blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0xfb28de91 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xfb3c7cb3 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xfb4f5bf1 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xfb932e6c sock_wfree -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfb9741bd neigh_event_ns -EXPORT_SYMBOL vmlinux 0xfb9eeebe dev_add_pack -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbaaf134 dquot_destroy -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbc8f195 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0xfbd71298 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xfbf494ea nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xfbf86685 skb_clone_sk -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc1018f2 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xfc19d0cf mpage_readpages -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3a839f devm_free_irq -EXPORT_SYMBOL vmlinux 0xfc562165 acpi_run_osc -EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xfc668469 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xfc69fb6f skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps -EXPORT_SYMBOL vmlinux 0xfc8c34d0 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xfc902f4c devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0xfca1b4b5 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xfca69f4a xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0xfcb8b48a netdev_update_features -EXPORT_SYMBOL vmlinux 0xfcbf043e pv_mmu_ops -EXPORT_SYMBOL vmlinux 0xfcbfcec5 input_reset_device -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcce1df2 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xfcd3bc65 unlock_rename -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf152dd nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd111d0b blk_queue_bounce -EXPORT_SYMBOL vmlinux 0xfd14baf1 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xfd184e33 commit_creds -EXPORT_SYMBOL vmlinux 0xfd1c2bf1 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xfd288212 ns_capable -EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xfd5188b9 noop_llseek -EXPORT_SYMBOL vmlinux 0xfd5cb678 tcf_hash_search -EXPORT_SYMBOL vmlinux 0xfd6b8d29 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xfd7cb8ec nf_register_hooks -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfda215cc vfs_rename -EXPORT_SYMBOL vmlinux 0xfdad73ff dma_mmap_from_coherent -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfdc41764 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xfdcb127a kthread_stop -EXPORT_SYMBOL vmlinux 0xfdf41364 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfdfd6c90 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0xfe06d6a5 starget_for_each_device -EXPORT_SYMBOL vmlinux 0xfe06daa8 fb_set_var -EXPORT_SYMBOL vmlinux 0xfe13c522 acpi_install_gpe_raw_handler -EXPORT_SYMBOL vmlinux 0xfe248e3a blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xfe37d518 devm_iounmap -EXPORT_SYMBOL vmlinux 0xfe533ae6 migrate_page_copy -EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe6fa8cc netlink_net_capable -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe8853ee kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xfe90b5bd user_path_at_empty -EXPORT_SYMBOL vmlinux 0xfe96eccd tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfec6954a tty_port_close_end -EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next -EXPORT_SYMBOL vmlinux 0xff02880f __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xff1825c3 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff31b89a tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xff480992 dump_fpu -EXPORT_SYMBOL vmlinux 0xff5be2d6 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xff896b49 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0xff8d2220 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffab44b6 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0xffd0f529 agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0xffd590ab kill_pid -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xffe1a3c4 mark_page_accessed -EXPORT_SYMBOL vmlinux 0xfffdeb5e skb_page_frag_refill -EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0x7060bf0a crypto_aes_encrypt_x86 -EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0xe409b491 crypto_aes_decrypt_x86 -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x2132d747 glue_cbc_decrypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8c768d80 glue_ctr_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8f02ac4d glue_xts_crypt_128bit_one -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xaa423e9b glue_ecb_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xad86b700 glue_cbc_encrypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xe8242c13 glue_xts_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x28afd262 twofish_enc_blk -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x6f068d90 twofish_dec_blk -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00091a8a kvm_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x008965b9 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x044cc158 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x04907d91 kvm_clear_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x04d503a3 kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06b59fc6 kvm_arch_start_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0757ba87 kvm_get_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08137a5e kvm_inject_pending_timer_irqs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0842f4ec kvm_after_handle_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a328af3 kvm_read_guest_page_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b5bc94b kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b5d0018 __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c1f5a8e kvm_find_cpuid_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0dd7cf61 kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f6442fb kvm_require_cpl -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10177837 kvm_mmu_slot_set_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12ac003e gfn_to_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14053218 kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1416c358 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15fd819d kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x175aea24 kvm_write_guest_virt_system -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1971f875 kvm_require_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a0fef03 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ecfd3bd kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f24a503 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2124f042 kvm_read_guest_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23af0aba kvm_lmsw -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24dcf4f4 kvm_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26f3f3db kvm_mmu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x272e2a14 kvm_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27d24ef2 kvm_set_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c78b8d4 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ede8399 kvm_mmu_clear_dirty_pt_masked -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f4c5692 kvm_mmu_unload -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f636c31 kvm_spurious_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x300f0b94 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32b6694e kvm_set_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32f94316 kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36ff21fc __tracepoint_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3849ae3e __tracepoint_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a74ecfb kvm_mmu_sync_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b0f1069 kvm_mmu_unprotect_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c769066 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3cc01dd8 kvm_fast_pio_out -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e094575 __tracepoint_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40ce1e45 __tracepoint_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41842869 kvm_clear_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4342e777 handle_mmio_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43f4230c __tracepoint_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x455012e6 kvm_get_dirty_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45ef83d8 kvm_mmu_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46172248 reprogram_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46605d34 x86_emulate_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b8f642d kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4bbf9bdc kvm_arch_has_assigned_device -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c02e074 kvm_put_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c105f97 kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d93551a kvm_vcpu_is_reset_bsp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x60bd3519 kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62085f3d kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6293c353 kvm_mtrr_valid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63191b4f kvm_mmu_slot_leaf_clear_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66d97623 kvm_write_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67132c59 kvm_arch_register_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x678424dc kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68138a79 __tracepoint_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68174d0d reprogram_fixed_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x681ac9a9 kvm_scale_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68a89ecf kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68f95045 kvm_read_l1_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6cd1052c kvm_is_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6cdf8461 kvm_vcpu_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6dca4009 kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x706ae08e gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73e3491e kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75a8bbfe gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x761a072d kvm_apic_write_nodecode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7644929e kvm_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b3c628e gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7bdc511f kvm_vcpu_reload_apic_access_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7be4a70d vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c59e22e __tracepoint_kvm_ple_window -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c8e9619 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7eb429d1 kvm_get_dirty_log_protect -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80ecfb6b __tracepoint_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8163abe7 kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8228246e kvm_mtrr_get_guest_memory_type -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x838ac4b1 kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85e4926d kvm_emulate_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87b130d1 gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8902d9d1 kvm_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92338fc5 kvm_emulate_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92d713dd __tracepoint_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96c246ef kvm_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x982cd932 __tracepoint_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x985687b7 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99e02c15 reset_shadow_zero_bits_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ace809d kvm_set_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c171a59 __tracepoint_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d50d1c6 kvm_rdpmc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e0a65d0 __tracepoint_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0ec3a0a gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2b2099d kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2eb34aa x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa415945a kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4d9ce55 kvm_get_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5bc96e7 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa81557cb kvm_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf7f97c gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacff490e kvm_set_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad2b6795 kvm_get_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf94f86d kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0453880 kvm_inject_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb176bd9f kvm_queue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2b938cc kvm_queue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb40705c5 kvm_arch_has_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5bf3a64 kvm_before_handle_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6ab0cd9 kvm_mmu_invlpg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb866d3a5 kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba68c94a kvm_complete_insn_gp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfac2f35 kvm_set_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc05cc727 kvm_set_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc23f3bc8 __tracepoint_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc56d75ce __kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc599bc18 kvm_max_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7e3c2b5 kvm_cpu_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc81f148e kvm_inject_realmode_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8fe8594 vcpu_put -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9e18fc6 cpuid_query_maxphyaddr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd4fad02 load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf481060 kvm_init_shadow_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2c0b766 kvm_requeue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd477f999 kvm_get_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd65462c8 kvm_task_switch -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7eb738b __tracepoint_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd93bbd46 gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda11af86 __tracepoint_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda55d455 kvm_get_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda948d9b mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdaf9ef82 kvm_valid_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb8d480c kvm_x86_ops -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdbfb54b8 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde9c017c __tracepoint_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4ec9516 kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe74db93b kvm_arch_unregister_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe77a4eab reprogram_gp_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe95c3788 kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeb1acf05 kvm_set_msi_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed04a594 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed09e69f kvm_intr_is_single_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed76a9d1 kvm_lapic_set_eoi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xedadd945 kvm_inject_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeedd34b3 kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef56a95b kvm_set_xcr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeff9515a kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf413d784 kvm_get_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf63ef94f kvm_vcpu_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7334c4d kvm_arch_end_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7b26271 kvm_mmu_slot_largepage_remove_write_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8087721 __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf864ab07 kvm_init_shadow_ept_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf95ab8e0 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbaae28d kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfcd7a8cd kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd324089 kvm_mmu_unprotect_page_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdc68132 __tracepoint_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffb90f92 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x1ce92bb6 ablk_init -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x39205b92 __ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x508d672b ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x948de9e5 ablk_decrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x9af9938f ablk_exit -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xdb2c8204 ablk_set_key -EXPORT_SYMBOL_GPL crypto/ablk_helper 0xff4fa9c8 ablk_init_common -EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0x1830cc9a af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x18bd5c0c af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x25b71780 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x6d12b2eb af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x78ae205e af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0x7f298468 af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0x81e8911d af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xa51f8971 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xcd03ade7 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xcf435145 af_alg_release -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xa473ca3c async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x36b8e700 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x5eee1220 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x380ed9bb async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xcb16da46 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5f1383ce __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x612ff802 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb9f253eb async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc6487fe5 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x6e3ddfe6 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xfbb6a235 async_xor -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x27c067ea blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x46537f6b cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x055194f9 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x818fbb44 crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xbe5ffd39 crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x271c8fd1 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x3a8d1d65 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x4531d033 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x4753b5e2 cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x520885af cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x900176c2 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x9714adbf cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xc5ed5660 cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xecf4cae7 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xf5cbfb79 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0x99c242f0 lrw_crypt -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/mcryptd 0x109bbf6a shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0x137fe71f shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x33807223 mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0x9d315da9 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0xb2248858 mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0xd9edf316 mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xf64e3592 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xf876b842 shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x194c119f crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x7a1dfb6f crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x7f61c55a crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xdcb924d9 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x6957fd2f serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0x643dc217 twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0x3f0ab2c8 xts_crypt -EXPORT_SYMBOL_GPL drivers/acpi/nfit 0x2585e368 acpi_nfit_attribute_groups -EXPORT_SYMBOL_GPL drivers/acpi/nfit 0x86557ec3 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x05016c14 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x132fb24d ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2b1803a1 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2bff06f0 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x36e87d74 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3d0610a9 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x456ed3fe ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x551b4d4e ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x596dd25a ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5ded0c5e ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x60fe3dec ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x62f0108b ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x712d7097 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x764129c2 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x84d2a526 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x89090dcb ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8b867368 ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb3ccefc4 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb5e0fde9 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcb7f7f18 ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcf42ac6d ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd7bc88ec ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe444cfc0 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x06d8ef7e ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0f3eee2b ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2c3e477d ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3fb82965 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5ed58041 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7585f556 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7bf85191 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb4f0813d ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbceab97d ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc3adf623 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcbd7525b ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd3acdbb5 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xedd3a547 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xa9a7303f __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x73b0deac __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8c64739d __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8f03dc94 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xa49a7801 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0041f0c8 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0446d4bd bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x12f1fcde bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1f1c0d8f bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x333b2b31 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4ae816d1 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4c0b2644 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4cb7a553 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5ca44ffd bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6bc6f5ee bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6e3cb521 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7877ed7b bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x83962801 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8b73f3da bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x965bcd04 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa1174d1a bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf46f4c4 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc541191c bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd3959ed0 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd56a4dfd bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xecf0bd8a __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xed494991 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf5a992c3 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfd37a9ab bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x09813702 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0e23fd93 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x20c0b838 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5cac109f btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6bbe95a3 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc49193c1 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0172af4a btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x045e89be btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0eb0c225 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1b7823b6 btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4fa6a964 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5aba2973 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7e84ad24 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc7cc5098 btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdcb52cfd btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xee81584f btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xffa776f6 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1132806c btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x173b0683 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3d3ddf3a btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4c4518b9 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x61124733 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7a7681b4 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7b55e4e1 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x865c9092 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x88d6e919 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb2ade3c9 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfc0d3508 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6c13f67b qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xfc6da764 qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xe41cf3d9 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x539b6017 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/char/scx200_gpio 0xa37366ed scx200_gpio_ops -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd0fdafc4 ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x035b0f77 adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x05150d30 adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x066db72c adf_enable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x119b1a42 adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x121b8073 adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1931d0e7 adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1d438784 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x205c9001 adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2e31b189 adf_iov_putmsg -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x30211c4d adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x389f842c adf_update_ring_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3ba37c66 adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3fb98bc5 adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4c12ea06 adf_response_handler -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5dd987f7 adf_service_unregister -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x62cac7f4 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x665636d9 adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x68209834 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x696ebffc adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6adf802d adf_service_register -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x73a49534 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x76e98826 adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x79ab8740 adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x89de69e7 adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9646d0a6 adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x98065869 adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c10d2ec adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa4161b05 adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xac2499df adf_disable_vf2pf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb3b335f8 adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc44ed892 adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xce44c904 adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xda02019f adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf287fa64 adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf7e37d2a adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf886a977 adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfb8f4d73 adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x27a38a14 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4ed9e355 dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7e2e22c1 dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8292f10c dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8fd9c8e6 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x34237b78 hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x37e48106 hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x4be9a416 hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x66ed802a vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xf5ba1276 vchan_find_desc -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xf8090b9b vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xfcd27f30 vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0x6c19f5a0 amd64_get_dram_hole_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x09504414 find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x22c13cb4 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3b97b583 edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x41e018e3 edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x423ea9ba edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x42fcb972 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5f321de7 edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x65029964 edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7743af9c edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x85cc42f9 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8fcb6342 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x91b8e145 edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa11e6de7 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa997cf09 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xab984c30 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xadfc6350 edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb15dfe61 edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb5b16195 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbf617621 edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc00c07bd edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdc6ec39d edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdead0906 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfd423fd4 edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x81d75507 amd_register_ecc_decoder -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb30b7e56 amd_decode_mce -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xd3cc2686 amd_unregister_ecc_decoder -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x02661e80 fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1ab0d5d8 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc9f096d5 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe89ac76a of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xef149bcd fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf44a971f fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x013fbdac cs5535_gpio_set -EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x93f8fe67 cs5535_gpio_set_irq -EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xc0bb404a cs5535_gpio_setup_event -EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xd3bd9300 cs5535_gpio_isset -EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xe07c0954 cs5535_gpio_clear -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x679c7a01 bgpio_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x76815a21 bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x7e746333 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x8c742a27 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2f5a6e96 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9c5f951c drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc68fcea9 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x1c2975e6 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xa3c3d698 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xe13bce81 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0511a873 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c247bf9 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x26cbed6e hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x27dfcf1f hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2919c2de hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x297ac36c hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c8727fb hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4240e00a hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4ed385e8 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x51201c03 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x51d8cbc8 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x550d0e3a hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x585df46f hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x61881b39 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6271932d hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6ce50e99 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6cfc50e5 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x91d0bbaf hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9cc267d0 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb050e3ad hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb75ff575 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc2c3a82c hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc30429d2 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc43906fe hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc6d49a68 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcabfb350 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd9f474fc hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe0ec6fd5 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe2fd3740 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe49eda28 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe7ae733c hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xef6ead6c hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf35552f4 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf6b9e024 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf766a344 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa71a39a __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x817ed9a4 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x170b60ee roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x303307db roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x44984036 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5fb590f4 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6351b021 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xcf2619d8 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x100ceb70 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1058c4c3 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1cd19cc6 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4042c479 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4f71f49c sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7bfb9f69 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x925ec196 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdb235981 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xeb493301 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x062e1212 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0e3aee36 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1bb5266e hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x28187f99 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x28ecca4a hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2d279929 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x36f05280 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x40d49dba hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4b23808c hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6a84c24e hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6ef430e2 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x75e70ac0 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa6e0b946 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb2850742 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xda860501 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdef66be2 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe043d042 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfffd5997 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x082c4a68 vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x094b1352 vmbus_get_outgoing_channel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x098bf01c vmbus_sendpacket_pagebuffer_ctl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x09a6ef87 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0fd9cd94 vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1499aaa5 vmbus_sendpacket_multipagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a25cd8a hv_do_hypercall -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25a0a3d2 vmbus_cpu_number_to_vp_number -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2e8375a6 vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x358fafa5 vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3691a8c1 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4476d1f9 vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4a225780 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4fd3c2bf vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x65668429 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6a913d04 vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x72a61a99 vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x73023d78 vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86ff5fa6 hyperv_cs -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8c6bac23 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa9e2d37f vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xde489021 vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdebe50a6 vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x2d9bc2f0 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x848d92ae adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x8c703b24 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x068d641f pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2b9185be pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3dd22ca3 pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x41299531 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4da3e364 pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x597b958c pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x711610d6 pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x81f7ef39 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x840cef73 pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x99fcd02a pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9bdcc32b pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb442c422 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf32bde03 pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf8772e5f pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfdb84da1 pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0a3945d6 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1c24b887 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x348c2aed intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x533285a8 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6d2aa746 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7d427a16 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc9dca769 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x00d8db74 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5f77ccc0 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x675f3296 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9ce0463b stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd742186b stm_source_register_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x18a4b45e i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x21e095fe i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x45309ef6 i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xa212cc1e i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xef141873 i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x29e17ebd nforce2_smbus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x716d7756 i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xec8d89ac i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x9d8ad8be i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xec54df13 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1be5655f bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x348c5a7e bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x49362295 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0803b06c ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4fea3627 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6822eb8c ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6f7ff701 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x849acceb ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x943c7c7f ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb90bddc9 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc145fdd2 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe6cdcb1c ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x755e4338 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xa854c481 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x0bdd5f21 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x981439f6 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0696c871 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x68c5e90f bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa6cd66d0 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0c19d57d adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x21199bb4 adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3b851f84 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x42efd7b9 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4b6ce7b8 adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x59cfdf52 adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7c77bf87 adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa5889443 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xabcedd56 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc0037273 adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd8804257 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xed39d2c6 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x00d59f46 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x017b233d iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x01b60a73 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0ad66a1f iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x11127736 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x13c7c74f iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x14f22bf9 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x37258054 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3db86965 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x409995ff devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4beca2a3 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x50543296 iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63371bd1 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x66a84dff devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6f67bb3b iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x84956922 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x901bee75 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x95da93fe devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9fe99e97 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa061a41b devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5053f9e iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xabd0de13 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb1a57bd1 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb88c16ac iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd0aac0eb iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd2ee43f5 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeb7a2b19 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xee923038 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeeebced9 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf2160d6d iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfa7d267d iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xbda84a94 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x937af151 adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x8eba0264 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xc55696e0 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xeccdb11d cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x074d4cbd cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x688dbb25 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf39d0c03 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xaaa73e34 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xe9964dd3 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7eb7639a tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb7526800 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd6421938 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xea6c0ef4 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4a59f1ce wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x534d08b0 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5351c893 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x61a66b60 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x65c7048f wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6ffc3459 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x84c1a626 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xad0c6bfe wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaf269f14 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb0b276a4 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdab29c0c wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfb391aed wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x08419dee ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1e5caf97 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2530a3bd ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x61852daf ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6a86550c ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x71da8c85 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8f3bad07 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbc9f79fa ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbcf3c181 ipack_device_init -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x31791d27 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x68c7a7d1 gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6ea19004 gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6fafcc79 gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x91cea097 gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x94209d97 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa8755908 gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb7632adb gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc2b50cff gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd0620fc9 gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd2ed6e47 gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd5f3f2c2 gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd7d65653 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdca45fe2 gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe3f6159e gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe4287d01 gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf71d8f78 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x106faf3c led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2ac65fcf led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3587320e led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7065dcd2 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbab53a0d led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbd70d880 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0aa07b6c lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2362a479 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x26eab999 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2b2ab4de lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x657561e7 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x74a00784 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa39df8d6 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xabaf98de lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbe7af590 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcc1ecdc4 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcddaa41b lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0c891e02 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x50dd30ad mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x628d7316 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x809848fe mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa27e1a01 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xaa40f966 mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xacee2bfb mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc493a360 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc4c8270f chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcb40b21a mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd6ad7dc9 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xde22c1a0 mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf691ede9 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00b74659 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a1a7a99 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x374f45ea __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a4dfef7 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48991e9c __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f124797 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x614e860f __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x647af374 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6724de29 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6726a0c1 __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68f1ea6d __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7114cfcc __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78c57fa5 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7cb4bd6f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x816ebfe0 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x833b99dd __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8afe3e2b __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x912566ef __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92c55e92 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c59320b __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7004101 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf2376ac __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3942afe __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4cffcbb __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb9c28744 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0bd3171 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc773563c __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd81ad8c9 __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe30b6b2a __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6169c53 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcb52b5f __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x363a9b92 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x65b32efe dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x874d7509 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x93a33506 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9baf0597 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcc6faf5b dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xda99b9d4 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdd17b48a dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe083f193 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe7d3882b dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x61f10c5c dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x83709e8a dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x85e0d113 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x95c9d341 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc55c4219 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd38cf01b dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf2722c69 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x0a7ab572 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x2cc6d38a dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2495d405 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x25edd55d dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x84b322fc dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x99966eaf dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9d5794c6 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9dec22f8 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49a0d47a dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2507774 dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x05c535ae saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0cfaa1e5 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x49a0b778 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x58e5c05d saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb1d12a3d saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb7356497 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbb3eb02e saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc38a4542 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd25c6976 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf1bb6473 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1b4c256e saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x22071736 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x41af1c43 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x810eb9fd saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb603e1e9 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe415e74f saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xfc7dcb40 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x06ba9b30 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x201578d3 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3ba34d32 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6876d810 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7e4746e9 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x84092288 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9164b3b4 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x975cc10e smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9a78ab51 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa3ef3577 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa48c890c smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa51c27cb smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xab5fbf97 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb5a204e3 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe73ffbca sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xea06aafa sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf97699c6 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x072523cb as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x09742a95 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xae596b34 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x2149e1c1 media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0x26a3692c media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0x35657454 media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0x37dfd318 media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0x5c4f9080 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0x5e3b6fc9 media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0x632ad004 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0x641d9a6d media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0x6acf3122 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0x734ddc78 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xa58c05c5 media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0xb15b2d85 media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0xb91a8b1f __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xc162816c media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0xc50bfe14 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xd8c28b02 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0xe28f89e7 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xe83f3237 media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x2715bf70 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x15322c5e mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1a66d3d8 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2897f194 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x289d2b20 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2ef47d47 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x31531767 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x48da2126 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x58e9b991 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6f0a7bb1 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9fc4e86e mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa8272a4e mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb543375a mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbd4f3581 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbe559213 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc19d84b8 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc25a4702 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd0749c68 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe8fc1b76 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfae26bd1 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0474826e saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1c9f7e61 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2075a009 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x20b9d204 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x22c84f70 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x28a5d5df saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2e85d844 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3c23a6a2 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4b40ec61 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x715dcf91 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa6be8d68 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa8caa7f9 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbebc9091 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbec7df76 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbec92f67 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc17665d7 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe93f6e6e saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfde551f5 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfea40345 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1f7e0308 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x21054440 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5e56cba2 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6d5b672c ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x87263b94 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x88e7dc8d ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd83d056a ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x34533e90 radio_isa_probe -EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x7ea9dbbb radio_isa_pnp_probe -EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x91de406f radio_isa_pnp_remove -EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0xac323d7b radio_isa_remove -EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0xb4079d81 radio_isa_match -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x10d97646 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x92c8ad54 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0a5fa32b rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0e0f6a18 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0ea5f0c7 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0f032c99 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x130ab93c rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x168e43e8 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x37c163e3 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x397bd34f rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5f78a71c rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6a06e14f rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7c017065 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7eb890ca rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7f17df2f ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x887cf47d rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x89a31f8f ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb99c1e67 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc28901b1 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeaf48228 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf05278a9 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x130f13ac mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x62f3449f microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x958a257f mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xa8770634 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xf0e316b6 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x9cea083d tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x6f293638 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x7f363527 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x8583f1a6 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x74dcdb8b tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xd7b1c9ac tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x3e3f63f2 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xe28138c4 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x47aba734 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0c5c1a11 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0c7fcaf3 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x12cf569b cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2a50a654 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2b7b09bd cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x34226621 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4e392a11 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4e6ec8b7 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4fa29cc1 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x54c0bba0 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x896bdd97 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x975d0d2d is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x985ab49d cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9f588f3f cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc335d617 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc73156b1 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd3df5851 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe939abce cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf2ff978e cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfd8da8f7 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x59cd1bec mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xde02a963 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x134c50fb em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x13b022b8 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1872af87 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x243fb523 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3175cf01 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4ee0d6e1 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6a02bd78 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6c06a6c2 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8806fca0 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x94e31577 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9840e267 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x99f03d6d em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaf8df980 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb3171a16 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb652ac5e em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb9cc4e0b em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd8ac0213 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe9006cfe em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xa1e1b6c0 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xbb19a640 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd0b42419 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xea20a981 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x50763423 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x9b8df020 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa5cf1b05 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa8806f95 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xc3026d8c v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xeec8ba44 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x73afa87a v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xc8af1e54 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0e456db9 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x19eae497 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x200a0b39 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2c66ffe9 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2d63a3b5 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2fdd50f9 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x30d24b67 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x32b941de v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3d067df5 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x449e42f2 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x48d0f661 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x50b9af79 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x71ce8a0f v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7d298368 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7ef1dd86 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x806a33e4 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9aefec51 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9fad303b v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa0a6def0 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xad345885 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb035350c v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb6886763 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbe6d384d v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc563bb77 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdaf718be v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe025ca95 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe0fdd5c3 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x12558a88 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x19bba66e videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2179672a videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x21f93cd3 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x271b2655 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x275f73de videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2bf69450 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x337f726a videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4e6d5ffd videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x54c1eb78 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x73e66924 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7a22afe5 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x889f24d3 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8bf056ee videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8ed1e184 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9d5f2308 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa02c4646 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa739e442 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xacbfa7d1 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb892cc04 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcff20059 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xde01dddf __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe387ebe9 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe85023eb videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x306fd988 videobuf_to_dma_contig -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x4b6e7fb8 videobuf_dma_contig_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x668b93bf videobuf_queue_dma_contig_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1afbbafe videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1f59b761 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3791f64e videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x4e141c6c videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x513fd12e videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x7a0e1b19 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf54e328f videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1878bec3 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2bdc03fb vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x31a63c90 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x32e56725 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4abff8d8 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x51f550ce vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x578f0104 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5c42be37 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6297b6a2 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x785242db vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7ca05a7d vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xab4374c7 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc3b4fdd5 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xca214a16 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe23ff6f6 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe747bb45 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfbc79573 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfdde0a8b vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x49bc8d37 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xcf334236 vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x875ccaf0 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x9f3f073e vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x8168588d vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x023c61b6 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x09e18799 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1968ee64 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2e3b443f vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x33fe8e19 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4e2e058b vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x551389d7 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x567a4ed5 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5a2e653b vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x625148cf vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x636b7c6e vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x659b7bd6 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x713899e0 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7fa626f4 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x88f72a1c vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8d3ef3f1 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x95c19766 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9636fc67 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x970207a4 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb46fd77a vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbae78ef0 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbbb7a592 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbc779af1 vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc521c378 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd31d7dbf vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd326599c vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd8b1cbb0 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdb5aa5c3 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdc34f530 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe92bcfb6 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf275fa49 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf6379b28 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0xc4e7d4eb vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x07f286c2 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x085c1c98 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0faf4094 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1fbc3061 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28d20b15 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x29cee11c v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x30fb68b7 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31e3d76e __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3740e82b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x37628bee v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x39061bc0 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x48c8c9fb v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4b520c72 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x56edfe30 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6305c4db v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6dc79e1f v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x710cdf07 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a85f5d7 __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81aea06c v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x916d3966 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9bd8fc9c v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb070c37b v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba162dcc v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba414158 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc3b419e v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc1de1c47 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcdcedc13 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xce002360 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xddef5c6d v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe6328677 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe7178e45 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf8358ccd v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfccb8b5b v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x8d33f2b3 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xbae3becb pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xc61cd289 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x114250f2 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1e796321 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3cd03c6c da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5e52f78d da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x60070806 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9452086e da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xbb1c519a da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x032e2c10 intel_lpss_prepare -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x58d3c5cc intel_lpss_resume -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x7802a8ad intel_lpss_suspend -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x7aafc1e7 intel_lpss_remove -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xafb1be6a intel_lpss_probe -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1564a26c kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2998bf18 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2c7aecb0 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4c6ac53c kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x690cd4f5 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6ddf3b1c kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe2747d08 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe807a720 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x14b6df4b lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x3ca06d31 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4902ad91 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0c028d96 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x320c7a93 lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x52eacf8a lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x97d016fe lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9f1c2f97 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa9f7e187 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xcc73a6a3 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x99617ee9 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xcac61355 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xd0694924 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x03720276 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x14e20ff7 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x16affa7c mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x43c84956 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x51c7bc3e mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7dff1992 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0b4bf931 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x150f8193 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1f20799a pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x25a214aa pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2cb05b81 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3636f8f4 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x71c3b3cb pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7a33f26f pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8635896c pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb03277a4 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd64b7d6b pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x57bc3eb5 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xb5539dc5 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x57f041f1 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x64822cf1 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x81394a77 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8fe0d60b pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf61a4a3f pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x06765088 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1e9b27a1 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1f917093 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2c53a709 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x31f5cd73 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3512e01e rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3527167b rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3857a777 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x39699a93 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x484e692d rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x549d6c76 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x606c6b14 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x60af3aed rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x68355229 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6c9b8fd6 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x74ff5c6a rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7712cc50 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x88ec621b rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8f75f1f6 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9b6c6c78 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbff17afb rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdbd7a4b1 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xed0984da rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf5fcb0b9 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0b839500 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0ff8fea7 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x102e32a6 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1426b9d4 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x19ca639e rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1eed6fbc rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x55e32756 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5e534051 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x73373ea2 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x73f3a635 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa9fcfb28 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xdf4960a7 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe0d4a74a rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0accf8f0 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0ca81841 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0ff89298 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x288090a3 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2ba96f9d si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x33f5ea2a si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x35cf9e89 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3bfec8e8 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x43cdebe1 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4627ec23 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4a0a2016 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4b2f8c20 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4f95597f si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5121c284 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x76d785e6 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7ab01691 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x80f18652 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8bc07307 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8d323d2a si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8ea69cd8 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9f8ffa0c si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa4c64ee5 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaa968488 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xabe1d174 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb656b705 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc4fb1652 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcac176a8 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd22e79a4 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdc810f1b si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe08a6799 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe13681a2 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf794e186 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf8493ec8 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf9c6b3e9 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2f209a04 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x43ab1c4e sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x96d44d3f sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xcf7f372e sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xfefb6f24 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x1b8b8f31 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x257766e7 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7c3ce1cf am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x984af3e8 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x59bab50a tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x8d183ac2 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xa7c0ccbc tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd04744cb tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xb946f670 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x2e11219c bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x6dd0aa06 bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xa22a2d6e bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xce792532 bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x047f20c8 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5ec99c91 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x67636f6b cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xaff13360 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0deec31e enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x83f5c079 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8f466c33 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9c5c4252 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb30fcc00 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb95d4ced enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xdeb0ac8a enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xec51980d enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x29f9fbd4 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2b45c946 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x362ea83a lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6def4100 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x91d90e39 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa189fb75 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xda1603bf lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf1db0d05 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x020dce94 mei_irq_compl_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x04100e1c mei_stop -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x17745245 mei_cldev_uuid -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1da6e979 mei_reset -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x23901627 mei_irq_read_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x488700d3 mei_start -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4a3032b0 mei_cldev_ver -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x57eb58f9 mei_write_is_idle -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5f7ba776 mei_cldev_driver_unregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x64671e4c mei_cldev_enabled -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6ba88040 mei_cldev_send -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7629d114 mei_restart -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7b16be9a mei_deregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x87d8401f mei_irq_write_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8f9de864 mei_device_init -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xaab6a586 mei_cldev_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb2e19a6a mei_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbbef8d62 mei_cancel_work -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbed37aa4 mei_cldev_register_event_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcd9b4c26 mei_hbm_pg_resume -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcf898c9d mei_cldev_set_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd6b8760f mei_cldev_recv -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xda27124f mei_fw_status2str -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xead0419b __mei_cldev_driver_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf2def4f3 mei_cldev_disable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfbcfeaa4 mei_hbm_pg -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfd3cd57e mei_cldev_get_drvdata -EXPORT_SYMBOL_GPL drivers/misc/pti 0x19f09b98 pti_release_masterchannel -EXPORT_SYMBOL_GPL drivers/misc/pti 0x23bde487 pti_request_masterchannel -EXPORT_SYMBOL_GPL drivers/misc/pti 0x52a78e81 pti_writedata -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x98206a1e st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xee4aba47 st_unregister -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0f6680ea vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1152e318 vmci_qpair_get_produce_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x13aa5a5d vmci_datagram_create_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1872c7af vmci_qpair_produce_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1a195863 vmci_context_get_priv_flags -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2e30d970 vmci_qpair_dequeue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3abeb8d1 vmci_qpair_enquev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3ef56cd5 vmci_qpair_alloc -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4b630dac vmci_get_context_id -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ea2ccbc vmci_qpair_peek -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x50a255c9 vmci_doorbell_create -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x677c36d0 vmci_is_context_owner -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x69ef87ff vmci_datagram_destroy_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x6cc1a5f7 vmci_datagram_create_handle_priv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x722d488a vmci_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7b34dde7 vmci_qpair_dequev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7d540b50 vmci_qpair_consume_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x8b8ad67a vmci_qpair_enqueue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x941e18ef vmci_qpair_peekv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9624c58c vmci_datagram_send -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9973b9b2 vmci_qpair_consume_buf_ready -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9d16164a vmci_send_datagram -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xccbb53d1 vmci_doorbell_notify -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcf5ed7ef vmci_event_subscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdac94780 vmci_qpair_get_consume_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe7e7c107 vmci_doorbell_destroy -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1201ef40 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1c47bbb1 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2ef4d7e8 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x373fb888 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4813feac sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x516ab618 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x59116e19 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc109c480 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc365f4d8 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc8ba9c78 sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcc8b1acc sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd641a32b sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe0081458 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf435f87d sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1d383e55 sdhci_get_of_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x37ed1f74 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x43827ce1 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x490f79da sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5c961962 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x61f7d7d1 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9d42c9e8 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xad0d4b96 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb1ef1545 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x074f81e5 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc578819b cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xfa51a473 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x1a459ac5 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x97ee1e93 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xe9bc5543 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x74025000 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x08c3afcd cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xa1119502 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe2ccaba6 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0001cfce mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0a17a4ad mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0ce378d6 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0d1a5282 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x10843143 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x136c7640 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x174a91ed mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1864cad4 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1fc28e81 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ff49b8e mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x219af829 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2e47d371 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2f4b7dc9 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3130c4ea mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x396250d4 register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3a8f3112 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52e0f6d7 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x550516c2 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5d480743 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5e6c0fd1 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5f6ab1d9 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x63e1821b mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6582450a unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x670d10b1 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x68c6f914 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6b8ec091 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x71308f53 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x89c6c2c6 mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9d79a77c mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9e2ab49b mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa2766a1c mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa28e4e42 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa5f66972 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa98f3f7f get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac4861aa mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xadbcacea mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xccb46be7 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd4e40ac7 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdf198064 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe97a36cb mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xecc895c2 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf5c6d61b mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x2173e3f9 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x531e57f1 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x667175a3 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa26c7434 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xfeefd908 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x3d27e52b nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xf7ba1d63 nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x5bdbec4f sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x3b719ed7 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xd78d9d74 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x719dbfba spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0ea5e9a3 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x384d1a0f ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4c1a9b73 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5377988b ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x68cd9196 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6f9f150c ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7aed245c ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x894713bf ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb1aa183f ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb969c9dd ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd217415a ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd72d3b4d ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdbeb2550 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf2c6566e ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x4a5242b1 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x9cb2c5c5 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0dd6b1a3 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x47b54d10 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4cfeaed9 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6d92d0a3 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x96b4b90c free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9a969604 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x01d557f5 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0946665a can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x18a6c065 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x271687d6 devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x39a09827 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6677336a alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x675a77bc safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6f4bfbd9 can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x711eb18a can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x86472eaa unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x95ad1887 alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb04dc852 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbbd3cffe open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbf04137a alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc279ecb3 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdb23252b register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe2e4984c alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfc8df629 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x3e68e84d free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8b59a1bb unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xde3cfb4e register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xdfd1468e alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0371bd06 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0bb17e7b alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4e97b738 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe1044571 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0042a2a7 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x014b2869 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01584ba3 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a2bc80a mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d585d57 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dc7866f mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dd5f8dc mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0efcd376 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f08fb57 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18c3eb6f mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b010296 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c30fc6a mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23402cf6 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24ffba56 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25abe870 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26334cf3 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27e12791 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2867b4a4 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ab32eab mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e061036 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e6e2bc1 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x308bf776 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3110f1bd mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32010796 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x351167d2 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35cf3478 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38a2676b mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3aaad734 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x417167b6 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41b727c9 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41c0daf7 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42e79790 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44f74e99 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x457191a5 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49eea193 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x501fe6ee mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5046083b mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5807679b mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58f9a21f mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5974d321 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cc86821 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fd89f9a mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x640d7ed9 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64cf25e7 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6972319d __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b9384a7 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x708166d4 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70e6d5a6 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71903678 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72155cc9 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x724a707f mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x771f4979 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77b0da78 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78009b0d mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x785609b2 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x787b44e8 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c4ba882 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e293e63 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7eea3da6 mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x820c43fd mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83265a1a mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88ae390d mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x892134e2 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d94c39e mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e9ece07 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8eb47dd5 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f9f1795 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fc26047 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9056fc82 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93c8768e __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93e401cb mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95659e13 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9913a42c mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99938264 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a67812e mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cd750f5 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fa06bc1 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1c5aed4 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa257d672 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8c5a161 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8ce3660 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafd233de mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1cc03c8 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3526bcf mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4d427b8 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbab5a0b2 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd38a8ff mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe83bb6b mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe9bc22a mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbee373c7 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1978b50 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc249e58c mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc58cfc1a mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc61abd28 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6f7de5d mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc84c2567 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8777f52 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9ad9780 mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcafdc1d4 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd256da6 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd7e518c mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdeed733 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfe4036e mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1945cf8 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1ff17b0 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd28bd710 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3c32211 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd46041a2 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6a6d629 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6c13a9a mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8017823 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd89aeeec mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda9fde4f mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbc03009 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe13ce6ee mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe26c5008 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe42eb96a mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4bfd41a mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeeaa65f5 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1904616 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3d427be mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6bfa4ae mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8fb1cfc mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffd451d8 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0291daa3 mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0744f128 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10b97d7a mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16066713 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17bc6443 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fe4fc1e mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32810014 mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33af282f mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38218047 mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x386a7365 mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c6ee37c mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4819fb65 mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49c5345c mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52b15631 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52ff3751 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60f50301 mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e179e06 mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e37361e mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7060c9be mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70a85aa0 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7dbde33e mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fa7d59e mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x829bd10e mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85462ced mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a598bb7 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f794b0a mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95948ad7 mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x983b476f mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98492a57 mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0261c9e mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbab86492 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbadf43cb mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0203823 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc925c031 mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca6a9043 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb7554ad mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcee2aa7c mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd280df27 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdab797c9 mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf6f981f mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe24e2a51 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef5a9ba0 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0d25ffe mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb8e6ee7 mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfddd7237 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe267e384 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1ac6c947 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x5beb22a8 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7811e4f5 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa266084c stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x312b690b stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9a94044c stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9dcd2a8c stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd73e2da3 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1f6d586d cpsw_ale_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2e24b255 cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3c9f0e3a cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x61646366 cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x803b6242 cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x87adce83 cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8d5f1d76 cpsw_ale_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9e86d0be cpsw_ale_dump -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb5a08f29 cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc09ecc84 cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc4401379 cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd3cb7d3d cpsw_ale_control_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe2ac1211 cpsw_ale_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe97c52b3 cpsw_ale_control_get -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf6649288 cpsw_ale_stop -EXPORT_SYMBOL_GPL drivers/net/geneve 0x22708a6a geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/geneve 0x5e42f322 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x71e86016 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xafa0db11 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc5662af9 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xeeebf028 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x9bc2f983 macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x30333a53 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x660254cd bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa9878223 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xacf59471 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc60416d7 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc74e781b bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc7aaa030 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd22da793 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda801332 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdc472bc1 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x660e6ec6 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x85eb33a3 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9a737e74 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9c59f4ed usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0d9aff4a cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x229cf768 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa396f937 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa7f2b334 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbb363a4e cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc582624e cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd7303684 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdec31f5e cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf082422c cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2b23d7b0 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x750d7d06 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x78f5df18 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x792718c7 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa806e3e8 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf7985757 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00eb80c6 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x049df4c9 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0911fe2a usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x12ec2a49 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x14d926bc usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1972bed3 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x21558d94 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3b583771 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4747a691 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4a7930c9 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x53bf499f usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a304631 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5eb203d3 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6428f711 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x66165e3f usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x84d78c9b usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x85a54133 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8c42cd5f usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8d13c584 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8e9f675d usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x90a6a740 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x973bbc60 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xab8631b2 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb737b816 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc9fba157 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd0a789ea usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd69f7ea9 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe547ef3d usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xef7912c5 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xefd6afc1 usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf9410be3 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfb95660a usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x55febbf5 vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x5b02d2a2 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0388ac63 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0987acd2 i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1c8b33db i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3b484b6d i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4105f26f i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x42cbe116 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5a7e6e40 i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6741fee7 i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x78518314 i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8d610d44 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x95b429d1 i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9e648ea7 i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa22c9494 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbc4cee7b i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc5b74e04 i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf5beb627 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x28d01e35 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x7bc2e722 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xc117f6a9 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xfc34687f cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xa0943000 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x05ee94a9 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x3676545f il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x67f30cda il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xb023c448 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xfaa0e499 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x13aadacd iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x15b1f659 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x172f667d __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x37795e45 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4009d1e2 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x421bc077 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4a5ed373 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4ea208e2 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x512a2413 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x53e99770 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x55ea205a iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x565518fb iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5ee5ab54 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6ffdbc26 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7805c872 iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9bf05849 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa31904eb iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa7e5b0a6 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xac533fc3 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xae0527ce iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb1daafc8 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb21fb3fc __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb7d52a42 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb8979af3 iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc5d7827a iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd7ce6161 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe6378090 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfcd75f37 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0a277fa8 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x235aab7b lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x28ded784 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2ce40c41 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5280ad06 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9783d272 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa8dfd77e lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb30df90f lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb310ec98 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb70222a6 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb97d9b04 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdadbf5cf lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe5a48457 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xee9472e3 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf3c35eff lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf9e05f98 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x0b09a44c lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x11cb570d lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x14b79baa lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x25920c87 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc34ab3f0 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xe5dac21f lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xee565fdd lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf1b9d208 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x00d7b97f mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x056397ad mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1d234771 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x41c3b20d mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5fdc3dad mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x733390d7 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x794033d9 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x89e082ba mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8dc0b909 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9de097db mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb68112ad mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc013a041 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcb7dccc6 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xda67ade5 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf8736302 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf8ebcefb mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf99ddcab mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfd1bc079 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfdf746d8 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x352ab7da p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x42e7713f p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x715b103b p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7f6a1ad5 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x90732f99 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa28dc480 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xaea05efc p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xce134a9b p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xed301696 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31232ca4 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9d47c8ce dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa13ebb40 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaebc72f5 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0b1db969 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x185c9ee0 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x362c7484 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3b26bd35 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x45b1a10d rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x59b3880a rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5e0eb5f7 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x63142863 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7483c42d rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7cc90978 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x800a6a7c rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x857dff77 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x92195cdf rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9618a05a rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa04c99fe rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb055553a rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb1bc8c4f rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb276f6c6 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbd32a52c rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc0346cb1 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc6ce79b1 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd36255ea rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe0f1b663 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe429322f rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe578a47a rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe88bb99b rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf52d2036 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4403b2db rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x490ff08b rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f6316ba rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x573e05f2 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5abe5765 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c702de6 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x616aee90 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65b62fca rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x981c5e6a rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa50c11b3 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa13a6c3 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc279a4c3 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc51885aa rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd28c86b9 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf28b8445 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf28fec31 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6faee21 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9596b98 rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfbcc688c rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3c89d7e7 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x47f22e6a rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9eff3d58 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa4dd422b rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x08d3286e rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x123386f4 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1af370f1 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x23a2f7a6 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x23e2d90e rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x276533ed rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x28086873 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x39710979 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3ba6054a rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x496ebf35 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4ce9cedd rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x52a26768 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5be792c7 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x60645053 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6278fa44 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x683a7120 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6aa6c605 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6c7f7683 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x77c796a2 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x77fb6097 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7db73320 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7f93599e rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x855a8cfb rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x89361a35 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x91b68413 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9b865cba rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa8512ba3 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb1544744 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb476a587 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb9095723 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc386752e rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd1673587 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd4a7cae1 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd52934c0 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdddfedae rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf20264e6 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf3f12b3a rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfddbb298 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0b15a4a6 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2b862958 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4104131e rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x45c37033 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x557e2cd4 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7dd9e5db rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x83300a72 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x8f3f8f99 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc8ea2a18 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xdfc0d71e rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf19bda81 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf9399473 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xfc288657 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0306e8fa rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x075ce0ec rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0fe468a8 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1036c2e1 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x18bb4e00 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x24752020 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x277ce1da rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2e4aa496 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x33788ef5 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x34674034 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x39d675b3 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x48d89854 rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4a26ba3c rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5a706555 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x630a3f7e rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x636dbea4 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x667b35eb rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x669af7b0 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6902bb89 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6beca899 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6e51f7be rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x79c0aa9c rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7b5dbcf1 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7e5f3eaf rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7e80a26a rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x803fef51 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x813460f2 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x85a09300 rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8c6e7bc9 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8dbbf1f6 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x900f30fc rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x922d159e rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9d6fb73f rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa59f81bc rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa846fc04 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaa2ff22c rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xad062f3b rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc0b2d5a1 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc16a70f9 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc487394d rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd0b3bbba rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe0e9c486 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xec4e6be6 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf5b02988 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf90b5fc9 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf97937af rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x04053e36 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x714ed00e rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x838f4617 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xeb5baf7d rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xf1f95040 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x8181f46b rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x86cfd970 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xd097ff57 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xd8ede262 rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0f5248a8 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x180fb1b3 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2441026e rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x369926a0 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x46c46b77 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x58217625 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5fe9e8d1 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6641d400 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x72b80190 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x854d2e49 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x89d75989 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa6a3145b rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd5c7115e rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe2019fb7 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf4de570d rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfa5c6ae2 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x012d0493 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x98a48a87 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xcb0a55ef wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x024c36a4 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x04cf91a8 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x08bf0931 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0e8db538 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x12bbecdd wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x174b4fd7 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x19a2a6ba wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21bb09d2 wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x28383f8a wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x35aaa88f wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e235079 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x43e54ede wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x462da206 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49107c64 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a0b421d wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b45df63 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b766e75 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61b08bea wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x66912417 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6bc9cce4 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7a2e3b55 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84a8c605 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84ab405b wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d21de1b wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x92c5d291 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9571e727 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x97a9c1e9 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9d1d3c24 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4f7e551 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2944ef6 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5f443a6 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba3c4f24 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbd3e860f wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbd5da25d wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbe9c0fc4 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc336d250 wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe3a9837f wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe55b0bb2 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe8340210 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xebe3f5ef wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xefee6c50 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf26ea314 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf775a3be wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf90e9a23 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x2b4f1cdd nfc_mei_phy_alloc -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x4c4a67de mei_phy_ops -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x82c2406c nfc_mei_phy_free -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x011d6cfc nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x469dd6b4 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xae3d2da5 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xae628735 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x40260c0a st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x461caca5 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x50707080 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x704e1c8d st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa658f47f st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb94b31ed st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdca2ae08 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf6873608 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x1d994888 ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32e05880 ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x4f4021d5 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x121e45a6 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x20976152 nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3aa12eee nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x747503ef devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xb87f27d5 devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xccc422c3 devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x377828a5 intel_pinctrl_probe -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x4318fed3 intel_pinctrl_remove -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x724608eb intel_pinctrl_resume -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xc8a2dbec intel_pinctrl_suspend -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x787d82b8 asus_wmi_unregister_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x985eefa2 asus_wmi_register_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x56235c72 intel_pmc_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x75068282 intel_pmc_ipc_raw_cmd -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0xa6c87106 intel_punit_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx -EXPORT_SYMBOL_GPL drivers/platform/x86/thinkpad_acpi 0x706cdcef tpacpi_led_set -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x64ebe677 wmi_query_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xa9b7afd8 wmi_set_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc5e3dddf wmi_get_event_data -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xe2426710 wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x5982e17b pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x7980ffd5 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xbcccd667 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x6365870a pwm_lpss_byt_info -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xafcf8794 pwm_lpss_bxt_info -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xb0a94ebb pwm_lpss_probe -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xb563cdb0 pwm_lpss_remove -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xc34d815f pwm_lpss_bsw_info -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0fd7a906 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x57a59e06 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x76940c34 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3b340dce wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x831129db wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa58521ab wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xaf186962 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd283504e wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xeedd3ef7 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x228cccd9 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0df57f83 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f662a1b cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a02e5db cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f45ef66 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x20741a1b cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x211e7450 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2f4b8e15 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3009a666 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x34b1a3ad cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x366f52d5 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d413c22 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x42b26e6b cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x446d5a6a cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b6d7934 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4c82ad85 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4cd5248c cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x52e29329 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x56d462f0 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60e99ba1 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x62e986c8 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6af4699c cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6b813f25 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6fcbc5e7 cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x76a9324e cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x788b4023 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x82912deb cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x882c0f16 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8861748c cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x98716d75 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9881f578 cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c69ce95 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa018e1ec cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa450507f cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4bb8f26 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaa06eb94 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xad57d159 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb493f016 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbbc747c1 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc0429406 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc0634cb7 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc9c4ddb3 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd9224302 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf128617 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeb658148 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf745ccd6 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfacb10b6 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0964a271 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1a33c044 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1cd429b7 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x479490df fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x497edb0f fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4d9eedf4 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x64767044 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x647761be fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7d172589 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7ee7e43d fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x843fd446 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc2fcdc1d fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd41ac52b fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd4d7e2c1 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe878efa8 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf24d3bc4 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x43298f83 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6a1993ea iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x829821ac iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcf140147 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xdf23addd iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe618f59f iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x00409fa4 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01538815 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c10cefe iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x173dab86 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c84c6bf __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x279ad896 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2fe25dff iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3932cba1 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bc24608 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x431d456d iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x511753df iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5536c372 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5e02cb22 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6244eea6 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64091a78 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b208139 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6befb09e iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x71a33881 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x784fc400 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b667239 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d8839d4 iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x830ca61f iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x84c39703 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86127a8f iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8de68fa1 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9b05719a iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa2111111 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa85d90cb iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaa814fec iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb41ece1b iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc2ae922 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc049a957 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc1d44769 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc77c9fe9 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc954d59e iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc9565af3 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd36f4a3b iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd52e0975 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdfc67c5b iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee1a1948 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xef345dac iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc0a03ea iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x040cff2c iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0730fdc9 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x107bc33a iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2211c6cb iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x248aecdc iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3d49a81c iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x49076939 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4dfcb783 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x54a9b321 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x58b0d381 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5b107a79 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa50fcc6b iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbc4d094a iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc4178b95 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd1f45449 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xec1167fd iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xed00009b iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x06b6f139 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x09ce3f90 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0f05e998 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x103e1c56 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x11b3a0a2 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3771855f sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x42456de8 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x43afca98 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4965d6e7 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5292f311 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x61faae5d sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x75cd0c0c sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x830e2cb8 sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8cfee0fd sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9e75111f sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xac59c7c9 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbebe1053 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc363fd1e sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc3c564fb sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc94595e1 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xedf0da8b sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xee09dd79 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf86d26cc sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfa9c2392 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x05d4db7b iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d4f0416 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0f5792c6 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x13e74071 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x16ed5a55 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x18a42a4b iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21488887 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x22a51777 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x235f94c1 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29a069f0 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2afbfa78 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3588e5d7 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39e9c460 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b06b633 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d3de343 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3ffae5bc iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d106f7f iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5dc26336 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6997db84 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6df032e2 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e56979a iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72151081 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x781dedf0 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85c59c26 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x875137b2 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b06ea0f iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c799219 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa15079c9 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa75cbcd iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae7dcfd6 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf2bbf2a iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc10c08aa iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8973897 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd064e8a3 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5134b4e iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd8cc1523 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe184b5d8 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe58e7ec1 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea2db815 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff219516 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1c07a129 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9f06ba82 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xeab58e92 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf7325001 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xaaea2946 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x418f71d8 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7f1d7f34 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9f01995a srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb687198a srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc536f45e srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd0f0d1c4 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x16b9331a ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x377ba75e ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x3c35d7a7 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x558e9828 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x741d5b7f ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x81d09b59 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x987db80d ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x39e94d1a ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5674cc36 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x6813b69a ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x86ba44d9 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8b7f6904 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x959431cb ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc9922d1c ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2ccb4d31 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4ae16c35 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x644cca0c spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xac1e7148 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdb664a4b spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x54d3218a dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x77b7076a dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xea02a762 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xfb1343f9 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x079b7ca7 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0fa27f4b spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1696e7b4 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1b065f94 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x280fc489 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x468649fa spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5a513f80 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5c7e8a3a spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6b9e855d spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x78767c12 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x82c26c2d spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9b497b71 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb2251b26 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc3a37218 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd60fc1a1 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdd3eb0e3 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xece07e10 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf8f686ab spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xe1c59a8b ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0735a870 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x15d076f3 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2628e6d6 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x292c454b comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2d2dbd95 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x52b58fc0 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x568f6d3c comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x585c25c1 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x602967e1 comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x61d92331 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x65a90d75 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6efc9248 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7047f1d1 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x79b38283 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x88f03ec8 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8b6964d9 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8cd9f911 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8e7bb429 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x92eaf96a comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x963ea488 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa043f446 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa3645e3c comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb53dfbef comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb60525b6 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb8ffe95b comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc269b147 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc50c3702 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc6231b65 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdf53d3c4 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xed73e31d comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf030ec17 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf1284912 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf4752e5d comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf5ecbb2b comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf9768cf0 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x162f0751 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6fbea797 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x914d149b comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb47efe88 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xc8d17e01 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xcf1fd9c7 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd1041683 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf845dfbd comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x5cbbc1b0 comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x794aa136 comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x9b3d97d0 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb803af94 comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xd3096e6d comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xd703d578 comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xed87fe5f comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x12dba09d comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x35c1db3a comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x43f29bdb comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x5a4c7982 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xb15bfb1d comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd5eae1e3 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x60879bbd addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x84ec4313 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xf3f8680c amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x7f37577a amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x18feb0c1 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x640e7382 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6b33a7d2 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x889a2661 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8a27f64b comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa2409fb3 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb5a642f7 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbdce3d45 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd029af1e comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd1bd1f16 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xec350212 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfb575a97 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfc87ed5f comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x12f3ab2c subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x31fd6fbb subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x5bdb5ff9 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x18589fae comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x39b8403d das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x01fabff2 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0667afcd mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1ef03aa7 mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x21eed8a3 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2fa0bfe2 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4d878fa1 mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6080aa8c mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x66cab54c mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x69eb26b2 mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7225af25 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x799e5f5f mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9750981e mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x98de80b9 mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa07272f8 mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb3d86b78 mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb5d9a594 mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc42719a5 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd4638671 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe7e4a1ea mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf959a991 mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfcc36dd5 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x18034ef1 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x8b4bb574 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x1b2e8a73 labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x5d351745 labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x636af58a labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x63f04c92 labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x6d56edca labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x042a7aee ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2ebf0a09 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x41148f98 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6f1861e8 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9c2f0a5e ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb0cf1499 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe90d7386 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xee76474e ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x39933eca ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x3f143ece ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9363aca2 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa3231cba ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb4b61e8c ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd27720d0 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x7c43badf comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa15a1044 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xc0a041b0 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xc88de7dc comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xee9577f5 comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf7a8e4cf comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xfa8c7989 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x81192572 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x00c0997a channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0a5d7844 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x26efd438 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x333abf0d most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x3550d22c most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x46eed0ae most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x7c606416 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x83e43041 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x88d0d959 most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb3521fe8 most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd7cb26c6 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf197a1cc most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1e1e5f45 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x214f9b11 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2ab8daa7 speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3b8dc031 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x62b44416 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7fa99c71 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b3aeb81 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9f7f0de3 spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xce75e55e synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd8a54da1 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd93c3283 spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf84cbcbc spk_var_store -EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x020c204b int340x_thermal_zone_remove -EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x4e0155c8 int340x_thermal_zone_add -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x68b1edb7 intel_soc_dts_iosf_add_read_only_critical_trip -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x9e80d899 intel_soc_dts_iosf_exit -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xa1c1cd73 intel_soc_dts_iosf_init -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xb13fdca0 intel_soc_dts_iosf_interrupt_handler -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x29f47c7c uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0x81ce6fcd __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x85a2d588 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x5bfba3dc usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xdbc89219 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x103b6ff0 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd4f73c71 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3af12189 ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x52f388f5 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x735c2b4f ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7e530018 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xdaba1e6a ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe091b907 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0ea168dc gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x33ce17ec gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x34b2d560 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x52342313 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x52fdf9c6 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x659ce931 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x66673f9a gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6ac6d094 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x748d5486 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x84c6e6ea gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaebf7e55 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xce55f92c gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe362b710 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe8c61b02 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xffd79fae gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xdaad4028 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe283ea1f gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xc8feae41 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xdc21605c ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xe5d906e4 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0c053fc4 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x25b0a8e4 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3b2a29ba fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x73d92c7b fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x993d3311 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa9b93c0e fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab3d7c85 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab4d7903 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb4333a10 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcdc0d962 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd159ded0 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xda4d8539 fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xde94cdee fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe4cf99fd fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf03c2921 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0a571112 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0cdcb4e8 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x25d47c4f rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x26c93f3a rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x316d8c5e rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4319add9 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x880fd98c rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8cafc9bf rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8d6ffb8c rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa3a26a3f rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xccfb478f rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd51115fd rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xda5073a4 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe310b6b3 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfff96d1e rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x19aa585c usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1b211bf2 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x279f994f usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e660439 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x30540742 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3176ce95 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x56f33ed7 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x600a3083 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x649cf5d8 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x66805400 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6919008c config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6d361c79 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6e805616 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7525b6f4 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x762b068d usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7a62d788 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7df8c972 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8168464a usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x916bc599 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9ccd47a9 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaab6e0b3 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb69c4ddd usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb80a9d46 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd7a81341 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdf3df679 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe01ac0ce usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeaf1f379 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf4304692 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xff21b41a usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfffef2dd usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x18546c11 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x19fee566 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1d0604d7 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x214f5198 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c5200d5 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7038ed2e usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x80b95962 usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb1f98f2e usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb3bbe3a9 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc20c1993 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc5f119b4 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xeb49db31 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf347b31d usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xa57dd5e0 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xd81f8b65 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x07945b52 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0cf36f1b usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x36bac0ef usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x614d8f6c usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x624ff435 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6a240e43 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x821c2cb0 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa26794ba usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa958f0e1 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x1e2fa9a9 musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xbe02207d isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x3f0ca96f usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x048070b6 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0ea32bcc usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x11b8b7a5 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x233c4ecd usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2a433864 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2f792a3c usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3b3bd648 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3feb8f97 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4bb6135f usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x73a2d545 usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7e1a7d17 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7eae3bd3 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x80344260 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8c3dd846 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa2a04c30 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xae1f1013 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb2da0015 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd83dbaa8 usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe6cf03ee usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xeb745827 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xeffb8b10 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0ee1e925 usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0f27a4b1 usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x140663dd usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x23afdc1d usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x568bb6e1 usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x569239ce usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x57d38c55 usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5ca019f3 usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x61ce65d4 usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x621d141b usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6277f6f3 usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x65d6d80b usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x72d518fb usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8646c1e3 fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8d0e5cac usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x98b69fc0 usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9a4c397b usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa8a99408 usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xac56a83d usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xba1e52e2 usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc5307720 usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdce62c60 usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xee838824 usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf17973c0 usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1384b21c usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2a94b150 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4a95019a usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x59bbb8fa usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8b1da0d6 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x96cb5edf usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9df36178 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbc5600a6 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbd7ecd57 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc988e785 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe88d585f usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfbfa98a3 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x17a6c02f __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x18cc3f78 wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x1e5af955 wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x2982e20d wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x3c77c8d0 wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x4964bf5e rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x636aad88 rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0af51e0c wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x23f6d7c6 wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3bc7e130 wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5d14f988 wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5f937170 wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa108cfff __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa3c97ba6 wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa52696b5 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xab6fe7ee wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb2e6ebb6 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb7b96c25 wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb91db3f9 wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbced146d wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe7cd3c41 wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x0a08cbd9 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x1d8783c9 i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x6eb43aa0 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x0328e008 umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x048be83c umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x205e63b0 umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2606728a umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2a3b205e umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3a6469c8 umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb7ea0773 __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xd9a0d3d3 umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0193e0f2 uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x04d2727e uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x158107e4 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x16be7558 uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x22ae23c5 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x23d5e385 uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x28646924 uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x33f1ff13 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x35c267e2 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x36d0aa26 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3f549b76 uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x408b3e54 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x410518a4 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4ddb4659 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5d727752 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x65c05729 uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6bb81f29 uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x735c9cd1 uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7ee2bcb2 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7f489295 uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8683d290 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8a1fbb45 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9495b4c7 uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x94c82d42 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa63df3c0 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa8d8a81a uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac4bfe2f uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb6281b08 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbc671141 uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc645503b uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd4a3fcbb uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xde7ed0e6 uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe4913247 uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xec7a7940 uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xee2824c5 uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf4b3c974 uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfcd432d9 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/whci 0x183e3e9e whci_wait_for -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x17acbec0 vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x25a168f9 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x74e3dbef vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7e568e77 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbe5405f0 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe1dd1d68 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x20f1aac8 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xc046165c vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x042789f2 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x06c292bc vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a21485c vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x396d1402 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x41d7094e vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb96f77 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4d08d469 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x52366f99 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57ee97d1 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ee770c4 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5f7e1700 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6c63ba54 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a8ef1c3 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7aad5622 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c6eb772 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x89dae845 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8a141a8f vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91bb556a vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x98b09503 vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa5655a21 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa75cc6fd vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb4925d38 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd417b04c vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4949996 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd834510f vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe2832a1c vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe66c657c vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe715c5f4 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf5673c4a vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfc31ed29 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register -EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x08736007 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x66db0aff ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6bc0e9ed ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x74fcaec8 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7c5e839d ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x98adca00 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9e52b2f1 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x0b1cca9b auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1a96a1a9 auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5f2f946a auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7451af09 auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8109cd87 auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x87c1f9bc auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9aaf317c auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb7dcfb88 auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd3346f23 auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe5a3cbc4 auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x9200df00 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x105ac0ee fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xe6d6a322 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xa9278a65 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc6c85b78 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x22a7af24 viafb_dma_copy_out_sg -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x292da7a2 viafb_irq_enable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x79e6190a viafb_irq_disable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x7bed47fc viafb_find_i2c_adapter -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4f863e6 viafb_pm_register -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcaefb732 viafb_release_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x087f8661 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x2316654a w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa3ee7599 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xbd5a84ec w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc136cd68 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc340ebe1 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xcc76adb5 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xee1cd931 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xfca9036c w1_read_8 -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x88765f36 xen_privcmd_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x01d5da6f dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xa15505f4 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xa566c220 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1db26be9 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2466b38e nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x304200d2 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5be18e96 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6eb437f0 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x90f7042b nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcf05cf0a nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00789b22 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0238ad8f nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05db75f5 nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05fe4ca0 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x080eb7ed nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09592e0a nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0970a357 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e233df6 nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10a9f6ef nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x115f3834 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16a188f7 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b77dc6a nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1dbc4e62 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21289d44 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x242800e9 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24eb995f nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x252c987e nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2585bf28 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26134231 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28094a2d nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d432da8 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d8a622c nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2efd0419 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f62e7a7 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30fd8c06 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3198d83a nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31b30cd2 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3901b3de nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bbbd419 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c3ea5f0 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d1fa276 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f5089fb register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4169c582 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43ac6022 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4571fd6b nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46e6a258 nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49f0e913 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ac132fa nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c564a50 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4da28c18 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4db5d75a nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e78dff2 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5074ee58 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x524efbf8 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53a01e4f nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5401df21 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54b016ba nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5551850a nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56fe6600 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5720bc95 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5af43120 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5baef05a nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c8aea0d nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f783a5a nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60b896a7 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64b31f5c nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64d1937f nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65ab5674 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68fa1eb7 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ba211e8 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c902bf8 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x701386b2 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7062ebe9 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71379614 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x737b4dc3 nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74973aff nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x775f84fe nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x778cc143 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f976497 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83a7731b nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8845d27c nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8924b4bd nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a354a5f nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a4a98e3 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b5ee81f nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c655a76 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c7c4376 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90f1eadb nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x910affc2 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91c9dc75 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95839c1b nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c109c92 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9da058df nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa17bbde4 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1b920df nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1c01bf9 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa578e61e nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5e8f6a7 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab2e65cb nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab99e444 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaba89800 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac2830d7 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae1d16a6 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb54cbc1d nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6a7aa84 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7f2e5fe nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb876aa2f nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9bd5b14 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9e9bcc3 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbacc1211 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbaf5798f nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb3cc6dd nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc080c704 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4b8f679 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6d654c0 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcab9745f nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcef184cc nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1eb9be8 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3d0f262 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd44e2c2b nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4dc31ad nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd86b40f0 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddfe80a3 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe20732d1 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe53a927c nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea352bec nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecdbb008 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedc9627e nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef804816 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1458d4a nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2292a48 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf38c93c9 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8b0b51a nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x87fd7078 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07b4b859 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x093b792d nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c8d70db nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10b1f413 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15ceee52 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x208eaae2 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x234d3d07 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d726ce7 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d7e6ba7 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32db7f29 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34302751 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3be17e36 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44dd65b7 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45c223e3 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d8b3e89 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4dd65e68 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e37cd45 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x52d523ef nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x542d9473 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55e67120 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c60f901 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cb52b6c pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61f7b813 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63623a75 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69bef193 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69e5d8c9 _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b8cb68c nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f7c01cd nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x707e0b1a nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72a4b97d pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x745fcf96 nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x791acd7b pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ee812c0 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85b4bcda pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91d29b96 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94124d73 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ff0b269 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa53c9b31 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabd6abae nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2e54e0e pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc24243eb nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc1d614d pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1616086 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd20cd927 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdacd4238 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde84ec59 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1de0e62 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7dbd252 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeacb6919 nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeeb9825a nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeef367a3 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef9ed802 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2c4801d pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6e9c3e9 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa446a02 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa8abca1 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd4f13ce pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfda9f49f nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x8be83b6e locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa8b83ee5 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xac72b95b locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x20978fe0 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc65a459f nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5f013fd3 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x663986bf o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6988f949 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x741c6fa8 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb7bdcaec o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd5afc9dd o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf8dc26d0 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1154de7f dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1d0f2b89 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9df94cb4 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc35f2df7 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xde9060eb dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe05803b9 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x89ae48d9 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe540588a ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xf82c0181 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x82f06ecb torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xdc1ee4da _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xeaa60998 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0ee77bd9 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x68d7e051 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57861324 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57d39367 base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x882ce5fc base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9e0112d0 base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xaedfbb15 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xc8fca8a6 base_inv_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xd11741a1 base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xe3d900b5 base_old_false_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xb65fc4eb lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xf6a5ea98 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x6a99a574 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x74f0355c garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x840e1649 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x8d25362a garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x90a048e3 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0xdab53556 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x30b27bbe mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x78bd7cd3 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x9659374c mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0xa548847b mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xa71eff26 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xee642354 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/stp 0x8d0a9b5c stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0x909fe14b stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x4198fffa p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xe64d84c7 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0xa16b8315 ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x02f0ec64 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3dcfa4fd l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x53209dd9 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x582984fd l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x776d1960 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x87ca5cbc l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x92d91016 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc73650d9 bt_debugfs -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x18273532 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x340410dc br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x38fb28be nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x74a10e60 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa46a6fcc br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb29ff50d br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe25c9d38 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xeff6d25c br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x0ce54816 nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xfd8dbd74 nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x02fab52c dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x03fbe539 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x056f57da dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x05be966f dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x08e3db0a dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0f94247b dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1b0febed dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x201104f6 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x23672cd0 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4dea10f5 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e2d4d99 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5dfb58b0 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e711361 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x63a92c38 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6823af2a dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x69520bc2 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6f43d211 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7be61e85 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ed5973e dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9008fec3 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9bf5053d dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0f910df dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa0d67a2 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xae11b3a8 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb27ce88c dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc8ef1cc1 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcd687c01 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf26c3e5 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe509f817 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe549eb09 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xee51e140 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf789b9c0 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfb57c325 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1b51ac3c dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x522f31a6 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x72db86a8 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8984c90e dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa634fc3e dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcc78b5f6 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x0d95e1fb ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x2935064d ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x33c387a0 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xdb5f0959 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ipv4/gre 0x212357b9 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x5b106fb1 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x040f4465 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8212dee0 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x82bf242e inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x986862aa inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfa96a3ac inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xffe91803 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x0ccb9899 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x00b2998f ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x13866111 ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1669ac04 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1bdf80f6 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1ce83d87 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1f3de4a4 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x476f2e0b ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5b9ea5e7 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x96679340 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x993de22b ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcdf95134 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd541a7c4 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd7cd231c ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe121710d __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xedc5bacf ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x2a8ed8a1 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x12f56ee8 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x37bcff40 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x395b0df4 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x92b8a790 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xaefa9beb nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xc33b221d nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xe82ef2cd nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x5ff59626 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0faad93c nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1f7a460a nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa7560bc4 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc6919347 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfbec1196 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x59aaf4e0 nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0b1a9ce6 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x14c507ab tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x29eaf400 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4fb3c044 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8a23f2f1 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x18d1c9c7 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x54c24128 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5b620e86 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe6f716b8 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0875a32a ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0a73e530 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x28039a1d ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3020bfe3 ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x964441e3 ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xbcf392ff ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfbf21c47 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x62211eb1 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x9692019e udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xd6d54ad1 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x09782edf nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x211a3e95 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x3a977b1e nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x0e85d924 nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x22fb37f0 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x3343d800 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x74fe51a6 nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xddc652bd nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xd01c0276 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x031d4840 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x19eb1cf5 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7d188a28 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9f2d3ea2 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xafc4a656 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x81292758 nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x352e1945 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x379ff388 l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3cff0820 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3d288a7c l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x436a23d5 l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5708350a l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5c3cc69d l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6071c304 l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6db8e53d __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7b2dca2a l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9e8518db l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb76bec6a l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb7e9ab5d l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcfc229aa l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd79d1cda l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe68dd162 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xfc5f516b l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x06f84632 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x101b8826 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1c713397 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1cc5dd49 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x228a5a3b ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x33afd28d ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x35468a09 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4f1d1c12 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5012f009 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7466bd70 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8ea67951 ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8f09c20b ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9f31136e ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc5958759 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc6a1d0e0 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcfd6c770 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebdf8959 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf68e15f7 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x26fcafb4 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9f085bab mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xad04e448 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd0d69876 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x132072ad ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2d71d916 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3d265fb4 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x49f82e37 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4da31b71 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4f85ea7e ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x67e979fa ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8d5d3f39 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x92afd06f ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9769efa6 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa17ed6a4 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb458cad1 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbbc38967 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc9739766 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcd9ae11c ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xec8b5793 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x884ef8bb register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xcc873595 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe00dd321 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf6ff69fb ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0084e487 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0105e2fc nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x019fd117 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05991d11 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x096b4eba nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a445032 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a5e35b3 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0dc9a3e8 __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f282321 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10809b81 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10d25791 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1300ced7 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x136f6232 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1486c49c nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15d272f6 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15f99453 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x202733dd nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2099691d nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x252ddd38 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2767e8c3 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a4c05a7 nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2abdb1d6 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d0bd5be nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ec28d17 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3faa5b48 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x439eb1fc nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c60fc2d nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56a80a80 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a2f8999 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5daf0f01 nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62e4940d __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65939659 nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67037ab8 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x677bac6c nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67a4c16c nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a18dc58 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f996d83 nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7173081d __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x748297d1 nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c3e3f36 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f7b29b5 nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x870b9e2c nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a9fb63f nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f40de3f nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9334634d nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93817025 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x984a67b4 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9881e153 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9aae815d nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b2048c0 seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b74e285 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9bedd706 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa14c4af9 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa206f5ec nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa67b934d nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7c495cd nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7d76704 nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7fedfb6 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8944129 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9466189 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa7c0536 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaea18224 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8fb6abc nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb8c9184 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbfdbbee6 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4b8f588 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcde6d1ce nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0af489d nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2dda391 nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3808951 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc1f08d8 nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3720eaf nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe79ecf1a nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf202fc20 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf36224a2 nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9f1dca5 nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfad7b5b7 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd6c67a4 nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe213da9 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xa69f72fc nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x7abcf844 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x2da259c4 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x112432f2 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2ab9613d nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4416ce36 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5c12a854 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x936fe284 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb23c1e7e set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc9275c62 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xea1dfc5f set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf71c44cf get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf7b92229 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xfa6e075e nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1f5248d3 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6415bb00 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x73408213 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xedba7135 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x4dd662ba nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xda93e752 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3fb38405 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5fc852da ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcf57bdea ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd56200dc ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe5c2416a ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe79d12c2 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf1805615 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x999c21db nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x91ac0af3 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x3d96ab3d nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x69b0b74f nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xb8aba3ee nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xd273b288 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x04cd1dee __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1991d3eb nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1da478be nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2a061d4b nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x44ed7034 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6be85ec3 nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xca59bb1c nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf2651edb nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf7b9cd31 nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x60ab84b1 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x71f63874 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x85dcd179 synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xabce97a6 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x011383fc nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x021f8085 nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x03753694 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2b3f5335 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2ea31333 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3b6fc022 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x50e609f2 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x65ab5fd7 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x87a870cb nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb0bc010d nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xba5f8ccd nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc101fc63 nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc6bca9af nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe5e99773 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe5ebad33 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf42f0e1d nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfe11e347 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x25d969b8 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x32e580de nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x38702dee nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x47aa8df0 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5d10f7f9 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6c222db4 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x870e5e76 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x34cbeb01 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa57c3009 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xe6ca26c1 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x61a3d7c9 nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x27a5ba57 nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x72d3a031 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xd103385e nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x1f8f1013 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x287dffe2 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x500b3cae nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x6cd6e8a5 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xaf7cd0db nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xecac97f2 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x0ae92391 nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x4041c03c nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xe7da75f4 nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x2aa8de4d nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc04748dd nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x00df6214 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x018ef9f3 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x05e2f19c xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x296fe4a2 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3d212da6 xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5df5a523 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x60b25112 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7e0f935 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad60fc3f xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb7d32e51 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc0aa2186 xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd044d310 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xde204aea xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4c32c169 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb7459345 xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x163337ad nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x29c59228 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x996bb943 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x2b3c401f nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x36111c4d nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7c47eb15 nci_uart_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x05e5d755 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x063429d7 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0f1daf81 ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x246735bf ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x74dad0c4 ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbdeff841 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcb9a93a7 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xce0076d6 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe66f1b65 ovs_vport_receive -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x1abdd6cf rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x5341dece rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x5721e840 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x77b5cf1a rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0x886c0bcb rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x92bbe47d rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xb25d7cd0 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xb6380463 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xbed2b43c rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xc1ce9eb3 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc6b373ab rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xc6f6fb16 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xcc2ca154 rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0xcfdd21c9 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xd8b1ed58 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xe0f56e82 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xe43d177c rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xed8e6cc0 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xf385f4cc rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xfb43223d rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xfcb1bf3d rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xfcc27c68 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xfccecace rds_message_put -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x47f422b7 rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xb0ad4926 rxrpc_register_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x18b93d9e gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2670ebfd gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7d36f80a svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0164417d xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x038cf671 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03bed53b rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04e9c06e svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x050066e4 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06b155f1 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07ca5a8c rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a1310e3 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a88b95f rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfa2267 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c332448 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ca19b13 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f6c9014 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ff61b0c svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1025ef15 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12b5b2b7 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x192c1d38 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cb6dc4e rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ee4123b xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f5a5b51 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2020b1e7 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2236d2aa rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2240fe94 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23596f4b svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2422e55e xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2512af9f svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2785b938 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aa2506f rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d4b7d62 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f837d12 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fd0613d xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ff94e15 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x320731f7 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33fc898f rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x352d2fa4 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37a21cd0 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a7f6e08 rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b253d64 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bd72144 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c46572e rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c56d422 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cdea25f xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d182a69 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3de120c6 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ec28d59 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ec6ef53 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41016224 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44db5b3d sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45c2eb80 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x491144d9 rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b1dca91 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e1b748e cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e4f8c65 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4eb9e490 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53e65d37 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x542f44ab rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5438207d rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55211787 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57b85964 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57f98359 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a22422a xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c21435c svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cc7d94f xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d01b659 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d257359 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d58e2a7 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5faa696d xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61b8f1df xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61e966d9 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x663a1149 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x674e4a76 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6772db0c xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67e65e5f rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69344d27 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aa052c2 rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cee0fee rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e8d6bcc svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eddcd14 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f9df8e8 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70280c47 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7064fd70 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7476c425 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75218d5a rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x758c9179 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76aeb95a rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76b7fe59 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76d9d900 cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x794b29d0 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d2d1a6c rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e1d5235 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80403887 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82b0f410 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83e37f29 rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x848c0293 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x871b07af rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x874c84f3 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x877c3e84 cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b91562c rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bc35643 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bff9fdd svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c2ffcfb cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d48d57a rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e381ca3 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90f15df2 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x918cca69 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91f2befe rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92ea8dc4 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96181125 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9747f377 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a5d9862 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ac083a6 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e05e421 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eb29123 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ee56b59 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f140b02 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f409056 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0490376 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa105649e rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1aef0d6 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2b1ed31 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa32931dd xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa371da5d svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa47d2206 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa836af4f svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9039723 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab5a9c88 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacee8c18 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad32232d csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad748c71 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb10515f6 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1af0ffe xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1dc5afc rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1e781f9 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb24933d7 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3c93326 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb43c3871 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb466fd42 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4ee6805 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb696facf rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7d039f3 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ff9cb3 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba5872d9 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaae8cd4 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb18fc0c xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb4db7b3 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb76ba6d svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb77f7e6 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc3792e5 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc740847 xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd2bf11f rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbda214e2 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc13923c4 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc293bd5f sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4e9e16c xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc715fb48 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaa50297 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd3cef49 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd9d0168 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcded56ca cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcedaa327 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14c8eb9 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd42f9646 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd55d6a53 xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd57f524f rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6ce0b91 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6d7f8ab xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7a04523 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd96608e7 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdac9a26f rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb1acd31 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdde94cc0 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe08d423e svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ee67fb svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe464e036 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe888636e svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed9007e0 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee459f89 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef62c44e xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf15c6b7d __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf24a8075 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2b42d81 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf31a4cb0 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf344e29a svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3fb2c59 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf47f72c9 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4c8ccbc rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6aa506c svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6c236b9 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8ff5fea rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf90c2e6d sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf997dbd2 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa54f190 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfab0c8af cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd1235a5 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd27b28b svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe6c0027 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffd616e0 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2209c513 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x25c8881b __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x37377517 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x38834ac2 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x463101d3 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4fd82884 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7c7feb8d vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9a66b4dc vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9a801c0c vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9c9ae079 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa60cf8fe __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc0333fc6 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc03c8f5b vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work -EXPORT_SYMBOL_GPL net/wimax/wimax 0x06e4521e wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0x0d299ff1 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x22b04da2 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x4694832f wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0x702a840a wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0x717bdb23 wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0x79265c4e wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0xaaff64cd wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xdcc90d67 wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0xe25c75a8 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0xe42e8785 wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0xfc9aebc7 wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xffd9bc15 wimax_msg_len -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2c79ded0 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3507c25b cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3f13df48 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4b287ac1 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4caac53d cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5a23afe2 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7017fe63 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x720c3631 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x86f5d3e6 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xaca179a6 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbda7d1ed cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd053a7bf cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xde9db781 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0364ecc8 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x60f3ba73 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x98bae403 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb1b6732a ipcomp_output -EXPORT_SYMBOL_GPL sound/ac97_bus 0x86cc05a7 snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x03715008 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x577c3c18 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd 0x30ff9768 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x43491bb3 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0xa3d87061 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0xa6981ca1 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0xb15a8f78 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0xe00474f4 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xef3e9af4 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x1de55bd5 snd_compress_register -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x5765e69a snd_compress_deregister -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x86f46a2f snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x090de6a9 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1e5ef48e snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x28835cb0 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4346080a snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4bf76ca7 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x888a6e98 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa5e3a74b snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb167b91c snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xee116ba2 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x02579766 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x24785627 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2b932240 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x32e6dc19 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x68d8361a snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x78c4c0f5 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8133a82d snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8b253d4d snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf5874ff9 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf5b57f1d snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf726bd88 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2454230f amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x283429f1 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2aa1225c amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8f6a6c04 amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x916e22d2 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdcbf3097 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xec17e0fe amdtp_am824_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x00d42511 snd_hdac_ext_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x06d158c4 snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x07a44cdf snd_hdac_ext_bus_device_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0f9d5c43 snd_hdac_ext_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x21464892 snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x270fc9e3 snd_hdac_ext_link_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2ff5139b snd_hdac_ext_stop_streams -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3d14101d snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4530c009 snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x520a67ac snd_hdac_ext_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5217c794 snd_hdac_ext_bus_get_link -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x53fc5524 snd_hdac_ext_link_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x589423e1 snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x663c1331 snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x67b57a3c snd_hdac_ext_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6c24f2ab snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x758c0495 snd_hdac_ext_bus_device_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x76284186 snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x944f1cb8 snd_hdac_ext_link_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x99511bc6 snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9c97ab62 snd_hdac_ext_link_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xac53659f snd_hdac_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb0a20942 snd_hdac_ext_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb9e77a78 snd_hdac_ext_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbffe713a snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc1865676 snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc57d5c68 snd_hdac_ext_stream_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd5b7139f snd_hdac_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd74fb307 snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xeecd2a59 snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf73f98a5 snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf8ded874 snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x01cc2c02 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x031c0d28 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04918afe snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04b829f2 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x052709dd snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0613c2d1 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a7fd07c snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b33d540 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b486770 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x115a7f24 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1190e17e snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12504d1b snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16d5dcf1 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x190ed330 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x198c3ecc snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x224da31c snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2600733a snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28885813 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28aad718 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28ca9fba snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c2727e5 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c8df445 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e3af94d snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32ff2792 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33c61d28 snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3849262b snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x393c914e snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39bc46fd snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c9ca7c9 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ce166dd snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e38d8c9 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40859fc0 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4883ac49 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ceeab30 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53c53b86 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5589e896 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x558cb49c snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5783ae99 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57f47ab8 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b4a7a8a snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f94a26f _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x638968a6 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63ff253a snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x709bf95b snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x717b2d7e snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73187668 snd_hdac_i915_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73d5aa14 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7512f937 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x761a93f5 snd_hdac_get_display_clk -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c999fb snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79d5f5e6 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x878c472b snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fb0da7e snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ab4ce57 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d16ef19 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa18cf47a snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2c65e77 snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3b356ef snd_hdac_i915_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9e65085 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac3d282c snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae8e3a8a snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1f633a1 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8fcd42a snd_hdac_i915_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbfed7995 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4ee953f snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc783b105 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce07c6d1 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf953d18 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd152dcc7 snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2557309 snd_hdac_i915_init_bpo -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5c9c00e snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd710f7fb snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdadca37a snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe6798b8f snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8e7dc0b snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1ec2eee snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9cbbaba snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa78f9bb snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x41a27675 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x48bcc741 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x59a5a643 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x868ffe2b snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xdf8bd347 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf01aa06b snd_ak4113_build -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x032564de snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03d616fb azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06a2bf55 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08415fbd snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0914f6fc azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x096e3f5e snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09810b9a snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ad3a354 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bd28d2d _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ce4cb5d azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0da41e3e snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f1e6e69 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10ec9434 snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11a1803b snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x130aac6f snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x133a80bb snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1516862e snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18262c50 snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bd7e979 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1be70671 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c98071d snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20af05e2 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22e7481a snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x277db260 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x282cdbf4 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x296675c3 snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a2266b7 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a7b33ad snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b758c1f query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d7d388e snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e9399bd azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30e4dea9 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3178c5c7 snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x377de8ab snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a56b27a snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c110d93 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3df4e83c snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3dfebb55 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f123b0e snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41f52942 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x454b7897 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4991dba1 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dcb4404 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50eb1fe2 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x542ec8e4 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55685eee snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x564879ce snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x574ec6e6 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b5ee9d6 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bd23a9b snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e118cbc snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f82bab6 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fea49b3 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65307a52 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6798afb6 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70deca21 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72d67af5 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75ebc86a hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76f00221 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77a5e38e snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77d3ee7c snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x790f4a1f snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b09982c snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c2becd1 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c42eeb0 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e697cdd snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ed73dd8 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x805c6d29 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x815ff83f snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8caa551e snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91fb30f9 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x936b1969 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x956cea3d snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95a86105 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95fb290b snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ad27819 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9aec8bfb snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d03337f snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d3159f4 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f04e703 snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9febd3c7 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0b7bd66 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1b55f6e __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3bf7e13 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xada5a03e __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf1580e6 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf6e33ef snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb65667b8 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba55eba5 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbb6fc6f azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbda37bb2 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbed72e51 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf056bb4 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfe3995a snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc107131b snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1be90e4 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4c193ce snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc54fb3c8 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc55ca3af snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc703ef48 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce9346fb snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf121e45 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd136d107 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd226d119 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2f34d7d snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4069542 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4bf2fdb snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7ee6ef5 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe088ce58 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6bfbfea snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb6c0a96 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed8c74b5 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xede68cf4 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee5ec9da snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf045e593 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1931ae4 snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf33d0b33 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6a3a8b5 snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf798bb78 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf97ae619 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa6fb41b snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbd7a701 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbe6dc5c snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff2a7d4d snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0bbe4251 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1a108b87 snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x31f1d49e snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x373826b8 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x41df97be snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5a90f99f snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5cf35c9f snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6a632244 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9164db7a snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x92150c1a snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9bb4aba6 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9eadcdf8 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb2f15691 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb781b4ce snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbdb5e5e4 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd40d4122 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeb280a19 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xed102be0 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf01e9884 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf029d7aa snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf810094e snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x78cd7ab9 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xc97d3213 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x89e3766b cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9f3eaf87 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xa4ea1cf6 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xd91c0a1a cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xf8c25e54 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x05aa0bdf es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xc8c75522 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x10603e40 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2db61049 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x630e5521 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xa230ec4a pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf53e0211 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0x9ca3c646 rt286_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x1fbdb63d rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x2bdd702f rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x7e86aa96 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x1e552dfa rt5670_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x709267ca rt5670_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x7a5efa13 rt5670_jack_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x854e0e40 rt5670_jack_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x128743f2 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x180b2dbc sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5b8c3814 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x6d86ce4f sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xcffd1eb3 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xe6d23781 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sn95031 0xcac80209 sn95031_jack_detection -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x501b4d0c ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xb12c5433 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x751febbc tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x7a75f074 tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xbdc8183c ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x55c4ccc3 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x85e31a0e wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x91c3bb0f wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xdd7dc86d wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x4e411e92 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x40862346 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x252a83a5 fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xfed4d68d fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x6348864e sst_unregister_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0xede53219 sst_register_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x2e88b30f intel_sst_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x35330dec sst_configure_runtime_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x401fbb99 sst_context_init -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x5962e68a sst_alloc_drv_context -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x636a5ca3 sst_context_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xab14edd5 relocate_imr_addr_mrfld -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x038f1a83 sst_byt_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x652126de sst_byt_dsp_suspend_late -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x6d221fb4 sst_byt_dsp_boot -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x85369c59 sst_byt_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xd6fe123b sst_byt_dsp_wait_for_ready -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x01a8f9ac sst_dsp_shim_update_bits_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0683ec7c sst_dsp_dma_copyfrom -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0bf90599 sst_dsp_shim_read64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0cab2d7c sst_memcpy_fromio_32 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0e721756 sst_module_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0eba87eb sst_module_runtime_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x18dfa51a sst_module_runtime_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x19ee163b sst_dsp_register_poll -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1a64a6f4 sst_module_runtime_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1b5e8b82 sst_shim32_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1e2d38ac sst_dsp_shim_update_bits64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1fa36fc2 sst_module_runtime_get_from_id -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x210cc366 sst_dsp_inbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2d7d41dc sst_dsp_shim_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x42468159 sst_fw_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x48615deb sst_dsp_shim_read_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x49b5a227 sst_dsp_get_offset -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4a045773 sst_shim32_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4ca5bf68 sst_fw_reload -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4cab2cd0 sst_dsp_shim_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5073d972 sst_dsp_outbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x51695cb4 sst_block_alloc_scratch -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x534a36b7 sst_dsp_dump -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x53bea57c sst_dsp_shim_write64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x55e13134 sst_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5ae616f9 sst_fw_unload -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5df2868e sst_module_get_from_id -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x682a97b8 sst_dsp_shim_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x72e1b2c6 sst_module_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7449e87b sst_dsp_boot -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x77e0ffeb sst_fw_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7f99c12d sst_dsp_shim_update_bits -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8924f799 sst_module_runtime_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8b2a913c sst_module_runtime_restore -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8b96e72d sst_dsp_stall -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8bf36107 sst_dsp_shim_update_bits64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x91e290f0 sst_mem_block_unregister_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x993bb496 sst_dsp_dma_put_channel -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9af777f8 sst_memcpy_toio_32 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa251cd79 sst_dsp_ipc_msg_rx -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa28c1120 sst_dsp_mailbox_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa42a3c23 sst_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa549e837 sst_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa7844d82 sst_dsp_shim_update_bits_forced -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb01394df sst_dsp_ipc_msg_tx -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb8ac6acb sst_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbb0f1db6 sst_dsp_dma_get_channel -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbcec5387 sst_shim32_read64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc3c1ad8b sst_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc6454748 sst_dsp_shim_update_bits_forced_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd5413010 sst_module_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd7a3808b sst_dsp_shim_read64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd9a2c94c sst_shim32_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdb8d0dfc sst_dsp_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe15df6e6 sst_module_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe26927b5 sst_dsp_shim_write_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe4506a2c sst_dsp_outbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe6f7132b sst_module_runtime_save -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xed153141 sst_block_free_scratch -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf13c7e8e sst_mem_block_register -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf811717c sst_fw_free_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfcbcac8b sst_dsp_reset -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfde664e7 sst_dsp_dma_copyto -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfefbc14b sst_dsp_inbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x018fe8e3 sst_ipc_reply_find_msg -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x0be86fe8 sst_ipc_tx_msg_reply_complete -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x40d54a6d sst_ipc_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x5ee95fb1 sst_ipc_fini -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x65b98bb4 sst_ipc_tx_message_wait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xc7053c21 sst_ipc_drop_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xd110556f sst_ipc_tx_message_nowait -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x37e297be sst_hsw_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x824c7aee sst_hsw_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xd1f69f64 sst_hsw_device_set_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x21431f46 skl_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x25acb471 skl_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x47f4f7ba skl_ipc_set_dx -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x70071ce2 skl_ipc_set_pipeline_state -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x748c3725 skl_ipc_save_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x822d82b8 skl_ipc_set_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x8996398e skl_ipc_restore_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xae832ee9 is_skl_dsp_running -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xcaca496d skl_ipc_delete_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xd7fd454c skl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xd85b8a3a skl_ipc_init_instance -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xdb180ead skl_ipc_create_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xf2d27bff skl_ipc_bind_unbind -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xf9dac1fe skl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xff0dabb4 skl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00335099 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x030e78d2 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03d9002c snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0671b8ed snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0717a3a0 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09d02e8d snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a7f8b5f snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d5e9f15 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dc9aaf9 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12f53666 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1679821e snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x176abfb4 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x178a7ea4 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17b02f1a snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1939a0d6 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a354435 snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c5d92ae snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c674695 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d9df10d snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21c427fc snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26adfd73 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x281c01f6 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29369ad6 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29a0ce6c snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2baecd8d snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bd91332 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bef2652 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c67f38e dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d7d355d snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f3efbc4 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3180aa50 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33ca1290 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35bbfd26 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36693b7e devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36b6850e snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x388ad8ea snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38ba3040 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a8f9302 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x401804fb snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x451b00d2 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x452a9ff8 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45d3186d snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46f3bdeb snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4db9c6a6 snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5156161b snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x522814fa snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5293f69f snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52b67fd4 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55f4a85a snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x562a0b4f snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56aae8c4 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x577a6859 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x584954a0 snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59197c0f snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d54ae18 snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5da610df snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f6b297f snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60bc90e0 snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6103c53f snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6246d003 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67facbe8 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6966b682 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a501766 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b8128df snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d0572fc snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6df1af72 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ee14bdb snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x771141af snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7885ea96 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x788d00bf snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c03bbfa snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c99283c snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d3e0778 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fac0681 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81d7c9be snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86fd673e snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8adb8dfc snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8adc8e9d snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fc6ec77 snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ff76fed snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90d6dedc snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9166f9fe snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92606d0d snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93329d55 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9637f5cb snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96e30882 snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9851799e snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x988f9ed7 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a714520 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a9f566e snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ba3c043 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d941236 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f54db11 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ff0ac27 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1075e37 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1166804 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1a07216 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1ca0b45 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1eee225 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4631ba5 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa54622a0 devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa89be17d snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa4412b7 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad88f65a snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaeb78da8 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafcc327b snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2b9695e snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4fc2c7f snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb505e4d2 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5f9f347 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8b0b826 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9c2e59d snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe63cc8e snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf6b4039 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfa44799 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc39ab218 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5589862 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc65b5e8e snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7fc2655 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7fca7f1 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9e590aa snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbf4dcae snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc818ea2 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc8e6ade snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfd9620e snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0df21ec snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd19178eb snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2fa3670 snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5af286d snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd62eaea7 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7057196 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8e8521b devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda167e0b dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb8a5bd5 snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc45967e snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf0067f9 snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe05f1fec snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0767e64 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0cbe5a2 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1a88030 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1b5123f snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe48640e2 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe51b6f2c snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7341232 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7b7ebbc snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe99bd0cc snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee36c4c4 snd_soc_tplg_widget_remove_all -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1dfb912 snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf55533af snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf928726d snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfba00414 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc1f6ee3 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc20ca6c snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd9185ab snd_soc_tplg_widget_remove -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x01a18509 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x181bb639 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x31dde62f line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3be00963 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3d0ffee5 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x675a0602 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x73289a76 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7589c879 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x928b3436 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa42a4ec4 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa8587f3f line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc242fec2 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc577ac43 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdd3c2f0a line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf737b8e5 line6_send_raw_message_async -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x08003b2f i915_bpo_gpu_turbo_disable -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x0d97d346 i915_bpo_gpu_raise -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x358a54ae i915_bpo_gpu_busy -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x451432c2 i915_bpo_gpu_lower -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x7d4de94c i915_bpo_read_mch_val -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x15d43c1e rsi_default_ps_params -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1e678bb2 dot11_pkt_type -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x3db00351 rsi_remove_dbgfs -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x437447f4 rsi_hex_dump -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x452525b4 rsi_hci_detach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x45ca198c ven_rsi_dbg -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x47d6664a ven_rsi_91x_init -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x4d46298d rsi_hal_device_init -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x4dc25849 rsi_init_dbgfs -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xa8fa73ce rsi_hci_recv_pkt -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xbd22b78c ven_rsi_read_pkt -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xc0311b26 rsi_config_wowlan -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xc1b46ccb rsi_send_rfmode_frame -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xcb79f5b0 ven_rsi_mac80211_detach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xe1c130a6 ven_rsi_91x_deinit -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xea0f8875 rsi_hci_attach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xf02f99b8 rsi_send_rx_filter_frame -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xfeb2277e rsi_deregister_bt -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x0008e843 of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices -EXPORT_SYMBOL_GPL vmlinux 0x004b3e4e sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x0072c9d1 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x008364de pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x0099c470 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x00a43998 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x00f2a3c0 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x012b1f3c device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x0137a2f5 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x01543497 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x015d8422 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x01659ad4 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x0170cb6c efivar_work -EXPORT_SYMBOL_GPL vmlinux 0x0180d37b device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok -EXPORT_SYMBOL_GPL vmlinux 0x018d0ca3 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x01a4cf08 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x01ab9f8b policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x01ba0db3 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x01c7523e split_page -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01edd296 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x01f7ac85 dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x01f9f198 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x01fd2852 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x01ff9c3c rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x0205da8d __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0225e4e0 swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0x02373e7a xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x023927d1 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x0249720b dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0277efc1 acpi_dev_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x027f9258 nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x02e03fa6 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x02e4ed83 crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x02f2280c usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x03053354 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x0325e576 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x032f3b23 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x035080c6 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x0351547b serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x03697fb0 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x03791cb7 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03c04cf8 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x03c9be2c sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x03e0f7d0 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x03f9d401 ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x0403d318 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x04354c67 crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x047385fb blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x0484be5f crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x048ff5bb device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x0492c137 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04a9a032 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x04bf26af ioremap_page_range -EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04c5783c acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x04d298e1 acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0x04eb74d2 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt -EXPORT_SYMBOL_GPL vmlinux 0x04ed1000 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x04ef50c5 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x04f8289d dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x051117af fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x0523700e irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05517ac4 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x0557efb1 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x059d276f shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x05a22a0c tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x05a2fd8e ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x05c08484 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x05c19004 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x05d161a0 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x05d9d215 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x060595f1 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0623dca1 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x064cd50e register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x06617190 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x066bf930 xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0x06892bb9 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x069296a5 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x06939fe9 kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0x06963c36 intel_msic_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x069aad01 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x06a0deae posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x06a11b8b ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x06a5d1a1 xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x06ba1b00 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x06c2e61d sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x06c76ad6 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x06d2f5a9 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio -EXPORT_SYMBOL_GPL vmlinux 0x06ef77a1 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x0700a481 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x07029475 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0x071ee624 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x071f68a2 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x072e51cc inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x073a338b fpstate_init -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x07a4f537 x86_vector_domain -EXPORT_SYMBOL_GPL vmlinux 0x07a9bfae clk_debugfs_add_file -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07b9a163 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x07d0d4ed ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x08086ec8 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x083ce9a5 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x084d06a5 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x085dc4fc rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x0860c0a2 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x087b2a44 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x08a67e24 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x08afc57d scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x08c3e81f sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x08c7bd7b __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x08f10258 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0x0907a7b8 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x094b328a pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x0962d0e8 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x09a0b665 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x09a0f74a device_move -EXPORT_SYMBOL_GPL vmlinux 0x09a8c1c1 irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x09bb79d7 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x0a27abea kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0x0a2f8407 clear_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0x0a32b28d napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0a554594 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x0a662256 xenbus_map_ring -EXPORT_SYMBOL_GPL vmlinux 0x0acc3492 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x0aef4b2c __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x0af817ab hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0f01e1 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x0b293c4b rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x0b2e2904 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0b413434 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b5af92b __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x0b5e13bd debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x0b703a3c devres_release -EXPORT_SYMBOL_GPL vmlinux 0x0b9249b4 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x0b971f59 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x0ba18fcd ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x0ba9818d skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0x0bb8a31e debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x0bd2c054 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x0bf41c03 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x0bf61305 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0bfb880c dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x0c0a90b2 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c18c655 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x0c2461dd rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c73333c ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range -EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init -EXPORT_SYMBOL_GPL vmlinux 0x0c9311cd wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x0c99c471 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x0cadeafd led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0cc63b79 ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x0cce0be5 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x0ccfc02c pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x0cdb2c48 ref_module -EXPORT_SYMBOL_GPL vmlinux 0x0cf07386 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x0cfbdf24 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0x0d0a4685 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x0d147179 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x0d1876cf desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x0d3bb14a dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x0d457c15 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d52f7e0 tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d800ce5 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x0d8b4a33 __dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0x0d8fdb1e sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x0dad4ca3 tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x0daffac6 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x0dc8dc8f __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0x0dcb148c da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x0dd234c9 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0dee22a5 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x0df925f6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e246bdf devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x0e293d97 nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x0e347e38 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0e613bdb platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x0e6736e8 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0e67f611 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x0e7fb95b regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x0e89ef69 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x0ebb7797 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x0ee0bc54 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x0ef13c78 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x0ef3ec15 acpi_dev_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x0f1491e8 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f4a1b08 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x0f4bb65e usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0f511407 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x0f587805 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x0f5e6f7f pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x0f5ee3b1 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0f6e4206 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0f7543b7 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x0f81d466 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic -EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0x0ff93d1b regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x100f1171 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x10267ef0 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x10365f62 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x104d3c61 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x10694622 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x106bd18e dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x107d5035 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x1086c961 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x109ff683 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x10a0d84d mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x10b6bd01 acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x10cb7fc9 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x10d4445b wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x10da6593 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x10e21c54 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x110be16c xen_swiotlb_set_dma_mask -EXPORT_SYMBOL_GPL vmlinux 0x110ce9cc bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x110d8726 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x11186daa sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x113c7c75 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x1141e6c5 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x1145237f kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x1151f4f4 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x116e2442 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x1173f12c sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x11c32290 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x11cc9af0 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x11d5a266 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x11d7c202 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x120add17 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x120cad5c phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x120edf57 xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x121165a0 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x121735bf swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0x12179430 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x12365e8c percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0x123a792b driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x123c04dc ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x124f3c25 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x1281782e to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x12886614 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x128e34f2 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x129c7592 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x12ace7e9 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x12c37b9e spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x12cdc060 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x12e592a2 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x130bd388 check_tsc_disabled -EXPORT_SYMBOL_GPL vmlinux 0x13141b34 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x1324147c xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x1325696a dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x133338eb __online_page_set_limits -EXPORT_SYMBOL_GPL vmlinux 0x13415657 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x13623eaa event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x136256a8 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x13845c5d usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init -EXPORT_SYMBOL_GPL vmlinux 0x139c45ac irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio -EXPORT_SYMBOL_GPL vmlinux 0x13c3b8b7 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x14257e5a register_mce_write_callback -EXPORT_SYMBOL_GPL vmlinux 0x1426f8f5 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x145784d1 gdt_page -EXPORT_SYMBOL_GPL vmlinux 0x145edc65 device_create -EXPORT_SYMBOL_GPL vmlinux 0x1466decb rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x146eba4d tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x1476f007 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x149173b8 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x1491f5c8 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x14acdd05 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x14b71d9a virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x14cccd30 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x1500c0cb wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine -EXPORT_SYMBOL_GPL vmlinux 0x1510e805 get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x151daf7b task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x152257a3 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x1533d796 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x15508e6b sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x15516049 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x15568631 lookup_address -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x15ac617d syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped -EXPORT_SYMBOL_GPL vmlinux 0x15b9bcd4 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x15c8ca9a clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x15cee634 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x15f0800c exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x160f17d5 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x16127fd7 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x163ee7a0 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x164934f4 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x16523d9f cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x165c37ad ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x167778ac x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x1687ebdc raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x168b38a7 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x168ba45b class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x16aca1c6 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x16c15845 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x16e215c6 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0x16ed8cef __remove_pages -EXPORT_SYMBOL_GPL vmlinux 0x1713d249 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x172817ee list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x172de67b device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x173b358d sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x173e0f14 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x173e339b crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x177aa27d rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x1781b3ad bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online -EXPORT_SYMBOL_GPL vmlinux 0x17aa5e52 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x17b1da53 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x17c80751 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x17f0f354 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x17f322e6 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x180a433f debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x1810f0b7 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x18498015 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x1891a505 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x18b6824f init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x18ba6123 wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0x18dc200a validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x18e94c28 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x18f5728b component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x18fa32ed led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x19011676 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0x190f9837 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x192546a3 crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x192d50ca crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x192df7de transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x1943085b crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0x1947ca3a find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x19555701 flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x19599848 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore -EXPORT_SYMBOL_GPL vmlinux 0x197ac802 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x198b5b60 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x198f444f input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x1994ff54 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x199f6f3d fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19ada3a5 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0x19c4fb7a netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x19ca25fb pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a08e8f2 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x1a106144 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x1a2fee19 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x1a36ae7e pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x1a418d04 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x1a532f12 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x1a540d18 tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1a9713cc tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x1abc5b4b cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x1ac174fe devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1ae2e1d0 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x1ae4f5f3 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x1af69d11 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x1af91339 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x1b1f2bda speedstep_get_freqs -EXPORT_SYMBOL_GPL vmlinux 0x1b2e66d6 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x1b46fe61 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x1b536c90 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x1b55506b sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0x1b5e6ab8 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x1b7ed684 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x1b876568 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1bba6fe9 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x1bbbbdf4 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x1bbe6d2a __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bdcb634 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x1bdcbd90 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x1be186c2 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x1be9688d inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1c031ee4 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x1c0b2797 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x1c43a64f wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x1c44e434 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c6660c7 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c9d75a5 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x1ca1deba dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x1cabcf7b __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x1cc46c0b dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0x1ccb8d74 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x1cd4e0ac cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x1cf3f05a crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d310449 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x1d459685 xstate_size -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d59e184 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x1da342e7 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x1dac1078 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1db25557 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x1ddd5695 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x1dde8b20 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x1de74685 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x1df372bf irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x1e3605ed component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x1e3b1b7c pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x1e520e1b gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e92bae1 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x1eb0d3b4 tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x1eb28c4a irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebd638c gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1f077c81 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x1f0f6627 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1f486bf6 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x1f4ca99e mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1f633327 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x1f71cca1 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x1f7f6fac register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f924765 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x1f98f1b3 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x1f9b86d3 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x1face943 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x1fd44ba9 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x20061f82 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x200cc695 __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x200d6f27 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x2046bbee wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x204e66e6 percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0x207129a9 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0x207608ba led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x208adf63 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x208b215b md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20ae4dde dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x20d0fb3f tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x20dfbb77 crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x20fa27d5 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x210f6cf2 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x21172192 regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0x2117a702 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x212a96c2 acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x216a8fd0 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x217382a1 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x2191e633 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x21925348 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21bfa7f9 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x22097428 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x223b8035 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x224e21a9 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x229075c1 of_css -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events -EXPORT_SYMBOL_GPL vmlinux 0x22abb0c1 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x22b67586 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x22d045c1 efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x22d4e858 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x22f04ea8 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x22fa1edb posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x22fd6be4 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x23048011 __intel_mid_cpu_chip -EXPORT_SYMBOL_GPL vmlinux 0x230e87d9 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x23246603 tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x23474a3e pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x234fcace ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata -EXPORT_SYMBOL_GPL vmlinux 0x237ef576 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23b21d54 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x23be4101 tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x23dd0d77 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x23ea67f9 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x23fa402c usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x240580a9 xenbus_probe -EXPORT_SYMBOL_GPL vmlinux 0x2416e764 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x242c3597 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x2430050d devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x24460c1f usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x244c6bde udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x247a32e5 nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2486c67e xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x249252e9 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x249eb820 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x24c8fc09 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x24d687f2 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x24da3e2c blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x251127c8 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x25171f0a blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x25269094 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x2527da4d rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x252c09be injectm -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x25571512 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x2560f05a __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x258dd7a3 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x25a75cd5 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x25ae4a45 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x25cc02af dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr -EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x260ae374 swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x261363b4 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x2623b258 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x2634cfd5 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x2667fc9b usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x268a30cd pci_msi_prepare -EXPORT_SYMBOL_GPL vmlinux 0x268bf78d pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x26b189b8 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26e1051e tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x26e66928 rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0x26e72c6a mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x26ed5b6e crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x2705245b devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x271f66fa sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x274e610f pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x27514818 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x2757e98f regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x27725d45 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x27761901 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x278463a4 xenbus_unmap_ring -EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x27a66e22 xen_swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27d28898 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x27d335de devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x28018b88 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0x28084a7d reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x288f8d52 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x289eb13e inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x28a46ac2 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x28a5c146 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x28cb445a sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0x29130275 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x293636a0 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x293d6d33 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x293f073e vrtc_cmos_write -EXPORT_SYMBOL_GPL vmlinux 0x294b60f5 genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0x295749e8 posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0x2957e22a nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x29665f4f iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x297be582 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x29867a18 ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0x298a2ae3 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x299ad59c __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x29a3c071 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x29a98562 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x29d5aadd usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x2a359714 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a6a2aa2 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x2a6c04ab usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x2a938244 _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x2aba15fe of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x2abe8ad7 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x2acb241b devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2ad85150 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x2ae9f237 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b4664b4 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2b67f096 speedstep_get_frequency -EXPORT_SYMBOL_GPL vmlinux 0x2b8ddf65 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x2b8f576f bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b96316a efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0x2ba89171 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x2bc882bd rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x2bd1288a input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x2be3668a rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0x2c037aa0 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x2c06b879 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x2c136002 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c51d8a2 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2c52e37a regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0x2c630bd1 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x2c6a0410 xen_set_domain_pte -EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c9a16c5 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x2ca6111d dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x2cb68132 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2d125558 nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d861a0b mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x2d93ce0e wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x2d94c669 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x2daef647 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x2dc39154 iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x2dc553a2 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x2de1aac6 agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0x2de33f2f __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e24c997 __class_register -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e43caec pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x2e5705fe md_run -EXPORT_SYMBOL_GPL vmlinux 0x2e58bc7e spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0x2e59657b ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x2e73c140 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x2e8ff647 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2eab643d regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x2eb62905 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2f0628c5 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2f07b926 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x2f090648 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f2ccf1b exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f432790 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x2f561bb3 shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f69d2de devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x2f782a86 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x2f8385d3 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x2f9b66de pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x2fadd7d5 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x2fbe8c22 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x2fc83cc6 ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0x2fcb1a46 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x2fd71fd9 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x2fdcddb9 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x300c5a97 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x30215468 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x3029197e rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0x303f0dd2 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x30458e52 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x305204d3 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x3052497e percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x3057a241 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures -EXPORT_SYMBOL_GPL vmlinux 0x306f477d ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x308b1721 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x30a29d61 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x30a3a0fc __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x30f26fd7 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x312202f5 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31286cf8 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x31655fba clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x317ae7c8 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x3184dc04 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x319c265a pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x31b46180 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x31b46d1a wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x31bfb44b irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x3204f5a7 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x32254c15 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x324eaae6 part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0x32557712 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x3257feb9 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x3263d968 gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0x3269bb19 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x32807ba3 xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x32858c10 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x328c2035 __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x329bdd0a regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x329f055d devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32ddd3f7 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x32dfb34c usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x32e1fc48 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask -EXPORT_SYMBOL_GPL vmlinux 0x333228ec intel_msic_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x335ccb2b serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size -EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync -EXPORT_SYMBOL_GPL vmlinux 0x337d7ad1 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x337f31b7 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x3382919d ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x338ed625 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x339ad85b crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x33a946a0 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x33bf4378 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x340704da irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x3409bfd3 xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x344fdc20 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x34636245 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x347fe2dd pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x348ed703 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x349eb5c0 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x34afe7d5 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x34c1a188 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x34cce06e __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x34ee491f cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x35176add regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0x353f44ef wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0x353f739d __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x35455e87 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x354eca9f pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x354fd8e1 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x355e105e pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x356da624 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3581f995 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x35833410 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x359c2444 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x35d280c0 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x35de5ebf __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x35f30fc1 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x3620890e rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x36261b1c wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x3641e0ce crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x365598bd xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x3667e267 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x367f1799 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x368bd4c6 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x36925c22 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x369ab61a ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x369b9f60 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36b14a27 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled -EXPORT_SYMBOL_GPL vmlinux 0x36ba2551 intel_scu_devices_destroy -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36d0de5d uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x36d3c733 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x37203731 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x372bc150 arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x373b2048 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x37414d1b security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x37614f62 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x379677cd pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x379b3dc5 component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0x37a08482 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x37a1e8a7 pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x37a292f0 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x37d2612b hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x37d3f513 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x37d7274e inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x38134b4a use_mm -EXPORT_SYMBOL_GPL vmlinux 0x38395d95 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x383fad7a led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x3843c321 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x3856c709 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x385b60a6 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end -EXPORT_SYMBOL_GPL vmlinux 0x3886ec35 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x38b26f01 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x38df99b2 arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38fb0cdd spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x38fff317 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x3913d93c nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0x394a953c mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x397551ca devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x3975ab8c rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x39a240a6 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x39a4f229 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39cad7ea io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39e6f7d6 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x39efad45 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x3a08d429 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x3a1934da pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a2d1999 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x3a30a5f5 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a549979 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a97a2e3 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aac920d dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x3acb6a2e debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad6cb2e devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3ae4f69f wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x3b11565b kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x3b2655cb regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value -EXPORT_SYMBOL_GPL vmlinux 0x3ba4b3a5 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x3bd36504 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0x3becbdc2 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x3c0754f9 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x3c0d69b9 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x3c12094b uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x3c27a0e9 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x3c531043 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x3cb9b27e acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x3ccc1bdc regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd8c2aa unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x3ce65c4d ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x3cf2ade2 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x3d039617 xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d4cda3d dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x3d581d0a acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x3d593230 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x3d78dda9 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x3d7f7652 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x3d7fbbe3 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x3d93c420 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x3d9e82ad mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3daccfd7 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x3db7ad7e crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3deac062 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x3e1bc377 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x3e28e88b inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e6691c1 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e757637 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x3ea3d639 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3eb4f3a4 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x3ebdbf49 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x3ec8dbf1 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x3ee4cbd7 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x3ee5fefc register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x3eea2eec mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0x3eec5817 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f1da5cb aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin -EXPORT_SYMBOL_GPL vmlinux 0x3f23950c mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x3f2bd0c5 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x3f5a3396 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x3f962156 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x3f9aaed0 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0x3fbb0d36 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x3fc89e4d bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x3fce7e03 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x4010b80f pmc_atom_read -EXPORT_SYMBOL_GPL vmlinux 0x401c92a5 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0x401e84c8 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x4039f7d6 devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x40408388 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x40635a23 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x408212ba hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x40a65ea8 raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40b1da23 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x40c77e0c sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x40c98f4b elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f09d3a tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x413b2b47 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x414c00f8 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x414f8da9 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x417a54d4 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x418710e7 mce_inject_log -EXPORT_SYMBOL_GPL vmlinux 0x41a711b2 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x41b15059 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x41ce49be devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41f5951d ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x41feed47 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x42703d39 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x4291ad91 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0x429bcbc8 acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x42ad29af acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x42c989ff iomap_atomic_prot_pfn -EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x42f17510 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x42f86252 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x4301d62c regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x43034001 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x434b158a subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x436da459 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x4370d386 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x43753fd6 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x437eadfb fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x439b2ac9 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43aa1b7f debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x43b4c2ea tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x43c8d718 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43e69acc debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f5c400 dax_fault -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x44086c9b pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x441306fe class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save -EXPORT_SYMBOL_GPL vmlinux 0x44424aff aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x44649d3f device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x4470c9cd pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x44831cd9 print_context_stack_bp -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x449a547f irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x449a8f99 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x44ac165e dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44c25298 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0x44d0a7a0 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44f07c8a pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0x44fca5e3 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x4512b086 intel_scu_devices_create -EXPORT_SYMBOL_GPL vmlinux 0x45168a63 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x4517b9d6 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x45297939 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state -EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store -EXPORT_SYMBOL_GPL vmlinux 0x45565907 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x457efdbe list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x45878fd8 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x459fbf7e ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x45adcda5 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45cd4dc0 xen_swiotlb_sync_single_for_device -EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page -EXPORT_SYMBOL_GPL vmlinux 0x45ea0bf1 tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x460295cc virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data -EXPORT_SYMBOL_GPL vmlinux 0x4617ad98 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x46196f1a tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x462da19d blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x4635b06e acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x463d320c regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x464f3735 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x466e91a6 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x466fc956 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x4678157d pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x46875a63 apic -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46aa3bc8 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x46afc3e2 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x46d69f5a tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x46f500f7 xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0x46f8ab5b acpi_subsys_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x46fd833a xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x474e779e mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x4750754d device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x4750cfd5 __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47ba9124 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47f7f11e sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x47fb6353 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4806f921 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x4811a8cf transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x481c15cd sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x4842133f pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x4843d1d8 wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x4870e159 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x48a9bf92 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x48affb24 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x48b06963 devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x48c0da03 device_add -EXPORT_SYMBOL_GPL vmlinux 0x48cf956c dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x48e5d05b handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x48e65820 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x48fe7e7b ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x49020f36 efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0x490a8df6 x86_platform -EXPORT_SYMBOL_GPL vmlinux 0x49106f96 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x49349ec2 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x49826771 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x498e2a4e blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49c482d0 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x49db6442 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49eefc4b regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x4a085c8a driver_register -EXPORT_SYMBOL_GPL vmlinux 0x4a08ffcb acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0x4a0b33ae pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x4a23e209 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4a3a597e raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x4a3c3cf9 microcode_sanity_check -EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a6da807 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x4a96dedf relay_open -EXPORT_SYMBOL_GPL vmlinux 0x4aa093be cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4afb573b vrtc_cmos_read -EXPORT_SYMBOL_GPL vmlinux 0x4b04315e devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4b29ae87 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x4b3b3782 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x4b5571ec sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x4b8b48f8 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x4b9d6681 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x4ba70cc9 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x4bb20617 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x4bb77f99 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x4be45d59 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x4be8897a is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0x4bfe3b4e ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x4c2a472b __static_cpu_has_safe -EXPORT_SYMBOL_GPL vmlinux 0x4c2ea33b ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x4c2eab4f sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x4c526b5e set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x4c53492f usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c62fc13 edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4c8e4d1c __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x4c9bc698 print_context_stack -EXPORT_SYMBOL_GPL vmlinux 0x4ca53064 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x4ca889c5 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x4cc9c856 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x4cfef923 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d032b48 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x4d1b7cec virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x4d2cebd3 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4d31f3de sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x4d49d19b dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x4d9fcc95 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0x4da30676 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x4dd8581c pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x4df0e047 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x4dfd4489 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e1ea947 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x4e23af0d fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e24abbe crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x4e27e05a ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x4e2ca7f1 pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0x4e2df1d6 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x4e4962e3 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x4e4d2870 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read -EXPORT_SYMBOL_GPL vmlinux 0x4e64bfbc spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0x4e706d92 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x4e88da65 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x4e97a832 tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0x4e9f6a21 rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x4eb6ead4 xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0x4ec2c5f2 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x4ef3c5b4 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4efcdf7a nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x4f275af3 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f3bbe9d xen_swiotlb_sync_single_for_cpu -EXPORT_SYMBOL_GPL vmlinux 0x4f46f97e devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x4f47f49c devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x4f4bbcff blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4f4d3069 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4f528f04 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0x4f5984f0 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x4f5bbe32 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x4f63edaf anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f6d15bb efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0x4f6eafc8 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x4f947f29 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x4fae8f51 xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0x4fba149f sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x4fd40311 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe08d86 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ff88d3d xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x50102047 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x50306a93 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x5046049a vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory -EXPORT_SYMBOL_GPL vmlinux 0x5080c352 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50a6b363 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x50b1ba71 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x50c497e8 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50d1f20d blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510a3c3e fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x510f955c ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x51719489 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq -EXPORT_SYMBOL_GPL vmlinux 0x51966b51 __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x51992495 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x51bea276 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x51ca68a1 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x51d2d579 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x51d62809 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x51f342b2 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x51fc8c4e phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x52018287 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x5251938d pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x527e4c56 efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x528015a9 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x52ab4672 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x52b61c4e devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x52b99c80 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x52cb2ef7 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x52e5417a irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x52e87bc5 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x52f102db __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0x5332ab63 regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0x533e085b regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x5359cb54 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x536adb24 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x538726f3 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x53905eca rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late -EXPORT_SYMBOL_GPL vmlinux 0x53b1fc89 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0x53bb13de file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x53c21989 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x53c3a384 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x53ca7bfe spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x53ce77c3 __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x53d0cdea syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x53f93612 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x54036d85 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x540f0c9a rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x54152dd7 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x543cabc8 dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0x544aa28d regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x54575938 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x547be869 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x549046a5 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54d0c9cc devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x54d519ec irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x54db19ba to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0x54dc3654 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x54f433b2 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x54fdc47d pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x5505b8bf devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled -EXPORT_SYMBOL_GPL vmlinux 0x552845ba spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55400e35 acpi_dev_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55456eef kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x556328ce blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x5579c11e device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x55a5e35a dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x55bfc3cb acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0x55cc2220 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x55edd53d unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x56011e19 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x56175183 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x561dd12f fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x56557d06 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x565e4d92 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x56715f68 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x5675fa90 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x567b4486 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0x567bd073 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56b9e0d7 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56e41eb7 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x570e2aa1 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x572d29ce tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x573a5e89 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x574654bf skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0x57822cf8 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x578faed4 xen_swiotlb_unmap_sg_attrs -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a449d8 tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x57bb5d71 pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57ec9711 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x58040442 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x584cdf71 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x585144cb bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0x586af491 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x588c79ac wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x58960152 xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0x589bc504 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58bac738 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x58bf559f iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x58c2ba52 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x58f2dca6 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x58f3e387 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x59063a20 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x590ae60c device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x5919c989 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x59349701 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x593aad2f usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x59766e59 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x597e89c0 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x59896221 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x59a1390f ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x59c17017 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x59c3d105 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x59d08c7b phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x59e7483a ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59f7d07b ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5a0a6493 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5a0c6ce3 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x5a0e1ff8 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x5a31b644 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x5a699c6a fpu__save -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a92dcf5 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x5a965239 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x5ae48bb6 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x5b1899f8 free_iova -EXPORT_SYMBOL_GPL vmlinux 0x5b1e599b iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x5b2b8fd6 thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x5b457df6 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x5b7dab07 virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0x5b818a0e posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x5b8355af to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x5b84de9a trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0x5b881162 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x5b9d42b4 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x5babf842 register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x5bc24f5a debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x5bce8ca1 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bfdf483 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x5c09c21f __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5c1ecb6d phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5c2a24f1 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x5c326be0 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker -EXPORT_SYMBOL_GPL vmlinux 0x5c71f17c ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5c79fd74 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x5c8aea4c dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5c9bca00 single_release_net -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cc1bd80 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5ccb7442 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x5cdcf723 arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x5ce0b191 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x5cf1ee36 isa_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d2da210 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x5d387021 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x5d5f6222 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x5d8f9ff5 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x5d97085c cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x5d9a521e ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid -EXPORT_SYMBOL_GPL vmlinux 0x5de96c5d pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x5df7e1da sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e137529 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x5e37ba29 percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0x5e4374ec gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e5bcf44 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x5e77ba35 do_machine_check -EXPORT_SYMBOL_GPL vmlinux 0x5e7e6275 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x5e817007 x86_hyper_kvm -EXPORT_SYMBOL_GPL vmlinux 0x5e855342 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x5eafe581 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x5eb62e7e devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x5ec49220 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5edcb7a1 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0x5eef7d98 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x5eef8c26 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x5ef084bc tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x5ef97bfb fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5f8d967d proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x5fc92bd5 __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0x5fdbe57b acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x6017f157 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x6018ea60 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x60321098 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x60368a51 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x604f1352 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x60622f51 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x606a2e50 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x6073f32b mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x6086d49a invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x608f69a4 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x60930d37 save_mc_for_early -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60b849fe unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x60b9aa37 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops -EXPORT_SYMBOL_GPL vmlinux 0x60cef609 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x60da7a22 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60f4bd4b clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x610299d6 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x611efd1a fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6124bb84 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x6137905d regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x61525427 acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x615905d9 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x61af711e ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x61b0f0c9 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x61bc02fc power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0x61e55370 dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x6211eb57 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6233cd39 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x62362d03 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable -EXPORT_SYMBOL_GPL vmlinux 0x6257ebdf tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x625c268c ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x627178da pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x628db80d kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x62a10201 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x62aa263b dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x62b1db35 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x62c0abb2 wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x62da006b nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x62dab26f scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x62dcbf9b fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x62f31858 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x62fe5611 get_device -EXPORT_SYMBOL_GPL vmlinux 0x630478ae class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x6304c5e6 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0x637051dd gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x6373d89a regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x638ce9ec nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x6396fe13 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x639dcc2d md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x63b7db59 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x63c14d61 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63ed6494 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x63fb62a7 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x64218346 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0x642b8fd3 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x645ea52b crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x648114f3 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x6499ac7d crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x64a26532 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x64cb2e8e crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x64fdc1ca shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x651c36d7 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x652e9609 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last -EXPORT_SYMBOL_GPL vmlinux 0x653cb02d intel_msic_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id -EXPORT_SYMBOL_GPL vmlinux 0x65b955ae usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65c27266 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x65c7710c pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65d62dc5 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x65f5e1b4 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x6615db96 __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x664f1dbf ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x664fdd13 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops -EXPORT_SYMBOL_GPL vmlinux 0x667a617f ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x667cc162 regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x66855e9b raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x668d7773 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x66aa4461 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x66b3b80d devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66f08178 save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0x66f4c29c register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x66f54c82 arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x66ff48c0 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x670849e3 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x67089557 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x670fecaa param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6776d4a4 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x6781c592 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x6784c4f4 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x67884bfa usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67978273 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x67b3df6f posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x67c74f95 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x67cdc819 __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x681c77d4 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x682e6bb0 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x68313388 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x6834ac43 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x6849940e extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x6849aebb crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x6891d19a __nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x68a9aa8a __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x68e25550 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x68ef0acd xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x696af9fc unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x6996295b device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x69982c9d crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x699b0d5e irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x699cc6fc devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6a020516 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a2a6a19 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x6a333cf1 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x6a336283 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x6a3512cc regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a65f151 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x6a7dd8f2 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a8ede1a pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x6a9302ca rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x6ac6dba0 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b5d9890 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x6b6b3123 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x6b7fab06 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8d0527 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x6ba1f241 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x6bba9065 dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0x6bd7d5ec irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x6bf2196e __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x6bf9b024 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x6c1a3575 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c459321 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c54382f scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x6c6538df init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c6ad9f6 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x6c6b9ee8 dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0x6c7452b7 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x6c7d1cb7 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6c8e3f2b device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca75e88 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6caa1b33 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cec9d90 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x6d1cb033 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d310d7d device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x6d4204ef ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x6d61d1f4 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x6d721e97 dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x6d75dbed pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x6d85b344 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x6da270f7 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x6dac0acb hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6db2ccc1 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x6dcaa2eb vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x6dcb5fad get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x6dcd6772 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e09ab84 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x6e09fff0 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x6e55fd54 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x6e5dfd63 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x6e5ede1f regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x6e782c23 iomap_create_wc -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e8d2d46 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x6eb26009 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x6ed4b947 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x6efc7326 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x6f07da5c pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f3f551e disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f7f98dc platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x6f8b4cbc scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x6faa8511 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x6fd6b32d skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6fe92fdd debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x70201233 unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x70217cea usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x705bef3c ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x707930c2 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x708b8020 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x70be03fe sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70ebcc5f fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x710f1a5d regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x7111cf6c acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x7114296e srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x712c733c ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x71308384 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x7162e1b2 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x71836d35 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x71855940 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a14601 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x720ace70 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x721b0db2 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x7223a471 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x72326e0d get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x72398a4a ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x724408a7 device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x726c2abd scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x7270a127 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x728cac56 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x729cadc8 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x72a066d3 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x72ac571b eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x72b1aece blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x72d537ce platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x72f75fb5 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x73026dbc __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x731ba974 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL_GPL vmlinux 0x731e46d2 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x73436e4d raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x734f0276 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x73560d86 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x737c78c8 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x738ac640 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x738c64ab device_rename -EXPORT_SYMBOL_GPL vmlinux 0x738fd248 intel_msic_reg_update -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73ae0726 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x73b99e87 put_device -EXPORT_SYMBOL_GPL vmlinux 0x73c3e374 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x73c733bd usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73d4a2c1 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73e12e47 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x73f90d23 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x740aef1a pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x740c4de8 rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0x741e92ef percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x742b601f pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0x742b94bf crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x742c75ea devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x7431efdb sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x743e5394 xen_pci_frontend -EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x745d11d4 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x745d3409 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7468b74e __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x746b8e10 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x747359e0 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x7483eedd usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x74889b01 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x748e3e5d inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x7492321e sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x74a6d26c acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x74af7595 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b9f79b hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x74d449ef da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors -EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x753525df gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x7554c039 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x75567db4 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x7567eee3 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x758f101c pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75cc34ca tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x75cd0796 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x75e00116 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x75e0a2a2 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x75f42a7c usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x75f62cb2 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x75fa1169 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x763df98d cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x76716059 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x76743aa1 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x767484cf wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x769cea32 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x76ad7767 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x76ae465a task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76f8f65a devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x76fc8dd6 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x770619bf unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x770c9f36 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x772c1978 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason -EXPORT_SYMBOL_GPL vmlinux 0x77797087 pci_get_hp_params -EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write -EXPORT_SYMBOL_GPL vmlinux 0x7790adc0 aout_dump_debugregs -EXPORT_SYMBOL_GPL vmlinux 0x7796c4cf __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x782b7963 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x783e5133 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x78575bee atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x7864b24c ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x7869929d device_attach -EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78e23875 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x78e84890 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x78ee6fba wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x78f3b5da ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x78f9498f pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x7942d240 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x79489f86 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x7956ad32 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x79602c08 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss -EXPORT_SYMBOL_GPL vmlinux 0x79a71c48 kernel_stack_pointer -EXPORT_SYMBOL_GPL vmlinux 0x79c77157 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x79ddd9a9 cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped -EXPORT_SYMBOL_GPL vmlinux 0x79f2c49a usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x79fa6544 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x7a4f6726 blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x7ac1adaf max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x7ac7410d devres_add -EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x7acf713f disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7af4f4bf dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x7afab384 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b1dc350 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x7b31ab7a blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x7b392d8d blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x7b55e282 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x7b6dfd80 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7bba4336 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x7bd846c1 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x7be3ec09 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x7bee223d regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x7bf96f0d led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7bfcecf9 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x7bff4171 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x7c1f4c5d da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7c286e90 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7c3b645d fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0x7c41838f extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7c7a6b58 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7ca14b8b pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d082de4 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x7d0e6052 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x7d171a75 regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0x7d4f4db7 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x7d55ab56 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d681085 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x7d70e672 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0x7e013403 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x7e1b65ef ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x7e2283e3 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x7e2a532c xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x7e34cfc5 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e83932e smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x7e8c75f0 thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7ece7d94 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x7ed9c5f4 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x7ef3c5b8 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x7ef61ab0 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x7f1283b3 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f3080db skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x7f327847 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x7f6225c0 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f8669fc crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x7fb04154 component_add -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fd44274 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x7fd6bb21 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x7fefeb8d usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x8004115f devres_find -EXPORT_SYMBOL_GPL vmlinux 0x80155092 blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x801ddab2 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x805a4d33 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x8082e70f regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x809529fd alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0x80968bd2 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x80990cda br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x80a76e33 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d45178 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x81004b21 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x810c3c7c crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x811974ce pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x8122a4c1 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x81246543 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x813752d3 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x813f6b4e l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x817188bd srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x81814cc2 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x81aa9e8c dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x81dd390e usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x81dde250 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x82064ef6 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x82096534 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x820d63a8 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x8223a46a devres_get -EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x8253e3f4 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x826016a1 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x826f00f4 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x82745a73 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x82769894 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x8286ceb0 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x82978442 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x82bbae90 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x82bbb66c nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82d96529 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write -EXPORT_SYMBOL_GPL vmlinux 0x82f73d9e pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x831d110f __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x833e7a69 acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0x834d9d93 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init -EXPORT_SYMBOL_GPL vmlinux 0x8371a959 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x837beaf8 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x83874a17 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x83941806 nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x83b425ee gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x83e4ca60 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x83f13779 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x83f4126f xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0x84376155 pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x8462bdcf btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84bd9246 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x84d6f014 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x84e839a9 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x84f53589 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x84fec387 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x85009d47 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x855bbdbb rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x85635f17 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x85676247 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x8586b9f8 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x85991157 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x859d6885 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x85c642f4 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices -EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq -EXPORT_SYMBOL_GPL vmlinux 0x860c335b xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0x86104205 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x8648ed0a rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x864fcb08 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x86ad458b devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x86e84c6f pci_msi_set_desc -EXPORT_SYMBOL_GPL vmlinux 0x86e9dd94 irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x8727ffdf usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x8730b6ff __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0x87338d7d kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x875732b2 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x8768f560 iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x876a3a00 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x87880305 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x87922f39 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x87a501cb regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x87a72768 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x87bea516 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x87ce53f2 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x87d2ef22 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x87d78507 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x87e0d62d ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x87ed381b acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0x87f50ef6 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x8806809f sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8831f8b1 kmap_atomic_pfn -EXPORT_SYMBOL_GPL vmlinux 0x8838db18 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8847f799 arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x884e974c pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x88537a62 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x88aaf071 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88be7c33 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x88bfecf9 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x88c3d9ca devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x88c9e779 flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x88d15490 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x88f9078b ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x891f8c44 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x892059d1 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x892db19a da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x89567a3c rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init -EXPORT_SYMBOL_GPL vmlinux 0x896d7fae blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8970fab6 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x899762ab xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x89b43840 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x89b5ab29 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89d65917 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x89d72d44 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x8a170e7a regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control -EXPORT_SYMBOL_GPL vmlinux 0x8aa4019a dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abdd951 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x8ac0e9e0 spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x8b021c25 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x8b09d111 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b1650b2 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x8b1d11d3 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0x8b2cc6aa queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x8b4c404f debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x8b556e7e xen_swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL_GPL vmlinux 0x8b6ee6ef pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x8b7e973e skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b820a14 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8b8477c6 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x8b854bbd md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x8b8655ef rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8bb47e23 __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0x8bbf41f6 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x8bc41382 fpu__restore -EXPORT_SYMBOL_GPL vmlinux 0x8bdf5f69 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x8be240ed regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x8bf2c64a scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x8bf923ee bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x8bfc96a4 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x8c0fdcbc skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8c29eedd pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0x8c40a416 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x8c50f4bc register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c790dbd seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0x8c8e9924 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x8c90c0e5 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8c98c5ba class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index -EXPORT_SYMBOL_GPL vmlinux 0x8cd39600 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8cd49cb4 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d2fd06e arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x8d32edba udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x8d365cb0 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x8d8a82a2 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x8dc59f0e pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x8dec2542 md_stop -EXPORT_SYMBOL_GPL vmlinux 0x8df91649 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x8e23f711 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x8e2bfee1 led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x8e2cee0e __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e38aa82 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x8e3d111e bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x8e83b699 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x8e907c10 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x8eb2cb53 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x8eb97f92 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8ebb9b2c anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x8ec364c8 spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0x8ece3993 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x8ecf63d3 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x8ef4916e subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x8f0595a6 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0ad616 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8fa46a77 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8fcd599b usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x8fdff86b wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8ff0f0e3 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x8ffbd14c irqd_cfg -EXPORT_SYMBOL_GPL vmlinux 0x8fffbe7d blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x90044c74 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x9023319d acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9024bff5 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x906b33da gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x906ebab7 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x907a97b7 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90b5eef4 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x90c68b4c da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify -EXPORT_SYMBOL_GPL vmlinux 0x90def7c9 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x90e04835 xen_swiotlb_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x9106059c pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x912c181d pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x915f2b2e set_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0x91656e94 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x91788960 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x917fc831 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x9180fb42 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x91840886 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x919d7229 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x91bece1a rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91de4dcd cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x91deaa6d acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x91edd4d3 ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x91fac601 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x92261072 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x923be00d iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x925916fe ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x9277f6b4 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x929bcdca platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x92c4dcfa regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x92c5cfa4 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x92db626f swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e92113 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns -EXPORT_SYMBOL_GPL vmlinux 0x9308ca91 ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x930d81c1 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x931ff3e5 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x93374a97 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x933d7a0f mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x933f9c77 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x93485382 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x939027d3 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x93982ffc sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x939f6b30 ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x93bd2281 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x93e85415 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x93f3f6c1 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x940c1670 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x94171472 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x94440b24 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x948fee3f rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x94908477 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x9493bf6b kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x950de893 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x953f298a __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x954557fb usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x957445df set_pages_array_wt -EXPORT_SYMBOL_GPL vmlinux 0x95764d87 acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x958ec10e pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95ebb846 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x95fbe080 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x96091cc9 reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x962dfe45 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x963498ee rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9676a84b __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x96c78437 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x96cb60ee attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x96cf4fb1 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x96edb6e5 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x9717d07e ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x97244688 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x972a4b96 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x975662d3 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x9764040b rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x9772da2e pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x9794e890 usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0x97a0a278 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x97c02628 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97f97179 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9829f25c usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x9833d313 extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x9841ec26 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9858915a sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x986151a9 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x986420a1 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x9868743f register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x987854a5 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9887a9ef fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0x988fcecd devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9892aefd rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x989558d8 blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x98ec434e dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x99155fac blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x993a75fd xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x99767d0c dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x99987f2e usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99aa43fb page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99c03110 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x99fa4c43 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x9a10da89 __tracepoint_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a1c8ba8 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9aa0d960 xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0x9ac0b23b acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ad0bfc7 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x9ad75be9 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0x9adf9135 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x9ae5ec25 xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af5eaaf fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x9afcbdfd regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9b566605 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x9b71315e perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state -EXPORT_SYMBOL_GPL vmlinux 0x9b86ea5d __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus -EXPORT_SYMBOL_GPL vmlinux 0x9ba6b2fb platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x9bb02df8 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x9bc4bde1 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x9bcd1cba of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write -EXPORT_SYMBOL_GPL vmlinux 0x9bd8bb97 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x9bda41b0 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x9c29178b da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x9c443cf2 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9c59e0bc pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x9c6686af ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x9c79ecdb blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x9c854452 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ccdf526 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x9cdc5e40 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x9cefca8d efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x9cf86085 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x9d242e96 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x9d243c13 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x9d2782a9 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x9d458ddf crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x9d62c898 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x9d851b14 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x9d98172d tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9db295bf netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0x9e0d6473 regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0x9e36d0ca kick_process -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e54954e devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x9e6328f5 acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x9e68196f ping_close -EXPORT_SYMBOL_GPL vmlinux 0x9e84fdf9 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x9e970bd5 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x9ebff902 start_thread -EXPORT_SYMBOL_GPL vmlinux 0x9ec3500a nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x9ecc30e2 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9f0ab3d4 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x9f2280d5 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x9f27e74a sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x9f3cf810 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x9f3e57e4 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x9f5247a5 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0x9f5b4ac3 xen_remap_domain_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x9f5e9465 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x9f889bda tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x9f9ae03b efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0x9fc5942a crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x9fc6e39b usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0xa000552e irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xa06c3c32 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xa06c9ffa kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0xa086dc01 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xa0b8ef2d ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0xa0b90fb4 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xa0e6e2aa arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xa0f6ec8b blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa113bcc5 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info -EXPORT_SYMBOL_GPL vmlinux 0xa11bf4d6 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xa126c98e device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xa1369789 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xa13773fe iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xa1439122 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xa14c840f key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa1719a87 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa17301d9 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xa177c102 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xa186ec14 ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa18b9e74 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa1de2295 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0xa1deac4f pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa1e5c2af ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0xa1ec596a raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region -EXPORT_SYMBOL_GPL vmlinux 0xa210a542 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa21586c6 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xa22bf9f5 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xa23a71dc tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xa2593bce netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2896ac4 find_module -EXPORT_SYMBOL_GPL vmlinux 0xa2a7e542 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xa2b23a5c transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2d4cf5e intel_scu_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa2d6d8da adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa31d1a37 devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xa34277b6 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xa3797444 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xa382f3ad crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a6aa35 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa3ae5bcd usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0xa3b8b5cd ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3b9750a bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa3e844ed fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xa3ec5338 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xa4038ae2 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xa40c73ff __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0xa42d4e1d tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xa42dd2db virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xa42df0e9 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xa4353ed3 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter -EXPORT_SYMBOL_GPL vmlinux 0xa46d0d50 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xa4709154 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa49cd574 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa4b78407 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xa4f26891 __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0xa508f268 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xa520cdfd blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0xa531adb6 intel_svm_unbind_mm -EXPORT_SYMBOL_GPL vmlinux 0xa55c042a bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa5993ab4 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa5c1c9c0 acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0xa5cb5f01 acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xa5cbc2ce pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xa5e06a9a blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0xa5eb0264 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f53f62 reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa60fe13c regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list -EXPORT_SYMBOL_GPL vmlinux 0xa640d7e7 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0xa64c9dd6 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xa67611d8 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xa6998a75 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0xa6a140f8 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6f75aac device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xa7025d84 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xa712cb28 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xa71cd5ed max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0xa757cb5d pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xa7690761 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xa787368d shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xa7d7ff99 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0xa7d8d98d trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xa7dcbe5f inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa7fb6136 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0xa810abd3 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xa832c203 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xa840c8fb wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0xa8500b98 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8708484 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xa88bd56d ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0xa898990c inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xa8a3c733 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8c0a9c9 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa9143342 find_iova -EXPORT_SYMBOL_GPL vmlinux 0xa9316b38 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa938d6e1 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa93f9107 __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xa959097a xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa974c1f8 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xa979a04e gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xa988711a platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xa9b5fe18 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xa9b74c15 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xa9bf37b4 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e5dd2d trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xaa15f525 gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0xaa419523 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0xaa65bf2c ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0xaaa06af9 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaabce590 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xaac46dc3 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xaad9a64d usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xaaf2e51b blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0xab0a1069 xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab219617 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab3901fa dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab681292 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab7fd9f8 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xabc15ed5 register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xac0be560 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0xac1b8105 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xac3a1bc2 devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xac97b48f hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait -EXPORT_SYMBOL_GPL vmlinux 0xacacb645 bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xacb85a81 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xacd1d9f2 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xacd964dc usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xad0450de pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xad05e92c rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xad080b34 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xad34837c __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0xad43a320 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xad505f31 shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat -EXPORT_SYMBOL_GPL vmlinux 0xadc2179d regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xadcf3d14 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xade64347 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae2ed049 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xae369781 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xae6782a4 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae78a3f0 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0xae78f737 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xae7b9571 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae9b458e ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xaea24207 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xaeb16bb2 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xaeb3beef uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xaf0fbb4b user_read -EXPORT_SYMBOL_GPL vmlinux 0xaf484f8c __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xaf4cd6d3 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xaf5dc46e xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xaf7536f4 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xaf7981d6 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xaf87ad65 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xaf9439db leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xaf96e446 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0xafa0eee3 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xafa4578d device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xafad1914 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0xafcba7d9 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0xaff0b052 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb0054540 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xb00d6c1c netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb0390be7 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb05bd37a do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xb074996a device_del -EXPORT_SYMBOL_GPL vmlinux 0xb074bccb perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb08c21d2 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb09bd4cc crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb09ead9f pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xb10470db put_pid -EXPORT_SYMBOL_GPL vmlinux 0xb1055dcd blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0xb110cbc8 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xb1194a45 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0xb11c0f74 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xb125de85 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0xb129db15 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb133c0bb acpi_dev_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xb13713cb rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb157c78a rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb18c4085 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xb192f935 phy_put -EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1b1a4a6 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0xb1be6d70 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1ee1a45 agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xb1ef0762 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0xb2122994 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2298422 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xb24586ba __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb26ae325 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall -EXPORT_SYMBOL_GPL vmlinux 0xb2bb4272 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xb2c9513d rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xb2d9664e phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0xb2e5753d debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2f1e708 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0xb2f6e767 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xb2fcdd23 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0xb303c467 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init -EXPORT_SYMBOL_GPL vmlinux 0xb34f1359 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0xb3551e44 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0xb37cbda1 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xb385bcd6 __add_pages -EXPORT_SYMBOL_GPL vmlinux 0xb388a3dd regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb38ef3a3 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb3ae471b bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xb3b09331 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xb3bd02f0 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xb3f3959b sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xb454c0b2 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xb45998a3 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xb45fa6c5 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xb46574f4 cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0xb4afc18f find_symbol -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c05085 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xb4c433bc xen_swiotlb_map_sg_attrs -EXPORT_SYMBOL_GPL vmlinux 0xb4c7179c tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4faec21 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0xb5000562 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0xb5147f39 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0xb518aa4d watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb53ea08c nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0xb5488567 mmput -EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb56ea7b8 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5cfe692 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb5fb8160 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xb5ff9b66 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xb6056d55 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xb61a8143 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb62e6404 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0xb63640ef ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0xb6457511 device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0xb65162bd irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid -EXPORT_SYMBOL_GPL vmlinux 0xb6657b88 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xb691d87d zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xb69b012d crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6b9e233 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0xb6bc49a9 __supported_pte_mask -EXPORT_SYMBOL_GPL vmlinux 0xb6c46018 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb74bff2b led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xb75b88d6 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0xb76b95f8 gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0xb78d8edb tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xb7bca51b inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xb7c12bae tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0xb7c67bfb tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time -EXPORT_SYMBOL_GPL vmlinux 0xb7dbea76 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb80ee687 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xb81fbf7d bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb86e9cc9 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xb872ef05 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xb876ffff devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xb88a44ed alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb89e3985 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xb8b0cac4 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0xb8c20689 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xb8cb639e sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d6f7fe lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xb8dabd7e usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xb8f45693 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb9036c40 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xb9042152 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xb911a533 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xb96f75af perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xb9a48ba0 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0xb9a5754e wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9bfd068 dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0xb9c2f056 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9c769d9 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xba192f05 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba433e07 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0xba4924af usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xba5e1570 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xba641bdd pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xba6e2adc gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xba71ea19 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xba83257d devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xba83e380 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0xba97e27b xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xba9a2a1f class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xba9f5da1 sis_info133_for_sata -EXPORT_SYMBOL_GPL vmlinux 0xbaa740f8 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0xbaadca8a rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbacbc403 rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbae1c3c0 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xbae5cdc4 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0xbaefe076 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xbaf2aaac crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb0d85cc ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xbb36a2ef crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xbb4d4027 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbb584061 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xbb58b814 iomap_free -EXPORT_SYMBOL_GPL vmlinux 0xbb64352f handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xbb7ca8e3 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xbb8b4396 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0xbb8f5c15 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbbccc7c reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id -EXPORT_SYMBOL_GPL vmlinux 0xbbfbf5d1 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xbc01a650 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xbc12f372 percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0xbc244def __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0xbc40fafa pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0xbc4e2b53 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xbc695c49 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc86c64a regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xbca0201a sfi_mrtc_array -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts -EXPORT_SYMBOL_GPL vmlinux 0xbcc00632 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xbcc01b3a dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcdbb148 virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcf6cdd1 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0xbd236846 swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0xbd3412a8 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0xbd3e0e87 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd6323f6 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0xbd6726d1 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0xbd7a4a6e cpu_tlbstate -EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xbdc08de0 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xbdc8f67c regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0xbded7d63 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xbdf08ac7 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xbdfb69a3 md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0xbe006056 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe267ed3 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0xbe31f3be pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe87f06b rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbe9e1c13 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbea20eb6 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbebf52e1 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0xbecaec7d __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0xbee15c4c pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbee474ae bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbee6ae90 fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbef0f398 xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0xbef8b860 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf057aa1 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xbf400fd7 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xbf44444d i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xbf4bdddb perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0xbf5c7c6a crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0xbf7cc8fb iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xbf933d01 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xbf9b66d0 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0xbfb43010 xen_swiotlb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0xbfb4980a cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfc7b1e2 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xbfc907f8 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xbfcca601 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0xbfd10bb7 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbff58aba rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 -EXPORT_SYMBOL_GPL vmlinux 0xc0031767 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xc0170f45 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0xc02bca5a regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0xc0a480f6 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0b7e78f ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc11665b6 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0xc12e0ada srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0xc12e8919 usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xc16209fe i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc17cb89a attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xc17ebfbd extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu -EXPORT_SYMBOL_GPL vmlinux 0xc19d50de restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xc1c6a8ce blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0xc1c7b2d2 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xc1ce87f5 get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2046d42 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc25bb52c __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xc260e41e con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xc26753f3 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xc269293c gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xc276077a da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xc276ebcd __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0xc2979ab2 bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0xc2c202b7 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xc2fe9dd0 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xc3122a2b cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc33c97ad ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc36154fe perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc38fde9d tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0xc3c003ff ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xc3c9fe41 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xc3eaa113 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc413e80f kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42bb5f1 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc42e550f usb_string -EXPORT_SYMBOL_GPL vmlinux 0xc4301831 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc4764a9e ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xc48911fc xen_swiotlb_sync_sg_for_device -EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc4930b8e irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xc49c8231 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc4b3fbf1 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc4b5161e devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4d1aaf0 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xc4fc4c7b clk_register -EXPORT_SYMBOL_GPL vmlinux 0xc51fd457 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xc528c1ca gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc55ae83f usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc56daa4e regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0xc5710661 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc5847822 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0xc59b8525 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xc5b14269 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xc5c01c2f pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xc5c8249f crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0xc5cb212a unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xc5d4ed3e serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xc5da5e14 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xc5f1ab36 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0xc5ff8160 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xc60151d0 nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xc608974c virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xc609c616 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xc609ead8 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xc60e0b03 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc62b94cb uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xc62c102c pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0xc62d5def power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xc63227bb device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xc638bf71 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6a9a4a4 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xc6ab63c6 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xc6d42364 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xc6dd0ca7 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xc6fa0f56 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xc6fdf71a generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0xc705dfe0 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc74752fe find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xc7531d72 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc76a3d1f tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xc771555f led_init_core -EXPORT_SYMBOL_GPL vmlinux 0xc77e3815 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xc7888873 wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0xc798c26f usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a96667 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xc7af9028 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0xc7ba067a __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0xc7bf64cb regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7dcea42 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7e5619a fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xc7ed0c4b ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xc7ee0057 blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0xc80c0dba class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xc81b765d put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xc8426bfd device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xc855811b power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc86fd04b clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc87cf0a8 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event -EXPORT_SYMBOL_GPL vmlinux 0xc8a1ab39 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xc8aabec0 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8b8d8c7 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc90c0f0e bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc945e84f input_class -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc96ba564 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xc9705eeb has_newer_microcode -EXPORT_SYMBOL_GPL vmlinux 0xc97c3bd2 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xc9928dec crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xc9938924 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xc9a591e3 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xc9a896fd iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xc9acc41b pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xc9b50baf crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xc9cc7e59 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0xc9ccaa3d pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9ee4287 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xca4bc012 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xca52021c devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xca52828e ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0xca6c76aa wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0xca725b11 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0xca85f687 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcb01a0b1 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xcb0853c7 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb2fe6dd nl_table -EXPORT_SYMBOL_GPL vmlinux 0xcb31fa35 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xcb66d1cd crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xcb91a8f5 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xcba956d4 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xcbbe0c7b acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0xcbbee1a5 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xcbc903bf skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xcbce1f9a sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0xcbcf2b85 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xcbd33ec9 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xcbd48c3f hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcc0b157e blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0xcc16cc32 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc199cae pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xcc1f6911 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xcc531a57 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0xcc579d5e regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc86e49e wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xcc934e84 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xcc978d4c pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0xcc9c4ec2 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0xccb55028 extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd7e380 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xccdfa744 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xcce73927 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability -EXPORT_SYMBOL_GPL vmlinux 0xcd0d80d2 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xcd1516df register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xcd1f7c85 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0xcd208663 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0xcd31abf5 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xcd3a95fc fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcd50fc59 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xcd574b20 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update -EXPORT_SYMBOL_GPL vmlinux 0xcd681af9 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xcd8ffa10 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcd9f78dc gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdcd7d67 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xcdd9be41 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource -EXPORT_SYMBOL_GPL vmlinux 0xcdf1d885 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xce0b25ae bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0xce41e527 blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xce469242 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce6e1c99 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0xce899157 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0xce915a8b get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xcec64523 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode -EXPORT_SYMBOL_GPL vmlinux 0xcef20cf8 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0xcef8d824 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xcefdcc16 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xcf3b4f9e pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xcf407622 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xcf42c74a dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xcf513d77 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf837f87 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcf8ec45c dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xcf91a351 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0xcf93ff14 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xcfa363b1 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfbc7b9a list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcfbc8315 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfd514ec hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcfe0b7a9 skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0xcff2e311 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xd0015fbe sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xd00336e5 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xd013bb07 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd048ec15 efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd076a6ec bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xd0850ff4 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xd08552c2 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c665bc i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xd1151bf1 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0xd156fbbd generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xd15eb2c2 acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd16f7189 fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0xd1745218 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd178a261 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xd17bcab9 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xd19cf35a dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xd19f4e4f ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xd1a16817 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xd1bcc067 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xd1c341a7 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1fb4c25 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xd1ff5d06 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xd20bc3cd perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd2164f8a crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xd2173dca ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21c32c2 __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xd231dd09 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd28285ef power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd2847148 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xd2aa3496 __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xd2aa559f blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xd2c3527c __online_page_free -EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xd2d281ca ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2e88de5 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd310b2e4 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xd31a2921 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xd3201dd1 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xd346acd5 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0xd3486feb pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd37b7fa7 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xd3a469bf usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3eacb53 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xd3fe01f0 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd40d3ae1 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd42311f3 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd45ea32f hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0xd461214e __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xd4693d89 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xd474b721 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0xd4979a36 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0xd49f69c9 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xd4a6dc47 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xd4b16179 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4d17112 rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0xd4d2d866 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd4ffcfc7 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xd512b75b sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xd5181f53 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xd527e04b spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0xd544e902 pgprot_writecombine -EXPORT_SYMBOL_GPL vmlinux 0xd54ab4cd wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd5573ec1 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd55ea13c regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd58a8ca4 intel_svm_bind_mm -EXPORT_SYMBOL_GPL vmlinux 0xd5aa302e tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xd5ad25ac devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xd5b16c56 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0xd5b5cc96 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xd5b85c98 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5c1c378 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xd5d2f9ea isa_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xd5d9585d __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xd5dddedd tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xd5f7d2a0 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd62ae287 rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd632a46c ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse -EXPORT_SYMBOL_GPL vmlinux 0xd63def7b led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xd64c861f pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd697c1e9 acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0xd6a02594 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0xd6b7289d dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0xd6b776c0 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0xd6d52f01 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0xd6f400d8 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd70b4e0c ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xd70d1080 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd7367f46 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd73ffb86 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xd743318b cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0xd75acd0e shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xd764d265 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xd764e37b xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xd767fa25 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd776f614 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd7ab2c0c speedstep_detect_processor -EXPORT_SYMBOL_GPL vmlinux 0xd7ca76fe vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xd7d0a2f1 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xd7d645d1 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd8090a6d phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd8250a5c iounmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0xd8411307 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xd8553f2f xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xd85b6132 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0xd8725607 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd8c76c4b pv_info -EXPORT_SYMBOL_GPL vmlinux 0xd8d32080 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xd8ecef6d usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xd8ef9864 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xd90763c9 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0xd90b98f8 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges -EXPORT_SYMBOL_GPL vmlinux 0xd92e0b2e mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xd93b3da8 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd9431a87 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xd94ab8c9 xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xd94b737e erst_read -EXPORT_SYMBOL_GPL vmlinux 0xd94cdfeb pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xd94fa823 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xd952b874 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd977050f power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xd980039e platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin -EXPORT_SYMBOL_GPL vmlinux 0xd9a4bb25 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xd9ae9e87 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd9be2fb5 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xd9e7b72c pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xda0d12a4 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0xda4e3fd1 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xda5c5c8d regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xda6dd2d3 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaba81e2 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xdad2d6a0 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xdad67908 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xdad6db2f skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0xdae2aec3 tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xdae87d50 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdafa6a74 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0xdb03e7b4 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xdb31b924 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0xdb352083 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb4fc9f0 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb63e5ec pinctrl_utils_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0xdb726291 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xdb82ea70 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb906f38 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xdb9c378f regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0xdba5567f shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xdba8bc2e regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xdbcdf17c extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xdbdccdc9 napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbfd4cd7 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc51dcac pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xdc57ef2f wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc74c694 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc8341e2 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xdc8e3a12 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca6a448 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xdcbd6da5 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0xdccc6920 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd1bf79d blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xdd28300d regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd4ab2e9 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd5bcf62 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xdd5f75ec crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddcbae8c blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xdde85006 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0xddee833d crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xddf65d52 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xde156eb1 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xde48047b hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0xde496106 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xde4b50bb nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xde6be147 efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0xde747356 intel_msic_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xde7efbc8 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0xde8d2ccf sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next -EXPORT_SYMBOL_GPL vmlinux 0xde9375de to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xde9ddb86 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xdf0489ff sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0xdf325d5c tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xdf466565 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0xdf4f147f pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xdf5355bf usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xdf53cdcc usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0xdf622181 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xdf65184c debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xdf66ca81 ucode_cpu_info -EXPORT_SYMBOL_GPL vmlinux 0xdf75282c inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xdf9e4401 tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xdfb65719 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xdfe53b37 nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xdfe8ab01 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xdffc8c5f get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe0286dfc ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xe04d59b6 fpu__activate_curr -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe0a78829 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xe0b009e4 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq -EXPORT_SYMBOL_GPL vmlinux 0xe0d6a9cb pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe11ad118 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0xe13b1360 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xe14feff3 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xe16fbd0d devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xe1761645 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe17b7fec __online_page_increment_counters -EXPORT_SYMBOL_GPL vmlinux 0xe180b8bc sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xe1858c7f reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xe187a068 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe1900fab of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xe19b1585 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xe1b64232 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1c0981b fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0xe1f06f47 xen_remap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xe22e4b63 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xe23d9ba6 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xe277069a device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xe2881d09 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0xe289bd82 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe2907bf9 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0xe29349dc copy_reserved_iova -EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe2c96b16 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xe2d6d832 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0xe2e0d71d crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0xe2e8233f __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe318e548 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xe3197d1b fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xe31e4e82 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xe32670de default_iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xe3436042 component_del -EXPORT_SYMBOL_GPL vmlinux 0xe35d12e6 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xe3781628 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list -EXPORT_SYMBOL_GPL vmlinux 0xe3abad5c irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xe3ad3d88 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xe3bda663 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe3c1baab ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xe3fb929d vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xe3fdb9d5 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe4111650 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0xe41548ab list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0xe418fde4 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe439815c erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xe4627408 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe462ebe2 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xe4666d9b __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe47a1782 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xe4868a1a dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a0d7af __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xe4c331b6 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0xe4f9e942 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xe4ffa1ac percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xe51d2f0c crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xe51f6854 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xe53de23f aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xe5402098 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr -EXPORT_SYMBOL_GPL vmlinux 0xe5684260 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0xe56b7541 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe591c908 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xe5af7dd3 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0xe5e7f560 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xe5f463c6 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xe62e9d4f xen_swiotlb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xe63bbb3f ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe661dc5c rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xe6aae419 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe72eb679 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0xe733ac3e tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xe73939da irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe7535f2d virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe772fc0a max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe79619e4 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xe7dfd940 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe8110d72 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe8275bdd clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0xe8320c90 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xe83505c8 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe84f8e83 acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0xe8558069 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe86bcc9d securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xe8783c41 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xe88154f0 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0xe8ae6f8c virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xe8d36fa3 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xe8d5b9ac init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xe8d8066b sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xe8ed2679 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xe8f60d56 blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0xe8fe33f9 spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe9033c63 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xe9091a32 driver_find -EXPORT_SYMBOL_GPL vmlinux 0xe91d7d0e bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xe9200e80 devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xe9243483 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xe9329bf3 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0xe9387eff security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe96b2d82 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xe9898f44 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xe98dedc8 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xe995075c tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe9ad287e wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9e07851 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea419ca5 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xea41ac58 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0xea575dbd gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xea58ff7f ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xea7b313c pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0xea84abf6 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xea99b795 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xeae5d16b skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0xeaee9b4f ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xeb087413 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xeb09a848 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xeb0a3591 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xeb175189 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xeb1c9984 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xeb240d2a crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region -EXPORT_SYMBOL_GPL vmlinux 0xeb279fd6 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xeb41a0c6 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xeb6aa0ed ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xeba778ac usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 -EXPORT_SYMBOL_GPL vmlinux 0xebcd6f71 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xebf6037d nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xebf63a7c component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xec0c5da1 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec6117f2 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0xec6d9840 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xec81bceb crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0xecb4ea26 securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0xecbc4b57 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0xecca1115 pwm_config -EXPORT_SYMBOL_GPL vmlinux 0xecca3d49 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xeccb0e42 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xed2a094b device_register -EXPORT_SYMBOL_GPL vmlinux 0xed375381 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed49d784 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0xed4c04dc shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xed50a8e5 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xed54d909 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xed592e11 regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0xed597834 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0xed630fa6 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xed6e93be usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0xed9711a8 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0xeda21c4e regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xedab3c79 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xedb04054 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xedbccc19 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xedbd8309 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xedea6f15 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0xee24e467 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee7ed26e ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xee85eac1 __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0xeea2c36a ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xeed4011e usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xeee03934 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0xeee4aede dummy_con -EXPORT_SYMBOL_GPL vmlinux 0xeee7cfa2 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xef0d6107 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xef1139fb ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xef423fce regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef4e670d irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa74136 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xefbcc768 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0xeff5e90e fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xf00fa64a bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0xf026811d fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xf02c7c43 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xf035702e rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf03ccc6f ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf0421ad5 __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xf054ac97 intel_msic_irq_read -EXPORT_SYMBOL_GPL vmlinux 0xf057c608 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf069d92b wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf08031e1 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xf082c576 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xf0837c2c tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xf0999baa cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xf0b2551b sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf0bc609a skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xf0e203c4 acpi_dev_gpio_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf10d5271 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0xf126d4f3 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xf127d4f0 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xf175223d xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf1860f01 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0xf1a7132c setup_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr -EXPORT_SYMBOL_GPL vmlinux 0xf1c892c1 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xf1d76c97 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xf1da8f64 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0xf1fe0905 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xf20182d2 blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xf2196393 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf21fdc47 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xf228a093 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xf2443298 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xf24a71d9 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0xf2abfbe5 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2c74c98 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xf2fc6de5 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf303f6df acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf356f469 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf3579146 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xf3621405 blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf38df2cc pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3dd3ec1 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf3eab1c6 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xf3ebf4eb arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf41a0c08 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0xf4393d9d kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0xf442395c ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xf445a0dd regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xf44621f3 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xf44aae0f dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0xf48a54c1 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4b2aec0 pin_is_valid -EXPORT_SYMBOL_GPL vmlinux 0xf4cda459 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0xf4f95721 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf5023c4a __put_net -EXPORT_SYMBOL_GPL vmlinux 0xf502787d serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf558fc10 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xf56d1513 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0xf57456f4 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xf58ce54d vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xf597ddde usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5c1d024 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xf5d7f17b get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0xf5e1da88 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf5fcfe12 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xf615386f percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf6495509 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0xf657e253 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xf66bde0a usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf6a4b8f0 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0xf6b4f373 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xf6b5c5f4 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d98d0e user_update -EXPORT_SYMBOL_GPL vmlinux 0xf6e6167e regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6f020ea tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather -EXPORT_SYMBOL_GPL vmlinux 0xf714fe7d usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0xf72e1a54 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf736f6ef relay_reset -EXPORT_SYMBOL_GPL vmlinux 0xf738afa0 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xf74913d7 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xf7708232 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xf7a406ec rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xf7b163cb clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7daadc3 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xf7fc44f9 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xf82a0880 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf83afa21 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xf850a9a3 acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf890c3e6 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xf894ba00 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xf8bee792 xenbus_dev_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xf8c550e7 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf8ce5975 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf900ae93 __module_address -EXPORT_SYMBOL_GPL vmlinux 0xf920e890 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf9350ef6 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xf93887f5 acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xf939d0be ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xf93f6099 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf9628396 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a45ee7 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf9b970ed fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf9bbd97f md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xf9c5730f tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9d55733 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback -EXPORT_SYMBOL_GPL vmlinux 0xf9e3359c devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf9f25e71 device_reset -EXPORT_SYMBOL_GPL vmlinux 0xf9f3dd2d devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched -EXPORT_SYMBOL_GPL vmlinux 0xfa37edd1 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0xfa5edfca gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0xfa7d5110 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0xfa9c8831 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xfad87393 xen_swiotlb_dma_mapping_error -EXPORT_SYMBOL_GPL vmlinux 0xfb0629de usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xfb16810f wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xfb22e28b inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb7198af rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xfb83db03 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xfb83fae9 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbca5588 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xfbecaf7a ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc131d00 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xfc1b1a66 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xfc20d1ca PageHuge -EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc51cd46 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xfc75f73d xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xfc787562 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xfc8fc956 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0xfcaea8e8 scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0xfcb19218 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xfcb44c6d xen_swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0xfcba00c7 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xfccc221d debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xfd6272d3 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xfd6ca856 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xfd6da64e ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd8a27c6 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xfd9b6836 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xfdabd9ab pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0xfdba3fb9 i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0xfde33c2f cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xfe720165 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xfe932724 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfeb734af seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0xfec4f11a evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfeddca4f power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xff040d03 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff131d5c ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2ce747 machine_check_poll -EXPORT_SYMBOL_GPL vmlinux 0xff399843 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0xff39f12f gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xff4ef9e5 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0xff59b73a cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff76ceec ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xff7a15c0 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xff966d99 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xffccaa05 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xffcdef54 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xffd9a68c smp_ops -EXPORT_SYMBOL_GPL vmlinux 0xffe56314 xhci_gen_setup reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/i386/generic.compiler +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/i386/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/i386/generic.modules +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/i386/generic.modules @@ -1,4756 +0,0 @@ -3c509 -3c515 -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-sas -3w-xxxx -53c700 -6lowpan -6pack -8021q -8139cp -8139too -8250_accent -8250_boca -8250_dw -8250_exar_st16c554 -8250_fintek -8250_fourport -8250_hub6 -8250_mid -8255 -8255_pci -8390 -8390p -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -BusLogic -DAC960 -NCR53c406a -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -abituguru -abituguru3 -ablk_helper -ac97_bus -acard-ahci -acecad -acenic -acer-wmi -acerhdf -acpi-als -acpi_extlog -acpi_ipmi -acpi_pad -acpi_power_meter -acpi_thermal_rel -acpiphp_ibm -acquirewdt -act2000 -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7170 -adv7175 -adv7180 -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -advantechwdt -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -aes-i586 -aesni-intel -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -aha152x -aha152x_cs -aha1542 -aha1740 -ahci -ahci_platform -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airo_cs -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -ali-agp -ali-ircc -alienware-wmi -alim1535_wdt -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am53c974 -ambassador -amc6821 -amd -amd-rng -amd5536udc -amd64_edac_mod -amd76x_edac -amd76xrom -amd8111e -amd_freq_sensitivity -amdgpu -amilo-rfkill -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apanel -apds9300 -apds9802als -apds990x -apds9960 -apm -apple-gmux -apple_bl -appledisplay -applesmc -appletalk -appletouch -applicom -aquantia -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_ps2 -arc_uart -arcfb -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3935 -as5011 -asb100 -asc7621 -ascot2e -asix -ast -asus-laptop -asus-nb-wmi -asus-wmi -asus_atk0110 -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati-agp -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atlas_btns -atm -atmel -atmel_cs -atmel_mxt_ts -atmel_pci -atmtcp -atp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avm_cs -avma1_cs -avmfritz -ax25 -ax88179_178a -axnet_cs -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1isa -b1pci -b1pcmcia -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_epp -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcma-hcd -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_aout -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluecard_cs -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpck6 -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt3c_cs -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btuart_cs -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c101 -c2port-duramar2150 -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_das16_cs -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -ccp -ccp-crypto -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfag12864b -cfag12864bfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipreg -chnl_net -chromeos_laptop -chromeos_pstore -ci_hdrc -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -ck804xrom -classmate-laptop -clip -clk-cdce706 -clk-palmas -clk-pwm -clk-s2mps11 -clk-si5351 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cm4000_cs -cm4040_cs -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -com20020 -com20020-isa -com20020-pci -com20020_cs -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_isadma -comedi_parport -comedi_pci -comedi_pcmcia -comedi_test -comedi_usb -comm -compal-laptop -configfs -contec_pci_dio -cops -cordic -core -coretemp -cosa -cp210x -cpcihp_generic -cpcihp_zt5550 -cpia2 -cpqphp -cpsw_ale -cpu-notifier-error-inject -cpu5wdt -cpuid -cr_bllcd -cramfs -crc-ccitt -crc-itu-t -crc32 -crc32-pclmul -crc7 -crc8 -cros_ec -cros_ec_devs -cros_ec_i2c -cros_ec_keyb -cros_ec_lpc -cros_ec_spi -crvml -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -cs5535-mfd -cs553x_nand -cs89x0 -csiostor -ct82c710 -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_cs -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -dcdbas -ddbridge -de2104x -de4x5 -decnet -deflate -defxx -dell-laptop -dell-led -dell-rbtn -dell-smm-hwmon -dell-smo8800 -dell-wmi -dell-wmi-aio -dell_rbu -denali -denali_dt -denali_pci -des_generic -designware_i2s -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9601 -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -donauboe -dp83848 -dp83867 -dpt_i2o -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dtc -dtl1_cs -dtlk -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc3 -dwc3-pci -dwmac-generic -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -e752x_edac -e7xxx_edac -earth-pt1 -earth-pt3 -eata -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -ec_bhf -ec_sys -echainiv -echo -edac_core -edac_mce_amd -edt-ft5x06 -eeepc-laptop -eeepc-wmi -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efficeon-agp -efi-pstore -efi_test -efs -ehset -einj -elan_i2c -elo -elsa_cs -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_pcmcia -ems_usb -emu10k1-gp -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -ene_ir -eni -enic -epat -epia -epic100 -eql -esas2r -esb2rom -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -eurotechwdt -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f71805f -f71808e_wdt -f71882fg -f75375s -f81232 -fakelb -fam15h_power -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_cs -fdp -fdp_i2c -fealnx -ff-memless -fintek-cir -firedtv -firestream -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fjes -fl512 -flexfb -floppy -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -fmvj18x_cs -fnic -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fschmd -fsl_lpuart -ft6236 -ftdi-elan -ftdi_sio -ftl -fujitsu-laptop -fujitsu-tablet -fujitsu_ts -g450_pll -g760a -g762 -g_NCR5380 -g_NCR5380_mmio -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcm -gdmtty -gdmulte -gdmwm -gdth -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -geode-aes -geode-rng -gf128mul -gf2k -gfs2 -ghash-generic -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -glue_helper -gluebi -gma500_gfx -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-104-idio-16 -gpio-addr-flash -gpio-adp5520 -gpio-adp5588 -gpio-amd8111 -gpio-amdpt -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-cs5535 -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-f7188x -gpio-fan -gpio-generic -gpio-ich -gpio-ir-recv -gpio-it87 -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-pch -gpio-rdc321x -gpio-regulator -gpio-sch -gpio-sch311x -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gr_udc -grace -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gx-suspmod -gx1fb -gxfb -gxt4500 -hackrf -hamachi -hampshire -hangcheck-timer -hanwang -hci -hci_uart -hci_vhci -hdaps -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hecubafb -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hgafb -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-hyperv -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hih6130 -hio -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi504_nand -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horizon -horus3a -hostap -hostap_cs -hostap_pci -hostap_plx -hostess_sv11 -hp-wireless -hp-wmi -hp100 -hp_accel -hpfs -hpilo -hpsa -hptiop -hpwdt -hsi -hsi_char -hso -hsr -hsu_dma -hsu_dma_pci -htc-pasic3 -htcpen -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hv_balloon -hv_netvsc -hv_storvsc -hv_utils -hv_vmbus -hwa-hc -hwa-rc -hwmon-vid -hx8357 -hyperv-keyboard -hyperv_fb -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd756-s4882 -i2c-amd8111 -i2c-cbus-gpio -i2c-cros-ec-tunnel -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-eg20t -i2c-emev2 -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-ismt -i2c-kempld -i2c-matroxfb -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-nforce2 -i2c-nforce2-s4985 -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-isa -i2c-pca-platform -i2c-piix4 -i2c-robotfuzz-osif -i2c-scmi -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i3000_edac -i3200_edac -i40e -i40evf -i5000_edac -i5100_edac -i5400_edac -i5500_temp -i5k_amb -i6300esb -i7300_edac -i740fb -i7core_edac -i810 -i810fb -i82092 -i82365 -i82860_edac -i82875p_edac -i82975x_edac -i915 -i915_bpo -iTCO_vendor_support -iTCO_wdt -ib700wdt -ib_addr -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibm_rtl -ibmaem -ibmasm -ibmasr -ibmpex -ibmphp -ichxrom -icn -icp_multi -icplus -ics932s401 -ideapad-laptop -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_gen2 -idtcps -ie31200_edac -ie6xx_wdt -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -ims-pcu -imx074 -in2000 -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int3400_thermal -int3402_thermal -int3403_thermal -int340x_thermal_zone -int51x1 -intel-hid -intel-lpss -intel-lpss-acpi -intel-lpss-pci -intel-mid-touch -intel-mid_wdt -intel-rng -intel-rst -intel-smartconnect -intel-vbtn -intel_ips -intel_menlow -intel_mid_battery -intel_mid_powerbtn -intel_mid_thermal -intel_oaktrail -intel_pch_thermal -intel_pmc_ipc -intel_powerclamp -intel_punit_ipc -intel_qat -intel_quark_i2c_gpio -intel_rapl -intel_scu_ipcutil -intel_soc_dts_iosf -intel_soc_dts_thermal -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -intelfb -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipwireless -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -iris -irlan -irnet -irqbypass -irtty-sir -isci -iscsi_boot_sysfs -iscsi_ibft -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it87 -it8712f_wdt -it87_wdt -it913x -itd1000 -ite-cir -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -k10temp -k8temp -kafs -kalmia -kaweth -kb3886_bl -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks0127 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kvm -kvm-amd -kvm-intel -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l440gx -l4f00242t03 -l64781 -lan78xx -lanai -lance -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-adp5520 -leds-bd2802 -leds-blinkm -leds-clevo-mail -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-net48xx -leds-ot200 -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-ss4200 -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -leds-wrap -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_cs -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -litelink-sir -lkkbd -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lmc -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -logibm -longhaul -longrun -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltpc -ltr501 -ltv350qv -lv5207lp -lvstest -lxfb -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac_hid -macb -machzwd -macmodes -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77693 -max77693-haptic -max77693_charger -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mce-inject -mce_amd_inj -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -mdacon -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-gpio -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -mei -mei-me -mei-txe -mei_phy -memory-notifier-error-inject -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -metro-usb -metronomefb -meye -mf6x4 -mga -michael_mic -micrel -microchip -microread -microread_i2c -microread_mei -microtek -mii -minix -mip6 -mite -mixcomwd -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_block -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi-laptop -msi-wmi -msi001 -msi2500 -msp3400 -mspro_block -msr -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwave -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxm-wmi -mxser -mxuport -myri10ge -n2 -n411 -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nand -nand_bch -nand_ecc -nand_ids -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -ncpfs -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -ne -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -nettel -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfit -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni65 -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_daq_700 -ni_daq_dio24 -ni_labpc -ni_labpc_common -ni_labpc_cs -ni_labpc_isadma -ni_labpc_pci -ni_mio_cs -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicstar -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nmclan_cs -nosy -notifier-error-inject -nouveau -nozomi -ns558 -ns83820 -nsc-ircc -nsc_gpio -nsp32 -nsp_cs -ntb -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nuvoton-cir -nv_tco -nvidiafb -nvme -nvmem_core -nvram -nxp-nci -nxp-nci_i2c -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_xilinx_wdt -old_belkin-sir -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_cs -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p4-clockmod -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -padlock-aes -padlock-sha -palmas-pwrbutton -palmas-regulator -panasonic-laptop -pandora_bl -panel -paride -parkbd -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pas16 -pata_acpi -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cs5520 -pata_cs5530 -pata_cs5535 -pata_cs5536 -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_isapnp -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_oldpiix -pata_opti -pata_optidma -pata_pcmcia -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sc1200 -pata_sch -pata_serverworks -pata_sil680 -pata_sl82c105 -pata_triflex -pata_via -pc110pad -pc300too -pc87360 -pc8736x_gpio -pc87413_wdt -pc87427 -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcbit -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_can -pch_dma -pch_gbe -pch_phub -pch_uart -pch_udc -pci -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia -pcmcia_core -pcmcia_rsrc -pcmciamtd -pcmda12 -pcmmio -pcmuio -pcnet32 -pcnet_cs -pcrypt -pcspkr -pcwd -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc_adma -peak_pci -peak_pcmcia -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-tahvo -phy-tusb1210 -physmap -pinctrl-broxton -pinctrl-intel -pinctrl-sunrisepoint -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pn533 -pn544 -pn544_i2c -pn544_mei -pn_pep -poly1305_generic -port100 -powermate -powernow-k6 -powernow-k7 -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_core -pps_parport -pptp -prism2_usb -processor_thermal_device -ps2mult -psmouse -psnap -pt -pti -ptp -ptp_pch -pulsedlight-lidar-lite-v2 -punit_atom_debug -pvpanic -pvrusb2 -pwc -pwm-beeper -pwm-lp3943 -pwm-lpss -pwm-lpss-pci -pwm-lpss-platform -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa27x_udc -qat_dh895xcc -qat_dh895xccvf -qcaux -qcom-spmi-iadc -qcom-spmi-vadc -qcom_spmi-regulator -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qlogic_cs -qlogicfas -qlogicfas408 -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quatech_daqp_cs -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r82600_edac -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-aimslab -radio-aztech -radio-bcm2048 -radio-cadet -radio-gemtek -radio-i2c-si470x -radio-isa -radio-keene -radio-ma901 -radio-maxiradio -radio-miropcm20 -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-rtrack2 -radio-sf16fmi -radio-sf16fmr2 -radio-shark -radio-si476x -radio-tea5764 -radio-terratec -radio-timb -radio-trust -radio-typhoon -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -radio-zoltrix -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -ray_cs -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio-scan -rio500 -rionet -rivafb -rj54n1cb0c -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-bq32k -rtc-bq4802 -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-hid-sensor-time -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-mrst -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-r9701 -rtc-rc5t583 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -salsa20-i586 -salsa20_generic -samsung-keypad -samsung-laptop -samsung-q10 -samsung-sxgbe -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sb1000 -sbc60xxwdt -sbc7240_wdt -sbc8360 -sbc_epx_c3 -sbc_fitpc2_wdt -sbc_gxx -sbni -sbp_target -sbs -sbs-battery -sbshc -sc -sc1200wdt -sc16is7xx -sc92031 -sca3000 -scb2_flash -scc -sch311x_wdt -sch5627 -sch5636 -sch56xx-common -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -scx200 -scx200_acb -scx200_docflash -scx200_gpio -scx200_hrt -scx200_wdt -sdhci -sdhci-acpi -sdhci-pci -sdhci-pltfm -sdio_uart -sdla -sdricoh_cs -sealevel -sedlbauer_cs -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serial_cs -serio_raw -sermouse -serpent-sse2-i586 -serpent_generic -serport -ses -sfc -sfi-cpufreq -sh_veu -shark2 -shpchp -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sim710 -sir-dev -sis -sis-agp -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -sl811_cs -slcan -slicoss -slip -slram -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smc-ultra -smc9194 -smc91c92_cs -smipcie -smm665 -smsc -smsc-ircc2 -smsc37b787_wdt -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1816a -snd-ad1848 -snd-ad1889 -snd-adlib -snd-ak4113 -snd-ak4114 -snd-ak4117 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als100 -snd-als300 -snd-als4000 -snd-asihpi -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt1605 -snd-azt2316 -snd-azt2320 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmi8328 -snd-cmi8330 -snd-cmipci -snd-compress -snd-cs4231 -snd-cs4236 -snd-cs4281 -snd-cs46xx -snd-cs5530 -snd-cs5535audio -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emu8000-synth -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1688 -snd-es1688-lib -snd-es18xx -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-gus-lib -snd-gusclassic -snd-gusextreme -snd-gusmax -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-ext-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel-sst-acpi -snd-intel-sst-core -snd-intel-sst-pci -snd-intel8x0 -snd-intel8x0m -snd-interwave -snd-interwave-stb -snd-isight -snd-jazz16 -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-miro -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-msnd-classic -snd-msnd-lib -snd-msnd-pinnacle -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-opl3sa2 -snd-opl4-lib -snd-opl4-synth -snd-opti92x-ad1848 -snd-opti92x-cs4231 -snd-opti93x -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pcsp -snd-pcxhr -snd-pdaudiocf -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-sb-common -snd-sb16 -snd-sb16-csp -snd-sb16-dsp -snd-sb8 -snd-sb8-dsp -snd-sbawe -snd-sc6000 -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-sis7019 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-dmic -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-imx-audmux -snd-soc-max98090 -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rl6231 -snd-soc-rl6347a -snd-soc-rt286 -snd-soc-rt5631 -snd-soc-rt5640 -snd-soc-rt5645 -snd-soc-rt5660 -snd-soc-rt5670 -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-skl -snd-soc-skl-ipc -snd-soc-skl_rt286 -snd-soc-sn95031 -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sst-acpi -snd-soc-sst-baytrail-pcm -snd-soc-sst-broadwell -snd-soc-sst-byt-max98090-mach -snd-soc-sst-byt-rt5640-mach -snd-soc-sst-bytcr-rt5640 -snd-soc-sst-bytcr-rt5660 -snd-soc-sst-cht-bsw-max98090_ti -snd-soc-sst-cht-bsw-rt5645 -snd-soc-sst-cht-bsw-rt5672 -snd-soc-sst-dsp -snd-soc-sst-haswell -snd-soc-sst-haswell-pcm -snd-soc-sst-ipc -snd-soc-sst-mfld-platform -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-sscape -snd-tea6330t -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-us122l -snd-usb-usx2y -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-vxpocket -snd-wavefront -snd-wss-lib -snd-ymfpci -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -softing_cs -solo6x10 -solos-pci -sony-btf-mpx -sony-laptop -sonypi -soundcore -sp2 -sp5100_tco -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntpc -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_decpc -speakup_dectlk -speakup_dtlk -speakup_dummy -speakup_keypc -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -spectrum_cs -speedfax -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-nor -spi-oc-tiny -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-sc18is602 -spi-tle62x0 -spi-topcliff-pch -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spmi -sr9700 -sr9800 -ssb -ssb-hcd -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -ssv_dnp -st -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stmmac -stmmac-platform -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -surfacepro3_button -svgalib -sworks-agp -sx8 -sx8654 -sx9500 -sym53c416 -sym53c500_cs -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink -synclink_cs -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -t128 -t1isa -t1pci -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc1100-wmi -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcic -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teles_cs -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -thinkpad_acpi -thmc50 -thunderbolt -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timb_dma -timberdale -timblogiw -timbuart -timeriomem-rng -tipc -tlan -tlclk -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmem -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -topstar-laptop -torture -toshiba-wmi -toshiba_acpi -toshiba_bluetooth -toshiba_haps -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_atmel -tpm_crb -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_infineon -tpm_nsc -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tscan1 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish-i586 -twofish_common -twofish_generic -typhoon -u132-hcd -u14-34f -uPD98402 -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -ultrastor -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -us5182d -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -usnic_verbs -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vboxguest -vboxsf -vboxvideo -vcan -vcnl4000 -ven_rsi_91x -ven_rsi_sdio -ven_rsi_usb -ves1820 -ves1x93 -veth -vfio -vfio-pci -vfio_iommu_type1 -vfio_virqfd -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-camera -via-cputemp -via-ircc -via-rhine -via-rng -via-sdmmc -via-velocity -via686a -via_wdt -viafb -video -videobuf-core -videobuf-dma-contig -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videocodec -videodev -vim2m -viperboard -viperboard_adc -virt-dma -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -vitesse -vivid -vlsi_ir -vmac -vme_ca91cx42 -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmlfb -vmw_balloon -vmw_pvscsi -vmw_vmci -vmw_vsock_vmci_transport -vmwgfx -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vsock -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83627ehf -w83627hf -w83627hf_wdt -w83781d -w83791d -w83792d -w83793 -w83795 -w83877f_wdt -w83977af_ir -w83977f_wdt -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -wafer5823wdt -walkera0701 -wanxl -warrior -wbsd -wcn36xx -wd -wd7000 -wd719x -wdt -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -winbond-cir -wire -wishbone-serial -wistron_btns -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wl3501_cs -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wmi -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x38_edac -x86_pkg_temp_thermal -x_tables -xc4000 -xc5000 -xcbc -xen-blkback -xen-evtchn -xen-fbfront -xen-gntalloc -xen-gntdev -xen-kbdfront -xen-netback -xen-pciback -xen-pcifront -xen-privcmd -xen-scsiback -xen-scsifront -xen-tpmfront -xen_wdt -xenfs -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xhci-plat-hcd -xillybus_core -xillybus_pcie -xirc2ps_cs -xircom_cb -xor -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yenta_socket -yurex -z85230 -zatm -zaurus -zd1201 -zd1211rw -zforce_ts -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx -zram -zynq-fpga reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/i386/lowlatency +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/i386/lowlatency @@ -1,18868 +0,0 @@ -EXPORT_SYMBOL arch/x86/kvm/kvm 0x1fc7a1d4 kvm_cpu_has_pending_timer -EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x254e5667 scx200_gpio_base -EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x35a3c008 scx200_gpio_configure -EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x8cfa375c scx200_gpio_shadow -EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x907665bd scx200_cb_base -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x2d7e229d mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/acpi/nfit 0xa7e9a159 to_nfit_uuid -EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type -EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister -EXPORT_SYMBOL drivers/acpi/video 0x7eac0974 acpi_video_get_edid -EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register -EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type -EXPORT_SYMBOL drivers/atm/suni 0x1a126d2a suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0xa68ecfb2 uPD98402_init -EXPORT_SYMBOL drivers/bcma/bcma 0x1cf5c26d bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0x3d598999 bcma_core_irq -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x2ce10b0c pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x435808ac pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x49df667c pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x4ec39485 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x51e6f7e0 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0x5b3726cf paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0xa2dd3d4a pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xad6d1014 paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0xb041c162 pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xbd7aa79f pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0xcd35b418 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xf49a56aa pi_schedule_claimed -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xdec1a6bd btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1315bf96 ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x83f0dca0 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xcf0eaab4 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd679a613 ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf7b28dd8 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/nsc_gpio 0x428dbcdd nsc_gpio_read -EXPORT_SYMBOL drivers/char/nsc_gpio 0xd329fb63 nsc_gpio_dump -EXPORT_SYMBOL drivers/char/nsc_gpio 0xf6316cdf nsc_gpio_write -EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte -EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2f3471c5 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x771f35b3 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x8166f092 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd3ccca7c st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3726a2b4 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7c50154d xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xf6aeb4ea xillybus_endpoint_remove -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x1a1203fb dw_dma_get_src_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x1f633947 dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xac717d84 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xbe4ab300 dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xdf6f6889 dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xfa75bf36 dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/edac/edac_core 0x2cb58c78 edac_mc_find -EXPORT_SYMBOL drivers/firewire/firewire-core 0x02c2f355 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x05fd7a99 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0efe8286 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x17510e7f fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x34283399 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3f4a7df9 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x41369a00 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x627a51e3 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x668a6eaf fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6805e640 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x69ab1b78 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6e840ac3 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7cfb726c fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8033824e fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x909d9b77 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x98a1b894 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9c1048c3 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa9c886d5 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb8bf30a fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd152357e fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd41f028b fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd962a2b5 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdb491cfa fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0xea19a149 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xec9c1418 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf3b931e8 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request -EXPORT_SYMBOL drivers/fmc/fmc 0x1c5735af fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x1c5de978 fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x3f7a354f fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0x4255cb73 fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0x8f14bcdf fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x93aed2be fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0x98a7123d fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0xa7243c45 fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0xbaf9cafc fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xeaf2b64d fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xffc12ffa fmc_driver_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x001f70c0 drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02971593 drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05595b75 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x063f1af2 drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0667c653 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x067696a5 drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0x072852c3 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07b9f35e drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fe5aa4 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x085dcd1f drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x099d6938 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a54df81 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a62c136 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a65bbe5 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a69e2dd drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b514f20 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cca192e drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d6ae3e0 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb9432c drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f0a8a4b drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f5cb4e9 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f9bc673 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd26d62 drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1128922c drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x116b2473 drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x125913c6 drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1333e73c drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0x134e0702 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13891dde drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13d535da drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15286ecb drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x156a93d2 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1579accd drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1624c771 drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ab825a drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16cf20ff drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19edb63a drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a1c2d6c drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a724c1a drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a9ac711 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b0f05a2 drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b9ec7a9 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bae409f drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c466c63 drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1eb4d839 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1feaac99 drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x200d6e66 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2179dfbb drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x218c9872 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2213bdc8 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23d1bcf3 drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2523fb34 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25507d22 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2649706b drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26d65fba drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26f88c05 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2767e003 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28844574 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x289eb389 drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28a8aff4 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28d900dd drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b1a4635 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bed3bbf drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bfa3ab8 drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c451e8e drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c505b7d drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c870e26 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x310da1af drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31da2a6f drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3406fa91 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34176c21 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3437de52 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3486cba4 drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x362f694e drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3879856d drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38d77ee0 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39988d25 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a305852 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3baaed43 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bc1f00a drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c2e5f97 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c33ca56 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3db531a8 drm_agp_bind_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e42c008 drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f0c0afc drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40d1febc drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41cdc5ac drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4218c63e drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x425fea93 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x434d04c5 drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46374329 drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x475c6d98 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x478a8aa4 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47b77195 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47bb3c76 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4964b2db drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a0b5599 drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c5bef41 drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d660afa drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d74eb4d drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dabafa9 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dd87dd1 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f59fb0b drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fde40d4 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51c683ae drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x529e6504 drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53e84e6c drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53edbc86 drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55b71ba7 drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5682197c drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58a59542 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58c4414d drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59b54b22 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59d364ab drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59f4e454 drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b73ca09 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c363a7e drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c9adcef drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cca3515 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5df12de7 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dff594d drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f46ccd2 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6013ed0f drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x627c64a3 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62e88eca drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x637e69b4 drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63efee3e drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x642eefac drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64e4bc47 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x650b8bf9 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65f2fde7 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65f7ef88 drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66843f55 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x671d6a10 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x671e529e drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6885a171 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6996a597 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6abe894e drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b8b2d45 drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f4670e4 drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70632cb2 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71eb7870 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7354d42b drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74143bf2 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76c21c72 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x790e02e1 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x797b293a drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b0df464 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7be32e00 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c29ed10 drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d5f2a40 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d7552fa drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e41bf2a drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa206aa drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa9d7b3 drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80ce4d72 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81209905 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8121c0f8 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82d9dfd8 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83f08b02 drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8434f219 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84b19c7e drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84d7c712 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85035913 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88590b96 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89a78f0f drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89f44d2b drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b414b1b drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c5c21e9 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8df16d4f drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e9ed882 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eb9c81b drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90030e61 drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x912e710e drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95c9236a drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97c83d8a drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98f1ab59 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x992131b9 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x995280af drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9986bf6c drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99ece71c drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ca3ff9d drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cae155c drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0fdc71 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e1b780d drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0c1a015 drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa10d4f1b drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa13cd453 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa18ee000 drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c228a0 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3018f28 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4034720 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5bd8bad drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7234876 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa98219e8 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9acdf68 drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacd3ab54 drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadb07e36 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf216467 drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb33becf4 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3779731 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3c0177a drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb40d9904 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5dd0648 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb64d4e99 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6b2c69c drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba4607b9 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb0571a7 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb2c2ffd drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd86591c drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbedb2b83 drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf58db60 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0717d30 drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc10d7597 drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc532f657 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc63a0bcb drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc65e2bd7 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6b75045 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8656ca5 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc91d2f60 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc93f6238 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb653437 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc1ded28 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdad0316 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce4b0b86 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf8e9765 drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd175c3c0 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1b932fb drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd20fec6b drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd28c3234 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd410df54 drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd58cb85a drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5a6051f drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5c10181 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd75f48fe drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd77bfcc9 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd90ba58a drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9ce027d drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdabb9674 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb03e0ae drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb5969ee drm_legacy_addbufs_agp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc8fe2a4 drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd36235d drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddb5e66d drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde60a27c drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdff69fad drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe11f0644 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1d5358d drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2531be6 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2e8be5b drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe49b57f0 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4e17069 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe522d4ba drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5506c68 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe569980f drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5de1eb1 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe92f9fb1 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe931e130 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9ada530 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9e5cfdd drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xecb71bfa drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef003c59 drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf04d0da9 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf06d7289 drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf07d2f13 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf191fdd8 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1f4e7e2 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf39e5da3 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4b95636 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5820ea7 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7bafbb4 drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7e7ae1d drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9d8109f drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb3af9aa drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb7067f0 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbfa60f4 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfee166ab drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffe0af23 drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00b5d817 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00c8d1fe drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00f48216 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01e96344 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02521cd1 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x036f4f11 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x037cd5e1 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04a3a3f4 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ae9bf06 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b4ee744 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b8b647e drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bb9069e drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bb98991 drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c7179c3 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d1c81eb drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d20a779 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0de7425b drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e427f82 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0eeb2918 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10a16f8f drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14301b50 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17cb4f35 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1877ca47 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18a4162c drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ce15bb3 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x211153ad drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a7a9624 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34168c1b drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34361074 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34e7a03f drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c713a02 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ce973d7 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e9cac04 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x401491b9 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41631036 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41ce953a drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4476f422 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4844225c drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a744fee drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fc6ad34 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x506895f2 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x509cc846 drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51d496e9 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x536aaaef drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x544cb75d drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54b4a6f8 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57c2016f drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e4105e2 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x618fe926 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62bc9a1a drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6400cb62 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x660411c2 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6906686b drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ce1c174 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f2be92c drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7374f9a9 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75d6c677 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x777115cf __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78254064 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78bf1ee3 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bdb5fe1 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c1f9850 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f64ff44 drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8268dd2e drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82c06f49 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84bbf712 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86220cb8 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x886f5e33 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b86b628 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c6bf956 drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c9363b8 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca8cefd drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fc467f1 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x904180db drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91e6d678 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9491117a drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x958acec8 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x966bd849 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97c727ad drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c9ed865 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa12d771b drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa19468ca drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa33899ec drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4f222c6 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa597a55c __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa636e1e0 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa91ddad8 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9d267bb drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa05773a drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaf53d76 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaafaa3af drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab950d1a drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaba40067 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafe3e995 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb16bb068 drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3cafd85 drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5b7c701 drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb69d8283 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6c8ee1b drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7e54594 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8124eb7 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb88f5fe9 drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb16cdf8 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdd9e1f7 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfe17c2f drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc16ff8ee drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1b5d4d0 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc223d30e drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4b81c0b drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5db6f7b drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6ac1d1c drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6ef5e8a drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc76d433e __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc84851f0 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc84ecb18 drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8f34044 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9142a68 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9215cd7 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9e95617 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc126ad4 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xced14220 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0eb2502 drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd10057c4 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd32676e5 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3b47c12 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd684bbe2 drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaf5512a drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe059dca8 drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4436826 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7564d2d drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7b051da drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe91931ff drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb2de872 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeea4f4b3 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf108e12d drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1ad6477 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6b5caf1 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf735722f drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8a72c5f drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa9ca4cd drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb80dea7 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffc66f66 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05c66deb ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0eff5ff7 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x15a1f5cb ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16470b62 ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x19eb1c33 ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b109e30 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1eabf673 ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x212da2a4 ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x213305dd ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2241c9ed ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22ec80fe ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24765c33 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x266d8a60 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28fe6cf6 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2aa81ce8 ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2bf5737f ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2cfc471b ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x32f2fd91 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x367bedee ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x388595eb ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3babd517 ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c9985f5 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x515c7aa2 ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x57740361 ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59c1c236 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68a5815a ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69cbc4dc ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c8dc6bf ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e875de9 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f61e4b5 ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x77db7f68 ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79929145 ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d556712 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81a58602 ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836d8fd0 ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x861ddd31 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86b7e5a5 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89bc37bd ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bfa85a1 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d22da47 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e9c9959 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91ac4fb5 ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92dae9ad ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x946d9ea3 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95304034 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x983dd465 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa503b530 ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3c1280a ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb450808c ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbca82ef4 ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd7271fa ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9a1bfd9 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcaf172fd ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf49f835 ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf5cdde0 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xddb733d1 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde12ed06 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe4af5d7d ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe782f4a6 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeabf2086 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec9b658e ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf86b299b ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbdf48fe ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfef32d54 ttm_pool_populate -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xb99f265d vmbus_recvpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xccaa4611 vmbus_sendpacket_ctl -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xdea56a49 vmbus_sendpacket -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xfeaa4006 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x5904e9c3 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x70d3b6c7 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xe367ae0f i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x71ce23b2 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x835b20f3 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xa5a05953 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0455482d mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x45509bac mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x57927224 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6ec4d1f5 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7a05b37d mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8a3e6c71 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x904f4085 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x93aaa8b9 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa648d57f mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa813131b mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xaac7e902 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcd195f95 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xce1d5bf6 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd48676b0 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe105d206 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xff3eb428 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x04a4f0cc st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xa2cd9372 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xc546edd4 iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xfe1b1754 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x3b15611c iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5eed82a2 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xa77ce1bc iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe1f799a0 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x1784f8fe hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x37e29607 hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4d6b4a90 hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x60c9f91f hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa3939614 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa4bf7641 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x85e0885e hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xbab6b14d hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd6e8cede hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xec443175 hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x23a54fc5 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3bd889d0 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3ecb10ee ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4b8d48e7 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4d6ec77a ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8ad21cb4 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xcf9b0e32 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd295bd09 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe6ef36d8 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x14e5953e ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x521d5db7 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x94701a8c ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xce642725 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xeeab8420 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x23a3f0f9 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x86c1ef18 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x92510b0d ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0c7a2c93 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x23af4b67 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x495222e9 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4b548639 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x53044272 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x56730d07 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5fbca739 st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x78b70a30 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9cd0d072 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9dc63224 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa95db46a st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xab7ee179 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb9fac031 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcc4fc1dd st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcccbb522 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd59fe045 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe424a84a st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x8ddec7a8 st_sensors_match_acpi_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xd0d19a67 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xa47a87fd st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x7c0ad57c st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xe82fd854 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x2daf312d hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x76d270db adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xec74788f adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/industrialio 0x1a62bd14 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x1e8f506e iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x22068f10 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x367b6bda iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x3b8c6ef7 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x3c3c4ba5 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x4a3a2665 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x69972c25 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x942cae6e iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xaa463f38 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xae7172e0 iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xc31a1604 iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xcc3b3757 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0xd77e99d3 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0xdb81453e iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xdeda2f40 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xf3f47627 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x1a11af76 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x402e3be8 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xe67c54e8 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xf40e5b74 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xd0c799af ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x89c04e22 st_press_common_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xe5f238b3 st_press_common_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1375905e rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1edc4064 rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x829bc119 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x88b2f18d rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d9cabc5 rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xe75b27ae rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x00a206b2 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x19405cac ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x236e33b8 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x343cfa68 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3abd5525 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x417b3dc4 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x64a1fc63 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69403791 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6ba90cde cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7a3ed8d4 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8979358c ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x93c21aaa ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa54a9f87 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xad120b1e ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd4259197 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd5ca19b5 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe0991f60 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfc474d47 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07263cda ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e7b6dbf ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f615637 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x101370b7 ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10355291 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11e491bb ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1270b63f ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1aedb29d ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x206e347b ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22223038 ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22e09727 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2469e949 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25cea9ee ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2698614e ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b1fc2bc ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b36dddb ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dea9b0c ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e90ce4e ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fbe84d6 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3184ad20 ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x356b0ed0 ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37668d82 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x383f2949 ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x388ccb30 ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b97322b ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x448ef10f ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48a1a731 ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e7bc1fd ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4eb30108 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fa5122d ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x562cf585 ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x579a1507 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e2d3614 ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e6fe7d4 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6010e807 ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6048b3b4 ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dca62e1 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73ecadc0 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x770daef1 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77193c21 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77d01fa3 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a9e41a8 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x842dc4ff ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85d3a017 ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89dae69b ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92f4985c ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96d80f0f ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9878d9a4 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f8c741e ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa69012c8 ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa83d9083 ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa288799 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadc14af9 ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae8cf97d ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2f502c5 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4e70899 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6965a59 ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7e15705 ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc86ff1e ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd466301 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdebcfb3 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbec68bbb ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4035108 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc55a0515 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca1ee526 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcaea3a7b ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb4767ba ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb821230 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf763eda ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2dabe41 ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd870ed41 ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd91a38d3 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb2c0a9b ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde69eb65 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1e8b94f ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe662388a ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe94d3975 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9caa492 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeae3d360 ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4ed71a6 ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7577894 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8588fd2 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf88a412e ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x18b00402 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2ad63917 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x32f38174 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x52e597a5 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x611f126b ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x72435af9 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8a46edc1 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x9ecfcb88 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb5b28b75 ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc42f82a2 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xcc589648 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe79d1636 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xefbee6cb ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x05f51c4a ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x082f04d3 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1cf86852 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x287d1e73 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x356d8747 ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x567b118c ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x770592c5 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa6469b0d ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xae8ff231 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe6150284 ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xecbc928a ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x577315ef ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9dd8a261 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x01982323 iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x15c82ec2 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3e124c4b iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x51478fd3 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7daed754 iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x85bc59e2 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa19e49d7 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xade9400a iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xaf5f4d6b iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb7ec77c3 iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd804eef8 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xea39df3d iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf18e4f75 iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfb76b24c iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfbd75a47 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0071bb5e rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x015041cd rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0a6b9f94 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e62b76c rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3d897d13 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x69e8a324 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x75ba7c0f rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x76ab22bf rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x79b37b41 rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb31fa16e rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xba7553c6 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc42df211 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc7e62a1 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe079e815 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeb0b1a0a rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xef035fe1 rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf0335747 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf1f4f4b1 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf696801d rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf79d91ff rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf9bb28b1 rdma_connect -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1ff6caea gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2be28207 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x661e01ee gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x6a5f550c gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x876c6cd0 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb30dcc10 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0xc262b428 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xe096b96c __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xedf7e829 gameport_unregister_port -EXPORT_SYMBOL drivers/input/input-polldev 0x46ea379a input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x74d32ac6 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x761bc259 devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xb4502e91 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xf68275a3 input_allocate_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x1caa6772 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x1d0c24e3 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xe2b7c0c6 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xe7c3ee58 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x3780b207 cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x187855fc sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0x294abe64 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x54990ab2 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x5caf3b55 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x89710808 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xea3242da sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x95db72e8 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xd84c6199 ad7879_probe -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x02cbfb97 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x483c666e capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6a59a9dd capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7def4a37 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7f7d8fb1 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x85dea34e capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaaa1cdf6 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xdd530708 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe48b0172 capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf67713e5 capi20_register -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0748f302 avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x635a2291 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x696317ee b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x70d56069 b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x75878719 b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7731e5f9 b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7fc73e33 b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9e4342e1 b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa0d4f64c b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xaed7223b b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc963cef5 avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd54b7f98 b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd985bc6f b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd9b7c9a9 b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xed8adf4c b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x43d10c74 b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6a5dfb9d b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6f9c1417 b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7094bc56 t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x85081828 b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8827d05b b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xcd52c9c8 b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf448591b b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xfeab5710 b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x1b4e65fa mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x2e35c329 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xabf2302d mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf71350e8 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x35e045b6 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe93d52db mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xe9c6f9ea hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x0c632481 isacsx_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x1bb4eb12 isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3e5da0c7 isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x57427696 isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x97611639 isac_init -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x453020b8 register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xa441bb1d isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xc68f667a isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1aa45768 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x22bda571 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x28e0994b recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29391345 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2bab496d bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x338467c2 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x38e03c3a dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x44d4fc72 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x48b22db6 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5abcb211 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x634159ba recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x64b46a8d recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6ead1f25 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x868a2b8f get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8aa0fbcb create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x989d1c23 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x994cba89 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbafc0ffd mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc6284a33 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcd3c93d7 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd17b98f4 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd463a44f bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfb13d68d mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6223abc4 closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7f2a56c0 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xba2b5a3b closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0xbc10b909 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xcfd815d6 closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xecf7cef9 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0xfbf30701 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-log 0x5206141f dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x53a51b07 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x5e1b55f4 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xa0ebc203 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x1477999e dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x299a78cf dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x45c1d740 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x986e8a2c dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x9f134877 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xfa67fbb6 dm_exception_store_create -EXPORT_SYMBOL drivers/md/raid456 0xcce1455e raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0a1cacea flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1465f183 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1ba6cdf4 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x324b860a flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3f32d569 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4b53947d flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4ed3bec8 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6b03c751 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x92d7f545 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x954e5050 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb7913675 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe962524d flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf9a9280a flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x39c25b47 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x90c416a2 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0x931b6074 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xeefc639d cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x320ff03a cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0xcce128bf tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0xfbc749ed tveeprom_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x09ee27c1 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e5f0bdd dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2013f532 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2907e8ed dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2a79a27b dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2cf288a0 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ee8cfed dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x43afa556 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4672414b dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4c23f0e6 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4dc6b123 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5411b29c dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58c0b3ca dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5a6f883d dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x60c5f691 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70de704a dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7b01edcf dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x86a17fc0 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x89abce5d dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x89d18cfb dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8ae37ce4 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x96bccda5 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ab4d06a dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa029d070 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa721b95c dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa7e5f2b1 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaa4ca35e dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xae552ae6 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc37e96c4 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc645fbc3 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcad56403 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcbcdd375 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe33b5ee5 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe7d43d1b dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebd38af9 dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfa436cac dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfd4881cd dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfedb98ab dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x64c14474 af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x15869558 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x12fdfcba atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x065e0613 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0d3740a7 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x20f18b68 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x44facfd1 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x60ae5288 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x86273137 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x956f401e au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbfd74ff1 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd1fab3dd au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xb0a2791f au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xabe6724f bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x23ede090 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xe5d3b71b cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xec742c4c cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x33e7a37b cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x4ae46f6e cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xa7b07ef2 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x0540657b cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x5b13a3b0 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xb05e43b3 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xbf1ff9e5 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x2ce72ffb cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xc6a4454f cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xd4f67657 cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x21500a42 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2b5f8f83 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x340c779a dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x73419376 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x91a1feb0 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x121fd1a7 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1958804c dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x233d6774 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4b425b49 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4c3a5c0e dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x542b779d dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x706ee6bb dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x72ce419c dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaf3a6333 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd9bd03bb dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe288b894 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xea0d14d0 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeeb0ab1e dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xef31a6b3 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xffe28818 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x8b5a431f dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x10a97a13 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x16ee9153 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1b7af093 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x51676f36 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x95e19398 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb772af49 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x23f36341 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6a68ccff dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x72aae85e dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc68a843f dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x3f522756 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x6b593106 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x058cac56 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x222051df dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x5f66379a dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x83737851 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc5474348 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xcdd33ca1 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x55422ad4 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x9a7776d4 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xbbfd477a ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x049e62fd dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xce3ecbe2 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x2d14bc21 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x38ccedf8 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x3b517704 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x43cba8f3 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x768e269f itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x7808ce30 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x32e08fc8 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x0bca7b82 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x6683a4ec lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xca787060 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x993c77f0 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xc82dda77 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xf1e2eeed lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x15ff0b29 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x63b03761 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x58570041 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x8cfb5360 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xddc90f77 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x0fe8830c m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x7f42ad99 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x55cc0c5f mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x8fb44256 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x1f69f4ab mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x4a281967 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xfd04ed19 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xf1f6e952 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x807daf91 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xdcad0a66 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x469ba138 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xab1db31f s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xab41c76d s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x389e4b99 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xef234c3d si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x5a84d5c4 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x4ed285d9 sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x1d674718 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xa3f8c509 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xe4b14cf0 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xefe94d9d stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x7ae62d27 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x4cba0c29 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xfe2e1b43 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x1ca8753b stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x1ff14d21 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x615fcd79 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x5a71137d stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x85639baa stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x20bc5b2c stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x031ce3de tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x2588a48b tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x67cb4574 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x47f26fdc tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x73e7c7b4 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xf6e8a4a3 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xcca8243e tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x4e57e0cc tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x5e95e086 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x91797373 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x998c2297 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x2f7bd131 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x14717cf8 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x5435cca8 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x8c96d06a zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x94127f21 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x0c3e851c zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x181a9432 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x19153e35 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7e2449c0 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xadfd7878 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbf7f3d38 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc41825fa flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xcae25ec5 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x03155405 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x6b9e1d11 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x84e7605f bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf53c1eae bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x2261061b bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8b0618ef bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xc5420b42 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x096769bd dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x306f3864 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4721c6a6 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4a41d196 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8ca0f5a6 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa5105251 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa942c57b dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xbac837e9 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfa50f736 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x1d23498a dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x337fc59f cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x34ff5a4a cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4d71453c cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6a1bf85e cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x95e71871 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x54292877 altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0b59841c cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x201bae3a cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x356f812b cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4c41ba35 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x607eb0d0 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x83a56cc3 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbfe91c78 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x979bd4d1 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xebff41c8 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x00aec444 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x424d627b cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x56b90699 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8730f308 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2b64b6d8 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4b7d481a cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x55c1102e cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6d40efee cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd8da14fd cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xec15ac9a cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf4b23c0f cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0b1383dd cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0e7536d1 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x29a07951 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3b178831 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x526901db cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x526d7a47 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5f79822a cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x628fa09c cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x72cd66b7 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8a438826 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8eb1297e cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaab08567 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb065dad4 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbe8b73bd cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc1915dab cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xccd34cfb cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd6a21978 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdcbdff96 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf5c62314 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf703f665 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x03ac4231 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1828e6de ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1c6d3c36 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x219a0466 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4c0fb100 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x66146269 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6e289759 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8660eccc ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x99cb536d ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa6c81529 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb17faa8c ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xba35d9f2 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc75ff045 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcb975666 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xde5bb955 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf739895d ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfef1be57 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x035495d9 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0e7e74c5 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x21aad9f3 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2a638f23 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x35e79fc9 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x39d639ef saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7ce00d69 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xafd05760 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc90e3725 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe7ac296b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xeb00ff02 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf0bd8d17 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x46255d18 ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x2690c193 videocodec_register -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x539e27be videocodec_detach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x67510ded videocodec_attach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x978b6509 videocodec_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x2848e67d soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x410471bc soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x6f82c710 soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x9764f976 soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xaa86d7f2 soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xc83f7233 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf4086295 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x16590821 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5b8c3c13 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xa96a0434 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xadcd7b0b snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb114864e snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0xea6fd6e0 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xf998b20c snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2d39fbb8 lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x305b7ae6 lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa5f71e21 lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb115cd49 lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xbecbcece lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xbfea9280 lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xee9a2864 lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf27f7879 lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/rc-core 0x23dc2fc9 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0xd518adf2 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xe9d38ea3 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x53a406ed fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x7f17c643 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xcb0fb65a fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xdefd093b fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/max2165 0xb06df1ef max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xb59bcf04 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xe744bb35 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0xdf0c0c10 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x661934aa mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xa98acf7c mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x1fb63780 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x14468333 tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x885618d6 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x7a21ff16 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x03a71db4 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x3653af79 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc9bdd0ea cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x246c4398 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x59c85ab5 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8fc5f183 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa3be0572 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa4ead05c dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd8ed1712 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd9564c64 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf38fa620 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf8069bbe dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x24fdbf00 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x61c93b2b usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x78effc77 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7feee2e5 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x9513d38f dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe6d22977 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf0f1a6fa dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x4f121452 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0281dbfe dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x09bcfaea dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x118a44a1 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1b203834 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x23789cb0 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x44029078 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x46381a71 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4b3b3b7d dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x64060415 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd24123bb dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf27fd245 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xf6e8d9ed em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xfb823361 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0a06fc08 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x162af9ca go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2b7e37ed go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x80208fff go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x959912f4 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa9402da6 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xac39cd5f go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd12bdca0 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd1a86616 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x315f5c53 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3f922209 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5f0ba4ca gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6e48b0d3 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7aabc0fd gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x95976363 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa5425b4e gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xdea1bda6 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x5c9e621b tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x6f20e1b8 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x7fdde9c5 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x1c5ac64e ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x379dc784 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x080ac921 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x4c59b663 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x78189700 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x515e9e20 videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x54c0db4e videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x7f1504f3 videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x8c6398e3 videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x9a570c9c videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xad214270 videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x3d426922 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x757e43f5 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x01c78d8a vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x0dab108f vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x1d621594 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x243fb030 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x5bef9480 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x60c92c7b vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x5300d841 vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0d6328cc v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0d828310 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0db5df6d v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ebffc9c v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0fc85481 v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1111e9ab v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13a313ee __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x164b369e v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x187282a3 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x188582a5 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x18abbecc v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1aa66f31 v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1afc1b96 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1da1fc75 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x23010816 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d94758c v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x311d71ef v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31c07050 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x392fb007 v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b814d59 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43643988 video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45cc45a3 v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4f7d7cdc v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50d247ea v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52fa38e0 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59841e0e video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b378097 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5bb506d5 v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5e21f2c0 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60beaf07 v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x63a11e97 v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x679f798f v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x693de07c __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a6e5f4b video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ce19df8 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7313d1f7 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7452c2ea v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7579614d v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75edf3b7 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a7c9e65 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7cf98b6d v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f25fd19 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85c5fcbd __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x88da7dea __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89ef6fa8 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x936d0c02 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9436cc8e v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x94fe7b37 v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa4c6e2c3 v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaa831d4b v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaba8fe6d v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xade89fcb v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe833d43 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbf567355 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc181a504 v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc59660e4 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7cdda68 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc9a3e00b v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb9e2b0a v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd12f560f v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1f46aff v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd328e2bc v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6cfb245 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8ebe529 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee37a2ed v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xefe7126a __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xffbcf54c video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xffca77a4 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/memstick/core/memstick 0x03641862 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x401f0965 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x447d593f memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x55cabdbe memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x76bf8d6e memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x7e8d1afc memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x882f31a6 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x892db96a memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xace61a8b memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd10a13d2 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf11154c2 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf5a2af16 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x03e9f1e3 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x047e6098 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x17621fbf mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x186c993d mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1dcc131c mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1ebeced2 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1f22d2dc mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1ff26c6d mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x22e44896 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2a0b3a7c mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x398500a2 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d635fcf mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3f24379f mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x40fd82cf mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5e4ba8f9 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6ead5a60 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x75147a73 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x79d46460 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x888e68f6 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8ac6b3e4 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8eb4dab5 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x938b9b97 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x93f88873 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x977ab711 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x985252ea mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x988059f8 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e021c0 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc53ca8f5 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe3d1c710 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x00763b72 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x03354ae4 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x120309e6 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1d98f9a8 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1f315ae4 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2091efe5 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x21bc734a mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3ebd281e mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x488f00a5 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x51c4e05a mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x65349002 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x691df5a2 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6cb5d55a mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7057c469 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x725d3ae5 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x73453c1b mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x768fb366 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x80122850 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9b14030e mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa40afe2e mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xac3f99d7 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc1080a03 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcf98933e mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd45f83d6 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe13bba1f mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe3fe6e0c mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf5dbce13 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/mfd/cros_ec 0x11fab0e6 cros_ec_register -EXPORT_SYMBOL drivers/mfd/cros_ec 0x4f8553df cros_ec_suspend -EXPORT_SYMBOL drivers/mfd/cros_ec 0x5c8af493 cros_ec_resume -EXPORT_SYMBOL drivers/mfd/cros_ec 0xe16116af cros_ec_remove -EXPORT_SYMBOL drivers/mfd/dln2 0x4d5982ae dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0x55c8aad5 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xed1ded4f dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x150ff376 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xc8f31ea6 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0168ebe5 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x139a97bc mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x258d2918 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x424bfe3e mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4777afc3 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x585dcb21 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6afbc15a mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb03ddff3 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe948641b mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf65a9f51 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf6f40216 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x4935fdd7 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x61fc1e16 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x255f3106 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x880788b2 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xba3d332b wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xd22265e6 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x279c407f ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x63501826 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x075983d1 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x68a2dcba c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xf20269c4 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/ioc4 0x417bfa21 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0x66b55ef8 ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/mei/mei 0x0b3c2389 __tracepoint_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0xafdfce69 __tracepoint_mei_reg_read -EXPORT_SYMBOL drivers/misc/tifm_core 0x07e30dd9 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x2d040836 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x2efacfde tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x38781904 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x4d580dd5 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x5b8e0003 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x6c901170 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x85510bae tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x8c735c03 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xc8682355 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xe09de813 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xe7bee087 tifm_has_ms_pif -EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xf3cf706b mmc_cleanup_queue -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x091f482e cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x99bffa5b cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9b8c4ed4 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa4333c0d cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xad32cb4f cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbdff43f5 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf86f8bf3 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x05538aad register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x6258f6aa map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x7ff45a61 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd11b1ba4 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x6a5f662d mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xfaee8b96 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x6603e300 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x7c58b455 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0xa961ce6d mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/denali 0xd496b7df denali_remove -EXPORT_SYMBOL drivers/mtd/nand/denali 0xffc1ec5a denali_init -EXPORT_SYMBOL drivers/mtd/nand/nand 0x048bad93 nand_scan_ident -EXPORT_SYMBOL drivers/mtd/nand/nand 0x2080e627 nand_unlock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x71d8db1f nand_lock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8a19e93a nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/nand 0xb3cc491f nand_scan -EXPORT_SYMBOL drivers/mtd/nand/nand 0xbf39173a nand_scan_tail -EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x58001155 nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x7e8c59dc nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xddb1be49 nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x320eff7e nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xe4fab054 nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x1e1c8824 onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xb4f6e71c onenand_default_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xcbccda0c flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xe5b0a2d5 onenand_scan_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2a408ec0 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6d577915 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7fdc276c alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8a058a6c arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x93161a27 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa0ea4685 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa18ee1ca arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc50544d4 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe2e86643 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf8e53df3 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x0719d28b com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd0052f0d com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xe5e8830e com20020_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x09a05c5e ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x18c2c87e ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1f3b40f8 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2482961d ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2dbdb3e4 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x319e59fc __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x797d70fe ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe0241047 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe6f0862d ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfe9305af ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x36adcd95 eip_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x7775d14d __alloc_eip_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x84e9d897 eip_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x97b1929e NS8390p_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x99c03fd7 eip_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xb65b12de eip_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xbb708287 eip_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xcf55767a eip_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xdb3f2cb3 eip_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xdd8f699c eip_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xe54a7e35 eip_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xdef69722 bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xf25ce586 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0c852513 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1424c8b7 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x161224e9 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x211672e8 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x48d609e6 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5611be29 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x87663803 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9375e353 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x99f70c0e cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa1ce2e49 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaea4da75 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb9fe054d dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbf1e3ce0 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc2eb258b t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd23ff93a cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfcdda4cd cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0eed30f8 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x200fa00d cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2ada3742 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31bfcff7 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3273364c cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35770a07 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35d51ca9 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35e9a2d1 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x402313d3 cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x45ebda2f cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57707dfc cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5841fce6 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5937ae70 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6089ff8b cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6bdfec7b cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7bbb63d5 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7d759822 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa566097f cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb5006252 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc1ec57ea cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc91fb542 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcad627da cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcdf86bd5 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcf4d6f82 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd3e6e1f3 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8b20f02 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda41fc20 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe93083b3 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf00760e0 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf8b303be cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb27b60a cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0373d8bd vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1437bdcb vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x16e2c4e9 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x90fe64d4 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb88e77d2 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xddcee763 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x117245d5 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x498861ef be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03c2f60f mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c186d48 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0caa29bd mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1033cbe8 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1dcc549d mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31ed314c mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x428fbfba mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45f166f7 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53d35ae5 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55cbf330 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ab41c7a mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d24af31 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ab51ece mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72401751 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76ba2402 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x824206b6 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89b89b0d mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a40c679 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cee5f5a mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9992500d set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa148a141 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb75deeb8 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb970174b mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfe77fa0 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2a876e7 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc33bd660 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc432706c mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcce0e414 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce67d406 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2d93542 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde276a53 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe178bd76 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe904ea8a mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2d6ef50 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf33f5bd0 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3bfd72d mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe88a99e mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfec29257 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x005de532 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07e6b50b mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08faae68 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a64c0b3 mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10556023 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18ff4e83 mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e0ee850 mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2023d57a mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24030846 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2af60bab mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c76e20f mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3158955a mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b613dbf mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c961d6f mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4624610b mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51cccf40 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x527096ce mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5690d793 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58eae71c mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c3ef216 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63e83ad9 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ad14857 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x929e2597 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa71f20de mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4c0238a mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4844985 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9058406 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdf79016 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8416efb mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd880ad40 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdba5d681 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde337d7e mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7920d4a mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9a042d1 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefdbc365 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf14c5b97 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2b9cc33 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf359236b mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x196a1d31 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3cf430d0 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61c046bb mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbed80b12 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc502a561 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca2495b7 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe46eb95d mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x28fc9f53 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7af54987 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x94172635 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9d0bd555 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf8364c52 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfa32e377 hdlcdrv_register -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x024530d7 irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0f9d81c6 sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x10c2a610 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x15e78832 sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x174286e5 sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x34037e43 sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x652d1805 sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7b47e1b0 irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd240d5c2 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xed10c29e sirdev_raw_read -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x1d13e27e mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x3ad30078 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x3e93bba3 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x4521cac6 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x83ef6215 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0xa6b8b099 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0xcea6423b mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0xd788af3f mii_ethtool_sset -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x2ae268a3 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xb6c43f60 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x13f86b03 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x372be1fc xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xc3907221 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/vitesse 0x6227591e vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x89b40d16 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x8ce5a3b2 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x97b25477 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x0a769c82 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x09816f94 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x28dbaa8d team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x55214d57 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x8d8d8413 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xa23700f2 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xb06e95c9 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xd82c4218 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xff2448ac team_option_inst_set_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x1887c570 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0x4b341289 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xcf34cd22 cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/usb/usbnet 0xff866c1f usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1c697323 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x48807ab0 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4e02a403 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6471056e alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6b06eb5f hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x87986a12 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xba232620 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xbcab5a41 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xdaa73afd hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe8930a96 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xef9a791c hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/z85230 0x0f7971a8 z8530_channel_load -EXPORT_SYMBOL drivers/net/wan/z85230 0x10c78988 z8530_dead_port -EXPORT_SYMBOL drivers/net/wan/z85230 0x1293420b z8530_sync_dma_open -EXPORT_SYMBOL drivers/net/wan/z85230 0x18077ab1 z8530_queue_xmit -EXPORT_SYMBOL drivers/net/wan/z85230 0x305eb5d4 z8530_sync_close -EXPORT_SYMBOL drivers/net/wan/z85230 0x39e260cd z8530_sync_txdma_close -EXPORT_SYMBOL drivers/net/wan/z85230 0x5cd24d29 z8530_hdlc_kilostream -EXPORT_SYMBOL drivers/net/wan/z85230 0x837e75c0 z8530_init -EXPORT_SYMBOL drivers/net/wan/z85230 0x940f7d16 z8530_describe -EXPORT_SYMBOL drivers/net/wan/z85230 0x96101258 z8530_shutdown -EXPORT_SYMBOL drivers/net/wan/z85230 0xb29400de z8530_sync_txdma_open -EXPORT_SYMBOL drivers/net/wan/z85230 0xb80d32d2 z8530_sync_open -EXPORT_SYMBOL drivers/net/wan/z85230 0xb912dd2f z8530_sync -EXPORT_SYMBOL drivers/net/wan/z85230 0xcffb41d4 z8530_sync_dma_close -EXPORT_SYMBOL drivers/net/wan/z85230 0xd4ffebf0 z8530_interrupt -EXPORT_SYMBOL drivers/net/wan/z85230 0xd53c96f4 z8530_null_rx -EXPORT_SYMBOL drivers/net/wan/z85230 0xe3d80064 z8530_hdlc_kilostream_85230 -EXPORT_SYMBOL drivers/net/wan/z85230 0xfa2f2905 z8530_nop -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xa4a974b9 i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/airo 0xac1b925f reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xe570b29c init_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xe7f4e12f stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x02d4c016 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1b9084c4 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2568eca2 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x34c02379 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x45963578 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5c1b5317 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x890c0c6f ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb25ea2b8 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc5bd4446 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd5262061 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe8c3b3c4 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb073c30 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x003353b9 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0b6d60ca ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x101f99ad ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x134c978d ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x74c2c2af ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x785d0fc9 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x813cdda6 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x91b35f04 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa5750968 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb65851ae ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdcc87140 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe3a7f7de ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed66b0c3 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf7d034b2 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfaa97a0f ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0f00b104 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x19b8948a ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x376f846c ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4205bf0f ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x44532abb ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4ee05c0c ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5dc680da ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x649615d5 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8cea3ef8 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa041de0c ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbb943293 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x059956ab ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0c83d089 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1d0f7f97 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2478d5a4 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4fb8b5ad ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5b160dc2 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x612f4da5 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x61e26eb0 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x625522d0 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7e560483 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8ef82f2b ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9905096f ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9ffe2c1b ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa16c1ecd ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa8caed4a ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb9cfff73 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbc6e39ce ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc3766924 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd0d23a2b ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd5aae75f ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe642c4dd ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf0dcdefd ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf7a56c5f ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00017d68 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x008191eb ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00fcb41a ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x021281dc ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0571b8eb ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06bd6c26 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08815cd1 ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08b6f67d ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e5fc4b6 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ee3cf44 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13bab558 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16158aba ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16f7347a ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x173a314a ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19572ff4 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x221f380d ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27925c39 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2839fba9 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31ce1319 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39784613 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a3b69dc ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b2c7832 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d171073 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d592ed7 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d599db9 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x439312b3 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49604485 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4aeb7601 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4cecc421 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x501c4c19 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54b55d45 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56cfdc5b ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a35910b ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c0b3807 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c482d49 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5de4fa1f ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fa416b6 ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c58fe7a ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d8332db ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e028d73 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f80966e ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x701d9623 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7041090a ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x738cc871 ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79c88d8e ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d6a56a6 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x826fbc31 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8678dd00 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87bb0aa9 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a37f0c1 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d108d5a ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d198f96 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90c11c50 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x915a5189 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x933bb8f7 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95d75763 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95f7bf75 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96e6211b ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c04aa94 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c675655 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d5afd7c ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d673f14 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dc1dd22 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dee4195 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9df274af ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e65ffe5 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e665d35 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1186e7f ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa37af883 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6a363f9 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9d65389 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad9a5c8a ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xadbf21af ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb014ed4a ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb11b852c ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1a79a32 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb27cb3bc ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb31bacce ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb61f7513 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7fcbe6f ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9a65fc1 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc5904ab ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf096bb3 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2714444 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9d3de95 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcadd0712 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcceb2791 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcef0e789 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf1c6ce7 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0394a4a ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6c46081 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8dd3004 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde529099 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdeedb9ba ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf250c22 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf6b99ba ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0620260 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1332e2b ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3115780 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe712ddb2 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0b10c0f ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1be3c9f ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf64d22c3 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff18d45b ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffe47973 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/atmel 0x3301a22b stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xa92c5d08 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel 0xd7836feb init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1f063340 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2aa672a3 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3a5c9f92 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x74502128 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x74fe97e6 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x84fef047 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x85d5fe8c brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa1a80809 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa52dd1f6 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb0972635 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xcddc511d brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xf36a7741 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xfe10c788 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0011fa9a hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x05dcbe8a hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0a1e02cd hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1a85fd3b hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x278c58b6 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3649a2ff hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3b4a9a72 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4e01505d hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x51b9e2d4 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6eedb00e hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7968d57b hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7a243120 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x80fc4256 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8696807e hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x891be1f5 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9df89cc7 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa8a7962d hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb7733e33 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbc1a0f6c hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd42e20a3 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd72f323d hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd7e92369 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd8c26ab5 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdb384479 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdb64038b hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x06ab64d6 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x07617b7a libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x098b81bc libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0cba000f libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0dd93a88 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2233a3ed libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2b6a0efb libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x32771e91 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5ccbfcbe libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x62e50d14 libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7959e37b libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x83b72784 free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x95803835 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x97cd798e alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x986daa17 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9ce2d2ca libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa79cad3b libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa8b5ff77 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc7abf43b libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd3647d44 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe0975c23 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x00410815 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x01c85611 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0710b3b9 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0df1d4cc il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x12c56821 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x12ca0a62 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x12f13d1d il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x139c45c5 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1bab1e0c il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1e8939fe il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2242972f il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22c72ec6 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x24d9a770 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x24ddd60b il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x25d2c25d il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x282311b2 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2920887e il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2948d33a il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x29d1bb0b il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2acd89c2 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2cb671f4 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2f763611 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2faecf92 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x341760d0 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x35fab9a4 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a3930a6 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3dd2e8ca il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x44119853 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x462edd36 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x48650f36 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4939eb0b il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4ac05b51 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4fc3620c il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x56fa55a6 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x57c635e1 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x59609385 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5da3ed44 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5ed1f795 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x614514d5 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x62597c81 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6272391c il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6290ccd7 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x63f9e988 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6867373d il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x730d14dc _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x75ed8d3f il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x78928526 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7a071879 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7bfe5d20 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7d16fe9a il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7d367cd2 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7e08063c il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x83449ed5 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x834ea043 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84b8856d il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x866417e6 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8a0844d3 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8bda812f il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8dbb5878 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8e60fdcc il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x930233d1 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x974b8eac il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x97e60744 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x99d472ca il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9bf29856 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c2cbd47 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c3f440c il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9e40e3ad il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9f0a0a01 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa0e7a0ad il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa1411683 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa2159774 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa25da20f il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3d66ce1 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa958478b il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb1b97c32 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb2fdbeb9 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb4ea6e31 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb6b6bcdd il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba6109ec il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbbf77b5d il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbfef0682 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc0079077 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc1c5ff76 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc631a462 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc51aa38 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcd0cc839 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd6280201 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdc2ec5f9 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xddf3717f il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe12d8e6d il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe18bfe9c il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe8299f57 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe8660aab il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xecfab3bf il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf600d0f4 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf98b1ff7 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfcfd8282 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x08c6664d __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x4379786d __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x95a8ab3c __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xa2b6ec39 __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xb69add1f __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xcd60e86e __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xd4f50457 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x02cf7fcf hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1d24bc74 orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x21c5f5e2 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3b8c7d78 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3edf63ea orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x47ef6983 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x68c9a1da orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6ef59f02 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7705ec08 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7e26396e alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa3e5591b orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc9b72e9f orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xcf2ec716 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe16d08e0 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf9daf631 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfd8579dd orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffeaf196 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xc430ec86 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x06006cc7 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x085d83f9 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x160e732b _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x206a175d rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x215d6391 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x22ce8a81 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x269fcb0b rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2c9a6e6d rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x32efb503 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4200a1be _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4669782e _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x527fee17 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b3c2c46 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ea3f1c5 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6e60ad97 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7d44b58f rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8adc038b rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9808aef1 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9936deb8 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9e8970f6 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa31aef75 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa3456b5f _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa38b4a49 _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa8a9a570 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xac1699a9 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf5d68e7 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb710fdb8 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb8dc6ccc _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbdb54b12 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc147a656 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc74e7606 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcd45e7ff _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcd5e567c rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xceee0c64 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd325b395 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7427cf2 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdbc1ca56 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xddcef2da rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xde649529 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdfc3a138 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe7f66921 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x2770b95b rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x754ac363 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xaa3dedca rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xf171427d rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1693513a rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x7596c22c rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x77f99ec5 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8d7f80a5 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x06f9c3e6 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c7202ee rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ec42d38 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24173711 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2efd5f2f rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37304399 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a71d135 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d927ea0 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4ff838dc rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x51bdc99f rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x51da1899 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6d7f8901 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7b5c5ea0 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x98db1f96 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x99c13c9e rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9cc38c0d efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafc04518 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0dacb94 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb505226d rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6ead96e rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc4cc3bf0 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd5eb38f rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdbcf9354 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc0caa99 rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdceabbf9 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7da329f rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0477f51 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf532b2f3 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x063be548 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x9bba2f4f wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd07dc0b2 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xfa12a40d wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x5cde949f fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x75a551b2 fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x945a3a48 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x18504640 microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xaf24eac3 microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x49a6f0a0 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x77eb3fb3 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xa6814609 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xbfdaf2f3 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xd94d8e44 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x02783acc s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x29177e68 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf069118f s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x22179177 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2720e44d ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x673a718b ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x78f65d5d ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbc98ad07 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbeed06c4 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc9245847 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe84c7727 st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf5210e0e st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfa03af02 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfdfea0c3 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x038a91e9 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1a6e2f34 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2b859a08 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x31bea9f3 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4ed6ac16 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5026ecd7 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x70e17e28 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x753fe37b st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8dbeb735 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa628700a st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa9c8e00b st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbc8a28a7 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc0664185 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc3b93bed st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xca4fffc5 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd5f22798 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xedd65c75 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf77e549f st21nfca_hci_se_io -EXPORT_SYMBOL drivers/ntb/ntb 0x4c83055a ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x6a0ce429 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x7f1b480e ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x9b9ca226 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xa36ab724 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xb2631d8c ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xe796f816 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xf76e23ae ntb_unregister_client -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x1b629aa3 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x9e182b71 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x38a8da9d devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x005a1053 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x018f3e3c parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x10916465 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x10fc3fa6 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x141c6737 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x2d11d37d parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x466da342 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x46749d5f parport_release -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5327aab9 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x5a23cae0 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5ff687d4 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x65fe9fdb parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x68172d5f parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x7c138fbb parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x89fc152e parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x8ad35b37 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xa283ce54 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xa5c8809a parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xa7896a07 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xa8326cb3 parport_write -EXPORT_SYMBOL drivers/parport/parport 0xbedc6e9c parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xc3742d14 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xc7636001 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0xca2aa5f0 parport_read -EXPORT_SYMBOL drivers/parport/parport 0xcdd4fbc6 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xd47f4b56 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xd4d7ea50 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xd57106ae parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xec46e76a parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xedda5e1a parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xfb2a4e69 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xfd2b5af9 parport_claim -EXPORT_SYMBOL drivers/parport/parport_pc 0x01b6ee01 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x1dfdec1a parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x05541e1a pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x06154728 pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x19c404b6 pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1f673964 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x45be717c pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x50bf4765 pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x527f7917 pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6a8227dc pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x774c9e5c pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x85c942ba pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8a340d9f __pcmcia_request_exclusive_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8dc707a1 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x922b9955 pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x97f9faa8 pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa34180ab pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa44a06c1 pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc022929e pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc6e728a1 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf2601434 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x02978a4a pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0c6663e8 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x26f64fae pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2c21c8f3 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x307b8258 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x34addaf9 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7a30b5e4 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb84d9fa0 pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbe0fe7fb pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe1288319 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe2bc9343 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x64183bd6 pccard_nonstatic_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x7e9d3766 pccard_static_ops -EXPORT_SYMBOL drivers/platform/x86/intel_ips 0xf97d7d0e i915_bpo_enabled -EXPORT_SYMBOL drivers/platform/x86/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command -EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command -EXPORT_SYMBOL drivers/pps/pps_core 0x9c09c4a9 pps_lookup_dev -EXPORT_SYMBOL drivers/pps/pps_core 0xb27f4be4 pps_unregister_source -EXPORT_SYMBOL drivers/pps/pps_core 0xb4c966cb pps_register_source -EXPORT_SYMBOL drivers/pps/pps_core 0xf47b9d3d pps_event -EXPORT_SYMBOL drivers/ptp/ptp 0x19d1a4ae ptp_clock_event -EXPORT_SYMBOL drivers/ptp/ptp 0xbb05b5e3 ptp_clock_unregister -EXPORT_SYMBOL drivers/ptp/ptp 0xc703987f ptp_clock_register -EXPORT_SYMBOL drivers/ptp/ptp 0xc70e81cf ptp_clock_index -EXPORT_SYMBOL drivers/ptp/ptp 0xd79e9d37 ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x11e0040a pch_set_station_address -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x12f4e60f pch_ch_event_write -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x1d9108e6 pch_src_uuid_hi_read -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x2bb7a402 pch_ch_event_read -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x433584fb pch_rx_snap_read -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x732f45b1 pch_ch_control_write -EXPORT_SYMBOL drivers/ptp/ptp_pch 0x9f124ed3 pch_ch_control_read -EXPORT_SYMBOL drivers/ptp/ptp_pch 0xa15508cb pch_src_uuid_lo_read -EXPORT_SYMBOL drivers/ptp/ptp_pch 0xce696282 pch_tx_snap_read -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0b78a2e4 rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x10ff8804 rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x368d72d5 rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4f5b3bc1 rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x84534752 rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x8a625303 rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb24c0c73 rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf266fc95 rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf4e8e0ad rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xff62dff7 rproc_alloc -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xfd02a01a ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr -EXPORT_SYMBOL drivers/scsi/53c700 0x44d0daa6 NCR_700_detect -EXPORT_SYMBOL drivers/scsi/53c700 0xe3e879d2 NCR_700_release -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x2afa5815 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x868b3606 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xabf2c77b scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xded3386f scsi_esp_register -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x084c7270 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x297cd86f fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2e740508 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4c42cd99 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6a8243b3 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6be315a3 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7a393b66 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x813fc895 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8c729ecb fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xac381779 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xac86906a fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf5b57e51 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0879f01c fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c77d089 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c9ed383 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0fc0ae77 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1219d76d fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1370172c fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18359ff2 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x19e92260 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1cc8cf03 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2471b92f fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x281ac850 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a706953 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x300f04c1 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x385f6d4d fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3c4e37f2 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a649926 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x57d89f37 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6261b1b0 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65a0560d fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ae3313 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69f23838 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aac9ed2 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d9da737 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d92a953 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7df0013b fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x81daec00 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x850d8b1d fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e45a459 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f100743 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x960f5b13 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98a67f9d fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaac78ebb fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xac762e66 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb051d8a3 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb318db48 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4fe5a30 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9fb1119 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbdd46b5f fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc07fbe6c fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc374a505 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc8c06681 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0ac37d6 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe225c230 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe31010c0 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfccb788b fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd40a570 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfec43507 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4f708a68 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6ad2413d sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x74fd87b6 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xe8bfede1 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2d0ad7d mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00bb5969 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x03c46d56 osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x113d7c49 osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x14044a8c osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x14b80b9c osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x155a56f9 osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1f5ed4b8 osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2501000a osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x297955e3 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2b026215 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2fa03613 osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3016a2ea osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x45669193 osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x49792f35 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x58232227 osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x58c29b04 osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5be02d74 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5d979d2f osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x65664b99 osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6d7dd2bf osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x765594cd osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x84970340 osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa68b17b9 osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa791216c osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb70aa2fe osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb94c3201 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc4bb519b osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc7f0356e osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd36fbf38 osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe01b91b4 osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe9626337 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeeaaa3e5 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf06e9ab9 osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf6d323b7 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf9726a07 osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfff3d428 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x682abce4 osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0x72ace220 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0xcb61d4d3 osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0xd0afdc03 osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0xda531afa osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xf015fd6b osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x30475eca qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x53208a87 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x601bdbd2 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7d320c5e qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x863b2b0d qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x87202d7b qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9d59f721 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xaea536ef qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcc42ef1a qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd19bfa1b qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf0605cb0 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf9a23ae4 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1802dcce qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1ae43e35 qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x2587883b qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3cac5951 qlogicfas408_bus_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xdc3fad6f qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf790e4de qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/raid_class 0x489cd2da raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0x4d9b6291 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xc4ad8966 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x03e78870 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x05970db3 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x265f2778 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x482c6235 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x60c0406b fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x675942ba fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaae6aa4c fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xab3da28c fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc11f6578 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc4bdb8a2 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd1c4e2f2 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe61a32ca fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe97bfefd scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0a519819 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x152a1a1a sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x163c416e sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1c66e1e7 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x28afe514 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3d501bc7 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4891eb9f sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x49e50511 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4d786f41 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a16de65 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5c52d54f sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6c01de23 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x76c97483 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fda09b2 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x86a44e38 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x872da3ed sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x95e8d275 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcde1ba14 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcf72128a sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd8c41f37 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdbea998f scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdf64b484 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe1072b63 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe2d32210 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf7244b52 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf9bce323 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfb5e54e5 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfce968a2 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x608541ae spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7eb1dd14 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9e9560ea spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb3f8b3fc spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe4a772d8 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6ecc18c8 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x96b962c2 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb826f393 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xdcf1a105 srp_rport_put -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2ca37d7f ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x3df5d1ce ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7da36cb8 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xabc274dd ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xae9323df ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xcf65420a ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf071e500 ufshcd_alloc_host -EXPORT_SYMBOL drivers/ssb/ssb 0x03344fd6 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x0ae6eb24 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x0cd75d2d ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x1f8ffcee ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x362d70ee ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x3beb3368 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x43b55696 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x4db3b532 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x54638aab ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x585ea514 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x7287ce91 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x7f3b2afd ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x85356885 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x8643b293 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x8b0320c9 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x8df78b8b ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x9a7753c1 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xaa902341 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xcf4881f6 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe1069f3e ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x02ac9487 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0311ded9 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x07fe2f7b fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x094844c3 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0e209fa3 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x137c2c10 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x187f0bf8 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x195d6ea6 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1ef0c917 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x29dfb41a fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2cc4ca66 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3316fc03 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4933045b fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5b46bb9e fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7bcb0afb fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa3b8186e fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xab8655a2 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb055ceec fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc55fc167 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd02e9c85 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeb09695f fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xee1f8713 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf529c5e2 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf8745ec7 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x63d00716 fwtty_port_put -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xab929228 fwtty_port_get -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x1561bb94 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x175eea42 hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x68948cf2 hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x6a532fc8 hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xe24e7de4 hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x8fd3d23c ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xc719e356 ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x98c10592 cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x953f8076 most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x02991a20 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x035876c3 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x09d0f704 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x10b536b0 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x197ae133 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b01bcaf rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b136afd free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2b26298b rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3389ff20 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x34ab1e04 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3c75d7b0 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f2e2287 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x430f7fc1 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4518ba90 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56333709 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5a7dcfcb rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x633f1087 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b6d2acb rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6ce2ca33 Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x72cedf22 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x738c36b1 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x831d1024 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x85cf2807 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x878c8353 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8fa9fd98 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94cf0933 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x95c65225 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x969d2b52 rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x97360e80 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x98791041 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9fc4ae31 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa087c140 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa54e044d rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaaf1da33 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xabe2eaa7 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb57d22f8 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb8183258 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb85862a9 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4f4d213 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc7faeaa4 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc8a23347 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd3313d8c rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd6d8df73 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd9d43c18 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xee78b3b8 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef1239a2 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xefc224ad rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf86c63f8 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb22e297 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc3262ce rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0277925c SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x046c8467 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0cb817ee ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ef07710 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0fd288b6 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x145958f3 Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ddd1e3a ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22d7770f ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x239ed8af ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c5afc45 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3950ca72 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x396803c5 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3f937359 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x417dd285 ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47fb9836 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a7bdaee ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d15e03e ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x738b666c ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x742b7551 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74821469 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7bf33e7f ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x815c5141 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x820caa46 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87497bad DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88b96b48 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94b4c0be ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x98c95b45 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b76c97a ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ca1bfc4 Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4943094 IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa642fff1 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8d72fc2 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xabbf8118 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1752619 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5e64750 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8f115c6 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbd69b44a ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0370789 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6571c98 ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcaad463b ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd3713b7 Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcebee80b ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcfde745d ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd0a43ab4 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4c633d2 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd572d45b ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe2eaa08e ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3f70d9b notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xea94a406 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb53a015 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee616adc ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb204da4 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff50119e DOT11D_ScanComplete -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0362c90b iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x097dcae4 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x19d707eb iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x273b3289 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40b7e633 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4844a639 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4a198a4c iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4a9aceb1 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a6f311a iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e5cd777 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6eea4cb3 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7aff1772 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86113dd2 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ee04288 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x913d3989 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x966fb58f iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa88f1350 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba4f6e5c iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbdb7c31d iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbfb148e3 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc39ea4f7 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc6db0932 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcc712a74 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd9cd8742 iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdbd97e9b iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe01aa680 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea050631 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf5db71a8 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0e3b93d1 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x162ccf10 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x2297dd9f transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x240025e5 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x24421bab target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x258a515b core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x280519de passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x2858481e transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x32d7c126 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x330c51e1 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x37423809 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x3977cb27 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x3980be3b transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x3e5a7832 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x3f23f21e target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x40350ec4 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x41da567f target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x4385a04a transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x45cabd11 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x46038878 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x487d7995 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x496fecf3 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a3938d4 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x500d627e sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x5380f07c transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0x6309e225 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x663cdc2f transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x698ee35e target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x69bc73c6 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x721e72d9 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x75574bbb target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a125986 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a8bb167 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x821fcb42 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x85830cce target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x8a5ccc89 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b07b557 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x8f66c5c0 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x9202ecf1 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x92bbe2b4 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x97e3371a sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x9cfbab57 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x9f82b28b target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0xa00faa96 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xa5363cfc transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xaab0414e target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xb7c0a51f transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xb91997d5 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xbad544eb transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xbd0a155f core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xc0d814fc target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xcaaa72a6 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xd23b8ab3 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xd2e4891c target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd620febb target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xd64d8232 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc847c04 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xde99c613 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xe01fc74f target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe10420cb transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe2f1d5c8 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xe5947fe1 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe60a1522 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xebbb6701 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xed7fecee spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf060ba93 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xfb0d7456 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xfdd1ad20 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xff153b0c target_submit_cmd -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x5007fc2c acpi_parse_art -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove -EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0xdf707fab acpi_parse_trt -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x2bd60753 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x2ca3063f usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x03d01ac6 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1552e617 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x156c8511 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1de66e61 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x263baa3c usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x36078a13 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3b9b7b45 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x86523d76 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x885f7085 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9bbc94cd usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb16de2d0 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe9ac7eff usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xec2dd7de usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x60795f84 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xd2efe46c usb_serial_resume -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0xb9ace0c2 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xc73d68ab lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xd4cfae9c devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xf358336d devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1b557a3b svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1c488403 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x39f2f407 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4b3c27ec svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5a417c2f svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x67ff881f svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc27c2e20 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x6d2b693c sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xd60987e7 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xf1402b09 sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x1d3b5c3a cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x35258781 mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x04dc35c7 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x08a6aabd matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x70b041f1 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x46fa6651 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x9470f370 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x988f5564 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xab0da29c DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x58576061 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xbbc176ef matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7592393d matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd84358ec matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xead8f80b matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf0c96714 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x1e42dc60 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x93cb4ec5 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1e525a1f matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6db37a36 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x90248474 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x93ec6b59 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xfe15f848 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xb4d7c3df mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6028f22d w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6331920f w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xe0734b84 w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xe48ad25b w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x2c9bff10 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x60fdbf9b w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x4038bdcc w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xa45e3a68 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x090cca91 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x26ed4f8e w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x2c7ce44c w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x9bcd2a3c w1_register_family -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xb5f20875 iTCO_vendor_pre_keepalive -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc4f657bf iTCO_vendor_pre_stop -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xdc6effc9 iTCO_vendor_pre_start -EXPORT_SYMBOL fs/configfs/configfs 0x0dc2d7b3 configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0x0ea6978f config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0x1e9649e6 configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x376b0680 configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x55aea2c3 configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0x61580ac5 config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x63fb31c8 config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0x6f15a494 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x8b016b91 configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0x8c85e46a configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0x9399309b config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0xcd70269a config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xd47047b0 config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0xd9f2c959 configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0xe5486ca4 config_item_get -EXPORT_SYMBOL fs/exofs/libore 0x09a4430f ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0x1809a52c extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x21de8fc2 ore_remove -EXPORT_SYMBOL fs/exofs/libore 0x27bab962 ore_write -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x38e576dc ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0x3c5775dc ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0x426ce200 ore_read -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x5684103f ore_create -EXPORT_SYMBOL fs/exofs/libore 0x676d84f7 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0x7fd95b47 ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/fscache/fscache 0x110c151d fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x13654763 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x1602d95a __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x193b903d fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x1a5910f4 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x2ecf8a14 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x321c70dc __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x3558c035 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x384234c7 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x3debd539 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x49744247 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x4cc99045 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x4ed92f7f __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x54312108 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x59944b1c __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x5cbff141 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x6da8373b fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x790fe3e9 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x79eca732 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x7b4a0f65 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x7b57ca03 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x7f318340 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x96671372 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x97b64bb2 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x9987cc0a __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0xa1f07b91 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xa41ce70c __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xa7802a11 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xa8941efb __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xb9296118 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xc326a8ec __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xccef7e24 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xd0be335c fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xd2feff9a __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xda331f9e fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xe70434ea fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xebeed94b __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xecb30021 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0xf0ae3435 fscache_mark_pages_cached -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x29b34d11 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x38b3e8e7 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x53f160e1 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x7b684d8b qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x981e2eb1 qtree_delete_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t -EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create -EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put -EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed -EXPORT_SYMBOL lib/lru_cache 0x98878622 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xb0adb4a6 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set -EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get -EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del -EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of -EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find -EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x52a793d3 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x65eec8aa lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0x8fffb4e0 lowpan_nhc_del -EXPORT_SYMBOL net/802/p8022 0x23679a16 register_8022_client -EXPORT_SYMBOL net/802/p8022 0xa3889aff unregister_8022_client -EXPORT_SYMBOL net/802/p8023 0x1ffebc73 make_8023_client -EXPORT_SYMBOL net/802/p8023 0x8fae84bf destroy_8023_client -EXPORT_SYMBOL net/802/psnap 0x07f7c839 unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0xa0822601 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x02309c3a p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x0e609607 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x11c3fe90 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x19468218 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x19f78472 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x1ba3840f p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x1db7a816 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x21ec674c p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x279744c3 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x2b441693 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x2bc09c5e p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x3117ffa1 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x32c79e0a p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x341fad50 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x34379c91 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x373946d8 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x39094801 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x4a5e94e6 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x4bd189ce p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x5a1db2ff p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x5e080f86 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6a1b5045 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6cb375ea p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x736f8ef2 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x78e01a0d p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x830af003 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x93a9418d v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x9426c7ee v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x96338705 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x96524b03 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x98102047 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xa5150f0b p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xaa9245ae p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0xb488f2ce p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xb7bf0149 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xbc28869e v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xbeabbed4 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xc196154f p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xc5d60c30 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xe08dcc22 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xf24e2230 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/appletalk/appletalk 0x1d24a7d6 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x7a5e52d8 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0x8d8bab61 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xda60df5f alloc_ltalkdev -EXPORT_SYMBOL net/atm/atm 0x099ebcc7 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x1a5556a6 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x3c476835 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x8b0f8608 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x8c6313fe atm_charge -EXPORT_SYMBOL net/atm/atm 0x8ddbfc86 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa7f3c58a deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb2aae3dd atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xbbcf95bf atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0xc909564c atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0xcfd779d5 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xd7ce2bd1 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0xdefbab25 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xe466fcc9 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x137b25cb ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x1477bf03 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x23bc001f ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x715ede49 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x78290916 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x81d5f59f ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xcb29c643 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xd31dfa22 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0476ceb6 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x10facbcd hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1304d644 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1ed2a076 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d3b3428 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3375e6a8 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3fce92ac bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4368cae7 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e4071f2 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e86d708 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f95e2e2 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5772e0c6 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5fa54641 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6276df8c hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x66091a4d hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x67b90da0 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x725fc06e hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x777885d3 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7996b1ec bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7bbd30e4 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7c424557 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x811f2e70 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8209cce4 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x83de5999 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f441320 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa0f4b125 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa6c81db3 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa7564537 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa83391e9 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0188b8d bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb37dadbd bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbc24b122 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcccf3ff7 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcfb9b080 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd050d8f0 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd189a9a4 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd3eabe99 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdeccf220 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0xec6cf8a4 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf4dba71c bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfa62de08 bt_accept_unlink -EXPORT_SYMBOL net/bridge/bridge 0x33bd650a br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x62a9dc1a ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9478ede6 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd84c67cc ebt_register_table -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x22e646e9 caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x4e31ee72 get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x5ee3fb7f cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x909931ce caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xad9f0635 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/can/can 0x022489fb can_proto_register -EXPORT_SYMBOL net/can/can 0x1a017870 can_send -EXPORT_SYMBOL net/can/can 0x2185ba5c can_rx_register -EXPORT_SYMBOL net/can/can 0x78d178c0 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x8c282324 can_proto_unregister -EXPORT_SYMBOL net/can/can 0xbad5ba93 can_ioctl -EXPORT_SYMBOL net/ceph/libceph 0x01557c65 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x02f703b2 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0c98f696 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x152ed9bc ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x19539a25 ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0x1a0e6118 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x1e4360da ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x241d01d1 ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0x259779b8 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x25e9f8b7 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x26282448 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x28d69360 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x2a26d9ee osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x30a7fc2b ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3cac2f95 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x3e3c8ad1 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x3e938725 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x3f81b30f ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x3f9be401 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x3fdc5117 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x4278804e ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x43cd5ead ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x44ef223f osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x4601ede6 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x4881b083 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0x4c91bfff ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x56808d17 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5c06bc37 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x5e81462a ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x66714a37 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x681a87f8 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x69c130bc ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x7168b552 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0x724943a5 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x7a25440e ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0x7b3d3851 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x7d12785f __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x81b75b77 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x83a30798 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x84b28927 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x879ab4d6 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x8957eae5 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x8b4bfe4f ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x8be305c5 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x909a8c07 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x914f1ace ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x9719fd25 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0x9945d1e5 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9c994ea7 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xa641475a osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0xaa1c9958 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xaa5b707d ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xb6fa58e4 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0xb7d08461 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xbb75a8ce ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xc0a4aa50 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xc43f8543 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc668fb4a ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc99a1155 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xc9a94976 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xca42e8c0 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xcbaad058 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0xccb6dee2 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0xd1c58e2c ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0xd20afc7a osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0xd231026f ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0xd2b746f7 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xd6d3cc52 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xd8406fa5 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xdd9eb32e ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0xe2d9fec5 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xe2e7b77d ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xe414a9e6 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xe4eb526a ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xe4fa63b6 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0xe52e8b7c ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0xe945f4e4 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xea3d06a1 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0xeab669a0 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xeefbb9db ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0xfee869b9 ceph_client_id -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x2a1d142a dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x49e640a2 dccp_syn_ack_timeout -EXPORT_SYMBOL net/ieee802154/ieee802154 0x06877ef5 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x2a6e8dec wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x53d235a5 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x7899850c wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xae938453 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc3187bf7 wpan_phy_unregister -EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xa1569369 fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xccca8d0d gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x23d22531 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3e24fa22 ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x462dca21 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6e2b1b49 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9815f385 ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe1f3bbdc ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x49a49334 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa0c82f5e arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xbef92194 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5fd1266b ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x95b057a4 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd76f3853 ipt_do_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x1fc5c422 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0x4605eeef xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x535da5f7 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb815ca95 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdb1279cd ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe324b541 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe6f922e5 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x62cb648b ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x698f2b4f ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb98ce3c8 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x4d9d56b7 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xee7234cc xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x00789199 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x03d198f7 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0a04f034 ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x20f7e015 ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5c47ff64 ircomm_data_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6d3c80d4 ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x74f49493 ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8a1faeed ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8ec4fae0 ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb3cba3d8 ircomm_close -EXPORT_SYMBOL net/irda/irda 0x045e88f7 iriap_close -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x0963c24b irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0x09939c11 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0x12443524 irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0x1ddad5e9 irlap_close -EXPORT_SYMBOL net/irda/irda 0x1e6e39c8 alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object -EXPORT_SYMBOL net/irda/irda 0x27add674 irttp_data_request -EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x3033cd50 irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x37f9d91b irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x38b0e131 irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0x3d128807 async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46b00fdf irias_insert_object -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x5ab74da4 async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0x612baf9c irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0x639a403d irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x6725964d irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0x67ab1032 irttp_dup -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x70a3f20f hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0x7508d714 iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7c1504a5 irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x84289719 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0x885969b7 irda_notify_init -EXPORT_SYMBOL net/irda/irda 0x8868222e irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x98a8b3b4 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert -EXPORT_SYMBOL net/irda/irda 0xa4bf4866 iriap_open -EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xc40de448 irlap_open -EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma -EXPORT_SYMBOL net/irda/irda 0xdad6bf65 irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0xdc0196c2 hashbin_remove -EXPORT_SYMBOL net/irda/irda 0xddfdca1d irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe1ba6308 irias_new_object -EXPORT_SYMBOL net/irda/irda 0xe329462a hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0xeb78333e hashbin_remove_this -EXPORT_SYMBOL net/irda/irda 0xec242b93 hashbin_new -EXPORT_SYMBOL net/irda/irda 0xeccee2b0 irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf34b452b irttp_close_tsap -EXPORT_SYMBOL net/l2tp/l2tp_core 0xc2a8c05e l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x704216d5 l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x2d817d68 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x420e564b lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x543188d1 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x59f2db53 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x9276a882 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xbdbcc411 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xc2434858 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xea04df31 lapb_data_request -EXPORT_SYMBOL net/llc/llc 0x0d3a198a llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x191d0e1a llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x2a59eab4 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0xab3e87c0 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0xc1aa4fb8 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xca5bef8e llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xf04274b8 llc_sap_find -EXPORT_SYMBOL net/mac80211/mac80211 0x01d92d9f ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x063d6582 ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0x06eca063 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x07d26bd0 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x07d79190 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x099fc62f ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x0df00aaa ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x0f49b26f ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x10fd30ce ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x1e364f75 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x1e8db92d ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x21ea4cf3 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x22761cde ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x23d94156 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x24300d33 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x260175ac ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x28edd7ad ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x2ca3fee3 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x2d0e9ebf ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x2d3e6f37 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x301075fb ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x35e0672c ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x37aa44d5 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x3b857d7b ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x47b2c73c ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x48782806 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x4cf25452 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x565cbcec ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x5791c356 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x5a6c7af1 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x6171948c ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x6380d513 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x650f30fb ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x679444b4 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x6bf0d77b __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x6e4095a1 ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x6e678800 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x70de7bec ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x749fa993 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x75c8afc6 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x76dc2c00 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x78190d2c ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x7cd5d268 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x7cdad410 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x8284a527 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x8583c882 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x86a30f22 rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0x8812eb03 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x89bb5d85 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x8e250269 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x927d2d18 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x93644949 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x9a04b1ea ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xa0cdd5e4 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xa1609daa ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0xa2839ae4 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xab6e7eb0 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0xaebca47f ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xb1c560e1 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xb3fe5593 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xb90e26de ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xc02d6128 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xc11ed429 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xc4e6c734 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xc6e382a9 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xc75b69d5 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xca472df1 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xd0a56915 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xd3f31f14 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xd4768410 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xe0a39351 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xe17e8291 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xe2b63bcb ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xe3c90f3f ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xe759d272 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0xe8961aca __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xedacf656 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xf01d9f73 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xf6035ae7 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0xf68b74be ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xfb260758 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xfe4ec9eb ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x00b39cc3 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x5507578a ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x83684422 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x8a9be67d ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x9f6e94d1 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xb200f5cc ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xbc303647 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xc7b774c5 ieee802154_wake_queue -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x09da788b ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x39038fdc register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x59d29581 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5ac54c1a ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6a1fd86f ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x98ad62cd ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa0682f36 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb2d5debb ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb6c135ba register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc006a4f4 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc3e5e415 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd6eeb735 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf1e95525 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfdb057f5 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x243da70f __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x56e6da59 nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6c1b112b __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x029dabe1 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0x150d6e08 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x1ac768c6 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x97614347 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xc2676874 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xf12175f4 nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/x_tables 0x198ba23e xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x5fa3da68 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x6afc6726 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x8ed971c0 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xadf8b887 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xb740d01d xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0xc62aa169 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xd5354efa xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xdb5b4b61 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xefcbe023 xt_register_match -EXPORT_SYMBOL net/nfc/hci/hci 0x0ce8e41c nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x23b8ae8a nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x328dffd7 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x36ed016c nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x493d9eea nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x5bf82406 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x5f04a0d8 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x7622cfcc nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x771ac460 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xa84c73d9 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xc2a2860e nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xc3ba5842 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xcb358a6a nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xceac15cf nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xcf88be63 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0xd84de3ee nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0xde65c293 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0xe5697b54 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xe7aef083 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xf7eb45e9 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xfa2290b1 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x0afeba66 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x0c7382ef nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x0e8cf572 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x1441de7a nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x2b205d55 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x383d7f73 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x3a1cec1e nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x3a41f6fd nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x3f607959 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x446b7429 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x482c7d35 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x4c3409d1 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x5e7afe8b nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x5ee00955 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x7bb095d8 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x89bed6f6 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x8b73b7b9 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0xa5dc8ec3 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xa695b2dc nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0xa8e0cca2 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xac2de6a5 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xb3ff74c1 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbedf8ca4 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0xc03d877d nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xcb8e6103 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xd80f627e nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0xf677f6dd nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xfef3dcc1 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nfc 0x07d03342 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x09e8a0e4 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x124ede7a nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x145a30ba nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x224a4d6c __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x28c57c00 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x3bc23f78 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x4415c8cf nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x47851434 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x4a6d68ef nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x51414276 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x533255b7 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x5e24394c nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x67ace31e nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x8311125f nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x8cc75a3d nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x9aacbb21 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xb2fde5dd nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xbfe1dca8 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xdca30d9e nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xe7cb8a43 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xec53cd14 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xf2485404 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xf30dc659 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc_digital 0x17ae4567 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x55686be9 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xdbc1abed nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xf6119817 nfc_digital_register_device -EXPORT_SYMBOL net/phonet/phonet 0x0ee135c2 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x151a4722 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x27020935 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x2d60254a phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x389f032f pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x543fa752 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0xb3c77842 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xd8858ed7 phonet_proto_register -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x105de38a rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x121eadc3 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2d8605f6 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x50542a90 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5c03e2d5 rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x768838d5 rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x812f79f9 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9082d3b9 rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xac9fe374 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xcd3746da rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd3486f7c rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe3fbc145 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe8ea632f rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf3dc844c rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xff8a0402 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/sctp/sctp 0x87a109e9 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x3ff76a3d gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7d2a568e gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb186eab7 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x2af42612 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x68d8a823 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe34db2eb svc_pool_stats_open -EXPORT_SYMBOL net/wimax/wimax 0x4cb60cd6 wimax_reset -EXPORT_SYMBOL net/wimax/wimax 0xe4f73eee wimax_rfkill -EXPORT_SYMBOL net/wireless/cfg80211 0x056e7a19 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0cf117fd cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x0d678671 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0x0dbefd77 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x0fb5ce0f cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x118326f4 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x118bd24e ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x16b03bd0 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x178ecc00 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x1d77c20f cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x1dee7c79 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x254407bf cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x28b4d64e cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x28e70c95 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x29a9ce10 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x2b0f639f cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2e01ac90 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x2e2b4f73 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x2f5a32ed cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x313792ad cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x31e37c41 cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x3785c893 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x389f4af1 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x3a4af8e0 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x3f97bca7 cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x40a972fc cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x419b81ef cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x43149cf2 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x43187bcd cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x438e253f cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4b95b3d4 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x4c8bb094 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x4eb2aea0 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x4f5b5739 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x556ace0c wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x55718c84 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x592f2ed0 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x607f8280 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x650c1032 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x67328ccd cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x68361bb3 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x81c7c678 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x827e9490 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x83467c09 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x851bc53a cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x878dea7f cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x905d388a cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x93f498d6 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x987f5e1d freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x99007d1d cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x99178f5a regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x99f433d9 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xa00c859a cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xa46a1e46 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa9200c08 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0xa92c47aa __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xb6b26fae wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xbb9260f1 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xc0710f1e ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xc1f54d20 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xc3313c4e cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc6bf5f57 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xccc1dc7c cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xcd09cdd4 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0xcee91dd3 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xcf99f4dd cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xd3569e5e cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xd5257f42 cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xd76073d0 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdc704400 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0xe2c82a75 ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0xe6f814fd cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xe71a09d4 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xe866d876 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xece856a5 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xef083424 ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf2234978 cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0xf3770408 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xf37de654 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xf67f02ff cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xf79a55c6 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xfc89826b __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x62578b9b lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x67297754 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x898cb7b4 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x9a5e8247 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0xd52c23f2 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xeef7e77e lib80211_unregister_crypto_ops -EXPORT_SYMBOL sound/ac97_bus 0x1a4fbef3 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xda286cee snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x63938a9c snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x70e459fb snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x889ec160 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0x9f4d5dda snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x3c1c614a snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x205395a0 snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x614705ff snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7746bb9b snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x79794472 snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x991c0f60 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xef8fa3d2 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf3f0324e snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf6fdda44 snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x99065460 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x08f791b5 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1b6ca1f2 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x1c3511c6 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x1d470988 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x1f3d6851 snd_device_register -EXPORT_SYMBOL sound/core/snd 0x2191ef99 snd_cards -EXPORT_SYMBOL sound/core/snd 0x2359a636 _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0x2434547a snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0x2e32fe69 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x5ec02f50 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x60af3c5c snd_device_free -EXPORT_SYMBOL sound/core/snd 0x6615b89c snd_device_new -EXPORT_SYMBOL sound/core/snd 0x6bd24b13 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x7498a54c snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x768fb11e snd_register_device -EXPORT_SYMBOL sound/core/snd 0x7828989b snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x7ed2f5e3 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x819dda58 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x8b6448f9 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x8ded1d2b snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x950934c1 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x96bacdfe snd_card_free -EXPORT_SYMBOL sound/core/snd 0x9afc04d3 snd_card_new -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb334a0ae snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xb88592f4 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0xbe5f72ce snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0xc30ab60b snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0xc6e22013 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0xc9b73b56 snd_info_register -EXPORT_SYMBOL sound/core/snd 0xcb143a2a snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL sound/core/snd 0xd1807ff6 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0xd1eb32e9 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xd2665301 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xd2a2a1c0 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0xd5bbb8ba snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0xd6287051 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xdcf2bb70 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0xddef05f8 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0xe5409c7d snd_card_register -EXPORT_SYMBOL sound/core/snd 0xe6cf8f9d snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xe885863f snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0xed376616 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0xf53b7773 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xf636b612 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0xf8b0e6ef snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0xf92baf25 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd-hwdep 0x36c13c2a snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x02e5d1f6 snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0x049a8515 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x06ca9f77 snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x070ae6ea snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x12f50156 snd_pcm_sgbuf_ops_page -EXPORT_SYMBOL sound/core/snd-pcm 0x1736fbd3 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x19698e20 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x20424e2a snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0x2197907f snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x23563e9c snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x28dcb7cf snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x2b9d5688 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x2bfa9d58 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x2c2f8411 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x2dea94e0 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x3400941d snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x364ff9db snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x394feae0 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3a9dfed4 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x3b91f3af snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x3bc5921a snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0x447c0d07 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x4c7ac09a snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x4f184cb5 snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x52443dbc snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x52d6494d snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x58025373 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x5e40810a snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x5e4205aa snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x668443f3 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x6e546760 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x6e87af6a snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x731b7750 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x8298fd58 snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0xa31c37bc snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xac7b52ab snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0xad4f44e1 snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xb65e34f3 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xc555db4a snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0xc78fccd2 snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0xcd664124 snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0xd18dfa7e snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0xd3fb7aba snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xd68a0059 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0xddd4d895 snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xeac4fe11 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xf01c1fa3 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xf364d778 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xf9ae04da _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xfe2d5f8f snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0bd84681 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3b1a1a4f snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x434d9238 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5e4e287c snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x68500534 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7d34b84d snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x980ad008 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x984bb8ea snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x98dc9c0d snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9c740803 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9e46e4a2 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9ecfdc29 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa281dbcb snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb1952d03 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb798b213 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd735d017 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe171f1e5 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe21ac3d7 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xef870fec snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-timer 0x0273d50f snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x362bffbc snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x657294a5 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x68099623 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x9332995f snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x95c88c15 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xa759e2d7 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xb9115bd8 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0xc87534cd snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xd2b1ec4f snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xd3477a02 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xdbe9d348 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xfc926d30 snd_timer_pause -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x5cb527ca snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x072ea67b snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x15e46df8 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1a74e6c3 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3628f46e snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbc4dfa1e snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc2ce4b62 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdc29ccc8 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfd3700bf snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xffed11a0 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x5495fd5f snd_opl4_write_memory -EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x6e062567 snd_opl4_read -EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x8ea8f4ec snd_opl4_write -EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xb97ce257 snd_opl4_read_memory -EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xc4481930 snd_opl4_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x16eb4052 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x39cbae96 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x40619ae3 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6e285bbf snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x99a6df18 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xaffbc86f snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1ee0329 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfc418412 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfcab3dbe snd_vx_check_reg_bit -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x03ab94d2 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1daf01db amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1e111df1 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x272d3cc1 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2b8a7e04 amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2dc40013 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x32e99e66 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x38ee2252 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x398579c0 amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5185e78e fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x529df882 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5659c4e2 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5812b75f cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x624840f4 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x640cb01e amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6634409e amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6eaa0525 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6fa573d6 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x79dff555 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7c15dc7d fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x89b3b9c6 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9a51672c snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaa4bc6a0 snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xccbd8dfa amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdb6249ea amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe360e55a amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe47856d6 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe622ab4e snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe68dadb2 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe6ad599b avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe6e4494f cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfb231b06 fcp_avc_transaction -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x925647f4 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xa2b3d295 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x00de007a snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2cdc9b6b snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6d253bee snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9966b2df snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9b816b0f snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xad666fc0 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd8593105 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfa5000b2 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x260fe1f6 snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xb77101f3 snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc49e3022 snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc4e4c68f snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xd9a46656 snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xf61bf989 snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x21cbd180 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2a326709 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2f56fb7f snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xb9a18bac snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xb7da7b91 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xe10af9ca snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2b07ffc8 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x32e9d81a snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4022b87a snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7742e1e8 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd334bb55 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd3eec367 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x1fac63f8 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x2c9260c7 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x3d2b349f snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x6ee489a5 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x8d910549 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xfe53c4d6 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x3a60cdeb snd_tea6330t_update_mixer -EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x5244464a snd_tea6330t_detect -EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x30d76e83 snd_es1688_create -EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x74c561c8 snd_es1688_mixer_write -EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x770039cc snd_es1688_mixer -EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xad8e5682 snd_es1688_reset -EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xd876f912 snd_es1688_pcm -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x0365e51b snd_gus_dram_read -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x069406a6 snd_gf1_write8 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x0dbb0e00 snd_gf1_mem_alloc -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x0e7c7d4a snd_gus_use_inc -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x154ed210 snd_gf1_pcm_new -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x19c8c2a6 snd_gf1_peek -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1c1ce117 snd_gus_interrupt -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x290c0059 snd_gf1_alloc_voice -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x2a16b6d3 snd_gf1_i_write8 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x2dd1ca31 snd_gf1_look8 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x3e77abee snd_gf1_dram_addr -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x46db8d67 snd_gf1_lvol_to_gvol_raw -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x4c7c9c83 snd_gus_initialize -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x4e3d30e7 snd_gf1_free_voice -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x5753b50b snd_gus_dram_write -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x606bfe9a snd_gf1_i_look8 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x64d58f42 snd_gf1_ctrl_stop -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x70e5175b snd_gf1_write16 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x74d8d3c7 snd_gf1_mem_free -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x81afa030 snd_gf1_translate_freq -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x8309f923 snd_gf1_stop_voice -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa7f1fa4f snd_gf1_mem_xfree -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa92915cc snd_gf1_look16 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc43a5527 snd_gf1_atten_table -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xd670a495 snd_gf1_write_addr -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xd7bea0fb snd_gus_use_dec -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xd85aef84 snd_gf1_poke -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xe0a76dea snd_gf1_i_look16 -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xeb04999f snd_gf1_rawmidi_new -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xec36c035 snd_gf1_delay -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xece04f63 snd_gus_create -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf60d4940 snd_gf1_new_mixer -EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf7dba1ac snd_gf1_mem_lock -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x0e096be3 snd_msnd_init_queue -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x2394e6bc snd_msndmix_new -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x29bf9d18 snd_msnd_DAPQ -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x3703aa4c snd_msndmix_force_recsrc -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x3bf86807 snd_msnd_pcm -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x75026b24 snd_msndmidi_input_read -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x8e125197 snd_msnd_upload_host -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x90a45a16 snd_msnd_send_dsp_cmd -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xc4081c97 snd_msnd_DARQ -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xc9a09691 snd_msnd_dsp_halt -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xdcc0aea2 snd_msnd_send_word -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xe9eee0c6 snd_msndmix_setup -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xf64f968f snd_msnd_disable_irq -EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xf82d2033 snd_msnd_enable_irq -EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0x5a48847a snd_aci_get_aci -EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0x9be82869 snd_aci_cmd -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0d6322fa snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1360b887 snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x401680d8 snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5188e908 snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5b6fbb57 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x97594911 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb786cbdb snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xdac7b5a7 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe5b0a6ab snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf7b654a4 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb16-csp 0x219fd679 snd_sb_csp_new -EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x8b626e47 snd_sb16dsp_pcm -EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xc32e4f74 snd_sb16dsp_get_pcm_ops -EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe0b3f690 snd_sb16dsp_interrupt -EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xfefe1004 snd_sb16dsp_configure -EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x38ce7298 snd_sb8dsp_pcm -EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0xaaebe7a6 snd_sb8dsp_interrupt -EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0xb5fb2ace snd_sb8dsp_midi -EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0xe7c6d8e3 snd_sb8dsp_midi_interrupt -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x43469669 snd_emu8000_update_chorus_mode -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x53cafe30 snd_emu8000_poke_dw -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x681fe245 snd_emu8000_init_fm -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x6e8c843a snd_emu8000_update_equalizer -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x71fa4c4d snd_emu8000_dma_chan -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x94cb148a snd_emu8000_poke -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x987dc73f snd_emu8000_peek -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xb25ad229 snd_emu8000_load_chorus_fx -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xc0c89b2a snd_emu8000_peek_dw -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xc43260db snd_emu8000_update_reverb_mode -EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xf6fd5ab5 snd_emu8000_load_reverb_fx -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x02cc54bc snd_wss_get_double -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x19e254ed snd_wss_put_single -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x36aac945 snd_wss_info_double -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x43a41d08 snd_wss_out -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x45a43889 snd_wss_mixer -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x54b2cde2 snd_cs4236_ext_in -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x5d72c88d snd_wss_mce_down -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x631c609a snd_wss_chip_id -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x66bae1d2 snd_wss_info_single -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x6cf74273 snd_wss_get_single -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x779da6a1 snd_wss_in -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x77d94222 snd_wss_put_double -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7b202637 snd_wss_interrupt -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x8019a775 snd_wss_get_pcm_ops -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x80d8e220 snd_wss_timer -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x9f477c4c snd_wss_pcm -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xa831c979 snd_wss_mce_up -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xc8bab4bc snd_wss_create -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xf31a7df5 snd_cs4236_ext_out -EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xf82c42da snd_wss_overrange -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0aaecc21 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0d9d7c70 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0f5c25f8 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x145d85bc snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x19eb46d4 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4c8ae85d snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x55ec4f33 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x58ef319f snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x92201615 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x98a0b0d4 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9cc64c83 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbf13b9cc snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdb664aab snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe2f5ace0 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe6bf81ad snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf4ee6fcb snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf733c603 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x5445d6cd hpi_send_recv -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x00748a57 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x22ce1078 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3d458608 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4e9dda47 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x632199f3 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6bb53d8c snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb297ea8b snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfeca2901 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xffbc83a4 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x26ac2863 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3e3e077f snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xe8425144 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0205fcf0 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1ae91e65 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x25599566 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2960cbcf oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x318889bd oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x42ba060b oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4e32fd5c oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5d008c8c oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x63814f38 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x72abead6 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x80ff9f6d oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x820a7cec oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x85565f98 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8cd51e26 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb0722217 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcfdcfbd9 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd0e39245 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe255a4ce oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf3898612 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf392b900 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf7783cae oxygen_pci_remove -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x12bcde56 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x18d46df2 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9a8e5cf2 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xcc967da6 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf5e9005b snd_trident_start_voice -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x6b7bdd66 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x788105e0 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0x3e5d208e sst_dma_new -EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xdc045797 sst_dma_free -EXPORT_SYMBOL sound/soc/snd-soc-core 0x1417a0b1 snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/soundcore 0x0bc93f19 register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0x303ae27a register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x3cde7f2d register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x96d0a67d sound_class -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xcaef09f8 register_sound_special -EXPORT_SYMBOL sound/soundcore 0xcc17786e register_sound_midi -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x28f3b46c snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x519ebb54 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x95fccf2c snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa4188983 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa7a38e01 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe61fdf37 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/snd-util-mem 0x1952b668 snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x555b4e28 __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x58323fcd snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x658e82c0 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0x6f99c447 __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x85321ae8 __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xbe93127f snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0xcec31c86 snd_util_memhdr_new -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xa47a30c8 snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL ubuntu/hio/hio 0x0a78f96a ssd_bm_status -EXPORT_SYMBOL ubuntu/hio/hio 0x0e5e5d4a ssd_get_pciaddr -EXPORT_SYMBOL ubuntu/hio/hio 0x1494a73e ssd_reset -EXPORT_SYMBOL ubuntu/hio/hio 0x321e4bc3 ssd_register_event_notifier -EXPORT_SYMBOL ubuntu/hio/hio 0x52085a66 ssd_set_wmode -EXPORT_SYMBOL ubuntu/hio/hio 0x69b2d13d ssd_get_label -EXPORT_SYMBOL ubuntu/hio/hio 0x6bf0f3ed ssd_set_otprotect -EXPORT_SYMBOL ubuntu/hio/hio 0x8cc84ffd ssd_unregister_event_notifier -EXPORT_SYMBOL ubuntu/hio/hio 0xa7e0e2ab ssd_submit_pbio -EXPORT_SYMBOL ubuntu/hio/hio 0xd8b6f665 ssd_get_version -EXPORT_SYMBOL ubuntu/hio/hio 0xe7d2d5b9 ssd_get_temperature -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x002d778d VBoxGuest_RTMpNotificationDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0064d4f7 VBoxGuest_RTSemFastMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x00712528 VBoxGuest_RTAssertMsg2Weak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x01795170 VBoxGuest_RTMpGetCoreCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x03d8513f VBoxGuest_RTThreadSetName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x05626dc7 VBoxGuest_RTR0MemObjReserveKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0665bcaa VBoxGuest_RTAssertSetMayPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x06ab676b VBoxGuest_RTLogPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0823cb2f VBoxGuest_RTMemAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08b98b3c VBoxGuest_RTMpCpuIdFromSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08d7a261 VBoxGuest_RTThreadSelfName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x09458185 VBoxGuest_RTR0MemAreKrnlAndUsrDifferent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b14ec2c VBoxGuest_RTThreadCreateF -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b628628 VBoxGuest_RTSemEventMultiDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b94344b VBoxGuest_g_pszRTAssertExpr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0d1abebe VBoxGuest_RTLogFlush -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0dfb68c6 VBoxGuest_RTSemEventWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0e1a390f VBoxGuest_RTStrToInt8Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x104391d1 VBoxGuest_RTSemMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x113a02d9 VBoxGuest_RTMpOnPair -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x127e9d01 VBoxGuest_RTTimerRequestSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x143fba5b VBoxGuest_RTThreadPreemptDisable -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x14835127 VBoxGuest_RTAssertMsg2AddWeak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x16d72922 VBoxGuest_RTR0MemObjIsMapping -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x17d84704 VBoxGuest_RTSpinlockCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x187c16e2 VBoxGuest_RTLogCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x19087f6f VBoxGuest_RTSemEventMultiWaitEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1a79fedb VBoxGuest_RTSemMutexRequestNoResumeDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1abe7e93 VBoxGuest_RTThreadGetNative -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1ad481e4 VBoxGuest_RTLogLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1d042132 VBoxGuest_RTMemContFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1e7216d7 VBoxGuest_RTThreadFromNative -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1efa8169 VBoxGuest_RTThreadUserSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f152547 VBoxGuest_RTMpGetMaxCpuId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1fc40aab VBoxGuest_RTR0MemObjReserveUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x21b1ee43 VBoxGuest_RTThreadSleepNoLog -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x221205d1 VBoxGuest_RTThreadSetType -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2280771d VBoxGuestIDCCall -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x22bd51c7 VBoxGuest_RTErrConvertToErrno -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x23a552fd VBoxGuest_RTMpIsCpuOnline -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x246391eb VBoxGuest_RTStrToUInt16Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x25938e5f VBoxGuest_RTLogWriteDebugger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x267da4c4 VBoxGuest_RTThreadIsMain -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x27740cb3 VBoxGuest_RTStrToUInt8Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2902013c VBoxGuest_RTTimerGetSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29066860 VBoxGuest_RTStrConvertHexBytes -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2972116c VBoxGuest_RTThreadPreemptIsEnabled -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29bf3685 VBoxGuest_RTThreadGetName -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2b015c38 VBoxGuest_RTMpOnAll -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2b5f52a8 VBoxGuest_RTMpCurSetIndexAndId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2bad2a8e VBoxGuest_RTStrToInt16 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2c5b3002 VBoxGuest_RTErrConvertFromErrno -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d27c026 VBoxGuest_RTSemEventWaitExDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2e136d3c VBoxGuest_RTR0MemObjAllocPhysExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x309de102 VBoxGuest_RTMpCpuId -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3519743a VBoxGuest_RTMpCurSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3534ed69 VBoxGuest_RTMemAllocVarTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x353b64a3 VBoxGuest_RTSemMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x353e5a81 VBoxGuest_RTSemEventMultiReset -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x365d44f1 VBoxGuest_RTR0MemObjMapKernelExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x36e780e0 VBoxGuest_RTStrToUInt8Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x37b2d47a VBoxGuest_RTStrPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x39df70a0 VBoxGuest_RTStrPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a29bcdb VBoxGuest_RTThreadIsInitialized -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a77155a VBoxGuest_RTMpOnPairIsConcurrentExecSupported -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b0a3d87 VBoxGuest_RTMemAllocZVarTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3d00f113 VBoxGuest_g_u32RTAssertLine -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3ed3a918 VBoxGuest_RTAssertMsg1 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3f452f12 VBoxGuest_RTR0MemObjAllocPageTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3f8d56e7 VBoxGuest_RTMemDupTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4002b8b4 VBoxGuest_RTTimeSpecToString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x405901ff VBoxGuest_RTStrFormatTypeRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x428e3456 VBoxGuest_RTR0Term -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x428eb5ba VBoxGuest_RTMemTmpAllocZTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x42c5bff2 VBoxGuest_RTLogRelLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x432b6724 VBoxGuest_RTR0MemObjAllocPhysNCTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x433ceadb VBoxGuest_RTLogWriteStdOut -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4453e900 VBoxGuest_RTR0MemObjProtect -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4484f9ee VBoxGuest_RTTimerStart -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x44ce618e VBoxGuest_RTMemAllocExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x453e64fb VBoxGuest_RTSemEventMultiSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x45933412 VBoxGuest_RTStrToInt8Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4597652f VBoxGuest_RTStrFormat -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x45d332ae VBoxGuest_RTMemReallocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x46b36f60 VBoxGuest_RTTimeSpecFromString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4819f15e VBoxGuest_RTThreadWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x48487b79 VBoxGuest_RTLogDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4983ea42 VBoxGuest_RTAssertShouldPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4aca506e VBoxGuest_RTStrToUInt32Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4d0161ca VBoxGuest_RTLogBackdoorPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4d47859f VBoxGuest_RTR0MemKernelCopyTo -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4e6d6986 VBoxGuest_RTStrToUInt16 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4e7faa59 VBoxGuest_RTStrToInt64 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x503f488a VBoxGuest_RTLogRelSetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5045b702 VBoxGuest_RTLogGetDestinations -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5118e8ae VBoxGuest_RTStrToUInt64 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x52041f46 VBoxGuest_RTThreadPreemptIsPossible -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53602f45 VBoxGuest_RTMemTmpFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x539dd662 VBoxGuest_RTTimeSystemMilliTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53b772da VBoxGuest_RTAssertSetQuiet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x543527dc VBoxGuest_RTLogWriteStdErr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5460fc01 VBoxGuest_RTTimeImplode -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54abe5d4 VBoxGuest_RTSemMutexRequestNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54e45046 VBoxGuest_RTR0MemObjAllocLowTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x55c48692 VBoxGuest_RTMpIsCpuWorkPending -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x57280c42 VBoxGuest_RTR0MemExecDonate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x57406d20 VBoxGuest_RTR0ProcHandleSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5929b954 VBoxGuest_RTPowerSignalEvent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5936a317 VBoxGuest_RTR0MemObjAddress -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x59390acb VBoxGuest_RTTimeIsLeapYear -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ad3216a VBoxGuest_RTR0MemKernelIsValidAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5b0eaa4d VBoxGuest_RTThreadWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5c15981f VBoxGuest_RTMemContAlloc -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ca67994 VBoxGuest_RTLogDestinations -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x613042f7 VBoxGuest_RTR0MemObjMapUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x622a261f VBoxGuest_RTPowerNotificationRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x622bf330 VBoxGuest_RTMemAllocZTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x62fd45a8 VBoxGuest_RTTimeNanoTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63ba9fd2 VBoxGuest_RTLogGetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x64655cd4 VBoxGuest_RTSemEventMultiWaitExDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x64af2463 VBoxGuest_RTStrToInt32 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x650e77e8 VBoxGuest_RTMpGetCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x651c778b VBoxGuest_RTSemEventMultiCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6549a3e0 VBoxGuest_RTTimeFromString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x65b04e5d VBoxGuest_RTStrToUInt64Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x687ae6ac VBoxGuest_RTStrToUInt64Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6a930d21 VBoxGuest_RTTimerCanDoHighResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6bcedab4 VBoxGuest_RTThreadPreemptIsPending -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c17021e VBoxGuest_RTThreadUserReset -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c2df755 VBoxGuest_RTAssertMsg1Weak -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6ca5b4ec VBoxGuest_RTSemEventMultiGetResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6f8ed216 VBoxGuest_RTStrToUInt16Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6fd2e761 VBoxGuest_RTTimeNormalize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x713f25d5 VBoxGuestIDCClose -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x715699a0 VBoxGuest_RTSpinlockDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x72d1c8f4 VBoxGuestIDCOpen -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x73a23c8b VBoxGuest_RTLogRelPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x73f65247 VBoxGuest_RTStrToInt32Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x744623d2 VBoxGuest_RTSemMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x753d3a3a VBoxGuest_RTLogFormatV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x755479c2 VBoxGuest_RTR0MemObjLockKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x75bee68e VBoxGuest_RTThreadIsSelfKnown -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76608be1 VBoxGuest_RTSemSpinMutexCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x766a8684 VBoxGuest_RTThreadCreateV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76b885fb VBoxGuest_RTLogGetDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76bb35b9 VBoxGuest_RTLogLoggerEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76dbecb7 VBoxGuest_RTProcSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x77248ef3 VBoxGuest_RTR0MemObjLockUserTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7841b10d VBoxGuest_RTMpIsCpuPossible -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x78ad2401 VBoxGuest_RTStrToInt8 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x797e701f VBoxGuest_RTLogCreateEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x79aefc0b VBoxGuest_RTTimeNow -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7ac53b51 VBoxGuest_RTR0MemUserCopyFrom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7ae3b63b VBoxGuest_RTStrToUInt32 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7b423f4c VBoxGuest_RTLogGetFlags -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7cef940f VBoxGuest_RTStrToUInt8 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x80162938 VBoxGuest_RTStrFormatV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8229caac VBoxGuest_RTThreadUserWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x847577ac VBoxGuest_RTMpGetOnlineCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x84e86094 VBoxGuest_RTStrPrintfExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x854806f2 VBoxGuest_RTSpinlockAcquire -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8587f091 VBoxGuest_RTR0MemUserCopyTo -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x85afce7f VBoxGuest_RTMpNotificationRegister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x867199c4 VBoxGuest_RTMpPokeCpu -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x86f9f023 VBoxGuest_RTSemFastMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x87abe8dd VBoxGuest_RTR0MemObjSize -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8ab21a95 VBoxGuest_RTSemSpinMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8b4fd3ef VBoxGuest_RTTimeSystemNanoTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8ff5c8e5 VBoxGuest_RTSemEventMultiWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x937cd6a2 VBoxGuest_RTLogComPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9474d99a VBoxGuest_RTSemFastMutexDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x951fbe81 VBoxGuest_RTLogLoggerV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x953b2ba4 VBoxGuest_RTLogSetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x983f332c VBoxGuest_RTSemSpinMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9853901a VBoxGuest_RTAssertMsg2Add -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x98a8f55f VBoxGuest_RTMpGetPresentCoreCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9909ff3d VBoxGuest_g_pszRTAssertFunction -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x993cc778 VBoxGuest_RTLogRelSetBuffering -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x99ee476f VBoxGuest_RTThreadYield -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9b02b021 VBoxGuest_RTThreadSleep -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9be73ec4 VBoxGuest_RTMpCpuIdToSetIndex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9dc75797 VBoxGuest_RTLogBackdoorPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9e97ef59 VBoxGuest_RTSemEventWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9eb3db26 VBoxGuest_RTR0MemObjAllocPhysTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa21775d1 VBoxGuest_RTSemFastMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa2c23601 VBoxGuest_RTR0MemObjAllocContTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa3ff74bf VBoxGuest_RTStrToInt16Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa52847a2 VBoxGuest_RTR0MemUserIsValidAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5655a80 VBoxGuest_RTTimerReleaseSystemGranularity -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa582aeba VBoxGuest_RTMemExecFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5f0f1ad VBoxGuest_RTAssertMsg2 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa61aa915 VBoxGuest_RTR0MemObjFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6209fc7 VBoxGuest_RTLogPrintf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa74258ab VBoxGuest_RTTimeExplode -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa8a47d40 VBoxGuest_RTLogLoggerExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaaab8c57 VBoxGuest_RTLogRelGetDefaultInstanceEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaadc0b5d VBoxGuest_RTTimerChangeInterval -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xab5ee692 VBoxGuest_RTLogWriteUser -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xab871924 VBoxGuest_RTThreadPreemptIsPendingTrusty -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xacaac41d VBoxGuest_g_szRTAssertMsg1 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xadb5cc54 VBoxGuest_RTStrFormatTypeSetUser -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xae21ae1f VBoxGuest_RTThreadCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb2f248c6 VBoxGuest_RTStrCopyP -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb33ca348 VBoxGuest_RTLogRelPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb3f592b9 VBoxGuest_RTThreadNativeSelf -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb4227efb VBoxGuest_RTTimeToString -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb42ea0e3 VBoxGuest_g_pszRTAssertFile -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb5676d46 VBoxGuest_RTLogSetCustomPrefixCallback -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb5ec2977 VBoxGuest_RTStrToInt16Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb6fc848a VBoxGuest_RTStrToUInt32Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9a86152 VBoxGuest_RTStrFormatNumber -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9e03c35 VBoxGuest_RTTimerStop -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xba349142 VBoxGuest_RTR0MemObjEnterPhysTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaa97421 VBoxGuest_g_szRTAssertMsg2 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaf6967f VBoxGuest_RTR0MemObjGetPagePhysAddr -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbba29a48 VBoxGuest_RTR0MemObjAddressR3 -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbbbc6e84 VBoxGuest_RTSemMutexRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbbccb0c7 VBoxGuest_RTTimeMilliTS -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc7fbd2a VBoxGuest_RTLogFlushRC -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbcd1b6de VBoxGuest_RTSemSpinMutexRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbd0aa67d VBoxGuest_RTLogFlags -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbeed82c5 VBoxGuest_RTSemEventDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbf5b421e VBoxGuest_RTLogComPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc272f283 VBoxGuest_RTLogGroupSettings -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc2e0f25a VBoxGuest_RTMemTmpAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc312f533 VBoxGuest_RTMpIsCpuPresent -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4b8857d VBoxGuest_RTThreadPreemptRestore -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4c265c6 VBoxGuest_RTMpGetPresentCount -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc5151dcf VBoxGuest_RTLogDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc56f27ff VBoxGuest_RTR0Init -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc57a9c9b VBoxGuest_RTStrToInt32Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc636859e VBoxGuest_RTThreadUserWaitNoResume -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc6b243bf VBoxGuest_RTTimerDestroy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc7601bb1 VBoxGuest_RTSemEventMultiWait -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc9978a5f VBoxGuest_RTAssertMsg2V -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcb6463c6 VBoxGuest_RTStrFormatTypeDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcdbc5e5d VBoxGuest_RTSemEventCreate -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcdd40e5b VBoxGuest_RTMpOnOthers -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xceb98390 VBoxGuest_RTMpOnSpecific -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd032523c VBoxGuest_RTThreadGetType -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd1c8b171 VBoxGuest_RTStrCopyEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2ebb507 VBoxGuest_RTMpGetPresentSet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd38c5d55 VBoxGuest_RTLogCloneRC -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd4f35c7d VBoxGuest_RTSemSpinMutexTryRequest -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd63c8527 VBoxGuest_RTMemFreeEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd76ab832 VBoxGuest_RTMemDupExTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd8730925 VBoxGuest_RTLogRelLoggerV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdd31359f VBoxGuest_RTLogSetDefaultInstanceThread -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdd699fb2 VBoxGuest_RTSemMutexIsOwned -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xde296aea VBoxGuest_RTAssertAreQuiet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdead7a1c VBoxGuest_RTLogSetBuffering -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdfaa7e65 VBoxGuest_RTSemEventSignal -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0453bfd VBoxGuest_RTTimerCreateEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0afcea8 VBoxGuest_RTR0AssertPanicSystem -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0ebf12c VBoxGuest_RTAssertMsg2WeakV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe16047ab VBoxGuest_RTLogDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe19acf09 VBoxGuest_RTStrCopy -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe208c712 VBoxGuest_RTLogGetGroupSettings -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe2aa3ed6 VBoxGuest_RTR0MemKernelCopyFrom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe4104f8b VBoxGuest_RTLogFlushToLogger -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe46f3670 VBoxGuest_RTLogRelGetDefaultInstance -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe47b5364 VBoxGuest_RTSemEventGetResolution -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe5908cc3 VBoxGuest_RTStrToInt64Full -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe59fc65c VBoxGuest_RTLogWriteCom -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe6a00917 VBoxGuest_RTThreadIsInInterrupt -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xebbe4bc3 VBoxGuest_RTThreadIsSelfAlive -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xecd69ee8 VBoxGuest_RTAssertMsg2AddWeakV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xed0424f7 VBoxGuest_RTMemFree -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xed92363f VBoxGuest_RTR0MemObjMapKernelTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf244ec46 VBoxGuest_RTSemMutexRequestDebug -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf2e6e2c5 VBoxGuest_RTStrPrintfEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf3cd37e7 VBoxGuest_RTSemEventWaitEx -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf450a3d4 VBoxGuest_RTLogCreateExV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf722f7d1 VBoxGuest_RTMemExecAllocTag -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf7c384ae VBoxGuest_RTStrToInt64Ex -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf81b13f5 VBoxGuest_RTPowerNotificationDeregister -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfb5ca767 VBoxGuest_RTSpinlockRelease -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfcfe8381 VBoxGuest_RTMpGetOnlineSet -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe4fce41 VBoxGuest_RTAssertMayPanic -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe5c0dc7 VBoxGuest_RTAssertMsg2AddV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfec59082 VBoxGuest_RTLogDumpPrintfV -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfec8da5c VBoxGuest_RTMpOnAllIsConcurrentSafe -EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xffc16d99 VBoxGuest_RTMpGetSet -EXPORT_SYMBOL vmlinux 0x001ccc6a blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x00212194 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x0024f169 swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0x0027930e user_path_at_empty -EXPORT_SYMBOL vmlinux 0x0027a9ee input_unregister_handler -EXPORT_SYMBOL vmlinux 0x0027e791 clk_get -EXPORT_SYMBOL vmlinux 0x0036d9d1 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x004a3970 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0x0066651f gnttab_alloc_pages -EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc -EXPORT_SYMBOL vmlinux 0x00b954e8 swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00df6589 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x0108f1d9 __sb_start_write -EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x01250c93 udp_seq_open -EXPORT_SYMBOL vmlinux 0x012d87f7 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x0139b504 cpu_current_top_of_stack -EXPORT_SYMBOL vmlinux 0x013a6d71 udp_proc_register -EXPORT_SYMBOL vmlinux 0x016313b2 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x01a89c13 dev_printk -EXPORT_SYMBOL vmlinux 0x01c50db6 tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0x01d64da1 noop_qdisc -EXPORT_SYMBOL vmlinux 0x01d8c6a4 elv_register_queue -EXPORT_SYMBOL vmlinux 0x01dcd194 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x020b244f sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x023d1d5c unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x02499439 inode_init_always -EXPORT_SYMBOL vmlinux 0x025a12f5 __dax_fault -EXPORT_SYMBOL vmlinux 0x0260ebf3 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x026dba89 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x026e9a70 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027aea27 pipe_lock -EXPORT_SYMBOL vmlinux 0x0280adfe misc_register -EXPORT_SYMBOL vmlinux 0x02934b4c phy_drivers_register -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a5ac2d ppp_input -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02c3da01 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x02e82520 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02f0e1f9 fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0x0311ac01 uart_update_timeout -EXPORT_SYMBOL vmlinux 0x03163977 vm_mmap -EXPORT_SYMBOL vmlinux 0x0330cfd3 proc_mkdir -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x03651ce1 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x038ccdd1 fb_pan_display -EXPORT_SYMBOL vmlinux 0x038d542b pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x03ca5790 phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0x03f8f5f8 vm_insert_mixed -EXPORT_SYMBOL vmlinux 0x03fbd5c1 netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04067b44 blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0469437a ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x04806d8e bio_clone_fast -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x049cad05 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x04c3bb04 nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x04d098d0 read_cache_page -EXPORT_SYMBOL vmlinux 0x04d36ce3 dump_truncate -EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi -EXPORT_SYMBOL vmlinux 0x04d8e721 component_match_add -EXPORT_SYMBOL vmlinux 0x04dc5dbb agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0x04ddab38 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x05086d85 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x0515a8fe scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0550769a xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x055ae76f dev_get_by_name -EXPORT_SYMBOL vmlinux 0x0565a940 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x056b446f inet_frag_find -EXPORT_SYMBOL vmlinux 0x057596c1 pci_iomap -EXPORT_SYMBOL vmlinux 0x059512c4 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x05c4b3b4 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x05ca816f fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x05ccf54c set_pages_array_wb -EXPORT_SYMBOL vmlinux 0x05ceed7a km_state_notify -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x062d25ce jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x06314c60 tcp_filter -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x0639b6e3 __kernel_write -EXPORT_SYMBOL vmlinux 0x063a3a7c security_path_chmod -EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x065e9833 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x065ee03c sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x0660cef7 __breadahead -EXPORT_SYMBOL vmlinux 0x066ba499 irq_set_chip -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache -EXPORT_SYMBOL vmlinux 0x0692e941 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x06ab1b5b bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x0736873d vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x073c01a9 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0x075e152e blk_init_queue -EXPORT_SYMBOL vmlinux 0x07608604 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x0762ac2d xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x0783176d vfs_mknod -EXPORT_SYMBOL vmlinux 0x078822e4 gen_pool_create -EXPORT_SYMBOL vmlinux 0x078ac149 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x079c7a40 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x079ce3b0 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free -EXPORT_SYMBOL vmlinux 0x07a4e3d2 tcp_disconnect -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07d50a24 csum_partial -EXPORT_SYMBOL vmlinux 0x07e6e34a tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x07f4e245 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x08397862 d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x08434a1b param_ops_ullong -EXPORT_SYMBOL vmlinux 0x085749a5 param_set_uint -EXPORT_SYMBOL vmlinux 0x085ebdbf tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x08660847 lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x08785c7d devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes -EXPORT_SYMBOL vmlinux 0x08a9f595 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x08d495af nf_register_hooks -EXPORT_SYMBOL vmlinux 0x08e0f271 tty_devnum -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x09384293 dma_find_channel -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x095ad405 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x096d1ad2 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x0978d581 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x09798083 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x09893811 kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09c1a5ff passthru_features_check -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09df3f3e pci_get_subsys -EXPORT_SYMBOL vmlinux 0x09e62cfe blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x09ee8c8d mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x0a25406a __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x0a290432 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift -EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell -EXPORT_SYMBOL vmlinux 0x0a53776a filemap_fdatawait -EXPORT_SYMBOL vmlinux 0x0a632fc9 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a8c3f01 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aaab9e1 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0af8cf98 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x0b0792aa bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x0b082a0d i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b10ece8 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x0b11a133 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x0b164e33 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b1d589c nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x0b2712ef mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x0b2ae650 dev_get_flags -EXPORT_SYMBOL vmlinux 0x0b2fb1be gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x0b3c9415 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0x0b3eddb1 make_kgid -EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init -EXPORT_SYMBOL vmlinux 0x0b5006f7 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x0b5a54d2 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b6d8364 try_module_get -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b772283 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x0b79c6df acpi_pm_device_run_wake -EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x0bb8b8a5 pci_biosrom_size -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc8a363 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x0bd2199e remove_proc_entry -EXPORT_SYMBOL vmlinux 0x0bd4b214 km_query -EXPORT_SYMBOL vmlinux 0x0be7d4b5 skb_push -EXPORT_SYMBOL vmlinux 0x0bf73ca6 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x0c15e917 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x0c281e63 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c62d9ce blk_requeue_request -EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x0c85e488 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x0c96cb29 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x0c9999bc netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0ca11604 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cbb22e4 open_exec -EXPORT_SYMBOL vmlinux 0x0cc3b679 phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin -EXPORT_SYMBOL vmlinux 0x0cdf81aa secpath_dup -EXPORT_SYMBOL vmlinux 0x0cffde5d inet_sendmsg -EXPORT_SYMBOL vmlinux 0x0d041a98 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0x0d11fbb9 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d977aa1 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0da9a58b __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x0dab5d40 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dcda11b max8925_reg_write -EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x0dddbf54 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x0de18095 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x0dee1b60 key_task_permission -EXPORT_SYMBOL vmlinux 0x0e0d850e xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x0e155eb0 devm_memremap -EXPORT_SYMBOL vmlinux 0x0e2e5aff input_inject_event -EXPORT_SYMBOL vmlinux 0x0e488fbd jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x0e4d685f xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x0e4dff0d netlink_capable -EXPORT_SYMBOL vmlinux 0x0e59229e setup_new_exec -EXPORT_SYMBOL vmlinux 0x0e5b83cf __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x0e693799 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e7917d2 param_get_long -EXPORT_SYMBOL vmlinux 0x0e8f37fb __d_drop -EXPORT_SYMBOL vmlinux 0x0e99a6ff lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0eb867d8 __mutex_init -EXPORT_SYMBOL vmlinux 0x0eb9dc04 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x0ec0ffbf elevator_alloc -EXPORT_SYMBOL vmlinux 0x0ec2603a nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy -EXPORT_SYMBOL vmlinux 0x0ef5420f tty_port_hangup -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f186f19 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x0f1aa3c4 phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0x0f1c172f tty_port_init -EXPORT_SYMBOL vmlinux 0x0f28c37d __sock_create -EXPORT_SYMBOL vmlinux 0x0f462070 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f59a33b iov_iter_zero -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f730c3c kmem_cache_create -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fb32393 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x0fcfb1f9 netdev_notice -EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event -EXPORT_SYMBOL vmlinux 0x0fd0cff8 nf_register_hook -EXPORT_SYMBOL vmlinux 0x0fe3445a agp_free_memory -EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress -EXPORT_SYMBOL vmlinux 0x10050c28 get_super_thawed -EXPORT_SYMBOL vmlinux 0x102bcf78 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x102c56de irq_regs -EXPORT_SYMBOL vmlinux 0x102c6644 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x103823ea param_set_charp -EXPORT_SYMBOL vmlinux 0x1063d756 dev_driver_string -EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x108f5024 cdrom_open -EXPORT_SYMBOL vmlinux 0x1091836a forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x10c43ad9 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x10d73826 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x10deb641 file_update_time -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10f1ffbd blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0x10fd21f4 seq_path -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x11160e05 kern_path -EXPORT_SYMBOL vmlinux 0x111935dc inet6_offloads -EXPORT_SYMBOL vmlinux 0x1134e328 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x1135260f netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1185b39f tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x1186c72c netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x118f2c27 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x119355d4 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11a37f27 to_ndd -EXPORT_SYMBOL vmlinux 0x11b94a75 filp_open -EXPORT_SYMBOL vmlinux 0x11c121f2 dquot_drop -EXPORT_SYMBOL vmlinux 0x11dd01ad intel_scu_ipc_command -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x11fa9772 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x11fac0f3 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x121b4e4b memremap -EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x126a969c ihold -EXPORT_SYMBOL vmlinux 0x1273ec1a netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0x127b6f1f bio_init -EXPORT_SYMBOL vmlinux 0x129278c0 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x12989c66 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x12a1dfa3 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x12a2700d agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0x12a2f670 scsi_add_device -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12b0ba75 kill_litter_super -EXPORT_SYMBOL vmlinux 0x12b1b62f inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x12ba4079 mmc_free_host -EXPORT_SYMBOL vmlinux 0x12c330a3 iget5_locked -EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc -EXPORT_SYMBOL vmlinux 0x12de4012 tcf_register_action -EXPORT_SYMBOL vmlinux 0x12e21d64 block_invalidatepage -EXPORT_SYMBOL vmlinux 0x12ee31e4 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x1304cc31 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc -EXPORT_SYMBOL vmlinux 0x133a82e7 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x134e09aa pci_read_vpd -EXPORT_SYMBOL vmlinux 0x135f7e4f udp_poll -EXPORT_SYMBOL vmlinux 0x13673266 get_tz_trend -EXPORT_SYMBOL vmlinux 0x1369ead4 fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0x136b1c7d write_inode_now -EXPORT_SYMBOL vmlinux 0x1373db61 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x13916393 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x1392647d dev_load -EXPORT_SYMBOL vmlinux 0x1395aa52 blk_end_request_all -EXPORT_SYMBOL vmlinux 0x13a4d4c0 unload_nls -EXPORT_SYMBOL vmlinux 0x13c4458b scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d11900 sget -EXPORT_SYMBOL vmlinux 0x13e1b9ca generic_write_checks -EXPORT_SYMBOL vmlinux 0x13e57847 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x13e88441 pci_get_device -EXPORT_SYMBOL vmlinux 0x13e93847 simple_open -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x13f48c68 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x13f9de34 cpu_info -EXPORT_SYMBOL vmlinux 0x14037dec security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x143eb10e kdb_current_task -EXPORT_SYMBOL vmlinux 0x144602cd neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x145b7d14 set_trace_device -EXPORT_SYMBOL vmlinux 0x145f7c4e ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x14650066 phy_device_create -EXPORT_SYMBOL vmlinux 0x148b380c inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x14aa5b06 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x14b02a7d vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14ee0ba6 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x14f80a1f sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0x150324cf i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x150389d6 acpi_processor_power_init_bm_check -EXPORT_SYMBOL vmlinux 0x150f6a52 tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x15697e2f __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock -EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x158ab7df i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x1599214a __nd_driver_register -EXPORT_SYMBOL vmlinux 0x15a16e52 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bcd25d tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x15c91762 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x15e7bcb8 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled -EXPORT_SYMBOL vmlinux 0x161086f0 release_sock -EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0x161d5bc6 abort_creds -EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null -EXPORT_SYMBOL vmlinux 0x1670834d kmap -EXPORT_SYMBOL vmlinux 0x167c10ea xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 -EXPORT_SYMBOL vmlinux 0x16809afc param_ops_int -EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete -EXPORT_SYMBOL vmlinux 0x168b07d9 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x16a489d2 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x16c3fb48 pci_clear_master -EXPORT_SYMBOL vmlinux 0x16c83f3d dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x16dc4d1f fence_init -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16ef8dcd set_groups -EXPORT_SYMBOL vmlinux 0x17091da3 d_find_alias -EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x1718ae40 prepare_creds -EXPORT_SYMBOL vmlinux 0x172152d3 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x17268364 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x1757e000 ps2_command -EXPORT_SYMBOL vmlinux 0x176180ad eth_gro_receive -EXPORT_SYMBOL vmlinux 0x177bc11d inode_change_ok -EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock -EXPORT_SYMBOL vmlinux 0x179737da generic_show_options -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17c4372e scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x17cf79dd pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x17d9a246 fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x17de7ee4 module_put -EXPORT_SYMBOL vmlinux 0x17ee42b8 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17fb6773 tcp_child_process -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x18605866 fget -EXPORT_SYMBOL vmlinux 0x1861394d agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x18792b10 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x188054c5 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x18cda81d dup_iter -EXPORT_SYMBOL vmlinux 0x18d3a711 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x18d6706c netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x18d96501 atomic64_dec_if_positive_cx8 -EXPORT_SYMBOL vmlinux 0x18e30b6f d_delete -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18f133bf elv_rb_del -EXPORT_SYMBOL vmlinux 0x18f8c394 agp_backend_acquire -EXPORT_SYMBOL vmlinux 0x1901710f mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0x190186b2 padata_do_serial -EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x191d4d5e vfs_unlink -EXPORT_SYMBOL vmlinux 0x1932df32 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x193d1ab2 textsearch_register -EXPORT_SYMBOL vmlinux 0x19599ad8 md_write_start -EXPORT_SYMBOL vmlinux 0x195ea613 __inode_permission -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c37f49 __frontswap_load -EXPORT_SYMBOL vmlinux 0x19cfc2b2 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x19d76c3f inode_init_owner -EXPORT_SYMBOL vmlinux 0x19f46edd input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x1a06b1e9 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x1a208d7e cdev_init -EXPORT_SYMBOL vmlinux 0x1a2d6041 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x1a42a3dc scsi_block_requests -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a60e503 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch -EXPORT_SYMBOL vmlinux 0x1a97ff88 keyring_clear -EXPORT_SYMBOL vmlinux 0x1aa3e2ec finish_no_open -EXPORT_SYMBOL vmlinux 0x1aafde8a end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x1adb91bf __init_rwsem -EXPORT_SYMBOL vmlinux 0x1ae09f75 _raw_write_unlock_irq -EXPORT_SYMBOL vmlinux 0x1aeebe4d __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b1b526c open_check_o_direct -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b3a58d8 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x1b3f3b70 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x1b505662 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x1b50a55c framebuffer_release -EXPORT_SYMBOL vmlinux 0x1b560274 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b7b7372 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b890d66 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1b928606 inet_select_addr -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bde8566 block_commit_write -EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock -EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states -EXPORT_SYMBOL vmlinux 0x1c13ef9b thaw_super -EXPORT_SYMBOL vmlinux 0x1c1de364 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x1c267fbc rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x1c30488d mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x1c4260d8 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x1c4d69be get_task_exe_file -EXPORT_SYMBOL vmlinux 0x1c4f10ac posix_lock_file -EXPORT_SYMBOL vmlinux 0x1c5902f8 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x1c686b97 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x1c6a33b1 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x1c787f0c devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x1c7aced8 inet6_getname -EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset -EXPORT_SYMBOL vmlinux 0x1c95da20 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x1c9a3cba kthread_stop -EXPORT_SYMBOL vmlinux 0x1cb47014 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x1cea28c0 set_page_dirty -EXPORT_SYMBOL vmlinux 0x1cf4790d kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x1d0cf2f8 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x1d101aec inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x1d1087b9 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x1d160d5e ___pskb_trim -EXPORT_SYMBOL vmlinux 0x1d608814 start_tty -EXPORT_SYMBOL vmlinux 0x1d6ad94d block_truncate_page -EXPORT_SYMBOL vmlinux 0x1d730cb1 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x1d7a0e8f find_lock_entry -EXPORT_SYMBOL vmlinux 0x1d8abffb __page_symlink -EXPORT_SYMBOL vmlinux 0x1d9ee140 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x1da5ac00 vm_insert_page -EXPORT_SYMBOL vmlinux 0x1db28e86 skb_append -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1ddbaf21 may_umount_tree -EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0x1deb08b7 dev_mc_add -EXPORT_SYMBOL vmlinux 0x1df15a0a vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x1df55302 sk_net_capable -EXPORT_SYMBOL vmlinux 0x1e02d996 nvm_register_mgr -EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe -EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt -EXPORT_SYMBOL vmlinux 0x1e095254 mpage_readpages -EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e2d4086 dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x1e44a22a take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x1e57fa0c nf_log_register -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e75bc82 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x1e92b14d jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x1edca132 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x1eebf1a9 textsearch_destroy -EXPORT_SYMBOL vmlinux 0x1efdd169 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x1efdd992 vfs_symlink -EXPORT_SYMBOL vmlinux 0x1f10bf2a msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x1f2cb4fd pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x1f31309f pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x1f3d1dd6 tcp_poll -EXPORT_SYMBOL vmlinux 0x1f3daa95 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x1f62afb3 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x1f68b42b I_BDEV -EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x1f7f17fa invalidate_partition -EXPORT_SYMBOL vmlinux 0x1f9429bd sock_no_getname -EXPORT_SYMBOL vmlinux 0x1fb7f80c md_cluster_mod -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc03382 dev_add_offload -EXPORT_SYMBOL vmlinux 0x1fc510cc uart_register_driver -EXPORT_SYMBOL vmlinux 0x1fc70e07 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd902ec xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x1ffaca7d dma_ops -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x2006798e register_xen_selfballooning -EXPORT_SYMBOL vmlinux 0x20092385 acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201b0ac0 lg_global_unlock -EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x202f4e92 acpi_extract_package -EXPORT_SYMBOL vmlinux 0x20358b8b find_inode_nowait -EXPORT_SYMBOL vmlinux 0x203b51b3 set_user_nice -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x20525341 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x20664eae fddi_type_trans -EXPORT_SYMBOL vmlinux 0x206788ab request_key_async -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table -EXPORT_SYMBOL vmlinux 0x2098d6dd netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x20b9ae06 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20c6192f intel_scu_ipc_ioread32 -EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x20f8309b tty_lock -EXPORT_SYMBOL vmlinux 0x20fb248a max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve -EXPORT_SYMBOL vmlinux 0x216cc630 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x217d7be5 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x218d373b fb_show_logo -EXPORT_SYMBOL vmlinux 0x21938902 swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x21a701fe fence_signal -EXPORT_SYMBOL vmlinux 0x21b5494c iov_iter_advance -EXPORT_SYMBOL vmlinux 0x21b81b79 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get -EXPORT_SYMBOL vmlinux 0x21eeb12e generic_setlease -EXPORT_SYMBOL vmlinux 0x21f4eafa input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x21f81cb4 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x2207f389 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve -EXPORT_SYMBOL vmlinux 0x224d3ca3 d_alloc_name -EXPORT_SYMBOL vmlinux 0x22509018 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x2270de96 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x227d370c blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x22946cd2 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x22954e58 __bread_gfp -EXPORT_SYMBOL vmlinux 0x229f78ee dquot_scan_active -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b8b50b mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x22bd1cfa blk_integrity_register -EXPORT_SYMBOL vmlinux 0x22beb95d page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x23048374 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x23299226 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x23360e66 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x2353eca1 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x23570b92 bitmap_unplug -EXPORT_SYMBOL vmlinux 0x23690b32 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x236f13ba iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x238b1097 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x2396aa3c generic_removexattr -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23a5876e vfs_create -EXPORT_SYMBOL vmlinux 0x23b36f81 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x23b751b4 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c46007 nobh_write_end -EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x23cb741c udp_set_csum -EXPORT_SYMBOL vmlinux 0x23eaa62a kfree_put_link -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x2400b7bc __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x2404feee dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x24102a8f kernel_sendpage -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x24537bb7 cpu_tss -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x2464c0b9 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x248a90a4 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x24900b58 mapping_tagged -EXPORT_SYMBOL vmlinux 0x24930512 generic_update_time -EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x249d799a blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x24a267da inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x24d6ce3a scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x24dc0cd6 unlock_buffer -EXPORT_SYMBOL vmlinux 0x24dc33be phy_attach_direct -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x253c5e60 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x2544c12d sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x254bcacb dqput -EXPORT_SYMBOL vmlinux 0x25522cb4 key_put -EXPORT_SYMBOL vmlinux 0x255f6e0c napi_gro_frags -EXPORT_SYMBOL vmlinux 0x256c36f4 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x256e4dc7 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2595e98c __getblk_slow -EXPORT_SYMBOL vmlinux 0x25b2acbb bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x25b6e12e mmc_can_trim -EXPORT_SYMBOL vmlinux 0x25d833ef blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25f77717 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x2636042f blk_put_request -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x2651b7ef block_write_end -EXPORT_SYMBOL vmlinux 0x2655c89c md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x265762a7 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x265c3e17 dquot_destroy -EXPORT_SYMBOL vmlinux 0x268cc6a2 sys_close -EXPORT_SYMBOL vmlinux 0x26a503cc blk_finish_request -EXPORT_SYMBOL vmlinux 0x26aa7eea page_follow_link_light -EXPORT_SYMBOL vmlinux 0x26b3cfcc nf_setsockopt -EXPORT_SYMBOL vmlinux 0x26b92a6f skb_free_datagram -EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26bc8ee7 cdev_add -EXPORT_SYMBOL vmlinux 0x26bcfa9c acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0x26c0f2a7 vga_switcheroo_unregister_client -EXPORT_SYMBOL vmlinux 0x26c16d96 set_anon_super -EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create -EXPORT_SYMBOL vmlinux 0x26cd204f qdisc_list_add -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26eadfbd get_gendisk -EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x275bef41 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x27604177 netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0x2767d3f2 arp_tbl -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove -EXPORT_SYMBOL vmlinux 0x279e9c4b iov_iter_npages -EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction -EXPORT_SYMBOL vmlinux 0x27bb7980 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27be2ed2 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x27c4dd60 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x27e06c4e fget_raw -EXPORT_SYMBOL vmlinux 0x27eb2004 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x27fa6775 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x27fbb8d1 phy_detach -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x282884e1 devm_release_resource -EXPORT_SYMBOL vmlinux 0x284a2696 __secpath_destroy -EXPORT_SYMBOL vmlinux 0x28511692 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x286aa788 inet_frags_init -EXPORT_SYMBOL vmlinux 0x287c6fee vfs_whiteout -EXPORT_SYMBOL vmlinux 0x28939897 give_up_console -EXPORT_SYMBOL vmlinux 0x28982971 release_firmware -EXPORT_SYMBOL vmlinux 0x28984da2 consume_skb -EXPORT_SYMBOL vmlinux 0x289d8a90 lock_sock_fast -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28a5deb6 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x28b715a6 isapnp_cfg_end -EXPORT_SYMBOL vmlinux 0x28d673fb xfrm_input -EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available -EXPORT_SYMBOL vmlinux 0x29127a3b twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x293b4a0b filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x29459aa2 rt6_lookup -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x2960c69c x86_hyper_xen -EXPORT_SYMBOL vmlinux 0x29640e53 lookup_bdev -EXPORT_SYMBOL vmlinux 0x296f25b2 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x2977055d pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x29787586 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x2987b192 replace_mount_options -EXPORT_SYMBOL vmlinux 0x29bb4c07 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x29bdf447 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x29cc5626 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x29dfb488 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x29e1bd08 __block_write_begin -EXPORT_SYMBOL vmlinux 0x29ecba14 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0x2a0a88f5 sock_create_lite -EXPORT_SYMBOL vmlinux 0x2a1ec6b3 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x2a2f50fa jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2a3d50a2 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x2a479f27 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x2a5def2f intel_scu_ipc_iowrite32 -EXPORT_SYMBOL vmlinux 0x2a8ad21a kobject_set_name -EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2aa18544 __inet_hash -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2ad06e81 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x2ad98b91 pci_find_capability -EXPORT_SYMBOL vmlinux 0x2addc716 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x2af36f9d neigh_app_ns -EXPORT_SYMBOL vmlinux 0x2af440ca serio_rescan -EXPORT_SYMBOL vmlinux 0x2afdb485 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x2afe166a sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b22c5c3 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b53c601 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x2b62db6a balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x2b68bd7a pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x2b6a77d8 devm_gpio_free -EXPORT_SYMBOL vmlinux 0x2b8a1c65 filemap_fault -EXPORT_SYMBOL vmlinux 0x2b8f0a2d mdiobus_write -EXPORT_SYMBOL vmlinux 0x2b94a4a1 generic_getxattr -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2bade453 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x2bbf5a29 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x2bc3f200 __get_user_pages -EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x2c002a80 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x2c06e087 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x2c160e6e flow_cache_fini -EXPORT_SYMBOL vmlinux 0x2c22798c lwtunnel_input -EXPORT_SYMBOL vmlinux 0x2c2487c7 blkdev_put -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c2a2c3d pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x2c5a11b6 netif_device_attach -EXPORT_SYMBOL vmlinux 0x2c7ae0ba scsi_host_get -EXPORT_SYMBOL vmlinux 0x2c920de0 sk_alloc -EXPORT_SYMBOL vmlinux 0x2c9c3484 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x2ca7a371 save_mount_options -EXPORT_SYMBOL vmlinux 0x2cadd9a8 read_cache_pages -EXPORT_SYMBOL vmlinux 0x2caedf33 kernel_write -EXPORT_SYMBOL vmlinux 0x2cb49a3b udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x2cc40ecf fence_remove_callback -EXPORT_SYMBOL vmlinux 0x2cc87804 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x2cca767f tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x2cdbfef5 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x2cdd230b pcim_iomap -EXPORT_SYMBOL vmlinux 0x2ce90c6e input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x2cf31c27 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x2d1ebf6e ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d37342e cpu_online_mask -EXPORT_SYMBOL vmlinux 0x2d458469 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x2d5a86d3 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x2d6c7f01 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x2d719a59 netlink_unicast -EXPORT_SYMBOL vmlinux 0x2d758878 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x2d7fb3c6 generic_listxattr -EXPORT_SYMBOL vmlinux 0x2d836412 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x2d8b4a58 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x2dae47d0 get_io_context -EXPORT_SYMBOL vmlinux 0x2dba3bee pcim_enable_device -EXPORT_SYMBOL vmlinux 0x2dc7c7a8 path_get -EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu -EXPORT_SYMBOL vmlinux 0x2dd2b802 put_page -EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink -EXPORT_SYMBOL vmlinux 0x2ddbe413 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception -EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write -EXPORT_SYMBOL vmlinux 0x2dff47bb swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0x2e0016e9 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x2e0499c4 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e2d3e96 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x2e2dc3aa __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0x2e2f834c nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0x2e40fa72 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x2e4140fa inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0x2e427a3d dev_activate -EXPORT_SYMBOL vmlinux 0x2e829246 kill_fasync -EXPORT_SYMBOL vmlinux 0x2e832f1b search_binary_handler -EXPORT_SYMBOL vmlinux 0x2e8a80b1 input_register_handler -EXPORT_SYMBOL vmlinux 0x2e90bafb inet_csk_accept -EXPORT_SYMBOL vmlinux 0x2eb3f31a fput -EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x2ed14054 nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f0c8207 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x2f30f36f devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f841ae5 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x2f962e1d sg_miter_next -EXPORT_SYMBOL vmlinux 0x2fa6da06 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x2fa754a2 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x2fab456a udp_disconnect -EXPORT_SYMBOL vmlinux 0x2fb5b881 vmap -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fb8da7c dst_init -EXPORT_SYMBOL vmlinux 0x2fca9456 __pci_enable_wake -EXPORT_SYMBOL vmlinux 0x2fcc3438 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fefafb6 devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0x2ff7ba02 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x2ff8ae36 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x2ffb2e24 cfb_imageblit -EXPORT_SYMBOL vmlinux 0x3003d964 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x301d86db rtnl_notify -EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command -EXPORT_SYMBOL vmlinux 0x3027b7f8 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x30313157 sock_create_kern -EXPORT_SYMBOL vmlinux 0x304d6ce3 amd_northbridges -EXPORT_SYMBOL vmlinux 0x305e718c first_ec -EXPORT_SYMBOL vmlinux 0x306396df __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x307384f7 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x307c54cd iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30b04526 ida_init -EXPORT_SYMBOL vmlinux 0x30c3d516 lockref_put_return -EXPORT_SYMBOL vmlinux 0x30dfba16 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30f688a7 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x31089e4e dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x310917fe sort -EXPORT_SYMBOL vmlinux 0x310a1b07 blkdev_fsync -EXPORT_SYMBOL vmlinux 0x31296437 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x312d1bfc pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x3133a979 param_get_int -EXPORT_SYMBOL vmlinux 0x3137c4d2 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x31493dab inet_bind -EXPORT_SYMBOL vmlinux 0x316bbddd cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc -EXPORT_SYMBOL vmlinux 0x31d1efa2 PDE_DATA -EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz -EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx -EXPORT_SYMBOL vmlinux 0x31f7f4b9 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs -EXPORT_SYMBOL vmlinux 0x3204b120 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x32233587 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom -EXPORT_SYMBOL vmlinux 0x3268aabf seq_release_private -EXPORT_SYMBOL vmlinux 0x326cdcfa tcf_exts_change -EXPORT_SYMBOL vmlinux 0x327fadac xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x3290d164 netdev_update_features -EXPORT_SYMBOL vmlinux 0x32916f31 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x32984d80 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x329e2a89 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x32b5fa2f mem_section -EXPORT_SYMBOL vmlinux 0x32d5b76b bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x32d74309 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x32e00dd1 bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x32f3ef86 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x32ff434a cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x3313990f input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x333f10ef tcf_hash_check -EXPORT_SYMBOL vmlinux 0x33740a4a clk_add_alias -EXPORT_SYMBOL vmlinux 0x337f607b gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x3388da3e fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x338a344f phy_connect -EXPORT_SYMBOL vmlinux 0x338cd8f8 dev_close -EXPORT_SYMBOL vmlinux 0x338ef676 register_md_personality -EXPORT_SYMBOL vmlinux 0x339804e3 register_shrinker -EXPORT_SYMBOL vmlinux 0x339f2831 ilookup5 -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33d27f41 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x33d55ffa nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x33d7f87c mmc_remove_host -EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x33deeb9a bioset_free -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f792a7 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x33f91746 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x341aab31 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x342f60fe apm_info -EXPORT_SYMBOL vmlinux 0x3436f104 param_set_short -EXPORT_SYMBOL vmlinux 0x34460d4b bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x344f84cb pnp_is_active -EXPORT_SYMBOL vmlinux 0x3464e888 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x34763859 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x3497fd2f vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34b5a437 netif_skb_features -EXPORT_SYMBOL vmlinux 0x34b6095a param_set_long -EXPORT_SYMBOL vmlinux 0x34b8d6a8 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x34c47e2a copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x3502c833 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x35082b39 sock_no_listen -EXPORT_SYMBOL vmlinux 0x350c46d5 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x35118245 dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x352cdf7c neigh_table_clear -EXPORT_SYMBOL vmlinux 0x3531da0a rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0x35368b42 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x3541ce6e nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x35580e3c mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x359b88fc nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0x35a0dabd lock_rename -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35b03722 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x35cfe8f2 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x35e1e1d7 put_disk -EXPORT_SYMBOL vmlinux 0x35ea788d nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0x35ed7c39 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x35ffb1a9 dev_trans_start -EXPORT_SYMBOL vmlinux 0x36082b85 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x361e2a18 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x362bb1d5 led_set_brightness -EXPORT_SYMBOL vmlinux 0x362dbb20 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x363a8164 seq_read -EXPORT_SYMBOL vmlinux 0x364c53d2 __find_get_block -EXPORT_SYMBOL vmlinux 0x364f76a1 inet_addr_type -EXPORT_SYMBOL vmlinux 0x365d8268 bio_split -EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x368d30da tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36c6af51 intel_scu_ipc_iowrite8 -EXPORT_SYMBOL vmlinux 0x36cc1e3a tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x36e57852 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x370f9850 efi -EXPORT_SYMBOL vmlinux 0x371a3764 flush_old_exec -EXPORT_SYMBOL vmlinux 0x373a41e1 unregister_console -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374f4028 inet_del_offload -EXPORT_SYMBOL vmlinux 0x37556a11 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x3779c289 unlock_rename -EXPORT_SYMBOL vmlinux 0x37945a6b seq_printf -EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 -EXPORT_SYMBOL vmlinux 0x37a40563 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b5cce3 tcp_prequeue -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c664dd padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37e40384 dentry_path_raw -EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 -EXPORT_SYMBOL vmlinux 0x37edb122 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x38427830 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x3855d144 inet_accept -EXPORT_SYMBOL vmlinux 0x385c3fc8 blkdev_get -EXPORT_SYMBOL vmlinux 0x3860326c blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x388799f6 unregister_kmmio_probe -EXPORT_SYMBOL vmlinux 0x38965298 mpage_readpage -EXPORT_SYMBOL vmlinux 0x38a3c6a3 dquot_initialize -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b94eaf __alloc_skb -EXPORT_SYMBOL vmlinux 0x38b97768 nf_log_set -EXPORT_SYMBOL vmlinux 0x38bc6643 vfs_getattr -EXPORT_SYMBOL vmlinux 0x38c39592 bdput -EXPORT_SYMBOL vmlinux 0x38c9c654 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x38d19300 nvm_dev_factory -EXPORT_SYMBOL vmlinux 0x38dfcc9f dev_get_nest_level -EXPORT_SYMBOL vmlinux 0x38e31626 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x38e45b33 fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x38f0101a netif_rx_ni -EXPORT_SYMBOL vmlinux 0x3906d2d4 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages -EXPORT_SYMBOL vmlinux 0x3909b25b clkdev_alloc -EXPORT_SYMBOL vmlinux 0x3925aa98 lro_flush_all -EXPORT_SYMBOL vmlinux 0x39395eb9 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393de488 d_invalidate -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x39567a42 devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0x395e4399 iget_locked -EXPORT_SYMBOL vmlinux 0x3972e289 sk_stream_write_space -EXPORT_SYMBOL vmlinux 0x39755275 __destroy_inode -EXPORT_SYMBOL vmlinux 0x3975f8d9 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x39793a85 arp_xmit -EXPORT_SYMBOL vmlinux 0x398a86ed nd_integrity_init -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399c9a96 force_sig -EXPORT_SYMBOL vmlinux 0x399e86c7 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler -EXPORT_SYMBOL vmlinux 0x39a20d6f netdev_warn -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39c556bd vfs_statfs -EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above -EXPORT_SYMBOL vmlinux 0x39f1d7f3 mntget -EXPORT_SYMBOL vmlinux 0x3a01f12c acl_by_type -EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify -EXPORT_SYMBOL vmlinux 0x3a0b2c07 d_instantiate -EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush -EXPORT_SYMBOL vmlinux 0x3a382843 pci_get_slot -EXPORT_SYMBOL vmlinux 0x3a3cb602 dst_release -EXPORT_SYMBOL vmlinux 0x3a67cdce __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x3a718f62 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3aafe185 security_mmap_file -EXPORT_SYMBOL vmlinux 0x3af9ab0f netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x3af9cd9e tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x3afd0563 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x3b201620 machine_real_restart -EXPORT_SYMBOL vmlinux 0x3b57eb1f free_user_ns -EXPORT_SYMBOL vmlinux 0x3b5c542a sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6f6cd2 udp_table -EXPORT_SYMBOL vmlinux 0x3b920b2d abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0x3b9b6cf8 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait -EXPORT_SYMBOL vmlinux 0x3bc1bd17 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x3bcb339e mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x3bec3269 __nd_iostat_start -EXPORT_SYMBOL vmlinux 0x3bec6ac5 generic_read_dir -EXPORT_SYMBOL vmlinux 0x3bf4429e bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x3c031bac param_get_byte -EXPORT_SYMBOL vmlinux 0x3c0fc2ea dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x3c114938 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x3c285b9a tcp_init_sock -EXPORT_SYMBOL vmlinux 0x3c2e774c gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c4ddc1b blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x3c5077e4 clk_register_clkdevs -EXPORT_SYMBOL vmlinux 0x3c587492 generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x3c745511 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c876ec5 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x3c9306da device_get_mac_address -EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x3cb54b6c cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0x3cbbbef8 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x3cd062b0 elevator_init -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cee17cb mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0x3cf81a49 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x3d1346e6 current_task -EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x3d1e7350 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x3d2c4c02 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x3d63481b generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x3d6b19e7 cfb_copyarea -EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc -EXPORT_SYMBOL vmlinux 0x3d9e1c55 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start -EXPORT_SYMBOL vmlinux 0x3da19c2c neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x3da47add inode_needs_sync -EXPORT_SYMBOL vmlinux 0x3da4900a stop_tty -EXPORT_SYMBOL vmlinux 0x3da9a87b param_set_ulong -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3df5a1bd blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x3df5de90 lock_fb_info -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e28fb61 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock -EXPORT_SYMBOL vmlinux 0x3e3ac71a frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x3e3c6f01 eth_header_cache -EXPORT_SYMBOL vmlinux 0x3e654f49 acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x3e6d4c1c sock_kfree_s -EXPORT_SYMBOL vmlinux 0x3e722aeb kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x3e7aff17 posix_test_lock -EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get -EXPORT_SYMBOL vmlinux 0x3ea61732 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x3ea8ccd5 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x3ec40c8d __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x3ed556c8 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x3ef78d80 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x3eff5ac2 intel_scu_ipc_writev -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock -EXPORT_SYMBOL vmlinux 0x3f21707f module_layout -EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x3f257516 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x3f28cfb5 __frontswap_test -EXPORT_SYMBOL vmlinux 0x3f3d9f12 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f52b46d tty_register_driver -EXPORT_SYMBOL vmlinux 0x3f5e87da dmam_pool_create -EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x3f7ad9fa ps2_init -EXPORT_SYMBOL vmlinux 0x3fa03cee phy_start -EXPORT_SYMBOL vmlinux 0x3faac9c8 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x3fb5cad9 input_unregister_device -EXPORT_SYMBOL vmlinux 0x3fc0a4ba inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x3fecb184 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x3fff658d inet_listen -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev -EXPORT_SYMBOL vmlinux 0x403d1e7c tcp_parse_options -EXPORT_SYMBOL vmlinux 0x40480671 nd_btt_probe -EXPORT_SYMBOL vmlinux 0x405069ce tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x405a93f9 scsi_host_put -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x406d2d87 key_validate -EXPORT_SYMBOL vmlinux 0x407c05e5 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x40836ce5 proto_register -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x40991aa2 d_set_d_op -EXPORT_SYMBOL vmlinux 0x40a17998 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b4c120 sock_get_timestampns -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0x40cac468 netdev_change_features -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40ec73d8 import_iovec -EXPORT_SYMBOL vmlinux 0x4102fc8f pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x4110f15e pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x412879cd invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x412c3d3b tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x41586d77 agp_enable -EXPORT_SYMBOL vmlinux 0x415b5b34 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x4167e407 phy_init_eee -EXPORT_SYMBOL vmlinux 0x4179aaad dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x41862ad4 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x41889c71 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x41926457 inode_set_flags -EXPORT_SYMBOL vmlinux 0x41b4f289 scsi_print_command -EXPORT_SYMBOL vmlinux 0x41bd660a dev_emerg -EXPORT_SYMBOL vmlinux 0x41bee8ac simple_statfs -EXPORT_SYMBOL vmlinux 0x41c42cf3 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x41e2e11b km_new_mapping -EXPORT_SYMBOL vmlinux 0x41ed7ed3 ab3100_event_register -EXPORT_SYMBOL vmlinux 0x41f976a8 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x42172a83 elv_unregister_queue -EXPORT_SYMBOL vmlinux 0x42245f26 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen -EXPORT_SYMBOL vmlinux 0x4241b236 user_revoke -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x4248b15a qdisc_destroy -EXPORT_SYMBOL vmlinux 0x424b0cae is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x426d6708 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x4279955a alloc_file -EXPORT_SYMBOL vmlinux 0x4280c1ff elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0x428848dd migrate_page -EXPORT_SYMBOL vmlinux 0x428b9f9d simple_rename -EXPORT_SYMBOL vmlinux 0x4292364c schedule -EXPORT_SYMBOL vmlinux 0x429630a9 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x42a189cd pci_release_regions -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42aee405 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache -EXPORT_SYMBOL vmlinux 0x42dd43a7 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x430108b3 inode_init_once -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4332ad64 d_rehash -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 -EXPORT_SYMBOL vmlinux 0x437797dc rwsem_wake -EXPORT_SYMBOL vmlinux 0x437f4d74 iov_iter_init -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x439d120b lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0x43aa487a skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x43aa60bc __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x43abe470 acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0x43b3c7e6 pv_mmu_ops -EXPORT_SYMBOL vmlinux 0x43b4350e scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x43ba0f3c simple_transaction_set -EXPORT_SYMBOL vmlinux 0x43c3bf61 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x43c5c00e nvm_register_target -EXPORT_SYMBOL vmlinux 0x43e6f0a1 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x43edb394 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x440425be led_update_brightness -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin -EXPORT_SYMBOL vmlinux 0x44613dc8 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x44621a70 inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0x44819d95 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x4482badb netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x449bb87c mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x449fe84b acpi_set_firmware_waking_vectors -EXPORT_SYMBOL vmlinux 0x44a96f8c ilookup -EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz -EXPORT_SYMBOL vmlinux 0x44b14c6e vga_switcheroo_get_client_state -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44b4be1c blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x44c02e5f blk_delay_queue -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44ecc7e3 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x45011c6c dm_put_device -EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x4523cf1d input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x454ae52a dev_disable_lro -EXPORT_SYMBOL vmlinux 0x45617300 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457dde48 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x459f86a9 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x45a57df3 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45dee454 bdi_init -EXPORT_SYMBOL vmlinux 0x45df95c9 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x45f05767 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x45f3db51 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x4621e41d mount_single -EXPORT_SYMBOL vmlinux 0x462913cd devm_gpio_request -EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count -EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy -EXPORT_SYMBOL vmlinux 0x462b2ddb igrab -EXPORT_SYMBOL vmlinux 0x464cd8c5 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x464d78e9 jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0x465854c3 loop_register_transfer -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46648ebd simple_write_end -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x4673c4f3 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x46841be5 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x46954070 tty_throttle -EXPORT_SYMBOL vmlinux 0x46b46100 agp_find_bridge -EXPORT_SYMBOL vmlinux 0x46b6e232 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x46cd4825 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x4702b6f2 nf_unregister_hook -EXPORT_SYMBOL vmlinux 0x4716ad15 scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0x472fdd67 bio_put -EXPORT_SYMBOL vmlinux 0x473be4ed kernel_getsockname -EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x474c9bc8 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0x4759b6c1 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x475e7ac5 phy_device_free -EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x47684cac sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x478b9f0d seq_dentry -EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq -EXPORT_SYMBOL vmlinux 0x478e314a free_netdev -EXPORT_SYMBOL vmlinux 0x4792d500 i8042_install_filter -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x47a2fe8a ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x47a37d2a cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x47a5bb8e tcp_release_cb -EXPORT_SYMBOL vmlinux 0x47aaf3f8 __blk_run_queue -EXPORT_SYMBOL vmlinux 0x47acebd3 vme_master_request -EXPORT_SYMBOL vmlinux 0x47b93337 fb_set_cmap -EXPORT_SYMBOL vmlinux 0x47c45d25 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x47c9ce37 pcim_pin_device -EXPORT_SYMBOL vmlinux 0x47eff5f8 dm_unregister_target -EXPORT_SYMBOL vmlinux 0x47f05eb0 udp_del_offload -EXPORT_SYMBOL vmlinux 0x47f9e4a7 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x48014c3c udplite_prot -EXPORT_SYMBOL vmlinux 0x480f3117 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x48117c78 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0x48180be6 tty_port_close_start -EXPORT_SYMBOL vmlinux 0x481902c1 fb_is_primary_device -EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x4831ba66 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x4834d61e cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x486360f0 netdev_features_change -EXPORT_SYMBOL vmlinux 0x486a6eaf lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x487d387e bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x48960a7f netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x489e2786 netif_napi_del -EXPORT_SYMBOL vmlinux 0x48a5a564 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x48a62149 wireless_send_event -EXPORT_SYMBOL vmlinux 0x48a9d6bf __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48cbd619 inet_ioctl -EXPORT_SYMBOL vmlinux 0x48e2c31d csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x494a55ff scsi_device_get -EXPORT_SYMBOL vmlinux 0x49582b22 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x4967cce7 con_is_bound -EXPORT_SYMBOL vmlinux 0x496c6d5b padata_free -EXPORT_SYMBOL vmlinux 0x498580e1 param_get_string -EXPORT_SYMBOL vmlinux 0x4989daf2 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x49b0130a ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49cb858a scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x49d0990d tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x49f3080a dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a107e21 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x4a48f1ed clear_nlink -EXPORT_SYMBOL vmlinux 0x4a5a29bc isapnp_protocol -EXPORT_SYMBOL vmlinux 0x4a619f83 memcpy -EXPORT_SYMBOL vmlinux 0x4ab90678 kill_bdev -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4abc730b netdev_info -EXPORT_SYMBOL vmlinux 0x4ac6cc19 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4ade1fce pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x4ae37300 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x4af4e60b put_io_context -EXPORT_SYMBOL vmlinux 0x4afa11da always_delete_dentry -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b00dc6d nvm_erase_blk -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x4b1fecc5 ps2_drain -EXPORT_SYMBOL vmlinux 0x4b42483e sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x4b5eae05 neigh_xmit -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b61ce2f netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0x4b9695e7 key_link -EXPORT_SYMBOL vmlinux 0x4b97d149 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x4ba91748 mmc_flush_cache -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat -EXPORT_SYMBOL vmlinux 0x4bbc7f88 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x4be85a03 memweight -EXPORT_SYMBOL vmlinux 0x4bf85cd8 vga_switcheroo_set_dynamic_switch -EXPORT_SYMBOL vmlinux 0x4c0472ea eth_change_mtu -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c125c5f n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x4c1d6079 pci_dev_put -EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c507c71 kill_pgrp -EXPORT_SYMBOL vmlinux 0x4c7f57ce dev_set_group -EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify -EXPORT_SYMBOL vmlinux 0x4c8f45bf done_path_create -EXPORT_SYMBOL vmlinux 0x4c9625d0 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x4c9b4354 scsi_remove_device -EXPORT_SYMBOL vmlinux 0x4cb8a767 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x4cc2650c blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x4cd91047 pci_disable_msix -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4ce53b7c d_lookup -EXPORT_SYMBOL vmlinux 0x4cea8302 ___preempt_schedule_notrace -EXPORT_SYMBOL vmlinux 0x4cfbfe8c pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x4d045584 agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0x4d0f4f6c pci_get_class -EXPORT_SYMBOL vmlinux 0x4d28104c flow_cache_init -EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask -EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x4d4aa462 sync_blockdev -EXPORT_SYMBOL vmlinux 0x4d5d9039 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x4d7a5f0d blk_start_queue -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4dbdb387 d_walk -EXPORT_SYMBOL vmlinux 0x4dcaf770 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4ded5404 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4dfdadc1 mutex_trylock -EXPORT_SYMBOL vmlinux 0x4e04c4e3 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x4e161064 qdisc_list_del -EXPORT_SYMBOL vmlinux 0x4e216337 inet6_bind -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e543594 bdi_destroy -EXPORT_SYMBOL vmlinux 0x4e580ba0 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x4e5c2afe posix_unblock_lock -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6b608c pci_request_region -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e95eb7a xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4ed63eaa fifo_set_limit -EXPORT_SYMBOL vmlinux 0x4ef4d86b dquot_quota_off -EXPORT_SYMBOL vmlinux 0x4f12d811 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f2f6794 vme_register_driver -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x4f582372 nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user -EXPORT_SYMBOL vmlinux 0x4f6b7606 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read -EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user -EXPORT_SYMBOL vmlinux 0x4fa783b9 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x4fb4b1c3 register_filesystem -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4fecaec2 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x4ff6bb07 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x4ff8a767 pci_map_biosrom -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x502f8fcf i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x5082deab dquot_quota_on -EXPORT_SYMBOL vmlinux 0x5087c926 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x5088f16a agp_copy_info -EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method -EXPORT_SYMBOL vmlinux 0x50a06f28 dm_register_target -EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x50bba577 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50eedeb8 printk -EXPORT_SYMBOL vmlinux 0x5106b710 simple_lookup -EXPORT_SYMBOL vmlinux 0x511202bb __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock -EXPORT_SYMBOL vmlinux 0x51771982 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x517f01f4 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x5186518f profile_pc -EXPORT_SYMBOL vmlinux 0x518ce7d1 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x519da1f2 phy_driver_register -EXPORT_SYMBOL vmlinux 0x519de790 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x51a428a6 sock_no_accept -EXPORT_SYMBOL vmlinux 0x51ac2c3a eisa_bus_type -EXPORT_SYMBOL vmlinux 0x51b52659 input_reset_device -EXPORT_SYMBOL vmlinux 0x51c3045c inet_put_port -EXPORT_SYMBOL vmlinux 0x51c3d8e5 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51e037c3 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data -EXPORT_SYMBOL vmlinux 0x520b3464 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x520d6baa scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x521c1029 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x5221d841 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x52371881 register_console -EXPORT_SYMBOL vmlinux 0x523c9edc skb_copy -EXPORT_SYMBOL vmlinux 0x52463adf tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x524fc2cd mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0x5271218d vme_lm_request -EXPORT_SYMBOL vmlinux 0x5276789d mmc_get_card -EXPORT_SYMBOL vmlinux 0x52770822 __dquot_free_space -EXPORT_SYMBOL vmlinux 0x52851f3c set_security_override -EXPORT_SYMBOL vmlinux 0x528bbde3 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x5292a683 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x529bd4af genl_notify -EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le -EXPORT_SYMBOL vmlinux 0x52b792e7 sk_capable -EXPORT_SYMBOL vmlinux 0x52bc1585 is_nd_btt -EXPORT_SYMBOL vmlinux 0x52cb8098 simple_fill_super -EXPORT_SYMBOL vmlinux 0x52fc6744 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x530b1e4c rdmsr_on_cpus -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid -EXPORT_SYMBOL vmlinux 0x53245515 intel_gmch_probe -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x534b0573 skb_dequeue -EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x5375677c sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x53867179 param_get_charp -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x53aff607 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x53b5bf52 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x53bd49b6 mdiobus_free -EXPORT_SYMBOL vmlinux 0x53c233d3 nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0x53f75712 tty_name -EXPORT_SYMBOL vmlinux 0x53fea6ad generic_ro_fops -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x540d10a5 security_task_getsecid -EXPORT_SYMBOL vmlinux 0x54371489 bio_unmap_user -EXPORT_SYMBOL vmlinux 0x543777dc security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x5441c40e nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register -EXPORT_SYMBOL vmlinux 0x54612bb9 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler -EXPORT_SYMBOL vmlinux 0x549745e6 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x54988ce5 submit_bio -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54c64c91 bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x54d179ad xfrm_lookup -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54f24d1a fence_default_wait -EXPORT_SYMBOL vmlinux 0x551b19db nf_hook_slow -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551bedc7 fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x55280a80 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x5584bc90 inet_add_offload -EXPORT_SYMBOL vmlinux 0x559f0dff input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x559fce34 kobject_put -EXPORT_SYMBOL vmlinux 0x55b80aac padata_alloc -EXPORT_SYMBOL vmlinux 0x55bbc74f iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x55ce4ac0 i2c_use_client -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55db3f7b blk_get_request -EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait -EXPORT_SYMBOL vmlinux 0x55fccb69 processors -EXPORT_SYMBOL vmlinux 0x5614ed17 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x562618ba ps2_end_command -EXPORT_SYMBOL vmlinux 0x56263596 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x5642d7ac scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x56630ad0 __genl_register_family -EXPORT_SYMBOL vmlinux 0x56668e4e bioset_integrity_free -EXPORT_SYMBOL vmlinux 0x5676910c sk_stream_error -EXPORT_SYMBOL vmlinux 0x5676a3e5 intel_scu_ipc_ioread8 -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56da3ab4 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x56e7322c vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x56ea2eac sock_update_memcg -EXPORT_SYMBOL vmlinux 0x56ed78d6 dquot_get_state -EXPORT_SYMBOL vmlinux 0x56fe079d i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x5705088a __vmalloc -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x572e99a5 kunmap_high -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x5751f825 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x5759fc94 end_page_writeback -EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x57673ae4 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x57b0be48 mmc_can_erase -EXPORT_SYMBOL vmlinux 0x57ba72ab fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits -EXPORT_SYMBOL vmlinux 0x57fee591 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x58008a02 mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0x58072afb skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x5823bd68 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x58324461 agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x58420b7d dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x5851d7ce set_disk_ro -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x585aa1f1 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem -EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x58838c3a kmap_high -EXPORT_SYMBOL vmlinux 0x589f46e7 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x58b49432 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58df0053 pci_set_master -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58ee758e free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x58fef6f8 ist_info -EXPORT_SYMBOL vmlinux 0x5908da0a proc_remove -EXPORT_SYMBOL vmlinux 0x591a3480 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x598128be seq_write -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59917d65 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59b7c472 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register -EXPORT_SYMBOL vmlinux 0x59c988bb mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a11e0b6 bio_copy_kern -EXPORT_SYMBOL vmlinux 0x5a2ffe4e d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 -EXPORT_SYMBOL vmlinux 0x5a4e156d backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x5a53a11c simple_readpage -EXPORT_SYMBOL vmlinux 0x5a593c6b ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x5a60ce68 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x5a72421f blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit -EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x5adb2561 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b00a667 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem -EXPORT_SYMBOL vmlinux 0x5b3ebc97 vme_slave_request -EXPORT_SYMBOL vmlinux 0x5b4fe1a5 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x5b8b1550 mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x5b95abbb __neigh_event_send -EXPORT_SYMBOL vmlinux 0x5b9f1942 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x5ba63611 security_inode_readlink -EXPORT_SYMBOL vmlinux 0x5bc8d583 copy_from_user_overflow -EXPORT_SYMBOL vmlinux 0x5bcff91a pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x5bd87be7 freeze_super -EXPORT_SYMBOL vmlinux 0x5bf4af8e vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x5bfbdee2 inet6_protos -EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT -EXPORT_SYMBOL vmlinux 0x5c09fca5 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x5c112429 inc_nlink -EXPORT_SYMBOL vmlinux 0x5c1ab2b3 param_ops_short -EXPORT_SYMBOL vmlinux 0x5c1b26d2 kthread_bind -EXPORT_SYMBOL vmlinux 0x5c3f4b3f pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0x5c545234 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x5c55279c bio_copy_data -EXPORT_SYMBOL vmlinux 0x5c6f761f mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x5c933ccd generic_permission -EXPORT_SYMBOL vmlinux 0x5c9ff6c3 input_set_keycode -EXPORT_SYMBOL vmlinux 0x5ccaa92f skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x5cd9c8a0 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cf6cb45 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x5cfec7d4 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x5d1864c0 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x5d1d1218 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x5d2e0057 x86_hyper_ms_hyperv -EXPORT_SYMBOL vmlinux 0x5d339015 skb_split -EXPORT_SYMBOL vmlinux 0x5d34ae70 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d6dadc6 page_cache_next_hole -EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved -EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done -EXPORT_SYMBOL vmlinux 0x5d97d902 thaw_bdev -EXPORT_SYMBOL vmlinux 0x5da316fd neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x5da9f5a3 i2c_master_send -EXPORT_SYMBOL vmlinux 0x5db7be0a register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x5db97f1c pci_release_region -EXPORT_SYMBOL vmlinux 0x5ddd2e41 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x5de140a6 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x5dfa6186 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x5dffb9b0 x86_hyper_vmware -EXPORT_SYMBOL vmlinux 0x5e228aef del_gendisk -EXPORT_SYMBOL vmlinux 0x5e2f16d1 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x5e564013 swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x5e5d5da0 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x5e757f77 neigh_lookup -EXPORT_SYMBOL vmlinux 0x5e832d80 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x5e8398d6 skb_pull -EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ef5ee82 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f02fda4 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f102065 generic_perform_write -EXPORT_SYMBOL vmlinux 0x5f1a4ccf intel_scu_ipc_update_register -EXPORT_SYMBOL vmlinux 0x5f22b338 cdev_del -EXPORT_SYMBOL vmlinux 0x5f3767d4 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x5f3d9727 vfs_llseek -EXPORT_SYMBOL vmlinux 0x5f4dc2bf ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x5f532881 block_write_full_page -EXPORT_SYMBOL vmlinux 0x5f56577f __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x5f700f74 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x5fa15d96 padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x5fa25131 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x5fa61902 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x5fa9c996 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0x5fac7a9b phy_find_first -EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init -EXPORT_SYMBOL vmlinux 0x5fc3a8be pci_scan_slot -EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x5fd835b7 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5ff51380 sk_dst_check -EXPORT_SYMBOL vmlinux 0x5ff72698 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x6002244f dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600d8b26 param_get_uint -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x603c2d94 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe -EXPORT_SYMBOL vmlinux 0x6045a3af mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0x6052d355 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x60856063 nobh_writepage -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x60980d77 agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x60bedc75 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x60d1c1c7 ata_port_printk -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy -EXPORT_SYMBOL vmlinux 0x611b4365 uart_resume_port -EXPORT_SYMBOL vmlinux 0x611b9de3 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x612e6e0e kernel_param_lock -EXPORT_SYMBOL vmlinux 0x614d9f49 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x615237b9 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x617b486e dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x61b1eeea vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c291dc blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x61ef8a15 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable -EXPORT_SYMBOL vmlinux 0x6206085b cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x62128203 lookup_one_len -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x62296295 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event -EXPORT_SYMBOL vmlinux 0x6241a2ab __copy_from_user_ll_nocache -EXPORT_SYMBOL vmlinux 0x6255100f fs_bio_set -EXPORT_SYMBOL vmlinux 0x625c0c5c dev_notice -EXPORT_SYMBOL vmlinux 0x6267d76e netlink_ack -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62769411 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62bd2a91 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x62c89c02 pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x62ca14f9 blk_rq_init -EXPORT_SYMBOL vmlinux 0x62d36e5e rtnl_unicast -EXPORT_SYMBOL vmlinux 0x62d5c975 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0x62e52a84 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x62e6add1 irq_to_desc -EXPORT_SYMBOL vmlinux 0x62ec85ce devm_memunmap -EXPORT_SYMBOL vmlinux 0x62ef7646 copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x631a2b03 tty_write_room -EXPORT_SYMBOL vmlinux 0x632db954 km_policy_notify -EXPORT_SYMBOL vmlinux 0x63378d43 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x634b5caa netdev_err -EXPORT_SYMBOL vmlinux 0x63500160 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0x63721516 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0x637e7839 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x637fcc38 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x6388591c down_timeout -EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x63a44fb3 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x63a59dea nf_log_unset -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c9be6a inode_dio_wait -EXPORT_SYMBOL vmlinux 0x63d174f1 sock_wake_async -EXPORT_SYMBOL vmlinux 0x63d57a95 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63ef1823 param_get_bool -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x642b0843 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x64351bc5 vfs_readv -EXPORT_SYMBOL vmlinux 0x644452ba scsi_print_sense -EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0x6461c008 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x646bde41 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x6470fdce tcf_em_register -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion -EXPORT_SYMBOL vmlinux 0x64be4831 seq_putc -EXPORT_SYMBOL vmlinux 0x64d2a398 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x64dbb9cb skb_queue_purge -EXPORT_SYMBOL vmlinux 0x64e9f8f6 path_nosuid -EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb -EXPORT_SYMBOL vmlinux 0x64f6c522 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x64f9261c dma_pool_create -EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0x65022a93 dst_alloc -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x654d21a8 eisa_driver_register -EXPORT_SYMBOL vmlinux 0x6558ffed neigh_parms_release -EXPORT_SYMBOL vmlinux 0x655db2b2 sock_create -EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc -EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x657cb181 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x65862df6 revalidate_disk -EXPORT_SYMBOL vmlinux 0x65863fd5 current_fs_time -EXPORT_SYMBOL vmlinux 0x65a295bb atomic64_xchg_cx8 -EXPORT_SYMBOL vmlinux 0x65a36a72 inet6_release -EXPORT_SYMBOL vmlinux 0x65b72967 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x65b77a5a blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry -EXPORT_SYMBOL vmlinux 0x65d4bcf8 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x65fbb554 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x661c771f pid_task -EXPORT_SYMBOL vmlinux 0x66276847 simple_getattr -EXPORT_SYMBOL vmlinux 0x66355efc vprintk -EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0x6662f0f9 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0x667e4e80 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x668eb393 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x669bf80b proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x66f18107 may_umount -EXPORT_SYMBOL vmlinux 0x670b3e96 mmc_erase -EXPORT_SYMBOL vmlinux 0x670ba442 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x6726de2c pci_iomap_range -EXPORT_SYMBOL vmlinux 0x6727cc02 register_gifconf -EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x67412201 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x67499cc4 down_write -EXPORT_SYMBOL vmlinux 0x674fc0c3 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x679d900b __skb_checksum -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c40994 xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0x67c59c81 inode_permission -EXPORT_SYMBOL vmlinux 0x67d4a8d1 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x67d96eb6 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0x67feb347 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x683b06f1 cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x683d7079 kernel_read -EXPORT_SYMBOL vmlinux 0x683dd8bf netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x685eca19 i2c_master_recv -EXPORT_SYMBOL vmlinux 0x68663758 dev_alert -EXPORT_SYMBOL vmlinux 0x686a2ae1 blk_complete_request -EXPORT_SYMBOL vmlinux 0x6879990c agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a0e2d1 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x68ac015d ll_rw_block -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68ba9477 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x68dabc03 security_path_mknod -EXPORT_SYMBOL vmlinux 0x68e87dc5 bh_submit_read -EXPORT_SYMBOL vmlinux 0x68f5d8bc __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x68f894cb mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x6920d472 netlink_set_err -EXPORT_SYMBOL vmlinux 0x694e595c ata_dev_printk -EXPORT_SYMBOL vmlinux 0x69537aac set_pages_array_uc -EXPORT_SYMBOL vmlinux 0x6961937f sync_filesystem -EXPORT_SYMBOL vmlinux 0x6965954c vc_resize -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 -EXPORT_SYMBOL vmlinux 0x6995a69f unregister_binfmt -EXPORT_SYMBOL vmlinux 0x69a02536 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69e5c24d lease_modify -EXPORT_SYMBOL vmlinux 0x69e9da10 would_dump -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a1b2587 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x6a1b3f1b key_revoke -EXPORT_SYMBOL vmlinux 0x6a27bfce csum_partial_copy_generic -EXPORT_SYMBOL vmlinux 0x6a2e9592 seq_pad -EXPORT_SYMBOL vmlinux 0x6a32f2e5 kill_block_super -EXPORT_SYMBOL vmlinux 0x6a4f5bc0 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0x6a51dc07 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a60277d acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x6a61149f param_ops_byte -EXPORT_SYMBOL vmlinux 0x6a61bb0d simple_transaction_read -EXPORT_SYMBOL vmlinux 0x6a6a3234 kmap_atomic_prot -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a8469ff scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x6a8e7f57 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x6a91404b blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x6a9243d4 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x6a9ae232 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x6aafbb43 eth_header_parse -EXPORT_SYMBOL vmlinux 0x6abfc772 scsi_device_put -EXPORT_SYMBOL vmlinux 0x6ac21631 security_path_unlink -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be -EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6ade3a20 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x6ae10db5 phy_attach -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b084bf5 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x6b0b241d jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x6b126d77 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b351511 d_tmpfile -EXPORT_SYMBOL vmlinux 0x6b4bd456 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc7c558 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x6bcf066d _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x6bd401b9 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x6bd42a7e nf_log_trace -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops -EXPORT_SYMBOL vmlinux 0x6bf2596b __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x6c034e33 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn -EXPORT_SYMBOL vmlinux 0x6c2e3320 strncmp -EXPORT_SYMBOL vmlinux 0x6c37398d blk_put_queue -EXPORT_SYMBOL vmlinux 0x6c3c855d input_allocate_device -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c65c17b skb_insert -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6ca2fdf4 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x6ca6b9b2 devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0x6cccc62a release_pages -EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6cdf1448 bio_map_kern -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d1d5d9b iosf_mbi_write -EXPORT_SYMBOL vmlinux 0x6d1f5ad1 input_grab_device -EXPORT_SYMBOL vmlinux 0x6d1ff343 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x6d25fde8 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d2e079e poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0x6d2fb77b pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x6d3264dc d_prune_aliases -EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 -EXPORT_SYMBOL vmlinux 0x6d33b490 devm_request_resource -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d3568d3 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x6d42b12c flush_signals -EXPORT_SYMBOL vmlinux 0x6d5313c1 arch_dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0x6d63bad2 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x6d6edebb tcp_sendpage -EXPORT_SYMBOL vmlinux 0x6d9885cd locks_init_lock -EXPORT_SYMBOL vmlinux 0x6dbb5208 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible -EXPORT_SYMBOL vmlinux 0x6dc32f26 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x6dc6dd56 down -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6dfbfc70 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x6e4651aa ping_prot -EXPORT_SYMBOL vmlinux 0x6e499a16 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x6e5c8359 path_is_under -EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6e65a4f1 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e8d065f bio_integrity_free -EXPORT_SYMBOL vmlinux 0x6e92948d abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6eaaba90 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x6eb38809 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x6ed4b96c security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x6ee9bfe4 redraw_screen -EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x6ef8c9ba neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x6f06c159 pci_restore_state -EXPORT_SYMBOL vmlinux 0x6f0ae3ed __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x6f1bfb7c inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x6f1c64df inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock -EXPORT_SYMBOL vmlinux 0x6f321be1 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x6f34a336 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x6f43f3c5 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device -EXPORT_SYMBOL vmlinux 0x6f55bacc vfs_setpos -EXPORT_SYMBOL vmlinux 0x6f7b2ff6 input_release_device -EXPORT_SYMBOL vmlinux 0x6f88b443 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6f8d4d98 sock_init_data -EXPORT_SYMBOL vmlinux 0x6fab2003 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x6fb48d4f mount_pseudo -EXPORT_SYMBOL vmlinux 0x6fb70020 netdev_crit -EXPORT_SYMBOL vmlinux 0x6fbd87dc file_ns_capable -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0x7048abad dquot_enable -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x705f7813 nd_device_register -EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x707f93dd preempt_schedule -EXPORT_SYMBOL vmlinux 0x70814150 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x7088ce72 printk_emit -EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x70965c3a filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x70aaf7b7 dev_uc_add -EXPORT_SYMBOL vmlinux 0x70bb5758 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x70c48e5c jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x70d1f8f3 strncat -EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x714886da kobject_init -EXPORT_SYMBOL vmlinux 0x715024ac phy_device_register -EXPORT_SYMBOL vmlinux 0x715b6c48 param_set_ullong -EXPORT_SYMBOL vmlinux 0x715cd007 blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71c4408a dev_deactivate -EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x720c7d37 udp_ioctl -EXPORT_SYMBOL vmlinux 0x7212325e nf_log_unregister -EXPORT_SYMBOL vmlinux 0x721a801e mntput -EXPORT_SYMBOL vmlinux 0x7236310a mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0x7252b57b tty_hangup -EXPORT_SYMBOL vmlinux 0x72597436 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x727f6149 dev_addr_add -EXPORT_SYMBOL vmlinux 0x72828b4a tty_port_open -EXPORT_SYMBOL vmlinux 0x72aca763 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0x72ae2ace input_open_device -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x72e66392 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x7303bd00 up_write -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x732dc4bd ipv4_specific -EXPORT_SYMBOL vmlinux 0x7335e47e pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x734956ba tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x7357bbef pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x7359a862 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay -EXPORT_SYMBOL vmlinux 0x7364fec6 set_pages_array_wc -EXPORT_SYMBOL vmlinux 0x736d0677 sock_no_bind -EXPORT_SYMBOL vmlinux 0x737e8786 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get -EXPORT_SYMBOL vmlinux 0x738803e6 strnlen -EXPORT_SYMBOL vmlinux 0x738b2dcf twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x7394402b swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x739c8b95 uart_add_one_port -EXPORT_SYMBOL vmlinux 0x73bdbf9b block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable -EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x73ff24c0 nvm_get_blk -EXPORT_SYMBOL vmlinux 0x73ff3ef9 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x7409637d agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus -EXPORT_SYMBOL vmlinux 0x74255256 cap_mmap_file -EXPORT_SYMBOL vmlinux 0x74294963 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0x743b4ae3 atomic64_inc_not_zero_cx8 -EXPORT_SYMBOL vmlinux 0x744006ac vme_bus_num -EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x7473dd65 nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0x747e8387 find_vma -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x74b0b2dc inet_frags_fini -EXPORT_SYMBOL vmlinux 0x74bb020a __scm_send -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74e07e48 rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0x74e5c98f ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74edaab9 cont_write_begin -EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x75271716 save_processor_state -EXPORT_SYMBOL vmlinux 0x7531e3dc acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x7541037c dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x7541f1a7 dst_discard_out -EXPORT_SYMBOL vmlinux 0x754f0f59 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x7587410c neigh_seq_next -EXPORT_SYMBOL vmlinux 0x758f24eb ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x758fe7d8 padata_start -EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 -EXPORT_SYMBOL vmlinux 0x75bc549a x86_cpu_to_apicid -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75c8e732 genphy_update_link -EXPORT_SYMBOL vmlinux 0x75d21809 vprintk_emit -EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760c830b nonseekable_open -EXPORT_SYMBOL vmlinux 0x76295ad2 bmap -EXPORT_SYMBOL vmlinux 0x762add85 atomic64_inc_return_cx8 -EXPORT_SYMBOL vmlinux 0x7641860a tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x764cee67 padata_stop -EXPORT_SYMBOL vmlinux 0x7650ecd2 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append -EXPORT_SYMBOL vmlinux 0x7669cc76 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc -EXPORT_SYMBOL vmlinux 0x7684d904 neigh_table_init -EXPORT_SYMBOL vmlinux 0x7692aa06 abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x76a6e932 serio_close -EXPORT_SYMBOL vmlinux 0x76aeab08 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x76b1bc55 nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x76ce31be inode_get_bytes -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be -EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order -EXPORT_SYMBOL vmlinux 0x76f92b9b scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x770a0036 isapnp_cfg_begin -EXPORT_SYMBOL vmlinux 0x770ef532 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x773fcee9 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x776e4040 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x777e4c2c d_add_ci -EXPORT_SYMBOL vmlinux 0x77968b3c inet_shutdown -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77b8227d write_cache_pages -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77e08cd1 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x77e371e1 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x77ea14fa mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x77ec5fea vlan_vid_del -EXPORT_SYMBOL vmlinux 0x780e51bd blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt -EXPORT_SYMBOL vmlinux 0x781046b6 param_ops_bint -EXPORT_SYMBOL vmlinux 0x781223c9 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x7818ff00 proc_douintvec -EXPORT_SYMBOL vmlinux 0x78235176 scsi_dma_map -EXPORT_SYMBOL vmlinux 0x782567ec memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x7834ad07 single_open -EXPORT_SYMBOL vmlinux 0x7838de77 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x78423b49 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x784515a1 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x7856fefb param_set_ushort -EXPORT_SYMBOL vmlinux 0x7857880b agp_unbind_memory -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a0319a simple_transaction_release -EXPORT_SYMBOL vmlinux 0x78a5ff8a fence_add_callback -EXPORT_SYMBOL vmlinux 0x78aa8341 dquot_resume -EXPORT_SYMBOL vmlinux 0x78aef09c vga_tryget -EXPORT_SYMBOL vmlinux 0x78c7cf93 register_netdevice -EXPORT_SYMBOL vmlinux 0x78d63f3b swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e739aa up -EXPORT_SYMBOL vmlinux 0x78e866a9 unregister_nls -EXPORT_SYMBOL vmlinux 0x78ef60b8 init_task -EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method -EXPORT_SYMBOL vmlinux 0x790da7d8 kern_path_create -EXPORT_SYMBOL vmlinux 0x79127c20 scsi_execute -EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock -EXPORT_SYMBOL vmlinux 0x79363c41 eisa_driver_unregister -EXPORT_SYMBOL vmlinux 0x7941407e jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x794a98ef dm_put_table_device -EXPORT_SYMBOL vmlinux 0x79679064 bd_set_size -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x79a95a16 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79e449d2 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x79fd5d60 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x7a16d1cf agp_put_bridge -EXPORT_SYMBOL vmlinux 0x7a23add9 led_blink_set -EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 -EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a33a8b1 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x7a3944b3 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x7a4128a8 skb_find_text -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a4648bf load_nls -EXPORT_SYMBOL vmlinux 0x7a5e6cb9 devm_clk_put -EXPORT_SYMBOL vmlinux 0x7a68e00d __getblk_gfp -EXPORT_SYMBOL vmlinux 0x7a81480b jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x7a84eb29 ppp_input_error -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ac5f7a7 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x7accce24 kobject_del -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user -EXPORT_SYMBOL vmlinux 0x7af01c1b tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf -EXPORT_SYMBOL vmlinux 0x7b04cf92 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x7b05c834 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x7b082d38 backlight_force_update -EXPORT_SYMBOL vmlinux 0x7b116748 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x7b134ddf acpi_get_name -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress -EXPORT_SYMBOL vmlinux 0x7b241d22 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x7b26adda unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x7b359c74 bio_integrity_endio -EXPORT_SYMBOL vmlinux 0x7b44121a inet_stream_ops -EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7b635087 pnp_possible_config -EXPORT_SYMBOL vmlinux 0x7b7a93b3 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x7b7c26b7 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x7b7dd072 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x7b904713 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x7bac99a5 seq_vprintf -EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x7baf2673 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x7bc66242 dst_destroy -EXPORT_SYMBOL vmlinux 0x7bed4f94 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c16ca97 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c250a3c xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c53f26a tcf_hash_insert -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c63ab0b kernel_bind -EXPORT_SYMBOL vmlinux 0x7c831c2e phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7ca42468 ip_ct_attach -EXPORT_SYMBOL vmlinux 0x7ca50bf8 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0x7cb07b20 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cb41d38 bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x7cb57566 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x7cb74216 generic_file_open -EXPORT_SYMBOL vmlinux 0x7cbb1ade sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x7cc0dabc generic_fillattr -EXPORT_SYMBOL vmlinux 0x7cdc9213 blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cfe51ad xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0x7d0ac428 md_error -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d31aa39 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x7d3a124d param_get_short -EXPORT_SYMBOL vmlinux 0x7d438318 pci_iounmap -EXPORT_SYMBOL vmlinux 0x7d56548c end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x7d588a92 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x7d5c6eb9 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d74982e key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x7d8489ce seq_escape -EXPORT_SYMBOL vmlinux 0x7d8a3a87 tty_set_operations -EXPORT_SYMBOL vmlinux 0x7d8a4ab6 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x7d8fd50d peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port -EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x7da85af3 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x7db11b61 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk -EXPORT_SYMBOL vmlinux 0x7de369a4 blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7dfaa661 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x7e0491ed sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x7e0e349d bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x7e53487b xfrm_state_add -EXPORT_SYMBOL vmlinux 0x7e5c35b1 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x7e69c7c7 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit -EXPORT_SYMBOL vmlinux 0x7e80d946 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x7e9324f8 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x7ead89e8 param_ops_string -EXPORT_SYMBOL vmlinux 0x7eaf8f23 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x7ec9bed0 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x7ecc707d agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0x7edb114b phy_device_remove -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7ee73c0c memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0x7ef864de tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f10b2b2 nd_device_unregister -EXPORT_SYMBOL vmlinux 0x7f170291 request_key -EXPORT_SYMBOL vmlinux 0x7f2008c7 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f3d551a jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x7f4e7a59 mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f6e0bb1 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x7f7a7030 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x7f889436 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x7f8d38bd freeze_bdev -EXPORT_SYMBOL vmlinux 0x7f99be99 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x7faaf9f6 dma_supported -EXPORT_SYMBOL vmlinux 0x7fc804dc __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x7fd87cbb block_write_begin -EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7ff4c845 dma_release_declared_memory -EXPORT_SYMBOL vmlinux 0x805b0944 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0x805b7980 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x808228bb pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x8090cb2d from_kuid -EXPORT_SYMBOL vmlinux 0x8092647d scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy -EXPORT_SYMBOL vmlinux 0x80a0102a dev_remove_offload -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d2f2bf alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80d9ca85 paravirt_ticketlocks_enabled -EXPORT_SYMBOL vmlinux 0x80e9a1db skb_unlink -EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x80f3bddf seq_file_path -EXPORT_SYMBOL vmlinux 0x80fd50a0 d_make_root -EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x81191596 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x8131e9c8 do_truncate -EXPORT_SYMBOL vmlinux 0x813b6b5a vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table -EXPORT_SYMBOL vmlinux 0x8149eae9 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x814ce4bc blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815c56d0 cpu_present_mask -EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x816e8b13 put_cmsg -EXPORT_SYMBOL vmlinux 0x817ca9ec ip_options_compile -EXPORT_SYMBOL vmlinux 0x819e3f99 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x81c9e0ac blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x81d23007 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x81d52ce3 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81e79a9f dev_err -EXPORT_SYMBOL vmlinux 0x81f450f5 seq_puts -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0x821d13da generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x82277cc8 get_disk -EXPORT_SYMBOL vmlinux 0x8235805b memmove -EXPORT_SYMBOL vmlinux 0x82524b3c scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x827f82af genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x829534b3 fence_free -EXPORT_SYMBOL vmlinux 0x829ba629 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82af267c register_qdisc -EXPORT_SYMBOL vmlinux 0x82c09361 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x82e9f00b __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x82f8248d follow_pfn -EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot -EXPORT_SYMBOL vmlinux 0x8329e6f0 memset -EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x8343f839 revert_creds -EXPORT_SYMBOL vmlinux 0x834e80c5 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x8382e59a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83a4e699 param_ops_long -EXPORT_SYMBOL vmlinux 0x83ab6465 d_splice_alias -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83c24adb jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83c7350c agp_create_memory -EXPORT_SYMBOL vmlinux 0x83e50a5b page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x83f02413 pnp_register_driver -EXPORT_SYMBOL vmlinux 0x83f53dce iunique -EXPORT_SYMBOL vmlinux 0x83fd4816 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x840aef32 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x84156c75 poll_freewait -EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes -EXPORT_SYMBOL vmlinux 0x848f29fc migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x849e69aa from_kuid_munged -EXPORT_SYMBOL vmlinux 0x84cd1699 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x84e57df5 dma_mark_declared_memory_occupied -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x85162318 netif_device_detach -EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue -EXPORT_SYMBOL vmlinux 0x8540324c jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x85511412 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes -EXPORT_SYMBOL vmlinux 0x857d2eee scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x858a5f70 icmp_send -EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem -EXPORT_SYMBOL vmlinux 0x8595db7a kill_anon_super -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85c2802c mmc_power_save_host -EXPORT_SYMBOL vmlinux 0x85d7f263 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85ed145b pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu -EXPORT_SYMBOL vmlinux 0x86256eed tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x8638309d sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x863da7a9 netpoll_setup -EXPORT_SYMBOL vmlinux 0x8649f73c cfb_fillrect -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x86b02695 param_set_invbool -EXPORT_SYMBOL vmlinux 0x86c35ebf d_drop -EXPORT_SYMBOL vmlinux 0x86e262c9 devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0x86e63ef7 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x87031d23 devm_clk_get -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x876ae99e uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write -EXPORT_SYMBOL vmlinux 0x877bc78e elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0x877d3cad blk_recount_segments -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x878cd015 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x878d027f __free_pages -EXPORT_SYMBOL vmlinux 0x879c796c wake_up_process -EXPORT_SYMBOL vmlinux 0x87a8e24b dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0x87b29080 dcache_dir_close -EXPORT_SYMBOL vmlinux 0x87d31ac6 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x87d54bed scmd_printk -EXPORT_SYMBOL vmlinux 0x87f3b314 agp_backend_release -EXPORT_SYMBOL vmlinux 0x88023f3b vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x880fe97f input_register_device -EXPORT_SYMBOL vmlinux 0x881c213a devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x882a97d9 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x88bf002a ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x88bfa4d7 mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0x88d0a3f9 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx -EXPORT_SYMBOL vmlinux 0x894c2541 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x895164ba zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x89557a0f generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x8957ce94 soft_cursor -EXPORT_SYMBOL vmlinux 0x895d3e4a km_is_alive -EXPORT_SYMBOL vmlinux 0x896c50b7 md_update_sb -EXPORT_SYMBOL vmlinux 0x89a16861 cdrom_release -EXPORT_SYMBOL vmlinux 0x89a3b429 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x89a84b29 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x89d91734 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x89f8c0fd blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4d30f4 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a66ad52 acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x8a77ebd5 phy_suspend -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error -EXPORT_SYMBOL vmlinux 0x8a8991fc locks_copy_lock -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8ae946c3 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x8aefe1c2 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x8b0263be mmc_request_done -EXPORT_SYMBOL vmlinux 0x8b03a62b tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x8b141f9a netdev_printk -EXPORT_SYMBOL vmlinux 0x8b18496f __copy_to_user_ll -EXPORT_SYMBOL vmlinux 0x8b284fc7 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x8b2a1e71 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b9360b0 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x8b9547bd scsi_remove_host -EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8bb324e9 fsync_bdev -EXPORT_SYMBOL vmlinux 0x8bb4d467 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x8bcd683f remove_arg_zero -EXPORT_SYMBOL vmlinux 0x8c090e08 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0x8c093878 pnp_start_dev -EXPORT_SYMBOL vmlinux 0x8c097505 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 -EXPORT_SYMBOL vmlinux 0x8c1c4a27 down_write_trylock -EXPORT_SYMBOL vmlinux 0x8c3f5d66 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x8c580cb9 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c6552af inet_getname -EXPORT_SYMBOL vmlinux 0x8c673836 follow_down_one -EXPORT_SYMBOL vmlinux 0x8c6f0499 __napi_complete -EXPORT_SYMBOL vmlinux 0x8c848b3e dev_open -EXPORT_SYMBOL vmlinux 0x8c889d50 __lock_page -EXPORT_SYMBOL vmlinux 0x8c8c677e dqget -EXPORT_SYMBOL vmlinux 0x8c93fb45 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x8ca53916 bio_chain -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cd03332 dma_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8cdbe935 sock_no_connect -EXPORT_SYMBOL vmlinux 0x8ce90992 devm_ioremap -EXPORT_SYMBOL vmlinux 0x8d030ede adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x8d26e8a9 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x8d34c811 icmpv6_send -EXPORT_SYMBOL vmlinux 0x8d4f2350 lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d5c7121 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x8d617207 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x8d638a85 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x8d649b41 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 -EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove -EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface -EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init -EXPORT_SYMBOL vmlinux 0x8db44985 dquot_acquire -EXPORT_SYMBOL vmlinux 0x8dc30825 vfs_writev -EXPORT_SYMBOL vmlinux 0x8dc6e564 restore_processor_state -EXPORT_SYMBOL vmlinux 0x8dda8eb7 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x8dde5ace mmc_register_driver -EXPORT_SYMBOL vmlinux 0x8ddf0da9 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x8de7989c debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x8dfcacd5 have_submounts -EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block -EXPORT_SYMBOL vmlinux 0x8e08137a tcp_check_req -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e7a6841 arp_create -EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x8e921a37 genphy_suspend -EXPORT_SYMBOL vmlinux 0x8e9ccaa9 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler -EXPORT_SYMBOL vmlinux 0x8eb8f3ab pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x8ec15c4f dev_get_stats -EXPORT_SYMBOL vmlinux 0x8ec6f890 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x8eccc13e i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x8ecfd68d acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x8ed0823f sk_wait_data -EXPORT_SYMBOL vmlinux 0x8f073bcc clkdev_add -EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus -EXPORT_SYMBOL vmlinux 0x8f5af992 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x8f611bd4 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x8f649f74 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x8f899e75 skb_clone -EXPORT_SYMBOL vmlinux 0x8f920734 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 -EXPORT_SYMBOL vmlinux 0x8fa34955 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x8fa87c7a netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x8fbe860e kernel_getpeername -EXPORT_SYMBOL vmlinux 0x8fc224f9 drop_super -EXPORT_SYMBOL vmlinux 0x8fc93117 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x8fd1152e _raw_write_unlock -EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc -EXPORT_SYMBOL vmlinux 0x8feccda7 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x8ff4079b pv_irq_ops -EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 -EXPORT_SYMBOL vmlinux 0x90189441 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0x90252c60 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x903393b9 acpi_device_hid -EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector -EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent -EXPORT_SYMBOL vmlinux 0x906cea04 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x907da5e0 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0x90871f13 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x90cebee6 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x90ee056f sget_userns -EXPORT_SYMBOL vmlinux 0x90f9ddda vfs_rename -EXPORT_SYMBOL vmlinux 0x90fece7c acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0x912e865d dma_common_mmap -EXPORT_SYMBOL vmlinux 0x9131c7ca sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x9142570a jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x9152f991 sock_i_ino -EXPORT_SYMBOL vmlinux 0x9153894f alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x915d531c vga_put -EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb -EXPORT_SYMBOL vmlinux 0x9161464e neigh_event_ns -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x9174c77a __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x91829e03 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x918a5347 fd_install -EXPORT_SYMBOL vmlinux 0x91936bc0 free_page_put_link -EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init -EXPORT_SYMBOL vmlinux 0x91a54906 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x91ab8bd6 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x91be94dd ip_check_defrag -EXPORT_SYMBOL vmlinux 0x91c7de73 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x92230bfd jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x922c7e00 kunmap -EXPORT_SYMBOL vmlinux 0x9235ef36 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x926dd8a1 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x9286b2eb inet_recvmsg -EXPORT_SYMBOL vmlinux 0x92897e3d default_idle -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92b2fb1c skb_seq_read -EXPORT_SYMBOL vmlinux 0x92b7c740 tty_check_change -EXPORT_SYMBOL vmlinux 0x92eef4e5 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x9304ef22 unregister_netdev -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x9308dc57 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x9310dcc2 seq_release -EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x93246ab4 touch_atime -EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read -EXPORT_SYMBOL vmlinux 0x932693a0 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x9370b242 scsi_unregister -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x938f5910 kill_pid -EXPORT_SYMBOL vmlinux 0x93920944 iterate_dir -EXPORT_SYMBOL vmlinux 0x939963f1 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x93a6c299 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93c71423 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x93d41166 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x93dc1ca4 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x93e1a120 vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0x93f9c451 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x93fdf6c2 dquot_commit -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x9411d106 vfs_write -EXPORT_SYMBOL vmlinux 0x9436f393 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x94447121 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x9453ab89 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x946d159b sockfd_lookup -EXPORT_SYMBOL vmlinux 0x94950b98 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask -EXPORT_SYMBOL vmlinux 0x94b66724 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x94cdc901 iterate_mounts -EXPORT_SYMBOL vmlinux 0x94cf733b inet_register_protosw -EXPORT_SYMBOL vmlinux 0x94de0183 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x94f08f68 tso_count_descs -EXPORT_SYMBOL vmlinux 0x94f643be phy_init_hw -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x95237a40 pipe_unlock -EXPORT_SYMBOL vmlinux 0x952a2fd8 inet_sendpage -EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception -EXPORT_SYMBOL vmlinux 0x953d8e45 serio_open -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x9558985a skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x9579430c param_get_ushort -EXPORT_SYMBOL vmlinux 0x957cf6b7 bdgrab -EXPORT_SYMBOL vmlinux 0x9586e66b pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x959a6fb5 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0x95a66653 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler -EXPORT_SYMBOL vmlinux 0x95dd7e91 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x95fed23b grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x95fef03b unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x9614e361 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x9622093d blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x96262761 up_read -EXPORT_SYMBOL vmlinux 0x96380f1f generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x963dc37c seq_open_private -EXPORT_SYMBOL vmlinux 0x9644cedf tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x965d144c mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x9689fa99 key_type_keyring -EXPORT_SYMBOL vmlinux 0x96913d20 fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x9697ca47 pci_enable_device -EXPORT_SYMBOL vmlinux 0x96bd0ead pv_cpu_ops -EXPORT_SYMBOL vmlinux 0x96c769c7 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x96c7efb4 vga_switcheroo_fini_domain_pm_ops -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96deeee7 request_firmware -EXPORT_SYMBOL vmlinux 0x96f282a1 create_empty_buffers -EXPORT_SYMBOL vmlinux 0x96f38f77 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x97013770 blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x9722730c nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x9730f7ba audit_log_start -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x977131a6 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x978961f4 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x978e5af8 __frontswap_store -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x979c9990 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x97c9ee81 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block -EXPORT_SYMBOL vmlinux 0x97e1b258 blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x97ed88d5 dev_mc_init -EXPORT_SYMBOL vmlinux 0x97f9e141 file_path -EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x981fbaab xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x -EXPORT_SYMBOL vmlinux 0x98a6fd4d dmam_release_declared_memory -EXPORT_SYMBOL vmlinux 0x98cb01fe fb_get_mode -EXPORT_SYMBOL vmlinux 0x98e3002b blk_run_queue -EXPORT_SYMBOL vmlinux 0x98e3007a sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x990364cf bdev_read_only -EXPORT_SYMBOL vmlinux 0x990e08e6 seq_open -EXPORT_SYMBOL vmlinux 0x990fb340 sync_inode -EXPORT_SYMBOL vmlinux 0x99233c32 cpu_core_map -EXPORT_SYMBOL vmlinux 0x992f70e5 blk_queue_bounce -EXPORT_SYMBOL vmlinux 0x9935dfeb netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x993712e2 mem_map -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x9950e868 kernel_connect -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x9960e9a2 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x9968e7de xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x996c29ea pci_bus_get -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a6853b neigh_ifdown -EXPORT_SYMBOL vmlinux 0x99c2a1c9 tcp_prot -EXPORT_SYMBOL vmlinux 0x99c4aced jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99e1856e kobject_add -EXPORT_SYMBOL vmlinux 0x99ea1b48 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x99eb1fc2 nvm_submit_io -EXPORT_SYMBOL vmlinux 0x9a03fd1c jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a33b647 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x9a3c353b no_llseek -EXPORT_SYMBOL vmlinux 0x9a3d4d7a dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0x9a540a07 tty_vhangup -EXPORT_SYMBOL vmlinux 0x9a6a83f9 cmos_lock -EXPORT_SYMBOL vmlinux 0x9a779b64 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x9a823b1f dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x9a873a29 dquot_release -EXPORT_SYMBOL vmlinux 0x9a937499 set_bh_page -EXPORT_SYMBOL vmlinux 0x9aa27f55 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x9ac17729 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x9ad60292 scsi_print_result -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9b111c9b __ps2_command -EXPORT_SYMBOL vmlinux 0x9b1b1d76 dquot_transfer -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b6ea28c blk_fetch_request -EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b7dbcd0 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x9b860e8f fddi_change_mtu -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x9ba18e2e agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put -EXPORT_SYMBOL vmlinux 0x9bc83699 mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x9bd974d6 phy_disconnect -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9c08407b mmc_release_host -EXPORT_SYMBOL vmlinux 0x9c1aa420 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x9c1cb791 register_quota_format -EXPORT_SYMBOL vmlinux 0x9c1d4f3b generic_writepages -EXPORT_SYMBOL vmlinux 0x9c28de67 agp_bridge -EXPORT_SYMBOL vmlinux 0x9c2c944a __copy_from_user_ll_nocache_nozero -EXPORT_SYMBOL vmlinux 0x9c4736e2 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c630f7a ip_defrag -EXPORT_SYMBOL vmlinux 0x9c6a160e phy_start_aneg -EXPORT_SYMBOL vmlinux 0x9c8387b8 tso_build_data -EXPORT_SYMBOL vmlinux 0x9c9e8654 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb6f568 pnpbios_protocol -EXPORT_SYMBOL vmlinux 0x9cdaf84e mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x9ce169af neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x9ce4deb5 __napi_schedule -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d25962f trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x9d26a2c0 setattr_copy -EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d3fdc67 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x9d518cf4 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x9d70d160 unregister_key_type -EXPORT_SYMBOL vmlinux 0x9d947eea key_reject_and_link -EXPORT_SYMBOL vmlinux 0x9da6ecb6 devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x9dc277db nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x9dd241f2 xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe -EXPORT_SYMBOL vmlinux 0x9e379042 __lock_buffer -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5ed3b7 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e96375d dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea0c91f proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9ed38752 mount_ns -EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x9efcbcc6 tcp_close -EXPORT_SYMBOL vmlinux 0x9f0ab7dc __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x9f136d72 md_reload_sb -EXPORT_SYMBOL vmlinux 0x9f248507 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f49ec1b dump_emit -EXPORT_SYMBOL vmlinux 0x9f59e594 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x9f5d12b6 brioctl_set -EXPORT_SYMBOL vmlinux 0x9f5e629f __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x9f6a6e1c register_key_type -EXPORT_SYMBOL vmlinux 0x9f7ba1ac udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x9f8fc958 __devm_release_region -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f9b46ca put_tty_driver -EXPORT_SYMBOL vmlinux 0x9f9f2668 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x9fc2eefa __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x9fd048cc pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa042b6f2 nvm_put_blk -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa0445fcc dentry_unhash -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa056e137 __skb_tx_hash -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa06c62cd put_filp -EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa07ff416 acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa0a63371 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0dc0d0d dev_set_mtu -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0eec981 security_path_truncate -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0ffdd3a dev_add_pack -EXPORT_SYMBOL vmlinux 0xa104e243 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa114c39d mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa12b6300 __register_binfmt -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts -EXPORT_SYMBOL vmlinux 0xa15e5acd agp_generic_enable -EXPORT_SYMBOL vmlinux 0xa1749662 touch_buffer -EXPORT_SYMBOL vmlinux 0xa1781be0 vlan_vid_add -EXPORT_SYMBOL vmlinux 0xa18eb164 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0xa19de3fd boot_cpu_data -EXPORT_SYMBOL vmlinux 0xa1a4530d registered_fb -EXPORT_SYMBOL vmlinux 0xa1a8d702 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xa1a942f7 led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0xa1afc91c dev_addr_del -EXPORT_SYMBOL vmlinux 0xa1b6c1d6 i2c_transfer -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1ba43a9 param_set_int -EXPORT_SYMBOL vmlinux 0xa1bfb3d0 lro_receive_skb -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1cab5cd simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1ea23fd pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa20e3722 ppp_channel_index -EXPORT_SYMBOL vmlinux 0xa220a660 dma_alloc_from_coherent -EXPORT_SYMBOL vmlinux 0xa22fad05 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xa2439a4d seq_lseek -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa291111f __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0xa2922709 d_move -EXPORT_SYMBOL vmlinux 0xa294a024 vme_slot_num -EXPORT_SYMBOL vmlinux 0xa29661e1 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xa2a17b96 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xa2e69062 __vfs_write -EXPORT_SYMBOL vmlinux 0xa2ff7555 pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa3366810 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node -EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc -EXPORT_SYMBOL vmlinux 0xa36f81ed update_region -EXPORT_SYMBOL vmlinux 0xa372074b tso_build_hdr -EXPORT_SYMBOL vmlinux 0xa376cbf8 phy_stop -EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get -EXPORT_SYMBOL vmlinux 0xa393ea54 inet_del_protocol -EXPORT_SYMBOL vmlinux 0xa3a16bcd set_pages_nx -EXPORT_SYMBOL vmlinux 0xa3a18de9 lwtunnel_output -EXPORT_SYMBOL vmlinux 0xa3c1cafe eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xa3c58d65 rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0xa3c5d16b rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0xa3dcbfd3 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xa3e73f8e single_open_size -EXPORT_SYMBOL vmlinux 0xa3f1bf3b dev_uc_init -EXPORT_SYMBOL vmlinux 0xa3f94649 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0xa41b57f7 tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa47b8ec5 blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0xa4a06362 bio_endio -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4bf0e36 __mdiobus_register -EXPORT_SYMBOL vmlinux 0xa4c922e5 dget_parent -EXPORT_SYMBOL vmlinux 0xa4d4e200 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4d60e28 dump_skip -EXPORT_SYMBOL vmlinux 0xa503f59f dquot_operations -EXPORT_SYMBOL vmlinux 0xa5175fb9 mmc_put_card -EXPORT_SYMBOL vmlinux 0xa51cdfe8 __FIXADDR_TOP -EXPORT_SYMBOL vmlinux 0xa5251579 alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0xa5252ca6 nf_reinject -EXPORT_SYMBOL vmlinux 0xa5505cec __module_get -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa55b336c follow_down -EXPORT_SYMBOL vmlinux 0xa57fcdad __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5afe528 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xa5b48a65 __blk_end_request -EXPORT_SYMBOL vmlinux 0xa5c16574 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0xa5d43746 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xa5f1d3bf dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xa6009fc5 vga_client_register -EXPORT_SYMBOL vmlinux 0xa606b7b1 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xa6134b05 rtnl_create_link -EXPORT_SYMBOL vmlinux 0xa618ca65 tcf_hash_create -EXPORT_SYMBOL vmlinux 0xa61979d1 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xa62e6e4f acpi_get_table_with_size -EXPORT_SYMBOL vmlinux 0xa631ef0c mmc_start_bkops -EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember -EXPORT_SYMBOL vmlinux 0xa64b37b8 register_netdev -EXPORT_SYMBOL vmlinux 0xa655007e pnp_device_attach -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa684b315 scsi_init_io -EXPORT_SYMBOL vmlinux 0xa68632f1 __pagevec_release -EXPORT_SYMBOL vmlinux 0xa68a01e9 md_unregister_thread -EXPORT_SYMBOL vmlinux 0xa68b2d58 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xa68c714e param_array_ops -EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa69bb947 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xa6a67e45 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up -EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error -EXPORT_SYMBOL vmlinux 0xa6eb645c deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xa6fdc1be init_buffer -EXPORT_SYMBOL vmlinux 0xa6fee3c1 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa70e59a6 free_task -EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi -EXPORT_SYMBOL vmlinux 0xa71fb47c ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa7425308 security_path_symlink -EXPORT_SYMBOL vmlinux 0xa746c995 max8998_read_reg -EXPORT_SYMBOL vmlinux 0xa75c5464 keyring_search -EXPORT_SYMBOL vmlinux 0xa766b274 mount_bdev -EXPORT_SYMBOL vmlinux 0xa76bf4ce pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xa78552df nf_log_packet -EXPORT_SYMBOL vmlinux 0xa787fdae i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock -EXPORT_SYMBOL vmlinux 0xa7ac47e4 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xa7cf6c2f atomic64_dec_return_cx8 -EXPORT_SYMBOL vmlinux 0xa7dacb73 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0xa7e4a7b7 current_in_userns -EXPORT_SYMBOL vmlinux 0xa7efac65 md_done_sync -EXPORT_SYMBOL vmlinux 0xa8186b1d pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xa8260436 mmc_start_req -EXPORT_SYMBOL vmlinux 0xa840d929 genlmsg_put -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa849bd8a jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xa863a742 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0xa8650e36 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa893c725 blk_sync_queue -EXPORT_SYMBOL vmlinux 0xa89f2995 tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0xa8ba3dd6 make_kuid -EXPORT_SYMBOL vmlinux 0xa8c376c4 inet_release -EXPORT_SYMBOL vmlinux 0xa8c97e07 d_set_fallthru -EXPORT_SYMBOL vmlinux 0xa8d9318f simple_empty -EXPORT_SYMBOL vmlinux 0xa8eb6750 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa9455180 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xa95dd9f8 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0xa965e702 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa99f5c1d vga_switcheroo_register_audio_client -EXPORT_SYMBOL vmlinux 0xa9a830df try_to_release_page -EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0xa9ab74e7 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9cfea6b x86_hyper -EXPORT_SYMBOL vmlinux 0xa9eb9973 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0xaa0722d3 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xaa0c0631 dev_change_flags -EXPORT_SYMBOL vmlinux 0xaa11a008 sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0xaa170583 key_invalidate -EXPORT_SYMBOL vmlinux 0xaa32d172 pci_disable_device -EXPORT_SYMBOL vmlinux 0xaa5892c0 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa8fea18 acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xaabd1606 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0xaad00d24 param_ops_uint -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaf99030 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab0dd03e sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xab38f8ea generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc -EXPORT_SYMBOL vmlinux 0xab67cc45 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0xab694444 bsearch -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab83b9c9 input_event -EXPORT_SYMBOL vmlinux 0xab91eb8c vme_dma_request -EXPORT_SYMBOL vmlinux 0xaba3159c gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xaba7666c pci_bus_put -EXPORT_SYMBOL vmlinux 0xabc0c45e blk_get_queue -EXPORT_SYMBOL vmlinux 0xabc61cd4 dev_crit -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabcc5516 vme_bus_type -EXPORT_SYMBOL vmlinux 0xabda2d6d skb_store_bits -EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac25a7b2 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0xac29863a kern_unmount -EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear -EXPORT_SYMBOL vmlinux 0xac42777e blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0xac44ccd8 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0xac61e513 mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0xac65b67d iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xac93ad6c dev_addr_flush -EXPORT_SYMBOL vmlinux 0xac99a5ea alloc_disk_node -EXPORT_SYMBOL vmlinux 0xaca4e8a8 dev_warn -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xaced0519 qdisc_reset -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad0d3429 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xad133625 abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0xad20cbbb check_disk_change -EXPORT_SYMBOL vmlinux 0xad251cdb xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xad591bf7 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xad621d42 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0xad63c6a9 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0xad690698 install_exec_creds -EXPORT_SYMBOL vmlinux 0xad698f77 dqstats -EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free -EXPORT_SYMBOL vmlinux 0xad6fdf85 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xad731fb1 skb_trim -EXPORT_SYMBOL vmlinux 0xad81cbdf fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0xad836222 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad917c88 tso_start -EXPORT_SYMBOL vmlinux 0xade1e206 kernel_accept -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list -EXPORT_SYMBOL vmlinux 0xae20101b proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xae3f9b3a scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xae445c7e blk_queue_split -EXPORT_SYMBOL vmlinux 0xae49501b dma_release_from_coherent -EXPORT_SYMBOL vmlinux 0xae68fe35 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xae6ba98d kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0xae7bfa9b twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xae7d825d pci_save_state -EXPORT_SYMBOL vmlinux 0xae7e64f1 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup -EXPORT_SYMBOL vmlinux 0xae8eebe5 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xae9e956f __bforget -EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xaead915c input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0xaec80422 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xaeeb90c1 console_stop -EXPORT_SYMBOL vmlinux 0xaf009558 phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0xaf15fe0f ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xaf25e5e5 vfs_fsync -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf4a08a9 alloc_fddidev -EXPORT_SYMBOL vmlinux 0xaf4ae5ec mmc_can_discard -EXPORT_SYMBOL vmlinux 0xaf4b1540 acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xaf5cfe5e netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids -EXPORT_SYMBOL vmlinux 0xaf6c3d05 ht_create_irq -EXPORT_SYMBOL vmlinux 0xaf732c20 mmc_can_reset -EXPORT_SYMBOL vmlinux 0xaf74e321 input_flush_device -EXPORT_SYMBOL vmlinux 0xafb6ec25 udp_add_offload -EXPORT_SYMBOL vmlinux 0xaff78452 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0xb00cb23c param_set_bool -EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries -EXPORT_SYMBOL vmlinux 0xb01e717b __scm_destroy -EXPORT_SYMBOL vmlinux 0xb02bd591 _raw_read_unlock_irq -EXPORT_SYMBOL vmlinux 0xb05ac3aa __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb069a523 clkdev_drop -EXPORT_SYMBOL vmlinux 0xb0731d98 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0xb0817468 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0a4cb60 page_readlink -EXPORT_SYMBOL vmlinux 0xb0b203f0 blk_execute_rq -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0b68450 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0xb0c3699f __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xb0cb131d empty_aops -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e22437 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0xb0ebd17c posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0xb0ee5adb bitmap_close_sync -EXPORT_SYMBOL vmlinux 0xb10651bf mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xb10820e4 _raw_read_unlock -EXPORT_SYMBOL vmlinux 0xb111680a scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0xb1196a49 drop_nlink -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12b08ee input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0xb12be019 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb14d0667 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb160188b override_creds -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb168f7b1 get_agp_version -EXPORT_SYMBOL vmlinux 0xb1697882 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xb16dbcb3 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init -EXPORT_SYMBOL vmlinux 0xb19c6438 dev_mc_del -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1ca9c9c register_cdrom -EXPORT_SYMBOL vmlinux 0xb1cb625e ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu -EXPORT_SYMBOL vmlinux 0xb1d70a4a tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xb1e510ba ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xb21254ac mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu -EXPORT_SYMBOL vmlinux 0xb226f9e0 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0xb22926da vga_switcheroo_register_client -EXPORT_SYMBOL vmlinux 0xb2455026 serio_reconnect -EXPORT_SYMBOL vmlinux 0xb24b64c3 ps2_handle_response -EXPORT_SYMBOL vmlinux 0xb255b5da xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xb2638f5a pnp_find_card -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb2723b1c pnp_get_resource -EXPORT_SYMBOL vmlinux 0xb289ddb1 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xb2b5eb72 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xb2b7332f input_close_device -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2bedcc7 mdio_bus_type -EXPORT_SYMBOL vmlinux 0xb2c1d9c0 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xb2c8744b locks_free_lock -EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on -EXPORT_SYMBOL vmlinux 0xb2d5a552 complete -EXPORT_SYMBOL vmlinux 0xb2db5dec __neigh_create -EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove -EXPORT_SYMBOL vmlinux 0xb2f785e4 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 -EXPORT_SYMBOL vmlinux 0xb309df6f blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xb313a902 netif_rx -EXPORT_SYMBOL vmlinux 0xb31ea816 tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xb34cb9d5 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit -EXPORT_SYMBOL vmlinux 0xb391ddf7 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xb39fc72e i8042_remove_filter -EXPORT_SYMBOL vmlinux 0xb3b49714 dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0xb3c58f9d buffer_migrate_page -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3e0590d acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb4088ebe __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0xb40eed31 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0xb4154a9a from_kprojid -EXPORT_SYMBOL vmlinux 0xb4156ca8 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xb41d7c1c console_start -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4296eef blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xb4390f9a mcount -EXPORT_SYMBOL vmlinux 0xb43bc88f to_nd_btt -EXPORT_SYMBOL vmlinux 0xb43d9a05 nf_getsockopt -EXPORT_SYMBOL vmlinux 0xb44842fa max8925_reg_read -EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem -EXPORT_SYMBOL vmlinux 0xb45578b8 memscan -EXPORT_SYMBOL vmlinux 0xb46ea697 simple_pin_fs -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb4863883 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xb4a42b75 page_waitqueue -EXPORT_SYMBOL vmlinux 0xb4f2dbc0 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0xb5229392 cpu_sibling_map -EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range -EXPORT_SYMBOL vmlinux 0xb53123f2 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0xb53704a6 datagram_poll -EXPORT_SYMBOL vmlinux 0xb55b81bc rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xb56ae713 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xb56c2ba8 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xb5724f9e audit_log_task_info -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb576475e xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xb578a39e get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xb58f44e2 pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0xb59b5844 file_remove_privs -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5b16a4d down_read_trylock -EXPORT_SYMBOL vmlinux 0xb5c6e1eb user_path_create -EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free -EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xb601c191 setup_arg_pages -EXPORT_SYMBOL vmlinux 0xb61df369 swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb62c192e get_empty_filp -EXPORT_SYMBOL vmlinux 0xb65535f6 wireless_spy_update -EXPORT_SYMBOL vmlinux 0xb65be698 sock_wmalloc -EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6b094fe account_page_dirtied -EXPORT_SYMBOL vmlinux 0xb6cbe6ca km_policy_expired -EXPORT_SYMBOL vmlinux 0xb6cdce2d pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xb6e41883 memcmp -EXPORT_SYMBOL vmlinux 0xb6ed1e53 strncpy -EXPORT_SYMBOL vmlinux 0xb6fad99a netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xb71765be inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0xb7195cf7 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xb7242b58 blk_free_tags -EXPORT_SYMBOL vmlinux 0xb726b069 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0xb74341b8 get_user_pages -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb75615af set_pages_x -EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event -EXPORT_SYMBOL vmlinux 0xb75b73b8 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xb764fe29 tty_unlock -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb77b7284 notify_change -EXPORT_SYMBOL vmlinux 0xb780af72 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xb782485a lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0xb78b25f6 abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7db1e9a blk_alloc_queue -EXPORT_SYMBOL vmlinux 0xb7f55ecc atomic64_add_return_cx8 -EXPORT_SYMBOL vmlinux 0xb8095c31 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0xb8156ab3 udp_prot -EXPORT_SYMBOL vmlinux 0xb81960ca snprintf -EXPORT_SYMBOL vmlinux 0xb82c01f6 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0xb82cceb3 pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xb83deeba mount_nodev -EXPORT_SYMBOL vmlinux 0xb844461e dev_addr_init -EXPORT_SYMBOL vmlinux 0xb8658841 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xb8735bbd iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xb88a621a ppp_unit_number -EXPORT_SYMBOL vmlinux 0xb89f330d netdev_emerg -EXPORT_SYMBOL vmlinux 0xb8a3a5ae mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add -EXPORT_SYMBOL vmlinux 0xb8bc4e96 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 -EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize -EXPORT_SYMBOL vmlinux 0xb91972ce blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0xb92d8105 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xb94b2b1b blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0xb95476f9 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xb981e065 generic_file_mmap -EXPORT_SYMBOL vmlinux 0xb9841861 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xb9ae00b7 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xb9b3f956 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xb9b7d4ae path_put -EXPORT_SYMBOL vmlinux 0xb9c5e551 zero_fill_bio -EXPORT_SYMBOL vmlinux 0xb9ca060f proc_symlink -EXPORT_SYMBOL vmlinux 0xb9cfe8bc blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0xb9e2bef3 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9ff5c77 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0xba0b8bd9 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0xba100881 follow_up -EXPORT_SYMBOL vmlinux 0xba19be17 get_acl -EXPORT_SYMBOL vmlinux 0xba2a9023 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0xba2af0bd agp_collect_device_status -EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read -EXPORT_SYMBOL vmlinux 0xba36c25b kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba746b05 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xba8b03aa tty_do_resize -EXPORT_SYMBOL vmlinux 0xba9537f7 input_register_handle -EXPORT_SYMBOL vmlinux 0xbab7aff3 param_set_bint -EXPORT_SYMBOL vmlinux 0xbabb5bf9 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xbabd35e6 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0xbac9404b dump_trace -EXPORT_SYMBOL vmlinux 0xbae4bd07 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xbaea3a14 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0xbb01dc7f page_symlink -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb08ebd4 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0xbb2c3fa2 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xbb5af937 generic_block_bmap -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb7fb076 scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0xbb826f4c from_kgid_munged -EXPORT_SYMBOL vmlinux 0xbb8b28b8 ata_link_printk -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xbbb02f43 pci_reenable_device -EXPORT_SYMBOL vmlinux 0xbbbfec4a __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xbbd31b94 filp_close -EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc2863e0 agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0xbc2f4c42 dentry_open -EXPORT_SYMBOL vmlinux 0xbc435770 dump_stack -EXPORT_SYMBOL vmlinux 0xbc4d7a52 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xbc5772f2 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xbc618141 single_release -EXPORT_SYMBOL vmlinux 0xbc75db96 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0xbc80e9ef bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xbca34d49 vme_irq_handler -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbd35c0ed get_phy_device -EXPORT_SYMBOL vmlinux 0xbd3ef520 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xbd4b18f7 read_dev_sector -EXPORT_SYMBOL vmlinux 0xbd51f699 __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0xbd81e852 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xbdbf3592 mmc_detect_change -EXPORT_SYMBOL vmlinux 0xbdd5f990 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xbdd6cb37 kmap_atomic -EXPORT_SYMBOL vmlinux 0xbdd95d2e d_alloc -EXPORT_SYMBOL vmlinux 0xbdf6a5cc dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0xbdf8bd80 pci_find_bus -EXPORT_SYMBOL vmlinux 0xbe05a4ce security_path_rename -EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe33e191 path_noexec -EXPORT_SYMBOL vmlinux 0xbe3d093f scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0xbe57f287 bdi_register -EXPORT_SYMBOL vmlinux 0xbe620704 set_binfmt -EXPORT_SYMBOL vmlinux 0xbe6aa7cf clear_inode -EXPORT_SYMBOL vmlinux 0xbe6f17d1 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0xbe8c37d9 intel_scu_ipc_simple_command -EXPORT_SYMBOL vmlinux 0xbebf53d5 simple_unlink -EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu -EXPORT_SYMBOL vmlinux 0xbee17b85 neigh_for_each -EXPORT_SYMBOL vmlinux 0xbee43783 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xbee4d4b7 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf0abfe2 file_open_root -EXPORT_SYMBOL vmlinux 0xbf0ccee2 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0xbf332cb4 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xbf3b8c26 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xbf5bf828 check_disk_size_change -EXPORT_SYMBOL vmlinux 0xbf63294a scsi_register_interface -EXPORT_SYMBOL vmlinux 0xbf760f7d i2c_del_driver -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf8b39e9 isapnp_present -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfe1eeea unregister_filesystem -EXPORT_SYMBOL vmlinux 0xbfe6f427 _raw_spin_unlock_irq -EXPORT_SYMBOL vmlinux 0xbfeb2943 dm_kobject_release -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc01eed33 __copy_from_user_ll_nozero -EXPORT_SYMBOL vmlinux 0xc02a6896 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xc059953a scsi_ioctl -EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xc06ad80b generic_delete_inode -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc08e905f jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xc094ff76 swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0cd3b13 ___ratelimit -EXPORT_SYMBOL vmlinux 0xc0d5dc91 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xc11d7eac vfs_writef -EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten -EXPORT_SYMBOL vmlinux 0xc13025ee con_copy_unimap -EXPORT_SYMBOL vmlinux 0xc137f0df cdev_alloc -EXPORT_SYMBOL vmlinux 0xc13b2c8b dmam_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0xc1429336 commit_creds -EXPORT_SYMBOL vmlinux 0xc169132c fasync_helper -EXPORT_SYMBOL vmlinux 0xc1b6acc7 blk_init_queue_node -EXPORT_SYMBOL vmlinux 0xc1b78abc get_thermal_instance -EXPORT_SYMBOL vmlinux 0xc1cf5512 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e080d8 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc211d5a2 do_splice_to -EXPORT_SYMBOL vmlinux 0xc21cd5ba read_code -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc2790ce0 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xc280a525 __copy_from_user_ll -EXPORT_SYMBOL vmlinux 0xc291cd55 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0xc2a26a64 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xc2c6b0a6 deactivate_super -EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc -EXPORT_SYMBOL vmlinux 0xc2e4be39 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2f7f813 sk_stop_timer -EXPORT_SYMBOL vmlinux 0xc33c93c7 devfreq_interval_update -EXPORT_SYMBOL vmlinux 0xc34600ea __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0xc353045c pci_enable_msix -EXPORT_SYMBOL vmlinux 0xc35b979d pci_pme_active -EXPORT_SYMBOL vmlinux 0xc367e3e8 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xc37dbbc7 pci_request_regions -EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3c50ef1 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xc3d9a1d3 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xc3ebaf47 pci_pme_capable -EXPORT_SYMBOL vmlinux 0xc3fa6a59 memchr -EXPORT_SYMBOL vmlinux 0xc400d4ac set_create_files_as -EXPORT_SYMBOL vmlinux 0xc40a099f i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xc41f0516 node_states -EXPORT_SYMBOL vmlinux 0xc420787c napi_get_frags -EXPORT_SYMBOL vmlinux 0xc42455b2 prepare_binprm -EXPORT_SYMBOL vmlinux 0xc435ed50 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0xc47446e2 generic_setxattr -EXPORT_SYMBOL vmlinux 0xc479aae0 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0xc47da15d ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xc47f7cc1 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xc47f8e5c netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xc486cdd2 __dst_free -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc49c18a2 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xc4a88701 noop_llseek -EXPORT_SYMBOL vmlinux 0xc4aaac2b __sb_end_write -EXPORT_SYMBOL vmlinux 0xc4df5cc1 _dev_info -EXPORT_SYMBOL vmlinux 0xc4e1b11e seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xc5012264 blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid -EXPORT_SYMBOL vmlinux 0xc51c389f mutex_unlock -EXPORT_SYMBOL vmlinux 0xc51d6647 set_nlink -EXPORT_SYMBOL vmlinux 0xc5462085 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc560907b sk_free -EXPORT_SYMBOL vmlinux 0xc56e7b66 ip_getsockopt -EXPORT_SYMBOL vmlinux 0xc586d0f9 scsi_register -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5a0e012 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xc5b72490 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xc5c70543 genphy_resume -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5db99e2 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc605f8f9 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xc60ca6a9 default_file_splice_read -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc650834b tty_port_put -EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0xc66a5ed7 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xc66acf3f mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0xc66d5d49 netpoll_print_options -EXPORT_SYMBOL vmlinux 0xc67a09fe intel_gtt_get -EXPORT_SYMBOL vmlinux 0xc6849840 pnp_find_dev -EXPORT_SYMBOL vmlinux 0xc6b23120 intel_scu_ipc_iowrite16 -EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6e65e49 tcp_connect -EXPORT_SYMBOL vmlinux 0xc7201edb neigh_destroy -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc73e2edb tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc78f68d1 eth_gro_complete -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7ccf2a5 get_task_io_context -EXPORT_SYMBOL vmlinux 0xc7db0520 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc7fc79c9 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xc803b1d8 skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0xc80588f6 iput -EXPORT_SYMBOL vmlinux 0xc81c3fa4 ns_capable -EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape -EXPORT_SYMBOL vmlinux 0xc83756f6 find_get_entry -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc83b5879 xattr_full_name -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc86d6799 ___preempt_schedule -EXPORT_SYMBOL vmlinux 0xc871129b softnet_data -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc873a793 inet_offloads -EXPORT_SYMBOL vmlinux 0xc886102e inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8bc041d blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xc8ca3710 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xc8cf648f vga_switcheroo_client_fb_set -EXPORT_SYMBOL vmlinux 0xc8e8033f __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xc8f3fe66 tcp_conn_request -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc91ef5a1 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xc9245d97 vfs_read -EXPORT_SYMBOL vmlinux 0xc92af029 set_pages_wb -EXPORT_SYMBOL vmlinux 0xc92baafa netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0xc9416284 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xc947b840 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0xc95f9ea1 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96866e3 agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0xc9786096 pci_set_mwi -EXPORT_SYMBOL vmlinux 0xc98c945e udp_proc_unregister -EXPORT_SYMBOL vmlinux 0xc99aa29c blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock -EXPORT_SYMBOL vmlinux 0xc9a2741b ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xc9a2c07b tcp_seq_open -EXPORT_SYMBOL vmlinux 0xc9af14d9 generic_write_end -EXPORT_SYMBOL vmlinux 0xc9c8fa79 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xc9f717e2 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xc9fc34cd qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue -EXPORT_SYMBOL vmlinux 0xca0cb934 address_space_init_once -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca24b725 __elv_add_request -EXPORT_SYMBOL vmlinux 0xca26def3 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xca394fd5 simple_setattr -EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xca4359b3 napi_consume_skb -EXPORT_SYMBOL vmlinux 0xca6656b6 skb_tx_error -EXPORT_SYMBOL vmlinux 0xca70a3e5 md_finish_reshape -EXPORT_SYMBOL vmlinux 0xca731e40 dm_io -EXPORT_SYMBOL vmlinux 0xca752845 vme_irq_free -EXPORT_SYMBOL vmlinux 0xca82bd13 kmem_cache_free -EXPORT_SYMBOL vmlinux 0xca8820b6 blk_peek_request -EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcaa5f3a2 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0xcaafc3e0 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xcabb666d md_check_recovery -EXPORT_SYMBOL vmlinux 0xcad78973 poll_initwait -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcaf50b32 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xcb01efec kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb0f4e88 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xcb124428 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xcb1a1c25 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xcb65dd7c vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xcb718ac7 nd_iostat_end -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb81921f sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xcb99adf3 iterate_fd -EXPORT_SYMBOL vmlinux 0xcba39b64 fb_set_var -EXPORT_SYMBOL vmlinux 0xcbaad12c page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcc080d46 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xcc1e6006 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc4d1bfb atomic64_read_cx8 -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc741786 security_inode_permission -EXPORT_SYMBOL vmlinux 0xcc807083 vfs_readf -EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl -EXPORT_SYMBOL vmlinux 0xcc85e68b md_write_end -EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute -EXPORT_SYMBOL vmlinux 0xcc8dc32c netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xcc9bbe27 swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0xcca02b4b nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0xccacf8ee xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xcce55c62 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xcce81e7c task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0xccfa764a mdiobus_read -EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xcd0b684b lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0xcd0bbdb6 md_flush_request -EXPORT_SYMBOL vmlinux 0xcd0c8474 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0xcd103752 uart_match_port -EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd2e49da napi_disable -EXPORT_SYMBOL vmlinux 0xcd46d090 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xcd5c87c1 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xcd5cdd10 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xcd62e080 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0xcd8b3610 pskb_expand_head -EXPORT_SYMBOL vmlinux 0xcd9211bf pci_write_vpd -EXPORT_SYMBOL vmlinux 0xcdaa0f5b cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xcdb142cd dcb_getapp -EXPORT_SYMBOL vmlinux 0xcdb4d00f call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdcd31a7 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xcdd5e7ea scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xcde5301d xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0xce02292e jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xce022d20 __seq_open_private -EXPORT_SYMBOL vmlinux 0xce037bc8 get_fs_type -EXPORT_SYMBOL vmlinux 0xce247caf __register_nls -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xce4dedb9 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce5d10d7 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xce6cd6f5 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xce6fc217 md_register_thread -EXPORT_SYMBOL vmlinux 0xce8f60b2 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0xce9dc96f block_page_mkwrite -EXPORT_SYMBOL vmlinux 0xce9e41e9 lockref_get -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcec33930 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xcec770b5 xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0xcedc63b1 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xcedfc84d lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xcee9a8ae __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf08f5a6 free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0xcf181f43 copy_to_iter -EXPORT_SYMBOL vmlinux 0xcf234190 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0xcf243c35 __vfs_read -EXPORT_SYMBOL vmlinux 0xcf2b193b set_cached_acl -EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free -EXPORT_SYMBOL vmlinux 0xcf78231d __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xcf8b8a09 sock_edemux -EXPORT_SYMBOL vmlinux 0xcfcbd74d skb_pad -EXPORT_SYMBOL vmlinux 0xcfcd2cbb devm_ioport_map -EXPORT_SYMBOL vmlinux 0xcfe05d4d register_kmmio_probe -EXPORT_SYMBOL vmlinux 0xcfeb8db4 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xcffc65fb make_kprojid -EXPORT_SYMBOL vmlinux 0xd008ed65 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xd05145ec dquot_alloc -EXPORT_SYMBOL vmlinux 0xd0568203 ata_print_version -EXPORT_SYMBOL vmlinux 0xd0574e42 d_obtain_root -EXPORT_SYMBOL vmlinux 0xd05c4294 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xd05fed75 security_file_permission -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a90e79 kset_register -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0d8621b strlen -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f0739c jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd157cc0d padata_remove_cpu -EXPORT_SYMBOL vmlinux 0xd15c33fe phy_print_status -EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd185b8c6 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xd1878704 sock_wfree -EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings -EXPORT_SYMBOL vmlinux 0xd204b1e5 get_cached_acl -EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace -EXPORT_SYMBOL vmlinux 0xd20b0d30 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd222c0c7 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0xd22de0d8 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd25d4b22 blk_stop_queue -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd25debb8 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0xd2780495 arp_send -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd294284d bdget -EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class -EXPORT_SYMBOL vmlinux 0xd2cb6ecd cad_pid -EXPORT_SYMBOL vmlinux 0xd2d36ed6 x86_dma_fallback_dev -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e1e29d get_super -EXPORT_SYMBOL vmlinux 0xd2e6a582 acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xd2e95b31 init_net -EXPORT_SYMBOL vmlinux 0xd2ea97ce __put_cred -EXPORT_SYMBOL vmlinux 0xd2f034b1 udp6_csum_init -EXPORT_SYMBOL vmlinux 0xd30f28dd ppp_register_channel -EXPORT_SYMBOL vmlinux 0xd314d0da __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xd33afcff phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0xd33dbb06 pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0xd33f9147 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0xd36524eb proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xd36bd82e blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0xd36c4ce1 dm_get_device -EXPORT_SYMBOL vmlinux 0xd37776d0 zpool_register_driver -EXPORT_SYMBOL vmlinux 0xd38fbf6a should_remove_suid -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3bd4572 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xd3c5c0f1 ip_do_fragment -EXPORT_SYMBOL vmlinux 0xd3e70c5d is_bad_inode -EXPORT_SYMBOL vmlinux 0xd3f11277 dquot_free_inode -EXPORT_SYMBOL vmlinux 0xd407296f xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xd411c268 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xd44da3be page_put_link -EXPORT_SYMBOL vmlinux 0xd45df7b1 __brelse -EXPORT_SYMBOL vmlinux 0xd462f2f3 mutex_lock -EXPORT_SYMBOL vmlinux 0xd46421b6 send_sig -EXPORT_SYMBOL vmlinux 0xd4802e5a mmc_add_host -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd485a7bf jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xd49ceada pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xd4a3297b lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0xd4abec6e kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0xd4c8d128 pci_platform_rom -EXPORT_SYMBOL vmlinux 0xd4c951e6 eth_type_trans -EXPORT_SYMBOL vmlinux 0xd4d37ec8 unlock_page -EXPORT_SYMBOL vmlinux 0xd4d53a73 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0xd4efb892 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xd50821df serio_interrupt -EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data -EXPORT_SYMBOL vmlinux 0xd5136cdd eth_validate_addr -EXPORT_SYMBOL vmlinux 0xd51f395a pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xd52bf01c scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xd531e22c update_devfreq -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd55c0a66 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0xd56a5ed7 nvm_register -EXPORT_SYMBOL vmlinux 0xd56f358a skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xd577af6e set_wb_congested -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd5ab76a7 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xd5cf600b skb_make_writable -EXPORT_SYMBOL vmlinux 0xd5d31ce4 tc_classify -EXPORT_SYMBOL vmlinux 0xd5e3764f kfree_skb_list -EXPORT_SYMBOL vmlinux 0xd5eb96af abx500_remove_ops -EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xd60aebd2 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd61b6006 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd662c592 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd6889da4 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock -EXPORT_SYMBOL vmlinux 0xd69173bc __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xd69f09ae tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xd6aee594 simple_dname -EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace -EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6d601e9 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xd6ea297b loop_backing_file -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd710c17b tty_mutex -EXPORT_SYMBOL vmlinux 0xd712239c __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xd730959d seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xd74414bf blk_make_request -EXPORT_SYMBOL vmlinux 0xd757b1d2 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd7946c38 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write -EXPORT_SYMBOL vmlinux 0xd7bdacc4 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xd7c98a0c rfkill_alloc -EXPORT_SYMBOL vmlinux 0xd7cd5f76 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi -EXPORT_SYMBOL vmlinux 0xd7e46515 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7fac5c6 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xd7fd7c41 blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0xd80e3a27 tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0xd811b2c7 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put -EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xd864f6b0 dquot_commit_info -EXPORT_SYMBOL vmlinux 0xd8699b1e agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0xd88d576e kmap_to_page -EXPORT_SYMBOL vmlinux 0xd89a7cad __f_setown -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a897b5 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8ade6a2 __devm_request_region -EXPORT_SYMBOL vmlinux 0xd8dad3ec reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e424fa tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8eb4d05 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xd8f4fd33 neigh_seq_start -EXPORT_SYMBOL vmlinux 0xd8fb9b63 mb_cache_shrink -EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0xd92e2dca tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xd936d3f6 dump_page -EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference -EXPORT_SYMBOL vmlinux 0xd94c76c1 km_state_expired -EXPORT_SYMBOL vmlinux 0xd9596409 param_get_invbool -EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done -EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected -EXPORT_SYMBOL vmlinux 0xd96d1d3a inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu -EXPORT_SYMBOL vmlinux 0xd97e3d77 iget_failed -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd990a402 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xd996f6f7 generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0xd9a6e9c6 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0xd9a783e4 filemap_flush -EXPORT_SYMBOL vmlinux 0xd9a8361c serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xd9cd1530 mount_subtree -EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9dccf46 bioset_create -EXPORT_SYMBOL vmlinux 0xda08c0d7 pcibios_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xda1b2af4 napi_complete_done -EXPORT_SYMBOL vmlinux 0xda1cc86b ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda3d9682 max8998_update_reg -EXPORT_SYMBOL vmlinux 0xda5398ed __serio_register_port -EXPORT_SYMBOL vmlinux 0xda624ccc audit_log -EXPORT_SYMBOL vmlinux 0xda7242b1 elv_add_request -EXPORT_SYMBOL vmlinux 0xda761e2a set_pages_uc -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda8fd495 isapnp_write_byte -EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages -EXPORT_SYMBOL vmlinux 0xdab65ff3 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdade174a downgrade_write -EXPORT_SYMBOL vmlinux 0xdae011e1 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xdae80100 _raw_spin_unlock -EXPORT_SYMBOL vmlinux 0xdaeaea36 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg -EXPORT_SYMBOL vmlinux 0xdb281d9a devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0xdb2e1eb4 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xdb2f6c70 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xdb474a7b blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6ac432 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xdb72b55a block_read_full_page -EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7f021f param_ops_charp -EXPORT_SYMBOL vmlinux 0xdb89d9b7 param_set_copystring -EXPORT_SYMBOL vmlinux 0xdb9fdd44 finish_open -EXPORT_SYMBOL vmlinux 0xdbac3f5e bio_add_page -EXPORT_SYMBOL vmlinux 0xdbbb35a0 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xdbcc2056 dcb_setapp -EXPORT_SYMBOL vmlinux 0xdbd37b96 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xdbe69b59 nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0xdc038ad1 tcp_req_err -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc2cbacd find_get_pages_tag -EXPORT_SYMBOL vmlinux 0xdc314369 vga_get -EXPORT_SYMBOL vmlinux 0xdc3bf66f tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc43f908 __invalidate_device -EXPORT_SYMBOL vmlinux 0xdc48a93b register_sysctl_table -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler -EXPORT_SYMBOL vmlinux 0xdc7cc5a0 __kfree_skb -EXPORT_SYMBOL vmlinux 0xdc813cbf pci_select_bars -EXPORT_SYMBOL vmlinux 0xdc82f72e scsi_register_driver -EXPORT_SYMBOL vmlinux 0xdc87af45 skb_checksum -EXPORT_SYMBOL vmlinux 0xdca4c08d mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0xdca8c6a7 tty_free_termios -EXPORT_SYMBOL vmlinux 0xdcb8e796 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0xdcdd9b38 dev_uc_del -EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd3748cc new_inode -EXPORT_SYMBOL vmlinux 0xdd51b088 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xdd5bac7d down_read -EXPORT_SYMBOL vmlinux 0xdd6e3472 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xdda42d43 fb_find_mode -EXPORT_SYMBOL vmlinux 0xddb37d02 proc_dointvec -EXPORT_SYMBOL vmlinux 0xddbebc90 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xddbf07bf vfs_iter_read -EXPORT_SYMBOL vmlinux 0xddc56185 xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0xddec1068 pci_dev_get -EXPORT_SYMBOL vmlinux 0xddef849d bio_advance -EXPORT_SYMBOL vmlinux 0xde16dc16 tboot -EXPORT_SYMBOL vmlinux 0xde18fe27 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0xde1d1672 __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xde34a452 sock_rfree -EXPORT_SYMBOL vmlinux 0xde3da700 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xde51cbc4 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xde572db9 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xdea2eb04 param_ops_bool -EXPORT_SYMBOL vmlinux 0xdeb7106f sock_recvmsg -EXPORT_SYMBOL vmlinux 0xdec2deb6 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xded0440c netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0xded0d2c7 inet_stream_connect -EXPORT_SYMBOL vmlinux 0xded931f3 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0xdee458a7 bio_phys_segments -EXPORT_SYMBOL vmlinux 0xdeeefea3 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xdef7fdc0 pci_match_id -EXPORT_SYMBOL vmlinux 0xdf03e9f6 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0xdf0562c9 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices -EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdf1427e5 idr_remove -EXPORT_SYMBOL vmlinux 0xdf217148 sock_from_file -EXPORT_SYMBOL vmlinux 0xdf2468c2 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf34a85f blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf4026c5 inode_set_bytes -EXPORT_SYMBOL vmlinux 0xdf4fc797 __register_nmi_handler -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf5ca5b1 pci_bus_type -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf79dcc3 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf9266c1 insert_inode_locked -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf952b46 bdget_disk -EXPORT_SYMBOL vmlinux 0xdf960052 send_sig_info -EXPORT_SYMBOL vmlinux 0xdf999ba0 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xdf9a3615 load_nls_default -EXPORT_SYMBOL vmlinux 0xdfae4798 elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0xdfb8228b generic_make_request -EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init -EXPORT_SYMBOL vmlinux 0xdfcc7751 simple_rmdir -EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xe001535d simple_dir_operations -EXPORT_SYMBOL vmlinux 0xe005af03 truncate_setsize -EXPORT_SYMBOL vmlinux 0xe02519ee skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xe026ba80 dquot_disable -EXPORT_SYMBOL vmlinux 0xe03512a1 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xe03edefc account_page_redirty -EXPORT_SYMBOL vmlinux 0xe03fd45a xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe09c8c39 tcf_hash_search -EXPORT_SYMBOL vmlinux 0xe0a16a20 intel_scu_ipc_i2c_cntrl -EXPORT_SYMBOL vmlinux 0xe0ac3593 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0e89a16 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xe10cc175 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0xe1177ca2 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe1348cde zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe18b5a22 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xe1c9c23b twl6040_power -EXPORT_SYMBOL vmlinux 0xe1f7e91b bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xe1f940a5 input_get_keycode -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe20391cb proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0xe22c5ead mpage_writepages -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe247d70f vme_dma_list_free -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xe25a1156 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xe278c247 alloc_disk -EXPORT_SYMBOL vmlinux 0xe27a34c4 generic_file_llseek -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2b8d87a d_obtain_alias -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e4392e simple_link -EXPORT_SYMBOL vmlinux 0xe2e5cec2 netdev_alert -EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user -EXPORT_SYMBOL vmlinux 0xe2f2a23f mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xe2f2ba34 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup -EXPORT_SYMBOL vmlinux 0xe303f9ec param_set_byte -EXPORT_SYMBOL vmlinux 0xe3197208 proc_dostring -EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set -EXPORT_SYMBOL vmlinux 0xe32382f7 vfs_mkdir -EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0xe35ba4c1 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xe35cc8f7 do_SAK -EXPORT_SYMBOL vmlinux 0xe366f636 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xe36dfbe3 dquot_file_open -EXPORT_SYMBOL vmlinux 0xe373dfb9 d_path -EXPORT_SYMBOL vmlinux 0xe388194c fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0xe39742b8 napi_gro_receive -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3bccf9a jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xe3c6b724 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3e25afd pagevec_lookup -EXPORT_SYMBOL vmlinux 0xe3e3be1e arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0xe42b98ad vga_switcheroo_init_domain_pm_optimus_hdmi_audio -EXPORT_SYMBOL vmlinux 0xe43879d2 __break_lease -EXPORT_SYMBOL vmlinux 0xe445db4a acpi_check_address_range -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe50f8287 xfrm_init_state -EXPORT_SYMBOL vmlinux 0xe50f904f intel_scu_ipc_ioread16 -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe -EXPORT_SYMBOL vmlinux 0xe54d8fb6 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xe56cf129 kset_unregister -EXPORT_SYMBOL vmlinux 0xe56d044e proto_unregister -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe590c5eb vm_map_ram -EXPORT_SYMBOL vmlinux 0xe594f6c4 __netif_schedule -EXPORT_SYMBOL vmlinux 0xe596c838 sock_efree -EXPORT_SYMBOL vmlinux 0xe59e5be7 backlight_device_register -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5c979f0 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5fddc4f devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0xe6162877 down_killable -EXPORT_SYMBOL vmlinux 0xe61b03a6 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0xe6250664 vfs_link -EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs -EXPORT_SYMBOL vmlinux 0xe6597702 migrate_page_copy -EXPORT_SYMBOL vmlinux 0xe664e68e mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe6a4851e dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xe6b793c0 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xe6d575e4 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xe6d5c69c cleancache_register_ops -EXPORT_SYMBOL vmlinux 0xe6d64eda pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0xe6d791fc cdrom_check_events -EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update -EXPORT_SYMBOL vmlinux 0xe6f37055 pci_choose_state -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe70ae3f5 tty_port_close -EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic -EXPORT_SYMBOL vmlinux 0xe75a6f12 ip6_xmit -EXPORT_SYMBOL vmlinux 0xe75ea898 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xe781b5f6 intel_scu_ipc_readv -EXPORT_SYMBOL vmlinux 0xe78749e2 f_setown -EXPORT_SYMBOL vmlinux 0xe7a4bbfd cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7ad9b4a da903x_query_status -EXPORT_SYMBOL vmlinux 0xe7ae652e __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xe7be4050 i2c_verify_client -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe80c306f nobh_write_begin -EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe846bee6 genphy_config_init -EXPORT_SYMBOL vmlinux 0xe855c94c scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xe8628be4 __blk_end_request_all -EXPORT_SYMBOL vmlinux 0xe87025f0 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0xe8707456 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss -EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer -EXPORT_SYMBOL vmlinux 0xe891b53a simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xe8945fd3 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xe8a182ba pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8b04cbd vc_cons -EXPORT_SYMBOL vmlinux 0xe8b58254 unregister_qdisc -EXPORT_SYMBOL vmlinux 0xe8b68849 wrmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8d61ce7 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0xe9682f97 sock_no_poll -EXPORT_SYMBOL vmlinux 0xe96ddec5 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu -EXPORT_SYMBOL vmlinux 0xe9acfac4 tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0xe9b812cd reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0xe9c06b98 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xe9c1d71a abx500_register_ops -EXPORT_SYMBOL vmlinux 0xe9d1ce9c register_framebuffer -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9f75dd6 dev_remove_pack -EXPORT_SYMBOL vmlinux 0xea02330f generic_readlink -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea0bc4aa default_llseek -EXPORT_SYMBOL vmlinux 0xea19b6ff ip6_frag_init -EXPORT_SYMBOL vmlinux 0xea2b52ec __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xea41454e mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0xea6a9820 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xeabe6dfa param_get_ullong -EXPORT_SYMBOL vmlinux 0xeacaa440 swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0xeae2cbfe ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeb0bf70d add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb3c77bb dma_async_device_register -EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xeb62c757 do_splice_from -EXPORT_SYMBOL vmlinux 0xeb69b324 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xeb7c47b0 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xeb86c322 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0xeb8bebe9 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xeb8c6144 neigh_connected_output -EXPORT_SYMBOL vmlinux 0xeb9333fc xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xebe703e9 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xebff5cf5 fence_signal_locked -EXPORT_SYMBOL vmlinux 0xec02927f abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0xec04ec8f pagecache_get_page -EXPORT_SYMBOL vmlinux 0xec0b6e12 fb_validate_mode -EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit -EXPORT_SYMBOL vmlinux 0xec1acc3e fb_class -EXPORT_SYMBOL vmlinux 0xec26d17e write_one_page -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec655c8e proc_set_user -EXPORT_SYMBOL vmlinux 0xec7f34d0 clear_wb_congested -EXPORT_SYMBOL vmlinux 0xeca2689f generic_end_io_acct -EXPORT_SYMBOL vmlinux 0xeca5c733 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xeca8da27 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0xecb08d60 keyring_alloc -EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xeccc8ba2 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xecd1522b vga_switcheroo_init_domain_pm_ops -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecf6ce2e __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xecf8c0a9 dev_printk_emit -EXPORT_SYMBOL vmlinux 0xed10ad45 netdev_state_change -EXPORT_SYMBOL vmlinux 0xed5974e0 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed598ca6 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0xed8f0e08 sock_kmalloc -EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xedabe312 tcp_ioctl -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedf1effc sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee429f23 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xee42fcff __get_page_tail -EXPORT_SYMBOL vmlinux 0xee663539 __register_chrdev -EXPORT_SYMBOL vmlinux 0xee6bd65a pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xee7b11a1 kobject_get -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee893262 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee94016e page_address -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0xeed54e88 tcp_shutdown -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xeef8e4a8 vme_irq_generate -EXPORT_SYMBOL vmlinux 0xef0355da iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0xef2fc3a1 agp_bind_memory -EXPORT_SYMBOL vmlinux 0xef34e1c4 md_cluster_ops -EXPORT_SYMBOL vmlinux 0xef5340cd sock_i_uid -EXPORT_SYMBOL vmlinux 0xef874420 max8998_write_reg -EXPORT_SYMBOL vmlinux 0xef89117e gnttab_free_pages -EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override -EXPORT_SYMBOL vmlinux 0xefa3d5eb dentry_update_name_case -EXPORT_SYMBOL vmlinux 0xefa7e708 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0xefbc7902 module_refcount -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefda8d99 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status -EXPORT_SYMBOL vmlinux 0xefeb5e4e ip_setsockopt -EXPORT_SYMBOL vmlinux 0xeff34979 security_path_chown -EXPORT_SYMBOL vmlinux 0xeffee072 dev_get_by_index -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0050117 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf01a03d5 set_blocksize -EXPORT_SYMBOL vmlinux 0xf03c52bd blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0a2d187 blk_init_tags -EXPORT_SYMBOL vmlinux 0xf0b23479 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xf0c86d45 sk_receive_skb -EXPORT_SYMBOL vmlinux 0xf0d9aeef padata_alloc_possible -EXPORT_SYMBOL vmlinux 0xf0e44784 simple_write_begin -EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xf0eb8991 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf1015cb1 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf10b7d16 simple_follow_link -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit -EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0xf1477f5e pcibios_set_irq_routing -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf16840b8 vme_irq_request -EXPORT_SYMBOL vmlinux 0xf16e250b skb_copy_expand -EXPORT_SYMBOL vmlinux 0xf175998b __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xf175dd9d proc_create_data -EXPORT_SYMBOL vmlinux 0xf18242e1 atomic64_set_cx8 -EXPORT_SYMBOL vmlinux 0xf18988a9 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xf19145d4 lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0xf192c8e3 dump_align -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19ca145 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xf1a0ba91 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xf1a56fd0 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xf1c67180 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1dbe652 make_bad_inode -EXPORT_SYMBOL vmlinux 0xf1dde99a do_splice_direct -EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1ebfdf0 vga_con -EXPORT_SYMBOL vmlinux 0xf20adf09 genphy_read_status -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf21843e7 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xf21a5530 simple_release_fs -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24b4812 mfd_add_devices -EXPORT_SYMBOL vmlinux 0xf25711c7 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xf27d3b61 input_unregister_handle -EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr -EXPORT_SYMBOL vmlinux 0xf28fb028 xen_biovec_phys_mergeable -EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2b041f5 skb_put -EXPORT_SYMBOL vmlinux 0xf2b536bd blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0xf2b745e0 add_disk -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2d086f5 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xf2db5f3d tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xf2db6abe dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xf307e46a bdi_register_dev -EXPORT_SYMBOL vmlinux 0xf3110708 blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf33f6ddd sk_common_release -EXPORT_SYMBOL vmlinux 0xf3433116 pci_map_rom -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf3486c89 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf381273d dput -EXPORT_SYMBOL vmlinux 0xf389d339 complete_request_key -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xf3986b06 acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0xf3caf302 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xf3d8b4d9 __quota_error -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3e89f8f inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0xf3f9a13d __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xf3fefd16 i2c_release_client -EXPORT_SYMBOL vmlinux 0xf4065f00 d_genocide -EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xf412b9e3 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0xf413828e skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xf414f127 proc_set_size -EXPORT_SYMBOL vmlinux 0xf421e3e3 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xf430aaad get_mm_exe_file -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf452444c __scsi_add_device -EXPORT_SYMBOL vmlinux 0xf46e6f08 ether_setup -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf48ad315 bprm_change_interp -EXPORT_SYMBOL vmlinux 0xf49272c7 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xf4a20d43 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit -EXPORT_SYMBOL vmlinux 0xf4ac75fa sg_miter_start -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4d5aab5 free_buffer_head -EXPORT_SYMBOL vmlinux 0xf4e75292 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0xf4ea8d08 dcache_readdir -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf502d273 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0xf5105cd0 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xf51a7780 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xf5317a26 inet6_ioctl -EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf560f094 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xf57f77b1 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0xf59583d1 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set -EXPORT_SYMBOL vmlinux 0xf5af8e38 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler -EXPORT_SYMBOL vmlinux 0xf5b17f4e blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xf5c0b4ba skb_queue_head -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5dad531 contig_page_data -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf5f453ba tty_port_destroy -EXPORT_SYMBOL vmlinux 0xf5fc6595 param_get_ulong -EXPORT_SYMBOL vmlinux 0xf6228c0d from_kgid -EXPORT_SYMBOL vmlinux 0xf6276c40 security_path_rmdir -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf661adbc pnp_device_detach -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf6892ea5 nvm_end_io -EXPORT_SYMBOL vmlinux 0xf6899c5a acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xf69024fe init_special_inode -EXPORT_SYMBOL vmlinux 0xf693a145 irq_stat -EXPORT_SYMBOL vmlinux 0xf6a092a1 scsi_scan_host -EXPORT_SYMBOL vmlinux 0xf6a75d91 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f1fe81 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf710fcaf fsnotify_put_group -EXPORT_SYMBOL vmlinux 0xf726d02f atomic64_add_unless_cx8 -EXPORT_SYMBOL vmlinux 0xf72fc700 bdi_register_owner -EXPORT_SYMBOL vmlinux 0xf745cb16 atomic64_sub_return_cx8 -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf75f9ae9 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0xf764868a udplite_table -EXPORT_SYMBOL vmlinux 0xf78834ce md_integrity_register -EXPORT_SYMBOL vmlinux 0xf788424d register_sysctl -EXPORT_SYMBOL vmlinux 0xf7891779 gen_pool_free -EXPORT_SYMBOL vmlinux 0xf790b5de __ht_create_irq -EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0xf7aa922c neigh_update -EXPORT_SYMBOL vmlinux 0xf7bc1c71 mpage_writepage -EXPORT_SYMBOL vmlinux 0xf7c4a7ef scsi_host_set_state -EXPORT_SYMBOL vmlinux 0xf7e39aab del_random_ready_callback -EXPORT_SYMBOL vmlinux 0xf7e511e2 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xf7e8bc63 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xf7f51f0b submit_bh -EXPORT_SYMBOL vmlinux 0xf8050fac acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xf805c0d3 key_unlink -EXPORT_SYMBOL vmlinux 0xf80e568c dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf81d98f0 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xf8205ade d_find_any_alias -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82a2e05 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf842f03f elevator_exit -EXPORT_SYMBOL vmlinux 0xf85d8e9f inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0xf862dc8c pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xf866d493 misc_deregister -EXPORT_SYMBOL vmlinux 0xf87c92c6 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header -EXPORT_SYMBOL vmlinux 0xf8a37ca1 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xf8af3dd4 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0xf8b5f310 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0xf8d6a15a pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xf8dc3292 devm_gpiod_get -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf8f522f9 dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0xf926f3d7 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run -EXPORT_SYMBOL vmlinux 0xf93bc7b4 mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0xf9540dfa mmc_of_parse -EXPORT_SYMBOL vmlinux 0xf96ad018 xfrm_state_update -EXPORT_SYMBOL vmlinux 0xf97a323f pci_set_power_state -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9c1b057 blk_start_request -EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf -EXPORT_SYMBOL vmlinux 0xfa114414 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xfa12caa2 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0xfa368908 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xfa472ecb mmc_fixup_device -EXPORT_SYMBOL vmlinux 0xfa48544d eth_header -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa632127 acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0xfa7c6228 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xfa7d8c23 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0xfa835e2a bio_reset -EXPORT_SYMBOL vmlinux 0xfa9e60b4 nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0xfaa2db47 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xfabb3645 elevator_change -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacabc90 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfae79fe9 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent -EXPORT_SYMBOL vmlinux 0xfb10f2c5 phy_resume -EXPORT_SYMBOL vmlinux 0xfb2486c1 nf_afinfo -EXPORT_SYMBOL vmlinux 0xfb28de91 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xfb443b6d blk_register_region -EXPORT_SYMBOL vmlinux 0xfb56566d bdevname -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xfb90c68d elv_rb_find -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbc1b364 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbd4bbdc pneigh_lookup -EXPORT_SYMBOL vmlinux 0xfbd71298 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xfbe25736 blk_queue_make_request -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc03d32c kfree_skb -EXPORT_SYMBOL vmlinux 0xfc0639d5 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xfc13fb14 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xfc153ce3 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xfc2727a5 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3a839f devm_free_irq -EXPORT_SYMBOL vmlinux 0xfc562165 acpi_run_osc -EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps -EXPORT_SYMBOL vmlinux 0xfc978704 flow_cache_lookup -EXPORT_SYMBOL vmlinux 0xfc983df9 netif_napi_add -EXPORT_SYMBOL vmlinux 0xfca31a8a __check_sticky -EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0xfcac84b0 blk_end_request -EXPORT_SYMBOL vmlinux 0xfcb4ef35 phy_start_interrupts -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcd0caac input_set_capability -EXPORT_SYMBOL vmlinux 0xfcd445f3 filemap_map_pages -EXPORT_SYMBOL vmlinux 0xfcd505f8 blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcdd165d tty_kref_put -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf4a7a3 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd18e820 build_skb -EXPORT_SYMBOL vmlinux 0xfd1aacbb unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xfd26c643 kernel_listen -EXPORT_SYMBOL vmlinux 0xfd334f04 fb_blank -EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xfd3ecd41 vga_switcheroo_register_handler -EXPORT_SYMBOL vmlinux 0xfd468208 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0xfd4bc774 tty_register_device -EXPORT_SYMBOL vmlinux 0xfd6d8eac elv_rb_add -EXPORT_SYMBOL vmlinux 0xfd71d757 copy_from_iter -EXPORT_SYMBOL vmlinux 0xfd86075f xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xfd862d68 set_device_ro -EXPORT_SYMBOL vmlinux 0xfd88ace2 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xfd8a10ec unregister_quota_format -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfdad73ff dma_mmap_from_coherent -EXPORT_SYMBOL vmlinux 0xfdb0567e __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfdc07bfa sock_register -EXPORT_SYMBOL vmlinux 0xfdf41364 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfdfd6c90 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0xfe13c522 acpi_install_gpe_raw_handler -EXPORT_SYMBOL vmlinux 0xfe169dd6 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xfe1c67f3 km_report -EXPORT_SYMBOL vmlinux 0xfe215bb7 forget_cached_acl -EXPORT_SYMBOL vmlinux 0xfe252872 sock_release -EXPORT_SYMBOL vmlinux 0xfe37d518 devm_iounmap -EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe85f566 padata_add_cpu -EXPORT_SYMBOL vmlinux 0xfe8ce871 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0xfe99b790 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfea0cd7b key_alloc -EXPORT_SYMBOL vmlinux 0xfea7fee0 xfrm_register_type -EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0xfecd4ff7 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee182f0 tcp_proc_register -EXPORT_SYMBOL vmlinux 0xfee34719 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next -EXPORT_SYMBOL vmlinux 0xff00d029 set_posix_acl -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff206ab6 ip6_frag_match -EXPORT_SYMBOL vmlinux 0xff23d3b5 serio_bus -EXPORT_SYMBOL vmlinux 0xff28ae79 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0xff3366af input_free_device -EXPORT_SYMBOL vmlinux 0xff480992 dump_fpu -EXPORT_SYMBOL vmlinux 0xff4a72c2 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff72c1a3 genl_unregister_family -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff96b9d3 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0xff988916 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffab44b6 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xffe6be4b security_path_link -EXPORT_SYMBOL vmlinux 0xffeaa722 noop_fsync -EXPORT_SYMBOL vmlinux 0xffffa8b4 sock_no_mmap -EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0x7060bf0a crypto_aes_encrypt_x86 -EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0xe409b491 crypto_aes_decrypt_x86 -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x37effbff glue_ctr_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x56b39ec2 glue_cbc_decrypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x7b52a371 glue_xts_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8f02ac4d glue_xts_crypt_128bit_one -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x95bf5db9 glue_cbc_encrypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x9dcf6530 glue_ecb_crypt_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x28afd262 twofish_enc_blk -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x6f068d90 twofish_dec_blk -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0017da21 kvm_vcpu_is_reset_bsp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0151dfee kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0592bc26 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0752f272 kvm_get_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08214fe4 kvm_rdpmc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0826f504 kvm_mmu_invlpg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x085aa3b7 kvm_requeue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x086b9280 kvm_get_dirty_log_protect -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0978db52 kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0caddde7 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1062eb30 kvm_mmu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x109300a2 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x112cbab8 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13674675 kvm_inject_realmode_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x152d29c8 __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x175aea24 kvm_write_guest_virt_system -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b5f0798 kvm_mtrr_valid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cc4321a kvm_arch_unregister_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1dbd4dbe reprogram_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e700d9a kvm_apic_write_nodecode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1fc53aa0 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x203ec62c kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2124f042 kvm_read_guest_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2163c8b9 reprogram_fixed_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2340b230 kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25190dcb kvm_x86_ops -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x274fd2d9 kvm_vcpu_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x296ef7d9 kvm_lapic_set_eoi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ad02946 kvm_get_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c78b8d4 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f636c31 kvm_spurious_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2fbdda8e kvm_mmu_clear_dirty_pt_masked -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3145f603 cpuid_query_maxphyaddr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x322e36ce kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x325efa56 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36ff21fc __tracepoint_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3849ae3e __tracepoint_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x384e1e65 kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388cab08 kvm_set_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bde4641 kvm_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d6bd4d9 __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e094575 __tracepoint_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40ce1e45 __tracepoint_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40df48d3 kvm_intr_is_single_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43f4230c __tracepoint_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4530403a kvm_emulate_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4564c5be kvm_mmu_unprotect_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45fc4e0a kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4794bdd7 kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x479c5fce kvm_mmu_sync_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x490d8585 kvm_lmsw -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a4f8fb0 kvm_clear_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ab1b452 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e79fd95 kvm_set_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50590835 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51a01f25 kvm_get_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x536d3e71 kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x536d5b03 kvm_mmu_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x537b0c4d gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54b8e8af kvm_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x569bfc33 x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x57df6801 kvm_arch_has_assigned_device -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x588a4b66 kvm_arch_register_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a5213ce kvm_init_shadow_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b1715a4 kvm_mmu_unprotect_page_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b257e5f gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5cbfd873 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x60539e53 kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x611efc8e kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68138a79 __tracepoint_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x683215bf kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69546899 kvm_get_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ae431e5 kvm_put_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6dcd4698 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e49e9b4 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ff2c3d8 kvm_init_shadow_ept_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7032ba5b kvm_set_msi_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7223a2e3 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x724a0138 kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72ffc58e kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7663821f kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76d2c1e2 kvm_set_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x77022502 kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b3b5073 kvm_get_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c299523 load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c59e22e __tracepoint_kvm_ple_window -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7cf83b6e kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ee04f05 kvm_mmu_unload -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fab4d60 kvm_task_switch -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fb3f613 kvm_mmu_slot_set_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80ecfb6b __tracepoint_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80f32ef8 kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x856f3863 kvm_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88167bbc kvm_set_xcr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88d2f80e mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89fca4a7 reprogram_gp_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x910c712a kvm_after_handle_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92d713dd __tracepoint_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9484bb88 kvm_find_cpuid_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x955ab82b handle_mmio_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9788d5dc kvm_require_cpl -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x982cd932 __tracepoint_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c171a59 __tracepoint_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ccb5c5a vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e0a65d0 __tracepoint_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa028543d kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0ec3a0a gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3b9ca2b kvm_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8f440d3 kvm_vcpu_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8f7c597 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa9155db kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac83d87f kvm_set_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf7f97c gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad263655 kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1c34cf9 kvm_before_handle_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1d0dcca kvm_emulate_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb57ab06a kvm_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb71642ed kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb73acd9b kvm_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb80afec4 kvm_scale_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb80c1160 kvm_complete_insn_gp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba08e1f3 kvm_is_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9c83ad x86_emulate_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbbca72af kvm_arch_start_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc18b215 kvm_mtrr_get_guest_memory_type -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc13b6ed0 kvm_require_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1a0cebb kvm_cpu_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc23f3bc8 __tracepoint_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2dbe553 reset_shadow_zero_bits_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc445b76a kvm_queue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4b2a9fd kvm_read_guest_page_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc56d75ce __kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc599bc18 kvm_max_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc709e098 kvm_clear_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc82254ea kvm_get_dirty_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xceb7bd1e kvm_inject_pending_timer_irqs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd264e66e kvm_fast_pio_out -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3d3dee4 kvm_mmu_slot_leaf_clear_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6ac9e1c kvm_vcpu_reload_apic_access_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd791c0e1 kvm_arch_has_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7cfb3c5 kvm_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7eb738b __tracepoint_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd92c2659 kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd93bbd46 gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd994b5d6 kvm_queue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd9b72e5e kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda11af86 __tracepoint_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda54538c vcpu_put -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde9c017c __tracepoint_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1a05ce0 gfn_to_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4039454 kvm_inject_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe43f82b4 kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe62797e0 kvm_get_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7a02d9b kvm_set_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec2a31c0 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed0b07de kvm_arch_end_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeec14f8d kvm_read_l1_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef733d4e kvm_set_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3d16296 kvm_mmu_slot_largepage_remove_write_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6d02fad kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfac773e3 kvm_write_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb2f1828 gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc99fa54 kvm_valid_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd646060 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdc68132 __tracepoint_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfed2873a gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff66c9b4 kvm_inject_page_fault -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x01c45e0a __ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x20191b13 ablk_set_key -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x2c3eae69 ablk_decrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x2cb2aac5 ablk_encrypt -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x5f698128 ablk_init_common -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x772fa06f ablk_init -EXPORT_SYMBOL_GPL crypto/ablk_helper 0x7d686d2a ablk_exit -EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0x1e1cbbef af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x2cb440b4 af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0x4443f1dc af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x5b100932 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x622fa13c af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0x69d87970 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x855a501d af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xac466664 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xd54d7fa0 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xe891a5cd af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x2090d681 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x28d5e88d async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x31da77a6 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x269c3c41 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x29e3e820 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5f1383ce __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x612ff802 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb9f253eb async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc6487fe5 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x6e3ddfe6 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xfbb6a235 async_xor -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xea29a6d7 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x2bf007ce cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x6912d838 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x238a444c crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xbbe06b7b crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x241c231d cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x29ccc229 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x3ea3b9dd cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x8c33f8ba cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x996204ca cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xa952a0df cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xacca2a16 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xbeedcefe cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xc6f1cbef cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xebeebd5c cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x28eb9869 lrw_crypt -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x3764bda9 mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0x7436041e shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0x7556885b shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0xbf632c6a mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xc146bc31 shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0xd87e8322 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0xf12623f7 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xf9c9a7e5 mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x1a6b378d crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x860fc78a crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x8e415d77 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xf676708e crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8fbbff99 serpent_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6ecc09ab twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0x4bedb601 xts_crypt -EXPORT_SYMBOL_GPL drivers/acpi/nfit 0x3d4e07f0 acpi_nfit_attribute_groups -EXPORT_SYMBOL_GPL drivers/acpi/nfit 0xe256379f acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read -EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1a65c676 ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1ae3a51b ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1b151d2c ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x29919355 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x38576a15 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x444ceaa9 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x477bf265 ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x532ecac8 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x73061aae ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x77861619 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7aeac01a ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7b77cfd3 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x81839a33 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8511b2bd ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x98cb41f7 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9d06b98e ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9dfc5106 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9fb6ea3f ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb0090988 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc34d183a ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc34e3502 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc8b357ff ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe207bb0a ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x054a6555 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2e460722 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7300c12b ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x76f5d9b7 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7917dd5e ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x797e30d2 ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7b1b4170 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x835d32a0 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x85440fb5 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x895b20a8 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x89b349c9 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc7a51074 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xeac01378 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xd5a00498 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x73b0deac __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8c64739d __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8f03dc94 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xa49a7801 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0041f0c8 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0446d4bd bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x12f1fcde bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1f1c0d8f bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x333b2b31 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4ae816d1 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4c0b2644 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4cb7a553 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5ca44ffd bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6bc6f5ee bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6e3cb521 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7877ed7b bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x83962801 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8b73f3da bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x965bcd04 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa1174d1a bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf46f4c4 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc541191c bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd3959ed0 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd56a4dfd bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xecf0bd8a __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xed494991 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf5a992c3 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfd37a9ab bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x21d5c5b7 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5e51106b btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9b752fa7 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbb3f0b59 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xecb40f38 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf9d3d95f btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x36686c96 btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3e66d619 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x436edcd2 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x49964544 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5bf35147 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x70fd1494 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa22e5ae7 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb9a6020d btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc512a834 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcf549e04 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe442b4f7 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x27683f61 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2c2325aa btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x41dd23bf btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x59cca4f4 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6742c4f4 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6e87aab9 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7836a0de btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x90962f13 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaa9eb3de btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdc0744d7 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe0b832b8 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x097c3f0a qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xcb3ca9cf qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xbe73167b btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xa2f3bcd9 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/char/scx200_gpio 0xa37366ed scx200_gpio_ops -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xa5a58eba ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x035b0f77 adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x05150d30 adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x066db72c adf_enable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x119b1a42 adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x121b8073 adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1931d0e7 adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1d438784 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x205c9001 adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2e31b189 adf_iov_putmsg -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x30211c4d adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x389f842c adf_update_ring_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3ba37c66 adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3fb98bc5 adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4c12ea06 adf_response_handler -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5dd987f7 adf_service_unregister -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x62cac7f4 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x665636d9 adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x68209834 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x696ebffc adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6adf802d adf_service_register -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x73a49534 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x76e98826 adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x79ab8740 adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x89de69e7 adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9646d0a6 adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x98065869 adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c10d2ec adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa4161b05 adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xac2499df adf_disable_vf2pf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb3b335f8 adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc44ed892 adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xce44c904 adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xda02019f adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf287fa64 adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf7e37d2a adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf886a977 adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfb8f4d73 adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x27a38a14 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4ed9e355 dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7e2e22c1 dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8292f10c dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8fd9c8e6 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x34237b78 hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x37e48106 hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x4be9a416 hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x66ed802a vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xf5ba1276 vchan_find_desc -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xf8090b9b vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xfcd27f30 vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0x51ea74c5 amd64_get_dram_hole_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1d733f2a find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2f4b535e edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x50105c4c edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5455e9b7 edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x63c769ff edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x73a25f7a edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x78960306 edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7ddf5051 edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8ad915b5 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8ed9bbf1 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x99000aa7 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9aeb1690 edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9f9c052e edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb445a787 edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb884929e edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcddd9448 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xce70f82c edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd4274a94 edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdbf0f1af edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdd35db85 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xedfab1f5 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf14eaa17 edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xffe828f3 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x81d75507 amd_register_ecc_decoder -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb30b7e56 amd_decode_mce -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xd3cc2686 amd_unregister_ecc_decoder -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x02661e80 fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1ab0d5d8 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc9f096d5 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe89ac76a of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xef149bcd fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf44a971f fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x013fbdac cs5535_gpio_set -EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x93f8fe67 cs5535_gpio_set_irq -EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xc0bb404a cs5535_gpio_setup_event -EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xd3bd9300 cs5535_gpio_isset -EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xe07c0954 cs5535_gpio_clear -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x679c7a01 bgpio_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x76815a21 bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x7e746333 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x8c742a27 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0fedc165 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1e02f871 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xebed1157 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x2afd6721 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x8c6b8395 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xd582fa9c ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x085f0a44 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c01ed61 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c247bf9 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x17370e54 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x17680431 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e3fb6e9 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x27dfcf1f hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3496a551 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4c5489b6 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x518fc51e hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x549d9ccc hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x550d0e3a hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5aa3a8d1 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5ea4eeac hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x61881b39 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6425981a hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x65af3d46 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7373d2e5 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x73d040a0 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x78b2dad0 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x89520b31 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b96aeac hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9e6c1ffc hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9e74dd7c hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2a824e6 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc076a45a hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc30429d2 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc43906fe hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc5eaaf59 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xced36797 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe2fd3740 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4050bb2 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf0aa5ae4 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf0d0e546 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf48edc67 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfecabf75 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x86c3109d roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x101651a0 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1ae7a9de roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x831bb128 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb90612bf roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe0301cbf roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf5fb257f roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x100ceb70 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1058c4c3 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1cd19cc6 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4042c479 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4f71f49c sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7bfb9f69 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x925ec196 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdb235981 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xeb493301 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x9eed71a6 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0e3aee36 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1bb5266e hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x28187f99 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x28ecca4a hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2d279929 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x36f05280 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x40d49dba hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4b23808c hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6a84c24e hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6ef430e2 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x75e70ac0 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa6e0b946 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb2850742 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xda860501 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdef66be2 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe043d042 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfffd5997 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x08c29318 vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a25cd8a hv_do_hypercall -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2052cd85 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25a0a3d2 vmbus_cpu_number_to_vp_number -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3248e0ab vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x358fafa5 vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3a887c01 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x40735b2e vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x59e9faf7 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x70afb2a4 vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7916c84d vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86ff5fa6 hyperv_cs -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x87756595 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8c96939d vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb459e5b7 vmbus_get_outgoing_channel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb67af813 vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc13589e5 vmbus_sendpacket_pagebuffer_ctl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc498ca66 vmbus_sendpacket_multipagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd072c8bc vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd662345d vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdc7a837a vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xde35ad53 vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf262383f vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x2d9bc2f0 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x848d92ae adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x8c703b24 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0f22e128 pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x17b338ff pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1a61ca31 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x210e0197 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x314b9c4d pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x54897ddf pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x59d6e838 pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x690ebdbd pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9b9193f5 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xabe5d7f0 pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb3470ab9 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc3b1f210 pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc6a55cab pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe0133fbb pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfc19b692 pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0a3945d6 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1c24b887 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x348c2aed intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x533285a8 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6d2aa746 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7d427a16 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc9dca769 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x039de14b stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2e24106f stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4c5dfb36 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x99f2e93f stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfe22e548 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x0581d42b i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x39ae9f5b i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x4390f53f i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x8fd91aab i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xf2912e3b i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x65c7b249 nforce2_smbus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x29ff222e i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x80014cd9 i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x62589b7c i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x6c06b56f i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x278a4df1 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x7fc29190 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd045a2ab bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x338a5fd0 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x67af5bd0 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x795895d9 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7da64f32 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9ba0f15b ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xaeef298c ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbecb4768 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd418fd36 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf13851ea ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x755e4338 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xa854c481 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x0bdd5f21 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x981439f6 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x498381d3 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x5f9e7921 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe663d8b2 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x17ac6f43 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x246dfc2d adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x24b5b593 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x37fbc801 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x38230445 adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5290b069 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5668e06e adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5a3f5822 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x98ad4730 adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc500963b adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xeda6bca8 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf1d77585 adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x00d59f46 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x017b233d iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x01b60a73 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0ad66a1f iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0d89c291 devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x14f22bf9 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b8f17e7 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4b003651 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4e3b9930 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x515be43a iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5cfff0ce iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63371bd1 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x66a84dff devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x84956922 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9fe99e97 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa1633540 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa980024c iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaa8b862c iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xabd0de13 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb1a57bd1 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb88c16ac iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc599762f devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb05eb80 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb8b7869 iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd2ee43f5 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd5b2d274 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdd9229fd iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xee923038 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeeebced9 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf2160d6d iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfa7d267d iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xbda84a94 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x937af151 adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x218a9394 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x2ff74d80 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x6c6b5ad8 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x074d4cbd cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x688dbb25 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf39d0c03 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x476415f4 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xafa4a2c7 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7eb7639a tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb7526800 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd6421938 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xea6c0ef4 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0573c1ef wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x23f7fe4a wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3adfc876 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3e49e310 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x49e088c3 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5f79916f wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x672fae32 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x96f4e53f wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xba061d82 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcb747b5a wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xef5dfed4 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xff4083be wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x08419dee ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1e5caf97 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2530a3bd ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x61852daf ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6a86550c ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x71da8c85 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8f3bad07 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbc9f79fa ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbcf3c181 ipack_device_init -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x07893a55 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x26cab5b5 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x39098b7a gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x48abb783 gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5b345c3f gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x72dc906e gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7989dac0 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7de986c6 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8b587be4 gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9033cc2b gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x95e0d0a7 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9809e386 gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa7901825 gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc573a272 gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdf16316b gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe5989908 gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe9a84d65 gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x106faf3c led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2ac65fcf led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3587320e led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7065dcd2 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbab53a0d led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbd70d880 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x16aadb29 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x32258c32 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x401c0ffc lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x45b47edc lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6c74d34c lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7a094ca9 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8080acd3 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8c9669c9 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9a5ddaa6 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe35276b3 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf3b19170 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0c891e02 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x50dd30ad mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x628d7316 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x809848fe mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa27e1a01 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xaa40f966 mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xacee2bfb mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc493a360 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc4c8270f chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcb40b21a mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd6ad7dc9 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xde22c1a0 mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf691ede9 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00b74659 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a1a7a99 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x374f45ea __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a4dfef7 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48991e9c __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f124797 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x614e860f __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x647af374 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6724de29 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6726a0c1 __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68f1ea6d __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7114cfcc __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78c57fa5 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7cb4bd6f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x816ebfe0 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x833b99dd __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8afe3e2b __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x912566ef __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92c55e92 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c59320b __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7004101 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf2376ac __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3942afe __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4cffcbb __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb9c28744 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0bd3171 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc773563c __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd81ad8c9 __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe30b6b2a __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6169c53 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcb52b5f __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2ea6db1a dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x572db2ae dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6fcd6b16 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x764d73df dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x93316922 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x977a5429 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc5fbc38c dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcc2a87c7 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe90428e6 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x317c4666 dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1ae0bcf2 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x889c4a35 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9996a69d dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xac27cd4b dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc775eecc dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc8e6cb53 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcd1a6515 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x0a674400 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x7fed3ba9 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x20f3026b dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2b8789c6 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x351aead6 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcb1b4e74 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xdd38b0d0 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe1dfc67a dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x16fcfa94 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2507774 dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x12e58bfe saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x326c840f saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x365cc74d saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4d6ee066 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4fea2924 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x80350ce5 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x90943807 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb143e499 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd61a25da saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xebe89b40 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0a4cf0d9 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8b0cefa8 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa67c9482 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb0fba427 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb92f50b3 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdb63334b saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdde8ebb5 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3c8c56f3 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4613210c sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x49ca1749 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x55fa8644 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x562a05ac smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6e64e7b1 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x765097f4 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x89216182 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9e67429c smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa5dbbb8e smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb22e0ab6 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb28da67c smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcdae8e7c smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdb0bc08a sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe648a2b0 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf1815b06 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf858a9fb smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x34b6b34b as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x283f0c72 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x40735183 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x2149e1c1 media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0x26a3692c media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0x35657454 media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0x37dfd318 media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0x5c4f9080 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0x5e3b6fc9 media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0x632ad004 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0x641d9a6d media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0x6acf3122 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0x734ddc78 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xa58c05c5 media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0xb15b2d85 media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0xb91a8b1f __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xc162816c media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0xc50bfe14 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xd8c28b02 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0xe28f89e7 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xe83f3237 media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xa793103c cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x08f11d93 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1a26822d mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2b4cdd14 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2ccd69aa mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4003d46a mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x480f7654 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5767f41f mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x85989355 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x95aa8221 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x989f79d7 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xad2e3e58 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb9879998 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc5acb093 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd2c890e6 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd7feef9c mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe47a69f3 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe7fad7e2 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf7c44527 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf901f432 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x033ac1c4 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0f74a038 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x180e3c92 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2269c489 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2f147fcb saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x38e03d5d saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3e1504de saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3f61164c saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x50b33d4b saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7f3f7c41 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x82217765 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x838d6752 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa1d70270 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb1b5737c saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd0a100ab saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe0773679 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe536ee1e saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf3f20f89 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xff911acd saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1594b444 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x321fab03 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6e32a475 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7f6b9c0f ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8c79c6df ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbe91f842 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdfad6003 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x017e8273 radio_isa_probe -EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x24c5187d radio_isa_remove -EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x42e6d9dc radio_isa_match -EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x533e3a36 radio_isa_pnp_remove -EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x8f718bf2 radio_isa_pnp_probe -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x129fe070 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xd2b5dd78 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0a5fa32b rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0ea5f0c7 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x130ab93c rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x168e43e8 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x37c163e3 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x397bd34f rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4672ec03 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x51878f6a ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5f78a71c rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6a06e14f rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7c017065 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7eb890ca rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x86a9f0cb ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x887cf47d rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa2aeff8b ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb99c1e67 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc28901b1 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd65c13c2 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf05278a9 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x0fe9202c mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x8f479ddc microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x6146989b mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x6043d0b4 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x5749cf7d tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x949950c3 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x2d1de457 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x4f89b107 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x72ae992d tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x3bc97167 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xd0d97c16 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x932fd20f tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xd247db39 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x2c42f5d2 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x019bfdb1 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0856bce1 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2b6fcd98 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x34892a95 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4c6244e7 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x64c9091b cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x64eb75d8 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7b508da0 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x80e7fbe9 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x873846a7 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x951c749f cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa3d17f0f cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa5f9151f cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb55689af cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc4231e9e cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc9676fba is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcd80e52a cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdc06379a cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe234f6e4 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe58c23f7 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xb8c50d72 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x96412ff3 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x02d0a563 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2f0118f9 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2fbf7da8 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x34cff70f em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x79ae71c0 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9090cf96 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9f182e23 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa957e66c em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb16efa79 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcf565135 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcfe7bfc0 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd117f1fe em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdae6e730 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdd6282eb em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xddcc2c98 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe3d7239e em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf71e7b2b em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfa8ac689 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x6d50e5d6 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xa7c8a9e1 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xcc52905b tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf72bdbd9 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x2da115e0 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x8a9fbf3c v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xaeaa80a8 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xc5ec6b59 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xcb6a9097 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xef8d8340 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x21290e9d v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x319a7268 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0375d84d v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x05cb0fb6 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x06de9771 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x07799bf2 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0b57fbb0 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1809e82b v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x185cbbb8 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x20f8f24a v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4ac5737e v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4ec0310d v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5fdd5f7f v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x65c0973e v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x671d59a1 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6e383fee v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x741a4c56 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x821b3f30 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x850fbce0 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8cbbd801 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xad255195 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc643dd08 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xce76192b v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdb391c68 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe2b2e46e v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe766a511 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xefbbdb99 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf67534ff v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf949c279 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x13ae4fed videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x18ed21e4 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2273e5f8 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x26a4d1ac videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x34e66730 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x58987bc0 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6c36e79a videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x721af42b videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x72f15678 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x775ed472 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x89cff48e videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x91a096c6 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x95960077 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9bdcb963 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9e3cca8c videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9f4e408e videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa2183204 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa9111552 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa9eecc89 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb1d1fae8 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbc731b3d __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc9ab2235 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcd7da53d videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd1af5dfd videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x01225006 videobuf_queue_dma_contig_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x20069b2d videobuf_dma_contig_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x8e353c5f videobuf_to_dma_contig -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2bb7e3f4 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x5f497cd7 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xe7632bd8 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf90c91c1 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x3d078163 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x5aebd4dd videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf2e58add videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x069dcb29 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3eefb100 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x46f87d24 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x692049dc vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x733cb3fa vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8076cde8 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x90dccb3e vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x97c6f093 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa15f818c vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa2d7ac6c vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xab0e92fc vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xad2a4740 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbc6aefd3 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbf3f0d29 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd696295c vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdd0b9ef7 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe18d575f vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xecbdd435 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x2b39382a vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xdb944cdf vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x4748b7be vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x5abdc878 vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x2aa094eb vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x003fccc1 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0554c4c6 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x08a4db04 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x08aeb093 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x111675d9 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x16278c85 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1d211a8e vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x231c7ce5 vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2502b7c1 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x31acb92b vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3dcbc725 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x48daf4b8 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4fabef68 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x51a383d7 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x66b889e0 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7a722a07 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7b36bc8b vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x88b718ec vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x89990858 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x905bb484 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x927ebe83 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9512fb7c vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9e30794a vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa538d050 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xab23fa71 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xac9e6a53 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb143ff35 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb909b030 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbe128e1b vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdc511a8b vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe3311794 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe9c4161d vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x5543ac01 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0399e653 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x07f286c2 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x085c1c98 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09281f01 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0faf4094 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1959de22 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1fbc3061 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21e70541 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x284b9d59 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28d20b15 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31e3d76e __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3740e82b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x597d0e95 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6305c4db v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6db0e0e6 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x70952bb3 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a85f5d7 __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81aea06c v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x918c315d v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae44dc01 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba162dcc v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8add7e9 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3615782 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd77aae16 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd87bb32b v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdabc9a18 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde7eaa2c v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe329b537 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe6aa1ce1 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeab333c1 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb6c8b60 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeff96e3e v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf8358ccd v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x36672552 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5a618382 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x9b34a1d7 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x22abefd0 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x26a0349e da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2dc2b85f da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x47027025 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5725e9d6 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x58c1372b da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x715f87b6 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x032e2c10 intel_lpss_prepare -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x58d3c5cc intel_lpss_resume -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x7802a8ad intel_lpss_suspend -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x7aafc1e7 intel_lpss_remove -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xafb1be6a intel_lpss_probe -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1564a26c kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2998bf18 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2c7aecb0 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4c6ac53c kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x690cd4f5 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6ddf3b1c kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe2747d08 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe807a720 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x40e9a5d9 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x60aab8f6 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xe1b414a0 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0c028d96 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x320c7a93 lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x52eacf8a lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x97d016fe lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9f1c2f97 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa9f7e187 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xcc73a6a3 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4b15c01c lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc814b30c lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xd49df287 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x03720276 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x14e20ff7 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x16affa7c mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x43c84956 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x51c7bc3e mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7dff1992 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x373324ff pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5e47f6cd pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x61e4ec96 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x787c54fa pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa2fe73de pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb5ff690e pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbcc865b6 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xda6c6b4f pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xde3cbbec pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf77c82f2 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfe39ac39 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x7f70bfb4 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xa1127863 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x0dd75d60 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x23e4c461 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x64fef09d pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd3ed210d pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf5f6eff4 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0c93ddfa rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0d524337 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x108d726d rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x17218211 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x17801ad3 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x43112d2e rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x50024e53 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x67d5af65 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7223b3af rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7a552632 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x86ee9928 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8879ff4b rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x95055d14 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa7b8c424 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa8686f2b rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb1febcda rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc6573d4b rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc78eb594 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc94e6374 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd764c317 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe02d7ab9 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe790992d rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf1659ff2 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf22177b5 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x02337c02 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x05fe9ffa rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0c41c620 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x57b9bb6e rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x6587a86c rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x90805115 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9e6b48d5 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa7b2cc3d rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb58a1eb5 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xba0ffb6e rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xbfe96fb4 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc6ff274f rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd8849dc3 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x02d57464 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a5bc62e si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d164fa6 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0df24b29 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x12ec1047 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1aa473f2 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1bea64a3 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x209e7874 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x220ad8c8 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26a1c3c0 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2eb9fecb si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x37bf4cf7 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x50ed3357 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5376ad39 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x57940d2b si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5ac438f8 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5ce68efa si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6a6efa54 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x761400dc si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7656f939 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x797752ca si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7c87ad24 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9a08df64 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa4a94880 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb55cd4b3 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc5f41c73 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc787efb1 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xce065ebd si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcf8a3dc5 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd3520621 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xee42a50a si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf21efd5a si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf57a3836 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf7092506 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x31119d93 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4914f886 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x5e6c1da5 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x92858748 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xbc183c8a sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x0bea5140 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x551bc397 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd47138ff am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xf3684905 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x3dd8bf2d tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x5a1fadfe tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x83c3e275 tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xf88b3b78 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x1e221f9a ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x2e11219c bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x6dd0aa06 bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xa22a2d6e bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xce792532 bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1093c840 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2ee62a31 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x67f9a39a cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xcf868cf7 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0deec31e enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x83f5c079 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8f466c33 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9c5c4252 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb30fcc00 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb95d4ced enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xdeb0ac8a enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xec51980d enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0900bfe9 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x27a609ab lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x40a6f69e lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x44123cf9 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4a3e2203 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x73f1f42d lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc88b7896 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf3ec957b lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x04358c84 mei_irq_read_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0b6825fb mei_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1ab7bd92 mei_cldev_set_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x23cb1d16 __mei_cldev_driver_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x25108b69 mei_cldev_disable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x33da5cd6 mei_write_is_idle -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x42055601 mei_cldev_register_event_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x47b53bb1 mei_cldev_enabled -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6a0e6325 mei_cldev_send -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6c3f63c9 mei_cldev_uuid -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6d0a5597 mei_irq_write_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x759a3a63 mei_restart -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7a421451 mei_cldev_ver -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8244a308 mei_stop -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8567b32b mei_deregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x92740ffd mei_irq_compl_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x984b796e mei_cldev_recv -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9a4f4881 mei_device_init -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa9803111 mei_start -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb43b3662 mei_reset -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xba95d8ce mei_cldev_get_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbc07f92d mei_cldev_driver_unregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xca067fab mei_cldev_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcd5aacc8 mei_hbm_pg -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xda27124f mei_fw_status2str -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe33e8bf6 mei_hbm_pg_resume -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfb349423 mei_cancel_work -EXPORT_SYMBOL_GPL drivers/misc/pti 0x19f09b98 pti_release_masterchannel -EXPORT_SYMBOL_GPL drivers/misc/pti 0x23bde487 pti_request_masterchannel -EXPORT_SYMBOL_GPL drivers/misc/pti 0x52a78e81 pti_writedata -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x98206a1e st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xee4aba47 st_unregister -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0f6680ea vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1152e318 vmci_qpair_get_produce_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1280c5e6 vmci_qpair_peekv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x13aa5a5d vmci_datagram_create_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1872c7af vmci_qpair_produce_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1a195863 vmci_context_get_priv_flags -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2e30d970 vmci_qpair_dequeue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3ef56cd5 vmci_qpair_alloc -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4b630dac vmci_get_context_id -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ea2ccbc vmci_qpair_peek -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x50a255c9 vmci_doorbell_create -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x677c36d0 vmci_is_context_owner -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x69ef87ff vmci_datagram_destroy_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x6cc1a5f7 vmci_datagram_create_handle_priv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x722d488a vmci_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7d540b50 vmci_qpair_consume_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x8b8ad67a vmci_qpair_enqueue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9624c58c vmci_datagram_send -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9973b9b2 vmci_qpair_consume_buf_ready -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9d16164a vmci_send_datagram -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xccbb53d1 vmci_doorbell_notify -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcf5ed7ef vmci_event_subscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xd4f4e876 vmci_qpair_enquev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdac94780 vmci_qpair_get_consume_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe7e7c107 vmci_doorbell_destroy -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xef5b542f vmci_qpair_dequev -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x12c77ab0 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2a5c036d sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2fd0bc10 sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x35a40dc1 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3a21d713 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x438a8a8d sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x543cb6f6 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5c93e19f sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x61c8f077 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x71f60c74 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7867dc01 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x862df4af sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9ffe08d5 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb8030bfb sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x03c2ace0 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x19ec243f sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5111207c sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x55cf7ce1 sdhci_get_of_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x74ae6b45 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb1d05607 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb81f40cd sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb936c0a7 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdcd3dc03 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x1a1b63b3 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x2532465b cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xe7054625 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x1ed93784 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x608b7c54 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xed20f802 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x944897c0 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x60e2cb1e cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x802dd34b cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x94c83f47 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x03c061fb mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x136c7640 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x13c32718 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x170de4fb get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x174a91ed mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x27c85ecd __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x396250d4 register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x44151c14 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x482560ef mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c4318af mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e6e1635 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5ef435a9 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6119dcd7 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x63c0d514 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6b26283c __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6b8ec091 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6f7a6dec mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x71308f53 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a8c03c7 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x85b22031 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x89c6c2c6 mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x91892cc9 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9a5e15ed get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9d2f1edd register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa23254c4 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa5f66972 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7444478 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xad3d1429 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb16732e7 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc8786e93 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xccb46be7 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xda2424cf mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe0c4325e mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe1eebc8e mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe3a42d6d put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe53f5353 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe97a36cb mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xee5f327f mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xef537d66 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf2a158da mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf2a9f379 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfc4db86c mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x0a40bca2 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x43226f54 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x6ac15e20 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa5eefb76 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xbae286ff mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x1792ea2f nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x6310ff72 nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xa7324972 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x2ead7d5b onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x82e46cd4 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xafe17640 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x221eca4c ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x56a8677e ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x73686c44 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7d6ac04a ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8c1d92cc ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x988111f0 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x999042ea ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xac36c02a ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbaaaaa1e ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc4fb1e67 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xceb72cfe ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd62c61f1 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf124fe3b ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf3822ed5 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x3d3a6656 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xda7a9116 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1804b8f7 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x55d4e753 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x87c8e2ca unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x900c65fd free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa5726aa8 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdb6ce4d9 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x07fe585e alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x19bce736 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2199185d alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2c46614d can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x30c0d269 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x56dc60ab register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x59d879bb can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x62178131 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7227ebee open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9345fb04 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9ee9853b devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa2ece240 can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa47b3e54 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb72e65e9 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc5466122 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc89cd1f7 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfcf49124 alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfcf9b39c safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1eac667c alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x291b49f0 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x88330c13 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa3bea24d free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x043e2abc register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x16551cf1 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x628d4b1c free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x77db9ea4 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0018645b mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x003a0746 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x039196ab mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0549b5c9 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ffceabd mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11ee60b7 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1403c1e9 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1532bc28 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x171b78dd mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18b915d8 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fa56e2a mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20c0a4fe mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20eba06d mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2179437f mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23693717 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28b66343 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29cc1ee1 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2aefc1bb mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ccbb6d4 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f39694c mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x304c3a92 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30594be9 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30f4738a mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x312011cb mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f028639 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f1aaf24 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4058631b mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4122c850 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4424f86a mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4457c923 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f2ac213 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f76e0b4 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x513ed7c0 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x533b9837 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x550e490b mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55e723b6 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59b7fbb2 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59cee75e mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cda7277 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cdecb63 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f2bd07e mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x626fad5c __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x637b035e mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63dc6044 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6786b8ab mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68409052 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68920712 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x706a5911 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x720b5bbb mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7319938c mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x737f2e56 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7566893d mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75e275ea mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x767f5dcb mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78c4939c mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79a550e1 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bec9471 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c3da420 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x844d80df mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x876f9515 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87b28f7b __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x888b64fd mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a02a4dc mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a53f644 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a647748 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a86d3cb mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93d76bfc mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x946c0251 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97b333ea mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98d917f2 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b80d4da mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c4eca4a mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e22a050 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2720ce3 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa372a4b7 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3b2e001 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa722f665 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa729d828 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9404ffc mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaaea379c mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab5bfc19 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac783f86 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacf65ad0 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xade1a2a7 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae1b4156 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf589f24 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb30bc2d6 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb894ba63 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd10c12b mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0da4910 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2bda631 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc318012a mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5490e06 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5b1f23c mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6b17803 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7d07836 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7dd27dd mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9af2a1d mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce0d79cd mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf35cb8e mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfff8c4d mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd33cc7ca mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd63ac412 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd66f8526 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7f8c2e8 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd832629f mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb44fa9d mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc523c93 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc7ee809 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe095f39d mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3e0e287 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe432cb98 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4444caa mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe77c087b mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7f79897 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe836b5b6 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9864ece mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef6a0936 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf040305b mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1c99105 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf51e7c8f mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6a8b504 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc1ef57d mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd6d212a __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x065d3722 mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07b5fa2d mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0823cfc1 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f9280d5 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x182a4172 mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c3f3cc4 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2573d923 mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a505ea0 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e20f0c9 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fe8d23c mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31c67849 mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3faa8619 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x401d9d3b mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44ae8a82 mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49add10b mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a5bfdcb mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bcbd864 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4de6b742 mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50397fc8 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x514f6363 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54c95fcb mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59ddcf90 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b2022fa mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x602bc5a4 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x661a7df1 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68e5a277 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x756fc247 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79f7c92c mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8255b806 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82c9212f mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x946ad9b7 mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96f44f38 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99bd53f9 mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c829c36 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa357451c mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7f4373d mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf61280c mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba92cf0a mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda90f617 mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcdfebaa mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfa9263d mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf10dccdc mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7bc677c mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7dcc49b mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8df8443 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x7417df8b devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x43cc2133 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4dd7b22b stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9071f6db stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9f9c6a70 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1dae545b stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x25944437 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x862b9ee4 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xfd3d5398 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x063cb776 cpsw_ale_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x12a5b40d cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1853d83d cpsw_ale_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1edca4ae cpsw_ale_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2a3a1c2c cpsw_ale_dump -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x374c3b85 cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x561d903d cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6b307ab9 cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x741b5756 cpsw_ale_control_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x77ec5c14 cpsw_ale_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8fdd7312 cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x92feccc5 cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9450167f cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdc0ec681 cpsw_ale_control_get -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xee8ebc59 cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL drivers/net/geneve 0x7940a7b6 geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/geneve 0x8d364e35 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x1de156e9 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2895516a macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x52e55eab macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb772dccd macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x1e755744 macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x47ecc370 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x76cdf739 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x93f1732e bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9a1c3988 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaf56cec8 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc97937a2 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe7fe5d71 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xea01e2ce bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xeb0c9ecc bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xeb177aa6 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x07198e89 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1064e9b1 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd3c36024 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe863f166 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x03d178b7 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0441629d cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1eb224e0 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7087a6db cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x71817157 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7e14da36 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x944b9500 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9cdca6f3 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xea0e937d cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1098d040 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2cf77a8c rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x35d627b7 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4936ccc1 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x509e8197 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf6e5b10c rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x022b2369 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x09a1ae93 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1c166e77 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2b41aafc usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x30f0bf6f usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x33c62301 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x47d3b5c2 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4c0bd6b1 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x62682612 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x69579961 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x811ed468 usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x82d8a6f3 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8841d0ee usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8e8715ab usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x93bf0855 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x974a776e usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x99f7fb45 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb43c338c usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc1975af2 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc7ee480d usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc81366be usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcb3b7cfc usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcbbaa767 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd1d0b036 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd55fd631 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdc999e4f usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdde26f08 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe08cd829 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe197aa41 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe424373f usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe9cd068f usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf6930ada usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x14777376 vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x5afcaa99 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0b2a6ff6 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1502b52c i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x19c88780 i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1e6ed7ed i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3ecb9dbf i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x40629bfc i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4d139c25 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5a23c310 i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x65fc759a i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x81db8a11 i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8bde47c8 i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8db763c6 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8fcf5c28 i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa0776316 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xca03bc9a i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd9c0af79 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x4507e0ae cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xe643c4d4 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xf12e9953 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xfb23d37b cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x458df1ee libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x0f7dad30 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x4e23af80 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x9e86e7bf il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xe9aca62f il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xff57c260 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0ce0d27e iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x15a3b43e iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1d6323fb iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1d928af4 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2a931baa iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x31c9c964 iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x390074e0 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4530d906 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4611a587 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4cfa84c8 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4dd9235e __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x512a2413 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5ee5ab54 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x67b4e092 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6c543a69 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6da7987c iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7fd4f57f iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x99d13f27 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb8979af3 iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb928772c iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc5c65520 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdae349ea iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xee67b592 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf0f17743 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf692c74b iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf8f5c820 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf9f75f20 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfddfdfab iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x17697b4f lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1d2fa14d lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x383e608a lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x57acec63 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x72bf7cad lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7ba99c2f lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7d4bd9d6 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7d754784 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb94ec494 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbe5b8c11 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd054213c lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd50f6081 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe251477e lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe68d2056 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xef2ba71a lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf97271a4 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x0e3e8bcf lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x35834f92 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x48163fb9 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4e6dcf5c __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6886537a lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x801741e2 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x9a6e874c lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xecb9bd90 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0152dbb9 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0d98b1ad mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x14cdc33c mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x157b1bec _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3c7d80cd mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x42bd8366 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5732bcd8 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x59ff6f2b mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5b683a55 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x62588614 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x86190260 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x86334e26 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x984b1c6c mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa40ff482 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbb328bf7 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd86b891c mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xda7849bf mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf241b6cd mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf4a98e6e mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0b2e72ad p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x288e399e p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6260c869 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x66432e48 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6fcbfac4 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7f9a1ce2 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x80fae0a0 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xb55a2023 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xcbdb7e0b p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33d0e847 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x501a742f dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x507e6ae5 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd5b0f3f8 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0503a48f rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x093455f7 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0fa2531b rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1ff12e4a rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x22b5f2f2 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2b7c47cc rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x32e7fcfa rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3d1d1220 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4253b3f7 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x432539c2 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x49545d97 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5700cd44 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5ff366ca rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x62aa6fae rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6bd8cc40 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7d9ef5f9 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x82f96bd7 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8cee5f77 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8d38c0c8 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8fcf51e5 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x99667f2a rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc8ba3d4c rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd83b92d3 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdfd1f95b rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe4290d74 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5abf74a rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe90c4dd6 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x080c51ee rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19b57fb4 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c56ed48 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54333780 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x662a8047 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x83a913d1 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x88ea0c19 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9670976f rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa41d558c rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae5b0fda rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6a438be rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb97c0179 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc0a020b7 rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd0d3261d rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd775ffe1 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe1adbb26 rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe268923d rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7c39d9a rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfb9dfa30 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x5b950234 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8305525e rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa6e119da rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc58e2464 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0eed6653 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x107cd4b7 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1089ae89 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x28841656 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2b58fc14 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x305ca273 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x373c9065 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x39df59f8 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3a4b41df rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3e105bf9 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3f3bbb71 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x417c790f rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x43347769 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x457e6332 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x45d8ccb3 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4aa4b9ec rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4c46d32d rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5a0345e4 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x60bb6f3e rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6d5613ff rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7082fd2a rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x86c159f8 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x91e7dc88 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9a324a1f rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa011990e rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xadfa7d55 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaf4eb02a rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb7df31d6 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb88d90b8 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc8fbb02f rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd459aa99 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe080bc5e rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe2442f9d rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe46c2f7d rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe9235d04 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe934e148 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xed1c5991 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfda9d5e0 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0388ed61 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x263d47bb rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x26a41a97 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x307737b2 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x35b90994 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3c1a46f0 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x54daf2b8 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x72c94d53 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x79efeb39 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7d0bf498 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x8b4e44f5 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa62863c9 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbb88be04 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x06437146 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x064ac8e7 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0d7ab0fc rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x17c46c00 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1cc3deaf rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x242f4fb2 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x24a31d18 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x263385a3 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2b3f791b rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2bb15f0c rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x42304e58 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4ba2f21e rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4e048d3c rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x54074fef rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x557ad7ff rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5a9c595d rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x618bad21 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x648f4239 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6752058b rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x71f9571d rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x767fad83 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7790b912 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8866c752 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8e186ad3 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8fa7359f rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8fb6a5f6 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9d2522da rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa125f27f rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa743504b rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa9bc748c rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xacf95049 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaf28d5c1 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaf3125bc rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb1c61125 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb32251fb rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb9f7f06c rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xba9ce1ed rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc98ece16 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd0a93201 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd5f6617b rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe462bfba rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf13b22e6 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf25388fd rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf2f86d79 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf8f0f9cf rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfd7c917c rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x32c7107b rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x40b1d136 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x5d8e101d rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x74212c68 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x8110ab54 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x45a179d7 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x50b151de rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x95c4573c rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xddb89c87 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x282f1166 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2b3fe14a rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2b75d8f1 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3719e3a8 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3bfe4fc5 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9ec23548 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa5b2eefc rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xaf8e0474 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb3daa9ce rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xbc5059fb rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc4f9f470 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc85362b3 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe6a98696 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xed90fa28 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf12acf71 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf48ee990 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x13232e39 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x5341e8ef wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd181e2ba wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06069f0d wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x08269545 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1943ba94 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a60eacf wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b51f7f6 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2035d2de wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x23e05c05 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x304f4b88 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x391a13cb wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4364241a wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x46ff6bf0 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4b2bcad3 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d3a0f42 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d4da3b1 wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e4fdf1b wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4ea81bfd wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x51fa702c wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x550859bc wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x557c0201 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x56998a04 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x576b4c8e wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x57752a58 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5bcb7c7b wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x67c24908 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6b18e567 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84c8bc8c wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8b116a70 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x915591e2 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9320cde9 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9dd20f5f wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbc0d6623 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbeec00bd wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc08946a0 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc11f578d wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc3f2e0c5 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc544925a wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcd18434e wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd34a05bb wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdc9a5a32 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdea5052c wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdef219f4 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xec14d3c0 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf7362038 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfff892b8 wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x4c4a67de mei_phy_ops -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x7c0d2b51 nfc_mei_phy_free -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x9092d8c9 nfc_mei_phy_alloc -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x4f6f4a13 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xbc5c58ab nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc28ca0cb nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xfd4dffb9 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x069b6641 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0d9e7ae3 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1b67c1af st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x240216a2 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x291cf68f st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3de97caf st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x70b1ba6d st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf251f786 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x12cf6512 ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x6a9a3443 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd84c8828 ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x121e45a6 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x20976152 nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3aa12eee nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x747503ef devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xb87f27d5 devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xccc422c3 devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x2c2028d7 intel_pinctrl_probe -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x515d28bd intel_pinctrl_remove -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x54efd494 intel_pinctrl_resume -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xc2582926 intel_pinctrl_suspend -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x316f5de5 asus_wmi_unregister_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x959db485 asus_wmi_register_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x56235c72 intel_pmc_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x75068282 intel_pmc_ipc_raw_cmd -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0xa6c87106 intel_punit_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds -EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx -EXPORT_SYMBOL_GPL drivers/platform/x86/thinkpad_acpi 0x706cdcef tpacpi_led_set -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x64ebe677 wmi_query_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xa9b7afd8 wmi_set_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc5e3dddf wmi_get_event_data -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xe2426710 wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x111812ae pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x687a7015 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x90f45a41 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x6365870a pwm_lpss_byt_info -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xafcf8794 pwm_lpss_bxt_info -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xb0a94ebb pwm_lpss_probe -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xb563cdb0 pwm_lpss_remove -EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xc34d815f pwm_lpss_bsw_info -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x257e8127 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x41d665de mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4795c231 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x53286f5e wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7349c784 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa2fda085 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa96a6359 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd007c115 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf2012ab1 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x85ee846e wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x016b6f9f cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02b56792 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f80d87d cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x11641e75 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x15875cdd cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1cfee021 cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2041363a cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x24cb64d5 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c4a8d61 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2fcec15a cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d5a950a cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x444a47ad cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x489d1477 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4f0929fc cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4feddafc cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x50837494 cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x568a8f4a cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b4325dd cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c753012 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5e0b1b97 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ecadc9a cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65f6f197 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6b310363 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6baef32e cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7937360b cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x810c36b8 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x867149a0 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86e07bfc cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x871d054d cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8e924ffa cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x98d1b24b cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa06a7a90 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa5aec778 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xae47a28d cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd6685e9 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbfa7f84c cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc6a93bd8 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc84e1bd4 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcdac5c82 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd96f77e5 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe7a14654 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec6a8a5a cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed7d78aa cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xefa9b555 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf4edde73 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf66998a8 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1a2bd0aa fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3149434a fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3daeeaae fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x47dc33d4 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4b6f8c8c fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x65ea0665 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6bc7d5ab __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x75ff2a4a fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x82e6c6b6 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9d264cc9 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa83d421b fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb7c9b1af fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc5b1cbb1 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe595a687 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf54ccaa2 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf8c695be fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x43298f83 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6a1993ea iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x829821ac iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcf140147 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xdf23addd iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe618f59f iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0bbf372f iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11bdc66e iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1516ec9d iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x223b8d2d iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2553d5d1 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27cdd1cf iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ccbc985 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ce39237 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39456b36 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39541cf8 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d72adee iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40d08bec iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x51410fae iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6bda9ae3 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x725a2ee6 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74d8e42f iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x77af1991 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x783c5cae iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x83284775 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b129473 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a8cfb80 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9d756748 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9dd1451d iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xafe06c30 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb46f558d iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe725c82 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf23342f iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc319e2d2 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc3f1af3d iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc648e38f iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc2bb193 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd37ba36d iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdb28c5b2 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe63ecb0a iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9ab5c2d iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed710eb4 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf19af50b iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf5fa5edf iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf6fc9116 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf8632532 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb928508 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfde2875a iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x388a39db iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3abc1781 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3dfbfc40 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3fd4969a iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x49d6e93e iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5b7cc1cf iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x65e57538 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7cb1186b iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7d2684d4 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x87a5ccf0 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x87a857b2 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x915eca54 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xad4ce8a2 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb98ff1aa iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd1cf87ce iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf51d0112 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf5826766 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x038303e8 sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x07c3c5e2 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0c8b054b sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0d915da2 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1f807d49 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2bbb0306 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x36fe39fd sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x387c466f sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3d53666d sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52427a06 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b61b5ad sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5ff500f1 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x628b7dde sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6a379d97 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x85287707 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8bcfdc87 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x90d75b56 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a8447fd sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa826f9b0 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae50dad4 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd422d476 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd5bcedc4 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd76eb663 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf650fc16 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20ba4443 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23008933 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x28490ce8 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x319ee775 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31bf8dfc iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31fa1659 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x32da9e5f iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a7d4dd8 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x40013d0a iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5384c974 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54fb567a iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f5f6b37 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70864bc2 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x797f5fd5 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x903cb246 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x929b7153 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x980aeb1c iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x982a4bd9 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9deeb0a1 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa65c82f2 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa9f42fe iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xacb3a45a iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb2c26f11 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3b051f0 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb95edb58 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9859955 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca745a78 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e90c4e iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda6c113c iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde8fb284 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdfc6eb8d iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe00e21d3 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0aa9ade iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe66aa7f7 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8d973f6 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeeb27fcb iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef646c0b iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4a8e093 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfaa65f7c iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc662a7a iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x37279f30 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa1e0ae3a sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xb8e2ef35 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xeb4a7204 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xb81e84f0 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x45123279 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5b5cce38 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9297aecd srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9c45349d srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc06faa0d srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfd54d1e2 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x06dbde84 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2a04e685 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x4b0ae493 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x69d19304 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd666ef60 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe0fda755 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xf69ebd10 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x004693d9 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x36bcdcc3 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x4fd1a2fe ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5ac201ff ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x72ad291c ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xae6b18e7 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xca5da82b ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4b8d0dbf spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6138b1cf spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6754dc36 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdcbed487 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf2c57180 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x054c7f6c dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x96422db3 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa25a1114 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf8f49520 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x159998a8 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x31ef6137 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x65cf6dfa __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x72140ea8 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7700d946 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7e04fd21 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x82fa6888 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x844ed872 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8a901752 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8ea4bea8 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb111c7b5 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb6743aa7 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb79f7ff0 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbdb560b2 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc472df3c spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc599e8a3 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe7a23343 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xebcb51d9 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xe1c59a8b ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x042a02bf comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0735a870 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x101b50a6 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x15d076f3 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2628e6d6 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x292c454b comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2d2dbd95 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x568f6d3c comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x585c25c1 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x602967e1 comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x61d92331 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x65a90d75 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x695d2038 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6efc9248 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7781bf24 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x79b38283 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x88f03ec8 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8b6964d9 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8bda787a comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa043f446 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa3645e3c comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb53dfbef comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb60525b6 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb8ffe95b comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc269b147 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc50c3702 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc77bcb4e comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdf53d3c4 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe07105c1 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xed73e31d comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf030ec17 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf1284912 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf4752e5d comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf5ecbb2b comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf9768cf0 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x162f0751 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6fbea797 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x914d149b comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb47efe88 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xc8d17e01 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xcf1fd9c7 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd1041683 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf845dfbd comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x30a20c67 comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x30b0d420 comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x636f25a3 comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x779881b7 comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x8f4d99c9 comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xa934c7cb comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xbadd6353 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0234ad89 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0d94dcce comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x5a0650d0 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x76784348 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd68bfbd8 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xdc83d5f5 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x60879bbd addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x84ec4313 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xf3f8680c amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x7f37577a amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x18feb0c1 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x640e7382 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6b33a7d2 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x889a2661 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8a27f64b comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa2409fb3 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb5a642f7 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbdce3d45 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd029af1e comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd1bd1f16 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xec350212 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfb575a97 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfc87ed5f comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x12f3ab2c subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x31fd6fbb subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x5bdb5ff9 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x18589fae comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x39b8403d das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x01fabff2 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0667afcd mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1ef03aa7 mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x21eed8a3 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2fa0bfe2 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4d878fa1 mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6080aa8c mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x66cab54c mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x69eb26b2 mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7225af25 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x799e5f5f mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9750981e mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x98de80b9 mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa07272f8 mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb3d86b78 mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb5d9a594 mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc42719a5 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd4638671 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe7e4a1ea mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf959a991 mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfcc36dd5 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x18034ef1 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x8b4bb574 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x1b2e8a73 labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x5d351745 labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x636af58a labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x63f04c92 labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x6d56edca labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x042a7aee ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2ebf0a09 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x41148f98 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6f1861e8 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9c2f0a5e ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb0cf1499 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe90d7386 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xee76474e ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x39933eca ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x3f143ece ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9363aca2 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa3231cba ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb4b61e8c ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd27720d0 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x09a355bf comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x12a277bb comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x223604a5 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x78ef59c7 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x80d134e6 comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa3c1ed25 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xbfe606b1 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xc551c565 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x017da883 most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1427b972 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4a7a98be most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x62beddd7 most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x907476a9 most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9340a83a most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9ee62723 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb3313761 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb79cf30a most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xbd754ee7 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc8be9c9c most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xfee63f5e channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e300fbe spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2ab8daa7 speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4658d2a3 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b3aeb81 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbe16ee31 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd2562966 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd8d5c6d6 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd93c3283 spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe0c59347 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xeca89107 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf84cbcbc spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfea1aedd spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x621b6b62 int340x_thermal_zone_remove -EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0xf8c2d02b int340x_thermal_zone_add -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x68b1edb7 intel_soc_dts_iosf_add_read_only_critical_trip -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x9e80d899 intel_soc_dts_iosf_exit -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xa1c1cd73 intel_soc_dts_iosf_init -EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xb13fdca0 intel_soc_dts_iosf_interrupt_handler -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x25344da4 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xc94536e4 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xde39be9b uio_event_notify -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xd99abcf4 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xfde85212 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa9195b35 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xabf7e8bd ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3519881e ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x35644a16 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x55d68d73 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6240b331 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe2ca2594 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xfdd2c330 ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0a75a0e5 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2c830d57 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x341e6267 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x36786169 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6b25af22 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x765a8034 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x83ac8f11 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8c8442d2 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8f129ccc gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8fb3a603 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x93de01bb gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9b5b91bc gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9e055571 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb84e5525 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd3497876 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x503bed82 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x8c812fe8 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x4f83a2f9 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x8e9565c2 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x9f14f0ce ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0108de78 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0b994e7e fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x29892ae8 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x29c9bf44 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2b3d640e fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2bd7b6b6 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7de00104 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8840f330 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x88bc6ed4 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa0b3c3d2 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc73c717c fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc9b85a37 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1b61c36 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdb1af29e fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf73e9cb4 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x05a0cb87 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x17c86f1e rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2faf8ca0 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3d06cdc9 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4e486a79 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x68f1208b rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6f397aff rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7f145681 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x925d1d84 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb6a82145 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcccb3928 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xceda2556 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd0de56d1 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd6ce784a rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf38b1ac1 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x051d3ea9 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x19f50a5b usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x279f994f usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2ea79e08 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x30540742 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3176ce95 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x38ed5423 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x41ae11c7 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x45769dcb usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4db88084 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4fc434a5 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x541f1eb1 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x576847bf usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x600a3083 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6e805616 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x72478afa usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7247ad50 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x75d3f07b usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x76683d9b usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7bf5a20f usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8168464a usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x916bc599 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9a6a0e3c usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9b67885c usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb2ff1ecc usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdf3df679 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe01ac0ce usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3490f03 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeaf1f379 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xebeefd89 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x18272959 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1934ee3c usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x20dad3fa usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x22336b52 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2b7781b2 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e18e771 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4622a9e1 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x799f7fec usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb70e6882 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbda71f0b usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xda67af6a usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe0382555 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf4643b02 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x3db0c486 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xe522adae ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0ad8c08d usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x346beca9 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3da43502 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x77ea9fda usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x79c3f08a usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe62b4108 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xea8467c7 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xee107d25 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xee6c0b98 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x73de9a5d musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x2cd71b4b isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x37afc316 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1ff85022 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x34f65fb0 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4976251b usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4c7ee766 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5bbf6d67 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x66e140f1 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8e97a1b3 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9013f1ce usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9248050e usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa46e34ae usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa4820533 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa87ae5ba usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xab3d4669 usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xafec6be6 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc7827fc1 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe65a3c2f usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xeec73b57 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf27d02cc usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf9d1adb6 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfba596e9 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xff344412 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x060f3133 usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x07f56024 usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0d42abae usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2d7f64a0 usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x30878aef usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x33274156 fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x34c1baed usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x574b1dfa usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5f21ed02 usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x72a6f879 usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x80c27853 usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x812ac4b4 usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x836a65f3 usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x851c0446 usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8a0ce5f4 usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x91c743af usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa3aa6f48 usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa6ed31b4 usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xaaeab986 usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd1c431e2 usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd3ac7be8 usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd8fb195d usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf7cb3954 usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfe2d2b45 usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x310b4828 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x334d4d98 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x700dd835 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7bd4524a usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7cd8ef97 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x98ebd57b usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa64cda4b usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xad01e782 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc2f1b95c usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xca94a86c usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcda40c2b usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xea72da39 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x4fad3ced wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x527f8f70 wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x52b37e08 rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x76108433 __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x910867f7 wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x969804ef rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xe30d18c1 wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x187d61ff wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2e7a28f4 wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3e08fda3 wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4548b9fe wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x483e9f30 wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x654a74e8 wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8890bddf wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x92342062 wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xabe9e63d wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xba74cb12 wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc364d2e7 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe1895bd0 wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xed3f1fcc wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf6306e14 __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x1988c60d i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x80dcec52 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xd63433f1 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x0328e008 umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x048be83c umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x205e63b0 umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2606728a umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2a3b205e umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3a6469c8 umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb7ea0773 __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xd9a0d3d3 umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x11ba492d uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x125dba35 uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1ec6f1aa uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x246a1af1 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3da50130 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3efed452 uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4020f50d uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4b388fd5 uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4f54a508 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5c699930 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6e21004b uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7426ba12 uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7ce657aa uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8374946d uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8478a261 uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8613796b uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x89b3d7ff uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x93719c42 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x95068d2f uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9e19a28a uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa759f534 uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb2139ef1 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb5ff0416 uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb8262317 uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbc1a423b uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbc3218c3 uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc856bf50 uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc862d070 uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd1262b0a uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd253b9eb uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdb6dc3cd uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xde7c0388 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe3630d3b uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeafcbd07 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeb0f7335 uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xecc9750d uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfa227ea6 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/whci 0x183e3e9e whci_wait_for -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7f27ef71 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa729f8a8 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd0890274 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe029e740 vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe5b4bc6b vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf1e5398b vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x20f1aac8 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xc046165c vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x048ca1a0 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x06833859 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x12695099 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a9a9971 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32f60b66 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x408f12b2 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x41ffcf4d vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x45bc7c98 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb96f77 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5163bb0b vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5cb30e14 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x61ae18de vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x64f85469 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x674aecea vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9b436d54 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa4a85faf vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad6e55e5 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbc51823f vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc1abf37e vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc468ed1b vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8472bf1 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd136ac27 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4f9fca4 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd853b5eb vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda3ebae4 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda763ede vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe118241e vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe57b82ee vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe986641b vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf29e6cad vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register -EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0846049b ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4fcdf642 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x65430b44 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x79a0dc22 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8d3e79af ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9c997658 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa4dc5feb ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x07cd2887 auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1529429e auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x2bc8195f auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3d727676 auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5e00e141 auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x76eff718 auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa27516a4 auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xc285823f auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf533b3a1 auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfbd5bf3e auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xeb4e79de fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x19ddab1d fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x4677611e fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x6b068eff sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xfa6e4236 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x22a7af24 viafb_dma_copy_out_sg -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x292da7a2 viafb_irq_enable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x79e6190a viafb_irq_disable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4f863e6 viafb_pm_register -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcaefb732 viafb_release_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xe2366dc0 viafb_find_i2c_adapter -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x087f8661 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x2316654a w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa3ee7599 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xbd5a84ec w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc136cd68 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc340ebe1 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xcc76adb5 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xee1cd931 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xfca9036c w1_read_8 -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xe2ef251a xen_privcmd_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0079de8e dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x463bfada dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xaab81cc4 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x49d82f77 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4a075b5c nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x857a2f36 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cf02700 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb766cdb3 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbf329733 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd42bf059 nlmclnt_done -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01154a26 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01e2acbb nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x072c0a50 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07feb7dd nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x090ecb8a nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09e49c0b nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a22b72b nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b79576b nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x122e9242 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15056e92 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1652b43e nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16d75b7e nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x185df6da nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b609d91 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ea78935 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x209f7f14 nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20bb538a nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x249474e6 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2560af38 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25eb780d nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29e6592e nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a6db670 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bcdb7a6 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bd4adf4 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e8bcaef nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31b14010 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x342da407 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38b6f6ff nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cb0ac68 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f5ac9e5 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f98b08b nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x402baa95 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40489a04 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4100278c nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x412028ed nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x428f90b0 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46ab0917 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48a29b89 nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a84849e nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ac23023 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ae95df7 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b58ab62 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bfe0599 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d147b08 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e1b4ea4 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4eeda826 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57c9bdd8 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58027d35 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59a7c6ca nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ca097bd nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cb59488 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d851bbc nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ef16c76 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60b5d980 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64b6f7c1 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68d590b6 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b58d134 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b741e49 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e1c2e33 nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f74c03e nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c90e6be nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cc1cc3e nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dbf0b85 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x807627c1 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83d1b995 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87ca6e88 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89a93a7d nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a2c7e4f nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d460c0c nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9024e11c nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91477d0e nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x921cdb49 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94b9a51d nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95928275 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9862235d nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98a7696e nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c076496 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c4a5ffa nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e195d0f nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa42dd04f nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa51a5908 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa64aa2a8 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa869d14e nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab284ee4 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabad0b33 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae596ba9 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaefd6d88 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0ffee9b nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2be0778 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8735097 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8a04d80 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb912d08d nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba80c4d4 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe81d79f nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7b4870c nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8a1d045 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8a540f7 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc90c4657 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9c628c0 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca01ecc8 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbf68e90 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc10846f nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce09b742 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3313156 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8168740 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda0f22bf nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd68c638 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf3bc4c1 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdff559b9 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0a714e8 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9922e11 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecd2dab9 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3702ace nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf390f361 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5f390b0 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf78ad140 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7c857eb nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf87e05f2 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf91ad0c6 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9950f6d nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd1962b4 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe19f420 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff7f4a0f nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xeafdf91f nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00906296 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02858046 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0382674d pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x083c6de2 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c421936 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ce68458 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18c54545 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1911f9fd nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ea84945 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x225d08b5 _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26bcfe97 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x286e7a87 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bef8de6 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2db2673c pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f25da08 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x358658bd nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35b5d6a4 nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x400f073f nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41a8af76 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x469c5e59 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54ef644e pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5dbe26c0 pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5fb9ef84 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6312cbb2 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63ad7acf pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68d24b6c pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c12b8d0 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7285df96 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d4caacb nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7dcf2536 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f9f74d5 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x816248e8 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x855affd7 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c75e9f7 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f499d23 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91a1131c pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91aeb713 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93206ea8 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9530bbf3 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9774f6f0 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e8af5be nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9fc703fb pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3dd7cda nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1a02a17 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4c07caf pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6621260 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9edd3bf pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbaf024a5 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc63860a pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbed359cc nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc047c510 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc669308c pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcdd5ead7 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdcd466fb pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdde40254 nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdee45a7c nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8d2cdc2 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed7eafc3 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1e6d6c5c opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x32dc907e locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x61d62c0f locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x20978fe0 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc65a459f nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x23382d8a o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x419d480c o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8d31bc39 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbebf2e18 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfa93afc o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc85823d1 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf9492c93 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x39cebb57 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x48d7bdd1 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5330e568 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x734b84d5 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7f1dce53 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x84ed6d52 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x89ae48d9 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe540588a ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xf82c0181 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x7cf8a6c3 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xd9eefd1a torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xef6b0da8 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0ee77bd9 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x68d7e051 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57861324 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57d39367 base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x882ce5fc base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9e0112d0 base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xaedfbb15 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xc8fca8a6 base_inv_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xd11741a1 base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xe3d900b5 base_old_false_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xba76a5cc lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xde1abafc lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x05112c0d garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x16f3ff12 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x839464a6 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xbc8a3887 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xc4c03c8b garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xd14b8ee2 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x14bdab20 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x3d90cad7 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x674c3d8f mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x7c1d5f88 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x9f832427 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0xa7547d5c mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/stp 0x0444d3f1 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0x2522eab3 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0xc66e3405 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xcd696895 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0x94ca4f51 ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0c679a2a l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2485caab l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7cd24f75 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x95794ab3 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbf1f19e6 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xce3a639b bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd6d036ac l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xff04067d l2cap_chan_send -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x12aef5af br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3709654f br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4db9ae9c br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4e26a06e nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x59d897ea br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7b71ffe5 br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9fa97836 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd77b0860 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x27c2c17d nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x3900db5d nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0a59d97f dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0f34b412 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x11da303d dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x134c09d6 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x23672cd0 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3871c4c4 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x463b9ebe dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x464d290d dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4c6167a2 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e2d4d99 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x519a23bd dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x548c1155 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x68be465d dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6e057a1a dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7733679f dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7b0151aa dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8047276a dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8556f51c dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9106e0c6 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9bcaa6ab dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa6ac738c dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa76a4aa2 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb26c7032 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb50f119e dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc69c0e7f dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc91045d2 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xce926b49 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xda01bd9c dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xda530d3c dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdc7eba9e dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe3f6559b dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xed4473e6 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xed9b6bc3 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4bd6bc77 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa192a097 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb315fc4f dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb87e72e2 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc7693bc1 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf4f56ff9 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x33718197 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa910bcc1 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xdefa5e8d ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xea6769b8 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ipv4/gre 0x65de1bd7 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x9544a0b1 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x032e684c inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0db9fbe3 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x247a95ec inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4171e380 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5a4a1fdd inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbe8e8dcc inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x8ca15fb1 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x07d8a1fd ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x12923fc3 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x22781916 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x29b17b82 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2fbdc33e ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x33a6680c ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4a77223f ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4e6ee18e ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5e312848 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x900bf5df ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa92d9aff ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb0b21f05 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb1b51833 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd78a794e ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xea46fe50 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x5a2eac92 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xff14a1b6 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x509b742b nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x0eadadee nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x96745352 nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xbc9f6b85 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xdb3b6cd4 nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xeb1cb449 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x11db0fbf nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4e02430f nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7b2d9f17 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x997c56be nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc7367d99 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc8c06bde nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x466d9370 nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0091e6fe tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0b35283e tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x277f0839 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc14c0324 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe9cad06e tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x189872c0 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3f9ab676 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x44da0c8d udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbeba8625 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3f064942 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5c8610d3 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x8c73d167 ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa6b818a8 ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xaa25d498 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe865369d ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfb1251fb ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x603cea3d udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xd44911eb udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x81bef9ea ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x504b67fe nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x633c8938 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x401b06bf nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x16ea7acc nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x65f58690 nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xdc8650ee nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xdd22daea nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xeaebc007 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x4be0be02 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5ee51b63 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x731127ad nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x734518b2 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc6b09f8c nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfd45a619 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x21ef6260 nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0ad27f0e l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0e63a616 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1ac0f543 l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x30272daf l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x65eb4c5e l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x69ac5fd1 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6c1690d2 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6e828504 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7e3ffe0e l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8a7e96ee l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xafca2411 l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb709e1a6 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc6f87a2f l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc98cd7c8 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd2239d80 l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe43d1df5 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x377b28ca l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x33afd28d ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3ca21d60 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x667029bd ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6b9da9bf ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ea8d467 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ee79d76 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8e595a16 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8ea67951 ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9c1355b8 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9f6ef102 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa0dc77a8 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb9d6c602 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc402a581 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcb30ced9 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe652dc39 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeb5cd4ce ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebdf8959 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfad07f7b ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x40cd5301 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x419e9fdd nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9f8b1687 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xff233702 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x061814b1 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x078ad0d0 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1aed206c ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1af9ce2a ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2e59359a ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3a4917b7 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3e5308a4 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x43b4eecf ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8c0314ab ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x98ed47eb ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9a70ad6d ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb2c3c10d ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xca033786 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcab3e2a3 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc899373 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfa54cdde ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3a64d639 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x84687998 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc55598d6 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xff42a190 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01a9ef22 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05661616 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05cb080e __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06a6d496 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b147b21 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b1b53a3 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15715fcc nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16d0c7d7 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1780fe4d nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19f38411 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d3ff2ce nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x254d20d5 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26ca626c nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3530ff85 nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3830f280 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b8b21a6 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41afcb2c __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x449c6a4b nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44c75a05 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45960ed6 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46bce96e nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c4ec322 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d680626 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4eb28a19 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5013e429 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54b34473 nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54de570d nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56985763 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57336049 nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5771de25 nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5828192b nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63d1d4e8 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67119656 nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x69a0db11 nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a18dc58 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fdb98ec nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x791fdf11 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84f13da4 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8951b2f1 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9038ffee nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x942ede76 nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97fa3e81 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x988d35f7 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c1c820d nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c3e6be0 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d196bdb nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa14160de seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa17ba548 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa20e9d6c nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4635a05 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa54b98dd nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9b8ec83 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1bb25ba nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1cd2b4f nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb41e710e nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb44c41ac nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5560ea2 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba2254bf nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbaee49be __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb2acd7f nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc78a305 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdfb2804 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbebd2e53 nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf7593aa __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc01804f5 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc229829c nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3a11848 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc49767a6 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9bddc9d nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc5124af nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf716340 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc9bb963 nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf5cbd67 nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf09716f2 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf22e6677 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf505173a nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf68cfc56 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6d54e67 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9d43285 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x01520c69 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xedec5ab5 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xae07bd29 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x09558d29 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4a33bdd9 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7bdffc94 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8395c80d get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9bd455e2 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa6d4555d nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa735bc5a set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe6069b26 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xeb974be8 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf3af248c nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x04f21b3f nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1a2675e0 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x23c6d719 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3ed44fc0 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x61dc2a81 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xd527db91 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xf9a98d17 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x061fe376 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x18d0c266 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2adf53b9 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x33f1edef nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x560e5984 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdd3051f6 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xed655039 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xb285139a nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x7ef6a444 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x356cf550 nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x3864ddc4 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xefd39e1e nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xf728422f nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x058cead7 nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0c8ba6fe nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x45ab5fe0 nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5af8346d nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x84cd39f3 nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x85766c76 nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x97c39aa9 nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9882e72c nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb0a9bd8b __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x224deef0 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xbd18e948 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x57974401 synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdff5186d synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x05978faf nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x08104244 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0f8ee19f nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x15cddf02 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1d3e364f nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e7eb118 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3c47404a nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x61aa803f nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x625a8f82 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x67ee4b41 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6f9f566e nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x70f18557 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9f51ef1 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb1995982 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc22031f2 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd9de96b0 nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfdbf608d nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x411eb455 nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5a3dd2ae nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x795207d5 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa31d4e93 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb87f8566 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd10c634e nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xea4a4c77 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x296bda10 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xc6baf0ea nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd0e2292d nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x453a8c9f nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x2e5cdb0b nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xaebcc776 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xd2f07201 nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x43afb35f nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x54d40a21 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x64b4d6f1 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xeabc972a nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xeee6c1e3 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xf6e465d5 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x68b81f0e nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x6f878412 nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xb224d6a7 nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x2fe0d828 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xd787eaa1 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x13918fc2 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3ea44fff xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x56ebcf47 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x76ba73f6 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x79e65cdf xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7aac840b xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8c87eb02 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9da4116d xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa12e9d3f xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd09c15b3 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdb3253d3 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdc81b731 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf58891b4 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4c32c169 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb7459345 xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1b23fb74 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x307e61ec nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x58264432 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x22b6ea12 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x268be254 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd5cf6079 nci_uart_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3832a14c __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x48539c5a ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x486928f1 ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x82859523 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9a3b976f ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc36a2059 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcb0a6529 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd6a41211 ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe6a89d58 ovs_vport_receive -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x17c57f65 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x1d93eba8 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x227430b4 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x22f6eb5e rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0x26c74486 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x27820cb2 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x42e1c8ca rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x48c81306 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x56a1d0df rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x5da930e1 rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0x5dbde50d rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x6f4a96bd rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x7a210042 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x7b42b55f rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x7f3d478b rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x866c8669 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x9662a43f rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xb3a7aff1 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xb4d7464e rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xb5cd378c rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xb7627742 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xbe81119e rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xdbb12b23 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xd6d6048a rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xf8b73b7f rxrpc_register_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x199fa16c svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4a1b6e3d gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf70a1874 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x018da503 xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01fd7a3a svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05c56b07 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06e4c6bf xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07e8716a rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08453e6f xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0886ad50 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09590581 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a979576 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfa2267 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0eb66c33 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ec45c76 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10cdf7d1 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12c6ab82 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x148f0f40 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1730bf65 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1832fe53 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1852d8a3 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ea0b15e rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f908253 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20c6b4cf xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x218c5a3a xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28eeb384 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x291ab988 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a7e9b4f rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a953a69 rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cde4576 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f1ed7e1 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f441f93 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3082aaaf rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31b5fbcf svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33eea8c0 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x346c3f6e rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x350508b8 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x352b5699 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x354eea4a rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bbe9ea7 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c46572e rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e85852f rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4146d3e0 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x437124b4 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x452e94dd rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45680096 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4587454d rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x464b9e00 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4659be0b rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4683f1c9 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47e6d964 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a13aa0e svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b4e3d94 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bfe67f7 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d56389a xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e007101 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ec8d49b svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ece162d cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f610556 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x504ba1eb rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50cf9bcb svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x512e1c1c xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x536e774d svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x575dd5fc rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57736150 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5803d960 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5aacc443 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c87bcf2 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cdc7756 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x606223ec read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6087818a rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x629b6aef svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62fd3343 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6315ef4f rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6348bdd8 rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63d3ceae xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6452aefd svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69e3d9fb rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bd6576f rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cebfc4a rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6da59503 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e729a43 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e9aef33 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fcf831d rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74e378b6 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x751604f6 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75914404 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x760214a2 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7755c6ab xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7846b3ad svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7879c03f xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79ee6ed2 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79efed70 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a797834 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b52a163 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c5b3561 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c98e56a svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c9e022b rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d1cb8dd rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x800ce86b rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8063f144 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80a906b7 rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81bfa6db rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8226984d _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83ab5a06 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8481d999 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85e8578c rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x864cfd89 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x869060e2 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x872539f1 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8739599f bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x876e931d xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b582404 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b896a13 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8be8b02d xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c87fcee xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cd8cb56 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e381ca3 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e520842 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ed7a0a7 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f8bac0d svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x907c9b1f rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x915093b9 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x948b2197 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9561d454 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x971d0375 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97cdcd80 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99a2b1e0 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99a4b690 xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a55e0e3 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b5dc959 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1221180 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1417df9 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae39846a xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf981539 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0f6358e svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb290f37f rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb30ab4a3 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3345d50 cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4431afc rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6ff1090 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb78a5770 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8d29137 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ff9cb3 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba35bb46 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb28b58f xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcf7024c cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcfa1610 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd6122d7 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd6cd91e rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd8ce435 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf3b33cd svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf45e189 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf491173 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbffe2049 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2d20afd xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5b13059 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5c0f09d rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc63b36f4 rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc644716e svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7c81375 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc88bb122 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd038b2d7 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd096abc9 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14c8eb9 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4192ca6 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb1661fc svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb7e5854 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd53cbac svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddba6ade xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde6173c6 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0c7ae8e rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe13216eb rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1487c66 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe16f1751 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe280b1f4 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5c304d1 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe63cb7f0 cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6555479 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7ce492c rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8ab45a3 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebd37e0f svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebd5b4a9 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebdac125 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecb11de9 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecee3800 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed23e58e svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0984765 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf17e59ea rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1cdccff svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf28c73df rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2e83bde xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4c3f316 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf51c3536 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf89683c5 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9160a05 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc21567e rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc66cb21 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc69299e sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffc32fc7 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0fbedb92 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x36192147 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x438ce3f8 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b39af19 __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59f8e7ea __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x826bb2b5 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x82e8f35b vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8ba0209a vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8c878c2e vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8d2c1884 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcd75c921 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xddd2d783 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xde69aecc vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work -EXPORT_SYMBOL_GPL net/wimax/wimax 0x39c3bc45 wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0x4334b088 wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x585f1c07 wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0x65195faf wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0x8163dac1 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x87e3e051 wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x89a59ee2 wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0x9e1049a0 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0xab412a7b wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0xbb358b06 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc4871b9c wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0xe8a44146 wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xf04b5a35 wimax_msg_data -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x034cd0ba cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x05160e45 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2f00be90 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x35e9f348 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x366f2ced cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x370d32c0 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4a1ac8df cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4d69d985 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5f97114a cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x66fe0a55 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x70f4a2ff cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7cf76c71 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf837788f cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x12e51971 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x496e5b64 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6526d381 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb38dc895 ipcomp_init_state -EXPORT_SYMBOL_GPL sound/ac97_bus 0xe38faac2 snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x1a29c2af snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x1d3484ac __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd 0x60f9d491 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x62b626e9 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x7f174698 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0xb6979f67 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0xc7cae0f8 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0xd08ba3a6 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0xe724ef9e snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xc61096a8 snd_compress_deregister -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xf36abab2 snd_compress_register -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xf83fc95e snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0638581c snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0dec2aa5 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x14261818 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3730f607 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5b1a5cdd snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7a88aaed snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x80220f2c snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8ad19174 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x98901a8e snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x09df6578 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2943da7c snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4c066188 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x68c99416 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x87b95355 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8e68b16d snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9f4119eb snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xab167fbe snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb19d607b snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe66b37ad snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfd8be80f snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x017ce317 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0baf4324 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3ce178d8 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8c5bf941 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbd5de420 amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc8f2d9cc amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd899726b amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x105cf4cd snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x18942be1 snd_hdac_ext_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1901a100 snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x19c4c8b7 snd_hdac_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1c6f55ac snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1d7afe38 snd_hdac_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2b25d2dd snd_hdac_ext_bus_device_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2cba92c5 snd_hdac_ext_link_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2f59044e snd_hdac_ext_link_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3ec3e318 snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x42b407f5 snd_hdac_ext_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x50c3b912 snd_hdac_ext_stop_streams -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6226622d snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x630b2891 snd_hdac_ext_link_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x73e45ade snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7a0bd44c snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8baefc3d snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x96109853 snd_hdac_ext_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa39f09bd snd_hdac_ext_bus_get_link -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb3639db3 snd_hdac_ext_stream_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbd11c531 snd_hdac_ext_bus_device_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc1c11308 snd_hdac_ext_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd01d65d0 snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd2ff97e9 snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd690efba snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xda9139aa snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdce454cd snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xee4ab04c snd_hdac_ext_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf23bf7c0 snd_hdac_ext_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf2cdc6be snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfba2271f snd_hdac_ext_link_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfbe745b0 snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x046aad9f snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07419e6c _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fbaa6c8 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10fc5a92 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1302f957 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1572ccab snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15dd6456 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16d3adca snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19f3a26b snd_hdac_i915_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c80ae03 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f7c2d4d snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fa71c13 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fe2939b snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2026e619 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28377246 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2978e130 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f92c7ea snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b765451 snd_hdac_i915_init_bpo -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bdafcb6 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f51a691 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x470db53b snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x475c4ec6 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49e17563 snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e79ce51 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4fbdaac4 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5298d6fa snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53dbeb80 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5970220f snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a85f513 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x600e973f snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62f9c85a snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63ceff16 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63e04483 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6828cb67 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d60be61 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e79ed25 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ede75ad snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73187668 snd_hdac_i915_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x737ef407 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74693549 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7857439d snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a744ab7 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e5c8355 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7eb829f2 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ef15789 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f52aac2 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x823b2875 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82b26c07 snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x853aad97 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x866be43c snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88759925 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a3dc705 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c18e55f snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x906f9931 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90943f6e snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9251cb3b snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3733c65 snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa890fbbd snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaecf63b7 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf751c63 snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0161673 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb14e3f14 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1c9acc7 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb9253a48 snd_hdac_i915_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbdb4d512 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf5ff70d snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc43b6248 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xccd54bc0 snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1c06817 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd689e358 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7f0caeb snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea55e527 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeae90b13 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec6057ed snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeff2019e snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf05cf9ca snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6217a71 snd_hdac_get_display_clk -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfd0742d6 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x102705cd snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2c67dd29 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3093df93 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x392f0c75 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9eac1933 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf2ea003e snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04e1bb39 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x053bfd10 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05e10d57 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0894b5ab snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a70039c azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b4c9be2 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b69dcd7 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bc328bd snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f13ec49 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1679ad90 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18585a9a snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1886872e snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19b2e000 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a1a9dd6 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a4a02e8 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x239a9147 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2719efce snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a57f344 snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ba33b85 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c76814c snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31027239 snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x339a1b7d snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34d54252 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a4f9a96 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b032063 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d02e917 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d1b4eac snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3dcb5961 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f5fa2a0 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40e359b1 snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4467d513 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45bf671c azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x469182a2 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47d01eb6 snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x496342c8 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4db51d32 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e6b1039 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e81da88 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f6f3d8a snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x519fb2f6 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52fedf4e snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5680f9c5 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5872a6f6 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5880da46 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5966bbd4 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5be09b7c snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5de6026f snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f922b17 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6069133d snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63bc0fad snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a13c89d snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ff51e0e snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x739f28b8 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7440800c snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74899b88 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7724856a azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7796a917 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x779c15af snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a323d60 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8128e4af snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81331c8d snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81f1bdec __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85dcc406 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89527127 snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bf9a96f snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e298c72 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x910d9bad snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92460a43 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x937a8c0b snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9945180f snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b972fdc snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e5cfc23 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e7dbf9a snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f6a6081 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f826d95 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0e5e993 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa225d7ce snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa26d379a snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3e20cca snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa66268ce snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa687583a snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa73fbf57 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac6ff143 snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf913bc7 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb180a8d9 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb19a8778 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb279a839 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4c5da1d _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb76cf7f0 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7cdf9cf snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb885ece snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc69ddd9 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd631d62 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd70fd12 snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbda75c1e snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0270818 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc224f4af snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc41b9e07 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc474fed3 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7a5a3e8 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb462d55 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbae96e6 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd6d9218 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce69fff2 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xceb81d9d snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xceefd793 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf1e8e7c snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf29954d snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0553c12 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1159b7b snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8a38806 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda66475c snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdeca85fc snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf5adc22 snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe301f46e snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea946696 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeaebf809 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeec5f20d snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefb18231 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefbe634a snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf26f2c25 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5e8cfc9 snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9c7e205 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfae70a6d snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x06743fa1 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x08db1c26 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0ff422a3 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1e4aca0f snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x201def1a snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x33397e59 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x33eff8ef snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x418c4f3b snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4aaaa9c5 snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5344693c snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x66ea840b snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7e4b1bf2 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x87937cf9 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8aad29bb snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8af7834b snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8b492b38 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaf60b1a2 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeb3fa8b2 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeca85695 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf59fe043 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf99b752d snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x8137f9f0 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xeb8a3e83 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x15fab8c2 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x5f6c7624 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x16d6bfd4 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x5bd6ce8c cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcf5e951c cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xc79a5c89 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xf0d7c9ee es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x927184d8 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xa7ffa4fa pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xad5c508e pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xafdfbe75 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xb581556e pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0x32e38bd0 rt286_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc836db20 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x52b1cc85 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x9b332ef7 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x42af8e41 rt5670_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x7eaf90a6 rt5670_jack_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x80ab4be5 rt5670_jack_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x921151e1 rt5670_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x32c501da devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x480dc557 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x76eef0ee sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc8c500fb sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd7822d22 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xabb4c780 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sn95031 0x0e658761 sn95031_jack_detection -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x163f4317 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x33e690a5 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x42f6e8ab tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x52445441 tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xbc8492ee ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x163237e2 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1f4d9f3b wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x45be46bf wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x4e1ba55f wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x44bda364 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x4cc2b866 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x7e57e7bb fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xbb7b7695 fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x406baa50 sst_register_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x77755f8e sst_unregister_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x1e7df859 intel_sst_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x65dcc566 sst_configure_runtime_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x7e62b356 sst_alloc_drv_context -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xab14edd5 relocate_imr_addr_mrfld -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xacd9c6a2 sst_context_init -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xe3762adc sst_context_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x3fab3edb sst_byt_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x4a58656d sst_byt_dsp_boot -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x99e5bb3f sst_byt_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xd335e4e7 sst_byt_dsp_suspend_late -EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xebb0053c sst_byt_dsp_wait_for_ready -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0201d61f sst_dsp_shim_write_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x038eb0e3 sst_module_runtime_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0e1e6b5a sst_dsp_ipc_msg_tx -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1b5e8b82 sst_shim32_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x231f203a sst_memcpy_toio_32 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x27aa105a sst_fw_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2b604ded sst_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3169bc5d sst_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x32f9094e sst_module_runtime_save -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3702d6c4 sst_dsp_shim_update_bits_forced_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3cda9029 sst_module_runtime_restore -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3e5741e5 sst_dsp_dma_copyto -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3f6dc8c0 sst_fw_free_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x40ed4239 sst_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x44faa927 sst_dsp_dma_get_channel -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x46686c78 sst_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4a045773 sst_shim32_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4bdafa3b sst_fw_unload -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4cbd60ec sst_dsp_shim_read64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4df8e5c2 sst_dsp_stall -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4e7a70f7 sst_module_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x515311af sst_dsp_shim_update_bits -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x526ed6c1 sst_dsp_outbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x55cf3598 sst_dsp_shim_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x59ded2e3 sst_dsp_register_poll -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5b3fb526 sst_dsp_shim_write64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5c09626a sst_dsp_inbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5c7b56e8 sst_module_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x636d5dd2 sst_module_runtime_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x787bcf9f sst_memcpy_fromio_32 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x78d8a56f sst_dsp_get_offset -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7b859af4 sst_dsp_dma_put_channel -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x829b2ca4 sst_dsp_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x87398d97 sst_dsp_ipc_msg_rx -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8a2cc0ca sst_mem_block_unregister_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8f167165 sst_block_free_scratch -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9458f949 sst_dsp_outbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x978cf9c6 sst_dsp_shim_update_bits64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9849ed7b sst_dsp_shim_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x991fc3ac sst_module_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9d07029f sst_dsp_boot -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9f6abfc7 sst_dsp_mailbox_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa5ead2ad sst_dsp_shim_update_bits_forced -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xac2d78aa sst_dsp_dma_copyfrom -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xaeaef971 sst_module_runtime_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb9233645 sst_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbad11e38 sst_dsp_shim_read_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbcec5387 sst_shim32_read64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc7f40147 sst_dsp_reset -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc81020e5 sst_module_get_from_id -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcae0edcb sst_module_runtime_get_from_id -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcb517ee8 sst_dsp_dump -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcb9b0bb0 sst_fw_reload -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcc9ec012 sst_block_alloc_scratch -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd633efea sst_dsp_shim_update_bits_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd9a2c94c sst_shim32_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe05740cd sst_dsp_shim_read64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe579680a sst_fw_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xef2e0ed1 sst_dsp_shim_update_bits64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf0c1f628 sst_dsp_inbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf55f3a24 sst_mem_block_register -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf632c8fe sst_dsp_shim_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf75faf42 sst_module_runtime_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfe1746c0 sst_module_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x0fbb05ba sst_ipc_tx_msg_reply_complete -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x396c99ed sst_ipc_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x5233ff1f sst_ipc_tx_message_wait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x63ab19dd sst_ipc_reply_find_msg -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x6cfa979c sst_ipc_tx_message_nowait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x76b1df56 sst_ipc_drop_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xe16c9089 sst_ipc_fini -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xd1f69f64 sst_hsw_device_set_config -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xf7c0b447 sst_hsw_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xf9b0eb3d sst_hsw_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x0e405444 skl_ipc_init_instance -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x2b363615 is_skl_dsp_running -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x61771f7f skl_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x6982dc08 skl_ipc_delete_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x6c506aa3 skl_ipc_set_dx -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x92aa668d skl_ipc_set_pipeline_state -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x9491e196 skl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x9b967a5d skl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xa3232039 skl_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xab3fe32b skl_ipc_save_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xc1bcc6c7 skl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xca537ec7 skl_ipc_create_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xcd76a777 skl_ipc_bind_unbind -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xd17d8a53 skl_ipc_set_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xef2e7934 skl_ipc_restore_pipeline -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0272962d devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0517e2bb snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x065a480e snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06b291d3 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x075e3d1a snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a0487bc snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c52b13e snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f9b1748 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x102b18cc snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x134c3bda snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13bd0d72 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1868155d snd_soc_tplg_widget_remove_all -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1914d937 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19d23318 snd_soc_tplg_widget_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b2c560b snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c6dd3b3 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d684415 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1eb329f8 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ef0aec5 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f616559 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20538b9c snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x209174ae snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20fd5e1c snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24be5ea5 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24de160b snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26205736 snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x269cc0d3 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26cec547 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29dcb34b dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b3f7d01 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bc548ca snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d8eb5b7 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e9d1d58 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x300118e5 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33025a96 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x349bbe3f snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37d2ad1e snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c606144 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ea27fd5 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3edbe67d snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x421c81c9 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44e3c455 devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x479a58e1 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48ecc982 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4af84491 snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b18b54a snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4cdc46f7 snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e144367 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5489a6ad snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x570c9350 snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5770189a snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x585b646b snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58dd55e7 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b6c3cfa snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b9bf670 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e4326ae snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62097ba3 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62be0266 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65151f4d snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x675cd2b1 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69ddf2ac snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c8bd441 snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d3b7306 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70d9eb87 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x722b0c30 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7305fdec snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75987560 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76136a86 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77a08a9c snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7aec83c9 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c13d3e6 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d60b408 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e925299 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x805ab6d7 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x821912ca snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83f33a79 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84752173 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x869f885e snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87d5e4b2 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a0b3c2a snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c5c148b snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90a3c6b0 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92f8fe0f snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x969779a1 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96a74fdb snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x995bcf16 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a7a1f94 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9aef1843 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c358381 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f1d2036 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2a93406 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5c6bfa9 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5d14662 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6b4278b snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa702a87c snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa77e8d79 snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa891f0a2 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa5491ef snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafc6b422 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb033cec3 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0bfa975 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb23fe7e0 snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb407d308 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5785f03 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5e3a625 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb63045c8 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7f59aa0 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb980c630 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9d93e67 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb4f16b3 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbf15dd9 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd5ea12e snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd687f8a snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc19b33d4 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc49a1618 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5b37049 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc69d412f snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb347326 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc9eeef7 snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd5ae651 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf649521 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2a11bf9 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd360aa53 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3d51c2f soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4ff2c9c snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5e16503 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd65629c8 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd65f1821 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6eb269b snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6f45dcf snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd71f6618 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9970fb0 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda1f3d22 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc500517 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf5fcac3 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1c18f38 snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe23075fa snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe32cb0bd snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4c625ac snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6f54e25 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe70fb1b5 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe757aadf snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8fc4daa devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9cbb85d snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec910f28 snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed0f74cc snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf265787d snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3f6d038 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf435a957 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5f9a5a2 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6fe3645 snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfee87d07 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfeea8c6d snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffd19d6f snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x06360461 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1639115a line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x500911de line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5802102a line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5f979a64 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x697cbe61 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x82a9d215 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x88a910f1 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9a53d26e line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9e14a46b line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb4b3e6ae line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb762fac2 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbfa748ab line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc4544669 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe7a1de8c line6_suspend -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x08003b2f i915_bpo_gpu_turbo_disable -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x0d97d346 i915_bpo_gpu_raise -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x358a54ae i915_bpo_gpu_busy -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x451432c2 i915_bpo_gpu_lower -EXPORT_SYMBOL_GPL ubuntu/i915/i915_bpo 0x7d4de94c i915_bpo_read_mch_val -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1e678bb2 dot11_pkt_type -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x25efd3cb ven_rsi_mac80211_detach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x30a68dc4 rsi_hci_recv_pkt -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x320e865b rsi_send_rx_filter_frame -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x42b7a8e6 rsi_send_rfmode_frame -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x437447f4 rsi_hex_dump -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x45ca198c ven_rsi_dbg -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x5209bb98 ven_rsi_91x_init -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x53aff912 ven_rsi_91x_deinit -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x683e53ff rsi_deregister_bt -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x69271153 rsi_default_ps_params -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x74518f80 rsi_hal_device_init -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x7b4f7d6e rsi_config_wowlan -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x8f42bbd3 ven_rsi_read_pkt -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xc310a319 rsi_hci_detach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xc7f3ad96 rsi_hci_attach -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xd65a8c23 rsi_init_dbgfs -EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xf1d6d26c rsi_remove_dbgfs -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x0008e843 of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x001138c2 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x0019908d __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x001d2285 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices -EXPORT_SYMBOL_GPL vmlinux 0x003d8cae wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0x004643ec device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x0053b7ae ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x006a27e4 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x006d152a page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x006f9f14 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x00816f91 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x00866735 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x0087421c spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x00891d1a serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x0093d1a4 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x0099c470 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x00a393cd regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x00a43998 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x00aa10e0 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x01072c15 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x011ca14a device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x0137a2f5 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x01659ad4 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x0170cb6c efivar_work -EXPORT_SYMBOL_GPL vmlinux 0x017f65ee sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok -EXPORT_SYMBOL_GPL vmlinux 0x018a449a sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x01a4cf08 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x01ab9f8b policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x01c8c392 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x01defb29 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e56d65 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x01edd296 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x01f9f198 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x01fac906 acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0x02195cd9 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x026d8774 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x027bd98d disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x02a67d5e irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x02cb019e crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x02db60d6 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x02ef1636 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x02f31a84 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x0325e576 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x034477b3 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x0358b0cc dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x036cc216 xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03e0f7d0 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x03e8a35b perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x03f3c7e2 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x041d52c5 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x041efe20 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x0435774f __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x045e54ee scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x0463c352 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x047a7c6e device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x047cbca8 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x047e65d1 __online_page_free -EXPORT_SYMBOL_GPL vmlinux 0x0480ead3 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x0492c137 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x04a5dfa1 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04a9aa78 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x04b8b391 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x04baefec debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x04bf26af ioremap_page_range -EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04cc910e mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x04da85b0 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x04e18688 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x04e92f9d fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt -EXPORT_SYMBOL_GPL vmlinux 0x04ef50c5 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x04f4d9ef rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x04f8289d dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x04fae671 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x052f3d8c crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x053649dc debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x056da04c fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x057b0425 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x0590c8c1 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x05972930 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x05a88c35 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x05c08484 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x05c1706d find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x05c4985c unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x05e5c0bf kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0x060595f1 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x06129c1f tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x061663f8 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0663eab5 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x06650c6e relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x0667ea8d nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x066bf930 xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0x069296a5 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x06963c36 intel_msic_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio -EXPORT_SYMBOL_GPL vmlinux 0x06e1e9d0 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0x071ee624 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x073a338b fpstate_init -EXPORT_SYMBOL_GPL vmlinux 0x073c87c2 skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x074d363d __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x07937b85 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x0796d1f6 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x07a4f537 x86_vector_domain -EXPORT_SYMBOL_GPL vmlinux 0x07abd7ea regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x0811c73d regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x08163b58 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x08225ff0 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x082975da iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x082b2737 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x0834d086 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x08394d7b usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x083a780b posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x0846a4b1 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x085d3bcb regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x08794ef9 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0x087c5e76 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x08a9028c scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x08c3e81f sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x08c43e40 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x08e82770 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x08f10258 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0x08fabd20 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x09041b0c blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x091c0dd3 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x0926830b bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x092b2dff usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x0941a9bd mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0943a2f2 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x0962d0e8 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x097179a0 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x097af78d clk_register -EXPORT_SYMBOL_GPL vmlinux 0x0984aa5e cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x09a8c1c1 irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x09b39c2a device_del -EXPORT_SYMBOL_GPL vmlinux 0x09df97fe da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x09f55ec8 acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0x0a452753 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0a554594 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x0a662256 xenbus_map_ring -EXPORT_SYMBOL_GPL vmlinux 0x0ab9748e crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x0ac4e294 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x0acc3492 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x0ad9b52b pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x0ae844cc blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x0af817ab hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b127dd0 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0b2c886d ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x0b2e2904 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0b413434 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x0b4ece6d relay_open -EXPORT_SYMBOL_GPL vmlinux 0x0b5213be regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b689927 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x0b703a3c devres_release -EXPORT_SYMBOL_GPL vmlinux 0x0b7db843 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x0b9144fb bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0x0ba3440f thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x0ba4c51f usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x0babfe3c ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x0bcf91ab bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x0bf1850b bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x0bf61305 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c215df6 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c6186e1 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range -EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init -EXPORT_SYMBOL_GPL vmlinux 0x0c9311cd wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x0cadeafd led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0x0d3bb14a dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d6e0f42 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d7eccad system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0x0d95ee7b scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x0dcb148c da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x0dceafad acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0df925f6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e08410b __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x0e12f949 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e246bdf devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x0e347e38 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0e6736e8 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0e67f611 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x0e753421 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0x0e8a183c mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x0ebb7797 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x0f248d27 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f4a1b08 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x0f511407 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x0f587805 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x0f5e6f7f pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x0f6e4206 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0f7c78e9 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x0f99b0f9 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic -EXPORT_SYMBOL_GPL vmlinux 0x0fa2ee69 wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0x0ff93d1b regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x101079fb sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x10365f62 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x10386e8d fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x1058d5d7 xen_remap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x10694622 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x107d5035 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x108ac056 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x1094eb59 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x10958079 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0x10ada43e ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x10d00d96 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x10d12524 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x10d947cd dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10fae22b ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x110be16c xen_swiotlb_set_dma_mask -EXPORT_SYMBOL_GPL vmlinux 0x110ce9cc bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x1125d7cb usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x112684bc wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x113875f6 __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x113b303a ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x113c7c75 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x1152f405 dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x1165fc75 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x1169966d devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x116e2442 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x1173f12c sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x117f369e xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0x11ba8aef debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x11beef14 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x11c32290 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x11cc9af0 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x11d44384 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x11f25cf7 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x120cad5c phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x121bf62a __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x12230521 regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0x1235472c regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x12365e8c percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0x1240814f ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x124fe57d pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x1254a6f2 nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x125508e6 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x125cca9b _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x12866bbf sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x1286bd7a ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x129c7592 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x12a4ac78 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x12cdc060 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x12f2c3f0 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x12ff3d71 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x130bd388 check_tsc_disabled -EXPORT_SYMBOL_GPL vmlinux 0x13141b34 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x1324147c xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x133dec2b acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x13415657 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x1345c375 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x13594ea3 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x136256a8 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x13884360 tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init -EXPORT_SYMBOL_GPL vmlinux 0x138e7ead raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x13908498 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x1396999c pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x139c45ac irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio -EXPORT_SYMBOL_GPL vmlinux 0x13d3b698 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x13da9193 tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x14328924 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x1449672f blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x145784d1 gdt_page -EXPORT_SYMBOL_GPL vmlinux 0x14625174 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x146920bb handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x14697f35 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x148290d3 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x14b4bf9e spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x14b71d9a virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x14c2804d i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x14d30728 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x14df5887 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x14f17dcf device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x14fb4cb6 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine -EXPORT_SYMBOL_GPL vmlinux 0x15021d85 i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x151383fa device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x151fbea6 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x15514246 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x15568631 lookup_address -EXPORT_SYMBOL_GPL vmlinux 0x158773aa crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x15a6ea1e wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x15ac617d syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped -EXPORT_SYMBOL_GPL vmlinux 0x15b18e55 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x15b6521f da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x15b9bcd4 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x15ce9756 fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x15f6e756 crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0x15fcee3b fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x1617034a ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x16183914 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1647d7ab __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x164934f4 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x16523d9f cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x1658160a napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0x168ba45b class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x1691045c mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x16c9d3f0 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x16de648c nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x16e215c6 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0x16ed5301 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x16f9ce7b ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x172817ee list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x172d489f ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x173e0f14 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x175628a0 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x1757fcc3 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x177aa27d rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online -EXPORT_SYMBOL_GPL vmlinux 0x183b9102 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x183d0a53 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x1849c4cc max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x1891a505 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x18929f95 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x18b56b16 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x18f5728b component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x18fa32ed led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x18fe2a09 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x190757d8 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x19136f06 pci_msi_set_desc -EXPORT_SYMBOL_GPL vmlinux 0x19241463 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x192df7de transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x19495ed4 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore -EXPORT_SYMBOL_GPL vmlinux 0x1980953b crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19c51db8 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x19c56950 skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0x19c592ff sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x1a2551d5 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x1a2f0789 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x1a418547 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x1a418d04 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x1a532f12 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x1a6a36cd ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x1a8b09cb i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1aa28a7d crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1ab826f6 find_module -EXPORT_SYMBOL_GPL vmlinux 0x1ac174fe devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1ae2e1d0 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x1aefcbe5 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x1b1f2bda speedstep_get_freqs -EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x1b6b7908 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x1b876568 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1ba1f381 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x1ba51e2f i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x1bb8399a blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x1bbbbdf4 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x1bbe6d2a __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1c031ee4 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x1c05c9bc blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x1c0b2797 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x1c0e2d14 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x1c3d4399 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1c44e434 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c59fa75 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c6325ed find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x1c6660c7 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0x1c68a79a ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x1c7b2f63 crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1ca3c6f8 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x1cb3d791 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x1cb79923 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x1ced2eee sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0x1cf59c18 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d459685 xstate_size -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d70a411 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x1d74cbbb usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x1d9e16a8 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1daafd11 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x1dac1078 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1de74685 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x1dee572f queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x1df372bf irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x1df3b9e0 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x1df48755 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x1e10f8f0 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x1e218be6 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1e2f8e13 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x1e3605ed component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x1e4f08be blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e6e540b regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e7c6b40 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x1e7dc591 get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e92bae1 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x1e92c7a8 intel_scu_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1eb28c4a irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ed1996e scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x1f17d92c spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x1f306c7f fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x1f3e5770 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x1f486bf6 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x1f7b0ad2 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x1f7f6fac register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x1f839540 xenbus_dev_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f855bd3 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f9b86d3 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x1fa5b19a preempt_schedule_notrace -EXPORT_SYMBOL_GPL vmlinux 0x1fabdd82 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x1fccc288 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x1fefdbe8 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x200cc695 __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x2032d753 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x2037d81d register_mce_write_callback -EXPORT_SYMBOL_GPL vmlinux 0x2046bbee wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x204e66e6 percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0x204ed241 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x207608ba led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x208adf63 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x2093cc37 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat -EXPORT_SYMBOL_GPL vmlinux 0x209f18d9 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20bd3461 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x20c6e760 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x20e40f6f register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x20f9f5ea rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x20fa27d5 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x2116cbf3 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x2126e284 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x2133ed36 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x217382a1 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x21925348 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21d156e2 xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0x21e479b3 sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0x220698a5 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x22097428 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x221b7949 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x221e4518 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x224358f7 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x224e21a9 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x22627b51 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x22936bce find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events -EXPORT_SYMBOL_GPL vmlinux 0x22a7ac2f __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x22d045c1 efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x22d822ab acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0x22ebc234 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x22f04ea8 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x23048011 __intel_mid_cpu_chip -EXPORT_SYMBOL_GPL vmlinux 0x2309ad8c xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0x230e87d9 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x2310424a pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x2338dc0c irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x2359ea1f sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata -EXPORT_SYMBOL_GPL vmlinux 0x2375b79b spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238987c9 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x23906f00 mmput -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23a79d49 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x23bc30f6 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x23be4101 tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x23eb81e8 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x240580a9 xenbus_probe -EXPORT_SYMBOL_GPL vmlinux 0x24224730 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x2430050d devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x2454e8a1 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24811492 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x249921fa ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x24a42f5a proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x24a89749 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x24e1d590 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x24e5113f xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24ec51ee tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x24f19564 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x24ff698f ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x251127c8 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x2527da4d rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x252c09be injectm -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x253fbed6 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x255300fc fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x2555e66a __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x255d97d9 kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0x2560f660 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x2576d141 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x25795e05 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x258dd7a3 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x2590c853 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr -EXPORT_SYMBOL_GPL vmlinux 0x25fe17b1 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x2622cffc dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x2628d8d1 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x262d1f1b ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x263eecb7 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x26685772 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x266cbda8 inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x269360f3 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26e1051e tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x26e72c6a mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x26fd64ee security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x270592ac ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x271576d6 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x27449350 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x27556c5e ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x278463a4 xenbus_unmap_ring -EXPORT_SYMBOL_GPL vmlinux 0x27856103 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x27a66e22 xen_swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x27b63002 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27d335de devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f5d392 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x28018b88 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0x28084a7d reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x28247f32 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x283381a2 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x286b831a get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x2890771b digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28c33ba5 single_release_net -EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0x28efeef9 dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x2911817e fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x29213614 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x2935e4b1 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x293f073e vrtc_cmos_write -EXPORT_SYMBOL_GPL vmlinux 0x2946789f pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x29634e69 acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x29665f4f iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29c4b30e skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f35aa0 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x2a13190d bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x2a174d16 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x2a4c5aff scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a6dac9c dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x2a6dc6bf blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x2a859f1a ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x2a9377ba devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x2aa6ecc3 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x2aba15fe of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x2abe8ad7 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x2acb241b devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2ad013fe smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x2af3f288 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b2dceca usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x2b36abe7 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x2b3f125a srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2b4664b4 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2b4fb50d fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x2b52922f unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x2b5fe4d3 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x2b61899f ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x2b63f21c sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x2b67f096 speedstep_get_frequency -EXPORT_SYMBOL_GPL vmlinux 0x2b703dd8 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x2b8ddf65 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x2b91b5bf shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b96316a efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0x2be3668a rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0x2c06b879 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x2c1fb771 acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c3d9b0a pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x2c630bd1 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x2c6a0410 xen_set_domain_pte -EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c91766c crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x2cbc5c47 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x2cc49ccc pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d262c81 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2d2da749 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x2d2f3ef5 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d88c63f md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x2dc39154 iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x2dd83dbc gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x2dde08e2 fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x2e0dcb57 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e24c997 __class_register -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e304a1c usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x2e3a8ee4 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x2e43b1e3 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x2e43caec pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x2e4bd2f7 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x2e60c4c9 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x2e8ff647 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2ea22838 dax_fault -EXPORT_SYMBOL_GPL vmlinux 0x2ea230cc __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x2eab643d regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ebf09bc __put_net -EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2ed0a411 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x2ed6a3f8 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x2eda9148 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x2eebe0d1 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x2f0628c5 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2f07b926 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x2f0b88a9 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f143bf9 acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2f28bd94 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x2f409574 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f57d31a ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f69d2de devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x2f8049de irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x2f9b66de pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x2fd71fd9 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x2fdcddb9 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x300778f7 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x303d9d9c mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x3054a99f gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures -EXPORT_SYMBOL_GPL vmlinux 0x30715fd6 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x307f8df2 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x30a29d61 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x30a3a0fc __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x30b784c7 crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x30b896c4 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x30bdea7c shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x310d9629 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x3113ac94 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x31190c3a spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x3126e986 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x3151d0f1 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x31655fba clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x31660c8d ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x3170262c debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x31adfd9f dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x31b46180 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x31b46d1a wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x31c01a14 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31e358f3 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x31e57435 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x31ed5fe4 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x321d6c17 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x324242ed irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x32557712 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x3257feb9 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x32633f62 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x3263d968 gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0x326ef5bb usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x32754cb5 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x32807ba3 xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x328c2035 __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x32933320 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x3296eba9 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x329c6ed1 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x329f055d devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x32a0bdd9 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x32a138bc exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c9db09 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x32e1fc48 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask -EXPORT_SYMBOL_GPL vmlinux 0x32e48351 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x32e73167 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x32fc3f2a crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x331ddde4 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x333228ec intel_msic_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x335f6f9d xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size -EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync -EXPORT_SYMBOL_GPL vmlinux 0x3368ebc1 device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0x33822e24 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x338ed625 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x33b61d5d __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0x33b6c7fe gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x33cdf694 pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x340704da irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x34116836 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x3421ed4f dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x344d0545 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x344fdc20 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x3465f6bb tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x34676294 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x3489a8b8 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x349eb5c0 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x34ae1595 tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x34afe7d5 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x34c1a188 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x34ee491f cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x35129c51 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x351c8d02 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x351f496f thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x35257c0f ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0x354eca9f pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x3576860b get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x357f1cea ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x3581f995 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x358824d7 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x359c2444 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x35d58493 __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x35de5ebf __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x35e3faa1 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0x35f6c878 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x36014d08 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x3620890e rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x36241c14 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x3631020d __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x366ab738 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a42699 devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x36b14a27 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled -EXPORT_SYMBOL_GPL vmlinux 0x36b9e0a1 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x36ba2551 intel_scu_devices_destroy -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x36e566cb ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x36e5dc73 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x36eaee3d rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x36f58283 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x37073adb pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x371480cd blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x371f3a6d regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x372bc150 arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x37341d11 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x37350e71 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x373a8775 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x375021ed dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x375a2b2c debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x376809e4 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x377a102d regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x379677cd pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x379b3dc5 component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0x37a0b783 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0x37a1e8a7 pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x37c27a07 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x37d2612b hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x38069362 md_run -EXPORT_SYMBOL_GPL vmlinux 0x380e30d7 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x383fad7a led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x3843c321 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x38558058 usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end -EXPORT_SYMBOL_GPL vmlinux 0x387596b2 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x3879e648 tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x38849e63 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x3886ec35 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x388f76aa skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x389e5cdc tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38f62d9c cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x38f787fe regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x38fff317 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x390576e9 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x3923b897 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x39326669 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x39652507 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x397551ca devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x3975ab8c rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x39b2f57d free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39e6f7d6 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x39efad45 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x39f752c9 arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x3a08d429 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x3a1f1f99 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x3a1f3e14 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a277622 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x3a383b97 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x3a39cfdc pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a6afa4e bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x3a6bcd3e ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x3a6f6cab __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a850441 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3ab7d0cd add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x3ac6cd0f pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad6cb2e devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3adb52f3 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x3af05521 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x3b6ba364 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value -EXPORT_SYMBOL_GPL vmlinux 0x3b8ef6c1 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x3b984964 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x3bc9f53a vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x3bd37a3c use_mm -EXPORT_SYMBOL_GPL vmlinux 0x3becbdc2 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x3c00a3e2 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x3c299b6a crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x3c531043 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x3c8fd058 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x3c9ddb19 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x3ca112da blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x3ca1eb64 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x3cb851de skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x3cb85e86 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x3cbd37d4 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x3ccc1bdc regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cf2ade2 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x3d15d2fb usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x3d201c21 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d39ac8f pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x3d4cda3d dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x3d56a64a tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x3d78dda9 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x3d7fbbe3 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x3daccfd7 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x3db6a3d2 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd44903 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x3dd4d279 nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf -EXPORT_SYMBOL_GPL vmlinux 0x3de425ce acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x3de82941 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3deac062 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x3e1bc377 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x3e270198 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e3ae830 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3e58194f tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x3e587a06 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x3e5adac3 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e757637 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x3ea37c57 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x3ea3d639 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3eb046cc i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x3ee2a2c8 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin -EXPORT_SYMBOL_GPL vmlinux 0x3f4f4897 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3f4f6c45 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x3fa34ab1 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0x3fa61b84 pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x3fbb0d36 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x3fbd8548 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x3fc89e4d bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x3fce7e03 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x3fd4f879 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x4010b80f pmc_atom_read -EXPORT_SYMBOL_GPL vmlinux 0x401e84c8 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x40541f62 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x407c7151 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x408212ba hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x40ab254a __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40b1da23 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40de8343 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x40e0e204 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f09d3a tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x4101151b usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x410ec278 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0x41371451 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x417a54d4 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x418620b4 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x418710e7 mce_inject_log -EXPORT_SYMBOL_GPL vmlinux 0x41aeaeb6 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41d22def ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x41db7d59 acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x4209fc89 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x42452c5f tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x424ae8f4 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x425d1105 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42b1ad48 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x42c989ff iomap_atomic_prot_pfn -EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x42f4a180 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x43060279 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x4334f56f platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x434ab3a0 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x434b158a subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x4388c867 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x43910065 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43b43852 blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x43ce92c7 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x441306fe class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save -EXPORT_SYMBOL_GPL vmlinux 0x443d4099 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x444eb281 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x446cf88b usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x446ed7a4 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x44839818 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x449a8f99 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x44a18c35 intel_svm_bind_mm -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44c25298 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0x44d112dd xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x4501c4b8 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x4512b086 intel_scu_devices_create -EXPORT_SYMBOL_GPL vmlinux 0x451e19d8 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state -EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store -EXPORT_SYMBOL_GPL vmlinux 0x455a3d60 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x4588bbf3 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x45acce03 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45cd4dc0 xen_swiotlb_sync_single_for_device -EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page -EXPORT_SYMBOL_GPL vmlinux 0x45ea6b61 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x45eafadf __dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x460295cc virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data -EXPORT_SYMBOL_GPL vmlinux 0x4617ad98 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x46196f1a tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x464f3735 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x466494e3 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x466e91a6 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x466fc956 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x4678157d pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x46875a63 apic -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46aa3bc8 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x46afc3e2 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x46c2661e acpi_dev_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x46fd833a xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x474e779e mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x47606045 blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4766bce2 swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0x476a7a26 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47a08cce sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47ad9e6f pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47e23bd5 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x47e92a67 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x47f7f11e sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x47fff110 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x480e33cd ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x4811a8cf transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x4833c255 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x4842133f pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x484bb756 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x4870e159 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x4877829f fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x4884c141 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x48853748 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x488dbd90 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x48b06963 devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x48e5cc88 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x48f0daea ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x48f579d3 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x49020f36 efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0x490a8df6 x86_platform -EXPORT_SYMBOL_GPL vmlinux 0x490d4175 bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0x4923b010 blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x49826771 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49ac2f79 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x49c482d0 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x49dd4b07 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f96cbe trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x4a085c8a driver_register -EXPORT_SYMBOL_GPL vmlinux 0x4a21ca72 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x4a26b0a8 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x4a335b7b rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x4a3c3cf9 microcode_sanity_check -EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a452227 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a7a194e fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x4a84d100 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x4a9ec50d debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x4aaac11a md_stop -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4afb573b vrtc_cmos_read -EXPORT_SYMBOL_GPL vmlinux 0x4b04315e devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4b0cd7b9 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x4b29ae87 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x4b337b11 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x4b37d3ec ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x4b3b3782 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x4b5571ec sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x4b9ebce7 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x4ba22ca4 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x4bad44b4 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x4bb20617 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x4bb63304 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x4bc5edc1 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x4bd4c88b get_device -EXPORT_SYMBOL_GPL vmlinux 0x4bf76cd0 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x4bfafae3 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x4c1fc172 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x4c2a472b __static_cpu_has_safe -EXPORT_SYMBOL_GPL vmlinux 0x4c2eab4f sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x4c38f7bf pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4c41f418 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x4c48f690 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c62fc13 edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0x4c6f432e acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0x4c74ee9c usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d1b7cec virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x4d9f0ce4 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x4dc65b55 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x4dc715ac devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x4df333e0 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e1ea947 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x4e2df1d6 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x4e3b0406 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read -EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x4e97a832 tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0x4e9f6a21 rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x4eb6ead4 xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f3bbe9d xen_swiotlb_sync_single_for_cpu -EXPORT_SYMBOL_GPL vmlinux 0x4f468a95 dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x4f46f97e devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x4f47f49c devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4f53e9ad module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x4f63edaf anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f6d15bb efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0x4f7a95a7 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x4f812e2f smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x4fb528b2 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ffde3b8 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x5012defb mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x501a2d13 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x503890b2 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x5046049a vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x50680dd6 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x50718ae9 acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory -EXPORT_SYMBOL_GPL vmlinux 0x5080c352 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50b1ba71 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x50c7193f pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50e7fb16 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x51035f84 posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0x51131e61 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x5128de0b exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x5130f650 reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x51468405 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5159a066 mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x51719489 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x517c9a8c arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x518415f5 cpu_tlbstate -EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq -EXPORT_SYMBOL_GPL vmlinux 0x51966b51 __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x51c49458 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x51d2d579 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x51fc8c4e phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x523c57f9 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x5251938d pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x5252ae35 tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x5255123d i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x52593708 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x527e4c56 efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x528015a9 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x528162a3 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x529e492f ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x52a60095 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x52b61c4e devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x52c111b2 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x52ebe2b6 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x52f102db __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0x5326c04b regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0x533e085b regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x5359cb54 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x5369cd6d xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x537f39e1 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x538726f3 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late -EXPORT_SYMBOL_GPL vmlinux 0x53b0292e sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x53c12383 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x53c21989 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x53cc3d40 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x53d0cdea syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x53e65c3f vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x53f93612 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x540e28ce blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x542eed01 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x54482523 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x54575938 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x5477a7dd fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54b94de7 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x54cdfee3 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x54d0c9cc devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x54d406fa __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x54d519ec irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x54d55f36 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x54dc3654 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x54fdc47d pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x5505b8bf devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled -EXPORT_SYMBOL_GPL vmlinux 0x55170b04 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55454aa2 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x55607628 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x5567003a blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55aa1064 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x55b785ee task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x55c6cec9 fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0x55d56ce1 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x55edd53d unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55ef15df __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x56198d11 raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x5629958b regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x563bcabd debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x56715f68 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x567b4486 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x56a63db3 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x56a8ba5a aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56c5baf5 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x570e2aa1 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x571286e1 regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0x571e751c ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x575ac26c kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x575b5d51 nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x5769328d trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x576b94cb tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x57769071 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0x57822cf8 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x578faed4 xen_swiotlb_unmap_sg_attrs -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a86f2b __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x57bb5d71 pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57d95653 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x57d98c5a reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x585144cb bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x588c79ac wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58bac738 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x58bf559f iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x58ebd1ad wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x58ec0d9d xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0x58f2dca6 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x58fafe4f crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x59063a20 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x590bd77f ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x590f890a ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x5953edaa serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x5958cb38 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x5960aaff pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x597e89c0 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x59b73d96 acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0x59cffe86 xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x59d08c7b phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5a0a6493 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5a157bce uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x5a425e2f ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x5a441084 blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x5a53ea64 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x5a699c6a fpu__save -EXPORT_SYMBOL_GPL vmlinux 0x5a6e6494 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a8e3241 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x5a8e751d sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x5a98a8b3 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5a9bc877 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5ab314a0 smp_ops -EXPORT_SYMBOL_GPL vmlinux 0x5ac57803 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x5ad11d47 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x5ae48bb6 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x5af60ba6 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x5b1899f8 free_iova -EXPORT_SYMBOL_GPL vmlinux 0x5b1e599b iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x5b32cfed lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x5b457df6 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x5b7dab07 virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0x5ba7b1f5 blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x5babf842 register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x5bce0ce0 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x5bce8ca1 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bdfec62 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x5bea2ef9 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x5bf2ff47 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5bfdf483 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x5c04de02 securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0x5c1ecb6d phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5c55275d perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker -EXPORT_SYMBOL_GPL vmlinux 0x5c69625b fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cc46a14 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5ccb7442 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x5ccd6d31 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5cdcf723 arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x5cf1ee36 isa_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x5d11f655 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d288e99 usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x5d37849c device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x5d387021 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5d4328f7 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x5d4b54f0 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x5d4dcd42 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x5d6197c4 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x5d69f8e0 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x5d864829 acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x5d889553 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x5d904623 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid -EXPORT_SYMBOL_GPL vmlinux 0x5de96c5d pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e15db83 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x5e2041c2 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x5e3db18a regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x5e4374ec gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e574976 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x5e5bcf44 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x5e7730fe shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x5e77ba35 do_machine_check -EXPORT_SYMBOL_GPL vmlinux 0x5e817007 x86_hyper_kvm -EXPORT_SYMBOL_GPL vmlinux 0x5e855342 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x5ec49220 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5ecbd622 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x5eeea83e crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x5f054113 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x5f060241 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0x5f28fda7 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5f6c2cfa md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x5f780eac tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x5fa5af97 xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x6018ea60 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x60277a60 spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x60368a51 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x603c32a1 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x6065e9c1 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x608f69a4 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x60930d37 save_mc_for_early -EXPORT_SYMBOL_GPL vmlinux 0x609f19b4 skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops -EXPORT_SYMBOL_GPL vmlinux 0x60cef609 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x60d9201b ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x60d9ed54 save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60eb9e7e usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x60f4222f crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x610299d6 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x613880cb tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x614b16c4 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x615905d9 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x61a82914 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x61b0f0c9 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x61bc02fc power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x61cba0d6 __add_pages -EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0x620b6fcb init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x621d58f1 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable -EXPORT_SYMBOL_GPL vmlinux 0x624bd8b3 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x62864923 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x629541c7 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x630478ae class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x631b34cd inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x63467ba3 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0x634b38be dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x63526dee xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0x6379c09f kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x6388aaef usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x6393cacc wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x6396fe13 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x63aef704 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x63b5c7b1 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x63b7db59 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x63c57493 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0x63e06ad6 __online_page_set_limits -EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63ec72c7 acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x64090656 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x640b4137 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0x642a4e53 usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x642b8fd3 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x6443d209 rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0x64841cf9 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x64eda0bb cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x65062e1e bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x653026dc tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last -EXPORT_SYMBOL_GPL vmlinux 0x653cb02d intel_msic_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x65496fc8 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x65727576 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x65798e94 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x65835d65 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id -EXPORT_SYMBOL_GPL vmlinux 0x658f1391 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65bdc55a crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x65c2b8a6 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65f5e1b4 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6625a661 __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x662ba35f rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x6636084c bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x664bdd9f crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x6656f163 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x665e630f dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops -EXPORT_SYMBOL_GPL vmlinux 0x666225f2 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x667fde72 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x668692ba xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x668d7773 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x66b2be2b irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66d4131f disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66e5436d ping_close -EXPORT_SYMBOL_GPL vmlinux 0x66ff48c0 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x6701306f crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x670fecaa param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x67497d0a ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x677886ad regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x678763a1 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x678f3db4 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x6790f599 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67979c7e regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x6799cdbe regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x67a8cd56 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x67f5421b ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x67fc4353 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x680ff8fc serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x681c77d4 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x682e6bb0 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x6834ac43 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x6834c54c regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x6849940e extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x684b63b9 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x684d36a0 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x68517a07 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x68851ac0 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x689d2d0b swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0x68a657e5 get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x68ebc8f1 is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0x68ee4598 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x68ef0acd xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x69573f56 acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0x69610247 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0x696134aa dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x699b0d5e irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x699cc6fc devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x69d1a626 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x6a020516 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x6a0926f1 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x6a0f16b3 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a2a6a19 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x6a336283 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x6a3512cc regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5c9487 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a65f151 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x6a72f855 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x6a75b69f pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x6a787ca3 fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a875762 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x6a95ddd9 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0x6aa5069f scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0x6aa868b8 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x6ab6dbc6 thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x6ae6b836 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x6b020a22 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b18ab9b crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b6b3123 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8a7389 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6bc755f4 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x6be676d9 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x6bf2196e __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x6c02805c device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x6c1fab37 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0x6c2e0578 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c5fcfaf set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x6c6538df init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c6ad9f6 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x6c73ae15 dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x6c7c760f nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6ca011ec disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x6ca2ed87 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6ce93ecf usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x6cfafab9 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x6d20c615 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d3a0bb0 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x6d3ba906 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x6d46ba7b gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x6d49c674 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6d7100e0 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x6dac0acb hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6dd1715d pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x6dd2beef gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x6dd3ee8c usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x6de4c699 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x6dea49c1 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e065aa5 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x6e09fff0 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x6e45eb07 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x6e6a5570 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x6e6caad4 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x6e782c23 iomap_create_wc -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e8a1f9a dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x6e8aee29 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x6e8c87e3 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x6ea7e4f6 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x6f07da5c pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x6f1010a6 acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f2f60b6 acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x6f3add1d sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x6f3b6f1c rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x6f4e6a0c regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x6f597c2d disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x6f68d8ba ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x6f6dc8f3 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6faa9b5e debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x6faae9b5 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7016a897 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x701900d8 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x70201233 unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x704e7bb5 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x707930c2 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x708b8020 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70cf8966 i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x70ea5397 acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x71143255 acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x714e83a7 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x715d1aa3 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x7162eaaf flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x7198ceb8 __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x719b7aba acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x71e866ee gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x71f33cf3 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x722ee560 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x723ef5ff dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x726e6a1f blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x7273c04e bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x727ee3cf sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x728cac56 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x72975844 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x729cadc8 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x72a066d3 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x72a23a71 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x72b719ca irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x72d97223 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x72ec858e rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x72ef48e2 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x72f6982f arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0x72f75fb5 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x7306e359 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL_GPL vmlinux 0x734f0276 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x73560d86 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x735e580d mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0x7369c640 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x7373b2d1 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x738ac640 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x738fd248 intel_msic_reg_update -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x73c3e374 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73caa89c rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73d788d0 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x73e12e47 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x73e7a044 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x73f45e6c unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x73fc5461 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x740aef1a pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x742c75ea devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x743b58e4 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x744ddced napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x744dea27 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7468b74e __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x746b8e10 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x74889b01 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b7f671 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x74b9f79b hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74be1dd2 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x74c90271 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x74d449ef da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors -EXPORT_SYMBOL_GPL vmlinux 0x74e7d070 xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x75024055 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x7517ef09 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7540b261 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x755b2984 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x7571274e blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0x75751265 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x7585d909 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x75874f00 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0x75888b00 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x758f101c pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x7595a9c6 swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x75a0075e unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75d96aaa arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x75e0a2a2 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x75f62cb2 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x75fc4aef ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x761227be ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0x762081db unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x762a5de0 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x762b4fdc regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x763df98d cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x7666ea4a skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x767b9bde nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76878ac6 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x76910575 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x769cea32 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x76a4934d user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x76a7201b ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76ed68f9 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x76f3c206 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x76f8f65a devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x771ca702 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x771f6350 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x77394230 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason -EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write -EXPORT_SYMBOL_GPL vmlinux 0x778cc6c7 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x7790adc0 aout_dump_debugregs -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b8401a ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x77ba686c event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x77c16418 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x77dc7f09 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x77fe6517 genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0x77ff18f0 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x7802c08d pci_get_hp_params -EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x7829e9a5 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x782b7963 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x783e9192 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x78575bee atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x78955f02 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x78a7804e fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78b2ced9 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x78cb7a6a skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x78e84890 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x78ee6fba wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x7910bee9 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x7938464e gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x79429427 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x79489f86 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x7984963a usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss -EXPORT_SYMBOL_GPL vmlinux 0x79a71c48 kernel_stack_pointer -EXPORT_SYMBOL_GPL vmlinux 0x79b84b1b intel_svm_unbind_mm -EXPORT_SYMBOL_GPL vmlinux 0x79d7493f kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x79ddd9a9 cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped -EXPORT_SYMBOL_GPL vmlinux 0x7a038d31 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x7a450e8a xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0x7a6dd905 nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x7a7ea1f5 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x7a90ca37 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x7ac678d9 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x7ac7410d devres_add -EXPORT_SYMBOL_GPL vmlinux 0x7ac7cea5 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ad0f173 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x7aff31d1 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b1d3e74 dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x7b26325e ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x7b2b8b98 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x7b477df8 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x7b699f70 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7b84bf3f tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x7b87d483 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7bf96f0d led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7bff4171 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x7c41838f extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7c598b24 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x7c5f4d2c pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x7c7621a9 i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x7c89d12a pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7cc03858 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x7cc18fcf ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cee1628 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d133548 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x7d4068eb sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x7d4f4db7 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7db8a1c5 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x7dc2c84d crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x7dc978ba tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0x7e183f13 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x7e35c7b0 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x7e5036b9 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e75dce0 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7ece7d94 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x7ef61ab0 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x7efa36ae __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x7f09fbf4 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f378c40 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x7f43af36 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x7f4ccea8 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x7f598f44 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x7f73d368 __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x7f74f6f8 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7fb04154 component_add -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8004115f devres_find -EXPORT_SYMBOL_GPL vmlinux 0x80184043 trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0x801ddab2 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x8022bcff device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x8024ef81 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x803cd0cc pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x805ea36b spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x80750822 thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x807c08c5 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x808a0200 clk_debugfs_add_file -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x809529fd alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0x80968bd2 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x80a76e33 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x80c603f2 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d45178 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x811974ce pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x81198b37 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x8164c141 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x81744910 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x8191c781 clear_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0x81ce03c9 __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x81e80354 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x81ff76f0 put_device -EXPORT_SYMBOL_GPL vmlinux 0x820d63a8 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x8223a46a devres_get -EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x823b2387 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x824660ee to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x825464e1 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x8272dccf sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x82978442 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x82bbae90 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x82c6a453 crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0x82c77ef7 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x82cb9417 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x82d1e7fd device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write -EXPORT_SYMBOL_GPL vmlinux 0x82e208a9 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x82f73d9e pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x82fe7ca8 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0x831221cc platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x8334e749 acpi_dev_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x834d9d93 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init -EXPORT_SYMBOL_GPL vmlinux 0x8371a959 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x83874a17 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x83bf01f0 acpi_dev_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x83cbf8c0 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x8414f491 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x841b27ad dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x8422d0d7 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x84376155 pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x844d1e1d ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x845b6971 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x84619a7c noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x8462bdcf btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x8465ff8d cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x848448fd ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x8496029d usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84b5bf2b pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x84c685ae securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x84c81997 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x84cb193f get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x84d0e951 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x84d6f014 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x84d7fad6 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x84e839a9 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x85029527 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x8507067b netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x852372e9 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x85445e83 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x854630f8 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x855bbdbb rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x85778e62 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x8582a1cd nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x8586b9f8 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x859381fe palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x85991157 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x85c642f4 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices -EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq -EXPORT_SYMBOL_GPL vmlinux 0x85f03b79 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x860c335b xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0x8614876a bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x862cf8c0 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x86370567 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x8648ed0a rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x8674edc2 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore -EXPORT_SYMBOL_GPL vmlinux 0x8685f32e set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x8688d399 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x868bfcd3 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x8696f8e5 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x869a9a13 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x86ae25a4 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x86b200ad crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x86ba0edf regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x86bfeff5 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0x86dc3c3c spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x86e9dd94 irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0x86edd8fc usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f3cdd4 pci_msi_prepare -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x87338d7d kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x874c4e23 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x8757e142 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x876a3a00 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x87922f39 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x87924fd5 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x879d2afa ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0x87bc7476 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x87bea516 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x87dde339 tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x87f581df ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8824ba01 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x8831f8b1 kmap_atomic_pfn -EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8847f799 arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x8851c7ad dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88be7c33 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x88c12a8d regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x88c3d9ca devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x88e39181 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x88f4007a relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x891933b1 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x891a5f83 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x891f8c44 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x892db19a da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x893fb585 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x89567a3c rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init -EXPORT_SYMBOL_GPL vmlinux 0x8965509c security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x896e5444 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x8970fab6 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x8972bfb8 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89ca30d4 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x8a1d15d1 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x8a553f55 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a56e2e9 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control -EXPORT_SYMBOL_GPL vmlinux 0x8a89f020 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abdd951 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x8ac293c6 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x8aceeed4 ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8ad03194 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x8ad61748 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b2427c6 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x8b556e7e xen_swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL_GPL vmlinux 0x8b627f9a ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x8b760ead acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b8655ef rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x8b870811 nl_table -EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8b982d6c nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x8b9c93d1 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x8ba7527b rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0x8baf3b2b console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x8bb47e23 __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0x8bc41382 fpu__restore -EXPORT_SYMBOL_GPL vmlinux 0x8bf4a299 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x8bf7f528 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x8c40a416 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x8c580516 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c98c5ba class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index -EXPORT_SYMBOL_GPL vmlinux 0x8ca314c5 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x8cc5168d __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt -EXPORT_SYMBOL_GPL vmlinux 0x8cdf03c6 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x8cf72ad8 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x8d0ac4fe rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0x8d18e953 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d4316de cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x8d55a360 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x8d5ca9d0 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x8d77720f acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x8d897eed device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x8dcb0f07 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x8de999c1 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x8e0b053a platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x8e123d31 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x8e1aa9a8 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x8e1e7f94 wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0x8e272ef8 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x8e2bfee1 led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e38aa82 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x8e3d111e bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x8e5a9efd debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x8e648634 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x8e80b7b8 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x8ea57634 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x8eb97f92 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8ebd51de tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x8ef4916e subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x8efda6d6 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x8f03b648 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0b00e7 __online_page_increment_counters -EXPORT_SYMBOL_GPL vmlinux 0x8f111822 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x8f558af2 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f875e3c rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x8fdff86b wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8feb2cf7 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x8feea51e get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x8ffbd14c irqd_cfg -EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x9014570b fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9019c6f4 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x9024bff5 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x903091c1 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x90562599 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x90580fde skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x905ec4fa xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x9083d39d metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90bfe76c xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x90c0c66b regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x90d10830 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x90d30dd6 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify -EXPORT_SYMBOL_GPL vmlinux 0x90df28f9 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x90e04835 xen_swiotlb_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x90e4694b proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x9106059c pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x912cc8bb ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x91404537 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x91504546 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x91a7ed07 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x91b0ba62 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x91bcd048 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x91c0470b usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91de4dcd cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x91f48346 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x91fac601 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x923be00d iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9277f6b4 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x92a1024e fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x92c5cfa4 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e92113 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns -EXPORT_SYMBOL_GPL vmlinux 0x930d81c1 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x931ddfd4 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x931ff3e5 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x933f9c77 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x937f9bca __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x93982ffc sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x93a9702d do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x93b61fa2 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x93c6c860 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x93ddb021 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x94307682 dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x943e0b58 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x943e887e nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x948630d6 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x948fee3f rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x94a5fcf2 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x94c813c7 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x94d7a8db posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x94e121bd usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94f23101 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x94f8ef63 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x95116f34 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953b6f7a __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x953c9fd3 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x95411309 xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0x9550c3cc fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x9564ecbd rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9583be18 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x958ec10e pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x959d70a8 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x95af6c6f crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95bf1b9f da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x95d8c09c thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x95ebb846 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x95f178f9 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x96091cc9 reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x962dfe45 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x963e0ee7 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x9644b2fc usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x96637d64 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x96705fbb pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x96cb60ee attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x96eef7b8 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x96f22ff4 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x970cdd68 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x970e5e70 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x9711ddc3 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x972a4b96 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x9766974b platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x97c02628 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x97d20b38 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97f97179 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0x97f9c868 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x981113a9 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x9833d313 extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x983ddd19 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9860b3dc regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x986420a1 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x9868743f register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x988e90d6 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x988fcecd devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9893238c ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x989c3f33 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x991e7b9d device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x993a75fd xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x99487928 split_page -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9965ad13 arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x9986a934 acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99b754e7 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99bf1395 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x99c4d911 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x99fa4c43 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x9a10da89 __tracepoint_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a11bcc9 regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0x9a2c6e54 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x9a387401 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9a8c4258 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9aaa63d3 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac550be uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9afcbdfd regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9b524aa0 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state -EXPORT_SYMBOL_GPL vmlinux 0x9b8f5661 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus -EXPORT_SYMBOL_GPL vmlinux 0x9ba32fc8 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x9ba3e692 blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0x9bcd1cba of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write -EXPORT_SYMBOL_GPL vmlinux 0x9bda41b0 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x9be9b0cd ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x9c0fd79b tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9c29178b da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x9c38c94f device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x9c3ce8f1 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x9c443cf2 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9c59e0bc pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x9c6783c7 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x9cb393ec regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cc58e63 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x9ccdf526 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x9cefca8d efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x9d180ff1 blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x9d1f0861 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x9d2782a9 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x9d53a46f tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x9d6105c2 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x9d62c898 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9de09db4 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x9de0fbfd aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x9dea30b7 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0x9dff6d55 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x9e0ad819 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x9e150c03 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x9e3610cd regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0x9e44c4e3 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e54954e devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x9e6a521d pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x9e970bd5 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x9ebff902 start_thread -EXPORT_SYMBOL_GPL vmlinux 0x9ec89f52 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ef9da77 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x9f0a4828 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x9f32716b usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x9f3d9d92 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x9f3e57e4 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x9f3f4e91 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x9f419903 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x9f5d8021 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x9f5e9465 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x9f5fae51 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x9f62a543 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x9f889e92 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x9f9ae03b efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0x9faa5419 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ffd465d __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xa000552e irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xa0161de2 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xa02840bd do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xa02b5e8f thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xa04cde07 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0xa050a483 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xa06b9451 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0xa06c9ffa kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0xa086b6a9 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xa086dc01 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xa0b74e3a ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xa0c4bcf3 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xa0dd507e task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xa0e4aeed ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xa0ee894a crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xa0f9f764 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa113bcc5 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info -EXPORT_SYMBOL_GPL vmlinux 0xa11bbbfa usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0xa1213162 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0xa13773fe iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xa151f58c posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa1719a87 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa17301d9 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa19c39bf agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xa1b6ec8c tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xa1d3afb6 pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0xa1f6ce51 __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region -EXPORT_SYMBOL_GPL vmlinux 0xa210a542 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa2159209 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0xa231a6c1 nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xa24232ae __remove_pages -EXPORT_SYMBOL_GPL vmlinux 0xa2472d16 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0xa24a984f usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2881262 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xa28b5254 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0xa28bf03f cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa2a7e542 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xa2b23a5c transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xa2ba48d9 ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2cb16ff trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xa2ce9829 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0xa2e854eb ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xa2ee03f0 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0xa2f19974 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xa30c4ff6 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0xa31d1a37 devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xa31e02f1 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0xa34277b6 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xa34577d5 device_create -EXPORT_SYMBOL_GPL vmlinux 0xa34c48e2 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xa34ecde7 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xa3637bb5 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa389f236 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3b21b93 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0xa3b90338 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0xa3b92831 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3b9750a bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xa3d0a3a1 trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xa3d2a9ca usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa3ec5338 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xa3ec76f1 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xa41029d9 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xa425067d uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xa42d0739 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0xa42dd2db virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xa4353ed3 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa4deceef pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0xa4f8fc36 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0xa508f268 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xa50a1684 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xa51f84a7 xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xa558a919 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xa55c042a bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa569357f gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xa58eaed4 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0xa5970cd0 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xa5a0a47e gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xa5cbe04d blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xa5d14d14 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0xa5df5908 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list -EXPORT_SYMBOL_GPL vmlinux 0xa62ea6c6 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xa6424cbd crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6d3649d blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa759feed ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xa7690761 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xa76fd8e1 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xa7859f68 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xa78a12c6 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa796cc37 usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0xa7bb3b97 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xa7dd93a3 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xa7de51b4 ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa7fb6136 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xa7fe1b3c device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xa8015518 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0xa8142955 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa86efcc6 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa8747d6f regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xa885d5d1 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xa89d7993 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0xa8a3c733 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8dfb81f regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0xa8e5c679 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0xa8fb21c5 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0xa901ba7d ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa9143342 find_iova -EXPORT_SYMBOL_GPL vmlinux 0xa91aa116 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa96438fd dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xa974c1f8 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xa979a04e gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xa9a39752 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xa9bab4ba gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0xa9c1153a dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaa0bc4cc gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xaa15f525 gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0xaa1a03ff pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xaa23dee8 nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0xaa5e8453 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xaa9edf68 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaabbb648 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xaabce590 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xaad66ad1 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0xab1013ae devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab219617 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xab24d2c3 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab681292 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab768de1 crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0xab7fd9f8 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0xab885541 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0xab9110fb crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xab975de6 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xaba4cc58 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xac0be560 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0xac19350a simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xac1b8105 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xac2aa676 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xac36748b gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0xac3a1bc2 devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xac71e262 wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0xac97b48f hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait -EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xacbfa657 tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xacbfdfb4 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0xacd708d8 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xacdcce67 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xad0450de pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xad080b34 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xad1221a3 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xad279bbc __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xad3d4ba4 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xad4354e4 yield_to -EXPORT_SYMBOL_GPL vmlinux 0xad593d07 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xad66bf84 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat -EXPORT_SYMBOL_GPL vmlinux 0xad95282f apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xadcd510f register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xadd16721 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0xadd4a869 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xadf3a4ac debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae1d159c page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0xae2ed049 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xae369781 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xae4f19c4 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xae56bed8 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0xae6782a4 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6b8d11 __module_address -EXPORT_SYMBOL_GPL vmlinux 0xae750eba crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae84f419 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xae8dcdc3 __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0xae929bd4 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xaebeea3b blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xaec1ef8d iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xaec4a5d5 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0xaecdfe87 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xaed6a2a4 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0xaf0081d8 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xaf075c2c ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xaf08243d ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0xaf4cd6d3 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xaf688523 nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0xaf9439db leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xafd68c25 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xafeb2978 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xafec9ec3 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xaff43516 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xb0019dc8 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0xb01158f5 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb0390be7 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb060d623 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb08729c2 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xb0be5c4d __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0xb0be96ef adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb0e9c49b sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xb1205cc6 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xb12220f4 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0xb13713cb rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init -EXPORT_SYMBOL_GPL vmlinux 0xb1834817 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb192f935 phy_put -EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1c5a6d2 device_add -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb20e5acb crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb22a4b8f ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xb24586ba __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xb24f9866 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2a6f337 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xb2c9513d rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xb2d9664e phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0xb2d975cc ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0xb2e71101 seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2f8aa90 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init -EXPORT_SYMBOL_GPL vmlinux 0xb3b72ca4 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0xb3cfa787 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0xb3f3959b sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xb3f6f25f kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xb418b9cf dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xb44e47f6 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xb45fa6c5 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xb4632676 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb46f0fa1 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xb4ace27b of_css -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c433bc xen_swiotlb_map_sg_attrs -EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb518aa4d watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb53d7dc0 shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xb5404448 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb5761836 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xb579ff5a sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb592bf90 xen_remap_domain_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5c4b031 acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xb5eff9ea ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb5fb8160 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xb5fed43c flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xb61a8143 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb63981a6 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xb65162bd irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0xb65e369d pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid -EXPORT_SYMBOL_GPL vmlinux 0xb66d58ae wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb6831e29 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xb68ee39b usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xb69d7bb3 crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6b73878 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xb6b9d471 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xb6bc49a9 __supported_pte_mask -EXPORT_SYMBOL_GPL vmlinux 0xb6bedc2e crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xb6cfde1d fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb7364a5d pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0xb74bff2b led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xb758319d rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb75b88d6 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0xb76c35e6 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0xb790945a pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xb7bca51b inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xb7c3cbd0 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xb7d0d06a crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time -EXPORT_SYMBOL_GPL vmlinux 0xb7d9ad4b i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xb7e22e5d usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb876ffff devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xb8811f24 nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb89e3985 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xb8b0cac4 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0xb8b3c3b8 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xb8cb639e sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d9d374 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xb8ea050d usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xb8f45693 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xb8f4755f usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0xb91975f9 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xb94f1b24 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0xb9547d82 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xb9783e9a nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9be6b93 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9c769d9 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9e8618f ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xb9f27771 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xba0f67d7 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xba111604 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba433e07 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0xba5e1570 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xba6df6ea dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xba73ce62 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0xba8213d9 blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0xba9a2a1f class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xbaadca8a rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbae5cdc4 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb1c327b get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xbb4a7b1b uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0xbb58b814 iomap_free -EXPORT_SYMBOL_GPL vmlinux 0xbb59ddbf tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xbb5b08b4 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0xbb630b18 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xbb7e49ce pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xbb8124c9 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xbba03100 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbc8af69 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id -EXPORT_SYMBOL_GPL vmlinux 0xbc04ee81 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xbc12f372 percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0xbc38e605 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0xbc5b2b78 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xbc695c49 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7f4b6e blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0xbc871c14 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xbca0201a sfi_mrtc_array -EXPORT_SYMBOL_GPL vmlinux 0xbca5549b skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcb5ecee skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts -EXPORT_SYMBOL_GPL vmlinux 0xbcc00632 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd69fb2 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xbcdbb148 virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce25301 device_register -EXPORT_SYMBOL_GPL vmlinux 0xbcf4ad3e screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xbd182b05 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xbd3e0e87 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd40fcda ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xbd95c1d9 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xbdc08de0 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0xbdddb5cd __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xbded7fd5 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xbdeff382 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xbdfa16e0 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xbdfb69a3 md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe267ed3 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0xbe399558 percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0xbe480c1e __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xbe546f74 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xbe58e4ab usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe788600 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xbe87f06b rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbec69bca cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0xbecc6006 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbee474ae bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbeeca971 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0xbef8b860 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf32fb1d get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xbf4bdddb perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0xbf518e2b regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xbf7cc8fb iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xbf9b66d0 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0xbfaa1ea3 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0xbfb43010 xen_swiotlb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfc7b1e2 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xbfcca291 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfd10bb7 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xbfd4b536 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xbfdb31de cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xbfdf0f69 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbff58aba rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 -EXPORT_SYMBOL_GPL vmlinux 0xc0031767 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xc0198da4 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xc019dd44 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xc068a862 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0xc084b098 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0xc0a480f6 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0ab1bd3 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0fd2148 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xc10fd22a __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xc116bddd sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xc11cf059 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xc12e0ada srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0xc13c254d regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xc15441d9 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc17cb89a attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xc17ebfbd extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0xc17fc416 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu -EXPORT_SYMBOL_GPL vmlinux 0xc1b57c47 irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0xc1c1de52 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc1f4d980 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xc1fb46c1 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xc1fd531b skb_segment -EXPORT_SYMBOL_GPL vmlinux 0xc2005b09 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0xc22637ec tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc24b8e34 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0xc2507ab9 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc25bb52c __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xc25df14d __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xc276077a da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xc27a86b2 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0xc2c8d851 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xc2dd07f8 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xc306eae8 xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xc30a4ad3 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xc3122a2b cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc3336430 acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3428fd7 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0xc36b55bd usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc38dcb43 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xc38f0b35 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xc39056fe gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xc39953a7 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xc3ad8689 part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0xc3affdd7 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xc3b20b61 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xc3c9fe41 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xc3df36da acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0xc3e597dc dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0xc3e90ff0 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc3eaa113 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc3f5a5a7 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42c1a3b gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xc4462292 ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc4787d14 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc48911fc xen_swiotlb_sync_sg_for_device -EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48faa88 devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xc4930b8e irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xc4958e61 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xc4ad979d gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xc4aff0d0 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xc4b5161e devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc5076ac4 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc54cf45b platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc5914a16 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xc608974c virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xc609c616 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xc615f163 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc62c102c pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0xc62d5def power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xc62fa02b lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6ab63c6 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xc6d493a0 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xc6f59de4 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc70e002b wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc7331d60 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xc7410e86 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xc7531d72 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc771555f led_init_core -EXPORT_SYMBOL_GPL vmlinux 0xc783e5a5 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xc79bc455 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7b33d33 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7dbf565 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7eb480c inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xc7f631d9 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xc80c0dba class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xc8164a67 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc81b765d put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xc855811b power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc871a3dd dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0xc8782c46 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event -EXPORT_SYMBOL_GPL vmlinux 0xc8954314 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xc89f1520 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8ced272 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8f9375d pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xc8fa4caa usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xc90c0f0e bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc928e675 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xc953dadb ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc96380e3 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0xc9705eeb has_newer_microcode -EXPORT_SYMBOL_GPL vmlinux 0xc978234e vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xc9a896fd iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xc9c459ea ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xc9ccaa3d pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xca29c16e wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xca31584d do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xca4bc012 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xca52021c devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xca542e37 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0xca6c76aa wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0xca6e570b usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0xcaa51aeb inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xcaa7882d usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcacc6e3f crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xcad93f33 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xcaf720e9 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0xcafce819 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xcb14756c regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb18d523 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xcb31fa35 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xcb56ad40 dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xcb8bf7d1 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xcb913092 user_describe -EXPORT_SYMBOL_GPL vmlinux 0xcb9a0425 blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0xcba50b6c wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0xcbbee1a5 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xcbd48c3f hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xcbd870e8 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcc03424e dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xcc0f38df usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0xcc1382d8 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xcc1bd859 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcc4ae361 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc8ea1a9 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xcc9c4ec2 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0xcca888e8 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xccb55028 extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccdfd7b8 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xcce73927 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability -EXPORT_SYMBOL_GPL vmlinux 0xcd1516df register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xcd4afc60 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0xcd50fc59 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update -EXPORT_SYMBOL_GPL vmlinux 0xcd810b73 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xcd85e3fb ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xcd8ffa10 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xcd9092bf register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd931e66 rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9a3ff9 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcda5f1fc ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdc8c85c xen_pci_frontend -EXPORT_SYMBOL_GPL vmlinux 0xcdc9598b platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource -EXPORT_SYMBOL_GPL vmlinux 0xce0b25ae bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0xce1424e3 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xce37b7e3 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xce469242 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xce4cda1b platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode -EXPORT_SYMBOL_GPL vmlinux 0xcf140a86 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xcf2cd6cb pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xcf3b4f9e pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcf8ecff0 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfbc7b9a list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfd514ec hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd0015fbe sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd03fd964 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd0464396 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xd048ec15 efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0xd05aa9b5 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06823db pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xd081d4f5 print_context_stack -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0f01298 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0xd0f1cbbf usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xd122ce5d put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xd135b7e8 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd16f6cc5 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0xd1745218 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd178a261 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xd1be1173 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1fc31e7 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0xd1ff5d06 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21c32c2 __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xd25ae3ab pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xd264726a serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd28285ef power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd2949176 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xd2b879ca kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xd2d84fe5 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2e88de5 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd3201dd1 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xd33fdcf5 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xd343cc30 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xd346acd5 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0xd3492d6c bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0xd38473af gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3b883a6 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xd3f72517 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd40744f8 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xd4074d90 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xd41058f2 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0xd4171c64 skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd42311f3 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xd42ad6a4 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xd4325cd3 seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd45ea32f hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0xd4963223 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd4a6dc47 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4d61e6a rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0xd4ed71d9 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0xd4f07ff1 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xd51e1f4c spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0xd52c8949 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xd52e6b6e map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xd544bede __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xd544e902 pgprot_writecombine -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd56fb029 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xd59138da sis_info133_for_sata -EXPORT_SYMBOL_GPL vmlinux 0xd5b5cc96 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xd5b85c98 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5d2f9ea isa_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xd5e7071a ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0xd5fc4c31 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd62ae287 rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse -EXPORT_SYMBOL_GPL vmlinux 0xd6362a96 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xd63def7b led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xd670f938 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6980f10 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0xd6a447d4 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xd6d52f01 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd7009e28 input_class -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd7135d8f scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd7367f46 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd74b1d64 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0xd764d265 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd79fbc5c sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xd7ab2c0c speedstep_detect_processor -EXPORT_SYMBOL_GPL vmlinux 0xd7b41085 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd7c2de30 rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xd7ca76fe vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xd7d645d1 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7e51f6f ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xd8090a6d phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd8250a5c iounmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0xd83698e3 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0xd8553f2f xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd88e543e da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xd8c76c4b pv_info -EXPORT_SYMBOL_GPL vmlinux 0xd8fa1cf5 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xd91386ef ref_module -EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges -EXPORT_SYMBOL_GPL vmlinux 0xd92ea773 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd9441f90 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xd94b737e erst_read -EXPORT_SYMBOL_GPL vmlinux 0xd94cdfeb pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xd94fa823 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xd969a797 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd97160db handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xd977050f power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin -EXPORT_SYMBOL_GPL vmlinux 0xd9abfb76 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xd9be2fb5 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xd9d55e7d driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xd9e36eb6 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9f0712e usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xda0d12a4 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0xda630131 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdac04717 dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0xdad67908 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xdadbc867 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xdae28055 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdafa6a74 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0xdb00e7d7 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xdb060015 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xdb0619ee spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xdb22ce71 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb5ff5b7 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb63e5ec pinctrl_utils_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0xdb726291 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xdb739b07 blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdba75cf4 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbad9e62 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xdbc7420a netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xdbcdf17c extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc2dc36c device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc6fa847 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc907d72 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9f07e1 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca54e0b device_rename -EXPORT_SYMBOL_GPL vmlinux 0xdca9f4e7 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0xdcbb3510 __nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0xdccb672f get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd1cb034 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xdd228b2b acpi_subsys_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xdd26baf7 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xdd28300d regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd38c505 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd721bec gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xdda96d92 acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xddb1108a acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xde02eca7 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0xde14bbdf regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0xde19e0a8 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xde1bab73 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0xde1eea51 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0xde220f25 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xde340421 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xde5f0777 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xde6be147 efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0xde747356 intel_msic_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next -EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xdea097da ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xdea18b10 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0xdecd492c serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xdecea258 nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf1389dd preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0xdf466565 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0xdf4f0b78 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xdf622181 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xdf66ca81 ucode_cpu_info -EXPORT_SYMBOL_GPL vmlinux 0xdf75282c inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xdf7daf46 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xdfb65719 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xdfb79ffa print_context_stack_bp -EXPORT_SYMBOL_GPL vmlinux 0xdfbf3cf1 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xdfd933ed perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xdff8bbe2 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe02e5381 device_move -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xe04d59b6 fpu__activate_curr -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe077c2f3 ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xe085bb4e handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe091a567 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq -EXPORT_SYMBOL_GPL vmlinux 0xe0d6a9cb pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0xe0ecb56d crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0xe0effa2e sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0xe0fa0149 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe11a7e4e acpi_dev_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe11b18bb inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0xe14fcf5d pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xe14feff3 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xe16fbd0d devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xe171e824 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe182a825 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe1858c7f reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xe1900fab of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xe19eec0b net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xe1abcfb0 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xe1b02d4d md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1d796fb cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xe1e44d76 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0xe1f37e2f dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xe211724d crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xe2224a50 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xe225535a ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xe23af1d4 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xe24e2df6 dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0xe25a671e tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe28d6462 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xe2900056 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0xe29349dc copy_reserved_iova -EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe29922a2 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xe2bbef9d eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xe2bc8e32 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xe2c96b16 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xe2f53083 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe30a0004 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xe32670de default_iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xe33cb023 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xe3436042 component_del -EXPORT_SYMBOL_GPL vmlinux 0xe34c1818 kick_process -EXPORT_SYMBOL_GPL vmlinux 0xe3781628 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xe38e16f4 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list -EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xe3bda663 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe3be648a fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0xe3e2f401 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xe3e83d3c __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0xe40959ad x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0xe418fde4 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe42c6d33 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4314fe9 swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0xe439815c erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xe439a9c4 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xe44a4bab pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xe453e385 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0xe4627408 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe4661f52 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe47e8b90 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xe4868a1a dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xe48ad2fc ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a02613 acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xe4a0d7af __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xe4c331b6 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4d1bba8 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xe4d3577a __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0xe4f7d9e4 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xe4fd67d3 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xe4ffa1ac percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe511bbed vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0xe512fc6a usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xe530dc40 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xe5381b3c usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xe5402098 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr -EXPORT_SYMBOL_GPL vmlinux 0xe54acdf2 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xe55d994e bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0xe56b7541 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xe575980d tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe57a2909 regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xe57e5d68 devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe588853c sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe591c908 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xe5a28a7d gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0xe5caec7b crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xe61171f1 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xe62e9d4f xen_swiotlb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe661dc5c rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xe66772e4 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xe67121e3 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0xe6b989a7 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xe6c1d41b usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6eea95b l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe6f2c90a unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe7069031 acpi_dev_gpio_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe7287ed8 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe750b116 regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0xe7535f2d virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xe75806ee ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xe766bda7 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76de568 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xe772e646 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe7814f07 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe7a6354e cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe8275bdd clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe8783c41 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xe8a5a807 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xe8ae6f8c virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xe8b1adf6 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xe8c4ed4f cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xe8fb33c9 dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe9091a32 driver_find -EXPORT_SYMBOL_GPL vmlinux 0xe910455d tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xe91d7d0e bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xe9200e80 devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe97b9629 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xe9a83967 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xe9b92a85 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea135b1c dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xea215d3a register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xea3da2b8 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea419ca5 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xea423d91 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xea7b313c pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xea906502 device_attach -EXPORT_SYMBOL_GPL vmlinux 0xea99b795 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xea9d66cf bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0xeaac440e to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xeabdba65 crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xeae49564 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0xeaf2fd67 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xeafa700b ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xeafcb681 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xeb087413 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region -EXPORT_SYMBOL_GPL vmlinux 0xeb279fd6 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xeb41a0c6 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xeb4b5b91 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xeb648690 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0xeb8e95a8 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xebaab432 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xebf63a7c component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xec11c7f0 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xec16bafb fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xec1984b6 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec3e38b5 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0xec7fc9b2 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0xec8237a8 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xecaf22d9 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xecbda5d8 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xecbe676f blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0xecca1115 pwm_config -EXPORT_SYMBOL_GPL vmlinux 0xecca3d49 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xecd08c20 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xecec7df1 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xed2ad903 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xed597834 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0xed5b7616 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xed9711a8 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0xeda21c4e regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xedb96aee nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xedc29cd8 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xedc5f8ce usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xede3c095 blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0xedea6f15 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0xee096b95 set_pages_array_wt -EXPORT_SYMBOL_GPL vmlinux 0xee1e6fdd pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xee20d8d0 relay_close -EXPORT_SYMBOL_GPL vmlinux 0xee24e467 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xee31932a xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xee33b249 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0xee34a684 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee6fb45b spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0xeed381be usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xeee03934 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0xeee4aede dummy_con -EXPORT_SYMBOL_GPL vmlinux 0xeeea84df platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xeeedc3a5 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0xef0a0adf max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef4e670d irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xef66ab6b user_read -EXPORT_SYMBOL_GPL vmlinux 0xef6ba1e6 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef7559d1 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0xef82af80 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xef9cb7f8 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa4a7b8 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0xefa4fb8c __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xefa74136 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xefb3a734 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xefda12c3 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xefe1b170 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xeffaa6c5 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xf006ed66 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xf0084980 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xf0102eb1 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xf01d5427 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf029c116 blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xf035702e rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xf036b752 wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf0421ad5 __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xf054ac97 intel_msic_irq_read -EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf07cb570 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xf08031e1 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xf080bfea dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xf0d9f1f2 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0xf0e523f1 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xf0f20e04 security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf10c7231 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xf152204d inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xf162424e cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xf16ac703 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf186017e ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr -EXPORT_SYMBOL_GPL vmlinux 0xf1bf8b05 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xf1c892c1 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xf1f06ed1 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xf2138d1e __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0xf2196393 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf240f69e usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xf2443298 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xf24a71d9 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xf2674709 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf28512b6 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0xf2abfbe5 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2b2eb12 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xf2c74c98 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xf2ce53ef debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xf2e085da regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0xf3101bc6 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf3579146 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xf3767615 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf388916c blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0xf396eecf bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf3b2b888 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3dd3ec1 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf3ebf4eb arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf41a8e3e kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xf4215ce1 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xf433e532 regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0xf43435a9 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0xf43e9c62 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xf44621f3 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf49c0634 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xf4b2aec0 pin_is_valid -EXPORT_SYMBOL_GPL vmlinux 0xf4b884d3 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5434963 irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0xf545acd7 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf558fc10 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xf57456f4 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5ca5edb sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0xf5e1da88 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf5fbb87e ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xf5ffac45 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xf615386f percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf6238a66 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf6495509 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0xf658a0a6 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0xf6811fb9 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xf69385c9 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xf6a4b8f0 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6f929c0 rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather -EXPORT_SYMBOL_GPL vmlinux 0xf72e1a54 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf7336350 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xf738afa0 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xf75e74c7 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0xf776df49 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xf77e2a5e __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xf784c611 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xf79c052b gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xf7a406ec rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xf7b163cb clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7daadc3 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xf7fc44f9 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8221fab pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xf82a0880 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf8434ec7 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xf85edfa3 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xf86e8bb2 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf885749d user_update -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf894ba00 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xf8c550e7 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf8ce5975 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xf8cff3e3 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8ec38dc key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf920e890 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf9350ef6 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf960096a pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0xf963fb37 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match -EXPORT_SYMBOL_GPL vmlinux 0xf98ee984 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf9992a90 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a6f8f3 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xf9bc7287 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback -EXPORT_SYMBOL_GPL vmlinux 0xf9e3359c devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf9f25e71 device_reset -EXPORT_SYMBOL_GPL vmlinux 0xf9f3dd2d devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched -EXPORT_SYMBOL_GPL vmlinux 0xfa60b1d8 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xfa7a7dbc clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0xfa7d5110 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0xfa9c8831 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xfac497a4 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xfad87393 xen_swiotlb_dma_mapping_error -EXPORT_SYMBOL_GPL vmlinux 0xfaf143f2 tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0xfb2348ef bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xfb2b6ddc agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb40ce05 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfb4a016f ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe -EXPORT_SYMBOL_GPL vmlinux 0xfb685b88 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb7198af rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xfb83db03 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xfb926a72 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xfba081a1 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0xfba8837f __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfbae8f58 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc1000cf ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xfc187569 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc326a63 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc6420fb lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xfc708d34 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xfc85ad6d scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xfc877f1a usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xfc88ce7f sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0xfcb44c6d xen_swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0xfcc0d9b1 usb_string -EXPORT_SYMBOL_GPL vmlinux 0xfd13e5f4 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0xfd43d884 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xfd4608fb acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xfd4d9781 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfd5123a0 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd9b6836 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xfda5ca66 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xfdabd9ab pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0xfdd52de6 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xfdd91b53 fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0xfe038234 wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0xfe165ea7 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xfe2a9fc5 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xfe392427 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0xfe64ce6c __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0xfe6dbeb2 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0xfe720165 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xfe750480 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xfe7b0960 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfeb14fb9 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0xfeca7b23 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed91985 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xfeddca4f power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xff040d03 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff1c707d sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2ce747 machine_check_poll -EXPORT_SYMBOL_GPL vmlinux 0xff4ef9e5 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff5e48b4 set_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff66b05f fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xff6879cd input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xff84480d xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xff88d473 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xff91696c crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xffc91bdb adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xffc9c1dd wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xffcdef54 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xfff397a7 sata_pmp_error_handler reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/i386/lowlatency.compiler +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/i386/lowlatency.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/i386/lowlatency.modules +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/i386/lowlatency.modules @@ -1,4755 +0,0 @@ -3c509 -3c515 -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-sas -3w-xxxx -53c700 -6lowpan -6pack -8021q -8139cp -8139too -8250_accent -8250_boca -8250_dw -8250_exar_st16c554 -8250_fintek -8250_fourport -8250_hub6 -8250_mid -8255 -8255_pci -8390 -8390p -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -BusLogic -DAC960 -NCR53c406a -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -abituguru -abituguru3 -ablk_helper -ac97_bus -acard-ahci -acecad -acenic -acer-wmi -acerhdf -acpi-als -acpi_extlog -acpi_ipmi -acpi_pad -acpi_power_meter -acpi_thermal_rel -acpiphp_ibm -acquirewdt -act2000 -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7170 -adv7175 -adv7180 -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -advantechwdt -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -aes-i586 -aesni-intel -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -aha152x -aha152x_cs -aha1542 -aha1740 -ahci -ahci_platform -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airo_cs -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -ali-agp -ali-ircc -alienware-wmi -alim1535_wdt -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am53c974 -ambassador -amc6821 -amd -amd-rng -amd5536udc -amd64_edac_mod -amd76x_edac -amd76xrom -amd8111e -amd_freq_sensitivity -amdgpu -amilo-rfkill -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apanel -apds9300 -apds9802als -apds990x -apds9960 -apm -apple-gmux -apple_bl -appledisplay -applesmc -appletalk -appletouch -applicom -aquantia -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_ps2 -arc_uart -arcfb -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3935 -as5011 -asb100 -asc7621 -ascot2e -asix -ast -asus-laptop -asus-nb-wmi -asus-wmi -asus_atk0110 -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati-agp -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atlas_btns -atm -atmel -atmel_cs -atmel_mxt_ts -atmel_pci -atmtcp -atp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avm_cs -avma1_cs -avmfritz -ax25 -ax88179_178a -axnet_cs -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1isa -b1pci -b1pcmcia -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_epp -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcma-hcd -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_aout -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluecard_cs -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpck6 -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt3c_cs -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btuart_cs -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c101 -c2port-duramar2150 -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_das16_cs -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -ccp -ccp-crypto -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfag12864b -cfag12864bfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipreg -chnl_net -chromeos_laptop -chromeos_pstore -ci_hdrc -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -ck804xrom -classmate-laptop -clip -clk-cdce706 -clk-palmas -clk-pwm -clk-s2mps11 -clk-si5351 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cm4000_cs -cm4040_cs -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -com20020 -com20020-isa -com20020-pci -com20020_cs -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_isadma -comedi_parport -comedi_pci -comedi_pcmcia -comedi_test -comedi_usb -comm -compal-laptop -configfs -contec_pci_dio -cops -cordic -core -coretemp -cosa -cp210x -cpcihp_generic -cpcihp_zt5550 -cpia2 -cpqphp -cpsw_ale -cpu-notifier-error-inject -cpu5wdt -cpuid -cr_bllcd -cramfs -crc-ccitt -crc-itu-t -crc32 -crc32-pclmul -crc7 -crc8 -cros_ec -cros_ec_devs -cros_ec_i2c -cros_ec_keyb -cros_ec_lpc -cros_ec_spi -crvml -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -cs5535-mfd -cs553x_nand -cs89x0 -csiostor -ct82c710 -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_cs -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -dcdbas -ddbridge -de2104x -de4x5 -decnet -deflate -defxx -dell-laptop -dell-led -dell-rbtn -dell-smm-hwmon -dell-smo8800 -dell-wmi -dell-wmi-aio -dell_rbu -denali -denali_dt -denali_pci -des_generic -designware_i2s -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9601 -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -donauboe -dp83848 -dp83867 -dpt_i2o -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dtc -dtl1_cs -dtlk -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc3 -dwc3-pci -dwmac-generic -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -e752x_edac -e7xxx_edac -earth-pt1 -earth-pt3 -eata -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -ec_bhf -ec_sys -echainiv -echo -edac_core -edac_mce_amd -edt-ft5x06 -eeepc-laptop -eeepc-wmi -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efficeon-agp -efi-pstore -efi_test -efs -ehset -einj -elan_i2c -elo -elsa_cs -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_pcmcia -ems_usb -emu10k1-gp -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -ene_ir -eni -enic -epat -epia -epic100 -eql -esas2r -esb2rom -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -eurotechwdt -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f71805f -f71808e_wdt -f71882fg -f75375s -f81232 -fakelb -fam15h_power -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_cs -fdp -fdp_i2c -fealnx -ff-memless -fintek-cir -firedtv -firestream -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fjes -fl512 -flexfb -floppy -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -fmvj18x_cs -fnic -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fschmd -fsl_lpuart -ft6236 -ftdi-elan -ftdi_sio -ftl -fujitsu-laptop -fujitsu-tablet -fujitsu_ts -g450_pll -g760a -g762 -g_NCR5380 -g_NCR5380_mmio -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcm -gdmtty -gdmulte -gdmwm -gdth -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -geode-aes -geode-rng -gf128mul -gf2k -gfs2 -ghash-generic -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -glue_helper -gluebi -gma500_gfx -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-104-idio-16 -gpio-addr-flash -gpio-adp5520 -gpio-adp5588 -gpio-amd8111 -gpio-amdpt -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-cs5535 -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-f7188x -gpio-fan -gpio-generic -gpio-ich -gpio-ir-recv -gpio-it87 -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-pch -gpio-rdc321x -gpio-regulator -gpio-sch -gpio-sch311x -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gr_udc -grace -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gx-suspmod -gx1fb -gxfb -gxt4500 -hackrf -hamachi -hampshire -hangcheck-timer -hanwang -hci -hci_uart -hci_vhci -hdaps -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hecubafb -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hgafb -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-hyperv -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hih6130 -hio -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi504_nand -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horizon -horus3a -hostap -hostap_cs -hostap_pci -hostap_plx -hostess_sv11 -hp-wireless -hp-wmi -hp100 -hp_accel -hpfs -hpilo -hpsa -hptiop -hpwdt -hsi -hsi_char -hso -hsr -hsu_dma -hsu_dma_pci -htc-pasic3 -htcpen -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hv_balloon -hv_netvsc -hv_storvsc -hv_utils -hv_vmbus -hwa-hc -hwa-rc -hwmon-vid -hx8357 -hyperv-keyboard -hyperv_fb -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd756-s4882 -i2c-amd8111 -i2c-cbus-gpio -i2c-cros-ec-tunnel -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-eg20t -i2c-emev2 -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-ismt -i2c-kempld -i2c-matroxfb -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-nforce2 -i2c-nforce2-s4985 -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-isa -i2c-pca-platform -i2c-piix4 -i2c-robotfuzz-osif -i2c-scmi -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i3000_edac -i3200_edac -i40e -i40evf -i5000_edac -i5100_edac -i5400_edac -i5500_temp -i5k_amb -i6300esb -i7300_edac -i740fb -i7core_edac -i810fb -i82092 -i82365 -i82860_edac -i82875p_edac -i82975x_edac -i915 -i915_bpo -iTCO_vendor_support -iTCO_wdt -ib700wdt -ib_addr -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibm_rtl -ibmaem -ibmasm -ibmasr -ibmpex -ibmphp -ichxrom -icn -icp_multi -icplus -ics932s401 -ideapad-laptop -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_gen2 -idtcps -ie31200_edac -ie6xx_wdt -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -ims-pcu -imx074 -in2000 -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int3400_thermal -int3402_thermal -int3403_thermal -int340x_thermal_zone -int51x1 -intel-hid -intel-lpss -intel-lpss-acpi -intel-lpss-pci -intel-mid-touch -intel-mid_wdt -intel-rng -intel-rst -intel-smartconnect -intel-vbtn -intel_ips -intel_menlow -intel_mid_battery -intel_mid_powerbtn -intel_mid_thermal -intel_oaktrail -intel_pch_thermal -intel_pmc_ipc -intel_powerclamp -intel_punit_ipc -intel_qat -intel_quark_i2c_gpio -intel_rapl -intel_scu_ipcutil -intel_soc_dts_iosf -intel_soc_dts_thermal -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -intelfb -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipwireless -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -iris -irlan -irnet -irqbypass -irtty-sir -isci -iscsi_boot_sysfs -iscsi_ibft -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it87 -it8712f_wdt -it87_wdt -it913x -itd1000 -ite-cir -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -k10temp -k8temp -kafs -kalmia -kaweth -kb3886_bl -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks0127 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kvm -kvm-amd -kvm-intel -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l440gx -l4f00242t03 -l64781 -lan78xx -lanai -lance -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-adp5520 -leds-bd2802 -leds-blinkm -leds-clevo-mail -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-net48xx -leds-ot200 -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-ss4200 -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -leds-wrap -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_cs -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -litelink-sir -lkkbd -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lmc -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -logibm -longhaul -longrun -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltpc -ltr501 -ltv350qv -lv5207lp -lvstest -lxfb -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac_hid -macb -machzwd -macmodes -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77693 -max77693-haptic -max77693_charger -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mce-inject -mce_amd_inj -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -mdacon -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-gpio -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -mei -mei-me -mei-txe -mei_phy -memory-notifier-error-inject -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -metro-usb -metronomefb -meye -mf6x4 -mga -michael_mic -micrel -microchip -microread -microread_i2c -microread_mei -microtek -mii -minix -mip6 -mite -mixcomwd -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_block -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi-laptop -msi-wmi -msi001 -msi2500 -msp3400 -mspro_block -msr -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwave -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxm-wmi -mxser -mxuport -myri10ge -n2 -n411 -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nand -nand_bch -nand_ecc -nand_ids -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -ncpfs -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -ne -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -nettel -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfit -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni65 -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_daq_700 -ni_daq_dio24 -ni_labpc -ni_labpc_common -ni_labpc_cs -ni_labpc_isadma -ni_labpc_pci -ni_mio_cs -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicstar -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nmclan_cs -nosy -notifier-error-inject -nouveau -nozomi -ns558 -ns83820 -nsc-ircc -nsc_gpio -nsp32 -nsp_cs -ntb -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nuvoton-cir -nv_tco -nvidiafb -nvme -nvmem_core -nvram -nxp-nci -nxp-nci_i2c -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_xilinx_wdt -old_belkin-sir -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_cs -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p4-clockmod -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -padlock-aes -padlock-sha -palmas-pwrbutton -palmas-regulator -panasonic-laptop -pandora_bl -panel -paride -parkbd -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pas16 -pata_acpi -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cs5520 -pata_cs5530 -pata_cs5535 -pata_cs5536 -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_isapnp -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_oldpiix -pata_opti -pata_optidma -pata_pcmcia -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sc1200 -pata_sch -pata_serverworks -pata_sil680 -pata_sl82c105 -pata_triflex -pata_via -pc110pad -pc300too -pc87360 -pc8736x_gpio -pc87413_wdt -pc87427 -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcbit -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_can -pch_dma -pch_gbe -pch_phub -pch_uart -pch_udc -pci -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia -pcmcia_core -pcmcia_rsrc -pcmciamtd -pcmda12 -pcmmio -pcmuio -pcnet32 -pcnet_cs -pcrypt -pcspkr -pcwd -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc_adma -peak_pci -peak_pcmcia -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-tahvo -phy-tusb1210 -physmap -pinctrl-broxton -pinctrl-intel -pinctrl-sunrisepoint -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pn533 -pn544 -pn544_i2c -pn544_mei -pn_pep -poly1305_generic -port100 -powermate -powernow-k6 -powernow-k7 -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_core -pps_parport -pptp -prism2_usb -processor_thermal_device -ps2mult -psmouse -psnap -pt -pti -ptp -ptp_pch -pulsedlight-lidar-lite-v2 -punit_atom_debug -pvpanic -pvrusb2 -pwc -pwm-beeper -pwm-lp3943 -pwm-lpss -pwm-lpss-pci -pwm-lpss-platform -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa27x_udc -qat_dh895xcc -qat_dh895xccvf -qcaux -qcom-spmi-iadc -qcom-spmi-vadc -qcom_spmi-regulator -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qlogic_cs -qlogicfas -qlogicfas408 -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quatech_daqp_cs -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r82600_edac -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-aimslab -radio-aztech -radio-bcm2048 -radio-cadet -radio-gemtek -radio-i2c-si470x -radio-isa -radio-keene -radio-ma901 -radio-maxiradio -radio-miropcm20 -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-rtrack2 -radio-sf16fmi -radio-sf16fmr2 -radio-shark -radio-si476x -radio-tea5764 -radio-terratec -radio-timb -radio-trust -radio-typhoon -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -radio-zoltrix -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -ray_cs -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio-scan -rio500 -rionet -rivafb -rj54n1cb0c -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-bq32k -rtc-bq4802 -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-hid-sensor-time -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-mrst -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-r9701 -rtc-rc5t583 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -salsa20-i586 -salsa20_generic -samsung-keypad -samsung-laptop -samsung-q10 -samsung-sxgbe -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sb1000 -sbc60xxwdt -sbc7240_wdt -sbc8360 -sbc_epx_c3 -sbc_fitpc2_wdt -sbc_gxx -sbni -sbp_target -sbs -sbs-battery -sbshc -sc -sc1200wdt -sc16is7xx -sc92031 -sca3000 -scb2_flash -scc -sch311x_wdt -sch5627 -sch5636 -sch56xx-common -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -scx200 -scx200_acb -scx200_docflash -scx200_gpio -scx200_hrt -scx200_wdt -sdhci -sdhci-acpi -sdhci-pci -sdhci-pltfm -sdio_uart -sdla -sdricoh_cs -sealevel -sedlbauer_cs -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serial_cs -serio_raw -sermouse -serpent-sse2-i586 -serpent_generic -serport -ses -sfc -sfi-cpufreq -sh_veu -shark2 -shpchp -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sim710 -sir-dev -sis -sis-agp -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -sl811_cs -slcan -slicoss -slip -slram -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smc-ultra -smc9194 -smc91c92_cs -smipcie -smm665 -smsc -smsc-ircc2 -smsc37b787_wdt -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1816a -snd-ad1848 -snd-ad1889 -snd-adlib -snd-ak4113 -snd-ak4114 -snd-ak4117 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als100 -snd-als300 -snd-als4000 -snd-asihpi -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt1605 -snd-azt2316 -snd-azt2320 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmi8328 -snd-cmi8330 -snd-cmipci -snd-compress -snd-cs4231 -snd-cs4236 -snd-cs4281 -snd-cs46xx -snd-cs5530 -snd-cs5535audio -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emu8000-synth -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1688 -snd-es1688-lib -snd-es18xx -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-gus-lib -snd-gusclassic -snd-gusextreme -snd-gusmax -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-ext-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel-sst-acpi -snd-intel-sst-core -snd-intel-sst-pci -snd-intel8x0 -snd-intel8x0m -snd-interwave -snd-interwave-stb -snd-isight -snd-jazz16 -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-miro -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-msnd-classic -snd-msnd-lib -snd-msnd-pinnacle -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-opl3sa2 -snd-opl4-lib -snd-opl4-synth -snd-opti92x-ad1848 -snd-opti92x-cs4231 -snd-opti93x -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pcsp -snd-pcxhr -snd-pdaudiocf -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-sb-common -snd-sb16 -snd-sb16-csp -snd-sb16-dsp -snd-sb8 -snd-sb8-dsp -snd-sbawe -snd-sc6000 -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-sis7019 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-dmic -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-imx-audmux -snd-soc-max98090 -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rl6231 -snd-soc-rl6347a -snd-soc-rt286 -snd-soc-rt5631 -snd-soc-rt5640 -snd-soc-rt5645 -snd-soc-rt5660 -snd-soc-rt5670 -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-skl -snd-soc-skl-ipc -snd-soc-skl_rt286 -snd-soc-sn95031 -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sst-acpi -snd-soc-sst-baytrail-pcm -snd-soc-sst-broadwell -snd-soc-sst-byt-max98090-mach -snd-soc-sst-byt-rt5640-mach -snd-soc-sst-bytcr-rt5640 -snd-soc-sst-bytcr-rt5660 -snd-soc-sst-cht-bsw-max98090_ti -snd-soc-sst-cht-bsw-rt5645 -snd-soc-sst-cht-bsw-rt5672 -snd-soc-sst-dsp -snd-soc-sst-haswell -snd-soc-sst-haswell-pcm -snd-soc-sst-ipc -snd-soc-sst-mfld-platform -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-sscape -snd-tea6330t -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-us122l -snd-usb-usx2y -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-vxpocket -snd-wavefront -snd-wss-lib -snd-ymfpci -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -softing_cs -solo6x10 -solos-pci -sony-btf-mpx -sony-laptop -sonypi -soundcore -sp2 -sp5100_tco -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntpc -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_decpc -speakup_dectlk -speakup_dtlk -speakup_dummy -speakup_keypc -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -spectrum_cs -speedfax -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-nor -spi-oc-tiny -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-sc18is602 -spi-tle62x0 -spi-topcliff-pch -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spmi -sr9700 -sr9800 -ssb -ssb-hcd -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -ssv_dnp -st -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stmmac -stmmac-platform -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -surfacepro3_button -svgalib -sworks-agp -sx8 -sx8654 -sx9500 -sym53c416 -sym53c500_cs -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink -synclink_cs -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -t128 -t1isa -t1pci -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc1100-wmi -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcic -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teles_cs -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -thinkpad_acpi -thmc50 -thunderbolt -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timb_dma -timberdale -timblogiw -timbuart -timeriomem-rng -tipc -tlan -tlclk -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmem -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -topstar-laptop -torture -toshiba-wmi -toshiba_acpi -toshiba_bluetooth -toshiba_haps -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_atmel -tpm_crb -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_infineon -tpm_nsc -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tscan1 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish-i586 -twofish_common -twofish_generic -typhoon -u132-hcd -u14-34f -uPD98402 -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -ultrastor -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -us5182d -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -usnic_verbs -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vboxguest -vboxsf -vboxvideo -vcan -vcnl4000 -ven_rsi_91x -ven_rsi_sdio -ven_rsi_usb -ves1820 -ves1x93 -veth -vfio -vfio-pci -vfio_iommu_type1 -vfio_virqfd -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-camera -via-cputemp -via-ircc -via-rhine -via-rng -via-sdmmc -via-velocity -via686a -via_wdt -viafb -video -videobuf-core -videobuf-dma-contig -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videocodec -videodev -vim2m -viperboard -viperboard_adc -virt-dma -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -vitesse -vivid -vlsi_ir -vmac -vme_ca91cx42 -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmlfb -vmw_balloon -vmw_pvscsi -vmw_vmci -vmw_vsock_vmci_transport -vmwgfx -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vsock -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83627ehf -w83627hf -w83627hf_wdt -w83781d -w83791d -w83792d -w83793 -w83795 -w83877f_wdt -w83977af_ir -w83977f_wdt -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -wafer5823wdt -walkera0701 -wanxl -warrior -wbsd -wcn36xx -wd -wd7000 -wd719x -wdt -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -winbond-cir -wire -wishbone-serial -wistron_btns -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wl3501_cs -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wmi -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x38_edac -x86_pkg_temp_thermal -x_tables -xc4000 -xc5000 -xcbc -xen-blkback -xen-evtchn -xen-fbfront -xen-gntalloc -xen-gntdev -xen-kbdfront -xen-netback -xen-pciback -xen-pcifront -xen-privcmd -xen-scsiback -xen-scsifront -xen-tpmfront -xen_wdt -xenfs -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xhci-plat-hcd -xillybus_core -xillybus_pcie -xirc2ps_cs -xircom_cb -xor -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yenta_socket -yurex -z85230 -zatm -zaurus -zd1201 -zd1211rw -zforce_ts -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx -zram -zynq-fpga reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc-e500mc +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc-e500mc @@ -1,17296 +0,0 @@ -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0xa8cfd13e mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0x4834b19a suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0x33497a96 uPD98402_init -EXPORT_SYMBOL drivers/bcma/bcma 0x17026b10 bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0xef0975c0 bcma_core_dma_translation -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x0656ef75 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x28bc2527 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x2c7db204 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x3de04ffb paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x61a02ca9 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0x7788d82d pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x8ec0a252 paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0xa29a2c58 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xba34c6f2 pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0xe3017575 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0xf9404333 pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xfbca8a8e pi_do_claimed -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x09ca2d5f btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x73b1efbe ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74c47cc2 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80b0d94b ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xbc2fb908 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe863376b ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x0328286f st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2287a9f1 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x953ec304 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xecd13912 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3d7e11f2 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x43b44dc0 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x6fc18631 xillybus_init_endpoint -EXPORT_SYMBOL drivers/crypto/caam/caam 0x1c758e97 caam_get_era -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x09fc4e44 caam_jr_strstatus -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x15983dcd caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x1862981e gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x4ea69828 split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x632a3ab0 caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xd9dd8fe6 caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/talitos 0x72431728 talitos_submit -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x40f064c4 dw_dma_get_src_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x6241de9d dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x7e2cbc25 dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x7e353daf dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x92852041 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xefc04a0a dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/edac/edac_core 0xfacc11b9 edac_mc_find -EXPORT_SYMBOL drivers/edac/mpc85xx_edac 0xc9bd2347 mpc85xx_pci_err_probe -EXPORT_SYMBOL drivers/firewire/firewire-core 0x011fd197 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0490f04d fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x07785095 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2a0a7af4 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2d7cc449 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2e6d6c5a fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x38b6d143 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3d6cdc12 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x434499c5 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x45b730b6 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4674098c fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x49f6e211 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x52d5c444 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5a8917da fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5b74a1b1 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x69770012 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9132de5f fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x988a483d fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9fafe118 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa65c9350 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcfc00c2a fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd176fec7 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe5854526 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0xed9a7fbe fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf8bc9459 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfce71cfa fw_iso_context_create -EXPORT_SYMBOL drivers/fmc/fmc 0x08ceb9bc fmc_driver_register -EXPORT_SYMBOL drivers/fmc/fmc 0x28b4dc1c fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x37685031 fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x488018b0 fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0x5d9aa820 fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0x5f50d10d fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0x8ffb7abb fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0xa4476284 fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xb9124774 fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0xbf03515d fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xf2b7aa4c fmc_device_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0061c59d drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0065ebba drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x010fa384 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02127b7c drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x021eb63c drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0515cefd drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07b69bdd drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08654c8f drm_legacy_addbufs_agp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x088e836f drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x089f286e drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09cb786c drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aea73a0 drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b5493fe drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c725923 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e2bbf46 drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fb3f540 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10ddac18 drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10ee3f9f drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12704e6b drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x130bf992 drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13b87133 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x154a7d95 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1645570d drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x174f34a9 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17bdeba6 drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17ea7f25 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a044145 drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b1015ff drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b31c33e drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c3b2173 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d707205 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d7e4b10 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f820529 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20473e77 drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x206abcc2 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2120918a drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x221b3f01 drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0x224350a5 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2277eeb9 drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22db6aed drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x236d6a04 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x237bbf26 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25c2fa9b drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26a7c1dd drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x280323d2 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28706724 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28e30df5 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a135881 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cffc915 drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d609feb drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f67a421 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fa770fc drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x310b776d drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32347470 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3368118c drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33dd9e14 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35bf337e drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35fb8ac9 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37071fc6 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x383d201f drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x389c015f drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b271b14 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b580510 drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c65ec0e drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c7352ce drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d38f784 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d572a05 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d8283c8 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dab549e drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e9499ac drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40c8f3ac drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x435f4942 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45c54054 drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45c658f1 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x466a3428 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490713f0 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49581529 drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b2b171e drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c696f3a drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e417191 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e63cf16 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f00bf21 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50404e3d drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x513b93fb drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51f49e30 drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x536107b0 drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54744d59 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5538bbe3 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5726421e drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5768bcc3 drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x576ec95f drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x586db943 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x591342b8 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59e9f878 drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5afcf163 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b46db80 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e19731e drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f8fce4d drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60445344 drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60b7040c drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62eabae8 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63288c5d drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63934378 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64ef2e81 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65294d00 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65ac6c8b drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x665b3765 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x672287a4 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67d4a455 drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x686f493e drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69355b74 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a845c70 drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ebb220e drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ebeb416 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eecefdb drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f78fc5e drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x703a1ca8 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x719d40c6 drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72692dc3 drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x728c469e drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7402d17c drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74581254 drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74a55e5c drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x761b212e drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7627ee21 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x770ff21d drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x776b5384 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x776c6374 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78ceaf96 drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x798f9ebd drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79b52bf7 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a61006d drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ada79c8 drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b23734c drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bdc855b drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bf8b103 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cd16c10 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ce440e4 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e00b3a5 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x813dcad0 drm_agp_bind_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x815ffdfb drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x821da027 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82308f63 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8266575f drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82f69d1f drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83407db8 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x838bf83d drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85242556 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88b50a0d drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8923e6b3 drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8990ef46 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a34f7cb drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b9d4844 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8becb91c drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d560255 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8db02191 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ef793da drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f2d8803 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9006338c drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x900be7fc drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90d4234a drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9358150f drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93a36cc2 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93fbf1df drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9498e4ac drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95c5b2d7 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x967d54d7 drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97064a60 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x973f2a66 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a3a5efe of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a5c0249 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ac5a270 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9acb2ddc drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9adc1c27 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b18cf7e drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c6e4b43 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce22621 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0eccc2 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1077c3e drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1775670 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa313605e drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa335d2d8 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4d792a3 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8490924 drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa86c960a drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae6bbf3f drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf248f6b drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb046807a drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11119c0 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1cdf7a7 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1f46009 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22b1b3e drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3c0a945 drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5dd0539 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6f08390 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7c9d5d2 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8942728 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb919b7b5 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9981305 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9b453df drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba143c78 drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbcf45f2 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc96608e drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd37feda drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe06c37b drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe393c19 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf828063 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc005821a drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc052c3da drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0574b7c drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0b63845 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0db716c drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0fb306b drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc117071a drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc15671f9 drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1aa6f76 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2aac5d2 drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2d1252d drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3052360 drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3395f06 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3805afb drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc44eef6b drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7ec7210 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbb01e8b drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc33de99 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcca1bb7b drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce6ad97b drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf33b120 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcff666af drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0f30b43 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd20cb953 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd29255fb drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2b11715 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd541dccb drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8cfe7f1 drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd990727c drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc10f6c5 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcc3c427 drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd0aba8c drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd16ee03 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd514d69 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde2dbb12 drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf45839b drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf8a6a5f drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0b7dd11 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1dd104a drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe295bad3 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe319a499 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe39cd3a2 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe39fb9a5 drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3e9a525 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4a329de drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9879b7e drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe99cf27a drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea579262 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb87c5ef drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec469bb6 drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec679379 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed42929a drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed9ad946 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedba6549 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedf23e29 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeebe3392 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0e69584 drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf22bab2f drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf365815b drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5a29c00 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5e90377 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7b99d67 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7fa5791 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8ffa980 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf93ee08d drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf95818f2 drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf994951f drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb0b9de3 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc0ccafb drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc54f7eb drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf4e10f drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd4b5fcf drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd6db958 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdac91b6 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02e2a7a4 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x042a2a34 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04e8680a drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0807fb92 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bbc952b drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bf7f70e drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ca75126 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0eb42f7b drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12eff202 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13a74b22 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1984fbd5 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a647336 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b3cd3d7 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1da5c480 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2546ee24 drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2635fcd9 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x265f8b02 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27cd8799 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x282efce7 drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29735248 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29d79757 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b85a119 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e4be81c drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x307cc991 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30cd1b45 drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x323f1f96 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x329b6328 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33bdd516 drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35b14188 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35f74318 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x388df988 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392ae5ed drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x415725b8 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x423a28eb drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x430cc44b __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45532351 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46a9c501 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b7e233b drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e591bcf drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ec3da4a drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ee00261 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4efb5ccc drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f14517e drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f973e09 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x512274c1 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52b8714b drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5457103d drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54696a56 drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56e94df0 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5891d236 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x596ca651 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59888139 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d3a8593 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fb46eab drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64b88be9 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6616871e drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66aa51e5 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68332a0e drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x691db6cf __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6926d01f drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b7d22fb drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c7b1c64 drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cf9a439 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x709d3bd8 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71999de0 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x724d29fc drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7312bede drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x737655f6 drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b364996 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c2412ca drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d759141 drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e11de11 drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e6ca459 drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7feea024 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8090da85 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x820351c5 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x827f72ea drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8462ad71 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ba0dbb0 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c207d53 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x931301da drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x949becf6 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94e29054 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x967107da drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96b53bd6 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96ce32df drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9af03397 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9da87a5f drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fab0b1c drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa24e15ba drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2f65214 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5782391 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6c33bd2 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7278f4b drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d92736 drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac204fd8 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac7d498a drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaee57f7c drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1f9e892 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2ed6f2a drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2ff72c4 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb45ced19 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5999bbc drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb72daa11 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb74d0ab1 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8e8e2c7 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb99bcf5b drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbce94b6 drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf11114d drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3a22557 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc66157fd drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6f27779 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc889acaa drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8dbe0c7 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc90a189e drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb65e544 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce7ac34e drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf3287ea drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2a0e348 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2f1f57c drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd81201cc drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8570c8e drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd874f832 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda86be1c drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb036f64 drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbd20365 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcfe3030 drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd4fd05e drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfe69d5f drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0be2c0e drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe15a57c4 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe50d62f1 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7eee476 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7fd23f8 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe93807cf drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9e38b70 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec6a7abe drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee0d85ad drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf411044b drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb67082d drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcb351de __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdd4a382 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10a04c30 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1693bc73 ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16b45731 ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x178814fa ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b28b6e1 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b2ec1c2 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x206aa0b5 ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22d291cd ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2657df02 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30453fb7 ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33620e59 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x34ef6c3c ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3defa93c ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40a8c407 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42c6d134 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x447da44d ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x46918f95 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4918cd2f ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4df8f590 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ee2b189 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b76cca5 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5be0a36d ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5dce326d ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x625441d4 ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64b1d5bc ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69ac913a ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ab825aa ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x72132264 ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73c408d9 ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7600c51a ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fe2bb81 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x850e4114 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85f6006d ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8676e9e7 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92a7f8b4 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9726d937 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9aae0f5a ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c077158 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e0a552b ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ea872f9 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae96cec7 ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf657cf1 ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb23a93ec ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb5162b84 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb586c01f ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb941522c ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbbc2a533 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd2aef0a0 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd35b1604 ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd9c5b5fe ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea4c49a4 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0eadb4a ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf277f272 ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3de236f ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf582c1ab ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfeae82b7 ttm_bo_kunmap -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x2b82592c i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x64e95fcb i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfd5e3adc i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xeefd25ed i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xf9ea5ee3 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x7713b3cb amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0940bb23 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x438b6b1d mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4874ca2d mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6184e8c8 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x61e8ce4c mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x63b085d9 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6d1f062c mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8a24bc24 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa886bf44 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xacfb71d3 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb2cb9002 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbe59bed0 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd0074ffa mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd9d49e4b mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe4997ec5 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfb77bdca mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x775adfe3 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xd1d7aa43 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x72458510 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xcf135c86 iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x209185a1 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x62c6724c iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf1e255a7 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xfebe5d2e devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7d6be5cc hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x859d449c hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa7650c3b hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc696d167 hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xcdaf5643 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xed82ee09 hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x05010e93 hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x54f1c209 hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x8678042e hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xe395719c hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1543ebc2 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1e076cf6 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x48c17799 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x547516cc ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5f19eb19 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x922ccd37 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa9e1660c ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfa06c607 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfbef8d9c ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x0bcd2d20 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x0d651f6b ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x5c7227e0 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x81b51e2d ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xdae30146 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x52a2b1bb ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xddfee644 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xef84f5f0 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x02f79bcf st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x03d2436a st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x152d391f st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x25617b13 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2b35b1fa st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x78247478 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x89b4b4d9 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9d5dd863 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9f0f355d st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa626d7ad st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa8e0eb23 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaf520d0c st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xba0e01a7 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcb51bfe5 st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdb9275e1 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe7545488 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xeec6e60f st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xeef8e786 st_sensors_of_i2c_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xf120c6e7 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xc811ec32 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x3b121be1 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x580fb7be st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x1ad2a68f hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xd336e85c adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xd4f177c8 adis_enable_irq -EXPORT_SYMBOL drivers/iio/industrialio 0x0bcab05f iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x1f270150 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x3342dc43 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x3935b51a iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x46443d65 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x54296470 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x7d60586c iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xa2c64a6a iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xbec68efc iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0xcd15215b iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xd462fbe4 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xd7219c3f iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xda3aaa51 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0xdad3e13a iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xdddb9718 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe2a54f65 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0xe4c349f6 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x06a23d31 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x876235a8 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x4185de19 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x73b9a7c3 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x30475544 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x62a7e8d1 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xf6cdd11e st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x06870867 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1ea5767b rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x32a8402c rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xaea3ecea rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xde1926bf rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xf9f49af7 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0ccb56c1 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x12602937 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x29e0c276 cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2a1f376b ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x42b10a71 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x494490f7 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x54051573 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5898ca5d ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x59df5eaf ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6485a81a ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x70156a0c ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x711ed065 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7320956e ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x84a83c0b ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8e3e7ec0 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa3c7ef58 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd185eea9 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf9abe616 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x050659de ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0809e56a ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e698ece ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10ff49cd ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13fb8a24 ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16836c8a ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17296363 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17c71f86 ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18f6d30f ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ad84eff ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dfec6f9 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23c69378 ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25d36683 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26fbc406 ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32010a74 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x347e8af9 ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x357b56d8 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bc0a040 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x404a6dbf ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41abbb78 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46d3bd97 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e2ba176 ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fa49cd2 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x517ca46e ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x543d42d8 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54aa9a87 ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56fc2f37 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59f1cf1d ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cc37fa1 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d6e8dd8 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5dcffd40 ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62b23709 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x670f4e95 ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x677266b7 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68f2d8bf ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69bf474f ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6efa7726 ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70759501 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79a27d95 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86d4307f ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x881d9c52 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88580513 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91dc0b65 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9409131d ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x961c47ee ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97a8f37f ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a266efe ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ba489ef ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa009f1b0 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0490f60 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0c0b95a ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2c9e867 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3ade859 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab24be80 ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad11c13a ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf10e685 ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3b0fa90 ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb66240dc ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb72e3153 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb781eb18 ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbec24c92 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1115c05 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2134da4 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc62e84f3 ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca846262 ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc9b431f ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce7ab89c ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0290f8a ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd18ef204 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd639ee9a ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd665a07b ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb425801 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9db8bd3 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9f5520c ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef498ea9 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf216d7b2 ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3f2e98f ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf46f27eb ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5c54b69 ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8053b6e ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfca5f0aa ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd1f6ec1 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdb03be8 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x03be32a2 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x26fbf480 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x342194f2 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x470643cb ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x914fee6c ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x91b5ab2d ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xaf4cc55e ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xba55a734 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc6c2314b ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd09f0e6e ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf8d9f157 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xfdbb0a73 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xff6af5e9 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6058ec39 ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x692a2131 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7e637529 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x844a85a0 ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9eaa534e ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa0d7f8d0 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb5e658a2 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe69c6609 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf6e3da78 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07d538e7 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6bd64392 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x03f9ae16 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x133c7557 iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x262901dd iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x292020ea iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x31c36bc9 iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x32a2fa8b iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x32a64953 iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x567ea47c iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x76ea5cba iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x83f7f1c3 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x923abe6e iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa53276a6 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd4b90a3d iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd65bf40e iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdc853c4d iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ea439ba rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2652c698 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3024863d rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x431c8390 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x539ddb42 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6667f864 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7ea6ba54 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8556263b rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa497d1e3 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbc733643 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbf5488c6 rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd3de6555 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd4ae58cb rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd8fa831c rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdd5b88b2 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe55a80ea rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xee87c868 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xef2970d2 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf0e9b94c rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf997cec5 rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfc5fcc77 rdma_create_qp -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1c126c1b gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x784154a9 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x83d73fef __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x87e79da0 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x8de15bc7 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x9108e0da gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xc9f278df gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xd5f21be1 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xd8853d58 gameport_start_polling -EXPORT_SYMBOL drivers/input/input-polldev 0x118e29db input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x48115adc input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x811e0b05 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xcd9904fd input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xe85da8df devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x255270da matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0xd4a23ede ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xee460b25 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xf0f06357 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xa0d0ec39 cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x1805c7e4 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x2b0588fc sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x39237f63 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x3d64ea1e sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0xbbfc31e5 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xd1f31383 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x990b8458 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf55239e1 ad7879_probe -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x20e08675 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31827e14 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3a2d225b capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x66454fa5 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6e0c2850 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x991ceaac capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb5c77e82 capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbdb64af5 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc687948a capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf58ab3d3 capi20_release -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x02efca3b avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x11c23c62 b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2b500537 b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x32e84bad b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3a9079e4 b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4e525906 b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x63653f8a b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6caff2e2 avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x856a0399 b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9772efe0 b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbdc56185 b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc8ce5ea7 b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc9104896 b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd87a2a0c b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfb32dac3 b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x11df3f19 b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6740b6f5 b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6d278fe4 b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7d01a99a b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8be9e4a8 b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa4ccd74a b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc22d5e0f t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc8076023 b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xcb9fa977 b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x1b121e73 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x3ee57a5b mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x6e5b2c68 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb3ea33a5 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x741891a8 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xcdfa5ad2 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xddfe6684 hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x0ae9a015 isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x0f9f681c isac_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xba586ba0 isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xc768bbc3 isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xff00121d isacsx_irq -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x297c4881 register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x457a5112 isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xf4204d0e isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0083c46e get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a8cae6 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x056bf7f8 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x15d0ae35 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x20171455 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x23c88074 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2a45046f create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3a665d18 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3dd0f0e7 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x43e106c4 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6e79dde1 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7c13afd2 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x837fae87 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x899cc596 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a1534e8 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8eaf2379 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9783bd8b recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9a2443f5 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaa90a58e mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbadcea32 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbb36ef4b mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd27bf3e2 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfdb04d35 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x0c4d0956 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x74c1aac4 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc0b9ef00 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd26b6d5c closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0xde65fa4e closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe528a44d closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe67c2d16 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-log 0x7eb427a8 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xb6457a0f dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xb83bcdd4 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xbfe5bb2d dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x16296347 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x1c391418 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x402bd307 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x69f893e1 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x8f6fa34c dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd0ca4f55 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/raid456 0x6aceec48 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x025731cb flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0824bece flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0e9b6cac flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x256ec563 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x555f6ec0 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x59da7c11 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x65d1b371 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x81aabefc flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8976e039 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd1eb7589 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe49b168c flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe764710d flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf7e94c6d flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/cx2341x 0x0f2615a1 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcc8d87bd cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xce4bbe28 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xe2f27d6c cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x9b0f810c cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x463852dd tveeprom_read -EXPORT_SYMBOL drivers/media/common/tveeprom 0x75be339d tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x061176d5 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0e402b3f dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0eb106d4 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x167682b4 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x19591134 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1f842b7e dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2155224c dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x22d6ce4a dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x24a56cd6 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28ee2ae8 dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x30d56acf dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3c3894d8 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3c5a5269 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f7224d5 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d3b9a9c dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4f7c1e21 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x524ba3c5 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5a6167d3 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5ca7ed07 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x65886421 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6c1fb370 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78d62338 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7ba5d8bd dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82c82a39 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8419fc19 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e47dce5 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9d8b88d5 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ed83d68 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xae8963e2 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb506a15a dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb84528d2 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbcaa4b01 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc0515a19 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc5dedb3d dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd50032a2 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd9174756 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb576668 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfddf4670 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xac4da4a0 af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x8ccec2c5 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xd5f06a51 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0af07be3 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3b0bbde4 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6a56692b au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb0bf75a3 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb844c75a au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb9cb6356 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xce6d433f au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xda282415 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdd14f87b au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x34482fd9 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xe3a8596a bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x8481380c cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x16b0e6fd cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x4b18f4d0 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x1c347230 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x7db58786 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x0ab6aaf4 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xdafd488c cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x02fcbe4f cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x56b3c549 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x2508fc10 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x28b824dc cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xc2fb4e68 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xd0a97d70 cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x491f0073 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x505723b3 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7fa5f6b6 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc843eba2 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xde1e5edb dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0b2f1474 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x14ec2494 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1504a201 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2e7a1231 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3ebb02da dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x41901b82 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x65f00dce dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xae922434 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb7c9627a dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc0bd72c1 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd7b3bda3 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xddbcef0d dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe05a3a17 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe427c8d3 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe8290b09 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x52a8dc36 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0838bf89 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x22af8315 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5adf5029 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x713f5dab dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc0b13fae dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc1ad6793 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x01ea5ca3 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x42895816 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5494972a dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x98d92a12 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x103afc77 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xa558e9f2 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x417ed8fe dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x43552718 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x50d7b5b9 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc8c610fb dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf4f944d3 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x5eaa37b4 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x7cc40a26 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x024a72c7 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x090adb59 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x07bd7a08 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x6b302182 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xb45cebbc horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x256c9e07 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xf685528f isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xa29b8da3 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xacae888d itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xfff35954 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x17c24a07 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xd6084f2e lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x565e66a6 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x471068c3 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xbe23d2d0 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xaab60be5 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xe58f2fd8 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x74d3ac71 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xafa0d13a lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xf9bee56a lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x26941f7c m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xb5267a20 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x88e88853 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x66326093 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xce23fd0b mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x9bd98363 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x66648148 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xf2a01c75 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xbced7485 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x497eec40 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xc6da75a0 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x1421eab2 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x30bb599c s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x19bf4ee3 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x2f5577ac s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xbcb3791f s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x74be97de si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xa9e78422 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xea345e82 sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xb9819c43 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xec4aa30c stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xbf917069 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x71df794d stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x724ea0b6 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x791a111e stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x6cd86310 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x05d8b831 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x0681802b stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xc9aaad40 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x90f49315 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x90d65682 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x79cca7ae stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x175425b5 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xa288afd4 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x014958c2 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x82197dc3 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xb60cd5ab tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x711333c7 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xf9208dcf tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xe93b3850 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x9af90a58 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x0f1a0f10 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x01b12684 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x745beda8 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xf255f664 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xcfda3dfc ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xe8c4e084 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x6a80fb9e zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xad78bc8d zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0f1a304e flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x33ee8bc2 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x61900b21 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa154fe3a flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xae8bf065 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb4f08249 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe3a716e8 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x179bcd6c bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x339e5805 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5a81a451 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x842664d2 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x0c31d11a bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x6ca28768 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xb7643593 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x33c192b9 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3b451a30 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x45674a31 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x464397b9 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x55fd78e8 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x94d35370 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc20d1031 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfaf6fec1 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xff4597a4 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xd6b9ca79 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x06c7ed4d cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x12b702c3 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x629272e0 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x731d0224 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xfde62800 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xb320c789 altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5d83e516 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5db20712 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x62912359 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6e138238 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8fbab07e cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbf8edde8 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd578ca57 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x3d13ec10 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x51a33888 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1b5d9fa9 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6f9110a7 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7d79fe0a cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xdd948bf8 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x024f1e61 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3ab8571a cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x80827058 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8f1eaf1e cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc17f8605 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe4e06769 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe83d85f8 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x03b79587 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0a8178b8 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1848d6df cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x25aede79 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4d6a417e cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5dac62c3 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x72467c11 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7c132083 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x844452c9 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x87ddc63a cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x96c0b5fa cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaef0d418 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb3cfeeaf cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb8506753 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc53665d1 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcd1b1987 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd37d00ac cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd6e60f3a cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf8ed81ed cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfb466640 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1ec608d1 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2376007d ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3b49086b ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3d459583 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4905b775 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x498bde44 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4bcdc4e8 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x50f2edf0 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x53f6d526 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x58cad26c ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5a1109b1 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x995d9f4e ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa2230aa9 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbb78c49b ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc8800e75 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd8734673 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xde95b326 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x202d26d5 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x224dd389 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3312e7cf saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x494bf153 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x91c8dee6 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x97689060 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xad86a69b saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xae775f14 saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc4ed7de0 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcdf483ae saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe52990c6 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfa115801 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x62d0285c ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x55bc7992 videocodec_attach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x8a12dec1 videocodec_detach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x8cb256ed videocodec_unregister -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x997848e6 videocodec_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x25e7503f soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x2bf52c5a soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x2eb79833 soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x5896f279 soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x7e350341 soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb70c0401 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xee4b25c3 soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x57f03038 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x8249f40c snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x84aeeceb snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x8acf21c0 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb74f3d1e snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd4f00236 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0xec8b7892 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2c757d28 lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x38b5076e lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x6ab70c99 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc0830579 lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc1dc637e lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc8c5e97e lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe2bb46f7 lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xfaebb3cf lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/rc-core 0x3c7050d8 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0xea3d3123 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x33a77eb5 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x18e89c81 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x17e985cc fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xc3918a8e fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xd1d5fb21 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0x3b5e152f max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xd906b518 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x240667b0 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x1c4ed095 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xafd03940 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x31b7cb6f mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xd67f3a6a qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x01f34e1b tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xff1905b9 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x0c0107b2 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x87b3ad75 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x1681f213 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xf9e5bed3 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x060e36bf dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x12f127a0 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1686c76f dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x27d70378 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x626abbff dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x73530866 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x857d4ff7 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8ffcd2a1 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfe4647c6 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1acc5aae usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4126622d dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x67ca8e64 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6dc20786 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x719107aa dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7abdb929 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x95e3439a dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x069b4bb4 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x11af7c49 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1ed56f81 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x261e7f82 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2cff3409 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5fd0a2b8 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x67af9909 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x69663bf3 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7c26b016 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7f4f980f dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x81d96c7d dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa6679896 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xcbaf7982 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xe483b836 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x18327a65 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x21635c46 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3b327d36 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6722409b go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7791b89f go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb4bdf2e1 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc878191a go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xce4f5a47 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xea579649 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1f8f6b4f gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5e45ba6c gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5ea52793 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6fc81f67 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x97f1f140 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa739fd8e gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbdc6dcd7 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf483d077 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x1135ab64 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x4753d16c tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x7b4c9e90 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x0db152c0 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x2676530a ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8860c236 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xbb51647f v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc46382a9 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x18857844 videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x3f8b919e videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x6cc21e88 videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x80dae9c5 videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa3f4a868 videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xdb9d4d8d videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x3294e65d vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x4b6cb6b5 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x02d1547e vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x76531e9b vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x8ad9b312 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x9d4004c0 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xb078d689 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xeee4a1b8 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x215fb3ab vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0067446d __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x08739293 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0903b2fc __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09c85a41 v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a3830ce v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ff97277 v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10833eab __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1561d91c v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a82d521 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x213ae3bd v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d36ad37 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d8df4a0 v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e9c6e13 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30b0118a v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30e01cff v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31160da9 v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x312c6791 v4l2_of_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315bcb02 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3190080e v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ad11031 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x439a1273 v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x44374da1 v4l2_of_parse_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x473e4aa5 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a2eeb01 v4l2_of_free_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c03155b v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51cce9e5 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5442adf8 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a27fc1b v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ca4384f v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d5aaf6b v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60b34136 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6780415c v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6dd798f3 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6de392f9 v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7351ba2c v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75f3adc5 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f81ef81 v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x801e4e16 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8262dcbd v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8d48297e v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8dd2772d v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e790572 v4l2_of_put_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9cabfb41 v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa13951bb v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa46d8ca6 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa60e9228 v4l2_of_alloc_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa7fd163b v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa9419aa3 video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb82a069a v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc192df86 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc474d485 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7ff7987 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc94ef12e video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb675a6a v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcca06f7b v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce0b4246 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcebe811b video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3982fb7 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd482e9ef v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd77ac1e5 v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda0276a4 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc528081 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdcd67765 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf1dff09 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2586b7a __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe28f6275 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe88de812 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee6047ff v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xef1a8538 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1a5ea9d v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb9b1214 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe613ce1 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xff73aaa4 __video_register_device -EXPORT_SYMBOL drivers/memstick/core/memstick 0x0e8aaa0f memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x2f8b84fb memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x509705e0 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6bf23fc1 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8effed1a memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xaa593483 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc89ad5c2 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xcc81111e memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd4b074ba memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe4664d54 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xebae6bc9 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf1025e73 memstick_new_req -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x00e26c55 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x035b95f8 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0429d6f1 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1e051afc mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x28cfdc0e mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x30900ac0 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3f303023 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3f6e3422 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x40b794f6 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x43d3acc6 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5d0c02fa mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x679fd08e mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x67ac3f02 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6887dce3 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x713fe66f mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x780dbd22 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x78657f37 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x94e8056b mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9b3619e3 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9babb04b mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa262d4bc mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xba7daeb8 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc4ac4a96 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc699442c mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xca3f476f mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd6ebbf47 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdbefa500 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe204c5da mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeaf184ed mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x00b2cfca mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1070bf54 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x293c3948 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x33fa2ea6 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3c97623d mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3dd398db mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4443e8f1 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x543c40ec mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x67f7b753 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6ce533cf mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x854a338d mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa45b9178 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xab0b6e81 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb30094ab mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xba730f1e mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbf5686e4 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc1ad1590 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc8ead2ce mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcb68232e mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcb9bd56a mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcf571183 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcf9ff621 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd91e8baa mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe1dee262 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xea6c048c mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf612de38 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xffbe17ee mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/mfd/dln2 0x2f5e48b5 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0x686e8f07 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xcecc5de3 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x548d74d9 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xa55ae877 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x19d8ae4a mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x40345707 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5783e046 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x579f4fe9 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x731ddf5d mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x73b54829 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x74bab8a0 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7dae0f28 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8d6c20c4 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd71bcb19 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe17398f4 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x1c3a3bc5 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x42147979 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x0bf23736 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x8ccf45a3 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x9490351b wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xa6aa8e82 wm8994_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x6cf5fe44 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xdf1527ca ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x37cbc168 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x3b7b1ec6 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0xdc7e4cdf c2port_device_register -EXPORT_SYMBOL drivers/misc/ioc4 0x1c9466a8 ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0xe9ca73ec ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/tifm_core 0x23f84122 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x42f45dde tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x5f21f41e tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x5fea3ba8 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x9d63f483 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xa4783ad9 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xb36c139e tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xc43aa835 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xe4903d88 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xe5652fba tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xe6afaca6 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xf28aa237 tifm_free_adapter -EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xc4247d78 mmc_cleanup_queue -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4989d717 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5bb2408b cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x609b4cd8 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc27ebe8e cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd288f221 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xecb83459 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xefd0c0a0 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa5a7df62 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xba287ded do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xdac29e52 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xedea7f54 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x2e0fdd78 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x72ab3ae9 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xe20342be simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x3bcdcb42 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0xb1dee1f5 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/denali 0x86e735d3 denali_init -EXPORT_SYMBOL drivers/mtd/nand/denali 0xe0ed3c85 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/nand 0x13792863 nand_scan_ident -EXPORT_SYMBOL drivers/mtd/nand/nand 0x3fbe4c68 nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand 0x4fa9885b nand_unlock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x867ceaeb nand_scan_tail -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/nand 0xd9ca86ee nand_scan -EXPORT_SYMBOL drivers/mtd/nand/nand 0xeec3ffd9 nand_lock -EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x84a33e4e nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xa10f16ad nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xa431d14f nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x731f5175 nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xcc1c5bb3 nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x1495b888 flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x9789adfc onenand_scan_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xa7af6ab8 onenand_default_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xe96b92f9 onenand_addr -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1ba9cc9c arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x470d60fd arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x63fa125f arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x68f97864 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6c15fb30 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7069f782 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7ca218d6 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x94eae941 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9e695d7d arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdd70d7d4 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x1829237f com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xcde2ee79 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xcf0db72a com20020_check -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1b8779b4 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4ce3f5b0 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5d15952a ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x67d62e08 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6a04791f ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x74733028 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb01cfe93 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb97d6a2b ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe6a292ec NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf6dd79cd ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x0e827bbe bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xa2cc8647 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x02b398e1 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x02d5d7c6 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1ab6b553 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2a368c6c cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x41ac401f cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x68a54d5d cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7914f09c dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7f30a8ea cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9402fee9 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9ae4a9d3 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc183a71b cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xccfc118c t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe13abd6e t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xed3a473d cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf7ba3f66 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfafe2bc0 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0518c944 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c43a498 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x21f7edba cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x259c6973 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x262ed93f cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x29ce4dbc cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x303b7dbf cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b2ec69e cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b880136 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x448f4d31 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47279879 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d8992cc cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x538c309a cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x757509fe cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75fb6243 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x774d1662 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7cec4f09 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x807f9a2e cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x87778583 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8b77e54b cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa46621db cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa5be256c cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa7687039 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8e91f65 cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xac68af2f cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbfdc219a cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcb4a313f cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd45f3e80 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda8deaac cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe037e155 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe6085f5d cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf2b39704 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf53cfb95 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf9649b6b cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x05fa1a36 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x70f6b463 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8d32d390 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xaeaa4382 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbe0a83db vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe14f83d0 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x28a07655 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xe22c7ad6 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/gianfar_driver 0x79f28897 gfar_phc_index -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02036284 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0800f796 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09b6c5e3 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bc17a55 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2efc204b get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x313cf0a0 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34720578 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3798a0b6 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bdc8c52 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x403beeea mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x494e9665 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54e083cb mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x571676b3 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59cc2523 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e8163c7 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6804d274 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x757849cb mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x757f5325 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ac338d2 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89bf168a mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89ec936f set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b2a9597 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92266727 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96748806 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4b28a1e mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacbecc02 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf573e72 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5dca144 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3359b6c mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6bc56e2 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd4f18c4 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdf3003c mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce37e25b mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2c2be0d mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3c73703 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4afd874 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8b21e11 mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1ac2760 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08852ee8 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x095acbb8 mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14ac7a90 mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16531739 mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1971c057 mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2414b482 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c5bb085 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cbdf461 mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e13c37b mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a036cda mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d40e8c8 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d92ae4e mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x501e791c mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52c546d5 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5546b529 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e3d3c05 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66b7d260 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b16f319 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6be39111 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fbca29a mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x741b5f36 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74851dcd mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74a39198 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7540fb0f mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76af8232 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82b4111e mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa254372e mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf2924ab mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb07de901 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0a9a7f4 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb189de53 mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1b9da03 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6368984 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8cb1b37 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8d31f57 mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6f6355a mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3d0cebd mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffecdf2a mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2b3c56b0 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x355cdbf6 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3787d88f mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5b37b26e mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x798defa3 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f262344 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf8d81f32 mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xafb260d7 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1e0fde04 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x63307473 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x753cedd3 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xbdff3775 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc5f44da4 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x16951d82 sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4f6f2616 irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5597c701 sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x56a0b211 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x77507c06 sirdev_raw_read -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x829d74dd sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8a0f9c20 sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x91000f29 irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x933c5418 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf1761997 sirdev_write_complete -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x158ad9d7 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x5ab1471f mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x668d2b46 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x8a682862 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x92550115 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0xb491bb2c generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0xca653e67 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0xece8608d mii_nway_restart -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x2eb6e668 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xc14b18b0 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x0d5bdc2d xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x6186fa7c xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x9427be37 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/vitesse 0x96b3430d vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x624b131c register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x6faf38d1 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x9420f58d pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x7167632d sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x43509f6e team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x5773f1a1 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x5b94fe39 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x630facdd team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xa689c666 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xc7ab029e team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xd03fb1de team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xed2f61d0 team_options_change_check -EXPORT_SYMBOL drivers/net/usb/usbnet 0x4e43740f usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x57ad8674 cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/usb/usbnet 0x93c3c333 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xe2135bfe usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x13a4d21e unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x19036203 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1b65f1fe unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1cbe73c1 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x642aa421 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x65f6e0a7 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x79520954 hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0x94d25cd7 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb7559df2 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xbda48ddd hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xcbce2be9 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x490e7780 i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/airo 0x497a1979 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0x80570828 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xae9e0788 init_airo_card -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2edba0db ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x68ba5608 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x793ec832 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x86df368c ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x86e11aed ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9cdf5d1d ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa17d146b ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa3e01193 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xca30caa6 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd616f40f ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf5a60f8a ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfbfc400f ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0899f5b1 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x18ddf079 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1a919c6c ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4f50c933 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x51bbedc0 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5487ff54 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7db22de0 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x801d7651 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8c9270d4 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x900f6372 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9a0c50fd ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaa278e1b ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xab7d2e2a ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xba137bed ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd21c9c83 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x093844eb ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1ffb50e4 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x50ef525f ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7912007c ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x86fee20a ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x889cfd63 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd10d8c93 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd28d087e ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe7040df4 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe9eeb86e ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xebeb1c81 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x00a2a501 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x021b1d66 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x05490dcb ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0734d945 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x129ea30e ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1accb95b ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x39b62d78 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x43efce05 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x46562fbc ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x60a08191 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x61895c2d ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6383c9bc ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7b46ca64 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x99be2775 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9cd80327 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xab330b96 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb0b0609b ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc8123890 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcb4ad571 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd7f6f91e ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xde7dfe87 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xec00dfe6 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfb112c57 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01212a41 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01f7dad2 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04db530b ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06c86a44 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08b6d427 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a59d0cb ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0abca2a3 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c1cbb9b ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d9aac75 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12570831 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1710e1ec ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b615dbd ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1dbd67fc ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f18fe03 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f256783 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f8e9384 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22e07545 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22fdbaed ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25f3a307 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28d12716 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29142b23 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x297f4d98 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29f55541 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2db0bbb4 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31522566 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3378ecd9 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x373c0043 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3892dfb0 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x408f493c ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41850e44 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48d2a7bb ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x498c063c ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49b9fb3e ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bf36f36 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4dc5844d ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e0d9098 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5460080f ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54e4cc19 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55018636 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5562273e ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56f8457d ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x586f0ac7 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5de189e9 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e8692ed ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64843f35 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x668bf504 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67511640 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d899ecf ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f330e30 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71f7ec74 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78862066 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7af2e4e1 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7cc68be6 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81832845 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8430c1d9 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x853ab092 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8795a6ab ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88fdbaf3 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ab2ad73 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8bfa2b10 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8de3748a ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92264952 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94d4c796 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x958d73d9 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96313918 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9639a188 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9773949f ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9944607f ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a4ab14c ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a95dc62 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9abd1917 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c56e242 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d51d5d3 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa32c6466 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6ea4a66 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8fedc7f ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa90d6286 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad8556e0 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad8ee484 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf3762b9 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5f7ab5d ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc114c6a3 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2246162 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3b45f0f ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5db45a8 ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5dd6a53 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9dd343c ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1f4cf1a ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2d96dea ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd396f044 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd422e630 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6ae933d ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6f8df47 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda4f5015 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xddf8fd59 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe45cc6dc ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe55d05e5 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea6f0b9c ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed5c6526 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0803b77 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf75e24b5 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8b93cdf ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbc2fb39 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfcb6eacb ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfcb8a782 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x0250faad init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0x68837a92 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel 0xb5778b76 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x122ef041 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1ea5916a brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x49986748 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x66459afc brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8c18c116 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x940feaa3 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xad0adda5 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xae00d95b brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xbbb67be5 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc58670a3 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc9191102 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe3313f09 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe657be66 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x08446ad7 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x13426923 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x195ee120 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1b044fb0 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2963a70d hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3038eed6 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x39d9401b hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3d483363 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3f11f2fc hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4f9b7b7d hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6fd8f81e hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8177a719 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8ea0ca8f hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x92b33b0b hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9bdb984d hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9e101bed hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa31ca9f8 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xabd2bfb2 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb0fc89e6 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc9764191 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcfb0f76d hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd2c6e2ef hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdcef322d hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe473d6f9 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf85cdc29 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0e00aaaa libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2060e4b3 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2a0f8228 free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2e105a64 libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3a236e20 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3ef3c183 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4eb7e89c libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4f445efb libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5c2cc35f libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x65f18578 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7041b11b libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x71d847c0 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x932b2d0a libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa463fc7b libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc6a11bb1 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc8dffea6 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd8de588f libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xdb1dfeda libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xdc8e6b7d libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe9c3a45c libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf59b6be2 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x02368fc8 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x050b90b3 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0645125b il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06b6c073 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06ed07dc il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0ea0c549 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1014bb83 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x11135af8 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1519fd83 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x151e4168 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x182bd363 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1a94644b il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1ba08397 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1f93adad il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2079dc0e il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x236e2e15 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2453547f il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x260ad634 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2917a317 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2f4850c8 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x302b6c48 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x34a0ce3c il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x35ad0f33 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x36b662f0 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3c85d04c il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d741e90 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d896d49 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x433867ed il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x45ade93f il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x46584e6b il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4c188c09 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4cc96eb2 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4d941a95 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x501fabf9 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x50e3d2f9 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x52b71744 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x52c388f3 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x54996d29 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x549f571f il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x56c9b518 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5741714e il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x595f341e il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5b1b748c il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5ec1bc23 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5f1e2269 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5ffd9f3f il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x66f7c93d il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6a29bdcd il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6c0bce74 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6c330dee il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6f0f1395 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x73519667 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7433d145 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x76a3e1ab il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x78549e75 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x79333343 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7b1a1360 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8e8c4315 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x93814143 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x962e94a1 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x98e8af73 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9b8f6d2c il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9f0cea73 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa016a673 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa0b4f93d il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3479140 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa4ce97c3 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa7dc4cdb il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb2aee983 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb509b89d il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb72ca744 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbdc52dca il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc0377177 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc10a5473 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc11f0015 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc1c70020 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc3832a56 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc51b0489 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc60b125c il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc8991ba9 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xce057909 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd1e73acb il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd316e36c il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdb744d6a il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2312c71 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe3f32ed1 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe84b064e il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe8a1bebe il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xedd8b002 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xef0a40bb il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf2785418 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf6faf579 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf7dd1f54 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf7f7f0a4 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf8bd8fef il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfadb2423 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfba03580 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfc93b0b4 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x08c6664d __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x4379786d __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x95a8ab3c __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xa2b6ec39 __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xb69add1f __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xcd60e86e __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xd4f50457 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0f850c07 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x188f05e8 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3d342370 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3d5f012f orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x420aa2ad orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5ef78a87 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5f182255 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6421e312 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8944532f alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xab6bedb9 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb7b0d075 orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbef25f29 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbfb567ee orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc10039f2 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd6a6d299 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd95ed0b0 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x121405ed rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x05d37170 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x11e23894 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1e0f36c7 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2e4c73b1 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x313fdd10 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a852557 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43783888 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43d1bbfd rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x48ab3424 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a5ad61d _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x65882f42 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x67ae3aab _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6fa623e4 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70b12ecd _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x78dcdd03 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fe8852d rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x961c573d rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x971f37dd rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99b0fdb1 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9fd0c735 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa3b3858c rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa48c3379 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad802262 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xade2660b rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb1985b46 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb68d73f4 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc66f84f4 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc6858784 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc7db08b1 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc8949630 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcd912cac rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcfede1a8 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7866042 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd82ff1e3 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdb311ad4 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdc0f8c74 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe3dfe811 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe65b439b rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf64fd289 _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf81bc59f rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf9f9ea1d _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x1d93d1fd rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x27705db2 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3906d4ae rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x859a5299 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x25121a54 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x56c7bf44 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa885a1b8 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xaebf4011 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x01122309 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0396e5b6 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b231c5a rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x11f05c18 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a32430f rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2c62d9f8 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x354089da rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x39a4f879 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x517b6f1e rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7df16e1c rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b3f1826 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92a41006 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97b27be5 rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9e2e33dc rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa2fd5296 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb01b0ca3 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc22670b7 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc96fe628 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9b3047d rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce2b327d rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda1339ce efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7e6b3a6 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeba178a7 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebc318e2 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeedd5e1a rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf646af00 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7538618 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfb7b3ab2 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x33afd568 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4749c3ce wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x77dff5e1 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x9c68e55c wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x32cff37b fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x3aa19369 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xf529bf00 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x6cadef20 microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x9a183a0a microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x56edfab8 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xba1ed8fd nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xba8422c7 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x5d671975 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xafa6f760 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7836576a s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xbf5cfbc8 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xd09f711f s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x015c01e9 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x18b4dbba ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x33d6f591 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x45272e26 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5d3ef77b ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x617ad4ed ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa443216d st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbc8b6377 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xde52c73f st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe4a5d805 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfd99c276 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x01b053c1 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x03018d20 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x21a11fbc st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2ccd721d st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x40b7db2f st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4b4a4dcf st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4b4b8e31 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4c83fa23 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x56ffe7c5 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5728ad40 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6e329b3f st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa923b9f8 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc4838533 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdb999b87 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xde983e25 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe6b3ea8b st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe7dedb10 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf8334752 st21nfca_dep_init -EXPORT_SYMBOL drivers/ntb/ntb 0x5d9cb5f2 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x6bd5430f ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x8d306dcd __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x93e1b785 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0xa159112b ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xbd72f9ef ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xe6efd7ca ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xfd9662c5 ntb_clear_ctx -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x0b87db27 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x9a3a4047 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x2306a345 devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x00c481e1 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x02a2edc5 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x1c358ac5 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x24731060 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x27e9233f parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x357e3cef parport_release -EXPORT_SYMBOL drivers/parport/parport 0x37d099f1 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x3bda7c89 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x3be841a8 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x3ce4a013 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x3f01c5c8 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x471aef3d parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x47920434 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5430e09a parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5e7bf9e7 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x67394841 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x6d3c9daf parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x77d32668 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x95f63644 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xb552ee05 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xb5dc90e0 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xb9523d71 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xba0d2218 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xc1b30eb0 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xc2d33029 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xd02d0bf1 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xd7030387 parport_write -EXPORT_SYMBOL drivers/parport/parport 0xd95be847 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xe61bac7c parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xe710b002 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xf2df8830 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0xfc5d3792 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x1009795b parport_pc_probe_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x6e1212f4 parport_pc_unregister_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x00d2a873 __pcmcia_request_exclusive_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x097b19f5 pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0c4e9388 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0f8653bf pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1c239710 pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x22b40b2e pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x389b59f6 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3b6376d3 pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5ec39ffb pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x93c73d1a pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa81b9ff6 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbe20c7e9 pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc4345d61 pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc6ee9745 pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcc0fc320 pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcd7bd6d0 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xed8666fe pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf2e8d1b2 pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf66c0171 pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0aa30e03 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x11a7e31c pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x12418c3d pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4fd2b0f5 pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5e3289ad pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x62bb5d76 pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x76b9194f pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7ea02904 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf20abe2 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xdb1a138a pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xdd24126e pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x9885a92a pccard_static_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xe346441d pccard_nonstatic_ops -EXPORT_SYMBOL drivers/pps/pps_core 0x90b564ca pps_unregister_source -EXPORT_SYMBOL drivers/pps/pps_core 0x9881831b pps_event -EXPORT_SYMBOL drivers/pps/pps_core 0x9ba4b42d pps_register_source -EXPORT_SYMBOL drivers/pps/pps_core 0xa48c5cd8 pps_lookup_dev -EXPORT_SYMBOL drivers/ptp/ptp 0x5603b39e ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0x97444523 ptp_clock_event -EXPORT_SYMBOL drivers/ptp/ptp 0xbd2a2eda ptp_clock_unregister -EXPORT_SYMBOL drivers/ptp/ptp 0xdb3654ab ptp_clock_index -EXPORT_SYMBOL drivers/ptp/ptp 0xe32de71d ptp_clock_register -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x22b8483d rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x24040c7b rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3d6c2367 rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3f834fd1 rproc_alloc -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4ef3817f rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x79e19c5f rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x9a459eaf rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x9fea05d8 rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xab4ab69e rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfacfdce1 rproc_add -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x62865707 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x45024b2f scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7bd3fcc1 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb299a13d scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xdc98dd38 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x20394c65 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x21be21e5 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x612bc140 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6bcf702b fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6dade120 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6f81beaf fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x89d9acc2 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x93c57795 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9ea73318 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xac3f4991 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc430d724 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xef0018ad fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x006c13ea fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x062397f4 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c2192bd fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c5cff8b fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x21e94d58 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x240d5091 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x278694d1 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ab35d03 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x363ccc4f fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3cd0ce75 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5159b40b fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x536c938d fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5390438d fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x62dc1cbf fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66d7f020 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ae3313 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a225689 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aac9ed2 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6eb8e582 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6f2b4c39 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7472bdc1 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a7aea69 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87d41ebd fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f1a17b1 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f4c4b5c fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x91defada libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9acdbe04 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa3abf50b fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb051d8a3 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb318db48 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3df11e1 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9fe0038 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xba3a71b4 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0c54715 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9f41c07 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcdf1f637 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd53de3db fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdc42ecf2 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe18e90f9 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2181378 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe673c9ca fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeada3c67 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed44b3aa fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xee3c5916 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf383011c fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf4cdae57 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb9c6582 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1cc3c03c sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3ee4228a sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4d0d2e50 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xff513e88 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x5377189f mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x040da55e osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0dc69e1d osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x181d1ef7 osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1e603a2c osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1ecce528 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2ed76d8d osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3e369351 osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x40349bd5 osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4165da0b osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x528f386b osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5e3ecd7c osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5f72ee88 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x614caee0 osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x62fb1b01 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x67098934 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x742433c4 osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x795123e4 osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7ad6aa4a osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7d52b8ac osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x89abb940 osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x89c4bc11 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8a730af2 osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x916bfda8 osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9222dce2 osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9c2415b1 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9ec07d10 osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa4a37fb1 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb7e7204e osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb91aae29 osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcfb8bf03 osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd0937ef2 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd8061716 osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xda394943 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe2983713 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeaa48021 osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf1027f6a osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/osd 0x3503fb70 osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0x48e3f65e osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x6221f53b osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0x62b46de1 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x6c5cba65 osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xfb88f9f1 osduld_device_same -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x13cb5cb7 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1a9899b9 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x498aa6b0 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6d443b25 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x758b8f59 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x80e7119d qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x91efda27 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9f181d05 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb59f33e7 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd8f9ca3a qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdf6d8957 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe30b08cb qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x28a49f75 qlogicfas408_bus_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x352ef9fe qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x45df6384 qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x88f1f6c2 qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa8a3e1c8 qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xefd42b9a qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/raid_class 0x3f22c620 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0x8a52b60a raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0x91e65592 raid_component_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0554f622 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1b23f81d fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x29ac04a5 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2d2a8736 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3b5b5b20 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x49253d5f fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5d3d6b1d fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8227abb3 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8e2c83c3 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8e95cb18 scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9aebc0b0 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd865945c fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xefb8ceff fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x00465a76 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x08edc76d sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x09feba7d sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x17fc28f1 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1e4959aa sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1ef707ed sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2ac78a4d scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3065cc50 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3437294b sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x44b6c5be sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c9c28d6 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x686ce3a2 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6a6e6983 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7019337a sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7334628b scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7cc438a8 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x82ea4c25 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa19aabac sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa24a9a19 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb0a655ed sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbebad380 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcc3031c0 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd14b5d63 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdefa54d8 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe451c329 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe85d97be sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xef51af03 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfdb6ba28 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x21e537e6 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x395cca31 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x863aee7d spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8f518c76 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc8144fb2 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x38eba87f srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5e692d81 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x60880684 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x8271c5be srp_rport_put -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x00b4ddf7 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x18d28e1f ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x45bfb28e ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x5c433dba ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xc6c8ac21 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xe765a41b ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xefb4a511 ufshcd_runtime_idle -EXPORT_SYMBOL drivers/ssb/ssb 0x0f5b6ecd ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x1902c905 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x1d1ab231 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x26192a8f ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x261bf95f ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x34d453c2 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x35e2d028 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x3eb79988 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x5d264647 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x71e61636 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x774854ac ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x81092a5c __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x857ad0e3 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x9017ab3f ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xc0b4e5ad ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xc1413bdc ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xd45a4497 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xd943a123 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xf5d96c82 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xfa6b177f ssb_bus_unregister -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x06d679b9 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0efaf89d fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x29e89318 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2ea43f48 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3a1f8ebb fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3a8ce2ac fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4e5eb109 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x61446bcc fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6f1f5802 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x75b29de9 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x87cd8be7 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x90efd434 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x917c55da fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x97fab10d fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa478dbc7 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb9e5cf1c fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbf17a6ef fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc4d5c6c6 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcc2d03b8 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xda5aceda fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe310659c fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf876ab57 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf9558abe fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfbfe16b9 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x9fb1c51c fwtty_port_put -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xc3dc603a fwtty_port_get -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x05178d4e adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x10519f10 hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x92702bcf hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x9afd6709 hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xa0992248 hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x2be32dcc ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x7376f007 ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xe3a653be cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x0d1ee70c most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x045b497c rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06406f5c rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f9697e1 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1261123b rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b7fa579 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1db15f8b rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2129e907 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d0dd4e5 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2df7f237 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f2b4dc1 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x35c82be6 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x376c796e alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a968abb rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x40bb38d5 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x46874a1c rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47c58dfa rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4c47f9b8 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4f44965d rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4f712d38 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a09a3cb notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6e65e890 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x71f9ca01 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80eb5daf rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x90f447c4 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x92f94616 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x946e54a4 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ef980f0 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa46c0d21 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa6a7d120 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa812a32e rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa88bf16c rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xae450b9e rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb17f2ae2 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd057639 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc14eb048 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc1bc4f7a rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3b359ef Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc531a153 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc531f0df rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc6c5da94 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc2de8c2 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce6fe033 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf5cf72d HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xda8ef8f8 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb589da2 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdc113a5d rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed5f5820 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf5731e09 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf6cf3898 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf9567db0 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0132c86e ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e15ab63 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ccab106 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1cebef1d ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d62cf7a ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26a3cdb4 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2ef0b659 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x396eaf70 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a2dac2a DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x547dbfda Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5754c768 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57f1f38a ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x58bbc2fd ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5d17b234 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5d1f2a3b ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61072961 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x628d0cab ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66cdb024 Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70dcd2af ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71cfed7e ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71f274fe ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x772b825d ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ad3ceec ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x815c4071 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8a883d43 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8c3900e1 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e796838 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ec079e4 IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9194846e ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x964b7094 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x965209ba DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9e5a255f ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9e5df5e1 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa00a323e ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa550e4e0 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8286ff2 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa9d85484 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1a2c6e8 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7b7cc32 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc196195c ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7be7db6 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcbb05d90 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcdbe5fc1 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5739d9f ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdf8e6869 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdff95fe0 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1821949 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe30c0b30 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe4fd7374 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6ed857c ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeda9bc50 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf1a16561 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf2d6686f Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08cb4604 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0e73c324 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x124affff iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x13152ae8 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x16de784b iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2b6dded3 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6eaa660e iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6f3e44ff iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x70ab14b8 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x72f43855 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x78290038 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x82ce4c3f iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x85d1f40d iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x87a54b10 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9042c26e iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x92714e49 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e4d5f16 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e95a275 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xabfd69a6 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb724ca7e iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbd98d948 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe51b47f iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbfa755f8 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda0ff029 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd273a5e iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5be290e iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf10fa9f3 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfd508915 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x03fd9acb sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x05eadb94 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x0645fbad core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x09f0fbf1 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x0ddefe1b transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x16f77646 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x188fcc2a target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x1b190e0b target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x27a035a4 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x298cfbf6 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x2a248d8d core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x2a6760b7 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x2a894dce __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x2b26fe7f sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x2cec21cf transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x3228d92f transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x3678e026 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x48b2d15f transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x4bb6bf66 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c091a04 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c226da1 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d92fa46 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x52b8e9c2 target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x579a619f transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x58357034 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x5a924cf2 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x5dfd96b4 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x610243b5 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x6554f12d transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x6a2266f0 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x6a8686c4 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6faa1c49 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x70cd5c9f target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x76d9684c target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x7b03432f sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c4e6b0c core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x83acbdcd transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x8601c5c5 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x88713d0a transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8a8a5370 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x954f1a19 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x9c6f6591 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xa6f9e326 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa7313a88 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xaa4f3f09 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xb7d6a9c3 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xbac1d91a target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc59c4f8 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xbe0abe2b target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xc1e8e796 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xc40576f1 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc6b86bd6 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xc99e4de1 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xd7b15977 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xdbac71c5 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xdbd12cb7 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc22e20d target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xdd02f938 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xddeeb1e0 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xeb728a0a target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xeb791d76 transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xec427d71 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xee2735ae spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xefb67c61 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf22d7e16 target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf28e2cb8 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xf951f93c target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd1ede87 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd414385 target_to_linux_sector -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x29c45ebb usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x5c5c79c3 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x3f82dd90 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x00547d7d usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0ed37a7d usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x18b619df usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x21038859 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4fcf50b4 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x675fbd00 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x679bb517 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6dc30f4f usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7da7d448 usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa58a5266 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xab30937a usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbf711a44 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x3934ac32 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xd4d9ddd9 usb_serial_resume -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0x29782251 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x30e59f84 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x6e482461 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x8c0b8b09 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0300c05c svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0d309787 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2a83460f svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x392c5647 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x73015f3f svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x86674e62 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xeadb2c14 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xd054331b cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xa7f178f3 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xae766e4f g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xfce3bcd8 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x25755fea matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x82d9f961 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x8a35a6f2 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb2b357e2 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x0c995c37 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x5cc2e015 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x516d6829 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x59538e59 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8efea152 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xcec847a0 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x85515dc1 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xe59a0f4f matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2aea214e matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x46730dac matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5f518be6 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x77305397 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7ef76eb8 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xb4fc2447 mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virt/fsl_hypervisor 0x45fd1882 fsl_hv_failover_unregister -EXPORT_SYMBOL drivers/virt/fsl_hypervisor 0x77c9b191 fsl_hv_failover_register -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x689e2907 w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xd29068a3 w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xe869c843 w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xf02beb9e w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa4f29d87 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xf9d7910b w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x975cb5dc w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xab49b60a w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x31a5b49c w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x499a0bea w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x68747c43 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x7e27af05 w1_unregister_family -EXPORT_SYMBOL fs/configfs/configfs 0x23fc71d6 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x26a473c5 configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x2aa50095 config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0x2eed866d config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0x3e10ace9 configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0x483adab2 configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0x84f22962 configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x9cbee106 configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xb2bbacb3 config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0xb357e5df config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xb61e8cc1 config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0xc16883ce config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0xcd3c00b3 configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0xdd1be9fb configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0xf6a61a62 config_group_init_type_name -EXPORT_SYMBOL fs/exofs/libore 0x0ac9dcb9 ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0x0ff45f22 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x54a84128 ore_remove -EXPORT_SYMBOL fs/exofs/libore 0x54f4e147 ore_read -EXPORT_SYMBOL fs/exofs/libore 0x63be6c15 extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x6b4d91ab ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0x7634bbd2 ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xb969c2d0 ore_write -EXPORT_SYMBOL fs/exofs/libore 0xb99ae700 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0xf1a03be8 ore_create -EXPORT_SYMBOL fs/fscache/fscache 0x0066fd4d __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x0160db7b __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x031776bf fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x04c3471a __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x13d10030 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x181b52b0 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x1f56563e __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x1fe28088 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x21750a1c fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x2a40e68b __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x382869ff __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x384f9df3 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x3eb28dc8 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x4317780c __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x45ef785e __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x5ac3f0eb fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x5d79ceaa fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x60f046f5 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x66279c99 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x6b0e39bb __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x86025962 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x94159976 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x966bad02 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x986b72c6 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x9fcaae80 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0xa57aadd4 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0xa89cf96b __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xaa4930cd __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xad7d81b4 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xbbfffaf3 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0xbe21bc09 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xbe7b66bf fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0xc9f89bee fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0xcd193659 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xd17d943c fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xdb3ebb54 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xdf5da795 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xf1d2edf2 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xf8593b23 fscache_enqueue_operation -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x6ca6824b qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x849b2e11 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xc80b119a qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xd0160401 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xe119d31c qtree_delete_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t -EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create -EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put -EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x6bc0c010 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed -EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set -EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get -EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del -EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of -EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find -EXPORT_SYMBOL lib/lru_cache 0xfb2700b5 lc_seq_dump_details -EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0x7456cc61 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x39777fe3 lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0x3f53004e lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x642d2612 lowpan_nhc_add -EXPORT_SYMBOL net/802/p8022 0x736d6edb unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xfe20bdd7 register_8022_client -EXPORT_SYMBOL net/802/p8023 0x4fe9c7cd destroy_8023_client -EXPORT_SYMBOL net/802/p8023 0xd89d83ee make_8023_client -EXPORT_SYMBOL net/802/psnap 0x73a527f1 unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0x7face786 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x041aacb5 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x0c86f4e8 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x0f630f6f p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x10477b72 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x1d8fac91 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x1ea7a3e4 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x300a140d p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x364daeac p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x37a3a9a6 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x3c18ab00 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3dc26c12 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x4902fc63 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x4f653a74 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x54f6db9d p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x5727ada6 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x6269d86b p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x7513bf25 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x782509d8 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x8541c015 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8a71f2a8 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x8b824974 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x92b6733f v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x9d559cca p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0xa0af5f64 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xa231ba56 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xa32043e9 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xa5a13a2c p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0xa8a469be p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0xaa802306 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xb63ba171 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xb7408d27 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xb7517a4d p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xb8d693f2 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xc966bae4 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xcfed26a6 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xdbe9b514 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xde8a8362 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xe16e15cd v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xe2c6ad11 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xe50feb75 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf4b2ca62 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/appletalk/appletalk 0x150b4562 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x3a66197f atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x478abdf3 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x53a5937f atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x07866086 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x0805bd2b atm_charge -EXPORT_SYMBOL net/atm/atm 0x09376a6e atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x3021aa5d atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x47e75a0c atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x6ad29de2 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x79b9de56 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa03c0e61 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb0fcc1ef register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xd2e0b143 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0xe7ec4729 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xee01cfae atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xffb2f36c atm_dev_release_vccs -EXPORT_SYMBOL net/ax25/ax25 0x1793ef14 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x1c8c1c85 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x2cd29666 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x3db4827b ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x485474fc ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x8d9dddcf ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x922a6a9e ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xcf2128d2 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/bluetooth/bluetooth 0x031e57b7 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ce273a3 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x10da7a0a bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x13a38821 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x14d17ab8 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x17875f8b hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x19148060 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1aa049ad __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b237d2a hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x251f422e l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x27195e70 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x28ba7936 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x33180daf bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x37946068 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ed555de l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4980e22e hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5083088a bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x640266fa l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x654d5202 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6c529797 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x782a0f8e __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e565c07 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8cf7fc39 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9a4d7696 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9fb619de hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa320cb0c hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa97e198c bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0fa18b3 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5ef873c bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb64535e2 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb6d30de8 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb87522b6 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb879f4e9 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9c44f87 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0980462 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe53bb8b7 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe733466d bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf37f7940 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3a9fc71 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf6f49454 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf84e33c5 hci_reset_dev -EXPORT_SYMBOL net/bridge/bridge 0xcac1f073 br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x47fc831b ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x99bf185b ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb3643fe8 ebt_unregister_table -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x4ae1f426 caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x6ef613e5 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xc09aa018 get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0xcca00bf0 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0xe6902114 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/can/can 0x11e24dfa can_send -EXPORT_SYMBOL net/can/can 0x332d2798 can_rx_register -EXPORT_SYMBOL net/can/can 0x5b62d413 can_proto_register -EXPORT_SYMBOL net/can/can 0x679af3b5 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x99bd34f3 can_rx_unregister -EXPORT_SYMBOL net/can/can 0xf8fa9523 can_ioctl -EXPORT_SYMBOL net/ceph/libceph 0x003825b4 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x0060d326 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x04d3e62b osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0986ce28 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x0d650c9a ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x0de22968 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x0e0568d5 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x0ea8201d ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x11d98dcc ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x1457ed0c ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x1804b512 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x22a1453a ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x2607edc4 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0x267012fa ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x274ffeca osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x29fb9e20 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x2b42f3bc ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x2bd05cff ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x2ffed2c8 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x30943b7c ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0x34b02a57 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x35747337 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x35aaff22 ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x37667c0d ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0x3982d5c3 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x4288e87e __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x443d1ad9 ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x473e4281 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x47c8bc3c ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x48828f41 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x4b4b133f ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x4cb22346 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x4dbc2f0d osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x4eb95aa4 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x4fa01847 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x52472deb ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x555d4172 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5859e645 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x6190ee61 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6c9b9702 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x6fcc8f83 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x70d3f5c7 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x7334d767 ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0x73c99463 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x7435fdea ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x7b423214 ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0x7bc534e6 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x7eb090d2 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x7ee05dc1 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x7f8851ba osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x810b7ddd ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x843e6669 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x85de1797 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x8817bc69 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0x8918d714 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x8fb42608 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x8ffec8f2 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x951cfa44 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa0955e30 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0xa1739b30 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xa33f0295 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xa3996e6e ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0xa3b737c6 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xa852e9b0 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xab716f75 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xaed5ed86 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0xafae9229 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xafedec04 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xb00a14a7 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xb954cfc7 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xbfed8cf9 ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xca7b09d1 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xd0a3a308 ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0xe5559619 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0xe67cc870 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xe7d2e3e9 osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0xe90fefeb osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0xebeb792a ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0xf2a31efe osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0xfde1692d ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xff72efe4 ceph_messenger_init -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x7316a6b8 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xadbe873a dccp_req_err -EXPORT_SYMBOL net/ieee802154/ieee802154 0x018a2030 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x671367ca wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x7a813dce wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x955e4a17 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xf011e33d wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xf32785f2 wpan_phy_unregister -EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x820eb6b7 gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xd6534d1a fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0baf5a8d ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa9c2b633 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xbc3e60e3 ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xbd67d1bd ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc3fbc48f ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xfbee5c35 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3bac3ec5 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x735d5e74 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7ae96cb7 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x01312b4f ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x59d1fba4 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd41f86cf ipt_unregister_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x19700b2e xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xc044cb7c xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x5151dd57 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0ccbdb26 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x570a4c03 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa3e45097 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe4c0ce5a ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9456701c ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xde266906 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xfab752e8 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x1137400d xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xdbbdf716 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x33b90449 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x9871ad3d xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x100e4cae ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5902708e ircomm_data_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6bbd1fd1 ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x82b7cce3 ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x885fbc88 ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8b51beef ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xdc7bb183 ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xfc7f3055 ircomm_connect_request -EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x0a50cbfb irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x158778e1 iriap_close -EXPORT_SYMBOL net/irda/irda 0x163f004b irda_notify_init -EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0x24dd4726 irttp_data_request -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x3b9545c1 irttp_dup -EXPORT_SYMBOL net/irda/irda 0x3e396025 iriap_open -EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new -EXPORT_SYMBOL net/irda/irda 0x3eed5cf5 irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x52b5a1fc irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x5dc5a36d irlap_open -EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove -EXPORT_SYMBOL net/irda/irda 0x62d267c9 irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x640ed173 irlap_close -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x788e1621 irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x8e696fed alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0x8f98857d irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x988de71e irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0xa131bbab irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object -EXPORT_SYMBOL net/irda/irda 0xb23f056b iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0xb3991d44 irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xba99c5fd irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xc5beb62b irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0xc8221666 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0xcc536918 irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0xcea8806f irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find -EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert -EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma -EXPORT_SYMBOL net/irda/irda 0xddd904f5 async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe166813a async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object -EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this -EXPORT_SYMBOL net/l2tp/l2tp_core 0x8e92ec2f l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0xcb954ca4 l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x0b41907c lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x7556f6ba lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xa41dbe76 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xa9f5d3b1 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xaaec3940 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xdb58e9b2 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xdeefe59a lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xf927a9e6 lapb_disconnect_request -EXPORT_SYMBOL net/llc/llc 0x1762362d llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x2734a127 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x3ca35eed llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x4e0cb528 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x53c9a767 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x8ba47c57 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xa5d26c82 llc_sap_find -EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x038c6d4d ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x0cbedfa5 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x21a02fd2 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x21a5a378 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x245427c8 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x270d6735 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x27d4bc6b __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x28193038 ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x2b5ec8fc ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x2c748246 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x33968b2b ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x39c93887 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x3a5a04b8 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x40b2504b ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x45914a63 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x489b4259 ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0x4a504dea ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x57062e47 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x57cf903b ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x58c54b29 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x59d3579e ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x5eb574e8 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x5fba356f ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x601e89c7 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x6204c68b ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x62a35ec1 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x67077fb3 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x672fd590 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x6940d343 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x6cf05a20 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x6db97885 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x6dc393f2 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x709d439a ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x71463f86 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x72ea3ed2 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x772754ef ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x78aebaa6 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x79ebb6a3 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x8067b27e ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x88241d7b ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x90bb950e ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xa1878981 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xa3459c6e ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xa3d2a342 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xaa6883db ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xaec1ea0c rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xb3c6f52f ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xb3e5c2c5 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xb582e1c0 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xb7227076 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xbfac1266 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xc23b87d7 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xc3e8ab06 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xc5c7e0d0 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xc80e9e19 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xcf62013b ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xcf99edc6 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xd04a7892 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xd1243335 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xd15d677b ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0xd3980783 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xd6846eae ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xd7df3180 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xd893f655 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xde5d1d39 rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0xdea6db2d ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xdfa527e6 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xe0b923de ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xe3272e91 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xe43b8e0a ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xe987b052 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xeb9bde5f ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xeccfb504 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xed0f3c28 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xed5cccd0 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xf4a0512a ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xf4b8ebdd ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xfbefe522 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac802154/mac802154 0x2b51e4a2 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x3366ac70 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x41002f0b ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x56c3abb3 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x6717d84e ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x705c0f3b ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xa41b17fd ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xd9400a9a ieee802154_xmit_complete -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2258cc5a register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x243e5534 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x355f2471 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x35c31f68 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x35cab1a5 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x71bb82f5 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x90e03928 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb4b1f4f1 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc66dc8f5 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc90e36ed register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcc86945b ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xed0071db ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xef7adad7 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfc277dfd ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x444adbf5 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xbb7a3a10 __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xdc3ab292 nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x312dffcc nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0x40ee3d93 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x8328b93a nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xc4393e84 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xd3c83aaa nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0xeb7c76b5 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/x_tables 0x42b30e92 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x44518a96 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x5ad92ef3 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xa2550871 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xb427026c xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0xbd7d434c xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xc54645ae xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xe8e093c1 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xebb9c766 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xf300db27 xt_unregister_matches -EXPORT_SYMBOL net/nfc/hci/hci 0x0223ab25 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x1ec15f5a nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x2e860567 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x34c54241 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x3d699ac2 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x3e5ca35b nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x5133e5f4 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x52df9353 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x53d5789b nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x6f717c9f nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x7ca061fa nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x7f31ad34 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x89181a14 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xa4b3e8cd nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xa7043ade nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0xad0130eb nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xb2dc16af nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0xb570959b nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xbe9285ce nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xc3a872f9 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xdaf1d85d nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x01dafd4d nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x0946ef71 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x120ad57e nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0x2ac9b72d nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x40bc83a5 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x4544e98b nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x5111e647 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x678f7cbf nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x718d7de4 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x7f60dd17 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x805fd683 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x8f1e35c7 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x95f5e722 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xb916e495 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xb9626e16 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc3a99f0d nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xc57974f4 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0xc80833bb nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xca3deaf9 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xdf2b72ed nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xdf89fcbd nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xe4331003 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xe7955799 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xea45cfa8 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xf51a6c29 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xf8092dfe nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xf842e95c nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xfb8f11d7 nci_recv_frame -EXPORT_SYMBOL net/nfc/nfc 0x04092f94 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x08ba1c14 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x0ab9d053 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x2d073c86 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x33122b6e nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x39b8acf7 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x4f1ec2df nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x7b6773db nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x87f47429 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x8b143500 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xa8970b05 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xabd6cdf1 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xb2190343 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xb66255a0 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xbdc983e3 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xc2d039c2 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xc693ed38 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xd14b80c8 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xd218dd19 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xd29aa870 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0xd7090743 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xe39bcf9b nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xf4fb0521 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xfc5b241e nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x112b67ee nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x3e766efe nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x713bb273 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x918646e7 nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x61b799cc pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x709e6478 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x73ecbfab phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xad478098 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xb05ca378 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xb39ff15f phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xd0b5b485 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xd3f05bb2 pn_sock_get_port -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x46a831cc rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x50385da9 rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x580e4b96 rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x58a65a51 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5cef9545 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6837bd10 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x85449999 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x870da920 rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x917d1338 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb63d7b89 rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbba749f2 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xda2bf040 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe0b5ca44 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xeef7a3a3 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf9d0a3f0 rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/sctp/sctp 0x2af8a13a sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x04c94067 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x729a6cf7 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdb8b40d2 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x2754e301 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x354cd017 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xa53e464d svc_pool_stats_open -EXPORT_SYMBOL net/wimax/wimax 0xb6a87f97 wimax_reset -EXPORT_SYMBOL net/wimax/wimax 0xe235504a wimax_rfkill -EXPORT_SYMBOL net/wireless/cfg80211 0x03ea3b67 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x07966ae2 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x07b18829 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x09a3465e cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0c5a8b5e cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x1530c507 cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x1675d8b9 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x18469ed5 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x1b5528f5 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x229dc8c8 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x2406c1d0 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x2526b850 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x27b6b83b cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x29c4062d cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2c8c73cf cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x2d8de7f2 ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x2db03130 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x2dc01626 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x30b685c4 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x330b2eba cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x33be5b84 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x375ae85a cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x38cac762 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x3967be91 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x3c1ef54e cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x3c40ba97 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x5093b029 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x517439fe cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x52a7a788 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x584f5232 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x5e240c41 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x5e481a52 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x61323aeb wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x64fa89fb __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x650c1bb0 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x682c19be cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6c62850a cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x70c53e56 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x71fa3d10 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x772a0dae cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x788b025f cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x7893ab2f cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x7b57d185 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x7c149d55 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x813ef113 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x8443ff99 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x8e2579a2 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x9188cd4e cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x941f030c __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x943b5d66 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x9d30c742 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x9ec40153 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xa485f147 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0xa4be62d9 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xa5f4121c cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xa6ad8b23 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xa76d300d wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xa8f09aeb cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0xaca517d5 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0xaedda917 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xb145caee cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xb2389d8c wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xb39f60ed ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0xb48bcd87 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0xb6fcd24d cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0xb780bc35 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xb7a51090 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc09219de cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xc1ec2bf9 cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0xc2d40907 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc7f5e2a4 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xcc61c6e4 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xd68f9c1c cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xd9ab85d1 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0xdacf8686 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xe1fdf509 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xe23e654d regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xe88eb867 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xea43dd7c cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf0de4472 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0xf124257c cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xf9f7dac9 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x097b160a lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x3a4db359 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x6020b2e0 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xd5dae180 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xf16f271c lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xf8924de5 lib80211_crypt_info_free -EXPORT_SYMBOL sound/ac97_bus 0xa54c51ac ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x7ddf19f4 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x25175b58 snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6655a9f1 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x884dfe2f snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x91a8cbed snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x9d80d161 snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x072d978b snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x13a17752 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2eed26bf snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5ca523 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd7c7afcc snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xe01244f8 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x04cf651d snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x0d7ae82a snd_card_register -EXPORT_SYMBOL sound/core/snd 0x0da20c99 snd_device_free -EXPORT_SYMBOL sound/core/snd 0x1736cd6e snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x194f5041 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1a94fbde snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x1d7dfc3d snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x2093f84b snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x20f8b916 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x2a69d7df snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0x2e18d0c4 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x33cf2fd8 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x34a6de8c snd_card_new -EXPORT_SYMBOL sound/core/snd 0x34de000d snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x54cd09fa snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x56cb80e9 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x5d1081b4 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x5ee1727f snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x69bd209e snd_device_new -EXPORT_SYMBOL sound/core/snd 0x6c1a4f39 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x8140c7eb snd_device_register -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x8602e9ba snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x89d3b35d snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x93d915d6 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x9644dce3 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x96c32a22 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x99901e10 snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x9ad20aec _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0x9ae2e879 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x9d977c37 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0xacf0a676 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0xae09c843 snd_register_device -EXPORT_SYMBOL sound/core/snd 0xaf81aefd snd_card_free -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb3d628df snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0xba06adaf snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xc427caa1 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0xc65a6707 snd_cards -EXPORT_SYMBOL sound/core/snd 0xce325afd snd_info_register -EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL sound/core/snd 0xd8825c40 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0xdee4d485 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0xf044384d snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0xf0792ac1 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xf0f89512 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0xf3e004ef snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0xfa427eaa snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0xfc237f5a snd_seq_root -EXPORT_SYMBOL sound/core/snd-hwdep 0x5e376e9d snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x0834a43f snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0becd577 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x105770b0 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x10ff6141 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x241b0b1a snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x25d0ecee snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0x3017313f snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x30cf38ee snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x36edb461 snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x37ae6d4a snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x37e99a8a snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x397567d4 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3b91f3af snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x3ee64de6 snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0x4cf1ad66 snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x58805ca5 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x68be4561 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x742c82c4 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x7f67555a snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x84f0f7af snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x85289043 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x85dc97d6 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x88a88b16 snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0x8ece81d2 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x8eebb97d snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x9f72c013 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0xa2fbd9f4 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xa748662e snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0xa8ef8e16 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xb1d6586f snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbc04e217 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xbc2c65d5 snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0xc21d35f7 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xc3d88c22 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0xcd71a1bb snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0xd1925678 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0xd28cb0b1 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0xd2ace546 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xd8df46fb snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xdafb1c96 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0xdc06cf77 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xddd3a3a6 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0xdefdf078 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xe03ef1f1 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe8eacb19 snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0xed7592ad snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0xef447068 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0xf2421f44 snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1c84c51a snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x37162829 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x41b9d935 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x437bbc82 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x494202b0 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x51dc9aed snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x59c62633 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6038e796 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x753b415d snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9baf17c7 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa60d93c5 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb6b78a40 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe012230f snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xedc0dc03 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf1ea969d snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf3736ece snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf3ce7b6b snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf7cb6bd0 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xffee1981 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-timer 0x24df0067 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x2df7d331 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x387fcc33 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x41bb32a0 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x5f181f29 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x623c0c72 snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x62cc7a9b snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x794d38b7 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x906052fe snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0xa09389c3 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xbf742c5d snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xcd2087d3 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xd3554690 snd_timer_global_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xfae2e8ed snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x25780077 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x354fbaa2 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3b0c67c3 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa9508a84 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xab05c4c5 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc083f32c snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd870fa88 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xef165f0d snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf6e0a47e snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x06e08444 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1aac228b snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x685d3696 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6f7706d8 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x74666e29 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa59bbdbe snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc87841e3 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe06be0d4 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf40750a8 snd_vx_resume -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x13431555 amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x17e57954 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2cac4a9d amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x31acc2d1 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3a8b222a amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3eae936d fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x42f77452 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4c87b1e6 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x523de0c1 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x57c2ba39 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5ddd246a snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5ee01869 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x69d23e91 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6e468f33 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x717606b0 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x732e3603 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7739b892 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x807cb42c fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8533e317 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x892c0959 amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9555433e snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x99c6c1ee amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9e7350eb cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa0c63de2 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa1355d37 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbef7c91d fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc92fab83 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd0d9b8bd cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd1145371 snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd5b196d4 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd6ed9b3a fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeec619d1 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x2871abad snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x4e1e91b0 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1f688f2f snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x25af5129 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x43f31f1b snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x59523959 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x66a45d21 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7c71e57d snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x87bd4445 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf21e3f9e snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x0a23ef28 snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x1561c4fa snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x3a185c93 snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x7c4d5965 snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xa860e542 snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xb2bfc5ce snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x14e30e84 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x1fe2e626 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xafa0ea63 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xbc615330 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x297c28d6 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x9587e972 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2ffbc6ca snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4a032e03 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x685f4b9f snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa6948336 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbcf4607e snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf3a753ba snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-i2c 0x0b1b33b1 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x3636b723 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x45d7c2a1 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xa0322d72 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xe56c3e54 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xeee30dd3 snd_i2c_bus_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1e7e2b06 snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x24863d56 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x26c1360e snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x286bdaa2 snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x471332b7 snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6eefa373 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8d191ba8 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9433ce1d snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc401d42f snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe05af358 snd_sbdsp_reset -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x05b12695 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0ea29e35 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1c31cd65 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1ecd7796 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2a482f11 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x30b809ea snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x34ceeb4a snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x49006980 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4b2ffb2d snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x582b69d2 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x88f6f46e snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8cb81167 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9beb783f snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb29d0adc snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc5daa4c5 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xca3902b1 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd43ae3ec snd_ac97_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0cb1d8ba snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x10bb634c snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1984fcc6 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4c06bd20 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8c09fc04 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8e9cf5da snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb19a977e snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc53f00f8 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd719f436 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2e0c5288 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x4455444d snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7659f091 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x02cbe577 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0c0ea8e5 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1f5b6f74 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x33cbd9e3 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x361f956c oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3c000de1 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3ec3c65b oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x597aa143 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5c1f1bb2 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x70f982fc oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7b9ead94 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa3cb3c1c oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa528e988 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xad2ea122 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xad707fd0 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc1170fa7 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd1881fe1 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd2fb8b32 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd6e76689 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe78b7392 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xeb731bcc oxygen_pci_pm -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x416e2005 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xa2838595 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbeaca5f2 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd8a8f0dd snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xdf8c2a7d snd_trident_write_voice_regs -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x47d8b083 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x5f865896 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/snd-soc-core 0x1861baa6 snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/soundcore 0x04c41394 register_sound_special -EXPORT_SYMBOL sound/soundcore 0x1585299f register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x92e7e838 sound_class -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0x9d094729 register_sound_midi -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xcd33cadb register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xea68592a register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x000561f1 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1ebf63a5 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x60ba444c snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6ebe37c5 snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x8aeb38bf snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb64e8b03 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/snd-util-mem 0x00437200 snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x1ed173e3 __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x2b4a4b28 snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x3a7f51e9 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xa98db295 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0xd1a1752c snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xeee3cdba __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xf4c23c44 __snd_util_mem_alloc -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x07f3d4f2 snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x002d5989 mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0x005658b1 noop_qdisc -EXPORT_SYMBOL vmlinux 0x00686148 dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0x006ac8d0 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x007f6945 unlock_buffer -EXPORT_SYMBOL vmlinux 0x00adc840 arp_xmit -EXPORT_SYMBOL vmlinux 0x00cc37b3 mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x01135f48 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x0118442a bdi_destroy -EXPORT_SYMBOL vmlinux 0x015b13b3 tcp_shutdown -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x017541fb remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x017df685 vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x019405de sk_stream_write_space -EXPORT_SYMBOL vmlinux 0x01adf0de i2c_transfer -EXPORT_SYMBOL vmlinux 0x01bd4b17 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x01e3bb1f register_cdrom -EXPORT_SYMBOL vmlinux 0x01eec83c __skb_checksum -EXPORT_SYMBOL vmlinux 0x0205ec52 generic_setxattr -EXPORT_SYMBOL vmlinux 0x020cada5 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x0223e862 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x0248a33d lock_sock_fast -EXPORT_SYMBOL vmlinux 0x025b1bb8 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0x0262f8da netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02bd670c ata_print_version -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02fbf0dd d_make_root -EXPORT_SYMBOL vmlinux 0x031fb72c of_get_pci_address -EXPORT_SYMBOL vmlinux 0x032b09b1 mach_ppa8548 -EXPORT_SYMBOL vmlinux 0x032fafd9 of_get_next_child -EXPORT_SYMBOL vmlinux 0x03345456 param_ops_byte -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x033684f8 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x03559fe9 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x035bee56 override_creds -EXPORT_SYMBOL vmlinux 0x0365938d pci_bus_put -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x036c3bdd mount_nodev -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x0381ec9f bio_copy_kern -EXPORT_SYMBOL vmlinux 0x03b9baae init_buffer -EXPORT_SYMBOL vmlinux 0x03e87181 fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0x03ee1abe bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x03ef5c8e xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04074f48 ioremap -EXPORT_SYMBOL vmlinux 0x04141dd8 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x042ba174 kunmap_high -EXPORT_SYMBOL vmlinux 0x042e656c padata_do_serial -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x046d24e0 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x047f4d8e write_one_page -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x04d96e9c netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04f1041d lockref_get -EXPORT_SYMBOL vmlinux 0x04f901b1 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x0510231d nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0x051798d5 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range -EXPORT_SYMBOL vmlinux 0x051b7d14 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x05357cf5 tcf_register_action -EXPORT_SYMBOL vmlinux 0x056efe8b dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x058835ea pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns -EXPORT_SYMBOL vmlinux 0x05c2ce19 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x05d03efc scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x05d53f91 vm_mmap -EXPORT_SYMBOL vmlinux 0x05e1c979 ppp_input_error -EXPORT_SYMBOL vmlinux 0x05e2040e scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x05eaefc4 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x05ed05ba vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x05f76fcb phy_find_first -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0629482c key_invalidate -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x066954d1 of_translate_address -EXPORT_SYMBOL vmlinux 0x0672caa3 dma_direct_ops -EXPORT_SYMBOL vmlinux 0x0675c7eb atomic64_cmpxchg -EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x068f3394 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x06f528f6 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x06f54c58 inet_release -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x07192b87 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x071ae0e4 swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x074e9213 down_killable -EXPORT_SYMBOL vmlinux 0x07583a7e param_set_int -EXPORT_SYMBOL vmlinux 0x0758dfa3 __sb_end_write -EXPORT_SYMBOL vmlinux 0x07757ab0 phy_device_free -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07e74da9 scsi_host_put -EXPORT_SYMBOL vmlinux 0x07ec09e1 generic_update_time -EXPORT_SYMBOL vmlinux 0x07f3980f page_readlink -EXPORT_SYMBOL vmlinux 0x0807fdf4 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x08351a01 proc_symlink -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x084f1bbf file_open_root -EXPORT_SYMBOL vmlinux 0x08532747 give_up_console -EXPORT_SYMBOL vmlinux 0x0856b5de __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x085abf56 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x086d8cdd irq_stat -EXPORT_SYMBOL vmlinux 0x0873cc1f cfb_imageblit -EXPORT_SYMBOL vmlinux 0x0880aef2 fb_set_var -EXPORT_SYMBOL vmlinux 0x088a45c8 netdev_info -EXPORT_SYMBOL vmlinux 0x0890be1e audit_log -EXPORT_SYMBOL vmlinux 0x08caa5a3 md_update_sb -EXPORT_SYMBOL vmlinux 0x08dd2f4d __get_page_tail -EXPORT_SYMBOL vmlinux 0x08df9457 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x0911af87 pcim_pin_device -EXPORT_SYMBOL vmlinux 0x0914a5ab gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x09158098 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x0936e942 pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0x094e4410 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x095ad5c3 blk_queue_bounce -EXPORT_SYMBOL vmlinux 0x0963be1e pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x09676b39 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x097eee8d add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x0999c3bf dev_remove_pack -EXPORT_SYMBOL vmlinux 0x09bbbb91 trace_print_symbols_seq_u64 -EXPORT_SYMBOL vmlinux 0x09bc7a00 elevator_exit -EXPORT_SYMBOL vmlinux 0x09c2915a ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x09c3980d d_path -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c67afb flex_array_get -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x0a0b802e sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x0a10e703 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a35bff6 key_type_keyring -EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift -EXPORT_SYMBOL vmlinux 0x0a39900d elv_rb_find -EXPORT_SYMBOL vmlinux 0x0a42363b max8925_set_bits -EXPORT_SYMBOL vmlinux 0x0a44730e done_path_create -EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell -EXPORT_SYMBOL vmlinux 0x0a579549 clk_add_alias -EXPORT_SYMBOL vmlinux 0x0a581a0e __napi_complete -EXPORT_SYMBOL vmlinux 0x0a65d0dd unregister_qdisc -EXPORT_SYMBOL vmlinux 0x0a7c6005 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b2536ce input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x0b3d8a3f of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init -EXPORT_SYMBOL vmlinux 0x0b4904d9 vc_cons -EXPORT_SYMBOL vmlinux 0x0b4aaeeb kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b654e82 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x0b6f21f0 devm_request_resource -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0baea183 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc1c818 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc6020a __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x0bd71484 misc_deregister -EXPORT_SYMBOL vmlinux 0x0c082eff security_path_link -EXPORT_SYMBOL vmlinux 0x0c12e626 __debugger_bpt -EXPORT_SYMBOL vmlinux 0x0c35c8bd mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x0c3da317 inet_frags_init -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c64793f xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x0c9b6089 nvram_get_size -EXPORT_SYMBOL vmlinux 0x0c9bc0b5 of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x0c9c6fc4 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cfc1837 read_code -EXPORT_SYMBOL vmlinux 0x0d00824e netlink_ack -EXPORT_SYMBOL vmlinux 0x0d49d7cb qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x0d4f5fb6 pci_restore_state -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d5c4a0f mutex_unlock -EXPORT_SYMBOL vmlinux 0x0d5e629b bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x0d5e64eb nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d629720 nf_log_unset -EXPORT_SYMBOL vmlinux 0x0d7a750a scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x0d80fd5a scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x0d967601 skb_queue_head -EXPORT_SYMBOL vmlinux 0x0d9abc59 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x0d9e12d1 lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dc7c679 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x0dc8577b del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x0dcaec28 vm_insert_mixed -EXPORT_SYMBOL vmlinux 0x0dd1b9c6 __bread_gfp -EXPORT_SYMBOL vmlinux 0x0dd4cda4 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x0dde7cc7 single_open -EXPORT_SYMBOL vmlinux 0x0dedd454 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x0df4f941 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x0df93650 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x0e2891b1 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x0e3ce7e8 param_get_charp -EXPORT_SYMBOL vmlinux 0x0e50381b tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x0e53a2cc pagevec_lookup -EXPORT_SYMBOL vmlinux 0x0e64aaae dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e6e8eba sync_filesystem -EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x0eaebffc __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ec7eca5 inet_sendpage -EXPORT_SYMBOL vmlinux 0x0ecebfc0 udp_disconnect -EXPORT_SYMBOL vmlinux 0x0edb4681 irq_to_desc -EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0efdb4e8 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x0f0b6429 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x0f1ed5b0 open_check_o_direct -EXPORT_SYMBOL vmlinux 0x0f1f6343 devm_iounmap -EXPORT_SYMBOL vmlinux 0x0f2839f0 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x0f28cb91 nvram_read_byte -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x0f69331d blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f71b821 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x0f7217c1 make_bad_inode -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f8069c0 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2bd88 register_md_personality -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0ff81876 bio_split -EXPORT_SYMBOL vmlinux 0x100a7f09 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x1011af2f sockfd_lookup -EXPORT_SYMBOL vmlinux 0x10307114 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0x103d5d1a backlight_device_register -EXPORT_SYMBOL vmlinux 0x10412a41 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x10476670 dentry_open -EXPORT_SYMBOL vmlinux 0x1057d747 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x105b05a4 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x106d84ec jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x109b7956 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x10b676af dmam_pool_create -EXPORT_SYMBOL vmlinux 0x10c3c37f bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10f9ac2b blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110c3d67 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x1145067f param_ops_bint -EXPORT_SYMBOL vmlinux 0x11460153 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x11481f05 freeze_bdev -EXPORT_SYMBOL vmlinux 0x114ca5aa tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x115554b5 free_task -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x116d674d fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x117f1f77 single_open_size -EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable -EXPORT_SYMBOL vmlinux 0x1187dc70 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11ac6a97 complete_request_key -EXPORT_SYMBOL vmlinux 0x11b37047 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x11b7862c devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x11c3c7ed ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x11f88ed5 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x121b4e4b memremap -EXPORT_SYMBOL vmlinux 0x122125ab input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x123967ab dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x123c2213 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x1249506f fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x1249cd2a param_ops_string -EXPORT_SYMBOL vmlinux 0x12505ecb tso_start -EXPORT_SYMBOL vmlinux 0x1264875c simple_transaction_set -EXPORT_SYMBOL vmlinux 0x129402a5 nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12b594f1 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x12c49f72 arp_create -EXPORT_SYMBOL vmlinux 0x12c85662 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc -EXPORT_SYMBOL vmlinux 0x12e25424 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x12fc8aa1 alloc_disk -EXPORT_SYMBOL vmlinux 0x13172e80 flush_tlb_page -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13205536 deactivate_super -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x13424434 page_address -EXPORT_SYMBOL vmlinux 0x134c40e3 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x1350ea7e eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x13657ce3 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x13773364 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x1387dcd9 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x13b2e6b8 fsnotify_put_group -EXPORT_SYMBOL vmlinux 0x13cbea95 km_state_notify -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13de0c20 init_task -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x1407c6e7 kmap_prot -EXPORT_SYMBOL vmlinux 0x1408f5aa dev_change_carrier -EXPORT_SYMBOL vmlinux 0x1413e64e bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x1419d1d6 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x1431fbf3 block_commit_write -EXPORT_SYMBOL vmlinux 0x14621146 bioset_create -EXPORT_SYMBOL vmlinux 0x14738f9e swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x14827722 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x149f4c21 ___pskb_trim -EXPORT_SYMBOL vmlinux 0x14a69dd7 seq_printf -EXPORT_SYMBOL vmlinux 0x14ab56d2 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x14c23e7e dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x14c91f42 mach_p1023_rdb -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14d6e6a2 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x14df6047 neigh_lookup -EXPORT_SYMBOL vmlinux 0x15049aef ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x1527d762 vfs_statfs -EXPORT_SYMBOL vmlinux 0x15333b74 flush_old_exec -EXPORT_SYMBOL vmlinux 0x15373e35 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x153e0b18 devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x154373f7 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x1548fdd3 i2c_master_send -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x1565e68e i2c_master_recv -EXPORT_SYMBOL vmlinux 0x1598cfe4 scsi_register_interface -EXPORT_SYMBOL vmlinux 0x159c6ade bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x15a96210 request_key -EXPORT_SYMBOL vmlinux 0x15b79da9 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x15d649ca ip_ct_attach -EXPORT_SYMBOL vmlinux 0x15de62ea pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x15ea325a scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x15f1084a md_flush_request -EXPORT_SYMBOL vmlinux 0x160236de pci_find_hose_for_OF_device -EXPORT_SYMBOL vmlinux 0x1605e352 inet_addr_type -EXPORT_SYMBOL vmlinux 0x161d0033 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x161ee677 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x162a2f1d blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x1630e88e ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x1634d340 param_get_ullong -EXPORT_SYMBOL vmlinux 0x165024ab dump_align -EXPORT_SYMBOL vmlinux 0x16540bbc __cmpdi2 -EXPORT_SYMBOL vmlinux 0x16689ea4 kmap_high -EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete -EXPORT_SYMBOL vmlinux 0x168a53cf seq_escape -EXPORT_SYMBOL vmlinux 0x16989aaa netpoll_print_options -EXPORT_SYMBOL vmlinux 0x16db821e pcie_get_mps -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e7d7ee inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0x1702453e tty_free_termios -EXPORT_SYMBOL vmlinux 0x170a96b5 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x17400719 scmd_printk -EXPORT_SYMBOL vmlinux 0x1741b8e6 pci_domain_nr -EXPORT_SYMBOL vmlinux 0x17634c6c nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock -EXPORT_SYMBOL vmlinux 0x1768fb86 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x177403d1 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x1788f540 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x17a8e6cf crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x17aa156a __ucmpdi2 -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17b1cf7d thaw_super -EXPORT_SYMBOL vmlinux 0x17beab60 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x17c0bda3 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x17dba3fd xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x17dd449b netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17f53d7c of_mdio_parse_addr -EXPORT_SYMBOL vmlinux 0x1801cc7a serio_reconnect -EXPORT_SYMBOL vmlinux 0x18137482 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x18173d48 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x1823ca14 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x182480b6 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x1845fcae mach_qemu_e500 -EXPORT_SYMBOL vmlinux 0x1846ce22 get_cached_acl -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x18506ab1 param_set_invbool -EXPORT_SYMBOL vmlinux 0x18592331 input_grab_device -EXPORT_SYMBOL vmlinux 0x185cd88c netdev_features_change -EXPORT_SYMBOL vmlinux 0x186dbfb7 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x188d5686 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x188d7d04 pci_pme_active -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x189da3ae lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18e82fd8 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x1911dc3f unregister_console -EXPORT_SYMBOL vmlinux 0x19451e40 netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0x196a50b5 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19afb2c7 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19ba1dc7 fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c06822 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x19e8cad5 register_console -EXPORT_SYMBOL vmlinux 0x1a01bf88 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x1a025cfd sock_release -EXPORT_SYMBOL vmlinux 0x1a20b15a sk_net_capable -EXPORT_SYMBOL vmlinux 0x1a32e4ee param_ops_invbool -EXPORT_SYMBOL vmlinux 0x1a578347 blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x1a6557a2 serio_rescan -EXPORT_SYMBOL vmlinux 0x1a8380ee generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x1aaed20a dquot_initialize -EXPORT_SYMBOL vmlinux 0x1ab06ac1 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x1af03515 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock -EXPORT_SYMBOL vmlinux 0x1b13b740 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x1b19e1ef qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x1b1d687e tty_set_operations -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b3b6278 switch_mmu_context -EXPORT_SYMBOL vmlinux 0x1b3da57b lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0x1b4ee44e uart_update_timeout -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b7df968 dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x1b7e1cd0 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1b921df6 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x1b99d849 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x1bb1c7dc no_llseek -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x1bca2b59 load_fp_state -EXPORT_SYMBOL vmlinux 0x1c2617fa sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x1c42890b pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x1c48de8f __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x1c73dcfe unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x1c79f153 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check -EXPORT_SYMBOL vmlinux 0x1ca270fa kernel_bind -EXPORT_SYMBOL vmlinux 0x1cdcd75a swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x1cea3d27 iget5_locked -EXPORT_SYMBOL vmlinux 0x1d0df79c xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x1d32db92 bio_init -EXPORT_SYMBOL vmlinux 0x1d6e62b0 get_task_io_context -EXPORT_SYMBOL vmlinux 0x1d707337 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x1d78da1c con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x1d83d58a vme_irq_free -EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x1dc04bd7 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dc6c7ca dquot_free_inode -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1df2c879 dquot_transfer -EXPORT_SYMBOL vmlinux 0x1e142f13 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e6543d8 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x1e6bc242 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e779d1b sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x1e785c7e sk_common_release -EXPORT_SYMBOL vmlinux 0x1e918a60 netdev_update_features -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea3a617 __page_symlink -EXPORT_SYMBOL vmlinux 0x1eac49bf simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x1eb9ea17 pci_enable_device -EXPORT_SYMBOL vmlinux 0x1ec08e47 phy_device_create -EXPORT_SYMBOL vmlinux 0x1ec483c2 local_flush_tlb_mm -EXPORT_SYMBOL vmlinux 0x1ecc7980 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x1ed67cf5 lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x1edd0d9b input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x1ee946ce tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x1ef38c86 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x1f065161 path_noexec -EXPORT_SYMBOL vmlinux 0x1f147f75 ppp_channel_index -EXPORT_SYMBOL vmlinux 0x1f2efedd genl_unregister_family -EXPORT_SYMBOL vmlinux 0x1f3df5d8 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x1f48507e d_set_d_op -EXPORT_SYMBOL vmlinux 0x1f5784a4 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x1f6a1e04 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x1f7752dd bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x1f8456bc nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0x1fa4ac30 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x1fb2040b pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe472b7 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200671dd rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x20127b0e framebuffer_release -EXPORT_SYMBOL vmlinux 0x2023243f padata_remove_cpu -EXPORT_SYMBOL vmlinux 0x20267b1d pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x203b4d4b mmc_remove_host -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x204e3111 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x205275a0 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x206687ad cpm_muram_alloc_fixed -EXPORT_SYMBOL vmlinux 0x206b6529 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x206c74ab __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x208c6f4c send_sig_info -EXPORT_SYMBOL vmlinux 0x209e6327 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20aac157 phy_drivers_register -EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x20b79bc7 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x20c0cd7b tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20d5f387 load_nls -EXPORT_SYMBOL vmlinux 0x20d85a91 inet_add_offload -EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x20f7a374 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x2146229a simple_fill_super -EXPORT_SYMBOL vmlinux 0x214d4370 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x214fafd8 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve -EXPORT_SYMBOL vmlinux 0x216e1b22 nf_log_packet -EXPORT_SYMBOL vmlinux 0x216f717b vfs_getattr -EXPORT_SYMBOL vmlinux 0x2184e738 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x218d124e xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x21b0c72a elv_add_request -EXPORT_SYMBOL vmlinux 0x21bc32e3 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x21c335d9 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x21cdd94c mount_bdev -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback -EXPORT_SYMBOL vmlinux 0x21f3dc15 cpm_command -EXPORT_SYMBOL vmlinux 0x22054037 pagecache_write_end -EXPORT_SYMBOL vmlinux 0x2217daa8 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x222054d2 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve -EXPORT_SYMBOL vmlinux 0x22421749 touch_buffer -EXPORT_SYMBOL vmlinux 0x2250dd5c tcp_proc_register -EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x226f7142 udp_set_csum -EXPORT_SYMBOL vmlinux 0x22755747 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember -EXPORT_SYMBOL vmlinux 0x22983c67 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x229e0046 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x22ab2893 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x22e0e2dc __dquot_free_space -EXPORT_SYMBOL vmlinux 0x22ed593e mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0x22f9cbd7 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x230fbe77 fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x232528a1 security_file_permission -EXPORT_SYMBOL vmlinux 0x2334b68b vme_slave_request -EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL vmlinux 0x2346f64c should_remove_suid -EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit -EXPORT_SYMBOL vmlinux 0x2390c280 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x239aa2af mmc_release_host -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23bf5df7 km_is_alive -EXPORT_SYMBOL vmlinux 0x23c7b904 kmap_atomic_prot -EXPORT_SYMBOL vmlinux 0x23e1abc1 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x23ebe5e3 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free -EXPORT_SYMBOL vmlinux 0x23f692d7 bdev_read_only -EXPORT_SYMBOL vmlinux 0x23f980d0 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x240bc952 ps2_end_command -EXPORT_SYMBOL vmlinux 0x241c4064 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2458b9f7 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245b134f uart_resume_port -EXPORT_SYMBOL vmlinux 0x247ddb98 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x247debb2 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x2484955f __invalidate_device -EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x24856730 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x24a5b4ee nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x24c08a1f netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x24c7f5ef genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x24d8f8ec default_llseek -EXPORT_SYMBOL vmlinux 0x24f00380 ida_init -EXPORT_SYMBOL vmlinux 0x24f82fac rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x250e3c39 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x251b4472 __breadahead -EXPORT_SYMBOL vmlinux 0x251b79f8 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x251e7c3b cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x252c45e4 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0x253b5a64 __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x254cf13a generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x2552a141 __free_pages -EXPORT_SYMBOL vmlinux 0x25540afa blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x255554aa pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x256c5cd5 napi_complete_done -EXPORT_SYMBOL vmlinux 0x256cb99c of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x2575a115 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0x25769068 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x257ca3a5 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x25873bb1 agp_backend_release -EXPORT_SYMBOL vmlinux 0x259c8d0e pci_map_rom -EXPORT_SYMBOL vmlinux 0x25a3f89a netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0x25a6991d __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x25b6cbdd mmc_fixup_device -EXPORT_SYMBOL vmlinux 0x25d2179a pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x25dd40e4 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25f3bd2e atomic64_xchg -EXPORT_SYMBOL vmlinux 0x260bb131 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x26217e3f scsi_print_sense -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x263df8d6 seq_read -EXPORT_SYMBOL vmlinux 0x26427f83 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc -EXPORT_SYMBOL vmlinux 0x26482a8e agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0x264be4d1 mmc_can_reset -EXPORT_SYMBOL vmlinux 0x26503c4e of_mm_gpiochip_add -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x266ff04f __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x26b39364 tcp_prequeue -EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init -EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26bd2ff4 lwtunnel_input -EXPORT_SYMBOL vmlinux 0x26cb01a8 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26f4a3a5 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x270950b0 sock_no_accept -EXPORT_SYMBOL vmlinux 0x2734be4a __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x273a811e bio_unmap_user -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above -EXPORT_SYMBOL vmlinux 0x27730a8e eth_gro_complete -EXPORT_SYMBOL vmlinux 0x277d3f2c simple_setattr -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x279123ab end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x27b77dd9 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c0ee84 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x27c99836 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x27cde7d1 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x27d5f161 lookup_bdev -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x27edccef set_binfmt -EXPORT_SYMBOL vmlinux 0x28058c31 module_layout -EXPORT_SYMBOL vmlinux 0x2809de8b tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0x280c72ea netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x28132ab6 get_acl -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28196799 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x28373fee param_get_long -EXPORT_SYMBOL vmlinux 0x28377845 seq_open_private -EXPORT_SYMBOL vmlinux 0x28666dee pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x288c1893 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x2893f1d1 task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28a7beba __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x28d4751c ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x28ebedbf simple_lookup -EXPORT_SYMBOL vmlinux 0x28f784f5 __debugger_break_match -EXPORT_SYMBOL vmlinux 0x290430de skb_pad -EXPORT_SYMBOL vmlinux 0x29365558 of_find_property -EXPORT_SYMBOL vmlinux 0x2936c091 kern_path -EXPORT_SYMBOL vmlinux 0x294963f8 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x2949e165 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x295e95c1 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x296b4f13 rt6_lookup -EXPORT_SYMBOL vmlinux 0x29aa33f9 devm_gpio_request -EXPORT_SYMBOL vmlinux 0x29ac98a8 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x29f5c381 cdrom_open -EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0x2a24c496 posix_acl_valid -EXPORT_SYMBOL vmlinux 0x2a2ac62e __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2a387c9d i2c_use_client -EXPORT_SYMBOL vmlinux 0x2a3f6d64 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x2a42366f ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0x2a4f31f7 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x2a6fc902 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x2a8653f8 padata_start -EXPORT_SYMBOL vmlinux 0x2a9208ef powerpc_debugfs_root -EXPORT_SYMBOL vmlinux 0x2a968433 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2aa1d2d2 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x2aa6ce53 alloc_disk_node -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2ac8adea skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x2aceda72 sync_blockdev -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2ae02a76 input_set_keycode -EXPORT_SYMBOL vmlinux 0x2af665ab xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0x2af6f792 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x2b00f0e5 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b100792 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b31d8d9 param_set_uint -EXPORT_SYMBOL vmlinux 0x2b4ea2ca md_cluster_ops -EXPORT_SYMBOL vmlinux 0x2b8455bb blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x2b947ea0 max8998_write_reg -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba39530 serio_close -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2bc1e9aa dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x2bda517e mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed -EXPORT_SYMBOL vmlinux 0x2be1c3ea skb_seq_read -EXPORT_SYMBOL vmlinux 0x2be2244a blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x2bf85175 tcf_em_register -EXPORT_SYMBOL vmlinux 0x2bf87f66 __register_chrdev -EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c441db7 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x2c62cfcb bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0x2c6ae18c lease_modify -EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout -EXPORT_SYMBOL vmlinux 0x2c959051 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x2ca23f69 phy_connect -EXPORT_SYMBOL vmlinux 0x2cd5e37e mpage_writepages -EXPORT_SYMBOL vmlinux 0x2cdbfc9b tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x2ce95fa3 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x2cf7d5e7 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d153c1a of_gpio_simple_xlate -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d37342e cpu_online_mask -EXPORT_SYMBOL vmlinux 0x2d5691e2 kern_path_create -EXPORT_SYMBOL vmlinux 0x2d690243 generic_listxattr -EXPORT_SYMBOL vmlinux 0x2d7a9fe6 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x2dce60a8 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x2dd17e8b nd_device_register -EXPORT_SYMBOL vmlinux 0x2de305f2 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x2e06b9b5 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x2e11e21d phy_stop -EXPORT_SYMBOL vmlinux 0x2e1b1660 generic_permission -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e22102a rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x2e23babf sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x2e2ab9de netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e2dc3aa __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0x2e478cd8 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x2e52bfdd xfrm_state_add -EXPORT_SYMBOL vmlinux 0x2e77953b phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x2e8d9e20 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x2e94246a __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x2ea073fb generic_ro_fops -EXPORT_SYMBOL vmlinux 0x2ea585b9 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x2eabed27 agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x2ee64d3c sock_rfree -EXPORT_SYMBOL vmlinux 0x2ee9e6e9 register_key_type -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2ef70ead xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x2ef7fe33 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x2f032fa2 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f1505e3 copy_from_iter -EXPORT_SYMBOL vmlinux 0x2f16d259 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x2f6c6ce2 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x2f7104fc icmp_send -EXPORT_SYMBOL vmlinux 0x2f73bfc2 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x2f75d92f mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x2faf5388 dev_mc_init -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fc3821e fb_show_logo -EXPORT_SYMBOL vmlinux 0x2fcef3b3 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x2fd209c6 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x2fd61ff1 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2ff29f29 seq_putc -EXPORT_SYMBOL vmlinux 0x300f0ab2 kset_register -EXPORT_SYMBOL vmlinux 0x30164629 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command -EXPORT_SYMBOL vmlinux 0x302ff41b mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x3032d9bd sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x303356c1 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x3035610c request_firmware -EXPORT_SYMBOL vmlinux 0x303f01f5 swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0x305dcfe1 __frontswap_load -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a2b2ba sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id -EXPORT_SYMBOL vmlinux 0x30dbfed4 pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0x30e13fc1 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x30ea7c85 scsi_unregister -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310917fe sort -EXPORT_SYMBOL vmlinux 0x3112ab22 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x312694c2 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x312919fd __serio_register_port -EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x31581ef9 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x31625170 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x3173ff92 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc -EXPORT_SYMBOL vmlinux 0x31a6c821 tty_mutex -EXPORT_SYMBOL vmlinux 0x31a7e0c9 generic_fillattr -EXPORT_SYMBOL vmlinux 0x31a9700e pci_disable_msix -EXPORT_SYMBOL vmlinux 0x31ca5f10 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x31cd5c80 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x31e49f6f mount_subtree -EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx -EXPORT_SYMBOL vmlinux 0x320ae5dd netif_carrier_on -EXPORT_SYMBOL vmlinux 0x322f2b38 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x323391ab serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x323b23c4 sg_miter_start -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x326ac0bc i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x3279b80a fget -EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy -EXPORT_SYMBOL vmlinux 0x328c727c mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x32a66dbf fb_get_mode -EXPORT_SYMBOL vmlinux 0x32b33c89 fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x32be1286 setattr_copy -EXPORT_SYMBOL vmlinux 0x32c2f714 kfree_skb -EXPORT_SYMBOL vmlinux 0x32cf4f1e dquot_destroy -EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x32fca408 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x330803f0 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x3314aa66 lock_rename -EXPORT_SYMBOL vmlinux 0x332438cb xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0x33396ee4 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x333f7ffe generic_make_request -EXPORT_SYMBOL vmlinux 0x3341e5a7 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x334cf83b del_gendisk -EXPORT_SYMBOL vmlinux 0x3361d5ba nobh_writepage -EXPORT_SYMBOL vmlinux 0x337ae587 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x337ee4d8 dev_addr_init -EXPORT_SYMBOL vmlinux 0x3382df37 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x3393f86a dev_crit -EXPORT_SYMBOL vmlinux 0x33986132 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x33ada0dc jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33cfde9d tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x33d9f9ff blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x33dc1210 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x33eb2823 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f66cd7 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x3408b165 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x3425d2dd ihold -EXPORT_SYMBOL vmlinux 0x34324518 cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x343e43d0 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x34575445 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x3463f5eb param_get_uint -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x347d5fcd xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34b3ffe0 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x34bd6d1a tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x34bfdd2a sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x34dd2bb7 sock_init_data -EXPORT_SYMBOL vmlinux 0x34e82963 pci_choose_state -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34fa2e67 vlan_vid_del -EXPORT_SYMBOL vmlinux 0x34fafc4f rtnl_create_link -EXPORT_SYMBOL vmlinux 0x3513f20b blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x352246a4 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x35310f34 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x354b5283 unlock_page -EXPORT_SYMBOL vmlinux 0x354dbf6b poll_initwait -EXPORT_SYMBOL vmlinux 0x35519874 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x355352fe textsearch_prepare -EXPORT_SYMBOL vmlinux 0x355e613e __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x355f3309 tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x359846a3 path_nosuid -EXPORT_SYMBOL vmlinux 0x359ebfbf tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35abba49 get_user_pages -EXPORT_SYMBOL vmlinux 0x35b3f03a mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x35b93973 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x35eac7b2 bio_add_page -EXPORT_SYMBOL vmlinux 0x35fe7b45 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x360366d8 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x36072855 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x361530cf unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy -EXPORT_SYMBOL vmlinux 0x362155f3 nvm_erase_blk -EXPORT_SYMBOL vmlinux 0x36243a10 phy_start_interrupts -EXPORT_SYMBOL vmlinux 0x3632a02a abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0x36457428 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x3660ce55 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy -EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x367c2cea udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x367ee275 md_integrity_register -EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36c7a91b i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport -EXPORT_SYMBOL vmlinux 0x373e2298 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374e6af9 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x37532a52 downgrade_write -EXPORT_SYMBOL vmlinux 0x37547d8a blk_start_queue -EXPORT_SYMBOL vmlinux 0x377cf0fd clk_get -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b13ec3 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37d245f0 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x37d689a2 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x37e4fc76 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 -EXPORT_SYMBOL vmlinux 0x37f5e7fd tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x380ace2f nd_integrity_init -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x383ed2c5 pci_request_regions -EXPORT_SYMBOL vmlinux 0x384f6067 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x386f8fa0 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x389377d6 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x389442d9 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x38973ab4 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x38a1547d of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace -EXPORT_SYMBOL vmlinux 0x38bed315 skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x38f584c3 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios -EXPORT_SYMBOL vmlinux 0x393515d6 genphy_suspend -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393f1682 d_find_alias -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x395dc819 mach_c293_pcie -EXPORT_SYMBOL vmlinux 0x3974669a uart_get_divisor -EXPORT_SYMBOL vmlinux 0x39958a21 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x39a9a6c3 dev_get_stats -EXPORT_SYMBOL vmlinux 0x39ae2d4b param_ops_charp -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39c08721 kobject_set_name -EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x39d5f47b of_match_device -EXPORT_SYMBOL vmlinux 0x39e4012e write_inode_now -EXPORT_SYMBOL vmlinux 0x39e63736 pci_save_state -EXPORT_SYMBOL vmlinux 0x39f2e1d5 filp_close -EXPORT_SYMBOL vmlinux 0x3a052bd8 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x3a1098a2 devm_memunmap -EXPORT_SYMBOL vmlinux 0x3a18f6fc set_user_nice -EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x3a1b81d6 agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0x3a400fb5 simple_open -EXPORT_SYMBOL vmlinux 0x3a685915 __seq_open_private -EXPORT_SYMBOL vmlinux 0x3a7bfa93 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3aa72cb8 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x3aad2ba7 uart_match_port -EXPORT_SYMBOL vmlinux 0x3ae48f46 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x3af074ca blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x3afa7bb0 __genl_register_family -EXPORT_SYMBOL vmlinux 0x3b094191 key_alloc -EXPORT_SYMBOL vmlinux 0x3b235d16 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x3b3e7249 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x3b4317a4 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x3b4fe5c8 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x3b63624f __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6ad1e7 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x3b96894d netlink_net_capable -EXPORT_SYMBOL vmlinux 0x3bc98dfe pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x3be64f92 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x3be9802a d_instantiate -EXPORT_SYMBOL vmlinux 0x3beafdf7 __vfs_write -EXPORT_SYMBOL vmlinux 0x3bfca69f pci_dev_driver -EXPORT_SYMBOL vmlinux 0x3c03f5db skb_insert -EXPORT_SYMBOL vmlinux 0x3c0ae0a0 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x3c2fe605 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x3c3d0a78 nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c4a1f5a vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x3c59c712 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x3c652b24 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c85b364 of_get_address -EXPORT_SYMBOL vmlinux 0x3c902424 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x3ca9e24a pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x3cb2c937 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init -EXPORT_SYMBOL vmlinux 0x3cce04c9 generic_write_checks -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3d1e50e9 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x3d216838 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x3d301402 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x3d35670b read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x3d4a2833 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x3d526f28 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x3d850e7e set_bh_page -EXPORT_SYMBOL vmlinux 0x3d97dcd5 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x3d9dee45 get_thermal_instance -EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts -EXPORT_SYMBOL vmlinux 0x3dcaeee7 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3de0ccbe mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e195624 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x3e1eefd7 kill_fasync -EXPORT_SYMBOL vmlinux 0x3e63a4df pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x3e6aafb6 pci_match_id -EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get -EXPORT_SYMBOL vmlinux 0x3e985822 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x3e9eb1ac __dax_fault -EXPORT_SYMBOL vmlinux 0x3ea2a196 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x3eb1515a sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x3ebb4a89 security_path_rename -EXPORT_SYMBOL vmlinux 0x3ed0cea8 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x3ed26525 dev_trans_start -EXPORT_SYMBOL vmlinux 0x3eeb709e inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0x3efff90e dev_addr_add -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f1eb247 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x3f1fe3b8 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x3f2d4447 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x3f7a21d9 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x3fb1cf71 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x3fd9d3e4 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free -EXPORT_SYMBOL vmlinux 0x3febd529 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0x401859bb vfs_rmdir -EXPORT_SYMBOL vmlinux 0x401b4ed7 fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x4022142f __blk_end_request -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev -EXPORT_SYMBOL vmlinux 0x40399e4c pci_dev_put -EXPORT_SYMBOL vmlinux 0x4056aeb3 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x40623544 tty_hangup -EXPORT_SYMBOL vmlinux 0x406d8a18 inet6_bind -EXPORT_SYMBOL vmlinux 0x406ddab2 udp_prot -EXPORT_SYMBOL vmlinux 0x4079d40b scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x4083c6f8 md_done_sync -EXPORT_SYMBOL vmlinux 0x40958bbd blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409ab9ed zero_fill_bio -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40d7f0df nvm_register -EXPORT_SYMBOL vmlinux 0x40dc15b6 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x40f1ad10 tb_ticks_per_jiffy -EXPORT_SYMBOL vmlinux 0x41131fd4 of_parse_phandle -EXPORT_SYMBOL vmlinux 0x4130b8c3 inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc -EXPORT_SYMBOL vmlinux 0x416c171f mount_ns -EXPORT_SYMBOL vmlinux 0x41862ad4 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x419ad090 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x41c7030f __vfs_read -EXPORT_SYMBOL vmlinux 0x41dd9d96 try_module_get -EXPORT_SYMBOL vmlinux 0x41e47bda nvm_register_mgr -EXPORT_SYMBOL vmlinux 0x41f2bb31 of_root -EXPORT_SYMBOL vmlinux 0x41fe1d0a dup_iter -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x42370283 __break_lease -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424bee26 __frontswap_store -EXPORT_SYMBOL vmlinux 0x424c2a77 scsi_print_result -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x4297e537 __inet_hash -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42a8cfb5 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x42f7cfe3 dst_init -EXPORT_SYMBOL vmlinux 0x42fce228 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x4300c3f9 phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0x43028d17 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x431d65a7 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x431f3a7d dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x4324999f pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x4329854a phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x432edbda mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x433d9c3f save_mount_options -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x4368ae49 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 -EXPORT_SYMBOL vmlinux 0x43700fed cdev_init -EXPORT_SYMBOL vmlinux 0x4373a9d7 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all -EXPORT_SYMBOL vmlinux 0x43a33872 __netif_schedule -EXPORT_SYMBOL vmlinux 0x43a87e69 sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x43dd2517 rfkill_alloc -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x44084111 pci_get_subsys -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0x4438def3 abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin -EXPORT_SYMBOL vmlinux 0x445d5e1a param_array_ops -EXPORT_SYMBOL vmlinux 0x44774b18 inode_init_always -EXPORT_SYMBOL vmlinux 0x4479bad4 serio_interrupt -EXPORT_SYMBOL vmlinux 0x4497ab29 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x44990ab0 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x449a94f6 brioctl_set -EXPORT_SYMBOL vmlinux 0x449da695 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x44a3f2af new_inode -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44c8b25a led_blink_set -EXPORT_SYMBOL vmlinux 0x44d7103b put_disk -EXPORT_SYMBOL vmlinux 0x44d906c5 d_splice_alias -EXPORT_SYMBOL vmlinux 0x44e56c1a __dquot_transfer -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion -EXPORT_SYMBOL vmlinux 0x4502ad6f param_ops_int -EXPORT_SYMBOL vmlinux 0x45102159 ata_port_printk -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x45409fa0 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x45449948 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x45631bac kill_anon_super -EXPORT_SYMBOL vmlinux 0x45698d57 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x4574eb28 blk_recount_segments -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x4593f39c jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x45950452 dquot_disable -EXPORT_SYMBOL vmlinux 0x459ee3ac i2c_release_client -EXPORT_SYMBOL vmlinux 0x459f7138 __register_nls -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45b5f90c ilookup5 -EXPORT_SYMBOL vmlinux 0x45bda3f7 backlight_force_update -EXPORT_SYMBOL vmlinux 0x45c6e63f pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x45cd3942 inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0x45d9284d blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x45e99648 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x45f68f92 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x45ff6422 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock -EXPORT_SYMBOL vmlinux 0x46168d24 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user -EXPORT_SYMBOL vmlinux 0x462345e1 xmon -EXPORT_SYMBOL vmlinux 0x4625d4da fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0x4629d33a param_set_short -EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy -EXPORT_SYMBOL vmlinux 0x464f2264 input_set_capability -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x466d7d15 follow_down -EXPORT_SYMBOL vmlinux 0x46abd7a4 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x46b7a432 param_set_bool -EXPORT_SYMBOL vmlinux 0x46bf0fee mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x46d009ac phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x46e841e8 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x46edea9f blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x46f0e0d1 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x46fdbabc xfrm_register_mode -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x4700b263 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x471223a3 scsi_device_put -EXPORT_SYMBOL vmlinux 0x4727efbc mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x4744c9da __scm_send -EXPORT_SYMBOL vmlinux 0x475f5a5a nf_hook_slow -EXPORT_SYMBOL vmlinux 0x47608718 fence_init -EXPORT_SYMBOL vmlinux 0x47610e17 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x4767122a phy_start -EXPORT_SYMBOL vmlinux 0x4771883a scsi_register -EXPORT_SYMBOL vmlinux 0x477a8df3 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x477ceab2 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x47a55f13 vfs_mknod -EXPORT_SYMBOL vmlinux 0x47bcbea2 unregister_netdev -EXPORT_SYMBOL vmlinux 0x47be2789 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x47be28f8 make_kprojid -EXPORT_SYMBOL vmlinux 0x47cfccd3 blk_fetch_request -EXPORT_SYMBOL vmlinux 0x47d89bfe mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x47e10cff mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue -EXPORT_SYMBOL vmlinux 0x4853e665 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x485fbd52 neigh_for_each -EXPORT_SYMBOL vmlinux 0x4868cadf skb_put -EXPORT_SYMBOL vmlinux 0x487a5a35 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x488c1bb0 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x48a024c0 mfd_add_devices -EXPORT_SYMBOL vmlinux 0x48a771c5 cpu_core_map -EXPORT_SYMBOL vmlinux 0x48af0ae6 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x48b17e76 sock_register -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48cf12c3 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x48df60cf serio_bus -EXPORT_SYMBOL vmlinux 0x48e20662 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x490169e1 release_firmware -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x490d61aa input_flush_device -EXPORT_SYMBOL vmlinux 0x4946f9b1 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x494b0831 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x4957fa00 bmap -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x4974218c reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0x4981d9a9 clear_wb_congested -EXPORT_SYMBOL vmlinux 0x4983cde5 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x498cdda2 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x499e5758 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x49a4b88c acl_by_type -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b7334e pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x49b8f96d pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x49cd3ba0 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x49d0e14d i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x49d3c37b param_set_bint -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a21c98f devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0x4a2a1a28 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x4a2c3636 mmc_add_host -EXPORT_SYMBOL vmlinux 0x4a372d71 dst_alloc -EXPORT_SYMBOL vmlinux 0x4a71a9fa vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x4a911f7c send_sig -EXPORT_SYMBOL vmlinux 0x4a9ee675 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4ac25a87 eth_type_trans -EXPORT_SYMBOL vmlinux 0x4ac62dc3 blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4ad46eb7 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b0a8d3f skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x4b1a9aab twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x4b1fdac2 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x4b2a2f56 dm_io -EXPORT_SYMBOL vmlinux 0x4b2db42d vfs_llseek -EXPORT_SYMBOL vmlinux 0x4b324100 blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0x4b3539d4 proc_mkdir -EXPORT_SYMBOL vmlinux 0x4b40d173 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x4b50a62e elv_register_queue -EXPORT_SYMBOL vmlinux 0x4b50a7cc jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b6d3a0e netdev_notice -EXPORT_SYMBOL vmlinux 0x4b7cd837 d_add_ci -EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove -EXPORT_SYMBOL vmlinux 0x4b86634c uart_register_driver -EXPORT_SYMBOL vmlinux 0x4b91c246 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x4ba26970 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat -EXPORT_SYMBOL vmlinux 0x4bc963a3 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x4bcc7830 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x4bd6406d mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x4be52ec9 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x4be85a03 memweight -EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add -EXPORT_SYMBOL vmlinux 0x4bfc8965 netif_skb_features -EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x4c23efdc nf_reinject -EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c59aaee balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x4c620fd0 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x4c6573cc nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x4c831cad __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x4cb81013 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x4cba27f8 vga_put -EXPORT_SYMBOL vmlinux 0x4ccb5cac scsi_block_requests -EXPORT_SYMBOL vmlinux 0x4cd945da write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4cf9766c skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x4cfadc11 dev_deactivate -EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask -EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x4d4ca0e0 put_page -EXPORT_SYMBOL vmlinux 0x4d60243e blk_put_request -EXPORT_SYMBOL vmlinux 0x4d6b0368 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x4d71004a __cpm2_setbrg -EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize -EXPORT_SYMBOL vmlinux 0x4d87e223 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x4d8954fa inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4da4734c proto_unregister -EXPORT_SYMBOL vmlinux 0x4db7bfdb neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x4dc22608 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x4dc4dff7 proc_create_data -EXPORT_SYMBOL vmlinux 0x4dcbea07 generic_setlease -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4deb230f vfs_read -EXPORT_SYMBOL vmlinux 0x4deb6574 blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0x4dec6038 memscan -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4e036581 km_policy_notify -EXPORT_SYMBOL vmlinux 0x4e1799bb __sk_dst_check -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e417c2a mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0x4e49e1b0 make_kuid -EXPORT_SYMBOL vmlinux 0x4e53e7fc neigh_event_ns -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e77551c vme_irq_handler -EXPORT_SYMBOL vmlinux 0x4e7d602a blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x4e878f35 mntget -EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum -EXPORT_SYMBOL vmlinux 0x4ec24202 dquot_alloc -EXPORT_SYMBOL vmlinux 0x4edc872c do_splice_to -EXPORT_SYMBOL vmlinux 0x4edd7bb5 __secpath_destroy -EXPORT_SYMBOL vmlinux 0x4efaf16d blk_free_tags -EXPORT_SYMBOL vmlinux 0x4f195001 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f58ed80 filp_open -EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f70014b cdrom_release -EXPORT_SYMBOL vmlinux 0x4f76d7fb mmc_free_host -EXPORT_SYMBOL vmlinux 0x4f9b215b tcp_close -EXPORT_SYMBOL vmlinux 0x4fabec95 bio_copy_data -EXPORT_SYMBOL vmlinux 0x4facddae try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x4fd5f42e abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4fe44a4d inode_change_ok -EXPORT_SYMBOL vmlinux 0x4fe99583 atomic64_dec_if_positive -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x501907e4 dm_put_device -EXPORT_SYMBOL vmlinux 0x501c4403 dev_addr_flush -EXPORT_SYMBOL vmlinux 0x5043bff5 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x5053f61c twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x505579d2 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x50668f3d iunique -EXPORT_SYMBOL vmlinux 0x5068aaba skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x506e1ed5 tcf_hash_create -EXPORT_SYMBOL vmlinux 0x508135d9 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x5084a8c7 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x508c27e0 free_user_ns -EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit -EXPORT_SYMBOL vmlinux 0x509c13b1 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x50a6a8dc scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x50aabee4 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0x50ad897f pipe_unlock -EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50f0b148 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x50fa1920 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0x50fc6a41 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x512932e6 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x5139939b xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x513d40ea loop_backing_file -EXPORT_SYMBOL vmlinux 0x515dc259 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x515e24a7 flush_instruction_cache -EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait -EXPORT_SYMBOL vmlinux 0x51a4e792 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x51bb9894 napi_disable -EXPORT_SYMBOL vmlinux 0x51d5e4e5 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x5203ff73 path_put -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x525c0ca6 bdgrab -EXPORT_SYMBOL vmlinux 0x5260463f ata_link_printk -EXPORT_SYMBOL vmlinux 0x5261c991 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x52668c46 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x5276cafe __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x52814e28 tty_register_driver -EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x529f7f92 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x52a158fb of_node_get -EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le -EXPORT_SYMBOL vmlinux 0x52d3ddb7 i8042_remove_filter -EXPORT_SYMBOL vmlinux 0x52f1026c rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x52f38910 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x531dd0f1 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x5362787e cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x5393d240 fb_class -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x53ad1630 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x53be5560 security_path_mknod -EXPORT_SYMBOL vmlinux 0x53c11efe netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x53c6026c dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x53c80417 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x53d01962 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x53d79613 ip_options_compile -EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns -EXPORT_SYMBOL vmlinux 0x53fe3482 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x54017252 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x5412c7c7 up -EXPORT_SYMBOL vmlinux 0x5418dd3b xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x542bf40b of_io_request_and_map -EXPORT_SYMBOL vmlinux 0x5430fee1 flush_signals -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x544ace3e blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x544f4d4d pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x548d9f28 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x548eb08e jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54b07f8d seq_write -EXPORT_SYMBOL vmlinux 0x54b460e6 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54c673ab input_free_device -EXPORT_SYMBOL vmlinux 0x54c99454 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x54de8ca6 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x54e04d50 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x5544b0e8 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x5568c553 complete -EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table -EXPORT_SYMBOL vmlinux 0x558b2b17 phy_attach -EXPORT_SYMBOL vmlinux 0x55a5fe2b sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55fa396e dump_emit -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x563a8dc4 dcb_setapp -EXPORT_SYMBOL vmlinux 0x563d503b of_phy_connect -EXPORT_SYMBOL vmlinux 0x5646fbc7 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x56716c30 dput -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x56948456 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x569b21c7 sync_inode -EXPORT_SYMBOL vmlinux 0x569f4254 mutex_trylock -EXPORT_SYMBOL vmlinux 0x56b08189 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x56bee447 tty_port_open -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56f592ab blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x577d479d vfs_whiteout -EXPORT_SYMBOL vmlinux 0x57873b20 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x579485a1 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x57a6de8c dentry_unhash -EXPORT_SYMBOL vmlinux 0x57a7c4b9 nvm_get_blk -EXPORT_SYMBOL vmlinux 0x57a8d670 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x57ae095f decrementer_clockevent -EXPORT_SYMBOL vmlinux 0x57afdf7f md_check_recovery -EXPORT_SYMBOL vmlinux 0x57b437e1 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x57c18596 arp_send -EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits -EXPORT_SYMBOL vmlinux 0x57cb18dd tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x57e83dac blk_execute_rq -EXPORT_SYMBOL vmlinux 0x57f20106 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x58018e97 con_is_bound -EXPORT_SYMBOL vmlinux 0x58071f69 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x582b5740 mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x583fc05d inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x5846e6ec agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0x5848c707 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x58623807 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x5894f222 get_task_exe_file -EXPORT_SYMBOL vmlinux 0x58a3a1b1 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58c43194 vga_get -EXPORT_SYMBOL vmlinux 0x58c8ae5f block_read_full_page -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58e5829f netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x5907832c find_inode_nowait -EXPORT_SYMBOL vmlinux 0x590d3149 ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0x591241d0 register_sysctl_table -EXPORT_SYMBOL vmlinux 0x5929b293 kill_pgrp -EXPORT_SYMBOL vmlinux 0x59312b1f blk_complete_request -EXPORT_SYMBOL vmlinux 0x5932b12d clkdev_drop -EXPORT_SYMBOL vmlinux 0x593bd7b2 __init_rwsem -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x594cb874 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x594de991 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x595b99de netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page -EXPORT_SYMBOL vmlinux 0x59604c98 find_vma -EXPORT_SYMBOL vmlinux 0x596a7e67 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59921178 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0x5992d372 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59b3378a completion_done -EXPORT_SYMBOL vmlinux 0x59b6d7d7 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x59b89320 netlink_capable -EXPORT_SYMBOL vmlinux 0x59bfd7ac sock_no_poll -EXPORT_SYMBOL vmlinux 0x59c66c92 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x59c782ff pci_get_class -EXPORT_SYMBOL vmlinux 0x59c85e3a get_io_context -EXPORT_SYMBOL vmlinux 0x59c99ba8 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x59ca851f kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a2472e4 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x5a4239c8 mmc_request_done -EXPORT_SYMBOL vmlinux 0x5a5d0600 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x5a6d0ee1 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x5a6d2be4 fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x5aa81da8 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x5abff974 seq_open -EXPORT_SYMBOL vmlinux 0x5ad39957 bdget -EXPORT_SYMBOL vmlinux 0x5af8630f generic_show_options -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem -EXPORT_SYMBOL vmlinux 0x5b367392 padata_alloc -EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock -EXPORT_SYMBOL vmlinux 0x5bb85451 generic_getxattr -EXPORT_SYMBOL vmlinux 0x5bed14d4 param_get_short -EXPORT_SYMBOL vmlinux 0x5bf0b14b local_flush_tlb_page -EXPORT_SYMBOL vmlinux 0x5bf11c56 nonseekable_open -EXPORT_SYMBOL vmlinux 0x5bf9f2a5 __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0x5bfe7add pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x5c381198 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x5c3858f0 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0x5c3f1185 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x5c68669d devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x5c9b7462 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x5c9f3f9c udp_proc_unregister -EXPORT_SYMBOL vmlinux 0x5ca6cf67 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x5cbb4665 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le -EXPORT_SYMBOL vmlinux 0x5cdb1f35 of_platform_device_create -EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x5ceacfdd block_write_full_page -EXPORT_SYMBOL vmlinux 0x5cf09ae9 pci_find_bus -EXPORT_SYMBOL vmlinux 0x5cf26fa3 start_tty -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cf8dc68 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x5d2cb3dc d_drop -EXPORT_SYMBOL vmlinux 0x5d361e02 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x5d38c59a scsi_remove_device -EXPORT_SYMBOL vmlinux 0x5d3ba6fa netdev_emerg -EXPORT_SYMBOL vmlinux 0x5d3e6abc rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0x5d3f79de file_remove_privs -EXPORT_SYMBOL vmlinux 0x5d4632c4 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d58efa0 convert_ifc_address -EXPORT_SYMBOL vmlinux 0x5d5b2fbd dm_get_device -EXPORT_SYMBOL vmlinux 0x5d61eac3 read_cache_page -EXPORT_SYMBOL vmlinux 0x5d7b79db genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x5dad8831 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x5db40819 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x5dc4178f blkdev_get -EXPORT_SYMBOL vmlinux 0x5dee14d1 bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x5defc042 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x5df38941 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x5dfeab60 genphy_config_init -EXPORT_SYMBOL vmlinux 0x5e254de9 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x5e268f00 unlock_rename -EXPORT_SYMBOL vmlinux 0x5e27321b register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x5e2a3e8f netdev_err -EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up -EXPORT_SYMBOL vmlinux 0x5e5e4eac mb_cache_shrink -EXPORT_SYMBOL vmlinux 0x5e8354da __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes -EXPORT_SYMBOL vmlinux 0x5e88aac9 eth_change_mtu -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5ea86879 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x5eb0401e proc_dostring -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ebaf7f2 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x5ece2171 __scm_destroy -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5eff4608 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f03091a dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f387249 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x5f43284b make_kgid -EXPORT_SYMBOL vmlinux 0x5f57bf8b elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x5f6238f6 d_alloc_name -EXPORT_SYMBOL vmlinux 0x5f73db36 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x5f754e5a memset -EXPORT_SYMBOL vmlinux 0x5f7bcb2d mem_map -EXPORT_SYMBOL vmlinux 0x5f81abb9 tty_register_device -EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base -EXPORT_SYMBOL vmlinux 0x5fa6e9b9 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x5fb19d86 tcp_seq_open -EXPORT_SYMBOL vmlinux 0x5fb5a46e inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x5fbe0d80 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5ffbc440 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x60046ac9 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x60283267 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60555362 lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0x605d2702 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x60608289 fddi_type_trans -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x6071525b nd_device_unregister -EXPORT_SYMBOL vmlinux 0x6073732c cur_cpu_spec -EXPORT_SYMBOL vmlinux 0x607c2499 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x609e66e1 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a9c2e7 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x60ae9e3b bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x60b02a6d nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x60b966f5 invalidate_partition -EXPORT_SYMBOL vmlinux 0x60cdc776 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x60eecbeb xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x60f78bdf inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x61016949 of_get_cpu_node -EXPORT_SYMBOL vmlinux 0x610b2ee3 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x61250ce3 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x61318b01 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x613b933b uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x614832de twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x615c3095 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x616190d7 vme_master_request -EXPORT_SYMBOL vmlinux 0x61a2af7b generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x61a3cf6a nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c83f08 of_device_register -EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x622039f1 bio_chain -EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x623a82e5 padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x62401e4a bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x624a2613 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss -EXPORT_SYMBOL vmlinux 0x6255f3f3 ip_do_fragment -EXPORT_SYMBOL vmlinux 0x625859b3 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x625f6701 machine_id -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x627a85d3 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x628c0376 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x62c19874 seq_lseek -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x63742f6f __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x637d91e5 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x6381c383 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x638943c0 check_disk_change -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63a8ecd2 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x63af7a7e dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63d6f8f5 skb_clone -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f998ba sock_edemux -EXPORT_SYMBOL vmlinux 0x63fb94cf agp_put_bridge -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x6424dff1 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x64503b95 from_kuid_munged -EXPORT_SYMBOL vmlinux 0x64565307 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x648b3b2c filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x6497f0d5 sys_copyarea -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x64a70ed9 param_ops_ullong -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x6535397f scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x65400222 __irq_offset_value -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x6569b633 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x65776cb8 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x6583f7f8 of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x65c55eb6 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x65c92156 bd_set_size -EXPORT_SYMBOL vmlinux 0x65ca8932 elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0x65d0f9a8 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e3b8cc pci_bus_type -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x65f5894a elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x661b0ec0 inet_bind -EXPORT_SYMBOL vmlinux 0x66725ecc devm_gpio_free -EXPORT_SYMBOL vmlinux 0x66739fa1 account_page_redirty -EXPORT_SYMBOL vmlinux 0x667c597a swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x6684145c __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x66944144 down_write_trylock -EXPORT_SYMBOL vmlinux 0x66d5a0bb netlink_broadcast -EXPORT_SYMBOL vmlinux 0x66e85780 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x66ecd85a get_super -EXPORT_SYMBOL vmlinux 0x66f1fefa tcp_child_process -EXPORT_SYMBOL vmlinux 0x672a8b94 dst_discard_out -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x674a1b54 set_nlink -EXPORT_SYMBOL vmlinux 0x6760ee04 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x67a63276 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x67af93d4 tty_devnum -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c3af1e register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x67e16ac8 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0x67e1df50 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x68085cc2 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x680c63cd sk_stop_timer -EXPORT_SYMBOL vmlinux 0x682db84c skb_find_text -EXPORT_SYMBOL vmlinux 0x683c968f component_match_add -EXPORT_SYMBOL vmlinux 0x68416fcb fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x6841dc58 sock_from_file -EXPORT_SYMBOL vmlinux 0x684aace3 down_read_trylock -EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit -EXPORT_SYMBOL vmlinux 0x6864a022 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x686e6026 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x687ea151 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x6895740a netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68bc53fc skb_copy -EXPORT_SYMBOL vmlinux 0x68c8eab4 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x68cd14af security_path_rmdir -EXPORT_SYMBOL vmlinux 0x68e0a3f5 skb_pull -EXPORT_SYMBOL vmlinux 0x68e487a2 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x68f8a5e4 fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x68f8e478 scsi_execute -EXPORT_SYMBOL vmlinux 0x6916a76d redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x691d0099 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x692e72e1 key_link -EXPORT_SYMBOL vmlinux 0x69345bee submit_bh -EXPORT_SYMBOL vmlinux 0x6942c1e1 tty_throttle -EXPORT_SYMBOL vmlinux 0x694472fa i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x69580ba6 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x696d3e18 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x6977b6c4 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x697efe6d of_dev_put -EXPORT_SYMBOL vmlinux 0x6980890b nd_btt_probe -EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69ba6e0c scsi_remove_target -EXPORT_SYMBOL vmlinux 0x69d7e5b8 __debugger_ipi -EXPORT_SYMBOL vmlinux 0x69f233e7 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a1b1a50 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x6a1c7336 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x6a2d3f26 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a74c5a9 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a80a3f5 cpm_muram_free -EXPORT_SYMBOL vmlinux 0x6a840369 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x6aa744a8 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x6ab66677 seq_puts -EXPORT_SYMBOL vmlinux 0x6ac0ecaa xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x6ac3702b dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be -EXPORT_SYMBOL vmlinux 0x6ad161ad xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x6ad7f0ed dm_register_target -EXPORT_SYMBOL vmlinux 0x6ad7f4f5 mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x6ad8efa2 devm_ioport_map -EXPORT_SYMBOL vmlinux 0x6ae11224 set_anon_super -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b07be82 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b2bdf2b vfs_create -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b33b917 __sb_start_write -EXPORT_SYMBOL vmlinux 0x6b4ab7db max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x6b656024 register_framebuffer -EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free -EXPORT_SYMBOL vmlinux 0x6b902d58 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x6b90e56d abx500_remove_ops -EXPORT_SYMBOL vmlinux 0x6bc1edea pskb_expand_head -EXPORT_SYMBOL vmlinux 0x6bc2eedd tty_kref_put -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc6fe0d netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x6bd003ec ppp_register_channel -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6bdf8dd1 mmc_power_save_host -EXPORT_SYMBOL vmlinux 0x6bff751b __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c1106b3 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn -EXPORT_SYMBOL vmlinux 0x6c25fd3e elv_rb_add -EXPORT_SYMBOL vmlinux 0x6c30ed6d ata_dev_printk -EXPORT_SYMBOL vmlinux 0x6c37ecc4 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x6c4e5c1a always_delete_dentry -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6ca1d1a4 atomic64_read -EXPORT_SYMBOL vmlinux 0x6ca2d99f input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x6cb01e47 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear -EXPORT_SYMBOL vmlinux 0x6cc59c16 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x6cc8ab4b kmap_to_page -EXPORT_SYMBOL vmlinux 0x6cca8226 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6cead845 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x6cf08df5 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d166fd2 phy_device_register -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d632c91 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put -EXPORT_SYMBOL vmlinux 0x6d7a87c0 iov_iter_init -EXPORT_SYMBOL vmlinux 0x6d9103d5 __blk_run_queue -EXPORT_SYMBOL vmlinux 0x6d9aa430 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x6da7913b mmc_erase -EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns -EXPORT_SYMBOL vmlinux 0x6dab1ee2 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x6dbc96ad __lock_buffer -EXPORT_SYMBOL vmlinux 0x6dd1442b build_skb -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df01ab9 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df7c8fe __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0x6dfc5129 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x6e03bfa0 scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0x6e0de05a blk_run_queue -EXPORT_SYMBOL vmlinux 0x6e334798 udp_proc_register -EXPORT_SYMBOL vmlinux 0x6e336a70 generic_readlink -EXPORT_SYMBOL vmlinux 0x6e379526 kernstart_addr -EXPORT_SYMBOL vmlinux 0x6e546a1c in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6e718054 nvm_end_io -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e758fd8 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x6e75c00d km_report -EXPORT_SYMBOL vmlinux 0x6e7a1d85 inode_init_owner -EXPORT_SYMBOL vmlinux 0x6e7ecee8 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x6e8ed231 param_get_string -EXPORT_SYMBOL vmlinux 0x6e914756 simple_rename -EXPORT_SYMBOL vmlinux 0x6e9b067d padata_alloc_possible -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea3d387 mdiobus_free -EXPORT_SYMBOL vmlinux 0x6ea87368 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x6eb22197 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x6eb74dff proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x6ecdf86b skb_checksum -EXPORT_SYMBOL vmlinux 0x6ecf78d2 skb_make_writable -EXPORT_SYMBOL vmlinux 0x6edff0cf devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x6ee605fe twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x6efe2016 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x6efe3c95 __bforget -EXPORT_SYMBOL vmlinux 0x6efe7c0e iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f3b04d7 param_set_ullong -EXPORT_SYMBOL vmlinux 0x6f4bd16c _dev_info -EXPORT_SYMBOL vmlinux 0x6f524772 put_cmsg -EXPORT_SYMBOL vmlinux 0x6f549101 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x6f6759c1 proc_set_size -EXPORT_SYMBOL vmlinux 0x6f6d09ba bioset_integrity_free -EXPORT_SYMBOL vmlinux 0x6f741365 iput -EXPORT_SYMBOL vmlinux 0x6f7e7975 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6fa41408 try_to_release_page -EXPORT_SYMBOL vmlinux 0x6fa75335 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x6fb757cc qdisc_list_add -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fcce395 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x6fd7c04d mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x6fdfa3b2 skb_dequeue -EXPORT_SYMBOL vmlinux 0x6fe45ef3 page_waitqueue -EXPORT_SYMBOL vmlinux 0x70023d40 vme_bus_type -EXPORT_SYMBOL vmlinux 0x70059da8 inet6_protos -EXPORT_SYMBOL vmlinux 0x700da556 qdisc_list_del -EXPORT_SYMBOL vmlinux 0x7011e6a4 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x7013a99b __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x703aee26 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x703bb8b2 locks_free_lock -EXPORT_SYMBOL vmlinux 0x704aac8a input_close_device -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x705ee9cc jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x70610a20 abort_creds -EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x70679c38 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x7068ea84 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707408bd tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x70810386 neigh_table_init -EXPORT_SYMBOL vmlinux 0x70874a14 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x708d996b param_get_invbool -EXPORT_SYMBOL vmlinux 0x70a4707d mmc_can_trim -EXPORT_SYMBOL vmlinux 0x70a666ab wake_up_process -EXPORT_SYMBOL vmlinux 0x70b5e0c5 pci_device_from_OF_node -EXPORT_SYMBOL vmlinux 0x70c2ed6f mdio_bus_type -EXPORT_SYMBOL vmlinux 0x70d888b7 __debugger_fault_handler -EXPORT_SYMBOL vmlinux 0x70d9f301 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x70ecb5e5 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x70ed5acf md_reload_sb -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x71392362 kfree_put_link -EXPORT_SYMBOL vmlinux 0x7142c0a5 blk_start_request -EXPORT_SYMBOL vmlinux 0x714690ea nf_afinfo -EXPORT_SYMBOL vmlinux 0x71664c7f cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x716bf61f mach_bsc9132_qds -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71c90087 memcmp -EXPORT_SYMBOL vmlinux 0x71dddb7c swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x71ddffc0 neigh_parms_release -EXPORT_SYMBOL vmlinux 0x71e166dd agp_backend_acquire -EXPORT_SYMBOL vmlinux 0x71f0ba2c jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7209a045 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x72321928 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x72587648 bio_integrity_free -EXPORT_SYMBOL vmlinux 0x727107ef xfrm_register_type -EXPORT_SYMBOL vmlinux 0x727837bb peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x72a1857c vfs_write -EXPORT_SYMBOL vmlinux 0x72a2c64f flush_icache_user_range -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b5685b pci_set_mwi -EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x72ceaf2a of_node_put -EXPORT_SYMBOL vmlinux 0x72d4c23c fsl_get_sys_freq -EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f274dd csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731c82cf cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x732e1bcb inet_shutdown -EXPORT_SYMBOL vmlinux 0x73381f81 dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0x73384056 mach_corenet_generic -EXPORT_SYMBOL vmlinux 0x733b2383 next_tlbcam_idx -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x734408c8 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x735c025f skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue -EXPORT_SYMBOL vmlinux 0x73710a3e dqstats -EXPORT_SYMBOL vmlinux 0x73979de6 atomic64_or -EXPORT_SYMBOL vmlinux 0x73b9b68a poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0x73caf2b0 alloc_fddidev -EXPORT_SYMBOL vmlinux 0x73ddad2a nf_log_trace -EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x73e2b716 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x7448e6a2 dma_set_mask -EXPORT_SYMBOL vmlinux 0x74691b93 __neigh_create -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x747d7299 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x74882671 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x74887a9b __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x749e02ac phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x74a8641a vfs_fsync -EXPORT_SYMBOL vmlinux 0x74a9fa58 nf_register_hook -EXPORT_SYMBOL vmlinux 0x74baea4a d_move -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c32991 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x74c87918 mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x7510b541 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x7516c525 check_disk_size_change -EXPORT_SYMBOL vmlinux 0x751df7a4 noop_fsync -EXPORT_SYMBOL vmlinux 0x751f3488 tcp_check_req -EXPORT_SYMBOL vmlinux 0x751f9c07 input_register_handle -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x75440454 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x755278ce inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x7553bb7b lro_flush_all -EXPORT_SYMBOL vmlinux 0x755c9dd9 generic_removexattr -EXPORT_SYMBOL vmlinux 0x756aaf22 pci_enable_msix -EXPORT_SYMBOL vmlinux 0x756dd160 start_thread -EXPORT_SYMBOL vmlinux 0x757eaf0a registered_fb -EXPORT_SYMBOL vmlinux 0x757f088f cpm_muram_offset -EXPORT_SYMBOL vmlinux 0x7581dcd0 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x7591a017 mdiobus_write -EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 -EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0x75a42b5f lookup_one_len -EXPORT_SYMBOL vmlinux 0x75a4a39b __module_get -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75c342a5 nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x75ce14e1 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x75dbfcb8 inet_del_offload -EXPORT_SYMBOL vmlinux 0x75f08fdc sock_recvmsg -EXPORT_SYMBOL vmlinux 0x75f1ab2e __elv_add_request -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x7611e957 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x76569d16 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append -EXPORT_SYMBOL vmlinux 0x7678693a mpage_readpages -EXPORT_SYMBOL vmlinux 0x76786b6c __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x768f2d30 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x76a7927e key_unlink -EXPORT_SYMBOL vmlinux 0x76ab05a8 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x76b1c2cb vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x76b6a9d0 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x76c0cbd9 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x76cbe5a4 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x76ccd206 ns_capable -EXPORT_SYMBOL vmlinux 0x76cff93e tcf_hash_check -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76d563b8 __block_write_begin -EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be -EXPORT_SYMBOL vmlinux 0x76e48c41 input_allocate_device -EXPORT_SYMBOL vmlinux 0x76f5184f qdisc_reset -EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x77229ede vfs_readf -EXPORT_SYMBOL vmlinux 0x7724563e mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x77481cdb vc_resize -EXPORT_SYMBOL vmlinux 0x776f011d is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x7787e3b6 module_refcount -EXPORT_SYMBOL vmlinux 0x778d1532 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x77988820 dev_change_flags -EXPORT_SYMBOL vmlinux 0x7799741a rtnl_notify -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x779e9101 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x77a12e2a inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x77a491c1 generic_read_dir -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77cb2cd4 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x77e0c6b0 validate_sp -EXPORT_SYMBOL vmlinux 0x77e64b53 pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x77ec993d input_register_device -EXPORT_SYMBOL vmlinux 0x782567ec memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x7825c5dd security_inode_permission -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x7851288e finish_open -EXPORT_SYMBOL vmlinux 0x785caca7 nf_register_hooks -EXPORT_SYMBOL vmlinux 0x7860208d file_path -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78afc428 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x78d22fde netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78fb0e0c proc_remove -EXPORT_SYMBOL vmlinux 0x792623b4 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x79474497 vme_irq_request -EXPORT_SYMBOL vmlinux 0x7955a997 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x798337cb skb_unlink -EXPORT_SYMBOL vmlinux 0x7998c778 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79c0288d __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x79ca70d1 blk_register_region -EXPORT_SYMBOL vmlinux 0x79d9f59d dev_notice -EXPORT_SYMBOL vmlinux 0x79da76f1 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x7a14becc devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x7a1a7c8e xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x7a2535f3 import_iovec -EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 -EXPORT_SYMBOL vmlinux 0x7a35bb4c sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x7a3a020f fifo_set_limit -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a522064 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x7a709446 textsearch_destroy -EXPORT_SYMBOL vmlinux 0x7a7f9659 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x7a8975cb free_netdev -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a97f3a5 input_unregister_handle -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa7fa2d jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x7ab6b3ee netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad0ba42 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x7ade3af0 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x7adfedc6 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf -EXPORT_SYMBOL vmlinux 0x7b116c2e crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress -EXPORT_SYMBOL vmlinux 0x7b2359f4 blk_put_queue -EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x7b2c2a48 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x7b4c0be7 vfs_symlink -EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7b687846 register_shrinker -EXPORT_SYMBOL vmlinux 0x7b793a63 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x7b811fea blk_sync_queue -EXPORT_SYMBOL vmlinux 0x7b85a61c i2c_verify_client -EXPORT_SYMBOL vmlinux 0x7ba7d31d sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x7bb19fc7 netdev_alert -EXPORT_SYMBOL vmlinux 0x7bbd6ac2 read_dev_sector -EXPORT_SYMBOL vmlinux 0x7bc79518 tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x7bc8f259 phy_device_remove -EXPORT_SYMBOL vmlinux 0x7be16c35 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x7be4827c pci_dram_offset -EXPORT_SYMBOL vmlinux 0x7be75a93 skb_trim -EXPORT_SYMBOL vmlinux 0x7beef68c twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c219975 commit_creds -EXPORT_SYMBOL vmlinux 0x7c284cae sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x7c2ee4e0 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7c9ba756 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x7ca3b632 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cb9faa3 vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0x7cc1c52f agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d0ff35b pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d2e13a4 of_create_pci_dev -EXPORT_SYMBOL vmlinux 0x7d332409 devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0x7d35174b security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x7d3910fb touch_atime -EXPORT_SYMBOL vmlinux 0x7d566c88 __put_cred -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d784d09 d_alloc -EXPORT_SYMBOL vmlinux 0x7d9a45dd kernel_listen -EXPORT_SYMBOL vmlinux 0x7da25571 contig_page_data -EXPORT_SYMBOL vmlinux 0x7da5d07a pci_get_device -EXPORT_SYMBOL vmlinux 0x7db3dbbd inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x7dcc1ba5 pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x7dcc6603 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x7dd0b61c fb_blank -EXPORT_SYMBOL vmlinux 0x7dd4d3c5 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x7de31563 unregister_filesystem -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7dfd2eff inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x7e2366d5 d_lookup -EXPORT_SYMBOL vmlinux 0x7e31a9f0 tty_name -EXPORT_SYMBOL vmlinux 0x7e347f09 simple_release_fs -EXPORT_SYMBOL vmlinux 0x7e351ff6 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x7e37393a igrab -EXPORT_SYMBOL vmlinux 0x7e4fc49f dquot_commit -EXPORT_SYMBOL vmlinux 0x7e5707ef up_write -EXPORT_SYMBOL vmlinux 0x7e6703fa xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x7e688bf5 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x7e747859 open_exec -EXPORT_SYMBOL vmlinux 0x7e7df026 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x7e7fba25 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress -EXPORT_SYMBOL vmlinux 0x7e8b52bd have_submounts -EXPORT_SYMBOL vmlinux 0x7e9d1da2 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x7e9f1f2e get_agp_version -EXPORT_SYMBOL vmlinux 0x7e9f5049 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x7eb41f4e inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x7ed57142 sock_no_connect -EXPORT_SYMBOL vmlinux 0x7ede65a7 dentry_path_raw -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7ee73c0c memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0x7ef3bfab d_tmpfile -EXPORT_SYMBOL vmlinux 0x7ef7eb8f mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f0aaeba max8925_reg_write -EXPORT_SYMBOL vmlinux 0x7f1c475f dquot_get_state -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f3777a6 from_kprojid -EXPORT_SYMBOL vmlinux 0x7f37979c of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x7f3bbef1 udplite_prot -EXPORT_SYMBOL vmlinux 0x7f49a7b0 down_read -EXPORT_SYMBOL vmlinux 0x7f5826bf cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x7f5990d0 fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f6bb6e2 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x7f839210 nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x7f9cfe21 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x7fa6371b scsi_scan_host -EXPORT_SYMBOL vmlinux 0x7fad3466 bio_map_kern -EXPORT_SYMBOL vmlinux 0x7fb97986 mmc_put_card -EXPORT_SYMBOL vmlinux 0x7fcab5c0 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fec409a input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x7fffc7ef do_truncate -EXPORT_SYMBOL vmlinux 0x80224e26 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x8074fa27 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x80815468 elv_unregister_queue -EXPORT_SYMBOL vmlinux 0x80831e1d phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x80a49d98 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x80ad1b36 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x80b5a9e6 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x80c4c5c8 bioset_free -EXPORT_SYMBOL vmlinux 0x80c9b183 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80f9940c mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x80fc99c7 set_groups -EXPORT_SYMBOL vmlinux 0x810f402e nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x81129e22 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x812fb320 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x81466f65 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x814d66a1 elevator_init -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815c56d0 cpu_present_mask -EXPORT_SYMBOL vmlinux 0x816396f0 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x8166c2b9 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x8169d8e9 pci_release_region -EXPORT_SYMBOL vmlinux 0x817e9b49 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x819c41f8 ps2_init -EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x81ab8948 may_umount_tree -EXPORT_SYMBOL vmlinux 0x81b7a9f3 __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x81cb6bb1 __nd_iostat_start -EXPORT_SYMBOL vmlinux 0x81cd0991 kernel_connect -EXPORT_SYMBOL vmlinux 0x81d33fc0 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x81d34475 scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0x81da0c4c noop_llseek -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e75c52 mntput -EXPORT_SYMBOL vmlinux 0x81e93697 vga_client_register -EXPORT_SYMBOL vmlinux 0x81f00e23 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x8224b795 tty_port_init -EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback -EXPORT_SYMBOL vmlinux 0x8235e85b fsync_bdev -EXPORT_SYMBOL vmlinux 0x824710bd fddi_change_mtu -EXPORT_SYMBOL vmlinux 0x824759f1 secpath_dup -EXPORT_SYMBOL vmlinux 0x824e25f1 md_write_start -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x828547e4 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x82a2ee4c blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x82a66f19 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x82ac0fda blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82c1145a of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x82cd540a atomic64_and -EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x8320e4dd blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x833ae349 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x8340dd81 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x83539af6 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x835c1855 blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x83755bb9 inet_accept -EXPORT_SYMBOL vmlinux 0x837a0681 set_page_dirty -EXPORT_SYMBOL vmlinux 0x8389f662 vga_tryget -EXPORT_SYMBOL vmlinux 0x838ef723 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x838fcd4f kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83c8d676 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x842dfe77 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x84333816 inet_select_addr -EXPORT_SYMBOL vmlinux 0x8438ac64 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x843a359f twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x8442d7f5 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x8442fcf6 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x844404cf ISA_DMA_THRESHOLD -EXPORT_SYMBOL vmlinux 0x845cbb93 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0x84689e73 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x846ba2fb __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x8495556b release_pages -EXPORT_SYMBOL vmlinux 0x849669e5 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0x849c9719 netdev_warn -EXPORT_SYMBOL vmlinux 0x84b183ae strncmp -EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock -EXPORT_SYMBOL vmlinux 0x84cb8b1a of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x84f7ae82 input_reset_device -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x8531992f fs_bio_set -EXPORT_SYMBOL vmlinux 0x85429bf3 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x85450bca do_splice_from -EXPORT_SYMBOL vmlinux 0x8566bac7 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x859f9f67 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85bdfa81 param_get_ulong -EXPORT_SYMBOL vmlinux 0x85bf44ed xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0x85d484c1 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85ebcec5 netif_rx_ni -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f76cbb mdiobus_scan -EXPORT_SYMBOL vmlinux 0x85fa0dc0 inet6_getname -EXPORT_SYMBOL vmlinux 0x85ffbf22 dcache_dir_close -EXPORT_SYMBOL vmlinux 0x86018def __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x862f934b ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x864de2d8 param_get_ushort -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x866a04c7 genphy_read_status -EXPORT_SYMBOL vmlinux 0x8687cd2d disk_stack_limits -EXPORT_SYMBOL vmlinux 0x86897ebf fb_pan_display -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x8690b5b9 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x86aaf2d1 keyring_clear -EXPORT_SYMBOL vmlinux 0x86c67be2 up_read -EXPORT_SYMBOL vmlinux 0x86ccfa0a pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x86cd9dde dquot_enable -EXPORT_SYMBOL vmlinux 0x86d022e7 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x87075c28 key_task_permission -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x873c8352 mmc_start_req -EXPORT_SYMBOL vmlinux 0x87579de4 tty_lock -EXPORT_SYMBOL vmlinux 0x875afacc genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x87cca441 pci_bus_get -EXPORT_SYMBOL vmlinux 0x87f9031a take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x88007aba blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x8808cca6 PDE_DATA -EXPORT_SYMBOL vmlinux 0x880a616e netif_receive_skb -EXPORT_SYMBOL vmlinux 0x880ed172 vfs_rename -EXPORT_SYMBOL vmlinux 0x88279f25 cpm_muram_alloc -EXPORT_SYMBOL vmlinux 0x882891b0 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x883df17a cont_write_begin -EXPORT_SYMBOL vmlinux 0x884371d2 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x8843fddb __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x88695f45 of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x88742e51 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x8874f60d dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x8879bbea softnet_data -EXPORT_SYMBOL vmlinux 0x8890ab7f fsl_ifc_ctrl_dev -EXPORT_SYMBOL vmlinux 0x889c486f deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x88a3d219 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x88a7b8e8 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x88dcaee9 filemap_fault -EXPORT_SYMBOL vmlinux 0x88f8c69c clear_inode -EXPORT_SYMBOL vmlinux 0x890011db ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x8909cbfa tty_port_close_start -EXPORT_SYMBOL vmlinux 0x890a7bf1 param_set_long -EXPORT_SYMBOL vmlinux 0x8912e121 param_set_byte -EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy -EXPORT_SYMBOL vmlinux 0x893e5529 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x893e9e4d nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x89958baa mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x8995cc74 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x89a340bc blk_finish_request -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89b8c1fc blk_init_queue_node -EXPORT_SYMBOL vmlinux 0x89d1f37f dev_mc_add -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x89df28d7 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x89ec2afd xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x89f596f7 dquot_acquire -EXPORT_SYMBOL vmlinux 0x89f5eedf tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0x8a14f5b0 skb_split -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a2f7be8 tcf_hash_insert -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4d59c7 set_blocksize -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a585431 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x8a5beb10 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x8a769b4d iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a853bba pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x8a86d7f8 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aac11f1 kobject_add -EXPORT_SYMBOL vmlinux 0x8ab4079e atomic64_add -EXPORT_SYMBOL vmlinux 0x8afafe78 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x8aff29c4 dget_parent -EXPORT_SYMBOL vmlinux 0x8b1217ae unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b5b673a mmc_flush_cache -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b6f2e58 agp_generic_enable -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b85f7bd pci_select_bars -EXPORT_SYMBOL vmlinux 0x8b99902a scsi_dma_map -EXPORT_SYMBOL vmlinux 0x8ba210a9 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x8baa70d2 dev_load -EXPORT_SYMBOL vmlinux 0x8bae71a1 keyring_search -EXPORT_SYMBOL vmlinux 0x8bb5b3cc devm_gpiod_get -EXPORT_SYMBOL vmlinux 0x8bcad5f5 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x8bd76682 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x8bddf512 inet_listen -EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr -EXPORT_SYMBOL vmlinux 0x8bfee241 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x8c0ddade netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x8c119a3b simple_nosetlease -EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 -EXPORT_SYMBOL vmlinux 0x8c533c3c of_get_min_tck -EXPORT_SYMBOL vmlinux 0x8c536459 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x8c542e0e neigh_connected_output -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c85c695 dqput -EXPORT_SYMBOL vmlinux 0x8c9677a5 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x8cbf0cff generic_file_open -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8ccdcf1d dquot_scan_active -EXPORT_SYMBOL vmlinux 0x8cdb16e5 is_bad_inode -EXPORT_SYMBOL vmlinux 0x8cdf3a08 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x8ce1ac2c skb_queue_purge -EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 -EXPORT_SYMBOL vmlinux 0x8d070907 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x8d26a900 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d635820 register_quota_format -EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d77e4ef __lock_page -EXPORT_SYMBOL vmlinux 0x8d884727 d_invalidate -EXPORT_SYMBOL vmlinux 0x8da37eb7 md_register_thread -EXPORT_SYMBOL vmlinux 0x8db00974 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x8dc5218c mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x8dc7d113 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x8dca0cc6 blkdev_put -EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create -EXPORT_SYMBOL vmlinux 0x8e224482 consume_skb -EXPORT_SYMBOL vmlinux 0x8e5cb0c5 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e82c3ce scsi_device_get -EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x8e8a0e2b blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x8e8d58da diu_ops -EXPORT_SYMBOL vmlinux 0x8e90cc3d ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x8ee94c5b pci_iomap_range -EXPORT_SYMBOL vmlinux 0x8ef98991 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x8f06249c con_copy_unimap -EXPORT_SYMBOL vmlinux 0x8f2e5b09 blk_end_request -EXPORT_SYMBOL vmlinux 0x8f334870 dev_uc_add -EXPORT_SYMBOL vmlinux 0x8f567734 led_set_brightness -EXPORT_SYMBOL vmlinux 0x8f5e3766 nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0x8f64f111 generic_write_end -EXPORT_SYMBOL vmlinux 0x8f803e32 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x8f949e2b pci_disable_device -EXPORT_SYMBOL vmlinux 0x8fa434e3 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x8fb9dbee jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x8fbade31 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x8fbf37e0 profile_pc -EXPORT_SYMBOL vmlinux 0x8fbf7a0d proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x8fc0aca9 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0x8fced70c sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x8ff9a883 follow_up -EXPORT_SYMBOL vmlinux 0x8ffda858 agp_copy_info -EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 -EXPORT_SYMBOL vmlinux 0x902df6f0 udp_seq_open -EXPORT_SYMBOL vmlinux 0x902e8ca0 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x9031427a md_finish_reshape -EXPORT_SYMBOL vmlinux 0x903a6da2 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x90433e9e mac_find_mode -EXPORT_SYMBOL vmlinux 0x9054641a poll_freewait -EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent -EXPORT_SYMBOL vmlinux 0x90812ad8 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x90a0903d inet_frag_find -EXPORT_SYMBOL vmlinux 0x90a8e733 netif_rx -EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x90d33363 get_disk -EXPORT_SYMBOL vmlinux 0x90d38ae6 twl6040_power -EXPORT_SYMBOL vmlinux 0x9135f1ce scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x914a5bf6 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x9175c2f3 phy_suspend -EXPORT_SYMBOL vmlinux 0x918c06b5 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x91ae8f97 netif_device_attach -EXPORT_SYMBOL vmlinux 0x91cfa487 sg_miter_next -EXPORT_SYMBOL vmlinux 0x91d2c897 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x91dee03a vme_slot_num -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x920c60c9 neigh_update -EXPORT_SYMBOL vmlinux 0x921ada35 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x9225b8d8 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x92333eca generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x92431005 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x9244c68c simple_link -EXPORT_SYMBOL vmlinux 0x92640372 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x9269b50b max8998_read_reg -EXPORT_SYMBOL vmlinux 0x928cbf0e nf_log_set -EXPORT_SYMBOL vmlinux 0x92a47640 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92df30f7 block_write_end -EXPORT_SYMBOL vmlinux 0x92ef2402 to_ndd -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x9306b31d mmc_can_erase -EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x932d98c1 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x933ab1d1 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x9362d687 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x9363d2de filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x9387a6b3 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x939a5d2a register_gifconf -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93bc0bee alloc_file -EXPORT_SYMBOL vmlinux 0x93c896fc md_write_end -EXPORT_SYMBOL vmlinux 0x93cae10a blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x93e0638f xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x93ebc165 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x93f57924 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x940a01c1 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x941bdf20 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x943c2203 dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x943c827f of_get_ibm_chip_id -EXPORT_SYMBOL vmlinux 0x94549c67 pid_task -EXPORT_SYMBOL vmlinux 0x947a02b0 skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0x9486506f simple_empty -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x949883bf __frontswap_test -EXPORT_SYMBOL vmlinux 0x94992793 generic_file_llseek -EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask -EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x94fc9032 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x9508964a mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x950fce72 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x9514151a _mcount -EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb -EXPORT_SYMBOL vmlinux 0x953977f7 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x954c4133 mount_single -EXPORT_SYMBOL vmlinux 0x954cec2a inode_set_flags -EXPORT_SYMBOL vmlinux 0x95c63339 prepare_creds -EXPORT_SYMBOL vmlinux 0x95e722ef blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x95ee33ef __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x961e8482 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x9634df63 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x963adc4d led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0x963c8702 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x963ee5c8 genl_notify -EXPORT_SYMBOL vmlinux 0x964c275d kernel_getpeername -EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x96ae9d4f clear_user_page -EXPORT_SYMBOL vmlinux 0x96c834a7 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x96cca30e xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96dbce34 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x96e4330f bdi_register_dev -EXPORT_SYMBOL vmlinux 0x96f83ae3 agp_bridge -EXPORT_SYMBOL vmlinux 0x97111631 dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x97255bdf strlen -EXPORT_SYMBOL vmlinux 0x9726d2c8 blk_init_tags -EXPORT_SYMBOL vmlinux 0x97303dab sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x973d0eeb iget_locked -EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x977cf784 to_nd_btt -EXPORT_SYMBOL vmlinux 0x97818392 sock_wake_async -EXPORT_SYMBOL vmlinux 0x978b3c1b simple_statfs -EXPORT_SYMBOL vmlinux 0x978f4a47 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x97b3c085 vlan_vid_add -EXPORT_SYMBOL vmlinux 0x97c7eedc page_cache_next_hole -EXPORT_SYMBOL vmlinux 0x97ce91ff mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x97db3eec led_update_brightness -EXPORT_SYMBOL vmlinux 0x97fa3df0 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x981461d6 ether_setup -EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x9838d891 pci_set_master -EXPORT_SYMBOL vmlinux 0x983c11ee ping_prot -EXPORT_SYMBOL vmlinux 0x9845880b blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x98593082 vm_insert_page -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x9873e2a9 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x9890175a prepare_binprm -EXPORT_SYMBOL vmlinux 0x9894e21c replace_mount_options -EXPORT_SYMBOL vmlinux 0x989cd729 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x98ad18da netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x98c2e16b jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x98c7feb7 qdisc_destroy -EXPORT_SYMBOL vmlinux 0x98d97ace dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x98fe7882 DMA_MODE_READ -EXPORT_SYMBOL vmlinux 0x99112892 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x993ee5f6 of_get_mac_address -EXPORT_SYMBOL vmlinux 0x994f444f jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x995d05b9 netif_napi_add -EXPORT_SYMBOL vmlinux 0x996120ba generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x99697780 dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0x9970c01f sk_free -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999b88dc forget_cached_acl -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99af1a4b dev_mc_flush -EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x99b56e6a pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0x99bb8806 memmove -EXPORT_SYMBOL vmlinux 0x99bc8bb4 tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0x99c67975 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x99c88d30 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99de958d free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x9a06eaff xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x9a0a0c81 bdevname -EXPORT_SYMBOL vmlinux 0x9a0cd836 mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a38a1b7 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x9a397840 dev_close -EXPORT_SYMBOL vmlinux 0x9a4447e8 msi_bitmap_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0x9a56077d phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0x9a8228bf search_binary_handler -EXPORT_SYMBOL vmlinux 0x9a92ec99 ppp_unit_number -EXPORT_SYMBOL vmlinux 0x9aa4bc24 d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0x9ab0a51b simple_readpage -EXPORT_SYMBOL vmlinux 0x9ab149a7 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9afaa03e vm_map_ram -EXPORT_SYMBOL vmlinux 0x9afdb02d bio_phys_segments -EXPORT_SYMBOL vmlinux 0x9b007ea4 __devm_release_region -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b80c455 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba5cdb9 bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bcb50af truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x9bd343d2 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9c015869 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x9c0a8c3e pci_disable_msi -EXPORT_SYMBOL vmlinux 0x9c106817 d_obtain_root -EXPORT_SYMBOL vmlinux 0x9c121c14 phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0x9c1a929a clear_nlink -EXPORT_SYMBOL vmlinux 0x9c2d6df2 input_release_device -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c75698b grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x9c832c2a mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x9ca3b122 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x9ca59395 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb56704 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x9cb79a1f bio_endio -EXPORT_SYMBOL vmlinux 0x9cc85d9f proto_register -EXPORT_SYMBOL vmlinux 0x9cde5925 __register_binfmt -EXPORT_SYMBOL vmlinux 0x9ce269e7 inode_init_once -EXPORT_SYMBOL vmlinux 0x9ce3f83f nvram_write_byte -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs -EXPORT_SYMBOL vmlinux 0x9d1a8f2e serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x9d1d8110 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x9d26839f key_payload_reserve -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d50d39a kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x9d5f2766 vme_lm_request -EXPORT_SYMBOL vmlinux 0x9d669763 memcpy -EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0x9d72229b fsl_ifc_find -EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x9dccbec1 i8042_install_filter -EXPORT_SYMBOL vmlinux 0x9dd4a322 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x9dee9a84 cpm2_immr -EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e1a3f29 read_cache_pages -EXPORT_SYMBOL vmlinux 0x9e2c54cd copy_to_iter -EXPORT_SYMBOL vmlinux 0x9e44229c of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x9e476240 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e54ad1e tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0x9e5886cc ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e66e0d2 kdb_current_task -EXPORT_SYMBOL vmlinux 0x9e6bc64b __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x9e70b07c lwtunnel_output -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e7a6ffc load_nls_default -EXPORT_SYMBOL vmlinux 0x9e7adad3 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x9e8f6d8e copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x9e92295c napi_consume_skb -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea51f5b freezing_slow_path -EXPORT_SYMBOL vmlinux 0x9ebd09e0 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9ed87fd8 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x9efb21aa register_netdevice -EXPORT_SYMBOL vmlinux 0x9f05e388 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x9f3712df xattr_full_name -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f512115 key_put -EXPORT_SYMBOL vmlinux 0x9f661b42 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x9f6f8866 get_fs_type -EXPORT_SYMBOL vmlinux 0x9f774ae1 is_nd_btt -EXPORT_SYMBOL vmlinux 0x9f8377b6 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x9f87c594 of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fdb7934 seq_path -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa02f6b95 of_n_size_cells -EXPORT_SYMBOL vmlinux 0xa041a858 of_match_node -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa047bc0d phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa04c40ed pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa06740ec bprm_change_interp -EXPORT_SYMBOL vmlinux 0xa06a22e0 of_get_parent -EXPORT_SYMBOL vmlinux 0xa06b359b neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa0aa86ea phy_driver_register -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b3ad12 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0xa0d2fbf2 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xa0d5b404 get_gendisk -EXPORT_SYMBOL vmlinux 0xa0d9dd6d udp_ioctl -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e35d67 follow_pfn -EXPORT_SYMBOL vmlinux 0xa0e87d21 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0fb8439 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0fc8adc nf_unregister_hook -EXPORT_SYMBOL vmlinux 0xa105fc22 update_region -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa10cea11 dev_emerg -EXPORT_SYMBOL vmlinux 0xa10fc64d giveup_fpu -EXPORT_SYMBOL vmlinux 0xa1164066 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xa119d24c __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa15b4fdd of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0xa173e39b add_disk -EXPORT_SYMBOL vmlinux 0xa1860952 input_register_handler -EXPORT_SYMBOL vmlinux 0xa18d3536 __devm_request_region -EXPORT_SYMBOL vmlinux 0xa1ab0683 nobh_write_begin -EXPORT_SYMBOL vmlinux 0xa1b0abf0 input_open_device -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1c5e06d devfreq_resume_device -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xa1d4380a phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa24c6784 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xa25a6f4b tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xa268c55c vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa2a9b16d bio_clone_fast -EXPORT_SYMBOL vmlinux 0xa2b35396 sock_wfree -EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register -EXPORT_SYMBOL vmlinux 0xa2d1e812 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xa2d2291c backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xa2d9199c cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait -EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0xa30d78ef devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa352d709 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xa3681407 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0xa3688964 pci_scan_slot -EXPORT_SYMBOL vmlinux 0xa36e903e rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xa36f1645 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xa37b221e md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0xa381944f dql_reset -EXPORT_SYMBOL vmlinux 0xa38b4530 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot -EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay -EXPORT_SYMBOL vmlinux 0xa39cace3 bdi_init -EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xa3abeaf3 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xa3b76660 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xa3bc1eb7 param_get_byte -EXPORT_SYMBOL vmlinux 0xa3d2a6c6 posix_unblock_lock -EXPORT_SYMBOL vmlinux 0xa3dbb7a7 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xa3e75545 flush_tlb_kernel_range -EXPORT_SYMBOL vmlinux 0xa4126f4d csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xa418e11c rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0xa4235beb devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xa424b532 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa4924684 reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le -EXPORT_SYMBOL vmlinux 0xa4b300d3 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xa4b5beeb netdev_crit -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4cccb36 swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4dae10d vga_con -EXPORT_SYMBOL vmlinux 0xa500e1f7 neigh_seq_next -EXPORT_SYMBOL vmlinux 0xa5189e41 user_revoke -EXPORT_SYMBOL vmlinux 0xa52ad8b9 __d_drop -EXPORT_SYMBOL vmlinux 0xa536beac dma_pool_create -EXPORT_SYMBOL vmlinux 0xa540afff pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free -EXPORT_SYMBOL vmlinux 0xa587685a update_devfreq -EXPORT_SYMBOL vmlinux 0xa59412cd pipe_lock -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5a3ff3f xfrm_init_state -EXPORT_SYMBOL vmlinux 0xa5ac80c3 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0xa5b59b2d phy_init_eee -EXPORT_SYMBOL vmlinux 0xa5c690bd pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xa5f20eec agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0xa61fdb57 sget_userns -EXPORT_SYMBOL vmlinux 0xa63248ba abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0xa6410fd0 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xa653bf8a end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa68bcd31 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa6c26f67 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xa6df8e11 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa70f9939 tty_do_resize -EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock -EXPORT_SYMBOL vmlinux 0xa732a2e8 wait_iff_congested -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get -EXPORT_SYMBOL vmlinux 0xa7697098 __skb_get_hash -EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xa79c55f7 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xa7a28908 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xa7b6cb5e of_get_next_parent -EXPORT_SYMBOL vmlinux 0xa7bfd922 of_device_unregister -EXPORT_SYMBOL vmlinux 0xa7c0023e nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0xa7e1a92c sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xa7e94902 kmap_pte -EXPORT_SYMBOL vmlinux 0xa7ea6809 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0xa808a46c of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0xa8147822 iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0xa81ef024 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xa8209dcd inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xa82468c7 security_path_truncate -EXPORT_SYMBOL vmlinux 0xa842af3f tso_build_data -EXPORT_SYMBOL vmlinux 0xa842f67e pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa84e30d8 tcp_req_err -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa879e5a0 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xa887f0c5 set_device_ro -EXPORT_SYMBOL vmlinux 0xa89464b7 __ashldi3 -EXPORT_SYMBOL vmlinux 0xa8f8cab9 unregister_nls -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start -EXPORT_SYMBOL vmlinux 0xa94a9280 dentry_update_name_case -EXPORT_SYMBOL vmlinux 0xa9571d6d DMA_MODE_WRITE -EXPORT_SYMBOL vmlinux 0xa95f208c ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa9889285 blk_integrity_register -EXPORT_SYMBOL vmlinux 0xa98c9cb0 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xa99d47bc stop_tty -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9c906a3 security_task_getsecid -EXPORT_SYMBOL vmlinux 0xaa07c6c6 km_query -EXPORT_SYMBOL vmlinux 0xaa200afd dev_add_offload -EXPORT_SYMBOL vmlinux 0xaa2e91b3 nd_iostat_end -EXPORT_SYMBOL vmlinux 0xaa4287b0 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xaa448570 mmc_of_parse -EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock -EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r -EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa7f8d01 mmc_get_card -EXPORT_SYMBOL vmlinux 0xaa86f5ac pci_request_region -EXPORT_SYMBOL vmlinux 0xaa9293ca input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0xaa938c02 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xaa944c31 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0xaaab8067 cpu_sibling_map -EXPORT_SYMBOL vmlinux 0xaab6d623 kernel_param_lock -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaadaa3c7 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0xaae40606 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab0f6b33 sock_wmalloc -EXPORT_SYMBOL vmlinux 0xab228e31 csum_tcpudp_magic -EXPORT_SYMBOL vmlinux 0xab648ca2 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0xab694444 bsearch -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab83fcaf sys_imageblit -EXPORT_SYMBOL vmlinux 0xaba2ee05 misc_register -EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xaba73a41 nobh_write_end -EXPORT_SYMBOL vmlinux 0xaba9284f of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabdf5f54 bio_put -EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xabfe6835 phy_start_aneg -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac0ca20e bitmap_unplug -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac1c8843 dump_page -EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xac4cc1bc lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xac5deaac fasync_helper -EXPORT_SYMBOL vmlinux 0xac6c2e5b of_find_node_by_type -EXPORT_SYMBOL vmlinux 0xac979252 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacc3e016 phy_disconnect -EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd00d01 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xacd0bdf7 kobject_get -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad28ff72 notify_change -EXPORT_SYMBOL vmlinux 0xad329f1a textsearch_register -EXPORT_SYMBOL vmlinux 0xad375fbb elevator_change -EXPORT_SYMBOL vmlinux 0xad3f94fa blk_get_request -EXPORT_SYMBOL vmlinux 0xad450384 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xad59796f pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xad62dc84 of_dev_get -EXPORT_SYMBOL vmlinux 0xad64f53d __pagevec_release -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit -EXPORT_SYMBOL vmlinux 0xadc1e004 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xadc446d1 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xadc7d258 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xaddce86e simple_follow_link -EXPORT_SYMBOL vmlinux 0xaddd4770 __debugger_iabr_match -EXPORT_SYMBOL vmlinux 0xadf0811d get_baudrate -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae2190b8 __brelse -EXPORT_SYMBOL vmlinux 0xae358236 fence_signal -EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0xae7b554f bdi_register_owner -EXPORT_SYMBOL vmlinux 0xae7c0c25 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xae8415a2 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup -EXPORT_SYMBOL vmlinux 0xae9bfef8 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xaea9743d dev_uc_sync -EXPORT_SYMBOL vmlinux 0xaeab1009 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xaf0b81c2 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xaf156a97 blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait -EXPORT_SYMBOL vmlinux 0xaf393731 phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf473afb skb_free_datagram -EXPORT_SYMBOL vmlinux 0xaf473c83 flush_tlb_range -EXPORT_SYMBOL vmlinux 0xaf52ea3e inet_offloads -EXPORT_SYMBOL vmlinux 0xaf70dd43 invalidate_bdev -EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create -EXPORT_SYMBOL vmlinux 0xafd05cf9 inet6_ioctl -EXPORT_SYMBOL vmlinux 0xafd3d33c sget -EXPORT_SYMBOL vmlinux 0xaffb4dc4 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc -EXPORT_SYMBOL vmlinux 0xb00f02a2 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0xb016da80 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xb0229eb9 __kernel_write -EXPORT_SYMBOL vmlinux 0xb02411a2 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove -EXPORT_SYMBOL vmlinux 0xb04a5443 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb072c767 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xb08399a3 scsi_host_get -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0b6b142 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0xb0c2bc28 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xb0cdc6bc jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0f29264 clk_register_clkdevs -EXPORT_SYMBOL vmlinux 0xb107960c passthru_features_check -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb1463e7c security_path_symlink -EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb18b3410 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xb19673bc cdev_del -EXPORT_SYMBOL vmlinux 0xb1987d36 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0xb19ddfe2 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xb1a180fa __scsi_add_device -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1f0f54a netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0xb21b014f fd_install -EXPORT_SYMBOL vmlinux 0xb232325d vfs_unlink -EXPORT_SYMBOL vmlinux 0xb233762c atomic64_set -EXPORT_SYMBOL vmlinux 0xb24b5a7d lease_get_mtime -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb27a631b serial8250_do_pm -EXPORT_SYMBOL vmlinux 0xb27c7066 blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0xb2b16c9f mutex_lock -EXPORT_SYMBOL vmlinux 0xb2b91114 from_kuid -EXPORT_SYMBOL vmlinux 0xb2ba2749 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on -EXPORT_SYMBOL vmlinux 0xb3196de6 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked -EXPORT_SYMBOL vmlinux 0xb3454f7a sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xb34cef8d seq_pad -EXPORT_SYMBOL vmlinux 0xb364d7a4 blk_rq_init -EXPORT_SYMBOL vmlinux 0xb36f2658 nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0xb3773869 dst_destroy -EXPORT_SYMBOL vmlinux 0xb37995d7 page_symlink -EXPORT_SYMBOL vmlinux 0xb38253fe md_error -EXPORT_SYMBOL vmlinux 0xb382c48e flush_dcache_page -EXPORT_SYMBOL vmlinux 0xb385284d jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xb3853c73 dquot_release -EXPORT_SYMBOL vmlinux 0xb38765ba dev_driver_string -EXPORT_SYMBOL vmlinux 0xb3a60a3f blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xb3a89eb7 tty_check_change -EXPORT_SYMBOL vmlinux 0xb3ac1ec7 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0xb3b67f40 blk_end_request_all -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3f42e7a inet_sendmsg -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb4010f6e pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xb422bc1b sock_update_memcg -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb42e7e8b inode_needs_sync -EXPORT_SYMBOL vmlinux 0xb43578c5 bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xb4367b38 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem -EXPORT_SYMBOL vmlinux 0xb4584628 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0xb46b95d5 set_cached_acl -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb4884071 security_mmap_file -EXPORT_SYMBOL vmlinux 0xb494fbcb xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xb49febbf skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xb4aa53d8 inode_get_bytes -EXPORT_SYMBOL vmlinux 0xb4ac5cfd pm860x_reg_read -EXPORT_SYMBOL vmlinux 0xb4b8e671 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0xb505015c get_pci_dma_ops -EXPORT_SYMBOL vmlinux 0xb51b7c08 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0xb532a7cc set_wb_congested -EXPORT_SYMBOL vmlinux 0xb532f3a3 revert_creds -EXPORT_SYMBOL vmlinux 0xb551d0d8 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0xb55758ce neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb574c0b7 skb_vlan_push -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a752de put_tty_driver -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5c7b388 redraw_screen -EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit -EXPORT_SYMBOL vmlinux 0xb5e2da2d vfs_link -EXPORT_SYMBOL vmlinux 0xb5f79eca abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0xb60d7946 block_truncate_page -EXPORT_SYMBOL vmlinux 0xb618d647 pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0xb61bd96b security_inode_readlink -EXPORT_SYMBOL vmlinux 0xb6224746 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb63c45b3 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0xb6763a4b from_kgid -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6ba1268 account_page_dirtied -EXPORT_SYMBOL vmlinux 0xb6f45411 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xb7086517 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xb718de11 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xb7224b90 dump_skip -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb753bcc8 __ashrdi3 -EXPORT_SYMBOL vmlinux 0xb75a5349 kill_block_super -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb79101aa of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xb79a4e1a store_fp_state -EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0xb7a6cb11 tty_port_put -EXPORT_SYMBOL vmlinux 0xb7a99781 __irq_regs -EXPORT_SYMBOL vmlinux 0xb7bac5e6 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d24860 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xb7e943a3 mmc_start_bkops -EXPORT_SYMBOL vmlinux 0xb7f7abcd param_ops_bool -EXPORT_SYMBOL vmlinux 0xb816f147 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xb81960ca snprintf -EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xb82e38ba page_put_link -EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xb83fbb25 set_posix_acl -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xb885519c posix_lock_file -EXPORT_SYMBOL vmlinux 0xb8946f03 pcim_iomap -EXPORT_SYMBOL vmlinux 0xb89fcbd2 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0xb8a21f0c jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xb8a82fcd blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0xb8a9c2b7 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xb8ba4a4d gen_new_estimator -EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xb9142442 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xb919cbc4 inet6_offloads -EXPORT_SYMBOL vmlinux 0xb931e1de d_find_any_alias -EXPORT_SYMBOL vmlinux 0xb9373518 freeze_super -EXPORT_SYMBOL vmlinux 0xb93c388a msi_bitmap_free_hwirqs -EXPORT_SYMBOL vmlinux 0xb9a653ab block_invalidatepage -EXPORT_SYMBOL vmlinux 0xb9b9c26f jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xb9c39289 __alloc_skb -EXPORT_SYMBOL vmlinux 0xb9de23cf iterate_mounts -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9ef36bc fixed_size_llseek -EXPORT_SYMBOL vmlinux 0xba3b907d __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xba4157ba d_rehash -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba5e9e39 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xba603686 lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0xba6898b7 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0xba78c1a8 dev_uc_del -EXPORT_SYMBOL vmlinux 0xba8cfa90 phy_init_hw -EXPORT_SYMBOL vmlinux 0xbaa3d584 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0xbad090dd generic_block_bmap -EXPORT_SYMBOL vmlinux 0xbadade79 flush_tlb_mm -EXPORT_SYMBOL vmlinux 0xbae27628 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb13d20c get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xbb22c76b kmem_cache_free -EXPORT_SYMBOL vmlinux 0xbb2cd6d4 lock_fb_info -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb457e49 dump_truncate -EXPORT_SYMBOL vmlinux 0xbb461483 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xbb57bdee in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb8084cc sk_dst_check -EXPORT_SYMBOL vmlinux 0xbb94471e dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xbb9823b3 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbbacd516 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xbbbbf294 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xbbc2f9dd nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0xbbf41c5e alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xbbf79835 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0xbc130e47 devm_clk_get -EXPORT_SYMBOL vmlinux 0xbc14965b dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0xbc92e4fb dev_warn -EXPORT_SYMBOL vmlinux 0xbc99f5ca serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xbc9a7aa7 dev_mc_del -EXPORT_SYMBOL vmlinux 0xbc9b34af tcp_conn_request -EXPORT_SYMBOL vmlinux 0xbcb2d484 pci_clear_master -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcc90e49 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xbcfc06f9 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xbd02e2ba blk_init_queue -EXPORT_SYMBOL vmlinux 0xbd5eeaac d_walk -EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xbd904c42 padata_do_parallel -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbd9e5d49 __lshrdi3 -EXPORT_SYMBOL vmlinux 0xbda76df1 cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0xbdebb098 blk_peek_request -EXPORT_SYMBOL vmlinux 0xbdf4e94a sk_receive_skb -EXPORT_SYMBOL vmlinux 0xbdf9692c device_get_mac_address -EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe1cc38a __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0xbe1d23a0 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xbe565032 elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0xbe8feafe inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0xbebabbe3 datagram_poll -EXPORT_SYMBOL vmlinux 0xbecb9de7 param_ops_short -EXPORT_SYMBOL vmlinux 0xbecbc9b4 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xbedd04ef tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xbef0825c blk_queue_make_request -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbefb8cf2 key_revoke -EXPORT_SYMBOL vmlinux 0xbf146162 vm_event_states -EXPORT_SYMBOL vmlinux 0xbf26bf81 genphy_update_link -EXPORT_SYMBOL vmlinux 0xbf3d350e sock_efree -EXPORT_SYMBOL vmlinux 0xbf49949b fget_raw -EXPORT_SYMBOL vmlinux 0xbf4e2982 register_netdev -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf880d7d blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf92477b mmc_can_discard -EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfb6e9cb init_net -EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfcc17a6 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xbfe03990 skb_append -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc006500e eth_header_parse -EXPORT_SYMBOL vmlinux 0xc009d7e4 iov_iter_npages -EXPORT_SYMBOL vmlinux 0xc00e93ee page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0xc00f6f47 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xc013c688 seq_vprintf -EXPORT_SYMBOL vmlinux 0xc01cbecc blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xc02c6e87 phy_attach_direct -EXPORT_SYMBOL vmlinux 0xc0533715 path_is_under -EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xc07177d3 swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07f0e4a tty_write_room -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc089c30c ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xc096965f fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0xc097e0f5 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0xc09a7595 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0c6341c devfreq_add_governor -EXPORT_SYMBOL vmlinux 0xc0d78b1d dm_put_table_device -EXPORT_SYMBOL vmlinux 0xc0e2a11b agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0xc0e43474 __find_get_block -EXPORT_SYMBOL vmlinux 0xc0e61f0a clkdev_alloc -EXPORT_SYMBOL vmlinux 0xc107f707 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten -EXPORT_SYMBOL vmlinux 0xc11f576a keyring_alloc -EXPORT_SYMBOL vmlinux 0xc1273c8a vfs_readv -EXPORT_SYMBOL vmlinux 0xc12ed05d unregister_quota_format -EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc -EXPORT_SYMBOL vmlinux 0xc142df6c file_ns_capable -EXPORT_SYMBOL vmlinux 0xc14a50c9 eth_header -EXPORT_SYMBOL vmlinux 0xc16e2204 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0xc171db80 simple_rmdir -EXPORT_SYMBOL vmlinux 0xc17e87b6 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xc18c0dec netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xc18fe1cd generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xc1942458 param_set_ulong -EXPORT_SYMBOL vmlinux 0xc1af995d km_new_mapping -EXPORT_SYMBOL vmlinux 0xc1b3ab32 agp_find_bridge -EXPORT_SYMBOL vmlinux 0xc1c04dc3 netdev_printk -EXPORT_SYMBOL vmlinux 0xc1c27300 migrate_page -EXPORT_SYMBOL vmlinux 0xc1c5f3ae padata_add_cpu -EXPORT_SYMBOL vmlinux 0xc1c8c31c of_mm_gpiochip_remove -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1dcf85d i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1eba391 dma_sync_wait -EXPORT_SYMBOL vmlinux 0xc222222b ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xc2395f25 sock_no_listen -EXPORT_SYMBOL vmlinux 0xc23c1366 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc24a8b13 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xc2521542 page_follow_link_light -EXPORT_SYMBOL vmlinux 0xc2625bae __napi_schedule -EXPORT_SYMBOL vmlinux 0xc26a1aed call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xc27327fc blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0xc29ff741 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xc2a0d10e of_device_get_match_data -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xc2b6b541 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xc2bb16a0 pci_platform_rom -EXPORT_SYMBOL vmlinux 0xc2bb1fe4 neigh_xmit -EXPORT_SYMBOL vmlinux 0xc2c0b7c8 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0xc2cf44fd mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2fab19c ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xc2fcf5e1 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xc3094b50 dm_unregister_target -EXPORT_SYMBOL vmlinux 0xc3281608 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0xc355c061 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xc368849f nvram_sync -EXPORT_SYMBOL vmlinux 0xc37014a6 agp_free_memory -EXPORT_SYMBOL vmlinux 0xc3853dd5 zpool_register_driver -EXPORT_SYMBOL vmlinux 0xc3854ded param_ops_uint -EXPORT_SYMBOL vmlinux 0xc3b246f7 pneigh_lookup -EXPORT_SYMBOL vmlinux 0xc3c1080d neigh_table_clear -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3d34f14 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xc3de189c thaw_bdev -EXPORT_SYMBOL vmlinux 0xc3e838cd blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xc3e87b3a put_filp -EXPORT_SYMBOL vmlinux 0xc3f6d78e eth_header_cache -EXPORT_SYMBOL vmlinux 0xc4166831 vme_bus_num -EXPORT_SYMBOL vmlinux 0xc41a84d3 unregister_md_personality -EXPORT_SYMBOL vmlinux 0xc41f0516 node_states -EXPORT_SYMBOL vmlinux 0xc442ab74 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xc4566c30 request_key_async -EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0xc468d4a5 sk_alloc -EXPORT_SYMBOL vmlinux 0xc4707f91 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr -EXPORT_SYMBOL vmlinux 0xc476a27d kern_unmount -EXPORT_SYMBOL vmlinux 0xc47ca3ef get_mm_exe_file -EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc49f5f65 phy_resume -EXPORT_SYMBOL vmlinux 0xc4b8d05c devm_memremap -EXPORT_SYMBOL vmlinux 0xc4bcd5a2 dev_get_flags -EXPORT_SYMBOL vmlinux 0xc4c62370 pci_release_regions -EXPORT_SYMBOL vmlinux 0xc4c696b9 pci_set_power_state -EXPORT_SYMBOL vmlinux 0xc4dc36a7 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xc4e1d9a7 __check_sticky -EXPORT_SYMBOL vmlinux 0xc4e66d66 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xc4f81a7d of_phy_find_device -EXPORT_SYMBOL vmlinux 0xc4fb0e08 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xc50ff8a0 blk_requeue_request -EXPORT_SYMBOL vmlinux 0xc5426519 ps2_drain -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc55a63ee of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set -EXPORT_SYMBOL vmlinux 0xc59486f4 force_sig -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59f600b fib_default_rule_add -EXPORT_SYMBOL vmlinux 0xc5ade8d5 phy_print_status -EXPORT_SYMBOL vmlinux 0xc5b549c0 vfs_iter_read -EXPORT_SYMBOL vmlinux 0xc5d30b82 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5dbf9e8 audit_log_task_info -EXPORT_SYMBOL vmlinux 0xc5dfed7f nf_log_unregister -EXPORT_SYMBOL vmlinux 0xc5e65e4f of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xc5ecbff9 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xc5f1bb88 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xc5fbd527 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc61e9769 kobject_put -EXPORT_SYMBOL vmlinux 0xc626e0f9 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0xc65b391d ppp_input -EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap -EXPORT_SYMBOL vmlinux 0xc69301d4 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6e4a9e5 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xc6f48407 __blk_end_request_all -EXPORT_SYMBOL vmlinux 0xc704a3c9 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0xc70ae8cb ndisc_mc_map -EXPORT_SYMBOL vmlinux 0xc7128e77 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc723dddd locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0xc73aa1c2 scsi_scan_target -EXPORT_SYMBOL vmlinux 0xc740753f wireless_spy_update -EXPORT_SYMBOL vmlinux 0xc7440c2a kthread_bind -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xc77d77a4 padata_free -EXPORT_SYMBOL vmlinux 0xc77fc787 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc7898275 flex_array_shrink -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc79c69a5 ps2_command -EXPORT_SYMBOL vmlinux 0xc7a41acf blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7b9c2cf kill_litter_super -EXPORT_SYMBOL vmlinux 0xc7c09aa2 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0xc7cab966 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0xc7d00914 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xc7d552f2 remove_arg_zero -EXPORT_SYMBOL vmlinux 0xc7e6e49e vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0xc7e70d1e tso_count_descs -EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc808ed71 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xc82afed3 neigh_destroy -EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84bef82 elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each -EXPORT_SYMBOL vmlinux 0xc85a8b65 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xc85f3416 dev_alert -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc8a7e018 dev_activate -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b3768f sock_create_lite -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc901ccc1 inet_stream_connect -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc9226099 __destroy_inode -EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xc94647f1 bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xc9484af0 sock_i_uid -EXPORT_SYMBOL vmlinux 0xc94f8f85 nlmsg_notify -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96f7b2f kill_bdev -EXPORT_SYMBOL vmlinux 0xc97af5ac input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9cab197 of_device_is_available -EXPORT_SYMBOL vmlinux 0xc9e0de24 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xc9f12750 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xc9ff0c64 dev_printk -EXPORT_SYMBOL vmlinux 0xca03bda2 vfs_setpos -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca27164e scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get -EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xca4656dc vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcaad8b23 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0xcab006aa tcp_filter -EXPORT_SYMBOL vmlinux 0xcab67068 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xcacd272d atomic64_sub_return -EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty -EXPORT_SYMBOL vmlinux 0xcae191b7 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0xcaed82c1 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb093ae0 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xcb1d7f05 inode_permission -EXPORT_SYMBOL vmlinux 0xcb2a94dd sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xcb474fe9 pci_find_capability -EXPORT_SYMBOL vmlinux 0xcb587039 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xcb595646 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xcb5d0ef2 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0xcb8b5600 inet_ioctl -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbd92541 udp_poll -EXPORT_SYMBOL vmlinux 0xcbe7ac03 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcbface03 set_create_files_as -EXPORT_SYMBOL vmlinux 0xcbfb3286 create_empty_buffers -EXPORT_SYMBOL vmlinux 0xcbfe4d7f bio_reset -EXPORT_SYMBOL vmlinux 0xcc09b7a3 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0xcc0d330f iterate_fd -EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc4aa9b1 filemap_flush -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc650652 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xcc671efb of_iomap -EXPORT_SYMBOL vmlinux 0xcc76f8cc fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0xcc8a4e80 bio_advance -EXPORT_SYMBOL vmlinux 0xccb1ff95 xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccdf90ab skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xccfd00d6 copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd2bc16f devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xcd3a7eb5 iget_failed -EXPORT_SYMBOL vmlinux 0xcd3be6cd vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xcd47ba72 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xcd4d056d nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0xcd504825 __quota_error -EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xcd7f01b5 security_path_chmod -EXPORT_SYMBOL vmlinux 0xcd83e19c tty_unthrottle -EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xcd8d868b kill_pid -EXPORT_SYMBOL vmlinux 0xcd92387a pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdfbe4a8 pci_assign_resource -EXPORT_SYMBOL vmlinux 0xce0a44e4 __nlmsg_put -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce38fba3 skb_checksum_help -EXPORT_SYMBOL vmlinux 0xce3e4563 address_space_init_once -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce9a0cc6 param_set_charp -EXPORT_SYMBOL vmlinux 0xce9d29c8 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceada6f8 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xcebcc6cb generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcef5dcc6 free_page_put_link -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf00940e netdev_state_change -EXPORT_SYMBOL vmlinux 0xcf1d7646 isa_mem_base -EXPORT_SYMBOL vmlinux 0xcf47e58d generic_file_fsync -EXPORT_SYMBOL vmlinux 0xcf8d0e6b uart_remove_one_port -EXPORT_SYMBOL vmlinux 0xcfb3804e pci_dev_get -EXPORT_SYMBOL vmlinux 0xd016b5a5 agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0xd04d5083 blk_get_queue -EXPORT_SYMBOL vmlinux 0xd05ec6e3 flow_cache_fini -EXPORT_SYMBOL vmlinux 0xd062c3fb neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xd071b217 sock_create_kern -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd0868922 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd09c382c param_get_bool -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0bb5a38 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xd0da05e3 revalidate_disk -EXPORT_SYMBOL vmlinux 0xd0e70100 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd12b94ff ppc_md -EXPORT_SYMBOL vmlinux 0xd146c563 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xd14e1e4e netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xd16cec6f pcie_set_mps -EXPORT_SYMBOL vmlinux 0xd177d286 kernel_read -EXPORT_SYMBOL vmlinux 0xd17f39d2 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xd19a8178 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0xd1a13ce0 sk_reset_timer -EXPORT_SYMBOL vmlinux 0xd1ae6d65 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1e18a4a swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0xd1e3f3c4 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xd215b22c dqget -EXPORT_SYMBOL vmlinux 0xd22fae4e tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2539293 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd259e8fc kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd25ed1d7 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xd2609d85 alloc_fcdev -EXPORT_SYMBOL vmlinux 0xd264f55c splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd28fc7be of_get_child_by_name -EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class -EXPORT_SYMBOL vmlinux 0xd2b55ad2 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0xd2c7b1b2 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2edc0f4 seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd2fc19bd proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0xd30a92b3 empty_aops -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd31daba4 get_tz_trend -EXPORT_SYMBOL vmlinux 0xd33ef59a __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xd34780ec scsi_target_resume -EXPORT_SYMBOL vmlinux 0xd35480c4 of_get_named_gpio_flags -EXPORT_SYMBOL vmlinux 0xd35511ab jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xd374df94 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0xd385790a vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xd38a8ffc dev_add_pack -EXPORT_SYMBOL vmlinux 0xd38cbfcb dev_get_iflink -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd4167784 blk_stop_queue -EXPORT_SYMBOL vmlinux 0xd4221fa0 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm -EXPORT_SYMBOL vmlinux 0xd44ef244 sock_kmalloc -EXPORT_SYMBOL vmlinux 0xd451e866 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xd45b6f01 simple_write_end -EXPORT_SYMBOL vmlinux 0xd48c329e vfs_writev -EXPORT_SYMBOL vmlinux 0xd4b63fe5 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0xd501fa63 of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0xd510aa6d iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xd52eafa4 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xd53eef85 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xd54d0c2e jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xd54d2424 udp_add_offload -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd55be386 filemap_fdatawait -EXPORT_SYMBOL vmlinux 0xd55e9644 netif_device_detach -EXPORT_SYMBOL vmlinux 0xd5739f80 vfs_writef -EXPORT_SYMBOL vmlinux 0xd580d631 tcp_release_cb -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd5a79bc6 __pci_register_driver -EXPORT_SYMBOL vmlinux 0xd5ad2191 get_phy_device -EXPORT_SYMBOL vmlinux 0xd5b1febf tty_vhangup -EXPORT_SYMBOL vmlinux 0xd5e8444a __div64_32 -EXPORT_SYMBOL vmlinux 0xd5ef871a writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xd5f15868 generic_writepages -EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xd606503d register_sysctl -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd62097ef submit_bio -EXPORT_SYMBOL vmlinux 0xd627480b strncat -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd633da07 da903x_query_status -EXPORT_SYMBOL vmlinux 0xd638e1ec dquot_quota_off -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd664587a __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xd6657613 icmpv6_send -EXPORT_SYMBOL vmlinux 0xd67c650c tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0xd67db729 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0xd6824282 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xd683d6cd pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xd685b1ba install_exec_creds -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd69b30e0 atomic64_add_unless -EXPORT_SYMBOL vmlinux 0xd6a3b43c blk_delay_queue -EXPORT_SYMBOL vmlinux 0xd6b6f55d audit_log_start -EXPORT_SYMBOL vmlinux 0xd6cfafd4 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0xd6de949a get_super_thawed -EXPORT_SYMBOL vmlinux 0xd6e6bc07 dma_find_channel -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd7033b0b cancel_dirty_page -EXPORT_SYMBOL vmlinux 0xd71328b7 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xd7191b95 tty_port_hangup -EXPORT_SYMBOL vmlinux 0xd7204aed dm_kobject_release -EXPORT_SYMBOL vmlinux 0xd736cf8c mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0xd7430bce elv_rb_del -EXPORT_SYMBOL vmlinux 0xd75287e6 fb_set_suspend -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd75dfde3 vme_register_driver -EXPORT_SYMBOL vmlinux 0xd76175e2 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot -EXPORT_SYMBOL vmlinux 0xd77905f4 input_inject_event -EXPORT_SYMBOL vmlinux 0xd792b64e inetdev_by_index -EXPORT_SYMBOL vmlinux 0xd794a42c unregister_key_type -EXPORT_SYMBOL vmlinux 0xd796f506 current_in_userns -EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write -EXPORT_SYMBOL vmlinux 0xd7b42b31 skb_push -EXPORT_SYMBOL vmlinux 0xd7b6b5a2 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xd7cb6052 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0xd7d6d062 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7eb7422 dev_set_group -EXPORT_SYMBOL vmlinux 0xd8332c73 setup_new_exec -EXPORT_SYMBOL vmlinux 0xd83d9d16 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put -EXPORT_SYMBOL vmlinux 0xd84739b4 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xd84c43a6 lockref_put_return -EXPORT_SYMBOL vmlinux 0xd84c90a0 genlmsg_put -EXPORT_SYMBOL vmlinux 0xd84e2635 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xd8650338 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xd89aad56 write_cache_pages -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8abcb7f md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xd8b3a4bb kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0xd8cd0150 max8998_update_reg -EXPORT_SYMBOL vmlinux 0xd8d72841 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xd8d74be6 flow_cache_lookup -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8fb95b8 sock_no_bind -EXPORT_SYMBOL vmlinux 0xd8feda43 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xd9075ad5 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xd90f6f8e sock_i_ino -EXPORT_SYMBOL vmlinux 0xd91816af neigh_seq_start -EXPORT_SYMBOL vmlinux 0xd920ff83 scsi_host_set_state -EXPORT_SYMBOL vmlinux 0xd92828e7 pci_write_vpd -EXPORT_SYMBOL vmlinux 0xd92e0bcd blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0xd92edc81 param_get_int -EXPORT_SYMBOL vmlinux 0xd9498b22 proc_dointvec -EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done -EXPORT_SYMBOL vmlinux 0xd96dfb0a __mdiobus_register -EXPORT_SYMBOL vmlinux 0xd973eb2d scm_detach_fds -EXPORT_SYMBOL vmlinux 0xd97e8ee2 dev_uc_init -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd988f94d i2c_del_driver -EXPORT_SYMBOL vmlinux 0xd9986fa5 scsi_remove_host -EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xd9bdbbfc path_get -EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xda071950 md_cluster_mod -EXPORT_SYMBOL vmlinux 0xda18a86f kobject_del -EXPORT_SYMBOL vmlinux 0xda276ac6 scsi_register_driver -EXPORT_SYMBOL vmlinux 0xda2bcfab __ps2_command -EXPORT_SYMBOL vmlinux 0xda346970 abx500_register_ops -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda8baa20 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0xda93a93a scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0xda975092 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages -EXPORT_SYMBOL vmlinux 0xdabb7615 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0xdabc1ea8 fsl_lbc_find -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find -EXPORT_SYMBOL vmlinux 0xdb3df711 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0xdb5540ad may_umount -EXPORT_SYMBOL vmlinux 0xdb643300 agp_enable -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6e1343 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb822208 scsi_add_device -EXPORT_SYMBOL vmlinux 0xdb8bf072 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0xdba75580 agp_collect_device_status -EXPORT_SYMBOL vmlinux 0xdbabf2cd skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xdbb60e4d cdev_alloc -EXPORT_SYMBOL vmlinux 0xdbe6efda __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc2088ec find_lock_entry -EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xdc2ed82f tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc4266d8 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc5fd9c9 dev_open -EXPORT_SYMBOL vmlinux 0xdc679017 blkdev_fsync -EXPORT_SYMBOL vmlinux 0xdc68c171 of_clk_get -EXPORT_SYMBOL vmlinux 0xdc9498dd down -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcbb7890 find_get_pages_tag -EXPORT_SYMBOL vmlinux 0xdcbc67d2 d_delete -EXPORT_SYMBOL vmlinux 0xdcd2b1df sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xdcdee616 __mutex_init -EXPORT_SYMBOL vmlinux 0xdce8e285 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd0ed6b2 single_release -EXPORT_SYMBOL vmlinux 0xdd131a70 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xdd195366 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0xdd1e0048 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xdd21d4de d_genocide -EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr -EXPORT_SYMBOL vmlinux 0xdd554094 tcp_make_synack -EXPORT_SYMBOL vmlinux 0xdd59f76d register_qdisc -EXPORT_SYMBOL vmlinux 0xdd5e860f mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer -EXPORT_SYMBOL vmlinux 0xdda0f5ac fb_find_mode -EXPORT_SYMBOL vmlinux 0xddab87b7 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xdde48a55 ab3100_event_register -EXPORT_SYMBOL vmlinux 0xde41138e gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xde446ec0 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xde47434f tcp_prot -EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xde512963 sg_miter_stop -EXPORT_SYMBOL vmlinux 0xde5d4e55 pci_fixup_device -EXPORT_SYMBOL vmlinux 0xde65eed6 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0xde6b5df7 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xde8c8fa2 ip6_xmit -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xdeafabcf remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xdeb2f15c bdget_disk -EXPORT_SYMBOL vmlinux 0xded29202 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xded931f3 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0xdf0332f7 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf3c7a3d of_device_alloc -EXPORT_SYMBOL vmlinux 0xdf4c3741 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf57fe4f ip_getsockopt -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf7daa58 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xdf8b92be dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf98cedc vme_dma_request -EXPORT_SYMBOL vmlinux 0xdf9b59fa udp_del_offload -EXPORT_SYMBOL vmlinux 0xdfb930d7 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xdfd6e23a input_unregister_device -EXPORT_SYMBOL vmlinux 0xdfdf1bf6 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xdff43ed4 __debugger -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe06dff9d xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe079c508 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe08bc399 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xe08c7590 devm_ioremap -EXPORT_SYMBOL vmlinux 0xe09b693b of_device_is_compatible -EXPORT_SYMBOL vmlinux 0xe0ad3214 tcp_read_sock -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0baa478 input_unregister_handler -EXPORT_SYMBOL vmlinux 0xe0dccbde eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0xe0e93249 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe135f46b napi_get_frags -EXPORT_SYMBOL vmlinux 0xe1444035 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xe15d18b6 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xe16916ba dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0xe16f7140 set_disk_ro -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe1941663 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xe195cc6b neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xe19dd7d1 user_path_create -EXPORT_SYMBOL vmlinux 0xe1b72509 seq_release_private -EXPORT_SYMBOL vmlinux 0xe1d11770 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xe1d7be37 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xe1ee8bf4 sk_stream_error -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe218d1ee nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe256896e xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0xe2661c23 fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0xe26899c8 simple_dname -EXPORT_SYMBOL vmlinux 0xe2845cdf proc_douintvec -EXPORT_SYMBOL vmlinux 0xe28fc4bb __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xe29191d2 bdi_register -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2d96a46 put_io_context -EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup -EXPORT_SYMBOL vmlinux 0xe2fe7ddc simple_dir_operations -EXPORT_SYMBOL vmlinux 0xe318d706 sk_wait_data -EXPORT_SYMBOL vmlinux 0xe34c5595 kset_unregister -EXPORT_SYMBOL vmlinux 0xe354724e devfreq_add_device -EXPORT_SYMBOL vmlinux 0xe388f1fb module_put -EXPORT_SYMBOL vmlinux 0xe3923ab1 simple_pin_fs -EXPORT_SYMBOL vmlinux 0xe3972fc8 genphy_resume -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3c65b63 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0xe3c931ea from_kgid_munged -EXPORT_SYMBOL vmlinux 0xe3d46833 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0xe3d5caf4 fsl_lbc_ctrl_dev -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3d7da27 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xe3edd613 proc_set_user -EXPORT_SYMBOL vmlinux 0xe40e4d0e devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0xe410560d serio_unregister_port -EXPORT_SYMBOL vmlinux 0xe4121bdf dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xe41493ad input_get_keycode -EXPORT_SYMBOL vmlinux 0xe417f988 free_buffer_head -EXPORT_SYMBOL vmlinux 0xe42371fd xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0xe42940ab sock_create -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe4a57a48 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xe4c1691a simple_write_begin -EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xe4da1dd2 ilookup -EXPORT_SYMBOL vmlinux 0xe4e28a06 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe4ecb6ca devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe513c52c flush_dcache_icache_page -EXPORT_SYMBOL vmlinux 0xe51e22aa seq_file_path -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe524dca7 block_write_begin -EXPORT_SYMBOL vmlinux 0xe530eef0 security_path_chown -EXPORT_SYMBOL vmlinux 0xe554c0a2 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xe557c747 end_page_writeback -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe57b7811 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xe5860369 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe58fa800 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5e45f0f pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xe5e59100 inc_nlink -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5f98cc6 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0xe607a9f6 bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xe62bc70a pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xe640cd8f dev_printk_emit -EXPORT_SYMBOL vmlinux 0xe65ef7d6 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0xe66452ab dql_init -EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size -EXPORT_SYMBOL vmlinux 0xe6964e0a loop_register_transfer -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe6af3d2c tty_unlock -EXPORT_SYMBOL vmlinux 0xe6dd236d clear_pages -EXPORT_SYMBOL vmlinux 0xe6e6ffc1 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update -EXPORT_SYMBOL vmlinux 0xe6f9935d nf_setsockopt -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe708d61c seq_dentry -EXPORT_SYMBOL vmlinux 0xe711a46f inet6_release -EXPORT_SYMBOL vmlinux 0xe7194a39 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xe723574a drop_nlink -EXPORT_SYMBOL vmlinux 0xe74834f5 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xe74d8400 __kfree_skb -EXPORT_SYMBOL vmlinux 0xe7527ebc neigh_seq_stop -EXPORT_SYMBOL vmlinux 0xe75f4d72 wireless_send_event -EXPORT_SYMBOL vmlinux 0xe7852f12 devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0xe7905404 of_scan_pci_bridge -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7f94c7f skb_tx_error -EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xe831cd9b tcp_ioctl -EXPORT_SYMBOL vmlinux 0xe844dba9 netif_napi_del -EXPORT_SYMBOL vmlinux 0xe85a1eb5 I_BDEV -EXPORT_SYMBOL vmlinux 0xe8793594 blk_make_request -EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer -EXPORT_SYMBOL vmlinux 0xe8802b67 mach_twr_p1025 -EXPORT_SYMBOL vmlinux 0xe8979136 current_fs_time -EXPORT_SYMBOL vmlinux 0xe89b9d20 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8aba5b6 padata_stop -EXPORT_SYMBOL vmlinux 0xe8b0cb98 seq_release -EXPORT_SYMBOL vmlinux 0xe8b2a468 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8d27855 agp_create_memory -EXPORT_SYMBOL vmlinux 0xe8d5054c dquot_operations -EXPORT_SYMBOL vmlinux 0xe8ef4c6a devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xe8f754d2 get_unmapped_area -EXPORT_SYMBOL vmlinux 0xe8fda3e4 tc_classify -EXPORT_SYMBOL vmlinux 0xe907d957 bdput -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe917a1ad inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xe9341d23 tcp_disconnect -EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next -EXPORT_SYMBOL vmlinux 0xe94a0aa8 flow_cache_init -EXPORT_SYMBOL vmlinux 0xe94b858f bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe959e6aa __i2c_transfer -EXPORT_SYMBOL vmlinux 0xe96b5629 param_set_ushort -EXPORT_SYMBOL vmlinux 0xe97d124e ip6_frag_match -EXPORT_SYMBOL vmlinux 0xe98e06e3 __getblk_slow -EXPORT_SYMBOL vmlinux 0xe98ec558 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xe9931290 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xe9baec9d tty_port_close -EXPORT_SYMBOL vmlinux 0xe9c1c3bc param_ops_ulong -EXPORT_SYMBOL vmlinux 0xe9db8f1d add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea18c7e0 agp_bind_memory -EXPORT_SYMBOL vmlinux 0xea336d9b do_SAK -EXPORT_SYMBOL vmlinux 0xea567742 agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0xea6c5f6c pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea7d591f of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit -EXPORT_SYMBOL vmlinux 0xea9de1ea jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xeab68c1f dev_err -EXPORT_SYMBOL vmlinux 0xeaccffbf scsi_host_alloc -EXPORT_SYMBOL vmlinux 0xeacd71b3 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0xead18fe8 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xeadb6daf tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0xeae5cb51 set_security_override -EXPORT_SYMBOL vmlinux 0xeaf1a650 param_ops_long -EXPORT_SYMBOL vmlinux 0xeb192442 __get_user_pages -EXPORT_SYMBOL vmlinux 0xeb360715 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xeb5d3a8f xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xeb6099d2 nvm_register_target -EXPORT_SYMBOL vmlinux 0xeb79c650 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xeb7a961c pci_iounmap -EXPORT_SYMBOL vmlinux 0xeb8d93b5 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xeb921240 netlink_unicast -EXPORT_SYMBOL vmlinux 0xeb941906 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0xeba6163a mount_pseudo -EXPORT_SYMBOL vmlinux 0xebca88f6 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xec138d7d skb_store_bits -EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit -EXPORT_SYMBOL vmlinux 0xec1c13da nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0xec28fca1 of_phy_attach -EXPORT_SYMBOL vmlinux 0xec340dd0 uart_add_one_port -EXPORT_SYMBOL vmlinux 0xec39a9f0 sk_ns_capable -EXPORT_SYMBOL vmlinux 0xec3e61dc agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0xec44d267 netdev_change_features -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec4ed5c5 d_prune_aliases -EXPORT_SYMBOL vmlinux 0xec5d2211 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0xec729119 sock_no_getname -EXPORT_SYMBOL vmlinux 0xec957061 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xec969fcc agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecebbb94 console_stop -EXPORT_SYMBOL vmlinux 0xecfcff07 insert_inode_locked -EXPORT_SYMBOL vmlinux 0xecfd654c dcb_getapp -EXPORT_SYMBOL vmlinux 0xed2142ec devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0xed2cd134 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed7463e4 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xed9fecd9 kernel_write -EXPORT_SYMBOL vmlinux 0xeda505d0 of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table -EXPORT_SYMBOL vmlinux 0xeddf74d2 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xedfc2fec ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xee071ca5 iterate_dir -EXPORT_SYMBOL vmlinux 0xee0e56f5 phy_detach -EXPORT_SYMBOL vmlinux 0xee2cf0f5 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee421480 inet_stream_ops -EXPORT_SYMBOL vmlinux 0xee4308d6 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0xee5f17f5 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0xee87f15a tcp_poll -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeed56852 __pci_enable_wake -EXPORT_SYMBOL vmlinux 0xeeed4245 devm_free_irq -EXPORT_SYMBOL vmlinux 0xeef12968 mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xeefbd9b6 input_event -EXPORT_SYMBOL vmlinux 0xef1b3624 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xef261380 drop_super -EXPORT_SYMBOL vmlinux 0xef307605 inet_csk_accept -EXPORT_SYMBOL vmlinux 0xef4e68ce arp_tbl -EXPORT_SYMBOL vmlinux 0xefb09e52 netlink_set_err -EXPORT_SYMBOL vmlinux 0xefbc4530 dquot_resume -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefd3a595 posix_test_lock -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0161fa6 iov_iter_zero -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf02a3bfe mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xf02ea22a __f_setown -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf07fc147 kthread_stop -EXPORT_SYMBOL vmlinux 0xf07ffe1b pci_iomap -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf08edc3c mpage_writepage -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0e183c9 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0xf0e69093 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible -EXPORT_SYMBOL vmlinux 0xf13291cb sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf147f89c tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xf15c48cf ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0xf1835c3b ip_check_defrag -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf195fe38 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19befc8 release_sock -EXPORT_SYMBOL vmlinux 0xf1a6d73e init_special_inode -EXPORT_SYMBOL vmlinux 0xf1a77aad cdev_add -EXPORT_SYMBOL vmlinux 0xf1b87710 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xf1bfca62 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 -EXPORT_SYMBOL vmlinux 0xf1e03431 cap_mmap_file -EXPORT_SYMBOL vmlinux 0xf1e2c3ac kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1f3b1ea scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf2177f1b set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf259aaaa f_setown -EXPORT_SYMBOL vmlinux 0xf279b11d bh_submit_read -EXPORT_SYMBOL vmlinux 0xf28546d9 serio_open -EXPORT_SYMBOL vmlinux 0xf295fa3b blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2a15a55 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2e0a245 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0xf2e46612 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xf2eb6ad8 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xf3055a59 of_cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf34bdf57 ipv4_specific -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf38543f1 tcf_hash_search -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf39c8543 generic_perform_write -EXPORT_SYMBOL vmlinux 0xf3a4b66d __dst_free -EXPORT_SYMBOL vmlinux 0xf3a9f45f pci_get_slot -EXPORT_SYMBOL vmlinux 0xf3ac9ec8 find_get_entry -EXPORT_SYMBOL vmlinux 0xf3db0ed4 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xf3dee954 tso_build_hdr -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf400e2d2 file_update_time -EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf4449388 timer_interrupt -EXPORT_SYMBOL vmlinux 0xf445ef2f mfd_cell_enable -EXPORT_SYMBOL vmlinux 0xf46cd91f __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xf4730a33 ll_rw_block -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf495de9e fb_set_cmap -EXPORT_SYMBOL vmlinux 0xf49dba20 udp6_csum_init -EXPORT_SYMBOL vmlinux 0xf4aae6df tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xf4b85d48 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xf4bcfed1 locks_init_lock -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4c25852 elevator_alloc -EXPORT_SYMBOL vmlinux 0xf4e5705e i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xf4eef396 gen_pool_free -EXPORT_SYMBOL vmlinux 0xf4f12e15 console_start -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf509072c devm_release_resource -EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0xf52321e0 atomic64_sub -EXPORT_SYMBOL vmlinux 0xf52b03f2 tcp_connect -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf53f3c7a posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0xf55313a0 gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0xf553fe16 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xf56a3625 dev_addr_del -EXPORT_SYMBOL vmlinux 0xf56d64d7 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xf5708df1 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set -EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io -EXPORT_SYMBOL vmlinux 0xf5ba77e7 mdiobus_read -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf5ee7450 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0xf5f3630e mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xf60c27f7 swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf64370b5 agp_unbind_memory -EXPORT_SYMBOL vmlinux 0xf6519949 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xf666fb06 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xf6711ff2 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf6789a40 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf68bf717 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f219e3 agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0xf6f63263 simple_unlink -EXPORT_SYMBOL vmlinux 0xf6f7149f sk_capable -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf7030b99 netpoll_setup -EXPORT_SYMBOL vmlinux 0xf70384d7 __debugger_sstep -EXPORT_SYMBOL vmlinux 0xf71521ba atomic64_add_return -EXPORT_SYMBOL vmlinux 0xf73c20f6 dcache_readdir -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf77588f5 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xf78b342d generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xf790f69a blk_queue_split -EXPORT_SYMBOL vmlinux 0xf7a1d03b ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xf7b85bfb param_set_copystring -EXPORT_SYMBOL vmlinux 0xf7bc59da dquot_file_open -EXPORT_SYMBOL vmlinux 0xf7c9cf0c cad_pid -EXPORT_SYMBOL vmlinux 0xf7cdc736 clkdev_add -EXPORT_SYMBOL vmlinux 0xf7d0567f bio_integrity_endio -EXPORT_SYMBOL vmlinux 0xf7d9b054 follow_down_one -EXPORT_SYMBOL vmlinux 0xf7f40961 mpage_readpage -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf81e726c setup_arg_pages -EXPORT_SYMBOL vmlinux 0xf8227012 __sock_create -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf8347e2b dev_alloc_name -EXPORT_SYMBOL vmlinux 0xf84d5c7a pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0xf857b0ea blkdev_reread_part -EXPORT_SYMBOL vmlinux 0xf85dd961 vmap -EXPORT_SYMBOL vmlinux 0xf867c777 sys_fillrect -EXPORT_SYMBOL vmlinux 0xf8841435 km_policy_expired -EXPORT_SYMBOL vmlinux 0xf886ba79 nf_log_register -EXPORT_SYMBOL vmlinux 0xf88c3833 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xf88f795e swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0xf8e398fc memstart_addr -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf9228003 get_immrbase -EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run -EXPORT_SYMBOL vmlinux 0xf93601b1 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xf93f1bcf dquot_quota_on -EXPORT_SYMBOL vmlinux 0xf94afb7d dst_release -EXPORT_SYMBOL vmlinux 0xf97dbdde truncate_setsize -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9b16a53 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0xf9c10b49 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xf9e18417 rwsem_wake -EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf -EXPORT_SYMBOL vmlinux 0xf9f53a27 d_obtain_alias -EXPORT_SYMBOL vmlinux 0xf9f8bd77 inet_put_port -EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0xfa130057 __skb_tx_hash -EXPORT_SYMBOL vmlinux 0xfa2c9d54 devm_clk_put -EXPORT_SYMBOL vmlinux 0xfa47116f mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5eb9af lro_receive_skb -EXPORT_SYMBOL vmlinux 0xfa5f5d75 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0xfa8d29a8 of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0xfaa76478 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xfaaf9c9f kobject_init -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfae99709 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xfaee6c18 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xfafe804f dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0xfaff1f52 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xfb06d524 lru_cache_add_file -EXPORT_SYMBOL vmlinux 0xfb0742b7 mapping_tagged -EXPORT_SYMBOL vmlinux 0xfb271bc7 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xfb2dfafd bio_flush_dcache_pages -EXPORT_SYMBOL vmlinux 0xfb341308 of_get_property -EXPORT_SYMBOL vmlinux 0xfb63fcee security_path_unlink -EXPORT_SYMBOL vmlinux 0xfb6a54c2 nvm_submit_io -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfba56df1 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbcb87ee soft_cursor -EXPORT_SYMBOL vmlinux 0xfbcbb8eb down_write -EXPORT_SYMBOL vmlinux 0xfbda196e sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xfbfa7cf7 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xfbfec009 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc220278 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node -EXPORT_SYMBOL vmlinux 0xfc54f2d4 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xfc62c6ef sk_mc_loop -EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xfc686875 do_splice_direct -EXPORT_SYMBOL vmlinux 0xfc693a4e irq_set_chip -EXPORT_SYMBOL vmlinux 0xfc6b1084 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0xfc9ce31b tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xfca18012 default_file_splice_read -EXPORT_SYMBOL vmlinux 0xfcb09593 key_validate -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfccbd794 agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0xfcce0d8e dquot_drop -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfceb16e9 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf84a93 atomic64_xor -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd0ce366 unload_nls -EXPORT_SYMBOL vmlinux 0xfd214817 abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xfd34fc46 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xfd4104a5 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0xfd46198a input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0xfd4f0385 km_state_expired -EXPORT_SYMBOL vmlinux 0xfd52c299 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xfd545750 inet_getname -EXPORT_SYMBOL vmlinux 0xfd836bd4 xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfdb025a4 clocksource_unregister -EXPORT_SYMBOL vmlinux 0xfdb1c2b4 kernel_accept -EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdbc64ff would_dump -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfdbfa938 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp -EXPORT_SYMBOL vmlinux 0xfdf6ca6e nvm_put_blk -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe08d0e8 fput -EXPORT_SYMBOL vmlinux 0xfe09fd52 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0xfe214595 get_empty_filp -EXPORT_SYMBOL vmlinux 0xfe352309 register_filesystem -EXPORT_SYMBOL vmlinux 0xfe4c9926 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe822d55 get_brgfreq -EXPORT_SYMBOL vmlinux 0xfebaf532 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xfebf319a scsi_init_io -EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0xfecc53b7 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfeeacc01 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xff048cf5 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff2068e8 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xff2db98a dma_common_mmap -EXPORT_SYMBOL vmlinux 0xff2fb508 simple_getattr -EXPORT_SYMBOL vmlinux 0xff412199 inet6_add_offload -EXPORT_SYMBOL vmlinux 0xff50296d __inode_permission -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff6a17a6 nvm_dev_factory -EXPORT_SYMBOL vmlinux 0xff6dea25 smp_hw_index -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xff80dd59 ip_defrag -EXPORT_SYMBOL vmlinux 0xff8dc43d blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff9b7ee9 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffbd0885 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xffcc9741 finish_no_open -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xffed28ba xfrm_input -EXPORT_SYMBOL vmlinux 0xfffee54a scsi_print_command -EXPORT_SYMBOL_GPL crypto/af_alg 0x39ff504f af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x536f725b af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x53eaf9f4 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0x6afe568d af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x74565983 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x881441d9 af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0x8cd7fceb af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xb3c1fad8 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xb5f8aad5 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xe0ca3106 af_alg_complete -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x9ef1553f async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x0697acf5 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x3996b4cf async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb0cb6474 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xfc648fc5 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0e308939 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1f0bf1b5 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x47e92a4a async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd1221188 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xb60382a9 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe5868cd8 async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x37ba4144 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x0411a227 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x2509986d cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x36560862 crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xacd542c7 crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/cryptd 0x37f700a6 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x42bfcf2d cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x588c9fc6 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x5ca43a94 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x67f8eb72 cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x7aedf414 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xbcc5ec0c cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xc25d524c cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xcfdf7a2a cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xdbfc641d cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0x3d279d8a lrw_crypt -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/mcryptd 0x0816f7dd mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x1a02c852 mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0x31e4c5c3 shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0x52916554 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x72198877 mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0xaa8dc197 shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0xc58f93a8 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0xc8ea18c4 shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x0346a12a crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x2eeab5f0 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x43a4dacd crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xd59da1b5 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xaf491083 serpent_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x37d8940a twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0x15a901e8 xts_crypt -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x009dc2e8 ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0298271d ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0d49a85e ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x137c0d70 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2a80370c ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x47fd1b1a ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5d888ec3 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x60d528e2 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x77595d2c ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7c0105c1 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7e08dc11 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x85ec11eb ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8b300da1 ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8f5f1fb0 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9a86a3b5 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa66bcbb8 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xac6e3766 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb821925b ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbd77c1c8 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe15b7e84 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xeba424ca ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xecbd8d5b ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfbaa8a78 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x105b706a ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3a3ad56c ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x63163ce0 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6b3fba2b ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7fb11ece ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x86fb6a23 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x882bf088 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x88742519 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd1fbb1f1 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd603d984 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xddd36ea4 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe25a3246 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfd40b52b ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x9b70b607 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x7c1933fc sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x43949123 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x83dc3aa4 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x84220ed2 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe2eb7fdf __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x02c7895a bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x046860b2 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x084987a2 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1f9bb90c bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x211343b6 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2a12a9f3 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2f2d6fb6 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x31461758 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x34a7e6a7 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3aafc308 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3f0faa8d bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3f2d56cf bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x50a5b591 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5838b29e bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x719223e3 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7c4e2307 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9cb20da7 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa13a85ee bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa3949b11 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaa71f600 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc9828b43 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd0964107 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd650f336 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdab1c4b3 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5fe260b8 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x77889e38 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x929bf510 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb9a879d7 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc227c904 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd2a375c7 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1034ebc0 btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x20040b11 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x36aa89a1 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x388ba653 btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x55c9ccf8 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x76e5c3d0 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9fa7d4b0 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbc50438f btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe202386d btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe478ecc0 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xeeef2079 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x03039756 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0541134e btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0643ee7d btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0bfd0b5a btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2a1b231d btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6592cfb7 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6956d773 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7217125e btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x80830c87 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xba6d284b btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd62b93eb btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x2576abe4 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x96127def qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xbcee539e btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xaca230bd h4_recv_buf -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0894398b dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x202cb3f8 dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf396d973 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf41bf2a8 dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfc8cfd7d dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/fsldma 0xd6dd2cae fsl_dma_external_start -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x09d0c45b hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x2405b33d hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xbe290e48 hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x532258d6 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x873416c3 vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xf680d823 vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xf7328939 vchan_find_desc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0337a4f6 edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x12e6334e edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x24e55008 edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x25ad9f88 edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x26f4948e edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2bc6a09f edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2e70c9f2 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x314aeab4 edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x35118ece edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x396391c0 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4bffcf83 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8971c33e edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8dde4554 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9483826b edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9da26caf edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb3688ac8 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb81d4598 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbd7dde07 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd3aba6db edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd589b5d4 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf516131b edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfc1f196e edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfc2f2ab1 find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2894a598 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2b0f5931 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3c63720b fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x46023b66 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x57247149 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x81a7f2d3 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x354757fa bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xf909cbfd bgpio_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x1db60dcc __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x45eb1300 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6cc77b86 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7c8d920b drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7efd8d46 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd9fbdb6b drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdaffbca7 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfd30d0c3 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x1a83a4fa ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x615178be ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x70f03301 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x172a072b hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2a39d961 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f6479e4 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3188eb52 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3fc68ad8 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e0411bd hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5820332e hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5f383f59 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5f675f72 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6267291a hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6372f154 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6f8f69b6 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6ff91cb1 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x72d7d765 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x748a9c25 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7805a741 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x786da2fb hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x80eab233 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8228fc9b hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x89c28cc3 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x92004356 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9aa23378 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9cc0c117 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9f94fd30 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa1eac54b hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb99096f5 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbbfb0d14 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc7d35aa1 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xca5deb31 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd952128c __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe87768e8 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe9375b39 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xed315375 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xede42952 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf053eed3 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf840ef1a hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x606e250c roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x13973b01 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3772e25d roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4e325729 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x502976e5 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x65359f33 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7dd0bae2 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x161d6902 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x173e29e1 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3c718418 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x62986570 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x64b30e37 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8403ae37 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9f12ef25 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcce063ed hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf512bdc0 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xb2d085bc hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x131404c9 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2fd77d60 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x340789bd hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x35b1a85a hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x51305de0 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x52e44bd2 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x857ee47c hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x87c26bb4 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8f50c3e7 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x933193b0 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9abed76f hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa83a7cb6 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xab8cc509 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb2ad9698 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbd017a6b hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbd9fe68d hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc4e1b673 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc931b412 hsi_event -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x603f43c0 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x6bf0348a adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xb912353c adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x11cd19d6 pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3d11899e pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4048a9ba pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x45c6d45c pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x54aedb0d pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x60366345 pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6f1a7ed3 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x79dd5457 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x93600504 pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9cddbf5b pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9e69e330 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9ea3ef4d pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb98ab392 pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd458dbbb pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd527b3ed pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x40a492c9 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4a8bc48d intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6c01e69d intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb1f187f8 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbf5e2d8e intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdd08e1db intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf190a718 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x66196af5 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x76b8adb0 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7866faeb stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xbed1c7ab stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe357cc16 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x14a906cb i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7118ba87 i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7e11bc7a i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xcb649910 i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xf9eeeb95 i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x47566ac2 i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6414bb6f i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7b40fec6 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xf3203977 i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x50482ee6 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x749ea47c bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa4dc56e2 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1aa091a8 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x419212c4 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x56bd4db5 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x951ba19e ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xae08be91 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc5573a44 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdda7e5c4 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe1b8a24e ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe8cf400e ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x55d75421 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xb48fa23c iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x17584c1f ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xbcc17563 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x83e8372c bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x86c213d6 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xb06da6d9 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0527ba57 adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x10e07e33 adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x253a0832 adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x55c4d877 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5b13ce03 adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x792ca427 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8e3ea84d adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9a296bb4 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc2f43a81 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcdd6b60e adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xea5459fd adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xee3fc7e3 adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0aa2fcea iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x12931a30 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1bf8cca4 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x217faaf1 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2846b334 devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2cce8246 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2fe25f20 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3c686a87 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x520ce023 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5dfa59f9 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6aca2975 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6cca41c9 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x72d32cd5 devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7542ce4f devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x768686b4 iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x77886432 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7cee64c2 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x94f09bea iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x96513e93 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xac1a8633 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xae593e2d iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb6b4fdfa iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbd8b4ff1 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbfcea9a2 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc199154c iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd866d4f3 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdc262737 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdd67add4 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xee2aeab5 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef84262f iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf60d6110 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x2782288c input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x7b857c63 matrix_keypad_parse_of_params -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe2d1473e adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x209b1b6b cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x2387284e cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xcb52df5c cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x1537e829 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x749f9230 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xc3f35db1 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x6595c1f5 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xa4a0eaf9 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4f38ad5d tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa2af0483 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd2536b6a tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe311fa16 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x27d78a9b wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2a877f7a wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x37396220 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x38f6efd8 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5ffcf8bc wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x70a52c41 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x84db4a94 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8ad53ae9 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb13cd6bd wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd6216e2d wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf1fca197 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfb9362be wm9713_codec -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x379d2766 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x43be46d8 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4865ad03 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x52e8c65b ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x584a8c57 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6622b88f ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa75d950a ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdfa8b2e7 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfd915e12 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0088e7c0 gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x16f84a88 gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x170229f6 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2f0a3a80 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3a267efa gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4187c2cc gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x518543aa gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x78a6de04 gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x82de0c0a gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb0a2211a gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb0aa658a gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb50b028d gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb98b4fa3 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xbd1bc486 gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc2402916 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe029088b gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xeae2cc1b gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x14de6262 led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x29c0373c led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3d622b39 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x63f22031 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6c616b89 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x78d7cc0f led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0c269fe4 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2cc4b4e6 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x638e2246 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6b3f078d lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7429cdc7 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x97475b78 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9ba3db78 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xaa9f6be5 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc844a974 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcc5ab572 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdd114226 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a0527be wf_register_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x259ef226 wf_register_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x2aa7a321 wf_get_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x5c58093f wf_unregister_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x5ef16309 wf_put_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x8f0d84aa wf_unregister_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xba06a604 wf_get_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xcfbe4cd2 wf_put_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xec395730 wf_register_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0a6ed5fd mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x17dfe571 mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2adfb0f2 mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2b4a31c0 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4ee65db2 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6155c159 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x615f15fe mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x704cc8d9 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8f2bc57c mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcffaa6c8 mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd7fc53b0 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf1dd3935 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfd2ab1de mcb_device_register -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00b74659 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a1a7a99 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x374f45ea __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a4dfef7 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48991e9c __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f124797 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x614e860f __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x647af374 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6724de29 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6726a0c1 __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68f1ea6d __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7114cfcc __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78c57fa5 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7cb4bd6f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x816ebfe0 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x833b99dd __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8afe3e2b __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x912566ef __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92c55e92 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c59320b __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7004101 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf2376ac __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3942afe __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4cffcbb __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb9c28744 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0bd3171 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc773563c __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd81ad8c9 __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe30b6b2a __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6169c53 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcb52b5f __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x087c8b3c dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x301a1231 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3a3bbc27 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x544966cb dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x69d527c0 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa514f101 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe95d345b dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf020af00 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf79c430c dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xaaab5f6d dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0ec54a11 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x207c9652 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x36c118b7 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa237c33d dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc8cac81b dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf6f0b6ce dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf756ae4c dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x0f4156f6 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x42a2a8a5 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x19fc6a45 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x525347b3 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d1fca71 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb1f31828 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb744a0ae dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfeb9a416 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x71291285 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2507774 dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x05803628 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x10ccc63c saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2a9fed93 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3c86893d saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4c8dff74 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x622b99b2 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6526f7ec saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9bd4ce08 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc216307f saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd36d325c saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x04526a33 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1163ee47 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x14b7669c saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x209f0fdd saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3acbec88 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6ceafb20 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x81977a45 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x11c31556 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x12a6904b smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1affc58a smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x26f7f3d2 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4193dabd smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x68a23f64 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x75d25848 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8d2be7ab smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x94ce8069 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9900acfc smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa59c59e5 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc30968de sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd35be83f sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xda92fece sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdd36514b smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe0c0a098 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe69817ea sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x1e573788 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x8f53d4ee cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xc4774f87 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x0a2892d1 media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0x2477f31f media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0x329e421d media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0x39da6bbb media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0x46b1121b media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x6a699c61 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x6aa2d72f media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0x719f8a5a media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0x72bff82d media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0x76c7e0b1 media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0x7ace7202 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0x7b37f6be media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0xaf248741 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0xc7cca396 media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0xcd5d73e3 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xcd7f51e0 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xdc418744 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0xfcf6dfc4 media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xd6b4bdad cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x041be900 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x044be9e6 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x18cdcfa1 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1ae8c9df mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x32eb2322 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4d3a9e92 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5977b028 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7f33156d mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x808b898f mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa38e102f mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xacc3f4de mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb57e2664 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb5fd178c mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xba49c05d mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc007f25c mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcc499f67 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe00a46bf mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe0e63379 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfcdc601e mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x05957024 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4a32f5ee saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x711dfb4b saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7c7f163b saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8160049e saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x879b9052 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x91829dbb saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x91a4d7c0 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa5d8b7f2 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb6313036 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbd446417 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc5fa4698 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc6da54a3 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd1233f81 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd292ae4d saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdda4abe6 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe5c8982f saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfbda1855 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfe31d323 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x11de4686 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x25e7e546 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5f0bc71a ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x73f532df ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb0cf620f ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf1c776a5 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xffe07ca2 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0e373ad2 xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x13950661 xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4339cc51 xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4f681cf7 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x8fedc35a xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc4c6d739 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf965c88f xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x70a902f3 xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x45940f1c radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x8189aae2 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x22491d24 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x392cba02 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4539a676 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x45dd693f rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4f349f1f ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x65d4571c rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x72c93142 rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7684ea57 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9514d2e4 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x97df4d0f rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9a7a1d9f ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb982404c ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd23f2d53 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd622469a rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf6f64a1b ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfced93eb rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x63745a30 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x06cf9600 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x583d77d0 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x9acc2469 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x999e6975 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xf884a3d8 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x3004e2e8 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x37d3e05b tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x794b0b1e tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc55bf5d8 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xe80bfb91 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x2cd55f86 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x4a23c0a8 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x9ce6fdb1 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2b87b675 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x31ff5857 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3c190217 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4b04d88a cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5012857f cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x597b9de2 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x68fb8c39 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x708d93f0 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x71e7f630 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7579b236 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x77448618 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbc0b2191 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc6472204 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc71fa084 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcc1f5b56 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd0998f36 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd268fdd5 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe7c13dfe cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfdccfae0 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfe24b8b9 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xbad8b787 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x6fd7fb96 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0334d4bd em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x16f82d10 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x26758371 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x32b5d6c0 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3b78fc10 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x50f14126 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x513e8eec em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x53f9e4e7 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5e799b89 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x76267048 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9850ece7 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbeee5946 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc255a41d em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc51e7ddf em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcb04c180 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcee7c154 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf07da825 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf94049db em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x34c2d36f tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x792e9ac7 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x90385715 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xab081b4b tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x07f3c864 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x349e03e4 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x9bfa65e5 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa07e1756 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xcbbccbf1 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xff08f7eb v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x31b3f412 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x49436c0a v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x046e7fec v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x067a6815 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x10d0160e v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1424a2f2 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1efb18a3 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x366dd39f v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3a01aed8 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x410adeb2 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4f2aece4 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x56a6c1f2 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5f7baf53 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x68df034f v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x791121d3 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7a381dd5 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x96971e28 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb0244b39 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb1165435 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb59d32f0 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb65b04b0 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc0e57409 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd591fe44 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd9a767df v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe8929f50 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xea410b68 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeb47fc45 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf291a559 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xff0ea147 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x07416d1e videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x15a509dd videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x17445980 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x287ffefb videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x45f1d75e videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4c2e2868 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4ce13718 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x53c9636a videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x612992b2 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6388ab87 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6e50eeeb videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x764e3630 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x883ef1ab videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8a09eaba __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9a0f9879 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xab336f87 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc80ca2d4 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd1572039 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd74eb78c videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe080c48b videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe4de7476 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf310c420 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf892df8b videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf8eabba7 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2b74be8f videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x7ec526fa videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x82c09ddc videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xfbe9ca95 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x7fa26630 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc3f50cab videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xdfb78771 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x22b6a6bd vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x231f14f4 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2bab0100 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x33ba1220 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x40cd6763 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x642f06e0 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x70b854b3 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7a59b1f6 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x80009e8a vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x95d560e4 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xafda0b09 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb45a7b6e vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbbb57c2f vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xce99d291 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd064ba85 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd7764515 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdc5ad82e vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf234313d vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x96660137 vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xd5d7c6c0 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x3819b9ab vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x89f66494 vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x8803bbdf vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x07910b42 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x08acb0d4 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x128ec694 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x14b57959 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x17b90287 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2d44aa8a vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2f056d0a vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3112449b vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3160924f vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x48e6048f vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4d7fb941 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4d8e5a32 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5a8dad30 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5c6ce48c vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6025b872 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x614881e1 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7235daff vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7807d6ec vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7d199a44 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8103ea1e vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8799b35f vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8c70c2e3 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x927aaf40 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9440e9ce vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9d81cf90 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa57ef520 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbc7307c2 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcc4048b6 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xceefbf91 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd8de01b0 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe86edfde vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xffcc9625 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x38e119e4 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x00b48ff9 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x014ef133 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x05555f1d v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x085c1c98 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0cecf440 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1d3c6ba7 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1e23a1dd v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28d20b15 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31e3d76e __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3740e82b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3bd82e38 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3cc7fabb v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3ff34cca v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4a766e0b v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6036edfd v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65b94b92 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74193181 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a85f5d7 __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8ac28bff v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa51d19ce v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa5d5bc78 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa7aea4b5 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbfbde32c v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc82b42a4 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd20a9405 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd57b5093 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8e50779 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xec9a2bbf v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xed64dd83 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xefe9f746 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5a1c759 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf6166b9a v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfe1875bd v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2e089529 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5f9e7757 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x7c46228c pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x100046aa da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2e6a7276 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x62c81f11 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8ae1840a da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa35eb918 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa739ceca da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd9f7ea61 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0d059cdf kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5abe06b3 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x76e652f7 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9aef8a51 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa53f3d18 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xaeee34f7 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbd5a9311 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf0f41729 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x1c26e28b lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x64941d0f lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x7b34c339 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x75bba791 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa451efe5 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xafdcc176 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb6273c7a lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb86375db lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xcf0447a0 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xdce8a1da lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0eb613a7 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x23d5422e lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xd1e81a1e lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6fe5f9df mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x890d0c53 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa252fac6 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc9b74773 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd5b10906 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xdbb8b21b mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x00623621 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x10132ba9 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x23fdaffb pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2cceea28 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4e8b92f3 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x62b4fe9a pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x80f5621c pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x83153670 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa94fd397 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcf74118c pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd22f8f77 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x03d5816f pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x6ecacc57 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x23355c0b pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6d170c26 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc7ff34e1 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xef427a1a pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xfa3bf1fd pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1c57552e rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x42bffa05 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x43f8034f rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x733b7562 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7fe7c189 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x81de0b82 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8823dbff rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8839d8a5 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8ba6d904 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9e578f4c rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9e8e82ca rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa2b8a75f rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa54ab339 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa71f203c rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc79556da rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcb3ac6eb rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcb48e721 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xce4309ba rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe8acea1a rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xedcbcda5 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xeea4e323 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf05ab4e6 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf4ea3369 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf68ac8a8 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x23b311b7 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x23b51000 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2d7c12a6 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x43aa554c rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4e6733e2 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x80221126 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa44afb8d rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa45e96da rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xae092ff2 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb8459a52 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe6fee765 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xefcb7856 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf87912cd rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0dec1e6a si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x176783e1 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x228a96c0 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24e3e513 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x251540ce si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2cf56728 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2d345751 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3342fd06 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x35ccee73 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x36e3a379 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3a64494b si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3f88a6a9 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4a344610 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x50a76341 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5250d4f8 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6c69a888 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82d9b647 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8393094c si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x88e4cf92 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x93bb3084 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x99ed2c77 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb3e20d39 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb76a2d11 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbd3a17c5 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbef6cd49 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc933fd57 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcd2c1302 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcf11e9f3 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd334e0c4 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdba3720d si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xef9275d0 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf624eee8 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf7733ccc si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf99a0f7c si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1615a2e6 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2e2320c7 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x45cca280 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe4fc8300 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf84ea50a sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x53154ced am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb0b51045 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xce1d6154 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe39299b6 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x5928ac50 tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xbb5cb9c6 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xf2aaf1b5 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xfc12bb28 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xc72914e8 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x42d51adf bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x9a44ff82 bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xbd8509a8 bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xcede6a3f bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2fdee6c5 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x457be3b4 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8824100b cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xf9c8273f cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x30f7b59c enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x316f7028 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6cbe35c8 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x86747c42 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x87501cda enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8d90b52b enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x97e240f0 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xaa38845e enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1b7417ea lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2078a074 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x31cf1249 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x43475131 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x49df0d2e lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6de750cf lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc9d3d228 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd4450e9e lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x98206a1e st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xee4aba47 st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x05dd557f sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0f0cd532 sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x29d4f62e sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x31ba45cb sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5c9c8484 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x63391eb7 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x89ab213d sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x94fa07fe sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa668e99e sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc42bd28b sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcb29cc19 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xde36d17b sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe5bf529c sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf2bd49d6 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0f0849db sdhci_get_of_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x142bef05 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x397351e6 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x60d89122 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x67bba21b sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa373ac55 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd18e37d4 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd895b59a sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdf5318b7 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x07213fc7 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x38081a2f cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc5163fb9 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x279c88db cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x59cec30b cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd465475d cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xb65bee5c cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x10cada67 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xb4ffbfde cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xfc6ce8fe cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x05dae63e register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c35797b mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0d8da2fe mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x10dce20f mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1658a33e mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3647b242 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3ba8007b mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x40286852 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4986c989 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4cbec806 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4eee4072 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52d6c1e7 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52f76ac7 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53271585 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53590493 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x54f21a44 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5c22eee6 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5fd7d7c0 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e6976d0 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x71535254 mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7f6f979f mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7fdc1777 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8531b668 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x87548533 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x90002e87 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x90562c80 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x96e8ab85 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x99fb1104 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9b759451 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa09cbc9c get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa90d76a0 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb65a43e7 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbb7bcdff mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbc134eb9 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd35bb69 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf360a20 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcbafb9fe mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcd77bf47 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd38f789c mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd3a07716 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfacfbcfd mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfbb943b9 mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x34e84a6c register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x493800f1 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x4af16eb0 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xbe6b09af add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd19ba070 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x368b46a8 nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xb9e42188 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x4f412e80 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x170f01b5 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x18b5e862 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xd073e033 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1b365851 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x245ab5ad ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2a3c8f99 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x320863f5 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42ad7d5d ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x488bf459 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x81cf99cb ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9b67288e ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xab578262 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb0b4f45c ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc80d48de ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcd878445 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe7919e77 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf8eb4619 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x6076d1f7 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xa779e5c5 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x296e87e0 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2cefd756 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2fe61adc alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x60482f4b c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x89116161 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdaf48480 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x00c52f57 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0ac97ffd devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0c3ad394 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0cecc2c5 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0d618c12 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x48ec2113 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4af6f14f close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6593e5fe can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x71537821 alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x73eacbf7 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7c38536f alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7dd3db92 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x90634042 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa19309ea can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb32b1862 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc2ed2ff0 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdb4d17cb register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf90736f2 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0379028c register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x13d6a8b8 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2daa01f1 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc35cb4cc unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x025b2ba9 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc51fec76 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd020b230 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd3b8cae2 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xc5f072d3 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xdd467491 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x011945de mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04100f1f mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x060ffad6 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06205a27 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x068b7e90 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d2b8536 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19351112 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a1864db mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ed3fcfe mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x224fe7f3 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23cc175d mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24b2feab mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2647e5de mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x272bf8ea mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x277ff546 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28950385 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30c1b7fb mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x360dad12 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3858bc71 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d027cd3 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fc0bbcb mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fcd5352 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40a1478f mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40de5d24 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4228f74b mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x437963a9 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x456fa1cb mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4be1ee8b mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d410d41 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4dc4c889 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5065e8a0 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x509196b6 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x532fd37c mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x557c6ef2 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56fa5dcc __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x591745ff mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e8e3435 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63860886 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65008b5c mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6534032b mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68af418d mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68e272fb mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a4167a1 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a9a5f79 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b25580e mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d2ca206 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e482dd5 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fc8ede9 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70163ba2 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7291131c mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x740fadfe mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78c2e198 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b454423 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c24c643 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d6aeeba mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fd337e8 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x810de08b mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81cb0d7f mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x839c3de0 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85310850 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87350a64 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88860b58 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89bd0aa6 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91468518 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91497ff5 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x935b2a43 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9603c971 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98005889 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98cf1dad mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ae7abaa mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9de8cf44 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f4dec50 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9feb7708 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa227aaf2 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa37916f9 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa45acb0d mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa56f88ec mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa981f3f9 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac774bd8 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafa1feeb mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb31f986e mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb881911f mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb04658f mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb78052d mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcb7b6b2 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbce9fa90 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd67fc94 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0020654 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc232b055 mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2a28ccd mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5da16a2 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca37b1ac __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcaa4465b __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0487612 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2be4586 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7f6c4ad mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd86b16f0 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda8da23b mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc24811c mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc7a917c mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd4c95ad mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf49f7d7 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf7cc7a2 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0be421b mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2505347 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe425007a mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe47394d9 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6ed81f3 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe751cc56 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed75f1e5 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef092118 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0bbe843 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf16fe349 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf33d356b mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3b75857 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf509105a mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf564eaf6 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf599883d mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7c535dc mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7daf8e7 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa8f07a8 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcd4f273 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd84694a mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffc4f343 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072c9098 mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x096edb3e mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d40af30 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17d85976 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bb19780 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x302353bd mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x426e6573 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42714dec mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44377c02 mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x462d8acf mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x489660d9 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ec2e9d9 mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fe6c9cc mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52027f32 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56dbdcdf mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x615c5181 mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x639ac04e mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6735692d mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6debbe48 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ec1926b mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x701c67c6 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7444f635 mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b4fa9e8 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fc31796 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84c4ccce mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85ee3032 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88499959 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eed4c3 mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98c94a39 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa41e8782 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac5fb6c3 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac80a6a8 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7f9041b mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb96b1420 mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfe3f391 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc12b3ae4 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc86d3b50 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc96016cc mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd04f359a mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4f9516f mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6e106af mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebd4fcb8 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef472a78 mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3fb0420 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffee6262 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xdd0890a7 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x226fd364 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x85c90d29 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa95157bc stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xbcefe73c stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x03d832b5 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x18053277 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4e4d29d6 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf15d211f stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x13fffa17 cpsw_ale_control_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x31d7b397 cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x349a2124 cpsw_ale_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4638c836 cpsw_ale_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4b40e2c7 cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5be7755f cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x690c5a4d cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x788b8ed3 cpsw_ale_control_get -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8b2d4fdc cpsw_ale_dump -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9b56ed95 cpsw_ale_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xab143952 cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xcb613301 cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd1706b8c cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd45a951e cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xef535bb5 cpsw_ale_stop -EXPORT_SYMBOL_GPL drivers/net/geneve 0xa9535678 geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/geneve 0xd4d91e10 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0afe29b8 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x26533569 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x654d858f macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6fb4aefd macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvtap 0xdc204a74 macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x25685384 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ff76c95 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4824fd60 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5b525c56 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x61fd1adb bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9b91ca53 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa29a6713 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa48d1179 bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf1741d79 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfd6f3bc7 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0xd59a2c9a mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2ba258ca usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa717ea02 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xcd23610a usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe82e4e7e usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1227d21e cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2b75ef7b cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8a5741ac cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8ed304ec cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x997b726b cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9c0e3a8a cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa13def3e cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc66bcb84 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd7f19faa cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x10722494 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x126c064c rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x16a01f9a generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x517ee834 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5c43bc08 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xba24eb8c rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x08e85609 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0f721131 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x27a5f91e usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x27f838db usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x29b9abd4 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3014ca29 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x380a3943 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3c5461c9 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3d0b01b2 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x40b64b57 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x474a67ae usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4be79a4e usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4d8111b8 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x54571952 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5ba25742 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x65023eb2 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6ae04d59 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6bddc1d6 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7bae2ca9 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7bb27e27 usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8c3723e0 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x95a27da4 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa0de57d4 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa0df0b74 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb68cce3e usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc21d3896 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc81e79f6 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xca5eaef0 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd6dde0d5 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdc7714d7 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe41b8d0f usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xea4d5cff usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x2ad0120b vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x7dfe0d7d vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1084456c i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1bfbbeb2 i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x27036853 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2b9643a8 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x33c28e0a i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x66d7fa6d i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x691769bf i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6f7a0957 i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7a2beabb i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8870be5d i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8e9aaf7b i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9628ec90 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x97e5e246 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc636c6e0 i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc76e76cf i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe10299d4 i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x2b2b8037 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x72069176 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x96a47ff9 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x997b41bb cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x21c0777d libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x12f8728f il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x6aafa914 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x798bdb50 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x9fcef5e5 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xee2f314a il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0125e49d iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1433de76 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x19ce5f30 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1ef4312b iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x249ee1f2 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x26ff13d5 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4a7d7d5c iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7079f56f iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x721096d5 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x829fd38d iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8614786c __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x87458c33 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8c201cd3 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa077751a iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa3b997a6 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb16ca99f iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb2967531 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbc34c357 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbde2f473 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc6525bef iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcd103c93 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd544fdaa iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5cbcdec iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf7360989 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf7f4016e iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1db833c7 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1e3988f3 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2f97457f lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x57744091 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5d7a25c3 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6a946060 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x71634e44 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x842bfc00 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x93f421ff lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x94058fd0 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9ee774d5 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa610bd55 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbbf04fcc lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbd5adcfa __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe75f042e lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfc87aa12 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x0966880f lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4a96b417 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4e244e7e lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x87b1ddd4 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc06cb299 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xdedb3ca6 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf4558494 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf8f7fa59 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0e64f96f mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x14704ec0 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x248566b9 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x266ff418 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x38a6ca25 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3de09c23 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4b06c87b mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6486e929 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x667aa1d5 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x69880c60 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7441ba98 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x77147d23 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7bfa28f3 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x834bf85e mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8393960c mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8c24adb3 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x946761e0 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe3b65d6a mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf7b89200 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x2139cd86 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x28d8884e p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x449be005 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x50b4acc1 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6055099d p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xb30d9f67 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc0b1f55c p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xea7ab63b p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xfb567c58 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44737030 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x58c9d078 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x969f5a0b dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe947451f dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0ba9c0da rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0eb63a89 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x14441443 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1d895cd5 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1de9d89c rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2149eabe rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x233c1c12 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2bd120c1 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2fc6dd5c rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3742a6cb rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3980abb6 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4416deaa rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x561be076 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x634b87f5 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x83cc6437 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x86032568 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x881cb656 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8c6f3cef rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9ee18534 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa2b8088e rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa7132397 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb12aff21 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb68b848f rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdcae1424 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe162d4eb rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf4d659d3 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfefc1eb0 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1938c9e7 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35a3df9f rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c143297 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x49d3d357 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x605c946a rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x708f1669 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x73ed6cd3 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x778878fd rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a6dac53 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d8a0d07 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9a3065ff rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9fa0ebaa rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac4441c0 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae27ef53 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba74ec7b rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbec1f3f6 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc6964af0 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xec2348c8 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9a00ac3 rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x219175e3 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4b9a5def rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x613816c4 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9f5ffe21 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x05b00000 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1058708e rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x12c98124 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x15e1cf72 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x38935e50 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3e838977 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x492bd0a9 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4a78d9c0 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4e2fc18f rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x56643983 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x64b2e338 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6c40c1e9 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7045f0c3 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x75d662df rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7808ddc7 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7a10f32d rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8cb6aafe rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x92fb8066 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9659ca5c rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa3db0cc2 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xacde4181 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xad13e21b rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb2f83246 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb6a1cbae rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb8532303 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbf99d831 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xca98ed1f rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcc35860f rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd2fa2420 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe0291eea rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe0cd3490 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xebffc620 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xecb6bfb5 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xecd8bbfb rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf01ba592 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf319e63a rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf8dc28d7 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfb9ccf76 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x018d556c rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3086b3f1 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3af0f0fe rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x47e5185a rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x59436d67 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5c00880d rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x6111eb2d rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x74388ef0 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x765f73e8 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x782882ac rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x78dead21 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xda78d36e rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf4cc002b rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x00dc08ff rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x01fbda14 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x03b2d9a8 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0d6b3063 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1fb14a87 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x216823be rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x22a21458 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x241a73ff rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2e02c393 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x370d1d01 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x38a7c4d2 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3bc02889 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3c012db5 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x417fd108 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4b3f2fed rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x53d12713 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x564d1998 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x589c05eb rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5cfcfb8c rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5d590c29 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x62bd9bb3 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6ea5c0ae rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x70e90395 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x75f4474f rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x826e5ec4 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8bab3f47 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x935d4b72 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9cb6831a rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9db42405 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa62ec5c3 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa6f5db53 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb6119380 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc1358f5a rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc4b6c67c rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcccaf5da rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd8cf63d0 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdced48fa rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe2a1605f rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xeb2ba395 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xeb4d32f4 rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf08b75e3 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf138e583 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf7a553cb rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfd51b320 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfe007f41 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfef2cde9 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x0f107986 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x303f5ea9 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x473cb41c rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xa8464498 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xd311898e rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x376b6350 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x520a747f rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x93d2136c rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xf0576594 rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x00dd9062 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x010c0a9a rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1edb62bd rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1fb5294f rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x61311bfe rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x614ca5d0 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6f7623ab rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7f7fe1c0 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x844d7793 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x912e675e rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x91a48624 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xad094a46 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc7ecb4a4 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd31d16ca rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdca006dd rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfcc0fea0 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x5af019b6 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa8a64194 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb783340a wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x049baac0 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06174e6f wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a2fd405 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x299e689e wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2a6f6beb wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2d277a8a wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f644976 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3092db06 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x35c3158b wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x41269a0b wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x42312e13 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4c7562c0 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d1725bd wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61904ce1 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6b77f00f wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ee9566a wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x70354fba wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x70529b40 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x785abc4b wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7a4120a0 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7f9f680a wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x80525a70 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x83394fdb wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86eeb8a7 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d38d34b wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9641a5f6 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa1ed00ae wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xac839795 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb818a5d0 wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb8d041bd wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbd15fa76 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbeae14f4 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbee43775 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc101540a wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc11e1068 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc28a5c77 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc32315bc wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcac33180 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdb454d8a wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe9fb9a1f wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xef04319d wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf004da6c wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf0dd2021 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf238468f wlcore_remove -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1cf59e1d nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x49dbf2a3 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x4f8e71bb nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb1d08161 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x228e7583 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2615959a st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4e0cf17c st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x63de3663 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x69cc1e46 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd46930bf st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd5329e26 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xfe8d9734 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7f91e5af ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82af4774 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xa8fbd4cd ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0e44e5a2 devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4476dc25 nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x6ee42014 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xa59828cf nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xaa62dc67 devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xade3ee87 of_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xdf9bf3fc of_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe10d1075 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x9dd89133 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xa76198a0 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xf7f7566f pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1d4ebdd7 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5c86ee08 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x77486b5f mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x9a378301 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xab114a31 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x10c9efa4 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x331358f7 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4369a1cf wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5d5a8dbc wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x84098367 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xab2c3a17 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x9ec5e557 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00fdff2a cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x08f5f4c1 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a5fe5aa cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f8d7d5f cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f02b3c5 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x242e3634 cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39f3ae54 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3acaa26b cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b472343 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f6819d9 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x46fb7e9f cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4c116825 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4d91f1fd cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4de725ee cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b20e540 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f0a2f47 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60d226b1 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x66644c73 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x694e6ff8 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6dbece05 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6e85b41f cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6edd5489 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6ef4aaf3 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7bc2be33 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f00889b cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8450ef99 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a2d087c cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8fa5f08a cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9a31cb4c cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9b8632b6 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa39e43c4 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa707cedc cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaa2f99bb cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb1ca14e6 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbe4cc1ed cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbe83da1b cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc3f6749d cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc746e026 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcad54579 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5390f49 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe21ada65 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe51c228e cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe659c89c cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe7fa874a cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea3a9a3c cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfba730cd cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x00c47ede fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2dab67b4 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4538bb2e fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x48229556 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4ede7028 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5d78db2b fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6e4fcfc7 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6f485646 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8d98317b fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8d9fecc2 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9477de8f fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9d25f87f fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa5bc4684 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xab56a2fe fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf20a4c65 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf28985ff __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0eaf44b4 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x377e8a38 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x512ee7f1 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x79f93cd9 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe0061a68 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf13ca013 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13937444 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28649a68 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2bca6cfc iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x391de066 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x393ada4e iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3cb2ca5b iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x410d9dbe iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x439c9566 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d03da5d iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x516a5976 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x52344afb iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5b3231bb __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ffc7ca4 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60d45f88 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64e7402b iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6709f927 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x689825d3 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6fb3025b iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x712d9b19 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x748f14c5 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75e37b5b iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7df5c63f iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x83260f22 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8763333f iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8ca02b42 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94bb8d41 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9659d921 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa81b077d iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac3b03cc iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaca70c4f iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae1998b4 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf759249 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb05350bb __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc23f62fa iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd344008a iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde20d58c iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdffbc2fe iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe977b64b iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3b8616c __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb0d388c iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd84650a iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd9a1e48 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0a229c6d iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0aafe878 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0b2174a7 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x13fe5649 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x25da2df5 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x30946463 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x54be5a22 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x560ddaa5 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x568863d9 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x622cc2eb iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x78c0a81f iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x79b2279e iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8d72ae9b iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x99c59462 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc4af5ba5 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc7b4c0f4 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd0ee95b8 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0108d2e1 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x02b1f134 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0dce3897 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x25a7f953 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2ecdff85 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3bb5ff9c sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4715ad12 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x47941a9e sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x50fc3d83 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5934da7d sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5fb744c4 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6180f972 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6fe39823 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x84e87274 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ce81104 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa2c438f4 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb291bf3b sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbed6f23b sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd7648787 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdf00a746 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdfcea3d1 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe4d15ffe sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xecd321d4 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfab917fd sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x08bdafd5 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1cd884af iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x22759e24 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x241accd4 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x27aca4f4 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x37f053d0 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b024ca9 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b13b0f1 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f67c948 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x420f8110 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50160e5c iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x51773633 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58a3c290 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60704ce9 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60a1b724 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60bbea15 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x684c2523 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6bbd0217 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71d8fe3b iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9308e109 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa652883b iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa662b798 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb18da07c iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb984beb5 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb1abde7 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe73a1ec iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf3c62e1 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2dc3cd2 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc3b7d695 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5f124da iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8c52a99 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc0205b4 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda059f43 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdbe68a32 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6239a3d iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7c319fb iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9fb9a76 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb2ce8fe iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc5421e6 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfe30f847 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x42ad3c0a sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x58e3dea5 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x80753210 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc5541759 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xdffb79db spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x04eba796 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x05a7cc99 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6d9f2b43 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa8d2fa39 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc55cd227 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf580406e srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xab5c5a20 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xb42c35c7 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc5e1c575 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc75f75f7 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xcf3a189f ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd429ab53 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xf68a7ffe ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x044ef206 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x05dee46c ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x35897dca ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x931bc84d ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xac77688d ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe71004cc ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe90760e1 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3b0fcc36 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4a9ee6d1 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4ef0dbd0 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6d0c8e65 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf12ddf17 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x128ec933 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1809c5a8 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x53cdf921 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb882b941 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1349aa43 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1f7a061d spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x31b227fd spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x32489e4a spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x514285e1 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x64df943b spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x756f9c61 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x77dce746 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x92420fec spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb63176c5 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xca4637af spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcf4e76a2 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd1edd96b spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd8ff0219 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd975e62a spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe5e195d8 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf6dfd75b spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfe049356 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x1391fe1d ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x050f2f0d comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x11925233 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x15bb6e64 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1a80b8e7 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1aef53de comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2e6b92c8 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x32546188 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x42286334 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x45e55a4c comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5430c2d6 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5f2d132c comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x631a4dc0 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6463e54e comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6d3d11cf comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6f4f55cc comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x70b7a8c0 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x72b1100e comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x80f94856 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x881dbc6f comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x94a85922 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x99c42137 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa0ff36fc comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa1ffd2e6 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaad746ab comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xab0794fc comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xac231859 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb0c3d5f8 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb8a06622 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xba2126cb comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd13749cc comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd2544d91 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe49dbdb2 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xea6ef941 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf370a371 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf6529eb5 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x14b426ae comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x17fab27c comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x250b1c96 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x4e4412d0 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6db0ac7a comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x7a5de269 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa70e42eb comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xdc8b5c2a comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x157997f4 comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x2802f2be comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x3094f946 comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x3d125288 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x8785aa8b comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x9718d7dd comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xf65d4542 comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x27bff8c2 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x2b47a901 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x326805f8 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x4bb6ecc0 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x9fdfff29 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xebba6b1b comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x72dbf867 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xacaadc08 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xd791d600 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xedf7951c amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x03693dc2 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x277d274b comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x34e77278 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3f76de59 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x47d7db6d comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x716d2a5c comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x831f8d4e comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x91e0da9b comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa7f3fb6e comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc538a458 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd12128da comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd71368f1 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf18796e8 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x5f98a6ce subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xa311e9c4 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xf4a49e67 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6db0bcb1 comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0xf4907076 das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1040f201 mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x19c6239e mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1a190592 mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x383d914c mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3fc937f3 mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x45368c88 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4cf4791d mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4ddb5707 mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x57359c55 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x58deb2a1 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5d15ab92 mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5ed36cf5 mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x64dd51aa mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x65a56e07 mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7fff9f10 mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x921a867e mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9e01ce62 mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc1cb9c48 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdf582e95 mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe3c4139d mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xed7ce682 mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x132d2d94 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xa6392e1f labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x10898249 labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x1b380730 labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x27b8a959 labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x5311d4bb labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x623d43dc labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x029c6fe8 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x11bf76d4 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x63b319d3 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6b151282 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x832a5e2b ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x95cdf826 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb5e90a1b ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xcf31b49c ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x058814fa ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x1b2ae9ec ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x758ad692 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xc9d75f64 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xcfd516c8 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xfbe7716e ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x1a9cd3cc comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x232daf1b comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x39c0a260 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x6fe8ef91 comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x7137c0d8 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xabd64a79 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xce4c4937 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xcde14790 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x11810d26 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x136ecce8 most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2dca5209 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x31d47ca3 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6ddd00b8 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x73151621 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa781d25c most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc5711adb channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xcfc3c32c most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd0426536 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xeda6ef6d most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xeec3a495 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0af076bc spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1e244685 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x53fa2aa3 spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5fb50a1b spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6ae610e0 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6e20005e spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x81252647 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9fbc3fac synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xafe8a5ce spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe671446f spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x0cf866fb __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xcef741e4 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xd7610d04 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xb24f42f8 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xe2279bd2 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x3c2de9c2 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5d66d45f ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7292f4d6 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x873a2f76 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xed2b3ff4 imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6e38f72e ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x94d0e9d6 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x992fb2af ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9e6484e3 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb190e99a ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xceb22e4b ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x067a1bf0 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0c184f87 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1352c108 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2bbeac3e gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x37854391 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x55f92a1f gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6f8a33f4 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x71770b05 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x73ab73f0 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x84087510 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x84429667 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaa2ef58f gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaf2c3586 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb767413d gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbd1c5dcf gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x733a094e gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x88301c4f gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x1e43a028 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x4cf6000f ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x5349af2c ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b806752 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x20f2600a fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x28206e73 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2add8e4f fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x49609e0f fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x59d14f65 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7065c687 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x731aa5d5 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x78fd7c5e fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xae1f6ade fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb27c980e fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc4aa304c fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xed9804ca fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf3d619a6 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4fa771d fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3ef524bd rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x552fa506 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6c7f03ae rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x85dd5a9e rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x89c9a6d7 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9475dff2 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb2b2f858 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc94eb464 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcc510b9c rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcf73a63c rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd92d8076 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xda222f72 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdeed2b95 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe8313fc6 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xed0ce442 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0129594a usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0492e793 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x06c6a40b usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0e37fab6 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x10341c8d usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1320c6e5 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1471e6ba usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x192847d3 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2be37dd4 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x391a1deb usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3fd5102f usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4792dda6 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4b41d749 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x53589e78 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x607cdcca usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6bfff0f7 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6ce8f8cd usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x74f993e5 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7caf6fa9 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x83b0a1ca usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8a7bc7b7 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8b2391ca usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9075bcf9 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa68809c4 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaa74feee usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb06a25d3 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb63b6491 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcf3a515a usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe552a195 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfa17aece usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x05192257 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x08fe8eef usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a9650de usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1586d0fe usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1c35afc9 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2193f861 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e2ddf1d usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5320df7e usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x73cf2cd6 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x78bfdae7 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x78d481e8 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa789aefc usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xad3dfb8a usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x4417ef61 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x4532df09 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x411d110e usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6481b4b0 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8e2e2530 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa8ab0979 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb689ee74 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbcf94fe0 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe7b272c8 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf39a7f51 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf4c63799 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe23debcc musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x8a1b947a isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xe84cfe01 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x042fdb04 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0c96ff0d usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1e9249f1 usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1f88daab usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2095a034 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x54d31b8e usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5f2e3aed usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x64bedee9 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x66d046f3 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6a2cb569 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6cdbf036 usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7926de28 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9e67bae7 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa83ecc5d usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xba2aaa03 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbdc8db4e usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd41bb4ea usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdb89d8a5 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf39c1fb5 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf42c1836 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf707831d usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0008cc0f usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x154ca944 fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x25cdd116 usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x348b459b usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4499e7d9 usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4c312b13 usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x50fea875 usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x54d4b1eb usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x723f6ffc usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x78283b4c usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa3e766ea usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa55662ed usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xaf35961b usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb204db1a usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb50d420e usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb7806d2f usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbb3dab66 usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc10a3881 usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc8cbdac2 usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe3a2804e usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xeb5f7db7 usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xeddcea7b usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf36a8399 usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf8b94152 usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x06f23cf4 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x16b886b9 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1af3c292 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2ad27972 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3aeee9c1 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6216d041 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x71e2b2b6 usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x72dd9482 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x94e2536f usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9a46595e usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc8d1deec usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf5aa66f9 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x09c84656 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0ac8756c wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x4786dba4 wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x91b1a75f wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb0fe309b rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd489a8df __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xfa131743 wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x02957743 wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2b35e361 wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3c421f1f wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5a5827ec wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x657f3eba wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x68ea83d8 wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x91da4997 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa5454a1d wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xac4380f4 wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbcba6b4b wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbf11cf33 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xcb67ec74 __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdcb96025 wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xeb132303 wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x2af1cff2 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x5c5b3c06 i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xf6b76df2 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x76f601af umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x978bb4c3 umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xca096406 umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xdb81f089 __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe15b9d2c umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xecac9d59 umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xee88642f umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf12b5343 umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x09a422b1 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0dfa8f2d uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1b493da5 uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1d746cf6 uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1e84daee uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1ebc8bd4 uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x205b84c1 uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x270f1c2d uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x42680c80 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4b6362e8 uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4c659106 uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4f3668ec uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x557942ce uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x56744668 uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x58e71cb6 uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6f9e61f9 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7859e49e uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7a01fbc7 uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x81d4ed99 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x89d53bda uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8e64c563 uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98233590 uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa1ce4dad uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa3385527 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa35c673c __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xab9485e7 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb07ff1e6 uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd7ddb66d uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdecdb8c4 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdfbe1939 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe14bb130 uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe85fa615 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeb9573c4 uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xed0fe5f6 uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf1cb3686 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf4b9859f uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfa0a30a5 uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/whci 0xcb830891 whci_wait_for -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0550d08e vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0c61a84d vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x16da80ca vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a66c7f6 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1de2e52a vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x485374de vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x544ebb9b vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x689e93e8 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6a62b6dd vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6cc36f1f vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x81f9e819 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x828a430d vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8599dd64 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8804ce29 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x90bd8884 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x93cd79b3 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa1d5756b vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa9f2b370 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaddfeae2 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb05ac9c2 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb41a9223 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbd5f33f3 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe1c0078 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc4ffa146 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc7029e3c vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xddba16e7 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe4b02cd7 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeac2021c vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe7e9ae4 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1d2f5540 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3b3a659d ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x74782dfd ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8585ebf7 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8c68947e ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa13f0e6a ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf30ad0b8 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3f9a1599 auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x4bbbf921 auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x70300fae auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x81c1a0f6 auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa2a82dba auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xab344c44 auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xad405582 auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb5742e77 auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd9ddab7f auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfe2797ef auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x9b70d211 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x492e8ab0 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x5b226970 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x0bd39303 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x14d8043d w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1b6a256f w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x31c918b2 w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7f75b76c w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9fe6f56e w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb6f588f0 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc6c5bac1 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf9b55294 w1_write_8 -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x1c8d4932 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8401df99 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xed306ee8 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7b2e41c6 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa0405a30 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbaeec520 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe397c115 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe51fd7a1 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf49dd99d nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfb3d071c nlmclnt_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x021a914a nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04bd3b8d nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c0f82e6 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f4671f1 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16517afe nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x175d9e53 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19cab3c1 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b60d072 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e2b49b1 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x224074d7 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x243970a8 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24f73b68 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x297743d8 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29d3d93f nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c5ae528 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cbcf764 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cc0a116 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d6768bb nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fa2adb6 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31053c2c nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31aa3c26 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x384b895b nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x398b9925 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39b5aa2a nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39ba9304 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c1a9683 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d46740b nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40b773aa nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x417b8459 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41e89c29 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42d58261 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cba21a5 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e43e678 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fa2cd53 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50940c47 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52797e4b nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x552a117d nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57bb4d0f nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b36bc07 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c005f50 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c2dd041 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d88abb4 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64969673 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65de67b1 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66cba4fa nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69532bd0 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ebc1a9a nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f9b56e0 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72491ced nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75810508 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x769f45d7 nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76cf1522 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cccaa47 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dca4263 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f79b71d nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82089e2c nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84d343cd nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88747557 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88b80778 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bbd95f0 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c78854e nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d40fcbd nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e349999 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92383b08 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92a58021 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94a091b8 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x955a8d5a nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9733b14e nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97e51d2e nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99287892 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9933c5d9 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a8cb4de nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b1b4baf nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b3e7dfe nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b7e72cc nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e1bdc26 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fa008d5 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1659254 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1caf7d7 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2fa547c register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3a3b1fa nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa99dcbb1 nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9c269c8 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9f9a576 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac5b83f9 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0a761d5 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb15cb789 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb418da29 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6378a91 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb64b883d nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7faba96 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7fad132 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba16005f nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcee5b13 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd337032 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc38f021c nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5e6a310 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc737afad nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8949c5e nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc89958c3 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd00c6ac nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda43a1a9 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb767ace nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcfe04f3 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd4888fb nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf427ebf nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe04a41ea nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0ff2ced nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5ff0374 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe60ceaad nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe917efde get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea6d5c24 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeca247ea nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed247c40 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef1f0e05 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef8c14c3 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf13e9086 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf15e6741 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf27c40f3 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf74927c4 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf93727bd nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9e7a0d0 nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeb02bc0 nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x0373856a nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00b5422a pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a9621f3 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c9ca215 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0cf2e8e8 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e5769e8 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x114e4288 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13dcd523 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1fd74b32 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23fe11c3 pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24046417 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x274e4536 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27fe6a72 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2cfc61f4 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35f02ae1 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3cd7b7ef nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d3ec81c nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3f482885 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46b76ad5 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4de57ae2 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5132c58f pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53324c88 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6186acf9 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ce0de17 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x712584b8 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74c21715 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76f9209e nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79c8abd1 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a94777d nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7faf26ad nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x813c20ba pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x870e4123 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c6b1491 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d16cd21 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x955bd81f pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b681a65 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f8aea5b nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe8e567a pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbeeb3e28 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1b7f72c nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4edc3a0 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7957cfd pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcbd462f6 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce6085ec nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xced55e8d pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xceea8116 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd207f0b6 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2149dd7 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5c70132 nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd62f497a nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd75105dd pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd86a5504 _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8c21f6e nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdefb05cb pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1602ba9 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf448789e pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5d4d2e2 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa2153c0 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe61a0e3 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9ce7e9db locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xe8bcf783 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xf4d13e62 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5b9a80d3 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb30e329e nfsacl_encode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0c29fa07 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x25674542 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x48c15b9d o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4bc19d22 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd27ffda7 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xda78433a o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xebea4198 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x35c027dc dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x82f123f9 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc2d6c8f4 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd03a06dd dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xda66c76a dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf97085f6 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x59468d6b ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x755ec287 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe04af9c4 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL kernel/torture 0x1125b9b1 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3a56baf4 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xc089811d torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x28a727c0 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x9930b937 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57861324 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57d39367 base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x882ce5fc base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9e0112d0 base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xaedfbb15 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xc8fca8a6 base_inv_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xd11741a1 base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xe3d900b5 base_old_false_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x4a23a720 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xc8c9bcf1 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x2719c1ba garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x4253f920 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x7bb66d12 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x8aae103c garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x947b4088 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xfba204f3 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x037fad7d mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x1a46a5a6 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x55e88d00 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x9a7148fc mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xb20bbb2c mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xb6f5a9d4 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/stp 0xa49f95be stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xf00dfe4e stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x5d6bbc9a p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xdeed0554 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0xa21e5312 ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x121cd38e l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x294326a1 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x81519a49 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x912ca6eb bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xaba550c5 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xaef90a46 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbdc9a016 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc103c274 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x470dd7bb nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6267e43c br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x82e3a77e br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x93f36c78 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xadca1e08 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe0960781 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xeed36b8e br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf96973da br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x81fc696c nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x92829023 nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0a991bb8 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x10ce21c1 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x11bc29e5 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1722bc31 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x18e8c305 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1a363bf4 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1a9f4f57 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x21321fea dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x33ee0b1a dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e00b445 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x50c83d87 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x635a77aa dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ddd2a4b inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x700d3e5a dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7cb7e0c9 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x88453ad7 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x96733075 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x994231d4 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9e383f99 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f1bda62 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa1ad83b9 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaaa81c87 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb326db92 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7af0856 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe6f3806 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbf476f94 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc93fc8c0 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcfd3e1a6 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd4748744 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd638691a dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4059e06 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4909c48 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe72511c2 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x09598037 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x14bd6ad1 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2ad6e3a2 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6690b8cf dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x945cbd55 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf4a91e95 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4c2c5363 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7f7069e3 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa1fe8962 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xbfc29a0a ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ipv4/gre 0x40cbae9d gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xe5d4107c gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2f8b2af3 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4a4ae02d inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4d4fc93c inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5403cb99 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xef46ab37 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfcdcbe21 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xfd809b9c gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0d29a69d ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x152f2107 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1c0f3a4f ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4d3dbf2c ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5497a712 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5cb83950 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x62887b09 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6311de28 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6d15f016 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x74437bbb ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x84cb292e ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xad0400c2 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb0f7e2c8 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc5b3465e __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf4e74fc2 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x1bfd1315 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x762a8049 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x7c1a066a nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x302122c4 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x310641a0 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x6d1ca2ad nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xdb132623 nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xf4c7ad19 nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x565c508e nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x324b867e nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x37db0219 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5561ca93 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa97ebf61 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc3ac3760 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x127e717d nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x04b81a83 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x227f91cc tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7be26ac8 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa7afb429 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfe0aa1a3 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7e83d11e udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8c0ea7df udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8d07e665 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb1104de9 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2b2f1df3 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4b893a35 ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x835da4ae ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb1b9b7ea ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb5f4b3c1 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe00d732a ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xee20b105 ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x45840e2f udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x853a825d udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xbb1438f8 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x144b536d nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x38c154a1 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x6e798b09 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1f7dc607 nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x5c55e668 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x71c2d81f nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x9fe1170c nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xa54837d3 nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xad0d6eef nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x12c8ba17 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9cb4b9aa nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa45288d2 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb6b0f5e0 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xccda499c nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xec144141 nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x003b5ccc l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1198281c l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3964255d l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4fee0ac7 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5d953f74 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6dba985b l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7259fe3c l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8cccc5b9 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x900f73cc l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9a324da0 l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb1ee52f1 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcb9ca9d1 l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd75a714f l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd9e865e9 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf194806f l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf7c1dbec l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x8a902197 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x325a3de4 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3d207923 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4360c2b7 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4c18bb95 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4cb2caff ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5cbbcc29 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5d9c8b8a ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5e7b90d7 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6963a244 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7144f465 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x75ce6e7d ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbc0a0775 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd29030a2 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd5e32b73 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe1f41cfc ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x56e0cd66 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8fdee6fc mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbffdf79c mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xefc7274f nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0e8fdf08 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x29724bd4 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x33af2bab ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4cb3b00c ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5b8bf786 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7538c39e ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7a475ec0 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8840854f ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xabf09094 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xae185d27 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc1ad5210 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd1954b23 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd1acb64c ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe60e766a ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf95bc8de ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfe4dadef ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x32776a57 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3bf24db0 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x81c3e2dd ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x89c233b3 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06bbc751 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a426864 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13011be0 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14daf692 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15aab2d1 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18052925 nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ca0cfdd nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1db43e70 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x254b055d nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25ebb657 nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2934d4c3 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b7647cf nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cede6b3 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d245792 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2df03870 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38740ae6 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c051c28 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3da76c05 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3db2f259 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3dd97d1e nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41ebce6e nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44fcad2d nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4534354e nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4685b208 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4753dccc nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48c37ef4 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x512a7c79 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52c3fa4c nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53af52d7 nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59a38505 nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59f5db76 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5bc386e1 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62d0b03b nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63c3f037 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b48952c nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ed569c7 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x708a2aac nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70e1ed27 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74de08a3 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7543ec47 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x772588f3 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79b267c9 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7acab951 nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x844c192e nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85003e26 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b0b9797 nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ef816c8 nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f7aae25 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x928ca05c nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94c1a291 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f7972b1 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa15625be nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa18d2e87 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab844087 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xabdff441 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac09e6bb nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae425229 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0e28077 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb34652b8 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4d86889 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5a44067 seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb93df515 nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb3933e0 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb3a714f nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc151aef nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0ec1fec nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc42924bb nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1f43851 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd623dd97 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7246a47 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8106f4f __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc6ce88a __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4d520c7 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe72b47e9 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea3bf079 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf70f510c nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf997b724 nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa3065ea nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xeeefe500 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x1bc786ae nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x28768163 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1037010a nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x39596f8c nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4c9c7011 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5b713112 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6ea6420e set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8e7beb20 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9ccadc56 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcff61c29 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xddabee28 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf1bc246a nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xc21e6ccd nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x31fac4c7 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3f8f654b nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6e190743 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x758a8880 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x6f509fa8 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xd63352a8 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1846b5be ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1cb13c96 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x85155537 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8cb43b1e ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x90baea05 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc6957f01 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd263ef03 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xed867d7e nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xad88bced nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x0b1b3ef1 nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x96f80865 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xb22a152f nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xfcbac332 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x21f43cce nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x23540ca4 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x35642a4f nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5ed0976a __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7eb80c8d nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x830d25ca nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc88cde67 nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd3e6f638 nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf073a0e4 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x0fac475c nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x4992efb3 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd1737d59 synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe9c97e08 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x10d313a9 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4fd7343f nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x50ad0f08 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x577d7669 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6ba69bf9 nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e686910 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78bc925d nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x87f7697e nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8afd1110 nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb02af73e nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb05c0043 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb626eacd nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xccf57e27 nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe155e3f6 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe8a4c7e5 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf68c2761 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfe288cf2 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x04577fde nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x14f08cee nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1ba39608 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x72f94297 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa7caa52d nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbcaa8953 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xff178d30 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2007451f nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xba99f70e nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xeaece4ad nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x540c3279 nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x11ae490b nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x1c402ce9 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xb9c7878b nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x2540e78f nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4c880834 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x519c7e9e nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x69c9d9fa nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7af58f66 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xc06ec202 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x7319cb02 nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xcc778093 nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xe2e72054 nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6cdb9748 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe530d578 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e6ede6 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0fb68664 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x22ea53fd xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x33596092 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x385412f1 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x47bb2ac1 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x66a24639 xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7a777a59 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7f8fcc64 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8759e7f5 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8767fc04 xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1468e86 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xde6bd3e3 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x722559ea nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xbc91885a nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xc543073c nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x31f93d1a nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x76b3cede nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xc236e3a0 nci_uart_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4f503965 ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6ba03b2f ovs_vport_receive -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7bf253ab ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7c60f37e ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x80d57446 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8aabc206 ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb2e10ae7 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb3eb39e3 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf8d3987f __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x19bc0949 rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0x222069ca rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x342bb41d rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x51e5ec05 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x536d3333 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x564306e5 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x5880ecd8 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x5b9c80a3 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x5c362b0e rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0x5c5431e4 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x6c6af320 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x73d136a7 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x85059059 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x8a6efe58 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x8fd21433 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x97f8812b rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xc2d9c252 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc71ce1f0 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xc9207876 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xcbcf1a41 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xdd2dacb1 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xe7b2f5f7 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xf77136d7 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xb22a42e1 rxrpc_register_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xfb6ea592 rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x305bf636 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4568bdf9 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x943deaee gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01393afa rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01a79bb2 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0419fdf2 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05500796 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x077bcd7a svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b49fc72 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da06165 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0de0195a rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e3b6cb9 xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ee75346 cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1054905b svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12fb9b93 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14e15f43 rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17bf8c12 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17c6c4b1 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1aa297f4 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bcbb134 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c1626bf rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2410787b sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25f2d91d svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26521565 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x268cf154 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x281d9fdb xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d2601cc xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f003e90 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32852ef1 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34607639 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34e436e9 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37ab2bbe cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38f7e551 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39db9617 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d1503e0 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d57c117 rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ed0e3c0 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42090492 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43b9453e rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x440cd174 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x455376bd sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46782894 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x476bdf12 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x486747ae rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x488b3c33 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49bdc1cb rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b2bee50 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bc1b4de rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c46e5cf rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e47edb9 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5063a64c rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50f5bb37 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53726999 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5513a619 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x558941e5 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56c2fb1e xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57026c7e svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59bc7438 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a351641 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a5d25d4 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5aeddac5 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f0b19c0 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f351f10 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f61a7fa auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6002300c xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x606c177a xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60ca4b10 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61c23605 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x630a033b xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63f46a5e csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6545d544 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65f61b91 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6652f852 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67683071 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67abc263 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x684ff3cb rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6939605b xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a0512f4 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aa3d4e8 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bc9e40e svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c5e965d svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c871266 rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cb6ba72 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cf75161 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e0b2323 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70d89b2e rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71d25960 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75912c22 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75be192f rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79a71e2a unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c7a85d0 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cf22486 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7eec29b8 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f2180c4 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80de2c40 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80e70fa0 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x846268be rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x851de28f xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8af3c6c0 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c616c51 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cfdc937 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d663008 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e57c38f sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fad16a5 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90c47723 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92e7291f svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93ebecb8 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94ebebaa xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95907207 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95ec974b rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96228b7b cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x966af353 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96e8d3d8 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x977ecf4f xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9799b7ea __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x979ba39e rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x983d7750 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ad94a9f xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bedfefd rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dceab68 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef7bb2e svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa036fd99 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2fb978f rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3289ea1 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5a86dca cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa65faaca xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7d704c5 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7e4df13 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaabd473e rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad7a668c xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae1dee52 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaeece4f7 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4062568 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4620ee6 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4974e65 rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4b99ed3 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4c89c40 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5e7a0a1 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5ec0a52 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6ee7841 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb87089c2 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb899ba70 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb064920 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb49323c xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc21726d rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc29e56d rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcbf58a5 cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdcfe310 cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf09966c xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf27509b svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc05deef3 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3ba295c xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4b68dc4 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc578c949 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca98592a rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd5414e8 rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcef8330b rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf7838aa rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd137b82c xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1af29df rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd28fa283 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd310258b rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3b7785e rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3ecbeed rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd403492f svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd62ed6f7 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd651e8a2 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb2b604d rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc4afc27 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe025c982 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1a14b21 rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe39cda91 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3bf7443 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe50ca004 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe55acb4e xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6f2f932 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7d11bf2 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9e68697 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebc9dbd5 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec9069af auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeed475f0 rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0c21e4 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf20fcf79 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3f5e38c rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5a0fcc5 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf626ad00 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7bef0b6 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7cddaec rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf880acdb rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9f1e569 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9fcef25 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa5d2523 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbdd0644 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc9c32bd rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcdeeccf svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdfa9315 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe6ed396 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x02b05123 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x041ae2b4 __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1d12a775 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x39010c93 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4abaece4 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73ba813f vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x915cd55d __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9b4f7dfd vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc55c5b38 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd7bc137e vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe9bdf87a vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xea4a4e3d vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xead94cba vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work -EXPORT_SYMBOL_GPL net/wimax/wimax 0x0828c358 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x1a674f1c wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0x249ab574 wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0x385b997d wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0x479c52cc wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x578ef40f wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0x99bba314 wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa0492c1d wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa9f72f5e wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc187d1f1 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xce6f6704 wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xd83f93bf wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0xe11acca3 wimax_state_get -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x03dedf31 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x066b05bc cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0e76daf2 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1356eee8 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x39dc56cd cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4831ac13 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x493eb8f3 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x79240b98 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8e675a59 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb344eefa cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbf4ae310 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xedcc6099 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf89f97e0 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8d030647 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x94a712e3 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb341f2a4 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc5543f19 ipcomp_destroy -EXPORT_SYMBOL_GPL sound/ac97_bus 0x444098ee snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x127de235 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x46a3f8cd __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd 0x3bbe8613 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x59f2f17c snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x5f4df66b snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x81abbf31 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x8c810010 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x9c28bcb4 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xac0de607 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2a780333 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x34728d6c snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x34e762c0 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3cd72784 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5dc5c44b snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6b3bbfd0 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x715b5553 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7bfd6e62 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x99ba004f snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x018c189f snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x573ce276 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x65d89d74 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8f2710de snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x93d219dc snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc10136d3 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd3df5c7f snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd8e7d258 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe53b6c49 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf3ea26f6 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfac65c0f snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x04fc4e43 amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2e7dd30c amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5bb5edef amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9aa1adda amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaa58c07a amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb48ea476 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf60561a7 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00747800 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x190405f0 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fff0ee7 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ebf8fb5 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32d9977e snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x343ca5ab snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3cfe6967 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3dfb74af snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e1bcda8 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42f98cb7 snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x44c5282d snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x474fdb2f snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4caaa62b snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50a06edc snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51316b95 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51378f17 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54bb29e3 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55f4637c _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5abdea96 snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ad592fd snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d10afdc snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e12ffb9 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f3db043 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x607a00a9 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x610b40b4 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62a5b9b5 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x633a3dcb snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x641e5d23 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x677e4d71 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x718637b0 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71d07bfc snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7514613b snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75dda70a snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f762f0b snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x801c6005 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83cc1815 snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84cfe58c snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fcdbb88 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x93704c09 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94571bc0 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94818be4 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94b158e4 snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95cd12fa snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95ce2c0b snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9645b607 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x984d493b snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e23862f snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa79f0c33 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7f6ebd6 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa32c4cf snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae32e75d snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb48a77ca snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba07e9b6 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc6708ad snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe83ae3a snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc30cbc40 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc79224a5 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xccb6c6af snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce4c0528 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1d69172 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd36e21b6 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd547e022 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4c5adf2 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe868d771 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb06f8f2 snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed2cfdeb snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee280d5b snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xef101984 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3ae8fec snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf607b55d snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfdb69bed snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0ff3ccc5 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x122bd638 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1c17ff1d snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1c5ccaa2 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8576c3ee snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf5695726 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x009c5de3 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03c7c8cb snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03cb7e3d snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x088bce09 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a93b87b snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b85c622 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c23d7d0 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fe4af8f azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x100f39d3 snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x106d401b azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15dce3ae azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16e992a7 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17b1b577 snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19d72b66 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bf20817 snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20947a37 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20ce714f snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2193ae95 snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2480d443 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x250cea38 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2827c8b8 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2aeff891 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ec8c6e8 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f75cda1 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x340819e4 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3596760c snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c2df41e snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d2b6a5a snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e0e4363 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f516ae6 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40751630 snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40db3042 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42319790 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x463fe6d7 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x483c93a8 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4942a37d snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c8457fd snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d2438b9 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f3aa0b6 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5231b03b is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54c7820b azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58046023 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b68780a snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cab4f45 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60273a9c snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x617c4985 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65e05076 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67fa3019 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68df1b48 snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ccc0829 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e8c31c5 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70f99997 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71de671d snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72aa4cbf snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72aab441 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72b6b71a snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x730c560b _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76ac90f8 snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77511d12 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7873d274 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7956758f snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a326cc7 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b496f68 snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82773353 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83badda2 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x849ae9dd snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87a30a33 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8917d998 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8aeb020d snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8de62c58 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f14d5a9 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91e657fd azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x935f1068 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93a473fa snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93e6fec0 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94e115fe snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9560ae26 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9722b03a snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97d38c3f snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c3ec2f3 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3446a45 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa499207e snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4b2bdbf snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac0e0403 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac8ac905 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafa48357 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1fbd277 snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4aaeff7 snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb50d61fd snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb68d0106 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9afff02 snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdb5c9aa snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdf68b6c snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc21790aa snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc384b7e1 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc50e5480 snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc744bd29 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc802b555 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc89c98b8 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9490b9d azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca2ee0fc snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccf1fa2a snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1e4ccb1 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde412389 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde6fb943 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xded3bcdd snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0ed8137 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1ac2f45 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4378a53 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe63c0954 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe681624b snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe774ae01 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7d6b7ce snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9875d46 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe98f2a8c snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9e883af snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef24c210 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2362543 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf420d9c9 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf799d745 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9f669e5 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa4b1269 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc68aa67 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff1f050b snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x10f7ff7b snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1d8b7255 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x42ac5082 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x53f133f5 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5fe529ca snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x66b85dfb snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6df4b9a6 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x717ef8ad snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x752857ce snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x795667a7 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8f3a0c57 snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9ce1795c snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xab2d9428 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb7603429 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xca39443f snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd5da033e snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdb805a3d snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdd88d388 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe0c0a68a snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe9a30ccd snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf1f9638a snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7b56c9a5 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x973bcd0d cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x472e82fd cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe4e4202a cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x05770f43 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x6b397e13 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x9adb6cf3 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x0579949d es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xab2588b7 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x0e090360 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x18579a02 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xa90c0bf3 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xec7ac304 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0ed713a7 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x190c5fa0 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3a9dc5f0 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb6b325a3 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb9f2db25 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xcd1118f2 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xf2eb32da ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xf82252e3 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x9cf55d0b tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xa8a33b71 tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x8d60e5a1 ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2061dd32 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x73f24b05 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd8fd9c41 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf834c739 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xe33427ed wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x62852864 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x301140df fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xfa25a983 fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02a4d1d7 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x057b9d69 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06a6e240 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a864213 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c9d2e79 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d162090 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d25bf5a snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f60f75f snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fcb6cbb snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fd92c20 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1046ca3e soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x107e8045 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12beaa83 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13b8c2d0 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16faa216 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18b04183 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1aa9e52e snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b09322f devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bb09eee snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2109c431 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21dd1471 snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23514dee snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23b278a0 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x261521ba snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a71ef16 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ab60f59 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c87ee0a snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dbf5ac4 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x322e5c34 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3432f2d9 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x358cba8e snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36e83076 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x376708b2 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b465c57 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bfa3be2 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c50c498 snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d9815da snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ebf93a4 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4125d4ce snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4153c5b7 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x462e6138 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46b8aec8 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x475836e5 snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47f09964 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48c34127 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c4d7f5a snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d340a31 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d5e1f5c snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4db810e0 snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dbb304e snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dc9ccf0 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e78a017 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5036cf8c snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52496ffe snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55094bb0 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x559bcbc2 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5892cf17 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bbef4cb snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e7d2408 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f089c28 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61a3890e dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63229db0 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65842d47 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65b773f6 snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66862412 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x669413f3 snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66a4fc4a snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e9c6045 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6eb1b2d5 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f8918b7 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70b0fb0e snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71244e16 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7426235d snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x750af102 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7522d8e2 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79034840 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7929c939 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d3b5f73 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e6f0679 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e7d4c36 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fe894e9 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86ced99c snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88e5d29e snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8df27eee snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f9a8757 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91a3abed snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x929da391 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97863519 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98bbc1a3 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bf8f4a2 snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d45b60c dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9de786b8 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa23303f7 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8be1d38 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac063bb0 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad688a94 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae3410b8 snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf58805a snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6043a55 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb71595ef snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb77ef6fa snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7f863dd devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba1606d2 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba8dd9c8 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb8ccfea snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcf37876 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe872cd7 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf2122f2 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf2462ae snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1207f41 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5a77aa0 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5dbf518 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc68901be snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb934fd1 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc5ecdc0 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce25904a snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd079dd1d snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd89e2903 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaecef00 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc02fe93 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc301630 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc481f09 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddec3398 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf224399 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1906030 snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2d7d74c snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4a16f4a snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe539f7ad snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5b20629 snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe91b5fbc snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9bc131c snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea4d70c1 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeaec44d5 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb78b028 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebc9b592 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeca7300d snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecf87f48 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed87447f snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf088d770 snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3f577da snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4ad2876 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf51d70e4 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf65c3e0d snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf74adce2 snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf916af85 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9d64962 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc18f277 snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffe66a96 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x00075a34 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x06f960ef line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0fa28351 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x247779eb line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3b568a79 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5110d282 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7393c3ab line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x912f6b5c line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbd74d929 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbf8732be line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc59a87ca line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xce1c93fb line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf2d88ffe line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf31856f1 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf784ac8d line6_version_request_async -EXPORT_SYMBOL_GPL vmlinux 0x0000b2bb fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x002a0e13 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x00313fbc rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x003ae689 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x0051466c pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x009752f6 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x00fc6425 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x012457ea page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x0125115f tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x012e3ce8 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x012f283d arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x0165d966 ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x0195fba9 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x01a4cfe1 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x01d08ec3 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x021bb769 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update -EXPORT_SYMBOL_GPL vmlinux 0x02302571 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x0270d1a6 fsl_spi_cpm_bufs -EXPORT_SYMBOL_GPL vmlinux 0x02739b3e extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0298dcbb devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x029acbae usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x02ac07bb component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0x02d4cd43 __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x033387bf blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x03365013 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x03782f4c crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x0391b0dd file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x0398f0e6 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x03e64204 wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x03e9eee3 nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x04489b91 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x0495018d io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x04a1fee5 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0x04a2ff75 mmput -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04b15be0 blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x04c4c609 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04d4b5e2 tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x051dcdff gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x0525c7e5 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x05433745 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x056a7b2c rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x05712a85 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x05741149 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x05830e5d ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x058de820 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x05e7399b class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x05f6fb68 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x05f77661 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x06078d55 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x0618bba2 usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x06256b34 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x062ba819 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x062ec212 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x064b6215 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x06d204de da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x06eb6e41 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x06ed7f53 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x06f3a379 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x06fdbf27 reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0x0705bb45 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x0734abef power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x073ac67e pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x07803c46 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07cd1300 __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x07e69a80 kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x0822dc9a inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x084b71d9 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x088b210d device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x08917a57 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x08af40c2 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x08cf9443 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x08dba1bb spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x091b3685 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x091bbde9 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x094a36ad dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x0962d0e8 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0972c293 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x098404ed debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x09871084 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x0990cc98 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x09eba4bf pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x09f5cb1c crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x0a3fab12 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw -EXPORT_SYMBOL_GPL vmlinux 0x0a646281 shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x0aeca08a regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b167eed __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0x0b23322f generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x0b33252e pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x0b4ad29c power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x0b5cf884 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x0b60c275 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x0b631cff dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x0b7a8624 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x0bb256c1 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0bb29419 of_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x0bb562bc set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x0bc44c7e tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x0be93a5e crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x0bfa0972 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c130a9b rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c6c7524 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x0c6dee45 kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x0c959b78 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0cf6e130 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d6ce0a1 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x0d706d2e rh_set_owner -EXPORT_SYMBOL_GPL vmlinux 0x0d73a952 GregorianDay -EXPORT_SYMBOL_GPL vmlinux 0x0d7ae40b device_add -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d835550 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x0d86fdc8 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x0da8c75b power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x0db86929 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x0dcb5026 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core -EXPORT_SYMBOL_GPL vmlinux 0x0df7c801 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x0e019f40 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x0e0b2a61 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x0e424972 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x0e89eb11 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x0e9ddef0 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0eac421b get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x0ec7cb79 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x0ee62e22 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x0ef65ca4 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f1dae2d nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x0f2a2fef pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x0f2e5a8d ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f33cfa2 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x0f3f60d1 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x0f3f8cbe wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x0f45f275 cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x0f47c6b7 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x0f70e4be pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0f8f2dcf extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x0fa6f43d gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x0fc1bf32 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x0fc67bd9 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x0fd1a9bd device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x0fd28380 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x0fd56cd7 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x0fee6883 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x0ff00db3 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x10025b98 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1049b943 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x105022f9 tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x106ad422 aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x106e4829 flush_fp_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x108c33ac i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x10b18d7f ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x10b3862a virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x10b62fd8 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x10b6d87e pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x10c46285 kvm_write_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10fb27e9 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x11021072 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1109dfdc bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x118a5820 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x11970044 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x11b470ed sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x11be5a2d iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x11d44e97 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x11d97b0d pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x11de1f28 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x11e83165 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x11eae901 dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x11ed2d41 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x122df8cc nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x1256ba63 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x127a3bf0 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x12903b09 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x12914c67 edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0x12b1ae1a ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x12d6b4dd tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x12f5fb66 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x1306d4ad regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x130832dc zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x13212081 bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0x133a9f36 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0x1354e09d wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x136d6900 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x137bd293 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13b68e14 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x13cfcfae pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x13cff350 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x14158748 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x141c0686 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x1461323f device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x147c5ed1 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x14b01a94 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x14e138f4 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x14ed7123 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x1504194e tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x151b9333 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x151bc284 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x151d3003 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x1522480f nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x15310696 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x154d94dd __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x15768022 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x15a82bf1 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x15c6adbc serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x15db5bee rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x15dd2c44 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x15deb8ab vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x15e58f50 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x15e8e849 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x16419f82 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x167493cb ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x16ae0331 genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0x16ae36f0 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x16db2702 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x16fc0f9c __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x170964ce gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x170a0397 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x170bd74d system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0x17148841 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x1776f305 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x1781087f dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x178415c3 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x178e226f stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0x17c12654 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x17df4343 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x17ec237b pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x181447c3 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x181c1bd9 of_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x18384f7a palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x1849a1f3 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x184c1c38 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x18575b1f tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x188493b0 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x18cf00f1 arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x18d8eb78 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x18dbe5e7 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x18e76623 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19016776 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x1902dfa7 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x194bb614 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x1973b10f virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x1992f61c ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x199eb80a scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19d7b0c6 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x19e09ff9 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x1a1fb371 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x1a516983 tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0x1a552ca1 to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0x1a655706 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x1a6dd424 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0x1a6e3bdc usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x1a79ef28 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x1a84143d regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x1a9230f5 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1aa3ba20 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1aa4eb06 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1aed8976 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x1b0a5f69 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x1b114834 spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0x1b28ca0a __find_linux_pte_or_hugepte -EXPORT_SYMBOL_GPL vmlinux 0x1b3df8e6 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x1b4a15aa task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x1b4ebf98 pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0x1b5009fc cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x1b64616f usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x1b8b43f2 skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1bb38b65 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x1bf7178f class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x1bff303e security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0x1c09862a ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x1c2125c7 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x1c2a0f6f arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x1c2f4186 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x1c426abf thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c7162cf register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x1c7648b3 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c8d9b67 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x1cbb7364 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x1cc1949b pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x1ccb465b irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x1d1616f0 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d3c15cd usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x1d50a6de pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d8a1996 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0x1d8b1b8f led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x1d9f3963 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x1daaa974 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x1de87306 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x1df585c2 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable -EXPORT_SYMBOL_GPL vmlinux 0x1e0db397 trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x1e20316b ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x1e263dcd extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e5e173f sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e974d27 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x1ea3e0ba tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec345cf spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x1ec7bf3e of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x1f053dfa ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x1f096fe0 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x1f116614 xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0x1f1285d7 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0x1f1e3902 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x1f431ffb ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x1f4337a3 of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0x1f44ee16 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f91fa0f get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x1f9b4744 __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1fd4f299 dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0x1fe6aae9 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x1feb2bdc kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x1fef6b0f md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x2006a05e sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x200e2b49 pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x20459fe1 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x2066cd3b sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0x20693313 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x206d167f usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x208f8a63 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20befb51 of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL vmlinux 0x2108934b pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x21214c48 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x2123434f sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x212e8b4d gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x2163dae9 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x218d92de serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x21972aa4 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21bf1338 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x21c7f460 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21d1bf22 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x21dd88c5 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x21df6ed4 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x21fc143a da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x21ffb4ce blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x22920065 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x2296cd8a crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x22a7b390 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x22be0fb4 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x22cffcd6 __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x22e1f3f3 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x22f306ff tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x23246a16 scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0x233981ff irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x2346d778 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x23492b2e gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x23623452 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x23930b18 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23a1fec1 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x23ae22ce devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x23cfa2a4 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x23dd20e2 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0x23eb217b mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x23fc830e debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x2402fb26 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x244142b1 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x2442f224 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x247b48f1 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24848fca __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x249f8168 of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24accb4e __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x24aee52f ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x24b4c23a bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x24b78627 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f990dd ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x25022dbc irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x256466d0 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x256666ac nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x25b3fbc6 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x25d45267 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x25d8748a ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x26005d54 crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x261c91e4 pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x2627a08a tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x2629231c map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x263a4fca gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x265eb2a0 swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x26669653 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x2668e21f gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x2686ef54 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x268ac8a7 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x268efd43 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x2691412e boot_cpuid_phys -EXPORT_SYMBOL_GPL vmlinux 0x269651ff da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c24c46 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x26c81c0d usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26e1051e tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x26f7e781 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x26f826c7 i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x26fb59df of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x271231c0 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x27555ab2 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x2799d2ee pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x279d5eca tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x27a3ab86 __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x27ae020f phy_get -EXPORT_SYMBOL_GPL vmlinux 0x27afbedf exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x27b85279 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x27bb5afd fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27dd19b9 blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0x27f39a18 cpu_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f730ae scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x27fa1234 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x281cd241 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x282beacf ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x285a5f9d percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0x286ec054 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x288ac044 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x28abe02d pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x28ca580b tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x290d8314 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x29699b2c subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x296cc86a devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x297324d0 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x297f5be7 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29a0448e fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x29c481d6 mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x29e2488b wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x29e8d225 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x29e954a1 of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29ef0b18 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x2a17e7e7 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x2a1e97cb device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x2a2d3ebc debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x2a508eb9 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x2a5cb245 dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a915be2 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x2aadc0ea gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x2ac4475c devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x2ae93dce __module_address -EXPORT_SYMBOL_GPL vmlinux 0x2af5a576 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x2b014ae6 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x2b185916 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b30f1f8 pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x2b3f3fca pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x2b403f16 vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule -EXPORT_SYMBOL_GPL vmlinux 0x2b6a0169 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x2b7a574f md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x2b8b52ab ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2ba2c676 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x2bb05911 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x2bbc6e47 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x2bde179e kvm_vcpu_init -EXPORT_SYMBOL_GPL vmlinux 0x2bf66f83 md_stop -EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c4b59c8 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x2c55e6a4 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c97c085 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c991966 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x2cb13d2c sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x2cc8367b of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x2cdb3099 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x2ce266b6 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x2ce915c2 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2ce9991b led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0x2cf55a2b dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0x2d1a57c1 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d31c810 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x2d31e3b7 rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0x2d33e76e debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x2d36c57b rh_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2d3a7b86 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d579e49 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d63cdf0 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2d6d3360 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x2d6dc1ec cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x2db28df0 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last -EXPORT_SYMBOL_GPL vmlinux 0x2dd22211 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x2e146076 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e3048e9 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0x2e3d8ce3 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x2e3ddbb7 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x2e5bfe9d pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x2e8e9217 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x2e90b05f blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2ec81a5a relay_close -EXPORT_SYMBOL_GPL vmlinux 0x2ecc1d7f of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x2ed5b5af split_page -EXPORT_SYMBOL_GPL vmlinux 0x2edbfed4 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x2f07bdbf pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f16fab2 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x2f280faf thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x2f2c0e19 fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x2f2eb901 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x2f2f2257 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f46d968 of_irq_parse_pci -EXPORT_SYMBOL_GPL vmlinux 0x2f4c3be9 wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0x2f539515 rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f6dd1dc tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x2fb20d30 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x2fb9fe00 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x2fc4c251 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x2fd9036f dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x2ff5f60c ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x3022e762 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x3031fbad usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x303ac24d irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x306c6a88 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x309d4bc5 rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x30ad80ba srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x30b77f90 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x30e7b695 blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0x30ebdacd rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0x30fba381 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x3108b071 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x310c89e9 spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0x310e70db shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x313d4b96 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x314013a3 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x3141c828 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x31513038 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x31c06277 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31cc01df tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x31d6b486 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x31e5c63f usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x31e6c816 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x32093850 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x322c5b06 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x324446c2 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x3286e775 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x328737a0 nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x32a3a6b1 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x32a607ad rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c7a735 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x330168f1 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x3320cad2 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x33253900 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x33472d46 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x33480bfe __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x33493446 rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0x334b2a60 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x338c1ab3 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x338e5cd8 fb_sys_read -EXPORT_SYMBOL_GPL vmlinux 0x339f4958 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x33a6657f usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x33b43ce7 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x33b871f0 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x33d45158 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x33eec84f gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x340789ab __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x340d5346 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x340ddfb0 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x3438a5cd mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x3442b798 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x3486a9ce debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x34994822 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x349cb83c get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x349d329e pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x34cebc5c arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x34d0fbd1 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x34e3a54a of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x34e4eaa1 reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x34eb2a2f md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x34eda012 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x35329f5f __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x353fce3e gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x3543be92 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x35540ca2 tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35923dd5 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x35a7e347 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x35b25510 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x35ba2f12 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x35cd4527 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x35d95786 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x35de4a5a generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x35ea1653 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x35f6b39c __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x36049313 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x3608a968 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x361500d2 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x3640e560 regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0x3640f590 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x366342cf blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x3688e177 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x368e4e47 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x36932093 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x369b2f77 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0x369c6836 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a64e5c percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36da47e5 pwm_config -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x36ffd4d9 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x371d6f77 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x373a480c dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x376c743b regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x3791bbdd da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x37bea0ef fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x37d204df fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x37d2c2c5 rh_dump_blk -EXPORT_SYMBOL_GPL vmlinux 0x37d402c6 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x37e95e17 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x37ebf947 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3808c623 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x381426f0 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x3826a9fa usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0x3834f759 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x38364f79 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x3848f9ec __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x384f6758 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy -EXPORT_SYMBOL_GPL vmlinux 0x386adf4d devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x387193b5 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x38743bf9 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x38891d44 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x38c49d0d sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38fb0702 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x39132e0a iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x39161780 input_class -EXPORT_SYMBOL_GPL vmlinux 0x39166de9 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x391a82c7 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x39366aa8 __tracepoint_kvm_ppc_instr -EXPORT_SYMBOL_GPL vmlinux 0x393fb5c9 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x395235ed ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x3961b362 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x3964e2bd sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x3975e3b5 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x39822268 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x39c49d52 single_release_net -EXPORT_SYMBOL_GPL vmlinux 0x39c4dc0f __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39fc58a3 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a86b91f ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3ab86bab subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ade666c ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x3b05f681 tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x3b1829bf irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x3b1dd9fe adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3b2d7882 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x3b372810 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x3b411c47 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x3b583bf1 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0x3bc4effe devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x3beda22a ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x3c0c5d9b fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x3c48d7ec ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0x3c7893d0 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x3c7be5ff posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3ca193f6 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x3cb73004 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd65c7b put_pid -EXPORT_SYMBOL_GPL vmlinux 0x3ce3bf3b __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x3d20408b uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x3d2d3ffe ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x3d3191b8 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d4ce84e pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x3d5c0644 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x3d683722 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x3d85f7bc tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x3d9befa4 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x3da70dd9 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x3daccfd7 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dd1b4ee of_pci_msi_chip_remove -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf -EXPORT_SYMBOL_GPL vmlinux 0x3dda9e9c hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x3de3e18c nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3e03ad51 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e4d6ade mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x3e5ce921 virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e757637 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x3e9ecd1a serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x3e9ff6b2 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x3ea6ebb6 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x3eebb80f blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x3ef77af4 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f195170 tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x3f19a849 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x3f37fa0d dev_pm_opp_get_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3f9a776d thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x3f9e6337 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x3fdd6214 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x4002c320 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x40060923 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x40077a0f clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x401d8b6b spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x40240402 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x4024d225 __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0x402cd4b7 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406840e3 device_reset -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x4088e05e skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x40a5c068 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x40ac6eb8 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40da1437 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x40e81dbd fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x4122c3a0 __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x414b3110 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41798400 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x4198885c power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x41b3f8ab nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x41bfa9ce task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41dc7fcf of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x41ddd46b usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x41deb853 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x41e1d6eb regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x41e3611b sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x41e7ae27 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x41eaa8ad usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x41f8a077 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x4258675c crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x4264330a pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x427a066b trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42854fc8 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x42a479c7 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x42b82767 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x42c0ca1a led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x42e2935d devres_release -EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x42e465c7 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x42ebcf3e usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x430ec5eb pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x4313f6a0 perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0x4327fa2b sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x437885a8 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x43911505 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x43963707 of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0x43969dbe rh_alloc_fixed -EXPORT_SYMBOL_GPL vmlinux 0x4396eebb pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x4399b73b bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x439b7422 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43a5bbc1 pcibios_free_controller_deferred -EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43d2d8af extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x43dc5e1d thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x43f51127 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x43fd0b66 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x4412cbcc noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x441b0550 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x442fcf3b __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x4445ccbb skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0x44581035 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44939b24 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x44949235 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x4496f077 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x44a014b7 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0x44b397d1 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44cdda0e usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0x44e44e3e task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x450c5e72 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x45311adf devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x453805ac devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x453ae472 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x453cc05b __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x454ffcb6 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x4564f716 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x457fd0fd cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x4586a89a irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x45959f6a pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x45bd74e9 device_move -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45d785c0 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x45d9e602 of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x4602de57 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x4608ee3b dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x461912d4 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x46219978 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x46358273 dax_fault -EXPORT_SYMBOL_GPL vmlinux 0x46361bd5 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x4645b82f rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x4645d2b7 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x46661bda trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x466742c0 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x467e1395 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46911df2 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x46b65a6b crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0x46d6f17c key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x46dfff7f securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x470f5d27 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x472aac13 __class_register -EXPORT_SYMBOL_GPL vmlinux 0x4730fa06 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x473de771 of_pci_msi_chip_add -EXPORT_SYMBOL_GPL vmlinux 0x473fedd4 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x47435c67 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x4749f60d user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47767e20 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x479071d2 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47b2c8f4 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x47ddb63c gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47fdcef0 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x4811ee87 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x4828fe12 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x485a0e46 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4866925f serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x4882513e blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x4885528c wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x48988e07 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x48a7cd83 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x48addf19 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x48aebd1a fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0x48c603a4 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x48d892e5 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x48ff59e2 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x491802f0 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x4921a942 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x496fabc6 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49c04139 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x49dc1026 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x49def99b led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x49df62c7 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49efdd25 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x49fa4029 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x4a360e58 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x4a42a9cd part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a8ee6c3 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x4a971100 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x4a9b1335 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4aca51b2 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x4accc01e blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x4ae39872 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x4ae8c705 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x4aec1a0b virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x4af3dc36 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x4b09b135 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL vmlinux 0x4b223473 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x4b2a4df6 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x4b808c05 __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x4b81b9f1 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x4b872061 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x4b89bb5c clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x4b92b087 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x4b98827c rh_init -EXPORT_SYMBOL_GPL vmlinux 0x4bc2c4c3 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x4bc3055a irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x4bd4bdc0 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x4bdecf6d find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x4bec5835 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x4c107309 blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x4c1d719d virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x4c4e2992 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c6d9290 ping_close -EXPORT_SYMBOL_GPL vmlinux 0x4c6f08b5 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4c7903f8 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4c7f0734 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x4c8343b7 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4c915657 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x4caa48d8 clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x4cbde3e8 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d424b67 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x4d45e006 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x4d58fbb0 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x4d73616e crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x4d8615dd pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x4d9abc43 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x4daa5049 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e18547f clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x4e215dc6 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x4e3627d4 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x4e69bfd5 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x4e9f12dd sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x4ea4160f spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4ef96772 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f3bd3d2 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4f690de2 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f70f89e skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x4f843440 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x4f8da562 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x4f931817 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x4f9d03b4 page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x4fa0fbb6 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x4face35a pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x4fb717bc ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x4fbd907c da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x4fd88b99 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x500e5f83 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x50331802 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x503f61b2 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x503f6648 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x5057449b dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x507079d5 _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x5077111c __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x5085ae10 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50aeeb32 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x50bcd040 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x50bd96b9 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x50be4543 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f82222 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x5104fe20 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x51402cb0 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x51422fee of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x51719489 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5189969c sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x51966b51 __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x51b12506 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock -EXPORT_SYMBOL_GPL vmlinux 0x51b6fb2f regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x51d42b13 tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x51e12933 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x5206c07f gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x5214e35a hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5237281b ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x524af48e device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x52558aef ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0x525f2b51 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x52644025 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x5286571a blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x528db92e pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x5309b3e8 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x53142ce6 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x5332b9be pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5351ea13 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x5356e5e0 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x53779d11 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x5389ddd9 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x53933c7e regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x53a8cf77 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x53b19f8b dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x53c1cfab ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0x53d6d571 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x53e03609 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x53e9ed48 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x540c02ba user_describe -EXPORT_SYMBOL_GPL vmlinux 0x5415dec3 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x542018c3 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x5424b491 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x542e1c5b hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x5449be0c tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5458f581 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x545e0d99 fsl_spi_cpm_free -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x5468719f pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq -EXPORT_SYMBOL_GPL vmlinux 0x5471cf9b srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x54726437 of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x54873fe4 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x5496582a sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x549ea56b pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x54b5e679 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x54c3b512 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x54d2e452 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x54e4baed debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x54edfefd usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x54f28cc2 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x55221b66 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x55262cf3 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5543afa3 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x554fefca scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x5554dfdd ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x55596704 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x556fd957 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x556fe8b7 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55a08ec9 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x55a44e23 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x55a8d0df of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x55b70208 nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x55c09ab9 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x55c55ecf regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x55c74e0f mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x55ca884f bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x55d45d53 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x5610e8ea usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x561cffa0 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x5633c8e0 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x563ed09f wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0x5659bce6 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x566607ff unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x567fdff0 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x56b4c9df da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56bd1139 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56d81ad8 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x56ddc44f find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x56e07ea3 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x56e8c2d0 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x570399a0 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x5709163b irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0x570f7a5c put_device -EXPORT_SYMBOL_GPL vmlinux 0x571cb99c ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x572010b4 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x57242259 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x573b268f ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x573d058d l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x57448d22 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x574a9e0a gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x5765e54c dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x57707a15 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57d84bc8 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x57e0f9d2 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x57f607ae usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x5820a602 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x58261be2 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x582b6eaf regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x585161ac gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x58755e97 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x587abfd8 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x589ddf52 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58aac72c dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x58ada9a6 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x58c9b08c usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x58c9b23b device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x591cb0c5 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x592e1a3e bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x59304016 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x5934c23d screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x593b0a50 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x59b0e177 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x59d85ec9 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x59dbf02c net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5a05d8f3 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x5a14e34f clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x5a26a379 nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x5a648773 pcibios_finish_adding_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a772244 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5aaa14ad udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5aec0abb irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x5b0ba72a srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5b1da1af invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x5b2348ec ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x5b32d78c irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0x5b88c540 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd722fa mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5c042c48 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x5c2b99fc dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0x5c2dd93f posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x5c588a06 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c87c8a8 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x5c914c24 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cac77d0 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5ce943cd isa_bridge_pcidev -EXPORT_SYMBOL_GPL vmlinux 0x5cf06300 gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0x5cf9fe24 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x5d0cc6e5 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x5d103802 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d2573a8 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x5d54e0af phy_init -EXPORT_SYMBOL_GPL vmlinux 0x5d5ebc04 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x5d9e2ec7 napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x5da1bf59 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x5da57e56 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dac0c25 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x5dbc154b sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x5dc64b22 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x5dc6a024 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x5dcbb460 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x5df061a3 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e024781 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x5e2d02ca fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e6833c4 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x5e7013c9 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x5e7f1329 get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x5e9e6c6f of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x5eac0041 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x5ec38c04 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x5ed11412 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0x5ed5a232 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x5ee45e01 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x5f141064 blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x5f21fdf9 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x5f226722 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x5f3d4256 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x5f4998f5 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x5f532712 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x5f6a75fa xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x5f8741e5 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x5f9384e0 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x5f944b27 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x5fb49daf ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x5fc90b2f fsl_spi_cpm_init -EXPORT_SYMBOL_GPL vmlinux 0x5fd8ef95 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x5fdf9bb2 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x5fe53e4a max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x602ee1e6 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x6041d9fd pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x6065e0b9 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x607f3438 ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x609f3dc5 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60a74bb7 ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x60b1ca58 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x60c52a54 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60f5ed09 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x6102f0ce ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x61093546 of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x610f7394 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x612f68fa devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x6136765a inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x61423e29 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x6143632e ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x6193ff04 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x61abd947 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x61c55fb9 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x61d0b6e3 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x620ddd66 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x62158a1b md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x6215f03b ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x622b29c4 regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x62433959 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x625c185f tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x628f1dc7 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x62ac64cd device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x62bcd146 device_del -EXPORT_SYMBOL_GPL vmlinux 0x62d59c9e trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x62e3703a __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x62f6b917 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x62fd0dfd __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x63025dc2 regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0x6305c694 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x631c760e regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x633ffd63 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x634e68d3 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0x635b15c7 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x63a3d9c2 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x63b2c885 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x63baa3fd clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x63df86e0 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x63eb29b2 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x63f4adcf arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x63faf7ce sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x64014f21 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x640e8581 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0x6428da4f rh_attach_region -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x64480df6 pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0x644a2a2d fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x646116c1 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x64688dc7 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x647cd339 of_fixed_factor_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x648dfcb9 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x6494d57e pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0x64a570f0 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x64adb40c pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x64b2dcd5 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x65311eef of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x65317c25 kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0x6531eb6b phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x65416e1c sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x656cea9e elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x658424d2 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x6584833e fsl_spi_cpm_irq -EXPORT_SYMBOL_GPL vmlinux 0x658dc3c8 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65bf82f1 nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65e253b9 crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x65f17143 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x65f6c009 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x660d2a51 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x66109e96 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x66485c9e power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x664fb757 of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0x6669c41a skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0x667d393e hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x668208a6 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x669b00eb ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66d1fab0 cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66fc3821 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x67380a6f rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x67416c14 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x67614c8d sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x6761c830 kvmppc_handle_store -EXPORT_SYMBOL_GPL vmlinux 0x678db171 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67da6b55 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x6820b3d9 fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0x682e6bb0 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x6831b0d3 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x68608a41 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x68a308b8 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x68f54db9 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x6905be38 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x693d0a4a syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x69586527 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x696152d3 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x69679f89 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0x6975b162 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x69ab121d __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x69b02b60 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x69c7597c xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x69cc4dc1 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x69e33b83 of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x6a14250b md_run -EXPORT_SYMBOL_GPL vmlinux 0x6a3ab4f8 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x6a4b6aca regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a7142bc dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a8f6b80 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6ab3781f trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x6ad9eca0 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x6ada03a4 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x6ada89c7 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6ae45cd9 arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0x6af35d50 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x6b2516a6 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b44517f __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x6b48a910 switch_booke_debug_regs -EXPORT_SYMBOL_GPL vmlinux 0x6b4ed06e dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x6b59b5be srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b9bca12 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x6bb3c035 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x6bbc35c1 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x6bc713ec alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x6bd11935 rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c10642d devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0x6c36b938 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x6c3be018 bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x6c3ddf86 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c6a0f98 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x6c72ee5d devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x6c800bc3 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6cb59691 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cd82261 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x6cd932e6 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x6d2988c4 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d351899 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x6dac0acb hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6db1eaf8 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x6dc1e878 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x6dc782b0 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x6dd4774b serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x6dd5529d bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0x6de6ea9f usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x6deb9bcc regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e426429 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e95b0f0 i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x6e9b8c6c inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x6ec345be of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x6ef2e038 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x6ef3a99e i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f257894 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x6f43dbcf ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x6f6cfaca virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f9f8987 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x6fa9e3a9 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7001ff93 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x70177656 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x701b74a1 of_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x7021ea01 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x7031028a devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x7036d512 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x704efbb9 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x7078a3ef ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x70856c42 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x709b92c3 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x70a10d26 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x70a2fd7a rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x70acdf76 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x70af9075 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x70b5a87a disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x70b92d6a sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d24914 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0x70f68460 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x710cddbe ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x711182fa regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x71186be6 of_fixed_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x71302878 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x71339e6a ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x71373d87 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x7148fdde do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x715b08bd fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x716b95d5 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x716dea58 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x71882c86 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a770d8 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x71b0cc9b wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x71b6a36d crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x720ea408 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x721ac595 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x723a30c4 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x724584a4 blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x72675ed0 kvmppc_pr_ops -EXPORT_SYMBOL_GPL vmlinux 0x726a703f devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x726ce980 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7276a310 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x7277e924 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x7282ce30 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x72954d7b register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x729e6ef8 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x72a27bc9 wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0x72b71b72 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x72bd0145 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x72e8d96a rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x730bf0ac kvm_vcpu_block -EXPORT_SYMBOL_GPL vmlinux 0x731b7ab9 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x732b8364 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x7347e824 regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0x73640c36 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7369969d xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x73a3ede2 raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73ad78e4 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73d14381 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x740e6f38 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x74194090 __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x7435c7a9 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x743fb822 of_get_nand_ecc_strength -EXPORT_SYMBOL_GPL vmlinux 0x7445a75e devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x744dd81c led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7468b74e __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x74a39bad pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x74e08627 __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0x74e2f8ec gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0x74e5c138 max_gen_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x74e7089a crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x74ee3a10 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x75054d6c reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7515fee0 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x75200002 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x7543c096 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x7576d9bc usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x7579643f crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x75a2c26b serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x75a2d4d6 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x75b02cd5 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x75b22197 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75d8e9a9 tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x760decd7 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x760ff8f0 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x761d4d0c rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x762d888d device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x764b2249 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76864d8c sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x76904259 pcibios_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x76934ef2 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x76a6ba54 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x76c99992 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76ed26cb fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x7703741d devres_get -EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x77108e4e shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7763b800 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x77801eef smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x77a568d8 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77c40ceb cpu_remove_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0x77c9a514 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x77d3c3cb bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x78045aec dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x781c3d24 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x781d00af thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x78459300 __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x787a3146 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x78820cd0 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x78a8ef17 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78dd6fcc pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x79065ae5 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x79216184 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x7934a4de fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x7976d070 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x79a36f9d serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x79a89e60 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x79c480da rh_dump -EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x79dd0292 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e20057 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x79ea9ce5 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x7a29e5f0 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a3dba26 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x7a5bde2b gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7a687c3c gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x7a7bb563 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x7a8949df dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x7a912528 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x7aadb25d blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b17bc70 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b285f33 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7b9b49e6 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x7ba09e27 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x7babc452 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x7bd5875d unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x7be10948 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7bf89b56 ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0x7c05b369 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x7c247039 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x7c363ea9 tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0x7c4ef717 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x7c5c5ff3 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7cafa192 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x7cc4204e crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x7cc53c36 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cd907ca kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x7ce75ec1 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ceca3b4 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d10095f register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d65dd8a tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x7d83b09a pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7db71404 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x7dcdad2a usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x7dd057b4 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x7dd12fac register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7deedb1a regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x7dfbec59 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x7dfeabb5 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x7dfede0a device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x7e16fa2c __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7e2aa0ca driver_register -EXPORT_SYMBOL_GPL vmlinux 0x7e38bb90 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x7e53a098 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x7e56a0b3 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x7e62bf01 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x7e63fcd7 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e6dbce8 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x7e80cdc5 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7e9f75ff pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x7eb0b0f4 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x7eee505d attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f3dc62c crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x7f45e8dd blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0x7f6113a8 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f82f065 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x7f84ce67 of_scan_bus -EXPORT_SYMBOL_GPL vmlinux 0x7f9635f0 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x7fa8ecdf pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x7fbbebe3 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x801c3569 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x8029d39a crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x8092c525 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x809765f6 gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x80b48b68 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x810d9377 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x811b3a31 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x81568858 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x816344db __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x81c5b234 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x81cccd10 ref_module -EXPORT_SYMBOL_GPL vmlinux 0x81d1e120 get_device -EXPORT_SYMBOL_GPL vmlinux 0x81dc5404 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x81e3c0dd kvm_vcpu_kick -EXPORT_SYMBOL_GPL vmlinux 0x81f367d9 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x820e5da8 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x822445b7 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x823363c4 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x825bec12 clk_debugfs_add_file -EXPORT_SYMBOL_GPL vmlinux 0x825c5816 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x8283b3f2 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x8294290e tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x82c42db9 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x82cdd3a1 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x82d4624a validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82de48f2 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x83004b06 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x8308e855 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x83168c84 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x8325fdba pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0x832e55b9 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x83572c1f kvmppc_handle_load -EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x8399b646 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x83a5c73e flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x83eba8d4 save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0x83ebb402 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x83ebc9e4 devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x8412ad7b tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x84142b99 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x8415bf15 of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x841da239 unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x84239b84 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x84330fa1 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x844b3846 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x8458bc58 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x846e693f regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x846f40de __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x849b8c99 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x84a5b4f3 kvmppc_sanity_check -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84b86956 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x84b97ede driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x84cbf9f4 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x84cc1561 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x84e9cf27 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x84fccd54 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850cebef adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x85143d0c ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x852f65a2 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x854149e1 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x854c1215 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x85554bf7 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x85766a0d list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x85830230 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x85a0a37f pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x85ae5fd9 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x85b55471 find_module -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85f8de9c of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x86005e5f posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0x8606ee1f dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0x860a5444 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x860af9db bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x860fbe5c arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x86204433 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x864bb141 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x866bd535 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x868629ba ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x8688ac00 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x868a8928 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0x86b25ecf anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x86dc1431 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x87221fe5 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x873c15d0 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x873c5e06 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x87447e1e trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0x8754ad76 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x876f5301 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x8774a9ec platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x877ac329 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x879c05d6 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x87a04c9e gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x87b3515e sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x87d25ec1 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x88215618 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x883868c5 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x88733678 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x889cf725 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b24003 bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88d77cb9 blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0x88fb9a4f trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x892914ec pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x8965f313 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x89b12c8f wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89dbf5b0 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x89ede527 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x89f1ce76 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x89f48040 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x8a0bb18d dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x8a200b7d ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x8a3879e1 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x8ab8266a ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ad39d59 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x8ad719a4 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x8ae7cce7 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x8b13b4b9 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b2160d0 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x8b3f1ead power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x8b50f03d fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x8b5ff72a pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x8b71b752 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b820e1e vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8baeb45e ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x8bc8dce1 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x8bc92dc8 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x8bd07d98 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8bea2c54 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x8bebf430 seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c17fb55 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x8c371d93 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x8c3f6c8e show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x8c5da2bf regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c6cd6ea scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x8c7384df agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c83c4cb subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x8c9a00d5 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x8ca78161 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x8cb6a5a5 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8d20ea2b tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x8d362582 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x8d494994 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x8d5ffbc7 of_pci_get_host_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL vmlinux 0x8da3d27a gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x8dc73941 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x8dcb019a bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x8dd2bd4e of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x8dfbd20c sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8e0acdc0 of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0x8e13ed25 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e40cb18 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x8e4984f4 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x8e54f28d devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x8eb5058a blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x8ee491df tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8ee7ee3d regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x8ee84aa8 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0de55c blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x8f1879fc ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x8f2bc7b4 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x8f584d67 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x8f588cc8 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f7103f0 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8f9672f0 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x8fa3e875 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x8fbeb583 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x8fcb0b38 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x8fd154e7 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x8fda5150 __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x8fdf223d sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x8ff1aa3b led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x8ffb9962 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x900953d7 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x90378b68 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x9052e07f rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x907c44f6 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x908448a3 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x9089e246 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90af2364 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x90b36d9d sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x90cebed5 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x91103b9e mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x912a0136 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x914711ac devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x914ba6a5 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0x91768d7f ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x91792e62 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x919e8c8e irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x91ae9fe4 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x91c1fae7 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91e72365 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x926ad50c i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x9282c8d4 use_mm -EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x92bb9d29 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x92c6348c rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92dbf0e8 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x93331047 device_register -EXPORT_SYMBOL_GPL vmlinux 0x93520fa9 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x93595a55 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9365d415 of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x939daf20 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x93a2cb47 reserve_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x93cd1faa of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x93d6c591 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x940068b3 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x94281de0 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x94332c48 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x943a14d8 __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0x946cd7b5 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x947ce2b8 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x94c8b7b6 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x94d6e374 fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94f4637f bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x94f572e5 sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x9507866d debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x951ad51a mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x951ed87c usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x957a3668 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x957a4b35 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x959fad20 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x95b30886 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x960025c7 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x960372fa device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x96066b57 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x961be035 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x962409fb __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x962b57a4 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9655b911 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x9656c82b shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x9676e96b devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x969d7014 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x969e5336 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x969ed573 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x96b67606 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x96dec2f8 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x97290ea3 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0x974b2870 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x9752cc02 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x97687b41 devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x97762bd3 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x978332af trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x9789ddfa wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x979100b9 kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x97b4806f desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x97b48df5 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x97c53d68 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97f32993 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x97f43ec6 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x98006fb9 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x9807d85e pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x981c6661 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x983c7494 rh_detach_region -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x985b8f2e component_del -EXPORT_SYMBOL_GPL vmlinux 0x9878cfd6 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9879c36b firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x9882e891 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x9892d5d4 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x98976331 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x98a08f61 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x98b0355e usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x98b89426 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x98bc1585 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x98de437d regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x98eb33b2 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x98ee92ab kvmppc_emulate_instruction -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9979a202 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x997b88b2 nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x999055fd perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99b8903d __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x99b9e21b tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99bf3a4d public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x99c856a6 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x99dca800 extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0x99ea4f3b subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99eab883 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x99ee1fcd scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a4310d1 kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x9a6b69f0 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x9a6e18e1 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9a8ff43b lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x9ac6124f kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x9ae3a119 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af152ac usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x9af9f2f2 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x9b1913c2 swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0x9b31da8e spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x9b582909 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x9b6cbbd4 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x9b991980 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x9b9b8617 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x9bb98742 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf0533f gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x9c08531f is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x9c4292f7 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x9c7359fd devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x9c7a9539 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x9c90f1a2 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x9cb7a4ef cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x9cb8cce0 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x9cc2c10b gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ceac92b shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x9d450a5d pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x9d5a781b led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9d7ff882 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x9d987896 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x9d99e015 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x9dac62e1 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9dafedb5 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x9db07fc3 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x9db391e6 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x9db3e7e1 mpic_subsys -EXPORT_SYMBOL_GPL vmlinux 0x9dc2e3f4 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x9dc529e9 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x9dcab596 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9dd6de34 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x9df9ab2f device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0x9dfe1838 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x9e199090 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e4b1978 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x9e874e26 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x9e93d422 of_get_nand_bus_width -EXPORT_SYMBOL_GPL vmlinux 0x9ea4b950 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x9eaf821d kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0x9eb29fbe device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x9ed1b404 pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ef6177f ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9efbbd8b ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x9f07cbde fsl_rio_mcheck_exception -EXPORT_SYMBOL_GPL vmlinux 0x9f0e7297 arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0x9f2599f7 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x9f28d50c locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x9f2a72e4 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x9f56cb46 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x9f56e7f6 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x9f6f4045 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x9f7f3166 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x9f98d9f0 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x9faa6778 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x9fb7223f of_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x9fbaef9d ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x9fc7e76b pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x9fccb57a thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe136f8 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x9fe288d3 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff8c5c1 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xa015a0ca pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0xa01971cc ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xa01fe106 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xa03b8e40 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xa04a0ca4 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0xa05c72d1 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xa0946d2a dummy_con -EXPORT_SYMBOL_GPL vmlinux 0xa09563d4 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio -EXPORT_SYMBOL_GPL vmlinux 0xa0cc8b7b wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa0d05fe6 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xa0d0b6c5 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xa0d13f04 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xa0d6c7b2 devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xa0db918a uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xa0e3c4e8 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xa10722a6 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xa1290287 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xa12b55f1 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0xa13c6147 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa1441ad6 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0xa152f602 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xa1583310 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xa17c2752 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xa18426bd devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa1cc83bf dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0xa1d69c81 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xa1dc0ee7 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0xa1f2e6b6 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xa1f3c1bc ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xa224e971 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xa23d8254 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xa251bd29 clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xa2560d50 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xa25724f0 usb_string -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa28aaf29 rh_create -EXPORT_SYMBOL_GPL vmlinux 0xa2948397 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xa2adde7c kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0xa2af4d1a ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2c5086e dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xa2d14bf8 kvm_clear_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xa2d1b49f swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0xa2e9c734 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xa3225776 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0xa3687a1b nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xa378d2b9 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xa37d6de6 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa398e4a5 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xa39d5eea ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3ca2bb5 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xa3dfb086 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xa3e2c592 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa40e9537 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xa417be9e regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xa46387e8 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xa4676fe0 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0xa46f08d2 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4a7ccfe virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa4c47ab9 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xa4cc765a mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xa4d8a181 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xa4ec0cbb ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa4f33e96 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xa4fe4e4a regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xa503c34c fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0xa507ec6d wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xa50eb881 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xa51d9099 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xa54bda7f rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0xa5534f8e usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xa56a3f50 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xa56f8a3a skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xa5753c3a pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xa58ecb96 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xa5916301 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xa5ad158c adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xa5add9a9 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xa5f10a00 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xa60b7240 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa6316a8a nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xa65458ed gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xa6a41cb9 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6b7df16 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0xa6c00311 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xa6e0e70e __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6e94c57 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0xa6f13b57 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xa6f58cb0 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0xa72072f5 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xa73d9d1d sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0xa75c6d7d kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xa76704f1 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0xa77269c2 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xa788c152 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xa78f6586 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xa7a218bc __nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0xa7caddb8 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0xa7d857ed sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0xa7f9377c usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xa841a1cd gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa851f7d4 blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0xa86ab3a6 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0xa8a5a418 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8fd4a92 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa9082399 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xa91603b1 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xa924b32f shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa93acff8 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0xa96bee23 tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xa976e618 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xa97a1074 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xa992d403 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xa999e3f1 gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xa9a92c94 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0xa9abd1e1 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL vmlinux 0xa9b50248 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xa9b9e6b8 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9ee2d18 spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0xaa0ceb2e xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xaa17a2e2 rh_alloc_align -EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0xaa2ad0f4 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xaa41af46 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xaa4ddddd dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xaa51132f usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0xaa5e86cb of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xaa662f22 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xaa75503d usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xaa7752e3 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xaaa307c1 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaad6542d mddev_init -EXPORT_SYMBOL_GPL vmlinux 0xaaf81c2d crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xaafd3330 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab2f34f3 regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0xab3f177b pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xab454a16 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xab58747e devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xab59d373 kvmppc_free_lpid -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab694d7d rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xaba12c13 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xaba3ec2e usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xabaf3d7d da903x_update -EXPORT_SYMBOL_GPL vmlinux 0xabb29179 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xabb51f3a kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0xabbadeed dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabe258c4 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xac01f8d2 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xac0430fa extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0xac2c85b7 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xac598a83 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0xac621fb5 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0xac66b6fb device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xac8bd56f __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xaca00de1 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xad070fec mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0xad1fcf1f devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xad52fa11 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0xad6649ae sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0xad6a018a n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xad73b1b0 of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xad7f2206 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xad84cbc0 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xadb2ba40 cpu_remove_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xadb61090 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xadcbeb68 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae045f2b sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xae1593a8 fsl_spi_cpm_reinit_txrx -EXPORT_SYMBOL_GPL vmlinux 0xae4b85cf usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xae51b6dc posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xae625ddd hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all -EXPORT_SYMBOL_GPL vmlinux 0xae869c76 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xaf138edd __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0xaf2832d7 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xaf357cc5 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0xaf57abfb usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0xaf93ae02 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xaf96eee5 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xaf983160 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xafa46687 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0xafcd60d7 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0xaff9d29e tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xaff9d649 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xb026602c extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb04e145d attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb058747a ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb0913148 btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xb097f5d7 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xb09c2a43 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bd7d28 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xb0c6c292 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xb0c8ebf0 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xb0e108fb gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xb0f8e67f stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0xb12ff25a skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0xb13a5d4e ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb1802957 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1ad663e dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0xb1b81646 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1bfe761 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1c69858 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0xb1d11721 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1fb6aa4 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xb2003bb9 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xb205e931 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2256567 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xb24b61c1 securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0xb267edbc regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0xb2750f00 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0xb2754fab attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xb279948f rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xb292e258 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb29fe80e dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xb2be8d02 kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0xb2c1554b of_get_nand_ecc_mode -EXPORT_SYMBOL_GPL vmlinux 0xb2c7f3c6 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xb2ed72e1 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0xb317d4eb of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0xb387d49a pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xb3eda6be list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xb418dcd3 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xb426ef89 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xb4330518 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xb445e7b6 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns -EXPORT_SYMBOL_GPL vmlinux 0xb4b04650 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4cbcf2e do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xb4d567ec component_add -EXPORT_SYMBOL_GPL vmlinux 0xb4decbd2 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xb4e70ebf usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4f1fb33 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xb50dbefc usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb5439a8c __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb54e5e9a component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xb562dece inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xb56bf195 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xb56e9ba9 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb5954bf6 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xb5a0abcd ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xb5e797d9 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xb5f0f370 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb5f8ca0e ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb5fe12da rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq -EXPORT_SYMBOL_GPL vmlinux 0xb60be09f nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xb620c892 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb639bc86 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xb639fcd8 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0xb654538a regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0xb65f92e6 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xb6874b26 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xb68e5ed2 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb691037f trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6b0248e tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xb6cafd7f crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0xb6cc067a ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb6d30c39 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xb6e33489 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6f5260f dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xb7088e66 agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xb7137e05 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0xb718c640 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xb7248ead component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb73f3985 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xb767fa71 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xb76ddfa5 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0xb7838e37 max_gen_clk_probe -EXPORT_SYMBOL_GPL vmlinux 0xb786e77d percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb78bab97 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0xb79ac1fb usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xb79cb874 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xb79fb656 register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xb7b9f6d2 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0xb7bc7f4a ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xb7c2f5a2 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0xb7dbc7af rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xb7e174ba wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb802466a xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0xb8073188 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0xb809b9ee md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xb80f02e5 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xb8138e3f blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0xb84b5f0d cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0xb883206b hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb88818e0 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb8bd9e00 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0xb8c8ee40 pcibios_free_controller -EXPORT_SYMBOL_GPL vmlinux 0xb8cbf9cc locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8e494f2 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0xb92222d2 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xb9343954 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xb94bcc67 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0xb96b3bc6 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0xb971ffd3 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb98a3db9 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xb99465f5 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0xb9b40afd of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9ba7f9e regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9cd32bd regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9fbc4b5 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xba177bf5 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xba1dc1e1 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xba295e3e devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba2eeaf7 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0xba3bd81b tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xba8f0836 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xba940a2b dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0xbaa44af8 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbacd2015 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xbaf4f01a phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbafb520b devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbafb8c86 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb1d8f9c usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0xbb352d4c ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xbb3ee416 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xbb574539 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0xbb6e2de0 device_create -EXPORT_SYMBOL_GPL vmlinux 0xbb72e14f tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xbb884e42 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbb8febd5 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xbb904ac4 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xbbb497b9 of_pci_find_msi_chip_by_node -EXPORT_SYMBOL_GPL vmlinux 0xbbdf2c00 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xbbeb5913 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0xbbf19809 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xbbf44343 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0xbc1bb6e6 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xbc1c5f4c disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xbc4f138a crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc6ff3dc led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xbc78ebc2 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xbc7baee4 trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0xbc81d9cb rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbc8ac72c seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0xbc96780d inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xbcac5006 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcbfce89 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd48a334 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd92035c regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0xbda2d332 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xbda4631c gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xbdb53df7 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0xbdc16b9f crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0xbdc7ce6f kvmppc_hv_ops -EXPORT_SYMBOL_GPL vmlinux 0xbdcfbdb7 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbde2768a unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0xbdfaff0b dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe216863 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0xbe42ffcb clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xbe4cae70 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xbe532130 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xbe57e6c0 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xbe666a99 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeac8351 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xbedb1ef9 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbeefef50 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xbef46ea2 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0xbef58b4d pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf082457 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xbf1bd150 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xbf275813 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xbf455462 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xbf4cb795 kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xbf63e6a9 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xbf6a28fc get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0xbf6cd0db of_get_nand_ecc_step_size -EXPORT_SYMBOL_GPL vmlinux 0xbfac4bef scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xbfbc2398 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfdb36db rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xbfdbfc1a dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0xbfe2a8ed crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 -EXPORT_SYMBOL_GPL vmlinux 0xc00aab2e devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc037d561 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xc041e865 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0xc0544f07 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0xc061367e mpic_msgr_get -EXPORT_SYMBOL_GPL vmlinux 0xc0630504 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xc0641076 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc08a2de3 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xc08c4514 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xc0973e67 nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xc09dfeb2 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc09f98b2 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0aaf74d napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0xc0c566b6 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0xc0cf529d clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 -EXPORT_SYMBOL_GPL vmlinux 0xc0e86ff4 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0xc0edadf5 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc128acb3 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xc1359ce7 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xc143069b sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xc16a77f8 kvmppc_st -EXPORT_SYMBOL_GPL vmlinux 0xc1710a73 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu -EXPORT_SYMBOL_GPL vmlinux 0xc1895387 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xc1a9cd5f swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0xc1c03ea4 crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xc1d3c27e irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xc1d7fccf gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc1df506d anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xc1e98ecd ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xc1e9a9e7 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc259c72e usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0xc27e4ce9 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc29fa958 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xc2a17527 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xc2acdb9c driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc2bf8b00 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc2c4a393 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xc2d5d2ab rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0xc2dcc051 kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xc2f9e5c4 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xc2ff7c47 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc30b600d gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xc310506e sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0xc33c5c94 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc389011e pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xc39f07c0 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xc3dce974 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xc3e5e483 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xc3f54cb0 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc4436e0d sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc47f8759 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc49a6fb3 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xc49bcc75 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xc4a1910e usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xc4a20df5 of_display_timings_exist -EXPORT_SYMBOL_GPL vmlinux 0xc4ac440f debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xc4b74310 kick_process -EXPORT_SYMBOL_GPL vmlinux 0xc4cba6e6 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4de3873 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xc4f07e87 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xc505da99 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xc507f06a of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0xc50d8c15 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xc52ca085 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0xc52f21ad verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc5774b96 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xc58b8866 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc5b65595 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0xc5be5715 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xc5e33296 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xc5f402f3 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0xc5fe127e mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc650bdc5 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc663d003 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xc67edaaa pcibios_scan_phb -EXPORT_SYMBOL_GPL vmlinux 0xc682f45c pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6b4b208 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xc70e4b59 kvmppc_claim_lpid -EXPORT_SYMBOL_GPL vmlinux 0xc7192290 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0xc71ad6be of_reserved_mem_device_init -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc7558376 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0xc7680fcc of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0xc78b5a13 of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xc7967b6b tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7b42be1 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc824a922 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xc8298253 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xc8373212 fb_sys_write -EXPORT_SYMBOL_GPL vmlinux 0xc83a24f7 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0xc83a3721 clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0xc83b703c virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0xc869eddc register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xc8757481 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xc87b5ce4 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8c06bae kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0xc8c15b64 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xc8d43c22 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc9163e8a percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0xc9189897 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xc92db597 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xc92e095a ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xc937cf50 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc95c8755 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level -EXPORT_SYMBOL_GPL vmlinux 0xc97e9bff register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0xc98be57d ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xc998c505 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xc9a7c1da serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0xc9c23b46 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xc9cc3510 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xc9cdadae crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xc9dd54f6 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xc9de0604 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xc9df437f dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xc9df75ab sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xca6a2edc tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xca6ceb10 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xca6f6da6 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca926f68 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcac0a114 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0xcacc5468 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xcad649bd usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xcb0c9beb gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb525a55 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xcb70aa42 rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcb862665 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xcb98b658 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xcbb52ad7 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbe90424 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xcbecb3c5 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcc0774e0 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcc09eec1 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcc1595cc i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0xcc1b373f __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcc2ba30d list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcc44961f kvmppc_alloc_lpid -EXPORT_SYMBOL_GPL vmlinux 0xcc5d93b4 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0xcc6139b8 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0xcc75eb48 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc964977 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd29844 __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0xccd2e471 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xcce74f9a virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xccfb3851 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xcd04e2a5 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xcd1645c2 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xcd174e3e irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xcd402bb5 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xcd43928e regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xcd6492ab trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xcd778ca9 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0xcd85c167 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xcd85c531 napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcda3e845 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdcecf7a pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xcde3142d fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0xcdf18841 blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0xcdf7ae3b rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xcdfe4d72 vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0xce15a370 tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xce18b483 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xce35e8f4 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0xce3d82bf spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0xce55e0a5 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce9986c0 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xcead748e led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xceb92534 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xcecf143f of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xced1f0c9 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee28ba5 clk_register -EXPORT_SYMBOL_GPL vmlinux 0xcee6bacc ping_err -EXPORT_SYMBOL_GPL vmlinux 0xcefec392 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xcf170bc1 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0xcf175674 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xcf276ff9 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xcf4abae0 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0xcf52e927 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf5a7914 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xcf67097d blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xcf81419f to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfd3221a clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0xcfe6d02c rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xcffa33df ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xd002424e devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xd011d61b virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xd02a1d0f thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd0459226 pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0xd05d873f irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd0662664 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06f9662 rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0xd0806dbb virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0xd0ae0b8e clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c58c50 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xd0ff7eec set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd10e1a8b regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xd11e308a usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xd130ec9c regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xd131fdcb crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xd13c865d tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xd1444eac spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xd154da6f ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd1c40236 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xd1e6fe5d fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd2006bbb __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xd209779b pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd2219cc2 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd239de06 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xd2405497 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd2481ef9 early_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xd2590baa debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd281d05f usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xd2df0207 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd2faa3b7 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xd34c9d16 kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0xd35837c8 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xd36df666 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xd38a70a9 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xd39c2a91 pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0xd39f2085 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xd3a4ecc7 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xd3aef41d regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xd3af33eb key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3bdfc55 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xd3debde1 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4037e2c kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd447cb0a led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd45291f0 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0xd458c450 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xd477fd35 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd4b0ae8b device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0xd4b11cb6 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xd4bd3b53 of_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c3773b queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xd4cfe830 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0xd516d2e2 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0xd5294f87 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xd55b964a wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd55e2ab8 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xd57ff020 phy_create -EXPORT_SYMBOL_GPL vmlinux 0xd59fe323 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xd5b85c98 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd5bac22c kvmppc_prepare_to_enter -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5de632e gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd623c09b watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse -EXPORT_SYMBOL_GPL vmlinux 0xd63c6290 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd669fe4a crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd69851c6 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xd6bf864e user_update -EXPORT_SYMBOL_GPL vmlinux 0xd6cb78b1 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0xd6dd490e inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd7362ef1 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xd73d8deb extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0xd7645836 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd78f63c9 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xd7a11ecb mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xd7a58ff4 cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0xd7b75cf7 x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7de0422 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd7e87ff6 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0xd7f6ce20 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0xd7fbcefb serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd83521cb ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xd86103e4 __class_create -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd880fc63 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0xd8e3bf03 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xd8fa9eaa vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xd90a03cc led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xd928daeb cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd9386384 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd98caec9 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0xd999219f ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd9c4f4bb usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xd9c9124a fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xd9d06092 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xd9d83291 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable -EXPORT_SYMBOL_GPL vmlinux 0xda417634 relay_open -EXPORT_SYMBOL_GPL vmlinux 0xda4bfb8e of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0xda5e0f5e __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xda897d08 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xda8cb2e5 threads_core_mask -EXPORT_SYMBOL_GPL vmlinux 0xdae14f78 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xdae7aba9 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaf2bb89 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xdaf34a0b device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb045de0 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xdb0c12e7 kvm_init -EXPORT_SYMBOL_GPL vmlinux 0xdb0d0a4b uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdb244f03 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xdb32e52b __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xdb422b90 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xdb443891 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb550c7f __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xdb6c39d5 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xdb853350 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0xdb89f50e sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb91ebc3 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xdb9ceb40 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0xdba198d4 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xdbba9b8b regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xdbc8085b ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0xdbdfe20f __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xdbebeb9b component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0xdbf66fd7 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbfa3f27 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xdc07ce92 kvm_io_bus_write -EXPORT_SYMBOL_GPL vmlinux 0xdc11de09 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xdc19f1a9 bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0xdc1c379d __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xdc22a424 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcaf9b5e netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xdcc1325a pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0xdcc9d439 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xdcce0a1d input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xdcd1915c ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdcdec6cf inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdd0e9acb usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd243c74 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd56c812 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xdd57a42c sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xdd58b8b7 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xdd5c53d9 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xdd808c19 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xdd8cab8d handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xdd960140 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xddd62002 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xddfdfe4b fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xde1dbf83 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xde1fe851 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xde29c532 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0xde337588 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0xde34246a led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xde556499 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xde6343d0 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xde7869cd crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xde9fd9a2 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0xdeb582cc nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0xdeb61f84 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0xdefaa822 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf1c74ab unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xdf2cca38 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xdf37be50 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xdf40d536 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xdf8c1d80 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xdfa5ae48 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xdfc170a5 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xdfea630f usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe0151b68 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xe01b3960 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xe01d4a13 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe03100fa regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put -EXPORT_SYMBOL_GPL vmlinux 0xe037603c clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xe06f98f3 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xe07021da vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe091c0e9 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0xe0a2401c pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0xe0acc6a6 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b4e347 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xe0c0bf0d rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0xe0eb214d perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xe1118601 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0xe11cd49c usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0xe12e33c8 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xe14a0e81 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe155330f scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0xe15da232 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xe169792d irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe19eb1c4 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe1b23ae4 tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0xe1b75c7a fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1ca5031 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xe1ccdacd fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe1d8d7e0 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xe1deca9f irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xe1e1daf5 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe2231b76 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xe2369736 dev_pm_opp_get_suspend_opp -EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe24b8177 pcibios_claim_one_bus -EXPORT_SYMBOL_GPL vmlinux 0xe25777db device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe2ae0a1a dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xe2b476f4 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xe2dd4eb2 regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0xe2e8c1f3 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe317dbeb regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xe34c41d0 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xe37a8b16 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xe3952c99 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xe3a10b08 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xe3ac5984 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0xe3b2b892 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xe3cf13a2 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xe3cfcc87 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xe3dcafdd of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0xe3eb5945 max_gen_clk_ops -EXPORT_SYMBOL_GPL vmlinux 0xe3ed196f nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xe405b354 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xe40fe093 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xe4117d45 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0xe419df48 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xe41a4a4b ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4421a02 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xe442375a irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xe456c72a transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe49125fb kvmppc_ld -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a0d7af __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xe4a26f4a cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0xe4aa89d4 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4da4df2 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0xe4f69d80 irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xe4fa1a9a dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xe5002e6c virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xe524d6a8 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xe548eaa6 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xe552759b platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xe5622595 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xe56cfdc8 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0xe56f019b inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xe579ab3f gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe596ace7 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xe5c0e47d trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xe5e27448 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xe5e6fb87 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xe610282e unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xe630e558 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xe63810f4 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe659d8b8 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xe65a8480 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0xe65f2a38 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xe66405ef clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xe69edba1 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6d8ba6f usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6e1ca0e irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe7145917 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xe71ae3c7 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xe72b27c3 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe755aacc __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe7722ffe __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0xe77e781e dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe78e905c scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xe791ca8b regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xe7964247 arizona_of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0xe7b03f11 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe7c02b87 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xe7c9780a usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore -EXPORT_SYMBOL_GPL vmlinux 0xe7f5d625 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe81d0604 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xe8305e07 of_get_nand_on_flash_bbt -EXPORT_SYMBOL_GPL vmlinux 0xe834f406 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xe842b40d pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe864fe94 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xe878f8a9 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xe8a66aa4 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xe8ba0751 kvmppc_kvm_pv -EXPORT_SYMBOL_GPL vmlinux 0xe8cd170d anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xe91d2c7a usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xe929975a input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe954ab5c pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0xe95a02bb get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xe9634f14 mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0xe9723879 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xe97d7af9 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0xe996cfbe usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xe99b5707 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xe99ceb13 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d49f38 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe9e7b406 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0xe9ec9c66 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xe9f10440 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xe9f8dd5e pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xe9fa9517 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea38ff49 dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea4ef581 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xea501c8c spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xea562954 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xea8997ee bus_register -EXPORT_SYMBOL_GPL vmlinux 0xea8ec579 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xeaa654ea wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0xeaea27fe __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xeaff5f4b regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xeb1fec1f platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb34f953 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xeb4762df crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xeb6bb8d3 kvm_get_dirty_log -EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xeb915da0 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb997a50 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xeba5d018 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xeba8d390 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xebabda34 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 -EXPORT_SYMBOL_GPL vmlinux 0xebd33c15 of_overlay_create -EXPORT_SYMBOL_GPL vmlinux 0xebd6d767 irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0xebdb31d4 analyse_instr -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xebfd701c adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec22cc28 iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec271476 kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0xec9ded90 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xed0f960a bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0xed2739f8 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xed341652 kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL vmlinux 0xed3a7264 fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xed5c868b devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed6ab04c tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0xed75a567 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xed7e90f2 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0xeda84c3c crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xedcdab73 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xede73165 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xedf259d0 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xedfceae8 blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0xee012cbb fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xee26fb2e cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0xee3352ef ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xee5fe638 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xee6285e9 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xeec06ce9 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xeec0d36c nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0xeec44866 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xeeef2c94 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0xef1e818f user_read -EXPORT_SYMBOL_GPL vmlinux 0xef212a89 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xef3566b5 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xef437436 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef60309a irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa5ee9e serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xefc257f4 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0xefc93289 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xefd349ce devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xefe3d540 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xefe6a220 of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0xeff537c3 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xeff75a2b wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xf0069c4d rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xf02b61f4 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf07adb24 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0xf087d18d spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xf09cd1e1 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xf0aadde9 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0xf0b6a95a pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0e2ab73 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xf0f4aab3 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf11e52b6 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf186ee62 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0xf1926c41 wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0xf1978871 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b2f2a1 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1b98881 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0xf1e5831d dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0xf1f57148 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xf1f6cd6b tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0xf2196393 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf23c298b wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0xf2454e96 of_css -EXPORT_SYMBOL_GPL vmlinux 0xf2513e48 crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf27f805c udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2ad592a sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xf2d3f9ff cpu_add_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0xf2dbf889 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xf2dc2893 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xf2e575a5 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf3012f6c rh_free -EXPORT_SYMBOL_GPL vmlinux 0xf306c260 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30b2578 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31911f6 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf345fbb8 dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xf355d50a usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xf3599b46 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xf3765a33 dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3937458 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xf3a65c1a pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc4db tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3d0e948 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf3d64995 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xf3dce33a debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf3e3ee22 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf428a181 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xf42b7721 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4b333d1 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xf4b3f12f xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xf4d20340 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xf4da3546 kvmppc_init_lpid -EXPORT_SYMBOL_GPL vmlinux 0xf4e12ba2 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf52949ad wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xf5414a8c irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf551d556 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf5598a78 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xf55d80f5 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0xf56bff08 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xf574cd12 dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0xf57eb02f ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xf5daeb64 dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf5e7f053 rh_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf5f04abd rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xf608e0c2 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf60a3e56 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xf624f8d8 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xf63b3341 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xf6404928 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xf659551f platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xf65adcef regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xf67139d2 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xf6740ac0 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xf6785a52 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0xf67a0529 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xf6829a00 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0xf697578e of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0xf69bdf3e sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0xf6a391b8 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xf6ad203b relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0xf6af9900 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6eb7abe nl_table -EXPORT_SYMBOL_GPL vmlinux 0xf6f82ad5 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xf6f8ec02 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xf71c687f pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0xf71defa8 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0xf71e9fca crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf751b8f5 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xf75b893e platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xf75d72d0 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0xf77cff44 percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0xf78a8e12 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xf790924a driver_find -EXPORT_SYMBOL_GPL vmlinux 0xf79c7ddc mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xf7b287f4 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf8bfa424 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xf8c3b7d3 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xf8cff31d fsl_spi_cpm_bufs_complete -EXPORT_SYMBOL_GPL vmlinux 0xf8e561e4 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xf8e571a6 devres_find -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8f779f4 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf91c26e1 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xf91eac65 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xf91eb880 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xf9277bda flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf95610a8 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0xf9567406 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xf9600731 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xf963abc6 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xf9669594 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xf98f6641 xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9ae9adf rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xf9c2471f rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0xf9c28142 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9e55f58 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0xf9ed13f4 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf9fdf2c7 __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa26fdfb cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xfa313983 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xfa47e8ca fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xfa62829e ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xfa63ffd9 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xfa964472 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0xfaa0c192 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xfaa71d9e usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0xfaaa81b6 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xfac1b813 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xfad4ea45 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0xfadc4f0a usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0xfae6f89d da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xfafbdeb8 kvmppc_emulate_mmio -EXPORT_SYMBOL_GPL vmlinux 0xfb207ff9 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xfb24868c __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xfb2b2510 of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0xfb2bfcab da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0xfb5ce5bf device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xfb5d5fbe usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xfb64e47d pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xfb6cdd12 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb83db03 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xfb9023aa udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xfb9258fc preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfba1a016 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbd088b7 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xfbd6cba5 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xfbec442f sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xfbfaaf21 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc3e811b blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0xfc4eedf3 i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xfc5c0069 yield_to -EXPORT_SYMBOL_GPL vmlinux 0xfcac5a51 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfcb305ea of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0xfcb89ce1 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0xfcba196c mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xfcc73ad8 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xfcc8beb7 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xfcd9da5b of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0xfcd9f25c regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0xfcfe3cc3 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xfd237d87 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xfd445138 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd45bbb8 rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfd50328d tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd835003 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfd8d5037 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xfdb4317d clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xfdcbdf51 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfdd9e083 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0xfde514d0 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xfde591e2 skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xfdea92bb arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0xfe339027 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xfe3c2e81 cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0xfe65cc94 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xfe7787d8 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xfe80c6b9 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0xfe904234 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfead904c ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfeb22dab trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed1aae5 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0xfef71aa4 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff489d2f sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xff4aa9bb blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xff54efdf ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff5ece86 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff6c61e2 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xff74f678 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xff8862d7 rh_get_stats -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xffd70518 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xffe2ebcc handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xffe4d1c2 cpuidle_unregister_driver reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc-e500mc.compiler +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc-e500mc.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc-e500mc.modules +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc-e500mc.modules @@ -1,4332 +0,0 @@ -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_mid -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -BusLogic -DAC960 -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -ac97_bus -acard-ahci -acecad -acenic -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7170 -adv7175 -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -aha152x_cs -ahci -ahci_ceva -ahci_platform -ahci_qoriq -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airo_cs -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -ali-ircc -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am53c974 -ambassador -amc6821 -amd -amd5536udc -amd8111e -amdgpu -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apbps2 -apds9300 -apds9802als -apds990x -apds9960 -appledisplay -appletalk -appletouch -applicom -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -asc7621 -ascot2e -asix -ast -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atm -atmel -atmel-flexcom -atmel-hlcdc -atmel_cs -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avm_cs -avma1_cs -avmfritz -ax25 -ax88179_178a -axnet_cs -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1pci -b1pcmcia -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_epp -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-keypad -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcma-hcd -bcmsysport -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluecard_cs -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpck6 -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt3c_cs -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btuart_cs -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -caam -caam_jr -caamalg -caamhash -caamrng -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -cap11xx -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_das16_cs -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipone_icn8318 -chipreg -chnl_net -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -clip -clk-cdce706 -clk-cdce925 -clk-max77686 -clk-max77802 -clk-palmas -clk-pwm -clk-rk808 -clk-s2mps11 -clk-si514 -clk-si5351 -clk-si570 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cm4000_cs -cm4040_cs -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -colibri-vf50-ts -com20020 -com20020-pci -com20020_cs -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_isadma -comedi_parport -comedi_pci -comedi_pcmcia -comedi_test -comedi_usb -comm -configfs -contec_pci_dio -cordic -core -cp210x -cpia2 -cpm_uart -cpsw_ale -cpu-notifier-error-inject -cramfs -crc-ccitt -crc-itu-t -crc32 -crc7 -crc8 -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -csiostor -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_cs -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -ddbridge -de2104x -de4x5 -decnet -deflate -defxx -denali -denali_dt -denali_pci -des_generic -designware_i2s -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9601 -dmfe -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -donauboe -dp83848 -dp83867 -dpt_i2o -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dtl1_cs -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc3 -dwc3-pci -dwc_eth_qos -dwmac-generic -dwmac-ipq806x -dwmac-lpc18xx -dwmac-meson -dwmac-rk -dwmac-socfpga -dwmac-sti -dwmac-sunxi -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -eata -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -echainiv -echo -edac_core -edt-ft5x06 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efs -egalax_ts -ehset -elan_i2c -elo -elsa_cs -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emac_arc -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_pcmcia -ems_usb -emu10k1-gp -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -eni -enic -epat -epia -epic100 -eql -esas2r -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f75375s -f81232 -fakelb -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_cs -fdp -fdp_i2c -fealnx -ff-memless -firedtv -firestream -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fl512 -flexcan -flexfb -floppy -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -fmvj18x_cs -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fs_enet -fsa9480 -fscache -fsl-corenet-cf -fsl-diu-fb -fsl-edma -fsl_elbc_nand -fsl_hypervisor -fsl_ifc_nand -fsl_lpuart -fsl_pq_mdio -fsl_qe_udc -fsl_upm -fsl_usb2_udc -fsldma -ft6236 -ftdi-elan -ftdi_sio -ftl -fujitsu_ts -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcm -gdmtty -gdmulte -gdmwm -gdth -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -gf128mul -gf2k -gfs2 -ghash-generic -gianfar_driver -gianfar_ptp -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -gluebi -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-addr-flash -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-amd8111 -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-fan -gpio-generic -gpio-grgpio -gpio-ir-recv -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-rdc321x -gpio-regulator -gpio-syscon -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gpio_wdt -gr_udc -grace -grcan -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gxt4500 -hackrf -hamachi -hampshire -hanwang -hci -hci_uart -hci_vhci -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hi6421-pmic-core -hi6421-regulator -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hih6130 -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi504_nand -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horizon -horus3a -hostap -hostap_cs -hostap_pci -hostap_plx -hp100 -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -hsu_dma -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hwa-hc -hwa-rc -hwmon-vid -hx8357 -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-cbus-gpio -i2c-cpm -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-emev2 -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-mpc -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-reg -i2c-nforce2 -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-rk3x -i2c-robotfuzz-osif -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i40e -i40evf -i5k_amb -i6300esb -i740fb -i82092 -ib_addr -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibmaem -ibmpex -icp_multi -icplus -ics932s401 -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_gen2 -idtcps -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -ims-pcu -imx074 -imx6ul_tsc -imx_thermal -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int51x1 -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipwireless -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irtty-sir -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it913x -itd1000 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -kafs -kalmia -kaweth -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks0127 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan78xx -lanai -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-adp5520 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-ktd2692 -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_cs -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -litelink-sir -lkkbd -ll_temac -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lmc -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac_hid -macb -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mailbox-test -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max5821 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77686 -max77693 -max77693-haptic -max77693_charger -max77802 -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -md5-ppc -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-gpio -mdio-mux -mdio-mux-gpio -mdio-mux-mmioreg -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -metro-usb -metronomefb -mf6x4 -mga -michael_mic -micrel -microchip -microread -microread_i2c -microtek -mii -mii-bitbang -minix -mip6 -mite -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_block -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpc85xx_edac -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi001 -msi2500 -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mv643xx_eth -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxser -mxuport -myri10ge -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nand -nand_bch -nand_ecc -nand_ids -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -ncpfs -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_daq_700 -ni_daq_dio24 -ni_labpc -ni_labpc_common -ni_labpc_cs -ni_labpc_isadma -ni_labpc_pci -ni_mio_cs -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicstar -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nmclan_cs -nosy -notifier-error-inject -nouveau -nozomi -nps_enet -ns558 -ns83820 -nsc-ircc -nsp32 -nsp_cs -ntb -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nvidiafb -nvme -nvmem_core -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_xilinx_wdt -ofpart -old_belkin-sir -omap4-keypad -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_cs -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -palmas-pwrbutton -palmas-regulator -pandora_bl -panel -panel-lg-lg4573 -panel-samsung-ld9040 -panel-samsung-s6e8aa0 -panel-sharp-lq101r1sx01 -panel-simple -parade-ps8622 -paride -parkbd -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pcmcia -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pc300too -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia -pcmcia_core -pcmcia_rsrc -pcmciamtd -pcmda12 -pcmmio -pcmuio -pcnet32 -pcnet_cs -pcrypt -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc_adma -peak_pci -peak_pcmcia -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-tahvo -phy-tusb1210 -physmap -physmap_of -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pn533 -pn544 -pn544_i2c -pn_pep -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_core -pps_parport -pptp -prism2_usb -ps2mult -psmouse -psnap -pt -ptp -pulsedlight-lidar-lite-v2 -pvrusb2 -pwc -pwm-atmel-hlcdc -pwm-beeper -pwm-fan -pwm-fsl-ftm -pwm-lp3943 -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa27x_udc -qcaspi -qcaux -qcom-spmi-iadc -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom_spmi-regulator -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qlogic_cs -qlogicfas408 -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qoriq-cpufreq -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quatech_daqp_cs -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -ray_cs -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio-scan -rio500 -rionet -rivafb -rj54n1cb0c -rk808 -rk808-regulator -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-as3722 -rtc-bq32k -rtc-bq4802 -rtc-cmos -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-generic -rtc-hid-sensor-time -rtc-hym8563 -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max77686 -rtc-max77802 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-r9701 -rtc-rc5t583 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-snvs -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtc_cmos_setup -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -salsa20_generic -samsung-keypad -samsung-sxgbe -sata_fsl -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sbp_target -sbs-battery -sc16is7xx -sc92031 -sca3000 -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -sdhci -sdhci-of-arasan -sdhci-of-at91 -sdhci-of-esdhc -sdhci-of-hlwd -sdhci-pci -sdhci-pltfm -sdhci_f_sdh30 -sdio_uart -sdricoh_cs -sedlbauer_cs -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serial_cs -serio_raw -sermouse -serpent_generic -serport -ses -sfc -sgy_cts1000 -sh_veu -sha1-powerpc -shark2 -shpchp -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sis -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -sl811_cs -slcan -slip -slram -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smc91c92_cs -smipcie -smm665 -smsc -smsc-ircc2 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4117 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-als4000 -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pcxhr -snd-pdaudiocf -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-sb-common -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-imx-audmux -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rt5631 -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-usx2y -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-vxpocket -snd-ymfpci -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -softing_cs -solo6x10 -solos-pci -sony-btf-mpx -soundcore -sp2 -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -spectrum_cs -speedfax -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-nor -spi-oc-tiny -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-sc18is602 -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spmi -sr9700 -sr9800 -ssb -ssb-hcd -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -ssu100 -st -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stmmac -stmmac-platform -stmpe-keypad -stmpe-ts -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -svgalib -sx8 -sx8654 -sx9500 -sym53c500_cs -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink -synclink_cs -synclink_gt -synclinkmp -sysv -t1pci -t5403 -talitos -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc3589x-keypad -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teles_cs -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -thmc50 -thunderbolt -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -torture -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_atmel -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish_common -twofish_generic -typhoon -u132-hcd -uPD98402 -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udc-xilinx -udf -udl -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_fsl_elbc_gpcm -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -us5182d -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vcan -vcnl4000 -ves1820 -ves1x93 -veth -vf610_adc -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-ircc -via-rhine -via-sdmmc -via-velocity -via686a -videobuf-core -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videocodec -videodev -vim2m -viperboard -viperboard_adc -virt-dma -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -vitesse -vivid -vlsi_ir -vmac -vme_ca91cx42 -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vsock -vsxxxaa -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83781d -w83791d -w83792d -w83793 -w83795 -w83977af_ir -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wbsd -wcn36xx -wd719x -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -windfarm_core -wire -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wl3501_cs -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xc4000 -xc5000 -xcbc -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xhci-plat-hcd -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx_emaclite -xilinx_ps2 -xilinx_uartps -xillybus_core -xillybus_of -xillybus_pcie -xirc2ps_cs -xircom_cb -xor -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yenta_socket -yurex -zatm -zaurus -zd1201 -zd1211rw -zforce_ts -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx -zram -zynq-fpga reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc-smp +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc-smp @@ -1,17106 +0,0 @@ -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0xa8cfd13e mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0x5e0b0b9c suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0x21e0b8b2 uPD98402_init -EXPORT_SYMBOL drivers/bcma/bcma 0x49dba867 bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0x8fd17214 bcma_core_dma_translation -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x29fefcc3 pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x304989be paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x355efce7 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0x35d60b3b pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x38424542 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x7ad35c7d pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x8c54fbcc paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0xb1011532 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xb4e9f7c1 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0xd3d15923 pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xdba353d9 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xdc1c941c pi_do_claimed -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x1ba69a9b btbcm_patchram -EXPORT_SYMBOL drivers/char/apm-emulation 0x129e74f2 apm_get_power_status -EXPORT_SYMBOL drivers/char/apm-emulation 0xdf3329b8 apm_queue_event -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7116d290 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8a28268c ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9f663b72 ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa9ee0bb1 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe70dd133 ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2011b177 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x3eb76363 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x5a92c590 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x61a61da5 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x044844e0 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x94f42a8b xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xf538f50d xillybus_init_endpoint -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x47e3f71e dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x4f68f0c0 dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x950689eb dw_dma_get_src_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xaa019878 dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xdccc64d8 dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe6e017d3 dw_dma_cyclic_start -EXPORT_SYMBOL drivers/edac/edac_core 0xba0c95b9 edac_mc_find -EXPORT_SYMBOL drivers/firewire/firewire-core 0x03af8d77 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x07d50a8c fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x10606589 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x11e8a967 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x21abf743 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x346999ff fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4a940dba fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4b3954d5 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5cbaca18 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6961d781 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6c14886d fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6d013af8 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x705f3109 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x70601db1 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7413e7f1 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x87b4672f fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9f1e82f7 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaf9cf506 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb04a5092 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbd222873 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbda49d70 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc700073b fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe978f29d fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xed2620a5 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf607b766 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf6a59b4a fw_schedule_bus_reset -EXPORT_SYMBOL drivers/fmc/fmc 0x36c372be fmc_driver_register -EXPORT_SYMBOL drivers/fmc/fmc 0x439ce651 fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x55a5b925 fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x71395d69 fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0x753daab8 fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x783684ea fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x9add5cc6 fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0xa1661545 fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0xe1537b3b fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0xebff255d fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xff94fb65 fmc_device_register_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00eb9773 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01526cec drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x016ecf8b drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x018b245a drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x039c18c7 drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04543876 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05c1a878 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08586457 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08800dfa drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09816511 drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09ad95b2 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a89be7f drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ba6d707 drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ce1fd7a drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d97de54 drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dd99e5b drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f0b61a9 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f3ecf09 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1071b138 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x122ab803 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x126e0009 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12990038 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x132926d5 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1588eb6d drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15911c8c drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x164a9edc drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x176c2658 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17c26256 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e29ee0 drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18137e74 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18835d2b drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19965431 drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a4495d7 drm_legacy_addbufs_agp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1aab9b34 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c163766 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d9615de drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd9d1fa drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ec205b6 drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ece7ad5 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2063fc2e drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x224350a5 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x228c4674 drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2505158b drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x252e9f73 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2541a705 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x260b5f3c drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2616dd30 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x261beb51 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26bd28df drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27033be2 drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2756e2da drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aa1c05e drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b81ae73 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d57c380 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e0e5b03 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ee74db6 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f569507 drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x300cc62a drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30517614 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30e96f68 drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x311f2978 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3253a9f4 drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x331dab3d drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33409159 drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34c8a32b drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35e3ec5f drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35e57da6 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x361c0b3f drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0x379a9a72 drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d6cafb drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x389c015f drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38bd6784 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x393fc7d8 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a19ba1b drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d5ccefe drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d8283c8 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d9f69f4 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3df0805e drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e8799ce drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4093628b drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42f21018 drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x430bd676 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x431d8e6f drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x443f658e drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44772fb1 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46559db8 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46757c83 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x475e0ea5 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x486a6490 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x489be956 drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48bdaa38 drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48c141be drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4947ed47 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a1a1f6b drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b379e99 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bdbb056 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c799d2f drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d803561 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50ae2108 drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51682ded drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51da6807 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521899fd drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x532fe010 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53ac6c66 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5491d11f drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54e2200e drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x576e32ae drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58961d8d drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a268d54 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ad38dba drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b5a8d83 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cf3812c drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d865671 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e49a12d drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ef89ff1 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f05bd4d drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60731d6a of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61e09e06 drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6282dea2 drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x630ea75f drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x656a06e0 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6628ef6c drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x685ed55b drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x686fe5b0 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68f60d2b drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a08f241 drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bd5a3a6 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c9f4668 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e008b6f drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70c31756 drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7162c1e3 drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7294ed4d drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76adaca1 drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76b1012f drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76cc780f drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a9c9bb5 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e90081d drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8075618b drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80f03d6c drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81d5d9be of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82ff02e5 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x860b8aa5 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86bef0b7 drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86f381a0 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87c7f5d6 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a3e230c drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8af33a7f drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b2232d4 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b9d01d4 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ce51fc7 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8db0df4f drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90769c45 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90d4503b drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91ae50f3 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x920c449e drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93ae9582 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93ef855d drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9476ae88 drm_agp_bind_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97ce2d01 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98179b93 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99a7194b drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c015996 drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c29af72 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d3d7720 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d567e1f drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ea68098 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f28689e drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa02938ad drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa05a434f drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0a81236 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2174f03 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa295859f drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33193fd drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa335d2d8 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3e3f79a drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa54f6e34 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa72401c9 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7bb19cd drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa843b8b1 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa85f8cd8 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa967535d drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab227727 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac86fc51 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad355dc4 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xada38bfb drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadd54a2d drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae377d30 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae452d6d drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaedcaf53 drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf9d7937 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb07d056c drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1020cb9 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb166ba63 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb20cd26c drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2d4a330 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4863fae drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb657a78a drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb75a34ad drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb78ae5f3 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb79e8e80 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bd6efc drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8deafc2 drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbae937ca drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb5dd223 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc424d90 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbca59d56 drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdfd56da drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbec62e36 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfe988dd drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc03ebe0a drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc09d2156 drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc255922b drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc32678c0 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc46ce141 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc494dc6d drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5170209 drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc76681e7 drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7673406 drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7dd9798 drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc979f333 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9cc5cda drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb536fc2 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbb5b53f drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc78f490 drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcddad599 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce5834f4 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcef06a27 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf19517a drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd03e1111 drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd04a9e93 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd068ed11 drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0c4a7e1 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2422725 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2c79434 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2d9217d drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4b5eab1 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4dafc61 drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd84ed423 drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd852121b drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda066db5 drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc80028d drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd6d12a8 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddc97ca2 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf4c4cfb drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe137cabe drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe17da843 drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe30e88d8 drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe31065a6 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe32a287e drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe33abd1c drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe360d3b2 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3679205 drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe400c1b1 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4345b9d drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe49dafac drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5643777 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5e95fd3 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe60827f1 drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe85e60bf drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8ba4a31 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8e12c94 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe95b2b58 drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9665599 drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaf82fbb drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb87c5ef drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec035ab0 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec05a824 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec3fb11c drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee1f1024 drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee7dec66 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xefaf35fe drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf09f291e drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf30d971f drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3ea3df5 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf493cad4 drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6c96ed5 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7b91aee drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8935289 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfac6f1e9 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfba18495 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc4af8b3 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfffbecd7 drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0046d90f drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0053c1c9 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c9d739 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02cdcd7c drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x047c6f33 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04a1615b __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04c688bc drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x064609fa drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09af865a drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a52a108 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b93e5b7 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b9f1c45 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bf2683a drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0da42792 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ef211ed drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f30bfe5 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x108179ce drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1373bf34 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1383d287 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13e142c6 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15094ece drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1566b23c drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19e9f457 drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a53c26e drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d26355f drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e98e0ea drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ef3e0c2 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f9902f8 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25103320 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x265af4da drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29a1a868 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2aba8a63 drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bd9203e drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c46f8dc drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x300266dd drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3098bc8a drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x315eb69f drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x352ccf1c drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x388f1f07 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b677977 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3da674db drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e20283f drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ec38f2c drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f3e2bee drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x411d8c9e drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42253ad8 drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43faba7b drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45b41bcb drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45efa9d7 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48cb88eb drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4990a50c drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49b231f5 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a594770 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e6d5c6c drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fe6ad41 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52ee4878 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x532457d2 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5716ee2d drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ba96e5d drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e92dcab drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6069ebf8 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6076125e drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63a0dffd drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64cc07f3 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x652d8ba5 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65515310 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x672721e8 drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6818c3df drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68df1922 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a247e17 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fb1e7e9 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x700ca305 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711d97eb drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73b04296 drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77162fe9 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78ffeca3 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b6aed22 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bc86a9b drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cab15ec drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f13a5dc drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fb1728f drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81112aa9 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8248d4cf drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83108861 drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85a4d57d drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85f9893d drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86e0e4a9 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86e66d3a drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8722fcb2 drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87333994 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88bd557d drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x890938a8 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d53dc7b drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f881211 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91a9ed89 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94fd4993 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95fe50e3 drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9724d9ba drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b92da8a drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e3afebe drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2faaa1f drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9a3d1e2 drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9e5b90b drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaf4534d drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabdb89e8 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3b10400 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8ae64ac drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb95dc791 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba400c80 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbec878e3 drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf1d36fa drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3dab5bf drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4906f2b drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc604c475 drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6efc861 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7bb5ad5 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc868cfab drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbdb695d drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce98a1a2 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf409b10 drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7439656 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd92396b8 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda87a8e2 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcf29883 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdeab6f37 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfdf12e0 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0879346 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe172f01c drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1a13b38 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe83b94e7 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebc35058 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecd9f1c5 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedf428d2 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0cfd779 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf132ffbf drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf17f15b5 drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf21f4f52 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf24e9926 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ee8343 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4bcf453 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf82c8e6e drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbaded6b drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x04da80ee ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05e550d5 ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x062fe0ee ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a1d6ffc ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13c4fe71 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d3a013e ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1daeff25 ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20060d98 ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20072287 ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2293cbcc ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x238cd3d0 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25c461ac ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2626df5a ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x340f172f ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c6472b1 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ea02b72 ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4215724f ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48826bac ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a4c05a0 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f77ca1e ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x52af543e ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x533cf084 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x546eb157 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x547de248 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b599916 ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6814de70 ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c012161 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e1fd020 ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70b4772c ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x730dca8b ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73d02ec1 ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x785dc03e ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7c4b4ff5 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x807a0d95 ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x817e6b63 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8833cb0f ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8cc208c8 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8dfd0715 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9645138a ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9694deeb ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99633a83 ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba79f8ff ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe312ad5 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc45aa874 ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc46049ff ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc48a41f5 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4936a35 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc571405c ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcbb73422 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf36d102 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd692aff5 ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdce3a3cf ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1e92458 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3820df1 ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa52d445 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfac14a06 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x09300e1a i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x46401967 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xa8d4c4ad i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x7508e0b5 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xeea7f362 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xb3d4d818 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0086984a mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x124494df mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1a854cdd mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x234dd0c9 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5793a77a mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x72300cdb mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x74b4006a mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7807c0dd mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7f9b28ca mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8345377b mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8bb8fe30 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x95a835ae mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9dc7e583 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd5d33b5a mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xef39844c mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfb2d6342 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x39709b29 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xcd225a4e st_accel_common_probe -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x595af9fe iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x5a2c9a3a iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x019f7e24 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x052ca146 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5f82f2aa iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x72c2e953 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x17828506 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x2a545e58 hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x38c1b3c4 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x586d662e hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x61a1d982 hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x9bbe814f hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x0d4ff815 hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x5ac86a30 hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xda0643c4 hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xebbc541e hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x01118dc5 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x15122980 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1519f9d6 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1969a977 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2b9a90eb ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3d920e96 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6bcf4792 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xdc1988ab ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf0b7d6a7 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x3bb11ed6 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb3e2906e ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xc6743ad6 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xcd72142d ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xeacbc386 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x3c2c8016 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x5307f5c2 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xcf27ef92 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x081329e8 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x15d69531 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1bf1ac15 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1ee8857c st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x23ece8e9 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2574e31c st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x29d6c40b st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3856b938 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5d2b797d st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x635fc7ef st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x660ce052 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x67efe126 st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6fc48bbd st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x826dcd4b st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9125259e st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x940c90e6 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcc001f16 st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x8f825604 st_sensors_of_i2c_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xa5e61150 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xc4630f54 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x9731d58a st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xa0ea2adc st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xde9ba360 hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x8dc3600f adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x9488666b adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/industrialio 0x0c6877ae iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x19f12b93 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x1a6be0b8 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x2c944d4a iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x2d969ec6 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x36888d8b iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x40ca0f35 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x45749962 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x4b7a4f1b iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x53db87f0 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x5a856f5a iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x7618868a iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x781c351e iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x8e61aefa iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xbef9ed99 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0xc1850e6f iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xfd82aa0c iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x09dfa086 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x754aa08f iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x0e6a9bee st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xf2f5f4df st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x819092cf ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x21d1a0d5 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xdb5ed199 st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1ea5767b rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x32a8402c rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x617528b8 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xd244d39d rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xea0144c9 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xea06186c rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x037f3787 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0498c93c ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0bf8d338 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0c078f00 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2d9361d0 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x32ffe38e ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6568dda3 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x73ed0b86 cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8a90c7a0 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa14f3c17 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xadfbf5ad ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb89afa35 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc8ad7e6b ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd5b3daa8 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xda40b59d ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe523c58d ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf877d8d1 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf8a2b6c3 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0631d7af ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ce874da ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1030eb67 ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11e5c9f0 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19d02f9d ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bfedffa ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ce14b66 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f822b97 ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x200208b6 ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x203937f9 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2084d88c ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26cc232a ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x295561cd ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fa19101 ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x344b90a0 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34580940 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3882c594 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40b23c15 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42c915b7 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4348b7b0 ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x442b6995 ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44ca3d30 ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44db1045 ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48f0f4ba ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ca837a2 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4daf6627 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x537a7f10 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54fc4c51 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c3620e8 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f3b916b ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60ab1d68 ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b7bc1ac ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6efa0e22 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72f470fd ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74fec50a ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a8c1cb9 ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cc1d643 ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8454db42 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8515f9c1 ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88c12dbd ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89db17dd ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b0515b0 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ca87c07 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90d6f467 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91fa087e ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93cedd6b ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a45cf90 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c461fc3 ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dc7578f ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fbdc2e8 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fecb98b ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa158f45e ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3345ef3 ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaeeaef3f ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf0bc30d ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf8b76f4 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2a5c5e3 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3106919 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb49a8e14 ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4d724d3 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5cd9fad ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7d188ce ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb88aea70 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93fc0a6 ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbe2947d ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe0f7675 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc022760a ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2e04fcb ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6528732 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8fc52a0 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda8eeb0a ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe13da455 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe37a469f ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3b12480 ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5708da7 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8c37e16 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec2f9a7e ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5da0d28 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf764073a ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf821e17b ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9385f37 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfea4c8e9 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff6465e0 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1793506e ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1d3ae6a5 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x42327eaa ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x432e1f4b ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4574a5fe ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5f473628 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6e678932 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7dab1e8c ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8740edd0 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8b065c3b ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc7a39be2 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe926ea8f ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf5ec178f ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x32b0a7c8 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x77c6aa1e ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x879d9b07 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x88e819ee ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x96c69819 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa6469cac ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa8f921ea ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xaed99867 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc2fec03a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x27ce3e3c ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x948c0c4b ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x013d2169 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0d1cc2fe iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x31adc0a8 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3481c540 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3d42933d iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3eb7910b iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x42f12ecc iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4b1946ea iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x66da2f03 iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa0e84551 iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb0f8cb35 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xec9d540d iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf34e9f31 iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfd6f2691 iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xff36a33a iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x039d9af8 rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ac7bac0 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x10af1894 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x14229cb8 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19f5582e rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2fc57ea6 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x310fd654 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3e4faa53 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x497797f0 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x535f9eac rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x55c433e6 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7ba44dcc rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x876ef957 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa25f50df rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa5dcbfb3 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xab2cd2bd rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb1b2dede rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb5186d54 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd80ad1be rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe9ef3b3d rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfae94e7b rdma_accept -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1e7bbaba gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2ee877fb gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3d7e073e gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x44629d8b __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x687b6f6a gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x9ffbd652 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xac98ff00 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xc0d0a3fc __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xfc55e4a6 gameport_close -EXPORT_SYMBOL drivers/input/input-polldev 0x5eb6dfbb devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x62abce6d input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x685b4ae6 input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x7cc4cbf7 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xbf1cd4f6 input_free_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x875f97af matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x1e80bd0b ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x49c64dd4 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x9029bf4a ad714x_disable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x12f67bed cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x01d4e257 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x29cd0660 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x72555ca6 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xbc71ea39 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xc2455835 sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0xf55ce2bb sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7920df34 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x9eb07d44 ad7879_probe -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1cd9a357 capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1ee650d0 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2420b139 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x27ed3528 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x36d26781 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x663a2c17 capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x68056bda attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71bf7238 capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc5420cb4 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd066fd45 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1a0b5b7e b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x218c43e6 b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x37d15098 b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3ce43a0a b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4070bf07 b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x54a244b4 avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x775094e0 b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7ef65bbc b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x95878bdb b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa89d4a40 avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa8dd63b6 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb0f0ff40 b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb3972a5e b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe08c8639 b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe6aa19bb b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x1aa38a52 b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x450721c0 b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6b9f9721 b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7068cb96 b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x91d39964 b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb3777ecb b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd234484e b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd8500553 b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xdf2bcddd t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x56878c84 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x6d49185b mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x74038466 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xaedf19ff mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x161ccfbd mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x62600a6c mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x94671706 hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x377c0392 isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x9d00331d isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xbfbd9406 isacsx_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xd6f8dcfe isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xdec3d36a isac_init -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x201efeb4 register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x3623b6a6 isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xca6cd489 isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x13cc3f2a mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1577c899 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x27ccac86 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2f92c9db mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ac39d10 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x569ca0e7 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5da6e34a recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x72b1ccfb mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a1d8552 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9b7215a7 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9dd6ae0d mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa0365e50 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa294f757 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa3030fe2 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa8819f49 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb2098d43 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc7a682ef get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc87a8b6d dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcd769131 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5c21de4 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xebb4d62e recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf69db387 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfe45dcdf recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x0c4d0956 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0x15f5d031 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x562548da closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x82eda3b8 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc0b9ef00 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe4b49fdf closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe67c2d16 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-log 0x1cc33576 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x644b4c40 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x7f10f4be dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xa97b3726 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x04793551 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x0ff09e86 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xad685a6d dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd483090c dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xe52cfb89 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xf5045165 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/raid456 0xae2a4a49 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0ecdf560 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x13920412 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1a5a00f1 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x26745d5d flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x592a783d flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x67c535be flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x760d4cfd flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x78970c03 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x79799a9f flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb3b832f9 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc4309b03 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcb3f7eae flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd1bd1795 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/cx2341x 0x073856a4 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0xba7b4ac7 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc8d8c2cc cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xd79ce117 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xaaf556c4 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x0d6a295c tveeprom_read -EXPORT_SYMBOL drivers/media/common/tveeprom 0xee069a3a tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0a9bef39 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x19591134 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x200c759e dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x22d6ce4a dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28ee2ae8 dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3abe9eba dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f7224d5 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4240aaa7 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x440cbdc2 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x44aa1f51 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d3b9a9c dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x532cf04d dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6312a121 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6427f9fc dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x65886421 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6657a7d4 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x76489abe dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78d62338 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7ba5d8bd dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7c5b836f dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x86b5cacd dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e47dce5 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9dde17f7 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbffe2e45 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc776d01f dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xca849d5f dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd1a0469c dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd3ad0aef dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb576668 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xde75f5ec dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdff85e60 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe2ec8277 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xef0da71a dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf99e8970 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfbc2ed80 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfca975ac dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfd9bba12 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xff62fd0b dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x5f38fee2 af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x579e23ef ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x8d22c5ff atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x10f28360 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x18b729ee au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4b5f8c71 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x61f1630c au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa5f16e60 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbceefa7e au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc46b656b au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc6c2fbbd au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdd4885a9 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x482d8b71 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x4a86535a bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x3a7a8c38 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x508ffc1a cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xf5e340e4 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x4b62f9b7 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xa78e3d92 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x0fc4a2b5 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x7c9a2506 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x0e57ca20 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xaff3243b cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xd5a8de90 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x4f2699fa cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x5d74aae2 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xb737c056 cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x063717c8 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3b29c41f dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3bb8b199 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa940b65f dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xbdf88851 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x12ef8a56 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x16bd74ad dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x232ab904 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x461bb7e8 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x47ccef9d dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4fa6ae40 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x59290e6a dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x705058c3 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9aef36f9 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc66bdeae dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc831565c dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd68923d6 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd8097638 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe0e31af6 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe8b4eb78 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xd18182ca dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1c15d404 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2c210cb8 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x82c3e1f1 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa7ce90c2 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xae9089e7 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xea3e58e5 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x088ff522 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x2bcc24b3 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xace1f957 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xafb155b4 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xd0157b47 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x98a55a22 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x567973d0 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x92e103eb dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc20b4ef9 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc9f4f273 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf731ef38 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x0f1ef50a drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x7467d77c drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xee56d306 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x75536a25 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x698eaf97 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x66c2c458 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x6f0c0a96 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x4c7bfd9e isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x965bef8f isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x08b05ba5 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xfa0a1622 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x53e09318 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xbc757c97 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x0d32a28b lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xa2e562ff lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x3d1ff470 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xa44130be lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x2b3af399 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x39e55967 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x0676e084 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x6572cbe2 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x2891d6a9 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x1d3d90a2 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xf57b0de5 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x3db9def2 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x549a7e05 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xd3d0c9ba mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x47b3f5dc mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x3b7a8321 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xec324c1b nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xd4c983ec nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x57ecbc2e or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x055c6425 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xe754b0f0 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xf59133dc s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x0762dbfe s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x15143a8c s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x8cb35659 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xdb65802d si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xefd89ec5 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x9cd9294e sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xcf6ceb8f sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x7b38af2e stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x1df3e655 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xc599c115 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xf3d7300b stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xeab8178c stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xb68c0191 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x34299ebd stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x3770a6a7 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x33c86536 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xf7c9ff4d stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x3b2f590f stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x0c14c8c1 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xfb09ffdb tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x17d9f975 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x7279c1af tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x8085cde3 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xb490658b tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xdd00f98b tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x3f460ae9 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x57c08c64 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x240b5aa9 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x6937acf0 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xedad8745 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xd6397b94 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x5b4a5875 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xd229094d ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x548678e6 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x6f67b5bd zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x46ba9f11 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0d8e70d9 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0ee5be31 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x304694b1 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3f3ce4d1 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x69a451c0 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8a9c3361 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa9ddbf20 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x6eb84ff6 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9f10db1b bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb772fedf bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd82cdddd bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x1b1eb371 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x22ebc48c bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x689adccc bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x36604c0b rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x61ebf150 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6a95dcca dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa931da27 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb356aeab dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd055be72 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xda790cd8 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdd403cae dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe153a589 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x72569ca3 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x33e6981e cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6b05e9f5 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x73ced074 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa12c4cc4 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc670df0b cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xea7a5708 altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0d70d320 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1c7a5083 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x579ba79c cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa0cc9999 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf37a736c cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf4dbf2cd cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xfc03da5a cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x9cb2ef1e vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xa28ca200 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x0ed5ca50 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x4d16718e cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8e2161ea cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf86f4bab cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x45bb3284 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4c26a911 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8db39698 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x964976ed cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe1b79310 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf68fff44 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfe133446 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x08f66003 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0d6100d3 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1cd8e567 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2079dd91 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2c012b0c cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x32dc92c6 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x45790ae9 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4644bb2c cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x54554de0 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x76c85dd4 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x79196b4e cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7db3c140 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x80a0fc4a cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x86eebb01 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb460d179 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xba69122b cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc94e55a0 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc9db4887 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcc869229 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd4171120 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0175f4c7 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0f67b717 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x35d16472 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x38eefb3d ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x50a0f8d1 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7523c000 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9630c2d1 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9995fa23 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb62205a5 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xba8e0e4a ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbb4e4549 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc68d2d9f ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xca97129b ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xca9c6e09 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdaa8cb30 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfa20dbb1 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xff2b4611 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x03966391 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x33020b77 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x35c28bc7 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x36144b81 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3edb3ee0 saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x44d91a8d saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4d6b485b saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8356850c saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa729bc24 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaadc0e68 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe5b4bfd6 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf5491d42 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x29a16393 ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x09fc590c videocodec_attach -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x801c12b9 videocodec_unregister -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x8bad0cf6 videocodec_register -EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x9c366670 videocodec_detach -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x86d23270 soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x873a4fb6 soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x8b2de211 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x8c1c2065 soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa746a974 soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb1888365 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xeeb54d43 soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x21d43bcc snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x4bf279cc snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5f55b7df snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x7de196f1 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0xbc781565 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd07f1662 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xe503e4b5 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x13076c2c lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x30a4d0ae lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa229fb5f lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xac125b52 lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xd0f291a6 lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xd74aeead lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xdb7e04de lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xece5ee04 lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/rc-core 0x9a7b6da4 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0xf5d04eef ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x99416f30 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x3e988227 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x538483c1 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x8a488b96 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x92ea31cf fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0x7f7ac03f max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x657dc536 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x3e068877 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x064e3f52 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x42e24fde mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xddab6aae mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x3b4d4cf4 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xaa0a4196 tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xdc6ce380 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xc92b6df2 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0xaf840127 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x70ee6b0d cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc4cd511b cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2c0f5bc8 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x32bfbaad dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x43027553 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x446a1579 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5167cc96 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x964b4149 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xadcf68c9 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb9ac8c47 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdd631f6b dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x265ec6df dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5ed3b91a dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x82e709b7 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x84c8aece dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc290bbbe usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc70e8b42 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xee7744c0 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x2a4e209b af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2f0256ea dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2f076990 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3b78c670 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5f1a5501 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7e8ee5d5 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x88c88388 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb1c862bb dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc44601fb dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcd6ebb90 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe3a67e30 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfc5ec8c1 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x6749b4f5 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x9697a1c8 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x17b491ea go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2737940e go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2905034b go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x37bdc313 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x56d2da93 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa3c837e9 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xad80eff5 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc3a25e01 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdd6546fb go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x30d0e296 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3536d82e gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5f0429d3 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9f77d912 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb3df5bc7 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc0f806d6 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcf56e0c9 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd79f22fc gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x82e94e85 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xa2260bdf tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf920f35a tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x8f2e61f0 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xa4e9603a ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xbc62f930 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xd5e98159 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xec766b2f v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x3b4f46f1 videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x3bed1824 videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x60f4cdb3 videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x71f237c4 videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x765d1b6a videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xcf1270b5 videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x5412ded4 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xd67129f1 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x0f2adbb6 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x16ba7449 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x8a296cb7 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x9f887cda vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xe04997b8 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xff510bef vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x1723d762 vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x07d7581c v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a2fea82 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a67ac4b v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x146a3454 v4l2_of_alloc_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d9eec28 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x26ccc8e0 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28f6f82a v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2acffd9a v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c2bbebd v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31a5d868 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31bd7044 v4l2_of_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x321538a0 v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32aa5877 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32f1be45 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3316745b __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3d57cb26 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4775f473 v4l2_of_parse_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a4ed459 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b3f4716 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d9da842 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5018c2a0 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52fe4229 v4l2_of_put_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x530fc537 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5605ce20 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58c0d440 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59ee2726 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c4e0037 v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5e9f3a5b v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60f4006b v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6328a29b v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6618ed47 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69897a92 video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7359c338 v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7359cb6f __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7adb8fd2 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b1c7293 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c1f2665 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e0ef09f v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ef7743a v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fe13417 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8062222f v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x81a95078 v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x90d8c31f video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa1e8dad7 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa59e3101 v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa7cff77e v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaad44c28 v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xabf82180 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xafc522bd v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb1330341 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb1e9aca0 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba0b854b v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbac4ae8b video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc855f07 v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe6b4e5d v4l2_of_free_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc0c4eb45 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcde00167 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd2e39dbd v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd4b2fb08 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd66eafae v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6e5392e v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdecc9105 v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe11b700d v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5dc1f94 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6968ecc v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe732d040 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeada232f v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeeaf6b71 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf2cdc03e v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf45e3072 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf5621d12 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf803ec5b v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfc34b3c6 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/memstick/core/memstick 0x39b59809 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5b5c17c8 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x829adf5f memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x897bed48 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8c9b5da4 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa29ee459 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xae4bfdf3 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xbbe01d56 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc0add04c memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd4baf157 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe86152aa memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xebc2fd2d memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xec87a2ed memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf758db85 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0686df9c mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0cbbc1c8 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0ee6e6e9 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x20c19913 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x25333cb4 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2baaef31 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x388fbb7e mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x39f4faad mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4d1a4dbd mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4f277a3b mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x57731664 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5d0140ab mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x61cf8639 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6858291f mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7b408697 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x813e8983 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x82166437 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x906625cf mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x914a0986 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x922606d6 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xae42b824 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb1f8e1b1 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb9722dc0 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc4e768ca mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd575d716 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd62543e5 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdb3558dd mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe62fac7f mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeb6cbb50 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0fd9bcf8 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x10240952 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2d61c569 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2ee43cc9 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2fe2f9bf mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x334327b7 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3cc41bc4 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3db999e1 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x423e6d6a mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x524577f8 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7b3b3def mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7d27a6bc mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x87a6e17e mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x88ab2b04 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8a66314d mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8ed3dd3a mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9538fd29 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa05a7ac6 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa829f46d mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xab2f4581 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaff9272e mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcad6757c mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdbb22f14 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe2f2ac75 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe3d715d7 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe5c22193 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf6e15ecc mptscsih_bus_reset -EXPORT_SYMBOL drivers/mfd/dln2 0x53a824a4 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x682c95a0 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xdeee930a dln2_transfer -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x3ef8b18f pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x6a3448cd pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0d9a1b74 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x212e1e2d mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6c1acb9c mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x70b86ed4 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x833b91db mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x84cd5104 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad8648ed mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc81fcf5f mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xce52c44f mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcf26341f mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf25e929a mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x6c76867b wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xc97a373b wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x17d1240d wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x25eb9f94 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x38d583c9 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xba899db9 wm1811_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x09f6659e ad_dpot_probe -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x702b7430 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x37cbc168 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x3c6b0e2d c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0xbac1380c c2port_device_register -EXPORT_SYMBOL drivers/misc/ioc4 0x67c8ccd5 ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0xe2886e10 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/tifm_core 0x1940be32 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x3f0cd07a tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x6dba8c50 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x7e6a62b8 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x886dc88e tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x9257b797 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xa1245115 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xa22b64f7 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xaa400602 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xbfab9e1f tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xeed05089 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0xf2c08c61 tifm_free_adapter -EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x8bc6d57f mmc_cleanup_queue -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x195d525f cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1aa48160 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x293f294c cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7cc5f928 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9a211a3c cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xca173321 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xeedd3364 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x264a710b register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x625d59ee unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa07d2265 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xaf9f8790 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xdb6caeb7 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xa6167879 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xf371e2b6 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x59dbed4c mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0xd7fd226a mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/denali 0x59e13ea5 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/denali 0xeff9f486 denali_init -EXPORT_SYMBOL drivers/mtd/nand/nand 0x681284bf nand_lock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x76594269 nand_scan_tail -EXPORT_SYMBOL drivers/mtd/nand/nand 0x7e28d0c5 nand_scan -EXPORT_SYMBOL drivers/mtd/nand/nand 0x894b32f1 nand_unlock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8d087a93 nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/nand 0x9c52d7cd nand_scan_ident -EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x85916b3d nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x93c649d4 nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xd9da3e86 nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xd49938e4 nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xf5120453 nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x6c095cd1 flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x9698618b onenand_scan_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xcf3709b1 onenand_default_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd15b8bbe onenand_addr -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x03382d4a arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1451e245 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x262bcf03 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x60a57906 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6183c669 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6453a676 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6ff4a10b alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x76e78248 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x859055b8 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa9903e0f arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x5904f31d com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6bee3a3b com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb1fc50d4 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5b97bc4e ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x61965cae ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x87c1e647 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x95ba72fa ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcf6eee11 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd8712547 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xde94041e __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xed6021f3 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf1879108 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfae83cc1 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x6149edd1 bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xdca9bc52 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x08e36392 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0b05e42c cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4dbe8698 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x514498cd cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x599044da cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5e5755c7 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5f18ba3e t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7c2d75d0 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x83db458b t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x91f2a8cf cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9c5c0049 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaaaf7300 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbda7795f cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd54b9251 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdc048030 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe1827c2c cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x076fbe28 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x08304fe7 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c26505c cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d505ec6 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1b78d03a cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x209b13ae t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x26f93a5c cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2fa71497 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x37a090c3 cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4059e1bf cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4956e81b cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5091585a cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5e73f103 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6542b9a7 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x690f0cc1 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6988ce11 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6c8afb26 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ce3ad3b cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9874d089 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d305c59 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa61b46c1 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa7394294 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaafbf9f7 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb7700992 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc12d0b60 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcf0a26fd cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd45f6cba cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd829fa30 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd9308a5d cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdbffac51 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe24305ad cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe33bb61b cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeb0f160e cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf5346df5 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x17e7699e vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x226a75ab vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5db9384d vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8bcdace1 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe0f2eca7 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xfbe8a5b8 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x60df8509 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x610a563f be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01943bac mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01e51368 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10617876 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11594f37 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12b42f96 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b5f0bef mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d8a7b25 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x348c70aa mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e1ad8de mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x463f0df6 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ffcdccf mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x547a29f8 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55b148a8 mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5755ccc1 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6044b7cb mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x655c98dd set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b58e2c8 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72019cc4 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7410c75f mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7752a9ca mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fe54094 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8136953b mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f8337f8 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95f838b0 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c1720b6 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa041974b mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa55f1111 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa4c4d63 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1c6c705 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb34604bc mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbae5cff0 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb6fee8d mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbda83bf1 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1c141c0 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8744a06 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5f3192b mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed2afe79 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7cdc589 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01165484 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07667822 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bc261dc mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f39c61a mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17c92064 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b3eb64b mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d013eac mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40daa128 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4abdc0dc mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c98d1bc mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e8da409 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50502de2 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x546874de mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54a4a852 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f691d43 mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6333fa4b mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67804d49 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x788bc025 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x821ab7b8 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82324a3c mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84d02ee7 mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91a75fc0 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9386c918 mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5d2df3f mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6bb3d1f mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc539f0a6 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc931f4de mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6a4cda6 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdde67fbb mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde4b8749 mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe18d1a92 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe369bccd mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5400610 mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec97955a mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecbbbd91 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4cf2c2e mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf70d3f5d mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa0d4324 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cb16084 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x58e335c6 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6a9d8ef1 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7bfb0529 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8c92142f mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc031ca7a mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd4f62d46 mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xc538eb2f qed_get_eth_ops -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x49c9e571 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x53275ccd hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x58034c04 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd263d735 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfe48d341 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x196ea9d7 sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3c35b8e4 sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6bb77039 irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7c8ae485 sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x84f853d2 irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x851c39ff sirdev_raw_read -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x863a457e sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa9561bff sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb1bfc081 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xce339119 sirdev_raw_write -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x0828a562 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x0cdc787d mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x503b5c6d mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x6e2d66f7 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x99d0c143 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0xdb996f1f mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0xf5b4cdb6 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0xfe86b455 mii_check_media -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xb7130257 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xf4e57ace alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x62930de6 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x656fbfe9 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x79086b44 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/vitesse 0xfdd4701d vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x0be4a037 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x5981fba8 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x9d4d8420 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x1c633b22 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x01f225ad team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x28474b62 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x3e94c922 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x4743bf4f team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x9f600f01 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xa771d606 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xcf9722f5 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xe65009ce team_modeop_port_enter -EXPORT_SYMBOL drivers/net/usb/usbnet 0x22089e20 cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/usb/usbnet 0x47698e88 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x554f7c30 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x7de31b72 usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x22f1c9cb hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0x42f26b85 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x5362228b detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x5f030a8c register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x8d5122c9 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x982abf64 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa2a55b1f unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa87e15a1 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb77dc82e hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd3467b1a hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe084d91b hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x6d877d06 i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/airo 0x22831f69 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0x8615edda init_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xfc6b3a94 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0e63b268 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2680d97b dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x57991a66 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x58f95cf9 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x62a3ebb6 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x837d2bb3 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x905ff0d1 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x93919c38 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9e85c666 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbee0c177 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe4331e8b ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xebc004cd ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x10b30a12 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x22a84b4b ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x36173d65 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x434c892c ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x47d2f9ae ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x660db388 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7317c99f ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x77da701f ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x960578ee ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x98e3b7b4 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa351cd92 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa5c89f33 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xacf9b93f ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb654fe46 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb6d0d18d ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3d637a8c ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3f087e39 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4b013feb ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x53557238 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x69d2ce1e ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7cda4aa2 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa1184c97 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa4acd3ed ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa517876c ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa827c796 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc945e642 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x01591fb1 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x08c7f2c8 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0a3969c0 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x143f1507 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1613f90b ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1ced402e ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x26e5d096 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4ce513ff ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6118df0b ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x72f39c4a ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8ec532ac ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa3a11cad ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaaffa8fe ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xabf5f1ae ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb750c4a9 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76500fe ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb9848a6d ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xce27e8bb ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdb189f88 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdbf4ec90 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdf3b7f1b ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xecbc0b81 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf1b14f6c ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01e21f6c ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05643a5e ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09d6e53c ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09e1692d ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0dbf127b ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f1089af ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11d4411a ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1319e038 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x134662c3 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x153a5113 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18e1d348 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19afa8f9 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a838606 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20870bf2 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x244c6cb2 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27420e4c ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2787d730 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29f8cc0c ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a0e454a ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e954a32 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f888e28 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x302873a8 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x326d3f3f ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x374004e0 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c304ef6 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d6755bb ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4153df13 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41e2ab36 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x441b2e78 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47157d97 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48b4dd87 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b26dd86 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c5b10e2 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4dfd23d0 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53a0bf7e ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54f34c6f ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x579bc1fb ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c308020 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d0c71e6 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f98a809 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65f728f8 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66601cc8 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67eb4ccf ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x686165fe ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b51b9cb ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d4badb0 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7060e1ec ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73c8f038 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78487b5a ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e612878 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f27d8dd ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f936df2 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80848a76 ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80c22106 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85eb66ad ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89adad62 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e6adde9 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94362a03 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x974bd96f ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98136bdb ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98244adc ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x994f9863 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9955bb40 ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x995b59cd ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9bea6438 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa528ef09 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa89361d5 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad7f9b06 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaffb63c4 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1a48c57 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb69da15f ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6e4176f ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb96517c3 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb5d41b3 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc0f8814 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd2a3bfc ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd645fe0 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdcb6a07 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc09a0dec ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc36c727d ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc82fc8e9 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcaf459f7 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc7d1a2e ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1541006 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1da1357 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5b3de78 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6754be7 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd70efd20 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7775ad4 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7ceb1c9 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0292f4d ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5ffdf2c ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7ae6254 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe82bd5d9 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebdf8e8b ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed9c203f ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeed184c5 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf206f931 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf246a160 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf47c6476 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf55bf79a ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf81bdc51 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9d12cbc ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfaaa665a ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe83c839 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0xab9054b4 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xe7099d57 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xf6088d85 atmel_open -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1e0f2340 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x259ecb6c brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2bd44c57 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f7877e7 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x458f755a brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x70dd67fe brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x87f38ca0 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc3b6d7bd brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd394afbe brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd413d90a brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd72daf12 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xda537ccc brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xf0bff895 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1d1e7e85 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1f15fc42 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x20a9e961 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x275b2433 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x356c58d2 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3953294f hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x439a901d hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x455e253a hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7cd4a2a0 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8257e1cb hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x99a1c1d6 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9ba8be81 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbaa15e09 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbdd31335 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcd4eecdf hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcef62d57 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd22e5db3 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd8171a31 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe92b36fe hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xeae34b20 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xeb8b7370 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf03e5f84 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfd3b0a0d hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfd478ae6 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xff173974 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x00250ea6 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x016e527f libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x27d7efc1 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x303206b8 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3150d43a alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x45d0f93e libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5b5d997f libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x60b7bd89 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x623f4ffe libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x663fbc05 free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6d3e0bde libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x96a7d2d9 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa4db721f libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xaf2096d9 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xca7ac3f3 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xcfc1d75a libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd245e29e libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe333feef libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xeb7c3e37 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xef4e37be libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xff0fa236 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x00cf9d99 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x01a78984 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x01d6d4ec il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x02b4ff31 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x04670a94 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x067076d6 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x068e7e9d il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x09b8c66e il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0be437ff il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x11fff9e7 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x13064ba8 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x158f65c8 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1707b320 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x171ece6e il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x18330092 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1890d57b il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1a044056 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x201f0fe9 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x20d853cf il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22fa32e8 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x25abf2e9 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x29642fa0 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x29bd1208 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2e935e46 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x369511ef il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3712dd0f il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x38d94a55 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x39b9b85f il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3da62e58 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3ef9af1d il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3fd0bfd3 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x40d0eb6b il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x42ea7fbc il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4a1598b9 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4a229496 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4c3ac897 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x510dffa2 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x523f07da il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x52f7bfb6 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x56d2038a il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x571086c5 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5a7ce817 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5fc0f24d il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6278f999 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x63ecb310 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6401d447 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6d6dab88 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6df22c7d il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6e5b16f6 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7073e506 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x728b67ea il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x79488986 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7ac34b7b _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7da12bc1 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x85e38a85 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x86232868 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8725b8e5 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x878f13b9 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8edfafa5 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x96a7a2d2 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a4c9fb4 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa2e4491f il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3334ad1 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa769ac83 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa97dbda9 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xacfd67b2 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaf52742b il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xafbc563e il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb26794ae il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb622dc4d il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb6f4164a il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb789fde6 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba54c075 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbb773d1e il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbc0c1e78 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbcf1e643 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc0789b2f il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc1f0e18e il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc37cc70d il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc5d012cf il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc76e73bf il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc7970e0d il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xca558b74 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcbe3030b il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcca0d6ee il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcd88a55e il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd180ed0a il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd53f385d il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd7edcb7c il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd912e2c9 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe4da2554 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe5b6dd22 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe6b36769 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb761007 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xec3d8fe3 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xed168c16 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf6687540 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfaf30d14 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfe93cfc0 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x08c6664d __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x4379786d __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x95a8ab3c __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xa2b6ec39 __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xb69add1f __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xcd60e86e __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xd4f50457 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x12f6e380 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x12fb9d2b orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1bbf874f orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2bcb421b orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x32f957b6 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x34cd3dd1 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x38a5cd58 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x407cf594 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4bd72750 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4dd3aa1e orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7389157e orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x79533f21 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb999cb4e orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbfa3af0f orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc4c35617 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffc74b4a orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x9da128bb rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x030d4b47 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x095dba52 _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x116ee760 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x24b70612 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x26baa7b3 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2a297460 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3868b9f8 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ba5f664 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x46105dcf _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4f4ec741 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x505b2fce rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x52422de1 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x52f8ac80 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x53f25b9d rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x57513578 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ac30b59 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5d7db89d rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x65d895a7 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6693e67a rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x689d4573 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d112c8c _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d53a995 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x723d1b09 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7493a5c6 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x835547fc _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8cced514 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f2047cb rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f51d1c6 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9402ce26 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9cd795e5 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa1529b38 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa98ad6b0 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaa6b3939 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb0da5915 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc5f8a9d9 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe1dae5d0 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe59367d1 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe9217281 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf41f3127 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfceb9f29 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfdcd043a rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x2755085d rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4b4f2108 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa0973ab2 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xfb51e504 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4bf147a8 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x945732e6 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe8c86e51 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe930d7a2 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e239381 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1897031c efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19070b41 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x23bb774b rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2aed160c rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4513f0b3 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5167b3cc efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52d02e4e rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52fd9da2 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5af5789f rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62c3dc72 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7872b2a2 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7bb7728b rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x93de0eef rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa687f4e rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb10110b9 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5efdffe rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbca38db3 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc28f471f rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcbd8f17e rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd567fde5 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd7cd5aff rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xddfec4d8 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe044e696 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0ae41d7 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf101af8c rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf1a0e089 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf33e51b8 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x102a9a5b wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x214600ab wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6e88685b wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf3ea8bfe wlcore_tx_complete -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x1576c061 fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x4601d4ac fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xe5f58e94 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x2fa69af1 microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0xc2e4196a microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x004f40b9 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x46f6be39 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x4df8726b nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x4b8114eb pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xb4d5fe47 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x0be48935 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x952e51eb s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xc2b88116 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2c544ae6 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2e0fa7ad st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3948fb39 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3fa193bd ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x72599ae8 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x73e1f623 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x76ffe242 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x81222179 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xadeb2b91 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd4028ace ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xded579a0 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x14acda78 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1ff944c8 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5aec77b0 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x691efd1b st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6aad3034 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7190edf8 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x85249cca st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x92748964 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x93964ae0 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x93c2c8c3 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x94022d8a st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9d9c2a6b st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa6d4f3ba st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc130d84b st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe218fef1 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe77a0bb1 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf9ba98ff st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfc0044b8 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/ntb/ntb 0x2d681c67 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x3fee1d10 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x434411c6 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x469e29df ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x861d0554 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x961ce860 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xa344f3f4 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0xf5ec5445 ntb_clear_ctx -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x8aee9ba8 devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x04960b79 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x2869db1a parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x3b8aa285 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x58cf6b2f parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x62b11a96 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x6b6cf44e parport_write -EXPORT_SYMBOL drivers/parport/parport 0x73eec752 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x793d98f5 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x7bf2f2a5 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x805e6337 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x8315219c parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x88b9f476 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x8a4cd3cd parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x8d368d92 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x8d9cc537 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x8e34f5d4 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x8e5b6bc6 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xb0346e0a parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xb5e54a5f parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xbc5d283f parport_read -EXPORT_SYMBOL drivers/parport/parport 0xbef6fbc5 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xc34de181 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0xc64520a5 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xcf09eeaf parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xd76f1895 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xebb37242 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xed95373f parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xf0500041 parport_release -EXPORT_SYMBOL drivers/parport/parport 0xf5931c0d parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xf5ec82b5 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xfb0d54fe parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xfd945813 parport_register_device -EXPORT_SYMBOL drivers/parport/parport_pc 0x180395e9 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x6770b2c6 parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1b3c18bb pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3ece2e73 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3fd4ec9a pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5a6a944d pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5c1719a9 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x606193f3 pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6c4b4143 pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7b67c46d pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x87c6c771 pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x90ad7ac8 pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9304afd8 pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x934a11e1 pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc8fa423b pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcdb29b77 pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd0426e56 pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdd9151a6 pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe79a1755 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xee941a2c pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfb9b16c2 __pcmcia_request_exclusive_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x09286c9c pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x242f64e9 pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3c07aca7 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x40bfcf0f pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x64b9dc55 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6e86f512 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x73ef1026 pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7ffe2a59 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8d6b324f pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd92584c8 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf11746cc pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x272d4ec4 pccard_nonstatic_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x885041c0 pccard_static_ops -EXPORT_SYMBOL drivers/pps/pps_core 0x02ffa867 pps_register_source -EXPORT_SYMBOL drivers/pps/pps_core 0x1384f451 pps_unregister_source -EXPORT_SYMBOL drivers/pps/pps_core 0xd7ba1dde pps_event -EXPORT_SYMBOL drivers/pps/pps_core 0xff6add8c pps_lookup_dev -EXPORT_SYMBOL drivers/ptp/ptp 0x23ee7921 ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0x34e161a1 ptp_clock_event -EXPORT_SYMBOL drivers/ptp/ptp 0x9a22aac3 ptp_clock_index -EXPORT_SYMBOL drivers/ptp/ptp 0xf3475b71 ptp_clock_register -EXPORT_SYMBOL drivers/ptp/ptp 0xfaef12c3 ptp_clock_unregister -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0bf50964 rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x13616096 rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x37b00818 rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x66461eea rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x83f44c3b rproc_alloc -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xbaf50437 rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc4463887 rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xdadab189 rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf45018b2 rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfdf70ad2 rproc_report_crash -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x70018274 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1994db3b scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x22027537 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9c14b46f scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xef556277 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x08225ca6 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0f7b2cf5 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x195b95d6 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x421c48c6 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x48dda317 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x64df3cc8 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x89dc1bb3 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc4755fdb fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcf146a1a fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd0105938 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd0e4b829 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfefe1d8e fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13b3f615 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e7ae005 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e7b63a8 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22236963 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f4e4cb1 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ff1364f fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a3bb950 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f24c3e5 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4014d148 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x412be67b fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46a8af41 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x489dc5da fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4bd1ff3f fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x50f7a328 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x594989e2 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x664273d4 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ae3313 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aac9ed2 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x71623de0 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x72062ca3 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x73e53534 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x744a13df fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79c5ecf9 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d658f1a fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x82233ff7 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x846197b0 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x885971b9 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b0c6e61 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x96b3430e fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xade2c035 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae84e1dd fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb051d8a3 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb318db48 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbfb89029 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc24aff9e fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc475d1af fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc759017b fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf9da8c0 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd21ea8ad libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xda5515c6 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xda988617 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdde305db fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea6e4457 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0a411c5 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf57edb23 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf91ca76f fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xffd45579 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x36519215 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6dce73c9 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xecaac2f1 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xfbba5a25 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x26ae37ef mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0dde8737 osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0eb42185 osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1b4ffc8f osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1d3a5f1f osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x26ebbacd osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2990f3dd osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x36857631 osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x37116c17 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x37a93a50 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3e7d89c5 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x40221a12 osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4577dee3 osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x48f85722 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x577e323a osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5c9789df osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x65a4221b osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6da8f2f8 osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x701ca0a7 osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x731da866 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7d8ee694 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7f75b997 osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x86cc7a46 osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x962c2c2f osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x98971330 osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9d7293e6 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaa32eb40 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xac1d76eb osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc0a3a1ae osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd42f4592 osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd646ed6c osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd852e90a osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xebd8267b osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xee548b21 osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf1422058 osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf29b05d5 osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfd524496 osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/osd 0x3f5f2c16 osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5030f319 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x599751b0 osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x7c64067f osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0x7e6d4525 osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0xb9926811 osduld_register_test -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x090af5f8 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2ead5622 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x355af371 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3ae1575e qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x64bb39ef qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x76887557 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7bcd65a5 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7ed57fc8 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8ce031ee qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc76cb2c5 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe35716cb qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfac6ce91 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x224d42d8 qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3f6d5844 qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x4a4c3da0 qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb019d6d8 qlogicfas408_bus_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xd3396415 qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xeca4731f qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/raid_class 0x34f3207b raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0x71b501a4 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xe43ef886 raid_component_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x28742e1c scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2cdfdffb fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3d294960 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x48279094 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x48b385ea fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x48e0cc06 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x51197e15 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x55dc8939 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x863656b8 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x91ef03aa scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x94d49021 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbe0cd8e5 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe70bd5de fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x116c6bd7 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x16eabec9 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1f1f12da sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x250609d1 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x259ea980 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2dd80a36 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5ff86329 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x621ecd30 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6a55c575 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6d41a565 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x74bae2fc sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x836fa2a7 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c3d5a10 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8ca223de sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa7c6ae1c scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb57491d6 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb7fecc5a sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6a233d2 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc9685784 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd071684d sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd0e5bd3b sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd8522158 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd8ccff64 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdb7e0b67 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xddf60a7d sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe4a15624 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfa5e1682 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfcaf2536 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2f48fa3f spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x685217a8 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x74abf455 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9fe5ebc9 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa64addab spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x335aeff7 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5326b9d5 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x53539d66 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x8f404a85 srp_rport_get -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x07bcc26f ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x14d2658d ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2847f906 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x86fe5d9b ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x8947fe20 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x8b9253a9 ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xe18929c8 ufshcd_system_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x4bc502ac ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x4bcc3c1f ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x5114a51c ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x5f9c9799 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x73260dc7 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x7521a08b ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x83467e0a ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x893a99bc ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x8d82d448 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xa28efebf ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xaf380d1b ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xb7a0eb81 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xc3ef3872 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe831cec7 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xed70bd95 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xed8a3a8b ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xede2b7f4 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xeec3bb3b ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xf37c2ad8 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0xf5cacc98 ssb_pcihost_register -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0a2bbd63 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x14718d98 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x19a5e042 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x23d40185 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x24bf4dcb fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2525c0a2 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4137b1f0 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x48b69f40 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4c662c8f fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x52bc9791 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x57911b75 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e05e3a9 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x677ffa97 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x81d287c5 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8e166938 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8edec608 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x94ba0099 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9c5dd071 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb3fe3550 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb9ab78ec fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdc227905 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdd867952 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeddbc6ae fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf60722db fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x716c7735 fwtty_port_put -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x88b79f92 fwtty_port_get -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x984f97dc adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x04e3e91f hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x1edfc15d hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xb0cbe6ce hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xec0461f7 hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x49561d3d ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x724418f5 ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x0589251d cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x1e32f82d most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0ac25049 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c5161e3 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0ce63520 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11ae8561 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x20149853 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x20521000 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3c4c90dc HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3cf62f3e rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x428fa513 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x44bfd78e rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ebd569a rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4fcde3f0 Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5402a9ec rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56d2f004 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b758b24 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x607a0913 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6ea44665 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8a4b68aa rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8ce8b1c2 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9050920b rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x91a74e46 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a24b297 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a3d6bb2 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ec23362 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa26527cd rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa4de9435 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa674e19a rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa71282b9 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa74d52b2 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa75e1204 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb1143662 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb4acc5d8 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb4f315d3 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5caa6fb rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc6430470 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc90e299b rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc999068e rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcfbcfb5b rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcfd00127 rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd6e8432d notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdc02bc3a rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde68535d RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde8e56fb rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe25dd169 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe2c86b2c rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf3a8c612 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf4249478 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb31f65e rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfde52999 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff2d7658 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x030d03c4 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03889e41 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03d625a9 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07ffd92b ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08ec7138 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0bb41aff ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ea3ee5c ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x10a1d793 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1849d5f2 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a8aa3e5 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1bf41f7b HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x243175f1 IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x29d2aee0 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3fc03cdb ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4178fd9b DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4bde3543 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e19c0cb ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x517fc935 Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ba9e251 Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x663b8d72 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69a7a2a9 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6b66f9dc DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6c3193ea ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ccc0993 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ea15520 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f2be716 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x84f04105 Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8768225f ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9060de7d ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x95bc104e ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97d5898b ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9c2cf469 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa2a10f83 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa5c11033 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6f9d68d ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa7804ead ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc062d415 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0845b85 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc099899d ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc38b1ac6 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5f8206e ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7a8a4fc ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcfbb14d8 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd07f29b6 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8b660ba ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe72f8c93 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe89e615d ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf142a2e7 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf64b3a42 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf6d3b270 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf739f190 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf99ff4e2 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb4ec68d ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x038e4106 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b95b894 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0e2382bf iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x193945d8 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1b789549 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ffca3e1 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2a5f4ee9 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3caf0673 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4175d2a4 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x48647d0c iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x487a18af iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5bb191e7 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x69af3f75 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a4a6c6f iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6c53ad19 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8bf4c42e iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x90021b80 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5d5edae iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa637c89b iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa7a5d780 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba0d5dbc iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbce6bb74 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2958b99 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd1d30e43 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xde335289 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe4841feb iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf00c9be8 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfda037e0 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/target_core_mod 0x022667ba target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x036e2bbd target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x047a5c5c transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x05f2f9fe transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x060b8ad0 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x0c5e6c46 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x12b71a1a core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x14ffad77 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x197a8a27 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x19fe4d34 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x1df61ac2 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x27597441 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x2af33cd2 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x2b300fac target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x3393c9da transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x33e679bf sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x382226f1 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x3c1e2170 transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0x42bfc1f1 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x43da1d21 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x49049058 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x49dfacbd transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x4e901423 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x5176fa12 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x56e265f4 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x5b9ad0f0 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x5c225f00 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x62afad74 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x6e998c76 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7bce4c6b target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x7da824d5 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x7e73c27a transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x7ef5028b target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x8a654a8b target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8c34efa6 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x90f389a9 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x92c8a12b transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x94071043 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x948df877 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x9650b7cb sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x9916fe74 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x99b41e00 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x9a95c797 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xa1d2667f transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xa34ec99f sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xa5b07af8 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xb63ffb96 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xb93b49c1 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xb9c95986 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xbd0d3a24 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xc353612d target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xc65dbce8 target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc748e615 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd12dd1d target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xcfcbd60f core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xd015d640 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xd0b6ae16 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xd560657b spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xd575628f core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xd6a10cd1 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xd703abde spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xdf73f675 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xe085a47e sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xe5c7621c sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xeb7c6035 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf775d979 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xf8ec3c06 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xfb649979 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xfcd8f430 transport_generic_new_cmd -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x892f975c usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xef800d2c usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x92283db9 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x080ac98d usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x23195e1f usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x38a4ae99 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3decd336 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5dd8e381 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6041eec7 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x71bbae00 usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7f84083d usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8dfa63d1 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd014f0da usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdc3910fe usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf034d233 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x9a588822 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xb710af22 usb_serial_resume -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0x46f423f4 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xa640718b devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xd99d19f2 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xebf65fae devm_lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0a272391 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1f8cccc4 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2de1c63b svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4aae45c8 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x830ac304 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x88d39182 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb1ac80fe svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x60887ffd sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xad1d3d00 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xd5f57bb5 sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x2d59cca6 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x3563c0f4 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x4ca3f8dc matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xf6335cb9 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x130da9ed DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x24e6b57d matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7f2a87df DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc0f093ef matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x72464a1f matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x45026113 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5ab7e0a9 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8018b482 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa57253d4 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xcf561a23 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xb7f45e95 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xda3ec49e matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x27d7bbbe matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2a401c4c matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3846faf7 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6843650e matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa9f2cb2e matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xd1f6d82f mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x0d9feae1 w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x49e14d15 w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x58cb4dfb w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x5d504df2 w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x9b3e29b4 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x9c7254e2 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x318d2d2b w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xebe55e00 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x5dd102f1 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x876577b1 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x96f24525 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xf6d1ea26 w1_unregister_family -EXPORT_SYMBOL fs/configfs/configfs 0x2e609e00 configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x3455a66f config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0x3cfc99ea config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0x556bab73 config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0x71f9f2b1 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x736dbc58 config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x747cd72d configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x7495c12a configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x76948dec configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0x7ab4c10f configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x8709440b config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0x8b9ac7d4 configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0x8be692da configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0xdc7c4aa1 config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0xfabf91db configfs_unregister_group -EXPORT_SYMBOL fs/exofs/libore 0x0937d662 ore_read -EXPORT_SYMBOL fs/exofs/libore 0x15a40e5f ore_create -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x35458aa1 ore_write -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x696b2ba0 ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0x7d9cea08 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0x96d96a72 ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xb514a7b1 extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0xbc9dc45c ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0xfab03bb4 ore_remove -EXPORT_SYMBOL fs/exofs/libore 0xfdedd128 ore_get_rw_state -EXPORT_SYMBOL fs/fscache/fscache 0x196259af __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x21b629b8 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x2aad77ff __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x31cad2dc fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x41a5a704 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x420ca046 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x47e869e0 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x4fe0535e fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x514af078 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x52665c9b fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x5ae200f7 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x5d2f9e7d __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x5db0c3d0 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x650ddb3e __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x6c657b8f fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x6cdc9a1c __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x73b7e231 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x7736ed2a __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x7951ea35 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x7b609e5e fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x7ebfd621 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x8abd01c7 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x9411ba08 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x960e3f7b __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x994ad226 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x99752f69 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x9987aee1 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xae107634 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xb697ce5d __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xbec06410 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xc4fa3265 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xc6b4fe4e fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xc88c4e71 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xcf80dcb4 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xcfcd8eda fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xcff2bc49 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xd754806d __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xe31e5069 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0xf92a21ce __fscache_check_consistency -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x020393c4 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x040f4161 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x38174d3c qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x64de8924 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x7b612b38 qtree_write_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t -EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0x2763e461 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create -EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put -EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed -EXPORT_SYMBOL lib/lru_cache 0xa278b15d lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set -EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get -EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del -EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of -EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find -EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0x7456cc61 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0xc0e05997 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd3e152f0 lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0xf67cf7f6 lowpan_nhc_add -EXPORT_SYMBOL net/802/p8022 0x04f8e0b1 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0x3024cc93 register_8022_client -EXPORT_SYMBOL net/802/p8023 0x09132846 make_8023_client -EXPORT_SYMBOL net/802/p8023 0xff9a0bec destroy_8023_client -EXPORT_SYMBOL net/802/psnap 0x1028a967 unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0x55d0e4a2 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x041aacb5 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x0f630f6f p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x19ee91f0 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x245b9b35 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x2bcaa893 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x2f43e12f p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x352d53a7 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x3ae6a516 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3dc26c12 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x3ebef0de p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x3ee30646 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x42f11877 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x49eb4b61 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x4c6807bd p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x51842c40 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x5605d74e p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x5f597d3f p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x74316d3f v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x758b598f p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x7a6641c6 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x9378b683 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x9727c9db p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x9bb458d2 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0xaa93fb84 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0xb1d7abca p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0xb33aa291 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xb4dd9872 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xc82396b0 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xc8d6895b p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0xcbbcd7cf v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xcfc5c0c6 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xd3083257 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe5cc785f p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xea0e2892 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xed500ba8 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xf0321b25 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xf2102faf p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xf42eb0bb p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf70bc26a p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfa2dc34b p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/9p/9pnet 0xfd718f85 v9fs_register_trans -EXPORT_SYMBOL net/appletalk/appletalk 0x01f60ef1 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0x8dada854 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xbb48d4ec aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xff0ffea0 alloc_ltalkdev -EXPORT_SYMBOL net/atm/atm 0x0e8d1723 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x343e21c6 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x6412e487 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x7ca750ad atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x80cdbfce atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x889b1d58 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x99650ac8 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xbca6538d atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0xc73ed417 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0xc7a62c32 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xd56a6bab atm_charge -EXPORT_SYMBOL net/atm/atm 0xdb222725 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xf6c8450f vcc_insert_socket -EXPORT_SYMBOL net/ax25/ax25 0x187a6485 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x6d9f05f1 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x98aa6fd7 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xb5d66931 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xc5870bfd ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0xc846d64b ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xdc4f9c94 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0xe2203d51 ax25_listen_release -EXPORT_SYMBOL net/bluetooth/bluetooth 0x00de5fa7 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x10a7fb5a hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x13b2ce58 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1411598f bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x16c78153 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1ae0854c bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2514da31 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2837e9e6 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3504e074 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3900a38c hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e8c6f23 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f5a890b bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x451fc4b7 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c21a76f l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4ed9daea hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x54fc181b bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x57fd83a7 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5f615c25 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6442ad82 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x64f535bd bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6a911e07 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b2bb990 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x99e8fd52 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f162098 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f64d42c hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa86dfc69 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8c696a0 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf0f869a bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xba6b4a04 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbd405eb9 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbe3cf6bd hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2f12075 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc570552f hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd138fef0 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd44290be l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdb28221e hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc38aa38 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdccbb590 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe390401b hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7b9314e bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf9bc23a2 l2cap_chan_close -EXPORT_SYMBOL net/bridge/bridge 0x1c1097fe br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5201ac14 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x557e3f36 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7e61aae6 ebt_register_table -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x5c60c9ad caif_connect_client -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9c9649b0 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x9ccc3356 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xad725cde get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xfaeb3565 caif_disconnect_client -EXPORT_SYMBOL net/can/can 0x5d76d387 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x69de216c can_proto_register -EXPORT_SYMBOL net/can/can 0xbfefab50 can_send -EXPORT_SYMBOL net/can/can 0xd6ff2f14 can_rx_unregister -EXPORT_SYMBOL net/can/can 0xdd31fd94 can_rx_register -EXPORT_SYMBOL net/can/can 0xeaf33d90 can_ioctl -EXPORT_SYMBOL net/ceph/libceph 0x062c180c ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x06a4026e ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0addb506 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x0c8de0df ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x0eb58d07 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x0f127106 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x12147279 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x15dc47f5 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x18b8a892 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x1ddea8a9 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x22ffe34c osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x235ccaf1 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x24b9b6bf ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x2674e4a0 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0x280c4a67 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x28f2a7e0 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x2a52f08e ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0x2a89f1c9 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x2b068369 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x2d3e4d14 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x2f2ba402 ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0x31bc7189 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x31fab0aa ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x3325e1ad osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x34556016 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3d7d9f7e ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x469b5aba ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x48bd1097 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x4a7a3720 ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x4e05873d ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x537d4d47 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5530e64e ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0x5720b5b4 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5b6376ee ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5c6481e7 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x6005e710 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x648dcff7 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x699e63b7 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6bde954e ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0x6bf29dd0 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x72bd2f52 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x7582567d osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0x821415da ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x891125b6 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x8b0b2119 ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0x8b769cd5 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9a7cda80 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa0a992aa osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xa23ccdd8 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xa3658838 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xa4312d3b ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xa69c6014 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xa836acaf osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0xac706004 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xaca9ef1f ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0xae25b9cf osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xaf59e487 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb16d8e68 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xb3c48a05 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xb6e82a3a ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0xb9cbe1a8 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0xbbdf1580 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xbf1b70e0 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xc317f1ed ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc635253d ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xca3dfc6f ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xca579357 ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xcbf967c5 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd35adfcc osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0xd3706773 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xd51e2b14 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xd9677475 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0xe1e4035a osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xe3853f3a osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0xe3b151b3 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0xe8abdbfb ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xed8bf618 ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0xf35042ec ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0xf59de47e osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xf9d5ae37 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xfd631a15 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x4c160815 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x7c91ea8f dccp_req_err -EXPORT_SYMBOL net/ieee802154/ieee802154 0x0aa4c76d wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x0ddef498 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x1584155b wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x652938e0 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x71869e6f wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xfa1e507f wpan_phy_register -EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x416f176e gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xdfec9b91 fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1cdb201e ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2cd5e01d ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x421faff9 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7a839dee ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa635a135 ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf540637a ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1e6d8a19 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x26ab18e8 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9219b00a arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x24582f97 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4c97ca45 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfd229777 ipt_do_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x80774d96 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xaf1ae2c7 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x66330b06 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xabafa694 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd0119ff3 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdfa12010 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfd5e5f5a ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x2147f419 ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7dad3f3a ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd41a3a13 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x129e2fef xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xb9313b5b xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x889f0072 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x975e3419 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x01f14acd ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1b16057a ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x78a3c3a0 ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8e7882fb ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x9be1ee72 ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xbf8af793 ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe45f5dcc ircomm_data_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xec7d04e0 ircomm_close -EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x18e6bf10 alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0x1c1df3d6 irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0x2233afe8 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0x2e1d6174 irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x385fea64 iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x5e9fbf59 irttp_dup -EXPORT_SYMBOL net/irda/irda 0x5f25884c irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove -EXPORT_SYMBOL net/irda/irda 0x62fbef26 iriap_close -EXPORT_SYMBOL net/irda/irda 0x69816067 irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x6d23f966 iriap_open -EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x743f1c7f irda_notify_init -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7bf111c0 irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x7f559d4f irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x84fa59d1 irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x88b4cfc9 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0x88d04c9c irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0x8ca27ef6 irttp_data_request -EXPORT_SYMBOL net/irda/irda 0x8f625d5c irlap_open -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x9759746f irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object -EXPORT_SYMBOL net/irda/irda 0xb7787292 irlap_close -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbd0987ed irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0xc886b4f9 irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0xc9d3f61c irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find -EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert -EXPORT_SYMBOL net/irda/irda 0xd98667f5 async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object -EXPORT_SYMBOL net/irda/irda 0xf39b7fe0 irda_setup_dma -EXPORT_SYMBOL net/irda/irda 0xf3b3aab6 async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this -EXPORT_SYMBOL net/l2tp/l2tp_core 0x241c1006 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x072dbd21 l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x0a2ee054 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x5928eada lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x692a5182 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xb2e594f5 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xdd078af7 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xe53ee5dd lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xed4cfdb9 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xf247f7d5 lapb_data_request -EXPORT_SYMBOL net/llc/llc 0x03dd9a3c llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x2d9067b7 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x40a8b1e2 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0xc6cb9491 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0xe918340a llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xe950815b llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xff9d7eed llc_sap_find -EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x034a8633 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x05346f75 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x062174ad ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x08665d63 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x0da311d9 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x0f9112eb ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x1b92a20c ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x1be139d4 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x1def8afb ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x1e3a4cd4 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x1e7c0a81 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x2260f9d5 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x24a96a5a ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x25b35a58 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x27cae126 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x2852e58d ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x28f4429f ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x2b5e6a59 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x2de4c11b ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x3070c118 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x393154cd ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x39c436fe __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x39f1bf8b ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x3c57d25a ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x4485a0fd ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x4624dfe6 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x47768144 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x48bbb911 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x4d4d6043 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x5d2ff59e ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x5f42c0c6 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x67f14ae5 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x6a1393ec ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x6adb55d4 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x6ba98747 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x70977274 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x736b60e3 ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0x74b2217e ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x75c8119f ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x7717484d ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x781ea095 rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0x78e6698f ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x832381ba ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x86b8a988 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x8d2e9cf0 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x8daf4a5e ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x8e81828f ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x9248e9b3 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x9724d1d1 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xa1965d95 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xa46a12dd ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xa9d3ead6 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xaea1952a __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xb4c45cdd ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0xb5e5af89 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xbd3ad5bf ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xc2194b5e ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xc335a3e4 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xc4c45a01 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xc5983bd5 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xca9c5230 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xd71a0868 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xdb6904d6 ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xdbd65ca7 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xdbd7b146 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xe000090d ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xe4959328 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xe7515b6b ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xe82bceb5 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xe88647c7 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xe9d76da9 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xead3059b ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xf1661e65 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xf4dd8a4e ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xf5819b24 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xfa4d20f2 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xfae36ceb ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xffa37df2 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac802154/mac802154 0x153a64a7 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x3dff5352 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x5924e87b ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x8612b83f ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x99944a62 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x9a94c4f4 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xa9d1962a ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xb7bbb537 ieee802154_stop_queue -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1442b852 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x20fc4bb2 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x36adc091 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x40744923 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x450d219a ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x585f2330 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x67c31edf ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x69af0f6d register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x75b2bd55 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x91b47973 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9bad9a11 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9e2d72eb ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe466a6da ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf21659e4 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x2ad3851c __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x7efd7b53 __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xf4616cb1 nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x243bde28 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0x6b75a34c nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0x95d877ad __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xb78b57f7 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xd132ad5d nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xf56b0867 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/x_tables 0x09091e83 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x1dca3ea7 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x2c3160cc xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x608f516e xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0x785cdcf7 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xb466650f xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xcf4a9973 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xd1af772f xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xe37f85e8 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xfb8ba430 xt_unregister_match -EXPORT_SYMBOL net/nfc/hci/hci 0x0813f2d7 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x08294989 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x0cd5ddc2 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x11a74e32 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x15433fa5 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x2eda92a9 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x34a78d9f nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x3f8b5bcf nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x51fce9cc nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x54c446c2 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x714a70e8 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x835fbab1 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x8a8a74c1 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x8c470b75 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x8d4ed373 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x9e0ac8a7 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xa326559d nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0xa5dc3d5f nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xbe41f55e nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xe9997b8b nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xfb483522 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x093dc6f9 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x09cbcb0c nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x1490196c nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x16b3e010 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x1799d12d nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x37bcb743 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x3b7da7b3 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x3e7db3a7 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x520b9310 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x6893fd51 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x6c5746f6 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x6df41fc1 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x73d9080c nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x7d9a7087 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x7e2545cb nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0x94c5accd nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x98692b57 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0xa03f666a nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xa58241f6 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xa628e2e4 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xa70990e3 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xac480b87 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbe5b6052 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xd8049564 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xee82f33a nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xf719f746 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xf81f0bb4 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xfa610716 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nfc 0x074280c4 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x0d52a338 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x12ddd1e8 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x2120404c nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x27b93800 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x3bff6296 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x447fa046 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x6316879e nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x657f3f7a nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x6cf7621e nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x6d94d111 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x77036e22 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x79ce3a1b nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x9c37b9c4 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xa242faa3 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xa513be17 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xcc619387 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xd6f3b6a2 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xd77a2114 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xde4a8177 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xdfeae9c1 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xe99de81b nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xfcf2996b nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xff020010 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc_digital 0x167a422c nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x1a5d31f1 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x4d8eaf86 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xca811551 nfc_digital_allocate_device -EXPORT_SYMBOL net/phonet/phonet 0x1e3131d3 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x43e9c788 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x93f9e803 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x9a372de1 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x9aa1b35f phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xcc4ce245 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xd65b0ba1 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xe61b0b48 pn_sock_hash -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x04992380 rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x18cc5823 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2a67085c rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3c1f7a5e rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x455464f1 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x57d28bea rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5e7087d2 rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x833ecd01 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x98ef0311 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x99c18b61 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa5351aaa rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb4517243 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbc3b3935 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xcb3ae797 rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf00a055d rxrpc_get_null_key -EXPORT_SYMBOL net/sctp/sctp 0xcf9cec26 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x0f5a6f85 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x40cad9a6 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x55bcfefc gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x2a65d908 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x8686c568 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xaddf00e8 svc_pool_stats_open -EXPORT_SYMBOL net/wimax/wimax 0x0d15e407 wimax_rfkill -EXPORT_SYMBOL net/wimax/wimax 0x8d7cc419 wimax_reset -EXPORT_SYMBOL net/wireless/cfg80211 0x031493f8 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x0510c7d2 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0c883aaa wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x0e9cad15 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x1ed79d07 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x249a0464 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x28100986 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x29169890 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x29df3fd8 ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x2aa14a3c cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x345ea2a2 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x35d414da wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x36493b25 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x382ce19d wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x3fb59b26 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x40f395a3 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x427fe403 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x446dc105 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x45c9b104 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x47703aba cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4b15ad08 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x4c848e59 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x52403475 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x52d0b21d cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x52e9e1f8 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x55967237 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x572f334e cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x597aa8b7 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x64028fda cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x66aec2a1 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x66afea79 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6a0d1755 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x6e94f9c2 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x71c8f2b5 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x72128e02 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x72773c2f cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x73f6c988 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x7be4df67 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fafe2f7 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x8032d908 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x8111215b cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x820c044c cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x85fb84ce cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x864c69a2 ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x88ad6e3b cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x8a3782fe cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x97aaa781 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x9d750406 cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x9f05c4bb cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa05a3d53 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xa27295a4 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xa29d95e9 cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0xa2dd9278 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xaf9b41cf cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xb0ef8a86 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xb1deb012 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xb5bc66de cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0xbe6fcb0b cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xbfe837d3 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc4e54e33 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xc99d1a93 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xcec6492b cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xd02ce769 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xd2c2d2e8 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xd32ffaf7 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xd335dd14 cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xd7967ed8 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdee5250c cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xe03d97ba __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xe3b6d267 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xe9a0f75d cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xecfdc54c cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xedb0f81c cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf059c8f7 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xf064eb0b cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xf15ed524 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xf1f84a86 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xf2d755d2 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xf53bdb56 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xf59a8e8e cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xf77e326e __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xf9e47a3c cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x06b6d2a9 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x14764762 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x1957a112 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x33181208 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x771830d9 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xe750fce1 lib80211_unregister_crypto_ops -EXPORT_SYMBOL sound/ac97_bus 0x205088f4 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x39013b57 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x2261d347 snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x474d7999 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x83c88292 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xf351921f snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x97c40f93 snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x072d978b snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x13a17752 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2eed26bf snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5ca523 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd7c7afcc snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xc827bb4c snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x088045d1 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x0cc8f364 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x10982dab snd_register_device -EXPORT_SYMBOL sound/core/snd 0x1320d66c snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x205667ce snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x22f664b4 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x25fafaca snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x328ab71b snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x328df55d snd_card_register -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x4049c2db snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4f4d13d0 snd_card_free -EXPORT_SYMBOL sound/core/snd 0x54b2ad09 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x5572a263 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x56805f8b snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x56ee3bef snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x589ec57f snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x58fe8f27 snd_info_register -EXPORT_SYMBOL sound/core/snd 0x59b3f895 snd_device_free -EXPORT_SYMBOL sound/core/snd 0x5ff004e8 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x60ab9483 snd_cards -EXPORT_SYMBOL sound/core/snd 0x60ef5efc snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x6e5d3726 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x73d561dd snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x76c241c1 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x76d9d8f0 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x83d76b83 _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0x8550130d snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x9e66a554 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa01ea4a6 snd_device_register -EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0xa137f76d snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0xa8877b80 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb90242d3 snd_device_new -EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL sound/core/snd 0xd1157735 release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xd3f8da6d snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xd6a69642 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xda3e0297 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0xdaed541d snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0xdb3839c8 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0xdbfb9e44 snd_card_new -EXPORT_SYMBOL sound/core/snd 0xe2062dd5 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xe2e80543 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0xe59f975e snd_power_wait -EXPORT_SYMBOL sound/core/snd 0xe9c69ea3 snd_component_add -EXPORT_SYMBOL sound/core/snd 0xec75ca68 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0xef1942f1 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xf429a7ec snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0xfaa30e6b snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd-hwdep 0x366e577e snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x03dc6753 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x043a0dd9 snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x0c265f79 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x1193d595 snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0x17b401a3 snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x1ee7c433 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x22fc0934 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x27c5a7bd snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x2c3778b2 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x2d00b0ba snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x3194f26d snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x34c60d85 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x37c63582 snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x37e21b74 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3b91f3af snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x3e8ff6de snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x4cb4720d snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x4d94e1d9 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x4db2069f snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x521b714c snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x55aa98d4 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x55f3ba5e snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0x597d9ea3 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x5dc28e05 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x6196d354 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x6c8929cf snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x758ca240 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x7b173952 snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0x833d7fec snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x88b70061 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x8ff2558a snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x90fcd758 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x9190ef74 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0x932bb04c snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0xa173ac22 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xa98965fd snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xb532ae55 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xb91a22e4 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xba39387b snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xc1bdba23 snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0xcd808ef2 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0xd6bc32f1 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xd80d325b snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xe0c631b3 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe5f5cece snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0xe8173870 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xf3585122 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xfd0ff0d0 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0470ec73 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2019ce08 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x249a10d7 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x25db9b39 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2802e5a9 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2f388b44 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x30f02152 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x336f5cea snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x351e5fbf snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3e56f043 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x41e05df0 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x43025aab snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4c23af0c snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa7501d1e snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdc092efc snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe1c67af2 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe871a59e snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf181b52c snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfdf291f2 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-timer 0x09a58d98 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x12df6a6f snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x36a0edb5 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x3ad941b0 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x413b743a snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x4451dfac snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x5842d134 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0x6108c02a snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x8f9c3fc3 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xa0011cac snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xa12e7656 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0xc0eb1c1d snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xd1105759 snd_timer_notify -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x40d38079 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x15c46a4d snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x392b4216 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x52a836af snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6d3b817d snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6d90b5bb snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb16633f2 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb46ad5ee snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbb644c7e snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcd4a6f3e snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1cef3d62 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6cc58f96 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8d5c9290 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa96bae2d snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa9a8e7c1 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc8ee2ceb snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcb41420c snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcdadb8cf snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xceb614a8 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x04da48cb amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x05560b44 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1e6dd09b avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x22769930 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2b90a743 amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x30a37bb4 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3e14da09 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3e1ddd69 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x45d11f14 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4bcbfc8e cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x52d1b071 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x54f66b7c fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6ea21ac1 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x72a80689 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7a163865 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x84165edc amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x84375ed5 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9828d656 snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9898d585 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa03e5cdb snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xafedfc02 snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbee0016f fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd6d9b5e1 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd76060a1 amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdda01dc4 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdea3bdf7 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe16f1bbe cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe3451357 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe60608b8 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xec4771de amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf189a729 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf9690cb0 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x5624f866 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x8e0046fd snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x246ff77a snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4a7f20bf snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb10ab97c snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcf58deef snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd10796e8 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd58d43c6 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe2f5bfd9 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe7d34a81 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x43251090 snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x577b10ba snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x96ad87d9 snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xabb9c5b5 snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xbafc513e snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xbb2d6684 snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x13bb7a67 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x7aa38e0a snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xcc34c9e8 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe3b427a8 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x04c99af4 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x6e462dcc snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2f64d578 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5a7f66ee snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x61fc7d00 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6602af9d snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbbc1c73b snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe66bafa5 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-i2c 0x34d850b3 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x8b075210 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x8f98062b snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0xcb7aea4f snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xcd103d76 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xf0bd3c0d snd_i2c_device_free -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1be2c48e snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x57cedff7 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x814681d0 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x834ed1d1 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8763a8fe snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb7d57985 snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbc4b8f03 snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf7611da0 snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf9ddfff7 snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf9ffc7d9 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0021cfe2 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x057fac68 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x19503339 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3811e01a snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x39507793 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3a43f0ef snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x41d2e337 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4d235fdf snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x54af461c snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x773b29ff snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8a23aafc snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb98c31de snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbd53aac7 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc0a53aa0 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc9d3c16b snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd6385308 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe394868c snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4b39dbfa snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5a594ead snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x75dae76e snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x789b34cd snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x879200a6 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xab392291 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xaf4305d5 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdcd867ef snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xea6a9ac1 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x86ac0e44 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x8e708139 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xa8e1d0c4 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x05d0b7e5 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2793c59e oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x39de7930 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3c079ef2 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3d8e6528 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x478d1c75 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6121b346 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6430ba6f oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6b6cd66d oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x822f5ceb oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x839ae6b3 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x97f42657 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x98c056ea oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa183b0a9 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc39baccc oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc5553a66 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcda28222 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcfe63854 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd0354509 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xea0e9c02 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf93086cf oxygen_pci_pm -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x647d40a2 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6bcb8245 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd441257f snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe757910e snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xeba57396 snd_trident_alloc_voice -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x327aca61 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xd424156a tlv320aic23_probe -EXPORT_SYMBOL sound/soc/snd-soc-core 0x7db13df6 snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/soundcore 0x2a2496ba register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0x46625c3f register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x6c21e546 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x797e5003 register_sound_midi -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0x9d350cd1 register_sound_special -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xe455613e sound_class -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x00c55795 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2aee54dd snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x32e98696 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x83132aec snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbabffcaa snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbd2119b5 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/snd-util-mem 0x42585ce1 __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x474995e6 snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x8e8b4290 snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x918c5e50 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0xd4c240ee snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0xf3cecd07 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xfd432319 __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xffbb132b __snd_util_memblk_new -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x4129e494 snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x0020f877 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x00398f03 __secpath_destroy -EXPORT_SYMBOL vmlinux 0x003ed69a __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x00506a49 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x0054dc09 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x0064f4d8 pmac_resume_agp_for_card -EXPORT_SYMBOL vmlinux 0x00692612 down_write -EXPORT_SYMBOL vmlinux 0x007c4575 d_lookup -EXPORT_SYMBOL vmlinux 0x007ccf9f jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x008293c4 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x00893cbb dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x009224f4 pci_save_state -EXPORT_SYMBOL vmlinux 0x00a113df __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x00aa25aa tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x00b6ab86 nf_log_register -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00dbddaa key_link -EXPORT_SYMBOL vmlinux 0x00e0a2e3 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x0102f2c9 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x010540d8 netif_napi_add -EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x01157d90 phy_device_remove -EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 -EXPORT_SYMBOL vmlinux 0x013c73b2 lro_flush_all -EXPORT_SYMBOL vmlinux 0x014027bc max8998_read_reg -EXPORT_SYMBOL vmlinux 0x0147f347 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x01494a23 blk_make_request -EXPORT_SYMBOL vmlinux 0x0161adc4 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x0164002e blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x01640441 sock_release -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x017c72b8 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many -EXPORT_SYMBOL vmlinux 0x0192b25d neigh_direct_output -EXPORT_SYMBOL vmlinux 0x01bd6f86 no_llseek -EXPORT_SYMBOL vmlinux 0x01e60c99 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x02067d04 fddi_change_mtu -EXPORT_SYMBOL vmlinux 0x02178b88 bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x021dad4b mpage_readpages -EXPORT_SYMBOL vmlinux 0x021e3aa1 tty_do_resize -EXPORT_SYMBOL vmlinux 0x02361a21 finish_open -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027713db blk_get_request -EXPORT_SYMBOL vmlinux 0x027e8c9c icmp_send -EXPORT_SYMBOL vmlinux 0x029706b3 blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02d26de7 remap_pfn_range -EXPORT_SYMBOL vmlinux 0x02df080e ipv4_specific -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02f67d9d security_file_permission -EXPORT_SYMBOL vmlinux 0x03026e8e netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x034dc8d9 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x03b26b70 pci_pme_active -EXPORT_SYMBOL vmlinux 0x03e5459c xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x04318618 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x043d5218 nf_log_set -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0454bcc2 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x04617472 ip_do_fragment -EXPORT_SYMBOL vmlinux 0x046fa788 down_read -EXPORT_SYMBOL vmlinux 0x0476b525 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x04af4e01 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x04b3788a pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x04bfe31d abx500_register_ops -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04f1041d lockref_get -EXPORT_SYMBOL vmlinux 0x04fb0a11 request_key -EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x052dd06f lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x05464f9f skb_checksum -EXPORT_SYMBOL vmlinux 0x05552320 __mutex_init -EXPORT_SYMBOL vmlinux 0x05582289 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x0572ab86 serio_reconnect -EXPORT_SYMBOL vmlinux 0x05750398 of_phy_attach -EXPORT_SYMBOL vmlinux 0x05780519 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns -EXPORT_SYMBOL vmlinux 0x05a82a38 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x05d117a1 dst_init -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x0656c115 seq_putc -EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x06710967 i8042_remove_filter -EXPORT_SYMBOL vmlinux 0x0672fdfb param_set_uint -EXPORT_SYMBOL vmlinux 0x0675c7eb atomic64_cmpxchg -EXPORT_SYMBOL vmlinux 0x06764d3b sock_create -EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x069a70c7 __scm_send -EXPORT_SYMBOL vmlinux 0x06cdb696 mdiobus_read -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x0713f0b7 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x071abe04 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x07400d5b fs_bio_set -EXPORT_SYMBOL vmlinux 0x074b007e pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x074e9213 down_killable -EXPORT_SYMBOL vmlinux 0x0754182f md_write_start -EXPORT_SYMBOL vmlinux 0x075a532d tty_port_close -EXPORT_SYMBOL vmlinux 0x075ef021 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0x075f0f65 of_cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x07797a08 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x07941a45 pci_disable_device -EXPORT_SYMBOL vmlinux 0x079534c9 scsi_host_get -EXPORT_SYMBOL vmlinux 0x07978807 d_obtain_root -EXPORT_SYMBOL vmlinux 0x07a341d9 tcp_proc_register -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07abcaad mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x07b86794 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x07cbc11e __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07e06c9b genlmsg_put -EXPORT_SYMBOL vmlinux 0x07eeb2cf genphy_config_init -EXPORT_SYMBOL vmlinux 0x08045ffd i8042_install_filter -EXPORT_SYMBOL vmlinux 0x081f336b twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x082ac963 simple_follow_link -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x0854a99c xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x08703e12 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x0887292f nf_getsockopt -EXPORT_SYMBOL vmlinux 0x08b0a4aa of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x08cf44a1 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0x08df9457 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x08f002c5 free_user_ns -EXPORT_SYMBOL vmlinux 0x09040b16 dquot_acquire -EXPORT_SYMBOL vmlinux 0x091bbfc0 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x09317c16 single_open -EXPORT_SYMBOL vmlinux 0x0944d512 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x0965065a ata_dev_printk -EXPORT_SYMBOL vmlinux 0x0979d926 simple_getattr -EXPORT_SYMBOL vmlinux 0x0980d575 end_page_writeback -EXPORT_SYMBOL vmlinux 0x09834ef8 param_ops_bint -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x098d3de4 dqget -EXPORT_SYMBOL vmlinux 0x09bbbb91 trace_print_symbols_seq_u64 -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c60337 __dax_fault -EXPORT_SYMBOL vmlinux 0x09c67afb flex_array_get -EXPORT_SYMBOL vmlinux 0x09c6fe7b sg_miter_stop -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09c94d68 keyring_clear -EXPORT_SYMBOL vmlinux 0x09cfcc0b jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x0a08aa6f sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x0a0acfec set_bh_page -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a2ecf33 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift -EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell -EXPORT_SYMBOL vmlinux 0x0a543f76 nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0x0a7aca28 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x0a7c2889 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x0a7e2512 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x0a8285e0 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x0a961c58 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aa7429a agp_free_memory -EXPORT_SYMBOL vmlinux 0x0abbca7e elevator_exit -EXPORT_SYMBOL vmlinux 0x0abd6af9 __kernel_write -EXPORT_SYMBOL vmlinux 0x0ac70542 simple_write_begin -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad1e5ca bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x0ad5919f skb_pull -EXPORT_SYMBOL vmlinux 0x0adbd43a devm_gpio_free -EXPORT_SYMBOL vmlinux 0x0ae29570 register_key_type -EXPORT_SYMBOL vmlinux 0x0aed5a8e writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x0afc5991 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b22e104 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x0b29a9b1 pagevec_lookup -EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init -EXPORT_SYMBOL vmlinux 0x0b52ef56 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b66debe key_alloc -EXPORT_SYMBOL vmlinux 0x0b67970f kmem_cache_size -EXPORT_SYMBOL vmlinux 0x0b683f3c param_get_long -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b820bd7 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x0bb6b69c vme_register_bridge -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0be2b941 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x0bef0afb phy_suspend -EXPORT_SYMBOL vmlinux 0x0bf31298 pcie_get_mps -EXPORT_SYMBOL vmlinux 0x0c12e626 __debugger_bpt -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c4b277b filemap_flush -EXPORT_SYMBOL vmlinux 0x0c5217d5 cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x0c53e5f1 agp_find_bridge -EXPORT_SYMBOL vmlinux 0x0c540188 kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c636e13 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x0c6eac05 ns_capable -EXPORT_SYMBOL vmlinux 0x0c7dc942 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x0c9b6089 nvram_get_size -EXPORT_SYMBOL vmlinux 0x0ca0a4db dquot_release -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cba9ca3 dev_addr_init -EXPORT_SYMBOL vmlinux 0x0cbc5921 blk_end_request -EXPORT_SYMBOL vmlinux 0x0ccafbba skb_free_datagram -EXPORT_SYMBOL vmlinux 0x0ccd06a4 sock_no_getname -EXPORT_SYMBOL vmlinux 0x0ccf589f tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x0d0468ae generic_removexattr -EXPORT_SYMBOL vmlinux 0x0d16bb0c mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x0d2a3186 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0x0d3411a9 kmap_high -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d6a9efc cdev_add -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0da225f1 cdev_alloc -EXPORT_SYMBOL vmlinux 0x0da5d9f9 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x0dbf38b8 mol_trampoline -EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dc1b4d1 nf_log_packet -EXPORT_SYMBOL vmlinux 0x0dd5e6ce pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x0e0738bc kernel_getsockname -EXPORT_SYMBOL vmlinux 0x0e15265b sock_wfree -EXPORT_SYMBOL vmlinux 0x0e1b200f of_node_get -EXPORT_SYMBOL vmlinux 0x0e1e034b nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x0e235e83 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x0e2fce48 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x0e3bee74 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x0e5266b6 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e723c57 keyring_search -EXPORT_SYMBOL vmlinux 0x0e7d6ca2 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x0e8dd44e swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x0e90a2b1 set_wb_congested -EXPORT_SYMBOL vmlinux 0x0e925228 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x0e9d07b2 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ee4cc70 blk_free_tags -EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy -EXPORT_SYMBOL vmlinux 0x0ef20db1 kernstart_addr -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f00db9d dcb_getapp -EXPORT_SYMBOL vmlinux 0x0f1090ee fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x0f20d948 inode_set_flags -EXPORT_SYMBOL vmlinux 0x0f28cb91 nvram_read_byte -EXPORT_SYMBOL vmlinux 0x0f39bb6e iget5_locked -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f531e3e inet_frags_init -EXPORT_SYMBOL vmlinux 0x0f53d97d dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x0f54dc95 fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x0f575316 mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f7d3bfd skb_trim -EXPORT_SYMBOL vmlinux 0x0f86b0d5 da903x_query_status -EXPORT_SYMBOL vmlinux 0x0f8ae2c8 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fb706b5 xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0x0fce0b22 of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x0fdb267c of_get_min_tck -EXPORT_SYMBOL vmlinux 0x100e9776 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x102af6ab vga_put -EXPORT_SYMBOL vmlinux 0x10366598 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x104bb4fc redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x1051eef7 sock_no_listen -EXPORT_SYMBOL vmlinux 0x105d44ed inet_offloads -EXPORT_SYMBOL vmlinux 0x106470a5 save_mount_options -EXPORT_SYMBOL vmlinux 0x106da639 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x10748ad3 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x1079b1e0 iget_failed -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x108033d9 block_write_begin -EXPORT_SYMBOL vmlinux 0x10a3ee17 kmap_atomic_prot -EXPORT_SYMBOL vmlinux 0x10c27ef6 skb_copy -EXPORT_SYMBOL vmlinux 0x10e45a44 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110f59ff generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x11631827 dquot_get_state -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x1164c1e6 bdput -EXPORT_SYMBOL vmlinux 0x11663cec adb_register -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x117325bc kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable -EXPORT_SYMBOL vmlinux 0x119b5613 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11e8e470 blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x11ed101f ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x1210a973 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x12924837 of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x129a5a11 dentry_update_name_case -EXPORT_SYMBOL vmlinux 0x129eeb32 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12b346e3 from_kgid -EXPORT_SYMBOL vmlinux 0x12bd991b max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x12d27284 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0x12d37b82 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x12da2011 phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc -EXPORT_SYMBOL vmlinux 0x12dc2f3a skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x12ded1c1 sock_rfree -EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level -EXPORT_SYMBOL vmlinux 0x12fd8633 file_open_root -EXPORT_SYMBOL vmlinux 0x12ff235f cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x12ff4d89 scsi_execute -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13284aaf dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x1331330e reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0x13377d77 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x134c4df9 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x1350d435 cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x136a9487 mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0x136eba95 softnet_data -EXPORT_SYMBOL vmlinux 0x137135fa nonseekable_open -EXPORT_SYMBOL vmlinux 0x137bfa63 pci_restore_state -EXPORT_SYMBOL vmlinux 0x13909d44 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x13abb4f1 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d4044f netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x1407c6e7 kmap_prot -EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x14249609 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x1425044f default_llseek -EXPORT_SYMBOL vmlinux 0x1427df1e seq_pad -EXPORT_SYMBOL vmlinux 0x1437fe6d netdev_crit -EXPORT_SYMBOL vmlinux 0x143e92e0 sock_init_data -EXPORT_SYMBOL vmlinux 0x1455a038 tty_set_operations -EXPORT_SYMBOL vmlinux 0x145d29ea cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x1463d891 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x147d5895 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x14afd46d tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x14b2514d add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x14c713dd mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x14c72dbc free_netdev -EXPORT_SYMBOL vmlinux 0x14c76067 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14e8ca83 agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0x14ed7bc2 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x14fffe14 vfs_read -EXPORT_SYMBOL vmlinux 0x151c5240 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x1545620c copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x1549292e simple_open -EXPORT_SYMBOL vmlinux 0x154b0a0d __serio_register_port -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x156763dc dcache_dir_close -EXPORT_SYMBOL vmlinux 0x15690773 security_path_unlink -EXPORT_SYMBOL vmlinux 0x157e563c devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x15aa8486 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15be8a8e param_get_short -EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x15e0b75d mmc_erase -EXPORT_SYMBOL vmlinux 0x15ecdcdb sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token -EXPORT_SYMBOL vmlinux 0x16178867 cap_mmap_file -EXPORT_SYMBOL vmlinux 0x161d0033 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x162b6643 nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x1642b9f6 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x16540bbc __cmpdi2 -EXPORT_SYMBOL vmlinux 0x16696422 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x166e822a param_set_charp -EXPORT_SYMBOL vmlinux 0x166ebf0f of_device_get_match_data -EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete -EXPORT_SYMBOL vmlinux 0x1683f204 nf_register_hook -EXPORT_SYMBOL vmlinux 0x16994cfb param_set_invbool -EXPORT_SYMBOL vmlinux 0x16a08b86 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x16a75f6d xfrm_init_state -EXPORT_SYMBOL vmlinux 0x16a98a65 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x16b86584 of_device_register -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16eebd2e ip6_frag_match -EXPORT_SYMBOL vmlinux 0x16f2ee76 md_cluster_mod -EXPORT_SYMBOL vmlinux 0x16f4920b lock_sock_fast -EXPORT_SYMBOL vmlinux 0x171e74aa scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x17478177 blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x174afb1a __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock -EXPORT_SYMBOL vmlinux 0x17a46057 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x17aa156a __ucmpdi2 -EXPORT_SYMBOL vmlinux 0x17aaac0d genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17c969ac input_flush_device -EXPORT_SYMBOL vmlinux 0x17d843ea neigh_update -EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern -EXPORT_SYMBOL vmlinux 0x17f1452e ___pskb_trim -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17f40b94 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x1806adaa sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x182b3b7b pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x183e01d3 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x188c5cfa kernel_connect -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x189af3bc ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x18a24b6f __alloc_skb -EXPORT_SYMBOL vmlinux 0x18bfa2e9 input_set_keycode -EXPORT_SYMBOL vmlinux 0x18c2227f cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x19382458 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x1943ce09 kernel_listen -EXPORT_SYMBOL vmlinux 0x195ac51d dev_get_by_index -EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits -EXPORT_SYMBOL vmlinux 0x196f21d0 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x1978a024 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x1980e6d0 security_path_mknod -EXPORT_SYMBOL vmlinux 0x198382be mmc_fixup_device -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x199f1cf4 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19ba1dc7 fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x19bcfd12 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19daf983 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x1a023a88 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0x1a4f3034 dev_warn -EXPORT_SYMBOL vmlinux 0x1a6c995c con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x1a706f9c nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0x1a72302a get_unmapped_area -EXPORT_SYMBOL vmlinux 0x1a7cd230 d_set_d_op -EXPORT_SYMBOL vmlinux 0x1aad4fe4 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x1ab14eef dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x1ac77dd3 free_page_put_link -EXPORT_SYMBOL vmlinux 0x1af3580e sock_get_timestampns -EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock -EXPORT_SYMBOL vmlinux 0x1b604c99 dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1bb1dc39 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bb790b5 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x1bca2b59 load_fp_state -EXPORT_SYMBOL vmlinux 0x1be362ee bd_set_size -EXPORT_SYMBOL vmlinux 0x1bf21cd1 param_ops_byte -EXPORT_SYMBOL vmlinux 0x1c052c24 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x1c097c2a nvm_register_mgr -EXPORT_SYMBOL vmlinux 0x1c13e367 I_BDEV -EXPORT_SYMBOL vmlinux 0x1c5b2c15 pmu_wait_complete -EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check -EXPORT_SYMBOL vmlinux 0x1ca65ef9 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x1cb26022 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x1cd9087a sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0x1cfe13dc buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x1d13a864 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x1d1b3baa lro_receive_skb -EXPORT_SYMBOL vmlinux 0x1d1c79a0 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x1d37940f kernel_bind -EXPORT_SYMBOL vmlinux 0x1d4b1aed dev_mc_add -EXPORT_SYMBOL vmlinux 0x1d4df22e follow_down_one -EXPORT_SYMBOL vmlinux 0x1d65f523 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x1d7d513a module_refcount -EXPORT_SYMBOL vmlinux 0x1d840f77 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x1d9eed36 nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x1d9f3977 set_page_dirty -EXPORT_SYMBOL vmlinux 0x1da87acd sk_capable -EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x1db495d8 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1dd85b78 km_is_alive -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e43f613 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x1e4810f5 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e7d3e72 noop_qdisc -EXPORT_SYMBOL vmlinux 0x1e8c12c2 param_ops_string -EXPORT_SYMBOL vmlinux 0x1e9967ed udp_poll -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ead2ef4 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x1ec0159c inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x1ed301af tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0x1f1095ab unlock_new_inode -EXPORT_SYMBOL vmlinux 0x1f118f2b dentry_open -EXPORT_SYMBOL vmlinux 0x1f26a337 blk_queue_split -EXPORT_SYMBOL vmlinux 0x1f281d23 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x1fa9e6d6 of_platform_device_create -EXPORT_SYMBOL vmlinux 0x1fb3f11d iov_iter_init -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fef3e87 nvm_submit_io -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x20030ecd ioremap -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x20421305 on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x20a00f12 key_task_permission -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x20b754a3 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0x20bf2756 param_set_short -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x210f1fa3 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x211f6269 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x2155fe86 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x2157965d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve -EXPORT_SYMBOL vmlinux 0x216b54d7 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x2178611e pci_get_class -EXPORT_SYMBOL vmlinux 0x217a7b12 complete_request_key -EXPORT_SYMBOL vmlinux 0x21815d60 napi_disable -EXPORT_SYMBOL vmlinux 0x2183de51 rwsem_wake -EXPORT_SYMBOL vmlinux 0x218bf0b0 lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0x21afd68a dev_printk_emit -EXPORT_SYMBOL vmlinux 0x21c1e66f ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21e3276c dev_addr_del -EXPORT_SYMBOL vmlinux 0x21e44003 inet_shutdown -EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback -EXPORT_SYMBOL vmlinux 0x220c8205 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x2220e337 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve -EXPORT_SYMBOL vmlinux 0x2234a163 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x22441f51 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x225021f5 scsi_device_get -EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember -EXPORT_SYMBOL vmlinux 0x22acb78d dump_page -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b74f9b bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0x22b975f3 abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x22bcc782 set_posix_acl -EXPORT_SYMBOL vmlinux 0x22d6c13e get_task_io_context -EXPORT_SYMBOL vmlinux 0x22d6ed4a devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x22dce17d module_layout -EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x22e2bbc0 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x231e7dce update_region -EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit -EXPORT_SYMBOL vmlinux 0x237af1b0 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x237e2184 d_path -EXPORT_SYMBOL vmlinux 0x237f3711 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x23a1d5de skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23b580da ps2_command -EXPORT_SYMBOL vmlinux 0x23b77337 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free -EXPORT_SYMBOL vmlinux 0x23f5efec dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x23f7149e pci_select_bars -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x2404ee12 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x2420b882 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245b313b qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x245dad7e dev_alloc_name -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x24942491 seq_open_private -EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x24aa839b tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x24acd963 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x24bdf52e inet_accept -EXPORT_SYMBOL vmlinux 0x24c81c14 locks_free_lock -EXPORT_SYMBOL vmlinux 0x24f00380 ida_init -EXPORT_SYMBOL vmlinux 0x24f5eb6f of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x24fa9d8b get_thermal_instance -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x251bcf5e nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x2527a087 vme_slave_set -EXPORT_SYMBOL vmlinux 0x252e652f in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x2537d7d0 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x25532b7d of_get_next_child -EXPORT_SYMBOL vmlinux 0x2562c2da copy_from_iter -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x258c849a cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x25bc4221 page_follow_link_light -EXPORT_SYMBOL vmlinux 0x25bdab14 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x25cf43c1 elevator_alloc -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25f3bd2e atomic64_xchg -EXPORT_SYMBOL vmlinux 0x25fdfdd8 kill_anon_super -EXPORT_SYMBOL vmlinux 0x261c34bf serio_open -EXPORT_SYMBOL vmlinux 0x2638f436 agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc -EXPORT_SYMBOL vmlinux 0x264f25fc agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x26565c26 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x265f5f76 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x268509a5 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x26952256 pci_clear_master -EXPORT_SYMBOL vmlinux 0x26ab0f8e bprm_change_interp -EXPORT_SYMBOL vmlinux 0x26b4bff7 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init -EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26c1bce7 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x26cbfe89 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x26d2a605 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x26daf2e0 lookup_bdev -EXPORT_SYMBOL vmlinux 0x26e374d7 filp_close -EXPORT_SYMBOL vmlinux 0x26e4cba2 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x26e6624b elv_register_queue -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x2709f27e blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x271c6afa scsi_remove_target -EXPORT_SYMBOL vmlinux 0x272c9acd pmu_battery_count -EXPORT_SYMBOL vmlinux 0x27353ad3 _dev_info -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274b799f skb_insert -EXPORT_SYMBOL vmlinux 0x2753a61d ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x2758026e tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x2769c98b mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x276ae2f5 md_finish_reshape -EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above -EXPORT_SYMBOL vmlinux 0x27755bac __bread_gfp -EXPORT_SYMBOL vmlinux 0x277b3335 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x27a5a764 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x27a8ab51 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27d6feb8 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x27e37c17 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x27e55b4a of_dev_put -EXPORT_SYMBOL vmlinux 0x280aa739 commit_creds -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x2823cf23 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x28265a0b pci_write_vpd -EXPORT_SYMBOL vmlinux 0x28289c10 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x28609dec dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28a74b12 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x28a7beba __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x28ae3820 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x28b61cac blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x28be5f6f alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x28c8a50b rfkill_alloc -EXPORT_SYMBOL vmlinux 0x28d24c01 adb_client_list -EXPORT_SYMBOL vmlinux 0x28db4852 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x28e6755b tty_register_driver -EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x28f771c2 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x28f784f5 __debugger_break_match -EXPORT_SYMBOL vmlinux 0x29039c12 file_update_time -EXPORT_SYMBOL vmlinux 0x292a4651 down_read_trylock -EXPORT_SYMBOL vmlinux 0x292eaf84 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x29558a36 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x2970d092 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x2979689c pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x29b47fb4 agp_unbind_memory -EXPORT_SYMBOL vmlinux 0x29d5da4d __skb_checksum -EXPORT_SYMBOL vmlinux 0x29fc210c put_tty_driver -EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0x2a12dc5c of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x2a16b2b6 __module_get -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a387684 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x2a4adb74 input_release_device -EXPORT_SYMBOL vmlinux 0x2a5cea0a xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x2a6cf967 single_release -EXPORT_SYMBOL vmlinux 0x2a7cac99 pci_add_resource -EXPORT_SYMBOL vmlinux 0x2a9b94b8 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2aa4c4cb do_truncate -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2ac243e1 lwtunnel_output -EXPORT_SYMBOL vmlinux 0x2acc344a scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2ad01ed1 __brelse -EXPORT_SYMBOL vmlinux 0x2ae389c1 __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b0f0738 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x2b12925d cpumask_next_and -EXPORT_SYMBOL vmlinux 0x2b13b1ee agp_backend_release -EXPORT_SYMBOL vmlinux 0x2b2ab0cd of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b2dc764 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x2b37bf60 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x2b396a1d blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x2b403371 setattr_copy -EXPORT_SYMBOL vmlinux 0x2b4d0f9f kunmap_high -EXPORT_SYMBOL vmlinux 0x2b6cbb48 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x2b7f23df nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba6d275 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2baad4a8 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x2bc0dbea security_path_truncate -EXPORT_SYMBOL vmlinux 0x2bdfd2a5 setup_new_exec -EXPORT_SYMBOL vmlinux 0x2be2d08a pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x2befd0b0 blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x2bf7644e bio_integrity_free -EXPORT_SYMBOL vmlinux 0x2c021975 phy_print_status -EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c25be52 __ps2_command -EXPORT_SYMBOL vmlinux 0x2c2eb601 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x2c57aa53 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x2c64086b try_module_get -EXPORT_SYMBOL vmlinux 0x2c67c600 dquot_resume -EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout -EXPORT_SYMBOL vmlinux 0x2ca564c7 dcb_setapp -EXPORT_SYMBOL vmlinux 0x2cbe1d1b mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x2cc2151c tty_vhangup -EXPORT_SYMBOL vmlinux 0x2d0de688 brioctl_set -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d2dcbd1 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d3a883c i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x2d49582a bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x2d75754a generic_read_dir -EXPORT_SYMBOL vmlinux 0x2d882c25 seq_vprintf -EXPORT_SYMBOL vmlinux 0x2d9f1d5c twl6040_power -EXPORT_SYMBOL vmlinux 0x2daf0f25 km_policy_expired -EXPORT_SYMBOL vmlinux 0x2e0864de setup_arg_pages -EXPORT_SYMBOL vmlinux 0x2e19026b tty_port_close_end -EXPORT_SYMBOL vmlinux 0x2e2b0606 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e2dc3aa __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0x2e320f90 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x2e455046 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x2e4b94e9 simple_unlink -EXPORT_SYMBOL vmlinux 0x2e4f932a load_nls -EXPORT_SYMBOL vmlinux 0x2e726fd3 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x2e73ec21 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x2e96add7 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x2e9a3a87 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x2ea20989 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x2ec755f2 mmc_free_host -EXPORT_SYMBOL vmlinux 0x2ec92bd9 ps2_init -EXPORT_SYMBOL vmlinux 0x2ee541dd handle_edge_irq -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f117152 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x2f1d4d7a scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x2f34e11b input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x2f3edc05 generic_perform_write -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f523ca0 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x2f5470f9 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x2f7035b1 phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0x2f9d863f forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x2fa84b93 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fba8e8b f_setown -EXPORT_SYMBOL vmlinux 0x2fc20ee6 devm_release_resource -EXPORT_SYMBOL vmlinux 0x2fe1c7ac proc_mkdir -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe36103 open_exec -EXPORT_SYMBOL vmlinux 0x2fecbe05 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x2fee9be6 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x300f0ab2 kset_register -EXPORT_SYMBOL vmlinux 0x3010b6f8 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x30162604 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command -EXPORT_SYMBOL vmlinux 0x302ccca7 genphy_suspend -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x303c544e mach_chrp -EXPORT_SYMBOL vmlinux 0x303fd8ed devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x304bce80 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x308a9f01 validate_sp -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x309c24e8 inode_permission -EXPORT_SYMBOL vmlinux 0x30a10349 kdb_current_task -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id -EXPORT_SYMBOL vmlinux 0x30d097b7 bio_copy_kern -EXPORT_SYMBOL vmlinux 0x30d31e60 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x30d7834f filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x30e38336 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x30e663a3 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x30ea722a flow_cache_fini -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x3104bc24 dquot_disable -EXPORT_SYMBOL vmlinux 0x310917fe sort -EXPORT_SYMBOL vmlinux 0x31147e86 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x31188cf7 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x311edfe0 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x312f4eb9 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x315a97c1 mpage_writepage -EXPORT_SYMBOL vmlinux 0x315cfe97 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x31824c3c path_nosuid -EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc -EXPORT_SYMBOL vmlinux 0x3195ef3a init_net -EXPORT_SYMBOL vmlinux 0x31987ce0 agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0x31a9f77f pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x31b37f9a blk_stop_queue -EXPORT_SYMBOL vmlinux 0x31c76f0a vme_irq_request -EXPORT_SYMBOL vmlinux 0x31d225ba padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx -EXPORT_SYMBOL vmlinux 0x320e956e dev_mc_flush -EXPORT_SYMBOL vmlinux 0x3214e979 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x3219795e tty_port_open -EXPORT_SYMBOL vmlinux 0x321ecce1 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x32459b52 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x324d4a78 create_empty_buffers -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x32663a32 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x3279de39 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x327b9c1b pmu_poll_adb -EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy -EXPORT_SYMBOL vmlinux 0x3298e9ca pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x32b0120f jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x32e4b34e inet_frag_kill -EXPORT_SYMBOL vmlinux 0x32e73ad6 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x32fbec50 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x3317c81c blkdev_get -EXPORT_SYMBOL vmlinux 0x33203562 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x33209226 lwtunnel_input -EXPORT_SYMBOL vmlinux 0x3335c164 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x3340faae seq_open -EXPORT_SYMBOL vmlinux 0x334e6ebc pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x3367cd91 inet_release -EXPORT_SYMBOL vmlinux 0x3372b073 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33c02370 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33cc21ad sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x33dc8a38 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x340d5db8 param_ops_int -EXPORT_SYMBOL vmlinux 0x34168b8f delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x342c74c9 devm_free_irq -EXPORT_SYMBOL vmlinux 0x343bd310 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x344b3a30 cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0x3461835d of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x348c5026 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x348da9b5 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x34925cfc of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x349c743f tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34bd15a2 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x34e4412e ping_prot -EXPORT_SYMBOL vmlinux 0x34f05a06 inet6_protos -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f567bd update_devfreq -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3520ca09 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x35497b3d fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x3556114b blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x355d220c module_put -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x35734ef0 pci_get_device -EXPORT_SYMBOL vmlinux 0x3583d015 blkdev_put -EXPORT_SYMBOL vmlinux 0x35a03254 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35c24ccf input_grab_device -EXPORT_SYMBOL vmlinux 0x35c2da63 scsi_add_device -EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 -EXPORT_SYMBOL vmlinux 0x35f5d735 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x35fbd6a1 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x3606e1bd filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy -EXPORT_SYMBOL vmlinux 0x361db9fb blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x3627161e dev_driver_string -EXPORT_SYMBOL vmlinux 0x362efb87 set_blocksize -EXPORT_SYMBOL vmlinux 0x36335cde pci_device_from_OF_node -EXPORT_SYMBOL vmlinux 0x363820e2 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x363b1476 override_creds -EXPORT_SYMBOL vmlinux 0x36419f6f tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy -EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x36964564 abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x36a7d8a3 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36c8c828 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x36eb3f1b from_kuid_munged -EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x370545d9 dump_skip -EXPORT_SYMBOL vmlinux 0x3710b847 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport -EXPORT_SYMBOL vmlinux 0x371f2f13 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x372bc87d vfs_link -EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x3753825c lease_get_mtime -EXPORT_SYMBOL vmlinux 0x3769633b sk_net_capable -EXPORT_SYMBOL vmlinux 0x3769c240 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x37998ed1 param_array_ops -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b2adcf find_get_entry -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37d60c29 generic_fillattr -EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 -EXPORT_SYMBOL vmlinux 0x37eec7fd balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x37f6fee5 fsl_lbc_find -EXPORT_SYMBOL vmlinux 0x3804c30f call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x380658a0 sock_register -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381cd139 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x383b8ee4 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x386234bb dma_direct_ops -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x388997b9 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x38982c3e __getblk_slow -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace -EXPORT_SYMBOL vmlinux 0x38dc80b0 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x38ddab5c migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios -EXPORT_SYMBOL vmlinux 0x3903e4c1 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x390aba8c of_device_is_available -EXPORT_SYMBOL vmlinux 0x390ecc4f bdget_disk -EXPORT_SYMBOL vmlinux 0x391b29ab __break_lease -EXPORT_SYMBOL vmlinux 0x39241a6a scsi_host_put -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3960a592 of_get_address -EXPORT_SYMBOL vmlinux 0x39653e79 phy_attach -EXPORT_SYMBOL vmlinux 0x3967ed62 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x39907a7f jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x3993a1c0 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x3999fbbe __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x39a3dc8d inet_sendpage -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39c08721 kobject_set_name -EXPORT_SYMBOL vmlinux 0x39c81857 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x39f6a5c9 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x3a1479dc of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x3a242597 register_framebuffer -EXPORT_SYMBOL vmlinux 0x3a2b0dcd udp_add_offload -EXPORT_SYMBOL vmlinux 0x3a30c472 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x3a4a5823 netdev_state_change -EXPORT_SYMBOL vmlinux 0x3a64345b pci_request_region -EXPORT_SYMBOL vmlinux 0x3a6b3651 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x3a7b67c2 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x3a8ca5bc swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3aa9ab32 xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0x3aaac311 agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0x3b15df4f __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x3b486f28 find_vma -EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b7d7b63 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x3b8b7621 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x3ba8445c inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x3bab109b xfrm_lookup -EXPORT_SYMBOL vmlinux 0x3bb1d13b dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x3c05f938 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x3c2af76c __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x3c356340 km_state_expired -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c42056e request_key_async -EXPORT_SYMBOL vmlinux 0x3c4de405 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x3c524ffd blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x3c567f88 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x3c652b24 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x3c6f4dd7 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x3c72f1ed rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x3c733495 key_validate -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c8f56ae jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x3cacd361 of_get_named_gpio_flags -EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ceab76c blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x3cec948d iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0x3d0eca31 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x3d14c592 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x3d36e96d eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x3d549e86 kernel_read -EXPORT_SYMBOL vmlinux 0x3d5c4308 unlock_page -EXPORT_SYMBOL vmlinux 0x3d6be70d simple_transaction_read -EXPORT_SYMBOL vmlinux 0x3d9da257 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts -EXPORT_SYMBOL vmlinux 0x3dc2598f dev_add_offload -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dd07317 add_disk -EXPORT_SYMBOL vmlinux 0x3de380ca find_get_pages_tag -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e1023e9 empty_aops -EXPORT_SYMBOL vmlinux 0x3e11a2e6 __destroy_inode -EXPORT_SYMBOL vmlinux 0x3e1c39c5 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x3e3576f6 __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x3e7058a8 mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x3e8f5d60 mmc_can_discard -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e9e25bb skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x3ead1d17 __devm_release_region -EXPORT_SYMBOL vmlinux 0x3eb502fe dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x3ebfa3bb xfrm_register_mode -EXPORT_SYMBOL vmlinux 0x3ee93306 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f17a817 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x3f215b5c unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x3f24d195 simple_write_end -EXPORT_SYMBOL vmlinux 0x3f31ab6e seq_puts -EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f47854e pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x3f52b465 blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x3f56e7ba copy_to_iter -EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x3f64255a km_policy_notify -EXPORT_SYMBOL vmlinux 0x3f766093 vme_master_request -EXPORT_SYMBOL vmlinux 0x3fa336a3 param_get_int -EXPORT_SYMBOL vmlinux 0x3fb0df52 netlink_set_err -EXPORT_SYMBOL vmlinux 0x3fb1cf71 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x3fb265c6 pci_set_master -EXPORT_SYMBOL vmlinux 0x3fd79d0c xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x3fdfd303 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free -EXPORT_SYMBOL vmlinux 0x3ff12599 swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0x40143fd6 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x401a8652 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x4048b474 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x404e4203 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x4064eb4b __put_cred -EXPORT_SYMBOL vmlinux 0x406891a4 mmc_add_host -EXPORT_SYMBOL vmlinux 0x4075d3fa __netif_schedule -EXPORT_SYMBOL vmlinux 0x408804cd mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x408bc7f6 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x408c0a0c account_page_redirty -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40bfe137 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d1d073 devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40df67b7 powerpc_debugfs_root -EXPORT_SYMBOL vmlinux 0x40e3f096 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x40f1ad10 tb_ticks_per_jiffy -EXPORT_SYMBOL vmlinux 0x40ffd803 padata_add_cpu -EXPORT_SYMBOL vmlinux 0x41100e64 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x4136742a param_get_charp -EXPORT_SYMBOL vmlinux 0x413d54dd tty_port_init -EXPORT_SYMBOL vmlinux 0x41458ee2 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x41562049 free_buffer_head -EXPORT_SYMBOL vmlinux 0x415d27cf __skb_tx_hash -EXPORT_SYMBOL vmlinux 0x416416b1 of_create_pci_dev -EXPORT_SYMBOL vmlinux 0x416d507c pci_scan_bus -EXPORT_SYMBOL vmlinux 0x4170e0be skb_find_text -EXPORT_SYMBOL vmlinux 0x4182a92b pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x418677ab genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x418cad19 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x419503fe xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x41afac93 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x41b9c88f i2c_verify_client -EXPORT_SYMBOL vmlinux 0x41d56419 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x41f3eca8 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x420f5b0a tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x4210b557 sk_receive_skb -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x421d966f dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x423f6a47 default_file_splice_read -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42574a3f tcf_register_action -EXPORT_SYMBOL vmlinux 0x42585e32 of_get_pci_address -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x425c1fca security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x426536d7 dquot_operations -EXPORT_SYMBOL vmlinux 0x42727de3 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x4280037c find_lock_entry -EXPORT_SYMBOL vmlinux 0x42800d43 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x428372c6 i2c_transfer -EXPORT_SYMBOL vmlinux 0x429be6d3 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42a5af22 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x42aff851 console_stop -EXPORT_SYMBOL vmlinux 0x42bc1021 phy_start -EXPORT_SYMBOL vmlinux 0x42ee7929 param_set_int -EXPORT_SYMBOL vmlinux 0x42fb4141 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x42fce228 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4304820d i2c_use_client -EXPORT_SYMBOL vmlinux 0x430caacd md_flush_request -EXPORT_SYMBOL vmlinux 0x4325eb4a phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0x434372ca inet_add_protocol -EXPORT_SYMBOL vmlinux 0x4350179a ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x43502255 d_make_root -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x43580511 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x43623d2c macio_dev_get -EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 -EXPORT_SYMBOL vmlinux 0x4374cf2a mntput -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all -EXPORT_SYMBOL vmlinux 0x43b1139f mmc_remove_host -EXPORT_SYMBOL vmlinux 0x43b7323c nvm_dev_factory -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x4407fcd2 clear_inode -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x441acfca gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x4434771c __register_chrdev -EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0x443a85a3 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin -EXPORT_SYMBOL vmlinux 0x4462fd7a __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x446fcf99 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x44729d47 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x44928349 netdev_err -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44b9799e sock_from_file -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion -EXPORT_SYMBOL vmlinux 0x450329f6 fddi_type_trans -EXPORT_SYMBOL vmlinux 0x450a55cc trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x452f429b __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x458d98f7 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x458fbe96 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x45a84a8f eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x45b96e7e posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0x45eab777 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x4608ed46 bio_flush_dcache_pages -EXPORT_SYMBOL vmlinux 0x460bf652 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock -EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user -EXPORT_SYMBOL vmlinux 0x462345e1 xmon -EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy -EXPORT_SYMBOL vmlinux 0x462ba569 skb_clone -EXPORT_SYMBOL vmlinux 0x462dbe8d of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x463f6aca bmap -EXPORT_SYMBOL vmlinux 0x46422cd4 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x465757c3 cpu_present_mask -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x466dfeb8 skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x46937996 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x4698666d mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x46a309e0 bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x46a66a50 blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x46d89940 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0x46f9461b cad_pid -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x47142871 param_get_invbool -EXPORT_SYMBOL vmlinux 0x4717babb phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x472db335 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x473f8b61 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x475cd3b3 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x47608718 fence_init -EXPORT_SYMBOL vmlinux 0x4782c950 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x47867e69 scsi_unregister -EXPORT_SYMBOL vmlinux 0x47923be3 fsync_bdev -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x4798b317 bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x47b6857c blk_run_queue -EXPORT_SYMBOL vmlinux 0x47d89dbd of_get_property -EXPORT_SYMBOL vmlinux 0x47f3d4e8 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x47f8c416 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x4815f5d5 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x481ce6ce cpu_active_mask -EXPORT_SYMBOL vmlinux 0x48312389 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x483ac45d flush_signals -EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x4881efab pmac_get_partition -EXPORT_SYMBOL vmlinux 0x488de002 padata_alloc_possible -EXPORT_SYMBOL vmlinux 0x489efad0 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48d98619 ppp_input_error -EXPORT_SYMBOL vmlinux 0x48e138e8 page_readlink -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4909b841 padata_free -EXPORT_SYMBOL vmlinux 0x490db032 skb_store_bits -EXPORT_SYMBOL vmlinux 0x49219563 __vfs_write -EXPORT_SYMBOL vmlinux 0x49309e57 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x49805316 set_disk_ro -EXPORT_SYMBOL vmlinux 0x498cfcd7 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x49a59e7f new_inode -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49bb20d3 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x49c1ed67 read_cache_pages -EXPORT_SYMBOL vmlinux 0x49c775b9 d_drop -EXPORT_SYMBOL vmlinux 0x49c8d1d2 vfs_readf -EXPORT_SYMBOL vmlinux 0x49d1f420 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x49dd1611 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a315c38 bdi_destroy -EXPORT_SYMBOL vmlinux 0x4a381a8a phy_attach_direct -EXPORT_SYMBOL vmlinux 0x4a61e669 tty_port_put -EXPORT_SYMBOL vmlinux 0x4a6afd80 param_ops_charp -EXPORT_SYMBOL vmlinux 0x4aa22c72 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x4aaf27fa iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4ac898a1 phy_connect -EXPORT_SYMBOL vmlinux 0x4af82673 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b14bac8 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x4b471669 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x4b5020da sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove -EXPORT_SYMBOL vmlinux 0x4b83b717 pci_get_slot -EXPORT_SYMBOL vmlinux 0x4b8ee8fb uart_get_divisor -EXPORT_SYMBOL vmlinux 0x4b91189d end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x4b98d83b block_read_full_page -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat -EXPORT_SYMBOL vmlinux 0x4bbbe7df sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x4bbf51a9 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x4bd3e78f pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x4be85a03 memweight -EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add -EXPORT_SYMBOL vmlinux 0x4c03cf06 send_sig -EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c3e5452 flush_old_exec -EXPORT_SYMBOL vmlinux 0x4c565aa8 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x4c77ecfb giveup_altivec -EXPORT_SYMBOL vmlinux 0x4c7f23fa devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x4ca1749e phy_stop -EXPORT_SYMBOL vmlinux 0x4caac915 bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x4cbdd4fc inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x4cc123dd pci_claim_resource -EXPORT_SYMBOL vmlinux 0x4cc2b813 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x4cd7605a pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4cea2b52 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x4cfda89d km_state_notify -EXPORT_SYMBOL vmlinux 0x4d0bd9ac vm_map_ram -EXPORT_SYMBOL vmlinux 0x4d0c816f tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x4d1701a5 mmc_can_reset -EXPORT_SYMBOL vmlinux 0x4d1a7437 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x4d291b13 skb_put -EXPORT_SYMBOL vmlinux 0x4d39c2fb i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask -EXPORT_SYMBOL vmlinux 0x4d45a284 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x4d5d1f2c touch_buffer -EXPORT_SYMBOL vmlinux 0x4d641927 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x4d788f2a bdi_init -EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize -EXPORT_SYMBOL vmlinux 0x4d83b295 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4db31b8c dmam_pool_create -EXPORT_SYMBOL vmlinux 0x4db48a23 generic_file_open -EXPORT_SYMBOL vmlinux 0x4db7bfdb neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4dec6038 memscan -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4e002a30 mmc_flush_cache -EXPORT_SYMBOL vmlinux 0x4e172763 alloc_disk_node -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e395e46 vfs_create -EXPORT_SYMBOL vmlinux 0x4e3aaa3b iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x4e493bed tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e76e7f4 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x4e90d126 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum -EXPORT_SYMBOL vmlinux 0x4ec54937 kfree_put_link -EXPORT_SYMBOL vmlinux 0x4f1ccafe pci_choose_state -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f33f299 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f565327 agp_enable -EXPORT_SYMBOL vmlinux 0x4f5a9f40 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x4f5e1457 mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query -EXPORT_SYMBOL vmlinux 0x4f68b73d __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f7f389f dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x4fb4d47a sk_stream_error -EXPORT_SYMBOL vmlinux 0x4fbec49a vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x4fdd9138 get_super_thawed -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4fe99583 atomic64_dec_if_positive -EXPORT_SYMBOL vmlinux 0x4fec25ea __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x5011add2 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x50178e33 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x5028f832 sget -EXPORT_SYMBOL vmlinux 0x5057f54e mb_cache_shrink -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x507f24eb xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x508058a3 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x508167c3 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x50920bde sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit -EXPORT_SYMBOL vmlinux 0x50ad4382 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x50ba52b6 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x50ca8819 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x50d30f47 bio_advance -EXPORT_SYMBOL vmlinux 0x50d52dfa generic_block_bmap -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x51172617 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x515a9d65 skb_queue_head -EXPORT_SYMBOL vmlinux 0x515e24a7 flush_instruction_cache -EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait -EXPORT_SYMBOL vmlinux 0x51a8a5d6 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x51df4133 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x51e936bc __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup -EXPORT_SYMBOL vmlinux 0x51f8f943 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x51fe397e napi_gro_frags -EXPORT_SYMBOL vmlinux 0x5201d9ed dev_disable_lro -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x5203d418 dput -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x522c019e flush_dcache_icache_page -EXPORT_SYMBOL vmlinux 0x524f28d3 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x526e49b7 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x527830ff pmac_xpram_read -EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x5292963e mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le -EXPORT_SYMBOL vmlinux 0x52d204b0 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x52dc510d of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x52dcec3e devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x52eaaf06 pci_platform_rom -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x531440d5 PDE_DATA -EXPORT_SYMBOL vmlinux 0x532c3243 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x534ab02e rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x534e3131 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x5354ea29 scsi_print_result -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x537fca6e dev_crit -EXPORT_SYMBOL vmlinux 0x53818ce7 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x5397a444 framebuffer_release -EXPORT_SYMBOL vmlinux 0x53afb9d9 register_netdev -EXPORT_SYMBOL vmlinux 0x53beed52 up_write -EXPORT_SYMBOL vmlinux 0x53c0a767 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns -EXPORT_SYMBOL vmlinux 0x53f19527 dentry_path_raw -EXPORT_SYMBOL vmlinux 0x53f600fd xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x5412c7c7 up -EXPORT_SYMBOL vmlinux 0x54354462 input_register_handler -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54408d60 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x5441b77e sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x545cbcde dev_get_stats -EXPORT_SYMBOL vmlinux 0x54977ebe ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54b13b8b blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x54b331e8 mpage_writepages -EXPORT_SYMBOL vmlinux 0x54bb24a4 abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0x54be691e iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x54c1ef74 redraw_screen -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54d5fe13 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54ee36a8 search_binary_handler -EXPORT_SYMBOL vmlinux 0x54f763bb uart_add_one_port -EXPORT_SYMBOL vmlinux 0x55061b5a __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x552d148e mmc_detect_change -EXPORT_SYMBOL vmlinux 0x55340727 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x55431125 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x55467ede fsl_upm_find -EXPORT_SYMBOL vmlinux 0x5553b3a2 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x5568c553 complete -EXPORT_SYMBOL vmlinux 0x5570a7ec __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x5570abd9 sock_i_uid -EXPORT_SYMBOL vmlinux 0x5571ee3f __lock_page -EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table -EXPORT_SYMBOL vmlinux 0x5586efd4 param_set_bint -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55f31033 netdev_warn -EXPORT_SYMBOL vmlinux 0x55fded72 bio_init -EXPORT_SYMBOL vmlinux 0x5613ffbe __page_symlink -EXPORT_SYMBOL vmlinux 0x561dc89c flush_icache_user_range -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x566a0e7f kernel_param_lock -EXPORT_SYMBOL vmlinux 0x567a2b32 set_groups -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x5694c84e mount_pseudo -EXPORT_SYMBOL vmlinux 0x56bb9d30 get_disk -EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57561fbc dqput -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x577541bb simple_transaction_set -EXPORT_SYMBOL vmlinux 0x5793495f netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x57947588 pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0x57a3b5b4 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x57b89604 tty_check_change -EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits -EXPORT_SYMBOL vmlinux 0x57c8703f dev_uc_init -EXPORT_SYMBOL vmlinux 0x57c8da35 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x57d27ae7 of_node_put -EXPORT_SYMBOL vmlinux 0x57d5553c wireless_send_event -EXPORT_SYMBOL vmlinux 0x57def19f blk_peek_request -EXPORT_SYMBOL vmlinux 0x57ed595b netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x57f5ca5f fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x581163ce security_d_instantiate -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58262db5 page_symlink -EXPORT_SYMBOL vmlinux 0x58316801 nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x585823c1 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x58623807 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x58677d8b blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0x5867dee7 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x5875047b jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x589fb448 make_bad_inode -EXPORT_SYMBOL vmlinux 0x58a24c6f blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x58a5e4ab qdisc_destroy -EXPORT_SYMBOL vmlinux 0x58af0d66 genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58eab74c scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x58fa2eaa force_sig -EXPORT_SYMBOL vmlinux 0x58fd6933 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x58fd946e tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x58ffd5c7 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x59020098 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0x591241d0 register_sysctl_table -EXPORT_SYMBOL vmlinux 0x592487b0 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0x5937d898 pid_task -EXPORT_SYMBOL vmlinux 0x59489954 md_write_end -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page -EXPORT_SYMBOL vmlinux 0x5974b47d kill_bdev -EXPORT_SYMBOL vmlinux 0x597e2519 eth_header_parse -EXPORT_SYMBOL vmlinux 0x5985c9a8 dev_mc_del -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59b3378a completion_done -EXPORT_SYMBOL vmlinux 0x59d8223a ioport_resource -EXPORT_SYMBOL vmlinux 0x59e2f645 clear_wb_congested -EXPORT_SYMBOL vmlinux 0x59ff2e70 input_open_device -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a49bf4c scm_fp_dup -EXPORT_SYMBOL vmlinux 0x5a55ad84 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x5a7cd984 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x5a831b20 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x5a951dad ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x5aa4ec4a loop_backing_file -EXPORT_SYMBOL vmlinux 0x5aa75bfe jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x5aaf1c10 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x5ac1ef86 generic_listxattr -EXPORT_SYMBOL vmlinux 0x5ace8e33 icmpv6_send -EXPORT_SYMBOL vmlinux 0x5ad65a0a submit_bh -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5affb9ae ip_ct_attach -EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem -EXPORT_SYMBOL vmlinux 0x5b2eec49 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x5b38ca5c inet_getname -EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present -EXPORT_SYMBOL vmlinux 0x5b46c839 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x5b496a0c d_delete -EXPORT_SYMBOL vmlinux 0x5b6d8079 pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x5b7ba326 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock -EXPORT_SYMBOL vmlinux 0x5b9de2f7 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x5ba58434 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x5bb9daec __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0x5bbb42f1 pipe_unlock -EXPORT_SYMBOL vmlinux 0x5bed12b2 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x5bf093d8 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0x5bf7a30d sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x5c265cba sg_init_one -EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x5c39c86f bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x5c3c7962 xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0x5c3ee3a1 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x5c6fe2fd ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x5c9b126b skb_copy_bits -EXPORT_SYMBOL vmlinux 0x5c9e103a of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x5cb94618 inet_ioctl -EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le -EXPORT_SYMBOL vmlinux 0x5ccb9746 __get_page_tail -EXPORT_SYMBOL vmlinux 0x5cd6799f serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x5ce349b3 nvm_end_io -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d0338be skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x5d225fd6 neigh_xmit -EXPORT_SYMBOL vmlinux 0x5d4f0c8b blk_queue_bounce -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d594e8a device_get_mac_address -EXPORT_SYMBOL vmlinux 0x5d6e30da netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0x5d722046 bio_unmap_user -EXPORT_SYMBOL vmlinux 0x5d76b88b dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x5d7bf66c ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x5d7c5d29 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x5dca6d25 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x5e05e825 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x5e15c00c inode_init_once -EXPORT_SYMBOL vmlinux 0x5e17b31e do_SAK -EXPORT_SYMBOL vmlinux 0x5e27321b register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x5e2db1ed inet_register_protosw -EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up -EXPORT_SYMBOL vmlinux 0x5e3cdffc bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x5e4c6759 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x5e696e7f dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5eb0401e proc_dostring -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec50fb1 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x5ec71e01 __blk_end_request -EXPORT_SYMBOL vmlinux 0x5ecee1c6 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed30a47 scsi_host_set_state -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f1bec1e blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x5f4cf761 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x5f5ec071 netif_device_detach -EXPORT_SYMBOL vmlinux 0x5f5f292e pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x5f754e5a memset -EXPORT_SYMBOL vmlinux 0x5f807a84 d_add_ci -EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base -EXPORT_SYMBOL vmlinux 0x5fc256fd blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x5fc4c3e4 bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5fe26280 tcp_ioctl -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600c585c qdisc_list_add -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602b424e devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x6037d77a up_read -EXPORT_SYMBOL vmlinux 0x603b263c tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x603c6fd7 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x6052b149 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x605e06e3 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x606234b1 fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x6073732c cur_cpu_spec -EXPORT_SYMBOL vmlinux 0x607e08fa d_instantiate -EXPORT_SYMBOL vmlinux 0x608f2bee generic_getxattr -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60d51c56 ab3100_event_register -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x61001364 seq_dentry -EXPORT_SYMBOL vmlinux 0x6105a9b8 finish_no_open -EXPORT_SYMBOL vmlinux 0x61163247 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x6145d1d5 write_cache_pages -EXPORT_SYMBOL vmlinux 0x614faf41 tty_port_hangup -EXPORT_SYMBOL vmlinux 0x6164ab33 ether_setup -EXPORT_SYMBOL vmlinux 0x616b825d dql_init -EXPORT_SYMBOL vmlinux 0x616d04d1 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x616ddeaa uart_match_port -EXPORT_SYMBOL vmlinux 0x617ba9b0 proc_create_data -EXPORT_SYMBOL vmlinux 0x6192d03c register_gifconf -EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x61b35f32 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c03eaa eth_header_cache -EXPORT_SYMBOL vmlinux 0x61ee75a4 path_noexec -EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb -EXPORT_SYMBOL vmlinux 0x61f1af3a bh_submit_read -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le -EXPORT_SYMBOL vmlinux 0x62230028 kern_unmount -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x622d421b ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x623a73bc thaw_super -EXPORT_SYMBOL vmlinux 0x623d7182 _chrp_type -EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x628332e8 pmu_power_flags -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x629ac36a __pci_register_driver -EXPORT_SYMBOL vmlinux 0x62a6fc96 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x62b519e4 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x62c2650b devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0x62c423d8 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x62e5e9e8 set_user_nice -EXPORT_SYMBOL vmlinux 0x630eb1b0 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x632a4497 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x6333360b __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x634ff9e9 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0x63669b53 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x6381c383 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x63a5e1ac genphy_resume -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63dff56d register_md_personality -EXPORT_SYMBOL vmlinux 0x63e22e4c pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f81afd input_free_device -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64126e98 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x64245c6a d_splice_alias -EXPORT_SYMBOL vmlinux 0x6438a70d skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x643d1a33 input_unregister_device -EXPORT_SYMBOL vmlinux 0x644d9479 nf_log_trace -EXPORT_SYMBOL vmlinux 0x64508047 sk_common_release -EXPORT_SYMBOL vmlinux 0x64565307 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x645dc03f tcf_exts_change -EXPORT_SYMBOL vmlinux 0x645fa519 param_get_string -EXPORT_SYMBOL vmlinux 0x646cc6ab pmu_poll -EXPORT_SYMBOL vmlinux 0x647a0b8e inet_recvmsg -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64b379ac inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x64b82edb dev_set_group -EXPORT_SYMBOL vmlinux 0x64be8782 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x64cf1afa cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x650696fb done_path_create -EXPORT_SYMBOL vmlinux 0x650ec6a7 macio_request_resources -EXPORT_SYMBOL vmlinux 0x65105f81 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x6517ada4 vme_dma_request -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x651e167e vfs_symlink -EXPORT_SYMBOL vmlinux 0x651f455c tty_kref_put -EXPORT_SYMBOL vmlinux 0x6524dbbe eth_header -EXPORT_SYMBOL vmlinux 0x6526c1d1 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x65400222 __irq_offset_value -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x6540ac76 mmc_can_erase -EXPORT_SYMBOL vmlinux 0x65568ccb tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x656c6d4a vfs_rmdir -EXPORT_SYMBOL vmlinux 0x656ccddf inet_frags_fini -EXPORT_SYMBOL vmlinux 0x656dde79 inet6_getname -EXPORT_SYMBOL vmlinux 0x65721a29 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x659e9bd1 nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x65a3f59b bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x65b6e9f6 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x65d474a1 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x65d9641a mpage_readpage -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65deeae3 skb_pad -EXPORT_SYMBOL vmlinux 0x65e128ac cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x66140827 napi_get_frags -EXPORT_SYMBOL vmlinux 0x66227eae vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x663c065a iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x6642a92f stop_tty -EXPORT_SYMBOL vmlinux 0x6649d6e8 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x666de973 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x6673d048 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x668a8b4d kmap_to_page -EXPORT_SYMBOL vmlinux 0x669b1f77 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x66b11e35 md_check_recovery -EXPORT_SYMBOL vmlinux 0x66cbf14b pmac_xpram_write -EXPORT_SYMBOL vmlinux 0x66f33bd7 input_event -EXPORT_SYMBOL vmlinux 0x66fc0259 seq_lseek -EXPORT_SYMBOL vmlinux 0x67016c1d md_register_thread -EXPORT_SYMBOL vmlinux 0x672882b2 gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x6752f5f5 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x6768805a skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x677f0270 param_get_ushort -EXPORT_SYMBOL vmlinux 0x679a4771 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x679cd8cb netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c568ea read_dev_sector -EXPORT_SYMBOL vmlinux 0x67d57cc4 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x67df3f66 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x67f30e86 init_task -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x6817c6e8 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x68328de6 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x6855c7b8 swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit -EXPORT_SYMBOL vmlinux 0x6862d131 param_ops_ullong -EXPORT_SYMBOL vmlinux 0x687360f3 mount_subtree -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x688db64c tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68ae8d22 inode_init_always -EXPORT_SYMBOL vmlinux 0x68b792f5 drop_super -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68cc0a80 soft_cursor -EXPORT_SYMBOL vmlinux 0x68e3ea73 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x691b8227 rtnl_notify -EXPORT_SYMBOL vmlinux 0x691ef2ec gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x692f524b get_pci_dma_ops -EXPORT_SYMBOL vmlinux 0x6941efd8 set_anon_super -EXPORT_SYMBOL vmlinux 0x6953a247 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x698d19d3 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x699f4cbc fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be -EXPORT_SYMBOL vmlinux 0x69a3517a dma_common_mmap -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69b5c341 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x69b90533 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x69bb7b89 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x69c3671e ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x69d7e5b8 __debugger_ipi -EXPORT_SYMBOL vmlinux 0x69d8ad0a filp_open -EXPORT_SYMBOL vmlinux 0x69dd8904 dget_parent -EXPORT_SYMBOL vmlinux 0x69ecfdc8 bdget -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a079f35 pci_domain_nr -EXPORT_SYMBOL vmlinux 0x6a0dcf04 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x6a3e34de mutex_unlock -EXPORT_SYMBOL vmlinux 0x6a436caa zero_fill_bio -EXPORT_SYMBOL vmlinux 0x6a447323 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x6a49f523 netif_device_attach -EXPORT_SYMBOL vmlinux 0x6a521f04 kern_path_create -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a637b9e scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a9069fd vfs_llseek -EXPORT_SYMBOL vmlinux 0x6ac131de nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b096f97 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x6b1b08ad skb_checksum_help -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b1e1f03 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x6b1f7590 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b4f43fb bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x6b538c24 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x6b5bfefa swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free -EXPORT_SYMBOL vmlinux 0x6b692e5d xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x6b870a71 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x6b8b0451 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x6ba06119 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x6ba6a027 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x6baa6dc4 task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0x6bbb1e7b phy_device_free -EXPORT_SYMBOL vmlinux 0x6bc15957 __frontswap_store -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bda0860 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6bde3dea skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x6bff08df datagram_poll -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn -EXPORT_SYMBOL vmlinux 0x6c2018f2 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x6c260d55 sg_miter_start -EXPORT_SYMBOL vmlinux 0x6c26393d backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x6c33d0fd check_disk_size_change -EXPORT_SYMBOL vmlinux 0x6c3da51e keyring_alloc -EXPORT_SYMBOL vmlinux 0x6c4886c0 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c5f55a9 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c73def3 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x6c7bc1f0 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x6c800d3f devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x6c80f303 path_get -EXPORT_SYMBOL vmlinux 0x6c8d730a zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x6ca1d1a4 atomic64_read -EXPORT_SYMBOL vmlinux 0x6ca1dfd2 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x6cb15889 __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear -EXPORT_SYMBOL vmlinux 0x6cb9b4bf of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x6cbaccbc pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x6cca9f47 nf_log_unset -EXPORT_SYMBOL vmlinux 0x6cd20f1c __napi_complete -EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6cdef95b led_blink_set -EXPORT_SYMBOL vmlinux 0x6ce9daa5 mem_map -EXPORT_SYMBOL vmlinux 0x6ceb1b74 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x6cfaa94b __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x6d05f38b neigh_lookup -EXPORT_SYMBOL vmlinux 0x6d0ee505 bioset_create -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d1397b0 xfrm_input -EXPORT_SYMBOL vmlinux 0x6d14a65b __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x6d16f38b blkdev_fsync -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d29e472 skb_append -EXPORT_SYMBOL vmlinux 0x6d2dd4b9 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x6d65bb5c mmc_of_parse -EXPORT_SYMBOL vmlinux 0x6d6fd222 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put -EXPORT_SYMBOL vmlinux 0x6d7db613 sock_edemux -EXPORT_SYMBOL vmlinux 0x6d7f39aa locks_init_lock -EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns -EXPORT_SYMBOL vmlinux 0x6dc82730 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e03126b mmc_start_req -EXPORT_SYMBOL vmlinux 0x6e07d3d3 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x6e1a8f64 __quota_error -EXPORT_SYMBOL vmlinux 0x6e2e340c tty_throttle -EXPORT_SYMBOL vmlinux 0x6e35fd2e d_invalidate -EXPORT_SYMBOL vmlinux 0x6e3968a3 passthru_features_check -EXPORT_SYMBOL vmlinux 0x6e3b819f sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x6e3e7297 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x6e45d8a6 user_revoke -EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e8cc8bc seq_printf -EXPORT_SYMBOL vmlinux 0x6e99df8d xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x6e9c71a4 get_agp_version -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6eb68864 init_buffer -EXPORT_SYMBOL vmlinux 0x6eb74dff proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x6ec327ff simple_fill_super -EXPORT_SYMBOL vmlinux 0x6ec8a823 serio_interrupt -EXPORT_SYMBOL vmlinux 0x6ecd7bb2 dm_register_target -EXPORT_SYMBOL vmlinux 0x6ef10f3d grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x6f15b23f blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f25dd94 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x6f2ac9f9 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x6f33a460 vlan_vid_add -EXPORT_SYMBOL vmlinux 0x6f34ab90 sg_miter_next -EXPORT_SYMBOL vmlinux 0x6f381391 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x6f425bb3 proto_register -EXPORT_SYMBOL vmlinux 0x6f5d5669 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x6f5ec540 set_nlink -EXPORT_SYMBOL vmlinux 0x6f6cdf88 cdrom_release -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6f914017 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x6f92e2c4 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fc0f690 security_mmap_file -EXPORT_SYMBOL vmlinux 0x6fc8dd55 nf_reinject -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x700afe75 of_root -EXPORT_SYMBOL vmlinux 0x7015daec padata_do_parallel -EXPORT_SYMBOL vmlinux 0x70248c47 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x702d46a5 vme_slot_num -EXPORT_SYMBOL vmlinux 0x70455804 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x704ed4a5 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x706cade4 padata_alloc -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x706e3af1 vga_client_register -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x70957abb dev_load -EXPORT_SYMBOL vmlinux 0x70978a20 unregister_key_type -EXPORT_SYMBOL vmlinux 0x70aa3afb pci_iomap_range -EXPORT_SYMBOL vmlinux 0x70aff1f0 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x70d888b7 __debugger_fault_handler -EXPORT_SYMBOL vmlinux 0x70d97bf7 import_iovec -EXPORT_SYMBOL vmlinux 0x70e84bd2 read_cache_page -EXPORT_SYMBOL vmlinux 0x70eaa3c5 d_alloc -EXPORT_SYMBOL vmlinux 0x70f86c70 pmu_queue_request -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x71197ca5 pmac_register_agp_pm -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x713240bf peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x714e3f59 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x716ad4b7 get_tz_trend -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71a19cc9 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71adc279 pci_find_bus -EXPORT_SYMBOL vmlinux 0x71b69dfd unregister_md_personality -EXPORT_SYMBOL vmlinux 0x71c90087 memcmp -EXPORT_SYMBOL vmlinux 0x71d93068 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x71f113ff mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x71fccf6c tcp_shutdown -EXPORT_SYMBOL vmlinux 0x71fe8d77 sock_no_connect -EXPORT_SYMBOL vmlinux 0x71ffe171 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x721cf5bd kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0x722087ee register_cdrom -EXPORT_SYMBOL vmlinux 0x7236a53f __get_user_pages -EXPORT_SYMBOL vmlinux 0x726f3883 vme_slave_request -EXPORT_SYMBOL vmlinux 0x728807d7 nvm_erase_blk -EXPORT_SYMBOL vmlinux 0x72a0e6f2 __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x72afa016 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b54931 phy_detach -EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x72e1b907 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f2d33b fb_set_var -EXPORT_SYMBOL vmlinux 0x7310784b ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x73224d27 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x7341253c napi_consume_skb -EXPORT_SYMBOL vmlinux 0x73435327 del_gendisk -EXPORT_SYMBOL vmlinux 0x734994c1 swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0x734da9b2 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue -EXPORT_SYMBOL vmlinux 0x736ad3ea netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x73710a3e dqstats -EXPORT_SYMBOL vmlinux 0x7379570b pci_set_power_state -EXPORT_SYMBOL vmlinux 0x737fcea9 do_splice_direct -EXPORT_SYMBOL vmlinux 0x73979de6 atomic64_or -EXPORT_SYMBOL vmlinux 0x739e40a9 tc_classify -EXPORT_SYMBOL vmlinux 0x73b9ee5a max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x73c89e95 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x7401294c set_create_files_as -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x741145f1 set_security_override -EXPORT_SYMBOL vmlinux 0x7428c43e dst_destroy -EXPORT_SYMBOL vmlinux 0x74309ed5 mdio_bus_type -EXPORT_SYMBOL vmlinux 0x745dec98 neigh_for_each -EXPORT_SYMBOL vmlinux 0x7463ca22 bitmap_unplug -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x7485e93b kfree_skb -EXPORT_SYMBOL vmlinux 0x749810fb netdev_info -EXPORT_SYMBOL vmlinux 0x74b1867a twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74d7c708 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x74dbb837 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x74df689f mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74fc82d3 lock_rename -EXPORT_SYMBOL vmlinux 0x74fe8730 sys_ctrler -EXPORT_SYMBOL vmlinux 0x7502c0c0 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x75469341 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x75506ecc simple_empty -EXPORT_SYMBOL vmlinux 0x755bb473 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x756dd160 start_thread -EXPORT_SYMBOL vmlinux 0x75745ea8 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x757b9a91 page_address -EXPORT_SYMBOL vmlinux 0x757cdc99 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0x758421af sock_no_accept -EXPORT_SYMBOL vmlinux 0x75936382 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 -EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0x75a4ea63 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x75aba1eb simple_release_fs -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75d9764b mntget -EXPORT_SYMBOL vmlinux 0x75e2ec4a iput -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760f2e0c dma_find_channel -EXPORT_SYMBOL vmlinux 0x762d8eef netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x7638c3ab sk_dst_check -EXPORT_SYMBOL vmlinux 0x763c930e netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x765314e0 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x7655c9b2 __kfree_skb -EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append -EXPORT_SYMBOL vmlinux 0x768857fe dm_io -EXPORT_SYMBOL vmlinux 0x768b1178 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x768c68a3 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x76b4759b md_unregister_thread -EXPORT_SYMBOL vmlinux 0x76cd31d1 __dst_free -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76d618cf ip_check_defrag -EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be -EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order -EXPORT_SYMBOL vmlinux 0x76fc58b3 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x76fda1ea vfs_mknod -EXPORT_SYMBOL vmlinux 0x772dec11 generic_make_request -EXPORT_SYMBOL vmlinux 0x7736e4ff __scm_destroy -EXPORT_SYMBOL vmlinux 0x775a130e __sg_free_table -EXPORT_SYMBOL vmlinux 0x776f1fe7 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x777898f2 register_filesystem -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x779d2b64 nvm_get_blk -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77d7072e current_fs_time -EXPORT_SYMBOL vmlinux 0x77e166cc ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x77f633d4 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x77f68c20 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x77fcac63 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x7818980e agp_collect_device_status -EXPORT_SYMBOL vmlinux 0x782567ec memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x7866e90d dev_change_flags -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788fe103 iomem_resource -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78b44457 pci_enable_device -EXPORT_SYMBOL vmlinux 0x78b7c882 scsi_print_command -EXPORT_SYMBOL vmlinux 0x78c3034c __scsi_add_device -EXPORT_SYMBOL vmlinux 0x78c8c139 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x78cb439e sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x78cdc7b4 iunique -EXPORT_SYMBOL vmlinux 0x78cff768 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e610d6 dquot_drop -EXPORT_SYMBOL vmlinux 0x7909d420 deactivate_super -EXPORT_SYMBOL vmlinux 0x791df421 agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0x7955e416 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x7955f668 devm_ioremap -EXPORT_SYMBOL vmlinux 0x795bb051 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x7964836e param_set_ushort -EXPORT_SYMBOL vmlinux 0x796bf6ca seq_path -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x798703de ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x79a87728 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79b2539f vlan_vid_del -EXPORT_SYMBOL vmlinux 0x79bffb27 sync_filesystem -EXPORT_SYMBOL vmlinux 0x79cd7164 fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0x79d7bc8b padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x79e3df99 of_get_next_parent -EXPORT_SYMBOL vmlinux 0x79e7ea55 tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x79f13b2b skb_seq_read -EXPORT_SYMBOL vmlinux 0x7a14bb17 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 -EXPORT_SYMBOL vmlinux 0x7a33faa7 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x7a375aa7 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a4c9b7d udp_disconnect -EXPORT_SYMBOL vmlinux 0x7a6271bb jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x7a7ef8b6 mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0x7a82962f serio_close -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa9364b load_nls_default -EXPORT_SYMBOL vmlinux 0x7aae179b __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7af0e7e4 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress -EXPORT_SYMBOL vmlinux 0x7b1b14ad console_start -EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x7b317627 skb_make_writable -EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7b61cbde dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x7b6759a9 simple_dname -EXPORT_SYMBOL vmlinux 0x7badf8c6 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x7be4827c pci_dram_offset -EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x7c01e931 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x7c0455ec abx500_remove_ops -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c2482d4 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x7c34aa5b scsi_target_resume -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c464557 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x7c652230 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x7c8cb302 drop_nlink -EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7caa6b9b mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cc83752 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce563e3 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x7ceed068 simple_readpage -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d35f688 pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0x7d3fbe0b security_path_rename -EXPORT_SYMBOL vmlinux 0x7d677f56 ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0x7d6ed8ff dm_get_device -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d77df46 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x7d881303 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x7d8aab32 component_match_add -EXPORT_SYMBOL vmlinux 0x7d9a00ba sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x7dac0290 dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x7dc02b1d dquot_commit -EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max -EXPORT_SYMBOL vmlinux 0x7ddee76b backlight_device_register -EXPORT_SYMBOL vmlinux 0x7de0409d mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x7de6435b simple_rename -EXPORT_SYMBOL vmlinux 0x7de9108e bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x7def5992 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7e1e5605 tty_mutex -EXPORT_SYMBOL vmlinux 0x7e24a5b7 get_super -EXPORT_SYMBOL vmlinux 0x7e4e6e3b jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x7e58b7e8 put_cmsg -EXPORT_SYMBOL vmlinux 0x7e6caa28 kill_pgrp -EXPORT_SYMBOL vmlinux 0x7e6fe028 bdi_register -EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress -EXPORT_SYMBOL vmlinux 0x7e919a17 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x7eb7185b register_quota_format -EXPORT_SYMBOL vmlinux 0x7ec6af05 key_revoke -EXPORT_SYMBOL vmlinux 0x7ec9c93f macio_unregister_driver -EXPORT_SYMBOL vmlinux 0x7ee59de0 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7ee73c0c memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0x7eed816e jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x7effdca8 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f3e5238 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x7f5696c9 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x7f60dffc __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f687c79 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x7f788c58 i2c_del_driver -EXPORT_SYMBOL vmlinux 0x7f79b6fe block_invalidatepage -EXPORT_SYMBOL vmlinux 0x7fab37b0 current_in_userns -EXPORT_SYMBOL vmlinux 0x7fca781e fifo_set_limit -EXPORT_SYMBOL vmlinux 0x7fd56c27 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x8004f660 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x8009c2e4 param_set_long -EXPORT_SYMBOL vmlinux 0x800b1b34 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x801bde26 vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x801e0e5b pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x80439f78 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x80619d61 blk_register_region -EXPORT_SYMBOL vmlinux 0x806266da of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x80759b9a mac_find_mode -EXPORT_SYMBOL vmlinux 0x80b3a3ac fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0x80c41e9c frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80cabcd3 vm_event_states -EXPORT_SYMBOL vmlinux 0x80d422d6 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80f3f5e7 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x80f7f52e neigh_app_ns -EXPORT_SYMBOL vmlinux 0x8100ff61 bioset_free -EXPORT_SYMBOL vmlinux 0x81246c17 abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x8130e769 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x8135cad9 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x81819480 cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x81ac24c1 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x81ac5cf6 d_genocide -EXPORT_SYMBOL vmlinux 0x81ae9ebb __inode_permission -EXPORT_SYMBOL vmlinux 0x81bafa58 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x820d57f9 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x8218ec2e skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback -EXPORT_SYMBOL vmlinux 0x824ca97e blk_init_queue -EXPORT_SYMBOL vmlinux 0x825d0287 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x827b43ac __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82857433 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x829af419 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82cd540a atomic64_and -EXPORT_SYMBOL vmlinux 0x82d28154 tty_port_close_start -EXPORT_SYMBOL vmlinux 0x82d8cafb uart_resume_port -EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x82ede44c netdev_update_features -EXPORT_SYMBOL vmlinux 0x82f6c4ad blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x83504650 audit_log -EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x838859dd mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83a06a2a dev_get_flags -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83d073ca pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x83f85469 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x8430836e phy_driver_register -EXPORT_SYMBOL vmlinux 0x844404cf ISA_DMA_THRESHOLD -EXPORT_SYMBOL vmlinux 0x84530cda kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x8470ad73 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x84a69fdc vme_slave_get -EXPORT_SYMBOL vmlinux 0x84b183ae strncmp -EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock -EXPORT_SYMBOL vmlinux 0x84c9423f get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x84d77c4a iterate_fd -EXPORT_SYMBOL vmlinux 0x84ddb0e8 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x84f0e7cd pci_scan_slot -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x8541bccc intercept_table -EXPORT_SYMBOL vmlinux 0x854e1c0b sg_nents -EXPORT_SYMBOL vmlinux 0x855a1ee4 of_scan_pci_bridge -EXPORT_SYMBOL vmlinux 0x855aa51b xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x856349b1 mount_nodev -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x857a9f4d elv_unregister_queue -EXPORT_SYMBOL vmlinux 0x85834aa1 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x858502f6 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x85874166 pcim_iomap -EXPORT_SYMBOL vmlinux 0x85a4de67 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85b651a9 serio_rescan -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85ea45b5 inet_frag_find -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x86095b75 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x86269d41 neigh_destroy -EXPORT_SYMBOL vmlinux 0x86360e2f misc_register -EXPORT_SYMBOL vmlinux 0x8643717b param_set_bool -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x867d8ce6 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86967843 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x86a8d30b vme_bus_type -EXPORT_SYMBOL vmlinux 0x86aebbd7 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x871ece12 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x8745bbfb phy_start_interrupts -EXPORT_SYMBOL vmlinux 0x874e9511 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x875ad9cc uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x875b71c5 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x877e965d xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x87848875 revalidate_disk -EXPORT_SYMBOL vmlinux 0x87881701 write_inode_now -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x87a9c910 mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0x87ab4d37 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x87b7a816 __genl_register_family -EXPORT_SYMBOL vmlinux 0x87bebd83 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x87c62cdb macio_release_resources -EXPORT_SYMBOL vmlinux 0x87eeed85 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x87f0b644 flow_cache_init -EXPORT_SYMBOL vmlinux 0x87fd2a6f tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x8826c866 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x883437ac dev_uc_flush -EXPORT_SYMBOL vmlinux 0x8835b122 d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0x8862254a __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x886afe7c padata_start -EXPORT_SYMBOL vmlinux 0x88937e52 prepare_binprm -EXPORT_SYMBOL vmlinux 0x88a7b8e8 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x88ae0b81 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x88b5a75a d_find_any_alias -EXPORT_SYMBOL vmlinux 0x88b8aee6 open_check_o_direct -EXPORT_SYMBOL vmlinux 0x88c0ed29 msi_bitmap_free_hwirqs -EXPORT_SYMBOL vmlinux 0x88cd005c always_delete_dentry -EXPORT_SYMBOL vmlinux 0x88e12d5e sock_create_kern -EXPORT_SYMBOL vmlinux 0x88e5b62a devm_gpiod_get -EXPORT_SYMBOL vmlinux 0x88eadd49 dev_uc_add -EXPORT_SYMBOL vmlinux 0x88f63e95 put_io_context -EXPORT_SYMBOL vmlinux 0x8902fd50 file_path -EXPORT_SYMBOL vmlinux 0x8908ddcd linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x890fbaec devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy -EXPORT_SYMBOL vmlinux 0x89353988 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x893c463f eth_change_mtu -EXPORT_SYMBOL vmlinux 0x89554056 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x895d3b60 ihold -EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x898c5804 qdisc_reset -EXPORT_SYMBOL vmlinux 0x89a2bb54 dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0x89b1ce85 phy_disconnect -EXPORT_SYMBOL vmlinux 0x89b3107b isa_mem_base -EXPORT_SYMBOL vmlinux 0x89c362dd kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x89c53fe3 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x89cc91bd agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x89e987bc nvm_register -EXPORT_SYMBOL vmlinux 0x89fa7bb6 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x8a00c89a swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x8a0d2256 __pagevec_release -EXPORT_SYMBOL vmlinux 0x8a0e01fd generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a5acf7d dquot_enable -EXPORT_SYMBOL vmlinux 0x8a5c1f72 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x8a656263 dev_printk -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa3f971 tcp_prot -EXPORT_SYMBOL vmlinux 0x8aac11f1 kobject_add -EXPORT_SYMBOL vmlinux 0x8ab4079e atomic64_add -EXPORT_SYMBOL vmlinux 0x8ac28c62 dma_set_mask -EXPORT_SYMBOL vmlinux 0x8acfa3c6 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x8ad7e7d0 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x8ade86a1 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x8ae74dec inet6_bind -EXPORT_SYMBOL vmlinux 0x8af7e255 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x8af80779 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x8b3300a5 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x8b340c5e padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b896c89 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x8b929d38 freeze_bdev -EXPORT_SYMBOL vmlinux 0x8b9b1706 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x8b9bd81d eth_gro_receive -EXPORT_SYMBOL vmlinux 0x8bab4984 page_cache_next_hole -EXPORT_SYMBOL vmlinux 0x8bb04e0a eth_type_trans -EXPORT_SYMBOL vmlinux 0x8bdfa553 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x8be600ed lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0x8be8a85a vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x8bff6ff7 kill_fasync -EXPORT_SYMBOL vmlinux 0x8c137d50 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 -EXPORT_SYMBOL vmlinux 0x8c241355 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x8c320921 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x8c3b0688 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x8c5012f1 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c66a7f0 tcp_prequeue -EXPORT_SYMBOL vmlinux 0x8c70f4b0 block_write_end -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cd31456 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 -EXPORT_SYMBOL vmlinux 0x8d093b5f netpoll_setup -EXPORT_SYMBOL vmlinux 0x8d1319a2 cfb_imageblit -EXPORT_SYMBOL vmlinux 0x8d20685f scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x8d29502c put_filp -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x8d6cffe3 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d9f608c ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x8da22db8 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x8da7b8fc blk_delay_queue -EXPORT_SYMBOL vmlinux 0x8da8a349 ps2_drain -EXPORT_SYMBOL vmlinux 0x8daae7db tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create -EXPORT_SYMBOL vmlinux 0x8df5da63 memstart_addr -EXPORT_SYMBOL vmlinux 0x8e141e6f mfd_add_devices -EXPORT_SYMBOL vmlinux 0x8e2cda7a scmd_printk -EXPORT_SYMBOL vmlinux 0x8e4f8bfa mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x8e50ec2c tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x8e56a962 simple_setattr -EXPORT_SYMBOL vmlinux 0x8e6ce600 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e75cf3b inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x8ea2910a in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x8eaffe14 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x8eb09113 pmac_suspend_agp_for_card -EXPORT_SYMBOL vmlinux 0x8ebc9ffa noop_fsync -EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x8ec5b4c6 swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0x8ed29d6e vfs_iter_read -EXPORT_SYMBOL vmlinux 0x8f399ec2 scsi_register -EXPORT_SYMBOL vmlinux 0x8f40b3b2 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x8f545142 replace_mount_options -EXPORT_SYMBOL vmlinux 0x8f736c21 key_put -EXPORT_SYMBOL vmlinux 0x8f7ae29c get_io_context -EXPORT_SYMBOL vmlinux 0x8f7b6a62 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x8f8eab97 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x8f8fbac8 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x8fa2a2c6 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x8fa91730 dst_release -EXPORT_SYMBOL vmlinux 0x8fb368f8 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x8fbf37e0 profile_pc -EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0x8fd443d7 address_space_init_once -EXPORT_SYMBOL vmlinux 0x8ff458e2 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x8ffa29e0 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 -EXPORT_SYMBOL vmlinux 0x900d7df1 xattr_full_name -EXPORT_SYMBOL vmlinux 0x902e00a6 elv_rb_del -EXPORT_SYMBOL vmlinux 0x902ecd23 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x9030c02b mapping_tagged -EXPORT_SYMBOL vmlinux 0x905d8698 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x909909e1 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x90a319d1 security_path_rmdir -EXPORT_SYMBOL vmlinux 0x90a6a944 audit_log_start -EXPORT_SYMBOL vmlinux 0x90be64ef max8925_reg_write -EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x90c9edba of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x90cea519 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x90ebeb06 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x90f1b023 msi_bitmap_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0x90f904ea pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x9102f903 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x910e248c swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x911468c2 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x9122f88b tcp_read_sock -EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay -EXPORT_SYMBOL vmlinux 0x91407a97 tso_build_data -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x915d6a5a touch_atime -EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec -EXPORT_SYMBOL vmlinux 0x91621d6a allocate_resource -EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x917f310b elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0x919c19ba xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x91c8850e __sb_start_write -EXPORT_SYMBOL vmlinux 0x91cf4d65 clear_user_page -EXPORT_SYMBOL vmlinux 0x91e11e74 blk_start_queue -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x91fcd98c bio_endio -EXPORT_SYMBOL vmlinux 0x9214f6e2 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x921ae8c3 key_invalidate -EXPORT_SYMBOL vmlinux 0x9220b54e ata_port_printk -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x9243f5de devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x928e3442 dst_discard_out -EXPORT_SYMBOL vmlinux 0x92988eff vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x92a636be mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0x92a8fa72 pci_disable_msix -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92b2b005 arp_xmit -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x93072164 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x9309de94 cuda_request -EXPORT_SYMBOL vmlinux 0x931cdd20 of_match_device -EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x9330cb9f sg_alloc_table -EXPORT_SYMBOL vmlinux 0x935cbbd5 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x936524bc twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93836d80 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x9393ba52 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b712a9 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x93d7d233 freeze_super -EXPORT_SYMBOL vmlinux 0x93e61e8a blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x93e93334 of_device_alloc -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x9405ecd7 generic_permission -EXPORT_SYMBOL vmlinux 0x940a2344 vfs_whiteout -EXPORT_SYMBOL vmlinux 0x940eecac is_bad_inode -EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x941de56b alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x9422d38f pipe_lock -EXPORT_SYMBOL vmlinux 0x945b16e8 sock_create_lite -EXPORT_SYMBOL vmlinux 0x94884e4b uart_register_driver -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x949d7f5e param_set_byte -EXPORT_SYMBOL vmlinux 0x94b2590f vme_free_consistent -EXPORT_SYMBOL vmlinux 0x94cbd061 dql_reset -EXPORT_SYMBOL vmlinux 0x94d165eb bio_copy_data -EXPORT_SYMBOL vmlinux 0x94d7495a i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x94da2b46 inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0x94ed52aa blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x9500f58a __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x9511d13d jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x9514151a _mcount -EXPORT_SYMBOL vmlinux 0x9523a9cb input_get_keycode -EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb -EXPORT_SYMBOL vmlinux 0x95276667 d_rehash -EXPORT_SYMBOL vmlinux 0x953bb616 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x954d9fdc tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x95da9761 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x95dc5816 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x96028311 iterate_mounts -EXPORT_SYMBOL vmlinux 0x960a59b2 __frontswap_load -EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x96131bb3 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x9629c90f blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x962aa646 security_task_getsecid -EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x96573d08 mount_ns -EXPORT_SYMBOL vmlinux 0x966960eb of_get_mac_address -EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x96a525a7 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x96b13a52 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x96c13886 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x96c74930 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96cd2e31 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x96d0a8a4 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x96d23c3b agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x96dbcca2 ioremap_prot -EXPORT_SYMBOL vmlinux 0x96dce98c resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x97255bdf strlen -EXPORT_SYMBOL vmlinux 0x9727a1db page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0x973e1c3b cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x975984a9 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x977dde82 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x979111ba __blk_end_request_all -EXPORT_SYMBOL vmlinux 0x9793bbbc reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x979aa5eb blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x97ad64db sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x97d29065 km_report -EXPORT_SYMBOL vmlinux 0x97dd04e4 filemap_fault -EXPORT_SYMBOL vmlinux 0x97ee65bc vfs_writef -EXPORT_SYMBOL vmlinux 0x97fd6b01 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x9845fc47 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x98500d9f pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x985ce737 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x98697056 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x9871b174 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x98765acf fsnotify_put_group -EXPORT_SYMBOL vmlinux 0x987a871e flush_tlb_mm -EXPORT_SYMBOL vmlinux 0x98b192db ip_defrag -EXPORT_SYMBOL vmlinux 0x98bb8641 km_new_mapping -EXPORT_SYMBOL vmlinux 0x98c424d4 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x98fe7882 DMA_MODE_READ -EXPORT_SYMBOL vmlinux 0x9905562f blk_get_queue -EXPORT_SYMBOL vmlinux 0x9919f582 invalidate_partition -EXPORT_SYMBOL vmlinux 0x991eb7e7 wake_up_process -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x9944658d vc_resize -EXPORT_SYMBOL vmlinux 0x9945575d __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9951b8ef blk_rq_init -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x9997c4e8 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x99bb8806 memmove -EXPORT_SYMBOL vmlinux 0x99bc1d10 file_remove_privs -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99dae75a neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x99dcf71c kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0x99edb710 netlink_ack -EXPORT_SYMBOL vmlinux 0x9a051377 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a3533f1 generic_writepages -EXPORT_SYMBOL vmlinux 0x9a357722 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x9a54c074 tcp_child_process -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9af366fd scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x9b03b931 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x9b202980 __check_sticky -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b3b34c4 pci_bus_get -EXPORT_SYMBOL vmlinux 0x9b4b7e9b nobh_write_begin -EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b71b625 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x9b741310 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x9b9a41c0 rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bbbd2ef kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x9bce482f __release_region -EXPORT_SYMBOL vmlinux 0x9bd77500 vmap -EXPORT_SYMBOL vmlinux 0x9bd94abb request_firmware -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9bebafc5 bdgrab -EXPORT_SYMBOL vmlinux 0x9c08ec3a cdev_init -EXPORT_SYMBOL vmlinux 0x9c25a74a dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x9c2b4545 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x9c30cd9f netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x9c314e22 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x9c3c8001 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x9c51e18e devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x9c5b9d1a __dquot_transfer -EXPORT_SYMBOL vmlinux 0x9c7887cf dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cc70a2f sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x9ce3f83f nvram_write_byte -EXPORT_SYMBOL vmlinux 0x9ce7b4e4 swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x9ce9782b kill_pid -EXPORT_SYMBOL vmlinux 0x9cf9f93c kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d0e49aa devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs -EXPORT_SYMBOL vmlinux 0x9d1daf72 fb_show_logo -EXPORT_SYMBOL vmlinux 0x9d2cd2ad dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0x9d342000 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d669763 memcpy -EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x9d8a6f0d from_kuid -EXPORT_SYMBOL vmlinux 0x9db5e90e skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x9db8a74c __devm_request_region -EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e1aa3ff of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x9e1cfc90 ioremap_wc -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e60c5ff ip_options_compile -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e672ff6 scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e8d000e __sb_end_write -EXPORT_SYMBOL vmlinux 0x9e8de950 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea0c3e2 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x9eca0d0f blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x9ecdc75b security_inode_permission -EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x9ef32813 revert_creds -EXPORT_SYMBOL vmlinux 0x9ef8f6c3 agp_put_bridge -EXPORT_SYMBOL vmlinux 0x9f0a9d43 down_write_trylock -EXPORT_SYMBOL vmlinux 0x9f1e26d8 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x9f409b71 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f79d771 unregister_nls -EXPORT_SYMBOL vmlinux 0x9f871af8 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x9f942d76 notify_change -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fb4ba2b tcp_filter -EXPORT_SYMBOL vmlinux 0x9fbfd7c6 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa013bf33 vme_register_driver -EXPORT_SYMBOL vmlinux 0xa01d6a28 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0xa039502b make_kgid -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa08f9a8e bio_uncopy_user -EXPORT_SYMBOL vmlinux 0xa0a62cc4 tso_start -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b18e04 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xa0c15780 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xa0c85339 swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0xa0d97589 arp_create -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0db19d1 block_truncate_page -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0fa3c82 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa10ad437 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xa10c5a13 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0xa11421fb vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa140143d mmc_get_card -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa168c06b textsearch_register -EXPORT_SYMBOL vmlinux 0xa181bd4d gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0xa1afee83 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1b849b5 jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0xa1c2c036 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1e6d160 __seq_open_private -EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa210153a of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0xa2323725 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xa232cde5 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xa25a62f5 poll_freewait -EXPORT_SYMBOL vmlinux 0xa262dd60 __invalidate_device -EXPORT_SYMBOL vmlinux 0xa2653dd1 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xa266b13d dev_uc_sync -EXPORT_SYMBOL vmlinux 0xa2683c9f blk_start_request -EXPORT_SYMBOL vmlinux 0xa26cc031 kthread_stop -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa2928a84 seq_file_path -EXPORT_SYMBOL vmlinux 0xa29ceff0 dump_truncate -EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register -EXPORT_SYMBOL vmlinux 0xa2cc82b9 d_set_fallthru -EXPORT_SYMBOL vmlinux 0xa2d0f54d dm_unregister_target -EXPORT_SYMBOL vmlinux 0xa2e2a5d6 acl_by_type -EXPORT_SYMBOL vmlinux 0xa2f88f84 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait -EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa323ea66 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0xa32b1780 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xa32b6bec mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0xa35e81f3 migrate_page -EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot -EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay -EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xa3dcb8bf inet_addr_type -EXPORT_SYMBOL vmlinux 0xa3e75545 flush_tlb_kernel_range -EXPORT_SYMBOL vmlinux 0xa402059d alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf -EXPORT_SYMBOL vmlinux 0xa45056cf tty_lock -EXPORT_SYMBOL vmlinux 0xa4546acd tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0xa45f65d0 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xa46d72f3 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa471e26b netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xa4804054 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xa48945c0 dev_add_pack -EXPORT_SYMBOL vmlinux 0xa49cbb34 bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le -EXPORT_SYMBOL vmlinux 0xa4b24401 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4cb66be dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4eb7ff8 devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0xa4f61db7 unlock_buffer -EXPORT_SYMBOL vmlinux 0xa507a1fa rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0xa5116458 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xa51aa19a md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0xa52e372a __pci_enable_wake -EXPORT_SYMBOL vmlinux 0xa551a5c2 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa559ffb8 iov_iter_advance -EXPORT_SYMBOL vmlinux 0xa55e762b __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5a59dc8 mach_powermac -EXPORT_SYMBOL vmlinux 0xa5a633b9 sg_last -EXPORT_SYMBOL vmlinux 0xa5a807c1 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xa5aa70a8 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0xa5b420e7 of_get_parent -EXPORT_SYMBOL vmlinux 0xa5bd4930 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xa5bd6534 locks_remove_posix -EXPORT_SYMBOL vmlinux 0xa5cef8ad release_resource -EXPORT_SYMBOL vmlinux 0xa5d7e80c pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xa5e034bc ip6_xmit -EXPORT_SYMBOL vmlinux 0xa5e36aef udp_proc_register -EXPORT_SYMBOL vmlinux 0xa5e9570f pci_release_regions -EXPORT_SYMBOL vmlinux 0xa605d0ba bioset_integrity_free -EXPORT_SYMBOL vmlinux 0xa60fa81c genphy_update_link -EXPORT_SYMBOL vmlinux 0xa631dc68 udp_proc_unregister -EXPORT_SYMBOL vmlinux 0xa652c4ef __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0xa658003b __f_setown -EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio -EXPORT_SYMBOL vmlinux 0xa661e584 ppp_unit_number -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa67c4704 inet6_offloads -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa6994701 __i2c_transfer -EXPORT_SYMBOL vmlinux 0xa6995937 user_path_create -EXPORT_SYMBOL vmlinux 0xa6a3236e devm_request_resource -EXPORT_SYMBOL vmlinux 0xa6e04a86 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xa6e05b09 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xa6e54092 ilookup5 -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa700fc90 scsi_block_requests -EXPORT_SYMBOL vmlinux 0xa70a3ad0 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock -EXPORT_SYMBOL vmlinux 0xa7300937 security_inode_readlink -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa73ac7ac kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get -EXPORT_SYMBOL vmlinux 0xa78d72d9 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xa7a5f688 pci_bus_type -EXPORT_SYMBOL vmlinux 0xa7bda48f tcp_check_req -EXPORT_SYMBOL vmlinux 0xa7cd1948 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0xa7d1ea37 make_kuid -EXPORT_SYMBOL vmlinux 0xa7de82e5 simple_rmdir -EXPORT_SYMBOL vmlinux 0xa7ea9e45 dev_addr_flush -EXPORT_SYMBOL vmlinux 0xa7f5c6c6 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xa7f8dde2 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0xa7f8f498 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0xa8089b4f netlink_capable -EXPORT_SYMBOL vmlinux 0xa80b58df __neigh_create -EXPORT_SYMBOL vmlinux 0xa80c3fce lookup_one_len -EXPORT_SYMBOL vmlinux 0xa81582cd wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xa81e2a0c netdev_change_features -EXPORT_SYMBOL vmlinux 0xa81e3fb1 give_up_console -EXPORT_SYMBOL vmlinux 0xa82d8e35 elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0xa83ae8c2 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xa83bf1c5 path_put -EXPORT_SYMBOL vmlinux 0xa842427e insert_inode_locked -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa85b6cf3 generic_write_checks -EXPORT_SYMBOL vmlinux 0xa861ab6e __ioremap -EXPORT_SYMBOL vmlinux 0xa867c605 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xa868fbc3 pci_get_subsys -EXPORT_SYMBOL vmlinux 0xa86d9ead seq_escape -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa8760c9f take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xa87d1132 nf_unregister_hook -EXPORT_SYMBOL vmlinux 0xa8804438 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0xa89464b7 __ashldi3 -EXPORT_SYMBOL vmlinux 0xa8aa5a45 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xa8b3b388 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0xa8ee01cb udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa911e8f9 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa922956e fput -EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start -EXPORT_SYMBOL vmlinux 0xa9282581 iterate_dir -EXPORT_SYMBOL vmlinux 0xa9353d7e vc_cons -EXPORT_SYMBOL vmlinux 0xa936b6e0 fsl_lbc_ctrl_dev -EXPORT_SYMBOL vmlinux 0xa94a6b27 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xa9571d6d DMA_MODE_WRITE -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa976fbe6 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xa9b3efc3 irq_set_chip -EXPORT_SYMBOL vmlinux 0xa9b7b2e6 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xa9bcfd26 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9c8f6bb devm_gpio_request -EXPORT_SYMBOL vmlinux 0xa9d5d904 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xa9d647f5 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0xa9d6ba00 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xa9db2065 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xa9e42a90 would_dump -EXPORT_SYMBOL vmlinux 0xa9f38061 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0xa9f4162a __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0xaa039ac5 phy_init_hw -EXPORT_SYMBOL vmlinux 0xaa10033d security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xaa10f465 rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0xaa439963 dma_pool_create -EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock -EXPORT_SYMBOL vmlinux 0xaa4df512 pmu_batteries -EXPORT_SYMBOL vmlinux 0xaa6558d7 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r -EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa6fe8df inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xaaa08391 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0xaaaeee6f genl_notify -EXPORT_SYMBOL vmlinux 0xaab75729 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaadaa3c7 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0xaade7b1f skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab228e31 csum_tcpudp_magic -EXPORT_SYMBOL vmlinux 0xab48a326 posix_test_lock -EXPORT_SYMBOL vmlinux 0xab4b49b7 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xab694444 bsearch -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab85e1fa agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0xab88c180 i2c_master_recv -EXPORT_SYMBOL vmlinux 0xab8bb407 rtnl_unicast -EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xaba891f2 of_n_size_cells -EXPORT_SYMBOL vmlinux 0xaba97b73 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xabad6421 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xabb836ad generic_show_options -EXPORT_SYMBOL vmlinux 0xabbc83a5 inode_needs_sync -EXPORT_SYMBOL vmlinux 0xabbfc923 arp_tbl -EXPORT_SYMBOL vmlinux 0xabc891ba mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabd6ca26 blk_queue_make_request -EXPORT_SYMBOL vmlinux 0xabea5b53 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0xabed29cf proto_unregister -EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xabfe49ea inetdev_by_index -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac132d94 set_device_ro -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xac4cc1bc lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xac7923a2 secpath_dup -EXPORT_SYMBOL vmlinux 0xac899bb2 d_move -EXPORT_SYMBOL vmlinux 0xac969529 __ip_dev_find -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xacc7e60d __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd0bdf7 kobject_get -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock -EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit -EXPORT_SYMBOL vmlinux 0xad99e599 __block_write_begin -EXPORT_SYMBOL vmlinux 0xadbe5ac5 bio_phys_segments -EXPORT_SYMBOL vmlinux 0xadc485f3 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xadcda092 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0xaddd4770 __debugger_iabr_match -EXPORT_SYMBOL vmlinux 0xadf32f09 lock_fb_info -EXPORT_SYMBOL vmlinux 0xadf42bd5 __request_region -EXPORT_SYMBOL vmlinux 0xadf78fdd bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae06b437 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0xae1b4e95 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0xae216f82 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xae25c4b1 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xae358236 fence_signal -EXPORT_SYMBOL vmlinux 0xae49a8ab xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xae6d503e bio_integrity_endio -EXPORT_SYMBOL vmlinux 0xae73289a mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0xae7e902b __register_nls -EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup -EXPORT_SYMBOL vmlinux 0xaeaf210b bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0xaec66890 generic_file_mmap -EXPORT_SYMBOL vmlinux 0xaed0af9a get_cached_acl -EXPORT_SYMBOL vmlinux 0xaed673c2 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xaefa6f10 dquot_initialize -EXPORT_SYMBOL vmlinux 0xaefb8f80 dma_sync_wait -EXPORT_SYMBOL vmlinux 0xaefda62c devm_iounmap -EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xaf0b81c2 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xaf11af82 nobh_write_end -EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait -EXPORT_SYMBOL vmlinux 0xaf2dea1f con_is_bound -EXPORT_SYMBOL vmlinux 0xaf31e34a param_ops_bool -EXPORT_SYMBOL vmlinux 0xaf326561 ip_setsockopt -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf47027f key_unlink -EXPORT_SYMBOL vmlinux 0xaf665992 nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0xaf8a84b6 sync_blockdev -EXPORT_SYMBOL vmlinux 0xaf8dba33 pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0xaf8e388a simple_lookup -EXPORT_SYMBOL vmlinux 0xaf929bad of_phy_find_device -EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0xafa0bfac mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xafaed86f downgrade_write -EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create -EXPORT_SYMBOL vmlinux 0xafb2d677 i2c_release_client -EXPORT_SYMBOL vmlinux 0xafb448d9 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xafc89524 ps2_end_command -EXPORT_SYMBOL vmlinux 0xafd52fc7 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0xafe3a9eb d_walk -EXPORT_SYMBOL vmlinux 0xafe77047 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xafe794ad scsi_remove_device -EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc -EXPORT_SYMBOL vmlinux 0xb0080dbf unregister_shrinker -EXPORT_SYMBOL vmlinux 0xb0150e77 inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0xb02639c4 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove -EXPORT_SYMBOL vmlinux 0xb043c17d sock_kmalloc -EXPORT_SYMBOL vmlinux 0xb04dfa5c dev_activate -EXPORT_SYMBOL vmlinux 0xb055d672 freezing_slow_path -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb07412fb pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xb0899e6f devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0xb08d6e2a mount_bdev -EXPORT_SYMBOL vmlinux 0xb0936f1c mmc_release_host -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0b4f8a7 vfs_unlink -EXPORT_SYMBOL vmlinux 0xb0b91098 page_waitqueue -EXPORT_SYMBOL vmlinux 0xb0ba20e1 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0xb0c46f8c ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xb0c85afd block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xb0dc2943 scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e1fd5f i2c_clients_command -EXPORT_SYMBOL vmlinux 0xb0f046db dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xb0f2232f of_phy_connect -EXPORT_SYMBOL vmlinux 0xb1082f3c __register_binfmt -EXPORT_SYMBOL vmlinux 0xb128a1f6 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb149a781 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xb1573a06 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb171bd7b sk_ns_capable -EXPORT_SYMBOL vmlinux 0xb1860bab xfrm_register_type -EXPORT_SYMBOL vmlinux 0xb1a83647 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0xb1a9448e dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xb1cd3910 mmc_start_bkops -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1d5944c tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0xb1fd064b __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xb20f0384 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xb22caadb poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0xb233762c atomic64_set -EXPORT_SYMBOL vmlinux 0xb257982e devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb275a12c mutex_lock -EXPORT_SYMBOL vmlinux 0xb2785a26 mdiobus_scan -EXPORT_SYMBOL vmlinux 0xb27be6d4 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xb27f29f1 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0xb2904c80 macio_dev_put -EXPORT_SYMBOL vmlinux 0xb2947aa6 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0xb2a1419c copy_strings_kernel -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on -EXPORT_SYMBOL vmlinux 0xb2d8ca2e iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xb2e35455 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0xb2f57a60 scsi_init_io -EXPORT_SYMBOL vmlinux 0xb3246b7c request_firmware_nowait -EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xb3343632 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked -EXPORT_SYMBOL vmlinux 0xb34f5096 ppp_register_channel -EXPORT_SYMBOL vmlinux 0xb381e6ef bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xb384808a phy_device_create -EXPORT_SYMBOL vmlinux 0xb391682b of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0xb3acf259 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xb3c64c74 elv_add_request -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3eb3c4d get_mm_exe_file -EXPORT_SYMBOL vmlinux 0xb3ec7be5 md_integrity_register -EXPORT_SYMBOL vmlinux 0xb3ee999f gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb40ca514 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb42ffb1d blk_init_queue_node -EXPORT_SYMBOL vmlinux 0xb44c5807 bio_add_page -EXPORT_SYMBOL vmlinux 0xb44edd0f tcp_close -EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem -EXPORT_SYMBOL vmlinux 0xb45f3cea gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb496afd4 abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0xb4a48fd1 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xb4d22626 neigh_seq_next -EXPORT_SYMBOL vmlinux 0xb4db3926 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0xb4ef4b7b param_ops_invbool -EXPORT_SYMBOL vmlinux 0xb50330a4 unregister_qdisc -EXPORT_SYMBOL vmlinux 0xb53a4336 kmap_pte -EXPORT_SYMBOL vmlinux 0xb5544ee2 cont_write_begin -EXPORT_SYMBOL vmlinux 0xb56a735f try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xb56fca9d input_register_handle -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb5775b06 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0xb57bec97 simple_statfs -EXPORT_SYMBOL vmlinux 0xb57e6694 neigh_table_init -EXPORT_SYMBOL vmlinux 0xb5976e7b __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5b1fb76 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0xb5b27b31 clocksource_unregister -EXPORT_SYMBOL vmlinux 0xb5c46ac9 agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0xb5c4f6f3 scsi_scan_host -EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit -EXPORT_SYMBOL vmlinux 0xb5feb99c free_task -EXPORT_SYMBOL vmlinux 0xb6048bce inode_add_bytes -EXPORT_SYMBOL vmlinux 0xb60bcbab tcp_seq_open -EXPORT_SYMBOL vmlinux 0xb6178cb2 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xb629679a pci_dev_put -EXPORT_SYMBOL vmlinux 0xb634c92e tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xb64a49ca neigh_parms_release -EXPORT_SYMBOL vmlinux 0xb677aa33 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb686e3c2 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb697ff8e inet_stream_connect -EXPORT_SYMBOL vmlinux 0xb69f62e2 flush_tlb_page -EXPORT_SYMBOL vmlinux 0xb6a31d4f xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6d8605d write_one_page -EXPORT_SYMBOL vmlinux 0xb6e08fa6 cdrom_open -EXPORT_SYMBOL vmlinux 0xb7005161 vfs_statfs -EXPORT_SYMBOL vmlinux 0xb71e828f dev_deactivate -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb74f4db4 truncate_pagecache -EXPORT_SYMBOL vmlinux 0xb753bcc8 __ashrdi3 -EXPORT_SYMBOL vmlinux 0xb76f4138 tcf_hash_check -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb784123c udp_set_csum -EXPORT_SYMBOL vmlinux 0xb79119e1 dentry_unhash -EXPORT_SYMBOL vmlinux 0xb79a4e1a store_fp_state -EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0xb7a99781 __irq_regs -EXPORT_SYMBOL vmlinux 0xb7af3bdb d_tmpfile -EXPORT_SYMBOL vmlinux 0xb7b5442a pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0xb7bb66de nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d6691b __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xb7df96fd inet_stream_ops -EXPORT_SYMBOL vmlinux 0xb7e38ad1 build_skb -EXPORT_SYMBOL vmlinux 0xb81960ca snprintf -EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xb8339dc0 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xb85b05a1 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0xb86b6d42 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb89c9b04 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xb8a85054 get_fs_type -EXPORT_SYMBOL vmlinux 0xb8ba4a4d gen_new_estimator -EXPORT_SYMBOL vmlinux 0xb8c402ab of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0xb8cd44e0 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xb8ed5dca dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xb8f9fe7f xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0xb9138d8b bio_split -EXPORT_SYMBOL vmlinux 0xb92a903d vfs_writev -EXPORT_SYMBOL vmlinux 0xb92c4b2d csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xb97e598b kmalloc_caches -EXPORT_SYMBOL vmlinux 0xb99dcf0e pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xb9be1b6a ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xb9d82423 get_task_exe_file -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9f92df1 md_error -EXPORT_SYMBOL vmlinux 0xba389a5a dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0xba3cc159 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xba41dcd2 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4e6f14 neigh_table_clear -EXPORT_SYMBOL vmlinux 0xba5be180 mmc_put_card -EXPORT_SYMBOL vmlinux 0xba604a77 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0xba6a226a put_page -EXPORT_SYMBOL vmlinux 0xba74897f may_umount_tree -EXPORT_SYMBOL vmlinux 0xba9da891 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xbaa9973b proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb144852 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0xbb16c372 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb528cd6 sk_wait_data -EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb6d8955 input_reset_device -EXPORT_SYMBOL vmlinux 0xbb81723f inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xbb905298 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xbb93e52e tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbba6a120 of_mm_gpiochip_add -EXPORT_SYMBOL vmlinux 0xbbb6c274 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xbbf79835 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0xbc0d8d15 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xbc17d15e blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0xbc26bbb6 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0xbc394b30 padata_do_serial -EXPORT_SYMBOL vmlinux 0xbc81b55a of_get_cpu_node -EXPORT_SYMBOL vmlinux 0xbc88e6db dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xbc8a0423 scsi_device_put -EXPORT_SYMBOL vmlinux 0xbc94e6ca nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0xbcb9a734 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbce0d0c7 scsi_scan_target -EXPORT_SYMBOL vmlinux 0xbceb97f5 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 -EXPORT_SYMBOL vmlinux 0xbcf49a77 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0xbd08be7e bdev_read_only -EXPORT_SYMBOL vmlinux 0xbd418691 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xbd48a5c1 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xbd5cb7cb dev_mc_init -EXPORT_SYMBOL vmlinux 0xbd5e6952 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xbd8d541d flush_hash_pages -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbd9e5d49 __lshrdi3 -EXPORT_SYMBOL vmlinux 0xbda7cf1b netpoll_print_options -EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe2c5c99 md_done_sync -EXPORT_SYMBOL vmlinux 0xbe575eec alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xbe5b7724 blk_init_tags -EXPORT_SYMBOL vmlinux 0xbe63ee40 request_resource -EXPORT_SYMBOL vmlinux 0xbe8212ad abort_creds -EXPORT_SYMBOL vmlinux 0xbe8ae2f8 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xbe8d6ac0 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xbe9b5ead dma_async_device_register -EXPORT_SYMBOL vmlinux 0xbea3f47f tcp_poll -EXPORT_SYMBOL vmlinux 0xbeb43a45 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0xbeda63e0 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0xbedc2c32 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf2856a7 __blk_run_queue -EXPORT_SYMBOL vmlinux 0xbf48a839 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xbf64c6eb start_tty -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf81f27a phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0xbf8831ab pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfa37957 locks_copy_lock -EXPORT_SYMBOL vmlinux 0xbfa61389 textsearch_unregister -EXPORT_SYMBOL vmlinux 0xbfab0a02 phy_device_register -EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfda859c inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc00fbb24 scsi_dma_map -EXPORT_SYMBOL vmlinux 0xc0236209 security_path_chown -EXPORT_SYMBOL vmlinux 0xc02da927 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xc043ab56 inode_change_ok -EXPORT_SYMBOL vmlinux 0xc05119fe sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xc0619d6a sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07ac9ac mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xc07caade pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc0966626 pcim_enable_device -EXPORT_SYMBOL vmlinux 0xc099994c twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0b52788 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xc0bd361d __getblk_gfp -EXPORT_SYMBOL vmlinux 0xc0d00224 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xc0d84ced cuda_poll -EXPORT_SYMBOL vmlinux 0xc0e2af86 swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0xc0edb454 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0xc1029d58 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0xc102c344 of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0xc106ced2 md_update_sb -EXPORT_SYMBOL vmlinux 0xc11a9248 dquot_destroy -EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten -EXPORT_SYMBOL vmlinux 0xc136be30 inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc -EXPORT_SYMBOL vmlinux 0xc14b0364 nf_afinfo -EXPORT_SYMBOL vmlinux 0xc1782a4d kmem_cache_free -EXPORT_SYMBOL vmlinux 0xc1844564 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0xc194b3b2 elv_rb_add -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1dd4a7f adb_request -EXPORT_SYMBOL vmlinux 0xc1e34ebc pci_release_region -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1f3d8e6 skb_unlink -EXPORT_SYMBOL vmlinux 0xc22a95fa eth_mac_addr -EXPORT_SYMBOL vmlinux 0xc2315c25 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc251b24c vfs_readv -EXPORT_SYMBOL vmlinux 0xc268bd3e scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0xc27de913 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0xc2835121 param_get_bool -EXPORT_SYMBOL vmlinux 0xc29e4e9d crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xc29f0cea pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xc2c0b7c8 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc -EXPORT_SYMBOL vmlinux 0xc2dc506b vfs_setpos -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc3303ee6 submit_bio_wait -EXPORT_SYMBOL vmlinux 0xc34155e9 sg_miter_skip -EXPORT_SYMBOL vmlinux 0xc354e89c dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xc368849f nvram_sync -EXPORT_SYMBOL vmlinux 0xc3747ae2 sock_setsockopt -EXPORT_SYMBOL vmlinux 0xc3a0f948 vga_get -EXPORT_SYMBOL vmlinux 0xc3b88a93 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3e46540 elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0xc3fc3d7b input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0xc40b23cb jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xc40bb197 nobh_writepage -EXPORT_SYMBOL vmlinux 0xc41f0516 node_states -EXPORT_SYMBOL vmlinux 0xc448c702 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xc4516955 bdi_register_dev -EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0xc45e692f inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0xc4612e81 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xc4645d34 get_gendisk -EXPORT_SYMBOL vmlinux 0xc465854b skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xc48cb5cb skb_push -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc4b4a60a send_sig_info -EXPORT_SYMBOL vmlinux 0xc4edc9e9 posix_lock_file -EXPORT_SYMBOL vmlinux 0xc5042b5f cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xc510f40a dev_close -EXPORT_SYMBOL vmlinux 0xc516b970 read_code -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc55bea42 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set -EXPORT_SYMBOL vmlinux 0xc5707f3b init_special_inode -EXPORT_SYMBOL vmlinux 0xc5718627 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0xc57e071b dev_notice -EXPORT_SYMBOL vmlinux 0xc58397b5 sget_userns -EXPORT_SYMBOL vmlinux 0xc59776f6 netlink_broadcast -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5a578d1 macio_enable_devres -EXPORT_SYMBOL vmlinux 0xc5adbacc blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0xc5b9d9f3 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xc5bdfa5c unregister_netdev -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5f4a665 netdev_notice -EXPORT_SYMBOL vmlinux 0xc5f80f77 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc61e9769 kobject_put -EXPORT_SYMBOL vmlinux 0xc6280e1d xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc63bc1c6 get_acl -EXPORT_SYMBOL vmlinux 0xc6499100 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xc65537d0 memremap -EXPORT_SYMBOL vmlinux 0xc658dd95 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0xc65da7f2 __dquot_free_space -EXPORT_SYMBOL vmlinux 0xc6752d95 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xc678f40c inode_dio_wait -EXPORT_SYMBOL vmlinux 0xc6906086 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xc690af7d dev_trans_start -EXPORT_SYMBOL vmlinux 0xc6a35765 xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xc6b7a3f9 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xc6bf97e4 follow_up -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6cff8fc i2c_master_send -EXPORT_SYMBOL vmlinux 0xc6d92209 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0xc6ebcf4b __bforget -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc76b9025 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0xc772a7f1 fasync_helper -EXPORT_SYMBOL vmlinux 0xc7754c20 blk_end_request_all -EXPORT_SYMBOL vmlinux 0xc77ecb1a note_scsi_host -EXPORT_SYMBOL vmlinux 0xc7804a17 cdev_del -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc781f71d scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc7898275 flex_array_shrink -EXPORT_SYMBOL vmlinux 0xc78dac97 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xc795e23e cpu_core_map -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7bb95b2 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xc7c73325 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xc7d44e40 of_match_node -EXPORT_SYMBOL vmlinux 0xc7db3f4c input_set_capability -EXPORT_SYMBOL vmlinux 0xc7eadbb2 fd_install -EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc7ffd47e jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0xc805bbf8 ata_link_printk -EXPORT_SYMBOL vmlinux 0xc807eb6c tty_write_room -EXPORT_SYMBOL vmlinux 0xc818dc7b led_update_brightness -EXPORT_SYMBOL vmlinux 0xc81afc3a lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0xc823d5c4 nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xc82edfd6 sk_alloc -EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc875782b lru_cache_add_file -EXPORT_SYMBOL vmlinux 0xc87c5987 inode_init_owner -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc8926f64 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8ca3552 pci_iomap -EXPORT_SYMBOL vmlinux 0xc8caaeb8 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0xc8cd70da pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xc8e4f061 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0xc8ea9f4a n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xc8f963e3 kill_block_super -EXPORT_SYMBOL vmlinux 0xc8fd4380 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xc958b5a7 __breadahead -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc9705b82 input_close_device -EXPORT_SYMBOL vmlinux 0xc9734a32 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xc9836c22 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9b52654 elevator_change -EXPORT_SYMBOL vmlinux 0xc9b8c308 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xc9d1f1c5 macio_release_resource -EXPORT_SYMBOL vmlinux 0xc9e4920c decrementer_clockevent -EXPORT_SYMBOL vmlinux 0xc9e6db50 iov_iter_npages -EXPORT_SYMBOL vmlinux 0xc9ef1651 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xc9f81041 flush_tlb_range -EXPORT_SYMBOL vmlinux 0xc9f854c1 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xc9ff3af9 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca17ce4b blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get -EXPORT_SYMBOL vmlinux 0xca2f7541 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0xca3278a9 neigh_seq_start -EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state -EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xca494b47 contig_page_data -EXPORT_SYMBOL vmlinux 0xca4b38bd put_disk -EXPORT_SYMBOL vmlinux 0xca570ccd submit_bio -EXPORT_SYMBOL vmlinux 0xca6806ad ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xca69f8de mark_info_dirty -EXPORT_SYMBOL vmlinux 0xca77ea8f invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xca825895 pmu_suspend -EXPORT_SYMBOL vmlinux 0xca8de2c5 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcab0f14c __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0xcacd272d atomic64_sub_return -EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty -EXPORT_SYMBOL vmlinux 0xcacea129 mdiobus_free -EXPORT_SYMBOL vmlinux 0xcad08e48 mmu_hash_lock -EXPORT_SYMBOL vmlinux 0xcaf2a0d7 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcaf4730c get_phy_device -EXPORT_SYMBOL vmlinux 0xcaffed76 blk_put_request -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb24955d generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xcb2f05aa starget_for_each_device -EXPORT_SYMBOL vmlinux 0xcb31ff54 input_unregister_handler -EXPORT_SYMBOL vmlinux 0xcb5c413d security_path_mkdir -EXPORT_SYMBOL vmlinux 0xcb91a792 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xcb9815f7 fb_blank -EXPORT_SYMBOL vmlinux 0xcbb4ba76 blk_put_queue -EXPORT_SYMBOL vmlinux 0xcbb5ed65 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcbfee61c blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xcc240e0c dev_uc_del -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc567428 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xcc6eade7 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xcc6f43ae mmc_request_done -EXPORT_SYMBOL vmlinux 0xcc8b20d0 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0xcc9db905 pci_find_hose_for_OF_device -EXPORT_SYMBOL vmlinux 0xcca84b49 register_console -EXPORT_SYMBOL vmlinux 0xccb9b64e tcf_hash_search -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccc2edb0 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xcce72a5d eth_gro_complete -EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xcd0f4d2c param_ops_short -EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xcd25f8ff jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd32847f rtas -EXPORT_SYMBOL vmlinux 0xcd40ec7e agp_copy_info -EXPORT_SYMBOL vmlinux 0xcd41cf83 __neigh_event_send -EXPORT_SYMBOL vmlinux 0xcd45748b agp_generic_enable -EXPORT_SYMBOL vmlinux 0xcd5778af bdi_register_owner -EXPORT_SYMBOL vmlinux 0xcd5877a6 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xcd5dbc6c gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xcd6db8a9 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xcd7009aa udp_seq_open -EXPORT_SYMBOL vmlinux 0xcd76bc6e generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xcd8744fa param_get_ulong -EXPORT_SYMBOL vmlinux 0xcdc00bbf agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcde15da4 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xcdf0c34e blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xce0b2f3a check_disk_change -EXPORT_SYMBOL vmlinux 0xce1e9514 mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0xce209931 lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce409cda pmac_set_early_video_resume -EXPORT_SYMBOL vmlinux 0xce43758c phy_resume -EXPORT_SYMBOL vmlinux 0xce592dbc pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce670a7c tcp_release_cb -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcef22c37 unregister_filesystem -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefa702e scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcefda5d7 sock_no_poll -EXPORT_SYMBOL vmlinux 0xcf0e809c devm_ioport_map -EXPORT_SYMBOL vmlinux 0xcf5920de bio_put -EXPORT_SYMBOL vmlinux 0xcf81a513 mmc_power_save_host -EXPORT_SYMBOL vmlinux 0xcfb2de8e pci_pme_capable -EXPORT_SYMBOL vmlinux 0xcfb3b2bd dm_kobject_release -EXPORT_SYMBOL vmlinux 0xcfc05db4 security_path_symlink -EXPORT_SYMBOL vmlinux 0xcfcf69c5 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xcff6cf19 phy_find_first -EXPORT_SYMBOL vmlinux 0xcff81f0c __d_drop -EXPORT_SYMBOL vmlinux 0xd02f7d99 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xd03ab3e0 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd078199e generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xd0857409 max8998_update_reg -EXPORT_SYMBOL vmlinux 0xd085cd37 sockfd_lookup -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a45fa5 pmu_enable_irled -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0c16364 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xd0c2c4de dev_addr_add -EXPORT_SYMBOL vmlinux 0xd0c9659d sk_stream_write_space -EXPORT_SYMBOL vmlinux 0xd0d5aba8 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xd0de901a vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd10607be md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf -EXPORT_SYMBOL vmlinux 0xd13fcc8a pci_iounmap -EXPORT_SYMBOL vmlinux 0xd1599283 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xd15d3b8f blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xd174e70b insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xd17c5511 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd196af4b mmc_alloc_host -EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xd1a5b8f7 key_type_keyring -EXPORT_SYMBOL vmlinux 0xd1adf17a set_binfmt -EXPORT_SYMBOL vmlinux 0xd1b3f313 mmc_can_trim -EXPORT_SYMBOL vmlinux 0xd1b5b00a writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xd1bbd7f5 dquot_alloc -EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xd1c9280f vme_irq_free -EXPORT_SYMBOL vmlinux 0xd1ce6332 mount_single -EXPORT_SYMBOL vmlinux 0xd1d5325b ata_print_version -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1de0a8b inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0xd1e3f3c4 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xd1fe2788 pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0xd21ac06a follow_pfn -EXPORT_SYMBOL vmlinux 0xd2481164 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2529e13 pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd26476e3 rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0xd26551bf free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xd2785df3 set_cached_acl -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd28da2cb do_splice_to -EXPORT_SYMBOL vmlinux 0xd28e9803 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xd294fb23 proc_set_user -EXPORT_SYMBOL vmlinux 0xd29c1657 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xd2a941d4 sg_init_table -EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class -EXPORT_SYMBOL vmlinux 0xd2b54e03 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xd2b8756a xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2dd0bff xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xd2f53fd3 release_sock -EXPORT_SYMBOL vmlinux 0xd2fc19bd proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0xd3187da4 pcibios_align_resource -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd33b2c37 ppc_md -EXPORT_SYMBOL vmlinux 0xd33fd72b pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xd3590fc5 tcp_disconnect -EXPORT_SYMBOL vmlinux 0xd35c1080 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0xd375ce39 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0xd3a4d3fc scsi_remove_host -EXPORT_SYMBOL vmlinux 0xd3a774b6 wait_iff_congested -EXPORT_SYMBOL vmlinux 0xd3ad595e audit_log_task_info -EXPORT_SYMBOL vmlinux 0xd3b1086f dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3e6f60d cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xd409383c pmu_request -EXPORT_SYMBOL vmlinux 0xd40c1ffa netdev_printk -EXPORT_SYMBOL vmlinux 0xd4121009 netif_rx -EXPORT_SYMBOL vmlinux 0xd418e1c0 adjust_resource -EXPORT_SYMBOL vmlinux 0xd422affd sock_i_ino -EXPORT_SYMBOL vmlinux 0xd43a5be0 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xd43ab3b4 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0xd443896f dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xd4464e8b agp_create_memory -EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm -EXPORT_SYMBOL vmlinux 0xd495e40e __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0xd4c1a9ac blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xd4cd39d2 __sock_create -EXPORT_SYMBOL vmlinux 0xd4d32e76 register_shrinker -EXPORT_SYMBOL vmlinux 0xd4e4c026 inet_put_port -EXPORT_SYMBOL vmlinux 0xd4edb546 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xd4f3e773 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0xd4f3f795 of_iomap -EXPORT_SYMBOL vmlinux 0xd4fac22f d_alloc_name -EXPORT_SYMBOL vmlinux 0xd51864d3 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0xd52697dd __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xd5297a03 seq_release_private -EXPORT_SYMBOL vmlinux 0xd5346c3c vm_insert_mixed -EXPORT_SYMBOL vmlinux 0xd539ff02 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd5678633 napi_complete_done -EXPORT_SYMBOL vmlinux 0xd580a774 skb_queue_tail -EXPORT_SYMBOL vmlinux 0xd58c7f88 ll_rw_block -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd59ca041 pci_enable_msix -EXPORT_SYMBOL vmlinux 0xd59d482e skb_copy_expand -EXPORT_SYMBOL vmlinux 0xd5bf2afc switch_mmu_context -EXPORT_SYMBOL vmlinux 0xd5d15927 fb_class -EXPORT_SYMBOL vmlinux 0xd5d8eb6e xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0xd5e6f492 tcp_make_synack -EXPORT_SYMBOL vmlinux 0xd5e8444a __div64_32 -EXPORT_SYMBOL vmlinux 0xd5e9c138 generic_update_time -EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xd5fbfdd4 elv_rb_find -EXPORT_SYMBOL vmlinux 0xd605f20f udp_ioctl -EXPORT_SYMBOL vmlinux 0xd606503d register_sysctl -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd627480b strncat -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd6303e98 macio_request_resource -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd64fe59a ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xd655495b tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0xd675f7ea param_set_copystring -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd69b295b block_write_full_page -EXPORT_SYMBOL vmlinux 0xd69b30e0 atomic64_add_unless -EXPORT_SYMBOL vmlinux 0xd69cec30 pci_dev_driver -EXPORT_SYMBOL vmlinux 0xd6ab82e8 neigh_connected_output -EXPORT_SYMBOL vmlinux 0xd6b3f633 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0xd6cb7a25 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xd6d056d1 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd71ec5ba dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write -EXPORT_SYMBOL vmlinux 0xd7b6b5a2 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xd7ca8986 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7ebfd74 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xd8077d9f ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xd81b3b06 dev_remove_offload -EXPORT_SYMBOL vmlinux 0xd8272bbf kernel_write -EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put -EXPORT_SYMBOL vmlinux 0xd84c43a6 lockref_put_return -EXPORT_SYMBOL vmlinux 0xd84de9d7 do_splice_from -EXPORT_SYMBOL vmlinux 0xd8518d99 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xd87ab7e3 pci_map_rom -EXPORT_SYMBOL vmlinux 0xd88474eb fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0xd88df70e devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xd88e19be write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8b60cfe proc_set_size -EXPORT_SYMBOL vmlinux 0xd8b9c656 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8e77ef1 devm_memremap -EXPORT_SYMBOL vmlinux 0xd8ed5a4a __tcf_hash_release -EXPORT_SYMBOL vmlinux 0xd92514ca agp_special_page -EXPORT_SYMBOL vmlinux 0xd92fe844 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xd93c9aea inet_select_addr -EXPORT_SYMBOL vmlinux 0xd9416c31 blk_fetch_request -EXPORT_SYMBOL vmlinux 0xd9498b22 proc_dointvec -EXPORT_SYMBOL vmlinux 0xd94ce5ef generic_readlink -EXPORT_SYMBOL vmlinux 0xd959bdb2 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done -EXPORT_SYMBOL vmlinux 0xd96a21a2 fb_set_cmap -EXPORT_SYMBOL vmlinux 0xd96bdde6 devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd995348d of_gpio_simple_xlate -EXPORT_SYMBOL vmlinux 0xd9a17249 dump_emit -EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9e5ad87 follow_down -EXPORT_SYMBOL vmlinux 0xda08f104 page_put_link -EXPORT_SYMBOL vmlinux 0xda09e799 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xda18a86f kobject_del -EXPORT_SYMBOL vmlinux 0xda1db642 d_find_alias -EXPORT_SYMBOL vmlinux 0xda2630b0 make_kprojid -EXPORT_SYMBOL vmlinux 0xda38d04d blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda4bf58c tty_devnum -EXPORT_SYMBOL vmlinux 0xda56b068 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xda5bad8d i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0xda7265ed qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda8ba535 fsnotify_get_group -EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages -EXPORT_SYMBOL vmlinux 0xdac12083 __frontswap_test -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdafc19e4 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xdafcb0bc get_user_pages -EXPORT_SYMBOL vmlinux 0xdb01e0e0 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xdb039bf3 dquot_scan_active -EXPORT_SYMBOL vmlinux 0xdb060caa serio_unregister_port -EXPORT_SYMBOL vmlinux 0xdb43056a param_ops_uint -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb776e87 giveup_fpu -EXPORT_SYMBOL vmlinux 0xdb7a2acd __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xdbb98fef seq_release -EXPORT_SYMBOL vmlinux 0xdbc743eb pagecache_write_begin -EXPORT_SYMBOL vmlinux 0xdbe6e92b pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0xdc014299 param_get_uint -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc13b39e posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xdc26a8ac mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xdc272faf udplite_prot -EXPORT_SYMBOL vmlinux 0xdc29e383 sock_no_bind -EXPORT_SYMBOL vmlinux 0xdc2fac29 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc49df34 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc551ab1 tty_unregister_device -EXPORT_SYMBOL vmlinux 0xdc692004 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xdc7f08d0 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xdc942659 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xdc9498dd down -EXPORT_SYMBOL vmlinux 0xdc98a0e0 sock_efree -EXPORT_SYMBOL vmlinux 0xdc9bb825 tty_name -EXPORT_SYMBOL vmlinux 0xdcaf093e account_page_dirtied -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcb04920 mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0xdcb217f7 agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0xdcefb9a5 pmu_resume -EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd261421 sk_reset_timer -EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr -EXPORT_SYMBOL vmlinux 0xdd5c5a07 release_pages -EXPORT_SYMBOL vmlinux 0xdd72b967 netlink_unicast -EXPORT_SYMBOL vmlinux 0xdd750007 of_get_ibm_chip_id -EXPORT_SYMBOL vmlinux 0xdd783ce8 tcp_connect -EXPORT_SYMBOL vmlinux 0xdd8fa288 flow_cache_lookup -EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer -EXPORT_SYMBOL vmlinux 0xdd98e304 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xddc1b8ed lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0xddca045b skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xdde7d47c mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xde095cdd iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xde100be0 param_get_byte -EXPORT_SYMBOL vmlinux 0xde13a2ea tcp_req_err -EXPORT_SYMBOL vmlinux 0xde41138e gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xde48ba71 inet_del_offload -EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xde5271c0 truncate_setsize -EXPORT_SYMBOL vmlinux 0xde6b0365 tty_register_device -EXPORT_SYMBOL vmlinux 0xde6f6a33 filemap_map_pages -EXPORT_SYMBOL vmlinux 0xde710f1a __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xde7ea40f agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0xde819d66 udp6_csum_init -EXPORT_SYMBOL vmlinux 0xde8867db pci_find_capability -EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xde9c6fb2 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xdea21230 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0xded15c89 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0xded73764 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xdf02bdf5 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0xdf1354ea pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf3ebc9f generic_file_llseek -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf740aec unlock_rename -EXPORT_SYMBOL vmlinux 0xdf772561 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xdf8affea fget -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdfa1ac41 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0xdfe53602 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0xdfea0249 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xdff3256f udp_del_offload -EXPORT_SYMBOL vmlinux 0xdff43ed4 __debugger -EXPORT_SYMBOL vmlinux 0xdff56e64 adb_poll -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffb5c8e truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xe00037a1 blk_recount_segments -EXPORT_SYMBOL vmlinux 0xe0056c52 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xe00eb137 igrab -EXPORT_SYMBOL vmlinux 0xe0141e4a __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0xe02705cf loop_register_transfer -EXPORT_SYMBOL vmlinux 0xe03497f1 blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe07de9eb mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe086b88b bio_chain -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe094ef39 sg_next -EXPORT_SYMBOL vmlinux 0xe09b359b pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0xe0a0b395 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0xe0a76aa5 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xe0a7b9a4 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xe0adb4a9 pci_disable_msi -EXPORT_SYMBOL vmlinux 0xe0af3c94 __elv_add_request -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b34da0 nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0xe0b89a97 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0xe0ccdb5f pci_match_id -EXPORT_SYMBOL vmlinux 0xe105c46a input_register_device -EXPORT_SYMBOL vmlinux 0xe10f6616 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe135d879 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xe1374027 filemap_fdatawait -EXPORT_SYMBOL vmlinux 0xe153373b dm_put_device -EXPORT_SYMBOL vmlinux 0xe16aae9d tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe18a6336 agp_backend_acquire -EXPORT_SYMBOL vmlinux 0xe1b1e811 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xe1bb8f28 input_unregister_handle -EXPORT_SYMBOL vmlinux 0xe1caef67 inet_add_offload -EXPORT_SYMBOL vmlinux 0xe1e107eb blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xe1f6e765 tty_hangup -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe21e589c backlight_force_update -EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe24b7dca consume_skb -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe2612050 poll_initwait -EXPORT_SYMBOL vmlinux 0xe2617130 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0xe268af08 blk_requeue_request -EXPORT_SYMBOL vmlinux 0xe27d71cf vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xe2845cdf proc_douintvec -EXPORT_SYMBOL vmlinux 0xe2897208 pci_request_regions -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2a69d84 agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock -EXPORT_SYMBOL vmlinux 0xe2c392e7 tty_unlock -EXPORT_SYMBOL vmlinux 0xe2c49ba4 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0xe2c72be2 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xe2d24b2c sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup -EXPORT_SYMBOL vmlinux 0xe34c5595 kset_unregister -EXPORT_SYMBOL vmlinux 0xe37afa72 unload_nls -EXPORT_SYMBOL vmlinux 0xe384716d from_kprojid -EXPORT_SYMBOL vmlinux 0xe389892d ppp_input -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3d6c1f3 posix_unblock_lock -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3d9c91a mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xe3e73bc4 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xe3e9b8c4 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xe4086de1 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xe41577b5 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0xe41ae0a5 iget_locked -EXPORT_SYMBOL vmlinux 0xe460d597 of_translate_address -EXPORT_SYMBOL vmlinux 0xe4652e69 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0xe48411ad nlmsg_notify -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe4b870ee skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xe4d9ada3 d_obtain_alias -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe4edc88a xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xe4fd9332 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe512ddb0 pci_fixup_device -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe52a9d00 seq_read -EXPORT_SYMBOL vmlinux 0xe5537432 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xe55aa145 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0xe570133a mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0xe573c127 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0xe576aea9 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe58649a5 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe5ad6e46 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xe5ade494 serio_bus -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5d5fe17 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5f89741 register_netdevice -EXPORT_SYMBOL vmlinux 0xe6331de9 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xe642a59d nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xe66f3ddb misc_deregister -EXPORT_SYMBOL vmlinux 0xe68046fe dev_change_carrier -EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe6a376a8 should_remove_suid -EXPORT_SYMBOL vmlinux 0xe6b1fdc2 inet_bind -EXPORT_SYMBOL vmlinux 0xe6c09d11 textsearch_destroy -EXPORT_SYMBOL vmlinux 0xe6dd236d clear_pages -EXPORT_SYMBOL vmlinux 0xe6dfb162 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe7005f51 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xe71e615f dup_iter -EXPORT_SYMBOL vmlinux 0xe744d698 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xe757958c filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xe75fc754 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xe77b5cd1 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xe782ffc8 vme_irq_generate -EXPORT_SYMBOL vmlinux 0xe78d39e1 fb_get_mode -EXPORT_SYMBOL vmlinux 0xe79c38d9 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xe7bf317d fsl_lbc_addr -EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe8051a71 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xe840a47e agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0xe849acaa pskb_expand_head -EXPORT_SYMBOL vmlinux 0xe84dd56b clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0xe859a810 vfs_iter_write -EXPORT_SYMBOL vmlinux 0xe8720a7c mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0xe87630d8 blk_complete_request -EXPORT_SYMBOL vmlinux 0xe89058e1 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xe890ed98 param_set_ulong -EXPORT_SYMBOL vmlinux 0xe8a5f967 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8b30821 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8ca6826 dst_alloc -EXPORT_SYMBOL vmlinux 0xe8de44b6 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xe8e4f09a napi_gro_flush -EXPORT_SYMBOL vmlinux 0xe8f397d7 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xe907a8f3 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0xe912dfb3 of_device_unregister -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe922f2d0 of_find_property -EXPORT_SYMBOL vmlinux 0xe9289640 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95d564c invalidate_bdev -EXPORT_SYMBOL vmlinux 0xe9a45280 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0xe9a8165b __vfs_read -EXPORT_SYMBOL vmlinux 0xe9c92230 alloc_disk -EXPORT_SYMBOL vmlinux 0xe9daa19f kthread_bind -EXPORT_SYMBOL vmlinux 0xe9deeb51 inet6_release -EXPORT_SYMBOL vmlinux 0xe9e8a83d nvm_put_blk -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea17683a tcf_hash_insert -EXPORT_SYMBOL vmlinux 0xea464c91 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xea4cd1d9 __find_get_block -EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xea8c6ab2 neigh_event_ns -EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit -EXPORT_SYMBOL vmlinux 0xeab3439e vm_mmap -EXPORT_SYMBOL vmlinux 0xeacb6f6e blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xeacf6d83 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xeafe31a1 param_get_ullong -EXPORT_SYMBOL vmlinux 0xeb1c37d2 security_path_link -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb4b73b3 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xeb575478 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0xeb78985f kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xeb80ea82 single_open_size -EXPORT_SYMBOL vmlinux 0xeb8d93b5 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xeb93c93a __napi_schedule -EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present -EXPORT_SYMBOL vmlinux 0xebc60a1e blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0xebc7a9e5 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xebcac679 agp_bridge -EXPORT_SYMBOL vmlinux 0xebd18deb sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xebd8f6aa input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0xebd93ef8 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xebf6e769 blk_finish_request -EXPORT_SYMBOL vmlinux 0xec06e23c unregister_console -EXPORT_SYMBOL vmlinux 0xec11aeaf fb_set_suspend -EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit -EXPORT_SYMBOL vmlinux 0xec5e0d16 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xec5f86c8 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0xec768e8e vga_con -EXPORT_SYMBOL vmlinux 0xec7fca83 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xec94ae97 generic_setxattr -EXPORT_SYMBOL vmlinux 0xec9926a2 register_qdisc -EXPORT_SYMBOL vmlinux 0xeca5fa29 __inet_hash -EXPORT_SYMBOL vmlinux 0xeca64635 devm_memunmap -EXPORT_SYMBOL vmlinux 0xecb513b6 netif_napi_del -EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 -EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xecce3bfc machine_id -EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecedf798 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xecf8a803 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xed1af45b mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xed260256 bdevname -EXPORT_SYMBOL vmlinux 0xed394019 release_firmware -EXPORT_SYMBOL vmlinux 0xed3945e0 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xed419016 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xed433dcf mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xed47cee0 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed59ff75 dquot_transfer -EXPORT_SYMBOL vmlinux 0xed866e02 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xedb54d94 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedbd776b vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table -EXPORT_SYMBOL vmlinux 0xedcbe1f6 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xede1e88b security_path_chmod -EXPORT_SYMBOL vmlinux 0xedf11da6 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xedf857e6 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xee000379 vme_lm_request -EXPORT_SYMBOL vmlinux 0xee128bad get_user_pages_locked -EXPORT_SYMBOL vmlinux 0xee160edd nf_log_unregister -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee3496c3 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0xee43330d flush_dcache_page -EXPORT_SYMBOL vmlinux 0xee59412f adb_try_handler_change -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee92419c pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xee986d21 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeb766ea simple_dir_operations -EXPORT_SYMBOL vmlinux 0xeebdac51 xfrm_register_km -EXPORT_SYMBOL vmlinux 0xeee4f666 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0xeee61add pci_bus_put -EXPORT_SYMBOL vmlinux 0xeef0abe1 netdev_alert -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xef153a6f bio_reset -EXPORT_SYMBOL vmlinux 0xef20d4b4 generic_setlease -EXPORT_SYMBOL vmlinux 0xef2549d0 install_exec_creds -EXPORT_SYMBOL vmlinux 0xef26138a dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xef4c15f3 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xef514562 tty_unthrottle -EXPORT_SYMBOL vmlinux 0xef59671b nf_register_hooks -EXPORT_SYMBOL vmlinux 0xef67be28 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0xef6c9d50 clear_nlink -EXPORT_SYMBOL vmlinux 0xef80491a vm_insert_page -EXPORT_SYMBOL vmlinux 0xefb82286 pci_dev_get -EXPORT_SYMBOL vmlinux 0xefbea4b6 thaw_bdev -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range -EXPORT_SYMBOL vmlinux 0xefeeb7f5 mutex_trylock -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf01047b1 rt6_lookup -EXPORT_SYMBOL vmlinux 0xf042b2ef ilookup -EXPORT_SYMBOL vmlinux 0xf0519a32 agp_bind_memory -EXPORT_SYMBOL vmlinux 0xf055ad49 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf089d2e3 xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf08eb2c2 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0a7b104 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xf0b0631f mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0xf0be2c2c __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0xf0c007a6 inc_nlink -EXPORT_SYMBOL vmlinux 0xf0cfcaa7 sock_kfree_s -EXPORT_SYMBOL vmlinux 0xf0ee8ddf xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf0f54904 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0xf100de73 input_allocate_device -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf10c7e4d pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible -EXPORT_SYMBOL vmlinux 0xf120872a dql_completed -EXPORT_SYMBOL vmlinux 0xf1330ece kern_path -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf17cc5bf simple_transaction_get -EXPORT_SYMBOL vmlinux 0xf1875f22 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0xf187f34c of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0xf189900f __lock_buffer -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19e9355 cpu_online_mask -EXPORT_SYMBOL vmlinux 0xf1a3f054 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xf1ae5a14 md_reload_sb -EXPORT_SYMBOL vmlinux 0xf1b3e350 tcf_em_register -EXPORT_SYMBOL vmlinux 0xf1b9c0c7 file_ns_capable -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf2124bb1 try_to_release_page -EXPORT_SYMBOL vmlinux 0xf21be61c scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0xf21c3c04 input_inject_event -EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock -EXPORT_SYMBOL vmlinux 0xf22e8858 dev_emerg -EXPORT_SYMBOL vmlinux 0xf2322613 udp_prot -EXPORT_SYMBOL vmlinux 0xf237eed7 param_ops_long -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf241ee4d agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xf2577c5d have_submounts -EXPORT_SYMBOL vmlinux 0xf27563cb irq_stat -EXPORT_SYMBOL vmlinux 0xf27bf674 vga_tryget -EXPORT_SYMBOL vmlinux 0xf295b9d0 vme_irq_handler -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2a6fdb0 noop_llseek -EXPORT_SYMBOL vmlinux 0xf2b2710e get_empty_filp -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf31bb78a sock_recvmsg -EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf35456d8 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0xf35d6490 genphy_read_status -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf38bdd63 tcf_action_exec -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf39de80d max8925_reg_read -EXPORT_SYMBOL vmlinux 0xf3a323b5 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xf3c7c466 lease_modify -EXPORT_SYMBOL vmlinux 0xf3e058ba __free_pages -EXPORT_SYMBOL vmlinux 0xf3e495ab skb_split -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3f115a1 elevator_init -EXPORT_SYMBOL vmlinux 0xf3ff53c0 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xf41e1f8f vme_bus_num -EXPORT_SYMBOL vmlinux 0xf43f20b6 netif_rx_ni -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf4449388 timer_interrupt -EXPORT_SYMBOL vmlinux 0xf45d689e kmem_cache_create -EXPORT_SYMBOL vmlinux 0xf46bd241 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xf4718d62 key_reject_and_link -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4889b36 qdisc_list_del -EXPORT_SYMBOL vmlinux 0xf4924585 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xf494c5e6 of_mdio_parse_addr -EXPORT_SYMBOL vmlinux 0xf4afd8ac alloc_fddidev -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4e6cd8d phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xf4eef396 gen_pool_free -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f4484d pci_read_vpd -EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0xf52321e0 atomic64_sub -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf54c51a2 dma_pool_free -EXPORT_SYMBOL vmlinux 0xf54fcafe flush_hash_entry -EXPORT_SYMBOL vmlinux 0xf572abe2 alloc_file -EXPORT_SYMBOL vmlinux 0xf5834dd0 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xf58b898e phy_drivers_register -EXPORT_SYMBOL vmlinux 0xf59bb5f9 vfs_fsync -EXPORT_SYMBOL vmlinux 0xf5a305fb i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io -EXPORT_SYMBOL vmlinux 0xf5b2ad05 dquot_file_open -EXPORT_SYMBOL vmlinux 0xf5b5bd90 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0xf5b85cdc blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5c32367 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xf5da50fb led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf5eda685 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0xf60a6c93 pci_assign_resource -EXPORT_SYMBOL vmlinux 0xf620d42f dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf664b436 netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf6789a40 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf69480f6 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xf69a6983 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xf69b4272 proc_symlink -EXPORT_SYMBOL vmlinux 0xf6b9cfbb inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6ddefa0 skb_tx_error -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f421b8 mdiobus_write -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf70384d7 __debugger_sstep -EXPORT_SYMBOL vmlinux 0xf703c14f buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xf71521ba atomic64_add_return -EXPORT_SYMBOL vmlinux 0xf738461c tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xf75828a6 of_parse_phandle -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf774b65b nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xf7845b08 of_dev_get -EXPORT_SYMBOL vmlinux 0xf789052e max8998_write_reg -EXPORT_SYMBOL vmlinux 0xf7a3301c dump_align -EXPORT_SYMBOL vmlinux 0xf7bd35f6 sock_update_memcg -EXPORT_SYMBOL vmlinux 0xf7d5a3c4 dev_set_mtu -EXPORT_SYMBOL vmlinux 0xf7d61253 fb_pan_display -EXPORT_SYMBOL vmlinux 0xf7f21645 prepare_creds -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf8172d4a simple_link -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf830d731 registered_fb -EXPORT_SYMBOL vmlinux 0xf83f4579 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xf860b367 generic_write_end -EXPORT_SYMBOL vmlinux 0xf86368c7 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xf8683691 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xf876d515 nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xf8778ed7 textsearch_prepare -EXPORT_SYMBOL vmlinux 0xf87f1727 vfs_getattr -EXPORT_SYMBOL vmlinux 0xf88532d3 pneigh_lookup -EXPORT_SYMBOL vmlinux 0xf8917dff hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xf897e56b jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xf8a2364e ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf91866de nvm_register_target -EXPORT_SYMBOL vmlinux 0xf91ee3f8 path_is_under -EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run -EXPORT_SYMBOL vmlinux 0xf9412c9b dquot_free_inode -EXPORT_SYMBOL vmlinux 0xf956aaff kernel_accept -EXPORT_SYMBOL vmlinux 0xf9889867 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9b3c91b bio_map_kern -EXPORT_SYMBOL vmlinux 0xf9da94a4 sk_free -EXPORT_SYMBOL vmlinux 0xf9df5398 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xf9e69190 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf -EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0xfa182387 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0xfa26ee89 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xfa49d178 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xfa4f80ec dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xfa515238 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa575a3c generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5ec70c remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xfa826f94 sync_inode -EXPORT_SYMBOL vmlinux 0xfa8fd73f param_set_ullong -EXPORT_SYMBOL vmlinux 0xfaa331a9 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0xfaaf9c9f kobject_init -EXPORT_SYMBOL vmlinux 0xfab0677b __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0xfab9c8c9 seq_write -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xface6c36 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0xfad8cb13 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xfad8d7ee blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0xfadb5750 pmu_unlock -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfafb2eb3 fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0xfafc9b1a mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0xfb01a456 ppp_channel_index -EXPORT_SYMBOL vmlinux 0xfb0fa005 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xfb1b4512 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xfb1faf37 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0xfb39d97a twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0xfb44795d mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0xfb6a7150 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb7e7518 dm_put_table_device -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfb949e87 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0xfb9a9b30 tso_count_descs -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbb65e65 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xfbb8a31a proc_remove -EXPORT_SYMBOL vmlinux 0xfbbd3cd8 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0xfbc0163e kill_litter_super -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbc860d2 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xfbe7c771 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xfbf63bb9 irq_to_desc -EXPORT_SYMBOL vmlinux 0xfbfbb1a1 fb_find_mode -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc0c5ec7 dcache_readdir -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node -EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xfc7c3baa tty_free_termios -EXPORT_SYMBOL vmlinux 0xfc7e7912 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xfc92ce9f __init_rwsem -EXPORT_SYMBOL vmlinux 0xfca53b5e netdev_features_change -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcce7357 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf84a93 atomic64_xor -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd0c5038 adb_unregister -EXPORT_SYMBOL vmlinux 0xfd1c204b eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xfd32065d padata_stop -EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xfd509f00 skb_dequeue -EXPORT_SYMBOL vmlinux 0xfd5d3251 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0xfd679465 phy_connect_direct -EXPORT_SYMBOL vmlinux 0xfd7379a5 netif_skb_features -EXPORT_SYMBOL vmlinux 0xfd7428fd block_commit_write -EXPORT_SYMBOL vmlinux 0xfd7aceeb pcim_pin_device -EXPORT_SYMBOL vmlinux 0xfd879a6f fb_validate_mode -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfd9f3a17 led_set_brightness -EXPORT_SYMBOL vmlinux 0xfd9f75d5 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdbb594f lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0xfdc2a76d netdev_emerg -EXPORT_SYMBOL vmlinux 0xfdc3192f tcf_hash_create -EXPORT_SYMBOL vmlinux 0xfdc74a75 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xfdc9625d fget_raw -EXPORT_SYMBOL vmlinux 0xfde6d8e0 phy_init_eee -EXPORT_SYMBOL vmlinux 0xfdec0ea8 dquot_quota_on -EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe1bb180 inet_listen -EXPORT_SYMBOL vmlinux 0xfe48e058 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xfe550af2 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xfe5b22d3 macio_register_driver -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe6ca78b devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe87d9a6 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xfeac36ff of_mm_gpiochip_remove -EXPORT_SYMBOL vmlinux 0xfec10122 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xfec3b7db vfs_rename -EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0xfecefd65 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xfed02c05 dev_alert -EXPORT_SYMBOL vmlinux 0xfed059a4 con_copy_unimap -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee28c3f may_umount -EXPORT_SYMBOL vmlinux 0xfeff0d7c km_query -EXPORT_SYMBOL vmlinux 0xff14080e arp_send -EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff390f79 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xff4ad4bd vfs_write -EXPORT_SYMBOL vmlinux 0xff56f014 sock_wake_async -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff6dea25 smp_hw_index -EXPORT_SYMBOL vmlinux 0xff7f57e6 dev_open -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xffdb82bc sg_free_table -EXPORT_SYMBOL vmlinux 0xffde88ec dev_err -EXPORT_SYMBOL vmlinux 0xffeb7cf4 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0xfffe5a2e abx500_get_chip_id -EXPORT_SYMBOL_GPL crypto/af_alg 0x2179bf82 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x2a19946e af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x39ad0b40 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0xa06561ee af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xb463360d af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0xbd6161a6 af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0xc7f5e353 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xd5114600 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xee87bb82 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xf7a20dc7 af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xecf60698 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x8756a61a async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xe62c2d22 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x2f47a9cc async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xe40d64a1 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6dcf2253 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc366a635 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc5cd5520 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf8207538 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x4820b5d3 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x54371a01 async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xbbb43f9c blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x3ef873ec cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xa2d8745a cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x098383ea crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x5338516c crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x0a430a3e cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x1086344d cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x36394bf0 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x38d278bd cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x406faad5 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x4739fc89 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x5646e0db cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xcafa0273 cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xd6ecd46f cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xdf1dd121 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/lrw 0xfab22c5c lrw_crypt -EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x1ce69522 mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0x1e8b6582 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x2de09852 shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0x30f36e8d shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0x3b696716 shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0x5d2d47a4 mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xb958b4cf mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0xd23683c6 shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x229bffe9 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x60047fb3 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xdf6b271a crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xf7f933fc crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x0a9ed553 serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xda763333 twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0xc3c80906 xts_crypt -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x06517406 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x094d2a4d ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0fde8127 ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x113d9def ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x18ce01f0 ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x36141b03 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x37e4efc2 ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3bd3b613 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4d700b69 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5b50b499 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5eaa1a60 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x61210667 ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8a9e7e60 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x95f2e4cd ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9a4ae965 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9b1c810f ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaa5907e6 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaae03674 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaf41626e ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb28bd30e ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc3941685 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdc16e708 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe7b44f29 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x008f53c6 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x040058ce ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1d90bef0 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5bdef65f ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x70675ed7 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x88bf68c8 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x88fdabea ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa0a14208 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xce8bc4ff ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd1ad7016 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xea4b9271 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf1ba8e54 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf94f894f ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xa952056c __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x578e570d sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x3aec6fe4 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x6bf08a24 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7e232ca4 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe516f2f1 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x137f28d1 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x18952200 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1fed8d75 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2a43678b bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2f78349f bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4ca5d10e bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5319e30d bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x531d9731 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7e022a2c bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x875f1626 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x876cb1d6 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8e0bb9f7 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa050da1c bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa2dd3422 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa558717d bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa7b3e64b bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb230dd94 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbbdca2f8 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbdb2ee2e bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc43aac3f bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc8852d80 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc93296ea bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xebdd55ff bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xff1da1f2 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0d0432a3 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x292ed2c5 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3ebfd29f btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3f2e79f8 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa35a70ef btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbfdba50d btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1475cbb2 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x19474437 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1970cd15 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x304706fe btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x344446cf btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x359f1534 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x40e2260a btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6b5c72b7 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x80e03374 btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbec765b4 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xce48e650 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x17ddd3f0 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2e365d30 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x522d4fa8 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x600f2dca btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x755018b6 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7c33c3c2 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9f4223ad btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaa96a922 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xddcfb4fb btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xebc2a7a2 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf5216a62 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x36a45306 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x9bb7b69f qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa9150c68 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x52b0c014 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x047b568f dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x642b111a dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7889bbd7 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8f733eec dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf3269e47 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x130cd81b hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x43015c1d hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xa5ddd220 hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x033ae241 vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x8279a3dd vchan_find_desc -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xb17ee7c7 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xf61a4f98 vchan_init -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x01abafed edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x171beb6f edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1f787665 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2cb8a03b edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3bfc790f edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3d560ee2 edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3ed7dc19 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4b744904 find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x75511f20 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7b5c2f13 edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7efb07a9 edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x90113aab edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x962a6007 edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9ac5b79d edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9e23af7c edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb0bef12c edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb662eac5 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbb6c096a edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc04dcd6a edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc35615bf edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd77564ca edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd7a5dfe7 edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf2ab0ebd edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x32b260be of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7130dfb2 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x93440bbe fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe80080f4 fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xed4e034b fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfdb2bac2 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x2fab746c bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xcb0c276d bgpio_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x69c58c4d __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xc8e8f463 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0f468154 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7a382d19 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x87b093fd drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x880836ce of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf295a6b3 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfdda0509 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x5a005e90 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x5a95f422 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x77090b3c ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x136b4a66 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1556ccdd hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1fbb2ecc hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x202913d7 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2a0ee235 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x30c0e33a hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x36ce8d47 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c879c6a hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4963ab40 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4fe4b76b __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x51afd32d hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5c1812c9 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6895cf56 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6b8bab28 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d5d6813 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x70eda606 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x71aa0639 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7637fc22 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x90beb9ed hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x984ec630 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x99574fb4 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa0498b2b hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa19727c5 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa449478e hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbeed6420 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbf8c9706 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc1119505 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcaae41e2 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcdeec999 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd2fbfac7 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd66fe981 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd8793b4d hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4722e97 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4d1d2df hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4d4cb1a hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xffcc5286 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xb914e3bb roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2a8f89c9 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4a8ba32a roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4f0a0bee roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5964b1d3 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9bade568 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa0136af9 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x38a31003 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x48105f54 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x99b174b6 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa0910fe2 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb481dee3 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd2ddebff sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd76b7e6f sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xed7f25cd sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xef7ec2ce sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x8e4af445 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x04ea5d9a hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0bcc92e4 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0fb80faf hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x17cd4839 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x364e6ac8 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x421a7ce7 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x42dad4a1 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5588c92c hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x713011fe hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8467954c hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9ceaba50 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb7a965cd hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb7edd002 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc6e7de4d hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcbd6ffe8 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd07e91fc hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd74265de hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xea23e9ff hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x59a724a8 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x675b5ed4 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xcc3e1715 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x13624947 pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x458ca895 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x49929468 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x631d8f45 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x71b5fc9b pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7eeb2c3a pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x822c7f72 pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8713d7dc pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9445e71e pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9b3f5bb5 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9b853f97 pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa400aed4 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xaa496f45 pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd8d5422c pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xdafd0b48 pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x160affe5 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1eed4b6d intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x39fe41e8 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x51c83da0 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9619b7cf intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb0166576 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb40d74de intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x006ef981 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1023eb54 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2358e7f2 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4a2c0399 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6af18bc9 stm_source_write -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x14de32fb i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x556f0c4f i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x61a2fa02 i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x9505f36f i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xdac98d39 i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x68082aa2 i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x9397206f i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x547d18cd i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xf5b425e1 i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x36591032 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x4d0b5e5e bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xc284b662 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0df40629 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x19ab48de ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1e78f5f6 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x35e56702 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x48f9d7ae ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5793d35c ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5f06ad94 ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8cee1b4d ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xfcf146ea ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x23ee70c1 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xd93547a5 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x80cb799b ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xef45d0a1 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0caf47bc bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x853614ba bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xd3cde420 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x05bba798 adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x192e5bcc adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x256ef241 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x265c28ab adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2ee67725 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3b24d866 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5ac421ee adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8a15d10a adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8efe7d53 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x901a9624 adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcdf7c214 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf2e88eba adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x01d85141 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x02154c5f iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x05e8f2a6 devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0fde88dd iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2d03d28b devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3d10bcd5 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x406ab23e iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x40ccda94 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x45e3d58e iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4a15ca68 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4abbfa08 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dcd98e3 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5397166f devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x57fbaf20 iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6f3d4dc8 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x81686148 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x84d00432 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8af411e4 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e1b2352 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9bd77c70 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa1018dee iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5f470e7 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb203fea1 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb5e2e864 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbf191b41 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbf734817 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc898ec24 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd02ea0c0 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe291f6f5 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe7c38428 devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfb5d9045 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x44dc29ca input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x7fe3b59d matrix_keypad_parse_of_params -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xef581cc4 adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x13c066e7 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x989666fa cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xbb4f1365 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x4d4ca9fd cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xa5ef761e cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf79c4d97 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x0f714b5c cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x6ca3cb23 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x6a5e16fb tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x98e4df7d tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa7257592 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcc7bf151 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0974dd6b wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x09e5806c wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2276da2d wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x61170fe7 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x76239a07 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9f2f26f2 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xadbd0f79 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb0031223 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbecf3e49 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc6204214 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd984ecb6 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf2474df9 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x01d6a882 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3a3a53e8 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x42db1251 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4fecbe64 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x60709526 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x783270ab ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa2c0cb11 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc2565fd1 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfccb80a9 ipack_device_init -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x01cc8890 gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x135e6d6b gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x13692d89 gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3efc6e11 gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4083422b gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x546eb983 gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5d945769 gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6fdf8924 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7dc95dbd gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x87e0a8e1 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9670cef2 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9984d8f5 gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd75a3960 gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe3df3c08 gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe8684f78 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xee8d5757 gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf20cd141 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x06703e6d led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1b1be622 led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x42f7ad0c led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x781d007e led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb4d59a6a led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb5c43da4 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4d4c7391 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x521368cf lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x584b0bcc lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5eb9e52d lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6787ca0c lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7516842e lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9435bb4c lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x964d90c4 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xae7c2a57 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcbfe1039 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf3f164f8 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a0527be wf_register_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x42465db1 wf_put_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x4d941917 wf_register_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x65482e93 wf_register_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x6e6eb5b5 wf_get_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x9f1b3bff wf_unregister_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xc6b2b6c4 wf_get_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xdf228e3c wf_put_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xe492e2d1 wf_unregister_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x11364404 mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x236b1c8f mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3f457042 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3fb1ebc0 mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4ae5dfa3 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x66b2edc9 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9dbdc548 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xad33a154 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb13b0e0c mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xceebb2b7 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe1164271 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf225cb54 mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf78ce176 mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf9cca8f3 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00b74659 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a1a7a99 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x374f45ea __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a4dfef7 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48991e9c __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f124797 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x614e860f __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x647af374 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6724de29 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6726a0c1 __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68f1ea6d __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7114cfcc __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78c57fa5 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7cb4bd6f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x816ebfe0 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x833b99dd __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8afe3e2b __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x912566ef __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92c55e92 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c59320b __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7004101 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf2376ac __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3942afe __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4cffcbb __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb9c28744 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0bd3171 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc773563c __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd81ad8c9 __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe30b6b2a __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6169c53 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcb52b5f __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x15344a1b dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2a1341aa dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2cbb3b3a dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8702b74a dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb8ecdd8e dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd0f1527e dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe0ffcdc6 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe7cb9c99 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf9c51efb dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x85248655 dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4fa95865 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6e302031 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7bc8ba1e dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8698c501 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa5bb3f3a dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xaa70b770 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xddd3564d dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x29c5a9bd dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xcc8a8725 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x17afcb8e dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2c2fedd3 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4d0256fa dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x86da51c7 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x90af8900 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd7dc265d dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x565969ee dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2507774 dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2d790f5e saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4b649168 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4c1d8576 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5ec43fb2 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x891087e5 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x903cf79c saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x940d0cd1 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x998d5eb0 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa06f14d2 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd75ed35f saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1d5df55d saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x544acaf7 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x616d4237 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8b8b5e7c saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa19f80ea saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd44f2baa saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd96f0898 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x24be9250 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2d9aec2e smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3770b838 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3c8a5ff6 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x49b21b62 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x59c26c23 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6b702852 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7b72aba3 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8b292aef smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaa0af285 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb5eb5c77 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbf8c9a5d sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc6c69389 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd3f972a1 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe1c68590 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe2238e4e smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf4ad04ba smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xc13e72ff as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x31a860da cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xe807073d tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x07f5d0be __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0x1fcabad6 media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0x328c9039 media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0x52411254 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x5ebf79af media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0x6805cc60 media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0x6ba04ce0 media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0x779c683e media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0x8259b149 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x8a59619b media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0x973b8cbb media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0xa15a967f media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0xa1dad81e __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xaad77391 media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0xb3cb7bdd media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0xe1f0dbde media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0xe388b83e media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0xef2e5636 media_entity_put -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x81c823ec cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0b3744e8 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x117e098a mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2bd18d47 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2f3b6c2a mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6ad580a5 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6eab28dc mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x77dcc7a1 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7c0a269d mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x99393714 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa3381a1b mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa53f41a4 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xad4ff173 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc080cccb mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc45a58b1 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc5347df2 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xea1a0d08 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf2b9f8bd mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf6abd164 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xff3550fd mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x066a0aa3 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3029c137 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3cf42b40 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x440b19e9 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4a7ef950 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6c32a42c saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6d218286 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6d34dad9 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x74f38e47 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x75fde4e2 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7a2a2b24 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x83b588c6 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x83e0aae1 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8d059cfd saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9f3bc9f2 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb5de43e4 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbb5eb047 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc408ff99 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfd8fb522 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0d775c26 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1f8e6564 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2e8d9e1f ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5777e31c ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x57b80c9b ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x66c8eac6 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8df61aef ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x07e39f31 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x129e8f42 xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x629fe44b xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x9dbc23bf xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb747d38a xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xbf794722 xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf355b182 xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x514c3123 xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x27d45efc radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xade2909e radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x079d751b rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2b3ed95e ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x43b88430 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x57fc3ae7 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5c7d9560 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x69c3ecde rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6a4b1615 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8bbb700e rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8f12b07d rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x908e6b4d rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa5638281 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc9c78aab ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd404ad2e rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdf73cbf8 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe6097d0e rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe6e1038c rc_open -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xdf0f2a1e mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x29028811 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x699a9e97 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x8ee61422 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xd5a1c318 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x2fc5eec2 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x345ba8dc tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xe88ed444 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xb8c15da4 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc0bcbbfb tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xe7227f57 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x293211a5 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xbb83595c tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x452c7ced simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x19428e86 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x24d97faa cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x30ff7b3c cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x331b64df cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x36f43682 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3ff179d4 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4156a3fb cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5226538e cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5a8f5cd7 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x66e884af cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9840fe2c cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa0ef5c7f cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa809539a is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xac9d0f7e cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb423180c cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcad844a3 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd6b7e7fd cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd74a0e3a cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xef53098b cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf52c0aca cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xd6f31f6b mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xc4ae60e8 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1df05a65 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1febcd7e em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x22361ad8 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3374317f em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x347d31e7 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3ff6eaaf em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4baa96e8 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x57a35723 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x61412fc3 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8570f57c em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8f1a3c00 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921918ce em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa25e0657 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa7f38010 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xad631b2c em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc12a2f2c em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe18ec2b5 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe3637dc6 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x12a8969e tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x29d31d07 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x3df0c678 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xadee8b19 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x3e5d80dc v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x6f5c53ce v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x95b34424 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xc4e27e7d v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xd6625c4e v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xd7976d0d v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xddccc84d v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xee359a8c v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0b624d39 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x23d82492 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a56f14b v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2b0c48d7 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3acfb881 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4613734a v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x49eaed3c v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4c98b532 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5030feee v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x66fc18ca v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x67d77623 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f72b43c v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7a1d46b5 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x84ad818e v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8c4e91a4 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa36dddc1 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xafe2ecde v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb5b140a8 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc74cd323 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc799106b v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc896ae47 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcade719a v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcffc8995 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe87e57a8 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf93b2dd5 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf93c533d v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf9c04d41 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0728454b videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0f577a5f videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x20540a9c __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x271d3194 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2a1b1fe9 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2b7616a3 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x628e28dd videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6a0dc643 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7f16901f videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x99fd93af videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xac5f53ba videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaef2d3f7 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb37458f8 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xba6fb0bb videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbc57662f videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbcfe4821 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbe89adf1 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdb204c42 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdd12d471 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe69f05ec videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xebb422ec videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xee48f399 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf755eca3 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfe0f54d9 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1f91c5af videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xb81285d1 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xe182788a videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xfb531d75 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x40fd75e0 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x76d206ab videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xb8cdc350 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x01439739 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x055e0e38 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x122940ef vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1489d325 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2720e648 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2b59407b vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2f9a6721 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3034746c vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3459bb93 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x883e7017 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8aca72bf vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9916597c vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xafd64a23 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc709dab1 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc8c3ef2b vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd23c8f7d vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd374afb2 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe7825861 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x323fa640 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x81d46d56 vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x380f6dc7 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xbe7244d0 vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0xfa3b6adb vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x098ca268 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0abec6fe vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2199dcde vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x27f7bff1 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x295bbe14 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2be7dd71 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2ee00ac8 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x38341dd2 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3bea8df2 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3c1b704d vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3c71c72f vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4671a2c0 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5a0d3558 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5aac9cac vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x623ab132 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x671b1932 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x882c9ec0 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x912fc371 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x988bec0b vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa04654e7 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa21c83e6 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa59f3407 vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb57f0b8f vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb9a4fe61 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc0ba0184 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc54df832 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc611630f vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc7d95744 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc973a17e vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd5b2c8b9 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdea07dc1 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf7fce07b vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x7ce52243 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x085c1c98 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x12338302 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x22845839 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28d20b15 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2cded248 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31e3d76e __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x337db8c1 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3740e82b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3d48d092 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46a39ac1 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x490084d8 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4b2137ec v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4c2a3859 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4f4dac90 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5f1df070 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x705346cc v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a85f5d7 __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x85c367fd v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ad99ee9 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9c03377a v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa0456ce4 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb04ef31c v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb558834e v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb899145f v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc847c5b v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc8c0150 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcfe1a529 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd04ada84 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1691fe0 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd25c1538 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe16262ef v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8c13e00 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xebd80a4b v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x25e68b65 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xb0f7d754 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xc30bf7fa pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x068e3714 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8a22333d da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x94f255d7 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc8634649 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdcaba63c da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xef33e1e7 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf12b86af da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x02654910 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x062fc836 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x14347e39 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1d0dc34f kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x325235c5 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x82c46ff9 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x91a049cd kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbc2d011b kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x72fcd5dd lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x9b9b6f41 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xee2e81b5 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3112f87a lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x633343c7 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x656ac6a2 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x6804b673 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9aefbf9e lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa167648d lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe1075ae1 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4a6dc338 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x676ca8b1 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7f7adc17 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x23c9d399 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x31c626f1 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x717c6dd1 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xea396689 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xef0eb344 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf52c69aa mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0a9aaa0a pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0c75cca6 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1b5e9a34 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x21e244ab pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7998dfa9 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7b733a2d pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7c16c6dd pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa1a9ae56 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb4bc490e pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd517a256 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf5ddde1d pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x529feaac pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xaf777857 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1cad1595 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6efe3807 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x990ba840 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd0ee3d62 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf5f48701 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0d0a39d3 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2d1735cc rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3b13c5f4 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4512a8bc rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4c2c94ad rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x574683d7 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5c270f26 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x65fda084 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x68823552 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6d8f358e rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x76b18790 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7d1f8a5c rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7deff181 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8a15c2eb rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8be3330f rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x909f87ec rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa9405c3c rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbe4953b8 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc4db9c6d rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcc1b7a37 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd5b72666 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe2071b16 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xedee75ff rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xeedfa70d rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x088a5b23 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x15441767 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x21e904de rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x268edf35 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5cb03f35 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x6c50e0d2 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x91462500 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9b463765 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa1193121 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb34d3d8b rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe6b9b3d3 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe8516a59 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xedf0294e rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a13ff5a si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0dc066de si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c93a17b devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1cc89b57 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x228e7513 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x28ffb940 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x33717a8c si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3955340d si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x486d5988 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4b00f20c si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4b33dcc7 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4b6a0a9c si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4c36af5a si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x58a4916a si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5a84e17d si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x63d15e16 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f185deb si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x762c30b7 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7800e297 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x81c2672f si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x83864899 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x888edcff si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8ffa19b8 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9669ed5e si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9c4a7518 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa828dc96 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb1f77ecb si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb7f388b6 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbd95f05d si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcfc5c6af si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe35017ea si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3e996bc si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xedcdbc1a si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf7d5e77a si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2ebee1b2 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x5b22d9f9 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x893df476 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8f625191 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x9c53aa28 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x34708242 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x485d8065 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xbff730f3 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc4bfd6bf am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x75e78263 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x9dc334ae tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xcbdaf6c2 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd83d41d8 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x30933348 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x382046f6 bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x7950d8c9 bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xad7f50d2 bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xfa1061b1 bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1efb1008 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x92b4cd60 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc65ecae9 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe7d54c09 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x154f21d7 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x258b6159 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6f2044f7 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb5c0e45e enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc9549a62 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd668886f enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe268326c enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe696d488 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4ae3bd09 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x713ce112 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa369b461 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa404a831 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbdd8f4c4 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcaee1991 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xdc401b13 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xde87585d lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x98206a1e st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xee4aba47 st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x07e54e5f sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0f350848 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3a06c6c2 sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x416b7ea1 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x609726b0 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x678eeaa3 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6fe5f5e9 sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7b4ee2ac sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x801838b7 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8d18a952 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa1061433 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbb74ec04 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd4c306ea sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xee495d3a sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0188403d sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0eb37881 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3d9bdcb0 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x45e14ecb sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5c37af9e sdhci_get_of_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6c1a5d77 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8967a8b5 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8a1ab0aa sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdfd9ff77 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x1dde2335 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xdfe9234b cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xe0c006a3 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x0cad5bd1 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x8106df87 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xff549457 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x6e93f2d0 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x07af92d1 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x23d6b692 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xff013ff8 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0114910a mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x083cfdff mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0a1ffd23 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e206f2b __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x12cd63ce mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1853f9e4 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1d383e2f mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x23e0d95c mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x37778aa3 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3e8a9993 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x41c1d911 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x48b9200f mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x495e7987 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ee4cd99 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x56f91466 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5f01f589 mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x723fad4d kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x79dd9479 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7b80d5f4 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8cf9d2ae mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x917afaab mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x95605ae5 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x95b3fa9f mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa5afbc25 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa6978459 mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7203d82 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbc4eef18 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc3300a8c __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc3a4b062 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9a37133 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd0fae5d0 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd2f303f7 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd50f9a14 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd9ae0d7b mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdc5c82d2 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe0e46b75 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe67cf447 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeaa5fe7d mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xed08cdcf mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeeb4daec deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeeca85b7 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf0c5acdd register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x3bc96952 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x6448933c del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x654419a8 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x971b70e8 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa98e1349 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x187760e2 nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xf60919b4 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x6c963380 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x5769165a onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x9a6c822b onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x2919fa2a spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x020af9d7 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x32a3ae31 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3737af41 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4168135d ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6614086a ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x790cf3b8 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa43caac9 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb5d744cd ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbd869f6b ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbec0222d ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd416d403 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe01f62b9 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xebf39c7a ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xedaba9d9 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x005b90c8 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x3d0fee8f arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x12b2ecde c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3e913fd5 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7d6e752b c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8a992f10 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd1d27609 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe7385735 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1dbad13f can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1ec932ab can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x20de7b6f can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x55c250a2 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x56d9d523 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5a1ec3b7 alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x63ae3d1e free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6ae65fdb can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x74695795 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xabe78393 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb03444a8 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb2b9e94f can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbf8ba458 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbfca8222 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdf00a507 devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe4f459dc safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xee72036d can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf3e430ca unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8a7b9286 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x909a4178 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa688ac3b free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xb4c22e7b register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x24c370b8 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x47062e56 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd70ccffb free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd733e2a8 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x25b81ab7 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xde66aa21 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x009b3ad2 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x015506f6 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03ec70b2 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0708dcb7 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07229041 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dcf2e07 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f027d51 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x103ff54b mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x114a0bdd mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1280595f mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15171c38 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15609205 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16b61c11 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1aebf08d mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e18cbde mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21e5c3f3 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22fc29ab mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2598ba80 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2734957b mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x289068d6 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x292861a6 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ab51685 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b3ad136 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dca99ec __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e5ede65 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30966828 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36e7db1c mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39b56cfd mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d7652c4 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d865157 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4095ea00 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x415293cf mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41dd16d9 mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42960eda mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44da1d6b mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f12e3b0 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x503fdeea mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x510b6b00 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51371c39 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5285c7fb mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52ae9a0a mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x530cd64f mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5524083c mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55ac061b mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55cb166f mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c95f210 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f0b518e mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62c58152 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67cc1607 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b04c87b mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c06d13c mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ddc55e8 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e6da2b2 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f85f81c mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71d6070b mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73624a9e mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75f7e2dc mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78cbf206 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c04ed1d mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c77c325 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7da1ed95 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8286a295 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84f9acd2 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88542f19 mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88bcb64b mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88dd6287 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a6e5260 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b30c455 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cf3658b mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ff555fb mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95272564 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95d2c514 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x975d2a3a mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ac72856 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b4f2bcc mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fae8da9 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa05f873b mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0d73153 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1033fec mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1a3fb94 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2c5045f mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3e19966 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa415877b mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7110c76 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8914553 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa93417f6 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab9bc35d mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadc888d7 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaeb9c1bc mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafdf9c77 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb12544ed mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb30c4800 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5fe1e1f mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9907520 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb1c7ed0 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbee6ceee mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4a05e84 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcadfd15e mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce4e7df3 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce9dd1d3 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd12507e4 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd13b2c34 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd21fc80d mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda1a56da mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb470fac mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0d178f1 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe26f79da mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3d64c4a mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe55efc79 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9518021 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebb1881f mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeebdb34d mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefd39369 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf323ae11 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5a6e8a7 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5bc7aa3 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7d7b878 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa3b2c8b mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfab54940 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd111a49 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd8194a9 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe953d06 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff21d2ff mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffe939b2 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02f15a08 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07c4fd15 mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cc81332 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f38116a mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1192d6b9 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1889c8e6 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18b6f48f mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a8d9868 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b115113 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a14ecce mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x472bac9b mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x492a21d6 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49416914 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a420ba6 mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4badb50b mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5400aa1f mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55b861da mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58fc1503 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ddeae0e mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x656f2f1d mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d141b23 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e3c7fe5 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81a7138d mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83031d8c mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83d4469f mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x859525a0 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b8a2d58 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cc55c32 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d69495c mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f617cd6 mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa068d462 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa49108a1 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6939236 mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9a80a2c mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb03defac mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5dc702a mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd1e6a8b mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5719c41 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd93620b9 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdac1fa76 mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbd1e297 mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1645528 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2ca79b5 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4a757bd mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6f395cc mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf75e766c mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x861bc584 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1a42b76d stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8e6807af stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9010e763 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb6185a01 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x884b313d stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9a88bb23 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb57e1d2c stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xefef655e stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x17df7fe6 cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x32410df0 cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x32a5cf0a cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x370e1722 cpsw_ale_control_get -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4298c84e cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x65a5331e cpsw_ale_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x67bf3c14 cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x7decc0c5 cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x97a7f956 cpsw_ale_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb1cf597d cpsw_ale_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbc76a5ed cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc78293e5 cpsw_ale_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc82d66da cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xcbaf2561 cpsw_ale_dump -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd28128e3 cpsw_ale_control_set -EXPORT_SYMBOL_GPL drivers/net/geneve 0x8ce0977b geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/geneve 0xbdd77a83 geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x002b65b6 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0a45b54f macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2a1a51f7 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd237ba79 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x96250d72 macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0a97602b bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0c0f4bd3 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x29d4ddf1 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ab1518b bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x590c9824 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xabc3afa0 bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xafd44852 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc52428b1 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe87320e6 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xeddebe09 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x21dffad3 mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x25fb44d8 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x511277b3 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9d8e6280 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc9322f7e usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0479567f cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x09ee0a09 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2b67bdd8 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x42838b61 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4da754d4 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4f9ea242 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x62c4a568 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xaa4643bd cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xec16d384 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2bdea18d rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x58153d2e rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x705d4723 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa467f86e generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf6cdfdc6 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfc8f5e79 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x036f0ad9 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0781d196 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x12cb1040 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1920c8ae usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x19529bca usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2d7172e6 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x41468912 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4f19c20e usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4feea48e usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x515da4b2 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x54572e28 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5aafb3d1 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5e06d899 usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6427c99a usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6cdab88a usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x71a59420 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7422e1c2 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x78c07a30 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x87070953 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x87194dff usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x89aff6f9 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9307eaf5 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa0643951 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb183732c usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbc8b4a22 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc9e897be usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdde86649 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe263f0bc usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe4b6b982 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe556a5cf usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8c58456 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeba754cb usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x29a4d8ad vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xa298b584 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x34bc466c i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4b58886c i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4cbd4cbc i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x72aac2d6 i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x77078645 i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x77a00eda i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x92393278 i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xaad853b3 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xadce5945 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb97fb3ac i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbb1406a3 i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc9c1eafd i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcec3cee5 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xefe73e11 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf90b2f93 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfc9637b5 i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x40fe83e5 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xaaf82e3b cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xb026a9a4 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xeabe66a1 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x6b5f2c69 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x1f84f5ec il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x6086825a _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x9dfbd3a3 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xc367af35 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xdaf4cbf8 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x00fa813b __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x23a59713 iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x276db7fb __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x288e471b __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x29915d89 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2a768f0f __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2fe09b7e iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3b5e3a06 iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4313841b iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x49594c35 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4c52708a iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x54a40390 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x58d10e1f iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x616dd162 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x68aa4497 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x79c07e1a iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x80add612 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x80cbc0bd iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa44d5842 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa71df00c iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xafbd9afb iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb7baa0fa iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe25d4444 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe64afd7a iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf2a60ff3 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x04eacaa3 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0d8ef98d lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x26fad257 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x44c59e07 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x450bf772 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x48bc6652 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5d2b3f7d lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x64828b6c lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x783f5ae9 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7a5fc258 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8a8b7093 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9e5f779f lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa8bfef0d lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa8fe3c52 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbcd9c6cf lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xde6da592 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x5c8974f2 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x78c2e9c8 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x7b8369ea lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x8e90dd57 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xaa815491 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc8e1ef30 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xd720ae1a lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xe7207c2d lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0900198c mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x307eb66e mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3c4f5728 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x45fe5ad3 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x49204254 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4c47f153 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x68e90410 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7139e720 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x866c3afc mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x87bb84dd mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8c5eabb0 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x903978dd mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x90c6a02f mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x91dcf704 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa0cf33bc mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xae62140c mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xaec3fc5a mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdcf88239 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe2cfbcf2 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x17b48123 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x1d1cabce p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x467c7489 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x659d8f5f p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x697ab36f p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xe176f1e6 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xe417f48e p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf010bfdd p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf42a4dc4 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1c8c9b37 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b14af30 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4d85475a dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f069629 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x041fd54b rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x066ed8d9 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x07682558 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0a1e4db6 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0c881a01 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1b378571 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2266b1fa rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x32f7be29 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x367c3275 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3c3d3328 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x406aaffc rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4204fbcb rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x421cc24e rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6b2b6fe6 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x77ba8960 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x810df773 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x83dd8f22 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9123c4f0 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9699adeb rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb2a9fdd4 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb68e8864 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb7227b54 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc99a5a79 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xce91346a rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcf45ba38 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe644b506 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfd8008ea rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d9d4f83 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x21ab388f rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x21f74635 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x23a3d431 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d6fa7b1 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a5cf0e0 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x55c8ec4a rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e04efb1 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ea20930 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6fdfee3f rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7e9be9ab rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x834ebe59 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c3777ce rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9eb8de8e rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3cee9bb rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab9036aa rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb32bed52 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc8c39381 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc1d442e rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7170d5a4 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x76eb7feb rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xbe5a5f64 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf6cdebfb rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x043d7d53 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x04ad08fa rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x08af3f48 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0a70b057 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1335e0cf rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x16907742 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x19748ec5 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2c30b18f rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2cf5fbb5 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x33a450f0 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x356ced5f rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3a07234e rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3b97e18c rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3c334262 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x43be3668 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x451d6046 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4a98f0d7 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5448e722 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x57764530 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6d46beac rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7abb1bac rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x90be94be rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9ef21585 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9fe488c2 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xac1ad6f7 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb594d00c rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbc3f4ed2 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc0451f3e rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xccf2391e rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd8f9e47c rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe14d0b03 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe935ad89 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xeb917a38 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xef03c88f rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf04147cd rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf1d7e205 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf7c8c5d0 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfd854f32 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x04636d39 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0643e9e6 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x1a3bc664 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x231e1db8 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x380aa433 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x414b7106 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5099c6df rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x592bf5fa rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5938407c rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7ddb6eef rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x866071c5 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc5687810 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc9a4aa3e rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x00bb8be3 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0e1edaf5 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0f400900 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x11afe91e rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x15f96b96 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2af12714 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x320a1570 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x39c303b8 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3c8b2a96 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x427f7768 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x47d32266 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4cc759f5 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4f8ee53b rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x51cc6ae9 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5c51f671 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5f7beb69 rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6024316f rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x619791bd rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6a53c03c rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6b0f80ff rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6cf34c71 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6fee9979 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x833daeb1 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x87baa4fa rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8c3d0ce8 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8fc4a777 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x904bef95 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9973082c rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x99b38231 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa3c660a2 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa94b8226 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaf538d6e rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb4d65282 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb54f86e0 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc2e9e961 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcd264054 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd17cd0a9 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd45157a5 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd5dfb1c2 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd868413c rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xda0709d0 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdf3cf941 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe205d2d2 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe2a5c324 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe33f369f rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf0bc123a rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x0b441316 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x2a681386 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x357a64b6 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x80cf6a87 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xfdbe13c3 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x1158072f rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xbaf4f57e rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xbb4e2152 rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xf8987502 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x00b2a567 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x01c4e275 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1089dad7 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1b320bd7 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1ba74e67 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1efaef52 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2483142a rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x37294038 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3b9a4844 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4e2e2888 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xba20ab10 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xbe05ca6a rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xbfbd6d9a rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc5dbe1fc rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc6dad466 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfafc148f rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x39104276 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x3fb80d56 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb82c0122 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x01139886 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x084c6394 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0a67de6b wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0b585750 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x109d09a3 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1616de8c wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x19b7a2c0 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20018e2c wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x25401b37 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x295cae5f wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f875635 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x362140a1 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3d14dfbc wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x428ab62a wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x43e6f3b2 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x44ae4f4b wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x456df884 wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x52ca09ca wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x54068ce9 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5a284789 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5d764be2 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ed642df wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x70a116cb wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x71055b89 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x759a23d4 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84e3c793 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86ca9e7d wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x881c799b wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d70ceea wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x949ce3cb wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x97938904 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa37b598b wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaa403169 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaf1f76e4 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbde7a388 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd618840b wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe09a692a wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe1a5df6b wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe1c484b8 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe36d35a5 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xead40f18 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee0618a9 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf798b9da wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa6d5854 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x02421088 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x97790bb4 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xcd3f16fa nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe659863d nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0441035b st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x04583edc st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x37375539 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x580a2220 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9ff2342c st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd46d4ae0 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdc073697 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf153c811 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0caab2f6 ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x8b8a8c2e ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xec50d7fb ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0f0b8a22 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x19c0d6e7 of_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x24e19f2d nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3bd1ffbe nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x598dff7c devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xa87704e5 nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xb8539d0c of_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9e8bbea devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x19e413f8 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x73cd5ebb pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x978ebd9a pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x08808c9d mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4b9778b7 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7ab0f96c mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7f1bbdf2 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xad89a71d mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x051b5c12 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x28e87467 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x352543fc wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x47584dc9 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x92344bf3 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xaed5555d wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x85f6654c wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x033d5bcd cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d3bb17e cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d6f428e cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e645c1a cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x109348c4 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x17901f39 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e001c76 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x236dd158 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26a9ca99 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x293e6689 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2bc0411f cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e2dbab8 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3349cf45 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x346d543c cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x370b78b1 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b4cddbe cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3caaff3a cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f2e0509 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4a11df92 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55c133e4 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b5ffb18 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5e5a2d0c cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x75aead39 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c5e2fd7 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x933a435c cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9356fa3b cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x956c5604 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9b25ead5 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9f7c922a cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa0b1645a cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa0e0b1ee cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac1fe16a cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc00a208e cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc2874652 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc3538ac1 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc89ba1da cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcf728b76 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdc40dc4d cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xde7d8704 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdee4e2c3 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0199fbf cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe31becbe cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe41fc38d cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf1ecbddb cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfe16fbde cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfe7b24bd cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x19fd0b26 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x29cf8347 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x34fbec6e fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x360077e3 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3f3a9bd9 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5a09e21b fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5f759369 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6f5f1830 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7d213303 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x80ba3191 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa457c3d7 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb206e455 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbca15a23 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbe8ef5da fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc67d9871 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd538e6f1 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x22e2a0ad iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x306138a4 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5383fe95 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6f7b0ee5 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xab67fecb iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcb9d2d0b iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x00cb0cde iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x085ceaf0 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x198b4054 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x245e4200 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b9084ae iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2df63886 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x34e25354 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36288757 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x38f0137f iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39764690 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ccb4737 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3cdc31e8 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ee79911 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x42d8b518 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x42fa9368 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45dfdb78 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x48b80536 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x53b3e90c iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x549d9844 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5744f8ca iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64b97db9 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66355906 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6a465d4f iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6c73eaf8 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6f536922 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6f96bf5c iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x834cf383 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x875eba5b __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b1bc9df iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8bd0410c iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8dd1186d iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac22ed30 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae22816c __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb416c2df iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc17a5ef8 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc465bced iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6549292 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6dba684 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc90d4877 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdefaf536 iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe07c2e40 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf9719748 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x019bf25c iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x09ec2ebd iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x18b0f4b8 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2b1f013f iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2d2843da iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3ac0623d iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5f69c633 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6492c081 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8b2b6788 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8f2e26d8 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa13a61c6 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa268f2a2 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa80aa835 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc640862b iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xde4cb13e iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdf617536 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xeae26ab4 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x073d6820 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0fe95550 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1ec5cb97 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2500ba7d sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2696ed98 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2803aae0 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2ff31818 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3134a61a sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x37924490 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x45e32f92 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4e73a87c sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x59b0c141 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6cc9cd74 sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7e7df9f2 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7feddbb6 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8ac1b1d3 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x936d25b3 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ba9695e sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xabdb6cb2 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb120632f sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc5783e2d sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcff90b49 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd5eaa480 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe9e435db sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x03d0b02e iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x065812c5 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x095b5139 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ada15af iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1d90e9cf iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20f43464 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21379e8f iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e038055 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4030070d iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41423e5a iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47a694a2 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55857c22 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5803078e iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58de75f0 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ec1d8d0 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x66d47e18 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x68a67d55 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72338352 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x73d7674f iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x73f17625 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7697b4d6 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x76f921ab iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x78827e00 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7c1b3594 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8640e38b iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x89e33fd8 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c1e8a5e iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x91c03586 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2e6f884 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4dd543f iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7715837 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb157903e iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5792493 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7a09373 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb97696cc iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbde76845 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc309d34a iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda869e90 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb5ab67e iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfda3101c iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0544a625 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa5688272 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa81d7bd9 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd983d325 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x8daa6d38 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x14e22728 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x38cca0b1 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x65f3857b srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x75740915 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x93caf7b0 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd3da38d5 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0dc4b998 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x13293fd0 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x327ec126 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa015a28f ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa123a275 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa1943386 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe9e033dc ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x15aec507 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x63816eec ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x63a5223f ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8c8b54c1 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x9466569b ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa4ffe7b8 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xad461837 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x77511d5b spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7eb0e687 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xac3b5949 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc7b94ee4 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd1a34366 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x16884dd5 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x86c0333f dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x90ec99a4 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc324245d dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0f6ef4a5 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x277a8e8c spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2f385923 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x440c987a spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x453591c5 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6e33f5ac spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x740dd306 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x783acb09 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7b5ce111 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9c247dee spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa9d0d8a2 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbd234903 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbd76b911 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc3f34fe2 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd4e4e7a7 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe2c8df8a spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe37d4de0 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe85af963 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xbd28048d ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0a30c74e comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1000f499 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1285cf49 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1d04e680 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1d594ed8 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2153141b comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2c1d5ec3 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x34b3c454 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x35141267 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3f42d9b1 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x409c3303 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x40c2b9c1 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x52a785ef comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x530c18a5 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x532132b6 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6f5e108e comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7b0a4100 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7b9ca3e4 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7e010ec2 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8643ad99 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8c4abbbe comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9024d626 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x931a708d comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x96a98e29 comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa11f61e2 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa828e4eb comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xad55d020 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc4055b1b comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xce2ad310 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd4ce0236 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd8299644 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb963491 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe89f9b23 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe947a59c comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf235ff1d comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x243dc711 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5366d9ae comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x540e0748 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5b7ac0e7 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa4d9ad2b comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xac01c9ce comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb3788075 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xc055cbc5 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x437c8cf2 comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x81a6d6a4 comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x94624dca comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x9ec9cbc1 comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb9787451 comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xc93f1ecb comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xee319d98 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x6e353923 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x79cde4f3 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x84bdc080 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x957098e0 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xca2b296a comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xf98f9326 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x28815a2a addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x23d48d9e amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x71e9fae8 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xd7a2e0ec amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x06a08099 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5617c4c7 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5785f228 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x673f7c4a comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x72ced722 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x73d98c4a comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8fd598d9 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc487ab92 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd9ab76cc comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xdd9d3465 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe465bc59 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xee606dc9 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf29c321c comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x444657db subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x52d6ce59 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xa2c9be6c subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0ab7ffd8 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x28f2221b comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x3789f086 comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x7040990c comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa228e27e comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x12e8950b das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0b98fc82 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1094ce4c mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x13f282c9 mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x17ef4b23 mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x392b0943 mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3c050516 mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x45ea9c97 mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x667bd682 mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x686832a1 mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6d463ef4 mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x727a69af mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x90eb288e mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9c420ab2 mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9c9e3169 mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xbe3d902d mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc14d5fe5 mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd2cd0ef7 mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe6f21240 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xebbfac79 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xec3962fa mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf8f4a3ec mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x169322fe labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x9b16753a labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x0fcb7adb labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x6ad5648f labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x7e5a266f labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xa44486ea labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xdd998912 labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x01eb25c9 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x12ebae5e ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x41c5c303 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7465a0a3 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa28f17be ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb7eb2b23 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc49cb886 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xdb99e574 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb589e4db ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb90833b5 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xdd709a05 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe3c888f7 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe69d9cfd ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xee512d66 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x2cfb0297 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5926fa5b comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5b54bb39 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x7db27a5f comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x80aa6880 comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa804f28c comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xd67e1955 comedi_close -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xe4d713b3 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0231dc9e most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x07f3995b channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0e7ab641 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2aca1d72 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x40a2487c most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9eec5260 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd24ebfbb most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd78c29ad most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe2165a0d most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xef6617e4 most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xfc77dba0 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xfd5a2571 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x16b2cbe5 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x57caf90e spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5b6fd3f1 spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8d3753b8 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x983082a0 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbfe749d6 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc561c9d3 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcfaa1cb3 spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe2ec6016 spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfad944d8 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x29d446fc uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xa466314b __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xbfcd2d89 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x193a0c15 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x8bb04352 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xe88887d2 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xf8a9f5ec ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x038e1192 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x12e55423 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x849b3e1a imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x290d0cb8 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x339143d3 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x42673f2d ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4905ea44 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa2085c05 ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xec014ff8 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x04e4bfbf gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x06b3645b gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x16a44d26 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x21372e25 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x23539b4f gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3412b46c gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3c7be026 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x497e6993 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc2e14637 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc589d66b gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd643f509 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd66d4d50 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd7f351f1 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe644ff8a gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe99f4277 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x692041fb gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xa3897ad6 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xa9cfc807 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb39f842 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x0cbac216 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x4d0ead73 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xd922f02c ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0193856e fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x09d68470 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1c9a603e fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x28f8fa3e fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4168f9af fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x44acfa93 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x461cfb62 fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5ac7e556 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x65d0a05f fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x69bb689c fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x85be7ca3 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc20bbf29 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xce943682 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe50ba088 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xef486e0f fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x212f9b6e rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x26718582 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x26b3a124 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6007ee49 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x74de3af8 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7b332b0d rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x82b1680c rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x95950108 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb1927c01 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb5deb9ec rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xda01917b rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xda23fccb rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe1ae1c1f rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe22dfd01 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf97c96eb rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x00bc0e08 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0179dc91 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0547136d usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0b5b3781 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1f92cedb usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2830e25e usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2b575264 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x38c71ce0 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4358e185 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4496aa0e usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4b6b8dd2 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x51273e6f usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5588d794 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5ddd43f6 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5fb6014e usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6b5066a5 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6bf7d603 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x77be8703 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x82f3560e usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x874d181d usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x895d6498 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8a0a12dc usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8afee11e unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f856728 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9080114e usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xabf6b4ef usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb02ae625 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb0dbd98c usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe176247e usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3a52516 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xed304326 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf51291ce usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1451bcf8 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x204108b4 usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2a71bce5 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4ea9a733 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5eadc517 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x621357a1 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7dbfd519 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaca6d1dc usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc4ab7568 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc9c4441d usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe1ac8da3 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe8e9a35a usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf01090ad usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf34cd4c7 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x864d3643 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xc9f6ce97 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x15bf4032 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x32aee268 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x49a7c031 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5255ee18 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5a09cf9d usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5bbbc95f ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x69c6c405 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x80c075dc usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd1ad92a2 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf3e5fdea musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x9770038f isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x381c3185 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x09fd97bf usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0a649c31 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x15305fe3 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x39ec7e5c usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3fae5a7e usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x46a874b4 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x535bd0d0 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x56cb8020 usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x62f89df7 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6c4bc557 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6cbf6546 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6df0193c usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6facbea7 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8a7ae2d5 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8c4e9318 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb23cf081 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb3fd444d usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc7478db0 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc94a6beb usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd527de95 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe1bb07e7 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0607e90e usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x26792d95 usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x29ac631c usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x36c0f4e2 usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x375572cf fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3cf44017 usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x48ba5031 usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x64d3a090 usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6cfce202 usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7437e1c3 usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x79cf2042 usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x910b4b04 usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x925af3cb usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x95d6fd20 usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9a18d697 usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa4b73465 usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc0c857da usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcdd32bb1 usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd333dae7 usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdab4f690 usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdf045e99 usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe251b9b4 usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf2855450 usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf79e7449 usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1b55e908 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x233810dc usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x430b66ee usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x434063e7 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x57c855c6 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x63a0956a usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x87906d47 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9a9cc350 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa44acd48 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdeac1c32 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf6608941 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfa5e90b9 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x1989418f rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x2ee5eb9b rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5ca07abf wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa5982173 wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa9a83084 wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xbf569f16 __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xee50b7d3 wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0166aac8 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x044979d0 wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3ec437d8 wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3ff25358 wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x479bbf7c wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5f4ec476 wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7b44c36d wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f9cbcca wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8aae882b wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x95ce94a6 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc395e4cd wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd25f4c01 wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe1b15dbd wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfba5fb26 __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x69b49d88 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xb51a5ca5 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xcff2582d i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x21956035 umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x37fa68d0 umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x442d3cc1 __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x511ae61b umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x7a309e0c umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb5f71cbb umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xbc11bdf0 umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xfac0d94f umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0060c372 uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0070677e uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x111f43e8 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x165f5ea6 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x19859568 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1bdafbd3 uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1da412ec uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x324dd76c uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3f0d6328 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4cfc81eb uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d802a65 uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5283ad10 uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x59b5ac92 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5b5a5c7a uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x600f7d19 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x68c69514 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x70ac119b uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x70c13981 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x76a89a1f uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x78e7dd43 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7ef10207 uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8587051c uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8809eb1c uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8bc3c6de uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8d5e6770 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x968d89d9 uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9a87981f uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa445a989 uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xabb77ed3 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb1061fd4 uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb8173515 uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc0b541f8 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcea3453a uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcfe0e12e uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd2747136 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf9fe7c44 uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfe82c8ad uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/whci 0x98d0a7f6 whci_wait_for -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0a01249d vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0c1be22d vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x28e67949 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x37e6d9e7 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e389b1d vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x41e8920a vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x558b8283 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x661e7dac vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x68012882 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x746d6e85 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x81bcd114 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x886c5342 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x95d1d677 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa6acbc55 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad86326f vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb168d5bb vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb8880a8e vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb944d034 vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc33d1f6c vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc6d9bf3e vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc9601dab vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe579d3ca vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe8a5e04f vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe9efb62a vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xea5ec785 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xefcbf055 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf09c3205 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf4bfdbc0 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe99f45a vhost_poll_start -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x08a89586 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x326a9265 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x68d6ee15 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x94021bc1 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x940dbdeb ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb22ed8c5 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfdb86782 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x082cf847 auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1be91fd5 auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x4cad4bd2 auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5cf20387 auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8606becb auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8c86294f auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9df122b3 auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xab089736 auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb7d1f440 auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd03e4b0c auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x629c02d7 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xa3f859f7 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xd201bb95 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x052d53eb sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x7a4e80e7 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x0c556361 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1dbb2596 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x54e15a4d w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x8d51c7ef w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x90510929 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x949c7a7e w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xcd9b5f38 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xcf754ddd w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xe0f7101e w1_touch_block -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0c635519 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x513af3ef dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc3b9331a dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2690be18 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x53af73c9 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x632a54f8 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa0bd6b93 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xac5e58c3 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xee6392f8 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfce7e6a5 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x029f669b nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x033be489 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05b0dddb nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05ff6d68 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07e27d5c nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a125bee nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ad8a6f0 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c14c0f0 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f00f070 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11218680 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18b75d78 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2336605c nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x237f651b nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x241da659 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x245bbd04 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26754db7 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29bd2770 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a6b77ce put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a7114ca nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f1f14e6 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f60818f nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32f5990e nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x393964a4 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4670ddfd nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49deb56a register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b7d2757 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c8623e3 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d33e4d8 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ee11a43 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f281c93 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fc9be8a nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5167826e nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51e3f901 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5215d9a0 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52631773 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5dac2713 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f5155d8 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x611243d5 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6187d9cb nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63367d8d nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66083572 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66f6559f nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x676245ba nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e1571b6 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72ec33ed nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76b91309 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76edbb26 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7732a67f nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x778224d3 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7925581d nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a262ccb nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ada1b75 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b9ae862 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bebf430 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e5c4826 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80b55e76 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80fc3a5b nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8569a6b7 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89bffc70 nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a3f3051 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b851c8f nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9050a618 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90bd0200 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x944ffb13 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95a02256 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95b54573 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96c4ae35 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98114649 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98a0ddfd nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f3d5379 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa199cf7c nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2c6f4d1 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa48483a1 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa61c66aa nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6958f38 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6e7911e nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa90d4950 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb06af14d nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb170e617 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb25cf806 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8692d29 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8c787f3 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbae5162d nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbf5ff53 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc251991 nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbddbe520 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe4b8df7 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe59215b nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0d4dedf unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc120d62e nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc36fc10c nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3d3e8e3 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc69aa19f nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb0c9fe8 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb5a4942 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd73aeec nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf2263be nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1909912 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd44108ea nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5c2caea nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6d7ad77 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd75e7d21 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda8e9806 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc4b1db0 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd20a548 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd515f18 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde098afe nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe23d543b nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3e0081e nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe467a702 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe68f17b0 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea5215f2 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb9d1257 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecc20d4f nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed4a0440 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed9492b7 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1b0f772 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf383a548 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf738fff3 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf75a898e nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf777bae1 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8ab8542 nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffdc664a nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x7c57d9b0 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01e97633 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b4bfffe nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d1f6154 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13080525 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d9ec948 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ffe9827 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21c17762 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ba30b02 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e38a524 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33889c02 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x367a01ff nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4043fd29 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41b208a7 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44afde2d pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45250139 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48c736be pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50d928b5 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x588c07e7 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b1b57c8 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b4b89b7 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d5c1cd0 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c8ef69b pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b0aa67d nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b3c5190 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b84177e nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ccd6f47 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87820c0b pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88cad38a nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8cafa3ab nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e950bf7 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96d47447 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x977dcd07 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c7d6dc2 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa04aa0c1 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa43982b8 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7c916c6 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab5f9543 nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2bdbfe9 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb42f1caf nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb69ba528 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8040bb3 pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb607447 _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd165b9b pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd3aaca7 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4197671 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc499047b nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc889368a nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcbecff92 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf24d1e7 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0624b8f nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2391ae6 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd48718f1 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd64c20fc pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0ae3ce3 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xecf9e9bb pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf396341d nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf410f7a1 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9b51239 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x013f1bf7 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x3d5e7544 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa73344b7 locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x777ce1ba nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xaa61b059 nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2ae52ecd o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x60cfe0aa o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x774faf1d o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9784473e o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9c67a1b o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc471d144 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf3da37d0 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x255d43dd dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3728352f dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4a66a79d dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x674492d2 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x996599a4 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbb695ce0 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x267b822f ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x49664ca1 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8c71aa38 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x5f7bff43 torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xbe6b05d6 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xd0e28ea9 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x3292b98b notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x45d01df9 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57861324 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57d39367 base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x882ce5fc base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9e0112d0 base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xaedfbb15 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xc8fca8a6 base_inv_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xd11741a1 base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xe3d900b5 base_old_false_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x05cb0970 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x4faf4556 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x53e95889 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x56b80a94 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x7c3b565a garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x8acece4f garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xba6d352d garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xc740e506 garp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x1d76fee7 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x2bd859fc mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x393b9137 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x4f610ad9 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x833ae593 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xb47f5797 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/stp 0x2430e254 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0x3ffbc60f stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x9eff032d p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xe9c5aec0 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0x4c1332be ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x08785d78 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0a02f95e l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1bc9de27 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x421115fd l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x47123661 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x495683c0 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x675d6087 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x80066cdf l2cap_chan_send -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0d088e87 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2e164c39 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2e2ce435 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x57c5852c br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x90c2363b br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb3918ae9 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcbfe4504 br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe69dcaeb nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x32e340df nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x9256ca7c nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1b1b1bf6 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d4e5054 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x24abd59a dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x264aa490 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x29f222b8 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2ae82d9a dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x30d100d5 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x35d27bc0 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3bab6d76 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3c97b4d0 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4d14d39e dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e4060bb dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x68baa2ff inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7cd13884 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fa35758 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ff9ef49 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80a8d02a dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8f3957c5 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9004e803 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa1580170 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb297edeb dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb35c6acb dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb5e82d99 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3e38b0d dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc5086e39 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc647601f dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc74aa7c4 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd41d5a45 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdc28411e dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf660bee dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe472cb32 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe64e9b6f dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf457577d dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1e531f41 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x297d62c0 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2e2499de dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x49bd7be3 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x74a1bac2 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8141397a dccp_v4_connect -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x0a0565d6 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1057a76a ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x13f6321a ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa7312211 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ipv4/gre 0xa320db64 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xae0ef785 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3ae397f0 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5f646c90 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x62ba520b inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6caed486 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6fa3603c inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa131e2ca inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x91a8efb7 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0bb8669e ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1b684c90 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x26cec1cc ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x29b80923 ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x30b6379d ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x31a1d9d6 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x34f74a95 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x56290321 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5a2cfb5f ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x664ed90c ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x99ce52c8 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xafd1658e __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb09145e8 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd5beffe0 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xec85fd6a ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x8e8d3726 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x5ac1a97f ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x57c3b391 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x126f766d nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x2aa73bea nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x62ae08c1 nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x76c68623 nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xa82fbb46 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x46cd4588 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x30c5f2e1 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3c7fa36f nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x807fe7f9 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8c34845e nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd57ffa11 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xeebf7af9 nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x073b2bf3 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x215e3daa tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x328a1a4b tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xdf2c61c3 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xed6f3576 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x53a9cd28 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x98f6921e udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xce995b1e udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe3f36b18 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x29b02575 ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2d14fed5 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x486884bb ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4936e3d4 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6a2b2e88 ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7a666d54 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd87bddfa ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x724c024c udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xc7db332f udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x85e3a0ca ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa0d65ed0 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xb0b6c3e8 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x3fe5ca64 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x950a9b21 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb2553138 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb36d2f22 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xc7720cf6 nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xf139d458 nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xfa1e8d41 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x042d4b3c nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x30c85a3e nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6be3d974 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x85564e1a nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xebaf26fd nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x88b70d5e nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0b86c87f l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0ea8000c l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2717814e l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2ff007bb l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3b424809 l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4cb222a1 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x584e45c8 l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6899687b l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8bf5990d l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8e42a507 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa20237d5 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa9f4681f l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb8d9858d l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xba07b3c8 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe7a706cf l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfde9d29f l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xb9bdd855 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1159fa2a ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x29ab0ddb ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2d7f98b2 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x45b9cff2 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x498ae2db ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4a91aa0d ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x927506a5 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x93cae325 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9db107ce ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa36992d6 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4f32c75 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbe22ef5b ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc8ba9036 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd9125121 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe335284b ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4615175b mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7cff528b mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa52bbaab nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc4adb4dd mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x07ff47c4 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x28a42057 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x31ac79fb ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x33c3fde8 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x36ebe0f7 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x614618b9 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x70691e62 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8bdf64ab ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x96782108 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x99f5199d ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9a8aaeb7 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb6e184dd ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc0974350 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc6545f67 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc7fd58aa ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf03665df ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x07365f77 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4e9a0506 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6a98e194 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb0430413 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0780e117 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x114e1bc0 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14314243 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15f8755d nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16143dcc nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17d1d602 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x243ec5ad nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2588ebc9 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b38c936 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d5ccb0a nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e2805f5 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fdfbbca nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31e26668 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36f2c3f4 nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3cd32743 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46dde551 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47d29cad nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a56bb2d nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b789b3a nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c20e719 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d53681d nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4fef3bce nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x527d6f84 nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53ea2e1d nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x556dfd12 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x560d21a0 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57cedd00 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d307d49 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x612f2840 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63fe551e nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6619ba42 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x670d9a97 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x678d72df nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x690b95ad nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ab1e84a nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b7f954a nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6cb91d85 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e5d7a2c nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72403dd6 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x733ae6f5 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74eb87d3 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c279183 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cc60e96 nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81804d4c seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x847b83e8 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88bedda8 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b26bca6 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8dcdecee nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8dd47564 nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x958a7c60 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98c9e911 nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0bfbbe8 nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7e5015e nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8f1f34d nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa2965d5 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaaff8b93 nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae049794 nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb79ce315 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbaeb1487 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbaef39d1 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1c05a5d __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc919a98b nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4a1592b nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5a5268f nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda533dcb nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda6e3590 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb69bb1d nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf7a9b27 nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6884338 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7b3468a nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7ec6be8 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea87baa0 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeca74e95 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee33b9e6 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2b47f5a nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf63bd132 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf74d788c nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa6db584 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x0e4b93ef nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xe25c6ddd nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x2b300fc3 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x00603e3d get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2f81196f set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4bf5e76c set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7294ede0 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x78f59a57 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x83d484ec nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x900643f1 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9abc5c12 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdd32f031 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe5c168fa nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x95d53e64 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x24b99fb9 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x56989f1a nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7b68e287 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7f3b9cd1 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x15b4ba20 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x7d2dd3d2 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x11b798c3 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x25a2343d nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x25a86578 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x58364dfa ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xafceaf63 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc1cb7ead ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd0432473 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xeaa6959b nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x3684e8f1 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x8d1428dc nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xb69acef3 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xc69948c4 nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xdbd25a74 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1857e967 nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1dffc701 nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1f60bdb9 nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3473034a __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6ffc9e99 nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa9422473 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb4dbd9dd nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd6940aa5 nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdd28f605 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x2582d868 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x58291ff9 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5c1eb4a4 synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90e600f9 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x000e95cd nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x14d1db09 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4ba0811a nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x579a92d0 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x63272b0d nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d63d313 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8c41c4c4 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x95bcc0f3 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x977c8d0c nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb03d098d nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc077a08f nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcec3188f nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd71298d8 nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe600cd2c nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe60e955c nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xede090a9 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf99ec445 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x268c19fc nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x71bed094 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x77df399e nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x86fecda1 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa40788dd nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xaa588979 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xddd66127 nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2d89f484 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x849b820a nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa5fddc57 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xcd95b019 nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x3be0c4c5 nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x3f86d46a nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xd6a5b248 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x76bd8987 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7b747a99 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x9bc4beac nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xa39eb068 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb10d13bb nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xd33a0adf nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x108a0343 nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x190cab87 nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xb6b6adf3 nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x21a5960e nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xfdb7d045 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x032ec094 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x07496dae xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x230ed448 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x41e51fba xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x469ef1f9 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4cdaad0f xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5c849975 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x74400549 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc5ac8cff xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcc254ad1 xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd2c1fed6 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfc828847 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xff628737 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x59979eb0 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x811e8659 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xc7b4b4f3 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x18bae67f nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x2009ea44 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd83a6c78 nci_uart_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3352b33c ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3622ccff ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3d18bab9 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4819d1b4 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6937e215 ovs_vport_receive -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6962addf ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x96b7f3de __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc3e40b4e ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc6147a58 ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x0977910a rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2da35ed5 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x2fd958bc rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x2fedd969 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3b17844e rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x4622b59b rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x4c70b216 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x5bfbbbdf rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x65b81cad rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x7194834a rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x76e3ef32 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x77de74ad rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x80756350 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x80d63804 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x80d7ffd8 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x8c2ba7a7 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x9137a0b4 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc68c9a42 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xcefcb3a2 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xd7a98625 rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0xd805b776 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xda2c3a2d rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xdf60ebad rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xf9e1ddb0 rds_page_copy_user -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x2f1fe7cd rxrpc_register_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x6336b500 rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x35f15397 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x908de199 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x9b3725ad svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0015be10 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03b75712 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04c8c98f rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0607dc17 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07d2cbf3 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x090e11bc svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x096e18c1 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0984dc39 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a8f4bb5 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da06165 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e8a203e sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f2a780f svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12cd1e32 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1304071b xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13a6b3ec rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x144c1d65 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16b631cb rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16cbc3d7 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16f62c4e rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x179ce266 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ab23862 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c901a9e rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e4724da svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fb901ee rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2048907d cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x212278b1 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2137cd7c rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23dd8dc9 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x265caeea rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2671e0bc rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27193b15 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x272527c5 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27afcbde svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27bc1f37 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27c17313 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2950aaa8 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a23212a svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cb08237 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d611cea rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e5922f0 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fe6a94a xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x314bb273 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3180df64 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35912cf5 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3eba4913 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3edb4a21 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f19f093 xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fee9b46 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x468ee243 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x487825a1 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48b0c8ac xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48bdd68f rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a932427 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d1566bb xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d73ae13 xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f289985 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fb308a0 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50378f7a xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51337804 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x513a9637 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52e082a0 rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x536ea294 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58a8e72e xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59864eba auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a447063 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a591ab8 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5af39474 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b6f0cdb svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c195b56 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c71e636 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d54534b xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ee3a795 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f3a09d7 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fa96f32 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fe16606 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x611b083a rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65ee8ef7 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6719ff7d rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x678d3ca0 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67dbdaef cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67fbf078 rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69589613 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x696077b0 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a53556c xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a7fe8a6 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c678896 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ef663ee rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72da8893 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73152c4a xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73ce26db xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x746d5e7f rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74eef4e3 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7541e527 rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7942516a cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a8ed850 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b72c2a5 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c84f08d __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cd817a9 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e9d8d6f rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f18d437 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f33f67d rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f996329 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83a33141 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83c9c5b7 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x846b86f3 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bf6eb51 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dfea1a9 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e7dd552 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f2cb1f0 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f724611 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91ec27ea rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93a7c3fa rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93d1adbf cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94b5ef08 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95a248ab rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x964aa006 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96cb43b8 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x977b5e2e auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x999a9bd6 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a77ef3d rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b03355c xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b79d0ab rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cd18949 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0119e2c xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1401b42 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1aef378 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4094822 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa51e4149 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa76aca32 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa84871c9 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9df5059 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab9f6161 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabee0379 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac270ef0 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad2c522b rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad2d9ddc rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaee2d464 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb099c600 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0fc7b6d xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb336607e xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb35b3fb8 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3b4c6cd xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb42eed94 rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4454561 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb55c7778 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb653a753 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8071b30 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb984fa5c svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb8de063 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcf223b3 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf7ca292 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfdba449 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc00d5c61 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2657182 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5d5278b rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc665160c csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc67ca113 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8599854 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc897791a svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb079ef3 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc19de6e rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc76e381 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd13db731 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd23ddc0a rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd33a02a5 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd51ed3f2 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7dfcf8c rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdaac6bab rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbbe408d svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddd52370 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde988720 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfc84dfc unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe30b106c rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe47bf569 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe53c3b8d xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5d90123 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe88f31e1 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaf13fdc svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb086a16 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xededfab2 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0c21e4 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0e8ed28 sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2064479 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3feb5b6 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf72fa52d svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8a893aa xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9842996 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa434ffe svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfab3b7e4 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfba2175f rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd60b973 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd916cdc svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfeb18197 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffd6f13d rpc_clone_client -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0cf0b144 __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2d2b20a3 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x327e1640 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5112fcf0 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x697180d8 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x84dda092 __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8c4f660c vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bcfabb2 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9c30a382 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa58cf3c0 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xca7fc234 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcce85c04 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd0225ff9 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work -EXPORT_SYMBOL_GPL net/wimax/wimax 0x0b7c0932 wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x2f1bd690 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x37724c99 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x4a9979c7 wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0x5f94eb1f wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x60ee2462 wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0x905ad96f wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa476b298 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0xb51d0db2 wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc43fdc5e wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0xd66e9b5b wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0xe3246764 wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xf4407f26 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x299636ab cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x368a678b cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3ac9a0c1 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x72e16b23 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7d3487ad cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7d7fc9af cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x81e49e32 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x88d9aa50 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb64cb3c4 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc0bb5442 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc5dcf5cd cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcc17257c cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe0ae7f93 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x027238d9 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x038cd9b4 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x64e51a27 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe907fcaf ipcomp_output -EXPORT_SYMBOL_GPL sound/ac97_bus 0x577d944b snd_ac97_reset -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x1834bfeb pmf_gpio_methods -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x1b6b7819 aoa_codec_unregister -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x404ce441 aoa_fabric_unlink_codec -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x4173e569 aoa_fabric_unregister -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x564dc32d aoa_fabric_register -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x5d135bf2 ftr_gpio_methods -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x84e8fd1b aoa_codec_register -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xad8441d4 aoa_snd_device_new -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xad8a831f aoa_snd_ctl_add -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xf5cc1d9c aoa_get_card -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x0a47bccd soundbus_add_one -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x1de8fa4d soundbus_dev_put -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x4632ef29 soundbus_remove_one -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x5a6ac76e soundbus_unregister_driver -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x6b06fb2d soundbus_register_driver -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xb5114c2c soundbus_dev_get -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x25eed31f __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xb1dd729c snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd 0x39523f74 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x44f6ba00 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x71c659c1 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x7ac7d4eb snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x7f3b3a98 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0xc3a339bb snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xd8d5690d snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x285fa649 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x424cec48 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x58c5b729 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6ee4d0aa snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7336a19f snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x82cf00c2 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x95190b40 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe602a0c9 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xeea7b785 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x06bd8ac7 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x23e2e548 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x24fa0411 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x26e3bc14 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x29b52a08 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2c9e6bde snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x45ce0c20 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x82f421e1 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9d7616b3 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb42cb725 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc4e5ba4e snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1c82de25 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x64b4e620 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x77c5c458 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xab235dc1 amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xac83a6db amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbce4e3dd amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf3ea5909 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04ff6b50 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x067d4907 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b29208c snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13ec1396 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14f5f12f snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1699cfa7 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x173da215 snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18d2d933 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x275975d4 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f9ed8bb snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c061269 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c31a938 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d217ad3 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f7f95c7 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4586d620 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51037130 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x52e1c13c snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x531175d6 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5af8b143 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d8b7882 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e4e08ac snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6174b396 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x68c6d94d snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b1b5277 snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b7d1f53 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6baa0e54 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d38ecaf snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72a51feb snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74318406 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7515da7b snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x752486f3 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c6d4862 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80812d18 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84ead9a4 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87974ecc snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87e347df snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89edbcd5 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8bdb16ab snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90602231 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x917a20e0 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95126e08 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95c96d12 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c353af6 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9dd0778e snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9eab6d80 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9fbe531c snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1123fc9 snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2bd2228 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3b397e1 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa41b5ec9 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb80232c8 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd25f086 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd694bb4 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd7c8ab7 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc119ff06 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1b143a7 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1bf3ee6 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf08c49d snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0dd74d1 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd18447ca snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd68224e0 snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd738afa9 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd98fe39a snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdfb2c343 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe43874ad snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4fd71a2 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1a99440 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf417cc27 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf83fdf0b snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfdea2065 snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfff8dbdc snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x02180cfe snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2bb9753a snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3fbff877 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x40f0ff81 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf6271c5c snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfca431ff snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03f4bf56 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0481821d snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07824ba7 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x079936a0 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0905a3c0 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09dd0d40 snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a490d56 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e9944f4 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10ad9452 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10e5798b snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x113c3479 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x129d611d snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13a88f0c snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14e1e994 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15b7afd7 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16699ae3 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1af5052f snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d4f6c83 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e535e6a snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f8ced72 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fca7290 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x210e6760 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22e6dd01 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x238a95ce snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23c3581e snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24190772 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25393e51 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2552da3d snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25eaa4aa snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f32ee05 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30e598ee snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31ac41a7 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31c26716 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36fff320 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x371e6845 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b207e27 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d647e3a azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40d832c6 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x457e44a9 snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x477f40f3 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d6fbe9a snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x518d7310 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52afe1bd snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x537d6664 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55d6194b snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57ae086f snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d50231e is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f2dc0f0 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x608f498c snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66125579 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b8dee20 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c204f6e snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x701ed591 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x712b2521 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x717dbf8d snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x721d1e9c snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73fd82b2 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x761b3b04 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77e2b154 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a942775 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7acb4dc7 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b560032 snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ba78c21 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d363156 snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f73ac24 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x801f4a3e snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8025f903 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82c64a39 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86086cdc snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87309e82 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87c7a7fd snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89b2fdbc snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e3c8227 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e996211 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9059b44f snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9166901a snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9241fa2b snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x925e246c snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x946096bb azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96a41dfe snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x982249af snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98245455 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a632c3b snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bf0c458 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ff04697 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8386db4 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9cbe23d snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa04c696 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab3c47be snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae585cd0 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaeaf25a0 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0a83f8b snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4666905 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5403427 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb64688c9 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9992d05 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2933bc6 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc295452f snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc39237c5 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4e31f0b __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc53b9c3d snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9a18a38 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9a325bf azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca82b190 snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce962247 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd028dcae snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda05660a snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb01751b snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xddbfe8f7 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xddf648a0 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf57f1cf snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0dbf718 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1b5c27b azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2c432b0 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2fc4b92 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe37b501f snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3d736f6 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe850b58d azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeeb3dc48 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf24c4465 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf585f3b1 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9467ea2 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa91af75 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdf3ec04 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x07275992 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x19a4b26c snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1f61d06e snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2d491d5f snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3e88bc32 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4d94503f snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4e80e609 snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x52fd7310 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x61414d11 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x66a93241 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7d5624bf snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x802e5018 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x93c16a73 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9d5c6166 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb878d402 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcfac28a9 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd3fd2b57 snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdfc7fa0c snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf4e44f28 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfb7485fb snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfc2fe3d7 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x3eaa214b cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x8decf9b2 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x0e71418c cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8aed997d cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x25150b62 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x52f75040 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xdd2c5f64 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xe025ab21 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xeed96059 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x0364460d pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x291a977e pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x80e06188 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe49c62c6 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x1bd8dfca devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4f9e2d70 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x544afad0 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x812d28a3 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xca1037b5 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x834b67a7 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xb51c014d ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xe2934e4b ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x72460c31 tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xde737814 tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x197bac3a ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x16b85897 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x360ea3eb wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xaf113473 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd0c2e2db wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x8d75c3c2 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x68ea4d97 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x12e7f312 fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xd3865d3e fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01a1abd5 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x028e8930 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07224f3c snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0853ded2 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09423157 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ad6cacc snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b7fa374 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bbf00f4 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cb6fba8 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ef5df94 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13c22aab devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17d84d2b snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x181a4c20 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18214292 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18ee041c snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x197d345a snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a504473 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c4698fb dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1de6363b snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e5ec86f snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20b2d07b snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x211f1381 snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x215bfae6 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22197768 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23386776 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26374ff7 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27ad0e1e snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29fcae6f snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2aa829fd snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c969291 snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30688497 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3426ef48 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x342fa94c snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x346bfbd3 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3843cf2e snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bc1efe1 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3dea1497 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e2386af snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f5661ea snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4094133a snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42154d8a snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4258d754 snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42afb226 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43522f50 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x437a17dc snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4701cd85 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47a8cdb4 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ad9af49 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d8f0d58 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d9d4ede snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x513fca85 snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51621259 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52c5f2da snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55f2f000 snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5676998e snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5907c815 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x592c90f7 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5dd1e8da snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f8d4d6f snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x642fb6a8 snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65d5a6d4 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66f852af snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c89f341 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7052dfd9 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x720d77a1 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73fd8d0f devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74977734 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74f537f6 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x758214a3 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7684fdab snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77d847df snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79021bff snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a6f1ff3 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ca1e6c0 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x804e6ae0 snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x827065a5 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84db6f31 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a6f7af5 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bdc7d77 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c857ece snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f1e0ec0 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9083eb9e snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91a65eb5 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94e37bcc snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9596ffa9 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98fd276e snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99d4a13d dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a09567b snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d72b87d snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0431167 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa093d9b4 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa154e315 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2fc91d6 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa657ad73 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6a1f6f2 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9682033 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad2b9b99 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf2f8f00 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1198b10 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb249ea81 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3023cd2 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb41f1108 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb523fed9 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6097dd8 snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb64972ac snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcf66f23 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd624a0a snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfb2686a snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2fd4639 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3cd86ab snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6f05ac9 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6f2e4ec snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc78e71e7 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7bd652d snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7e11800 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc908b576 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcafa479d snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbf9ce69 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd376b30f snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3c1d151 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5bdc3bd snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd80d91c1 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd88f3670 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9a35568 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda89efcc snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcd529c0 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf6b8997 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe26cb04e devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2e2f4f6 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5f56012 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6533045 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe73541e7 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8072fbb snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea6f841c snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee74f3dc dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefceb1c0 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0d190c2 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1caf277 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2663dd4 snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf28e9689 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf39e42bc snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf67ad1c4 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6a793c5 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfab71be1 snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfca7a491 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfcbf20f0 snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdadc56d devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdbf7cb4 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0c04b496 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0fe638e7 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x344d454d line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3fd95311 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4504a4d0 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4fe7136c line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x554caf61 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5fe0505b line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb06d670e line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbaa026c1 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xce15c567 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcedc6c8f line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd88249a0 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe61c943a line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf681cdce line6_probe -EXPORT_SYMBOL_GPL vmlinux 0x002f4994 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x0040fdc9 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x006cd378 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x00cd81ea usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x00d032f4 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x00e62a0d kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x00f36c23 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x0109cfaf blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x0120ee21 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x0126af62 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x013288da device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x0158b331 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x016e780a of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x0180acdc pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x018f0405 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x0195fba9 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x01b67c2b component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x01b8eb05 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x01bd5ec2 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x01d3c0e1 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e3a27d xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update -EXPORT_SYMBOL_GPL vmlinux 0x02266ded clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x0232b73b arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x02807ee2 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x0293ba44 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x02c03826 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x02c83928 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x02da39f2 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x02fbefff blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x02fef360 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x032b1d8f regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x032bfb47 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03a48208 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x03b6df43 flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x03c3032f sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x03d0eb1e regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x03e5dec2 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x03ea45db extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x03f6a322 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x03ff41b2 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x040eefdc shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x0418f697 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x041f7397 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x042e3afd rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x043e2c37 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x044f20db crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x04769092 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x049ca56d dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x049ec1ce inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x04a436f1 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04ccea8f blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x04d1351f fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x050356a1 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x0511385c ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x05224213 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x052a1248 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x05420535 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x055d3d23 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x057c5500 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x058b4158 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x058f7593 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x05eab43e devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x05f7cc30 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x05f7e04c dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0x0602dcc7 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x06322011 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x0644849b regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x064a9db0 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x06aa8dbb anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x06b3a1cd set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x06cb0d15 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x06da7cc6 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x06f09be8 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x06f979c3 blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x07569876 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x076c12ce usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x0778cacc usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x078be6c8 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07daebfc flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x07e21cf6 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x07f3d207 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x08304595 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x08362871 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x084b3c0d ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x08931b49 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x0895e4f8 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x08b8cc52 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x08bc16c0 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x08c3dba6 of_pci_find_msi_chip_by_node -EXPORT_SYMBOL_GPL vmlinux 0x08dba350 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x08e0499d mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x08e16d89 tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x09136027 __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09253ad8 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x0927b157 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0952ab9b tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x09703ec3 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x0981c587 __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x098485b3 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x09c1db33 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x09cab94e __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x09d1808d blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x09fb65c5 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x09fffa9a led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x0a118763 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x0a124931 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x0a158216 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x0a2cd6d1 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw -EXPORT_SYMBOL_GPL vmlinux 0x0a5a03a5 fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0x0a713e9f relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x0ad1570c shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x0af2d6c8 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x0af92141 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x0b054777 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0d2c01 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b345f6f usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x0b42ae90 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x0b5eac94 of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x0b72ed5a fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x0b79af42 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x0be1ae64 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x0be1bdfb uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x0bf1735f ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c1332cb ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x0c19759c spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c2e013f regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x0c40bf49 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x0c450e01 agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x0c59d20e device_attach -EXPORT_SYMBOL_GPL vmlinux 0x0c6688a8 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x0c6edb8a register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x0ca0a5a2 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0cb2228b blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0cc55a36 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0x0cc97286 __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0x0d1832ce arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x0d1b2178 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x0d3601c9 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d73a952 GregorianDay -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d818d69 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x0dac389e ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x0db9c1b6 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x0dba4f50 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core -EXPORT_SYMBOL_GPL vmlinux 0x0de550c9 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x0de92f91 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x0decf774 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x0e0be4e5 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x0e0c9aba power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x0e2fb7c3 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0x0e5a4833 pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x0e758c87 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ec85e00 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x0eea181d device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x0f16c01a kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f4191c8 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x0f465637 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x0f55ceb8 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x0f56bb33 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x0f6bace8 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0fa6ff5f cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x0fb2a4e4 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x0fb3036b wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x0fc3fb2b iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x0fe39864 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x0fe54b91 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x0ffb8542 virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0x0ffc23e5 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x1005ceed wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1025e8ae usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x10266be8 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x105c8129 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x1067bfdf device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x10832457 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x1095421b skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0x10a0b312 of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x10c4b8b1 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x10ec4815 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10f5bab9 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x10fa5b97 skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1100078b __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift -EXPORT_SYMBOL_GPL vmlinux 0x11287138 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x112fbc2b irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x113ecc36 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x115d16e6 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x1160f656 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x1160f88a dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x1168e16e ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x11820a97 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x118dcaae usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x11946724 pcibios_free_controller_deferred -EXPORT_SYMBOL_GPL vmlinux 0x11b20ccb tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1222d762 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x12237072 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12337332 dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x12480e57 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x124be9be device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x12a4c4ef devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x12b00f5c pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x12b30780 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x12cf45c5 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x12e5952c validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x12ec109d bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x1327d1a5 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1332639b device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x13354608 scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x1337635a early_find_capability -EXPORT_SYMBOL_GPL vmlinux 0x13476dae device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x134e04fd regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x13513937 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x1352a36c tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x13874540 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x13bb9963 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x13cd3ee3 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x13d3fe89 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x13f09b51 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x13f7932b devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x13ff4076 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x14258c6f ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x1427e96f rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x14467ebd tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x145fa512 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x14680dc3 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x146840bb fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1489a360 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x1493de94 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x14a4fe1d gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x14b1e62c bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x14b6ca3e ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x14caa055 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x14cfd311 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x14f17e8d __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x15079f19 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0x152d9fbb unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x15449ed4 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x159debe1 fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x15b4024c show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x15f0ada7 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x162141ee add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x167fcdb1 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x16a3ac75 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x16a893a9 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x16ab15aa of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x16addbba gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x16cce4b9 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x16ed532f usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x170a0397 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x170fbd56 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x173dd044 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x17405494 mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0x177653ee regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x17798326 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x177b6951 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x178ac8f4 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x17a80d54 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x1827dbda ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x18570516 pmac_i2c_xfer -EXPORT_SYMBOL_GPL vmlinux 0x1857fcca regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0x1865e3c1 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x188fc453 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x189643c8 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x189d65c2 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x18d800de blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x1902dfa7 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x190fa2af tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x19153449 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x19220fa7 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x1933c07f blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x19417a26 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x194d467d dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x195ec000 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x197758f7 irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x198dce56 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x199b0dda ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19ad2ee6 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x19b72635 blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x19c8740a bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x1a2253b2 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x1a2d4aea inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x1a692213 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x1a6abea6 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1a9c816b sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x1ab5943a xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x1ab84679 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x1abac3c0 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x1ac5ac09 cpu_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1adeeddf get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x1ae202fe iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x1aec5b38 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x1b070bca vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x1b0d2c11 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x1b1216e0 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1bb14657 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x1bb9a855 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x1bf33454 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x1c037419 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x1c2260ad of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c575426 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c62c0bc gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c854d6f rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1cb08bfc shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x1cebef0b serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x1cf7c44c ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x1cf85224 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x1d08189f regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d4d6f0a spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d70984f percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d977b2a dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0x1da1c9be blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x1dc0abd4 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x1dc3df43 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x1dcb89ca swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0x1dda10b3 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x1ddf7f7c of_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable -EXPORT_SYMBOL_GPL vmlinux 0x1dfd6b64 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1e12b90b crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x1e470b34 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x1e4f03cc blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x1e5740f0 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e5b7b6b ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x1e78db65 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e91891b unlock_media_bay -EXPORT_SYMBOL_GPL vmlinux 0x1ea132d0 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x1ea3e64d crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebe814f sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ee17dcb pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1eec3c77 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x1f185dc7 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x1f18f6fb pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x1f1a8715 rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0x1f753807 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x1f7fcfb4 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x1f826743 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f9f8919 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x1fa5531b regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x1faf462b regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x1fb46a32 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x1fc18f82 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x1fca9865 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x1fd22189 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x1fd33c90 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x1fe016fd find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x1fefbfee devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2014cd02 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x20381fba class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2049bab8 __destroy_context -EXPORT_SYMBOL_GPL vmlinux 0x208bbadb __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20ac5497 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x20aed767 arizona_of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0x20bad7a2 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x20c9fcdd cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x20cfed14 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x20d1fd38 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x20f726c5 blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x210a154a pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x21175c17 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x21220d6a device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x2128ec12 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x213d4218 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x21476f7d dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x214ec0be led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x21516587 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x217ce4d0 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x2197f67d wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x219c494e tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x21abddd1 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x21ad030e inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x21ca74b0 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21db7d59 dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0x2215c777 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x2219cdd6 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x221e6aa7 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x2228c63e relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x223d9b97 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x226bbd29 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x228e4491 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x2292dbb5 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x22f70a85 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x232394a4 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x23254467 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x23434e14 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x23a17474 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x23b34bdb user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x23cb28a4 pcibios_scan_phb -EXPORT_SYMBOL_GPL vmlinux 0x23cfa2a4 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x23d74717 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x23f684b4 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x2406dae3 pci_address_to_pio -EXPORT_SYMBOL_GPL vmlinux 0x240cd829 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x2426389f transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x243245a5 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x243b9e7a of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x244376e3 __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x248180ff rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x248680ea devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x248c35e4 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x24a2c103 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x24a39a52 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24d53d11 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x2504558c pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x250532d0 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x251868ee tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x2583880d usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x259f0afa ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x25ae9f15 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x25e1ab04 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x25e7c6d8 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x25ff93b7 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x260a50b4 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x260a6689 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x261acd60 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x262c1c88 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x265b01fc ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x266fe9e4 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x267217d0 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x268efd43 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x2691412e boot_cpuid_phys -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c2ab35 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26e1051e tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x26f4ea4a evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x26f6b3eb register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x26fc2ce5 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x26fe544f shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x271e3ddf pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x2722c1d2 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x2728e9d1 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x27306e85 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x2734ff7e device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x27425071 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x274a0b22 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x2756d7a1 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x275eaa8c of_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x276e8936 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x2790b960 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x279ba620 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27caed93 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x27eb0bd3 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x287e9c73 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x28a421c8 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x28a4fc87 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x28ae087c tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x28b9efe3 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x28be7c5d pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x28f13445 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x28fb1005 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x2940df6c ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x294e5702 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x2964965b of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x29691840 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x2986beec ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x2996fbf5 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29b84d8b of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x29e1c566 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f3c9db pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x29fe9794 macio_find -EXPORT_SYMBOL_GPL vmlinux 0x2a3e6b28 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x2a4b2f8b cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2ad1a519 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2b031c27 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b448a5f dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule -EXPORT_SYMBOL_GPL vmlinux 0x2b6e2500 tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x2b7a574f md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x2b7f2abf device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x2b9158e2 unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x2b998af1 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x2bc73e0c ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x2beef0d4 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x2c0e3d92 flush_altivec_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x2c1060ae ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x2c114c75 __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c2f5412 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c4d8662 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c8ff7f7 arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x2c93779a blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x2c97c085 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c984c83 tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x2cbf876e usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x2cc3e675 pmac_i2c_close -EXPORT_SYMBOL_GPL vmlinux 0x2cdfeea3 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2d01df73 arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d25b9c1 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2d383035 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d472697 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d5f6003 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x2d702c11 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x2d845153 __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x2d85719d sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x2d9cf524 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2dba9ddd cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last -EXPORT_SYMBOL_GPL vmlinux 0x2dd5f295 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x2de15443 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x2de379be dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x2de8ea35 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x2e0a990c led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x2e0ee7b2 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e3e1cd2 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x2e40db56 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x2ea5cc82 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x2ea9ee20 kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec2208a bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2ed58aec regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x2eef3638 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x2ef4d512 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x2ef6b5bf smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f327c91 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x2f3a9c79 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x2f3b4d7b dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f4d4f25 regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x2f5f708e arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f68bd65 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x2f6b3166 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x2fa54043 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x2fe81213 rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x300774dd debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x3033c756 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x304d6c24 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x30670fd0 cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x3067d786 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x307ac4d8 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x309224ba cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x30b3defb simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x30c489b5 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x311d64cd gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x3126f1ed pmf_do_functions -EXPORT_SYMBOL_GPL vmlinux 0x31337db0 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x314013a3 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x314398ad platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x314f336f perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x316113ba ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x31948af9 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31f1818c ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x320516ad sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x32123103 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x32251cc0 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x322c5b06 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x32859d29 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x3287327f trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x32a498d3 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x32adf849 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x32b49367 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32cf307a platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x32d2df07 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x32e8d899 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x330b7b06 trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0x3332e924 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x3345623c usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x3349e169 genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x3372be06 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x33a6e009 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x33e545df class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x33e7b7bd regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0x340d5346 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x341bed8c rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x342a57b0 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x346c3b4e ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x347191d6 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 -EXPORT_SYMBOL_GPL vmlinux 0x347b7919 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x348a5808 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x3495ca0f pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x34b8547d crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x34eaa3ab crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x350d243e regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x351db97b pmac_i2c_match_adapter -EXPORT_SYMBOL_GPL vmlinux 0x3543095a pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35c836aa pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x35cf121c crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x35d14896 of_get_nand_ecc_step_size -EXPORT_SYMBOL_GPL vmlinux 0x35d27938 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x35e70efe ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x362bbd45 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x3635d7ae crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x363c5a58 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x36600acf crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x368c3c45 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x368d965d tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x369ab809 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a8473a sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36be338e usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x36c0b647 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x3701481f of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x3720492e __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x372164e3 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3748c6d5 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x3751d32a ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x37605557 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x378b8679 __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x37b03d6c da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x37ee8f0e crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0x37f78a59 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x37fa6edf pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x37fc8a41 reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x3811fab2 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x3814516c regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x38364f79 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x3846b48f thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3868afff dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x389b3600 pmf_get_function -EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x39083c63 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x39190bf7 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x392861d2 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x3935cb67 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x3946dd9b usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x39632fe2 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x398de491 spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0x3996879c sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x39c87921 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x39dfad44 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x3a1917be get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x3a241906 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a373a60 wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0x3a37aeda dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x3a4a5d96 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a6e4a30 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x3a84db4b vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3ab0186a __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3ac8de53 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad1084f sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x3ad5e04c __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x3af4bcbe serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x3b14f0d3 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x3b6b01a3 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x3b8bf9f8 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x3bc88935 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x3be067a0 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x3be41fa4 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x3c40796a regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c484b99 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x3c7e71bc ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x3c8e816f spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cdb3e25 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d46145c crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x3d68b393 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x3d837c35 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3daccfd7 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dd0b2c8 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf -EXPORT_SYMBOL_GPL vmlinux 0x3ddd1928 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3de27534 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3dec7901 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x3df3c176 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x3e429809 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x3e4b8902 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x3e568e97 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e80bcbf fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x3eb78e7f devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x3ecb9ac0 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x3edda0be subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x3ee16fdf class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x3eeb9baa __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x3ef90479 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f07bb9d percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0x3f12cd9f ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x3f16da4e fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x3f47affb firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x3f530f57 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x3f62c019 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x3f8db004 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x3f9a5d67 rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x3f9cb442 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x3f9e2180 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x3fbfeec5 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x3fc00976 ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0x3fc4b15d regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x40027974 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x4005e6af blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x403c3a38 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x404a34fa pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x405b52ff devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x40a608bf alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40b5bfc1 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x40caf257 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x41162f4c metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x41424028 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x415f1428 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x416e1a34 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x417e5bd2 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41a7c762 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x41aa026c __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x41aa33a5 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41d3ac68 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x41d7fd20 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x41f31845 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x42290e5a tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x42361032 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x42367721 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x426994a0 dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x427a066b trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x427d96e2 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x4283074b raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x42919cf0 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x42b364ef scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x42bdc70d i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x42d1478f rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x42dcc114 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x42e57285 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x4313f6a0 perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0x43178b16 i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x432e7ef9 pmf_call_function -EXPORT_SYMBOL_GPL vmlinux 0x4349ff34 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x434c565e netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4352226a device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x4357a9c8 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x435ac5ae mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x435e5331 pmf_unregister_irq_client -EXPORT_SYMBOL_GPL vmlinux 0x4364db59 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x436cd480 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43aa8006 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x43b3e57e devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x43bd5353 pmf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x43c9bada ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43d13be2 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x4412c371 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x44228f8c gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x443fdbf2 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x4454a1c1 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44871fe3 regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0x4491244b pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x449f7a15 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44c27b03 of_get_nand_bus_width -EXPORT_SYMBOL_GPL vmlinux 0x44d39637 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0x44eff47d percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0x44f052fc scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x44f62869 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x451ff850 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x452ff997 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x4534451d virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x4542cb33 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x45606e41 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x4578612e input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x458b9e81 input_class -EXPORT_SYMBOL_GPL vmlinux 0x45984a01 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x45a5c8de usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x45a8159f ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45c140b6 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x45da5362 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x461544f2 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x46438545 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x46661bda trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x4668dc4d device_rename -EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46921490 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x4699fe7c ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x469c1535 pmf_find_function -EXPORT_SYMBOL_GPL vmlinux 0x46a19902 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x46b1f0ca dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x46b9baa3 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x470cc5b7 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47733b9c __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47bba9c8 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x47c5e8d7 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x47e2edc3 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x47f4b6ff regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x47fe3420 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x48389204 inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x4839beb8 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x483bea48 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x4845963e usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x48529b65 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x48577abf blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x4870fb74 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x48783db8 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x487d939b regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x4883df35 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x48dee0e3 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x48eb0a00 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x48eb7af0 put_device -EXPORT_SYMBOL_GPL vmlinux 0x48f1e780 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x48f97578 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x49169035 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x49218a4f tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x492d48cb rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x493e5ee8 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x4943a338 __init_new_context -EXPORT_SYMBOL_GPL vmlinux 0x49756a52 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x49768030 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x49771793 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x498f41c8 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49935aeb blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x499b09f2 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49d613b7 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4a2547c2 threads_core_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a399605 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a51c89c rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x4a5e4f6b inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x4a6228d9 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x4a6ede0e rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0x4a7bf108 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x4a7f02d1 cpu_remove_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0x4a81cd64 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x4a8802ef pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x4a8c2314 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ab47865 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x4ab5a976 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x4acff348 rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x4ad0a62f debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x4ae8c705 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x4af92639 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x4b2189d2 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x4b5117ae devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x4b6991d8 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x4b730c46 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x4b7d827d io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x4b91ac9d tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x4bab9735 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x4bb6c904 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0x4bca1113 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x4bd88b7f crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x4bdee344 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x4bf213a9 of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0x4c1592a5 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x4c2f39f7 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4c98b853 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x4c9f2809 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0x4cb37284 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x4cbc80ae usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x4cca70b8 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x4cfa07ac mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x4cfd5ee2 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d097bbc bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x4d37c134 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x4d51474c cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x4d6afd0d uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x4d95bb33 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x4daafc4e pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x4dc08f96 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x4dc392d2 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ddae606 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x4df57383 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x4e095ff1 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e2001fe blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x4e2d0f07 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x4e2e88da sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x4e3f21f6 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x4e4b5e37 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x4e643369 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x4e7b7725 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x4e845672 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x4ea065f2 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x4ebd201b ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4ef4e8a5 dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f06c45e kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x4f260b21 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f319e51 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4f31e259 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4f4cc19c put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f6f8f5b pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0x4f8c8df6 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x4fc3d701 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50b4ab22 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x50bdaadc pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50d3b2c1 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50e988f9 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x51031092 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x5152a532 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x51554d8f phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x515f7170 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x516f947b gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x51719489 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x51966b51 __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x519a519a perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x51ad61fe ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x51b0fc31 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock -EXPORT_SYMBOL_GPL vmlinux 0x51cde943 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x51de03c1 device_del -EXPORT_SYMBOL_GPL vmlinux 0x51f8d957 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x52178345 rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0x521da325 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x522706fa fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x5230d919 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x523462b0 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x52433865 virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0x524bdd9d crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x52500745 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x525363c8 md_run -EXPORT_SYMBOL_GPL vmlinux 0x525ce95c skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x5264b6e5 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x528c562b rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0x529c7e93 of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x52c0d5d8 scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x52e87f11 posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x53024020 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x530314d6 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x5325ab92 tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x5362e57a sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x537b2297 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x5383a425 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x538be641 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x539f6f5d ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x53a7e416 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x53d21256 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x53df7ad5 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x5423eb89 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x54659db7 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq -EXPORT_SYMBOL_GPL vmlinux 0x546f0ee7 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x5471cf9b srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x54883ca7 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x548b2631 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54b1e012 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x54be8f13 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x54c7507b sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x54ec388c ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x54ee6959 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55431d26 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x554d67de platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x55542f93 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x556fe8b7 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x55770ffb splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55ba4d87 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x55bd1881 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x55d76bcc scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x55d78d89 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x55f6b2c4 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x564ab34e fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x565b480b scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x5662e8a1 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x566483c4 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x567f60e6 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x5686a1dd usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x56908255 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x56a82c01 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56d54de2 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x56f17b9d usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x5727005e skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x57313bfa shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x57433c79 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x5756e018 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x576edee1 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x5777e32c fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x57874808 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57cac280 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x57edf92a __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x57f15885 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x57feabfe da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x580966b2 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5832cefe cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x5854a755 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x587f7e44 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x588dbd4f gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x589065ca hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5893da64 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x589cc895 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58a6e19e of_irq_parse_pci -EXPORT_SYMBOL_GPL vmlinux 0x58d26f87 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x58e050c8 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x58f07495 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x58f51b65 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x58f731d3 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x590f887b sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x593b0a50 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x595b89a8 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x596cc383 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x596fe49a ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0x59728c54 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x59948a71 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x59a54b9b relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x59a7393a subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x59afe7b9 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x59bead09 usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59ec06db blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x5a12b851 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x5a24a516 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x5a33862b uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x5a3a8e2a scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x5a3f03a9 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x5a421a8f ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x5a702ccd percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a939032 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x5a9f8cf7 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x5acfde42 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x5ad54b13 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x5b21cb78 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x5b3c56da get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x5b48b458 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x5b7d5f16 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x5b8c5879 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0x5ba92749 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x5bb70f84 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bf8c471 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5bf97b63 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x5bfd97c4 ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x5c23ffa5 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x5c300950 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x5c30c1c3 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x5c50363c bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c617297 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x5c63b3ac device_create -EXPORT_SYMBOL_GPL vmlinux 0x5c9c9075 pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cb2afc6 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5cc148ea input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5ce2579e usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d14dbb4 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x5d3313b2 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x5d3e73cc crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x5d51bcf7 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0x5d581b9e single_release_net -EXPORT_SYMBOL_GPL vmlinux 0x5d5ca255 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x5d7bec6a xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x5d8f2285 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x5d951d5e led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5db097be ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x5dc003f4 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x5dd6aea7 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x5de2a707 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e03cad8 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x5e2875c5 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e5450e9 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x5e56bbf1 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x5e6dc5dd cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x5e73fb55 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x5ec846b9 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x5edc69b1 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5ee3f5b4 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x5ee49825 component_del -EXPORT_SYMBOL_GPL vmlinux 0x5ef0ab38 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x5f0506a2 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x5f3d18df wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x5f630d8c fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x5fe403ac inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x5fe7814c pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x5feb809d mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x6003e38a pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x601074fa event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x603c7db6 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x6040a8b3 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0x60435094 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x604d4224 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x60568194 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x605e4e75 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60a3b868 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x60dff26d tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x61047b8b devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x6107bcc1 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x610826a9 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x610ae766 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x6120ec37 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x6125b794 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x6127f4eb percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0x6150be02 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x6168cbf3 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x616bd5da blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x61739071 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x61808107 of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x61962243 __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x619ab614 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x61bf8d9d pmac_low_i2c_unlock -EXPORT_SYMBOL_GPL vmlinux 0x61d09234 napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x61da6c60 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x6210299e scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x6216bd73 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0x62216af6 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x625049ad task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x627a61cc crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x629c7279 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x62aa3808 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x62b89975 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x62b97bc9 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x62c45179 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x62d59c9e trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x62ed8eb4 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x63051135 of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0x6311266c sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x6315f147 __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x631dc2c0 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x6369db51 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x636fa58a rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x63823a50 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x638dbb57 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x6391166a virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x63ad21c0 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x63c1596c srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x63f63878 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6422dd6b regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0x6430a69c gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x6453f77c pmac_has_backlight_type -EXPORT_SYMBOL_GPL vmlinux 0x648abc17 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x64a07f2e securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x64b44b11 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x64b94f13 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x64d1777f usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x64d5a29c crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0x64d5f89e ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x64fb99bb device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0x650acea1 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x6512f4a2 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x651bf961 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x656f5058 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x657f9399 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x659dc030 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65ceb57d uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x65d61fd4 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x66271cac rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x6652937b virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x667d393e hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6684b0cd nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x668a8590 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x669e92f3 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x66b927a0 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66d9474a of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x66da5960 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x66e8e4f2 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x67163ae5 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x6729cbce ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x67332871 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x673956c3 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x674082e4 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x67414a55 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x6748e31b ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6775f805 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x67843914 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x67880d4c fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x678816c5 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67af0690 blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x67dc8dc5 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x67e98e32 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6820c9f6 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x682596ef tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x687f3b56 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x68bedf45 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x68f537c0 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x690bb08c led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x691e8465 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x6923d079 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x693a5559 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x696721ec crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x697ad6c4 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core -EXPORT_SYMBOL_GPL vmlinux 0x69870530 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x69903eec skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x69a1854c fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x69a6e696 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0x69ab121d __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x69b0f77b pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x69d364b6 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x69db226f ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x69dfa7dd __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x69f8de4f pcibios_claim_one_bus -EXPORT_SYMBOL_GPL vmlinux 0x6a1b4951 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x6a1b6a50 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x6a268086 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x6a4342dc da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5378b0 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x6a5d9fbd ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a899386 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6a8c3850 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x6ab3781f trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x6acab0ce usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x6b1f92ab tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b52f4e7 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x6b53d425 rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x6b710923 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x6b7cb10c security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x6b817b4d aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6bfab78e __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0x6c308023 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x6c455bdf pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c4cf604 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6c591ef5 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6cb153d6 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x6cb44f12 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cd99f08 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x6cf9ecea ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x6cfdab42 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x6d1cbac9 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d3792c7 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x6d47087b of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x6d595db7 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x6d96faa7 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x6db3aba4 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x6db99028 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x6dbf1261 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x6debb23e page_endio -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e508303 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x6e634b56 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x6e6878fc adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x6e70b0e9 __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0x6e7b3400 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e9f1f8e usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x6ea45c30 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x6ea98ae1 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0x6eacfc59 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x6eb840c9 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x6f15ddd5 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x6f19bf1a cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x6f1a91ba locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f325032 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x6f432732 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x6f496b8d wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6f62a7c9 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f828803 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x6fc2c51e cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6fee8f4e mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ff7faa9 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x6ff81432 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x700e3a8b ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0x70553e5c devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x70766778 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x7095d840 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x7095daeb wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x7095f2b3 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x70b5a87a disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70c95921 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d1bcf6 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x70de6468 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x70ea3a04 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x70f1df70 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x710442fd reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x712c47c4 aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x712dcb76 iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x714588c0 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x71505b20 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x716f28de device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x71c0d660 dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x71d8a1b8 pmac_backlight_mutex -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x72118930 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x72189a01 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x72495381 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x724fb735 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x72543572 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x727c555b tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x728a5f54 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x728ab0ea pmf_call_one -EXPORT_SYMBOL_GPL vmlinux 0x7296ccef regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x72ad1bfd ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x72e05dc5 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x72e21f37 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x73624ab8 crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0x736bfa8c ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x736c7091 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x737b4549 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x739aa1a1 pmac_i2c_setmode -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73cc92e5 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x73d4b64d ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73ddd3a0 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x74374728 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x7439a1a5 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7468b74e __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x7499de58 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b965d6 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74bdfcad devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x74d18b33 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x750fcc47 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x75113f58 skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0x75183c65 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x75189177 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x7552ffcb serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x7568adf9 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x756db445 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x759522e8 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x7599523f tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x7599ea70 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75d17d0b pmac_i2c_open -EXPORT_SYMBOL_GPL vmlinux 0x75da1f95 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x75f47061 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x760be1bb seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x7670df58 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x76753350 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76872d23 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x768bd29e n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x76987bfd usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x76990e42 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x76cd23cf usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x76e149b2 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x76fa9d1b led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x770db4b5 gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x77228066 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x772a4fce regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x772ae69d sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x772faf54 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7786604c ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x778fd2e1 device_register -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77ce3949 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x77e11603 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x77eab213 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x77edfe9a irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x780356ab tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x780512c1 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x78082c2e usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x780842c9 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x780f9681 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x7829fab8 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x782dab06 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x788197e2 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78d17d54 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x78dd113f sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x78e4bf14 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x790086e3 extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x790d9e62 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x7917358c __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x79273ade crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x792f91dc power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x793c598c of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x793cda54 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x79527d15 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x796fb027 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x799198ba pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x79bc4c33 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0x79c119b2 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x79c6c354 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79eed2d9 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x7a034cd5 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x7a29e5f0 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a4878ee sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x7a8c7ce5 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x7a900e00 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x7aef7b71 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x7af28e6e ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x7afaeebd usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b207c21 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x7b39c3d0 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x7b3ecd6e dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x7b432398 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x7b4a5c49 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x7b573315 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x7b9b49e6 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x7bd5875d unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x7bd7cb9d serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x7be7fa12 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x7cb86b72 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x7cb8eb81 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x7cc2bd74 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ce48cff pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7d02716c of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x7d19c594 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d5a1e5d gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x7d77704a crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x7d788cfa wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0x7d973a91 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7db84411 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x7db97e59 rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x7dd12fac register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x7dd577b4 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7df6f95f rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7e1a17b4 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7e1a20f0 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x7e3af502 find_module -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e80d612 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7e974ecc sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x7e975549 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x7e9806c6 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x7e9a0918 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x7eb27a0c devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x7ebbbd79 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7ebeb5c6 of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x7ec29f1c __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x7ee4e0cd gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7ef2a88d dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7f21d285 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f463fd3 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x7f72657d mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f8199df dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7f8c409d percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x7f9ae3ec find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fcd2063 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x7fd36589 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x7fd59cb3 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x7fe35f38 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x7ff34155 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x7ffc057d dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x80094d1a ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x804ea02d __find_linux_pte_or_hugepte -EXPORT_SYMBOL_GPL vmlinux 0x80509946 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x807a4b7f ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x80842a54 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x8088afe5 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x8089849d usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x809312b8 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x80a4e3f9 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x80ade189 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x80c15f52 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d0e26f device_add -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80e5b2e0 shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x80e8faa6 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x81062ac9 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x811f3196 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x812036fe securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x81537f81 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x8162e5fe pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x8178fd19 regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0x81919fd5 trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x81a30f55 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x81d37418 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x81f0af08 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x81fc2ef8 device_reset -EXPORT_SYMBOL_GPL vmlinux 0x821d05e9 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x8228800e shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x82289279 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x8276c98b led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x82781daa dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x8287f42f ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x82c2756d ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x82ca6a4d md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x830691c8 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x8310e120 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x8311ddb6 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x8315d9aa wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x8319260a srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x831d5069 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x834b30e0 napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x837cd5c0 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x83a172be shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x83c34f4b power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x83e3b23f gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x83e8e944 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x83fdcc66 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x84142067 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x841da239 unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x841f1b2b pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x842c46d0 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x84365a70 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x844bb8ae regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x84643b1f bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x8476e497 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x849df294 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x84ab32aa dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84ba5674 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8507871a subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x851508ad clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x85283f30 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x8528f188 scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0x854e7f08 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x855126e2 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x855ca980 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x858f9c4e crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85e2c659 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x85fd6bb2 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x8601c9bf ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x860d9954 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x8612b633 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x86207944 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x863efd6d led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x865380f1 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x867298c0 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8680ae4f pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x86941e31 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x86c78b64 regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0x86c9c469 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x86ed4ff7 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x86f95733 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x86fb469a usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x86fc2726 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x87447e1e trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0x874cccd5 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x87726ff4 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x8791c586 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x87a2b42e pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x87c62053 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x87cf89bd mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x87df230f sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x87fd6f45 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x8842f0da of_scan_bus -EXPORT_SYMBOL_GPL vmlinux 0x88569b31 mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x887a1ecf dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x887c61f3 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x889665f3 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x88974d18 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88b666d7 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x88ea12f9 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x88ea7ef3 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x88f1a686 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x88fc09fc pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x89014fc5 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89257b13 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x8936a264 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x893733cb ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x893ee198 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x89458826 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x895a5dee crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x896d6ebc devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x89a52ebc raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89bcf339 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x89dbf5b0 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x89eb5507 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x89edc36e swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x89f7cc36 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x8a64a5a7 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x8a64acd9 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x8a65b984 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x8a6a09bb usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x8a77c380 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8accedc9 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x8ae5b993 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x8b2ef0fe flush_fp_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x8b6187eb wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x8b7ae5e7 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8baeb47a ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x8bb5ba80 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x8bb8611d blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x8bc4156f sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x8bd718b6 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c3ad069 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x8c3c9dca ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x8c51fb8b dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c6837ce regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x8c741822 save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c900724 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x8cb60870 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cf5e6fd do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x8d22b450 of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x8d362c7e fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x8d43ac48 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8d5261ca part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0x8d7dfe00 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x8d8519d8 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x8da17b42 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8e13ed25 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e2fb206 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x8e323d68 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x8e6af0c8 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x8e789c1a __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x8e7a7f3d fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x8ea9f271 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x8ece68fd percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x8ee84aa8 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x8ef6074e rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f08fa19 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x8f2dcc0c debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x8f4bbde1 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x8f507c09 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x8f638600 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f7b0e11 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x8fa6b5a9 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x8fb4d1be ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x9026716e phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x90566e60 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x90667aec i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x90751cca wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90bc771d tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x90ccb725 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x90cf9762 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x90d22a7b dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x90d3e4e7 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x90d9c2c6 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x90f30944 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x91150899 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x912bf6fb pmac_i2c_get_adapter -EXPORT_SYMBOL_GPL vmlinux 0x915906fd pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x916a3677 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x91719887 skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x919d71c5 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x91a16f7c dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0x91a32bff devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x91b3a845 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91dbdae4 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x9215cec7 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x922eae32 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0x92423d43 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9252aee4 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x925946b5 mmput -EXPORT_SYMBOL_GPL vmlinux 0x92960569 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x92c89fea usb_string -EXPORT_SYMBOL_GPL vmlinux 0x92c9c99d ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x92cca41a aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x92cccde6 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns -EXPORT_SYMBOL_GPL vmlinux 0x93161eb6 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x931ff308 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x93260a50 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x932d6a6b stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x933dd9dc of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x935cd512 extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0x936421e7 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x93a2cb47 reserve_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x93bcce38 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x93c23366 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x93c31140 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x93cfc711 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x93da5a40 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x940faa44 of_get_nand_ecc_mode -EXPORT_SYMBOL_GPL vmlinux 0x941d94c1 tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9425562b device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x942d41b2 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x94464ca0 blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x944badcf ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x9456bd14 pmf_do_irq -EXPORT_SYMBOL_GPL vmlinux 0x94716326 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x94a1e1fa key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x9533b861 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x9546f1d1 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x95481def i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x95850daf ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95e3b208 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x961f119b wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0x9620001d call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9655b911 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x96afc3ba console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x96c1c4f6 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x96c90c08 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x96d2f6b3 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x96dce8f2 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x96e02119 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x96e7e324 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x9748a683 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x978b0f04 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x97b6feb0 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x97cf9043 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x97d4f45e __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x97d7bc93 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97dff559 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x980aa1f6 pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x982af0ec ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x98326b98 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98420872 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9854d478 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x98b11378 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x98bf2403 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x98c2b60a devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x98cc61a1 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x990bc9d5 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x990cbf1c tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x99349b00 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x99522628 tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x995e4897 reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x9990601e pcibios_free_controller -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99ae3a03 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x99b4928d devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x99e9ca22 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x99fcfd46 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x9a05a85c pwm_config -EXPORT_SYMBOL_GPL vmlinux 0x9a08aa25 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a331edb __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x9a5a5f90 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x9a670d6c dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x9aae2383 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x9abb1e29 arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac23561 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9b152129 of_get_nand_on_flash_bbt -EXPORT_SYMBOL_GPL vmlinux 0x9b21adba inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9b34dfc4 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x9b3744fa rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x9b3991cd __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x9b449081 rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0x9b8c2b9e devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x9b9de381 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x9ba69b2a gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x9ba7bf20 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x9bab1885 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x9bce0746 of_css -EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x9bea2888 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bfe19f9 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x9c3d2215 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x9c54badd metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x9ca90460 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ccfa832 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x9cfcd519 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x9d11cbb0 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x9d3eb5fc spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0x9d5691af wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x9d7e87e2 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9db4f67f handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x9dbffd4b cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x9dda20c8 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x9de62ea1 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x9deb7390 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x9dfa7878 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0x9e0a78cb devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x9e1a578f __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x9e31dc6c sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e4b4a08 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x9e4d2f21 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x9e96712f max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9eeb102c pmac_i2c_get_controller -EXPORT_SYMBOL_GPL vmlinux 0x9eeb961b __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x9f05b7b8 pcibios_finish_adding_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x9f5a5f5a syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x9f65e63c perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9f79ac1e platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x9f8c3acd dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x9fcdbf4e gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0xa0182f3e serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0xa02a97e6 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xa03e9a45 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xa03fafb8 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xa04ba6ef xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xa051060e usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xa07b7971 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa09d8ecf usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xa0a944db __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xa0ab0239 isa_bridge_pcidev -EXPORT_SYMBOL_GPL vmlinux 0xa0abcd4a spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa0cb1c3c dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xa111ef42 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xa11327f3 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xa11e12b6 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xa12159f8 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xa1471d98 irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xa15a2820 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xa15d8c49 get_device -EXPORT_SYMBOL_GPL vmlinux 0xa15e97ed blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xa18bfc76 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa1ec18df nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0xa1f22acf bus_register -EXPORT_SYMBOL_GPL vmlinux 0xa1fbfc3a inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xa208363d regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xa2287b76 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xa232d21d gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0xa23dddae pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xa2436c31 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2a86e43 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2c901b5 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0xa2ea1d6c usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xa2f1af26 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xa367d258 yield_to -EXPORT_SYMBOL_GPL vmlinux 0xa36d0357 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa39691da rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range -EXPORT_SYMBOL_GPL vmlinux 0xa3abfecd dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3cd3492 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xa3d9a9b1 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa40c9cdd ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xa4168a93 crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0xa422b0f9 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa42beb1b skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xa433eb0b rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xa441d87a ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0xa4437b35 pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0xa44cf575 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xa45b5aae class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xa476f5c3 pmac_i2c_find_bus -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa48b2690 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xa4a22fc4 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa4c33b5e pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xa4dcbdf6 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0xa4f61525 seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0xa4f6eb26 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xa4ff48bf scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0xa51876bd devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xa51d3aa3 blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0xa53c8b81 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xa57552ed ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xa577ca4d uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xa5a127a8 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xa5a624ab crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq -EXPORT_SYMBOL_GPL vmlinux 0xa5da3b23 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa5e9e3d4 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xa5ee598a device_move -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xa5f48723 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xa5f6b015 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xa60343e7 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0xa60f0696 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa6135287 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa62d9cdf da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xa677a44d usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa685a8b9 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xa69d4798 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6b55f04 split_page -EXPORT_SYMBOL_GPL vmlinux 0xa6cbde74 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6ef74bc ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xa74cc36a netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xa754f4b7 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa7687697 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa76b4966 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xa77269c2 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xa77c5cb7 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xa78f13bb of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xa79bd4eb ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0xa7ba0208 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xa7c790ec powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0xa7d73182 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0xa7dc5706 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0xa8055590 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xa8072387 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa828539c br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xa83b003c led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xa847c5cd con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8542a07 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xa85f44c4 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xa8794b62 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0xa888bd00 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8bc892d tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xa8d5b3cc vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0xa8d6a7f2 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xa91603b1 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xa924b702 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xa92a97b9 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa9858812 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xa98a68d4 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0xa9b2f3d4 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e704a2 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa9e9693a power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0xaa0c1d40 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xaa17addc virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xaa233d05 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xaa269160 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0xaa4488c6 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xaa5a76a0 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xaa628a94 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xaa63d11c devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaab61647 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0xaab92fe0 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xaac408fa leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab30b74c pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xab381b33 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xab3eacc6 bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab69bcc2 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0xab6b6658 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab7aea74 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xab7d839a __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xab86fc20 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xaba52c45 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabf58a34 __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0xac15332a usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xac1afb79 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xac43000a inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xac570f81 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xac5a1869 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0xac5add06 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xac84f65d debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xacacbd50 arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0xacc6e6ce devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xacce9863 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xad00032b serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xad0bc22b gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xad1c82f2 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xad3cd130 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xad40bf82 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xad4edd90 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0xad660154 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xad73b1b0 of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xad7cfa83 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xad9fe3ff user_update -EXPORT_SYMBOL_GPL vmlinux 0xadb5ec4a tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xadd78b48 irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0xadf65d5c __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae03869c tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0xae0a0cdd attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xae0a412b fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xae41d4de usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0xae4c635f of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all -EXPORT_SYMBOL_GPL vmlinux 0xae86c6e6 blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0xae944544 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xae9a7874 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0xaeaaf6c6 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xaeab28de of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xaee52b12 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xaf0dd6cb sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xaf1c5921 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xaf21fca2 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xafb5fb12 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xafc0ee64 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0xafdf217b invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xaffb29e4 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xb00cb183 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xb01c2c2e rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xb0328558 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb040891c irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xb0729635 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xb0913148 btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xb0aa3552 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0d5109e device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0xb0ee14d1 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1416abf da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb151889b unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xb16c392b of_reserved_mem_device_init -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1ad11ff ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1d70e9a spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb208c50c ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2256567 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xb261c112 pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0xb2a3c518 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0xb2b465bb inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2f877ef subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0xb2f95f54 xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0xb32e5064 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xb33824b2 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb3407e02 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0xb3649a03 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xb372d98a extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0xb39b1626 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xb3a5a710 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xb3bcce51 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0xb3c660df power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xb3ce64d7 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0xb3fca495 component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xb4172664 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xb417b38f crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb418d153 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xb426167a md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xb43051b8 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0xb433e899 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0xb4548c24 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0xb463b6fa ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xb484907f regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns -EXPORT_SYMBOL_GPL vmlinux 0xb48f3376 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xb49ac3c8 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb4a33cfb sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4d3b4b3 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb5137c0e clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0xb51b1037 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb526b0dc unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xb532d5c0 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb5489c7a stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb567dfdf extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb58ded9b lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xb5954515 devres_find -EXPORT_SYMBOL_GPL vmlinux 0xb597c680 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xb59cf84b arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb5b760e6 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xb5d37405 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xb5d9e659 thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0xb5e42a2c pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xb5eb09af tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xb5f07c1d usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb5f56087 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xb6014bba crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb63b00f8 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xb63cc754 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xb6420281 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xb65d7be1 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xb6652557 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xb684355b device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb691037f trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0xb6947f38 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xb6a080fb ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6c38497 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0xb6c571c0 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xb6e75671 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb6f94588 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0xb70afeaf page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xb7160468 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xb739990e thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0xb79fb656 register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xb7a33b5d pmac_i2c_get_bus_node -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb809b9ee md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xb80f02e5 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xb822d799 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xb823f40f _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0xb82bdd00 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xb8772d0d regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xb883206b hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb8a12e97 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0xb8b72eb1 devres_add -EXPORT_SYMBOL_GPL vmlinux 0xb8c38931 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8dcb8f7 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xb8e329a8 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xb92d35ca sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xb92ea375 i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xb963ead7 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0xb96b3bc6 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0xb97b8a13 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb98d332d rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb9a1c9f3 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xb9b2e736 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb9b40afd of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0xb9b6560e ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9c220c3 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan -EXPORT_SYMBOL_GPL vmlinux 0xba1aa97e usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xba1cfcf1 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba3c72ca mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xba998572 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xbaa2cf73 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xbaa462d2 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbad966e2 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xbadf0011 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb4a41ff blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xbb571d75 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xbb690b4d pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xbb7c868e verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xbbaa7590 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0xbbc31e52 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0xbbcb56d1 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0xbbe78c1a dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xbc0ecf4c tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbc427156 blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0xbc4f95d8 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7794c8 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xbc7f26c5 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xbc883818 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xbc932be5 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xbca42fe3 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbccf9184 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xbcd7e159 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xbcde06a5 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xbce1b771 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0xbce49494 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0xbd0be233 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0xbd201dd5 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd434aae udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd881265 irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0xbdae43c4 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0xbdbfd420 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xbdce3505 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xbdce4933 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2d344 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbde3cfbe phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbde8a5d9 rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0xbe101311 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe2712bc percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbe4eee36 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe903a4e cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0xbe958909 dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbee6087a __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0xbeffa91e trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf0b4a60 user_read -EXPORT_SYMBOL_GPL vmlinux 0xbf0eaf2d usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xbf110f07 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xbf24e16e evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xbf253961 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xbf3a065c pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xbf7c21bb __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xbf8e6e9e debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0xbf94a7ec component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0xbfa83b1f ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xbfa94e53 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xbfb5f2ee ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfda454e power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfe5c3af fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 -EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc0426e01 check_media_bay -EXPORT_SYMBOL_GPL vmlinux 0xc043b232 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xc04c0616 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xc059e7ae lock_media_bay -EXPORT_SYMBOL_GPL vmlinux 0xc061367e mpic_msgr_get -EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc090e373 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0xc09819f7 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0cc3744 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xc0d02808 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0e160b2 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 -EXPORT_SYMBOL_GPL vmlinux 0xc0e97330 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc0eb1687 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc13df88d crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xc1436e5e dax_fault -EXPORT_SYMBOL_GPL vmlinux 0xc1521987 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xc159db87 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc17d7efb devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu -EXPORT_SYMBOL_GPL vmlinux 0xc1a2b334 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xc1afdb3f class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc1b0d789 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc1ce6ff1 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc1f25e80 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc237704f blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xc26ce353 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc28868c7 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xc29b0fa1 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xc2b5f5d6 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xc30b3a36 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0xc30df23e ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0xc3138341 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xc3158c55 devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xc31ff73d pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc35411c0 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xc359db4c regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0xc35bd289 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xc36ddb55 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc37d4d24 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0xc391bbb2 edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0xc39c3c97 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xc3b54a8c module_mutex -EXPORT_SYMBOL_GPL vmlinux 0xc3ba188d device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xc3ca137b mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xc3fb2b0f usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xc4126bb7 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xc41a2507 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42f03a2 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xc431ebcf platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xc4329899 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc46c7448 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc474ebb6 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48c0a7f vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0xc4a20df5 of_display_timings_exist -EXPORT_SYMBOL_GPL vmlinux 0xc4ad601b devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xc4bb1f94 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xc4bf1e15 irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4d35b42 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0xc4d65992 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0xc510f539 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xc516ea86 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xc51fb795 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc5b60a82 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xc5b638bb tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xc5be5715 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xc5ec4de5 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xc5ef2aa7 __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0xc5f36107 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid -EXPORT_SYMBOL_GPL vmlinux 0xc612a40b debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xc63a62f9 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc66c4a51 devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xc68217e1 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a3d58a gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xc6aba7da wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xc6d601ce ping_close -EXPORT_SYMBOL_GPL vmlinux 0xc6e3e5b3 regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0xc708c1ae scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xc70ee975 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xc713c41c device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xc71c541a spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0xc7275d6c wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc7356d61 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xc7386bd8 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xc754207b cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0xc7645de7 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0xc778534c mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0xc785d570 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0xc787ad62 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xc7919f5f relay_open -EXPORT_SYMBOL_GPL vmlinux 0xc795500b kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7b617a2 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8c15b64 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8f9f818 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc91308d3 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xc92807ec usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xc92e7c18 of_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xc935cb96 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0xc9428be7 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xc947631e phy_get -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc96a1260 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xc9714e3e tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xc977c067 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level -EXPORT_SYMBOL_GPL vmlinux 0xc97e9bff register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0xc990c680 devres_release -EXPORT_SYMBOL_GPL vmlinux 0xc9d19654 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0xc9e70e06 regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9f253ad __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xca1449f6 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xca214ad6 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xca2d6d83 sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xca3088bf crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xca42feb5 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xca4698e2 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xca58e4de kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca7d8f9e crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xca9be356 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcacb1486 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xcad3de7a tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xcad73c06 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xcaecde2b dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xcaee51b0 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0xcaefd634 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0xcb0f7768 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xcb122565 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xcb12375c nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb210167 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0xcb30e918 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xcb30f25a usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xcb61e32b tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xcb75c39a bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcb79c2ae powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xcb7e8cd0 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xcb8bc130 regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0xcb8cc8ff of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0xcb989438 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xcbb31d4f mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xcbd864be of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcbf7edab fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcc19d1ec inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xcc2ba30d list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcc55fa15 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xcc590216 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xcc6e75f9 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc9c4f63 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0xcc9fa812 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xccbcb446 fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xccc42ecd tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xcceb9134 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xccf6c4a4 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xcd05bfbc each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0xcd103683 of_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xcd13a5ba uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xcd1645c2 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xcd495042 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xcd4cec63 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xcd649280 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0xcd6492ab trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcd9d7a37 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdb91e2d of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0xcdbddd5b dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdec71aa pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcdf67c1e usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xcdfb17cb __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xce407f5d inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce7f48ce xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xce9b51a3 ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0xcedb4889 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcf322e9b wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xcf495ffb pcibios_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf5b868d pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xcf62d6bd sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xcf6b6d3b od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xcf790927 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcf87596b inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xcf88f85b map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfbbe373 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfe46774 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xcfef875f vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xd0202515 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd04710a6 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xd04c0764 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd079218b rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xd0860b2f rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xd0b00481 pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0d612b2 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xd10dfac3 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0xd11858c4 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xd15a958e setup_irq -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd1822f0b cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd1b6679c phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xd1b69071 devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xd1d51cd3 blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0xd1d7074f ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0xd1e1383c debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xd1e36662 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xd1ee72b3 devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1fe0ced fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0xd20490f9 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd20d1c07 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xd216a8ac sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21d0144 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xd22dce6c crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xd2362392 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd28af796 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xd290869e ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0xd29a105b of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xd2a9b56b rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xd2b361a3 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xd2b3a7cd gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xd2d6a5bc crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd2fa625f wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xd343cc10 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0xd363bfec of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xd36d8f51 swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0xd381a76b key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xd39bcfde pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd41378fe irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd426ba17 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0xd43d7481 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0xd43e63b8 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd453edef of_pci_msi_chip_add -EXPORT_SYMBOL_GPL vmlinux 0xd464287e tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xd47870b4 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xd4bf670f spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c2a4dd of_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xd4c31731 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xd4d933b2 bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xd51a98e6 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xd52873b6 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0xd54971b0 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0xd556dc72 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xd5597f60 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0xd577f3e6 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xd58e043c ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0xd596ef59 queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xd5b85c98 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5c9004f transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xd5f2430e devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xd608d9ba debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xd609861a xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd6113f0c spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd624e9b7 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse -EXPORT_SYMBOL_GPL vmlinux 0xd636f69e usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xd655692b ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd681e20a i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0xd68eb888 mpic_subsys -EXPORT_SYMBOL_GPL vmlinux 0xd6aeef90 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xd6d1a4f9 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xd6ed8259 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd705054f pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd71da5d4 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xd73ef20c crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xd7624621 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd782391b __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xd785050b ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0xd7867bcc devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xd79beb87 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0xd7b8df26 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xd807e7f9 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0xd80e9003 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xd814987c bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xd818549e ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd82cb66c skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xd8399511 led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87c6d9d reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xd87f7f7d exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd8a35bbe use_mm -EXPORT_SYMBOL_GPL vmlinux 0xd8bb28e9 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd8e40f4b blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0xd8ea9402 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xd8f76815 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xd8fbf24b device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xd8fd4265 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xd90f6d3f sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xd93ba565 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0xd962971b fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd97c8f27 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0xd99ef66d __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0xd9bfdb42 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xda09e833 driver_register -EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable -EXPORT_SYMBOL_GPL vmlinux 0xda132784 crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xda164c01 x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xda2529e3 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xda58c5e3 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xda79a78c inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xda9421d4 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xda9db12e regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xdab3a014 cpu_remove_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xdac575e4 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaf2dec9 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xdb1fc470 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb77e53c pwm_free -EXPORT_SYMBOL_GPL vmlinux 0xdb7a9e42 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xdb8739a5 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb8cda05 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0xdb8e8fbb relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xdb95e52d of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xdba4fd47 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xdbb9abc1 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xdbc5c276 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xdbd88275 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0xdbf78b03 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc1365fb irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xdc1c379d __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xdc32ccc7 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdc41cfcc devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xdc520eb4 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0xdc58a752 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc855b26 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9ad59e virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdccae802 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xdcd764c3 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xdcde1670 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xdd10b50e scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd4876fc page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0xdd50e046 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd556f0e ref_module -EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xdd7b4f5c bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0xdd828af2 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0xdd927a5f dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xdd9becf9 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xdd9fc71b regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0xddaaad71 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xddab2ad0 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xdde4a0d1 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0xddef0859 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xde01812f regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xde01f916 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xde0a9612 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xde2219b3 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xde472797 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xde538899 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xdead0159 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xdeb022fc fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xdefc60f6 of_pci_get_host_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf2c919e key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xdf7a26f3 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xdfa6eb16 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xdfa8ee25 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xdfa8f161 pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xdfabb876 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xdfdc359a unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xdfe4b78f skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xdfedade2 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe0255f00 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put -EXPORT_SYMBOL_GPL vmlinux 0xe04c1ce7 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xe060a717 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe07ca631 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xe088112f get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe08bf2b1 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xe0ad7d2d inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xe0b617a0 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xe0c13884 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0xe0c96c21 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0xe0cb9b2e cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xe1205e9e pmac_low_i2c_lock -EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0xe1264e40 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0xe14426b4 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xe14f6131 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xe14fb353 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0xe17257d1 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe18d8dec of_overlay_create -EXPORT_SYMBOL_GPL vmlinux 0xe1a6bd9b fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xe1b7d9e1 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1cd4704 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xe1ef3418 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xe1fdf945 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xe2147785 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe25c6147 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe28a8915 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe29944b5 usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xe2bb677a sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xe2d92369 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0xe3016e6c crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe30b381d fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xe31edfb6 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xe33fbb75 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xe36f46ee debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xe3722ace wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xe3b8fdaa usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xe3d62914 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xe4299aff device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4325c19 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xe43d1b91 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xe45fd652 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe477d992 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xe48a7a3a crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xe4944bfb fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a0d7af __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe51b7a42 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xe5576600 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5adce51 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xe5b2e004 regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xe5d5c84f irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xe5db22cd of_pci_msi_chip_remove -EXPORT_SYMBOL_GPL vmlinux 0xe5e9f2e6 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xe606d5b3 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0xe62cad62 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe65a0942 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xe671f33c pmac_i2c_get_channel -EXPORT_SYMBOL_GPL vmlinux 0xe692164d usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xe6a2a3fd skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0xe6b3cedb __module_address -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6cf2ce9 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6e6dfa1 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe7145917 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xe7302f3e devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe759234b tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xe75ccf9b tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xe7617ade regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76c1248 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xe7725218 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe7d4d256 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore -EXPORT_SYMBOL_GPL vmlinux 0xe7f1fa05 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xe7f20bb5 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xe7f241b5 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe8090cba dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe82b8017 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe89f3b0d rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe8a0e96c pmac_i2c_adapter_to_bus -EXPORT_SYMBOL_GPL vmlinux 0xe8a31d6f sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0xe8b8e9aa irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0xe9002225 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xe90116a2 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xe91cac7d device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xe927ade2 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe93f4058 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xe9554fc7 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xe9731816 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xe9960f69 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0xe9a9983e thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d64e6b power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xe9e7e218 blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xe9fcbdf9 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea1a72b4 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xea2615df usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xea2876ef pmf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xea3d7121 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea4eba21 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xea5033e8 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xea57c99b pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xea92ec8f class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xeab761dc regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xeacdcd13 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0xeae5b46c rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0xeb0de811 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0xeb309aca ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xeb3de213 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xeb4ebfab rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xeb675940 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xeb6d7d40 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xeb90e7ea sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb944231 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xeb979991 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xebad6d7c __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 -EXPORT_SYMBOL_GPL vmlinux 0xebc3845a ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xebd42c72 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xebdb31d4 analyse_instr -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xebf5a80b rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xec167a63 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec4794a8 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xec53053b regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xec770d0a cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0xec94bfad of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xeca173c9 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xecac825e ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0xecbe918b register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xecca41f1 blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0xecd068d3 spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0xecd198a3 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xecdd0306 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xed3e33ee __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xed4b1641 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xed6d8b4e xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xed739918 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xed7ee946 swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0xed9e7f2c ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xede00b2d of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0xedee3d4a ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xee1e9bf7 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xee25a28c unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xee31f5d6 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xee45e7b1 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xee54a1f8 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xeea31a75 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xeea8bdaf pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xeedfa566 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef5300bb __class_register -EXPORT_SYMBOL_GPL vmlinux 0xef5e4154 __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0xef6015ae cpu_add_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef755822 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xef81a444 sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0xef828a58 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xef8cc16f devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xef906dc3 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0xef9ae4b6 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefb01094 user_describe -EXPORT_SYMBOL_GPL vmlinux 0xefdf0b6c kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xefe5acec sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xf0162f2b rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0xf01e43f7 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf05fdaa0 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xf063843d xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf08ef47f i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xf0a188d9 pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0xf0c1d7d7 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0da1963 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0xf0f53cab scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf10a7591 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0xf1114b89 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xf112f327 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0xf14eca2c __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0xf15ebff9 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xf15f82f6 pmac_backlight -EXPORT_SYMBOL_GPL vmlinux 0xf1776c73 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xf177fe96 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1a98d81 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1b6e5d9 spi_async -EXPORT_SYMBOL_GPL vmlinux 0xf1c02784 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xf1ec3554 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0xf201ad88 cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xf2196393 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf234a10c regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0xf2442727 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xf257b355 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30c128c tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf340ab0c balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xf34aa090 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0xf3547a41 bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0xf36d670a md_stop -EXPORT_SYMBOL_GPL vmlinux 0xf3786aa7 bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3a010bc debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xf3aab1d7 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b4d6fc unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3d3d222 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf4222fc3 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf423c63b add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xf451b513 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xf464f212 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xf4711787 pmf_put_function -EXPORT_SYMBOL_GPL vmlinux 0xf471665d security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf4957b75 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4b333d1 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xf4bde991 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf50572c0 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0xf50d123c blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5232a6a remove_irq -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf55147a3 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf596215d inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xf5df6694 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xf6094b2f wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf6238802 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xf627b53c balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xf62b2195 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xf6396c87 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xf639e9b8 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xf64bc920 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xf66632c6 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xf6671e26 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xf6753954 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xf691ead5 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xf693b2ec shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xf6b76508 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xf6bb3cb8 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6e11a93 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xf6e51a92 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf728196e ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xf7896918 nl_table -EXPORT_SYMBOL_GPL vmlinux 0xf7b3c94b ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0xf7d4e963 devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf7e83eee posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0xf7e9bf7c blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0xf7f9d583 fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf841ab62 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xf842157c mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xf8456b92 ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf8499401 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xf8660faa crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf886c9cc posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf8a0030e simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xf8aea3d0 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf8b04818 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fafd78 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf91a5351 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0xf91eac65 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xf9289482 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf93df553 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xf949db9f serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xf94f4e38 wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf95a79fd pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xf95eda8f devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xf960d3e6 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xf96e0cd3 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0xf98553d6 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf98877df wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9f6509a usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0xfa011ebb usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xfa09daab wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa5a073a bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0xfa6272be blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0xfa76a6e7 irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0xfa774507 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xfaa48d24 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xfaa81d38 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xfaad2dc6 tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xfaae8d4b rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xfaebb3b7 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xfaf33ef4 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0xfaf5bd51 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xfb016424 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xfb022931 __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0xfb0324fa agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0xfb2b0d7f __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb425796 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xfb525dfc pmac_i2c_get_type -EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0xfb5ec580 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb7c8d8c usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xfb91836e cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0xfb922865 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xfba7e742 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xfbb02220 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xfbb4b46a rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbd169a2 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xfbd678db proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xfbe32542 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc106103 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0xfc3c835a ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xfc3e637d shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0xfc531d04 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xfc567169 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xfc594748 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0xfc65b51b invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0xfcabcb53 crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xfcb52242 tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xfcffb4e1 pmac_i2c_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xfd099e5b led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xfd10adb4 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xfd1674cb bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xfd4071ce regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xfd53bfe8 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfdb01c6a extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0xfdd9e083 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0xfde753f5 of_get_nand_ecc_strength -EXPORT_SYMBOL_GPL vmlinux 0xfe151481 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xfe266cc7 phy_create -EXPORT_SYMBOL_GPL vmlinux 0xfe391ecc pmf_register_irq_client -EXPORT_SYMBOL_GPL vmlinux 0xfe66c92c pmac_i2c_get_dev_addr -EXPORT_SYMBOL_GPL vmlinux 0xfe7cc393 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfeba0cca rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff065733 component_add -EXPORT_SYMBOL_GPL vmlinux 0xff1440c2 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xff510308 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff80969c regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0xff81e5c2 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xfff5f718 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfffa5a9c ping_recvmsg reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc-smp.compiler +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc-smp.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc-smp.modules +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc-smp.modules @@ -1,4317 +0,0 @@ -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_mid -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -BusLogic -DAC960 -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -ac97_bus -acard-ahci -acecad -acenic -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7170 -adv7175 -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -aha152x_cs -ahci -ahci_ceva -ahci_platform -ahci_qoriq -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airo_cs -airport -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -ali-ircc -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am53c974 -ambassador -amc6821 -amd -amd5536udc -amd8111e -amdgpu -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams -ams369fg06 -analog -anatop-regulator -ans-lcd -ansi_cprng -anubis -aoe -apbps2 -apds9300 -apds9802als -apds990x -apds9960 -apm-emulation -apm-power -apm_emu -apm_power -appledisplay -appletalk -appletouch -applicom -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -asc7621 -ascot2e -asix -ast -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atm -atmel -atmel-flexcom -atmel-hlcdc -atmel_cs -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avm_cs -avma1_cs -avmfritz -ax25 -ax88179_178a -axnet_cs -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1pci -b1pcmcia -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_epp -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcma-hcd -bcmsysport -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluecard_cs -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmac -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpck6 -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt3c_cs -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btuart_cs -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -cap11xx -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_das16_cs -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipone_icn8318 -chipreg -chnl_net -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -clip -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cm4000_cs -cm4040_cs -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -colibri-vf50-ts -com20020 -com20020-pci -com20020_cs -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_isadma -comedi_parport -comedi_pci -comedi_pcmcia -comedi_test -comedi_usb -comm -configfs -contec_pci_dio -cordic -core -cp210x -cpia2 -cpsw_ale -cpu-notifier-error-inject -cramfs -crc-ccitt -crc-itu-t -crc32 -crc7 -crc8 -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -csiostor -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_cs -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -ddbridge -de2104x -de4x5 -decnet -deflate -defxx -denali -denali_pci -des_generic -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9601 -dmfe -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -donauboe -dp83848 -dp83867 -dpt_i2o -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dtl1_cs -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc3 -dwc3-pci -dwc_eth_qos -dwmac-generic -dwmac-ipq806x -dwmac-lpc18xx -dwmac-meson -dwmac-rk -dwmac-socfpga -dwmac-sti -dwmac-sunxi -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -eata -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -echainiv -echo -edac_core -edt-ft5x06 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efs -egalax_ts -ehset -elan_i2c -elo -elsa_cs -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emac_arc -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_pcmcia -ems_usb -emu10k1-gp -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -eni -enic -epat -epia -epic100 -eql -esas2r -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f75375s -f81232 -fakelb -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_cs -fdp -fdp_i2c -fealnx -ff-memless -firedtv -firestream -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fl512 -flexcan -flexfb -floppy -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -fmvj18x_cs -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fsl-edma -fsl_elbc_nand -fsl_lpuart -ft6236 -ftdi-elan -ftdi_sio -ftl -fujitsu_ts -fusb300_udc -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcm -gdmtty -gdmulte -gdmwm -gdth -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -gf128mul -gf2k -gfs2 -ghash-generic -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -gluebi -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-addr-flash -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-amd8111 -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-fan -gpio-generic -gpio-grgpio -gpio-ir-recv -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-rdc321x -gpio-regulator -gpio-syscon -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gpio_wdt -gr_udc -grace -grcan -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gxt4500 -hackrf -hamachi -hampshire -hanwang -hci -hci_uart -hci_vhci -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hi6421-pmic-core -hi6421-regulator -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hifn_795x -hih6130 -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi504_nand -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horizon -horus3a -hostap -hostap_cs -hostap_pci -hostap_plx -hp100 -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -hsu_dma -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hwa-hc -hwa-rc -hwmon-vid -hx8357 -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-cbus-gpio -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-gpio -i2c-hid -i2c-hydra -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-mpc -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-reg -i2c-nforce2 -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-robotfuzz-osif -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i40e -i40evf -i5k_amb -i6300esb -i740fb -i82092 -ib_addr -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibmaem -ibmpex -icp_multi -icplus -ics932s401 -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_gen2 -idtcps -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -ims-pcu -imx074 -imx6ul_tsc -imx_thermal -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int51x1 -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipwireless -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irtty-sir -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it913x -itd1000 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -kafs -kalmia -kaweth -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks0127 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan78xx -lanai -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-adp5520 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-ktd2692 -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_cs -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -litelink-sir -lkkbd -ll_temac -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lmc -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac53c94 -mac80211 -mac80211_hwsim -mac802154 -mac_hid -macb -mace -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mailbox-test -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max5821 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77686 -max77693 -max77693-haptic -max77693_charger -max77802 -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -md5-ppc -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-gpio -mdio-mux -mdio-mux-gpio -mdio-mux-mmioreg -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -mesh -metro-usb -metronomefb -mf6x4 -mga -michael_mic -micrel -microchip -microread -microread_i2c -microtek -mii -minix -mip6 -mite -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_block -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi001 -msi2500 -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mv643xx_eth -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxser -mxuport -myri10ge -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nand -nand_bch -nand_ecc -nand_ids -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -ncpfs -nct7802 -nct7904 -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_daq_700 -ni_daq_dio24 -ni_labpc -ni_labpc_common -ni_labpc_cs -ni_labpc_isadma -ni_labpc_pci -ni_mio_cs -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicstar -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nmclan_cs -nosy -notifier-error-inject -nouveau -nozomi -nps_enet -ns558 -ns83820 -nsc-ircc -nsp32 -nsp_cs -ntb -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nvidiafb -nvme -nvmem_core -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_xilinx_wdt -ofpart -old_belkin-sir -omap4-keypad -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_cs -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -palmas-pwrbutton -palmas-regulator -pandora_bl -panel -panel-lg-lg4573 -panel-samsung-ld9040 -panel-samsung-s6e8aa0 -panel-sharp-lq101r1sx01 -panel-simple -parade-ps8622 -paride -parkbd -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pcmcia -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pc300too -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia -pcmcia_core -pcmcia_rsrc -pcmciamtd -pcmda12 -pcmmio -pcmuio -pcnet32 -pcnet_cs -pcrypt -pcspkr -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc_adma -peak_pci -peak_pcmcia -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-tahvo -phy-tusb1210 -physmap -physmap_of -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pmu_battery -pn533 -pn544 -pn544_i2c -pn_pep -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_core -pps_parport -pptp -prism2_usb -ps2mult -psmouse -psnap -pt -ptp -pulsedlight-lidar-lite-v2 -pvrusb2 -pwc -pwm-beeper -pwm-fan -pwm-fsl-ftm -pwm-lp3943 -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa27x_udc -qcaspi -qcaux -qcom-spmi-iadc -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom_spmi-regulator -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qlogic_cs -qlogicfas408 -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quatech_daqp_cs -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -rack-meter -radeon -radeonfb -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -ray_cs -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio-scan -rio500 -rionet -rivafb -rj54n1cb0c -rk808 -rk808-regulator -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-as3722 -rtc-bq32k -rtc-bq4802 -rtc-cmos -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-generic -rtc-hid-sensor-time -rtc-hym8563 -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max77686 -rtc-max77802 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-r9701 -rtc-rc5t583 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-snvs -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtc_cmos_setup -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -salsa20_generic -samsung-sxgbe -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sbp_target -sbs-battery -sc16is7xx -sc92031 -sca3000 -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -sdhci -sdhci-of-arasan -sdhci-of-at91 -sdhci-of-esdhc -sdhci-of-hlwd -sdhci-pci -sdhci-pltfm -sdhci_f_sdh30 -sdio_uart -sdricoh_cs -sedlbauer_cs -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serial_cs -serio_raw -sermouse -serpent_generic -serport -ses -sfc -sh_veu -sha1-powerpc -shark2 -shpchp -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sis -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -sl811_cs -slcan -slip -slram -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smc91c92_cs -smipcie -smm665 -smsc -smsc-ircc2 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4117 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-als4000 -snd-aoa -snd-aoa-codec-onyx -snd-aoa-codec-tas -snd-aoa-codec-toonie -snd-aoa-fabric-layout -snd-aoa-i2sbus -snd-aoa-soundbus -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pcxhr -snd-pdaudiocf -snd-portman2x4 -snd-powermac -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-sb-common -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-imx-audmux -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rt5631 -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-usx2y -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-vxpocket -snd-ymfpci -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -softing_cs -solo6x10 -solos-pci -sony-btf-mpx -soundcore -sp2 -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -spectrum_cs -speedfax -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-nor -spi-oc-tiny -spi-pxa2xx-platform -spi-sc18is602 -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spmi -sr9700 -sr9800 -ssb -ssb-hcd -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -ssu100 -st -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stmmac -stmmac-platform -stmpe-keypad -stmpe-ts -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -svgalib -swim3 -sx8 -sx8654 -sx9500 -sym53c500_cs -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink -synclink_cs -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -t1pci -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc3589x-keypad -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teles_cs -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -therm_windtunnel -thmc50 -thunderbolt -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -torture -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_atmel -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish_common -twofish_generic -typhoon -u132-hcd -uPD98402 -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_fsl_elbc_gpcm -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -uninorth-agp -unix_diag -upd64031a -upd64083 -us5182d -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vcan -vcnl4000 -ves1820 -ves1x93 -veth -vf610_adc -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-ircc -via-rhine -via-sdmmc -via-velocity -via686a -videobuf-core -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videocodec -videodev -vim2m -viperboard -viperboard_adc -virt-dma -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -vitesse -vivid -vlsi_ir -vmac -vme_ca91cx42 -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vsock -vsxxxaa -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83781d -w83791d -w83792d -w83793 -w83795 -w83977af_ir -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wbsd -wcn36xx -wd719x -wdrtas -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -windfarm_core -wire -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wl3501_cs -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xc4000 -xc5000 -xcbc -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xhci-plat-hcd -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx_emaclite -xilinx_ps2 -xilinx_uartps -xillybus_core -xillybus_of -xillybus_pcie -xirc2ps_cs -xircom_cb -xor -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yenta_socket -yurex -zatm -zaurus -zd1201 -zd1211rw -zforce_ts -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx -zram -zynq-fpga reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-emb +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-emb @@ -1,17230 +0,0 @@ -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x6310e901 mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0x062628d2 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x49cad14e bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0x99516e11 bcma_core_irq -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x23be247d pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x46054c39 pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x4614d00b pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x46841343 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x89eee10d pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0xa4cc69fd paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0xb021cb39 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xd208d392 paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0xd2c02693 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0xe05f0bae pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xf4e5eb29 pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xf98b23e7 pi_write_regr -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xe52554e5 btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x46ea69cd ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4847efa4 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4b9b8489 ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8768c048 ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xdec07997 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc91320a0 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xcacb19cb st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x855968f9 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xb4c092ee xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xcf222f73 xillybus_init_endpoint -EXPORT_SYMBOL drivers/crypto/caam/caam 0x1c758e97 caam_get_era -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x034afc31 caam_jr_strstatus -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x11dda270 caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x18fd9606 caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x39e01870 split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x3c32a9cf caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xb8ab0343 gen_split_key -EXPORT_SYMBOL drivers/crypto/talitos 0x4d0285ad talitos_submit -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x21a6f9ca dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x2f2b08e1 dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x7d208499 dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x9d7b34c8 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xa782a26e dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xad6edf57 dw_dma_get_src_addr -EXPORT_SYMBOL drivers/edac/edac_core 0x2edf7aba edac_mc_find -EXPORT_SYMBOL drivers/edac/mpc85xx_edac 0xea96c6d1 mpc85xx_pci_err_probe -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x07010ab2 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0c990a3e fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x32e39e8b fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a0d6563 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3d893841 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x44e9fa08 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4f6c83b3 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7b724f09 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x81cd5709 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86848869 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8bfd8c62 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa25b0644 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaa3e4757 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaf1c2743 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0xafc38e03 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbda7df9c fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbddcad14 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc9342eb1 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd6e0b5ac fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xddd5aa5a fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe9bb8bf8 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf1cbffa2 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf476bf33 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfab0e828 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfd0598ce fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfe5df2f2 fw_bus_type -EXPORT_SYMBOL drivers/fmc/fmc 0x0ce780a8 fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0x15e6590e fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0x19190323 fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x26e2ec90 fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x36b49e28 fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x57bb62f6 fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0x919296b2 fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x9495a8d7 fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x9746427a fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0xf04c9453 fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0xfb41722b fmc_driver_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00d7677f drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00f7180a drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x032d579c drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x035f1bb2 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x037d35ef drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03819ba5 drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04798dc5 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x050cb95d drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f89259 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07732786 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08477aed drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a80f5ff drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c442278 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ccf0769 drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d02eb5d drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d37c845 drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dedbd40 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10d11b5b drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12042ac4 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x127f458e drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c399ae drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x130f6df4 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x141f7361 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x149ccaf6 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16fb5e48 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e9faed drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19acb4cf drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e4430f drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e87fb3 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1acbf80d drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b98a594 drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd3cbd6 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f2ec495 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d47d85 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25a9493a drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2713d4fd drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x271e5d43 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27e3dce5 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27ff8ff6 drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x283274dc drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28dcddeb drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a267cc drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f7e4bf4 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30a10c69 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30a5eaa4 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x318338d4 drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32c98481 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32cb9679 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32eee9a2 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33edb37f drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3495d751 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34c905ae drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35ddafdc drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3678516e drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x369351e1 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x398da18d drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cd3b062 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ced5c9c drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dad2472 drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3df4162f drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e90d221 drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x407bb80f drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40967bae drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x410830ee drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x414670ac drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4157de1d drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41f5ac08 drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4298da95 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x451f3807 drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4529ec8b drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4671344f drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46e43cd9 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47660bfa drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47b8f31e drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47f4ca11 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48a15f86 drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x498bd21a drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49f93de9 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a4bea67 drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a5860d0 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ae3ff5f drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c81f11a drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c9ce8e0 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4eae82e5 drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fab0208 drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50415671 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x506d37e6 drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e4f0cd drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x516a6502 drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5173f1c8 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52ada2f6 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53078746 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54a96865 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55d53723 drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56c5c509 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x599757d6 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b693683 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ddb86fb drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fe26d56 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x625fed2c drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64241b9d drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x675a338f drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6798163c drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68862da9 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ed607c drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a7ee8c0 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c3a006e drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c5a542a drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6df5b65e drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef760c4 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x704bf914 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x716f30db drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x725ed6e5 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72b04085 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72f48d51 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74d11678 drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7517167b drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75ef1437 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76171f1b drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x764d2f89 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76ec0def drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77199e68 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77fe7a67 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7876989e drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78b1de93 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79332383 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7936ecb0 drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79bc6a29 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f40c095 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fb9e0fe drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8529e8c9 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x859edb7c drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x877f85de drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8906a9d8 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89365bb9 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89aaa127 drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89b710d1 drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b15427b drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8be88cac drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d48d1ba drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d6a748d drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e15f986 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90d49267 drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91a8ef69 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x926303e7 drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x937f1ca6 drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93f3c204 drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9400b28b drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x949de0fd drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94d76d95 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x958a7a90 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95d7da3b drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x961c40ab drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96b14685 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x972edf76 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9787e0cc drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x997e5b9e drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99a99d53 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9aa5289f drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c1ecfa4 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c565d1d drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d04612e drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d4c8002 drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e09abe3 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e362c85 drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7c4c9e drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9edc907a drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa03b8684 drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa04ce6e7 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0daa833 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1be19cc drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3eb09ea drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5808907 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5a532dd drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5cf00da drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa68f2cb8 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6ad11ca drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8e42fd6 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab96eb46 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac7d4d41 drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaef36cab drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf1d962b drm_legacy_addbufs_agp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22ee10a drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb23e0be5 drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb248eed3 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb251e647 drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb30ed531 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb31adc9b drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4672608 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb47743f8 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4dbf42f drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb51cd268 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb58f4a97 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5e14edc drm_agp_bind_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5f14cb4 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb65d2e10 drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7983853 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7ee53c5 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb80ad02e drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb91e6e21 drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb94dccb1 drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaa8772d drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb580ebf drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcccb6ec drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcedb602 drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdc7fc89 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbebd2e68 drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfdde349 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0a75f01 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1638117 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc326fa3e of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3c6109a drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3f4ea58 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4721dad drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5fc4c8d drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc71885c3 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8c5a051 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca3b5521 drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaa13fd2 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb6df2b3 drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce4e12b6 drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcede7b0c drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf429845 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd302551b drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd35155eb drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3df8d1b drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4e20e84 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4f05a10 drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd59f2df6 drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd75fe65c drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd77b5599 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd78e1e10 drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a905b0 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8bf8983 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda7b3a45 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb8a660b drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc899908 drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcbdeaf5 drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdddfbddd drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde6ffdde drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xded697c7 drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdeed18e5 drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfe2cbb3 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0544c88 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe07691be drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0ae121a drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0fa9878 drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe27833a6 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2adc0d3 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2cf71bc drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe382be02 drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4bc8558 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4bf98aa drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe66ec388 drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7f30314 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe96ac483 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe97a9e80 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9b4a142 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea352842 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea4d4686 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb748de9 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb9dc8bb drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeba8e5fc drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf03a355e drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf05fab3b drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf09204ad drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf174fddf drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1dc6747 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf216bf59 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf27c88b5 drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf35ed630 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf51894a8 drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5f7d4ee drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6e3a852 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf844f1fa drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9b6540a drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9e33733 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9f06335 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa79bb67 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfafd1ce9 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc500f9f drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd137642 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x049ab2fc drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a0e9559 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cb4e289 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11234b36 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12de7ad7 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x131deae2 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13273db5 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14e08256 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15e77f2f drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x165a2b33 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1887988c drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18cc4769 drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19a4ffe2 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b435b0c drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b932216 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bca2a77 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c0b122a drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c744f46 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ef92711 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f55c284 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21bf178a drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25d6a16b drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26df5499 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26f33054 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x271d6b93 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2829a72e drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x296b7f6f drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a5c7930 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b40fe50 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c0e90df drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e5e29ba __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f374fb9 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ff9fe6d drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3067af67 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x309cdacd drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3457e319 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35e7e03a drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c68d810 drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d661eb4 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f1755da drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f274a30 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f6fc442 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40edf9b3 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41a171bb drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x433a199b drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43f62ece drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4604fab9 drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x485f7853 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4899246d drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48e3cbe9 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d9336af drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53bd9853 drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56f28dab drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59878335 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5da840bb drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e195e76 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f0eea4e drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x614e8daa drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x645a9a8c drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65c9285c drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a7ca2ee drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6adcef97 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6afd331a drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6db1cbb5 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ef5022b drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7298f9f6 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76dd53f9 drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78a0ad9c drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85070a46 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x857c9916 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8723afbb drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87596dd4 drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b496763 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b538e58 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bac9343 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bac9918 drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cd7b0ff drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fb59374 drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90727177 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91587748 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x922d3f42 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x925f6806 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x933356df drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x956c1893 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x957976d0 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95e05438 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x961440b0 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98190847 drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98ad6770 drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ac46164 drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0221ed6 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa14f3659 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa502c8d9 drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa624678 drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaef662e5 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf0075d9 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf16dc61 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb101712e drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2c8d611 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6d3e71a drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb82b1cac drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba5d9059 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb65c62f drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdca11d2 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe9f4a86 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf08cb72 drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf5c764e drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc14bfeaf __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc27882e1 drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6623f05 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7ade662 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcabbdd1a drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb197064 drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbfaff67 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc4d3dff drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd0be3df drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0274685 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd07c2f50 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd35e10e1 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd542162c drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd621a75d drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6f09bad drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd751f59e drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbbc7ea0 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd7ae4ac drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf686953 drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1b18091 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4d60dd5 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe51fd347 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe59a2d5c drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6614bf9 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec844d7f drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed91dcb1 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeeb76e67 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeed72a6e drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0492235 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4abae5b drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf60b1e93 drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf675818c drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6e3b5eb drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff174df2 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff2503ad drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10ff2c46 ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1260b065 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x126d181f ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1352c8fa ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17e4d3f8 ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1804305b ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f32ce4c ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3485836a ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x437614f3 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x45406fdf ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x46447e81 ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48e55a3f ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4b853d9b ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f0f7438 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60d295a7 ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6603c9fe ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6bbea853 ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6bd3c987 ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c0eebdf ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x71250ac4 ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7303ae77 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x78e5cac7 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79be5b90 ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fedbfbd ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81bd01eb ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b2b06b2 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d2375af ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d89fcee ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8df0b4f8 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90acc486 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x941a7053 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94ac2a2c ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9625c55d ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a308d34 ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9dbdcb9f ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa1486746 ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf3c94d5 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb59f5390 ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7de69de ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb809e51f ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9b1b714 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xccffd860 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf4b961f ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcfcfaf60 ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd1f2090d ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd6c9a8c2 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb8cd055 ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1108490 ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1a8cfb8 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe7fc9b5f ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea0300bd ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec22a160 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4cefef6 ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf874a5e0 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf900facd ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xffe4f695 ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x1403b36b i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x628ebcda i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xe5614f7d i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x597b94bb i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x5c82bcdc i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x5d8caa4a amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1219d7ca mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2e154bfa mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x442ac305 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4dc81932 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5293ed6c mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5edfe397 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5f65ab99 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x61781d6c mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x622d6da8 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x74882109 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7cf72689 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7e09f2cb mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x847c34b3 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8db1349b mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9483bee2 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb34404dc mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x93605a11 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xa615c864 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1567ec60 iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x7be72e2f iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x28e59ae6 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x70081514 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc1adcb1e iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc80243b2 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x35804321 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4d9e9e19 hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x5bc0f699 hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x5e885462 hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xafacf2a9 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xcd1cd15d hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x4c70d61d hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x885dc56f hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x8c1aa37d hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xee7978cf hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0fb886b6 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3eae4109 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7ab7c863 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7f81c084 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8ee1a332 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xae0a7e53 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc4ce6fab ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf437e3a7 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfdfc5b04 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x0e39b503 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x145b3514 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x56d51b3a ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd035d82c ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xe74c379f ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x0fcea9fa ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x60f5be93 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x718818e9 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0fa127c1 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1c20309a st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x26f271c0 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x29297a8e st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2a1425ca st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5af9b356 st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7bf33a24 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8466f831 st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x852db36b st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8727f0a0 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb9953f1a st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbc70a1bb st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbfe81a21 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcbe7a475 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd4f8ad7c st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd944fcfb st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe671e220 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x4ebba2d7 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x98ac0335 st_sensors_of_i2c_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xbb1163d8 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x0bb320b3 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xc2d5729a st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xde5ae908 hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x4d8a3e4a adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xf7f85c73 adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/industrialio 0x05cd53ba iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x11c9e8d0 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x124a3c18 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x1fd63486 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x21c31828 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x3916a6d4 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x39999082 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x4a584c13 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x5fa51d4a iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x724fdcff iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x7621d5f9 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x79286e50 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x93e39412 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x96606b53 iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x9de9a761 iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xcff8cabd iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xef206e73 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x0f00e898 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xd1e264a2 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x6260b603 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x82c0be97 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xe7c0c13f ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x1e1eea7b st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x25e74a26 st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1ea5767b rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x32a8402c rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x5b89acc9 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xd04c57e3 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xdacc3457 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xf144f694 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0aae5f56 cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x137bd702 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x17e1b922 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2d914698 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5691958d ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6aa3ee7e ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6be38c99 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7b98aac9 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7edb574b ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x91b78595 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x94253c14 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbe676216 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xce3b394b ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdce7f54f ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf0d074c7 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf9eefc92 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfd1d3c90 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfed94b69 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x002bd3db ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0165087e ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02e28ac9 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0447bfce ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04777cc9 ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0cae003a ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e8af102 ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e917ee3 ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f0a9644 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1444badf ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16981105 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16edd250 ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x208938c7 ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21878e45 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x243b4d42 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2564bc7e ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25b726c1 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25dda8e0 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26c8893d ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x279677b5 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x291cfb39 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c294571 ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35600cda ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3600c834 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x382d38c5 ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3936eb81 ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a3816f0 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d6a9648 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x425278c9 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x492ca039 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49716b57 ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b60a328 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bf19627 ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ee2ba01 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5374afdd ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55913d51 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5742f67e ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5778301a ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59004fc7 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a42bcc5 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e9124a4 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ff0c42c ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b62cba9 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e9f23c4 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75f3781d ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76d4a45f ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8202d187 ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x832bf1bc ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8330c48e ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8336403d rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83fea803 ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85774a99 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x866c2ff7 ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87b1481d ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93d3073a ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94b03cce ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9919eff6 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e950cdf ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ecc6c8a ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa17a4b1a ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5544b76 ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa926bbbb ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac067fb9 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad4836dc ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf8df6e9 ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf94b8ef ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1cb2615 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb21de8ea ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6e66085 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8fc1be1 ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5d176c9 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7c2382e ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd18374b7 ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7fbfe64 ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2c6db94 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe559fc32 ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5c4114b ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5f6c356 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeed7f6d0 ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef5d824f ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf129c172 ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1c5d5f5 ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb57a540 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1171be47 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1277d5fb ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x13489661 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f23ea8c ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x43cf2ef2 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x59cf8314 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6a4f6df1 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7e1659d7 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc325028f ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd7239eef ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xda68d813 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xef8eaaa8 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf3dad4e2 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x02cb47bf ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x083ccdcd ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x14fdcfd8 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1af0b105 ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1d8c3b79 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8ba67a00 ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa5494d33 ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd8c48cbe ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xdfc3b589 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xabe78b5b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe5461a4a ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0d16523a iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x11ad03c2 iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1654a35a iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x17990074 iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x44a25785 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4a69227c iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x87267c0b iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9076a9a1 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa9cbc243 iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xab0b8f73 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xac882a1c iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb43eb0d1 iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc58493a3 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdc555768 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf2d5040c iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x32f7e839 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4333d3c9 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x43613d41 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4d223f7d rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4d77fc57 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5080f90c rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5a62b877 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x635ae97f rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x79a971f7 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7a880596 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7e809158 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7ee9ea48 rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x82093181 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x82e948bc rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8bdff4fd rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x93e67830 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x94a0ea0f rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa4501991 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa4eb5974 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb1472d29 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xff890d6c rdma_init_qp_attr -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3b2da785 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x6fda7773 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x71c13203 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x8db22d5c gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x912e7468 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x9a8a81e1 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x9a8b2f16 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x9f133fc7 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xdb1d2af7 gameport_set_phys -EXPORT_SYMBOL drivers/input/input-polldev 0x4f67db6b input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x7f0cc7de input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xaa78a30c input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xf7315c3e devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xfae91d6a input_unregister_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x2b62c689 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x48b25de8 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x8b45a6db ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x95934a10 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xc8eb6470 cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x0294ec29 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x0f5031e1 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x30f21db2 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xac183f03 sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0xaeda9a5d sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0xf394c923 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x3a9b2f0d ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xe9ba7543 ad7879_pm_ops -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0003f2df attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0eb419dc capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x29aac2d8 capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3979a78f capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3d33cf10 capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x40a7ded5 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x815d4948 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9258916f detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbb560bdf capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd9039a80 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0eff15db b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x106c53ee b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x12194114 avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x14edbbe9 b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4a8027f4 b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4ec7da16 avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x742decd3 b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x787ba31b b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x890f178c b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8e73a62b b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8ee64243 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbf9e7d8b b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd7293071 b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe48b39e0 b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xea0ef800 b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x17b480bd b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x4f45b7f8 b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7bfc8ac3 b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9690a55f b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9df0f682 b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa40f69f4 b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa72e0e81 b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb010687d t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xdf1116d7 b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x3e24ddf1 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x449f84f9 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x79ee21d4 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7f3fac7b mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xbd223799 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xf26aaf73 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x1a008b52 hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x0f2b7d58 isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x33e4360e isac_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xb7747c18 isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xc71c29d7 isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xdb290a1e isacsx_irq -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x1d384cea register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x34e134b3 isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x3ec22a62 isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0482822d recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0b4c1c21 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0bf4ba68 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1819d11e mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1ba544ac mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x260b16fa mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x320ae19f recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x426681f7 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x441ad32f mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4a3036a7 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x75eccbc9 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x80779c7d mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9946b50c get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9a239699 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9e179fac mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa28b8868 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa7151cc9 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaaf856f1 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbe0aeceb recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbe6d5a38 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdacd4de4 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdc71d5b4 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf8a87b41 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x12440cda closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d89bd11 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0x26481f26 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x490aed4e closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0x4f4ba90b closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe597a979 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe67c2d16 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next -EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-log 0x0af102e5 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x4d398ca4 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x7f55f476 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xb0699e44 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x08d5377a dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x3ed9a1ef dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x7f0d9cd6 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xca1f719e dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xf5af8ca4 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xfa342a50 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/raid456 0x7a6e733e raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0a873512 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1c1a509d flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1ceb30bd flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2f3ab35a flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x399f89b4 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x54610c93 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x684070f6 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x70afcdeb flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x878d06e2 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb3fbdbc7 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xba7091a1 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbc5832d9 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdec91456 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x416272eb cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0x429d33a6 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0x5b29bb95 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xd8594270 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x7d8e14af cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0xa06314e5 tveeprom_read -EXPORT_SYMBOL drivers/media/common/tveeprom 0xef82faf6 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x19ed189c dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x27d8c8b8 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2dc7fa94 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32706276 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x330a872a dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x36c1a4ff dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x46567604 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4a8cf33d dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4f53f6dd dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x537ef246 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x56ae40b8 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c0ea535 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6336dbf2 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6595063d dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6977f644 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70af1058 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78db694b dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f4f9b54 dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85a5e7d3 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9f8878a0 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9fce90f9 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa3259590 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa5deb162 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac8978ad dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3e10dca dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb8ddf4b8 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb8f3c2f0 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbc314a2e dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc680ae9a dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf589e8c dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd497d52e dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd65a3979 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8f7184c dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdd4c3f84 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xde3c50d1 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe490cb65 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf28e7431 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfbaa7e01 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x4788273e af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xb9c05ec1 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x9386b7e9 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x09de2579 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x116d608b au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x18907949 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x24cad014 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x33f1b1f0 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5c219101 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x987c353f au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe600b6ba au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfcf361c7 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x0a564613 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x58e5a3a9 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xb2102320 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xf1fd126b cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x7d89effc cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x7c60b30b cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xbd43ce4c cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x3ee158bb cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x46c0bc47 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x3858f35b cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xa462bb6c cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x80776132 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x0cbdc5d9 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x1eeff6c1 cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xe6feaf6d cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x04c6e4d1 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x5c653ec8 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7a105754 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x95408ff2 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xec4f4357 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x14b826cb dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x32a43ceb dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4685dbc1 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4b14f2e4 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x51056093 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x759888e8 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7764d7c8 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7eac0dc8 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7f094f31 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8a64dfd0 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9a80cfa6 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9ae2c6cb dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc9b255f6 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd69eea1a dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeeef86fe dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xd056cedb dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x18c903e9 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4c52b987 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x55375459 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x76d0c51d dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xdbada041 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf723f8a3 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5c905908 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa7867197 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa879477b dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf91dceb7 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xb100c20a dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xd210e48a dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x015f2a80 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x318708e0 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6da76a90 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x766d6465 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc408743b dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x860b9b1c drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xf5f7b4f5 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x3f6e63b2 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x2e7d5a34 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x28c11d1b dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xd798e413 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x815277b8 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xc67e6044 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x72146f36 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x4c17a6f0 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x59771983 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x3a0f69b8 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x94967bcb l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xe2fa2dea lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x13c07d75 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xc4d85ac5 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xf47abb10 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x4bac8319 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x7b8c5cd0 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x0526fdf9 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x962dbb9d lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xcc6f9c46 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xc51ba8d2 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xf01f0790 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x8b1192bf m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xb56bd6fb mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xf5c23690 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x05daf06b mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xe979e995 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x7efb5989 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xec01d544 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xc525a9bc or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xfa543d35 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xffe4692c s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xc15027d4 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x231b03f7 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xfbe1ee08 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x9bdc5768 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xd084d206 si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x4eaa70b4 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x3e4a922d sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x6dff50ec sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x2bacfc0e stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xe8c121f2 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xd5b9a402 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x3db64034 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xf1231e40 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xef138fa9 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xd5d83643 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xd6810e59 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x2e3be43d stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x5a609c03 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xa183ee5a stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xfc6cb0de stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x8a9fd961 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xa171b538 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x39b1c8a7 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x4be6b183 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x7ff319eb tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xb4ef032b tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xf8fbb553 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xdfaa237c tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xd10f0f61 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xdf36387c tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x3c9537f1 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x230bbc33 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x93f691b1 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xf43bf667 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xa793beb6 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x526445ea zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x07c1abed zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4f2d34d4 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x60977a31 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x61602d02 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb8d29dc3 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc56b6e01 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xcbc493c6 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xef152b51 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x110b0490 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xa1a5881a bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xa7f378c9 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd2553b54 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x4605a6ea bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x82bc8ba6 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xa56061f8 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0aca1699 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2352b747 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3132512e dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x456168a8 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x52aa7043 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5baaeea8 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8e3cce0e read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb97da50d dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xbfd6ace2 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x980fd1e5 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x41edfb41 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5d9bc8da cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7ffdf865 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe8c5368f cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf35a7c08 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xade36081 altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x15570f92 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1d6abe9e cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8ac451a0 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x97c0d40f cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc0f65a5d cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9bb9290 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf6e721df cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x10942d8d vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xa8b64a62 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc91c457e cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf1b7448d cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf27a9dd6 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf63df9d3 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0b757a14 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x87af941f cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc323f138 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xded44ccc cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe904ce55 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xeb2f38cc cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfc323205 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0f06a226 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1a7ace69 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1d3a5663 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3c5f29c6 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3eae6ee4 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x405c513b cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5fd3100e cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x641730c9 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x653b460e cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7825ebb9 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7a4083fa cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7d050a10 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x854bb158 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x97d9c925 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb59a3dc8 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc23a3940 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc26de599 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcaa7826e cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd7a56f2b cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdf808edf cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x13ee5b91 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2018da5e ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2882fdd0 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2da2bab1 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2ed2e396 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4757d6c8 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4eacf453 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5dfd3945 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5ebd52e5 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x70220d84 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x72d6d8b6 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x88723471 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x978020cf ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa1b1df26 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbcfabb59 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd53ee421 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe16b5bdf ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0ae990e4 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0b745dab saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x10bc7680 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x21cfc932 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3d20e1c8 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5bfa878e saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6dc8ddb6 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x819432d4 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8e03df8a saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb0c4a85c saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe8472f73 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf0560372 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xfe58121e ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x179f6cf5 soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x47984644 soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x4b163106 soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x4c3a210a soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x52e30fe8 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xd8650e65 soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe62b3f03 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x010e2dcc snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5d207c75 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5e559237 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x9aa10710 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x9b8920df snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0xba826490 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xcf4c4443 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x15ce8de4 lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3df065f1 lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7b4f2c06 lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7b6b5314 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8bfeb902 lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8c4d4ba4 lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8ef963e1 lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf9eef1e9 lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/rc-core 0x22dd85bf ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0x800dfaaf ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xb284a384 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x1a3e4271 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x175210d3 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x7d2e1d7b fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xf0f4ffd9 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/max2165 0xb4b5460f max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xbee01e1f mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xb70e4d19 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x8f46fa3c mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x2c2a86e0 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x0c93da1a mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x558585ca qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x30a6f6c3 tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xcaf91aeb xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xfdea79fa xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x530734d1 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x26484d2f cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xcf17ffef cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0f38197e dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1807bbb8 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x250e3a0b dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3545a4f6 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9987189c dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb1a556c2 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc27630a6 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe2cfbecc dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe3dfe55a dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x152db800 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x16bb3701 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3e228792 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x73ca7003 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa369f8f4 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa3b6b33f usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe8007c3e dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x54e71e74 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x053dcc4e dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x286b6390 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3618c2ee dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x44749dae dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7763a509 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x80889f24 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8a182676 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9d2794f3 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc80b9250 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xec0d1836 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf270b0f3 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xb375506b em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xecc9756b em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0b808df0 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1fcb355c go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x29fcfc38 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4e4ddf3e go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x542e659b go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x755b562f go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa54a3267 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc9c4e80a go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xca792770 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x04b40e4e gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2b646646 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x81455f2b gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcac6e8df gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcf066bea gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe6596860 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe744be0c gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xffc8dfc9 gspca_resume -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x736d6f94 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xbc5c3c14 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xd7ce0660 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x47ce84c7 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x6c09850d ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x481b1528 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x769ce708 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9ef7f649 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x61618988 videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x89f728dc videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa065eff3 videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xc8555058 videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xeb9cfcd6 videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xfd68d32a videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xede7a5a3 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xf1c19d39 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x209ec524 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x2b2841ae vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x4629f1a0 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x4b4207ca vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xa0a178a9 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xb614c9ff vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x9e49d09f vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0063a1c3 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0902f3c5 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x147ed0c2 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15f4db06 v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x194d92d0 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1cf4e8d7 v4l2_of_parse_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x233b3262 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25a85cea v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x29c1ce28 video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x29c20585 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d1a50a1 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e932121 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32230ceb v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35006117 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x370d0f89 v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a5eae28 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b3ee928 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3e17cb06 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x403eb86e __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4174b18d v4l2_of_alloc_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x445b1ad9 v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e84fbe0 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50dd8075 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x543df53d v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56e2472a v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56f54d33 v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c34a658 v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ddd2560 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5df79e23 v4l2_of_put_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60211baf v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x636465e6 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x639c02db v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x658abd60 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6986580a v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6c664b18 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ca34627 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x81df196a __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x880b2480 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f81806e v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x912ee613 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a26400e v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2ef395a __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa9ece34d v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaafc4380 v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad2702da video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xadd85961 v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3a31f10 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb503ee94 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb8689c76 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb889a70e v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb8ebc49a v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbaecec6d v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc8cefba1 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcacd2a74 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcde83e6d __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce342b1c v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcfcd4311 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd9c298a7 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb800cdd v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdbbba5bb v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe1deb69a video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4ab5e2d v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe53e4b44 v4l2_of_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5c8d3fd v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe649a6a5 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xebf1bbfa v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeea19da0 v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6731a8e __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6d64ae3 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf713c470 v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf8851d81 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfbe4380d v4l2_of_free_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd5bb2a1 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/memstick/core/memstick 0x079989ad memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x0e9e4ca6 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4f5230a4 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x576989c1 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x72153c42 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x758bf4e3 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x9a34a57c memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc12b7313 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd1317682 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xde7570c0 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe135e177 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xeeaa287a memstick_add_host -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x00cbaddd mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x03323e12 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x053758ff mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x09b1416d mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x10a23462 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1ed431ee mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1f7ef81e mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2e6939bc mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x30c84e18 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x465dbb58 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5495b272 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7b536a1d mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7c52c204 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x90eb2030 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x99197642 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf0697c1 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb16d4dd7 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb721dd0a mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xba0dafb8 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbe943a28 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc52d1621 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc5561c6f mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc5c3b0e8 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xde8a7972 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe3711d29 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe4b839f6 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xebc77a47 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xef0302b3 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfbf1c91f mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0f37fc30 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1722d03c mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1c93c868 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2593c7c5 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2857b873 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3901252f mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4227e62c mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x48e90de8 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x498333b6 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4b753480 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5f48c7d1 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x629659fa mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x65c2fda4 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x69c124cf mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6ef5f1ea mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8818cf82 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9bdc9035 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xac40cc87 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb15dd00c mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb4a06e5c mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbbdef82f mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbd54413b mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xea1f54e7 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xea8ddb42 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xebc67ce5 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf346ec96 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfcdc506e mptscsih_event_process -EXPORT_SYMBOL drivers/mfd/dln2 0x3757826a dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xcad31547 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xd516b675 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x85a6360f pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x9c8b5d3d pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2c4745e7 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3074dcc1 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x36934196 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6e3a3f0c mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7e53a224 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8a16335c mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9998d7cd mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb91c65dc mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbb44e46c mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbb8766c1 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfc4f0375 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x17fff5b6 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xb91e7c70 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x4f03a917 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x7d39128e wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xe25b10a3 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xf1d9540e wm8994_base_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x35b12dd5 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x9227abcf ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x30b3ae49 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x202ecbdc c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0x843052d1 c2port_device_register -EXPORT_SYMBOL drivers/misc/ioc4 0x4bd19af3 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0xb72598fa ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/tifm_core 0x15676339 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x1bb2fdf0 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x2e4ee652 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x3f69aaec tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x4ce5617c tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x607f8b65 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x7277fa0a tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x77feb9f4 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x9e442db0 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0xb8fbda47 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xc85eba53 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xe0bde051 tifm_unregister_driver -EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x49f6c3e2 mmc_cleanup_queue -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x1b61330a mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xfd28674a mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x34de6fbe cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x590a8025 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x736b37ab cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8c793f66 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc4bcb96f cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe0354460 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe38ee409 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x0ede7009 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2d076da3 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x95ff9922 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xadb094c1 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xa149c0f1 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x66e2d04c lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xad65d19e simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0xac84a7e1 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/mtd 0xb92083ac mtd_concat_create -EXPORT_SYMBOL drivers/mtd/nand/denali 0x161baa8b denali_init -EXPORT_SYMBOL drivers/mtd/nand/denali 0x31582edc denali_remove -EXPORT_SYMBOL drivers/mtd/nand/nand 0x48b18dea nand_scan_tail -EXPORT_SYMBOL drivers/mtd/nand/nand 0x6c3631e7 nand_unlock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x6eaa315c nand_scan_ident -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/nand 0x991aad30 nand_lock -EXPORT_SYMBOL drivers/mtd/nand/nand 0xa9514c0d nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand 0xcd0744c6 nand_scan -EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xdb9bd23a nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xe49d0fb9 nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xeefefa1a nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x32a72218 nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x41e06f2d nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x0ac49776 onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x2eb11aa0 onenand_default_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x964e3d34 flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd3727c0d onenand_scan_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x006e44a9 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x22b81612 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2a09d9a3 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4e60a544 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x80a698e2 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa7e462a3 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc4a3ab0d arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf2e6df9a arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf7f09668 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf86004c2 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3011bead com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd58558b4 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf85ece29 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x168d4cbf ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3c47e51c ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x464cdd8e ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4edfc845 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x57b9da39 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8aab9ad1 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9a2dddb6 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbec88bc1 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xca34f65e ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf03d963a ei_open -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x5f1ba86a bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xa3dffaee cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xe48ca42a bgx_get_tx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x14b825a5 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2425ffda cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3ea5b3d4 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x469050d5 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5040baaf cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x632e8101 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x725a918b cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7c02cdbc cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8a5a2810 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8ff41cac t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa2c60e1c t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa57935d5 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbb476d14 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc1eea5eb cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd4c6b078 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdb019d52 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00f8c447 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x06b1e992 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c43a498 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x15a47ab5 cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1d5758cd cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2e6010ff cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35e3ca19 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b880136 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d8992cc cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5113b712 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x53416bb9 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x538c309a cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a5d9f68 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6a5943ab cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d4a4878 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x807f9a2e cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86a12a41 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x88dfebf1 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x893253ba cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90101ec4 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa46621db cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb210dbc8 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb77f1b7c cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbe7018bf cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc53e419e cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd1892c97 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe9f505b5 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xefe72239 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf402b942 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf745d419 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf776ed37 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfa0beabb cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfd013965 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfec4f60d cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x480f00fa vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5a020439 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7693c8d6 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7c036fb0 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa442bd8c vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xdc4a8075 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xc0ce042e be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xe515e01f be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/gianfar_driver 0x79f28897 gfar_phc_index -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x003aaeab mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01419b83 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0652ce5a mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1209b8d4 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x120ba0a6 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15afd5cb mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x171b2078 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e491966 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2376f800 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28d1eae1 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x292c1b4f mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ab0fc17 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ff8446e get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32d1d4a6 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46054886 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46125e44 mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46ebea66 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b4bd625 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f989636 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x689a22b8 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c1a70c5 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dde2a28 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x739c1d7e mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8359d6a5 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x966e05ed mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9efc12cf mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa82f991b mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb35407bd mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb93c377 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbee67b1b mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcac387df mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8fdd835 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6476625 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef02d11d mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf48ac135 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6be54d4 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7b6179d mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe4638ce mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x039232b9 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x101a61e8 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11dd5027 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13e80783 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23d8d344 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30faf496 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36ae4919 mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38809fe3 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ff97439 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x419439d6 mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x455d158a mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48e08ded mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bc19c8a mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bd262d2 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c2051ff mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72a1f37b mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c8cc985 mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x801ec5c6 mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85a8eebc mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87a80926 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b75d76e mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ce870dd mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e7a3a84 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91b4b07e mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91ee140e mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93d6f789 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96c7f879 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c46a9ea mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f04e235 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9cbe066 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9f4aae3 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab428924 mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb158279b mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb84e7fef mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfe6b9a1 mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbd46e85 mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4bbed14 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7b2c146 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x05a8de9a mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x337477e9 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x645eb7c4 mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77ce7c11 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbdd5563e mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe116fff0 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xebee0981 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xb71ba202 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x2ce73e35 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6c22b6e5 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb324292c hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe553d906 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf8b3e785 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2a4fdac9 sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3228e224 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3b668297 sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x44a047af irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6abe8f02 sirdev_raw_read -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x78e9e71b sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x80ac58de sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9a908810 irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf24f31e9 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf9e94021 sirdev_receive -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x19d4486d mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x361da760 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x53c6a595 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x5832006b mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x67a4fda4 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0xb2294fa8 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0xc402437f mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0xd444cae8 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xb0a9b852 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xfd4b41b2 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x6a5ba00e cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xe33fd470 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x14a3d490 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x548dd95d xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x825607d3 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/vitesse 0xd9638c06 vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x00f53201 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x695741e7 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x82012ea9 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x4826511e sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x08f4e449 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x4d80edc2 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x4ecaa0a8 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x57797b34 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x5ba007f5 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x7490c977 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x8105c917 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xee2744e8 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/usb/usbnet 0x00ac02f0 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xab6ece87 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xdbf1327f usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0xea237d6f cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/wan/hdlc 0x22bab4a2 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x2a7ab584 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x332c64c9 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x40ad7a24 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x7cb0fcd9 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x8039d668 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x8c520e8b hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc9a702ee hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xdccc01c3 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf6b2bc56 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xffa9719e hdlc_open -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x1b4ad27c i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/airo 0x5419aae1 init_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0x5ab70448 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xe8971342 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2aea4195 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2be8903c ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4e449146 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x510a723b ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x55d17f9c ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x71d6d497 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x859890c0 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb58c29c0 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb5c53ddf ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd541d8fe ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd5b3e015 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe54eacf1 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x14896169 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1cedaa7b ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ebc8302 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7eb58acc ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8e29b02e ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x94d5b314 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9a5d92f2 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb455bba1 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd87ef1d ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc58b2a96 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd7d4a994 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd8639e51 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe26fbb55 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe956556f ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf11d2536 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0aa18bd0 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x26f6f1e2 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2b59de3a ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x42865969 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4c76a3ad ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x506ff36c ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x58ca4629 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa662f0ab ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xad417ec1 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc4f93def ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe479a65e ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x00b3371a ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x08069b6c ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1896b58a ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a853385 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1e9b6933 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x26085708 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x29fc372d ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2da659a9 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3130da5b ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x51201293 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x749c9615 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7bfaced0 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8bd6cc05 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8da908f1 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8daa886d ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9e8def40 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa2f57585 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa8933eeb ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xac32d565 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2ce3bc2 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe83f0970 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf0a22049 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf4e4614e ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04dc8864 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06a9cb34 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07e63e2b ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c8f9faf ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e463fe9 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13c340a5 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1490793d ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17431e20 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x195b4f78 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fd7f2b4 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ffadc09 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x206edf7e ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22f7b398 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25fd4376 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x292dd43c ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d822b5d ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e1d19db ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e24ead9 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f6d5f18 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f7331e4 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30ce42b9 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34706692 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37ac5c4a ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a50a6c5 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a59719f ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4055d519 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4174f76c ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a823e02 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b79a779 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c0475ef ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c724f66 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c75e553 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56cb0437 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57df8723 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x595a3fa2 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e656a71 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x604488b2 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62428069 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67f92550 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c76ad3c ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7010041b ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72e3954f ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73ab91cd ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x763276a0 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x766c6265 ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x773a0f3d ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x799a74cb ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d04b626 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81464cb5 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8220c9c1 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8592dbea ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x861d418c ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86cb6b94 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8702bc11 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x888081c2 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cb0db37 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d7cb3fd ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9219df41 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92c442aa ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95a1c134 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x968d1deb ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ba861eb ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa03d0a4b ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3d644d3 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa570f064 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6868fed ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9926b2d ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa6c14f8 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad7cdc9b ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5e776de ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb90b3a31 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9722d1d ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb77ff6c ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe1f32c0 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe9fef00 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbff14f25 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3410a9f ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3577deb ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc398424c ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc806b70f ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc83ea5bd ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcbf263ec ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcdc006d1 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0c8a62f ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3b1149f ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd61a6b50 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7a97f3c ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8296b0e ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9462319 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9f002b5 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbb5d3b6 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd1ba8ad ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2d4bcb9 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe504bd72 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe65c82bf ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7e6b188 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebfffc97 ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeda91cfd ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeea94070 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeee2d4c4 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf13ed509 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4106c78 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4a88849 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb7fc14c ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd2ad1f0 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x67e6dc9d atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel 0xf5e703ac init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xf89ef4bd stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x08f94c6c brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x16795af3 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x28d5e859 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x34a42ca5 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3e89de65 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x506d6075 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6e15c214 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x95f3be5e brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9809222d brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc1a7f1ed brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc3d3c969 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xcd0a0bd8 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd5d76ac6 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0cc0c1bc hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0e100752 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2e43e1eb hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x31a93d0a hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x338e472b hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x38570d42 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x56063d2e hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5f57c5d2 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x68e0d8f2 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6b3536e4 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7c9daecf hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x886e95e6 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8c414a7a hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x914909c5 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x92b081ae hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb055c28b hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb6111de2 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd3a420d8 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe6303dc6 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xea2ca6dd hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xea7369b5 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xed25bdf6 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xee481e58 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf0d68587 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf9613914 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x115a0b8c libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1265efe3 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x16343449 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1788934a libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2a941a78 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4f9e7095 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x50c99b15 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5bf67d00 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5ff75b83 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7f7e8663 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9b68dc9e libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa1f6773d libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb080df63 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb7295884 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb74b9043 libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbb9b845b free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc12113a9 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xce685cdf libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe2292d7b libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe7075f7e libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf866bd2d libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x00acf57a il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x039b21b9 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05cb4a21 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06850f42 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x07c95b59 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x088a0434 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0ad9d287 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0e1887af il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0e70d48b il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x10f0be8b il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x129ae8f1 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x13f73947 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x179e45c8 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x189b6493 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x19590409 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1d8c12f3 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1f209826 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x223127be il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22a6d407 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x23156592 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x243e7570 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x27cb4708 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2893a1f0 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x29d874e8 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3135d2a0 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3307d94f il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3bd41459 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x40105a35 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x43b98a35 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x442a28c9 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4570f776 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4966d3e6 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x502f1210 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x519d89d6 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x51be87d8 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x52faf3cb il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x545349dc il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x572d7ae1 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d4d745d il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5f259d1c il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x613f657f il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6be45828 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6f87f9f1 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x721a7593 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x75b691cd il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7c4e3244 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7d938b0a il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84637320 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8d757014 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8f715910 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x94af1c6a il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x96d8a659 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a15ecc7 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a1e9bef il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a42b0d9 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a63ed47 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a82a303 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a90b17d il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa5cf3617 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa63e51cc il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaa67b4ea il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xab0e559c il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xace26c86 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xada9313e il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0f163e9 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb69d7f80 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7f199ce il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba6b71ef il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbe571bec il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbf240748 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbf42f81f il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc01fb563 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc2115098 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc2acd20d il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc3205265 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc78316b8 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xca7c78a0 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcbc869b3 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc9d5b02 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd119c319 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd8423c89 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd95945fc il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdc88be78 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdfd2cfb0 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe263d35a il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe407b3cc il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe69ef493 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe95dec5c il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb11937e il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xec620753 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf4c211d4 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf74f2a08 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf86bc3ca il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfc82c00b il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfcd2d3f1 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfe0fd683 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xff66d6a0 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1b06ce78 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x2447a6ab __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x314a20a8 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x5e9c24ff __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8c8ab242 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x9a1b1df9 __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xdced6db1 __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0ecb238d orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x15dbf0a3 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1c7da0a2 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4865b377 orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5b3af66b orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6d166c44 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6f2239ea alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6fc0c7ec orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7640230d orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7b7d15bc __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb945d1b0 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbb61578c orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd4958131 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd65a76ed __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd7ea9961 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfd2c8f7e free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xd999c4a7 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x03f65659 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x064d2733 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0d7bbb51 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f4d58cd _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x10634eb3 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15a8b84d rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2423469d rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d53139e rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2dca9ead rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2eda6c58 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x304c06da _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34fb8a20 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3c6e600e rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c50c719 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e95b05d _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5262bff2 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c3fd0fd rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x64f4c5bd _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6cecbf05 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7df69ef6 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82810d46 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x836fee09 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f6100a4 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9013f602 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9381a12b _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x94d3d648 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9c4b9758 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa2b92b8d rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa2c6f993 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa7209983 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa84f81ec rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaec4d3d7 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb0515e0c rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3e2d2e5 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb6f211b6 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9160639 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd0bfc56f rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdda5e639 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe15da388 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe38f4232 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf661d4bb rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x45396bd7 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb9138fee rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x02c7c60e rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x36da3110 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb7b0c713 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf408a48a rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x055a6fad rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1018f685 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x130355dc rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f878402 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2fdbbc95 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3697ede5 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x370eeff7 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a040034 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4d9ab7e1 rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52d716a4 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x554fc059 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c572a52 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x653e6194 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x70d4efd7 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ecc15fa rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ff564fe rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9ba44fb1 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa77f60de rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb526d234 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb7b1c5b0 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb888cde8 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc40f9c58 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc983ee80 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcca8d534 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xccb22f94 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd40a7ea8 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc471260 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe574ebd rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x842bf85c wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xae6f6940 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd6527378 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xdbfa400a wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd414fb82 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd8ba902c fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xdb0008b3 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x50b944ab microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x78c91dea microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x5964a49b nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x6e35bf51 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xbb2951e0 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x05e776ce pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x9fd925c2 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x5434d5b6 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8c913d72 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8fee277a s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1e338329 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1e3a826d ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2469aaf6 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4adc5dc3 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x50a1afe5 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x65f352a3 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7be93500 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x93639a44 st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9ceb07bb ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb12eb69c ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb6b88961 ndlc_close -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x05536ba2 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1b79724a st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x23828c6d st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x270f5e0a st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x433c6efa st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x44b539bb st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x48ffc689 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x579a45ce st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5c567146 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5e317060 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x78fa8502 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9b76d317 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa5ea7c10 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb39c2e78 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb7ec3b30 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf3dee2db st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfcc765dd st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xffa98981 st21nfca_se_deinit -EXPORT_SYMBOL drivers/ntb/ntb 0x0a7d419f ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x1267121a ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x746a15d9 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x93fb36c2 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x983529c7 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xd03eb818 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xd20a4a84 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xdf2e06e1 ntb_db_event -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x22b28575 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xaae5a119 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x8d3117b7 devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x0da6b061 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x0e7e98a4 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x0f0d95d0 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x1d9c6e07 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x1de1257e parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x1f47c544 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x27aa9072 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x299072c2 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x3f89f19f parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x40b9c237 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5698b5eb parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x57176372 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5ff6bfd2 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x64351fbf parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x739df46b parport_release -EXPORT_SYMBOL drivers/parport/parport 0x7bb61a54 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x9251d452 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x9ac3d80f parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x9ded6557 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xa18f0665 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xa5471a6e parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xb49071da parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xbb7238de parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xbd4c6d9b parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xbdcb4a61 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0xbf138880 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xc7af099e parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xcb3faecd parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xd0954999 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xe9e2b2ef __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xecb950c0 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xffe9e14f parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport_pc 0x352f7d0d parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x881b1830 parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x07b7a5fe pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0a0d235a pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x14638769 __pcmcia_request_exclusive_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x223db6c8 pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3c7d57e0 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5049bf8b pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x55279e98 pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6306527e pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7e1f1310 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8161f349 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x899d6e92 pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x951e89a4 pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa617a70a pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc0b54df9 pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc8010ac9 pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe5a73066 pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf2104f22 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf54cd140 pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf93bc8fc pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0e8dc678 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x117c052a pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1e49c060 pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x23061af9 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x25121320 pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3a92c17f pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7519234e pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x94e804d0 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9f6757d4 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xead8b34a pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xefb52ea1 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x36c158c0 pccard_static_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x3b2544b0 pccard_nonstatic_ops -EXPORT_SYMBOL drivers/pps/pps_core 0x3cd6d777 pps_unregister_source -EXPORT_SYMBOL drivers/pps/pps_core 0x5aa7ca07 pps_lookup_dev -EXPORT_SYMBOL drivers/pps/pps_core 0x778be030 pps_event -EXPORT_SYMBOL drivers/pps/pps_core 0x7c0a31bc pps_register_source -EXPORT_SYMBOL drivers/ptp/ptp 0x10bfea76 ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0x39950feb ptp_clock_event -EXPORT_SYMBOL drivers/ptp/ptp 0xb39b87a1 ptp_clock_register -EXPORT_SYMBOL drivers/ptp/ptp 0xb70f2e85 ptp_clock_unregister -EXPORT_SYMBOL drivers/ptp/ptp 0xc9317307 ptp_clock_index -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0aaabc1e rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x36dfeb09 rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4e84cac8 rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x5b8d5caa rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x82ffbb54 rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc82afcc4 rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd08b8efc rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xef373808 rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xeff80603 rproc_alloc -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf8bc537f rproc_del -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x6e9cccb7 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x51f25532 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5888b96f scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe1570444 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xfb1454fb scsi_esp_register -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1819dc30 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2d3fbc59 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2ecad256 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4a78a249 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5bc6ca73 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x631e9c4c fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x765b610a fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x87fee636 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa80dcc13 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaad30e6c fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb4cd27a3 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc4f72f47 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x029db91e fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x045aebaa fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x064d5184 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x09f65dac fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x108e6e3f fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1432bc01 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1719a0a0 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a2551fb fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x387d808d fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3e927106 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x403d0cc1 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4466f81c fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x47a813c2 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a50509e fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d3c05af fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x535dd67f fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5900c11b fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5bdecc9a fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5da67883 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x618202d4 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x61932751 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64bc7230 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x68a8f571 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x695e23c1 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b2ba960 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7039d393 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78fee3d6 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7bc72ba2 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8294999f fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c2ce69f fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e61f376 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1b91c5f fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb6fcabb8 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb74cdb99 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7ccae5a fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xba36e35d fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcaf15966 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xda3c4d20 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3899863 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe451173f fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf6c47522 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf7a100d2 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfdf45492 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x2efc3e45 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x404aca33 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x810f723e sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd8a45e35 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x019c11de mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x03743eb8 osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x09bbe7b7 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0daff969 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1ea96d36 osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x20debe9b osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x20ee7f60 osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x20f808b1 osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2a98aafb osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2ad4c202 osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2f026470 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x37f593e4 osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3d938ed4 osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x40ce4c5a osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x42997001 osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x46763699 osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4b66e8cf osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4c4c508f osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x65046829 osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6e0c383a osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x700fe743 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x725eaaf7 osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x76e8e36a osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x790fb5e7 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x80ff4cd6 osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8639bb82 osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x86e036d1 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9821332f osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9f2b4366 osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa1d5ce4a osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc174742b osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc1f2bb49 osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc2027251 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcf9be8ad osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeb581975 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf607a9a1 osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf647c3bd osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/osd 0x25fafb4c osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0x311eeaf2 osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5404aeff osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xa8a048a0 osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xa94cf5a2 osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0xe1809e4b osduld_put_device -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x048c2488 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x143c48a6 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x209463f6 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x28852383 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2bb3d3af qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6a9bbb75 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x89466707 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x94cf34ba qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb4bd8c04 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xde1a47cd qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe263a9f2 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf8ca5014 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x18b5f5ba qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x2464a6de qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x5917402f qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x83e9be7a qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x957317c8 qlogicfas408_bus_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xfae8155e qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/raid_class 0x10a2e0ac raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0x979ef6fe raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xefaf3794 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0d868239 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x206ad62e fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4225bef4 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4761167c fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x49b4cc96 scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6de371d2 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x91797158 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x98597397 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbbc63359 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc00505a1 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd4a08722 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd96fe5dd fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf5be3d65 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x05fc5d1c sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1595ce7f sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2243c0c2 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x260132ad sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x294c292d sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2b3c1f65 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3f6e2562 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4d41e94e sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x521161ae scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x56e82812 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5735d963 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x57c651de scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x58f9bd84 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x67e45c77 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6aad8fcf sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7d7f4e9c sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8f76ceec sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9ef0c0b3 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xadfcbfb7 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb81fc4fc sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc878338a sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc8b8537f sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcfbe1fc4 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe18b9885 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xea0d9b90 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeb3a7e1a sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf2a41f2d sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfc9f0b8c sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3ead9146 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x473e61c6 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x57a91726 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x83b56396 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x99db7969 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x28f86d33 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3f7b482d srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd0592783 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf32ce340 srp_rport_put -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2c43ae17 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x50c14913 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6f699264 ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x990d4e87 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb14ec8e1 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd6c8e563 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf438cef8 ufshcd_system_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x14bc13ef ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x1bd5f216 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x1ff7c1ba ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x48216697 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x4b02553d ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x5ec983d3 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x6e450079 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x749df1a0 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x7a758618 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x8d1c5fb0 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x94318532 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x95660040 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x9e591ffe ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xa51cff3f ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xb391007e ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xba528cd2 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xbf847cd1 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xc1f73009 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xdf695f29 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xea512d7c ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x010706ed fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0ad11c76 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x22ffa60a fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x323e5b97 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3412879a fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3414232e fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5723a67a fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x60ee681d fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7177dd8b fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x784aca61 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x893bd728 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8a769a45 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8d98231b fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x97d4b358 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x99fd9d0a fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9c5611e2 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xad1f6f62 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaee40a32 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaefbddcb fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb6ce964f fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc23a0e36 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc5b8e2b5 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcc7d99a6 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcfed250b fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x34b21d89 fwtty_port_get -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xc3058f35 fwtty_port_put -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x3e476ade adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x4a37500f hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x71973a9b hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x9d221163 hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xaa2340a7 hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xa4a20b96 ade7854_remove -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xfff5c3af ade7854_probe -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xd215df6f cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xff45138f most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0371e6a6 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06475e8c rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06679b5c rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d0a41c4 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f5dc67d rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c920c3a rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x217a1872 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25ddb120 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d6412c9 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2fa51f25 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3535e843 Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x361cb6fc rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a32d1eb rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f7cc604 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x51b443bb rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58052ba7 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x672d122f rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c713f34 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c8ef5f9 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x718b2c78 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x72683296 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ae9e1e8 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7be3a021 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x81b0f4a2 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x874b36c1 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8d22071d rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99e69f43 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9fc7eb50 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa712ea74 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8fde15f rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xab671aa0 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xace4303b rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb6304336 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbde9c234 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe8ff778 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc30351d4 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xca7319c0 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xceceeba8 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd29b1c2a rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd429d70e rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd9f6c6b2 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdab901a8 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb6fd317 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde173289 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde8bc161 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdfafb741 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xebf5dcae rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7f46059 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf9e2a95a rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfeeb459c rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x02dd5c9e ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x075e6129 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x096371b5 Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x139946f7 Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x18967e0c ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a91fc00 Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x21f83ece ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22aa1839 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x234c7b81 ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26f75c1e ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3092f89a ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x33de725e ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3cc13fa6 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3d641aad ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3fe6c511 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x408a35a5 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x41c681ef ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42313dcb ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42c7e2d0 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x469e1c4b ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4f34f45c ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x650bfd24 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x837a8063 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x84f6d6e1 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87c6e849 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9d89db8e ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ef44c8a ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8cf2664 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa9219203 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xac926243 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1ac1430 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb82fb4db ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb9264c3e ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbaa75d06 DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbb648eed ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc114b9c HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf39caca ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0986827 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc3f14185 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6e80723 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca58f179 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc48c67a SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd3e3abc5 DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe0fb459a IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe34eb788 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe713f3af ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7c90aff ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeac7acec ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb69ec82 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xedea2ffa ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf783fd61 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf8aef0b2 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfce6efc1 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x01d803e3 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x021b3d01 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1f213b86 iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2185e397 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x382ae558 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4284568b iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x589ace66 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5e0fe65f iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62b89050 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65a1fb9c iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x69a81f83 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6c738c38 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ce63e87 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x93fd5454 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9fcebc7f iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5d1d94a iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae2b0618 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xafaa1e0c iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb4692d91 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb4f70ee1 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb922e5ec iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba26281e iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcc6ab604 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf67a762 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd82f546f iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd87650f5 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf7c5da7a iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfe8cdfe7 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/target_core_mod 0x01c2a060 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x03761346 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x0dedb629 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x11b94abe transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x1bfddf24 target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1c1a14b2 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x1de0aa43 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e00f594 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e6ff78f core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x1f0bdf70 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x2203ea08 target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x236a5f61 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x253030da transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x2a55cb6b transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x2ddc8ffa __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x3405abe9 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x3bb194ae core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x3bd6881c target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x422a4498 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c9b5753 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x4ed35486 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x52800ace passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x52a27ea7 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x56190077 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x597262b8 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x5bcd1f28 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x5c776572 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x5d214e8c sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x677711bb target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x73265dee sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x74be25e1 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x757c83be target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x76af33d7 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x7ec3da3f transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x81005f5d transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x86a286d4 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x86b25e3c target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x878b693c transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b49f415 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x8c21e3b4 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x948948dc target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x9b1a7d17 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x9e313ba2 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xa4931a87 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa6d35225 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xa7d5d07d target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa927e859 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xaa9b2e7f target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xaf9108c5 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xb3e5d3da spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xb61113fd spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xb6dacbb6 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xb97bdb87 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xc3f36fb1 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xc8136131 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xcc719d4e target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd2c290e target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0xd2c10630 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xd3a43d5d transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xdb3f0984 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xdb42b36b target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xddabad25 transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xe9a63dde spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xebfe4100 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xed542e28 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf85d4293 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xf874f260 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xfc553a3c transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xfe5a104b target_show_dynamic_sessions -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x36cfd51a usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xaa80cda0 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xa65c44fc sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1c84c32e usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2ce10d6b usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x31f5288f usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x393c37eb usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3fae1372 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x40f0e945 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc275b6cc usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd73276ad usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdc29ec12 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xeac5d410 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf147c141 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf572bb51 usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xc53b50f4 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xf026860f usb_serial_resume -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/video/backlight/lcd 0x3c26df77 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x53135f2d devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x536343b2 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x9f683c79 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x330dcbc1 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4b8fbba3 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6c493a67 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc0ca2e31 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc1de830d svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcb982c18 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe64fee9b svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xbaab10be cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x179b9f4e g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x682543a2 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xfb294b44 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x368606d3 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x498621dc DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x9182ceee matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf95b15ed matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xd5d1be50 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x9d9badcb matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x19647012 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x21108b83 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x34ba8d05 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd27395f5 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x55e16477 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xf34b0922 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb453fb3e matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd530f4bc matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf2089ba4 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf3a21fb3 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf3aae4a8 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xbffa6ab6 mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virt/fsl_hypervisor 0x45fd1882 fsl_hv_failover_unregister -EXPORT_SYMBOL drivers/virt/fsl_hypervisor 0x77c9b191 fsl_hv_failover_register -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x3cc0aabf w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x5ad67d6c w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xf2757413 w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xfad062cd w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x17cd4f6e w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x625dcdf4 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x42146ee3 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x428539b8 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x1b4a874d w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x36f217d2 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x5f3c70a5 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x89901517 w1_register_family -EXPORT_SYMBOL fs/configfs/configfs 0x21d189ec configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0x3a38748a configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x47691aa1 configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x682e570e config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0x6943e6d9 config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0x7b7e0fb3 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x84a4b2ab configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0x853084ce configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0x86a6d162 config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0x915f9c76 config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0xa27d7b37 config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xa937fe28 configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0xdf6b1cbe configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xe13c5ac8 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xeafa8672 config_group_init -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x3160e9b7 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0x338d7d65 extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x46bd7267 ore_remove -EXPORT_SYMBOL fs/exofs/libore 0x4e950d2b ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0x662142fe ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xa4dd5697 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0xaed3cb93 ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0xcf3e2f08 ore_create -EXPORT_SYMBOL fs/exofs/libore 0xe4e764a1 ore_write -EXPORT_SYMBOL fs/exofs/libore 0xe869f2b1 ore_read -EXPORT_SYMBOL fs/fscache/fscache 0x029ddcbf __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x16f430b0 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x2119f87e __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x21bec79e __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x258d2d5b fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x319daa21 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x325f9913 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x3624985b fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x3776690e __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x4008be38 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x45a794ff fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x4dcf368d fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x4e775bc6 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x55bee8df fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x5b75327e __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x5efb46a1 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x66951835 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x722d2654 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x76eceff3 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x7dbd159a __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x853e4475 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x8b473411 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x8f176989 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x96c255b7 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x9efc0e4c fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xa381dc5a __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xa9258835 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xa9805632 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xaa8e838a fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0xabfb823f __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0xb0c315c5 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xb2fb3830 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xb6ef4f61 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xbe4d954f fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xc0d3a9cd fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xc69ed237 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xc70c19b4 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xce68349f __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xe9044304 __fscache_acquire_cookie -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x55c0594c qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x5dc3eff5 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x8da37e81 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xdd8c466e qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xf8d6bb6f qtree_release_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy -EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed -EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x309a9449 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x546c1a9d lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find -EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put -EXPORT_SYMBOL lib/lz4/lz4_compress 0x0c222eb5 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0x7456cc61 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0xb182b870 lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0xe9093a19 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xec430b5d lowpan_nhc_del -EXPORT_SYMBOL net/802/p8022 0x7370850d register_8022_client -EXPORT_SYMBOL net/802/p8022 0x76f541a2 unregister_8022_client -EXPORT_SYMBOL net/802/p8023 0x571c8767 destroy_8023_client -EXPORT_SYMBOL net/802/p8023 0xadd86a8f make_8023_client -EXPORT_SYMBOL net/802/psnap 0x1ea12149 unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0x36051ab3 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x00d43c47 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x046c2437 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x091ab9c4 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x0a7c1a02 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x10ceea3d p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x1156bcc7 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x13f9c702 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x14283936 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x21046567 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x37317f2c p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x3853b21c p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x38e32f4e p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x3c9cc69f p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x3cfa139b p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3deb9c1b p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x42ed8731 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x455f9468 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x479568ab p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x481ae683 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x493c4ff1 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x4e8c2ddc p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x53d58a07 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x5c54db09 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x628bbe53 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x81984d77 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8227658f p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x85a6054f p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x87f73ff5 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x8e0a1125 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x8ea3459f p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x9900cd5e v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x9c0e753f p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x9e1a6b90 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xa3606ee6 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xab4e450f p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xaf5c94bc p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xb4fcb096 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xbebf4ed3 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xd6554d78 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xdd291e57 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xf9682d56 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/appletalk/appletalk 0x3b978262 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x564901db alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0xbd91ce74 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xe3308c39 atalk_find_dev_addr -EXPORT_SYMBOL net/atm/atm 0x0fe19cb2 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x161bd7ed atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x21435af2 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x292b7b8d atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x313ab18d atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x35a4ab06 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x4ad67545 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x5fbf465a deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x8e0797fd register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa4810754 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xa7129364 atm_charge -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xc357c698 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xe5e92826 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x029a21da ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x176630df ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x250c9935 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x7dae531e ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x900f3830 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0xa1a75864 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xdebd063a ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0xf2b2685f ax25_send_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x04da71d1 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c610bd8 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1ce0bd51 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x26741f8a hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ae90d12 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b3665f2 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2c30d47d hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x379b6eaf l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x480c5bd2 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4ec958a7 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4fb3dc22 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x52ae7154 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x53662004 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x552cb2d4 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a9ff887 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5cb7d902 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x78492ccc hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x808ed8c3 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x84df6e9d bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x898ab19e bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8bd43a84 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9179366a l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9646c762 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8c951fe hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa9dd8d92 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xac3bc580 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xafe28c40 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb78e6eb6 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xba2fdc39 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbd89c52a l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbea28d4d hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcb8c6d7f bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xccadf793 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1bb507c bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe887d24d hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xec790c77 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xecf5cc13 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xee29b94f bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf2603244 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf74be355 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf82e49f8 hci_register_dev -EXPORT_SYMBOL net/bridge/bridge 0xca1ae95f br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x04e4d8cd ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x611856ea ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xee256614 ebt_unregister_table -EXPORT_SYMBOL net/caif/caif 0x0352224e get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9b6acc8a cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x9cb1e147 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xa0e13731 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0xb714c7a5 caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/can/can 0x02cf4f88 can_ioctl -EXPORT_SYMBOL net/can/can 0x4d7b96eb can_rx_unregister -EXPORT_SYMBOL net/can/can 0x5de839d7 can_rx_register -EXPORT_SYMBOL net/can/can 0x76c219e7 can_proto_unregister -EXPORT_SYMBOL net/can/can 0xdc860432 can_send -EXPORT_SYMBOL net/can/can 0xeeaec1da can_proto_register -EXPORT_SYMBOL net/ceph/libceph 0x0345b6ee ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0d72a3c9 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x103fc08d ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0x1042e778 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x15813b76 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x15b9cb71 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x16a9702f osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x1d809de5 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x1e698d7b ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x26030ca8 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0x2804d76f ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x2a686f53 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3abf0560 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x4151d403 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x468a895f ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x4791eb0f ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x4a60bacb ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x54bf712d ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x5523009d ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x556ccd88 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x586a34e1 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x58eb92fd ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x5b57155f ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x5b945825 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x5c3738a0 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x63a01101 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x641794e5 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x670acb93 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x67ae77e6 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x71982442 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x72b055f8 ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0x7b40c8a8 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x7b9518af ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x7efd50ae osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0x826ee5a3 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x8278b22f ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0x827a935c ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0x864f66d0 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0x8806bc64 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x88c68c84 ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x88f68d18 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x89d78246 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x8b2479a0 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x8c171504 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x922027ce osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x94409429 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x95045030 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0x989c5515 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x993f292b osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0x995b9793 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0x9fa0a2a1 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0xa000ddcc ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xa16abb84 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xa411da57 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xac9a1eb8 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb07d49f4 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xb8a1a371 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xb902ff49 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0xb9086362 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xb9fffb97 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0xbbdb1f15 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xbd2837c0 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xbdf90edd ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xc2dcef92 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xcdbfd9b5 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0xcf91f6fa ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0xd0de3bb5 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd5b041f8 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xd66898c3 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xdc4405d7 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xdccedfe9 ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0xe1029f86 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xe44c9647 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xe657d308 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xe7cd5feb osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0xeaf1f04f ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0xeb3d5c31 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0xf19fd79d ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xf33675b8 ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xfd92ebc1 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xffcb47d7 ceph_con_keepalive -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x15d24201 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3c941d7a dccp_syn_ack_timeout -EXPORT_SYMBOL net/ieee802154/ieee802154 0x0c0d647e wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x4c8ea7bc wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x829393d4 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x88f36f49 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x9e1ce016 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xa9314fdd wpan_phy_register -EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x8b49dd30 fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xf1aa79d2 gue_build_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2f0ce93c ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x466258ae ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7660c261 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd241d45e ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd8da5a9f ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf379c245 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x26c8ac47 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xb44a8ca2 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe94f8621 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x02534e49 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x12e92800 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf575915b ipt_unregister_table -EXPORT_SYMBOL net/ipv4/tunnel4 0xa8788a3b xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xb404fc47 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x58431547 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x13bcf5b1 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3d5f30c9 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xaf3be6f7 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfe5f4ac2 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x2b5bf2b6 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x59498ec4 ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xca095981 ip6t_do_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x56eddc42 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xeddf2a43 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x893dbdfa xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf719cbda xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x154e63df ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x3dcac5f3 ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5d742f2d ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x7ec04ff9 ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8d6b9503 ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8f3409fa ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe1056367 ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe83bb4ae ircomm_data_request -EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x1509a3ed irlap_close -EXPORT_SYMBOL net/irda/irda 0x17e8d1be irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0x2759eba9 irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0x288481ef irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0x2c5c37c0 irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0x2e11bf9e irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x39e4ddaf iriap_open -EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x5f947e43 irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0x70357fff irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x766eb32b async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7e648480 async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0xa5f81cb8 irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0xa83625a4 irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object -EXPORT_SYMBOL net/irda/irda 0xaff0ebd5 irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbb7c514a iriap_close -EXPORT_SYMBOL net/irda/irda 0xbbf604a9 iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xc63d1e05 irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0xcb2327a1 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find -EXPORT_SYMBOL net/irda/irda 0xd0c01e52 alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert -EXPORT_SYMBOL net/irda/irda 0xd3523568 irttp_data_request -EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma -EXPORT_SYMBOL net/irda/irda 0xdb9a97ee irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0xdcbca933 irda_notify_init -EXPORT_SYMBOL net/irda/irda 0xddee3d0c irttp_dup -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe1fe2dbe irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object -EXPORT_SYMBOL net/irda/irda 0xed181d3b irlap_open -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object -EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this -EXPORT_SYMBOL net/l2tp/l2tp_core 0x5b842219 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x0166e416 l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x09ade354 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x53453d5f lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x5a0fb8ee lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x5ebc2b46 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x86751c69 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xa7da0575 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xb5acc58f lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xe941ac0b lapb_setparms -EXPORT_SYMBOL net/llc/llc 0x0ae188c4 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x586b047d llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x90ad0cc1 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xba2003b0 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xba641ff4 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xc922c66a llc_add_pack -EXPORT_SYMBOL net/llc/llc 0xede58ea7 llc_sap_find -EXPORT_SYMBOL net/mac80211/mac80211 0x01e21604 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x073a2850 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x085c2934 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x0e036b35 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x0e387d76 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x10263352 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x12b8326e ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x19976cd8 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x20fc8b80 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x2f896088 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x33054a7d ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x33d6b1f8 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x39476562 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x3aa17b4b ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x3b366293 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x41bfb1e3 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x48b9de5e ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x4ab45347 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x4c6d34c7 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x4cf5e291 ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0x4e3f7880 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x518b82e2 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x56cf3c34 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x5926d602 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x5bcc0a36 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x5dd45ea3 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x5e1144f7 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x60bcef39 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x640a9e45 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x6a20ff7a ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x6b9ddc17 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x6e25ea88 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x6e4e63a5 ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x70282e9a __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x71b1e607 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x74273801 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x7a6260c2 ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x7bad4ca4 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x7d19ab8d ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x7fdb14ab ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x80288887 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x80b08cd4 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x82f80580 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x8677a058 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x87805ae8 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x8a266cf8 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x8de9d823 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x9371f09c ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x9b7791f8 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x9b9f7db6 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x9c81e1e7 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xa0c2006a ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xa0ec4df5 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xa290fbb2 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xa38b00bd ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xa774aebd ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xaa4be3f7 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xaad9f42b ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xadde1ea6 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xae08da8e ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xb161d9f4 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xb2e23094 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xb2ecaa31 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xbb341f51 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xc0fcf9ea rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0xc14fa312 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xc83da40d ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xca0176b7 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xd38b924b ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xd5876b54 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xd8d3653e ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xdbb031a7 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xe125f111 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0xe164fab3 ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xe6b8a057 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xe81d641f ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xf1ebb0f7 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xfdc0ea7e ieee80211_probereq_get -EXPORT_SYMBOL net/mac802154/mac802154 0x00fc793d ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x08540022 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x2ab95ee5 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x6b063e71 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x9b0cace9 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xb422df83 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xbf292b1f ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xfce9746f ieee802154_alloc_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0edde25f ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x254c86a4 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2e92856a ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4dbccae9 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x53bc5f2e ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x54197743 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6c31ea98 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x88b30890 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8ab2e285 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb039aa92 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc7b4e50d register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcf23147d ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf0be3130 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf1d2fb09 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xc25d9398 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xe7511c1f nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xedf644e1 __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x114e0b61 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x293dd2bb nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0x727b09f9 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0x910d1110 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xb06969df nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xf5e2ebbd __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/x_tables 0x05ec27bd xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x5c211d0a xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x608042c8 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x72391398 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x89f6a4ae xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xb69a9fca xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0xc5c153ba xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xcb588e56 xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0xd44d6fde xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xe8895c33 xt_unregister_match -EXPORT_SYMBOL net/nfc/hci/hci 0x0314bd8d nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x0441df42 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x18b3efac nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x19aa68ad nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x26fa38ad nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x32f1d1e3 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x55d3536d nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x69e67d88 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x6d872e7b nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x71804ad9 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x806491fd nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x902fd358 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x96dfc86a nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x9b040e93 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xa2de723b nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xa4b1310c nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xb57cff23 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xdc6847b1 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0xebb11043 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xf95dd921 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xfd1cebdf nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x09320693 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x0ca1dcc6 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x14ceed95 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x1d4b328f nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x1fb0818e nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0x243be79e nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x377b334a nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x4857dc32 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x489d7c67 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x50548def nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x5965d2b8 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x60c8be8c nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x653d741d nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x6855acd5 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x6cdb7523 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x6f767ba4 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x79ddf2d7 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x9c6626ff nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xa790bc0d nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xb07541c3 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xb909a8f5 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc21eaa06 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xca77e71a nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xd73e250d nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xd749a280 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xda4b8c91 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xf6bc4de1 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xfe4ad00b nci_send_cmd -EXPORT_SYMBOL net/nfc/nfc 0x012b8ec4 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x0265c2ba nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x0bb55b20 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x0ef2aeae nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x10570dd7 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x1e3d962b nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x2277a72b nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x243a3164 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x25c57b0a nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x31027241 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x44a95bb5 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x85ad4193 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x872ce2d0 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xad126892 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xb2252d5a nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xb877bd2c __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xb9582068 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xc500acf0 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xc9a3618b nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xcb04a210 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xcb086818 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0xdfbbc41f nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xe4df8129 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xf88ec9cc nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x1d501b10 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x20222090 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x21197e20 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xa1634eb9 nfc_digital_register_device -EXPORT_SYMBOL net/phonet/phonet 0x01c4e78b phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x230f67e3 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x2b3158c8 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x40b2f1d7 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x8a66617e pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xbb57ad84 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xceafadbe pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xea6eaa5a phonet_stream_ops -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0cebc7c6 rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0d240dca key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x103352ca rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1dac448e rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x345690f3 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4aec65b3 rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x629c92bc rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7d570d3f rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x845bd52c rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa268d4c5 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa91bca3a rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc18bde5f rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc6f8dc0c rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd0c532b5 rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf34e445b rxrpc_get_null_key -EXPORT_SYMBOL net/sctp/sctp 0x2b04b76b sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x3ede14de gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x439a2e18 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x55bceee3 gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0xb16d35bc svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xb45a61c0 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xbb8249c7 xdr_truncate_encode -EXPORT_SYMBOL net/wimax/wimax 0x09132ce1 wimax_rfkill -EXPORT_SYMBOL net/wimax/wimax 0x379bf4be wimax_reset -EXPORT_SYMBOL net/wireless/cfg80211 0x00536f61 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x0398a038 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x0619366d cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x070fadcc cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x07356db9 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x11b3f6b6 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x1458aef8 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x14819d23 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x150bce6a cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x15b526a3 cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x15c5ff5c cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x18fc506d cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x1c7a7160 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x1c9a73cb cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x1cec3250 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x21f0aebc cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x22950cab cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x25b52984 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x295004e5 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x2bace103 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0x3092f1b5 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x31ad1bf8 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x373f5777 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x37af700c wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x3af269de wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x40b8274c __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x41aec85d ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x42132dcb cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x430e586f cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x4696d015 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x478b3baa wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4d55dcc9 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x4e5fdc4f cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x527956d6 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x56c9d895 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x56f1842e cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x591431bd __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x5b805e59 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x62ff0732 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x6876acef cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6b63724c ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x712293d8 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x7123431b wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x74e9be46 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x79937682 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7f2d65b4 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x8030d1bf cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x809961e4 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x82ec9de0 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x83206246 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x8839ae52 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x8f5bcd5d cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x9a977d14 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xa1ffc00c cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xa74dfa86 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xa984b5c0 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0xa9ab1126 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xadfe489e __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xb48e7012 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xb6006bce cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xbbc5ed4a cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xbe53e429 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xc2dd6c1d cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc34e30ae cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xc410d67b cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0xc6106ed2 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc6e2d324 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xcac2b1a4 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xce4fd311 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xd18a6f63 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xd4abfd34 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xd6297128 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0xd8056378 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xd81b2a4f cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdba819dc cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0xe4d9bdec cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xeacf5fe8 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xec11a514 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf1dd8469 cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0xf50a168b freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0xfa6a44f0 ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0xfc8aaa5d cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x36f8b4df lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x44f1aa9d lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x83063d82 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x9e348935 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xbd01aac5 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xe7db7306 lib80211_unregister_crypto_ops -EXPORT_SYMBOL sound/ac97_bus 0x5730628a ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xc872bb7b snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x19f3ded8 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x302e1d08 snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x5bcd82d5 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xc990815c snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x47820d55 snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x072d978b snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x13a17752 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2eed26bf snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5ca523 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd7c7afcc snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x2ee774b7 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x026aa012 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x04c44fed snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x0c382d42 _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0x0d466193 snd_cards -EXPORT_SYMBOL sound/core/snd 0x0ecf1a5c snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x11a914a4 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x1262a930 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1b0b57a7 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x1d447263 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x20e3f811 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x29b072d3 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x2a1d4a8d snd_device_register -EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0x30465795 snd_card_free -EXPORT_SYMBOL sound/core/snd 0x30e02eca snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x34bb4aa2 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3c9b9576 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x4846c2e7 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4da34a22 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x533a6730 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x62f36732 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x6739dde3 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x729cbe24 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x7955a36c snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x821d3b1e snd_card_new -EXPORT_SYMBOL sound/core/snd 0x8338585a snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x86947983 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x871994e3 snd_device_new -EXPORT_SYMBOL sound/core/snd 0x87f9a617 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x8ba6e1bc snd_info_register -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x938f3d4b snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x94eee791 snd_card_register -EXPORT_SYMBOL sound/core/snd 0x9cd20f60 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0x9f315ba9 snd_device_free -EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb43c0195 snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xb90a01e5 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0xb9465694 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0xba826197 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0xba92d02f snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0xbc809dee snd_jack_new -EXPORT_SYMBOL sound/core/snd 0xbd17751f snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0xc648a344 snd_register_device -EXPORT_SYMBOL sound/core/snd 0xd48279bf snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0xe14c2a3c snd_power_wait -EXPORT_SYMBOL sound/core/snd 0xe948e739 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0xf3c88f7f snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xf7f97596 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0xfdd9adb9 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xfe2b4090 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-hwdep 0x431fbf70 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x014fa99a snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x065fc6e9 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x146bb3ed snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x158f833e snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x1ac3f70d snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x212ff174 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x22204b62 snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0x222acbc9 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x294e7c6b snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x356c0f14 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x38922c30 snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x4508274b snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x46804519 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x469d1a05 snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x51358b6c snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x5348b21b snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x55086b73 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x5d048f6e snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x5ddf8594 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x5e623837 snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x66f0b9c8 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x674b2502 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x6b0a04eb snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x759be45c snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0x76cb373e snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x78fbfdfc snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x80cbb66b snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x8a0b305b snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x8fe1f0ac snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x97df1a4a snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xa04b2607 snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0xa125b32d snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb12e316a snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0xb16bfbcf snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0xb57a36c2 snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0xb6a3b8a2 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbf0ff023 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xbf7f9199 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xc239d808 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0xc8ec12e3 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0xd0924705 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xdd828cc1 snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xe3e9e89a snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xeec1991c snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xf10694b2 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xf87b963e snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0xfb9dadb3 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x084af4a4 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x09940a13 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0e1c0758 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1028d4a0 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3ac828f1 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3b9191a6 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x41c783ce snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x41db7381 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x43afe86b snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4943b578 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5d7448da __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x685b0abe snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x83578482 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa6498da8 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbc878d19 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd2980f2f snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd96468f9 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe3b5e967 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe43c8c08 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-timer 0x19db4255 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x33050598 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x36dedbcf snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x38ce131a snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x3a092348 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0x71702855 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x773464b3 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xa978da31 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xbed36fed snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0xcbe24634 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xd80beaa6 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xdc0fb9a4 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xe56b39f5 snd_timer_global_register -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x1b4b6fbc snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x28d4c62e snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3732e9c6 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5e2ed27f snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x773fe8bb snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xadf97a0e snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xaeb79379 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd1cca2e8 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd8ea1df5 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe0ade145 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0d7d09a6 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x24c53221 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x679ac996 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x785905fe snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7affb01e snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7e6c9396 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x98584b0e snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb82c55a2 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbc58a20b snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x004baa5e iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x03417aca snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0bb521e2 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x14d5942e amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x15145a1f fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1cf7b958 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2621316f amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x26d3a1d5 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x295a16c5 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2edd2b72 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2feeb9f2 amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3bf8e89c iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3dfc93a0 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x42da0989 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4887d3e0 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4bc8b623 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x591e5ac9 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5fbd87b9 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x761620d5 amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x79c8541b cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7b0d7cd3 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7e64c60d fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x81002c90 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x89b9a7fc amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98782259 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa53810dc cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaac259b6 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaefe61a1 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdee28630 snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xef881df7 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf475467b amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfd29e476 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x3d77df9d snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x9c1d3821 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x01253b21 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x69c272a2 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x909c4a11 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x96c351e1 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xabff02d0 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd18c73c4 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdb7c3628 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xee76ce5a snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x0ae49873 snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x84a0b046 snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x88102562 snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xf2412d90 snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xfe37b68f snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xff8b3a3e snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x098d886e snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x27dd51b9 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xb792679d snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf131e986 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x595173b8 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xa7db60c7 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0df339e3 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5d380a44 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7a74c17a snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9706bf6c snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa238e37e snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xec53db15 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-i2c 0x1d8c83da snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x2fb070f8 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x7bd97c43 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x9dcce7fa snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xd3708912 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xd5bdb0ea snd_i2c_bus_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x052586d7 snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3ac3fb66 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x549ad556 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x71b3194e snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7b668743 snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x85546db7 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x92f5e5bb snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9450dd9e snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa76f3e6a snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xaf37e340 snd_sbdsp_get_byte -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0d520cec snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x172f7884 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x18036bc2 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x40c3c4de snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x52209ce0 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x54cda4aa snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5a61dddb snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x68d893f5 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x69cd9f31 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x78b15184 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xafe0f1d8 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc791c89d snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd7fd6c33 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd825035a snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe50671fa snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf473a116 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf49ad816 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1561ed95 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3a7cc3b3 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4bc0f25c snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x625348f2 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x783f7962 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x984ed366 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xab6f630b snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xceeb1028 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xcf7952aa snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc2161fda snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xec8a168b snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xf4101063 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x011a74a1 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x15016542 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x15e80b6e oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x24103bc5 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x60ad173a oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x66a9c622 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x68a17b49 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x77f133e9 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x92cd38e3 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9400fd3e oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9f366ff5 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xaa3d7bb7 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xac7ff16b oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xba76540c oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbc6c53f3 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc7bb78f0 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd1ab6121 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xde9158c7 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe29404fd oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf90a70a1 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x26908c7b snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2e6cb686 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x336f10d1 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x42648024 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xddaf7deb snd_trident_write_voice_regs -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x37fb9e2c tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x9b920675 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/snd-soc-core 0x9accfeb9 snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/soundcore 0x11076d33 register_sound_midi -EXPORT_SYMBOL sound/soundcore 0x56d72465 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x809344ca register_sound_special -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xb0e02789 sound_class -EXPORT_SYMBOL sound/soundcore 0xbfc1ad07 register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/soundcore 0xffec905d register_sound_mixer -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x06137d65 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x34917faf snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3b7ae087 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x52a2762e snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6f60fb81 snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x85c4fc72 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/snd-util-mem 0x683c9cdc __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x7260b5a6 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0x746e9872 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x760f84c6 snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x990194bd snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x9f0f4a34 snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xc74d4d4c __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0xcc968515 __snd_util_memblk_new -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x689bd5b3 snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x002a9c37 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x002e3733 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x0043bb23 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x004e3def vm_mmap -EXPORT_SYMBOL vmlinux 0x005707c3 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x005f128a eth_gro_complete -EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done -EXPORT_SYMBOL vmlinux 0x00baa12d bio_reset -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00f7ebf9 dev_change_flags -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x010f6bc0 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x0114950f tcp_check_req -EXPORT_SYMBOL vmlinux 0x01216bfa blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x012782c4 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 -EXPORT_SYMBOL vmlinux 0x01498490 kill_pid -EXPORT_SYMBOL vmlinux 0x015b098a dev_set_group -EXPORT_SYMBOL vmlinux 0x016952d1 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x018a0612 tty_mutex -EXPORT_SYMBOL vmlinux 0x0193ddfc rt6_lookup -EXPORT_SYMBOL vmlinux 0x01a76b72 md_cluster_mod -EXPORT_SYMBOL vmlinux 0x01b972ff blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x01be5535 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x01c8a63e vfs_write -EXPORT_SYMBOL vmlinux 0x01d86f31 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x01e97368 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x0245bef2 bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x024a4d2f __destroy_inode -EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x026d2de5 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02b24e47 set_create_files_as -EXPORT_SYMBOL vmlinux 0x02e09da4 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x02e9089d xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02eda3ba netpoll_print_options -EXPORT_SYMBOL vmlinux 0x02f19494 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x0301cb03 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0338fe3d nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x0339cdcb twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x033ff454 do_truncate -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x035c51dc md_update_sb -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x0382ee52 md_integrity_register -EXPORT_SYMBOL vmlinux 0x0395af1e pci_set_mwi -EXPORT_SYMBOL vmlinux 0x03a9bfa3 bio_put -EXPORT_SYMBOL vmlinux 0x03bae28b generic_file_open -EXPORT_SYMBOL vmlinux 0x03c0ddc0 of_match_device -EXPORT_SYMBOL vmlinux 0x03e3b264 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x03f65fde of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x03f6a737 seq_release_private -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04074f48 ioremap -EXPORT_SYMBOL vmlinux 0x041023aa acl_by_type -EXPORT_SYMBOL vmlinux 0x04202217 kern_unmount -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x0425501f compat_nf_setsockopt -EXPORT_SYMBOL vmlinux 0x04328e85 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x04473c2e simple_rmdir -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x04905a0f devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x04c34bad padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04f586eb md_write_start -EXPORT_SYMBOL vmlinux 0x05084d7e skb_split -EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x05259021 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x0544447f bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x0553d45a noop_llseek -EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x056061bd search_binary_handler -EXPORT_SYMBOL vmlinux 0x056c35cb xfrm_input -EXPORT_SYMBOL vmlinux 0x056d40ac input_open_device -EXPORT_SYMBOL vmlinux 0x0571482b of_mdio_parse_addr -EXPORT_SYMBOL vmlinux 0x0572738e page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0x05922ff7 empty_aops -EXPORT_SYMBOL vmlinux 0x05940717 key_unlink -EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns -EXPORT_SYMBOL vmlinux 0x05ad4bfb fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x05c448ab compat_sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x05d38ebc param_get_int -EXPORT_SYMBOL vmlinux 0x05e00746 update_region -EXPORT_SYMBOL vmlinux 0x05f9b552 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x0638e3f4 tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x063aaa1e kdb_current_task -EXPORT_SYMBOL vmlinux 0x065e3201 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x06686d9e local_flush_tlb_mm -EXPORT_SYMBOL vmlinux 0x066bc2d2 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x06854fd7 d_find_alias -EXPORT_SYMBOL vmlinux 0x06bbf5c4 security_path_link -EXPORT_SYMBOL vmlinux 0x06c49a84 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x06d17358 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x06eae873 udp_del_offload -EXPORT_SYMBOL vmlinux 0x06f19bc4 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x06f98985 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x07072514 dquot_get_state -EXPORT_SYMBOL vmlinux 0x0711e793 swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x07171f8c fsl_ifc_ctrl_dev -EXPORT_SYMBOL vmlinux 0x071adabe xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x07485537 abx500_register_ops -EXPORT_SYMBOL vmlinux 0x074e9213 down_killable -EXPORT_SYMBOL vmlinux 0x0768a2ed textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x0790240d jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x07b9909d devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07e6da9f dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x07fde336 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x07fede07 eth_change_mtu -EXPORT_SYMBOL vmlinux 0x08121962 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x08198ea0 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083b3223 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x08618d67 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x086d8cdd irq_stat -EXPORT_SYMBOL vmlinux 0x08720432 sock_from_file -EXPORT_SYMBOL vmlinux 0x08894ec6 __sb_end_write -EXPORT_SYMBOL vmlinux 0x08a4793d nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x08a7b16b netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x08bf6bd0 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x08efb998 del_gendisk -EXPORT_SYMBOL vmlinux 0x091896c8 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x091a3e4b napi_gro_frags -EXPORT_SYMBOL vmlinux 0x09317d12 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x0934a8cd generic_end_io_acct -EXPORT_SYMBOL vmlinux 0x094fda26 override_creds -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x09673ede simple_write_begin -EXPORT_SYMBOL vmlinux 0x09828f0f page_readlink -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09a1e0fd dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x09ab55d6 __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x09bbbf73 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c67afb flex_array_get -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09dd0f1a migrate_page_copy -EXPORT_SYMBOL vmlinux 0x09e65cc6 mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0x0a0acc54 put_disk -EXPORT_SYMBOL vmlinux 0x0a1fc862 d_splice_alias -EXPORT_SYMBOL vmlinux 0x0a245987 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a2eb33d lwtunnel_input -EXPORT_SYMBOL vmlinux 0x0a3c6541 bdevname -EXPORT_SYMBOL vmlinux 0x0a3f7d2e forget_cached_acl -EXPORT_SYMBOL vmlinux 0x0a441e42 __genl_register_family -EXPORT_SYMBOL vmlinux 0x0a53cbdf clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x0a5f80f3 ip_defrag -EXPORT_SYMBOL vmlinux 0x0a6609e2 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x0a683443 of_find_property -EXPORT_SYMBOL vmlinux 0x0a7b2df9 ns_capable -EXPORT_SYMBOL vmlinux 0x0a7c91f1 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x0a836865 module_layout -EXPORT_SYMBOL vmlinux 0x0a839e6d pci_release_region -EXPORT_SYMBOL vmlinux 0x0a839fd5 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x0a8ce790 dentry_open -EXPORT_SYMBOL vmlinux 0x0a925e4e pci_iounmap -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad98595 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x0ae539b6 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x0ae66dc3 udp_ioctl -EXPORT_SYMBOL vmlinux 0x0af52a5e max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x0b084145 mmc_put_card -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b23d752 agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0x0b32ebd0 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x0b38f000 serio_rescan -EXPORT_SYMBOL vmlinux 0x0b38f522 passthru_features_check -EXPORT_SYMBOL vmlinux 0x0b43ea7f irq_to_desc -EXPORT_SYMBOL vmlinux 0x0b44c13f textsearch_destroy -EXPORT_SYMBOL vmlinux 0x0b462749 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x0b5477dd xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b78cac9 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x0b9a8e53 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x0bb91d4e cfb_fillrect -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc5235c security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x0bd8a346 vga_con -EXPORT_SYMBOL vmlinux 0x0be6fb55 give_up_console -EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work -EXPORT_SYMBOL vmlinux 0x0c35b9fa xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x0c42d7cf find_get_pages_tag -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c5cce97 nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c6f5858 __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0x0c9aec6a phy_drivers_register -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0caef359 mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0x0cb12ff0 iunique -EXPORT_SYMBOL vmlinux 0x0cbaa94c get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x0ccc38e7 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x0d0e3679 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x0d10ea14 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x0d1876c9 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x0d303571 serio_reconnect -EXPORT_SYMBOL vmlinux 0x0d46480c mac_find_mode -EXPORT_SYMBOL vmlinux 0x0d4f30bd pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0x0d50df1b iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d5f3bdc fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d6b7c35 mmc_remove_host -EXPORT_SYMBOL vmlinux 0x0d6c963c copy_from_user -EXPORT_SYMBOL vmlinux 0x0d7b8aaf pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x0d85b7ca seq_vprintf -EXPORT_SYMBOL vmlinux 0x0d9d46e6 of_get_next_child -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0da4787b d_make_root -EXPORT_SYMBOL vmlinux 0x0dac644e vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x0dd582bc pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x0e068279 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x0e498ab3 input_set_keycode -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e6dec39 inode_set_flags -EXPORT_SYMBOL vmlinux 0x0e713738 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x0ea1873a mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x0ea3cad9 vfs_unlink -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f017b48 path_noexec -EXPORT_SYMBOL vmlinux 0x0f134899 skb_make_writable -EXPORT_SYMBOL vmlinux 0x0f170437 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x0f23fe2e fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0x0f2647a3 fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x0f308595 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f54b0c5 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x0f59c0d3 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x0f69176b sock_no_poll -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f75e0f5 __kfree_skb -EXPORT_SYMBOL vmlinux 0x0f766e32 set_blocksize -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f81278c zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x0f921759 rwsem_wake -EXPORT_SYMBOL vmlinux 0x0fa85cbb skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fc215a4 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x0fd7ec15 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0x0fe2ef22 poll_freewait -EXPORT_SYMBOL vmlinux 0x0fea413c kobject_del -EXPORT_SYMBOL vmlinux 0x0fedd8c2 of_gpio_simple_xlate -EXPORT_SYMBOL vmlinux 0x101618f5 read_cache_pages -EXPORT_SYMBOL vmlinux 0x102922c0 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x103871ee compat_ip_getsockopt -EXPORT_SYMBOL vmlinux 0x103d8dc5 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x106541e7 agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x10b24c94 mmc_can_erase -EXPORT_SYMBOL vmlinux 0x10bbce67 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x10c7f436 clk_add_alias -EXPORT_SYMBOL vmlinux 0x10ccfdd7 vm_insert_page -EXPORT_SYMBOL vmlinux 0x10d0d6c4 security_path_truncate -EXPORT_SYMBOL vmlinux 0x10e686b9 sget_userns -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x11087bd9 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110c4e59 udp_add_offload -EXPORT_SYMBOL vmlinux 0x110e30d4 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x113ddb02 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0x11465676 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x11603ad7 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0x11623a60 agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1170bd8c nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x117c5a09 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable -EXPORT_SYMBOL vmlinux 0x11939301 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11b43641 seq_putc -EXPORT_SYMBOL vmlinux 0x11d4b492 make_kgid -EXPORT_SYMBOL vmlinux 0x11d94ede ppp_dev_name -EXPORT_SYMBOL vmlinux 0x11e655d8 simple_empty -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x1239ed8a __put_cred -EXPORT_SYMBOL vmlinux 0x123d75a6 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x1245f5df mmc_register_driver -EXPORT_SYMBOL vmlinux 0x125b26aa dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x12815847 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x1286dae6 inet6_offloads -EXPORT_SYMBOL vmlinux 0x128e32c2 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x1293e88c bdi_register_owner -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12aa54cb loop_register_transfer -EXPORT_SYMBOL vmlinux 0x12cba7db devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x12cdb65b seq_dentry -EXPORT_SYMBOL vmlinux 0x12cfe45b ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit -EXPORT_SYMBOL vmlinux 0x12e8d120 xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0x13053759 sys_imageblit -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13215eac mem_section -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x1345f9d5 blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x13547ab8 finish_open -EXPORT_SYMBOL vmlinux 0x13613d59 __pagevec_release -EXPORT_SYMBOL vmlinux 0x136ddf00 do_SAK -EXPORT_SYMBOL vmlinux 0x137fdc0f ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x13a49be3 paca -EXPORT_SYMBOL vmlinux 0x13bc5fbe inet_stream_connect -EXPORT_SYMBOL vmlinux 0x13c1c694 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x13c93494 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13ecbf3c input_release_device -EXPORT_SYMBOL vmlinux 0x13f70ea0 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x13ff80b6 dev_uc_init -EXPORT_SYMBOL vmlinux 0x1413e317 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x1419c065 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x14241049 bdi_init -EXPORT_SYMBOL vmlinux 0x1467f919 set_binfmt -EXPORT_SYMBOL vmlinux 0x146aaac1 dev_mc_add -EXPORT_SYMBOL vmlinux 0x14bc3be3 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x14bf261d swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0x14c640a3 fb_get_mode -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14e97244 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0x150a7a95 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x1515bb92 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x15209a52 phy_driver_register -EXPORT_SYMBOL vmlinux 0x152c6cb9 free_buffer_head -EXPORT_SYMBOL vmlinux 0x1533137e inet_getname -EXPORT_SYMBOL vmlinux 0x15360c99 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x15450fef sock_i_ino -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x15598d96 posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0x155d35b2 i2c_del_driver -EXPORT_SYMBOL vmlinux 0x156515c5 fb_class -EXPORT_SYMBOL vmlinux 0x15662358 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x156f0e1d sk_dst_check -EXPORT_SYMBOL vmlinux 0x159bd01c skb_free_datagram -EXPORT_SYMBOL vmlinux 0x15a4e826 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x15a90b1b phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x15cdc4bd __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x15dac9f2 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0x15db0c05 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x15dd0dc4 agp_enable -EXPORT_SYMBOL vmlinux 0x15f81e1b __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x15fdf15e netlink_ack -EXPORT_SYMBOL vmlinux 0x1614cd9b jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x161b7b1d dqput -EXPORT_SYMBOL vmlinux 0x163a2897 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x16459801 bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x1653b5d1 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x166b1048 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x1670c011 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x16a85f4b __frontswap_store -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e7e70c inet_frags_fini -EXPORT_SYMBOL vmlinux 0x17113515 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x1743414f __debugger_fault_handler -EXPORT_SYMBOL vmlinux 0x175f980b of_get_ibm_chip_id -EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock -EXPORT_SYMBOL vmlinux 0x177613d5 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x17a0079c agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17be29b2 qdisc_list_add -EXPORT_SYMBOL vmlinux 0x17c33ab2 tcp_ioctl -EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17fc8739 eth_header_cache -EXPORT_SYMBOL vmlinux 0x180520fa clear_user_page -EXPORT_SYMBOL vmlinux 0x18159d83 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x1816f363 of_get_min_tck -EXPORT_SYMBOL vmlinux 0x181fc037 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183e1cee inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x1857aa39 proc_dointvec -EXPORT_SYMBOL vmlinux 0x1861b8e7 tcf_hash_insert -EXPORT_SYMBOL vmlinux 0x18662e24 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x1870a079 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x188a0c72 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x188faa27 dentry_update_name_case -EXPORT_SYMBOL vmlinux 0x18959eeb pci_dev_driver -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x189e2ba4 security_file_permission -EXPORT_SYMBOL vmlinux 0x18a0da55 swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x18b33c6c thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x18b842c8 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x18bccfef ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x18d14521 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18ea3cfb iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x18f828a0 dm_put_table_device -EXPORT_SYMBOL vmlinux 0x18fb8681 default_file_splice_read -EXPORT_SYMBOL vmlinux 0x19072f58 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x19171e6f ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x197ff0a5 unlock_page -EXPORT_SYMBOL vmlinux 0x199ec4fb arch_spin_unlock_wait -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a31860 __alloc_skb -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19ba1dc7 fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x19bba666 audit_log -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19be354d km_report -EXPORT_SYMBOL vmlinux 0x19ccdee7 tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0x19d8b41a inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x19ef47c0 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x1a024c58 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x1a148d9f neigh_event_ns -EXPORT_SYMBOL vmlinux 0x1a1eb5b7 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x1a22e069 napi_disable -EXPORT_SYMBOL vmlinux 0x1a246066 sys_copyarea -EXPORT_SYMBOL vmlinux 0x1a3b84a5 unregister_nls -EXPORT_SYMBOL vmlinux 0x1a4b9c61 bio_add_page -EXPORT_SYMBOL vmlinux 0x1a7f3f23 inet_stream_ops -EXPORT_SYMBOL vmlinux 0x1aa1f57b nf_log_unset -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ac98309 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x1aece2b5 inet6_release -EXPORT_SYMBOL vmlinux 0x1af077d3 devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b03af12 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock -EXPORT_SYMBOL vmlinux 0x1b1550c2 devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b245f29 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x1b4c1b79 dev_alert -EXPORT_SYMBOL vmlinux 0x1b51af23 param_set_bool -EXPORT_SYMBOL vmlinux 0x1b5c5bf0 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b81dadb cdrom_release -EXPORT_SYMBOL vmlinux 0x1b823f17 pci_choose_state -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b86a510 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1b9498d3 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x1b99228f input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x1bade72d pneigh_lookup -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bbb844d dquot_acquire -EXPORT_SYMBOL vmlinux 0x1bbc4625 scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x1bc5cd45 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x1bca2b59 load_fp_state -EXPORT_SYMBOL vmlinux 0x1bd26de0 mmc_add_host -EXPORT_SYMBOL vmlinux 0x1bf17137 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x1bfec830 __iounmap_at -EXPORT_SYMBOL vmlinux 0x1c20a76f scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x1c2b1c28 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x1c2b49f2 free_page_put_link -EXPORT_SYMBOL vmlinux 0x1c2cccee d_genocide -EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp -EXPORT_SYMBOL vmlinux 0x1c47f965 sync_inode -EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check -EXPORT_SYMBOL vmlinux 0x1ca1136f pci_get_class -EXPORT_SYMBOL vmlinux 0x1ca816e4 skb_queue_head -EXPORT_SYMBOL vmlinux 0x1cb2f450 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x1cb8b776 skb_pad -EXPORT_SYMBOL vmlinux 0x1cbbc9a1 simple_fill_super -EXPORT_SYMBOL vmlinux 0x1ccf4d92 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x1cdce70a blk_rq_init -EXPORT_SYMBOL vmlinux 0x1ce1b0d6 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x1cf2e0d5 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be -EXPORT_SYMBOL vmlinux 0x1d1cf275 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x1d24c8cc of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0x1d8cde13 ip_ct_attach -EXPORT_SYMBOL vmlinux 0x1dbc4d0c proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dcc262d dev_addr_del -EXPORT_SYMBOL vmlinux 0x1dcd92ce dev_get_by_name -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1ded4b6a flush_tlb_mm -EXPORT_SYMBOL vmlinux 0x1df45a91 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x1dfe74d1 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x1e06368c netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query -EXPORT_SYMBOL vmlinux 0x1e16da28 inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0x1e25cd84 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e2e51c4 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x1e37ac7e scsi_print_command -EXPORT_SYMBOL vmlinux 0x1e3d8812 kobject_get -EXPORT_SYMBOL vmlinux 0x1e44ec3a scsi_block_requests -EXPORT_SYMBOL vmlinux 0x1e6a18bb sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e771b96 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x1e85f2eb nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ed88907 release_pages -EXPORT_SYMBOL vmlinux 0x1f00259f padata_add_cpu -EXPORT_SYMBOL vmlinux 0x1f0305db bioset_create -EXPORT_SYMBOL vmlinux 0x1f1ded9d phy_start -EXPORT_SYMBOL vmlinux 0x1f29174c input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x1f306e0b __inet_hash -EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x1f7075fb unload_nls -EXPORT_SYMBOL vmlinux 0x1f75c92b current_fs_time -EXPORT_SYMBOL vmlinux 0x1f9cfdee dev_mc_init -EXPORT_SYMBOL vmlinux 0x1fa84c54 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x1fa99810 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x1fae31e8 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fca32ac tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd7ce01 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x1ff923b0 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x202528dd generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x20307bf0 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x20369ee3 inode_permission -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x205410fa __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x209cde01 phy_find_first -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20b18288 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0x20b2eb4b posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x20b83e67 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20c77a67 netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x20f6b756 simple_release_fs -EXPORT_SYMBOL vmlinux 0x21197d6c pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x2124f162 mpage_writepage -EXPORT_SYMBOL vmlinux 0x213dde91 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x21766334 param_array_ops -EXPORT_SYMBOL vmlinux 0x2178acf5 ps2_command -EXPORT_SYMBOL vmlinux 0x219531d0 pci_platform_rom -EXPORT_SYMBOL vmlinux 0x219b4eed ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x21dc9ab0 netpoll_setup -EXPORT_SYMBOL vmlinux 0x21df2cdc blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21eec49f submit_bh -EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x22365194 elv_rb_find -EXPORT_SYMBOL vmlinux 0x223a2626 dev_driver_string -EXPORT_SYMBOL vmlinux 0x223ad772 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x223ade9b netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x2242ec65 kernel_write -EXPORT_SYMBOL vmlinux 0x2259548b devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b8d6cb fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x22d99e43 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x22db5f77 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x22e18d78 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x230c433a tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x230e5675 genlmsg_put -EXPORT_SYMBOL vmlinux 0x2312a6c3 console_start -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit -EXPORT_SYMBOL vmlinux 0x236f9269 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x237cf3d9 request_firmware -EXPORT_SYMBOL vmlinux 0x23863795 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x23993f41 flow_cache_fini -EXPORT_SYMBOL vmlinux 0x239b4a45 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23a9bcef blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x23b2a6f7 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x23ce387c parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x2414cf4b jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x241b3322 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x241dd78d ps2_begin_command -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x2437f0ad rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2457e066 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245b2124 d_path -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x2496433e ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x24b5e198 vme_register_driver -EXPORT_SYMBOL vmlinux 0x24c13969 nd_device_register -EXPORT_SYMBOL vmlinux 0x24d6b4a6 cur_cpu_spec -EXPORT_SYMBOL vmlinux 0x24eaf0c4 fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x24f00380 ida_init -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x24fe96c9 vfs_link -EXPORT_SYMBOL vmlinux 0x25238fb8 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x254b6de3 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x2556c394 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x257e08fa i2c_verify_client -EXPORT_SYMBOL vmlinux 0x257e0d29 single_open -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2586eac5 skb_copy -EXPORT_SYMBOL vmlinux 0x2589ddbe register_qdisc -EXPORT_SYMBOL vmlinux 0x25c34b4f dmam_pool_create -EXPORT_SYMBOL vmlinux 0x25c66741 mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0x25d73467 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x25e7e13a giveup_fpu -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25fc3a6d nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc -EXPORT_SYMBOL vmlinux 0x264a5a0d account_page_redirty -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x26535935 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update -EXPORT_SYMBOL vmlinux 0x266b916a dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x2688fcf9 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x26950f03 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0x26a8f638 local_flush_tlb_page -EXPORT_SYMBOL vmlinux 0x26b340bf nf_log_unregister -EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init -EXPORT_SYMBOL vmlinux 0x26bedaf3 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x26c24a46 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26ea60e0 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x26f2819a nf_log_set -EXPORT_SYMBOL vmlinux 0x27288456 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x2763389b pci_scan_bus -EXPORT_SYMBOL vmlinux 0x27646df3 start_thread -EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above -EXPORT_SYMBOL vmlinux 0x277a5a94 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x27a107ff tcp_release_cb -EXPORT_SYMBOL vmlinux 0x27b4d0be pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27df9af6 free_netdev -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x27e7495d blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x280c3430 blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x2812aa9f pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x2822dbfc sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x282ad971 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x28318305 snprintf -EXPORT_SYMBOL vmlinux 0x286ac627 security_path_symlink -EXPORT_SYMBOL vmlinux 0x28775080 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x287975ce nvm_register_mgr -EXPORT_SYMBOL vmlinux 0x287ec207 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x2889c23a __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x2894131a setup_arg_pages -EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove -EXPORT_SYMBOL vmlinux 0x289eaea3 blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x28f4d8ac ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x28f73f95 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x2934869d get_super_thawed -EXPORT_SYMBOL vmlinux 0x29359d85 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x2942e452 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x2949735e pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x294e1184 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x2955eaf5 of_device_register -EXPORT_SYMBOL vmlinux 0x29685cd3 led_set_brightness -EXPORT_SYMBOL vmlinux 0x296f6b27 __getblk_slow -EXPORT_SYMBOL vmlinux 0x29bae1e6 xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0x29e294d4 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x2a0eacbd __skb_get_hash -EXPORT_SYMBOL vmlinux 0x2a109a16 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x2a1fccc9 kernel_read -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2a467e54 vga_get -EXPORT_SYMBOL vmlinux 0x2a48da53 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x2a48e939 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x2a6dd124 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x2a968ce4 scsi_add_device -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2ab3ae40 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2afbd9f9 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b2108f7 pci_find_capability -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b303a92 make_kprojid -EXPORT_SYMBOL vmlinux 0x2b3f8ed6 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x2b4991ec xmon -EXPORT_SYMBOL vmlinux 0x2b5e4c5d md_reload_sb -EXPORT_SYMBOL vmlinux 0x2b5ee6ef filemap_flush -EXPORT_SYMBOL vmlinux 0x2b6b24eb pagecache_write_end -EXPORT_SYMBOL vmlinux 0x2b743643 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x2b86dcb0 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x2b995e69 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2bb8e668 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x2bdd6e28 node_states -EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed -EXPORT_SYMBOL vmlinux 0x2c134395 param_ops_bool -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c4f3e4e __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x2c5712f0 vfs_writef -EXPORT_SYMBOL vmlinux 0x2c69f5f7 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout -EXPORT_SYMBOL vmlinux 0x2c7def22 sock_rfree -EXPORT_SYMBOL vmlinux 0x2c855090 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x2c8a1a79 kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x2c8e45dc d_obtain_alias -EXPORT_SYMBOL vmlinux 0x2c8fd026 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x2c900036 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x2cc0db88 tty_free_termios -EXPORT_SYMBOL vmlinux 0x2cd08f26 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x2cf651eb notify_change -EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x2d0549d2 netlink_unicast -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d37342e cpu_online_mask -EXPORT_SYMBOL vmlinux 0x2d5f71ce param_get_ulong -EXPORT_SYMBOL vmlinux 0x2d951d21 devm_gpio_request -EXPORT_SYMBOL vmlinux 0x2daee7ff msi_bitmap_free_hwirqs -EXPORT_SYMBOL vmlinux 0x2db475ab skb_store_bits -EXPORT_SYMBOL vmlinux 0x2dcb4e02 fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0x2dd8dd9a blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0x2ddc660f i2c_release_client -EXPORT_SYMBOL vmlinux 0x2deb4c23 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on -EXPORT_SYMBOL vmlinux 0x2e1776fc devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e321279 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x2e4ac1fb may_umount -EXPORT_SYMBOL vmlinux 0x2e5327b6 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x2e57164a get_pci_dma_ops -EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0x2e690665 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x2e8d5d0a inet_frag_kill -EXPORT_SYMBOL vmlinux 0x2ec6d428 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x2ecdc955 user_revoke -EXPORT_SYMBOL vmlinux 0x2eee438a blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x2ef629b4 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f12c154 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x2f169124 vga_put -EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user -EXPORT_SYMBOL vmlinux 0x2f350be5 proc_mkdir -EXPORT_SYMBOL vmlinux 0x2f3ac027 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x2f688752 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x2f7ab1c6 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x2fac3e40 fb_set_cmap -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2ff18e70 mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x300a99ef agp_unbind_memory -EXPORT_SYMBOL vmlinux 0x3015d619 dquot_file_open -EXPORT_SYMBOL vmlinux 0x301e90e1 machine_id -EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x304beb0a generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x304e72d6 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x3052ada0 agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x305b8211 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x306f78c6 vfs_readv -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x309c9e1f simple_readpage -EXPORT_SYMBOL vmlinux 0x309df6da kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30a8160a inetdev_by_index -EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id -EXPORT_SYMBOL vmlinux 0x30ce9393 mmc_free_host -EXPORT_SYMBOL vmlinux 0x30d905ee scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x30e2a732 swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0x30e92a18 devm_gpiod_get -EXPORT_SYMBOL vmlinux 0x3100bed3 find_get_entry -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310588c1 agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0x310b9e9f netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x310f02ec memremap -EXPORT_SYMBOL vmlinux 0x3121ec34 set_disk_ro -EXPORT_SYMBOL vmlinux 0x3137c1aa import_iovec -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x317204ed uart_resume_port -EXPORT_SYMBOL vmlinux 0x3173ab7e phy_stop -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x317ac1f4 no_llseek -EXPORT_SYMBOL vmlinux 0x3185f0c2 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x31896048 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x3196d00e buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x31972adc dcb_getapp -EXPORT_SYMBOL vmlinux 0x31ccfb77 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x31e1191f pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x323b6ce4 dquot_drop -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x32559772 write_inode_now -EXPORT_SYMBOL vmlinux 0x326101d7 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x3277304e dquot_operations -EXPORT_SYMBOL vmlinux 0x3288520d nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x328b205c xfrm_lookup -EXPORT_SYMBOL vmlinux 0x328d32da unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x32a9d942 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x32c7728e kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x32ee73db serio_bus -EXPORT_SYMBOL vmlinux 0x32f2aa67 of_get_property -EXPORT_SYMBOL vmlinux 0x33005cec devm_request_resource -EXPORT_SYMBOL vmlinux 0x330574ff dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x3314b80f sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x3330a51f remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x33542602 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x3395fc27 input_unregister_handler -EXPORT_SYMBOL vmlinux 0x33a6659a pci_find_bus -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33bd0514 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33d09cf9 phy_device_create -EXPORT_SYMBOL vmlinux 0x33d65d8d key_invalidate -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x34143a1c netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x3419c739 dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x3424256f pci_enable_msix -EXPORT_SYMBOL vmlinux 0x34252313 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x343bccf2 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x344c5834 submit_bio -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x34680f23 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x34880937 blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0x349a7466 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34ae39de bio_alloc_pages -EXPORT_SYMBOL vmlinux 0x34b59562 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x34d21085 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34fecb3a send_sig_info -EXPORT_SYMBOL vmlinux 0x3502162a request_key_async -EXPORT_SYMBOL vmlinux 0x3506c3ee devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0x350768c0 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x352797a9 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x352b2da8 udp_proc_register -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x35404842 set_posix_acl -EXPORT_SYMBOL vmlinux 0x35445b29 ping_prot -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x356924cb udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x3572062d xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x3573386a mark_info_dirty -EXPORT_SYMBOL vmlinux 0x358f1c29 nd_btt_probe -EXPORT_SYMBOL vmlinux 0x359268b8 scsi_host_set_state -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 -EXPORT_SYMBOL vmlinux 0x35dff67f __frontswap_load -EXPORT_SYMBOL vmlinux 0x36069202 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy -EXPORT_SYMBOL vmlinux 0x362f9df8 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x3632be8e jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x366e7415 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy -EXPORT_SYMBOL vmlinux 0x3670642a path_get -EXPORT_SYMBOL vmlinux 0x3683222b input_reset_device -EXPORT_SYMBOL vmlinux 0x36846332 cdrom_open -EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x36a29216 netdev_notice -EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x36b99a09 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x36bb9e85 read_dev_sector -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36dec98c find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x36e35f57 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x36f173c6 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport -EXPORT_SYMBOL vmlinux 0x37299c8e jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x37344510 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x3763cf8c pci_map_rom -EXPORT_SYMBOL vmlinux 0x376abdad elv_rb_add -EXPORT_SYMBOL vmlinux 0x378b61a0 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x3793eddf inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x37a1fcaa __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x37a8a86f input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37da352b sock_wake_async -EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x37e65af8 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x382dfd47 file_update_time -EXPORT_SYMBOL vmlinux 0x3831561e scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x385e6008 nvm_register_target -EXPORT_SYMBOL vmlinux 0x3869cc10 agp_bind_memory -EXPORT_SYMBOL vmlinux 0x386c876e sockfd_lookup -EXPORT_SYMBOL vmlinux 0x38717c0e rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38ad3270 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x38b0a894 tty_port_hangup -EXPORT_SYMBOL vmlinux 0x38b4581a get_unmapped_area -EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace -EXPORT_SYMBOL vmlinux 0x38bebcef pci_set_power_state -EXPORT_SYMBOL vmlinux 0x38bfee64 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x38c9fc23 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x38d04fbc tcp_read_sock -EXPORT_SYMBOL vmlinux 0x38d11730 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x38d82697 inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0x38dcd558 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x38e17af9 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0x38ee9be5 generic_file_llseek -EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios -EXPORT_SYMBOL vmlinux 0x3929cd01 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le -EXPORT_SYMBOL vmlinux 0x39429111 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x3972fbb4 make_bad_inode -EXPORT_SYMBOL vmlinux 0x39732482 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0x39982158 mpage_readpages -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39b63572 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x39b7b653 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0x39ccd346 dst_release -EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x39cf2e2b __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x39d1673d iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x3a2ad543 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x3a2c9572 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x3a958994 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3ab81530 input_inject_event -EXPORT_SYMBOL vmlinux 0x3ac69a16 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x3ad7c941 blk_queue_split -EXPORT_SYMBOL vmlinux 0x3b25f7ac blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x3b28d3e9 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x3b597b96 sock_create_lite -EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6612b2 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x3b6a8c72 genphy_update_link -EXPORT_SYMBOL vmlinux 0x3b769c52 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x3ba999fd generic_write_checks -EXPORT_SYMBOL vmlinux 0x3bd9a5d3 nvm_dev_factory -EXPORT_SYMBOL vmlinux 0x3be00d62 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x3c3fcc7b sock_get_timestampns -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x3c617c8f __register_chrdev -EXPORT_SYMBOL vmlinux 0x3c6e532d __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c866f80 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x3ca6d73f skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x3ca7693d i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x3ca7ad34 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3d1d84c5 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x3d414a43 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x3d77731b blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x3d7ab1bb compat_ip_setsockopt -EXPORT_SYMBOL vmlinux 0x3d8ef2c4 dev_uc_del -EXPORT_SYMBOL vmlinux 0x3da2c86f inode_init_always -EXPORT_SYMBOL vmlinux 0x3da827ab dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x3daece8a arp_tbl -EXPORT_SYMBOL vmlinux 0x3db96580 mem_map -EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts -EXPORT_SYMBOL vmlinux 0x3dc1eeac agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dddf1d1 put_filp -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e163761 unregister_filesystem -EXPORT_SYMBOL vmlinux 0x3e434811 vm_insert_mixed -EXPORT_SYMBOL vmlinux 0x3e868d1b kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get -EXPORT_SYMBOL vmlinux 0x3ea90a05 load_nls_default -EXPORT_SYMBOL vmlinux 0x3eb1c400 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x3eb534e1 compat_tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x3ec8b976 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x3ecdb1f4 keyring_search -EXPORT_SYMBOL vmlinux 0x3efff087 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f3bf8a5 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f45f839 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x3f6b1ce8 dev_deactivate -EXPORT_SYMBOL vmlinux 0x3f8da983 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x3fc0facd netlink_set_err -EXPORT_SYMBOL vmlinux 0x3fc32da5 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0x40143375 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x40207014 ilookup -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x403423e5 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev -EXPORT_SYMBOL vmlinux 0x4042b000 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x408121e0 alloc_disk -EXPORT_SYMBOL vmlinux 0x40896ac8 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40f4c676 nf_log_trace -EXPORT_SYMBOL vmlinux 0x40f922a9 generic_writepages -EXPORT_SYMBOL vmlinux 0x41006c16 con_copy_unimap -EXPORT_SYMBOL vmlinux 0x4105930c abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0x411c142a inet_ioctl -EXPORT_SYMBOL vmlinux 0x413437bd uart_get_divisor -EXPORT_SYMBOL vmlinux 0x413da4e6 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x41444584 copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x41574411 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc -EXPORT_SYMBOL vmlinux 0x415bf5e2 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x41604b90 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x417d219d sg_miter_next -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x41ca1118 icmp_send -EXPORT_SYMBOL vmlinux 0x41cf400d posix_acl_valid -EXPORT_SYMBOL vmlinux 0x41d641dc flush_tlb_range -EXPORT_SYMBOL vmlinux 0x420eb193 force_sig -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x42246bca tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x4231616c pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x425b3568 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x4263534d d_rehash -EXPORT_SYMBOL vmlinux 0x427b0784 blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x42897d3b pci_find_hose_for_OF_device -EXPORT_SYMBOL vmlinux 0x429bc4fa blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0x429dc7bf netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x42a1442b clocksource_unregister -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42dfd2e5 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x42e8d512 nf_register_hooks -EXPORT_SYMBOL vmlinux 0x42e90abb dev_remove_offload -EXPORT_SYMBOL vmlinux 0x42ed22c9 netdev_update_features -EXPORT_SYMBOL vmlinux 0x42f417ea call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x42f6e383 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x43110852 xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0x4333d258 alloc_file -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 -EXPORT_SYMBOL vmlinux 0x43787b1a blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all -EXPORT_SYMBOL vmlinux 0x43a78649 gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0x43b5837b open_check_o_direct -EXPORT_SYMBOL vmlinux 0x43d2e552 dcache_readdir -EXPORT_SYMBOL vmlinux 0x43dc9a3f of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0x43e140e9 blk_free_tags -EXPORT_SYMBOL vmlinux 0x43eb3945 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x43fa6ed9 phy_suspend -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x44129e2d tcp_prot -EXPORT_SYMBOL vmlinux 0x444d797a cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x445c9835 ip6_frag_match -EXPORT_SYMBOL vmlinux 0x446587e1 read_code -EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup -EXPORT_SYMBOL vmlinux 0x44a6d352 kobject_put -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44bc8f07 devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0x44cccd4b skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion -EXPORT_SYMBOL vmlinux 0x44fdef63 __neigh_create -EXPORT_SYMBOL vmlinux 0x450a02bd __quota_error -EXPORT_SYMBOL vmlinux 0x4530aec5 compat_sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x453b75b3 __dst_free -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x45447122 of_dev_put -EXPORT_SYMBOL vmlinux 0x454b7eb2 of_clk_get -EXPORT_SYMBOL vmlinux 0x45687c14 of_mm_gpiochip_add -EXPORT_SYMBOL vmlinux 0x45712743 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x45756671 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45902480 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x459f374a freeze_super -EXPORT_SYMBOL vmlinux 0x45a1ff54 pci_request_regions -EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45ab6c44 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x45b43bc1 nf_log_packet -EXPORT_SYMBOL vmlinux 0x45c709a7 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x45d4c90c __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x45f130f0 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x46077485 write_cache_pages -EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock -EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user -EXPORT_SYMBOL vmlinux 0x46231ebb try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x464c50a0 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x466598a7 phy_resume -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x46877f43 udp_poll -EXPORT_SYMBOL vmlinux 0x46a0782c page_symlink -EXPORT_SYMBOL vmlinux 0x46c2ad37 unlock_rename -EXPORT_SYMBOL vmlinux 0x46c3d491 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x46dc1caf mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x46dc7a46 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x472b3c9b fsl_lbc_ctrl_dev -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x47608718 fence_init -EXPORT_SYMBOL vmlinux 0x47682078 put_io_context -EXPORT_SYMBOL vmlinux 0x47923504 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x479a8c5b dput -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x479f74bc blk_put_request -EXPORT_SYMBOL vmlinux 0x47a1d582 uart_register_driver -EXPORT_SYMBOL vmlinux 0x47c236ad simple_statfs -EXPORT_SYMBOL vmlinux 0x47c41ad6 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x47e1c5bb dev_emerg -EXPORT_SYMBOL vmlinux 0x48069654 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0x48272dcd pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x4829a47e memcpy -EXPORT_SYMBOL vmlinux 0x48352198 from_kuid -EXPORT_SYMBOL vmlinux 0x4835ac25 md_finish_reshape -EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x48525e5c sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x485671a0 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x48598636 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x486c4aad dcache_dir_close -EXPORT_SYMBOL vmlinux 0x487e7473 max8998_read_reg -EXPORT_SYMBOL vmlinux 0x488966ce pagecache_get_page -EXPORT_SYMBOL vmlinux 0x489133bf generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x48a771c5 cpu_core_map -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48cdd879 d_invalidate -EXPORT_SYMBOL vmlinux 0x48cef0de scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x48e72d35 of_get_pci_address -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x491a8230 blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x492c9932 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x492f50d9 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x494e2b77 new_inode -EXPORT_SYMBOL vmlinux 0x49532991 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x4954a691 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x495dc4f8 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x496c6a04 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b5e27e shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x49b77676 __d_drop -EXPORT_SYMBOL vmlinux 0x49e73267 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a03e117 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x4a12700c i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x4a22317f i2c_register_driver -EXPORT_SYMBOL vmlinux 0x4a398d45 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x4a641172 pci_get_slot -EXPORT_SYMBOL vmlinux 0x4a641409 bdget -EXPORT_SYMBOL vmlinux 0x4a73f1f7 dev_notice -EXPORT_SYMBOL vmlinux 0x4a7d44c2 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x4a846c51 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x4a8644a4 set_device_ro -EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x4a985db9 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x4a9afd05 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4ad2931e pci_domain_nr -EXPORT_SYMBOL vmlinux 0x4ad6d189 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x4ae5be63 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x4af0aa8f devm_memremap -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b03c6a2 devm_memunmap -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b201f96 tty_unlock -EXPORT_SYMBOL vmlinux 0x4b21847f mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0x4b2c9218 complete_request_key -EXPORT_SYMBOL vmlinux 0x4b306b8f __blk_end_request_all -EXPORT_SYMBOL vmlinux 0x4b4d8e79 pci_dev_put -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove -EXPORT_SYMBOL vmlinux 0x4b8b7113 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x4b934c4b neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x4b97c0cd napi_consume_skb -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bd7788d pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x4be8ab25 page_follow_link_light -EXPORT_SYMBOL vmlinux 0x4beae18d mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x4beb53de mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0x4bec4680 sync_filesystem -EXPORT_SYMBOL vmlinux 0x4c081a7d nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x4c19d75a serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x4c24b05f mount_nodev -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c3f1f69 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x4c752e04 skb_find_text -EXPORT_SYMBOL vmlinux 0x4ca37e3b devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf -EXPORT_SYMBOL vmlinux 0x4cc27185 devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x4cca260e vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x4ccccbf6 of_n_size_cells -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4cdecd32 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x4cfbf0ec __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x4d0f015b genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x4d3ab29f bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x4d50a6b8 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x4d522bbb put_cmsg -EXPORT_SYMBOL vmlinux 0x4d578db2 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x4d5d8b31 __vfs_read -EXPORT_SYMBOL vmlinux 0x4d671f71 sk_common_release -EXPORT_SYMBOL vmlinux 0x4d6fa638 param_get_ullong -EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize -EXPORT_SYMBOL vmlinux 0x4d932704 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4db07d64 fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x4dcd8255 redraw_screen -EXPORT_SYMBOL vmlinux 0x4dcdf225 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4de77062 sock_init_data -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4df945c9 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x4e0fd2bf xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x4e1e349e ppp_unit_number -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e6449c4 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x4e64c1b5 devm_ioport_map -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e6eedc3 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x4e83006e lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x4e9cd393 reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0x4e9d7004 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum -EXPORT_SYMBOL vmlinux 0x4ea3d018 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x4eee733a pci_pme_capable -EXPORT_SYMBOL vmlinux 0x4f0bd085 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x4f1cb2da filemap_fdatawait -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f1f504d inet_release -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f28ddc9 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x4f29f971 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x4f2f99fc mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x4f30d90d pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0x4f33294d tcp_seq_open -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f4e5a24 skb_seq_read -EXPORT_SYMBOL vmlinux 0x4f50df60 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x4f522959 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x4f664117 dma_iommu_ops -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f6ee9f0 __find_get_block -EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve -EXPORT_SYMBOL vmlinux 0x4fa2eaa7 default_llseek -EXPORT_SYMBOL vmlinux 0x4fac8f2e xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x4fc71fdd __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x500671c2 __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x502094dd sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x50215616 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x502286d7 nonseekable_open -EXPORT_SYMBOL vmlinux 0x50302eb7 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x505d8003 put_tty_driver -EXPORT_SYMBOL vmlinux 0x505db464 dma_pool_create -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x509abeb8 blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch -EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x50dce3f3 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x510fa26e fddi_type_trans -EXPORT_SYMBOL vmlinux 0x51129d78 xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x511d093f mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x51309ecf skb_append -EXPORT_SYMBOL vmlinux 0x513c8e0f kobject_set_name -EXPORT_SYMBOL vmlinux 0x516450a1 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x516875c9 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x5176d60e copy_to_iter -EXPORT_SYMBOL vmlinux 0x518e1f48 dev_activate -EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait -EXPORT_SYMBOL vmlinux 0x51a5a824 inet6_bind -EXPORT_SYMBOL vmlinux 0x51adb9b6 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x51c3dea4 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x51d310d9 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x520e3e3f mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0x5214a796 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x522a808c mmc_get_card -EXPORT_SYMBOL vmlinux 0x522f3df1 sk_wait_data -EXPORT_SYMBOL vmlinux 0x525026d0 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x52521355 generic_readlink -EXPORT_SYMBOL vmlinux 0x52686ed0 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x528801e9 dup_iter -EXPORT_SYMBOL vmlinux 0x5290cccf xfrm_init_state -EXPORT_SYMBOL vmlinux 0x5291b13d finish_no_open -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52aef990 would_dump -EXPORT_SYMBOL vmlinux 0x52c00050 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x52f8b053 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x531d9c28 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x534dec40 blk_get_request -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x536f6ef8 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin -EXPORT_SYMBOL vmlinux 0x5386edb1 path_put -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x539b99f8 netlink_capable -EXPORT_SYMBOL vmlinux 0x539cfda3 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x53af404f of_parse_phandle -EXPORT_SYMBOL vmlinux 0x53c9474a dquot_transfer -EXPORT_SYMBOL vmlinux 0x53dec40d param_get_short -EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x540c670d mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x5412c7c7 up -EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x5436e4f4 nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x5442733d bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x544801a5 __pci_enable_wake -EXPORT_SYMBOL vmlinux 0x5451eebb kmem_cache_size -EXPORT_SYMBOL vmlinux 0x545c6382 dquot_destroy -EXPORT_SYMBOL vmlinux 0x54873686 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x548f1d79 mdiobus_free -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54ba68bd dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54f6fb8a ip_do_fragment -EXPORT_SYMBOL vmlinux 0x550b3a77 led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0x55152ff0 skb_pull -EXPORT_SYMBOL vmlinux 0x55188385 do_splice_to -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551bf31b dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x551e7a9f dev_set_mtu -EXPORT_SYMBOL vmlinux 0x55228417 seq_open_private -EXPORT_SYMBOL vmlinux 0x55257776 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x55532174 deactivate_super -EXPORT_SYMBOL vmlinux 0x55585847 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x55615880 pci_save_state -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x5568c553 complete -EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table -EXPORT_SYMBOL vmlinux 0x558ca53a mntput -EXPORT_SYMBOL vmlinux 0x559d8da4 bio_advance -EXPORT_SYMBOL vmlinux 0x55a81a77 proc_symlink -EXPORT_SYMBOL vmlinux 0x55b07357 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x55b6528e nvm_get_blk -EXPORT_SYMBOL vmlinux 0x55c2adc3 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x55c56388 dump_truncate -EXPORT_SYMBOL vmlinux 0x55c5661e of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55e39e44 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x560a63e2 sk_net_capable -EXPORT_SYMBOL vmlinux 0x562062aa netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x562b1339 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x564a0b68 pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0x564e7863 set_nlink -EXPORT_SYMBOL vmlinux 0x5658c53a __mutex_init -EXPORT_SYMBOL vmlinux 0x565fdafb kernel_sendpage -EXPORT_SYMBOL vmlinux 0x56767382 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x567e810b netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x5687ed20 find_lock_entry -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56c8e724 of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x56ce9dfc blk_start_queue -EXPORT_SYMBOL vmlinux 0x56d44531 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x56dc60b2 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x5701087a __serio_register_driver -EXPORT_SYMBOL vmlinux 0x5705b418 skb_trim -EXPORT_SYMBOL vmlinux 0x5712cbe3 dm_io -EXPORT_SYMBOL vmlinux 0x571def0f mmc_can_trim -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x573934bf clear_wb_congested -EXPORT_SYMBOL vmlinux 0x573c5186 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x574078a2 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x57419025 kobject_init -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x574e5306 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x5766834a km_state_expired -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x57a18177 sk_stream_write_space -EXPORT_SYMBOL vmlinux 0x57ae095f decrementer_clockevent -EXPORT_SYMBOL vmlinux 0x57df18b0 generic_make_request -EXPORT_SYMBOL vmlinux 0x57e9d9b5 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58218714 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x584f9625 peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x58535e74 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x5858fec5 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x5861a5b5 param_ops_uint -EXPORT_SYMBOL vmlinux 0x58671cd7 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x58687e5a del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x587ddec7 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x5881f8ea inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x58a62f1d pci_clear_master -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58e83820 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x58ed466d cont_write_begin -EXPORT_SYMBOL vmlinux 0x591df26e in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x5932b12d clkdev_drop -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page -EXPORT_SYMBOL vmlinux 0x596c0d50 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x5972d7c3 to_ndd -EXPORT_SYMBOL vmlinux 0x5974f4b7 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59aaf222 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x59b3378a completion_done -EXPORT_SYMBOL vmlinux 0x59b3a5ac fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0x59b4094f param_get_byte -EXPORT_SYMBOL vmlinux 0x59c186d3 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x59c6f628 i2c_master_send -EXPORT_SYMBOL vmlinux 0x59d703f4 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x59d83d60 sync_blockdev -EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore -EXPORT_SYMBOL vmlinux 0x5a0aaa12 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a0be704 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x5a2cda3e trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x5a35343c skb_clone_sk -EXPORT_SYMBOL vmlinux 0x5a4b9cea start_tty -EXPORT_SYMBOL vmlinux 0x5a6c7b2b dm_get_device -EXPORT_SYMBOL vmlinux 0x5a7e1bbb vfs_iter_read -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a951a8d tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x5a996321 elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0x5a9a62b6 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x5a9d3346 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5a9fbbd9 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x5aaaadb3 register_gifconf -EXPORT_SYMBOL vmlinux 0x5ad6b40f scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x5ae7eca1 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x5aeb0a62 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b51071d vfs_llseek -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b6facd8 d_walk -EXPORT_SYMBOL vmlinux 0x5b7a0640 scsi_device_put -EXPORT_SYMBOL vmlinux 0x5b97f998 phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock -EXPORT_SYMBOL vmlinux 0x5ba015d7 fb_find_mode -EXPORT_SYMBOL vmlinux 0x5ba1d90e trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit -EXPORT_SYMBOL vmlinux 0x5bc58827 mdiobus_write -EXPORT_SYMBOL vmlinux 0x5bcd1af9 __napi_schedule -EXPORT_SYMBOL vmlinux 0x5bceebdc tty_register_device -EXPORT_SYMBOL vmlinux 0x5bd59e2f of_find_device_by_node -EXPORT_SYMBOL vmlinux 0x5c2efe2e padata_alloc -EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x5c42f41c scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0x5c47f449 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x5c4d648c tty_port_close_end -EXPORT_SYMBOL vmlinux 0x5c51be61 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x5c64c254 lease_modify -EXPORT_SYMBOL vmlinux 0x5c73919c dqget -EXPORT_SYMBOL vmlinux 0x5c851065 param_ops_charp -EXPORT_SYMBOL vmlinux 0x5c8e2531 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x5ca4a849 serio_close -EXPORT_SYMBOL vmlinux 0x5cb04afd fs_bio_set -EXPORT_SYMBOL vmlinux 0x5cb608e4 kmem_cache_free -EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le -EXPORT_SYMBOL vmlinux 0x5cee9d72 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x5cf30e10 __debugger_ipi -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d05f25d clear_nlink -EXPORT_SYMBOL vmlinux 0x5d0894f4 netdev_crit -EXPORT_SYMBOL vmlinux 0x5d0bab8c bio_integrity_free -EXPORT_SYMBOL vmlinux 0x5d0f3e60 agp_backend_release -EXPORT_SYMBOL vmlinux 0x5d28471c nf_afinfo -EXPORT_SYMBOL vmlinux 0x5d33b901 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x5d3bc494 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d575651 tcp_prequeue -EXPORT_SYMBOL vmlinux 0x5d58efa0 convert_ifc_address -EXPORT_SYMBOL vmlinux 0x5d69980c cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x5d69fe7c tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x5d83d3b2 fifo_set_limit -EXPORT_SYMBOL vmlinux 0x5d8d5063 swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x5d993dab __serio_register_port -EXPORT_SYMBOL vmlinux 0x5da0a902 of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x5da56749 param_get_string -EXPORT_SYMBOL vmlinux 0x5dbd4ca8 pci_pme_active -EXPORT_SYMBOL vmlinux 0x5dc8f88d input_unregister_handle -EXPORT_SYMBOL vmlinux 0x5dd226fc dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x5de22c1b sk_mc_loop -EXPORT_SYMBOL vmlinux 0x5df7264e __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x5e15425b tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x5e197d75 generic_write_end -EXPORT_SYMBOL vmlinux 0x5e235f2d eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x5e290a31 inode_init_once -EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up -EXPORT_SYMBOL vmlinux 0x5e5ec423 __bforget -EXPORT_SYMBOL vmlinux 0x5e6c948c prepare_creds -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5e9da4be handle_edge_irq -EXPORT_SYMBOL vmlinux 0x5eaa85d8 d_delete -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec34bfd truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return -EXPORT_SYMBOL vmlinux 0x5ee7f1c5 of_device_is_available -EXPORT_SYMBOL vmlinux 0x5eecdb90 mmc_request_done -EXPORT_SYMBOL vmlinux 0x5efef170 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f089416 dma_direct_ops -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f2c57b4 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x5f3354d0 blkdev_get -EXPORT_SYMBOL vmlinux 0x5f419e0b __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base -EXPORT_SYMBOL vmlinux 0x5f8c367e drop_super -EXPORT_SYMBOL vmlinux 0x5fcb6fc2 tty_throttle -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5fdd5a36 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x5ff78499 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x60001a7f rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x60084138 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x6051c442 tcp_proc_register -EXPORT_SYMBOL vmlinux 0x605da953 uart_add_one_port -EXPORT_SYMBOL vmlinux 0x60619db4 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x6087d579 stop_tty -EXPORT_SYMBOL vmlinux 0x608d2684 __elv_add_request -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x609166c3 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60b9b16b inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x60db6807 dev_crit -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x61157708 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x61398d81 prepare_binprm -EXPORT_SYMBOL vmlinux 0x614a9f2e neigh_lookup -EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x61545611 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x615c2f2d inet_csk_accept -EXPORT_SYMBOL vmlinux 0x6182c15b bdi_register_dev -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61a09f98 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61cc5e6d block_write_begin -EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x61d565d3 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x61d69152 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x61dcf24a trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb -EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x61fad66b ata_port_printk -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x623060d1 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x6231476c kernel_getsockname -EXPORT_SYMBOL vmlinux 0x623654a3 skb_tx_error -EXPORT_SYMBOL vmlinux 0x624ca287 kset_register -EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss -EXPORT_SYMBOL vmlinux 0x62669903 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x628913bd address_space_init_once -EXPORT_SYMBOL vmlinux 0x62ba0c16 check_disk_change -EXPORT_SYMBOL vmlinux 0x62d81dea devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x62f53293 of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0x62f8bf7e sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x62fc172b jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x630fc07e i2c_use_client -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x6329f5f4 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x6331fd0e rtnl_create_link -EXPORT_SYMBOL vmlinux 0x63396aec __debugger_break_match -EXPORT_SYMBOL vmlinux 0x63647214 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x63700c26 I_BDEV -EXPORT_SYMBOL vmlinux 0x6390f3f4 iget5_locked -EXPORT_SYMBOL vmlinux 0x63988df5 single_release -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63b3d7e2 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x63ba0bed from_kgid -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c71364 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x63cbf984 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x63d0008f abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x63d77cf5 netif_rx -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f4b1ec inet_listen -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x64207f43 kernel_connect -EXPORT_SYMBOL vmlinux 0x6424a1f8 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x6444c201 seq_file_path -EXPORT_SYMBOL vmlinux 0x6456adcc param_set_ullong -EXPORT_SYMBOL vmlinux 0x64829872 abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0x64856f34 kfree_skb -EXPORT_SYMBOL vmlinux 0x6486df1e clk_register_clkdevs -EXPORT_SYMBOL vmlinux 0x649627ab sg_miter_start -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x649d562d bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x649d5868 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64cff9be cdev_del -EXPORT_SYMBOL vmlinux 0x64d8b488 blk_register_region -EXPORT_SYMBOL vmlinux 0x64de109b scsi_target_resume -EXPORT_SYMBOL vmlinux 0x64e05d40 kthread_stop -EXPORT_SYMBOL vmlinux 0x64f0cb29 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x65183715 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x65301918 mmc_erase -EXPORT_SYMBOL vmlinux 0x6531e0bf blk_queue_bounce -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x656a7101 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x656dcf4e of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x657d4fb9 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x65830318 nf_log_register -EXPORT_SYMBOL vmlinux 0x6589d9e2 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x65b6a12d pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x65c792a5 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65e954e0 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x6637d3e3 add_disk -EXPORT_SYMBOL vmlinux 0x66382134 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0x66400411 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x66408f57 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x665063a3 inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0x6670fa29 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0x66754be3 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x6697ac0e remove_arg_zero -EXPORT_SYMBOL vmlinux 0x66a2afcf pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x66ca5a6c bdput -EXPORT_SYMBOL vmlinux 0x66d023a6 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x66ddf223 agp_bridge -EXPORT_SYMBOL vmlinux 0x66f2fba5 filp_open -EXPORT_SYMBOL vmlinux 0x66f8743c tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0x671750be udp_proc_unregister -EXPORT_SYMBOL vmlinux 0x672a847e f_setown -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x6756f596 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x675939a4 inet6_getname -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x67898c68 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x67a694d8 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x67a741b2 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67bfa6fe napi_gro_flush -EXPORT_SYMBOL vmlinux 0x67cb986f devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x67ce281b page_cache_next_hole -EXPORT_SYMBOL vmlinux 0x67e10ba7 flush_signals -EXPORT_SYMBOL vmlinux 0x67e74c32 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x67f8654d xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit -EXPORT_SYMBOL vmlinux 0x68775a85 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x687e60b9 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a2eba3 __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x68a7a80c scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0x68ac3b44 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68d7ac09 __sock_create -EXPORT_SYMBOL vmlinux 0x68ffacfe compat_nf_getsockopt -EXPORT_SYMBOL vmlinux 0x6916e619 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x696d3e18 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x697e3c51 neigh_parms_release -EXPORT_SYMBOL vmlinux 0x698d5756 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69cb8cfb __devm_release_region -EXPORT_SYMBOL vmlinux 0x69d204c2 genphy_resume -EXPORT_SYMBOL vmlinux 0x69f4d471 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x6a021efb mount_subtree -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a1a54a5 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x6a1b165d blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x6a233723 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x6a5c378b down_write_trylock -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a689c32 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x6a6f0106 get_user_pages -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a82227e of_node_get -EXPORT_SYMBOL vmlinux 0x6a9336ab neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x6a96d30d bh_submit_read -EXPORT_SYMBOL vmlinux 0x6a9c44f8 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be -EXPORT_SYMBOL vmlinux 0x6ad4d3ff dquot_quota_on -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b0a1a26 dump_skip -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b38cfb3 input_grab_device -EXPORT_SYMBOL vmlinux 0x6b53498a forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x6b5dfe73 __debugger_bpt -EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free -EXPORT_SYMBOL vmlinux 0x6bbc994b blkdev_put -EXPORT_SYMBOL vmlinux 0x6bc2425c textsearch_prepare -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bcfccb9 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6bdfd97b blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0x6be18acf of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x6be276e2 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x6bee389b grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x6c05c035 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x6c07919e pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c23fdbd xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x6c2abbac jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x6c32163d __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x6c45ca9d bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear -EXPORT_SYMBOL vmlinux 0x6cde9f25 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x6cee88a9 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x6cf38112 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x6cf7ced8 inode_init_owner -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d12fbf7 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x6d1db7a4 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d3765e9 dquot_initialize -EXPORT_SYMBOL vmlinux 0x6d3b3af4 of_match_node -EXPORT_SYMBOL vmlinux 0x6d6234c8 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put -EXPORT_SYMBOL vmlinux 0x6d740474 dump_align -EXPORT_SYMBOL vmlinux 0x6d7a6b9e dm_register_target -EXPORT_SYMBOL vmlinux 0x6d7ceb27 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x6d7d8b94 pagevec_lookup -EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns -EXPORT_SYMBOL vmlinux 0x6dc33204 blk_fetch_request -EXPORT_SYMBOL vmlinux 0x6dc7e8d6 netdev_emerg -EXPORT_SYMBOL vmlinux 0x6dd855b0 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x6ddbcb8c follow_up -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df3c0c1 pci_bus_get -EXPORT_SYMBOL vmlinux 0x6e3439c0 from_kuid_munged -EXPORT_SYMBOL vmlinux 0x6e5e53b7 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x6e889eae call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea98097 of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x6ead6b10 bio_copy_kern -EXPORT_SYMBOL vmlinux 0x6eb12484 mdiobus_read -EXPORT_SYMBOL vmlinux 0x6eedce5a xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x6f0fd86a simple_rename -EXPORT_SYMBOL vmlinux 0x6f1d6eca downgrade_write -EXPORT_SYMBOL vmlinux 0x6f1ecc5d pci_assign_resource -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f5b495c free_user_ns -EXPORT_SYMBOL vmlinux 0x6f76f0c6 dquot_commit -EXPORT_SYMBOL vmlinux 0x6f791f54 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6f96ff95 ipv4_specific -EXPORT_SYMBOL vmlinux 0x6f9926f1 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x6f9e85ff netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fbf4ca4 vmap -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fcf0935 dev_trans_start -EXPORT_SYMBOL vmlinux 0x7010761b register_netdev -EXPORT_SYMBOL vmlinux 0x7028550c tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x7028e3d7 __blk_run_queue -EXPORT_SYMBOL vmlinux 0x7039229c proto_register -EXPORT_SYMBOL vmlinux 0x703c7851 done_path_create -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x70588121 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707a9a45 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x70978fe6 get_fs_type -EXPORT_SYMBOL vmlinux 0x70ab8487 d_tmpfile -EXPORT_SYMBOL vmlinux 0x70b09a1c __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x70b549a9 init_net -EXPORT_SYMBOL vmlinux 0x70d29eaa iterate_fd -EXPORT_SYMBOL vmlinux 0x70e707ff netdev_info -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x7100a787 mach_qemu_e500 -EXPORT_SYMBOL vmlinux 0x710499e0 skb_dequeue -EXPORT_SYMBOL vmlinux 0x71154e08 param_ops_long -EXPORT_SYMBOL vmlinux 0x711919d5 open_exec -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712d62f0 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x71643809 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x7169301a abx500_remove_ops -EXPORT_SYMBOL vmlinux 0x716b2074 swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x717bb751 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x719fd35e sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71c90d80 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x71d61c52 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x7212f972 nvm_erase_blk -EXPORT_SYMBOL vmlinux 0x7223c478 dst_init -EXPORT_SYMBOL vmlinux 0x72335bd4 blk_requeue_request -EXPORT_SYMBOL vmlinux 0x725fd887 nla_append -EXPORT_SYMBOL vmlinux 0x72684eaa sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x726f4dc8 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x72750111 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x727bac6d set_wb_congested -EXPORT_SYMBOL vmlinux 0x728a3d33 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x7291d5fa migrate_page -EXPORT_SYMBOL vmlinux 0x7292013e bprm_change_interp -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 -EXPORT_SYMBOL vmlinux 0x72d4c23c fsl_get_sys_freq -EXPORT_SYMBOL vmlinux 0x72d664c2 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x72d716ae unregister_netdev -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f1a9b9 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x730d9a42 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base -EXPORT_SYMBOL vmlinux 0x732f16b6 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x733436a8 flow_cache_init -EXPORT_SYMBOL vmlinux 0x733b2383 next_tlbcam_idx -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x7344dd95 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x734bc508 bdgrab -EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue -EXPORT_SYMBOL vmlinux 0x736905b0 msi_bitmap_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0x736d4076 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x73805344 invalidate_partition -EXPORT_SYMBOL vmlinux 0x73886f8e __devm_request_region -EXPORT_SYMBOL vmlinux 0x73add002 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x73aeeb67 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x73b97e69 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x73e88c36 xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0x73e8c45b mmc_can_reset -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x741ef2b6 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x744298b1 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x7445369b scsi_host_put -EXPORT_SYMBOL vmlinux 0x74552010 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x74626683 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x747690e4 security_path_rmdir -EXPORT_SYMBOL vmlinux 0x7478d29e of_get_address -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x74a7ec23 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x74bf1485 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x74c02aec sock_wfree -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74ced58f set_groups -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x750361ab sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x75113d2b param_set_long -EXPORT_SYMBOL vmlinux 0x751df90a try_to_release_page -EXPORT_SYMBOL vmlinux 0x752ecb20 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x75413acd qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x7559d79c uart_update_timeout -EXPORT_SYMBOL vmlinux 0x7564d944 eth_type_trans -EXPORT_SYMBOL vmlinux 0x7570b33d sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0x75ae609c dquot_resume -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75be6702 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x75be6b34 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x75c0edaf simple_lookup -EXPORT_SYMBOL vmlinux 0x75cca3e1 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x75ebc8a8 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x75f06ef1 netdev_warn -EXPORT_SYMBOL vmlinux 0x76013c53 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x7617db59 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x761ea4e6 tty_port_put -EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x764d5b39 neigh_table_init -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x7661510d sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x768eb4fd elv_unregister_queue -EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x76ab145e jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76f6d1cd default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x7714de00 kern_path_create -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x772d95d2 of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x7748367a remove_proc_entry -EXPORT_SYMBOL vmlinux 0x775637ac security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x7763c416 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x776b27eb do_splice_direct -EXPORT_SYMBOL vmlinux 0x778b3d61 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x779a3aec register_md_personality -EXPORT_SYMBOL vmlinux 0x77ac4490 mount_bdev -EXPORT_SYMBOL vmlinux 0x77bbf995 simple_getattr -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77cff9d1 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x77d5e573 mmc_start_bkops -EXPORT_SYMBOL vmlinux 0x77ebbe55 write_one_page -EXPORT_SYMBOL vmlinux 0x77fbe026 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x7805d4c8 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x7809875e component_match_add -EXPORT_SYMBOL vmlinux 0x781ab4ac vme_slave_request -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x783cd15a scsi_ioctl -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x7866c202 __brelse -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788f9015 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a47316 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x78a67955 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x78af32b5 generic_permission -EXPORT_SYMBOL vmlinux 0x78b9c59e cfb_imageblit -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78ef39a4 vlan_vid_add -EXPORT_SYMBOL vmlinux 0x7905dff6 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x792aa0aa mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x79304edf blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x79358607 simple_unlink -EXPORT_SYMBOL vmlinux 0x79360900 vfs_statfs -EXPORT_SYMBOL vmlinux 0x7944d408 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x79453055 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x79457d44 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0x7965f1d6 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79a4f77a pci_remove_bus -EXPORT_SYMBOL vmlinux 0x79a54b90 module_refcount -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79aa23fe posix_lock_file -EXPORT_SYMBOL vmlinux 0x79abdd2e eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x79d01db0 file_path -EXPORT_SYMBOL vmlinux 0x79d76163 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x7a003cd9 devm_release_resource -EXPORT_SYMBOL vmlinux 0x7a0e6efc jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x7a22ef5a __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x7a372963 alloc_disk_node -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a4f9e58 input_get_keycode -EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a7e14e1 audit_log_start -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa8ab7b eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7af6f3a8 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x7b0609d1 sock_create -EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc -EXPORT_SYMBOL vmlinux 0x7b3bb540 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x7b3fcc6b starget_for_each_device -EXPORT_SYMBOL vmlinux 0x7b6a6b25 dev_addr_init -EXPORT_SYMBOL vmlinux 0x7b78f9c3 vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x7b866f67 rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0x7ba013ae blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0x7ba9350f pipe_unlock -EXPORT_SYMBOL vmlinux 0x7bac1d6e vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x7bb63a10 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x7bb756cc neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x7beb6c17 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0x7bfd9c92 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x7c02744b lock_rename -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c2ce6b3 __frontswap_test -EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c5310ec pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x7c5aaa5c generic_show_options -EXPORT_SYMBOL vmlinux 0x7c5b68b9 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c6b16df sk_stop_timer -EXPORT_SYMBOL vmlinux 0x7c6d7fed register_sysctl -EXPORT_SYMBOL vmlinux 0x7c752c93 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0x7c7777bd generic_setxattr -EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7c9ac32e __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x7cb97c48 tcp_close -EXPORT_SYMBOL vmlinux 0x7cc09f41 pci_select_bars -EXPORT_SYMBOL vmlinux 0x7cc9f3d3 inet_select_addr -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce85b30 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x7cebb1e5 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7d0611f3 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x7d0b1ab8 pci_get_subsys -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d2373f3 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x7d268458 fget_raw -EXPORT_SYMBOL vmlinux 0x7d2ad2e9 inet6_protos -EXPORT_SYMBOL vmlinux 0x7d6f884c nf_register_hook -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d845d64 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x7d92998f __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x7d992cdb mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x7de5d383 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7e0d4c92 genphy_suspend -EXPORT_SYMBOL vmlinux 0x7e10928f mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x7e15590e touch_atime -EXPORT_SYMBOL vmlinux 0x7e296286 vc_cons -EXPORT_SYMBOL vmlinux 0x7e2efc54 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x7e37eb31 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x7e6f2170 of_phy_connect -EXPORT_SYMBOL vmlinux 0x7e801733 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x7e871779 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress -EXPORT_SYMBOL vmlinux 0x7ea92bf3 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x7eb5359c inc_nlink -EXPORT_SYMBOL vmlinux 0x7ec2193c input_set_abs_params -EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x7ecdc487 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x7ed4f5bd inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7ee84e5d register_key_type -EXPORT_SYMBOL vmlinux 0x7ee8b00d vme_master_request -EXPORT_SYMBOL vmlinux 0x7efebf5d pci_disable_device -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f140fd3 keyring_clear -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x7f31f361 unlock_buffer -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f91d52b phy_print_status -EXPORT_SYMBOL vmlinux 0x7fb3a7c8 tcp_connect -EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x7fce6a5e devm_ioremap -EXPORT_SYMBOL vmlinux 0x7fd189a8 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x7fd1ea0c buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x80114016 proc_remove -EXPORT_SYMBOL vmlinux 0x80470f18 phy_device_register -EXPORT_SYMBOL vmlinux 0x804ff861 abort_creds -EXPORT_SYMBOL vmlinux 0x80595d63 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0x8083fb9a filp_close -EXPORT_SYMBOL vmlinux 0x80904e99 register_netdevice -EXPORT_SYMBOL vmlinux 0x80954ff7 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x80a5eee3 __kernel_write -EXPORT_SYMBOL vmlinux 0x80a863f6 check_disk_size_change -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d08878 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80f0d9fc put_page -EXPORT_SYMBOL vmlinux 0x80f19a4e skb_vlan_push -EXPORT_SYMBOL vmlinux 0x80f2bb94 __dax_fault -EXPORT_SYMBOL vmlinux 0x81405384 misc_deregister -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815c56d0 cpu_present_mask -EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x81ad572a mutex_trylock -EXPORT_SYMBOL vmlinux 0x81c9d87e i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x81cbeba8 get_empty_filp -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x82106a11 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback -EXPORT_SYMBOL vmlinux 0x822f014e agp_copy_info -EXPORT_SYMBOL vmlinux 0x82430c98 block_write_full_page -EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x824bf6ac up_write -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x827081e6 blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0x82795695 agp_backend_acquire -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x8284d689 key_alloc -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x82ac3308 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82b49bae pcim_iounmap -EXPORT_SYMBOL vmlinux 0x82d1ec65 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x83304794 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x834ad02e __seq_open_private -EXPORT_SYMBOL vmlinux 0x834f4b8d sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x83553de9 blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0x83575e7f follow_down_one -EXPORT_SYMBOL vmlinux 0x835cb012 poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0x83622b97 sk_stream_error -EXPORT_SYMBOL vmlinux 0x8364aefd pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x836ea693 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x837536e3 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x83858755 fsync_bdev -EXPORT_SYMBOL vmlinux 0x8388e14d of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x838b99d9 security_path_rename -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83addded phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83b6e2ad registered_fb -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83ce2d69 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x83d26817 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x83ea2e8b nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x84104dd4 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x8428ffa6 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x844b1aa5 locks_free_lock -EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x84548a33 d_drop -EXPORT_SYMBOL vmlinux 0x84709263 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x84870a70 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x849fe807 csum_and_copy_from_user -EXPORT_SYMBOL vmlinux 0x84b30c19 set_bh_page -EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock -EXPORT_SYMBOL vmlinux 0x84e80dc8 scsi_remove_host -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x850433a9 fsnotify_put_group -EXPORT_SYMBOL vmlinux 0x85089fd5 agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0x85444352 dev_err -EXPORT_SYMBOL vmlinux 0x8545199a vfs_getattr -EXPORT_SYMBOL vmlinux 0x854b2631 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x855a0fe1 flush_old_exec -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x85676e4a lock_fb_info -EXPORT_SYMBOL vmlinux 0x856b89f8 bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x8574f948 of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0x85914295 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x85aa36a4 qdisc_list_del -EXPORT_SYMBOL vmlinux 0x85ae6052 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85cc258a genl_unregister_family -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x865b1789 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x867171ab pci_disable_msix -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x8693ca38 blk_start_request -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86b1b16e fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x86b2008c __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x86f2b0e6 devm_clk_get -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x870667c6 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x8708d0e6 phy_device_free -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x87225f41 sget -EXPORT_SYMBOL vmlinux 0x8725b0a0 misc_register -EXPORT_SYMBOL vmlinux 0x872e7735 d_obtain_root -EXPORT_SYMBOL vmlinux 0x8734738b generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 -EXPORT_SYMBOL vmlinux 0x873d6c44 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x873e89f0 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x8748eb99 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x876e63e8 simple_link -EXPORT_SYMBOL vmlinux 0x87793219 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x87b8f08b pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x87bb055f dquot_free_inode -EXPORT_SYMBOL vmlinux 0x87bd3697 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x87c57506 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x87f5943a xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x87f8f60b blk_delay_queue -EXPORT_SYMBOL vmlinux 0x88092a20 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x882db37f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x88321899 nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x883fe461 tty_port_open -EXPORT_SYMBOL vmlinux 0x88582610 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x88ca2a31 file_ns_capable -EXPORT_SYMBOL vmlinux 0x890087d4 param_set_copystring -EXPORT_SYMBOL vmlinux 0x89159437 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy -EXPORT_SYMBOL vmlinux 0x89426c77 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x895108f3 proc_dostring -EXPORT_SYMBOL vmlinux 0x896157d3 iterate_dir -EXPORT_SYMBOL vmlinux 0x896daad6 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x8989de37 of_dev_get -EXPORT_SYMBOL vmlinux 0x89a49d5c fb_pan_display -EXPORT_SYMBOL vmlinux 0x89aa8842 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89d25135 param_get_charp -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a322215 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x8a3fb639 create_empty_buffers -EXPORT_SYMBOL vmlinux 0x8a442fcc qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a69e669 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x8a789ee0 da903x_query_status -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a8a9c55 nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8a9ec4be scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x8aa1ee27 param_ops_bint -EXPORT_SYMBOL vmlinux 0x8ab1140d pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x8ab308bd tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x8ab5a7f3 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x8ad29bde sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x8addd734 __lock_page -EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put -EXPORT_SYMBOL vmlinux 0x8b0799f6 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x8b10ff02 udp_seq_open -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b4951a4 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x8b4db880 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x8b4e450b register_filesystem -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b873560 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x8baf3116 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x8bd233bd abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0x8bdd9ea2 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x8beb82b6 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr -EXPORT_SYMBOL vmlinux 0x8c04fb97 neigh_update -EXPORT_SYMBOL vmlinux 0x8c05c5d2 agp_generic_enable -EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 -EXPORT_SYMBOL vmlinux 0x8c1f95be udp_prot -EXPORT_SYMBOL vmlinux 0x8c2a0749 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x8c4dfee6 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x8c577e33 is_nd_btt -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c6b08e7 bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x8c81bd06 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x8c9be2ff pcim_iomap -EXPORT_SYMBOL vmlinux 0x8cb5ef20 pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x8cb95e9c try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x8cbd31d0 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x8cc4152c __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cdcc59c ip6_xmit -EXPORT_SYMBOL vmlinux 0x8ce98e0d bdi_register -EXPORT_SYMBOL vmlinux 0x8ceafe92 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 -EXPORT_SYMBOL vmlinux 0x8d152d07 proc_set_user -EXPORT_SYMBOL vmlinux 0x8d227863 is_bad_inode -EXPORT_SYMBOL vmlinux 0x8d272769 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x8d365b09 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d66f67f ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d784a52 thaw_super -EXPORT_SYMBOL vmlinux 0x8d7a5b28 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x8d896f63 should_remove_suid -EXPORT_SYMBOL vmlinux 0x8d944cbb copy_in_user -EXPORT_SYMBOL vmlinux 0x8d94f9d7 update_devfreq -EXPORT_SYMBOL vmlinux 0x8da05809 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x8dadcc6a gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x8db2661d phy_attach_direct -EXPORT_SYMBOL vmlinux 0x8dc29cd9 padata_free -EXPORT_SYMBOL vmlinux 0x8dc6c43f iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x8dcc4e16 get_thermal_instance -EXPORT_SYMBOL vmlinux 0x8dda19bf simple_setattr -EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8e063232 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x8e10036e mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x8e4a5e9a neigh_xmit -EXPORT_SYMBOL vmlinux 0x8e5117a6 scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0x8e690081 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x8e6d8dc4 tso_count_descs -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x8e8d58da diu_ops -EXPORT_SYMBOL vmlinux 0x8e8d97fc iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x8e9b6b61 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x8eaa4f24 seq_pad -EXPORT_SYMBOL vmlinux 0x8eab3a7c swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x8ec3607e d_find_any_alias -EXPORT_SYMBOL vmlinux 0x8eda8a1f blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x8edffc27 tty_port_init -EXPORT_SYMBOL vmlinux 0x8eecad81 of_get_named_gpio_flags -EXPORT_SYMBOL vmlinux 0x8ef96add sock_release -EXPORT_SYMBOL vmlinux 0x8f008fbb sock_i_uid -EXPORT_SYMBOL vmlinux 0x8f03bc1c netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x8f179580 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x8f2ae0bd framebuffer_release -EXPORT_SYMBOL vmlinux 0x8f3cc73d xfrm_register_mode -EXPORT_SYMBOL vmlinux 0x8f40ed1a bio_unmap_user -EXPORT_SYMBOL vmlinux 0x8f4f1b2d swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0x8f56886b __vfs_write -EXPORT_SYMBOL vmlinux 0x8f7e3448 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x8f887125 dev_close -EXPORT_SYMBOL vmlinux 0x8f96c474 phy_attach -EXPORT_SYMBOL vmlinux 0x8fa005aa dquot_alloc -EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0x8fca3b53 elv_register_queue -EXPORT_SYMBOL vmlinux 0x8fd120a2 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x8fd8ffa5 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x8fe39fa0 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0x8ff8685f iov_iter_zero -EXPORT_SYMBOL vmlinux 0x8ffd61b9 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x9016f3fa ether_setup -EXPORT_SYMBOL vmlinux 0x9019cb24 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x9022fe83 inet_put_port -EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x902f69ed agp_create_memory -EXPORT_SYMBOL vmlinux 0x902fae31 bio_init -EXPORT_SYMBOL vmlinux 0x9044565b nvm_put_blk -EXPORT_SYMBOL vmlinux 0x904bd0f9 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0x9050b014 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x906ee5ca alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x90880036 nf_reinject -EXPORT_SYMBOL vmlinux 0x90cd32e5 seq_read -EXPORT_SYMBOL vmlinux 0x90cee4fc ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x910e7b98 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x912f54b4 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x913190eb ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x913d0501 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x91571f5b netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x91a1bfb6 follow_down -EXPORT_SYMBOL vmlinux 0x91ab9678 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf -EXPORT_SYMBOL vmlinux 0x91ad7793 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x91b75711 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x91c1576c neigh_table_clear -EXPORT_SYMBOL vmlinux 0x91ccbd78 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x91e778a7 soft_cursor -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x9218464c md_write_end -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x925ea15e pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x926fd3b6 agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0x92890630 pci_set_master -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x92929d83 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x9292b074 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92b5bf14 blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x92cf2e3b noop_qdisc -EXPORT_SYMBOL vmlinux 0x92e3d1e1 ip_options_compile -EXPORT_SYMBOL vmlinux 0x92ef7310 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x93138929 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x9327f9e9 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x932abf06 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x9330e635 vfs_writev -EXPORT_SYMBOL vmlinux 0x9337d3d4 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x934ad71e __sb_start_write -EXPORT_SYMBOL vmlinux 0x936b88aa page_waitqueue -EXPORT_SYMBOL vmlinux 0x936f51a3 path_is_under -EXPORT_SYMBOL vmlinux 0x9376cb8f posix_unblock_lock -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937e3cbb vga_tryget -EXPORT_SYMBOL vmlinux 0x93865d10 tso_build_data -EXPORT_SYMBOL vmlinux 0x9389bde2 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x939f6f3c mmc_of_parse -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93cd1308 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x93e04c16 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x93e8eb8a phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x94231be0 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x94284315 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x943b5813 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x943dc80f csum_and_copy_to_user -EXPORT_SYMBOL vmlinux 0x9451f0e7 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x946a6123 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x946f3d6f __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask -EXPORT_SYMBOL vmlinux 0x94bd1026 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x94be398b ip_setsockopt -EXPORT_SYMBOL vmlinux 0x94c537d8 nvm_end_io -EXPORT_SYMBOL vmlinux 0x94ceb21f pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x94ffb39e scm_detach_fds -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x9514151a _mcount -EXPORT_SYMBOL vmlinux 0x951d1416 vm_map_ram -EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb -EXPORT_SYMBOL vmlinux 0x953b6376 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x95605938 xattr_full_name -EXPORT_SYMBOL vmlinux 0x956848d5 of_create_pci_dev -EXPORT_SYMBOL vmlinux 0x956f539e dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x959690d5 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x9596e51f jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0x95bb1301 tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x95c38143 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x95c740ed xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x95c7f90c of_iomap -EXPORT_SYMBOL vmlinux 0x95d75b1b flush_icache_user_range -EXPORT_SYMBOL vmlinux 0x95fffe51 bmap -EXPORT_SYMBOL vmlinux 0x9607a233 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x960fb116 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x963c5cff blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x96429dce mount_pseudo -EXPORT_SYMBOL vmlinux 0x9654b9e2 sock_no_connect -EXPORT_SYMBOL vmlinux 0x965cfdc0 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x9681046b have_submounts -EXPORT_SYMBOL vmlinux 0x96836427 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x968b395e inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x96900c8b tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96b5ebb4 mount_single -EXPORT_SYMBOL vmlinux 0x96c0882f xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96d588fd vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x970ecd8b neigh_app_ns -EXPORT_SYMBOL vmlinux 0x97240be5 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x9741963d ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x97618996 eth_header -EXPORT_SYMBOL vmlinux 0x9765bf0c input_register_handle -EXPORT_SYMBOL vmlinux 0x9776bddd pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0x97771728 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x978d719f ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97afba7b proc_douintvec -EXPORT_SYMBOL vmlinux 0x97cd1ede sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x97d7f25f blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x97da33ac bio_endio -EXPORT_SYMBOL vmlinux 0x97f423c6 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x98255810 vlan_vid_del -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x98320d77 dma_common_mmap -EXPORT_SYMBOL vmlinux 0x9836828d mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x986648be simple_transaction_get -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x987fc124 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x98a105c5 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x98ad4bdb sk_free -EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x98ceef24 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98d0bc0e param_ops_byte -EXPORT_SYMBOL vmlinux 0x98d4c532 i8042_install_filter -EXPORT_SYMBOL vmlinux 0x98d4e2e2 dquot_release -EXPORT_SYMBOL vmlinux 0x98d8a6d1 dentry_unhash -EXPORT_SYMBOL vmlinux 0x98faacea uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x990b781f __get_page_tail -EXPORT_SYMBOL vmlinux 0x99190842 phy_device_remove -EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf -EXPORT_SYMBOL vmlinux 0x9921e924 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x99385dfd blk_sync_queue -EXPORT_SYMBOL vmlinux 0x99388cd3 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x9976b726 from_kprojid -EXPORT_SYMBOL vmlinux 0x99794bab mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x99cbc5a8 vfs_fsync -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size -EXPORT_SYMBOL vmlinux 0x99e98acf mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a3528be dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x9a5a1a44 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x9a67db43 of_get_next_parent -EXPORT_SYMBOL vmlinux 0x9aaab543 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x9abb367f tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x9ac535cb dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x9acc5718 mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x9ad27040 dev_printk -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9afb5056 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x9b02fd05 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x9b0bb5bf pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0x9b0fd75a proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x9b16c01a vme_irq_free -EXPORT_SYMBOL vmlinux 0x9b241ce9 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b5e317c mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x9b7e85a6 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba4414c dquot_enable -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bba3ab6 fb_set_var -EXPORT_SYMBOL vmlinux 0x9bc82276 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x9bd343d2 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x9bd6e35c generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9c075727 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x9c16ac88 key_revoke -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c615261 key_validate -EXPORT_SYMBOL vmlinux 0x9c99fff0 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x9c9cb157 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x9c9d63c7 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cc16842 dump_emit -EXPORT_SYMBOL vmlinux 0x9ccc8ad8 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x9ce5f095 sk_alloc -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs -EXPORT_SYMBOL vmlinux 0x9d16f253 kfree_put_link -EXPORT_SYMBOL vmlinux 0x9d19743d devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0x9d3825b1 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d3f417b PDE_DATA -EXPORT_SYMBOL vmlinux 0x9d4eac0e swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0x9d538bb2 giveup_altivec -EXPORT_SYMBOL vmlinux 0x9d58b170 param_set_bint -EXPORT_SYMBOL vmlinux 0x9d5e4725 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0x9d72229b fsl_ifc_find -EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x9d7f84c4 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x9d8d8a52 dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x9d93d2f1 neigh_for_each -EXPORT_SYMBOL vmlinux 0x9d9fb5a6 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x9db67837 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x9dc5b175 d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0x9dcf2c9c __pci_register_driver -EXPORT_SYMBOL vmlinux 0x9dd3278b vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x9ddb2363 kobject_add -EXPORT_SYMBOL vmlinux 0x9dfcca55 down_write -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e22e748 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e517f6f bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e71421c nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9eba0665 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9ec973d2 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x9ec9b683 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x9ece8f6e max8925_reg_write -EXPORT_SYMBOL vmlinux 0x9f0e1ab8 save_mount_options -EXPORT_SYMBOL vmlinux 0x9f26fd4c of_platform_device_create -EXPORT_SYMBOL vmlinux 0x9f29b6c9 security_path_chmod -EXPORT_SYMBOL vmlinux 0x9f2f4564 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f48e3f8 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x9f509b08 clk_get -EXPORT_SYMBOL vmlinux 0x9f58833f scsi_device_get -EXPORT_SYMBOL vmlinux 0x9f69077b netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x9f6ba7dc padata_start -EXPORT_SYMBOL vmlinux 0x9f718dc2 param_set_byte -EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x9f8e42d7 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x9f96216f vfs_whiteout -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fc9fba2 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x9fce3c8c tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fef841b __netif_schedule -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa00b3a86 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xa018cd5d dev_uc_flush -EXPORT_SYMBOL vmlinux 0xa02a8aed udp_set_csum -EXPORT_SYMBOL vmlinux 0xa041ae2f try_module_get -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa06de7e0 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa0912a17 netdev_change_features -EXPORT_SYMBOL vmlinux 0xa0a8304c compat_ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0dc512b pci_get_device -EXPORT_SYMBOL vmlinux 0xa0e6f526 blkdev_fsync -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0ecbfc4 generic_read_dir -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa112614a __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xa112b02d xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xa114f52c bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa15404a5 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1b97ad5 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1c80753 unregister_binfmt -EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa229d22c scsi_unregister -EXPORT_SYMBOL vmlinux 0xa22ace4c seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xa2312ae9 get_io_context -EXPORT_SYMBOL vmlinux 0xa2345903 __block_write_begin -EXPORT_SYMBOL vmlinux 0xa24b114e of_root -EXPORT_SYMBOL vmlinux 0xa24fcf1e jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xa25031a5 sock_no_getname -EXPORT_SYMBOL vmlinux 0xa26f42e1 sock_efree -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa28c7474 nd_iostat_end -EXPORT_SYMBOL vmlinux 0xa292d733 noop_fsync -EXPORT_SYMBOL vmlinux 0xa29f0912 inet_sendpage -EXPORT_SYMBOL vmlinux 0xa2a24a76 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0xa2aba143 seq_write -EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register -EXPORT_SYMBOL vmlinux 0xa2bf5097 md_error -EXPORT_SYMBOL vmlinux 0xa2ef35da install_exec_creds -EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait -EXPORT_SYMBOL vmlinux 0xa301f04e __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xa301f248 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa332767a dev_get_stats -EXPORT_SYMBOL vmlinux 0xa34673fe proc_create_data -EXPORT_SYMBOL vmlinux 0xa370002e sk_receive_skb -EXPORT_SYMBOL vmlinux 0xa37cad35 serio_interrupt -EXPORT_SYMBOL vmlinux 0xa381944f dql_reset -EXPORT_SYMBOL vmlinux 0xa382a45d simple_pin_fs -EXPORT_SYMBOL vmlinux 0xa3840cec mmc_detect_change -EXPORT_SYMBOL vmlinux 0xa3890fc2 scsi_register -EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay -EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xa3d7c134 km_state_notify -EXPORT_SYMBOL vmlinux 0xa3e75545 flush_tlb_kernel_range -EXPORT_SYMBOL vmlinux 0xa3e8ddfe bio_flush_dcache_pages -EXPORT_SYMBOL vmlinux 0xa3ef9e5f elevator_change -EXPORT_SYMBOL vmlinux 0xa400a1bd make_kuid -EXPORT_SYMBOL vmlinux 0xa40d1bdb scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xa4155f79 generic_getxattr -EXPORT_SYMBOL vmlinux 0xa42f47d7 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0xa43bc4e6 of_device_alloc -EXPORT_SYMBOL vmlinux 0xa4511467 crc16 -EXPORT_SYMBOL vmlinux 0xa451a4cc tcp_req_err -EXPORT_SYMBOL vmlinux 0xa4691005 elevator_init -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa4839c19 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xa48b4fff commit_creds -EXPORT_SYMBOL vmlinux 0xa493f13c may_umount_tree -EXPORT_SYMBOL vmlinux 0xa4a4bd91 param_set_ulong -EXPORT_SYMBOL vmlinux 0xa4a4e291 register_framebuffer -EXPORT_SYMBOL vmlinux 0xa4a7349c zpool_register_driver -EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4da0d50 mdio_bus_type -EXPORT_SYMBOL vmlinux 0xa4f1ae5c key_task_permission -EXPORT_SYMBOL vmlinux 0xa4f89612 pci_release_regions -EXPORT_SYMBOL vmlinux 0xa52ab42e tty_hangup -EXPORT_SYMBOL vmlinux 0xa53135b9 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xa5394395 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xa5504314 input_register_device -EXPORT_SYMBOL vmlinux 0xa5520146 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa55c6830 register_sysctl_table -EXPORT_SYMBOL vmlinux 0xa56ad3d0 init_special_inode -EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free -EXPORT_SYMBOL vmlinux 0xa56f9a72 nvm_submit_io -EXPORT_SYMBOL vmlinux 0xa5829d31 bd_set_size -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5a3b389 follow_pfn -EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le -EXPORT_SYMBOL vmlinux 0xa5c03d6f kernel_param_lock -EXPORT_SYMBOL vmlinux 0xa6096554 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0xa62b68a4 register_cdrom -EXPORT_SYMBOL vmlinux 0xa62dfc0d genphy_aneg_done -EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xa634fa03 scsi_register_driver -EXPORT_SYMBOL vmlinux 0xa64e1eb5 kfree_skb_list -EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio -EXPORT_SYMBOL vmlinux 0xa661d9c2 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa67c71ce pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa68cb81b param_get_invbool -EXPORT_SYMBOL vmlinux 0xa6c5016f fb_blank -EXPORT_SYMBOL vmlinux 0xa6db50f1 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xa6e8ba8a __dquot_free_space -EXPORT_SYMBOL vmlinux 0xa6f1f1c5 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa7070e93 vc_resize -EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa743c3d0 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get -EXPORT_SYMBOL vmlinux 0xa7738c5b splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xa799ea9f inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xa7e9e6ab param_get_ushort -EXPORT_SYMBOL vmlinux 0xa7ebe9f2 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xa80750cb dev_addr_flush -EXPORT_SYMBOL vmlinux 0xa810e780 get_task_io_context -EXPORT_SYMBOL vmlinux 0xa833b617 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa8460891 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xa84971fc led_update_brightness -EXPORT_SYMBOL vmlinux 0xa84fd625 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0xa86b679f down_read -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa88e0ccb netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xa896aa03 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xa8cd8f85 __init_rwsem -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa902d0dd of_find_node_by_name -EXPORT_SYMBOL vmlinux 0xa9039402 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xa913d12a pci_alloc_dev -EXPORT_SYMBOL vmlinux 0xa9140c11 sock_edemux -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start -EXPORT_SYMBOL vmlinux 0xa93ba88e proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xa93f8459 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0xa95bc549 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xa963fa1c sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa9929bc0 key_payload_reserve -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9d45614 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xa9dcaf71 xfrm_register_km -EXPORT_SYMBOL vmlinux 0xaa125882 uart_match_port -EXPORT_SYMBOL vmlinux 0xaa1ca861 arp_create -EXPORT_SYMBOL vmlinux 0xaa21ddba pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0xaa36ae75 file_open_root -EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock -EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa7acb95 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xaa93a675 seq_release -EXPORT_SYMBOL vmlinux 0xaaa83ee2 module_put -EXPORT_SYMBOL vmlinux 0xaaab8067 cpu_sibling_map -EXPORT_SYMBOL vmlinux 0xaabffe0d netif_rx_ni -EXPORT_SYMBOL vmlinux 0xaac14864 irq_set_chip -EXPORT_SYMBOL vmlinux 0xaac81ae1 phy_init_eee -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaaf90c21 inet6_ioctl -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab228e31 csum_tcpudp_magic -EXPORT_SYMBOL vmlinux 0xab27e2f4 md_register_thread -EXPORT_SYMBOL vmlinux 0xab49813f vme_dma_list_free -EXPORT_SYMBOL vmlinux 0xab6632d7 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xabbf13a1 dev_uc_sync -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac11e45d ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xac3f7dbe tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0xac469942 lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0xac5369fb of_device_unregister -EXPORT_SYMBOL vmlinux 0xac70b0fa vm_stat -EXPORT_SYMBOL vmlinux 0xac723f61 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xac85f94d seq_printf -EXPORT_SYMBOL vmlinux 0xac92142d md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb7ddfb register_console -EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd02076 free_task -EXPORT_SYMBOL vmlinux 0xacd3970a scsi_execute -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacdb76e7 tcp_disconnect -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacfe4b5c truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad0fd4c6 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xad14b08d netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xad186829 netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0xad2af0c8 gen_pool_free -EXPORT_SYMBOL vmlinux 0xad4e439e __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xad53d22b of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0xad6b0659 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xad736b7a __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit -EXPORT_SYMBOL vmlinux 0xadbe7bea generic_removexattr -EXPORT_SYMBOL vmlinux 0xadc7d0c1 ppc_md -EXPORT_SYMBOL vmlinux 0xadef7147 security_path_chown -EXPORT_SYMBOL vmlinux 0xadf1d474 blk_finish_request -EXPORT_SYMBOL vmlinux 0xadf2bb64 tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae04b94f __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xae160c4b abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0xae1d47aa generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xae358236 fence_signal -EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xae5fbe59 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xae655a4f inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xae67ae7e ppp_input_error -EXPORT_SYMBOL vmlinux 0xae7c2ec3 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xaeaf8e45 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0xaecb0a3a __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0xaed66438 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0xaefd1ef9 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xaf175221 dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait -EXPORT_SYMBOL vmlinux 0xaf34260d pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf441a45 blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0xaf512a7c input_free_device -EXPORT_SYMBOL vmlinux 0xaf6786f1 devm_clk_put -EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup -EXPORT_SYMBOL vmlinux 0xaf6d9089 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xaf6dee91 tty_register_driver -EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0xafa230ec sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create -EXPORT_SYMBOL vmlinux 0xafccf89b __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xaff5becd skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc -EXPORT_SYMBOL vmlinux 0xb03fccce vfs_mknod -EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb0634c2f __inode_permission -EXPORT_SYMBOL vmlinux 0xb0664980 max8998_write_reg -EXPORT_SYMBOL vmlinux 0xb067470a dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xb082a5e1 tty_port_close -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b2acca __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0b99777 dma_set_mask -EXPORT_SYMBOL vmlinux 0xb0bf89f3 unregister_console -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0f85dce inet_bind -EXPORT_SYMBOL vmlinux 0xb0fbaa9e devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xb0fdebdb mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xb1142765 cdev_init -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb137cf20 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xb1563904 vfs_iter_write -EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb1634a25 kill_pgrp -EXPORT_SYMBOL vmlinux 0xb163f974 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb165ef45 __irq_regs -EXPORT_SYMBOL vmlinux 0xb171b27e get_disk -EXPORT_SYMBOL vmlinux 0xb17e50a3 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xb1a0ecef flow_cache_lookup -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1dbf0ff xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xb1ee5cc4 dst_discard_out -EXPORT_SYMBOL vmlinux 0xb1f382c9 xfrm_state_update -EXPORT_SYMBOL vmlinux 0xb1f9f44b eth_header_parse -EXPORT_SYMBOL vmlinux 0xb22402de bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0xb244e5f7 tty_do_resize -EXPORT_SYMBOL vmlinux 0xb2492534 __ip_select_ident -EXPORT_SYMBOL vmlinux 0xb25039e9 napi_complete_done -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb29dcc1b md_check_recovery -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2d3c88c clear_inode -EXPORT_SYMBOL vmlinux 0xb2e1432d phy_detach -EXPORT_SYMBOL vmlinux 0xb2f4afd4 scsi_scan_host -EXPORT_SYMBOL vmlinux 0xb2f86877 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xb2fc5736 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0xb30e0715 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked -EXPORT_SYMBOL vmlinux 0xb33a4f40 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xb3508acc blk_end_request -EXPORT_SYMBOL vmlinux 0xb37b581a tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3dfbef3 netdev_err -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb400962a arp_xmit -EXPORT_SYMBOL vmlinux 0xb416d7ba elevator_exit -EXPORT_SYMBOL vmlinux 0xb41f19f2 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb424153a zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xb429d009 dev_warn -EXPORT_SYMBOL vmlinux 0xb454c42b cdev_alloc -EXPORT_SYMBOL vmlinux 0xb45e596a poll_initwait -EXPORT_SYMBOL vmlinux 0xb4693801 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xb4702adc twl6040_reg_read -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class -EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get -EXPORT_SYMBOL vmlinux 0xb4879f6d ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xb48a51e3 inet_shutdown -EXPORT_SYMBOL vmlinux 0xb4a51971 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0xb4a560ed nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0xb4b60e79 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xb4b935c8 set_anon_super -EXPORT_SYMBOL vmlinux 0xb4c94939 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xb4d115a6 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xb4e15848 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xb4e74192 replace_mount_options -EXPORT_SYMBOL vmlinux 0xb4ead9a8 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xb4fd0182 thaw_bdev -EXPORT_SYMBOL vmlinux 0xb52360db blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xb52e4f70 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xb53448f0 serio_open -EXPORT_SYMBOL vmlinux 0xb534becb xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xb54275a0 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xb5457091 dget_parent -EXPORT_SYMBOL vmlinux 0xb5612292 phy_init_hw -EXPORT_SYMBOL vmlinux 0xb5618eca cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb5884cad security_path_unlink -EXPORT_SYMBOL vmlinux 0xb59a3130 locks_remove_posix -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5dd0680 touch_buffer -EXPORT_SYMBOL vmlinux 0xb5dd9d73 vfs_create -EXPORT_SYMBOL vmlinux 0xb5e5f35a dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xb5f41290 secpath_dup -EXPORT_SYMBOL vmlinux 0xb5f8d0ff param_set_uint -EXPORT_SYMBOL vmlinux 0xb5f98102 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xb5fc93db skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xb5fd21bd __module_get -EXPORT_SYMBOL vmlinux 0xb60e4a66 compat_mc_setsockopt -EXPORT_SYMBOL vmlinux 0xb612b792 tty_devnum -EXPORT_SYMBOL vmlinux 0xb61c2f6a to_nd_btt -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb6318fc2 copy_from_iter -EXPORT_SYMBOL vmlinux 0xb63193df __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xb634a9d7 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0xb641ae47 set_security_override -EXPORT_SYMBOL vmlinux 0xb665a19f input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xb6760f1b inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb681070f blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xb6901968 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb697d986 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6c0bbed scsi_host_get -EXPORT_SYMBOL vmlinux 0xb6ca4074 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xb6dba78c devm_gpio_free -EXPORT_SYMBOL vmlinux 0xb6e8e0dd blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xb728a2b1 flush_dcache_icache_page -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb7558d57 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xb761754a tcp_child_process -EXPORT_SYMBOL vmlinux 0xb76a4dee blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xb770be3e __percpu_counter_add -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb772b8b7 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0xb79a4e1a store_fp_state -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7ca29cb devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0xb7dce802 proto_unregister -EXPORT_SYMBOL vmlinux 0xb8006657 reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0xb804bc93 seq_path -EXPORT_SYMBOL vmlinux 0xb814282b param_ops_ullong -EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xb83d9e29 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xb8531235 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb879b5a3 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0xb87f08f2 block_read_full_page -EXPORT_SYMBOL vmlinux 0xb8ae46c6 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0xb8bb1ea2 datagram_poll -EXPORT_SYMBOL vmlinux 0xb8f84944 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xb91da932 netdev_alert -EXPORT_SYMBOL vmlinux 0xb91f060f inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0xb9598958 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0xb95eff77 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xb95f599d tty_vhangup -EXPORT_SYMBOL vmlinux 0xb977bdb6 drop_nlink -EXPORT_SYMBOL vmlinux 0xb98054ff phy_connect -EXPORT_SYMBOL vmlinux 0xb98cb9cc nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xb98e5586 nvm_register -EXPORT_SYMBOL vmlinux 0xb9950656 dev_add_offload -EXPORT_SYMBOL vmlinux 0xb9a2ccae of_cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0xb9aae944 ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0xb9b37e6f mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xb9bb3254 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xb9cfe40a pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0xb9dd04df sock_no_mmap -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xba068568 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xba150c2e dev_addr_add -EXPORT_SYMBOL vmlinux 0xba20ed9e pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xba339993 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba69ea46 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xba6be2a2 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0xba6d7df9 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0xba7019a3 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xba70ef4a generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xba762f59 rfkill_alloc -EXPORT_SYMBOL vmlinux 0xba7ad596 register_quota_format -EXPORT_SYMBOL vmlinux 0xba8b6dc1 pci_restore_state -EXPORT_SYMBOL vmlinux 0xba964d1d scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xbaa8123c fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0xbab62c18 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0xbad410ae dm_put_device -EXPORT_SYMBOL vmlinux 0xbae01d9a dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xbafc1f75 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb17cc24 bio_split -EXPORT_SYMBOL vmlinux 0xbb1eb999 inet_recvmsg -EXPORT_SYMBOL vmlinux 0xbb1f9b5b param_set_int -EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb3cfc65 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xbb42f5a8 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb727bc7 dma_find_channel -EXPORT_SYMBOL vmlinux 0xbb83a7de uart_suspend_port -EXPORT_SYMBOL vmlinux 0xbb9420b0 blk_recount_segments -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0xbbb6b412 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xbbd042d7 km_is_alive -EXPORT_SYMBOL vmlinux 0xbbdf9833 user_path_create -EXPORT_SYMBOL vmlinux 0xbbe3d2a0 blk_put_queue -EXPORT_SYMBOL vmlinux 0xbbfc8984 iget_locked -EXPORT_SYMBOL vmlinux 0xbc02e106 elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0xbc30b795 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0xbc3f649c mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0xbc7714b7 flush_tlb_page -EXPORT_SYMBOL vmlinux 0xbc820bb0 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0xbca20429 wake_up_process -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcc420b3 vfs_read -EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 -EXPORT_SYMBOL vmlinux 0xbd09283a generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve -EXPORT_SYMBOL vmlinux 0xbd22e1c6 ___pskb_trim -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd62916a pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbd9299cd dump_page -EXPORT_SYMBOL vmlinux 0xbda1c62c netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xbdb0bb3c tcf_hash_search -EXPORT_SYMBOL vmlinux 0xbdce32e3 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xbdd90eca udp_disconnect -EXPORT_SYMBOL vmlinux 0xbdda0fe9 __register_nls -EXPORT_SYMBOL vmlinux 0xbde6d703 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xbdf80b05 generic_delete_inode -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe64274b filemap_map_pages -EXPORT_SYMBOL vmlinux 0xbe93afd0 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0xbee0769d get_user_pages_locked -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf146162 vm_event_states -EXPORT_SYMBOL vmlinux 0xbf1cc134 tcp_parse_options -EXPORT_SYMBOL vmlinux 0xbf2c75a0 __register_binfmt -EXPORT_SYMBOL vmlinux 0xbf2db40d inet_frag_find -EXPORT_SYMBOL vmlinux 0xbf2ec66c devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0xbf3cbe67 block_commit_write -EXPORT_SYMBOL vmlinux 0xbf3f2a67 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xbf4a798c __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xbf61fe21 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf902260 sk_ns_capable -EXPORT_SYMBOL vmlinux 0xbf90ba1d netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init -EXPORT_SYMBOL vmlinux 0xbf936018 udplite_prot -EXPORT_SYMBOL vmlinux 0xbf9bbf71 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfabfe59 __debugger_iabr_match -EXPORT_SYMBOL vmlinux 0xbfb5d93c security_inode_readlink -EXPORT_SYMBOL vmlinux 0xbfb78e9e jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc02c257a __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xc0319c49 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xc0519e33 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0xc0733a7b freeze_bdev -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0ac5af5 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xc0bc72b7 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0xc0c6e9b9 vme_irq_request -EXPORT_SYMBOL vmlinux 0xc0d33756 agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0xc0e61f0a clkdev_alloc -EXPORT_SYMBOL vmlinux 0xc0f2d725 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0xc11bcf07 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xc120fab0 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xc133b8a9 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc -EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit -EXPORT_SYMBOL vmlinux 0xc1677527 generic_setlease -EXPORT_SYMBOL vmlinux 0xc16952c4 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xc16a8049 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xc1d1e549 lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1def729 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1efa7bb kthread_bind -EXPORT_SYMBOL vmlinux 0xc1f6b9fd __check_sticky -EXPORT_SYMBOL vmlinux 0xc2004650 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc25a121a iov_iter_npages -EXPORT_SYMBOL vmlinux 0xc2868b3f dev_uc_add -EXPORT_SYMBOL vmlinux 0xc28e5a7b of_phy_find_device -EXPORT_SYMBOL vmlinux 0xc28f2678 simple_transaction_set -EXPORT_SYMBOL vmlinux 0xc2993dad validate_sp -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a21ac5 simple_transaction_release -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2da8788 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xc2df2d3e tso_start -EXPORT_SYMBOL vmlinux 0xc2e50569 ilookup5 -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2f8791b xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xc2fc9223 md_done_sync -EXPORT_SYMBOL vmlinux 0xc30aaca1 bio_map_kern -EXPORT_SYMBOL vmlinux 0xc30e5519 get_task_exe_file -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc3278a5f nd_device_unregister -EXPORT_SYMBOL vmlinux 0xc33b197b deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xc3519f29 of_get_parent -EXPORT_SYMBOL vmlinux 0xc3612c37 backlight_device_register -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3dbbb8a inet_accept -EXPORT_SYMBOL vmlinux 0xc3e0a71e netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0xc3e6b489 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc3e84b00 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xc3fc21cb bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xc403477c crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0xc4125293 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xc41693ee jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0xc41fe978 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0xc4623955 fddi_change_mtu -EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xc47d81f6 revalidate_disk -EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc4a789fc generic_listxattr -EXPORT_SYMBOL vmlinux 0xc4af811d wireless_send_event -EXPORT_SYMBOL vmlinux 0xc4e7621b blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0xc4f3dce8 seq_escape -EXPORT_SYMBOL vmlinux 0xc50487e4 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xc51108c4 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xc520992f elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xc52845af param_ops_int -EXPORT_SYMBOL vmlinux 0xc52d962c rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0xc54c8ca7 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0xc5503b82 blk_stop_queue -EXPORT_SYMBOL vmlinux 0xc5530640 build_skb -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc55c29bd blk_get_queue -EXPORT_SYMBOL vmlinux 0xc55fb310 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xc5823061 __scm_destroy -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5a477e6 dev_mc_flush -EXPORT_SYMBOL vmlinux 0xc5d4f04c up_read -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc5fdf82d skb_unlink -EXPORT_SYMBOL vmlinux 0xc601d9b9 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xc6029244 __blk_end_request -EXPORT_SYMBOL vmlinux 0xc6121f06 mach_corenet_generic -EXPORT_SYMBOL vmlinux 0xc612fb17 ps2_handle_response -EXPORT_SYMBOL vmlinux 0xc61f1a69 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0xc623491e tty_set_operations -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc63a78e0 devfreq_add_device -EXPORT_SYMBOL vmlinux 0xc642be78 mfd_add_devices -EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc66cafba sk_capable -EXPORT_SYMBOL vmlinux 0xc6730afd nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xc68d722d bio_phys_segments -EXPORT_SYMBOL vmlinux 0xc6c04000 skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6e2f6e7 nf_unregister_hook -EXPORT_SYMBOL vmlinux 0xc70479eb netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xc707c5b6 vme_dma_request -EXPORT_SYMBOL vmlinux 0xc7091ae4 wait_iff_congested -EXPORT_SYMBOL vmlinux 0xc7110cda elv_add_request -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc72f1960 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0xc737b185 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xc7757dfd agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0xc77a61ad blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xc77bd0f9 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0xc77cb694 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc7898275 flex_array_shrink -EXPORT_SYMBOL vmlinux 0xc78a3775 blk_queue_make_request -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7aac190 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xc7b6f53b tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xc7c96513 km_policy_notify -EXPORT_SYMBOL vmlinux 0xc7df3f68 get_phy_device -EXPORT_SYMBOL vmlinux 0xc7f24a19 dquot_commit_info -EXPORT_SYMBOL vmlinux 0xc8063983 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xc8214641 pci_iomap -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xc841adf1 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xc842a8c3 block_write_end -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc8552477 cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc88e3e38 input_unregister_device -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8e37192 elv_rb_del -EXPORT_SYMBOL vmlinux 0xc8f7d8af truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xc90fa73d genphy_setup_forced -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc91d55a9 ppp_input -EXPORT_SYMBOL vmlinux 0xc924228b security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xc933d040 blk_run_queue -EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xc94b78bc mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xc951819c backlight_force_update -EXPORT_SYMBOL vmlinux 0xc9535120 lwtunnel_output -EXPORT_SYMBOL vmlinux 0xc95af27b mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run -EXPORT_SYMBOL vmlinux 0xc9913135 page_put_link -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc99fa97a mpage_writepages -EXPORT_SYMBOL vmlinux 0xc9a662d3 xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0xc9e013e7 padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0xc9f26c12 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xc9f4aa70 d_move -EXPORT_SYMBOL vmlinux 0xca00daf4 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xca05985b __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0xca0e0efe d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca198e60 dev_disable_lro -EXPORT_SYMBOL vmlinux 0xca1edff5 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get -EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state -EXPORT_SYMBOL vmlinux 0xca3b438a kill_bdev -EXPORT_SYMBOL vmlinux 0xca3bd887 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent -EXPORT_SYMBOL vmlinux 0xca7660e4 setup_new_exec -EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order -EXPORT_SYMBOL vmlinux 0xca86508f rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xca865fa4 sg_miter_skip -EXPORT_SYMBOL vmlinux 0xca8df667 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcaa85ed4 end_page_writeback -EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty -EXPORT_SYMBOL vmlinux 0xcadd5b36 iput -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb102df9 param_set_ushort -EXPORT_SYMBOL vmlinux 0xcb1f38be blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xcb496eee iget_failed -EXPORT_SYMBOL vmlinux 0xcb4a5e4e alloc_fcdev -EXPORT_SYMBOL vmlinux 0xcb4c219c devm_free_irq -EXPORT_SYMBOL vmlinux 0xcb6c68e5 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcbb2c9e4 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc40b75 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xcbc72523 param_ops_ushort -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xcc206416 compat_sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc30eb2a dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xcc3330be pci_match_id -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc8d42dd nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0xcc9519db blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xcca61af0 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccf41aff vfs_mkdir -EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xcd23c83a seq_lseek -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd2cd963 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xcd5bbfff blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0xcd5c0d3f mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xcd6a40c2 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xcd77a034 __break_lease -EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xcd81e4bc tcp_filter -EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xcd8a3c62 netif_napi_add -EXPORT_SYMBOL vmlinux 0xcda5b271 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdcee79f sock_create_kern -EXPORT_SYMBOL vmlinux 0xcdd3bf63 vme_bus_num -EXPORT_SYMBOL vmlinux 0xcde2d9b7 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xcdfbb664 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xce07307a blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xce122c99 release_firmware -EXPORT_SYMBOL vmlinux 0xce1d158c cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0xce214877 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce3a1c98 led_blink_set -EXPORT_SYMBOL vmlinux 0xce3b3f09 profile_pc -EXPORT_SYMBOL vmlinux 0xce438506 ps2_drain -EXPORT_SYMBOL vmlinux 0xce44d2aa mmc_flush_cache -EXPORT_SYMBOL vmlinux 0xce45e328 security_task_getsecid -EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce6880ce register_shrinker -EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift -EXPORT_SYMBOL vmlinux 0xce852462 tty_name -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free -EXPORT_SYMBOL vmlinux 0xcec886d8 param_get_long -EXPORT_SYMBOL vmlinux 0xced0c16e xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xced2fbd1 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xced777cb proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0xcee64824 freezing_slow_path -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefaebd8 param_ops_string -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcefde96d ppp_channel_index -EXPORT_SYMBOL vmlinux 0xcf12970e d_alloc_name -EXPORT_SYMBOL vmlinux 0xcf134f4e serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xcf1fb1fd from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xcf2ec14a vme_slot_num -EXPORT_SYMBOL vmlinux 0xcf461e88 eth_gro_receive -EXPORT_SYMBOL vmlinux 0xcf5ab98c inet_frags_init -EXPORT_SYMBOL vmlinux 0xcf81433e compat_ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xcf8839b0 __free_pages -EXPORT_SYMBOL vmlinux 0xcf8c6bc7 iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0xcf976c87 kset_unregister -EXPORT_SYMBOL vmlinux 0xcfa2ec93 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xcfabe2a7 udp6_csum_init -EXPORT_SYMBOL vmlinux 0xcfc5e861 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0xcfddce83 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xcff6aa3a iterate_mounts -EXPORT_SYMBOL vmlinux 0xd00313c2 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xd00c351e arp_send -EXPORT_SYMBOL vmlinux 0xd03e958c iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0xd04ed39c vfs_rename -EXPORT_SYMBOL vmlinux 0xd051b73e block_truncate_page -EXPORT_SYMBOL vmlinux 0xd05bcf6c contig_page_data -EXPORT_SYMBOL vmlinux 0xd063e42b lock_sock_nested -EXPORT_SYMBOL vmlinux 0xd06e504e security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xd06e7055 sock_no_bind -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd0737eb6 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd09b4c2b netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0xd0a2698f security_mmap_file -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a84998 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0bd5cc4 icmpv6_send -EXPORT_SYMBOL vmlinux 0xd0d8804b mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0xd0eadc26 tty_check_change -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f24443 ihold -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0f75bf7 input_flush_device -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd1051e92 bdi_destroy -EXPORT_SYMBOL vmlinux 0xd10f5cc4 revert_creds -EXPORT_SYMBOL vmlinux 0xd122791f input_allocate_device -EXPORT_SYMBOL vmlinux 0xd125bc7e pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xd1477426 inet_add_protocol -EXPORT_SYMBOL vmlinux 0xd151b4aa mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xd15d2c66 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xd16c86ad dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xd16e341f d_lookup -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd1832aa8 lro_receive_skb -EXPORT_SYMBOL vmlinux 0xd18aaa85 sock_wmalloc -EXPORT_SYMBOL vmlinux 0xd19209ca key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0xd1ce1c56 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xd1d78a60 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1edfdee security_path_mknod -EXPORT_SYMBOL vmlinux 0xd201d6f0 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xd20a930f inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xd212a3fc md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0xd216db79 __bread_gfp -EXPORT_SYMBOL vmlinux 0xd237490d simple_dname -EXPORT_SYMBOL vmlinux 0xd242c960 tcf_exts_change -EXPORT_SYMBOL vmlinux 0xd24381af blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd2694389 set_page_dirty -EXPORT_SYMBOL vmlinux 0xd269d79e get_agp_version -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd283c7bf dst_alloc -EXPORT_SYMBOL vmlinux 0xd2a1262b ata_dev_printk -EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc -EXPORT_SYMBOL vmlinux 0xd2c10229 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0xd2c97142 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xd2d107a0 inode_dio_wait -EXPORT_SYMBOL vmlinux 0xd2d5c369 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e94e36 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd335a6ab truncate_setsize -EXPORT_SYMBOL vmlinux 0xd343eea9 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xd3582af9 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xd35b321d dev_get_by_index -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd376699c lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0xd38f227a skb_insert -EXPORT_SYMBOL vmlinux 0xd39042dd md_flush_request -EXPORT_SYMBOL vmlinux 0xd3b0840c qdisc_destroy -EXPORT_SYMBOL vmlinux 0xd3b55285 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3bdeaeb n_tty_compat_ioctl_helper -EXPORT_SYMBOL vmlinux 0xd3cc5415 of_scan_pci_bridge -EXPORT_SYMBOL vmlinux 0xd3f9b597 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xd416388f key_reject_and_link -EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd4628ef3 key_type_keyring -EXPORT_SYMBOL vmlinux 0xd48293de tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xd494df8e kill_fasync -EXPORT_SYMBOL vmlinux 0xd5271851 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xd54b3ceb rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd57f5529 seq_puts -EXPORT_SYMBOL vmlinux 0xd5826b4a inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xd594c32a blk_init_queue_node -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd5950abc request_key -EXPORT_SYMBOL vmlinux 0xd59a1b44 qdisc_reset -EXPORT_SYMBOL vmlinux 0xd5af41f4 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xd5e62f2b mpage_readpage -EXPORT_SYMBOL vmlinux 0xd6135e8b inode_change_ok -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd6206615 kmalloc_caches -EXPORT_SYMBOL vmlinux 0xd6290ba1 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0xd62a9d68 inet_del_protocol -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd65f94ab dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68d9dd9 user_path_at_empty -EXPORT_SYMBOL vmlinux 0xd691b826 nobh_writepage -EXPORT_SYMBOL vmlinux 0xd6963227 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xd6b55eac __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0xd6e792a1 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 -EXPORT_SYMBOL vmlinux 0xd7153683 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0xd716c411 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0xd71a9c57 sock_no_listen -EXPORT_SYMBOL vmlinux 0xd721d057 nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0xd7295e98 dev_open -EXPORT_SYMBOL vmlinux 0xd73918e7 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0xd745925b neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0xd74d5bc3 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot -EXPORT_SYMBOL vmlinux 0xd78e7751 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0xd793d24d ata_print_version -EXPORT_SYMBOL vmlinux 0xd79907ba dev_get_iflink -EXPORT_SYMBOL vmlinux 0xd7b26d69 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xd7c5b328 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0xd7de1a40 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f59300 fasync_helper -EXPORT_SYMBOL vmlinux 0xd7f89220 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xd80051d1 d_add_ci -EXPORT_SYMBOL vmlinux 0xd807a76b simple_follow_link -EXPORT_SYMBOL vmlinux 0xd80ae170 input_set_capability -EXPORT_SYMBOL vmlinux 0xd8187278 cancel_dirty_page -EXPORT_SYMBOL vmlinux 0xd82b207a agp_put_bridge -EXPORT_SYMBOL vmlinux 0xd843ea82 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xd849b276 padata_alloc_possible -EXPORT_SYMBOL vmlinux 0xd84df5e0 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xd851cbd5 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xd86ef78e skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xd8921a61 phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8aab812 mapping_tagged -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd904029e lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0xd9078530 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xd925f3aa blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xd9396da3 invalidate_bdev -EXPORT_SYMBOL vmlinux 0xd93f3595 tty_lock -EXPORT_SYMBOL vmlinux 0xd95990c7 con_is_bound -EXPORT_SYMBOL vmlinux 0xd95d5de4 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0xd96711b7 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0xd97bb517 bio_copy_data -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9996b7d skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xd9b3877b nobh_write_end -EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9e42c26 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xd9f69a70 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xd9fa668d audit_log_task_info -EXPORT_SYMBOL vmlinux 0xda239d09 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xda262611 send_sig -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda458ab8 get_super -EXPORT_SYMBOL vmlinux 0xda47ac64 _dev_info -EXPORT_SYMBOL vmlinux 0xda4f4e74 bitmap_close_sync -EXPORT_SYMBOL vmlinux 0xda581324 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0xda74b3e6 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda9091f6 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xdaaf20c9 pci_bus_type -EXPORT_SYMBOL vmlinux 0xdabc1ea8 fsl_lbc_find -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac545b9 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xdacebd95 init_buffer -EXPORT_SYMBOL vmlinux 0xdad7adff dqstats -EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell -EXPORT_SYMBOL vmlinux 0xdaeedcef nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find -EXPORT_SYMBOL vmlinux 0xdb21316b skb_checksum -EXPORT_SYMBOL vmlinux 0xdb245948 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0xdb3e0c03 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0xdb4c736e simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xdb59a934 __sk_dst_check -EXPORT_SYMBOL vmlinux 0xdb60e304 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6f7199 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xdb72e015 param_set_charp -EXPORT_SYMBOL vmlinux 0xdb74c708 tty_write_room -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7a2af4 mntget -EXPORT_SYMBOL vmlinux 0xdb7c2652 kern_path -EXPORT_SYMBOL vmlinux 0xdb81dc52 vfs_setpos -EXPORT_SYMBOL vmlinux 0xdb840801 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xdba30a83 pid_task -EXPORT_SYMBOL vmlinux 0xdba5cb5e blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xdbe0a0c9 param_ops_short -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc104bd1 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc4b9188 param_set_invbool -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc753035 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xdc7c80f5 cdev_add -EXPORT_SYMBOL vmlinux 0xdc9498dd down -EXPORT_SYMBOL vmlinux 0xdca0cb99 release_sock -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcb1a44b sys_fillrect -EXPORT_SYMBOL vmlinux 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdcd3f6df xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xdce73731 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0xdcfb759e vme_bus_type -EXPORT_SYMBOL vmlinux 0xdd302ee5 sock_recvmsg -EXPORT_SYMBOL vmlinux 0xdd45c12d ip_mc_join_group -EXPORT_SYMBOL vmlinux 0xdd636ead __dev_get_by_name -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd719384 tcp_shutdown -EXPORT_SYMBOL vmlinux 0xdd72ce98 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer -EXPORT_SYMBOL vmlinux 0xdd955144 __debugger -EXPORT_SYMBOL vmlinux 0xdd9dc155 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xddb5d754 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xddc21f61 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xddde40b8 inode_get_bytes -EXPORT_SYMBOL vmlinux 0xde00ca31 skb_push -EXPORT_SYMBOL vmlinux 0xde11cfad devm_iounmap -EXPORT_SYMBOL vmlinux 0xde3ef363 blk_peek_request -EXPORT_SYMBOL vmlinux 0xde3f2216 bdget_disk -EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0xde7063fc kernel_listen -EXPORT_SYMBOL vmlinux 0xde736099 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0xde75e95d nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0xde7c86a5 __lock_buffer -EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde94dca3 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0xde97f4aa __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xded27463 __f_setown -EXPORT_SYMBOL vmlinux 0xded77938 pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0xdedcafdf always_delete_dentry -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf494f97 find_vma -EXPORT_SYMBOL vmlinux 0xdf52bba3 single_open_size -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf653ab4 scsi_dma_map -EXPORT_SYMBOL vmlinux 0xdf781023 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xdf8a60db ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdfa3f127 d_set_fallthru -EXPORT_SYMBOL vmlinux 0xdfa72a65 mmc_power_save_host -EXPORT_SYMBOL vmlinux 0xdfb3551c textsearch_register -EXPORT_SYMBOL vmlinux 0xdfbb2a72 nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xdfcaad0b agp_find_bridge -EXPORT_SYMBOL vmlinux 0xdfd48a26 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0xdfd4a2ac input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xdfd5d4f8 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xdfd658e6 fget -EXPORT_SYMBOL vmlinux 0xdfd6e712 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xdfdf6e9e path_nosuid -EXPORT_SYMBOL vmlinux 0xdfee0b2a blk_init_queue -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffea0be igrab -EXPORT_SYMBOL vmlinux 0xe010157d ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xe01cfb0d scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xe02425d6 mmc_release_host -EXPORT_SYMBOL vmlinux 0xe031e231 skb_checksum_help -EXPORT_SYMBOL vmlinux 0xe0459a23 blk_end_request_all -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe058de73 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0xe060912a nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe075c2eb param_set_short -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe08e15b9 swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0xe09c8685 mb_cache_shrink -EXPORT_SYMBOL vmlinux 0xe0adff9c genphy_config_init -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0bceb01 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xe0c6777f softnet_data -EXPORT_SYMBOL vmlinux 0xe0c9bbc5 account_page_dirtied -EXPORT_SYMBOL vmlinux 0xe0e298c0 blk_make_request -EXPORT_SYMBOL vmlinux 0xe0e34f55 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xe0ecfbba dentry_path_raw -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe11a863f posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xe128dbca __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe1436f31 mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0xe15f27cb kill_litter_super -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe17bf77b tcp_poll -EXPORT_SYMBOL vmlinux 0xe17e9111 inet_offloads -EXPORT_SYMBOL vmlinux 0xe1886d6b crypto_sha512_update -EXPORT_SYMBOL vmlinux 0xe18b667f cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0xe19f6d38 dm_unregister_target -EXPORT_SYMBOL vmlinux 0xe1b86729 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0xe1c4bebf security_inode_init_security -EXPORT_SYMBOL vmlinux 0xe1c8f732 pipe_lock -EXPORT_SYMBOL vmlinux 0xe1d6a44c devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0xe1defc40 phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0xe1ed8221 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0xe20ab2b4 genl_notify -EXPORT_SYMBOL vmlinux 0xe21cc87d lease_get_mtime -EXPORT_SYMBOL vmlinux 0xe21dc5a7 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xe21ddcdb bioset_integrity_free -EXPORT_SYMBOL vmlinux 0xe220c073 ll_rw_block -EXPORT_SYMBOL vmlinux 0xe220ceb8 __debugger_sstep -EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe24ecf0f twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xe25c2c8a tcf_hash_check -EXPORT_SYMBOL vmlinux 0xe277eec3 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0xe2966f2b cad_pid -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2af5b71 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0xe2b2f88e mmc_can_discard -EXPORT_SYMBOL vmlinux 0xe2ba05fb proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2f4aa67 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0xe31babb8 of_get_mac_address -EXPORT_SYMBOL vmlinux 0xe3309f7b tcf_em_register -EXPORT_SYMBOL vmlinux 0xe383bec1 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xe3a53f4c sort -EXPORT_SYMBOL vmlinux 0xe3aad16b napi_get_frags -EXPORT_SYMBOL vmlinux 0xe3aaef04 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3d8752e __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xe3e4bb6b unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xe3ee923e keyring_alloc -EXPORT_SYMBOL vmlinux 0xe3f979bd mount_ns -EXPORT_SYMBOL vmlinux 0xe3fad866 of_mm_gpiochip_remove -EXPORT_SYMBOL vmlinux 0xe40a1105 netif_device_attach -EXPORT_SYMBOL vmlinux 0xe42f056f pskb_expand_head -EXPORT_SYMBOL vmlinux 0xe43e6f2e max8998_update_reg -EXPORT_SYMBOL vmlinux 0xe43f2cc8 skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0xe44c16a0 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xe4528024 of_get_cpu_node -EXPORT_SYMBOL vmlinux 0xe478aa23 nlmsg_notify -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe49a7dfc fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xe49cb7d6 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xe4cd359e tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xe4d79fdc skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xe4eddb95 elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0xe4f1fd61 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe535668f dev_get_flags -EXPORT_SYMBOL vmlinux 0xe53749e7 security_inode_permission -EXPORT_SYMBOL vmlinux 0xe5409b78 __skb_checksum -EXPORT_SYMBOL vmlinux 0xe54df064 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0xe5525054 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0xe5578443 loop_backing_file -EXPORT_SYMBOL vmlinux 0xe55d6ca2 netdev_printk -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe57d278a of_find_node_with_property -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe5bbc54c genphy_read_status -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5f8db92 d_instantiate -EXPORT_SYMBOL vmlinux 0xe6190b85 block_invalidatepage -EXPORT_SYMBOL vmlinux 0xe62b2525 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xe643879c consume_skb -EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xe66452ab dql_init -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe69bd4ab ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0xe6a77109 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xe6aa61c1 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0xe6ad1317 skb_clone -EXPORT_SYMBOL vmlinux 0xe6c41ba0 dev_load -EXPORT_SYMBOL vmlinux 0xe6cb0039 km_query -EXPORT_SYMBOL vmlinux 0xe6f05bc1 unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe7020940 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xe71d4f90 __nd_iostat_start -EXPORT_SYMBOL vmlinux 0xe71d5436 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xe750266b nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0xe757aa81 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xe76f6cf6 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0xe77408b5 d_alloc -EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7bbfbbb netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xe7c8ba02 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0xe7cf9460 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe80befe0 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xe80cfc48 dev_add_pack -EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe82fdd22 __scsi_add_device -EXPORT_SYMBOL vmlinux 0xe830758d fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0xe83a7740 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xe8424d67 kernel_bind -EXPORT_SYMBOL vmlinux 0xe84ed5bc bdev_stack_limits -EXPORT_SYMBOL vmlinux 0xe8995f6f phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8b654a8 vme_lm_request -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8c438f3 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0xe8e91a58 of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xe8eae77a tty_port_close_start -EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe9154cc1 param_get_bool -EXPORT_SYMBOL vmlinux 0xe922e4c5 of_phy_attach -EXPORT_SYMBOL vmlinux 0xe9344035 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95a7de8 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0xe980efff phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xe99abf86 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xe9a407a7 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0xe9aaa925 mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0xe9bd1ad5 agp_collect_device_status -EXPORT_SYMBOL vmlinux 0xe9ef5216 inet_addr_type -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea11c1b6 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xea16b716 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xea18a7cc netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0xea2c1b1e abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xea2d0cda tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0xea315f10 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xea477b83 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xea4bc710 neigh_destroy -EXPORT_SYMBOL vmlinux 0xea4ce729 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xea4fdcce of_node_put -EXPORT_SYMBOL vmlinux 0xea50ee57 iov_iter_init -EXPORT_SYMBOL vmlinux 0xea59cb66 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xea5a3fcc __page_symlink -EXPORT_SYMBOL vmlinux 0xea659992 cap_mmap_file -EXPORT_SYMBOL vmlinux 0xea70aa39 textsearch_unregister -EXPORT_SYMBOL vmlinux 0xea7a334f pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea82f44c xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xea8e6c53 file_remove_privs -EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit -EXPORT_SYMBOL vmlinux 0xea9aecc9 netlink_broadcast -EXPORT_SYMBOL vmlinux 0xeac609f8 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xeac8ee31 phy_start_interrupts -EXPORT_SYMBOL vmlinux 0xeacc46ac ps2_end_command -EXPORT_SYMBOL vmlinux 0xeaf7b7d9 padata_do_serial -EXPORT_SYMBOL vmlinux 0xeb2f84a9 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xeb34e6ac take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb40c1bd blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xeb4384cd swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb48540c tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xeb60e8c4 twl6040_power -EXPORT_SYMBOL vmlinux 0xeb62d33a dev_mc_del -EXPORT_SYMBOL vmlinux 0xeb6c3285 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0xeb8867fa ab3100_event_register -EXPORT_SYMBOL vmlinux 0xeba48336 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0xebb1bb72 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0xebe1f173 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xebea7d57 set_cached_acl -EXPORT_SYMBOL vmlinux 0xebefe8ea compat_mc_getsockopt -EXPORT_SYMBOL vmlinux 0xebf8148e skb_put -EXPORT_SYMBOL vmlinux 0xec04b905 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0xec0d74ac unregister_key_type -EXPORT_SYMBOL vmlinux 0xec147f6a setattr_copy -EXPORT_SYMBOL vmlinux 0xec199aa6 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0xec205496 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xec2b7496 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec6c393f mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0xec8e72d8 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0xec9ff2e7 lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0xecb1ec13 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xecb3ccb9 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 -EXPORT_SYMBOL vmlinux 0xecbd35c0 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xecdfc1ea register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xece886ef pci_bus_put -EXPORT_SYMBOL vmlinux 0xed00dcfa task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0xed134eb7 simple_open -EXPORT_SYMBOL vmlinux 0xed218a17 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0xed5564ac padata_stop -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed617ef4 dma_sync_wait -EXPORT_SYMBOL vmlinux 0xed9a4545 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xedb985ad dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table -EXPORT_SYMBOL vmlinux 0xedcf304d pci_request_region -EXPORT_SYMBOL vmlinux 0xedd2215f brioctl_set -EXPORT_SYMBOL vmlinux 0xedf0ec68 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xedf1f440 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xee086c61 mutex_unlock -EXPORT_SYMBOL vmlinux 0xee0d0be8 get_acl -EXPORT_SYMBOL vmlinux 0xee0d7b87 padata_do_parallel -EXPORT_SYMBOL vmlinux 0xee1824f9 __get_user_pages -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee485745 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xee600516 load_nls -EXPORT_SYMBOL vmlinux 0xee602f61 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee9c7b71 bdev_read_only -EXPORT_SYMBOL vmlinux 0xeea4d9b3 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeecf1b41 read_cache_page -EXPORT_SYMBOL vmlinux 0xeee1ad47 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xef0ffc27 of_translate_address -EXPORT_SYMBOL vmlinux 0xef15fcea inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xef1ef81b scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xef25f4fe kernel_accept -EXPORT_SYMBOL vmlinux 0xef3c8152 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xef45a194 dst_destroy -EXPORT_SYMBOL vmlinux 0xef7753f2 mmc_start_req -EXPORT_SYMBOL vmlinux 0xef7fa957 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xef9429fa simple_transaction_read -EXPORT_SYMBOL vmlinux 0xefa80845 alloc_fddidev -EXPORT_SYMBOL vmlinux 0xefae3edc agp_free_memory -EXPORT_SYMBOL vmlinux 0xefb55cd0 key_put -EXPORT_SYMBOL vmlinux 0xefc0966e __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xefcdb31b pci_claim_resource -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range -EXPORT_SYMBOL vmlinux 0xeff84e97 input_close_device -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf003f9c8 rtnl_notify -EXPORT_SYMBOL vmlinux 0xf0179458 fput -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf03c6f11 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xf0445334 get_gendisk -EXPORT_SYMBOL vmlinux 0xf0476fb9 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xf04c55d4 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0xf04cbf2c seq_open -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf06c122e security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xf073edce ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf09f06ce __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xf0a217a9 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xf0c5cd55 ppp_register_channel -EXPORT_SYMBOL vmlinux 0xf0d08074 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xf0d70b5d vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xf0de5bfb __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf119615b max8925_bulk_write -EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible -EXPORT_SYMBOL vmlinux 0xf12f8a34 param_get_uint -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf1537c9c lock_sock_fast -EXPORT_SYMBOL vmlinux 0xf16c9b0b mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xf16df3a9 mmc_fixup_device -EXPORT_SYMBOL vmlinux 0xf183189b __ioremap_at -EXPORT_SYMBOL vmlinux 0xf188b9e8 compat_tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1b64bfd powerpc_debugfs_root -EXPORT_SYMBOL vmlinux 0xf1b8c676 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xf1d63be5 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e75399 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1f70e4e input_event -EXPORT_SYMBOL vmlinux 0xf1fcc3dd tc_classify -EXPORT_SYMBOL vmlinux 0xf2060323 pci_enable_device -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xf2185b28 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0xf21b65f0 sock_no_accept -EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock -EXPORT_SYMBOL vmlinux 0xf229b700 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xf2365ebe i2c_master_recv -EXPORT_SYMBOL vmlinux 0xf23e8d9c bio_integrity_endio -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf2459939 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xf24967b7 agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0xf24b6d2b xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xf26aac78 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0xf2ba1c6b of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0xf2c20084 bitmap_unplug -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf30dccbc __skb_tx_hash -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue -EXPORT_SYMBOL vmlinux 0xf32f3710 fd_install -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf33c89eb scmd_printk -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf35305c3 max8925_reg_read -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf3813b56 netif_napi_del -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf38ea701 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf3a3c267 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xf3c699d0 vme_register_bridge -EXPORT_SYMBOL vmlinux 0xf3cbbe76 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xf3dde195 __ps2_command -EXPORT_SYMBOL vmlinux 0xf3e02029 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3fdf0b2 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xf3ffd65d inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xf4066a97 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xf41aad84 ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xf43f91f9 mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0xf4408f05 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf45ef7a2 do_splice_from -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf47cca72 blk_complete_request -EXPORT_SYMBOL vmlinux 0xf4995f11 insert_inode_locked -EXPORT_SYMBOL vmlinux 0xf49fd736 nd_integrity_init -EXPORT_SYMBOL vmlinux 0xf4b46c37 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0xf4bc8d09 mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4e7730d generic_fillattr -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0xf52423e5 filemap_fault -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf53e38ed pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xf543dc46 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 -EXPORT_SYMBOL vmlinux 0xf55ccae1 pcim_pin_device -EXPORT_SYMBOL vmlinux 0xf57cdc79 bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xf581ee91 lru_cache_add_file -EXPORT_SYMBOL vmlinux 0xf5936c96 kill_anon_super -EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set -EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io -EXPORT_SYMBOL vmlinux 0xf5aff767 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xf5b25e2d netif_device_detach -EXPORT_SYMBOL vmlinux 0xf5bca8da locks_init_lock -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5d7016a inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xf5da8f6d d_prune_aliases -EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister -EXPORT_SYMBOL vmlinux 0xf5e93b05 lookup_bdev -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf61c6143 zero_fill_bio -EXPORT_SYMBOL vmlinux 0xf62a02e4 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf63b9990 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xf65343c0 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0xf6713810 init_task -EXPORT_SYMBOL vmlinux 0xf675cdd7 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf68e63c9 dcb_setapp -EXPORT_SYMBOL vmlinux 0xf6af25e6 km_policy_expired -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6e73e31 lookup_one_len -EXPORT_SYMBOL vmlinux 0xf6eba011 fb_show_logo -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6ee00d5 vga_client_register -EXPORT_SYMBOL vmlinux 0xf6fa8001 scsi_init_io -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf742c4b1 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xf746b677 skb_copy_bits -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf76a0f02 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0xf773b686 kernel_getpeername -EXPORT_SYMBOL vmlinux 0xf781bd4c pci_scan_slot -EXPORT_SYMBOL vmlinux 0xf788f206 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xf78cbd09 proc_set_size -EXPORT_SYMBOL vmlinux 0xf7ad1ace inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xf7b3cd7c dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0xf7b71cf4 key_link -EXPORT_SYMBOL vmlinux 0xf7c4fe0b tty_kref_put -EXPORT_SYMBOL vmlinux 0xf7cdc736 clkdev_add -EXPORT_SYMBOL vmlinux 0xf7cfc801 of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0xf7d6dbe2 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xf7d939f7 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xf7e7533b generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0xf7ef5f43 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf825dbed ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82bc807 __napi_complete -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf84bb781 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xf84cfb82 sock_register -EXPORT_SYMBOL vmlinux 0xf862fc1f vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xf8755967 scm_fp_dup -EXPORT_SYMBOL vmlinux 0xf87a483c sock_update_memcg -EXPORT_SYMBOL vmlinux 0xf8887ebc tcf_hash_create -EXPORT_SYMBOL vmlinux 0xf894ea3d fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0xf8b3df6b sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xf8c74c6b nobh_write_begin -EXPORT_SYMBOL vmlinux 0xf8cd72f5 d_set_d_op -EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0xf8e50f82 console_stop -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf8f117bc __secpath_destroy -EXPORT_SYMBOL vmlinux 0xf8f5f461 scsi_remove_device -EXPORT_SYMBOL vmlinux 0xf90727af fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0xf90eb422 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xf9228003 get_immrbase -EXPORT_SYMBOL vmlinux 0xf93601b1 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xf952f33a jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xf981cd94 kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9b54bb3 input_register_handler -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9cf89fc scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xf9e6dc3d i8042_remove_filter -EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0xfa0d7e6e inet_add_offload -EXPORT_SYMBOL vmlinux 0xfa17033b simple_write_end -EXPORT_SYMBOL vmlinux 0xfa205d13 netdev_state_change -EXPORT_SYMBOL vmlinux 0xfa3b0e46 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5ae61d lro_flush_all -EXPORT_SYMBOL vmlinux 0xfa7b2a43 nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0xfaa6dcfd i2c_transfer -EXPORT_SYMBOL vmlinux 0xfab6b0dc cleancache_register_ops -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfb26dd57 generic_update_time -EXPORT_SYMBOL vmlinux 0xfb50b903 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xfb64cddf kill_block_super -EXPORT_SYMBOL vmlinux 0xfb653638 posix_test_lock -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfb96db6e invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xfba9b66c netif_skb_features -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbb50fbf km_new_mapping -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbcbe8d5 get_cached_acl -EXPORT_SYMBOL vmlinux 0xfbe085be set_user_nice -EXPORT_SYMBOL vmlinux 0xfbea40d1 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0xfbf2a993 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc039b56 tcf_register_action -EXPORT_SYMBOL vmlinux 0xfc0f7c03 bio_uncopy_user -EXPORT_SYMBOL vmlinux 0xfc1cd3ff vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0xfc3387de pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0xfc37c4dc rtnl_unicast -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node -EXPORT_SYMBOL vmlinux 0xfc51fb28 get_tz_trend -EXPORT_SYMBOL vmlinux 0xfc6dc01e jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xfc818ed2 inet_del_offload -EXPORT_SYMBOL vmlinux 0xfca90b09 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0xfcaa1179 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xfcbcdd07 __breadahead -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcc390ff netdev_features_change -EXPORT_SYMBOL vmlinux 0xfccc333b dquot_disable -EXPORT_SYMBOL vmlinux 0xfcd83f20 __scm_send -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf80369 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd24bc05 mutex_lock -EXPORT_SYMBOL vmlinux 0xfd2d96aa set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0xfd787d90 ps2_init -EXPORT_SYMBOL vmlinux 0xfd8367c5 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfdc1f3f4 ata_link_printk -EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xfe35aa4a percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xfe5362f4 bio_chain -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe5ed923 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe8adf9b generic_perform_write -EXPORT_SYMBOL vmlinux 0xfe8c6bc5 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfea119c9 skb_queue_tail -EXPORT_SYMBOL vmlinux 0xfeaddfae bioset_free -EXPORT_SYMBOL vmlinux 0xfecaada4 blk_init_tags -EXPORT_SYMBOL vmlinux 0xfecd961a napi_gro_receive -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfedd7e4b __invalidate_device -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xff02282f get_mm_exe_file -EXPORT_SYMBOL vmlinux 0xff0ee350 scsi_print_result -EXPORT_SYMBOL vmlinux 0xff19f5b8 current_in_userns -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff2c178e compat_sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xff324466 phy_disconnect -EXPORT_SYMBOL vmlinux 0xff63add8 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xff782a6b vfs_symlink -EXPORT_SYMBOL vmlinux 0xff82afee elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xff868426 vfs_readf -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff95e0d0 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffa30465 elevator_alloc -EXPORT_SYMBOL vmlinux 0xffcb82a5 pci_dev_get -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL_GPL crypto/af_alg 0x1c15ef9a af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x2a5bab6b af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x4ac6dba7 af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0x72e70417 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x765ca73b af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x78fdcdcd af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x8ea1ae8c af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0x8f89f843 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xa28294e8 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xd2ab5440 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x93a0d34d async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x461568bc async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x53c1b6c6 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x0d79d613 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x816c5b37 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x61421e0b async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb667b23b async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc26964d2 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd006c25e async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x82e4b243 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xde66c4a9 async_xor -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x67e4c994 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xbd177a76 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xa34134f0 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x6041175b crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x880e1c93 crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x0a5297eb cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x0adcd3e0 cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x20f7ebd8 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x2835395d cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x342d9d7a cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x400a1584 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x45c29b1e cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x82d5006c cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x880e80d3 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xce625e43 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0x74222a7d lrw_crypt -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/mcryptd 0x0fcb7d7b shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0x1510412b shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x85997593 mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0x9d4ec094 shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0xa0bff331 mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0xcdcd9ca5 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0xd968951f mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xe42db579 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5cdded32 crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5f4201df crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x782e527f crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x95cc92cd crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbca157b9 serpent_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x29c6e0aa twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0x0f76382c xts_crypt -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x013daeb1 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x06fe6d55 ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x102c5f34 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x17f0df81 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x329773fc ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3763b4b0 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3e955780 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5c968ea4 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x627f2529 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x78965b5b ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x86ab6de7 ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8e9bf012 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x95efec48 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x97617d0f ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa628c6de ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xafe07d6a ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb25a56d7 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb85c6da4 ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc09d47ff ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc48d3985 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xde9eed51 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe732a7a7 ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf69e0b65 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x18f9cfa6 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x466a2f5d ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9edf9783 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xaeb4cb89 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbf07ccd0 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xec1f4dde ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xec4a91c5 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf3513e35 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfb6758d9 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x40549bb2 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xcbc593fe sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x169ccfa3 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x86a01b41 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb42b330d __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb76c2252 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1ff13e42 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x20aa6762 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x239e6fca bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2a53f46e bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x42faca27 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5bcc1839 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x713ab5f9 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x75872aa7 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fac6fbc bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8017b2ae bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x85455b0f bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x86682c15 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbee76035 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc21f7695 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc41fb1a6 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcc9c374a bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd7f5e230 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdc7439fe bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xea26063e bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xea7201e7 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf483c29e bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf92065ce __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf9fe4ec9 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfd32d2a0 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x19a9d4c3 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x546de0d1 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5e851abb btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa0c4cea2 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb97411fc btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd3115f77 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1e7c1c84 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x21ba2e67 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2fd90a52 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5615a886 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5d985bc6 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6b599ffb btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6be3794c btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x757e4f58 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8e680512 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xac94af6d btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc9d163fc btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3a7c8d8b btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3afea7f5 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5664cf7a btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6a71892f btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x74805416 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x74c9c73c btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7cc4890a btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7e2b2902 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x94b59b03 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc9f975b7 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xff2f2cda btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4722b27c qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x69b08740 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x68f48b22 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xede7bf87 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x00c6b55a dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x66f8731c dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x834a4a34 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9c4b1afa dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf6967cac dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/fsldma 0x4f90f402 fsl_dma_external_start -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x0955b5fb hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x7ab328d4 hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xec6656f0 hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x1ac8e571 vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x43a96dca vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x4c5a5616 vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x5125a157 vchan_find_desc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x17cc21d2 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x30ae8cea edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x44a35b46 edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x55e070b6 edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x60110ea7 edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x61c8c1d6 edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6203e826 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x630d9fc5 edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x64cdabf6 edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x78c0308b find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x80133c8a edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa2b3a27c edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xaafde48b edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb0107a90 edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc1c6b7d1 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc745e57f edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc8ed5fc5 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd105ea1f edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd3c1011a edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd614ffe6 edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd6574f6f edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe10dba5d edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfd8b609b edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2a18ca10 fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5a3ce502 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x654d4406 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x89643197 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8caf3842 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9b6e586f fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x5567f7d0 bgpio_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x8d5ae746 bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x2c70b68b __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x8ccdcb2d __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x036e5594 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4414f38e drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x50cd9064 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc93e5f98 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfce0b01e drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xffc29ca9 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x05633f30 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x43af8d61 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xa6e3ddc6 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0fd0a2d6 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x24556c67 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c6ac441 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x379378fc hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c64ea6f hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x477e2b16 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4c19b399 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x51b5541a hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x542ba90a hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x57630164 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5b50ad3e __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5dc1d05b hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6089d467 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x61b44576 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d64a148 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6fd4e921 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x702de728 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7967fc8a hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7a1d571e hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7f0fe30c hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x82199dcb hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x92effa82 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b405965 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b73824f hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c67d991 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0xafc0b694 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc218bd7b __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc23fa21d hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc836016a hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xca26d935 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe579374d hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe77c4a58 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xebbe19b9 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xee5cbfd1 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf925c93c hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc3f5cb0 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xc4418147 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x10702424 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x19b1a9eb roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x65230187 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8f6b02a3 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb11b5598 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb1800777 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3b503761 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4d80fa98 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7d1ecfbb sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8847496a sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8c063f45 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9d124773 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc4fdb627 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd7fd8073 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xee298521 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x7d96d9e7 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0c10d965 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x21236921 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x259e3904 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x36f5df63 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3a8b2231 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4b0739c3 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6d20f10a hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6ef40ff8 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x756c42df hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7b59f4cc hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7e55e465 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x855f2910 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x924ee0a5 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9aa73343 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9e85bdc8 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaa502fd8 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd0c9d4c0 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdd33b71b hsi_release_port -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xa7dbaa26 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc8d35ed7 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x143f9b09 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x36986be9 pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4474102f pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x47628a1d pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x58539d6b pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7976be5c pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8ae267e1 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8f8fc0c9 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa5211896 pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xad7b64c8 pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb218e5be pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd4bd09d4 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe09f39bb pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xeddde256 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfe1edcde pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x38adac51 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5f871375 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x63de2aad intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7cf888f1 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8027efb5 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xcb8f92f6 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf3610c43 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x128b3d7e stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x308908dd stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5a9c70e4 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6e51000d stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd62975c1 stm_source_write -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x471f5bf6 i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x4c188b86 i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x52a98a98 i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xd8d21c37 i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xe27b1d6c i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x1abfe298 i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x41137a41 i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7a4682ac i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa904fd05 i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x147b9e6f bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x51740209 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xe8efd083 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x27307824 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x51721ca8 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x59b5d673 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x63bcd605 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6f54c0c7 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x78162b45 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8ec5b401 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb4af02ec ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd75cb709 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x8026a06c iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9ad1e077 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x333e6d27 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x68d02059 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x779a2cec bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xc2153657 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xde799942 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x087fef0d adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0b7d1cfb adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2b5fb994 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2f2a4f24 adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3466e6df adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5963f4df adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8a33168b adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbe7f93c2 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcfd0f036 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe925c474 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe9e3b7a5 adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf0d32045 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x05268d14 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0e04dd4d iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x12ad9a3d iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1425ca44 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3454704d iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3c71c7f0 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ca5cb78 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5076f6be iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x50b74184 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x54912a9d devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6ebadcf4 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x734d681c devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x77992234 devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x790476b3 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x81eee3ed iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8d037f5c iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x90348086 iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9ba7b204 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9d530ca7 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9f1cc1fc iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb2f74b62 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb3303aeb iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xba835e1d iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc2d264ae iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd4787aa2 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdaaa69c5 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe53bacbb iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe8a04593 devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xed3aa942 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf53f7c19 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf75bccfe iio_map_array_register -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x00d7ff43 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xa322048c matrix_keypad_parse_of_params -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x054bc038 adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x1d049c3f cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x68576f13 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9c1c3f9e cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x6b75db8e cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x85cb9636 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf00f3ed6 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x90f171e2 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xb537471f cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x594ff76b tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x9a9f1f12 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa64f9e65 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc132c851 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x26f8cace wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2c9f6cf5 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2fee7530 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x45d8f294 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x50b25e6f wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x647fa23f wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6af44a94 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6d30e121 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x853c08d9 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa8d5a2a1 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb56bbffb wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xded7b778 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0526e0ad ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x086552e7 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5cbc1ce2 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7e2dd90b ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa0f966a5 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa9b226f5 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbd99cf06 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xce6ddd9c ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd52edb44 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x17bb622a gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x57e27439 gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5de54efe gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5ed1fb7f gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x68b49b94 gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7667b032 gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7d25e9bf gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7e421506 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9d43141d gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa662bd8c gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb261ce43 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb42b0c8e gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb609558c gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc16dacd0 gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc622c93d gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd69dda68 gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe862cdb6 gigaset_add_event -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x201289ae led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3930c606 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5ff9789c led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6c0aa4e9 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc3edb8c5 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe5444bef led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x03b92913 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2a16e58f lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x64f3defc lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x744e534f lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9e554672 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa700f387 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb5935a3b lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbf7fca22 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdde1323d lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe105746a lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe84db660 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a0527be wf_register_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x27ed1708 wf_register_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x3e1d2436 wf_get_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x5358f966 wf_register_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x821e3059 wf_put_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x84dcf55b wf_unregister_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x8e261675 wf_unregister_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xdae9943b wf_put_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xefacf7fc wf_get_sensor -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x30c859e6 mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4b0d816e mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4f752a6c mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x71fda5ef mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x85b4b166 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x93d9a250 mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9e8fffeb mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa82cc2cd chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xabee8588 mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb0d98723 mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc9f62722 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd117d5e7 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xdb0dcb21 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0a43aa35 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0cd28963 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2a1a9578 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6b5c002a dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7d49cad1 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9b2c8ff6 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xab3f9034 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcbfee0f0 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe33098db dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7d15827f dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x26b758a6 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x81da4757 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x868031cf dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb229d9bc dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb8dbe1ae dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc2fd39bd dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcd585434 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x34a6dc9b dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x42c2cdb0 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x529a4f07 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x52c3e3d1 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbd099523 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc2dbe23f dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcbd6bb4b dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd935fe5c dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x045c464b dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x827a42f4 dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9f624559 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x10ad4854 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x26404504 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x28237741 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x61b59566 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x937da1ff saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa0319b64 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbe25a5f7 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc9e55629 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd62b275e saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xefc985c9 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0c2eb2bf saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1a9a3416 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2ee93b02 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd33b2c2d saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd6f9c7dc saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xde79685a saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe3c5ecc8 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0b71c5f7 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1c80795c smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1caed16e smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3804fce7 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3c0caab1 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3cfae1ec smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x702c2896 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x704f5db0 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x75364af4 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x82663ee0 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa0e6aa45 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xae0a59ab smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbf1463b1 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc924da1a smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe468b820 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf5b59b91 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf63a1312 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x970c65c7 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xb9c2cfc2 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x8cfcf4a6 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x11154e1d media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0x1584f059 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0x1bb0ed2c __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0x1e55f8ee media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x2f27fe71 media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0x435d02b6 media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0x46cb089b media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0x6cea88d4 media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0x736af73b media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0xa974374c media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0xb7e228ee __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xd38ca211 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0xe158b63e media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0xe9bb04c9 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xf7aefb46 media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0xfa23bc19 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xfe995a2b media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0xff8f3828 media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x5c3c3a5a cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x01538266 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x19f76610 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x43fdec5e mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x51e72195 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5736bbf1 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x673e9fe6 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6cb30d5f mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9ae22239 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa004c628 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa8505813 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xab58920a mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xaf9e6fa5 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xba4a95d8 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbf652b67 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc2a423aa mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd0beee61 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd8ef5c0a mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf38a40ed mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf89be517 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x02a9c5ad saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x051dd218 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x05672a9b saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x09792c03 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2aa00850 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2b5fa218 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x55e06938 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6c763e9d saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8d861863 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa03ae86b saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa5fd0337 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa966ca16 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc491c840 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xca3c1e62 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd45b9e3b saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd5d1b6ca saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe77524d4 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xecf779da saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf6ab426d saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0227b71f ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x647803ce ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x76e219c3 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9bc56dbe ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xcb387b94 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdb269c7b ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe1e80f92 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x01885805 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0a9f93d9 xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x31bdc1b2 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x782ac58a xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x9983d7dc xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x9ab90a85 xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xad447fff xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xd4ddde3a xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x16429f18 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x77a8cad2 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x001c3fc4 rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1b377269 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x28cd6a6f rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3649daa4 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x43368126 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5dda4609 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7285b482 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8ca7dd67 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x91a1acbc rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x939bc7c7 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb8818380 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbc7e3fd7 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbfe4ab9d ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdb70117a ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe52469df rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf3c63290 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x0492f137 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x61458c9d microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x0f7723e3 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x4fce58fc r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x10b4923d tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x02f39aca tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x3f21c551 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xa0c8f08b tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x02faab98 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xa9360267 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xfdbf4bac tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x1431e1f2 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x5d61b5db tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x2c43e02d simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x17b8cc1b cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1f026eb6 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2ce3210f cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x429ea392 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x467fef7b cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x57955804 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x71abe16e cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7d231da4 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x939510c9 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x98390b57 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9b1e1c50 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9c2399ea cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xae6b4bc3 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb61c8cf7 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb689006c cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc1a7505b cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdab2ec54 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe1bea799 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf1484a4f cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf1ccc5c3 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xb8dc7d11 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x6f0aa585 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x16f5e7fe em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x25793ff3 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2701d7ca em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2ff587bf em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3e8f8863 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5a4d790b em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7c92aaa6 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8075ec06 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8f39f89b em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xae6036b9 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb0948c70 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb1fbe283 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb3dc3caf em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc0069d9a em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc05b7f2e em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xde0ea283 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe9b64064 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf4e059cf em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x64bc779c tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x924dd613 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf51724ae tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xff9de2b5 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x186e1198 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x5f655b40 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x5ff1d78c v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xaf34e2a4 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf10d9771 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf6b3c11e v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x054c451f v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x2e717597 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1b651300 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1cbdbce0 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3c948320 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4004fac6 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4b1c4a05 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4caba545 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x584c8b3f v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5a1d519a v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x60dc8a45 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6b627810 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7855e9b5 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8287000e v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8cad3c58 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9a1dd762 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa28f8c22 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa6c75c17 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaad0e6ad v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb0229b17 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb222faee v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb8b0e560 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbb82b77e v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbcd35a1b v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc2ffb6ce v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd6472e74 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdb81a63d v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf38b67b2 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf70e5130 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x050e31c9 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0e26e3c7 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1a1897b9 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x294178f9 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x35eed246 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x54772366 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x609d141e videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x68c77a44 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6c440815 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7caab808 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x86cc3c60 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x89ac798b videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb08b7d71 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb6d86bfe videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb704d2a8 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc1860f56 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd304bd22 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd47ab690 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd9b79337 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe0855be7 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe4fada01 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf10b2c09 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf11a356c videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf8f07dc1 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3e93ab6f videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x52f0a748 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x8ff5b729 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xabcde7fd videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x4b307554 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x4efc1747 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x53fd5bed videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0045ed8a vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x13d9cfe9 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2879c10d vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3a315a6e vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3f2b7660 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5a4720d4 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6e1ab240 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6fd0a651 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7e34d178 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7e8a2dd1 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x84817b40 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x91346ea3 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x97e0a33a vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa235de22 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa496f217 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe55b06a6 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe850f8c2 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xee85181f vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x1637d5e1 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xf5acf8a6 vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x44f9460e vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd82316ac vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x1b64db05 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x03f41437 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x09cc5586 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0d41aade vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x10c21b40 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x120d3879 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x191d50c7 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x490859ce vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x55f7e2bf vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x645bd414 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6601bd8f vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6dd71456 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7300c652 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x774d55f2 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x798ac343 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7cd61dac _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8014eb65 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x83058067 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x86dcb357 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8d5267f4 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8d930acf vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x920ba391 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x968791a5 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9d4d9804 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa8e3dd0c vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb1047b03 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbc5f4e44 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc2cac462 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xce6173ee vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xda73c5b3 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdc33cceb vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xeed78e54 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf3f1c09e vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x9e21ae7c vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x08a2ad40 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x10e993f4 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1210a33f v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x167263c8 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1847b800 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2011d9a0 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24dc5e73 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4143ea9d v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50eb3b0a v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52065c79 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5eacb1a6 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61c963ba v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x71bccbd7 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7e28ca9c v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8879a7d0 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e2bb3a2 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8ed829a9 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a1dad40 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9ca16fc v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae409bd7 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae514596 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb10b47d9 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcfcbb499 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xda5519be v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdc55deda v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe444db17 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe9b6d74c v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xefdebf15 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff7a2f9e v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x1f206fc9 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x471c718d pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5083d216 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0609d0ef da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3793ed6e da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4e0f113f da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x67c43a0d da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x89f98a0a da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8c56e62e da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x922d6c4c da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x06937210 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4b055106 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5f612c2d kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x68104bcb kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x81949114 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9d23ccfd kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9dec0138 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe62cf2dd kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x11577d68 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x14bb450a lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xf6694555 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1581b47b lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x59fb3030 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x812bbd0a lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x85d129ac lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc67cd2f4 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc758bf5a lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xedefcc0f lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x1f11f4e1 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x32dc7584 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa69a8996 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x032d3a24 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x395a31de mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6bef8f96 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x79e07afe mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa9ad7379 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xab76a285 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x033747fd pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1fbf1560 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3f5c037b pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x560e59ed pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5c7c8f2e pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x695324e1 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xafe110a9 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbe87caff pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd65234f8 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe5b4f45a pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf1b4d8dc pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x8e34db3a pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xcb32f4db pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x0164d5ae pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x466b8785 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4d6111bd pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x606e987c pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x72389358 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x07b24033 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0bada2be rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0e496b25 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1907f55f rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2417710b rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x30d4af52 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x31630983 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3c62cfe3 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x46d3ddb0 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4cdf5996 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4ff5fbf5 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x50d1ff38 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x672c0603 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7919f1a4 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8fab9a4d rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x90e99641 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa3295626 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb1847e54 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb7cc6f56 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc307bdb6 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc4577456 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc7289dcc rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe816dc6b rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfddf3666 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0b028823 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1194f41f rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2345c24d rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x31ffa124 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x46fe7fa7 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x54c69c39 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x72f076bb rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x76d862d0 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7749e11b rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8ebf2901 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc584a708 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd20f3267 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd431b971 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0411f3b4 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x04d6b2d8 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0b23a5f2 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x21963e63 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2a67e6bb si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2d523ca4 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x317cc35f si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3a2be0c4 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3b325e83 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x433292b0 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x48be9acd si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x48f6739b si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4e3cd81f si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5748a55d si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x585a4343 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x67a37020 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x688cbaf4 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x74b037e9 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x75e763ee si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82d1cfd0 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x858f8c21 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x89825ff0 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9957aebe si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xab32f306 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb367f053 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb98ead33 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbd2af0d6 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xce99eaf4 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd4e57c64 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdbfadfcf si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdce97f6e si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe165a91d si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf62999f1 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfcb45c3f si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x161716a8 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x62cca67f sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8a4db05b sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xc9bc7b59 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd1c2d0d8 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x746397b6 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x901e60a3 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xed516a18 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xf312255a am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x5cae75b3 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xa6ded2c3 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xdfe94204 tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xfc639cd7 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x69d54f98 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x20160ea8 bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x3d56843b bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x7d341f6e bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xcf983b12 bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x0abcc36f cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1620327d cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa24bfe61 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd2416a34 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0c5abba7 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0fc03100 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x47926684 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8000982f enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb035bdd8 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb5350271 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb80d8a17 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xba234f84 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x03c1b5d7 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2f9406d6 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4b4184da lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5cdcff81 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa663ef33 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbd43b96a lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf481ea6a lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xff0afcec lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x611799db st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xe73dfb4f st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0e99dd28 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0f4c1f2f sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1b51acb8 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3fc2cb39 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x42d4fe41 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x75d9afc4 sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8461910c sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9ae013ac sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9cdd9fbb sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc6001d8f sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd13cd611 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe9480f63 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf1c1f16e sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf65ce45f sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0f48444e sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x22ba3130 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4e0d1730 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5125a2bc sdhci_get_of_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5ae981bf sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa38bb959 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xadcf9393 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xddfb96f2 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe57c86f8 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x0fa94b22 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xcd9e4b5c cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xf2b76eb4 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x1eda33c6 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x9371b790 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xed23fc40 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x7ce49ac7 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x40167256 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x8cc2403c cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe064c0ae cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0ef0f413 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x15c7a016 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1fefcc00 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x27823a0e mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3929d412 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3ed3ecaf mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4a858a0c mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4eb79fac mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4fb4123c mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5cd96cf0 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x624243aa deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6b2dc876 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6db2dbe6 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7b35bd62 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7cb6fc49 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x806c039f mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8baa793f mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8dfe01c7 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x92864940 mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x987411a0 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9949f9fc mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9fbcc62b mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa0f77fde mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa16533de kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa26379b3 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa3055ae8 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa472afe9 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa9f2ed4c mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc09b32ec mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5b5b239 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc710f3a2 register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc8453405 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcd916b3b mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd2008f35 mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd7be44fa mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe1ff3c9d mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe6663851 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xecfc6102 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf6aba68c mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf777b88d register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfd0ac162 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfde1659a mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x01759c61 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x120f0a16 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x401c460a deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xdd0d1f39 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xedb4e661 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x5fc997ca nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x6f9ec53c nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x21a89f17 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x5f01254f onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x8d663390 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xda4af6cb spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x052c68fc ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x12bfbf8e ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x45c74652 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4cd84a5e ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5d727357 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6761fec8 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x74ef1f26 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7776750f ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7ccbfeb9 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8b43a307 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbe99fed0 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcce4e890 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdbd37542 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdc32a3cf ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x68b85a1e arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x9c73a3e4 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0e06e8e2 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3af740f8 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x55ffd03e c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6b50c9e6 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa02fbb89 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xffcb4120 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x01b0d949 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x031b831a safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2e98eaeb can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x40e99263 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x41f263b6 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x441c89f2 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4775f52b free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x48ef9918 can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x50de0ccb unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x647cc80c open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x827b3124 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa5ea3369 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xab49e45a alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xac4e2a16 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb8bb66ec can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdf0010ab devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe1490798 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe6e800db can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x26b819f7 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4514429f free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8cbe7153 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xb5d3c224 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x301da26d unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6180a812 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb58c0723 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb91f98ec register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x17ccdd2d arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xa25e3be4 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x006433c5 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x038e79be mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0454c03b mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0484d291 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04c653f8 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04cae0b6 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ccd6deb mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e861083 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10d7d594 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15faca8b mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c390424 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ce2f52d mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x211f8b8d mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22339e5e mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35d2440d mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ae5b4b8 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b6f6393 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3db405a5 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e393d30 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x400b3d79 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x406fd0a5 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40b0c40a mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x416530ef mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41ea75af mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x435e9eb2 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44b9be07 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47698be6 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47b85b96 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48896a00 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a5934df mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b43c26b mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b4ab189 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x525ac412 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53b745f2 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53d07246 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x556c223e mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x577d8549 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5abbc8a1 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b13c78b mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68820de6 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69199148 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69aff182 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ac11b8f mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bc4508e mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f59533e mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fd1c43a mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7232a76f mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77775235 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7aece9ec mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b795ec2 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ec99df2 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f92a227 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85b614bd mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87221721 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x879d23be mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88b9e8a8 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c6ab89a mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cb62429 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94f21f62 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x979b0354 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a8c026e mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c13372a __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9db8c738 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e42d654 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f747254 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f80a9c7 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa22a2787 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa36a6bea mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5989635 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa80214c4 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8cae67c mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa117a3f mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac44502c mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacac0e46 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xada61e4b mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb11b3cd9 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5b148c6 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb645f720 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6b4ffa5 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb73d6d92 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb80a9e05 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8cebdb0 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9a5e5a4 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba9d74cc mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbe96b38 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf20cc77 mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc00c9a7e mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1c80343 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc260c03d mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3890ef6 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3c0df7d mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc44e3bb7 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc462145d mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc59ddb00 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5ccab53 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6075809 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6f34c57 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8d7cb28 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca1b9ace mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb19df00 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb1a916f mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdd396d3 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce53bd01 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2b9fe72 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2d72d84 mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd35a7336 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3dde7ee mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd52d6baa __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb4fda64 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0902afb mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe39e97e5 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4337a73 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7fceb36 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe86c1063 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeadef4df mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebe2a79f mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec7bef71 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed58abc7 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedfb5073 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf400213f mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf41f019a mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf50b2559 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf55dd8f2 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf93c1745 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x050c1a1d mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b07b87a mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x155f21b1 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18e2cb6d mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x209da1f5 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23b36f45 mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23dbd950 mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2651ea05 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b68a2e3 mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x360f89f6 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ff933da mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47e94fdf mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c688d8c mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cff1e21 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f4b37f4 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ff978dc mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x628d2717 mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77a91dd5 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cb50ffe mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82d0cfb1 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8634a68e mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a793e6f mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cd04a2f mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d09bd3f mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ddbeb53 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ec6a36b mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f06466e mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x937de25a mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ae54526 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9be8b10f mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c94cb84 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fefe648 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa111ec7e mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2e9d3f5 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6e78369 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba386bc5 mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc745615e mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd32ed077 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6b73dc8 mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8bc8089 mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea422128 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea6b70ae mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec52f80c mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7db956a mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd858c09 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xc385e022 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x011adba3 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x05137526 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0ef602c8 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa3377186 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x70efc765 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x76e2570b stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xddb52ee1 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf5c732b1 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0bd113ad cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1899eec2 cpsw_ale_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2d3536db cpsw_ale_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x34c33d75 cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3cc70162 cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x50342a30 cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5db5bc43 cpsw_ale_control_get -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8c06eaa5 cpsw_ale_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9aa6b5a1 cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa66e7bd8 cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb0ac2d12 cpsw_ale_dump -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb6117a04 cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xcdd09497 cpsw_ale_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdaad1e23 cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf710426f cpsw_ale_control_set -EXPORT_SYMBOL_GPL drivers/net/geneve 0x012b16d5 geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/geneve 0xf81c7e7d geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x23e9f93c macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2fefaa11 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4fa7cef5 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc8dafc58 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x34556e11 macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2262bf45 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x36ef8141 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7988a1cc bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7ce61d8e bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8b04aa4a bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa1aa0751 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbccf1080 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xde721c36 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdeacccc7 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf4d237dd bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0xe777108c mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x192997ff usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x431de542 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x59cb8dfe usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe1365a46 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x141e50f1 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x546dfc38 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x67a94198 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7228ad7b cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9be7ae67 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbedb5349 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe264e624 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf5b89730 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf9b7ea66 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2531c803 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3fb84855 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5d509053 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa85cc0b1 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xaab6156a rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xdfe05234 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x08b7a876 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0d11c352 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0e7b9baa usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x13104cfe usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b43ee21 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1e6b8f6e usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x292f5aea usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3037173b usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x31a93510 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3702920b usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3a4d5138 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4a16e577 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5b752e88 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x79e467b2 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7c00a660 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8f856928 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9db058e6 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa587f8b4 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa5a76070 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb0268204 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb23c869a usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb8dbdc41 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbd12a021 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc5337cf8 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd19d4426 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd27a44bf usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd2cdccb2 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdcaff3d1 usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe4074e5f usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8e456fe usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfa74ee66 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfe762105 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x79bb107d vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xd03bb8aa vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x579eb0dc i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5f724129 i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6ae2938b i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x710b9464 i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7f622ea6 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8eb6a66a i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x90906457 i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x951caca1 i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x952cbe40 i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa8be221a i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xac974918 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc16e6da9 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc606251c i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcf29e962 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe1189957 i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe555e5a9 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x2e74a5cc cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x970a68f9 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x9c7805cf cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xf44d37cb cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x641226fe libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x1dddcb3b il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x1ff705f7 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x4a09dfa3 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x5cfd050d il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xf7983206 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x05bb665e __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x12fe5bd9 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2184351c iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x28b4570c iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x36a3366b iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51871df0 iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5f35cb60 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x684399d8 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7505f49c iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7b1dbff4 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x900482e5 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9c5c7706 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa356f1cb iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa97ac522 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xac4ee368 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb45705d6 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb7e4896e iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbbc06e63 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbd492a14 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc6319ff2 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe04335e1 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf44aa738 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfcf173fc __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfe039ef1 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfe233b51 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x041b9fcd lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x074d91f0 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x15e63864 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1700b3ee lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2367e8e8 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2a2dd028 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x32f19878 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x410353bb lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4dbb9105 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x69b1901b lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9b61eab3 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa0770c2d lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc428f1f3 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd1a4b714 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xeb57091b lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfa14b32d __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x0b4fead6 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2ccb16dd lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x348a7777 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x73d130b8 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xb22510e5 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xb977529c lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf25a1e28 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xfe3db1ca lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x32752c04 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x39eeac58 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4c606cdd mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x540fd155 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x64811a6d mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x667c9226 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6a3f1120 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6d4f4e7a mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x78fde8ae mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x80250a6e mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8f3808f2 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8f58c824 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa1b0b97e _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xaed73850 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb2d79609 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbf56ee65 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcbc1f896 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd2c28cdb mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xeaa66882 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0a6610df p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x104d52ff p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x2b1bda95 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x65936a8f p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xaf6d5e16 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc55ee0e6 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc6b44264 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd8e2e4b6 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xda2f9317 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e1955a6 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb0658650 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf2fdfdce dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf97a697c rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0bac5b0a rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x14e89d02 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1e1db464 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2aa887ee rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2be20467 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3fd012cd rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x410f0624 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x431ec65a rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4775789a rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x60909915 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x60b88074 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x67f49775 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6d5a4b5e rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x830461b4 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8729f36e rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x87983527 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x99472456 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa89c678d rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xadd12ceb rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb4c587ae rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc01376b9 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc305b794 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd0a5a9df rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe4f0f8fe rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xebedcb50 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf335f09b rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfca4437c rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0f280002 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37a1ac96 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x39c4a112 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3f34273a rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x518b80fb rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x51ae2322 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b53a10c read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6179f027 rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62c13754 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7f30ff8b rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x86a94d63 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8aaa0fdc rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97232886 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc440528e rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf25a587 rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd46f5315 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe6c2cbb3 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd7a20ed rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xffc0abff rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x1c768415 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x657711c7 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6b66b66b rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x976ad2a6 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0affcd3f rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0b60af62 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x19f68eba rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2319d8a5 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x24c334b4 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x26748a67 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x36d18acf rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x39548be6 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3a6fd53d rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x40607473 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x43776c10 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4c5bdbc6 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5a64cde9 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5c75b642 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x609b2d40 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x62848c32 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x68c3ab73 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x68f34e9d rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x69e15a75 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6b6e10c3 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x756f01d8 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x77e1dade rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7813c6d7 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x883e491a rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8a3eac84 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x92d6abaf rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa4d413be rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xabfdf0c9 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc6ad9cf2 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc6dee361 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc722967d rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcc404966 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcd001abd rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xce8b0aef rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdbf7ba5c rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe1e4d6be rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe6d0307a rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xefa745c1 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x03e71e77 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x08fb082c rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fc535c5 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x36872ba3 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x36e7f25a rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3feaf921 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x671b35df rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9a73af4e rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa1fbfa89 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb66152e7 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbcc581e7 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc8aa9622 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xcdaf73d1 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x045ab680 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x096c7f24 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x09bbf530 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0c59708f rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x102fafc1 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1b673a29 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1d474738 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1e070068 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2bf38748 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2d143538 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3116c94d rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x321db587 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4aac9e18 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4d81f805 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5846399b rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5d612c89 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x62684723 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x643590d7 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x644ad95f rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x65a0ac66 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x68b6111f rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6f56a37a rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x76d74d32 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x82098c59 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x837c6892 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9a7b75e4 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9d73f4e6 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa53913fd rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb0fd58d6 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb5f7a711 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbaf67a92 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbf776951 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc0d8c29c rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc1b1f081 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc97d1e13 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd5da3e02 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdc90492f rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xddb2aa2a rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdf3bc10f rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdf8285b4 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdf8d08c9 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe3a7a91a rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe72f034a rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xedf88d3a rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf508a46f rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf8a17f9a rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x728cc53a rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xba989886 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe3406174 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xf3ab2cf7 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xf97692a5 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x27f19093 rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x8483082f rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xfdb73eac rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xfe768f0c rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0486db0b rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1a203353 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x480a2093 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x58f12253 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x59e4e0ce rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5f4a0e3e rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6722fd8c rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7efd11b5 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7f82d2a4 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa9fb29be rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xad45f692 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc9b0884f rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xde32390f rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe0e42c2e rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf7a9f6f8 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfa452761 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x76231e83 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xcb135e2b wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd30d9c73 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0744188a wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x09029063 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x11317e73 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x12de9190 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2202bf6a wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2d734ac3 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x303c4c53 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x36054da3 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x46ad84a1 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x58a09bb6 wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5c9a5c80 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5e75d95b wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76b8fb2d wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7a43d0ee wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84b8a981 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x881c40c1 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8cbe1340 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d82a7f6 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8fc5f43c wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9454255f wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x999f6bd6 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa09ad7d1 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa2a7901f wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa801f942 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa9188cc7 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae4509c1 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb1bb7828 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbfcdf8ff wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcfb8be21 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd1f4350d wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd356120d wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd5539b4d wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd664049c wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd90cbe90 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd9f23b30 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdca51282 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdd55a99b wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xde608ff0 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdf75867a wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe157760a wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe1cccdc6 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe5abe31b wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeab05aa6 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa2a08f4 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x01498988 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x73e59c04 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xcb50dc11 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xce6a340c nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x11353c74 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x38be7ac3 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5538dcfa st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5c69fe01 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x66242a67 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa6a3c86d st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc90195f3 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf1b126a1 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30ee522d ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x95d9a740 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xe439b14a ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x1d2975ac devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x2d191cfe nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x47745065 of_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x5fbeac6b of_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x62d84d99 devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xae935136 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xd1b39dfd devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xdca1dcce nvmem_register -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x35d75519 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x547bfde9 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xe4d72dc1 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x58ebb65c mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x6061fa91 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xdba370f6 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xea0454c8 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xefa0bb24 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x42fb5b45 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x468c9571 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4bcdb063 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7c6df7bb wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9a634fdd wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc78aac8c wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xe2a29f13 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0308294c cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0835928e cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a80f09f cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1c12eb63 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2121ca63 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x259f3bf0 cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2882b957 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c302c35 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c68735a cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d66515e cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f88cd8c cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4466219a cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44763d54 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4926f123 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5fbfe3e9 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x689aab20 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x691c2dd6 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70b5276e cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x739cf137 cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x784bef47 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7bcdc70d cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x800834ab cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x803e8ba7 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8986d1ce cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95db2582 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97e2c0c3 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9b93b32b cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c02e624 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa6b450c6 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa7adbc08 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa7f55060 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaaffc5e6 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab8127f9 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb4ca2923 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb632d81b cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbbf0caf5 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc2c2c661 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc662c92d cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xca6e61c7 cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcfff16f6 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd60f8e16 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd6fe5f29 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd7b297ce cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda61938b cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1b9f4f9 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfcdd7260 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x084212fb fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0c20a1d4 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1256fcf7 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x14145f82 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x22881d16 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5365eea3 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x57cf9b8c fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x63d78577 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x74c342b5 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7669da35 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8d8f0a38 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xad239184 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaee8d710 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcb0eca9c fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe2b6da32 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xeb870177 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x2d5ff67a iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x4c017db4 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x537c0e90 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6789b1a7 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6a7ed869 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe4b6994f iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x00615328 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x081a56de iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10260540 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x110b55e7 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1427afa4 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x192bcede __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21d1fef1 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x29131d5f iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2e3bd9f0 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ef86a55 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x37d569f2 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45d1ecab iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5de8c4be iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63ac3f8b iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6a84123c iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7255f80a iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7844ae1f iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d0d24f6 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x807508cb iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x816ee5f5 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x95929b7c iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x96f5bdaf iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9cf3cb8d iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaa258db0 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xafb8eb49 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb138ef87 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb22ac2e8 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xba8e64fa iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc552447 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc444e86c iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc757aea0 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcda0b71e iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7657139 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd783dabd iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9974675 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdbd2c85d iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf67b1e1 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0bf4c74 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe4f44cc3 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe7b06e5d __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf27ccd60 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf78e6179 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x059b4d0e iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x098e0662 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x289b3631 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x29fa7da6 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2d5db343 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3a9baa50 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x500ef3bc iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6adda695 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6d486a0c iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6de9bb5b iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7561309d iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9436780c iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xacbe71f0 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xafd14a81 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb2d21215 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc0165e3a iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe94a36fa iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x07f60ec5 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2245c2f4 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x26b38d12 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x29ffc6c4 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3417d891 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x36a2114f sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x45b8b76a sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x469aeee8 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6bb42b46 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6f586d9d sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x953846fc sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9894214b sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x99ba93bd sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a137180 sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9c6d0720 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ea615e5 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa4f52364 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc5a048b5 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc8e5d58f sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd08ac8ef sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd874ae4b sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xedcdf3df sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf7b56b28 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfbf4b64d sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07f82973 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d3e0bfb iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0dfc44eb iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12d54531 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x159b2f27 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a434b0e iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1afba17f iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e3785b2 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2bde54e9 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3701d982 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3af4cd71 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x46da47fd iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d7a34f1 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x51cdcb58 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x576ca6cc iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x63da4eae iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70aec1db iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x73d22abb iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d742b00 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x823decfe iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85bfce9f iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d26fab5 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa24bd085 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa628be90 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab0a74f5 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcdab12d4 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6939540 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6c73eab iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde8c679f iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde8ec6e6 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0bfde41 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe54258f7 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe54e11ed iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6e134ce iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xec5b2575 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf0656be3 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf35cde10 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf64872dd iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf89ac616 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff258d3b iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x67f30e8e sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7721a165 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xaca6d180 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe055e434 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x7739d3de spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x12f8a436 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1494065d srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2943786a srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5a8d10c9 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x805cf22d srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x84f1fe66 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x28d7e650 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x30bb42f0 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x30f1db59 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x59c67a69 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x9d802022 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa86efc11 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc61ccb4c ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x0db8851f ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x11ae99a1 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1feb7f0f ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc5b7549c ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd822db09 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe2e988fa ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf3d8960d ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4738353c spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4963f1ef spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x714d9841 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x835fcab0 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc9ba8022 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0da22b00 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4c274c04 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbb79764d dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xcf6bb5ba dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x07a80ae9 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x107a5dc2 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x392c83ad spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3e37ec80 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x464dd598 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5964087b spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5b4b5268 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x638bf4a7 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x71609f43 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x912ac379 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x946316b8 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9a58f56a spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa94c343f spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaed9ecba spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc95c9d05 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe4df5605 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf23bf70e spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf4471853 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x718ae308 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x002abb35 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x098ac234 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1295ab87 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x12f6e320 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2146f22f comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x35383699 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x387569c0 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x387f8393 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3b66fbd8 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4019b5a0 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x41e10a3a comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x44c98a0d comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x44e53871 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x469182f5 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x47c2923d comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4d544257 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x51f7056b comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x53beed70 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x55348500 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x56153831 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5940f0dd comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x60f2da5f comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7ae446c3 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7d0581be comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7d920523 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x83f3cf48 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x866fba16 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x98e96e86 comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9984cb9a comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9a4972e4 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa74d32f7 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaab15370 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb3734835 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd6487648 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf78dc850 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x22e33862 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2458dd66 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2cf66ecd comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6eac2579 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x7b3d2643 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb606b512 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xe6c5a194 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf316e435 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x16635a5a comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x1aba2e79 comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x568a6d4d comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb4a031b2 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb716722a comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xbd655ad6 comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xbf2872fe comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x009e6e7a comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0764e9f7 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3a951eed comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x405e1656 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xdf25f4fb comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xea681b72 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x7e50d1d9 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x536ea694 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x85c74dd6 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xee7302a0 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x07823426 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0858048b comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x266c35ae comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4c40b095 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x515a4f21 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7280a2f6 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7c60c37e comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8c44de6c comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbe289152 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xcb748644 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe962c752 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfa6d6017 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfb698201 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x46db82a1 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x4bcdc29c subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xb1c76338 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xbd6990b9 comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x80e3b842 das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x587c2744 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5c0d5308 mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6a535e44 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x712ddad2 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7b0c81ee mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7da16a96 mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7dc58b10 mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8e9f0a90 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8fdafa5f mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x92c4109f mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x95c25534 mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x95cc6cae mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcda5fc07 mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcdc11d81 mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd3838341 mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe2688533 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe92329c9 mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xee8b2f06 mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf2e890ad mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfab32af2 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfca6ec8e mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x481f14ed labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xb8a8b3af labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x12da4e34 labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x91822633 labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x9708fd85 labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xbfb5172c labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xf97e7c74 labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x059f3fb3 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0e331d1f ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x1ac1134b ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x72ad5697 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7a594b5b ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x952c26f9 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc543f94a ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd358318e ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x18a48091 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x2b8197f8 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x4493ad92 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x91eccc5c ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe5cdd541 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xfca39511 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x218709d6 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x26997f32 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x3df00393 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x538e6fc8 comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x81984200 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xec0a9379 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xfb1c4fa2 comedi_open -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0cc3f8b3 most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0f08fad5 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x17d26e50 most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x20e60084 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x33a58b3c most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x38e660db most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4527e115 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4c8964e8 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4d3a9761 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9436c695 most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb2a974df most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xba73ca27 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4311c751 spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x65eae71d spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6f73ab65 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x71f99064 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7bf4bfe0 spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9896cef2 spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbe0547c2 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbf2b5a8f spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd094e844 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfdede3df synth_add -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x169c351c uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0x402c6b1e __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xa9451c7d uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x23b0aedb usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x88f86655 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5c039843 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa34d9b14 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1efa99ab imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xac1ae128 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd03415c7 imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x071e3ae5 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x09cf6325 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6ad36ff7 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9fc5ff25 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa5a64848 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe0c92b81 ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x043af406 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x073781c4 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2e078791 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5da6ba67 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8644d7cf gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x87fa6b6b gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa223fda2 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa86810c2 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb1545d59 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc3d21599 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc5e10e4f gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcbf5d392 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xce8f427b gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe06d4896 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf1a9bba8 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x981e0645 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd3f183af gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x60799ffd ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c1f8746 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xc58fa028 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x077695a1 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0ee1416d fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x23280667 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4c2a8f6a fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6527af79 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x65c71f3e fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8057bac2 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9cff77c1 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa50af4a7 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xaab7c4d4 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb53ecee0 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc04ce1b1 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xec036e57 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xeda40cd3 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf69a9cc1 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x03a3a09a rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x149c3486 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1d20422b rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3b40ce8c rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4be80d94 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x57d3d680 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x62719cb0 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x66fe9f11 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7432616d rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaa17a25d rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xafc7af14 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc1cb02e6 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc50f66ba rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdc53d553 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf92f9fb8 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x09b7f813 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x161d6a6f usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x17760524 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x56bf830b usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5bd02120 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6c2962c7 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7eb21d12 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x82c32cca usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x83369817 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x845c8b63 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x870ce18e usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8fc30de6 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9642638f usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa38a8b0b usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa88516b8 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa9bf46ad usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaa5b9cb6 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xae894959 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbaf4adb8 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbf22b955 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc441b308 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc6d53417 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd4a2daa7 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdb8bf068 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdbd06a22 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdf9484f9 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe2910d1b usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe9640558 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeb38bf03 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xffde7a10 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0777c7ab usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x101feed5 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x26c50832 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2a3ab048 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x41b62063 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5b2fa1ba usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x61af983f usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x628f3018 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x64cefd5e usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x95d60868 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9ff9097d gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xae8bf20b usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdac3651f usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x19205fa4 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x82edfe47 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6ae3c2ad usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7448c9b8 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x830ba9e5 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x88a4aaae usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x99641832 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xcac2c0fd usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe7dc24f0 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf74980cf ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfae89876 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xdd7660aa musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xc1b8162a isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xd1f4ba2c usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1540fec5 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1ad92033 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2d76216a usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4063b9af usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x558904b6 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x56219d46 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5700744d usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6073df0d usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x64d6caf0 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7532bc48 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7e549c24 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x82ef5a3f usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8d8ec48e usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8e7314cb usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x971b94e2 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb201084d usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbca78f49 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc4ba5f97 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe9013684 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xea6707bd usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xed7db189 usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x03b9d406 usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x145e1aef usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1f82e3e7 usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2fd6233b usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x35dd7d7f usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3ffaf87d fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x45086af5 usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4d32d8db usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4f075828 usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x50ef5cde usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x56547b94 usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x608f7747 usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x66ad0da7 usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x69e2bf20 usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x845ed3cd usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x87b9d381 usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x94bf8864 usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbe1a1b4e usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc2ebb122 usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcc7368c0 usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xce70752b usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd1ed9515 usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdf6a3bb0 usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf1d64ba9 usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x50a082ee usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6a0d0853 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7554b0c2 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8425f8ef usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x87bb4e78 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa421089b dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa460963d usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa7666429 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa81e641b usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb6759204 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbabde94d usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd0a950f4 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0fdbf408 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7e7d0481 rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x85d258d2 wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xbcfc0a58 wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd4f08a45 wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xdd12c3e7 __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xe5ef52e3 wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x02ff15ae wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x24d99a9e wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2adc2430 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3d939e82 wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6fa5c8bf wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x795d92e0 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x867e4bbf wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9084f719 wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x922dd0d6 wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa1e04f0d wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb4f7eb88 wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb75bea4d wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd6cfe31e __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd80a7bf9 wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x3d1ea24c i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xce6d4f3f i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xf852cc41 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3561e865 umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x690b65ae umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x844e3099 umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa2a4e1fb umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc60a4c53 __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe4836ee2 umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe7e1446d umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf558d09d umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d0738fc uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x126bf934 uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x18276e94 uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1d9ad6a8 uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1e9a7deb uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1ed3cc0e uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2322b3fe uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2b15fa6b uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2b5ca220 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3d3f2f10 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x41e00c00 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x55d765a1 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x677512fe uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6994b628 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6d444b60 uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6ea8be1e uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x71a367a3 uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x75c002bb uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x75d983b8 uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7947d372 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7b55f25c uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x83656e48 uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9fcf48bc uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xaef29c27 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb0f795cb uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbc017734 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcd70bf6f uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xce7df178 uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd2410a56 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd31b2ad7 uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdbc509b1 uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xddfdc86d uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe0cc2e89 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe3fc11e8 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeb543233 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xed7ee567 uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf5b6b387 uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/whci 0x269df071 whci_wait_for -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x167780eb vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a761318 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x206b9877 vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x20a02265 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x24fd04c9 vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2725ec3f vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a164757 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x329e38d6 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x35664808 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3b4c2765 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4c0fafee vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x68d1d75c vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6c79f273 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6f31c926 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x77cc97a4 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7cb725e0 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x851210fe vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9c6fbb07 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa247f3cc vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xabc55a8d vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xacceae71 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaeaea602 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc491051f vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc6c0e4c1 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4760ce9 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf7478867 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf88e1008 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfee86848 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xffd81b9d vhost_log_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4c851353 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x699c7057 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x78cac96c ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xdb9a74bd ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xddfa441f ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x2f72f2ba auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x356bc168 auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x423c095d auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x486261d4 auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x48d9684c auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5be97cf7 auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x61a63698 auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa9a92fae auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd77c5774 auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfd6afe59 auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x3b6c9566 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x20996472 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xea9a8a46 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x287b7edb w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x45ec02af w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x50f4a5da w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x511b477e w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x66cf339b w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x83488f60 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb0fe5a08 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc97af7c1 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xd3997c2c w1_read_block -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x2b5fa457 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x59cd5555 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xa7e568b3 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2c31f4d0 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x34510733 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7dd56340 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8496566f nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa751f9d1 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc524e983 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe2437944 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x046ca05c nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05307edc nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0782b36d nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09b12946 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a93daef nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cb17980 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ed22da7 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ef24f0d nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f959566 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x111371e1 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12c8d656 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x141c8918 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14bf085e nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18fcecc3 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1d1a32 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f36c869 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f39945d nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fbe93e6 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x202ef1bd nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x238a47d8 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x245583d6 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2db63059 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fcc1e9a nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31560810 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31a96d15 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33e51b95 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x345e3345 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3570bb4f nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35999929 nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36089ea0 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e3df7e5 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f544b96 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x403f4dff nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x406587c1 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40665ebf nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40c5253f nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44b9af89 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46657b92 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x476adb8f nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a9fdb9a nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d5d1cb5 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f03fd3e nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x544c375c nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5775eef2 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x579e0b3c nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5847235d nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5885d4a5 nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c3cff48 nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ec257d5 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ff91663 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x624b798b nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x638cfb9f nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63d18bc6 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6490ec4b nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6513adc0 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x662e68e9 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x678349d5 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69c67b38 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a362fb8 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6acc5a90 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c93159d nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f537e6f nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70eb5e8d nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78c12a62 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8150c04e nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81a98d0d nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8434ec6b nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88395ba9 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88831b7a nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88ee6b28 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a449d04 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bfc677e nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d2706ab nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90b9b91b nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93978666 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa01475e1 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa030f4c8 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1e5ecbc nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa33f8b59 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa344a5e0 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3d3ec85 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa57a7586 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5f93266 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7e41d9b nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa80a291a nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab6e4dfc nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadeb544d nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae302280 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaeb61e49 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb247807e nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb92988bf nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba93cb20 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbed5bd92 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc20b6c13 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5166d86 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc57b2c90 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6b259c0 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c05ef3 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9deba3f nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcaa2a834 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb6ef626 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbb2cdee nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc1320ff nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce08e858 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd323e607 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3bdf09a nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd68686bf nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6a7b0fd nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdba4b528 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde45a8c4 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0975c2f nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe150fe53 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3081119 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3c42e1c nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5ac70af nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe936198d nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea3b6c54 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedea0f06 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf04a3256 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6bad571 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf87c150f nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbf0c322 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff00e18f nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x74052b25 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07ff754e nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09ea539f nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aa29fb9 pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15dda741 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24f15e0b pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c3b5c3c pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34dcdbc3 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36dc3b3e nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b1e0646 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4eb8757e pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f97358a nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5094c932 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5563361d pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5658f6d0 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x571a85d7 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58638eae pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5888725b pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a5dc64d nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cc28bf7 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e71815d nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e9f531d pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62bc6c4a pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66957146 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f3ea3c5 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x709cd5a4 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7438af99 _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74d83011 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x784905ec nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a861ace pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f15a883 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f557c8a nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fa4b6a4 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83bac94a pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b6a3385 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x929999ed pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9af48ead pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4f1b49b nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6911399 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac76f7e7 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0f28edc nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2f41687 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8b8036e pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd9a97d9 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe323e8f pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1213d26 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1a4b885 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc746a533 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb5bb0c8 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe32d6baf nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xecb3d95c nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeda13e4b pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf160cb4a nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7a02c7d pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7bf0938 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9380e7f nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfaf1839c pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfcff583d pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfdbf3799 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x42912ee7 locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7f5116f5 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xb1ebbb44 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0be3fc74 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x753bb2e9 nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x03e9db70 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x78384d38 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb28d1c26 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbc4b51d9 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc17cf906 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdbe0e189 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe65b6437 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1a5b73e1 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1d3cabe6 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x31173fdc dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x843082ef dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa0952c0b dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe789224d dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2a189918 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x6f96fec5 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe5107929 ocfs2_plock -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xb02c6fcb _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xda38ba64 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL kernel/torture 0xfc4c35b6 torture_shuffle_task_register -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0510d685 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x055b01f8 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x2756553d lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xb22c4d71 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x0d823f46 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x22b373f1 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x5094c736 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x888371ab garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xc9444690 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xd12b739c garp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x173ebf8e mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x3ff5e542 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x4b29992d mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0xd978a17c mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xdbb84ece mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0xef17b3ab mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/stp 0xa279e2ea stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xca634df1 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x1fa9f82e p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0x5a605d95 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/ax25/ax25 0xe84e6f93 ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x33c9fe23 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x81b36dad l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x85b4d6db bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x99877990 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9b0d107f l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb5cee11c l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd05e9231 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe52ee635 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x01e726af br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4cff1442 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9af439ad br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9cc27803 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc0c5243e br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc4a61148 br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0xdeb6b384 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe3ca3274 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x0079784f nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xe2663b9e nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x11ee515c dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f293816 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f88fb81 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x21321fea dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x225faeaa dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x24d9cd3d dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2c6c4922 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d9a4c59 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x30b9e946 compat_dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x34ce8772 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x39dd2564 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3b3e6525 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3e362554 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3e6acb8d dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x51c277e0 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x54beb51c dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5924a9d2 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e85782b dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x63cad52a dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6b08d348 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6c79b655 compat_dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x87ec038a dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8d30e275 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x95bad857 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x969f8ddb dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x96f47464 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc40104ba dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc6c54d38 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf1b786b dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf23acb0 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd03798a6 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd9974591 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4909c48 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe704346d dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf4c37d47 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfc9b501c dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0107154d dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5d33da31 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7ec70629 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x97a02ad3 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9b15730c dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc9a7a453 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7ac9f649 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x805f12f2 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xccf484cc ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xff1a9f1b ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ipv4/gre 0x38c259cd gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x90788a3f gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3b9cc70a inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x40b54801 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8dbc4cd0 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc0299b53 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcb925f71 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xedf81734 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x5eba4f73 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0adbead0 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x117ee16a ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x12345605 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1675311c ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x284355d0 ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4078febf ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x643ea4fb ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x715b422b ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x732a028e ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7b9fd129 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8709d4dc ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8f9f488b ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9fc84ee3 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd8082a5a ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdd635d70 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x06bb90e9 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xa7a01386 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x19659f36 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x318f8abc nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x63305b18 nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9f3d963b nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xe278fec5 nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xe516b287 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x9ab1b80e nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3b9fbfcb nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7b35e69b nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa2044bbe nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd08d14ca nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xef95ee4d nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xfb0e914d nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0dac69cb tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1601fd8a tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x48299c4c tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4b287949 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xba1a589a tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3c4378b4 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x509848e2 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9dbec50b udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xeca109c7 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x15b005a8 ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x479a5329 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5ddcb85d ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x670eb2d8 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x69ce230a ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x92d9b256 ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd0a38da3 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x34646820 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x6b918a3f udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x360cba62 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xc58b0d75 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xdcb6b9b3 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x2e23e2ed nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x115c06a3 nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1f396afa nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x6e2948d8 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x721de033 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xed7bf07e nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xe9cc85e6 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x08b646f7 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5ca7e725 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7c677d5a nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xabbc98f7 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb8e100b6 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x16927fc4 nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x04ae1685 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x10762cca l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x176007c1 l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1a8facec l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x27e0c376 l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3ee4fb94 l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x47a7b6e7 l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4ea97124 l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x82be1490 l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x96585da3 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc17767c5 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe3fc38f3 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf2f1cfa4 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf5d5a1ef l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf7811d0a __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf8828755 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x893766bf l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x00d68fc8 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x02145c46 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x094cc7b2 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0e0b357f ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x215f1e7d ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x842aa465 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8f8bb886 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x91f4c28d ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x96285e08 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa0a11ce7 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xafb21e59 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc3f789e2 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd33dffc8 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdb12b89c ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfcdd37da wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x10d5e8dc mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3bd6b31e nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7f586b7b mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9c8fcf28 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x11fda5bd ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x152f130b ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1f2cc785 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2a38ea28 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2a56b029 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x45b94bcf ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x55af7385 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x652762ae ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x65f06866 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x746bd845 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7865a988 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7ba5f771 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9fd916e7 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbc6cb368 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd0bd4983 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd1c367a7 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x04c51710 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4b510d6e register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x746113fa ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xfe043672 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01758c1a nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03be1a8d nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x043e68a3 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c46bddd nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f18325d nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f458dde nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11e609f6 nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1248f33b nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13545c58 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x154fa5e7 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16f98d40 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c1ce5b1 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e39a9e0 nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3146bfff nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x328747c3 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d898e5d nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e70df5f nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45f01e5c nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48f19553 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x555761cc nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x564a248a nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x580d051c nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x581cacc3 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59e0ced8 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59eb0a12 __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b27eea4 nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c598bbb __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x631d969a nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7261c041 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x749fed63 nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74c3e979 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x772d264e nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79940e0f nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7def1d61 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x801f3088 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x805d5170 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x812c7329 nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86b4ab31 nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88442de0 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e255242 nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90c6196d nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97022946 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e13bbd9 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4a4e5f7 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac573e52 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac618e89 nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac6e98ef nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae7458f3 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf829c35 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb11f4670 nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1bb3f69 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2bdf33a nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3dceec6 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4d57930 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7632429 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc3521fd nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe6c26b3 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc034d995 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0d82c03 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1b310b6 nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2698601 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc93185ea nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9af6703 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc759970 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd6df8c6 nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd168dbc6 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1ed0d31 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd26062be nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3a3e4a2 seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd41c642d __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd044c1c nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4ac61a7 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4f67ddf nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb4df006 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf202bb17 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf68c53ca nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf98cb299 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa6038ae nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x4a5f61f5 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xb1b76014 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x5ebba1b3 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3b70056a set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5c5ee333 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5e4e7b24 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5eb842a6 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x61e32c46 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x80df4d3b nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x92828f8e set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x97c99452 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdadd8660 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe36106ad set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x0c0b815f nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1c733261 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7b23bd65 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x850f64af nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xcb74b517 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x278b8563 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xcbf6d1de nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x27d55c29 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6152d3d7 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x78a8cead nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x96b413eb ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb6e14369 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe1d0219f ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfb7522b1 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xec7bdc64 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x4acda293 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x25819153 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x90af0b1f nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xccd64360 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xf4b26350 nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1c4ada9b nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1c921186 __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1e30612d nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2647c458 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x34ff33d2 nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x59d05b84 nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x813acae4 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb3f52403 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc2216e4a nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x583fb15a nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xbaf4d556 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x292281fe synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x68f8d89c synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0541b862 nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x15370024 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1a4b4486 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2574c616 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2d461dfd nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4792c6c7 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x544ce412 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x638f640d nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8a0c81e5 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaf113682 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaf363650 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbd33c6f8 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc1b05eb6 nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdb4668cb nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe738c1d9 nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xecc0a987 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf6febb21 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x185738a9 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4061a5d0 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x966e43ea nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa53eea79 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa73c21fe nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xae41851b nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe8dad18e nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x629950eb nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x9374ac90 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd5a55aa4 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x8e680e52 nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x120e3dbe nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x882bb1b4 nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xcd442114 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x0a72e828 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x6109242c nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7eab9c7b nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x922634fd nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xcf2847f6 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xd46d7350 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x17dc1fed nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x7140cfa7 nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xccddfb15 nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9a54e97c nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xfef104f8 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0426d4da xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0b2887e7 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x15b9abce xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1e8223bd xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2ee34481 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3686270d xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3d90c641 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x67c39fec xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad1c1075 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb3f3879f xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbdb0357a xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc1c97030 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd22bbae5 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdebb8492 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe229a8ba xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeda53a8e xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xefc529a6 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfbd47a1a xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfbe200de xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x31ba96c7 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x452b6999 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xda549e0b nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x14a4ba1d nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x4ff9da3e nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd7d15b91 nci_uart_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x20400665 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x28543444 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x752a2a12 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8208a751 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc0bc00eb ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd15a297a ovs_vport_receive -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdb5d327e ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe37054d6 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf015934a ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x266f845d rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x293343c0 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x388caa54 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x41601ce0 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x41b0066a rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x46d52b35 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x4c6d3b9a rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x562d4a15 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x66061fb6 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x67c609e1 rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x79eb5d80 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x7f400b71 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x9208190b rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x9cb99b7d rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0xa794c08c rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xaffc50fd rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xc1abd444 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc99a65ea rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xdd931504 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xdea6e4f0 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xeb636471 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xec0de82b rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xf70dc8b2 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x22a5d024 rxrpc_register_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x986a4b4f rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x777fc1d2 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa05dd341 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xfa661eac gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x002f6ec1 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00321dee rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x010de315 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0174fd05 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0270f5ac rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x028f3fc0 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04b5c851 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05f2e3e7 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x082aa4a6 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0846580c svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x088bf2d0 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0982f6e6 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09af7ce3 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bd346b2 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c4ab75b sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da06165 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fefc3c7 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12e3eb8e rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17b8da8a cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18e5fa41 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b8c3a65 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c972fb1 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c99ea7e rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ed39a92 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fac496e rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fb87f46 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20722e36 xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x209e92f7 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23848f74 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x243f2c00 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24ed43b5 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25666dee rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25ce45be xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2638e856 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a731c9b rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aac461e rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e9effe1 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ecbc153 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f47e168 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fd65ae5 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31990f8a xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a2a5f1e xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a72b692 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aa74de0 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b82b3ad cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bd64b3c xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c2dcfcf cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d87c674 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dfd44bc xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f8ef40c svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x407a2f4e cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41747574 cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42cd35a4 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45879b9d gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4588695c svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45e97826 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48b25805 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x495baf8a svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a04bdf6 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d83c186 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dc09515 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ff45c63 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50334688 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51f3c031 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52408a36 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58ecc13c svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a2ae861 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a7b4f1b rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a9a2e28 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b4c0a05 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x601c27ec rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63e9c1c1 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6552aa20 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67990827 rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x689209c4 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x696a8610 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c81d51b rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d1072c6 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7128a1c5 rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x721019fe svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x730abc38 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x749a325f rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7568baab xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x757b5b04 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7717423c xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a69509b rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b0a8704 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b5bf140 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b85c7fb rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ba505f6 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ce7d6c2 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d21351f svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d2745db svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80be04cb rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80ce1cd3 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x816bd5f0 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84091d9d rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84320f14 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8445eb0a svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x884e994e xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89292c97 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89d0d779 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b8598f2 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cbe4436 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d8c6c9a xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f9bb326 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fc8b1d8 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x921fbf89 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92250c28 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9467b888 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a65e6ec rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bf07d11 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d283ae6 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e6a562b rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e829ed1 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f8afd98 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa018efe0 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa069c829 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0a377b1 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0ff3347 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa254fbf8 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa31fe170 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa66da6e7 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7c9f1a2 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8c5bce9 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa942f5ea auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa97acbfd rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab428079 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabaa74a2 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadd25b7c write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae59a835 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaed9fddb xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaff4f8be sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb05dd7c7 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb06ddd63 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2166341 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbddf253b rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe117caa svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe7bb8aa xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2047b65 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc480dd4c rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5521300 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc89c18e8 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc913072d rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9a984ff rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcab4768b rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb8fd991 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccde66af svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce371a56 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd09a955d svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0c3dfd2 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd162bd98 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1e0c12a svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4a3e202 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4e78dfe rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8c92f6d xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd93a65b8 cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcafdc51 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0793839 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe17b23b7 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1c1a179 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1c25e31 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1cfd7f1 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2ce4395 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3b77c3d svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe670985f rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe876649b svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8843c55 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe95a1dc0 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe991487b rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebcb70b7 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec95dafd svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeda578af xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0c21e4 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0067db3 sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf020e64c xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf126d1fd cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3a56720 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3d95527 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5070d8c __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf58d2f5c cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5d51549 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6c29c8d rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf748a174 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf74f37d8 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7a789c0 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf92fbb40 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaae9f32 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc8c680b svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd1ae363 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdd68c49 rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfddf0467 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe8d7211 xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffa68484 rpc_release_client -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3e23d714 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x45349d86 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x453a976f vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5e096f9d vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8eef6378 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa65c5756 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa6abeb42 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa939d3b9 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xac8804cd __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb71e2bd2 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc125d971 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf5cf6029 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfd382493 __vsock_create -EXPORT_SYMBOL_GPL net/wimax/wimax 0x02bd01b8 wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0x037c4764 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x1f188aea wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0x3e125323 wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0x56fc6652 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x67169090 wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa4c39b99 wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa6b8baad wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa8485672 wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0xcce9b27e wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0xd4ba605d wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xde049bff wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xea606dac wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x20ac9601 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x225d21ee cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x406e309f cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x726464d0 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9399858a cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x96c9851e cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa75e853b cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbdc9b3c3 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcccd3f74 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xda6c11b1 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xea73c7b1 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xec67da55 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfc60f6ab cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x09a1e513 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x552f38d2 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x860d1db8 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xcd6913ee ipcomp_output -EXPORT_SYMBOL_GPL sound/ac97_bus 0xce7ef3c6 snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x29653453 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x74bbad0d snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd 0x11173093 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x44d437b2 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0x66bfa8f7 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x7585ad1d snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x7d7c7e04 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0xd5ceb6e8 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0xfbd30b83 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x267e4feb snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x79c633d8 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7bb3d880 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8a624415 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d0ec001 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9b14b31d snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb56e8663 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc7ea15ef snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf0644e46 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3a05d127 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x459e7d2c snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5321792a snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x66dfa3f9 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x97e69837 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9b269cee snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc30febfd snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd423cd78 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe2e3fe2a snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe8947414 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xea8dfc89 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1f174a15 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x30a387cf amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4a1f37cb amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xafd8191c amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbb938512 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbd139044 amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf3c1b751 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05db408a snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0720c279 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a508c0c snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0bc16e8a snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0da1f144 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0df8d45c snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ecb7ff6 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x126b0e8b snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13de69f4 snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1471d22a snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14af6ac3 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f23af98 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20c1c277 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x210ff9df _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26ad9e8c snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26d5f464 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26f0d75d snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x298f1515 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x29d13609 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a04b09e snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3109acfd snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34dc4731 snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c2cdd8d snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e98b0e3 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42d26d59 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42e6188d snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43be85c6 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48846654 snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x488d5413 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4b96de39 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4dd7c08a snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e469a87 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54927d2b snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56ac7ca5 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5700dfe9 snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ad1a8c5 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5cc313b7 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5cc57eaf snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f4e9f01 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e1408b5 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x724af45f snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x754bd19a snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a6f4055 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7cd20857 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fe41e54 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x833ecf17 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8565e64b snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8579930a snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88ab5353 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d9df7ed snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4a0e911 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa887e194 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab9f1d05 snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xabbfbf9b snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xadce80e6 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0e5880e snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1a09638 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb399ef33 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb6a2d8f6 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb844ce35 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8b1938c snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba263e6a snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb34d3c4 snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe662900 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe819d4d snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8c1a8f0 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc23f784 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb503c1e snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xefd165e1 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf7eb5c22 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc65a24a snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3d121a96 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x442f08f0 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7179a7c1 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc01f57ff snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc5999c53 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc7e2eebe snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x037fcb46 snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x047c5b3c snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05d6f527 snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05d7931d snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06b61ca6 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08b1cc77 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0975ac15 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09c7931e snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a397aae snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e50a25f snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f708a51 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1125c9ee snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1424b328 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15fb19fb snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1757d41e snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18226335 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c4798f2 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e17fe21 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21fc1981 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x232e64ec snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24768d96 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2abffb16 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c9ee257 snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ca76d43 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ca87049 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e869187 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34ab2554 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38218685 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b25e61b _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d849617 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ea66d0c snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x404f0d3e azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x429584da snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4474ef89 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46060e10 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x472de055 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47c7e41e snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c8f1323 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5035ba34 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51195b0d snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57e22759 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58995233 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59cdd6ca snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a83d40e snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b1d0f92 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ea00c55 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x604967d7 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x635a3be9 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63c5b875 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6466f4fb snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64d0f213 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6530b188 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6746190a snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67ea77d7 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ab62d0b snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b97ed47 snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b9914aa snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bec00b3 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cd39147 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fa8f01d hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70af0a86 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x787ff646 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c964bae snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d413bd7 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84754099 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86834356 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89a9e7e2 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b69f9f4 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b98c100 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8da88419 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ff92ba5 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94145661 snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94c464df azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95cb77c0 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96339c69 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9722a7e2 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99a219b5 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9adb783c snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bfdd8ca azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e46f07e snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa03e9b67 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa09dac8c snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5b3c594 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa96a6abb snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaac50b74 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaaf7c93e snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab9b794c snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xabf68d45 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac373ff0 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0268727 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb13462fe snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3acfbb1 snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8e6f098 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbadff86b snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc16b9ec4 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1c9dc91 snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc23f0581 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2730897 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc31a7f98 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc37acb40 snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7449910 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc98f24ec snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca96858d snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbf3ad18 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce454141 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce4f4a0e snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfc5535e snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2b10078 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4a2f922 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4f617f5 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9d73240 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdabbda13 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe05add48 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1c53e4c snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1e7d803 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3299b38 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4a5d677 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebc6b922 snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xece6b381 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf51f36a5 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf54f37aa azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7f331ad snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa1521af snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc486155 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1013b71d snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x20da705c snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2e67af61 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x31e9eed5 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x40297ac5 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x42e22d92 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4df9b52b snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5036046a snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5078df29 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x68740b6c snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7825c13c snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7ce2b0c4 snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x82494450 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8ab2f0b6 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xae189afe snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb01ab933 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb2c3740b snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd420c562 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe7811050 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf770f8ab snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf9fd50e3 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7532be4f cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x82d6d16d cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x2d84c412 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x94dc60cc cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0f9da669 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x415bc225 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x77e12b13 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x51b9faf2 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x52a5907f es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x0853e34f pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x3c786b09 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7e314386 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xb7997ed1 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x379f2e0d sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3c5bec68 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5d73876c sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9140ed96 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x98b8eb7f devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xfde6fa0f devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x320d90d7 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x67adf840 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x4c93e635 tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x61abc46c tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x850076e5 ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x182dbc7c wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x8a7253cd wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xafa278f3 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf5a365c2 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xea38b65b wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xa008940b wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x256a60a6 fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x429f48a5 fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0134f811 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0714544e snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b13bb1b snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e8cb1bf snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ee0ab80 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10a3c46c snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10aa791d snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1260c5af snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13e9e8dd snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1796f51a snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x190880ff snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a363b1e snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ac557fc snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c52d6f3 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22b189fc snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23c340bd snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2656d083 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a6872a1 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ab66590 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2adff2cd snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b7bf50a snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bf4fac1 snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e02dd6f snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e85ce25 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2eb661d9 snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ed91a59 snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f45fe53 snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31a5b01b snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33b162ff snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33f4e545 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34e6df97 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x356e33df snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36227a8d snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36808d1a snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36d62920 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x380e5f22 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38537218 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bd84ab8 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d7fb853 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3fc317bf snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x431988a3 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x433fb164 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x446142dd snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x469d919b snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c557ebf snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d44c44e snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f9c9ae1 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53e72e3d snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5500aee0 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56d2a99e snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x579fcdb7 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b7b4851 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bbf6481 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d947f8d snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61a0c310 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63e783f6 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66a76e2d snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6776cae1 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x682c50ad snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69743719 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d9c8124 snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f5adeda snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f8818a4 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x701f9e40 snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71a86e2b snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73aaf470 snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7491aeba snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76bd2e26 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78cf41f9 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78f77cc1 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79092c2c snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a530a55 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b56dada snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c0f1c64 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d06ef80 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f560316 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fb0fb2c snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x833b4f59 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84375854 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84ba015e dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x858983db snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85f53f19 snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ae52164 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d10f6c8 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e8cc02f snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f52a70b snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f8a236e snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9087ae3b snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92091ef6 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92864805 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x954a6d3a snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96efb1d0 snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97d3832b snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98b318eb snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x998052da snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ae418b1 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b56a53b snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e5049ed snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4678918 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4b81f71 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7097e70 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa83752e9 snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa15e44f snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaded9c37 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaee78ecc snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb15da941 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3404ac0 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4df5a60 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5e1e01f snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb81d35bd snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb824dcb9 snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba3dcc4c snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba958404 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc226e00d snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc628971a snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6c05e92 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc87f275f snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca820319 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcafea835 snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb8ae08a snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc3d6bec snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdda1fc9 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce7a508c snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf5e500f snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1982ea9 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2141b20 devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd24e276a snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3f647f7 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd46ba20a snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd60da9d4 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7fdaeea snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8de3eb3 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaa8882c snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf03dcec snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf0a0421 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf6a1c84 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0eb38fc devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe78a4b76 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb61ee9b snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed0a73db snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed59e877 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedf90933 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1c306a2 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf282cad1 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9365c13 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffcb84d8 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0015e3a1 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2e835ead line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x321e8ae0 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3e971285 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4a6219d3 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x52e33da3 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x58bd0f06 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6fadc5c0 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x73d63706 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x94cb1e3d line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9d083e33 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbb80a706 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf7b8e1e5 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf7f2bb05 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xff89ebf8 line6_read_data -EXPORT_SYMBOL_GPL vmlinux 0x0000dd4e gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x0011549e crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x002e7f50 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x0047aa23 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x0054078b __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x005569a7 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x007b2bd5 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x007f12d4 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x00b9093e gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x00d67567 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x00f88f5f crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x01165256 blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x01331de9 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x01858844 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x0187aef8 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x01937b15 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x0194ca3e perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x01c6e4ca crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e79745 of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x01ed9da9 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update -EXPORT_SYMBOL_GPL vmlinux 0x0221819c shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x0221ce19 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x0227e5a2 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x026edede fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x027f065b tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x02a3547f ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x02ad4f7a of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0x02cead42 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x02d72870 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x02ea41e2 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x0314fcea pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x031ad0d9 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x031b8db4 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x031c384f task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x03830e65 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x0384f50e regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x03852e7c thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x038d5e48 regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03b0bce4 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x03fad8ec fsl_spi_cpm_bufs -EXPORT_SYMBOL_GPL vmlinux 0x03fb9fa5 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x042432a0 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x04318146 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x043c1f63 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x043db0a3 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x045b59e3 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x0463f72b device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x04bc0cc4 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x04c17fdd led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04e17047 rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0x05102c1a dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x05198ec1 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x051b232f debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x055c7892 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x057140b2 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x059b5677 ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0x05a10f36 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x05aa266b rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x05b5e9e3 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x05fbdfba of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x060fd778 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x0613dccc __nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x061525f7 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x063cb539 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x06757efb crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x069100b3 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x06b073e0 input_class -EXPORT_SYMBOL_GPL vmlinux 0x06c5a5e9 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x06f105ff handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x072633de kick_process -EXPORT_SYMBOL_GPL vmlinux 0x072d7da7 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x074324e6 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x075209ad device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x0780f549 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07cc0d7d gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x07dda8e2 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x07e3f9bd devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x07ee5ec9 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x081a30ba cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x08660f35 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x08af951c usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec -EXPORT_SYMBOL_GPL vmlinux 0x08beeb53 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x08f4e20e rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x08fb6a68 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x090e4a0f dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x0926c6c6 fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0x092775ce sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x096134e2 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x0968126c posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x096baba0 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x096d9454 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x09b7ec46 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x09be250c ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x09cd4a1f handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x09d5643f irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x09dd8923 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x09f7ec87 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x0a0147e4 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x0a35c58d tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x0a3d9f42 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw -EXPORT_SYMBOL_GPL vmlinux 0x0a575394 of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x0a91170c thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ac37156 of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x0afaeab7 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b3f78ef debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x0b5200c0 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0b90fb79 dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x0bafd9b7 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x0bb189c6 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x0bcd7c6e i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x0bd08f2e ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x0be0ba58 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x0bf004bb udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x0bf08305 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c015cd7 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0c037c34 crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x0c0896d1 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c653bcb __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x0c695fac br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x0c89fefe extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x0c9dc5aa devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0ca2a063 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x0cb04552 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x0cbce648 seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0x0cc090cf dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0ce5d0f9 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x0d07311c vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0x0d09c170 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x0d0e5b07 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x0d384cd4 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x0d3f8a89 devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d63ad3b dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x0d706d2e rh_set_owner -EXPORT_SYMBOL_GPL vmlinux 0x0d73a952 GregorianDay -EXPORT_SYMBOL_GPL vmlinux 0x0d7bf198 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0da54351 __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x0db4419e ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x0db6b74a da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core -EXPORT_SYMBOL_GPL vmlinux 0x0de0c5b1 crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x0e097882 kvm_vcpu_init -EXPORT_SYMBOL_GPL vmlinux 0x0e113244 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x0e11d504 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x0e1c526b ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x0e284527 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x0e30dfea regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x0e53d155 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x0e58f3c0 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x0e61974e crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x0ec9319a ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x0ef2856f __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x0ef62d4a sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x0f0b381f crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x0f190372 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f385551 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x0f4fc0f2 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0fa79320 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x0fb6335d gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x0ff6dcd5 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x0ffa9447 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x10039d1f bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x102a0f9c regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x10303f26 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x10706501 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x1080ce77 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x1093be6e sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x1096774c __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x10ab5117 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x10b83ef1 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x10c58ef4 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x10cdcdde ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10f7e201 seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0x10f85c49 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x10fa5413 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x11064a90 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift -EXPORT_SYMBOL_GPL vmlinux 0x11428d0b pwm_config -EXPORT_SYMBOL_GPL vmlinux 0x114ca118 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x1157d222 get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x11664258 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x116b4639 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x117573ed __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x118cb4dc gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x11ca4d30 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x11e5bc16 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x11ecd46e fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1208861e blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x124bbe09 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x124c80ac debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x126667d5 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x12790d4b xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x1295852c raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x12a7d009 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x12ae711d dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0x12ec1a69 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x12ef9adf of_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x12fb2a3d regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x1303a571 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x131ff177 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x133c0d43 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x134cdf71 find_module -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x138f9ccb blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13db1056 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x1416e215 wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x141a7b12 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x1435ea69 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x1447a69c reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x145243f1 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x14a0b405 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x14b023d3 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x14b9ca63 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x14c9410f pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x14dc49ad raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x14e782d6 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x14fe3c29 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x1500a0bd regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x150b9c5e crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x15271cde devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x153d2146 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x1546945d skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x1550c3d4 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x1550f9e8 pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0x15566f8b device_create -EXPORT_SYMBOL_GPL vmlinux 0x15724765 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x1577ad22 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x15d9ac55 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x15dd94f5 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x15e78b79 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x16697b72 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x167ace13 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x16822541 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x168e69f2 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x1699e6de register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x16b96cbf __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x16c7ba47 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x170aa2bd blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x171c2fe7 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0x171d9015 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x17200b9a vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x174e11fa pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x177167a3 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x179156ab devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x17ab96f8 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x17d28764 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x17e9e1ed gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x17eecab9 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x17f5ca5b anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x17f8c195 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x1835ef7f rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1854265d devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x1884bbe6 clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x18895651 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x18f1e833 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x18fd61fd of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x190c5b9a regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x19510e5e kvm_get_dirty_log -EXPORT_SYMBOL_GPL vmlinux 0x195e3af2 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x197e69f9 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x1987e259 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19dc7ffd rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x19f923a2 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x1a11c3bb inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x1a1e8a2c md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x1a689aa3 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x1a711eba inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1a9f96cd blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x1aac594b sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0x1aba1c4e crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1af37e7d usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x1af61ed7 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x1afcc8db arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0x1b03cf79 of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0x1b064cf7 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x1b0ff8e6 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x1b50098a usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1bba42c3 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x1bca0de2 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x1bd821c2 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x1bfbba07 clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x1c066732 sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x1c127337 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x1c2ad10a srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x1c397668 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x1c3dbb58 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x1c419217 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x1c48eea4 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c6c32a0 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c87c82f wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x1c90e0c9 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x1cd6fdff trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x1d0f0cbf powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x1d106a16 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d34407d sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x1d4c7591 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1d4fbaa3 of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d623bff scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x1d6c4c0e i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1dc6a5be perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable -EXPORT_SYMBOL_GPL vmlinux 0x1e0ec257 ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0x1e148624 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1e19b7a3 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x1e3ef0ba ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x1e434bd6 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x1e49b59e of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e63b0b9 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x1e707906 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e7dd016 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x1e89560c security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e970383 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x1eb17fc9 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1ed29137 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x1ee29636 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x1f3fd987 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x1f4037de md_stop -EXPORT_SYMBOL_GPL vmlinux 0x1f4a6f70 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x1f5687a6 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x1f5b8cf6 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x1f783cbc register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8c7007 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1faa3c11 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x1fb47f73 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x1fe18d3b sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x1fe43e9c tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x20009ccd debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x201ecb19 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x2025b325 flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x202634e4 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x202c9102 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x2069b29e wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x206b088e input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x207adf60 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x208b8bc7 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x208c75ef elv_register -EXPORT_SYMBOL_GPL vmlinux 0x20935881 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x20a0772a __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL vmlinux 0x211bb938 xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0x211d3020 clk_debugfs_add_file -EXPORT_SYMBOL_GPL vmlinux 0x2131be3d __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x215b43c8 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x21828817 mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0x21843645 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21e95d32 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x220749d0 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x22098a8f use_mm -EXPORT_SYMBOL_GPL vmlinux 0x221ac51e serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x22209fb4 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x2236f452 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x22529768 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x2255c122 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x2274debf regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x227ac713 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x227c021e gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x22959610 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x22962807 i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x22ddff69 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x231390a1 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x23331d43 regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x23453aaa gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x235ea7c5 dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x2363109e pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x2394462b of_irq_parse_pci -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23b28337 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x23b9e394 of_css -EXPORT_SYMBOL_GPL vmlinux 0x23bfd74a of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x23c17028 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x23cdc4e1 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x23e43fce raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x23f4509c of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x23f7f041 reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x2403a618 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2424442d napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0x242f428c fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x2438b818 unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x243d2aca tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x24484b4c devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x24489b79 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x2457f28c dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0x247d1206 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x247d3efe tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x247e1543 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x248af38f ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x249ff17a crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24b1179e driver_register -EXPORT_SYMBOL_GPL vmlinux 0x24b6a173 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x24b8cd8d gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0x24bf6ebd of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0x24c5c3eb i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x2500c394 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x25049f71 rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0x250fe101 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x25204818 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x254b56ba ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x254be5cc serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x255a4e7a get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x257fbc9d uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x2589c50b ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x258d99c3 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x258fe9e3 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x25c20c39 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x25e35e61 tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x25f356bd usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x26017f30 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x2606b7c9 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x26128aca devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x26699df9 early_find_capability -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x26af67f9 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26cc1c28 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x2712a4c5 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x27368cde get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x27572313 nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x275aa13b dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x276b7d57 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x27abc496 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f6fa68 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x2835ae7b stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x28391905 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x284ac8cb fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x285a5f9d percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0x286a9285 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x28851e9b of_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x2899e04f regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x28b576ae iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x28b9d9df spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0x28c2cd3e uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28c46b4a wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x28d28faf irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x28f90091 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x291cdca4 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x292066ae nl_table -EXPORT_SYMBOL_GPL vmlinux 0x29262630 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x29651979 blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x296e9991 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29c7ad2f crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x29ce0f17 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x29e7f826 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f2fe9d gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x2a1099e0 scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0x2a2fba59 inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x2a3d3fc5 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x2a5fed28 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x2aa02205 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x2aa04277 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x2aa5aa91 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x2aced672 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x2ad22911 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x2af59198 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x2afb4bf2 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x2b0a3b73 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2b2407aa __class_register -EXPORT_SYMBOL_GPL vmlinux 0x2b272c80 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b3cbb37 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x2b5b7caa __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule -EXPORT_SYMBOL_GPL vmlinux 0x2b5d5808 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x2b69c7b7 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x2b94acaf leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2bbd14e3 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x2bdf28da trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0x2c0513f5 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x2c13287d component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c483e73 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x2c7947d5 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c7e26d5 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c9a9e38 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x2ce86ca2 skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cf578f5 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x2d0be55f ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x2d0d38c4 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x2d14c941 clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x2d1687ec debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d28ae4a regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x2d305040 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x2d36c57b rh_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d53fff7 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d5d3af3 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x2d69203e pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x2d6eecfb tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x2db6e882 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last -EXPORT_SYMBOL_GPL vmlinux 0x2e088455 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x2e155b22 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x2e182b52 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e236776 of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e80a50d kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x2ea233ee dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x2ea8ac70 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2edd7ea1 component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0x2ee92ffa device_attach -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f0e527b rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x2f17db2e usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x2f30e144 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f77f2d6 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x2f818363 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x2fbb916f ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x2fc5699e mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x2fdedad0 max_gen_clk_probe -EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x3012bf49 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x3028e58d ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x303e9e84 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x3052cc40 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x305888ee cpu_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x306a2a37 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x3080da63 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x309fac0d devres_get -EXPORT_SYMBOL_GPL vmlinux 0x30b6e60d irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x30e3fc16 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x3119766d put_device -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31348595 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0x31351f0b cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x314e89a0 md_run -EXPORT_SYMBOL_GPL vmlinux 0x3174e05e device_register -EXPORT_SYMBOL_GPL vmlinux 0x31787f8c rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x318e205d console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31d83f14 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x31d9cf1c ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x31dd3851 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval -EXPORT_SYMBOL_GPL vmlinux 0x32207a2b kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x322d721e relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x3249d7ff ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x324ea30f exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x325519f3 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x32914a0d attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x329c96f8 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32dcc04c clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x3311efd2 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x33263962 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x333df3b6 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x3343a8f6 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x33491cba skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x336cb4a5 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x33a15eb7 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x33d20050 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x33df1524 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x33e7b574 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x33f4cd9f blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0x33fce244 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x342152af platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x3426fb26 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x3461e108 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x34694a02 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x346e2281 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x34870329 kvm_io_bus_write -EXPORT_SYMBOL_GPL vmlinux 0x34966836 bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x34aa76d5 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x34b17287 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x34bbc174 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x34d782c2 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x34ed6d13 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x3526d38e sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x35272081 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x352de0d6 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x3538a331 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x355e856d devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x358368ee blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35a66cb4 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x35f7d550 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x35fa291c crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x361e8977 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x3621d768 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x36254533 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x3630fb0c __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0x3634a2b9 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x364162ed vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x3644b9c1 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x36479940 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x3649108f ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x366161dd sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x368895d7 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x368e2142 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a64e5c percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36ca84da of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x36cb6e91 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x36d887d1 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x370121f4 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x370ba6e1 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x373207c3 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x3736a25c ping_close -EXPORT_SYMBOL_GPL vmlinux 0x37b54266 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x37bfc3eb debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x37c972e0 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x37d2c2c5 rh_dump_blk -EXPORT_SYMBOL_GPL vmlinux 0x37d92b94 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x37e0d56e crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x37ef4a9d __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x38325605 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x3848b87e device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x3854810c driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy -EXPORT_SYMBOL_GPL vmlinux 0x386af00f power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x38790ad1 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x388ef071 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x38b93431 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x38caf33e register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x392cc7e6 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x3937f2d5 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x394009e3 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x39bbf7c7 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39d566ce __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39e747cd usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x39f39e71 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x39f3b830 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x3a13117a clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0x3a1abcb6 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a61f494 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x3a6c7b80 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x3a7be7ca nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x3a7f1358 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3abbd18d rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3acf8608 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x3ad8c277 agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0x3afedb58 arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x3b09a078 percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0x3b0e7104 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x3b2e1360 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x3b4c47a9 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL vmlinux 0x3b52a2a4 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x3b564309 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x3b993167 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x3bac8219 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x3bbb03b7 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3bd95436 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x3bee869e dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0x3bf7737b dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x3c28626f platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x3c4d4942 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x3c5708be arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x3c6a15fd ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x3c81593a nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x3c892b06 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3ca02b7f blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x3cc8e2b2 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x3cd00c0c crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cda27c3 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3cdba35a crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x3cdd0bf1 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x3cf6f455 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x3cfe42bf __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x3d07ae6a ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x3d0f6b6f pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x3d353a60 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x3d56202e phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm -EXPORT_SYMBOL_GPL vmlinux 0x3d8f2571 pcibios_map_io_space -EXPORT_SYMBOL_GPL vmlinux 0x3d91c3a2 pcibios_add_pci_devices -EXPORT_SYMBOL_GPL vmlinux 0x3da4fd5f aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x3da65a04 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x3dbd2fdf wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3de09666 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x3de94516 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3deaf3cc ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x3e0895cc edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0x3e12fed5 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e4712f3 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x3e528f46 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e85ff43 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x3ea864d3 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x3eaab0f6 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x3ec9cd45 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x3edf807b debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x3f097ca9 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x3f259063 kvmppc_hv_ops -EXPORT_SYMBOL_GPL vmlinux 0x3f2f6b26 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3f54a2e0 tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3f60ff6b cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x3f615398 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x3f652425 swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0x3f72bf20 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x3f7917e0 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x3f989559 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0x3fb14423 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x3fc70e17 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x3fc8de32 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x3fd2ce31 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x3fd96aa5 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x3fef7431 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x3ffde6d8 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x4013d65b dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x40189d36 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x405afa8a perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x405fb714 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x40641e1f crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x406a6baf rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x4079ef75 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x408d9f8b kvm_init -EXPORT_SYMBOL_GPL vmlinux 0x40903a16 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0x40a305b2 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x40ac1081 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40e91a38 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x40ea5308 ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x41102607 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x411dd23f ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x4122dadd nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x413944a1 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x413b2b8c pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0x4142432c irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0x414949de usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x41802da4 gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41858553 led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x41908b1c usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x419e4d4b rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x41c149f9 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41daa52d da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x42005ea4 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x420d1a69 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x420e9786 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x424ba508 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x4279d6a2 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x4285ec30 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x428ad0d2 bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0x42d4e42a nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x42d99873 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x42dbc933 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x42f5ffe0 xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0x432a638a regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x4342f363 tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x434ea380 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x43613945 __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x437af313 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x43917800 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x43969dbe rh_alloc_fixed -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x43b73f70 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43e76386 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x43e899d5 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x43f1e41b tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x43f4a887 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x44042476 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x443be79b sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x4463c9d8 of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x446785eb get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x446de2e0 of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x44738205 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x448926b8 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x44aa77ac platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x44b3af27 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44d319bf __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x44daa809 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x4507c731 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x45145805 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x4533fb58 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x4550f780 blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x455a12c8 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4560ca6d mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4569e16a max_gen_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x4589cb62 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x458eaa2f call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x45b149d3 rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45c179b6 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x45ebe0d1 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x45ef8390 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x4600ed0c wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x46101ba5 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x461084bf crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x46118197 usb_string -EXPORT_SYMBOL_GPL vmlinux 0x4612ab98 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x4669a82d of_get_nand_bus_width -EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46935038 pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0x46a835be shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x46b6717d led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x46bd28fd tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x470f79e9 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x473040fd arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x474cf0df rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x476b615b pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x476ea658 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x4777c8c0 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47892f1f pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x479e15e4 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47b715dd thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x47c7b6d7 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x47d6b58d __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x4840e264 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x48445e52 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x48794c04 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x487ca35d wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x48975a01 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x48fa38c6 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x49097882 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x4915bf27 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x491ae061 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x49270121 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x495250a5 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x49558dab tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4968ae6e ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x4980b488 of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49924c6a attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x49dbdb6b kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x49dcc1a7 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x49dd3692 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x49df618b x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49eafc5d sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x49f7d9ee crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x4a1b0e82 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x4a21db4c of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x4a4b2b47 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a814880 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0x4a819d9e pcibios_finish_adding_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x4a828590 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x4a8b209c perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ad5aa6e trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x4ad7d0e3 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x4ae22777 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ae8c705 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x4ae99ec7 of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x4af0d3b8 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x4b282ba3 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x4b5fd54b ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0x4b62abf0 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x4b6a1051 tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x4b89bb5c clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x4b8dbd88 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x4b9530e8 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x4b98827c rh_init -EXPORT_SYMBOL_GPL vmlinux 0x4b9fd216 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x4bb5b07c skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x4bbc6095 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x4bc15c1d dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x4bcb87ac ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4bd4772d nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x4bd85a22 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x4c23b56b platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x4c4a5b06 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x4c4adc69 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x4c6737db __put_net -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4c85f54a inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x4c881e9d ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x4c8bb610 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x4c8e3e76 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x4ca4a7cd pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x4cae1f32 pcibios_free_controller_deferred -EXPORT_SYMBOL_GPL vmlinux 0x4cc590f3 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x4cd15efa clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x4cd8ea5c blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0x4cdcde04 kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0x4ce87247 kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0x4d01db37 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x4d27eac1 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x4d2defd2 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x4d330ab4 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x4d79d7c8 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x4d8ae3fa wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x4dd27351 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x4dd3119a pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de353e7 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x4de51686 tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0x4dedc1d4 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e1f91bb blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e571e09 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4e78afec irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0x4e832c17 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x4e881334 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x4e925416 of_reserved_mem_device_init -EXPORT_SYMBOL_GPL vmlinux 0x4e941a29 kvmppc_sanity_check -EXPORT_SYMBOL_GPL vmlinux 0x4e9fa695 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x4ebde977 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x4ebeb8fd ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x4ed24f13 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x4ededba3 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x4eeddefe smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4ef71dd8 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4f186754 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x4f19ff24 mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x4f20103a __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x4f21e3b4 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x4f2eec79 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f49f2b7 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x4f4e5a03 cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f85f680 pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x4fc05133 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe116ac dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe306ab ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4fe55984 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x4febfd3a __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x4ff0fd02 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x501b503f gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x505af416 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x505b4229 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x50802c28 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x5097e4b0 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x509d2da7 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x509da414 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x50a7767a devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x50b00588 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x50c3dd39 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x50c7623f dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x50e3d38a cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f6ce40 device_del -EXPORT_SYMBOL_GPL vmlinux 0x50facd59 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x511d737f pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x511e345f blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x514871e8 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5165439a cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x5169016a rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x5171823a key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x5192bdc6 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x51b4c460 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock -EXPORT_SYMBOL_GPL vmlinux 0x51ba5db9 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x51bb516a pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x51c79602 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x51fcd908 arizona_of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0x520415ec transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x5205e64d disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x5221f4bb tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x524e6efc ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x526ac9d5 of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x526b4321 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x52ae44bc ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x52c10001 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x52c2df01 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x52d1e96f inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x52e18366 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x52e3be98 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x53125c2e handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x531a3528 swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0x532fce53 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x533a699a usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x535124c5 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x53570377 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x538dbab0 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x538ee895 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x53990314 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x53a4080b crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x53ba8b0a xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x53e034b9 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x540a937e usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x540aa88c vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x541714a0 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541ac361 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x54318981 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x5440e919 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x545dbb48 arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq -EXPORT_SYMBOL_GPL vmlinux 0x546ed863 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x5471f20e of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x547511e6 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x547ae0d8 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x547dd303 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x5481f49e bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54aa15f0 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x54b6c342 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x54bb7104 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x54d18f43 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54e7b9c8 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x54f15031 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x551e9735 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x55387e46 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5541e7a5 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x55474410 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x557fbce3 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5587fbef regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x559bf1b4 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x55a5f2ca ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x55c5970c devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x55c8a433 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x56127bb6 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x5626d3db of_scan_bus -EXPORT_SYMBOL_GPL vmlinux 0x562a4293 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x56348867 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x565caf59 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x566ec448 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x568b0f73 regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x56a7ebec init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x56d1fd56 dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56d81ad8 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x56fb75bc list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x57130ab0 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x5715b549 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x57277580 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x5733f637 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x57493a56 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x5769e3e2 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x57725151 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x578c4012 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57cd47b5 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x57dacbac fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x58374e81 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x58578e9b clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58b9ad11 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x58c2e106 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x58ec7e9a usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x58fa4d2e crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x5940c18d ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x5958c954 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x5995097a spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x5996278f phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x599e6cd2 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59bac60e irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0x59c0439e __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x59c9d90d ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x59cec8e7 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x59df285f crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5ab1df04 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x5ab62f70 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x5adf708c regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x5aec662d device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x5af4c9e2 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x5b15b868 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x5b29ab74 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5b2e29eb blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x5b37afdf cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x5b395b1b fb_sys_read -EXPORT_SYMBOL_GPL vmlinux 0x5b682546 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x5b7f9cc3 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0x5b859e93 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x5bb064a4 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x5bbd2586 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x5bc21175 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bda4fd4 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5c0cda39 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0x5c176dcc usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x5c2efe28 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c792508 dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x5c82b8a0 dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cb57f2d of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5cc6d2c0 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x5cd08781 wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0x5cda3ad0 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x5d0b494f dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d1af71e ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x5d208228 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x5d45df92 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x5d515543 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x5d5616de rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x5d67a146 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dcbff7f irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x5e1b3dcc sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5eb51432 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x5ec8d8a6 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x5edc5cd4 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x5edd8454 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5ee7542e reserve_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x5f851386 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x5f9110d1 kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x5fb4e005 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x60029d32 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x60093952 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x60390761 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0x60467b06 btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x60602c59 queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x60636f7e subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x607a714e tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x6081b131 devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x6097927d ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x609aefc5 of_pci_get_host_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60c5a874 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x60cca309 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x60dfeb99 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60fb1599 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x6114071d pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x6126c1ea cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x613ca6d3 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x6154c1bb of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x615ba3cc bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x6173128b arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x6177447e rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0x618b8fcd dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x619698c0 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x61d09f42 of_pci_msi_chip_remove -EXPORT_SYMBOL_GPL vmlinux 0x6211ca01 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x62270cda stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6248342c genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0x624cf45e flush_fp_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x62547e11 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x626d4440 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x626e485b flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x62977ef4 pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x62b27a6d netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x62b7a0b4 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x62c13aa0 __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x62e418aa pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x62f8b0e3 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x62fca1f3 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x63118b62 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6314a661 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x6321c58e gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x63323446 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6338611f pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x63798687 posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x637b0e04 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x6384b64b unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x63a11c3e fsl_spi_cpm_free -EXPORT_SYMBOL_GPL vmlinux 0x63a95d8b dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x63c59fcf bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x63d64bea pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x63ea807f pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0x63f0e08e wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6408dd87 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6428da4f rh_attach_region -EXPORT_SYMBOL_GPL vmlinux 0x6431da36 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x643dd0d9 crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x64467b99 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x646fe014 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x6478b665 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x64a42bbf iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x64b3b05c crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x64becd1d nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x64c6482e da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x64e1e354 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x653eb0a3 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x654befd0 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x654df09b regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x6555ec15 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x65730ef2 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x65839efe usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x65ae24d4 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65c7de23 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65ec01ce inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6627f60d to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x663fbea0 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x6656a4d3 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x667ae5bf mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x668304a5 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x66bc4973 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66d59fe1 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66e6321c regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x6700cef4 __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0x670e8094 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x672fd074 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x67680769 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x67694294 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x678a4105 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67b251c7 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x67f28396 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x68242cba wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x68273ac0 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x687c490f devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x68846d5f regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x68a9c0a3 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x68c20839 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0x6906e6a6 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x690efbeb sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x6914bf5b sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x691715b9 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x693da22f dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6955d3cd split_page -EXPORT_SYMBOL_GPL vmlinux 0x69633cfb device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x69a29423 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x69a2d303 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x69a3894c usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x69b6057b dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x69cdbcfd bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x6a1be597 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x6a2b6536 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0x6a45276b bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x6a97becb cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x6acb8d84 ppc64_caches -EXPORT_SYMBOL_GPL vmlinux 0x6b05dce5 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x6b26f925 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b2dd5a0 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x6b48a910 switch_booke_debug_regs -EXPORT_SYMBOL_GPL vmlinux 0x6b592ba6 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b88772d pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x6bb6bba1 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x6bf9337d inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c08a177 wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0x6c230983 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x6c234ac3 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x6c4558c3 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6ccc1362 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6d14fa95 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d5029f2 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0x6d652238 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x6d6db89d usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x6d75459a securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0x6d7ac608 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x6ddf15f0 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x6de06a08 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x6de8f3ee sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e238cb4 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x6e3707b2 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x6e379526 kernstart_addr -EXPORT_SYMBOL_GPL vmlinux 0x6e49ab01 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x6e4d7cab skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x6e5d8775 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6ebb952f led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x6ec7cfe9 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x6eda9e34 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x6efc54ac regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f2bc495 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6f36f65c thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x6f3cf6bd register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f7ed436 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x6f810cd0 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x6f8513d8 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x6f8ea739 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x6fbc16ed ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ff67754 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x6ffd86e6 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x702fa9a8 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x704b84df extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x705607b2 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7077a902 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x709e04da xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x70aaba7c devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x70af6649 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x71210905 ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0x712fbef7 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x713a44e5 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x7147c45a of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0x7148f72c rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x71621fe0 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71787003 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a770d8 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x71cab1fe usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x7211d58b xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x7217b6bd ref_module -EXPORT_SYMBOL_GPL vmlinux 0x721c1e69 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x722bfb47 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x724b4565 tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x72894ec9 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0x72dcb583 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x72e05342 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x72e22739 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x73056f7c ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x73166ea5 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x7333b45a cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0x736ced9d crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0x737f7dec rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73c5b2ba serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73cb19df regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x73cf6403 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73dfa109 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x73f3b154 devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x74002d9d __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x7402b45c get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x740b2ca5 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x741383fa anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x743dd202 rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0x7440ed6a spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x744d0c4c sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x746b44b7 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x746d17ca kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x74a37dcd kvmppc_emulate_instruction -EXPORT_SYMBOL_GPL vmlinux 0x74ad43c9 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74d80e36 kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0x74d8a76a devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x74e63e81 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x74f1b3ac wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x751f47b8 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x75427bac regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x754c7d63 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x756cf6f4 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x756db4c1 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x75a08fcc devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x75a3aa78 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x75b40258 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75d29a40 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x75fe3acd mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x760e1210 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x76122693 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x7624f83c fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x76354781 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x765c130a rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x7661456f securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x76821be7 agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x76929148 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x76c83f25 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76df7407 dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x76f0adf6 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x771031c0 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x771c1640 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775fb407 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7770af30 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x7789327e transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x778f119b gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77c620c9 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x77c6f8cf gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x77f93850 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x77fe3f64 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0x780fa054 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x78200415 dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0x78204af2 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x7820c817 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x782a20dd ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x782ec6c8 nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x783ce6b6 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x783efca8 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x78532c84 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x7877bf0a spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x78a3964a of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78c80d97 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x7908e823 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x7908e992 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x7910ab4f regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x7911a4e5 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7930430a irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x795b6af0 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x799d84a4 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x799fe42d user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x79a307f0 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x79ae0b74 extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0x79c480da rh_dump -EXPORT_SYMBOL_GPL vmlinux 0x79c91a81 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79f319ae regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x79f52a07 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a3c232e virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x7a44ccb0 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0x7a4dd82a skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0x7a82897f pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x7ab074d0 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x7ac4410a __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x7ac999aa gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7ae8d7c3 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x7aecb62a crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b187006 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x7b1addea kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b25e433 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x7b286fe6 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x7b40c163 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x7b497533 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x7b59e896 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x7b62aa17 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x7b9b49e6 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x7ba615cc skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x7bc854fe preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7be6911b invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x7be9f652 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x7beb0668 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0x7bedab27 of_get_nand_on_flash_bbt -EXPORT_SYMBOL_GPL vmlinux 0x7bf0f810 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x7bf4753f device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x7c242196 nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x7c3633d9 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x7c50ad50 get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x7c6b733c shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7ca92138 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7cacc96b sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x7cbef227 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x7cbfe2ae irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ce55ad6 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ced2cb0 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x7cfc13a9 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d0e62dc kvmppc_handle_store -EXPORT_SYMBOL_GPL vmlinux 0x7d1b0a88 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7d1fb1bb ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x7d369f9b dax_fault -EXPORT_SYMBOL_GPL vmlinux 0x7d481529 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d69086b locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x7d6acb96 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7db66116 of_display_timings_exist -EXPORT_SYMBOL_GPL vmlinux 0x7dba26aa ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x7dbc3a5a invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x7dcb1590 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x7dcb7a03 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de2c348 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7e29c032 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7e37d2ef skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7e3e6dfb perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x7e51aa87 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e7f50a7 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7e9ba347 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x7eafd4df nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x7ee5203d usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7f1be5ed of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f303511 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x7f3412ce ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x7f3940c8 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x7f3ae4a2 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x7f54770e ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x7f6759ad ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x7f7a9683 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f7f5742 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0x7f8e626f crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x7f97e4a9 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x7f9b5162 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x7fa7d93a kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL vmlinux 0x7fb771d2 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fc3ea06 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x7fc5477c aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x7fcaac2f __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x7fd0a84a class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7fdef3ae crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0x800898ad lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x80152807 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x803f9652 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x804ea02d __find_linux_pte_or_hugepte -EXPORT_SYMBOL_GPL vmlinux 0x8055dda2 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x80601f2a usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x8072213a adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80961870 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x80a97d40 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d22fad rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x80d53994 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x80fa3a3a hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x810a826e usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x8114b8d6 md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x81156662 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x81185501 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x8132c7a3 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x813e44ba xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x8162159f __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x81b4add5 fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x82150e01 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x8245039f pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x8254f5b3 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x82597a2d phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x827643eb ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82e9c582 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x82f774f6 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x830cf0d7 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x832b7d28 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x835d64e2 of_fixed_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x835f097e cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x836b2294 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x83797099 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x837a68e8 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x8396210e pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x8398d867 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x83b15f35 tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x83d825bf spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x83dfd63e file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x83ea63ce hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x8400925b dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x84251e18 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x846be635 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x84793786 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x849d0a53 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x849f5ff5 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x851522e2 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x855fda30 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x857112e5 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x85ad1d55 kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x85b25678 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x85b52d99 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x85b72e27 dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x85b85598 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x86010bdb ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x8604699a devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x8606d7cf gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x862d443d ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x866ec5eb tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8678e2bb yield_to -EXPORT_SYMBOL_GPL vmlinux 0x868459c8 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868aa4f4 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x86917114 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x869eb50f crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x869fdf5f extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x86b05142 of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x86b8a710 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x86ce4b57 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x86daa6b5 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8bdb2 kvmppc_handle_load -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x86ff6dcf bus_register -EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu -EXPORT_SYMBOL_GPL vmlinux 0x870b5949 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x870c24b4 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0x872199ab class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x8729cf5c ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x874f6c9d pcibios_remove_pci_devices -EXPORT_SYMBOL_GPL vmlinux 0x87571e31 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x876a8ef8 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x8772e753 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x87847470 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x87913878 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x8792df7b crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x8798b2c3 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x87a78f92 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x87aeb979 rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x87bc8c0a dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x88051e54 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x88060b51 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x88281b88 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x883bcd57 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x884156d0 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x884d0a91 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0x88690178 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x889ecfeb dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88bcf4ff cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0x88d47cfc disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x88e36c5c clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x88e645e2 regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0x88ff5ea8 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x8965959f devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x8971a712 tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x8981dc2c cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x898535f8 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x898cf8b9 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x89a2e791 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x89b7b09a shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89da0c3b mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x89dbf5b0 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x89ff73c4 user_update -EXPORT_SYMBOL_GPL vmlinux 0x8a14d565 of_fixed_factor_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x8a190bd6 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x8a1f4e1a attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a58b1fa gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x8a96e5a8 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x8a9906cd key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x8aaa6e6b netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ae6b964 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x8b0e8755 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b6b77c6 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8b865c94 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x8ba5f62f kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x8bb7cfe0 arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x8bbfba1d vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x8bde3855 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x8bdedc29 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x8bf27de4 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x8c019600 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c2de6bd metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8c34ad27 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x8c3bbc71 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x8c5c34fe regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c69fae7 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c8f2f8f __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x8ca2f180 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x8cada242 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8cb507cb __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x8cb76129 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x8cd40aa3 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cdf3118 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x8cfd1380 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0x8d07dd3b usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x8d105816 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x8d10e311 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x8d187bff regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x8d1f64d3 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8d21177c ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x8d2b1681 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x8d4f9709 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL vmlinux 0x8daa708d ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x8db19ff1 shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x8dc20a69 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x8de5b155 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x8df1d6be regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x8dfcfe95 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8e01dff9 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x8e035d1f tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x8e19a85b gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e32819b dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x8e486878 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x8e503a76 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x8e617f3a filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x8e63794e rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x8e770c16 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x8ea6b4a9 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x8ed5231e set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x8ee51243 spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8ef55d17 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f09ddf8 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x8f26bbd0 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x8f4e659d da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x8f642b0b ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8fa43f29 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x8fbaa4bf eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x8fd635bc kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x8fe3cb30 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x8ff12ed3 component_add -EXPORT_SYMBOL_GPL vmlinux 0x90031ab6 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x90099d0c dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x90130208 nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x903a527c inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x9061ef76 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x908d1225 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90af0ffb kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x90b1c0d0 pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0x90c9bfbb __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x90cecac2 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x90dbe0aa kvm_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x90e8d67e unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x90eb4510 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x910abead component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x911587d2 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x9121ec3a __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x91634476 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x91707b05 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x9175264c dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x917549a4 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x91779abe gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x91a6722a blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x91b08bc4 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x91be01ac usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91f0a170 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x91faf423 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x920cb98c regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x9226f6a8 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x922be9ff transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9245da11 realmode_pfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9253818e blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0x92698d0f preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x926ca566 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x927640e0 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x92a24f53 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x92c328a0 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x92c59c3f cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x92d047a5 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92fc72c3 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x9331dd80 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x93354538 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x9376136f regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x937bc17b scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x9380c524 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x939e7c32 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x93ac6995 cpu_add_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0x93e148a1 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x93eba7a6 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9432365e device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x943a14d8 __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0x94496b4d led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x94789f56 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94b33ad1 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x94cd6e64 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x94d972b7 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x94dff343 fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x95202b29 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x9538cd09 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x95629cf0 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x9584bb85 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x958642ef device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x9594c014 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x9599ca66 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x95b2d155 vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95ecf404 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x96142988 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x96432ead rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x964e009f sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9664a9ae vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x968d8c10 sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0x96b801a9 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x96d13b30 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x96d9fb56 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x971990b9 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x971a0e39 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x9735f061 register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x97381583 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x974bd287 irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x975e9a10 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x9766f34e fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x976d2dae mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x9771b152 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x978ffe55 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x97962918 virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x9801ed0a trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x980a911a ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x980fa5f1 pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x983c7494 rh_detach_region -EXPORT_SYMBOL_GPL vmlinux 0x98503165 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x985ead3e inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x98643fed __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x987268d9 kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x988077dc rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x9893f372 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x98a02a70 register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x98aced22 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x98b1d0f7 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x98d8b754 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x98e38520 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x98e3a7ff dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x98e98c83 skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x99192c88 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x99287969 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x993bcbc7 tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x997343a6 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x99771778 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x9982b0f5 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99b6aef6 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x99b9c509 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99bbbd89 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x99d8d942 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a1f9e4d max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x9a498c07 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x9a7eb50f __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x9a805f04 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x9ad06ca2 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x9ad7d1f2 nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9aed14e0 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x9b2d015e ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x9b456fa2 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0x9b5e9d63 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x9b728182 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x9b8ad4bd to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0x9b964277 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba6e674 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x9baefcf3 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9bb3950f task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x9be2adb3 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bfbbbc7 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x9c073039 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x9c1682aa pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x9c18e8ae thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x9c4dca95 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x9c50cf3b kvmppc_st -EXPORT_SYMBOL_GPL vmlinux 0x9c741de2 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x9ce47305 of_pci_msi_chip_add -EXPORT_SYMBOL_GPL vmlinux 0x9ce63b7e __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x9cf79673 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x9d22ecda crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x9d6b3fb6 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x9d7d628c fsl_rio_mcheck_exception -EXPORT_SYMBOL_GPL vmlinux 0x9d84ea8d trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x9d8b01ba rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x9d91616f crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9db2f2bc dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x9dbbd863 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9ddda2ca virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x9ded4b03 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x9e2e645d _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x9e3d81ea __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e4f675d pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0x9e8672f8 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0x9e88a234 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9e8b4769 gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x9ea614e7 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x9ea818f3 kvm_write_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x9eac2555 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x9ec7b076 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9f41d0a9 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x9f4c85cb sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x9f739330 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x9f8915ee pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x9f8e6223 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x9fb58d61 of_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x9fcd2399 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd20178 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x9fd47b85 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xa02a38e8 mmput -EXPORT_SYMBOL_GPL vmlinux 0xa040a1b8 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xa08e46c4 component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xa08eb670 blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio -EXPORT_SYMBOL_GPL vmlinux 0xa0b6152e sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xa0c7c8b5 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0xa0d4d0d2 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xa0e8cc2a usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xa12a15ed device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xa171b5f2 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa1933eac devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0xa1aa8d71 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0xa1c220ef ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xa1d1770a pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xa1d5070b tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xa1e15cb9 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa2057158 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xa21fe7de bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xa223969a rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xa22df663 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xa22f095e regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xa2403fa3 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0xa24533eb bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa27db43a pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xa2813c86 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xa28aaf29 rh_create -EXPORT_SYMBOL_GPL vmlinux 0xa291b273 isa_bridge_pcidev -EXPORT_SYMBOL_GPL vmlinux 0xa29caeb6 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xa2b8379d dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2fa20ad component_del -EXPORT_SYMBOL_GPL vmlinux 0xa31c116d page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0xa38437d5 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xa384918b pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range -EXPORT_SYMBOL_GPL vmlinux 0xa3b323a2 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3d665f7 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xa3e16693 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa4023822 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa47c20e1 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4e0dc45 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0xa4f9f6ac pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xa51161ee sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xa512350c nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xa52fdcf0 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xa53e88e6 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0xa5586cd4 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0xa595d6d7 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq -EXPORT_SYMBOL_GPL vmlinux 0xa5d1db32 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xa5d391da generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xa5d973dd ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0xa5dc7df8 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xa5f71440 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xa5fe27df pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xa6239f72 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa629b18a unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xa643f382 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0xa658ab5a adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa65b4654 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0xa660b844 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xa6635d59 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa68d6df2 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0xa6ac3857 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xa6c5601b usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xa6c8095f __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0xa6cb2a2e dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xa6d7f77a of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa7257dd2 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa74f5220 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0xa75c7b8b tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xa75d99b8 rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0xa77269c2 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xa791040d regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xa7a47d50 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xa7b9733a devres_release -EXPORT_SYMBOL_GPL vmlinux 0xa7bbeae3 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa7c37f92 __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xa7f47595 device_move -EXPORT_SYMBOL_GPL vmlinux 0xa80be735 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xa8204d92 tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa85a466a regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xa860cbae rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa92c6821 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xa92f83fd extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa93ed2be dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xa93faedf da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xa952ce8f ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0xa95b2e80 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0xa95d5603 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xa98652f4 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xa99975b1 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL vmlinux 0xa9c51ad2 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xa9c90681 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0xa9cb58cb kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0xa9cc128a thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xa9db751f pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e54958 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xa9f3f97c tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xaa0162e5 pcibios_scan_phb -EXPORT_SYMBOL_GPL vmlinux 0xaa0cd35d find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0xaa17a2e2 rh_alloc_align -EXPORT_SYMBOL_GPL vmlinux 0xaa20c65b ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0xaa458bbe iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xaa73a733 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xaa756b26 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xaa9af349 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xaaa0a650 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaac03f33 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xaad82004 fsl_spi_cpm_init -EXPORT_SYMBOL_GPL vmlinux 0xaaff6a62 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0xab05885e blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0xab05969b ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xab19f1dc ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xab1a2fbe ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab5258d9 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xab59d373 kvmppc_free_lpid -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab628321 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab7dbd95 kvmppc_kvm_pv -EXPORT_SYMBOL_GPL vmlinux 0xab8a8c39 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xab8ee3ce fb_sys_write -EXPORT_SYMBOL_GPL vmlinux 0xaba2db15 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xaba62095 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xababc56c watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabf2d3cb dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xabfca4ea __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xac028c19 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0xac13021d blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0xac1612eb sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xac3002d8 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xac409f92 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xac5d6573 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0xacb118b3 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xacccd53b public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features -EXPORT_SYMBOL_GPL vmlinux 0xad38ceca regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xad5820c7 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xada487bf blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0xada6edc3 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xadc9c954 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xadd3e5d5 kvm_vcpu_kick -EXPORT_SYMBOL_GPL vmlinux 0xaddf0937 __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0xade02826 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xaded9da1 perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae1578eb regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0xae1882c0 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xae23b8da key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xae56a48b platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all -EXPORT_SYMBOL_GPL vmlinux 0xae89ab6c ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0xae89eeb0 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xae8bf43b blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0xae9dacd1 dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0xaea822c7 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xaeb1b95f inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xaebcc36f crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0xaee7d5da regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xaef326ab evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xaefb6b16 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xaf112900 cpu_remove_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xaf3d9e28 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xaf41521a fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xaf4becdb usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xaf928620 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0xaf962910 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xafc35ae3 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0xafdec1e1 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xafe21d8b uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xafec180b fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xafef3625 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xaff6be8a phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xaff83322 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xb0343373 kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xb03ccde1 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb0427a23 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xb05cf5b3 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb080315b ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xb0823d93 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xb0b83929 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0c674e8 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0ebdf0f debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xb13c1e1d usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb14d7e99 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1c39f16 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0xb1c9497a ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb22429e6 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0xb226d3a6 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xb23bc8f6 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xb247ca6f posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0xb249453c devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xb2650988 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xb265b2bd fsl_spi_cpm_bufs_complete -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb26df3a4 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0xb27f5db6 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xb2b9312b kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0xb2cfba6e desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0xb3019925 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy -EXPORT_SYMBOL_GPL vmlinux 0xb353dd40 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xb359170e task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xb376094f pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xb391c37d led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0xb3a20ece dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xb3a71441 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb3a79b88 kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xb3fa9bb4 kvmppc_emulate_mmio -EXPORT_SYMBOL_GPL vmlinux 0xb40f594f pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xb411a0e2 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0xb4178f72 phy_init -EXPORT_SYMBOL_GPL vmlinux 0xb419d993 fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0xb41ecdba kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns -EXPORT_SYMBOL_GPL vmlinux 0xb491b007 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xb4977c2b cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xb4b476fe unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xb4b7534e set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4cb46b8 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0xb4cb8ec0 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb4cc6b39 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0xb4e5b786 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4ee3266 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xb50ab3fb usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xb51e2c97 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb52329a9 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb5398c6c of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xb549ce43 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xb55ad457 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xb562dece inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xb56c0423 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xb575d998 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb5af2819 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xb5b46623 mpic_subsys -EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xb5db9e6d subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xb5db9ec9 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb600d511 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb628ce29 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xb65702b1 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xb668a4e3 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xb67adf18 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xb6a31d76 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xb6abbb5e kvmppc_ld -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6b907eb of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xb6c2ff4a netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6eabb3c pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb73116f1 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb746cf77 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xb748c411 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xb74c91e5 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb750fb42 of_get_nand_ecc_strength -EXPORT_SYMBOL_GPL vmlinux 0xb75aff8e devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xb7685aea nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xb786e77d percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb7948e37 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xb7a030bb to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0xb7c8d11f page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0xb7e06f79 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xb7e936b4 regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0xb7f14ec2 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb832ea7e sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0xb8383891 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xb83aa30a usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xb84cbf7f pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xb87af7c6 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb89e960b regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb90e4ec9 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xb925ec1d kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0xb92c4b1c device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xb9321289 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0xb93b593c security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xb95d9a3b rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0xb974571c regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0xb986b51c pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xb99ed7f4 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xb9a2b7e7 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xb9b9bb2b sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9ba6f63 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0xb9bbb893 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xb9bbc9f4 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xb9c29703 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d7571a cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0xb9e9a83e simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xba2387b7 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0xba29fbb1 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xba2a7586 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba2e781c vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0xba42a530 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xba52a195 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xba597640 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xba80a666 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xba956fec kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0xbaa5eed8 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xbaab164f rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbaba77a5 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xbad091d4 swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0xbad82641 trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0xbade19f6 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xbae9ff42 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbafb8c86 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb04b74f relay_close -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb192798 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xbb5f5c97 rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0xbb689f8d nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0xbb691bb0 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0xbb6cb19e nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0xbb72574d of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xbb888f21 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xbbc351bd nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xbbd1e52d crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xbbdf0816 __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbbecb64f inet_csk_compat_getsockopt -EXPORT_SYMBOL_GPL vmlinux 0xbbfa2409 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xbc3719fb crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xbc3d7fdc __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc6fdf56 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xbc774db6 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xbc81fcc7 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0xbc878ace ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcb69b96 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xbcb873b7 of_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd52555 wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0xbd0f7bc8 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0xbd2a7406 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd43d0b1 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd606e38 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbd6179f1 tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xbd6e0302 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xbd805d39 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbdde2634 tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xbddfd04e alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xbde0dab7 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xbde40279 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0xbdf07738 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xbe1707f9 rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xbe184d78 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe24e2aa power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xbe29cf04 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xbe5f2c24 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe8259fe crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe9d4f57 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeb6f356 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbec8d1c8 analyse_instr -EXPORT_SYMBOL_GPL vmlinux 0xbed22fa4 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbeef7af6 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xbeefef50 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xbf1ef217 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xbf20e450 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbf4c570c user_read -EXPORT_SYMBOL_GPL vmlinux 0xbf91add8 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfd19390 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xbfe2af65 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbff6bfa9 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0xbffbe89e of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space -EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc02c5198 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xc033c1af usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xc061367e mpic_msgr_get -EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0ad5ca9 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xc0cd2835 get_device -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f26ba3 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0xc114dbea blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xc118c4dc ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0xc1249f54 regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0xc12a9bfc dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0xc1630c2b mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc18afd9b bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xc18cb7c7 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xc192d369 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc1b1971e kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0xc1bdffe4 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xc1d3a76e pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0xc1d3d335 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xc1fe2177 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0xc1fffcc7 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xc20d272e ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc20f4499 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xc225d3bc devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc2468443 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xc24c8592 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc24d2998 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xc2593855 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xc26b6bdc usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xc2723a76 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xc277e1ec uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xc280138f crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc28161e4 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0xc28689ca bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xc28cdca9 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc292463a of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc2d01f33 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xc2d2fed5 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xc2d320b4 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xc2f683c6 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0xc321e3a4 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xc3240278 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc342565d kvmppc_prepare_to_enter -EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc37aa1c4 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc3888869 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc3bd0098 of_get_nand_ecc_mode -EXPORT_SYMBOL_GPL vmlinux 0xc3d6230e screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xc3ee0f50 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xc3efa8b0 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xc3f94ef6 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xc420cb8a of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42aeb1d __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc45f378c usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xc4673fba blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc4a16a61 unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xc4a7970b tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xc4ba2b3e pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xc4c91c38 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc5218b1d reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc5395f82 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc553243c gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xc59e75b8 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc5a8e9eb virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0xc5b6a1c9 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0xc5d4a541 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xc604c4ce device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid -EXPORT_SYMBOL_GPL vmlinux 0xc6081a45 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xc60d7e78 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0xc611ffe7 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xc617ce6f save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc6226c4b powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xc633bb42 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xc6407778 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xc642e5df i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xc646e7f2 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xc649a694 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc64f313e blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc679741d cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xc6810ed7 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc6882bdc mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xc68e2a90 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0xc6980fea device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6a75886 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xc6b62d8a rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0xc6df8a5d find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xc6e2f1bb __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xc6ec423c usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0xc6ee43c4 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xc6f8385f cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xc70e4b59 kvmppc_claim_lpid -EXPORT_SYMBOL_GPL vmlinux 0xc7134f17 nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc74e29e9 spi_async -EXPORT_SYMBOL_GPL vmlinux 0xc763d615 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xc767c505 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xc794fb1e flush_altivec_to_thread -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7b48fdc gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7d68291 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0xc7d770fd rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xc7dcae1e __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7e58d48 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc7e8ff5f shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xc828e619 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xc8338514 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xc83777cf tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xc83e744a __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xc84d622d regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0xc858c3ca irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xc85f3fe4 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xc86370d9 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc88caa66 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xc89c2329 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0xc8ab62d4 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8b23909 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xc8b9d892 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xc8cdd19d rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0xc8cf403d __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xc8d1ee61 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8f27de6 spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xc8fae637 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xc90c05d2 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc9163e8a percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0xc9298f94 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xc93e4772 virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0xc93f096d crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level -EXPORT_SYMBOL_GPL vmlinux 0xc997f5a6 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xc9985887 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xc9a14a85 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xc9b605cc regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xc9e83db1 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xca08db57 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xca1c1935 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0xca299134 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xca5acf89 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xca68ee1d scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0xca70af22 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xca72ce6f ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xca7713cb blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca7ed7cf scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0xca872718 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xca9a26dd wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcb0da9c5 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb206300 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xcb28950b regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xcb3de428 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xcb7a5391 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xcb8f8df4 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xcba1229b xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xcbaad114 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xcbb62bf2 of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0xcbc887b1 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xcbd91cbc usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbeaf982 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcbf62b7c __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xcc0d746d trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcc2ba30d list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcc44961f kvmppc_alloc_lpid -EXPORT_SYMBOL_GPL vmlinux 0xcc52deda sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xcc578dc0 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xcc5f6dec regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0xcc805564 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xcc81068d usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc8dc263 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xcc9f7219 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xccbe91b8 of_overlay_create -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd1cef4 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xccfc6a8c irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xcd0db0e4 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xcd39512c relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xcd5bb42e edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0xcd723fa9 tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xcd7d2c2c fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xcd801ab1 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcdac5695 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdbe086e alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xcdbe2c05 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd25f79 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0xcde929b3 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xce0a26cf rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xce31a5c6 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xce4ac52d of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce716604 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xce923825 inet_csk_compat_setsockopt -EXPORT_SYMBOL_GPL vmlinux 0xcea0e94c spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xcebc5b94 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xced6997f tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xcedfbd29 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcef24b65 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xcef3e17f ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xcf13dd14 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xcf205be8 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xcf397172 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf56200f debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xcf5d98cc kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xcf7718d2 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xcf8cb4bd da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xcfa1656b crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfd3221a clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0xcfdad534 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xd00afcc9 dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0xd03955a7 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd03cf35e ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xd0484c09 extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0xd05ac4ac usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd07866ee cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xd07943ce crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xd093c352 spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0xd09d368d kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0ca2f8a watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xd0f015a9 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xd0f29376 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xd0fb7959 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd10b5c5d gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xd12d7cac pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xd13de677 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0xd15424cc hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd1576fbf inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd18fe1e4 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xd1a9e327 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xd1b59516 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0xd1bda0dd regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xd1db1acd pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd1e8552f usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd1e8665b napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd205d0c1 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd21790e1 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd22ae16d power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xd22d72c2 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xd22fe2ac sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xd23efe55 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xd24f9834 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd2570127 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xd270d9ae extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd27a4099 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xd283623d dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0xd2d43900 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd2f6df2f led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xd30a08de wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0xd323dbb1 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xd32d90bf irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xd3693f85 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xd39c1b1e tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xd3a43577 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xd3a76d0b platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd40f598c virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd421ae93 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xd432ed6f i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44e949e blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0xd452fdb2 cpu_remove_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c47e9e unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xd4e2a012 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xd52495ed blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xd5334fae napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0xd570d724 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xd57a2881 dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd601d4d7 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0xd6021b38 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xd604bceb dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0xd60903d8 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd6273aa5 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xd62af7d1 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xd652f721 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xd65c830c crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd682c367 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd691b7ff usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xd692ab89 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xd6b23874 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0xd6e0760b unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0xd6e675b9 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xd6ea2ff0 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xd6f6aaff usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0xd6fad4c9 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd702578c irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd715852c devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xd7321206 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd78a4b04 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xd7a4377c fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xd7d1a957 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xd7d9829a rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xd7e1ee3b irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xd7e4449e srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0xd7e94190 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0xd7f067ff device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd8233983 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xd828a786 unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0xd849cae9 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xd86cee5f ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xd87019d2 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd888befe blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0xd8b9ea8a rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd8c0d37c device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xd8d90066 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xd8e5c19e fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0xd8fc659d clk_register -EXPORT_SYMBOL_GPL vmlinux 0xd90dcdf2 dev_pm_opp_get_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd91f8838 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xd93e68d2 swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0xd93e8e0e of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0xd95608c5 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xd958d356 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd9a37537 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xd9b535a6 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0xd9c39156 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd9c77ac6 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xd9c99170 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xd9d95d9d regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xd9e23893 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9f032b1 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable -EXPORT_SYMBOL_GPL vmlinux 0xda0f021d da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xda260c75 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda401b33 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xda57284f module_mutex -EXPORT_SYMBOL_GPL vmlinux 0xda7acc5a blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xda8cb2e5 threads_core_mask -EXPORT_SYMBOL_GPL vmlinux 0xdacf6983 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xdad5c52d free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaedcc97 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb20c8b4 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xdb41f272 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb765e1f devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xdb9699a6 aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xdbaf8779 device_reset -EXPORT_SYMBOL_GPL vmlinux 0xdbc82287 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc12aa73 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xdc1c379d __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xdc290e9c rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdc29329a usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xdc35bc92 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xdc4f9386 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xdc68460d tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xdc7d5332 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc9ab852 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xdc9b5216 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca79cf2 arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0xdce9a9c8 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xdd134a35 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0xdd1654c5 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0xdd5a3295 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0xdd5ddea7 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xdd831bac thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xdd833572 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xdd97eec7 nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xddae1732 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc9642b is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xde0aac4b ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0xde0d12de unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xde0e0087 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xde3d5d9f pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xde5cacae clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xde638bd5 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xde642427 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xde6b605b io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xde8dd1f8 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xde9c7a8d devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf26d1eb rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xdf4fa000 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xdf6c2641 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xdf80476d trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xdf9512f1 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0xdf969bb5 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xdfa6d5cf irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xdfda2008 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe01683e0 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe0338a46 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put -EXPORT_SYMBOL_GPL vmlinux 0xe03fd439 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xe0457185 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xe05fc344 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe0755402 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe0ad21e7 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0bc9499 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xe0ed2ba8 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0xe12fc2f2 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0xe143ce4c usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0xe158b114 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe190d223 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0xe197c3bf l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe19eb1c4 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe1b23ae4 tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0xe1b51f77 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xe1b8d4df disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1bea7a7 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xe20065b4 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xe206b552 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe2965563 nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xe2c04fc8 fsl_spi_cpm_reinit_txrx -EXPORT_SYMBOL_GPL vmlinux 0xe2e37528 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xe3006d9a adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe30266d5 device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe3190837 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xe3250f72 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xe32b09fb ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xe361808b __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xe36f64c7 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xe38a5c0b netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xe3d7750e btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0xe3df2850 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xe3eb5945 max_gen_clk_ops -EXPORT_SYMBOL_GPL vmlinux 0xe40493ce wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe4232f99 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0xe4401e42 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xe44dae9b rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0xe45df17b pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe46e4ee7 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe49d189d class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xe4b9a2b1 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4c8915a ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xe50054cf usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xe5096d9b sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe51c040f register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xe5206934 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xe54907d4 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe5540302 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xe554fd60 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58d4d46 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5c5db54 fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0xe5dc2a97 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xe5e3a08c usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xe5f22bf2 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xe5f8d7f1 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xe636c2fe sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xe6405049 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe655a625 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0xe657b525 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xe6665a97 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xe68839a4 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe690f308 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0xe6913fa6 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xe6b8b801 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6df1076 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe6f08e2e rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0xe6f82055 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xe6fca6dc thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0xe7158025 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xe72b1760 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe7419550 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe7462d71 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe7565f77 of_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xe75dedc0 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe79c336f device_add -EXPORT_SYMBOL_GPL vmlinux 0xe7c0ecd3 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xe7e9a327 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe80719c4 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xe80938f9 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe81c171a ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xe823f80a crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe845d25d of_pci_find_msi_chip_by_node -EXPORT_SYMBOL_GPL vmlinux 0xe8476a00 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe852f11a ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe863067c devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xe870ffb1 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xe88b01ef kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe8a1ca43 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xe8a51a19 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xe8cc636c dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xe8cf84dd of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xe8e826fe hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xe8f840e9 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0xe920da6e of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xe93ab7ef pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe9451396 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xe952d46a fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xe97340ea pcibios_unmap_io_space -EXPORT_SYMBOL_GPL vmlinux 0xe97ed241 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xe98006eb trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xe9896e56 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xe9b9a7d4 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0xe9c5f11c of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xe9cbf90e kvm_clear_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9dcb02e hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xe9fd68dd dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xea04bf65 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea2f9f86 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xea33e773 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xea38ff49 dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea54427f class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0xea7b35d1 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xea7f6b83 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xea895817 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xea929e39 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeaff6623 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xeb0386f1 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xeb0b1d6a of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xeb11a93c spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0xeb410613 device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0xeb617336 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xeb70c8e6 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xeb7e7f4a led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xeb854cb0 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xeb997240 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0xebb5aadb pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xec11260f single_release_net -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec4a2d54 dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0xec5d6936 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xec784c2e dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xec8d63c4 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xec8e3d6f class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xecb1af2e scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xecc43c1a kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0xecc641bf usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xecca71ea dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0xecef1221 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xed30e0ca regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xed33b3f3 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed448284 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xed4b2d22 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0xed6dba9e __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xed7c90bf __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xedc1e430 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xedce1467 part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0xedf80c2e pcibios_claim_one_bus -EXPORT_SYMBOL_GPL vmlinux 0xee0e533c rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xee0ecd11 dev_pm_opp_get_suspend_opp -EXPORT_SYMBOL_GPL vmlinux 0xee273fbc regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xee2ecbae __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0xee2f2122 __module_address -EXPORT_SYMBOL_GPL vmlinux 0xee34913b inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xee4470bb power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee74d8d9 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xeea58a2d md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xeeac09ea rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0xeed187bd virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xeee5b0b6 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xef002610 usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0xef026c54 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0xef0e913e platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xef11cb35 __tracepoint_kvm_ppc_instr -EXPORT_SYMBOL_GPL vmlinux 0xef3b99c8 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xef491743 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0xef4cefcd bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xef93b299 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefc1c072 of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0xefddd0a8 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xf02f63ae sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf03e4296 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xf055bcd4 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xf056135a bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0xf06ca95b proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf075fb1a nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0xf07f84cf pcibios_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xf08500dc kvmppc_pr_ops -EXPORT_SYMBOL_GPL vmlinux 0xf0a5f69e regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0d70288 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0xf0f3d5f5 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf10406c3 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xf11b5bdd cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0xf1222d53 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0xf13609ed usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0xf147e13d led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0xf16fa667 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xf1847948 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf1941239 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xf19d9fa7 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b2f27f devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1c345f1 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xf1c937ad __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf1fde4dd hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf20c3222 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf25f8557 kvm_vcpu_block -EXPORT_SYMBOL_GPL vmlinux 0xf26bf4a0 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf2a05a2a dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2b1de99 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xf2fa9bff bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf3012f6c rh_free -EXPORT_SYMBOL_GPL vmlinux 0xf309e305 of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf3225d4e event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0xf32a10e6 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xf345fbb8 dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xf3464508 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xf3469120 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3964136 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xf3a713e9 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3c3de71 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xf3c7b1ab gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xf3d66b67 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0xf3dc9e2a power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xf3dd8ce7 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf427925e reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf42a8f8d crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xf4315942 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0xf445667e pcibios_free_controller -EXPORT_SYMBOL_GPL vmlinux 0xf44ebbe7 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xf4524b5c ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xf48faff2 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf49d01a7 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xf4da3546 kvmppc_init_lpid -EXPORT_SYMBOL_GPL vmlinux 0xf4f8deb6 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5200b9c usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0xf523dcf2 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf554f7cd sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xf55d3cb8 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xf562694c i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xf57e8c82 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xf581b8de blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5bc860b power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xf5d1e3da usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf5e3d296 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0xf5e7f053 rh_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf5ed2990 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xf6670e05 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xf6729306 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xf68209e4 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xf6828f8b dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0xf6c0b531 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf70e9fed serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0xf732a87c fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf74a64c1 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xf79d543f of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf7ae1cfc usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0xf7b4acd9 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf7c81ae0 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0xf7c9204c extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0xf7d90096 of_get_nand_ecc_step_size -EXPORT_SYMBOL_GPL vmlinux 0xf7d930ce ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xf7e71715 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf813b1bf regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xf8225f77 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf837e0eb unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xf84dec36 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xf84fb967 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xf85a59e6 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xf85cd5e3 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xf87b7b96 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf884857c usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf88e164a usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xf8a8a4d7 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xf8d9273e spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xf8dbda43 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xf8e398fc memstart_addr -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf9203a16 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xf928625e blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf95972c0 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xf96e95b0 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0xf974a7cf ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xf98761c2 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf99a32e5 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9c02cdc irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9ddbcc8 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xf9fd30ec bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa5999a9 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0xfa6b08b1 mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xfa710206 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xfa746d1f uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec -EXPORT_SYMBOL_GPL vmlinux 0xfaac7b75 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xfad8b8fb crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xfadc468a __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xfae52247 __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0xfaf85854 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xfb0657ee of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xfb1b6b37 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xfb22bc6c cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xfb321372 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb39b76a cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0xfb46d1f0 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfba7fd98 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbd35a2c driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xfc023997 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0ae8b3 fsl_spi_cpm_irq -EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc2879e5 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xfc3209f5 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0xfc326134 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xfc47441a of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xfc691929 pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xfc7941b0 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xfc8db20c pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xfcaa75f9 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xfcabd493 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xfcd75af2 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xfcdf18d4 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xfce1c151 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xfceee8b7 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xfd025798 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xfd0c7443 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xfd15b405 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xfd2190af disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xfd401c1e of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0xfd4e923e rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xfd57946e init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd880e4c kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0xfd8ecb73 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xfda3fbec ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xfda436f6 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xfdb1137b skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xfdc6c1fa platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfdf58d88 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe06383d rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xfe07e197 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xfe09df45 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xfe50a72d rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfe5121d0 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xfe7c342f regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xfe9383bc thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfea7a1b0 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfeae7b61 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0xfec4025b fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed7176d dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xfed830d8 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xfeea4e71 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2dcd0b scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xff461129 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xff5973a5 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff6d10cf crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xff8862d7 rh_get_stats -EXPORT_SYMBOL_GPL vmlinux 0xffa005dc clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xfff671f3 sock_diag_save_cookie reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-emb.compiler +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-emb.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-emb.modules +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-emb.modules @@ -1,4308 +0,0 @@ -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_mid -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -DAC960 -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -ac97_bus -acard-ahci -acecad -acenic -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -aha152x_cs -ahci -ahci_ceva -ahci_platform -ahci_qoriq -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airo_cs -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -ali-ircc -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am53c974 -amc6821 -amd -amd5536udc -amd8111e -amdgpu -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apbps2 -apds9300 -apds9802als -apds990x -apds9960 -appledisplay -appletalk -appletouch -applicom -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -asc7621 -ascot2e -asix -ast -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atm -atmel -atmel-flexcom -atmel-hlcdc -atmel_cs -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avm_cs -avma1_cs -avmfritz -ax25 -ax88179_178a -axnet_cs -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1pci -b1pcmcia -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-keypad -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcma-hcd -bcmsysport -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluecard_cs -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bt3c_cs -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btuart_cs -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -caam -caam_jr -caamalg -caamhash -caamrng -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -cap11xx -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_das16_cs -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipone_icn8318 -chipreg -chnl_net -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -clip -clk-cdce706 -clk-cdce925 -clk-max77686 -clk-max77802 -clk-palmas -clk-pwm -clk-rk808 -clk-s2mps11 -clk-si514 -clk-si5351 -clk-si570 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cm4000_cs -cm4040_cs -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -colibri-vf50-ts -com20020 -com20020-pci -com20020_cs -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_isadma -comedi_parport -comedi_pci -comedi_pcmcia -comedi_test -comedi_usb -comm -configfs -contec_pci_dio -cordic -core -cp210x -cpc925_edac -cpia2 -cpsw_ale -cramfs -crc-ccitt -crc-itu-t -crc32 -crc7 -crc8 -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -csiostor -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_cs -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -ddbridge -de2104x -de4x5 -decnet -deflate -defxx -denali -denali_dt -denali_pci -des_generic -designware_i2s -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9601 -dmfe -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -dp83848 -dp83867 -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dtl1_cs -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc3 -dwc3-pci -dwc_eth_qos -dwmac-generic -dwmac-ipq806x -dwmac-lpc18xx -dwmac-meson -dwmac-rk -dwmac-socfpga -dwmac-sti -dwmac-sunxi -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -eata -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -echainiv -echo -edac_core -edt-ft5x06 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efs -egalax_ts -ehset -elan_i2c -elo -elsa_cs -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emac_arc -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_pcmcia -ems_usb -emu10k1-gp -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -eni -enic -epat -epia -epic100 -eql -esas2r -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f75375s -f81232 -fakelb -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_cs -fdp -fdp_i2c -fealnx -ff-memless -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fl512 -flexcan -flexfb -floppy -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -fmvj18x_cs -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fsl-corenet-cf -fsl-diu-fb -fsl-edma -fsl_elbc_nand -fsl_hypervisor -fsl_ifc_nand -fsl_lpuart -fsl_pq_mdio -fsl_usb2_udc -fsldma -ft6236 -ftdi-elan -ftdi_sio -ftl -fujitsu_ts -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcm -gdmtty -gdmulte -gdmwm -gdth -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -genwqe_card -gf128mul -gf2k -gfs2 -ghash-generic -gianfar_driver -gianfar_ptp -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -gluebi -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-addr-flash -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-amd8111 -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-fan -gpio-generic -gpio-grgpio -gpio-ir-recv -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-rdc321x -gpio-regulator -gpio-syscon -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gpio_wdt -gr_udc -grace -grcan -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gxt4500 -hackrf -hamachi -hampshire -hangcheck-timer -hanwang -hci -hci_uart -hci_vhci -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hi6421-pmic-core -hi6421-regulator -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hih6130 -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi504_nand -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horus3a -hostap -hostap_cs -hostap_pci -hostap_plx -hp100 -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -hsu_dma -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hwa-hc -hwa-rc -hwmon-vid -hx8357 -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-cbus-gpio -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-emev2 -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-mpc -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-reg -i2c-nforce2 -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-rk3x -i2c-robotfuzz-osif -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i40e -i40evf -i5k_amb -i6300esb -i740fb -i82092 -ib_addr -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_qib -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibmaem -ibmpex -icp_multi -icplus -ics932s401 -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_gen2 -idtcps -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -ims-pcu -imx074 -imx6ul_tsc -imx_thermal -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int51x1 -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipwireless -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irtty-sir -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it913x -itd1000 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -kafs -kalmia -kaweth -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan78xx -lanai -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-adp5520 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-ktd2692 -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_cs -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -liquidio -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -litelink-sir -lkkbd -ll_temac -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac_hid -macb -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mailbox-test -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max5821 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77686 -max77693 -max77693-haptic -max77693_charger -max77802 -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -md5-ppc -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-cavium -mdio-gpio -mdio-mux -mdio-mux-gpio -mdio-mux-mmioreg -mdio-octeon -mdio-thunder -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -metro-usb -metronomefb -mf6x4 -mga -michael_mic -micrel -microchip -microread -microread_i2c -microtek -mii -minix -mip6 -mite -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_block -mmc_spi -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpc85xx_edac -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi001 -msi2500 -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxser -mxuport -myri10ge -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nand -nand_bch -nand_ecc -nand_ids -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -ncpfs -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_daq_700 -ni_daq_dio24 -ni_labpc -ni_labpc_common -ni_labpc_cs -ni_labpc_isadma -ni_labpc_pci -ni_mio_cs -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicpf -nicstar -nicvf -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nmclan_cs -nosy -notifier-error-inject -nouveau -nozomi -nps_enet -ns558 -ns83820 -nsc-ircc -ntb -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nvidiafb -nvme -nvmem_core -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_mmc_spi -of_xilinx_wdt -ofpart -old_belkin-sir -omap4-keypad -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_cs -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -palmas-pwrbutton -palmas-regulator -pandora_bl -panel -panel-lg-lg4573 -panel-samsung-ld9040 -panel-samsung-s6e8aa0 -panel-sharp-lq101r1sx01 -panel-simple -parade-ps8622 -paride -parkbd -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pcmcia -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pc300too -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia -pcmcia_core -pcmcia_rsrc -pcmciamtd -pcmda12 -pcmmio -pcmuio -pcnet32 -pcnet_cs -pcrypt -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc_adma -peak_pci -peak_pcmcia -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-tahvo -phy-tusb1210 -physmap -physmap_of -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pn533 -pn544 -pn544_i2c -pn_pep -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_core -pps_parport -pptp -prism2_usb -ps2mult -psmouse -psnap -pt -ptp -pulsedlight-lidar-lite-v2 -pvrusb2 -pwc -pwm-atmel-hlcdc -pwm-beeper -pwm-fan -pwm-fsl-ftm -pwm-lp3943 -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa27x_udc -qcaspi -qcaux -qcom-spmi-iadc -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom_spmi-regulator -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qlogic_cs -qlogicfas408 -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qoriq-cpufreq -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quatech_daqp_cs -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -ray_cs -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio-scan -rio500 -rionet -rivafb -rj54n1cb0c -rk808 -rk808-regulator -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-as3722 -rtc-bq32k -rtc-bq4802 -rtc-cmos -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-generic -rtc-hid-sensor-time -rtc-hym8563 -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max77686 -rtc-max77802 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-r9701 -rtc-rc5t583 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-snvs -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtc_cmos_setup -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7706h -safe_serial -salsa20_generic -samsung-keypad -samsung-sxgbe -sata_fsl -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sbp_target -sbs-battery -sc16is7xx -sc92031 -sca3000 -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -sdhci -sdhci-of-arasan -sdhci-of-at91 -sdhci-of-esdhc -sdhci-of-hlwd -sdhci-pci -sdhci-pltfm -sdhci_f_sdh30 -sdio_uart -sdricoh_cs -sedlbauer_cs -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serial_cs -serio_raw -sermouse -serpent_generic -serport -ses -sfc -sh_veu -sha1-powerpc -shark2 -shpchp -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sis -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skd -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -sl811_cs -slcan -slip -slram -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smc91c92_cs -smipcie -smm665 -smsc -smsc-ircc2 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4117 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-als4000 -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pcxhr -snd-pdaudiocf -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-sb-common -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-imx-audmux -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rt5631 -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-usx2y -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-vxpocket -snd-ymfpci -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -softing_cs -solo6x10 -solos-pci -sony-btf-mpx -soundcore -sp2 -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -spectrum_cs -speedfax -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-nor -spi-oc-tiny -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-sc18is602 -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spmi -sr9700 -sr9800 -ssb -ssb-hcd -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -ssu100 -st -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stmmac -stmmac-platform -stmpe-keypad -stmpe-ts -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -svgalib -sx8 -sx8654 -sx9500 -sym53c500_cs -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink -synclink_cs -synclink_gt -synclinkmp -sysv -t1pci -t5403 -talitos -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc3589x-keypad -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teles_cs -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -thmc50 -thunder_bgx -thunderbolt -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -torture -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_atmel -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish_common -twofish_generic -typhoon -u132-hcd -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udc-xilinx -udf -udl -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_fsl_elbc_gpcm -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -us5182d -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vcan -vcnl4000 -ves1820 -ves1x93 -veth -vf610_adc -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-ircc -via-rhine -via-sdmmc -via-velocity -via686a -videobuf-core -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videodev -vim2m -viperboard -viperboard_adc -virt-dma -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -vitesse -vivid -vlsi_ir -vmac -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vrf -vringh -vsock -vsxxxaa -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83781d -w83791d -w83792d -w83793 -w83795 -w83977af_ir -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wbsd -wcn36xx -wd719x -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -windfarm_core -wire -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wl3501_cs -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xc4000 -xc5000 -xcbc -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xhci-plat-hcd -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx_ps2 -xilinx_uartps -xillybus_core -xillybus_of -xillybus_pcie -xirc2ps_cs -xircom_cb -xor -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yenta_socket -yurex -zaurus -zd1201 -zd1211rw -zforce_ts -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -zr364xx -zram -zynq-fpga reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-smp +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-smp @@ -1,17803 +0,0 @@ -EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0x048d27cc hvcs_register_connection -EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0x536d329b hvcs_get_partner_info -EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xc39c3704 hvcs_free_partner_info -EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xd0a02396 hvcs_free_connection -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x6310e901 mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0x45ff26a1 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x44521424 bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0xfefd83bf bcma_core_dma_translation -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x10a419da paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x18ee96df pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x1f67b5a3 paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x4581460e pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x7737d17f pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x789b1f66 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x99567b9d pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xa76caf30 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xa7a56754 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0xb182952f pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xc3d20a6a pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xfd4edfc8 pi_disconnect -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xac324504 btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x59715ec7 ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x59d83ef9 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x76c0a3c9 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x867a50ab ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xc6f504a4 ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x0b434d91 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x556b221e st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc205e20b st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xff772d10 st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x467ba028 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x90bd96e7 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xeac699a8 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x1f7eb74e dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x3d4eb9d9 dw_dma_get_src_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x3fe49dd7 dw_dma_cyclic_start -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xa5722efd dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xddce7709 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe233f3ab dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/edac/edac_core 0x6196267d edac_mc_find -EXPORT_SYMBOL drivers/firewire/firewire-core 0x014a0ce0 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x17dfc0e7 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1a11fbf1 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a81e5cf fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3dd1f3a3 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4311d67a fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x43750044 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x483bad31 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4aa62314 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5a627a9c fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5e75b51c fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x632816ba fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6ae69746 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x75c08bc6 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9064260e fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9bc9ac43 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa0909e2b fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb09c2ce8 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb934769f fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb20abab fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbccf73d3 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc8388475 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd036841c fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdcb8b583 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe0209a20 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe95615f4 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/fmc/fmc 0x1b1f5a2b fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0x36fbaa86 fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x371354f0 fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0x61c99d46 fmc_device_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0x651f7d7a fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0x7f709b5d fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0x9536b721 fmc_driver_register -EXPORT_SYMBOL drivers/fmc/fmc 0xaba8714e fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0xabfeefb3 fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0xbe6db0b8 fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xf1a97766 fmc_free_sdb_tree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0099a866 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x010d95cb drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x013ce043 drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05d8e41f drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0647c47f drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x065167c5 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06d55a67 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09133508 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a3c412c drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ade2d1f drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0af51835 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ba7729c drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0caf7e72 drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d3cd2d9 drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7dceb9 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ea4a256 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c231d0 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x117623bb drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11c9d36d drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12085a3c drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12faa81a drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x134e810f drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x138e5d4c drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x149da881 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14b840a0 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14e7f527 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14e8de9c drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1680a604 drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ab1f9a drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x172d4858 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x180d9fa8 drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e4430f drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a299fa4 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bb27392 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd3cbd6 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d3f87df drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd32f0e drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ef8d5ed drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fb79693 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x206173fb drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x217ee6a5 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21a2f8ff drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2593faa4 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27ecc86c drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28115449 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x294300ab drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2add3848 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2beeb0e3 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c0f397a drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d3e6fd8 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2de22313 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3057095c drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3111b415 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31358c44 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x316328a9 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31913076 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x321a916f drm_agp_bind_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a4971a drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x333968da drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3352c0f3 drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x355463e4 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37147613 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3880a211 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39093c7b drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a845565 drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b69ec72 drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bca0773 drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d1cc3c5 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d7f8bd8 drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f227351 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f5237c5 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4027e62f drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40cda96a drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x422268ed drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4349658f drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43f7e569 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x442507b2 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x446922f8 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4485b5c3 drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44eaaf51 drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45460d54 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x457a5704 drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0x458adb90 drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4671344f drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46dfc584 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48567d88 drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48a5f66a drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490ad5b4 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x497891ea drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b118bd9 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d91fcee drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4db420fa drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x502a57a2 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52719493 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x539d92a0 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54331fab drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55059f8b drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56ed76c5 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x571c7a74 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57e2aa37 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57f625dc drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5819d6c1 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a932f33 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ab40e17 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bb63c9e drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cc05801 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d35ca72 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5daefae2 drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e9344d0 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5efb5c4b drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60f2d6d5 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61cb4c14 drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6268704a drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x641eb16d drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64edd5c6 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x675a19f2 drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x683c86df drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ed607c drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a1bbfe2 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b2edc2d drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bba279a drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bea90cb drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c1125ad drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d1774f2 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d49bbbd drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d86613e drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e93ea60 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x704bf914 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x718bad30 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x718c9b7f drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x720698e7 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x727eac47 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72bb906b drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x731d7a03 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73703410 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x749b46cd drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7551f46e drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x759b571b of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76ae287a drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7838bce2 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79a37d5a drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79e0f9a2 drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ae1a68f drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b1e42a9 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b6804e7 drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bdbaec0 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dff70e3 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e500137 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c87814 drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8380c130 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83981f88 drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x853911fe drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85d35185 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86d80669 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x870ff264 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88535cff drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89da7188 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a36bb82 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a6a897a drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ade8da0 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8af21553 drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c058a19 drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cce52fa drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d78edae drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ed236a0 drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f615b99 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9094a3f0 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x916148e9 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91730387 drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91a9df35 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9399d8bd drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94373f74 drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9634e9cc drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96484de6 drm_legacy_addbufs_agp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96bc98d3 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x979750bf drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97d09469 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97ea3e76 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98290e79 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a436ce3 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b1b7bf6 drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ba5b49f drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cbfcff8 drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0aa811 drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d67cdc2 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e4609dc drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1102f7a drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1118dc3 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1b6c589 drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1d85dd6 drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2b74201 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2f0f6af drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa40057a2 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4048e59 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa564d0bb drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7556685 drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa81db2dc drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9a9f9f6 drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9ab9d92 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9de9b14 drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab6b0c23 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab7d94fe drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad55a571 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2b7672d drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2de534e drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb35a371c drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3a633fc drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6997f91 drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb76b7454 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb90ed1a5 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb944a250 drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb988f18e drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9b4c795 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcb60bb7 drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf6dfd63 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0e5b19a drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25a5efc drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3667626 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc42a5417 drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc59acaf5 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5ce8820 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7b1d9c3 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc848c607 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8a5d654 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc91b6698 drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1a0adfb drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2b7bbac drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd34e39fb drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd433111e drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4793fb6 drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4d87639 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd563cb5a drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5adba81 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd77b9d26 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd86cd271 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9057d26 drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd946129a drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdaa23b8b drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb1b4a34 of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbddefed drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc52dd57 drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc9a7399 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcef3cb7 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd6f5522 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde76e5fa drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xded2cf34 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfa5d62c drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfcaa0cd drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2fe843f drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3bce834 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4d7f3ec drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe50422c4 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5a47f04 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6c12fec drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7ac7a97 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8c44f00 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe97e5d1b drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea3b6f46 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaab0db9 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeae96791 drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec17a9d6 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed0f267e drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed3a9936 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed8e34b6 drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef51a3b9 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef75fc23 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0d4c78c drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0ef3ae0 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2080a30 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6516606 drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf709cc39 drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7333585 drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7357208 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7a04d49 drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf84a4a72 drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8b7748b drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf944fb49 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9b01f3a drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd16175d drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd317863 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd969782 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff18b417 drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x026238f9 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x074e171a drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09099deb drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b4e4269 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ce04426 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dbb13ac __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11bc5924 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x143856ec __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14aeba5a drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14c13129 drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19e7b004 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1caa01cc drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ed1fdec drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x251a7006 drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x253007a0 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x262a632e drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x278562e6 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27c2b2dc drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28438c8d drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2892effe drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28b8838d drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a3a794d drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a78684a drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x308fb582 drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x360e93ea drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37952e11 drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38a78102 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a0b61d9 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a9a4730 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3aea3583 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d380a61 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dce4088 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41539132 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4262b1d4 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4290c6e0 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49c3f413 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a9595d6 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b796576 drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d942066 drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e9d02a7 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fdf9deb drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52952dab __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x550238b3 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59d0cbb6 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b5a4793 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c1b8218 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cfab698 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5eb9d2ad drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fccf04f drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61e44ed4 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6300425d drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65f65d3a drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x666e6939 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68b76933 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a06795d drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b182fe1 drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e55a4c6 drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e904674 drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f2e4295 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x724f5657 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7407c780 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74604dc5 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74cba2a0 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x756084a7 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x778d0dbe __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x789def3d drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7afa0d0d __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d158932 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d415de5 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d9bd39c drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e691ed8 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80363f51 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80982fda drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83dc05c3 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x851bfb8c drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x862727a7 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87c55d3c drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87d9f99e drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87f81982 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8994f9ab drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d605fc drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b6c7036 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d53d530 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91892da2 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x922017e1 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92a0e358 drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93b67cce drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95120f55 drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9596b9ad drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9603386e drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x962f4432 drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97a118e2 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97e5658b drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98f55fdd drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cc1df25 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e4ac0ef drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e9dfd77 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0958d95 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa302f808 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa875bc8e drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8b03e5f drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf738185 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0e00088 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb460711c drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6caa080 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7cba263 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb87f21c7 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba05a909 drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba22e7c3 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe27a0bf drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfbc7bd6 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc140c957 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4bf6a6d drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc71e5ce7 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9279455 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf97c8bf drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2f86004 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd47c309b drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd622d759 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8cfcfe7 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd5ce875 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe15a185d drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2700b4f drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5a8767d drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8f866f4 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe99c183f drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb4894e6 drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed82b46a drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed885105 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef0f6bfb drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf054d661 drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1f251bd drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf37962be drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf388f60d drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf455d9d3 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf59c0774 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa4bfd59 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbd650a7 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd0d568a drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd936be1 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdba6f29 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe99ec4b drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00f327d2 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0cd85515 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x110351ab ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x12678f08 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x167d3614 ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d0e90cb ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1dc0e347 ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2195e53e ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24c89e06 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24f9c635 ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x252cf702 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25958062 ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a85c227 ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ddf156c ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ecb5ccc ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x32eddbbb ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ea30da3 ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4778d778 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4b15718f ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f044f33 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x54bbd8f6 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5500c19a ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x571c0e19 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c076211 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6015343d ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x651725bf ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x775f10ad ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79870987 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fff26e0 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x810d34bb ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x815cdd93 ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x815da5eb ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8215cc9f ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bdc42e5 ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c41a5ec ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9203eabf ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x971e9f32 ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x995290e9 ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c5b596d ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ff2f584 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa68fc153 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab7c7792 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaba13a32 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbafa5cb8 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb1f5426 ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbbf444c0 ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc246fac5 ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc62f7e66 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc5f9cf9 ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd111c1d4 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd2e5adca ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xddd012b2 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe088dbe9 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1788151 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb375e84 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeec51674 ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x147973fd i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x868baf2c i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x87e84014 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x1ce5a873 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xf09b25d0 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xce8d8715 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x25d76e35 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2c43adc7 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3f8d961a mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x48b7f5a7 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4acb9a54 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6143acd5 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x78c517b5 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7970849c mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7aae1c74 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xab8ce04c mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc2436ecc mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc806229b mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcb0cc28d mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd5f1ab26 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd8ad1b1a mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xddf69ab8 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x859c56ca st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xb43742c5 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1fb83782 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x9ca4a11c iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x1835c480 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x3a05d807 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8b8224f6 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xbf0516cd devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x0f00d24a hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x562141ef hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x5a0247f0 hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8fb535e9 hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xf23aed72 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xf5926f35 hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x3f5a4ea9 hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x8a77de5d hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xaaa409be hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xbba9f83d hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x01ec8125 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42516433 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5a85b1d3 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6342a39d ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb5ac8969 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb87aea61 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb8ce4e06 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe18ea867 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfc69320f ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x38e17e1c ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x6f27ced3 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xabbffe9b ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xda992dd6 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xdc21ec6e ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x77d77a2b ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xb0dc3061 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xc44f908e ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0a445982 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1f2e4a39 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x296a90c3 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3cd5ac69 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x42f4513e st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x457d14f9 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x54f8788b st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9564917f st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x97539e4b st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa749f4f9 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa99961c8 st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xacc1ab90 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaf315e27 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd2116466 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdb8668df st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe4ae9ba9 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf9ed30a4 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x7f423a20 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xfbe50cc0 st_sensors_of_i2c_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xf1503a1d st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x1c87b355 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xdcfa50cf st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x8e85f45a hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x195a6476 adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x8c012eb9 adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/industrialio 0x0366c383 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x1e99cbdc iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x2f3734a2 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x4129801c iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x4b3e70ad iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x4be5e0e2 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x6207d549 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x697f1bd2 iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x6cce74c4 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x8921aba2 iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x97a6d677 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0xc0f11f8b iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xc7833059 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0xd23b6ee2 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe0ce20b0 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xf302621a iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xfb1ec6f4 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x2a3999dc iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xf20d4f30 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x6a089ddd st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x8f95488f st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x872a0d4a ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x31c1639f st_press_common_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xaf82ba8b st_press_common_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x07428bbb rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1ea5767b rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x32a8402c rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x4217c0e8 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x93006435 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xaf3fd282 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0a0fd2dc ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x181d1f6e ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2c32dc4f cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2f93ad11 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x514be2b6 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5ddecc7f ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6714e675 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x68b30cd4 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x774ec745 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7f54adb6 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa7af54c7 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbe256e34 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd3250843 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe21df04d ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xefb71311 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf20b28df ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf476d390 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf6c2d2d1 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03f205c6 ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05b8021d ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x085e8f6f rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bf91e0d ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fa6eaaa ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11afee43 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13ecac42 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14eade82 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1689a7d8 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16e148c5 ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x186785a3 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x188006ae ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d454356 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a9a8f6c ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2aa36ea6 ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31e0c4b1 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x322b5bed ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33080d19 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35338204 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x360e560d ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38553cc1 ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d920b7f ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dc5febd ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x411002d9 ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x428a4dfb ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46f918ac ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x487f538a ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b439c4a ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x523a502c ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5644d1aa ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a82e5ee ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5dec4c42 ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63108178 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6458d1be ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68a678cf ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68f90966 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ae6c333 ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ce40255 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8236ae5a ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89f54a8f ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d05f5a4 ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d4768dd ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9074f6dc ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9195728a ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93c5aacc ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95fb5fae ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96f819b6 ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x974b0638 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dc0b85b ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e37bd60 ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5916371 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa92fd317 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac99c47a ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xace7bca0 ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf4ac5ba ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1e5008c ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2fdb135 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb63fc948 ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7b04948 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbca7b6a3 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcfbc70a ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc01c4787 ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc798e559 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8c78288 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca08dc57 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc9feae5 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdf7320d ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce33ee30 ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0c4c343 ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda8f4b80 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb143e59 ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe489de6e ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe49807ff ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7e72b8a ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea682008 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeea58f54 ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeeb68ecc ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef585cca ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf07a9307 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf15b4891 ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf51156d7 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf643535b ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf77ca5b8 ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x05ba3c4c ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1ceaf361 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x54a24fb8 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x61bbb763 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6fe00aa3 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8cdb99c7 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8e086a50 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8f8e3310 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x96c6f6dc ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x99c07155 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xba3c5287 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc7c8890c ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf97ca620 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x2607f366 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x2e23ec80 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x4f50b077 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5fa5dae6 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8bd9192a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa12d837d ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc2fdb580 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xcd8c1c80 ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe16b08ed ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8dba52fe ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd76992be ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x05f5a9cc iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x082fc40a iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x084229e3 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ffe10e3 iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2d4b5fc0 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x494ed125 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x511d8cdd iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x51c5e712 iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5b6e87c7 iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x64c5b53f iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6e3f6e67 iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8d6e47c4 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd3461a50 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf0b7294e iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf44eca05 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0a094fa7 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f292363 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x20d42083 rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2b2f9f97 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3529ea44 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3e19aec4 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x66e4aab2 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x74f8d290 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x773dd563 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x82d9c28a rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x850838a3 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa9ab9765 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa6ab101 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaab828d1 rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc098fad2 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc8e96f1c rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd0367f7a rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd1da418e rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe2444381 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe74dbc9e rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf20ce271 rdma_join_multicast -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1e504fc0 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x26fa6171 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x6e20460f gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x90101192 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x9fdf0983 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa6fd58ae gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb82f95ad gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xe2792776 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xf91ff7fc gameport_stop_polling -EXPORT_SYMBOL drivers/input/input-polldev 0x2dfba557 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x7fda5d33 input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x85acf476 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x8a56d441 devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xde4b0e24 input_allocate_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x156c7dae matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x6e2b3e15 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x716df73e ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0xf2f07712 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x726dbfce cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x69617fca sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x76a3e788 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0xc323be55 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xc631e7dc sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0xe8ad4688 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0xec35f41a sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x18423765 ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x77a68a19 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0d98f287 capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x41e99078 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x43322879 capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x46a4415e capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x55fc6be5 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x727ab8af capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x77559e1c capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb09a9498 capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd5a53bcc capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfc4c3f9e attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0bb8d6ab b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2052af18 b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x46687812 b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x488c3fe3 b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4ec65821 b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x52fad1c1 avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x681795a1 b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x77992a4e b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7ad3a287 b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x811a5879 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x83b2c42a b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x84380aff avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xcf8aed4f b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd93c42f0 b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf6cd8ed0 b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x10ec71f0 b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x1f6299f6 b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x47ee761d b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x71f8d721 t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9b438718 b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc15e61d9 b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xcb072c37 b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd482d4c9 b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xedf5a898 b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x1a9a01c4 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8822a182 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xc8dc2cb5 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xffef3606 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x0aae293f mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x4e94911f mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xb4fe24e0 hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x0ea318f0 isacsx_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x30000724 isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x36a1ed1a isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xa601f565 isac_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xe63c1e6e isac_irq -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x30ff6b9e register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xb6c11657 isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xd2ec60a6 isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06139c29 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0a76d072 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0e4da331 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x135f345f mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x17a7555a mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x18ca0b1e mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x20cdd371 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x22c04281 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x40fdeee9 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x455751d5 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x46bdcbf2 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4fb2fe78 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4fde7606 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x516b5757 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x617ed32e queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x75aa6d61 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x97cbecbc mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa7cc9c7b mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaf8f3569 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb3f85c0c recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb8d8964b get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeaece12f recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9c791de mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d89bd11 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0x26481f26 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x44e60b11 closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0x8c3ebf2b closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xb326360f closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe67c2d16 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xfc4419bf closure_put -EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-log 0x3f3cf001 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x556449cf dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x676a8c4c dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xfc78d19a dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x24da0be1 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x43a781c5 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x70cc89e9 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x835b85c9 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xbcc32497 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xdfa18cc8 dm_snap_origin -EXPORT_SYMBOL drivers/md/raid456 0x4f056c9e raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0ecc77d3 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1d94c15e flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x22bb3383 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x68eb2c54 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x76b23e4d flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x80a16563 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x840b9b54 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8aefbb86 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9aa3983e flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xafbaf019 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb780b562 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc9c2c4ce flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfa85ec37 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1589057c cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xdba175f5 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xe19b544c cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xf35d41fe cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x01f0f314 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0xb497d437 tveeprom_read -EXPORT_SYMBOL drivers/media/common/tveeprom 0xf7249ea2 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0019e0d6 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x02f3ec75 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08e9282b dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x117b011b dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x19548f00 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32706276 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x365e0f3e dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ed18dfc dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d7b3633 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c0ea535 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5ce020eb dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5d2c3c2d dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x626a80c7 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6cd74ff6 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70af1058 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72f5751c dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78db694b dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f4f9b54 dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85a5e7d3 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x89ae39e7 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8ebb257f dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x912e51a9 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9444e9df dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa0b2970f dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaa13818a dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcb520804 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcb55c2e5 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf589e8c dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd0ac8299 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd45f8b42 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8f7184c dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdd23dc9f dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe1056d39 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe667aaeb dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf28e7431 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf44a8f44 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfbaa7e01 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfd967edd dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x48c16e3d af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x87f746dd ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xfca2b58f atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2e7373cf au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4a61d54b au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x605dfffa au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6b3669b3 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6d50b4c8 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8db87c55 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9346d758 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x99b3a394 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9ed00a79 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xcb575898 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x69c94277 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x8974c7af cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x10d2997b cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x46ed0b73 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x23fb9081 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xa0673d37 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x9e421c22 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x455915d3 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x117bc841 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x7e73ef3c cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xa55b8fdb cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x55bd0240 cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xadac5bec cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xbffe68f4 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x10fce403 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x55f5e53c dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9caffb69 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xbc80a7ba dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xdb7d3495 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1288dbe3 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x15010e97 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3c1473db dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4be988d7 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6a568e24 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x73e12373 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7538e428 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x779dbdb4 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7ea8a4b5 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb5ec9cea dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xba1e0af5 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc4dd5c94 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc5c2fa57 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdff19d20 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf2499684 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x0637db3f dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0c1b8ca1 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x267ddea2 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3ed915ed dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x97c641da dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xcb36081d dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xee818267 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa1c68648 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa8e42e83 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xaf930853 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc1bb15f4 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x7fe18663 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x5d94fc7a dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0ec78335 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x12a012bb dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x200c995a dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6bcc6dcf dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb4a6cd41 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xf514dea4 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x39090633 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x635174b6 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x96933d53 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xd4572c44 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x92f4fbcb ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xbf656fa4 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x164e212c isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x893cb562 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xb280ea83 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x786411c8 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xd862e71d ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x507f7c45 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xcdb1b568 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xe47e0376 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x55153863 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xedae420f lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x49e40162 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xb49bc6d7 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x5571621c lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xfc507723 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x25aa1544 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x75e7f586 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xc6ba1f44 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xb4d08a49 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x0113e3ad mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x9dd446fa mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xcacd6a6c mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xe1f2cd89 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xd945390a nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xf9e503eb nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x629bc93f or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x4167e070 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xf0ad202f s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xbb3d6b9b s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x0a3838ed s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x24d08b2a s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xbe0b5490 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x4411a586 si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xaf85fba4 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xe3e35004 sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xb05692c5 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x358c8e63 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xcc631cd2 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x500d1a6b stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x49a86b92 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x2865fca4 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x4cf840d9 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x61a00315 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x62f93b0f stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x2632c45d stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x964cfc13 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x313bd6b3 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x6f9461db stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xba3770b7 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x9eb0adce tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xb6c98547 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x830aec8c tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xb71f44e4 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x56828d8e tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xbfd1bcce tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xe4cec7f3 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xbabe4fc1 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x590d7ecf tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x589a8fe1 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x07a98113 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xd445705d ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x9c2d860d ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x527156f7 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x44fac319 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x579d4676 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x06a976af flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1b6c3c17 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4bdd80bf flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5396e008 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x93520f15 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd98bb855 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe0eed106 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x19bf3d6d bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x476dc8a6 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb419f1b8 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xbe324db7 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x38edc271 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x85193e23 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xc946205b bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3c06b74a dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x40edac24 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x44ede152 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5d59a231 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x765217a5 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc66be7d9 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd97de399 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe4e9feb8 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe7437734 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xd8b69336 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x015ebe23 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4adeacb5 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x56bbf5c1 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7e2711e4 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xdd596709 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xcbe66f87 altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x21ae572c cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6877c7cb cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7b23c00d cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa741aff1 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc3c569c1 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc65c7482 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd195cd48 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xb736bb6b vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xf8093363 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x0b86a60b cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x29216236 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x49e414f3 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xcf71f4f6 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2c7f4bb7 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x529aecd0 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8424873c cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd3cddbbd cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd8cf19f3 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdfd8e8ec cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xef081407 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1c75813e cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x287c3c97 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x44c9a3a5 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4bc5813f cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x56a3309a cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x582452e8 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5ffdb92a cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7a0c541b cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7bdd51fb cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x847fc133 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x94606297 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9e8325a1 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb9a76e67 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc1cd5127 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc1d5476e cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcc1fd755 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd8bfcbc2 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe01913ff cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe9aef339 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xee38ff24 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1245baee ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x254a9b99 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5927d8a7 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x688f399b ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x72deb35d ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x854c7c11 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x94c85935 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9c4dfd3b ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xacfb7e0c ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xadcf75ee ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb04c9826 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb26c215c ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb5d69e63 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc2983cbb ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcc9dd90f ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd34f3253 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd64381c6 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3a1a991c saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x42c5e85e saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x545590d2 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x796d6db5 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x83aa2292 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x883a3e91 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9e58772e saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaa74f9d5 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb130c174 saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd6472b6d saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe89988d1 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfecdf378 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x5f85a21a ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x15ebf6ea soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x1a209983 soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x23c2f3c7 soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x3e62cfe4 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x8817734b soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb896b2dd soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xfebce28b soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x33587c69 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x4b22a206 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x51f8e099 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x593590b7 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5ad386f7 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6103e35e snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xc640d7c4 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x08a61800 lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x1eb6e6c4 lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x75e52f1a lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7f229edc lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x94589956 lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xec2dc951 lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xec7b53be lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xedd2ec32 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/rc-core 0x61c04ed3 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0x7e4dc495 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xdd047ccc fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x7b649143 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x20321015 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xab52546b fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xc1cf7e35 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0x7f76d4dd max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x13ef8029 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xba3cbc04 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x82740b21 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xb7f2d304 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x689c620a mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xce5dd02e qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xa01ece2a tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xe3c1b222 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x878735b5 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x8c3651f3 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x32e63fc5 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xab7db3b8 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5f9d1f20 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6c87b7ab dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6c919b53 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x79e1e4ce dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8b2c663f dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9db62ff9 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xaee3d8a7 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc20689e1 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf33cfef7 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2bee3bc8 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x34986fc8 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3f1b3d72 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6c9559f1 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb4f7a0f7 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xea40e1e9 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf1120348 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x12f40974 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x080aed4d dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1b0fec79 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x56d87bd6 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6ed93c3e dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x872be762 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8dd81191 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb74c8551 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcfc9b5ce dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe5c0558d dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xec5c5bed dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf7d868c0 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x376e3f0d em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x8a757401 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1e6687d1 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x28336876 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x46ebed70 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4729ef05 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6d51e37e go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x94dab406 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd16f83de go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd3fe2da8 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdcc4e0b0 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0dc516ef gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x34b652bf gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x78169895 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8d405e50 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x90037415 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xba98187c gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xccd01c15 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xce1eddbb gspca_resume -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x29636405 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x39733b68 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xa16c1fdf tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x11c60879 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x3a0109b3 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xa9f12c81 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xcd38f13b v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf5f008a7 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x5ce66cb1 videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x810c5a16 videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x93ed6fd8 videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb192a1d5 videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xca3daba7 videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xd1162543 videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xda6ddc78 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xf0e81a0b vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x0138a354 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x428a14b3 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x80eb6137 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x83a27c98 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xbce4b800 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xd7b28dda vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x9997ecf2 vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00bcf819 __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0694386d v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x070c947c v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0946cfa5 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0dfa5c9f v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f17f1cc v4l2_of_put_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f4d3640 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10ade268 v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11db17c4 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x19c7f0e9 v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1cd1c2cc v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x201a6438 v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22a594ac __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x24708d56 v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x295b24d5 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32eadfc2 v4l2_of_parse_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x345da784 v4l2_of_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34cbf3b2 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3effc9e2 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x40d1c728 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x418d0162 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x41e206d9 v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45930b7c v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4885037b v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4caedbee video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4f2af822 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x53f92dd7 video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x54608eff v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55b75bad v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5616d876 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56c19edf v4l2_of_free_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x591dcc33 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68e8c8b0 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x70af6852 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x760ee988 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79b09439 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a1b0f1f __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b065066 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7dcd72f3 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7eca4860 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ffb126b v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82423376 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f92a885 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x939bda54 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x96ca4e8b v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa3791c5a v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaac37403 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac7e2653 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac8b5eac v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba0d83dd v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc8f8537 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbcc6474d v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd993595 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc0fabe70 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc3cebfc8 v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7956b89 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc1258ae v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc9e76d4 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd290e0d v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd0f13bc3 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3c81050 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd5b22ead v4l2_of_alloc_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd9c8864a v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb01db84 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc31f2ff v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe1823b0a v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2a06e13 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe63fb0b6 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe99f9520 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf13adb2d v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf628285e v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6d7edb7 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfcf676af v4l2_clk_enable -EXPORT_SYMBOL drivers/memstick/core/memstick 0x20ee5c6f memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3b03a187 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x45bfb83e memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x71ebdcd6 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x73dbc19a memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x7baa623d memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x863d2d39 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb7ec433e memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xba1aa85f memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc2f62fb0 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xde6ced5d memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdf1bb9c1 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0103fdaa mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0b975d4d mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0fcfcd75 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x15b277a5 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1b02599c mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2b2bb79a mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3494f031 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4010c4a7 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4581fd54 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x50f5fc60 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5f39fd39 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fc531cf mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8155b071 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x85fde834 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x86e6dfee mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x966c7ea7 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9692086c mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9a009b97 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa7b9796d mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaaeaa85e mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb0205ad0 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb9ffe10d mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbc192eb0 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbf9edc25 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc44ae101 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd56c6c36 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xed6eae28 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfb72a0eb mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfd780757 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0844924e mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x13702e20 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1c1cf843 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x37811dae mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x38ab21c4 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x55fabf8d mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5640be15 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x56500d24 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x591fca48 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x62f0b980 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6526f62d mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8377a524 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8c524fb9 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8cc22e57 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9823eb40 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa068d003 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb25e2fb4 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc1c91081 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc749f13c mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcc4b3be0 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xce5bb392 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd51b2e35 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd6d217d1 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe39f032a mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe779bc81 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf7db4f3b mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfa1b0609 mptscsih_slave_configure -EXPORT_SYMBOL drivers/mfd/dln2 0x7b714f11 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xc4221e7c dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xc85eb17c dln2_transfer -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xbab249d7 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xf80106c4 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x00e4f28b mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5a1ad321 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9e1c493d mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9f4bc660 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa28d1a11 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb220ed71 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb9ad0fc1 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc13035a6 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xca8bf982 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdff09af9 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe5b3fe67 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x6131d8a9 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x986b5c9d wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x53bb659a wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x6181de03 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xa90e8366 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xfee3dc2e wm1811_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x3f17518b ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xa88e9946 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x30b3ae49 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0xb28d47f2 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0xd11dfbe1 c2port_device_register -EXPORT_SYMBOL drivers/misc/ioc4 0x4aa7786c ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0x4dd99026 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/tifm_core 0x0f00276f tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x11c0080e tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x159cb028 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x2df5e7a9 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x33e7a530 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x6eebe5de tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x90a212da tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x9cfe1d8f tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0xb07a63ca tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xd0fe0f00 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xe5bb0d09 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0xf1a3a3ec tifm_free_adapter -EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x3c57f0cd mmc_cleanup_queue -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x528043b6 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x982051bc mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3ccf4024 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x45caaf0f cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x52cce4ba cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x69d8d801 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xaf8a86ee cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbbcbfd06 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xfc91299a cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x46e338aa register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x81451e02 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x9756e4bb map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xc8ec034e do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x6e81e5cb mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x0c825f5c lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x2497105b simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x38944c77 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0xf7c44c6e mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/denali 0x22673c3a denali_init -EXPORT_SYMBOL drivers/mtd/nand/denali 0x56a1a3f9 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/nand 0x238fcc02 nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand 0x33b3faf4 nand_scan -EXPORT_SYMBOL drivers/mtd/nand/nand 0x3c74a30f nand_lock -EXPORT_SYMBOL drivers/mtd/nand/nand 0x569f1387 nand_scan_tail -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/nand 0xad13de77 nand_scan_ident -EXPORT_SYMBOL drivers/mtd/nand/nand 0xcd0444ca nand_unlock -EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x11a0ab26 nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x45f54910 nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xbb5eb5bc nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xbf9e994f nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xe1f4d864 nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x0e0d4df6 onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xa9781aee flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xc33e2527 onenand_default_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xfe0dcc25 onenand_scan_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x08cb02f5 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6ccd5d75 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x769e4b1d arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8a38c78f arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x957d9ace alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa0e486c4 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb0b1df48 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdbb6eef8 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe5c8ca68 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf8033696 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x17bd18dd com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x195b27bd com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x27949caa com20020_check -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1407ae41 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x46b36a08 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5fa8b23a ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6b7a8ca6 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6c20e72a ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa16608d8 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa57ac5d6 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd3ae4260 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdc0806ef __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf3d380b6 ei_open -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xe0b8e54d bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x0a239cdf cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xe48ca42a bgx_get_tx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x10750676 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x293cad69 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2b416a7a cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2bfe2a06 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4c7c580f cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5ec32e11 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x603ef191 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x673118c5 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x714097a1 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x91d6b0c1 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaf2a5ebf cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd02c1a3e cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd99ffea3 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe16e5578 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf0ac2686 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf9559cda t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00cadbf4 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00e8b1fd cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e0bb389 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e66b370 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x114115ed cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x19061361 cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ce2cd3f cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2389d837 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x29fc3139 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f7f2207 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x328a17d1 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x36daf90f cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3705c178 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b003cf3 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x444b6b1d cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4dc9aa13 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d248ae2 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x723ed6ca cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8168c67d cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8734f980 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8738c2ad cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8bee7c70 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9470f021 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa6968037 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0687115 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbfe4e4c1 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc902e65f cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc9c2e799 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd24829a9 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8fb6d82 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd9cb383a cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xde2534bf cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee385512 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef30c82c cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x092b6d27 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x43040372 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa0bd8578 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa25c0a06 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa7ba824d enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb35acba3 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x11cc6988 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xd49cdbef be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00a20d19 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01c77122 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01ce4e3e mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04ab8b53 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x068b857b mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x098701ec mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1346c8c1 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1949dd0d mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1af26c71 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e1e69d6 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21c9ccd1 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ad8ada2 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41013f5f mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42985ffa mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42dfb9ae mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44cb2a6d get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x521db246 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c63960c mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e32bb5d mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60334c35 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dae3617 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ed0b7b0 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x786c9fe8 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83ac6f42 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84c02d02 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87a51760 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x894f6f59 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90e8674b mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4857953 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2be8db6 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6033913 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce346221 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde419ca4 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf277eee mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9f1fbce mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef8bb124 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf93c7951 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbf3ebb8 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x013e4d9f mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01f5784c mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04bc6266 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08e431ca mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f8cac3b mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1096fe1e mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x110354f4 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e62039f mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f1f4105 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22651f4c mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24a9ea66 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3095a1af mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3814d882 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a1fa0cd mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f388e2d mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94d5fb27 mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9622f98e mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c2a8cdc mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f56900a mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1037480 mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3ca386f mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa6b57f9 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1098951 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5ac36f1 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb808a9f mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce62ef32 mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf3c4815 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd00c0437 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4fadfbd mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7de89ff mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8e743b2 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb512385 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbf80e4e mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde6b32ab mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe01d4160 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e89cde mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9e1010 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8a73152 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1332714c mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x535b4ee6 mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x594e3bee mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x710ac954 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7b93295 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcd0a9a41 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9956d29 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x76f76fb7 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1d0f1103 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x494b7535 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x62739f69 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa2764576 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xbbcd69a2 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0d7781c5 irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x1717c35f irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x223a787a sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x22560b82 sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4dc93578 sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9dbe0fc6 sirdev_raw_read -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xba9dd62c sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd7422e3b sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xef0abf42 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf5ff7106 sirdev_receive -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x0faa9fa6 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x1452e6ca generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x71f672b0 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0x82dd3563 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x937b1014 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x998b0ce9 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0xa4a14ad2 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0xad555fd8 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x2a2725de free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xac371566 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x6bdcfdd3 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xf2f38010 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x745ccc83 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x7c268608 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xf98a45fc xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/vitesse 0x063fb9d2 vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x53a250cc pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x7d6f67f9 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xc75f13bf pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xfcd9980a sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x200ef342 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x2bf4d12a team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x589c3eb2 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x5963f00c team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x679d6acc team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x7788fc39 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x94951658 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xb997dae2 team_options_change_check -EXPORT_SYMBOL drivers/net/usb/usbnet 0x3ec1377d usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x6420fe5a usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0xc26a387b usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xfa14b341 cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/wan/hdlc 0x2155a27c unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x251a324f hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4089bdd0 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x53537002 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x5bfb05e0 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa724e002 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xca685d42 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd30f523c register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd706d2b5 hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0xdca3bd78 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xdcd31a26 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x3e6bcf1a i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/airo 0xc748d26a reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xdd9ff83d init_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xe897af39 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x209fb392 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x251a69c1 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x260509de ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3f48a6e2 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5bc62ff1 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5fc187e7 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x60274fbe dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7c931b4f ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb39d9b60 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xba35c3d0 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe8a23541 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf27fddaf ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x177f46e0 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x186402ef ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1bdd949a ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2d4c82eb ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3034ac07 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3cb3387d ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x66884a8c ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x776c4656 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x82f03ce7 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8e261553 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9a5f1315 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb420c394 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb4aa60e2 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc6bc999e ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf6d77ea5 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x36f38e73 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4ff5aa4c ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x54193ebf ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x78249e4a ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7d2d02ba ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x81f38e6c ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8c607f73 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb041efbe ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb73d4ed9 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbeecf967 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfca17cb4 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x03046b98 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x177c906d ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1e7b6e94 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x24355859 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x25f2583f ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x30007ad2 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3870807b ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x42384b74 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x460b750b ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x47f6033f ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4d2f4be0 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4fbcf99d ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x68eda380 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7be7b8a0 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7f682acf ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x81c6e4cc ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9ef83310 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaccd0845 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb4f4505a ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xca6e75ef ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd5937f2f ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd79de779 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf927df89 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0060d863 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0069775c ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x015ab023 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04af3436 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x073bd43a ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e095732 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ebe98d5 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x103d8457 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12bd36eb ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x138e8f8d ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17b90799 ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17e03999 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1805908b ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19c668df ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ab2499a ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20ad1619 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x290f2604 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ab06048 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ed7a68f ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34e133e4 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x356283a2 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c5468fa ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d8167b5 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3de61578 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ed4a2f4 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43cafe11 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45577e3e ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46b8eaeb ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b61b336 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b9c2a5b ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x547cca04 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x551171de ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58822b18 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5970068c ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5abf197c ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cfc9ac1 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x613d9904 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x653ff011 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67a7286f ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a133f80 ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b6e1611 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d47a246 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7352943f ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74a9b73e ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7813003f ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78553c78 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a77934b ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ca2024d ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d81ecb8 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f18ed30 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80cba84b ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x816f6529 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x838a7452 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x852cb484 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8af62346 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b00dce8 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ba6d712 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c556a53 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cf508b5 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f4199c8 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91f25634 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x931cf443 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94681fe9 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94ff9f89 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96604b46 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97f79c01 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98ed073c ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9910c2fa ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x992402dd ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a038878 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a417c56 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ce8397e ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ecf2740 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0309fe7 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1378dfe ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3d41ecc ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa48f1439 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4a3e653 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6081760 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa62880f2 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6f30a82 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa618852 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad5410ff ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf828496 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb30948a4 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3b9a4cc ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7aa70b9 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb88cabb1 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8bee78e ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc10d0ed0 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1862ec1 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca2a7a82 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd89ef12 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3caa82a ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe487c8cf ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5ba8bc4 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6be7285 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb8faa5d ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec7a2cde ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xedfa316f ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf02803d6 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf86810df ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf96869f7 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffa66ffa ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffb2edb4 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x983f180f stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xa8d9b3a7 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xf1e5fc01 atmel_open -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x20dd9d1e brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x290e8e31 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x35b9a61e brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x38c5acfb brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x437538d1 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x62db39d9 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x753e2c3a brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x84c9de9c brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x88c471cf brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8fa0fc21 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f909661 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa36ac62b brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xfa25f67f brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x01821b16 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0c361bf5 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0d22337c hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1057fe94 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1522d206 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x17efa012 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x252f4472 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3163c3dd hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3a7781dc hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x53bc9c95 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x698d1372 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x89128276 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8c9ac2fa hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8f2f4418 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa25a9737 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa5f2f143 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa849e9b9 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xaab1a865 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc67680f9 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd8cd162e hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xda5d421c hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdd67e4f5 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe57dd8d8 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xefbd9298 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf7b108b8 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0fc51a61 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x143b8f1d libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1c303b13 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1cccee97 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1e426ef4 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x22384fe8 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x36fa5603 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4f684e07 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x52036125 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5586c856 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x570c19fa libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5a79b61b libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x60eb7915 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x65a5885b libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7a49274f libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7ab3a89c free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x92f89438 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xcffea3f5 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe88cfcdd libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf851bce4 libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf9befa6a libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x019e8c58 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x038e2172 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05a1aef0 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05d33eca il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08b803de il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x09222ee7 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0fa8d86c il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0fd3ff16 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1261711b il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x151541cb il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x15af2e35 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x15e67893 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x16581b06 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x16888096 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x169a8419 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x16fd9230 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1e0088cf il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x20d40df8 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22e3e6c6 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2326e484 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x243e957a il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x24a0fd96 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x257c2d39 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3044c552 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3940a532 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a72c2e4 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x413b8a46 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4347e2c9 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4428f870 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x44e1f80c il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x458c5992 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x54b50e83 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x59f17bab il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5cdd8c8b il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d937e40 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5e3c0c03 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5f602b3d il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x67d5e7fd il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x68902f04 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6ad08dbd il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6c381449 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6e33b390 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6e4e0853 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6e5cbb89 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6ef0c25d il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x72edf4d7 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7a92ce73 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7c0a4abe il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x82c32a8f il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84826405 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x85416c8a il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88bc2232 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88e1e45b il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x89d7ba49 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8a7159e2 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8bd86c05 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8cd8571f il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8eb446c9 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8f70b72a il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8fe85a53 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x91da4586 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x988e5a8b il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x99387e91 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a59d80d il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c00b033 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9d312c10 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa20e7edd il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa384ed47 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa496571c il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa54f0742 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa8f77cd5 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xab9e84bb il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaede8bbd il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb1f32639 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb54350b0 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbd14f50a il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbf06cbec il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc6970051 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc9970588 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcf35771e il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd6bce4d7 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd9545615 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdad0f768 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe0854e87 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2c1e32b il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe412db44 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe6b85c8f il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe99957e4 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb644a50 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xef6e8a7e il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf121764f il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf2e382c3 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf3efc6b5 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfb056ebe il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfb503cd1 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfc54c168 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfcf11c79 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xff677b60 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1b06ce78 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x2447a6ab __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x314a20a8 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x5e9c24ff __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8c8ab242 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x9a1b1df9 __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xdced6db1 __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0c3cffd7 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0cde7a3e orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2b1ce6f5 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x42ded8b9 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x59e97b22 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5c37db5b orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6973475b orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6e4dcde9 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7f087a2c __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x82fe45ad orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x97198cc1 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa60937dd orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa9f6ed9b __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb3860d37 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd2592cf1 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xde5c4d9b orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x5ddd6d01 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04a7b39f rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1090a66d rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d5c6d2e rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3458732a rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35a20ebe rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3b8ed306 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41066eb0 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x46876823 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x49228fb1 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5028e014 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x58717dbe _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5e8c5711 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x62711901 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6bf0c88e _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7438f4a0 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x833ba93f rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x88c92463 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f2a16cf rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x901467c2 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x916a3925 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x956d2df7 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x959d1b31 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x960f8584 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa21f0e9a rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa623f2e4 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa8d2fad9 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb2343430 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb7291485 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb89249f6 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb9d91bb7 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbe47e61f rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc5a4758d _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcaa7bfd9 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcd42e409 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdbdef566 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdde28b39 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe2603ffe _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe520dd6d rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6deed2e rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe8f5912a rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf6217074 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x19bfee92 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6c339d5b rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9b822426 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa25c0aff rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x61e55826 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8dd26879 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xcaf6ab5f rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf07b1f8d rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07bbc015 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19b6a372 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b906bd5 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x208bbc11 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a9138c4 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x34da1093 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x34fd1895 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x351d6f86 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3dc8690f rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x537d6c3d rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7b271c59 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x875b1d49 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8cff6f6e rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9000a9d6 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9b277012 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae31f42f rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbba06d84 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc245da42 rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc653fd55 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcdc0b2e7 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd0be5795 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9d7a1e5 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe06c90d1 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe5752524 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef22898f rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0edff8b rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6127b4a efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe3f0d5e rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x00a6ea67 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x69c7b087 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe2000a19 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf96a4518 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x42451b1d fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x5c43bd40 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xcfd34100 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xbbb35479 microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xc7e86a0d microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x1287a566 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x2451a5bf nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xadfb6840 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x3ecf13fc pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x60069512 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x4ba5c4ea s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x77c14c63 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xb4bcaedb s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x02a79762 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x07dafdb8 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x218286a0 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2d1907a2 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3c004dbf st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7a321590 st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x949064aa ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9e8f0ffb ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcdf4630c ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe7f1e822 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf2bcb1e8 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x00af0b7a st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x269f7f64 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3cad028b st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x461101fb st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x51bd41f6 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5ebdf937 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7873e46f st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7f590e6c st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x918160cd st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9441cc3a st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa90ee8ec st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb60a3421 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb84b63ec st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb87632b0 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbc0434c7 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe4b47719 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf4033040 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf9a25836 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/ntb/ntb 0x6c1c34f6 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x7040b9af ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x753d031f ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x7b62362b __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x8a636a23 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x9fdc7467 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xe9dd8edb ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xeebf2f57 ntb_clear_ctx -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xe38461f8 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xebe268a0 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x8ef3ba3b devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x000f1ec4 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x088b043a parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x0bf42dc7 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x1e6146f7 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x309cc8b4 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x33be42fc parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x3b7ec57b parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x51e2a1f5 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x52ac58d8 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x55756a0f parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x55f2277b parport_read -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5fad7ab3 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x65bc7e6c parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x6609f978 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x6fd3b1d1 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x7a976901 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x7ee19733 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x8274d6e5 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x8507bb5c parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x86e6ba74 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x95137cb8 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x9888e247 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xa4cd6cc0 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xa623df91 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xa953634c parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xb7fb0e71 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0xba52c779 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xcc6e40ef parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xce633f27 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xcf0b4888 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xecab2141 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xf9b99682 parport_write -EXPORT_SYMBOL drivers/parport/parport_pc 0x4be841f7 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x60248099 parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x044df45b __pcmcia_request_exclusive_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x144e2119 pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1eb1d76d pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1fde5f3e pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2de86974 pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x36687a35 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4d2355fd pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x69714001 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7d2ff74b pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7d31f18d pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x80553afd pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x81cab6ca pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x83caee8e pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8576a3cc pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x87815ba5 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc78597ad pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd71f0056 pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf04ebac3 pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf5549ab1 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x025df2b5 pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4a6cef34 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x678e3744 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6cc2b459 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6f80bf4e pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9d54e29f pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9e04a2e6 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc91113eb pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe56e21aa pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xee0d7adb pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfb23d2a4 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x3fb4a1d1 pccard_static_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xc3d052b9 pccard_nonstatic_ops -EXPORT_SYMBOL drivers/pps/pps_core 0x0169e976 pps_lookup_dev -EXPORT_SYMBOL drivers/pps/pps_core 0x5161eae0 pps_unregister_source -EXPORT_SYMBOL drivers/pps/pps_core 0xacab120a pps_register_source -EXPORT_SYMBOL drivers/pps/pps_core 0xeb9b73b5 pps_event -EXPORT_SYMBOL drivers/ptp/ptp 0x0450a89d ptp_clock_unregister -EXPORT_SYMBOL drivers/ptp/ptp 0x4934c587 ptp_clock_event -EXPORT_SYMBOL drivers/ptp/ptp 0x5fcb997b ptp_clock_index -EXPORT_SYMBOL drivers/ptp/ptp 0x981ffbc1 ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0xbfe86ee3 ptp_clock_register -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x216905bc rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x21c3986e rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x347d60a3 rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x50b937ed rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x6cb91e80 rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb0919043 rproc_put -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc184c8f9 rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xcc10ee9d rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xe0a4f0ba rproc_alloc -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf72413e5 rproc_boot -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xe0c9c767 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x79a05ad0 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x97793e23 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x997e42c4 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x99ca18f1 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0bcef96c fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x14f1fb79 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2b48133d fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x76c7114e fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x79acf71c fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x988dd705 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9ee890c0 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa2359ebb fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa976aff2 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb6a97b24 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfbd652dd fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfd183f94 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0beac291 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14639686 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22ce1233 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x28b5e62d fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2fc2ea54 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34b1acb6 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4072d5fe fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x488c4309 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48a262d5 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4dcdad40 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5174d815 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e545b43 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5fbe43bc fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x72184de1 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7320e53c fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78408fbe fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7cb9ffc0 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83b9911b fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x88a76144 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x89a33c83 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f6a8c10 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98c191cf fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c5fdbc8 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9232f89 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9f3c80d fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xacacd617 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad9563a1 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1f0fb8b fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb42d5e61 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb62b59c3 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0eea8d5 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd35749ab fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd466cbda fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7cc1503 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xde9b0539 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe9dbb638 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xedbc604f fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf196db21 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1ce4686 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf3aad196 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf6d2557b fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc225d49 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd7f87d8 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0c1a283f sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x76c597e2 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x9fbfa1b1 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb641e035 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb48fc63d mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x073dd6b6 osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x08620af1 osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x17d1e8a2 osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1b886a3f osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x22879d3c osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x230d2d5b osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2c268ddf osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x34ca0a45 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x376295ea osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3bb4c643 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3de72c07 osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x435f27bb osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4af6c70f osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x506a0237 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5093c129 osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x51b14e20 osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x563df71a osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x57097c96 osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5c6e6558 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x68764711 osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6d709f78 osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x73348402 osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x76c5b956 osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x792603b1 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x79ef967f osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x988ef4e5 osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa893db01 osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaba80371 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xad2eaaff osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb80fd754 osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd221ac12 osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd36f3ca2 osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd983230c osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xefe7b451 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf062fc8a osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf1a73ac5 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/osd 0x323e333e osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0x536e6f42 osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x8edc6e3f osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0x937f8436 osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xa44197c5 osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0xaec95e53 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x24948ef2 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x38e64d3e qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3c4290eb qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3d5b3086 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x588b6a65 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7580a3bd qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x77d8d3aa qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9286b3b9 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb40bedd9 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb40df7ab qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc6599424 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe9057378 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x5367aa69 qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x61bde6bf qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x8f385c1e qlogicfas408_bus_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x9166f146 qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe868907c qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe87103ad qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/raid_class 0x0c7c59d5 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0x8d1de94c raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xda58e393 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0dc41c26 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x14c00709 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x16709e90 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5f9a0e98 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7817cd3a fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x797731d4 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x95418006 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9de4d7fa fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaa844e5f scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb2264436 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbd1d6534 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd0b0d68e fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf1df28ec scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x07963a96 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0b49a8bb sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x156876e3 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2ac9d027 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x327cde77 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x37313070 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3d5ab7cc scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x40419a6d sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x593cb543 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5aadecb3 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5f852973 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7aafa462 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ad257c2 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c9fa818 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x81e0e273 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x95fd7038 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9655fcb9 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9730cc54 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9928510f sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9c4e22ea sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaa134fcf sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xac8c6339 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb802c028 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbd0e8d8e sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc90ccdd5 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf0af370d sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf100dfb0 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf574565b sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0a572cdd spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x88f532f6 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xabdc7323 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf16e39b5 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf8bbb073 spi_release_transport -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x0b77a36f ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x508640f2 ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6cc89206 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x86a6a595 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xae0e5f84 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xbdd1eeec ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xdfe1ac1e ufshcd_runtime_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x082c191b ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x20261201 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x22be9c2e ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x2e0556cc ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x3acbc437 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x4a2f04e3 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x53b6da5e ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x752594e8 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x7e1887cd ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x82d34178 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x8f4dca72 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x93f41c11 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x942d618d ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xa28936b3 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0xa332f8fb __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xd0e70fc5 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xec1cf412 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xf057ed63 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xf8acff91 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xfca7e961 ssb_bus_resume -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x034b79fb fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x083d3522 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x091d7d5f fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0e6d8226 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x10d706f6 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2016a795 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x21607b8c fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2560d698 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2dd4c90c fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x33fe9597 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3d15b796 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4476150e fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e28c518 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x66b80b30 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x70978cce fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7711675a fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb50de60a fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc01c46ad fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc96a1aba fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcd22de49 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd13e9ebc fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe3379b75 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe95add46 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf4bb71f0 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x46e15f39 fwtty_port_put -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xcc182b0a fwtty_port_get -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x56b25a4a adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x4dcc6f2c hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x686c7d4e hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xb341805b hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xbb915e30 hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x4357a782 ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xa7fc0189 ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xaf83bbd3 cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xb9d8159b most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06e801ed rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08133ac0 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c692830 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0cd0140e RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1dab57ce rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1f132e2e rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28886e8a rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2c31fd5b rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2cdc736e rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3011493d rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x37d34f75 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4333ff5c rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d5371ab rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53c43bae rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5a1bccd8 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5bfe7ddf rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6644f1e4 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67cd3536 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6e4d5e44 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6fbc7d18 rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x803c032b rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x85cf08ae rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c340be9 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c860d63 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8d5746ab rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9b849921 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9c89da44 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa10149ae rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa19fb965 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa2551060 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa430b957 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8b9653e rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xac9dd5f4 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaced78da rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xadba15bf rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb15bc4d6 Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc04537de HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc772e116 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcaee7d4c rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcfdf8db5 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd175d470 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd7808494 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe287793c rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe3d579df rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe622192b rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xedcaf450 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef0f65a0 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef4be567 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf50e535e notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf547091e rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06710217 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08aef003 Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ae6b1ad ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d17578c ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x107dc86f ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x17211686 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2459830e ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x24d9187d Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x253d46e9 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2a0c763e ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2be3de42 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c4506b5 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x314987e7 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x37a1a544 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38741227 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x39656654 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x40ca48da ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45a14812 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45d7057d ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46ff4a6b ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47adb272 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4ec5ef03 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53000f27 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x55e4fa5d ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x591dcf07 ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x614369cc SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66effe66 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69deceb1 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x79491ef4 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91819f97 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x938e419a ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93a5a4d5 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94db0b39 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ed35342 Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9fd7ba2f ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa2bdb7ca ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaa0e3c2c DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb32dd248 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb9c0293d ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc2c71495 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc37a2cb1 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc4846534 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf27d3ec notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd2595c41 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda90c652 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdd289030 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xde1888a9 DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdfbaebec IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe851ea4f ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xea616448 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf0ff6ac7 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf83d4b9d ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfcfc571a ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b17bcfb iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0eeaa3c2 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x13bbbe22 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x172c356f iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1b83be1e iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2410e7ec iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2dd3e03f iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x30f19a8e iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x38a5601b iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x460e4239 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e6ead52 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x595d9f6e iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62d83e0e iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x66287239 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a4261c3 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e2f59f2 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c760d33 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8a91593d iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x977e68a3 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa70f6af4 iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbddce0fb iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc238123c iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd7e4248b iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe302d030 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe755faea iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe7e60233 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe9ec3f2b iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf69e63b0 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0590e9ad target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x064939e7 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x06c21969 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x07284603 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x0845518f target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x098c54d2 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x09a8ec72 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f599c67 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x110c7c73 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x16b29138 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x1c80d8a6 target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e3cd3dc core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x274235ea target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x2d9e99da transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x2ffa648a transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x338ae9d2 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x3802011e target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x3f47f560 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x4299c577 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x4311d641 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x46b06061 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x481de4a5 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c2224a4 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d1e6d5e target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x50698091 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x5351f490 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x5c25cd8a target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x5ebbe3c9 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x62bc433f sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c43e014 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c570d70 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x7df8adb8 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x7e33bc45 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x85d0a3c8 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8629d7f2 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8a80ef2c target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x8c19ebb9 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x8ea1da17 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x914b0930 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x97d83b43 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9969438c target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x9b6c938d target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9bcc4778 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xa1d06d1c target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa4c86956 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xadd7ecdc core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb7363976 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb99f6ae7 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xba15134c target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xbb457022 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc65d48d target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xbe3b5999 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xc1ae1303 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xc2da6521 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xc567fc6c transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd8dad30 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xd4e7a8e2 transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xd5384a38 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xd5b8bf4f target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xdf06a737 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xe1cb1fa7 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xe41cc6ea target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe7797c86 transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0xec8f2f10 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf2d90e6a spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xf2f2fa7c transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf4875d71 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xf89b4647 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xfadc7fc8 transport_generic_new_cmd -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x1de7cabe usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xa8569b4e usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xc11c7830 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1f235861 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x47568217 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5ea7acd6 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x612fc17b usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x662f53f4 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x743d1f21 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x795780d5 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8b24c74e usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x90e7f106 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9224013d usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x992fbfcc usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf2ece7a9 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x1d1ef0a0 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xf5340ba1 usb_serial_resume -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/video/backlight/lcd 0xc9d0e50b devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xdd778977 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xf37d7384 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xfa06e081 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1da01c1c svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4e262489 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x51cb7918 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x990fc79b svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xae0d72c7 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc07dd28a svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf46c1042 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x193f436a cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9dbf6f28 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xb6de3389 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xf0dd891a matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0a59f366 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x17c17493 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x30924415 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xaf8d9b32 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xd9719f71 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x60dc7ecf matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0b671233 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x617c1cc2 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd17a172c matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xe830932a matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x41a7799d matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xeb0fdbd5 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1127f94b matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x522cf192 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x53f92f59 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb852ac74 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe7cb62ba matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xe51bc711 mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x2c2b6dac w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x4396a8d6 w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6b8d995d w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xd1059231 w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x65014bd7 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xe1753dbc w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xada7fe73 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xd0e52d22 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x01619f7e w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x4d6bcba0 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x79e91586 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0xa9441839 w1_add_master_device -EXPORT_SYMBOL fs/configfs/configfs 0x1c7ea6f7 configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0x1f87ac90 config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0x2794e904 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x2a8005c0 config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0x3964859c configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x4e691848 config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0x534dbdb8 configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x53b83908 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x5f96c284 config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x6cfd59d2 config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0x7fc0b011 configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0x934fb1e9 config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0xb1b6cab7 configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0xd0211639 configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xe87ed15d configfs_undepend_item -EXPORT_SYMBOL fs/exofs/libore 0x159aa7e2 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x42a0d775 extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x711fc750 ore_read -EXPORT_SYMBOL fs/exofs/libore 0x9dca7f8c ore_write -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xb503b310 ore_remove -EXPORT_SYMBOL fs/exofs/libore 0xc0b619f6 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0xd82196a7 ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0xd93452c6 ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0xf470ea6d ore_create -EXPORT_SYMBOL fs/exofs/libore 0xf7a10800 ore_truncate -EXPORT_SYMBOL fs/fscache/fscache 0x029f614f fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x04b73cac __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x0e6ff11b fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x0fc5fbaf __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x27257209 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x291bc682 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x2f0b8982 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x4096c5b7 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x47271998 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x4a0e9a13 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x4ad7a1f4 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x4c316078 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x53c93b34 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x54d982e7 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x5d2af269 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x63aae1aa __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x6438a7cd __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x66f86678 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x70c78fa7 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x858b1717 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x8931b1d8 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x92c63af2 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x9513a22c __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x971d88e0 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xa3019561 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0xaf40ffbb __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xb056c584 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xb6fb99c3 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xc1256f22 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xcd01cbe7 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xdadb6805 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xdb8943a8 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xdb8e41a0 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xde319b10 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xe0610e77 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xe750d918 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xedafd230 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xf5b0d111 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xff20e672 fscache_obtained_object -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x11dc5fdf qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x3a4149ab qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x3c9f3418 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x97f34263 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xb955b346 qtree_entry_unused -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x054d990b lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy -EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed -EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0x98e1c741 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find -EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put -EXPORT_SYMBOL lib/lz4/lz4_compress 0x0c222eb5 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0x7456cc61 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x2dc89e9c lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x3ef3e2eb lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0xeb919c8b lowpan_nhc_add -EXPORT_SYMBOL net/802/p8022 0x53d4e5b4 register_8022_client -EXPORT_SYMBOL net/802/p8022 0x8833a994 unregister_8022_client -EXPORT_SYMBOL net/802/p8023 0x2f83a885 make_8023_client -EXPORT_SYMBOL net/802/p8023 0x78b9d5dc destroy_8023_client -EXPORT_SYMBOL net/802/psnap 0x3746e726 register_snap_client -EXPORT_SYMBOL net/802/psnap 0x56390f0a unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x046c2437 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x09ad98c8 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x46cab197 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x473cdcc2 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x481f85aa v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x4c3e5322 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x50d64546 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x53d58a07 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x55a59a0b p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x59dc6756 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6028a664 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x65e86c32 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x66eb2a16 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x6875a0a6 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x6b7926eb p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6d8db948 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x75567c44 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x7cb7bb60 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x7dc2882f p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x7de4d99d v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x835f7e47 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x860c2dc9 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x87f73ff5 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x8d3d9d69 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x8f337690 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x9076721c p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x938c46e1 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x99cbf5f5 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xa4809181 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xc1e71094 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xc1f4726f p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xcb0a7734 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xd2dd4362 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0xd72b471e p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xdb59dfdf p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe83169cf p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xeb3d7ac1 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xed120077 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xf2d13f0b p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf4bdd364 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfac085fd v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/appletalk/appletalk 0x2bbfbdad aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x39d25a8d alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x700c1033 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xc2ef1cf6 atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x0a37c71a atm_charge -EXPORT_SYMBOL net/atm/atm 0x0e60179f atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x1c0124b1 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x23e9e170 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x2deb8e31 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x311c4d75 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x3d00d370 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x45401a87 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x47d26129 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x50c18f48 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x53a4d540 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xe4eba55c vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xe87db26c vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x03c279b4 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x0b01eae5 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x4c14d738 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x58a94543 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x5c205741 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x611a002f ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x92fff197 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xf97e35bd ax25_listen_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x020c1611 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x02f9feb2 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x03857db8 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a12bcb5 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a60dee9 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a9362a9 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ded2435 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0f28dfcf __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x123c0574 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x19797c9f bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x19969d41 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1d68c967 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2040ef4f bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2459d55c hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x26b4b273 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e855ec4 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f16f1b7 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x40aa8d25 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c925de3 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e24b443 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x50d88074 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x567acf58 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a7f6aa6 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x684790a7 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7244314b hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x873e8d0f hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x87708a34 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x87a394b0 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x94137366 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x96fac5c8 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa15dd2fe hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa7746cab l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb307701b hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb55d2815 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb589a78b bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xba04248a hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc7c58034 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7c4bd47 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xddab8042 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe5f5d48d bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe8757e33 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bridge/bridge 0xe4c38c49 br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x28c286b7 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x31ad8f45 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x81740ac3 ebt_unregister_table -EXPORT_SYMBOL net/caif/caif 0x12085eeb caif_connect_client -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x2f95883e caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x5f5e2cff get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xa5058f73 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xe4c1490c cfcnfg_add_phy_layer -EXPORT_SYMBOL net/can/can 0x0584b694 can_proto_register -EXPORT_SYMBOL net/can/can 0x0aa4b930 can_ioctl -EXPORT_SYMBOL net/can/can 0x540363a8 can_rx_register -EXPORT_SYMBOL net/can/can 0xa3a8d1cb can_proto_unregister -EXPORT_SYMBOL net/can/can 0xc25bf280 can_send -EXPORT_SYMBOL net/can/can 0xdf095e9f can_rx_unregister -EXPORT_SYMBOL net/ceph/libceph 0x02a1c265 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x0c8fa2bb ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x1056b125 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x11fe66c5 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x1200d018 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x16ccfce5 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x181bfb47 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x1bd5e01f ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x1e2d1efa ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x23ed1d46 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2be5ae5d ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x2f8f52eb osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x3248f5f9 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x332a4126 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x33c7001f ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x39c8a1a5 ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3ccde132 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x400f8ca0 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x4650f39f ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x530f27ab ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x5384b04e ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5639f6f6 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x570d61ce ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x59b43acf ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0x5b87b166 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0x5c2f0ecc ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x60a5c32a ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0x62be9e1d ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6b80a45c ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x6cf20ec2 ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x721c1da1 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x729d199e ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x77bf4c2e osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x787c4faa ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x7a5d0ab7 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x7c5b7110 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0x7d692eae osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x7e89f7ff ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x7f3d05d6 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x8088dfc2 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x819d12bc ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x8394cba1 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x8b1e3af8 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x8ff62bb3 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0x9309f6fc ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x9436e206 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x9452481f osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x9580f854 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x97230aa6 osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9af1c9d5 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x9b031f3d ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x9b696c6c osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x9d194db0 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa758f1b1 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xade8c99c ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb17cbc73 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xbaa2ca6e osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0xbb842b00 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xbbf3dff9 osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0xbda16f42 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0xc0ff53c1 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xc1163f1a ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xc411fa3b ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc97b398e osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xccf813c1 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0xce3106a2 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xd0b18391 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xdbeb07cc ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xdc54a8ec ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xdd774566 ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0xe0c10c85 ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0xe1d4b64e ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xe29aaf17 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xe9893f2e ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0xec2c82e3 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xecf4d101 ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0xf33771cf ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xf61aa6dc ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xf65bec4c ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xfbf7cd71 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xfce81c9d osd_req_op_cls_init -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x55e1ee83 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x621ba75b dccp_syn_ack_timeout -EXPORT_SYMBOL net/ieee802154/ieee802154 0x0dff076a wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x34930c83 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x4ea0b79b wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x68692e16 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x863e6a01 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0xd55abdc8 wpan_phy_find -EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x6b946eec fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0x96af8691 gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x017d7967 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x354e06c3 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3e639b6c ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5dec92f3 ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8b16d73b ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9483e9f3 ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x809cfb79 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe7fc0898 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf21e03eb arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x455fef79 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6d16d0e2 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x727b4252 ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x4f50a8e6 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0x73755322 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xa3642e1c udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x03b7090f ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x07e8f004 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcad7eae9 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf51c76ae ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x6053e0d7 ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8fbf4257 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb81eca85 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x58de37d9 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0x83116fe9 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xc9b02129 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xe342ff1e xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2f6d0d6e ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x66fd7ea1 ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x94cf4710 ircomm_data_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa207fa9a ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa247b278 ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xacaaeae1 ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xddf2e0c4 ircomm_disconnect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xea80cfc9 ircomm_flow_request -EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x10a65882 irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0x1bdfd039 iriap_open -EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0x1f77d071 irlap_close -EXPORT_SYMBOL net/irda/irda 0x2f2d333b irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x4bbf6f8b async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0x59c4cc07 iriap_close -EXPORT_SYMBOL net/irda/irda 0x5cfec76c irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x5e67df08 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove -EXPORT_SYMBOL net/irda/irda 0x66bdefe0 irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0x6f080dde async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x79efa80d irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x8bd96457 irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0x8c729b13 irttp_dup -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x91d0003a irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x9cd02fa6 irda_notify_init -EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object -EXPORT_SYMBOL net/irda/irda 0xad9d4678 irttp_data_request -EXPORT_SYMBOL net/irda/irda 0xb7f094c9 irlap_open -EXPORT_SYMBOL net/irda/irda 0xb8259fd2 alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0xb8eb34f9 iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xc46401bf irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0xc9b59f22 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find -EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert -EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma -EXPORT_SYMBOL net/irda/irda 0xd78b1f56 irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xdedfc698 irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object -EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this -EXPORT_SYMBOL net/irda/irda 0xf5e9efd1 irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0xfb97d3a7 irlmp_connect_response -EXPORT_SYMBOL net/l2tp/l2tp_core 0x6fb6373b l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x954a985d l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x220164a0 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x238e49c3 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x6e62f5d5 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xa4de2455 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xc21e9e61 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xd3f2bbed lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xd9b7f90d lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xdbd6336c lapb_getparms -EXPORT_SYMBOL net/llc/llc 0x0ca8074e llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x1cef461c llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x2fe880fa llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x3630e901 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x720f97d2 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xab925384 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0xcb236d3e llc_set_station_handler -EXPORT_SYMBOL net/mac80211/mac80211 0x0112e666 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x057b8f5b ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x08954777 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x0b4c1ac8 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x0c5cbe1e ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x126e1895 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x19809d18 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x1d139572 rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0x1d745354 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x1f030e70 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x206f01a8 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x2103f40e ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x2554eea6 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x25d7cbfd ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x2aa29ddb ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x2d950be7 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x2e56531b ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x2ee6cfe1 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x30910c60 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x30c829cf ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x31780b24 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x32ea4e3f ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x3658bb54 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x36a1d7fb ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x3a680a3e ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x3acb7025 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x3c0a39f5 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x48dcaa01 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x4ca1265d ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x4e7771d2 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x53a6b25d ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x554b6cb3 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x5e7c2844 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x60afd7d4 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x60c6a8fd rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x60fdf779 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x6751b363 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x71dafc04 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x7500c759 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x767a5899 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x7de819fe ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x7dea06fd ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x7fefbfa6 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x8261f867 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x8e41123c ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x98ca0d42 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xa0835c75 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xa23bd407 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xa38ea176 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xa79e6e70 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xafcd39f9 ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0xb25e1302 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xb2ca95a8 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xb5c16543 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xb82f3e38 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xb9be5268 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0xc04e91be ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xc16c3fb3 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xc4dca560 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xc5ae131e ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xc6dd8ef2 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xcae644e2 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xcb1f6086 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcb4dc9cb ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xcbdee480 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xcde236ec ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcfeefbea ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xd279f69a wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xd36547e9 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xd64fb5c3 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xd7621368 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xe19f842d ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xe62acf87 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xe6a69857 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xe7816558 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xf41dfe47 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xf69c77b7 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xf8753701 ieee80211_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x04525b67 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x40866c73 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x931ce6a3 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x97c45288 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xa2fd0947 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xd82d684d ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xf6837712 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xfea70d58 ieee802154_alloc_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x08836b1c ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x117aaee1 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1d5f704d register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x49cd9c36 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x66fc0b65 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x70833e50 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x83c1f036 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa916e25e unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc865e234 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd4bb4f9e ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xee7e372d ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xef5594cf ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf6f0f7eb register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf94b99dc ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6819efaa __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x7e4f1e30 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xc3919103 nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x26b948f2 nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0x9c69be28 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xa20f4416 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xba2c8438 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0xf49fefd6 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xffff76d9 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/x_tables 0x1597cc7d xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x2737191c xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x2a4daa13 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x7cc06631 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xa4e41ece xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xbec36d0f xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xbfe8ab59 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xc16355c1 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xd5ded699 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xf00eb6fa xt_find_target -EXPORT_SYMBOL net/nfc/hci/hci 0x02e88704 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x08a14d68 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x09d8a7ab nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x0ead5e2e nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x1e4066d9 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x40b6eeb1 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x456d8e8c nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x531ed31a nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x545b3645 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x5981afc0 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x5b333c20 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x7f950af1 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x7fdbba59 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x8f07a812 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x9e6a9599 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0xbbeab72f nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xbeaee4d5 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xdd7dc2e6 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xeb8b2b95 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xf9eeb3a2 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xfd215cd0 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x03d9f9e4 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x0626e0c8 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x0bf9521a nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x0fe993d9 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x177759ab nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x17b23e00 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x1da17258 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x206e72e7 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x4850b0d9 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x4a8e377d nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x572fcda5 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x5e4fdb3a nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x715ce19e nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x8d10f014 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x9589bede nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xae6adf69 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc44d0aaa nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xd1fae3a2 nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0xd5357ccb nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xd8baa610 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xd973a9c8 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xe7179d79 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xf0202858 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xf02dd614 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xf2933555 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xf7ca20f5 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0xfb83bc7e nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xfcbaf8b1 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nfc 0x0ae23bcb nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x1a2f5b48 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x1cd3ee43 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x23be35f5 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x260dc7ab nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x282fd86f nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x28931250 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x34d54a26 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x40d95a00 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x67031d01 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x6904eef3 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x6c0c1417 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x7be19b7e nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x86f8678a nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x8830d599 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xa58c46d1 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xae6904d6 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xafb4c737 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xb6ba5c09 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xbc7966a7 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xbf6a2afa nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xc3db539a nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xf1c79fdb nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xfabe113f nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc_digital 0x027d2516 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xa370565d nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xacd83947 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xd050767f nfc_digital_allocate_device -EXPORT_SYMBOL net/phonet/phonet 0x18ea0f7b phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x64c443b9 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x78f8b5e2 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x95a79408 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xa1193b13 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xb57d8519 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xc5fef352 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xe21dee2f pn_sock_unhash -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x02fce281 rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2c216d20 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4dff01ca rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x644570d7 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x744d7f6b rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x785fa877 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8dbde957 rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8f9bfef9 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x948dd13f rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9673d556 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc7815b7c rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe08f25e6 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe0fd58a2 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xea560500 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfe0db745 rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/sctp/sctp 0xc8fd939f sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x363bc752 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x78212d80 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb51066cf gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x1181004e xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x3ebd7643 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc950eb5b xdr_restrict_buflen -EXPORT_SYMBOL net/wimax/wimax 0x1e944001 wimax_rfkill -EXPORT_SYMBOL net/wimax/wimax 0x548603c0 wimax_reset -EXPORT_SYMBOL net/wireless/cfg80211 0x02d9a063 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x04241c6b cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x067a9682 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x08a472e1 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0b65f97f cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x16179ed6 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x1e797a09 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x1fd0875a cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x23386134 cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0x23942835 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x27113814 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x2a49388d cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x37a76b25 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x3a9dcef9 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x3ffaaa27 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x46687f55 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x49724cee cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x4a5944c9 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x4bb271fb cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x4d8ff3c9 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x5036a122 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x506aaabe wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x5aaf5024 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x5fe04b04 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x6287c977 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x6938a176 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x69988f1f cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x6e8f8a2e cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x722f11ea cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x72e99232 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x7337b4ff cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x7337eb7b cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x734c0eaa wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x7496b4cc cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x74a0b790 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x76aa0589 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x77caf61f cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x7849e407 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x7a2ba807 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x7b5b5a38 ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fb20830 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x82a9e0d2 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x85ef7d30 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x86d109dc ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x97943e16 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x9a0fc5be __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x9c8547df cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x9e4cffe9 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xa25ccb8e cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xacbb761e regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xb09f165e cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xb1acf0db __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xb3b83c50 cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xb751bd59 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xb7660d38 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xb82ccfa1 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xb8b1f20f cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0xbb8a0d1a cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xbc33b94f cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xbf68704b freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0xc5a3ac5b ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xcae4b182 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xcb43b900 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xccfff731 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xcd93b696 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xd314f61b cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xd65baf1f cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0xd8eee25c cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xd9e03817 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xde54a99c wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xdefdc6dc cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xe4893b70 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xe910f117 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xe9b5f6fc cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf02fb360 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xf0631521 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xf08f409e cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xf1928074 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xf4b5a0a4 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xf7fc95f2 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xfcec6f14 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xfd29c63c wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x1daf0bbd lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x4a3f9709 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x958b1ad2 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x9afbd582 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xb7bc1be5 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xb991628d lib80211_crypt_info_free -EXPORT_SYMBOL sound/ac97_bus 0xd5e2357b ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x62492cb5 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xa0857745 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb18bc3e7 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xc0a40e78 snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xf32bbd14 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x83d809c2 snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x072d978b snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x13a17752 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2eed26bf snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5ca523 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd7c7afcc snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x4f0da490 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x0005d529 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x05eb81b3 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x0a09cd32 snd_register_device -EXPORT_SYMBOL sound/core/snd 0x0b273e30 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x108c32f4 snd_card_new -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x19890f2a snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x1e4534fd snd_device_free -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x25b1649b snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x267df8d0 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x26d97fe8 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x295e012f snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0x2c71de6b snd_info_register -EXPORT_SYMBOL sound/core/snd 0x2eb260d6 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x354949fd snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3d887888 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x3e85824a snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x46970208 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x48000b7f snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x5c17d416 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x5c18e134 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x65301073 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x67077a32 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x6825e9d6 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x6ea20fe3 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x7030d8cf snd_cards -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x70d23850 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x84a78450 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x86e4c3cc snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x9d3851e3 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0xa423dbfa snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xac836c60 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb7f875a9 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0xbf3febb3 snd_card_register -EXPORT_SYMBOL sound/core/snd 0xc303cd3e snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0xc852df8d _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0xcb308b0a snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xcba85bae snd_device_new -EXPORT_SYMBOL sound/core/snd 0xcc1e26ae snd_device_register -EXPORT_SYMBOL sound/core/snd 0xcea033a6 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0xd1a5e745 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xd263e2ab snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xd7d6c13c snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xda27bf7e snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xded5620d snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xe6fa6181 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0xf3f893b8 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xf48bc488 snd_card_free -EXPORT_SYMBOL sound/core/snd 0xfc636142 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-hwdep 0x73b73165 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x06151f0d snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x06bfda93 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x0a0436a8 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x0c1005fe snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x0c5537f8 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x0d6a1a18 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x108d23d9 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x15a7804d snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x16309eeb snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x2cb45f97 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x2d401f40 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x3207b02f snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x34af119e snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x410e89ba snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x4153fc1e snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x4b6ad71b snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x619c1e55 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x63bd734d snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x68a70534 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x6df4d0e9 snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0x6ec4ef62 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x7102e962 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x771f3744 snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x7edf75b3 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x7fcc0761 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x874d6e7e snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0x8dcfd68c snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0xa0a17b3d snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xa426eac2 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0xa431e6f9 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xaa12d103 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xab4e3f69 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0xabec10e8 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb012d407 snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0xb605e0c3 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0xb6812860 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbbef4703 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xc60cd675 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0xca4b7a84 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0xcd6dd118 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0xce92c446 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xe239fb7a snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe8137f7c snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0xe959de97 snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0xf962af0a snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xfaa3c7c6 snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0xfb09b529 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x07e31400 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0906c97d snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0bbdf135 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x129ca9e2 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x151cc201 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1bc23af7 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1e1117d9 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3037c7a6 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4b7d7437 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4b9d4e7c snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x76bccd60 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7bff0bf3 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8890ffda snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8916a497 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8a35c083 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc2f52e27 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd409f00c snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd452bd3f snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe05b34b4 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-timer 0x07318e94 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x217b7349 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x2fb04824 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x301a6f33 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x4430b12e snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0x5feea6e4 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x624b21b0 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x66f1151c snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x90e85dab snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xb8651b5b snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xf27de4f6 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xf83ec754 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xfa2a0277 snd_timer_global_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x2d8e1109 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0c6ae939 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x596d00dd snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8396657d snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x866920e3 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9ae12c8d snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9d23d33c snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbb20020b snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe4e277f4 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf6d6aad2 snd_opl3_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x024e7f0b snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x55af1fac snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5dd7a6a1 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8dd098fa snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x915f7c11 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9c69d0ed snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbeb0a6ae snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd2fb9691 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd4b47d35 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1640bf45 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1a92e44d iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1b5d8ed3 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2b5aba0b amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2dfa4676 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x301bba32 amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x493eb1c3 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4aa0343f amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x511edc97 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x55f63f90 snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5a1e294a amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x60fd79b5 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x74adc606 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x798fcf52 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7e1a49e1 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x881e4c7d cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x888a3ee2 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8a5e1d7a iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x94ef340e snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9c434ff6 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa1898015 snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa8bbb77a cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xabe0508d fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb16d898c fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb45043fb fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb54076bc fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbe8d6e7d amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe329ce13 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe487dbe2 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe57784eb fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe9a17478 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf523cdaf amdtp_stream_destroy -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x24afd98a snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x80367b8e snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1f29395a snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x221a2c63 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4cd46e05 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x65189272 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6558a827 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x820b5de1 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8ef639c3 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa0d61ac2 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x1155fb7a snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x24a5d0dc snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x39069829 snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x52b24c0f snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xccaf7e48 snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xee850a30 snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x3a63ae41 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x80df44cb snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe8052dd6 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xee691787 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x62e31bbb snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xdf7cfa4a snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x28a37201 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x36c5f54d snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x45013497 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x46c1e4c0 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6e836d48 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb1768809 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-i2c 0x2106509f snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x7a7fa139 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x92d78e9c snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0xb8d9e060 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xd854ed2b snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xdcac61e4 snd_i2c_device_free -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x15f52535 snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x26bd54c8 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2e57d26b snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5a5595bc snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5f8a2951 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x685e0a33 snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6df953c9 snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7916d42d snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xcf67c4ec snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd24ebc88 snd_sbmixer_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2f94a782 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x33619c19 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x400abe55 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x629b37f2 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x79bfdf5d snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7b9cfd94 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8fcb6568 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x90b7936e snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x93051662 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x993b8114 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa7b1e278 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb4ae1bd0 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xba569734 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbfba1e06 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe7a1b4e0 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe8646392 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xeff6e231 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x281c5078 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x56d779c0 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5d551348 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x60c5c1fc snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xad609441 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc432ab15 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd55c4100 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf0ba082e snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfb0ba9c5 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3669d06f snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x458845fe snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd5af19b1 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x15af2fd1 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x180de8b1 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x233591b1 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x25cd9716 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2a0c13cb oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x40947277 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4176acd5 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5c98e67a oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7d8e97d5 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x95aed82c oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa355a4a1 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xad3d5389 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb3ac5b81 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb3df1c8a oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbd21d4ac oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbd47a214 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcc9d2850 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd7298297 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe47ffb1e oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf4eaf8e5 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf8516f76 oxygen_write_uart -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5fb71db5 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xace956a2 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbe795883 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc2bb129b snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd8c572ab snd_trident_write_voice_regs -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x58427fe2 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x83afd728 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/snd-soc-core 0x4a0c401d snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x95e95ca4 sound_class -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0x9d64cd1d register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xb837683f register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xd799b016 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0xe0bba0ac register_sound_special -EXPORT_SYMBOL sound/soundcore 0xfd582f25 register_sound_midi -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5810e294 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6fbc736f snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xaea3bcdb snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbce461bf snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xdbc263d5 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfb6178dc snd_emux_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x32a9b35b snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0x5a01c602 snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x73484b38 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xd15847cd __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0xd8670a5c snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xd926889a __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xde94a325 __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xeb5e6385 snd_util_mem_free -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x87422a77 snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x0005b01a devm_gpio_free -EXPORT_SYMBOL vmlinux 0x000ea5f8 posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0x0010f049 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x00138dc4 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x001693e3 generic_readlink -EXPORT_SYMBOL vmlinux 0x00182066 bmap -EXPORT_SYMBOL vmlinux 0x00253068 lock_sock_fast -EXPORT_SYMBOL vmlinux 0x00418c75 agp_enable -EXPORT_SYMBOL vmlinux 0x0046685e of_get_pci_address -EXPORT_SYMBOL vmlinux 0x005a4975 cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x00709bea scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x008418c8 copy_to_iter -EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done -EXPORT_SYMBOL vmlinux 0x00908240 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x0091b43d unregister_filesystem -EXPORT_SYMBOL vmlinux 0x00943ac2 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x00a9ea0b skb_tx_error -EXPORT_SYMBOL vmlinux 0x00b6e1a6 bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x00bba55e icmp_send -EXPORT_SYMBOL vmlinux 0x00cc601f inet_release -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00e43f1c vfs_getattr -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x011117d2 of_dev_put -EXPORT_SYMBOL vmlinux 0x0113712d inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x011b6cb6 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x011bb987 kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0x0122f95e _lv1_get_spe_irq_outlet -EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 -EXPORT_SYMBOL vmlinux 0x014989d2 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x015457a8 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x016e85b4 pipe_lock -EXPORT_SYMBOL vmlinux 0x017f4f13 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x018cdfc8 dquot_alloc -EXPORT_SYMBOL vmlinux 0x018d9919 _lv1_set_lpm_interrupt_mask -EXPORT_SYMBOL vmlinux 0x019ad853 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x019bc207 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x019c1a8a locks_copy_lock -EXPORT_SYMBOL vmlinux 0x01bdf56d bioset_create -EXPORT_SYMBOL vmlinux 0x01ce3cbf pci_map_rom -EXPORT_SYMBOL vmlinux 0x01cea4e1 lro_receive_skb -EXPORT_SYMBOL vmlinux 0x01e3f931 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x01ef3d0e nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x020b118b agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0x020d18d7 _lv1_set_lpm_debug_bus_control -EXPORT_SYMBOL vmlinux 0x0213560b add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x023460d8 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x0238942c netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0x023a074a hvc_get_chars -EXPORT_SYMBOL vmlinux 0x024aed12 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x02543083 force_sig -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x026bc2c8 blk_run_queue -EXPORT_SYMBOL vmlinux 0x026f57d5 __seq_open_private -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027d5499 _lv1_did_update_interrupt_mask -EXPORT_SYMBOL vmlinux 0x028c4ccd bio_integrity_free -EXPORT_SYMBOL vmlinux 0x0290d4d7 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0x02986838 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x0298e053 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x029c2dc8 mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0x029d560a kobject_set_name -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02aee54d input_grab_device -EXPORT_SYMBOL vmlinux 0x02bfc32c blk_init_queue -EXPORT_SYMBOL vmlinux 0x02d1e491 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x02dda4e9 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x02e4ac47 of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02fa1c5c block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x02fdb5c5 agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0x03076801 key_type_keyring -EXPORT_SYMBOL vmlinux 0x031dc65e pasemi_dma_free_chan -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x036b872d __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x036fc564 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x038e0751 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x03946972 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x039e5366 scsi_print_result -EXPORT_SYMBOL vmlinux 0x03b0509d pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x03b93ab9 __blk_end_request_all -EXPORT_SYMBOL vmlinux 0x03c49527 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x03c57f73 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x03cfeb8a pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x03d5fc46 pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x03e1f21d elv_rb_add -EXPORT_SYMBOL vmlinux 0x03ea6e34 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0401bf66 set_wb_congested -EXPORT_SYMBOL vmlinux 0x04074f48 ioremap -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x0440a533 _lv1_net_remove_multicast_address -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x044903a2 input_reset_device -EXPORT_SYMBOL vmlinux 0x0450f941 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x0488cc51 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x04942896 igrab -EXPORT_SYMBOL vmlinux 0x04a78723 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x04ad4246 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x04cd4c02 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x04dc9fef devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x04e8b950 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x050c6c08 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x05119d8f mmc_can_erase -EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range -EXPORT_SYMBOL vmlinux 0x0520ce82 km_state_notify -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x05249107 pci_find_capability -EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x0540b32a cpu_core_map -EXPORT_SYMBOL vmlinux 0x055570f5 nobh_write_begin -EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x0576addf of_dev_get -EXPORT_SYMBOL vmlinux 0x057e02e1 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns -EXPORT_SYMBOL vmlinux 0x05cf034d tty_port_open -EXPORT_SYMBOL vmlinux 0x05e2ce58 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x05ee6960 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x05f1a635 kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x062d6d20 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x06456aff _lv1_get_virtual_address_space_id_of_ppe -EXPORT_SYMBOL vmlinux 0x064663fd sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x06622ea2 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x06733356 pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x06acd6bf neigh_direct_output -EXPORT_SYMBOL vmlinux 0x06cf7b60 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x06d899c4 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0x06e19fbb devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x06e44201 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x06fa08b9 inet_add_offload -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x06ffec0b mach_powernv -EXPORT_SYMBOL vmlinux 0x0712a004 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 -EXPORT_SYMBOL vmlinux 0x0729ac71 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x0730697f dm_unregister_target -EXPORT_SYMBOL vmlinux 0x073b870e blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x074e9213 down_killable -EXPORT_SYMBOL vmlinux 0x07567533 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x07610398 dump_skip -EXPORT_SYMBOL vmlinux 0x07673c80 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x077bf724 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x07951280 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x07bd4cf9 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07ef213a pasemi_dma_free_fun -EXPORT_SYMBOL vmlinux 0x07f0c317 mmc_add_host -EXPORT_SYMBOL vmlinux 0x07f44152 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x07f8ee15 _lv1_unmap_device_dma_region -EXPORT_SYMBOL vmlinux 0x0804f7f7 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x08099009 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x080e4b34 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x0818ddf6 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x08245537 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x087eadc6 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x08971105 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x089741c7 of_device_register -EXPORT_SYMBOL vmlinux 0x08ba3ad1 pci_set_master -EXPORT_SYMBOL vmlinux 0x08ba47fe netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0x08c899c9 pci_request_regions -EXPORT_SYMBOL vmlinux 0x08c92024 vlan_vid_del -EXPORT_SYMBOL vmlinux 0x08d13158 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x08d935bb unregister_console -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x0904ad21 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x0928296e __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x0941969e bio_chain -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x095ee77e of_phy_find_device -EXPORT_SYMBOL vmlinux 0x0960e13b input_get_keycode -EXPORT_SYMBOL vmlinux 0x096341c2 _lv1_connect_irq_plug_ext -EXPORT_SYMBOL vmlinux 0x09662072 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x0988e2d5 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x098b1e0d skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x098bfe6a __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x09b5bef5 simple_rmdir -EXPORT_SYMBOL vmlinux 0x09b9fdf9 dev_addr_add -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c67afb flex_array_get -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09cabcb0 get_disk -EXPORT_SYMBOL vmlinux 0x09d2b6b7 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09dc3462 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x09df676f unregister_md_personality -EXPORT_SYMBOL vmlinux 0x09f282c4 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x09ff10c9 blkdev_fsync -EXPORT_SYMBOL vmlinux 0x0a143eee __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x0a202b82 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a3d0644 cpu_online_mask -EXPORT_SYMBOL vmlinux 0x0a4a6f9b eth_change_mtu -EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x0a5c7842 kill_litter_super -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a7b7228 abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x0a7d217b of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x0a940b86 nd_integrity_init -EXPORT_SYMBOL vmlinux 0x0aa3054f tcp_prequeue -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aaa9c4d kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0x0aaafbb8 sock_i_ino -EXPORT_SYMBOL vmlinux 0x0abec29b dev_uc_sync -EXPORT_SYMBOL vmlinux 0x0abfcbaf do_splice_direct -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0aeb3d4b scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x0afb5eec d_set_fallthru -EXPORT_SYMBOL vmlinux 0x0aff1cb1 dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x0b015ae8 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x0b09b87c scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b1fc4fe phy_find_first -EXPORT_SYMBOL vmlinux 0x0b241c17 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x0b2ccba8 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x0b2d536a swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b8a25bc skb_checksum -EXPORT_SYMBOL vmlinux 0x0bafd7fa sk_reset_timer -EXPORT_SYMBOL vmlinux 0x0bb3619f __put_cred -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bce933d vfs_mkdir -EXPORT_SYMBOL vmlinux 0x0bd0c17d set_user_nice -EXPORT_SYMBOL vmlinux 0x0bde1790 tty_write_room -EXPORT_SYMBOL vmlinux 0x0bde3c5b dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x0bfceef3 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x0bfd9b74 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x0c03b317 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x0c0c55ec pci_iomap_range -EXPORT_SYMBOL vmlinux 0x0c1ad162 _lv1_net_start_rx_dma -EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c52a0d9 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c66e20b serio_reconnect -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c7b1c3d freeze_bdev -EXPORT_SYMBOL vmlinux 0x0c949d76 rtnl_notify -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0ca27514 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cd66fc1 revalidate_disk -EXPORT_SYMBOL vmlinux 0x0ce50f97 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x0ce921fd mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x0cea64a3 vfs_fsync -EXPORT_SYMBOL vmlinux 0x0cf6b3f2 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x0d2ac755 console_stop -EXPORT_SYMBOL vmlinux 0x0d301b95 cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d6c963c copy_from_user -EXPORT_SYMBOL vmlinux 0x0d6e685a agp_backend_release -EXPORT_SYMBOL vmlinux 0x0d9f4ded __inode_permission -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0dbd9297 nvm_dev_factory -EXPORT_SYMBOL vmlinux 0x0dc07228 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x0dd9566c read_code -EXPORT_SYMBOL vmlinux 0x0ddfc4d2 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x0df4dcec param_ops_uint -EXPORT_SYMBOL vmlinux 0x0e242009 serio_bus -EXPORT_SYMBOL vmlinux 0x0e2a89aa free_netdev -EXPORT_SYMBOL vmlinux 0x0e333810 skb_put -EXPORT_SYMBOL vmlinux 0x0e62518f crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x0e635623 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x0ea6b72e __frontswap_load -EXPORT_SYMBOL vmlinux 0x0eaea07b fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x0eb925f2 blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x0eba4195 devm_gpio_request -EXPORT_SYMBOL vmlinux 0x0ebefa8c set_groups -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ed083e6 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x0edfef2f of_cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x0ee9732e tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x0ef6738a d_obtain_alias -EXPORT_SYMBOL vmlinux 0x0efc6997 vio_enable_interrupts -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f133669 eth_header_cache -EXPORT_SYMBOL vmlinux 0x0f191bb4 pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x0f40ec02 audit_log_start -EXPORT_SYMBOL vmlinux 0x0f414ffe __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x0f499ee2 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f8560cb pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x0f8d1ace pci_release_regions -EXPORT_SYMBOL vmlinux 0x0f8ef7f8 param_set_ushort -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fc71cfa security_inode_init_security -EXPORT_SYMBOL vmlinux 0x0fd15a8d tcp_splice_read -EXPORT_SYMBOL vmlinux 0x0fd17558 pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x0fd2a418 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x0fdb0c7b gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x0fe0b130 vme_irq_free -EXPORT_SYMBOL vmlinux 0x100e52ce request_firmware -EXPORT_SYMBOL vmlinux 0x102013f0 compat_sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x102c2267 inet_listen -EXPORT_SYMBOL vmlinux 0x103fe7da cdrom_check_events -EXPORT_SYMBOL vmlinux 0x1040637b nvm_register_mgr -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x108c9701 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x10903b51 xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x10bbdfa8 proc_remove -EXPORT_SYMBOL vmlinux 0x10bd4499 vfs_writev -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10f94e36 da903x_query_status -EXPORT_SYMBOL vmlinux 0x10ff2186 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x11171812 tty_port_hangup -EXPORT_SYMBOL vmlinux 0x112d2c72 km_query -EXPORT_SYMBOL vmlinux 0x11615580 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x116e8b1b genphy_suspend -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1171b635 _lv1_delete_lpm_event_bookmark -EXPORT_SYMBOL vmlinux 0x11822984 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable -EXPORT_SYMBOL vmlinux 0x11953af2 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x1199f62c bio_advance -EXPORT_SYMBOL vmlinux 0x119bf7ef compat_ip_setsockopt -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11ae39c1 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x11bd2cba bdput -EXPORT_SYMBOL vmlinux 0x11c8e3e8 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x11d3258f inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x11e11eb4 mmc_start_req -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x11ff178b inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0x11ffa8cd make_bad_inode -EXPORT_SYMBOL vmlinux 0x12046b20 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x12052113 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x12098748 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x12259feb pci_write_vpd -EXPORT_SYMBOL vmlinux 0x1228fcd8 f_setown -EXPORT_SYMBOL vmlinux 0x122988ec pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x122c47ef __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x123431e0 from_kprojid -EXPORT_SYMBOL vmlinux 0x123e00dc tty_lock -EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x12412150 mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x12822d3e remove_proc_entry -EXPORT_SYMBOL vmlinux 0x1282a861 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12a53665 flow_cache_init -EXPORT_SYMBOL vmlinux 0x12c9160d phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x12cb6622 _lv1_map_device_dma_region -EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit -EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level -EXPORT_SYMBOL vmlinux 0x12f43ded __block_write_begin -EXPORT_SYMBOL vmlinux 0x12fd5ccb jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x13017d5d down_read -EXPORT_SYMBOL vmlinux 0x130f3ffe vio_unregister_driver -EXPORT_SYMBOL vmlinux 0x13135b17 jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13215eac mem_section -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x1336b5b3 kvmppc_hv_find_lock_hpte -EXPORT_SYMBOL vmlinux 0x134d8c24 __pagevec_release -EXPORT_SYMBOL vmlinux 0x1365e2df __getblk_gfp -EXPORT_SYMBOL vmlinux 0x137d1918 phy_device_create -EXPORT_SYMBOL vmlinux 0x137e474b check_disk_size_change -EXPORT_SYMBOL vmlinux 0x13862463 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x13943963 current_in_userns -EXPORT_SYMBOL vmlinux 0x13a09151 nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0x13acb249 inode_add_bytes -EXPORT_SYMBOL vmlinux 0x13b7c951 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x13c0efd6 ps2_drain -EXPORT_SYMBOL vmlinux 0x13ce5e9c xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d70410 file_remove_privs -EXPORT_SYMBOL vmlinux 0x13e6ac50 generic_fillattr -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize -EXPORT_SYMBOL vmlinux 0x13fc435c devm_free_irq -EXPORT_SYMBOL vmlinux 0x1412a400 netlink_ack -EXPORT_SYMBOL vmlinux 0x141c621a __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x141f6f38 dquot_disable -EXPORT_SYMBOL vmlinux 0x141fe5fd pasemi_read_iob_reg -EXPORT_SYMBOL vmlinux 0x1424a557 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x143c73c2 end_page_writeback -EXPORT_SYMBOL vmlinux 0x144a94dc from_kgid_munged -EXPORT_SYMBOL vmlinux 0x1452ae2f __scm_send -EXPORT_SYMBOL vmlinux 0x146a4f38 pnv_phb_to_cxl_mode -EXPORT_SYMBOL vmlinux 0x14a14817 pSeries_enable_reloc_on_exc -EXPORT_SYMBOL vmlinux 0x14ad42a8 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x14c5fc9b tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x14cbb03e rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14d4ea63 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x14d85d75 compat_ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x14ee815c __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x151592c4 _lv1_invalidate_htab_entries -EXPORT_SYMBOL vmlinux 0x1523207f tty_kref_put -EXPORT_SYMBOL vmlinux 0x15280f8c sock_no_poll -EXPORT_SYMBOL vmlinux 0x15463e09 lookup_one_len -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x155b539e dm_put_table_device -EXPORT_SYMBOL vmlinux 0x1565e9e0 macio_release_resource -EXPORT_SYMBOL vmlinux 0x158521e0 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x158cc5c0 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x15ed45fb devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token -EXPORT_SYMBOL vmlinux 0x160f1420 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x1619e532 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x162f4e34 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x163c8215 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x165cb487 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x166db824 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x1685b17c file_path -EXPORT_SYMBOL vmlinux 0x168a1458 of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0x16924f1b scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x169cefe4 replace_mount_options -EXPORT_SYMBOL vmlinux 0x16a65c4f vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x16ac188f vme_master_mmap -EXPORT_SYMBOL vmlinux 0x16bde8be __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x16c0e702 page_readlink -EXPORT_SYMBOL vmlinux 0x16c11df1 compat_sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x16cb4dab abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0x16dd887a __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e4ce73 kernel_connect -EXPORT_SYMBOL vmlinux 0x17072334 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x172e6463 inet_shutdown -EXPORT_SYMBOL vmlinux 0x1734c462 nf_unregister_hook -EXPORT_SYMBOL vmlinux 0x1743414f __debugger_fault_handler -EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock -EXPORT_SYMBOL vmlinux 0x1771cbc6 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x177de996 param_get_ushort -EXPORT_SYMBOL vmlinux 0x1788c6b2 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x17af466c d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17b9438d inet_stream_connect -EXPORT_SYMBOL vmlinux 0x17bce13a vme_register_bridge -EXPORT_SYMBOL vmlinux 0x17be5b2d pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x17cb8c79 _lv1_read_htab_entries -EXPORT_SYMBOL vmlinux 0x17ccd3ff __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x17d649d7 blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x17df2288 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x1829993d sync_inode -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x182ad338 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x182f50af _lv1_open_device -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x1857aa39 proc_dointvec -EXPORT_SYMBOL vmlinux 0x18625a0f forget_cached_acl -EXPORT_SYMBOL vmlinux 0x1862622f vm_mmap -EXPORT_SYMBOL vmlinux 0x18683319 find_get_pages_tag -EXPORT_SYMBOL vmlinux 0x186a0c54 skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x18ab3dea pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x18bc2581 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x18c98205 _lv1_destruct_virtual_address_space -EXPORT_SYMBOL vmlinux 0x18d9ec26 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18e89632 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x18f3592b __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x193136a9 seq_path -EXPORT_SYMBOL vmlinux 0x193c5c5c pcibus_to_node -EXPORT_SYMBOL vmlinux 0x194f4765 agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0x19591743 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x196e9e75 override_creds -EXPORT_SYMBOL vmlinux 0x1972c190 arp_send -EXPORT_SYMBOL vmlinux 0x199ec4fb arch_spin_unlock_wait -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a1986e iget_failed -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19ba1dc7 fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19bfac34 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x19c7a87b generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x19c968d1 pasemi_dma_start_chan -EXPORT_SYMBOL vmlinux 0x19d4d38a pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x19db307d dev_close -EXPORT_SYMBOL vmlinux 0x19fa0113 abx500_remove_ops -EXPORT_SYMBOL vmlinux 0x19ff11c0 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x1a0c0c14 dquot_commit -EXPORT_SYMBOL vmlinux 0x1a1e2485 clear_wb_congested -EXPORT_SYMBOL vmlinux 0x1a2de8f4 task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0x1a64113a cad_pid -EXPORT_SYMBOL vmlinux 0x1a6a38bd blk_start_queue_async -EXPORT_SYMBOL vmlinux 0x1a732a43 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x1a739d31 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x1a8d4cbf touch_buffer -EXPORT_SYMBOL vmlinux 0x1a91663d pasemi_dma_free_buf -EXPORT_SYMBOL vmlinux 0x1a967b30 swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x1aa10451 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x1ab1fc2b sk_free -EXPORT_SYMBOL vmlinux 0x1ab2ff16 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1aeff08a netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b064a08 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock -EXPORT_SYMBOL vmlinux 0x1b147644 generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b321f6f __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x1b625d33 enable_kernel_vsx -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b64bc6f __scm_destroy -EXPORT_SYMBOL vmlinux 0x1b65dca9 vm_insert_mixed -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bbf54c0 dma_set_mask -EXPORT_SYMBOL vmlinux 0x1bc379c4 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x1be1559c page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0x1be55283 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x1be7310b led_blink_set -EXPORT_SYMBOL vmlinux 0x1bfec830 __iounmap_at -EXPORT_SYMBOL vmlinux 0x1c0ccddb blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x1c200a7d pasemi_dma_stop_chan -EXPORT_SYMBOL vmlinux 0x1c25bbf2 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x1c299dca dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x1c37f68d __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp -EXPORT_SYMBOL vmlinux 0x1c4dab93 _lv1_connect_irq_plug -EXPORT_SYMBOL vmlinux 0x1c557532 tcp_req_err -EXPORT_SYMBOL vmlinux 0x1c5b2c15 pmu_wait_complete -EXPORT_SYMBOL vmlinux 0x1c5e7d39 proc_create_data -EXPORT_SYMBOL vmlinux 0x1c6260ce clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x1c69bb9b mmc_can_trim -EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check -EXPORT_SYMBOL vmlinux 0x1c8a7e87 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x1d0784ea vfs_writef -EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be -EXPORT_SYMBOL vmlinux 0x1d3efe32 make_kgid -EXPORT_SYMBOL vmlinux 0x1d4750bc _lv1_stop_lpm -EXPORT_SYMBOL vmlinux 0x1d6354d1 dcache_dir_close -EXPORT_SYMBOL vmlinux 0x1d64aa9b d_drop -EXPORT_SYMBOL vmlinux 0x1d72fa38 register_shrinker -EXPORT_SYMBOL vmlinux 0x1d9f993b in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x1da9e1dd devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x1db7a18b jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x1db7ce2c inet6_bind -EXPORT_SYMBOL vmlinux 0x1dbc4d0c proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1df07cff of_device_is_available -EXPORT_SYMBOL vmlinux 0x1df12159 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x1dfa0731 led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0x1dff21a9 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query -EXPORT_SYMBOL vmlinux 0x1e25a8eb posix_unblock_lock -EXPORT_SYMBOL vmlinux 0x1e26b168 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e368443 ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0x1e42e39a ilookup5 -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e7acbd2 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea0ad02 address_space_init_once -EXPORT_SYMBOL vmlinux 0x1ea49538 devm_iounmap -EXPORT_SYMBOL vmlinux 0x1eaf6d0d nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x1eb4e231 of_device_alloc -EXPORT_SYMBOL vmlinux 0x1ebc096f dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x1ec03f52 register_console -EXPORT_SYMBOL vmlinux 0x1ec367ff sg_miter_next -EXPORT_SYMBOL vmlinux 0x1edb1667 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x1ef2ea2e twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x1ef66be4 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x1f0a5276 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x1f259de7 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x1f2dfa7f generic_removexattr -EXPORT_SYMBOL vmlinux 0x1f4d1640 serio_rescan -EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x1f77d9b8 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x1f7ff5bb of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x1f95c8b9 sock_no_getname -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fcf784f dump_truncate -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd20062 migrate_page -EXPORT_SYMBOL vmlinux 0x1fe7b4ab pasemi_write_dma_reg -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x1ff8b577 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201494ee _lv1_net_set_interrupt_mask -EXPORT_SYMBOL vmlinux 0x20176122 remap_pfn_range -EXPORT_SYMBOL vmlinux 0x204451ef path_put -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x204e5e68 tcf_register_action -EXPORT_SYMBOL vmlinux 0x205c0acd make_kuid -EXPORT_SYMBOL vmlinux 0x206f1802 nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x206fdae3 follow_up -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x207b8201 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x209d5068 ___pskb_trim -EXPORT_SYMBOL vmlinux 0x20a621c8 new_inode -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20b2f4b8 seq_open -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20d03994 try_to_release_page -EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x21014b32 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x21115060 filemap_fdatawait -EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x212f8918 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x213603bf pasemi_dma_free_ring -EXPORT_SYMBOL vmlinux 0x21413daa __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x214ffb73 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x2151f3f1 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x2154769f netdev_printk -EXPORT_SYMBOL vmlinux 0x215fc69a mount_nodev -EXPORT_SYMBOL vmlinux 0x218c380b scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x21a1c470 netdev_features_change -EXPORT_SYMBOL vmlinux 0x21c20dc5 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x21d33071 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x21d68448 phy_resume -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback -EXPORT_SYMBOL vmlinux 0x2200f5ee __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x220c380b netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2234c709 framebuffer_release -EXPORT_SYMBOL vmlinux 0x225ebee6 _lv1_destruct_lpm -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x226b3839 simple_transaction_read -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x2277cde9 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember -EXPORT_SYMBOL vmlinux 0x227e8da9 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x2286aa26 dev_add_offload -EXPORT_SYMBOL vmlinux 0x2296d634 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x22a49b71 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22c69b65 nf_log_set -EXPORT_SYMBOL vmlinux 0x22d3adfb nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x2305b34a up_read -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x232e2be9 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL vmlinux 0x2345ce65 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x234ed030 unlock_rename -EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit -EXPORT_SYMBOL vmlinux 0x23812815 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x2384788f pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x23889d88 __d_drop -EXPORT_SYMBOL vmlinux 0x23a2f380 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23bea578 passthru_features_check -EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x23c9dcb0 inet_getname -EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free -EXPORT_SYMBOL vmlinux 0x23f7e945 key_invalidate -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x241ac73a gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x242821d6 vme_bus_num -EXPORT_SYMBOL vmlinux 0x243fc217 __bforget -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x24490d70 lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x245952d5 blk_make_request -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245ad0a7 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x247b2b15 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x24803751 param_ops_long -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x24adfd66 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x24cfd438 _lv1_copy_lpm_trace_buffer -EXPORT_SYMBOL vmlinux 0x24d6b4a6 cur_cpu_spec -EXPORT_SYMBOL vmlinux 0x24f00380 ida_init -EXPORT_SYMBOL vmlinux 0x24f24e66 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x24fb6477 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x25148634 lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0x2519ce4c unregister_binfmt -EXPORT_SYMBOL vmlinux 0x251ea9df filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x25249cb4 skb_copy -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x252a2c57 dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x253df775 blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x25433fc7 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0x25605937 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x25615136 arp_tbl -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x25736636 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x25886eac wireless_spy_update -EXPORT_SYMBOL vmlinux 0x25887050 tty_unlock -EXPORT_SYMBOL vmlinux 0x259eae22 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x25b6b8f7 _lv1_set_spe_transition_notifier -EXPORT_SYMBOL vmlinux 0x25d31288 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x25df4535 scsi_host_get -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x2651135e blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x265235a1 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x2665956a netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update -EXPORT_SYMBOL vmlinux 0x2681878c bh_submit_read -EXPORT_SYMBOL vmlinux 0x2687dba1 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x26983305 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init -EXPORT_SYMBOL vmlinux 0x26beac39 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x26bee1b9 simple_empty -EXPORT_SYMBOL vmlinux 0x26c6f316 md_done_sync -EXPORT_SYMBOL vmlinux 0x26dbbf96 netif_skb_features -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e35d36 register_md_personality -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x2709d9b9 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x272c94ec vfs_rename -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x27548078 scsi_execute -EXPORT_SYMBOL vmlinux 0x27646df3 start_thread -EXPORT_SYMBOL vmlinux 0x2767f690 d_walk -EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above -EXPORT_SYMBOL vmlinux 0x277a5a94 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x2783280d __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x27925972 bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x279809e9 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x27f1f4e0 nf_afinfo -EXPORT_SYMBOL vmlinux 0x27f6d281 bio_reset -EXPORT_SYMBOL vmlinux 0x280d6d45 __inet_hash -EXPORT_SYMBOL vmlinux 0x280d8141 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x2811fcef devm_release_resource -EXPORT_SYMBOL vmlinux 0x2816190c xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x281d5664 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x28318305 snprintf -EXPORT_SYMBOL vmlinux 0x28322933 arp_xmit -EXPORT_SYMBOL vmlinux 0x2897060d dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x28990e5f vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove -EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28a7beba __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x28bf192b bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x28c1cf66 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x28c304a4 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x28c4a15b init_net -EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x290cccd2 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x2920af4c posix_lock_file -EXPORT_SYMBOL vmlinux 0x29223ea6 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x295562cb __bread_gfp -EXPORT_SYMBOL vmlinux 0x295a9e18 pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0x2974937f scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x298174fe stop_tty -EXPORT_SYMBOL vmlinux 0x2995c751 update_devfreq -EXPORT_SYMBOL vmlinux 0x29a1b03d tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0x29b64585 mutex_trylock -EXPORT_SYMBOL vmlinux 0x29c7d43a macio_release_resources -EXPORT_SYMBOL vmlinux 0x29c7e649 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x29e877ff mount_pseudo -EXPORT_SYMBOL vmlinux 0x29f5435a max8925_set_bits -EXPORT_SYMBOL vmlinux 0x2a1c60f4 ibmebus_bus_type -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2ada7710 security_inode_permission -EXPORT_SYMBOL vmlinux 0x2ae5b8fa __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x2af002fa cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x2af5d334 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x2b03a350 vme_dma_request -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b41b27a default_file_splice_read -EXPORT_SYMBOL vmlinux 0x2b4991ec xmon -EXPORT_SYMBOL vmlinux 0x2b4ead37 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x2b90f460 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2b9f8d2b param_set_charp -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2bce0688 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x2bfc9441 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x2c0adebe cfb_imageblit -EXPORT_SYMBOL vmlinux 0x2c1cd4a4 cpu_present_mask -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c2688c5 of_match_device -EXPORT_SYMBOL vmlinux 0x2c27eac2 ps2_init -EXPORT_SYMBOL vmlinux 0x2c2996ab fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x2c4c7997 _lv1_construct_lpm -EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout -EXPORT_SYMBOL vmlinux 0x2c93d950 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x2cb051c7 param_get_charp -EXPORT_SYMBOL vmlinux 0x2cdaab9f dev_mc_sync -EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x2cf7e6a9 register_cdrom -EXPORT_SYMBOL vmlinux 0x2d0c9628 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d30be6d of_parse_phandle -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d5df253 pci_get_class -EXPORT_SYMBOL vmlinux 0x2d5fe368 irq_set_chip -EXPORT_SYMBOL vmlinux 0x2d65f398 security_path_symlink -EXPORT_SYMBOL vmlinux 0x2d7d2767 _lv1_set_lpm_group_control -EXPORT_SYMBOL vmlinux 0x2d8aff8b bio_endio -EXPORT_SYMBOL vmlinux 0x2db1e0c6 dql_init -EXPORT_SYMBOL vmlinux 0x2dcd5ed2 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x2dce7c33 cdrom_open -EXPORT_SYMBOL vmlinux 0x2dd3bd99 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x2de56ac3 alloc_fddidev -EXPORT_SYMBOL vmlinux 0x2dedad37 tso_build_data -EXPORT_SYMBOL vmlinux 0x2df3de84 sock_wake_async -EXPORT_SYMBOL vmlinux 0x2e064827 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on -EXPORT_SYMBOL vmlinux 0x2e0fd40f skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x2e12a93b ibmebus_request_irq -EXPORT_SYMBOL vmlinux 0x2e1cef06 dev_addr_init -EXPORT_SYMBOL vmlinux 0x2e24bb85 skb_queue_head -EXPORT_SYMBOL vmlinux 0x2e255ba2 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x2e263095 __secpath_destroy -EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e3d0e03 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x2e48f6f1 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0x2e682163 bdgrab -EXPORT_SYMBOL vmlinux 0x2e93495e _lv1_write_htab_entry -EXPORT_SYMBOL vmlinux 0x2eae085e vga_put -EXPORT_SYMBOL vmlinux 0x2ee4337f smu_queue_cmd -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2efdc0f0 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x2effa8ae sk_ns_capable -EXPORT_SYMBOL vmlinux 0x2f03e5c5 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f163033 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user -EXPORT_SYMBOL vmlinux 0x2f2b4ee0 flush_old_exec -EXPORT_SYMBOL vmlinux 0x2f3d9d71 fsnotify_put_group -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f8b0d67 audit_log_task_info -EXPORT_SYMBOL vmlinux 0x2f8dda4e gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x2f954a40 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x2fa4765f pci_read_vpd -EXPORT_SYMBOL vmlinux 0x2fa5deb6 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fbce6f7 elevator_change -EXPORT_SYMBOL vmlinux 0x2fe1ec26 param_get_invbool -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2ff1f280 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x2ffe5b56 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x30062d75 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x300bcfa3 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x301bbd90 param_set_int -EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command -EXPORT_SYMBOL vmlinux 0x30245285 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x307cfd30 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x3090fd4a security_mmap_file -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x3097a842 param_set_short -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30afaf58 pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0x30b14c2e reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id -EXPORT_SYMBOL vmlinux 0x30e4d5b8 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x30f37c7a generic_read_dir -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310f02ec memremap -EXPORT_SYMBOL vmlinux 0x312cfaf2 _lv1_disable_logical_spe -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x31604d3d param_get_uint -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x31757f84 put_filp -EXPORT_SYMBOL vmlinux 0x3186c056 vfs_llseek -EXPORT_SYMBOL vmlinux 0x319007ec xfrm_register_km -EXPORT_SYMBOL vmlinux 0x3193b195 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x31b7f300 _lv1_set_lpm_signal -EXPORT_SYMBOL vmlinux 0x31cd509a _lv1_net_control -EXPORT_SYMBOL vmlinux 0x31cd995b store_fp_state -EXPORT_SYMBOL vmlinux 0x31d09d00 sock_wfree -EXPORT_SYMBOL vmlinux 0x31e0eeb5 skb_trim -EXPORT_SYMBOL vmlinux 0x31e141d4 param_get_bool -EXPORT_SYMBOL vmlinux 0x31e7bc74 fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x32067f94 ps3_dma_region_init -EXPORT_SYMBOL vmlinux 0x320bc8b6 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x323ee3ab d_rehash -EXPORT_SYMBOL vmlinux 0x324fecc0 __breadahead -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x325d884f pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x32768fc2 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x327b9c1b pmu_poll_adb -EXPORT_SYMBOL vmlinux 0x328605ee netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x32be7a89 loop_backing_file -EXPORT_SYMBOL vmlinux 0x32ce01ac node_data -EXPORT_SYMBOL vmlinux 0x32cfaefc blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x32e1cf09 __blk_end_request -EXPORT_SYMBOL vmlinux 0x32e6ff68 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0x32f0165a dma_common_mmap -EXPORT_SYMBOL vmlinux 0x33033969 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x331484db fget -EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x335b6c44 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x33842b5d dm_get_device -EXPORT_SYMBOL vmlinux 0x33941f1d param_array_ops -EXPORT_SYMBOL vmlinux 0x33a3acb7 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x33afbfb4 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33bc4025 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33d01daf input_set_capability -EXPORT_SYMBOL vmlinux 0x33d3c5fc poll_freewait -EXPORT_SYMBOL vmlinux 0x33dd3c19 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x33e2b1b9 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x33ec89e6 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f2eca4 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x33f3d3ab of_phy_connect -EXPORT_SYMBOL vmlinux 0x33fab74b blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x3402f659 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x3417239d mpage_writepages -EXPORT_SYMBOL vmlinux 0x343d385f pcim_pin_device -EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x345c7ee9 key_alloc -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x349075ce vc_cons -EXPORT_SYMBOL vmlinux 0x3492443e pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x34937441 vga_con -EXPORT_SYMBOL vmlinux 0x349ab428 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34bf0b7e mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x34c9ead3 compat_ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x34cedbb6 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0x34d5cca8 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x34d722a8 __check_sticky -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x352623ad __sock_create -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x353c6f50 tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0x353d75ef blk_queue_split -EXPORT_SYMBOL vmlinux 0x35590be4 swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x3563b47f agp_put_bridge -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x35929034 set_cached_acl -EXPORT_SYMBOL vmlinux 0x3599bc3a mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0x359abb7c neigh_connected_output -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 -EXPORT_SYMBOL vmlinux 0x35f85450 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x360ef05b iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy -EXPORT_SYMBOL vmlinux 0x362f7df3 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy -EXPORT_SYMBOL vmlinux 0x368bfeed tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x36b1bc8b sk_net_capable -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36d865fa tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x36f4cd12 tty_port_init -EXPORT_SYMBOL vmlinux 0x36f85926 dqput -EXPORT_SYMBOL vmlinux 0x37082fcc __scsi_add_device -EXPORT_SYMBOL vmlinux 0x370da63e dev_activate -EXPORT_SYMBOL vmlinux 0x3711141c ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x371902e9 _lv1_get_lpm_interrupt_status -EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport -EXPORT_SYMBOL vmlinux 0x37344510 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x37503b41 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x3754b076 give_up_console -EXPORT_SYMBOL vmlinux 0x375d7533 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x376aa5f5 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37d23769 phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x37f06264 inet_accept -EXPORT_SYMBOL vmlinux 0x37f19c58 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x37f70f65 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x38021760 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x382501ae tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x382777ab _lv1_gpu_context_allocate -EXPORT_SYMBOL vmlinux 0x382bed55 netdev_crit -EXPORT_SYMBOL vmlinux 0x383da5f1 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x38434803 phy_device_register -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x388a15eb neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x389b69df phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38ac860c wait_iff_congested -EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace -EXPORT_SYMBOL vmlinux 0x38d79dee tty_port_destroy -EXPORT_SYMBOL vmlinux 0x38e1b977 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios -EXPORT_SYMBOL vmlinux 0x391d40ba neigh_parms_release -EXPORT_SYMBOL vmlinux 0x39292a87 from_kuid -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393ad165 __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le -EXPORT_SYMBOL vmlinux 0x393f6e09 blk_peek_request -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3952c7e6 agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x39732482 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0x3977f46a mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0x3988bf9d flush_icache_user_range -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39a754db file_update_time -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39b9894b set_binfmt -EXPORT_SYMBOL vmlinux 0x39ba61ab agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0x39c3166b grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x39f3c011 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x3a001319 proto_register -EXPORT_SYMBOL vmlinux 0x3a4e30df tcf_em_register -EXPORT_SYMBOL vmlinux 0x3a506089 simple_follow_link -EXPORT_SYMBOL vmlinux 0x3a67d670 phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0x3a684782 blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x3a7ec7b6 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x3a8040da iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3a9da597 generic_writepages -EXPORT_SYMBOL vmlinux 0x3aaf2f4d pci_bus_get -EXPORT_SYMBOL vmlinux 0x3ad66743 mac_find_mode -EXPORT_SYMBOL vmlinux 0x3afac35b vme_irq_request -EXPORT_SYMBOL vmlinux 0x3b29c350 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x3b451b53 fs_bio_set -EXPORT_SYMBOL vmlinux 0x3b4fed6a macio_request_resources -EXPORT_SYMBOL vmlinux 0x3b5909f8 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x3b8c3433 swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x3c3d2a2e inet_frag_kill -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x3c499a97 of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x3c574968 agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0x3c67428f generic_getxattr -EXPORT_SYMBOL vmlinux 0x3c791b78 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c91ee06 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x3cb6774a pci_enable_msix -EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init -EXPORT_SYMBOL vmlinux 0x3cd4a634 load_nls -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce8efba phy_start -EXPORT_SYMBOL vmlinux 0x3cfa6767 bio_unmap_user -EXPORT_SYMBOL vmlinux 0x3d255f3b compat_nf_setsockopt -EXPORT_SYMBOL vmlinux 0x3d28ebaf nvm_unregister_target -EXPORT_SYMBOL vmlinux 0x3d71e160 register_netdevice -EXPORT_SYMBOL vmlinux 0x3d8e3e1b of_create_pci_dev -EXPORT_SYMBOL vmlinux 0x3d92e9e5 arp_create -EXPORT_SYMBOL vmlinux 0x3da657f4 skb_push -EXPORT_SYMBOL vmlinux 0x3db2db1e seq_release -EXPORT_SYMBOL vmlinux 0x3db663fe rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts -EXPORT_SYMBOL vmlinux 0x3dc18a47 sock_create_kern -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3dff3dab find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x3e067cfe blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0x3e10e421 tso_start -EXPORT_SYMBOL vmlinux 0x3e16aad8 block_invalidatepage -EXPORT_SYMBOL vmlinux 0x3e180e27 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x3e1e9329 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x3e286dca _lv1_get_rtc -EXPORT_SYMBOL vmlinux 0x3e475fa2 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x3e529171 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x3e552e5d blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0x3e63e4a4 copy_from_iter -EXPORT_SYMBOL vmlinux 0x3e6aa16b iov_iter_npages -EXPORT_SYMBOL vmlinux 0x3e71b71f tty_unthrottle -EXPORT_SYMBOL vmlinux 0x3e7964a1 inet_del_offload -EXPORT_SYMBOL vmlinux 0x3e7ee73b inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x3e80b2ca of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x3e84c780 nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get -EXPORT_SYMBOL vmlinux 0x3e9e8e26 downgrade_write -EXPORT_SYMBOL vmlinux 0x3ea3ab10 _dev_info -EXPORT_SYMBOL vmlinux 0x3ea3e129 mapping_tagged -EXPORT_SYMBOL vmlinux 0x3ea42466 input_inject_event -EXPORT_SYMBOL vmlinux 0x3ead3bfb sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x3ebfb9de set_create_files_as -EXPORT_SYMBOL vmlinux 0x3ede07a9 sock_i_uid -EXPORT_SYMBOL vmlinux 0x3ef30c54 inet6_protos -EXPORT_SYMBOL vmlinux 0x3efcac6f tcp_ioctl -EXPORT_SYMBOL vmlinux 0x3efd9677 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f06a656 _lv1_construct_event_receive_port -EXPORT_SYMBOL vmlinux 0x3f2486fd blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0x3f3d3e1c finish_no_open -EXPORT_SYMBOL vmlinux 0x3f3d7bbd __serio_register_driver -EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec -EXPORT_SYMBOL vmlinux 0x3f443072 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f4e338b input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x3f97ed59 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x3f9a93e4 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x3fbfd6ed _lv1_gpu_open -EXPORT_SYMBOL vmlinux 0x3fce9168 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x3fd2fd53 of_get_min_tck -EXPORT_SYMBOL vmlinux 0x3fde0326 pnv_cxl_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x3ff01d2b uart_register_driver -EXPORT_SYMBOL vmlinux 0x3ff6002c mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0x4016aab3 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x4017cb58 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x40192971 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x401964ba ip_do_fragment -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x4031e5d0 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x40472a52 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x4058df89 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x405c3c1c sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x40674929 mpage_readpage -EXPORT_SYMBOL vmlinux 0x406ac98d pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40aee0d5 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40cafc57 phy_attach -EXPORT_SYMBOL vmlinux 0x40cfcfb5 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d11d3e blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40dae27d buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x40f0b412 pnv_cxl_release_hwirqs -EXPORT_SYMBOL vmlinux 0x40fee3c8 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x411171e2 of_get_named_gpio_flags -EXPORT_SYMBOL vmlinux 0x4117b1ab input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x41276271 proto_unregister -EXPORT_SYMBOL vmlinux 0x4134abcf ps3_dma_region_create -EXPORT_SYMBOL vmlinux 0x41361807 _lv1_get_logical_ppe_id -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x4157bb9f bdget -EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc -EXPORT_SYMBOL vmlinux 0x41650f88 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x417d4c89 dcb_setapp -EXPORT_SYMBOL vmlinux 0x41851c71 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x419b4211 phy_stop -EXPORT_SYMBOL vmlinux 0x41a12325 register_framebuffer -EXPORT_SYMBOL vmlinux 0x41a15fd7 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x41a16153 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x41a55d41 dev_crit -EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x41bb941c srp_rport_put -EXPORT_SYMBOL vmlinux 0x41c242ee tcf_hash_create -EXPORT_SYMBOL vmlinux 0x41cffb22 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x41dbf4de _lv1_start_lpm -EXPORT_SYMBOL vmlinux 0x41ea3ad0 ping_prot -EXPORT_SYMBOL vmlinux 0x41f917af bio_flush_dcache_pages -EXPORT_SYMBOL vmlinux 0x42056e22 to_nd_btt -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x421b1ba4 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x421fe4fa neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x42397936 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x42422d5a page_cache_next_hole -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x4280282f pci_match_id -EXPORT_SYMBOL vmlinux 0x42845adb iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42c5db86 secpath_dup -EXPORT_SYMBOL vmlinux 0x42df7292 blk_stop_queue -EXPORT_SYMBOL vmlinux 0x42e9d924 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x42fb717d mmc_request_done -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4322f931 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0x4338a832 inet_offloads -EXPORT_SYMBOL vmlinux 0x433fdb90 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x43474e01 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x4348d96b tcf_action_exec -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x43564ed3 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 -EXPORT_SYMBOL vmlinux 0x4382a511 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all -EXPORT_SYMBOL vmlinux 0x43a78649 gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0x43a8a777 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0x43b02781 fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x43c018b4 netdev_notice -EXPORT_SYMBOL vmlinux 0x43cf49b9 simple_dname -EXPORT_SYMBOL vmlinux 0x43ded0c4 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x43e99fff elv_rb_del -EXPORT_SYMBOL vmlinux 0x43f044dc netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x43f84881 __find_get_block -EXPORT_SYMBOL vmlinux 0x440ab669 block_write_end -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x4416c23f nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x442dca48 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x442ee920 bdi_init -EXPORT_SYMBOL vmlinux 0x44386a9e sys_copyarea -EXPORT_SYMBOL vmlinux 0x4455146c generic_ro_fops -EXPORT_SYMBOL vmlinux 0x445719c5 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x445c46d5 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x448229cc input_register_handle -EXPORT_SYMBOL vmlinux 0x448488ce xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x448b33b7 open_check_o_direct -EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44b5d3e0 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x44e87bbc pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion -EXPORT_SYMBOL vmlinux 0x450e56ab set_blocksize -EXPORT_SYMBOL vmlinux 0x451dad0f filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x454954be skb_copy_expand -EXPORT_SYMBOL vmlinux 0x4564459b _lv1_set_virtual_uart_param -EXPORT_SYMBOL vmlinux 0x45699072 get_super_thawed -EXPORT_SYMBOL vmlinux 0x456ef659 sys_imageblit -EXPORT_SYMBOL vmlinux 0x4570f0c8 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45952f43 vlan_vid_add -EXPORT_SYMBOL vmlinux 0x45a01dea get_phy_device -EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45c452b2 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x45cca34b param_get_string -EXPORT_SYMBOL vmlinux 0x45cfe80b pasemi_dma_free_flag -EXPORT_SYMBOL vmlinux 0x45d6d195 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x45e3034b mb_cache_shrink -EXPORT_SYMBOL vmlinux 0x45f5f369 padata_do_serial -EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock -EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user -EXPORT_SYMBOL vmlinux 0x46241942 inet_frag_find -EXPORT_SYMBOL vmlinux 0x463d4a3b tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x4657b1ab is_bad_inode -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x46897db3 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x4689d613 i2c_transfer -EXPORT_SYMBOL vmlinux 0x46a2b9d9 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x46a347fe i2c_verify_client -EXPORT_SYMBOL vmlinux 0x46afd532 on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x46bd10e7 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x46c3b687 ps3_dma_region_free -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46c8381f pci_claim_resource -EXPORT_SYMBOL vmlinux 0x46cf55af inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x46d14026 pmac_suspend_agp_for_card -EXPORT_SYMBOL vmlinux 0x46dfa5dd input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x46eee7e7 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x46f89549 poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x470502d9 default_llseek -EXPORT_SYMBOL vmlinux 0x473d5240 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x47499cda elv_register_queue -EXPORT_SYMBOL vmlinux 0x4751ccca call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x47608718 fence_init -EXPORT_SYMBOL vmlinux 0x4765395f sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x477d86a2 phy_driver_register -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x479b6a3c nvm_erase_blk -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x47b12fb8 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x47b1bcf7 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x47b8cf52 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x47c2ba1e send_sig -EXPORT_SYMBOL vmlinux 0x4804b51e netif_napi_del -EXPORT_SYMBOL vmlinux 0x480efc3a udplite_prot -EXPORT_SYMBOL vmlinux 0x4815f22b _lv1_gpu_attribute -EXPORT_SYMBOL vmlinux 0x4829a47e memcpy -EXPORT_SYMBOL vmlinux 0x48399907 skb_pad -EXPORT_SYMBOL vmlinux 0x483b4685 __page_symlink -EXPORT_SYMBOL vmlinux 0x483b4738 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x4843a1b9 _lv1_delete_repository_node -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x486dcf08 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x486fe640 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x4881efab pmac_get_partition -EXPORT_SYMBOL vmlinux 0x489ba801 sock_rfree -EXPORT_SYMBOL vmlinux 0x489e9b2d netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x489f8b80 skb_insert -EXPORT_SYMBOL vmlinux 0x48a023a8 noop_fsync -EXPORT_SYMBOL vmlinux 0x48a3e27a md_check_recovery -EXPORT_SYMBOL vmlinux 0x48b6fef4 no_llseek -EXPORT_SYMBOL vmlinux 0x48b7506a napi_disable -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48c11bd2 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x48c743e4 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x48dc720d console_start -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4922b624 of_phy_attach -EXPORT_SYMBOL vmlinux 0x4953c49d genphy_update_link -EXPORT_SYMBOL vmlinux 0x4956477c drop_super -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x495ec6eb pasemi_dma_alloc_buf -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x4978931a user_path_create -EXPORT_SYMBOL vmlinux 0x498cae0d inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x4991c9fd __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x49993b48 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x49a4c8a4 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b9a751 __alloc_skb -EXPORT_SYMBOL vmlinux 0x49bc50ea blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0x49bee355 single_open_size -EXPORT_SYMBOL vmlinux 0x49d630e8 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x49f253db __register_chrdev -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x49f9834b icmpv6_send -EXPORT_SYMBOL vmlinux 0x49fa1ef7 ata_print_version -EXPORT_SYMBOL vmlinux 0x4a3e800b of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x4a53ef52 pnv_cxl_get_irq_count -EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x4aa7612b jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x4aa8ff8a generic_permission -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4ac64da4 _lv1_select_virtual_address_space -EXPORT_SYMBOL vmlinux 0x4aca531a ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request -EXPORT_SYMBOL vmlinux 0x4ad725c9 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x4adf1404 validate_sp -EXPORT_SYMBOL vmlinux 0x4aedce63 phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0x4afc4d6b find_get_entry -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b1f8a63 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x4b3c0713 dump_align -EXPORT_SYMBOL vmlinux 0x4b3cb349 _lv1_destruct_io_irq_outlet -EXPORT_SYMBOL vmlinux 0x4b4116ba __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b6fcddc _lv1_set_spe_interrupt_mask -EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove -EXPORT_SYMBOL vmlinux 0x4b87b375 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x4b8dd34d alloc_disk_node -EXPORT_SYMBOL vmlinux 0x4b8e0733 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x4b8f2f6d blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x4b954e3e call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x4baa02e6 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bb7bbc8 dev_mc_init -EXPORT_SYMBOL vmlinux 0x4be35976 param_set_byte -EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add -EXPORT_SYMBOL vmlinux 0x4bf1e4cb d_alloc_name -EXPORT_SYMBOL vmlinux 0x4c04f7b1 param_get_ullong -EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x4c30515c d_find_alias -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c35a7fb __blk_run_queue -EXPORT_SYMBOL vmlinux 0x4c35e18b rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x4c610838 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x4c628d5b pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x4c90a9c0 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x4ca4c6e9 alloc_disk -EXPORT_SYMBOL vmlinux 0x4ca95930 ata_dev_printk -EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf -EXPORT_SYMBOL vmlinux 0x4cab1194 rt6_lookup -EXPORT_SYMBOL vmlinux 0x4cc59f25 netdev_change_features -EXPORT_SYMBOL vmlinux 0x4cd19f82 set_security_override -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4cedb776 free_user_ns -EXPORT_SYMBOL vmlinux 0x4d098591 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x4d16337b scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x4d1e6fc7 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x4d1f2ff3 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0x4d215776 __getblk_slow -EXPORT_SYMBOL vmlinux 0x4d267ea2 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x4d34375a vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x4d51016a devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x4d643942 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x4d6d69f4 of_match_node -EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize -EXPORT_SYMBOL vmlinux 0x4d7b5176 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x4d85e044 mdiobus_free -EXPORT_SYMBOL vmlinux 0x4d861e05 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x4d903b49 macio_enable_devres -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4da75aa2 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x4db1e5d5 d_move -EXPORT_SYMBOL vmlinux 0x4dd092d7 of_node_put -EXPORT_SYMBOL vmlinux 0x4dddd440 inode_init_owner -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4e047344 bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x4e1518b2 __quota_error -EXPORT_SYMBOL vmlinux 0x4e1bee86 peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e388ffd dev_printk -EXPORT_SYMBOL vmlinux 0x4e53c28a skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x4e5dc6af blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x4e676c4c param_ops_charp -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e71cb40 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x4e94dafa ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum -EXPORT_SYMBOL vmlinux 0x4ea4eaa8 init_task -EXPORT_SYMBOL vmlinux 0x4ead7311 generic_setlease -EXPORT_SYMBOL vmlinux 0x4edcf652 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x4ef5407b i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f369951 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f3e34e0 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x4f4748b9 vm_map_ram -EXPORT_SYMBOL vmlinux 0x4f664db6 _lv1_insert_htab_entry -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve -EXPORT_SYMBOL vmlinux 0x4f7fd4e2 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x4f82473d input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x4f8dbd6c set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x4f8e22b5 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x4fb34195 sock_create_lite -EXPORT_SYMBOL vmlinux 0x4fc4f4be fasync_helper -EXPORT_SYMBOL vmlinux 0x4fde92c7 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4ff068c9 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x5003417d blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x50130f11 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x5026c171 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x503014ae devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x50485f71 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x5055d6a9 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x50685c71 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x50700047 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x5071491d sock_sendmsg -EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch -EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x50d1f057 nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50e650c0 mmc_can_discard -EXPORT_SYMBOL vmlinux 0x50fc126f truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x510f1dcd vfs_iter_read -EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x514b6e46 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x51634ea6 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x517fa893 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x5203a42e get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x521ed787 bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x5226e773 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x522ef40a blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x52347c9b agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0x527830ff pmac_xpram_read -EXPORT_SYMBOL vmlinux 0x5284b2a6 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x528e16ce freeze_super -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52af848c param_get_ulong -EXPORT_SYMBOL vmlinux 0x52e3fa05 _lv1_allocate_memory -EXPORT_SYMBOL vmlinux 0x53028126 dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x531cb725 dst_alloc -EXPORT_SYMBOL vmlinux 0x531d4658 fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x5334c632 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x5339f5f8 _lv1_read_virtual_uart -EXPORT_SYMBOL vmlinux 0x5342eecb kobject_put -EXPORT_SYMBOL vmlinux 0x53480d6d kobject_init -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x535ef6a5 napi_get_frags -EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin -EXPORT_SYMBOL vmlinux 0x53964380 register_key_type -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x53a080dd inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0x53b98c4c scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x53bccdeb del_gendisk -EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x5412c7c7 up -EXPORT_SYMBOL vmlinux 0x54154515 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x542d6924 vfs_create -EXPORT_SYMBOL vmlinux 0x543135f8 of_iomap -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54547e0f param_get_byte -EXPORT_SYMBOL vmlinux 0x5461ea38 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x546a6753 uart_resume_port -EXPORT_SYMBOL vmlinux 0x54791777 unload_nls -EXPORT_SYMBOL vmlinux 0x5490064d xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x54a874e6 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54c403da bio_copy_kern -EXPORT_SYMBOL vmlinux 0x54c4d1bd uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x54cafcea inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x54d543f2 bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x550a66ab compat_tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x55165d7b kobject_get -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x55535a7d unregister_netdev -EXPORT_SYMBOL vmlinux 0x5555e2bb jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x55570b91 inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x5568c553 complete -EXPORT_SYMBOL vmlinux 0x55773318 param_ops_int -EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table -EXPORT_SYMBOL vmlinux 0x55795c92 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x557b3dd8 _lv1_gpu_close -EXPORT_SYMBOL vmlinux 0x5594d7d0 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x5599a299 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x55a05e1c swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0x55bd7690 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x55c41b39 inode_init_once -EXPORT_SYMBOL vmlinux 0x55cd6917 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55de4f3c tcp_parse_options -EXPORT_SYMBOL vmlinux 0x55e86fb8 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node -EXPORT_SYMBOL vmlinux 0x55f8e103 get_empty_filp -EXPORT_SYMBOL vmlinux 0x55fd6765 padata_alloc -EXPORT_SYMBOL vmlinux 0x560ee123 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x564bfbdd kobject_add -EXPORT_SYMBOL vmlinux 0x56564a12 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x5662b1ce netdev_emerg -EXPORT_SYMBOL vmlinux 0x568804ee _lv1_destruct_event_receive_port -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x56a17dee blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x56a5ca26 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56dd93da compat_sock_get_timestampns -EXPORT_SYMBOL vmlinux 0x56ddd997 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x57159f84 bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x5717fce4 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x572393d3 touch_atime -EXPORT_SYMBOL vmlinux 0x57253a32 tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x572647d6 get_mce_fault_addr -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x5737f978 mutex_lock -EXPORT_SYMBOL vmlinux 0x57393ef6 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57587246 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x576946d2 led_update_brightness -EXPORT_SYMBOL vmlinux 0x5771f964 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x57787c8e flow_cache_lookup -EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5783a287 kernel_listen -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x579bab50 _lv1_gpu_memory_free -EXPORT_SYMBOL vmlinux 0x579d2c34 qdisc_list_del -EXPORT_SYMBOL vmlinux 0x57d50427 tty_port_put -EXPORT_SYMBOL vmlinux 0x581a917f dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58224f82 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x5896a755 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x58a30f75 dm_io -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58f13f5b nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x5900853e param_set_ulong -EXPORT_SYMBOL vmlinux 0x590490c5 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x590576cd ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x5912b5a8 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x5947ecc8 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x5959d093 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page -EXPORT_SYMBOL vmlinux 0x5984589a skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x59873ca0 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x598bdf39 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59a56579 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59b3378a completion_done -EXPORT_SYMBOL vmlinux 0x59d7058d bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x59d790be seq_printf -EXPORT_SYMBOL vmlinux 0x59d95bc7 tty_mutex -EXPORT_SYMBOL vmlinux 0x59f3bd4a xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0x59f821af blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore -EXPORT_SYMBOL vmlinux 0x5a03734b scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0x5a045798 dst_discard_out -EXPORT_SYMBOL vmlinux 0x5a0aaa12 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a20330c param_set_invbool -EXPORT_SYMBOL vmlinux 0x5a2cda3e trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x5a3c2658 init_special_inode -EXPORT_SYMBOL vmlinux 0x5a4acd68 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x5a6b63be to_ndd -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a9b3dcd note_scsi_host -EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5aa146d7 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x5aa3d108 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x5aa95ff4 import_iovec -EXPORT_SYMBOL vmlinux 0x5ab99c7b blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x5adea85e migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x5af21b19 nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x5afc7736 __invalidate_device -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b3b91dc i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present -EXPORT_SYMBOL vmlinux 0x5b54a314 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b5894ca truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x5b6be9bd proc_mkdir -EXPORT_SYMBOL vmlinux 0x5b7a26b2 rtas -EXPORT_SYMBOL vmlinux 0x5b87c0a9 security_path_rename -EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock -EXPORT_SYMBOL vmlinux 0x5b9a2f3c security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x5b9da316 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit -EXPORT_SYMBOL vmlinux 0x5bd2f951 __sb_end_write -EXPORT_SYMBOL vmlinux 0x5bfb5df0 dma_pool_create -EXPORT_SYMBOL vmlinux 0x5c00f8b7 netlink_capable -EXPORT_SYMBOL vmlinux 0x5c354866 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x5c3b0b0c input_unregister_device -EXPORT_SYMBOL vmlinux 0x5c51b09b remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x5c70cbff pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x5c817f00 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x5cbd4e50 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le -EXPORT_SYMBOL vmlinux 0x5ccc9045 _lv1_close_device -EXPORT_SYMBOL vmlinux 0x5ccf20f0 __napi_schedule -EXPORT_SYMBOL vmlinux 0x5cf30e10 __debugger_ipi -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cff7cd1 locks_free_lock -EXPORT_SYMBOL vmlinux 0x5d37be92 scsi_init_io -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d5f5870 skb_pull -EXPORT_SYMBOL vmlinux 0x5d6cbcaf d_set_d_op -EXPORT_SYMBOL vmlinux 0x5d706a64 netdev_alert -EXPORT_SYMBOL vmlinux 0x5d8a80eb cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x5d9bbd05 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x5d9fe185 blk_put_queue -EXPORT_SYMBOL vmlinux 0x5db5e899 padata_free -EXPORT_SYMBOL vmlinux 0x5db6951e dm_register_target -EXPORT_SYMBOL vmlinux 0x5db6a4a9 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x5de367b4 km_policy_expired -EXPORT_SYMBOL vmlinux 0x5df2bb44 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x5dfcc686 devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x5e0096bb sock_efree -EXPORT_SYMBOL vmlinux 0x5e0deb89 mmc_free_host -EXPORT_SYMBOL vmlinux 0x5e149595 rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0x5e14b819 sget -EXPORT_SYMBOL vmlinux 0x5e263b88 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x5e270404 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up -EXPORT_SYMBOL vmlinux 0x5e5dbeed pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5eb1ed25 invalidate_partition -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5edb084f scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return -EXPORT_SYMBOL vmlinux 0x5ede1168 fb_find_mode -EXPORT_SYMBOL vmlinux 0x5edf3f76 sock_release -EXPORT_SYMBOL vmlinux 0x5ef1f6d1 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f0600fd mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f3b5b00 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x5f46a928 led_set_brightness -EXPORT_SYMBOL vmlinux 0x5f55e3d4 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x5f5773ed load_nls_default -EXPORT_SYMBOL vmlinux 0x5f6395b6 nf_register_hooks -EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base -EXPORT_SYMBOL vmlinux 0x5fd1391a finish_open -EXPORT_SYMBOL vmlinux 0x5fd46d81 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5fea2f3e wake_up_process -EXPORT_SYMBOL vmlinux 0x5ffbabd2 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600ff3b4 __elv_add_request -EXPORT_SYMBOL vmlinux 0x6014bb3c page_waitqueue -EXPORT_SYMBOL vmlinux 0x601c1273 scsi_device_get -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602b475a sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60415c84 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x604ad40c qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x605f3e34 pci_find_hose_for_OF_device -EXPORT_SYMBOL vmlinux 0x6062f401 padata_stop -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x607940c1 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x609c61f8 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x609ebdb9 udp_prot -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60af65fa generic_setxattr -EXPORT_SYMBOL vmlinux 0x60b2ce2b cfb_copyarea -EXPORT_SYMBOL vmlinux 0x60cf6d90 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x60d62ceb of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x60ee2244 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0x60f122e0 phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0x61229b10 node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x6129ab68 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x61468394 udp_set_csum -EXPORT_SYMBOL vmlinux 0x6149a427 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x614ed439 ilookup -EXPORT_SYMBOL vmlinux 0x6164a0e0 d_add_ci -EXPORT_SYMBOL vmlinux 0x616a804c tcp_poll -EXPORT_SYMBOL vmlinux 0x617d8a72 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61a4487c _lv1_gpu_device_unmap -EXPORT_SYMBOL vmlinux 0x61b2715b bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x61dcdcd3 _lv1_pause -EXPORT_SYMBOL vmlinux 0x61dcf24a trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb -EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x61f52f88 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x61f64eb6 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62a91e50 devm_ioremap -EXPORT_SYMBOL vmlinux 0x62bb411a blk_free_tags -EXPORT_SYMBOL vmlinux 0x62e8b603 dev_change_flags -EXPORT_SYMBOL vmlinux 0x62f673b9 mach_maple -EXPORT_SYMBOL vmlinux 0x62fb3e0d security_path_chown -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x63277fac truncate_pagecache -EXPORT_SYMBOL vmlinux 0x633449bc kill_anon_super -EXPORT_SYMBOL vmlinux 0x633669c0 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x63396aec __debugger_break_match -EXPORT_SYMBOL vmlinux 0x63479e60 blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0x6360d639 cpu_all_bits -EXPORT_SYMBOL vmlinux 0x637b9321 elv_unregister_queue -EXPORT_SYMBOL vmlinux 0x638c0780 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x6397eaed unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63ac55f5 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x63bdc4e0 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x63c0aa1a acl_by_type -EXPORT_SYMBOL vmlinux 0x63c4c5fa scsi_dma_map -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63da34da sync_filesystem -EXPORT_SYMBOL vmlinux 0x63e9ef0c __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f75920 _lv1_construct_virtual_address_space -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x6401d928 i2c_use_client -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x6415622c blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x643db744 proc_set_size -EXPORT_SYMBOL vmlinux 0x644eee7c serio_close -EXPORT_SYMBOL vmlinux 0x6467ad37 inet_bind -EXPORT_SYMBOL vmlinux 0x646cc6ab pmu_poll -EXPORT_SYMBOL vmlinux 0x64787dad generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x647ee1cd generic_show_options -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a1ad6e swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0x64afd13d insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x64b266b5 pci_dev_get -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64cfd8da single_release -EXPORT_SYMBOL vmlinux 0x64f794f3 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x64f84f58 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x64fb6e9e zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x64fd5402 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x650a430f dquot_destroy -EXPORT_SYMBOL vmlinux 0x65102e40 seq_pad -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x6516ad8e d_genocide -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x654b655f blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x6556eff6 __module_get -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x6573db21 __vio_register_driver -EXPORT_SYMBOL vmlinux 0x6574c904 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x65869081 simple_fill_super -EXPORT_SYMBOL vmlinux 0x65902959 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x65a2a157 tty_vhangup -EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x65c8db9c register_netdev -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65eedc4e devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x66136541 pmac_register_agp_pm -EXPORT_SYMBOL vmlinux 0x661744da buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x661f2d00 nd_device_unregister -EXPORT_SYMBOL vmlinux 0x66336c92 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x6638a67e blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x66398586 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x664f97fe release_firmware -EXPORT_SYMBOL vmlinux 0x66754be3 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x6688df4b of_get_next_parent -EXPORT_SYMBOL vmlinux 0x6693e44a pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x66949ee7 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x66a004f0 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x66ab9f28 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x66ad1cb3 _lv1_set_lpm_general_control -EXPORT_SYMBOL vmlinux 0x66af84d0 phy_suspend -EXPORT_SYMBOL vmlinux 0x66cbf14b pmac_xpram_write -EXPORT_SYMBOL vmlinux 0x66e6018f mach_powermac -EXPORT_SYMBOL vmlinux 0x66efa9ac xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x66f033d4 dump_page -EXPORT_SYMBOL vmlinux 0x6712d301 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0x671fb21f d_make_root -EXPORT_SYMBOL vmlinux 0x67209957 path_get -EXPORT_SYMBOL vmlinux 0x672b157a xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x6739b7cb blk_requeue_request -EXPORT_SYMBOL vmlinux 0x673bdc56 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x6749624c dquot_free_inode -EXPORT_SYMBOL vmlinux 0x675f0a4c phy_disconnect -EXPORT_SYMBOL vmlinux 0x6769eec7 dev_set_group -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x678992ff napi_complete_done -EXPORT_SYMBOL vmlinux 0x67a43383 fddi_type_trans -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67d4ecfa tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x681e5424 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x68267381 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x68291628 generic_make_request -EXPORT_SYMBOL vmlinux 0x68340527 vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit -EXPORT_SYMBOL vmlinux 0x686884d7 pci_iounmap -EXPORT_SYMBOL vmlinux 0x686fb2af filp_open -EXPORT_SYMBOL vmlinux 0x6872ca87 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x689323e5 lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0x689a52e5 scsi_host_put -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68b14223 elv_rb_find -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68bd57e9 netdev_update_features -EXPORT_SYMBOL vmlinux 0x68cb9723 msi_bitmap_free_hwirqs -EXPORT_SYMBOL vmlinux 0x68cca752 ip_options_compile -EXPORT_SYMBOL vmlinux 0x68d684d4 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x68d6b1f0 up_write -EXPORT_SYMBOL vmlinux 0x68d81ffd jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x68e1ef51 smu_present -EXPORT_SYMBOL vmlinux 0x68fa25f2 pnv_pci_get_npu_dev -EXPORT_SYMBOL vmlinux 0x69011719 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x69495799 blk_rq_init -EXPORT_SYMBOL vmlinux 0x696d3e18 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x697642e6 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x6987c9c4 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x699ccbf8 _lv1_deconfigure_virtual_uart_irq -EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69a80137 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x69a94206 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69b4e9d6 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x69e90df2 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x69eef71a dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a1aeb60 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x6a244552 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x6a30585f devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x6a42fb4f nobh_write_end -EXPORT_SYMBOL vmlinux 0x6a46a6d5 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x6a542618 vme_slave_request -EXPORT_SYMBOL vmlinux 0x6a5b2462 neigh_xmit -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a73d3dd inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6a86a452 d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0x6ac0705b prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x6ac0aa1c lock_rename -EXPORT_SYMBOL vmlinux 0x6ac2d0d6 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be -EXPORT_SYMBOL vmlinux 0x6ae6e145 input_register_handler -EXPORT_SYMBOL vmlinux 0x6aea69b0 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b0f8e24 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b358cab _lv1_read_repository_node -EXPORT_SYMBOL vmlinux 0x6b37a403 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x6b387694 _lv1_end_of_interrupt_ext -EXPORT_SYMBOL vmlinux 0x6b589a6e _lv1_net_add_multicast_address -EXPORT_SYMBOL vmlinux 0x6b5dfe73 __debugger_bpt -EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6b65dd80 bd_set_size -EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free -EXPORT_SYMBOL vmlinux 0x6b6f0c4b _lv1_create_repository_node -EXPORT_SYMBOL vmlinux 0x6b71ac90 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x6b73b49c tty_check_change -EXPORT_SYMBOL vmlinux 0x6bb2f890 dev_emerg -EXPORT_SYMBOL vmlinux 0x6bb9bab7 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6be2fc42 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x6beec933 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c562f68 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c628bfb msi_bitmap_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c86d761 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x6c8dd30e netlink_unicast -EXPORT_SYMBOL vmlinux 0x6c95ea25 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x6c9c64ed would_dump -EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear -EXPORT_SYMBOL vmlinux 0x6cc156d9 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x6cd40fc6 tty_port_close_start -EXPORT_SYMBOL vmlinux 0x6cd6fa65 blk_queue_bounce -EXPORT_SYMBOL vmlinux 0x6cdffa84 __mutex_init -EXPORT_SYMBOL vmlinux 0x6d0b578e sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d1743eb _lv1_get_total_execution_time -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d30e5fe pci_dev_put -EXPORT_SYMBOL vmlinux 0x6d520175 of_get_ibm_chip_id -EXPORT_SYMBOL vmlinux 0x6d5b32e5 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x6d5f356b mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put -EXPORT_SYMBOL vmlinux 0x6d7480da blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x6da33f99 fb_get_mode -EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns -EXPORT_SYMBOL vmlinux 0x6da99516 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x6dbe2d5f dqget -EXPORT_SYMBOL vmlinux 0x6dd49d93 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df241fd vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0x6dfb08aa tcp_check_req -EXPORT_SYMBOL vmlinux 0x6e0644b9 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x6e270237 fput -EXPORT_SYMBOL vmlinux 0x6e2d2b78 mmc_flush_cache -EXPORT_SYMBOL vmlinux 0x6e2e870e vme_slot_num -EXPORT_SYMBOL vmlinux 0x6e3be2f3 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x6e3d0758 send_sig_info -EXPORT_SYMBOL vmlinux 0x6e48b73d nvm_get_blk -EXPORT_SYMBOL vmlinux 0x6e66e88c key_link -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e75ae68 devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0x6e76aded simple_statfs -EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6eaeb65b delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x6ebe2263 genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x6ebfde1c udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x6ed1de1f ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x6ed26e1e sg_miter_start -EXPORT_SYMBOL vmlinux 0x6ed805da kern_path -EXPORT_SYMBOL vmlinux 0x6ee2cca2 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x6eed1807 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x6f1ab66b copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f392fa0 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x6f3dd699 kill_bdev -EXPORT_SYMBOL vmlinux 0x6f423e48 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x6f70f7fa key_validate -EXPORT_SYMBOL vmlinux 0x6f726652 ipv4_specific -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6fa331ed _lv1_construct_io_irq_outlet -EXPORT_SYMBOL vmlinux 0x6fa6d77c dev_deactivate -EXPORT_SYMBOL vmlinux 0x6fb32890 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fcdf6ca inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x6fd1f70a wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x70058f29 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x701699b2 _lv1_set_spe_privilege_state_area_1_register -EXPORT_SYMBOL vmlinux 0x7048c60e blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x704cf59d ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x704d89d7 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x7061d3ca blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x7066792f xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707741fa security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x707e440e datagram_poll -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x70cf743c mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x70e5f76a input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x70ece5c7 dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x70f86c70 pmu_queue_request -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x7102cd15 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x7103337b security_path_rmdir -EXPORT_SYMBOL vmlinux 0x711301a2 textsearch_destroy -EXPORT_SYMBOL vmlinux 0x711cbc03 get_task_exe_file -EXPORT_SYMBOL vmlinux 0x7128d7a9 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x714f0051 pci_bus_type -EXPORT_SYMBOL vmlinux 0x716c9d45 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x7171c422 misc_deregister -EXPORT_SYMBOL vmlinux 0x7181b06e qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x7184d253 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x7196735d follow_down -EXPORT_SYMBOL vmlinux 0x71990f43 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x71a129fd netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71a98577 netlink_set_err -EXPORT_SYMBOL vmlinux 0x71aa433d udp6_csum_init -EXPORT_SYMBOL vmlinux 0x71ab81ea nvm_register_target -EXPORT_SYMBOL vmlinux 0x71cbc134 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x720f2224 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x72346552 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x7236a315 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x7248ec82 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x72556f95 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x725e6450 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x725fd887 nla_append -EXPORT_SYMBOL vmlinux 0x72890f8e register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x729b4a83 _lv1_get_spe_all_interrupt_statuses -EXPORT_SYMBOL vmlinux 0x72a5f6c8 paca -EXPORT_SYMBOL vmlinux 0x72ab097c seq_release_private -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b34db4 generic_perform_write -EXPORT_SYMBOL vmlinux 0x72b5bf9e netdev_warn -EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x72c5c384 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 -EXPORT_SYMBOL vmlinux 0x72ca9aaa devm_ioport_map -EXPORT_SYMBOL vmlinux 0x72dc6d18 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x73513edc i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x7353063e d_delete -EXPORT_SYMBOL vmlinux 0x73570c7f simple_lookup -EXPORT_SYMBOL vmlinux 0x735b2aad kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue -EXPORT_SYMBOL vmlinux 0x7369baba pci_domain_nr -EXPORT_SYMBOL vmlinux 0x736b87b9 block_write_full_page -EXPORT_SYMBOL vmlinux 0x736ed6e0 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x73710a3e dqstats -EXPORT_SYMBOL vmlinux 0x739ccea5 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x73a1a5d1 zero_fill_bio -EXPORT_SYMBOL vmlinux 0x73b1579e dev_open -EXPORT_SYMBOL vmlinux 0x73f82306 simple_unlink -EXPORT_SYMBOL vmlinux 0x73fa801c xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x747d8e80 dev_addr_del -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x74893d41 __break_lease -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74cb6d9a truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x74db2dae param_set_bool -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f8c36b redraw_screen -EXPORT_SYMBOL vmlinux 0x74fe8730 sys_ctrler -EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x7559b5ad inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0x756c786e _lv1_connect_interrupt_event_receive_port -EXPORT_SYMBOL vmlinux 0x75754995 _lv1_storage_check_async_status -EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0x75ac7cdf blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75be6702 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x75e4f5aa pasemi_read_mac_reg -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x7630a737 d_invalidate -EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x764e2224 _lv1_disconnect_irq_plug_ext -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x766eb1c0 d_tmpfile -EXPORT_SYMBOL vmlinux 0x7678e74e alloc_fcdev -EXPORT_SYMBOL vmlinux 0x767a44e3 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x768bad30 get_pci_dma_ops -EXPORT_SYMBOL vmlinux 0x768ea1bb __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x76b9d513 lease_modify -EXPORT_SYMBOL vmlinux 0x76bf7879 flow_cache_fini -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76f37c90 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x770b2619 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x77144936 _lv1_disconnect_irq_plug -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x772d9eaf scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x7734269a cap_mmap_file -EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x775b28d3 swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0x778dbcf1 __get_page_tail -EXPORT_SYMBOL vmlinux 0x77948ab5 deactivate_super -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77a7aceb tcp_close -EXPORT_SYMBOL vmlinux 0x77ac922e blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x77b15bbd __free_pages -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77ed2a9e sk_wait_data -EXPORT_SYMBOL vmlinux 0x77f774ea xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x77fb5987 inode_init_always -EXPORT_SYMBOL vmlinux 0x7830b04f hvc_put_chars -EXPORT_SYMBOL vmlinux 0x783807e3 md_register_thread -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x7842fed0 dst_destroy -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x7849cbf9 netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x785134c2 devm_request_resource -EXPORT_SYMBOL vmlinux 0x7877a777 inet_put_port -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788bd952 iterate_fd -EXPORT_SYMBOL vmlinux 0x789a17f7 _lv1_destruct_logical_spe -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x789e0543 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x78a9e905 _numa_mem_ -EXPORT_SYMBOL vmlinux 0x78bf6278 elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0x78c43679 serio_open -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78ed0dea __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x78fc3454 pnv_cxl_alloc_hwirq_ranges -EXPORT_SYMBOL vmlinux 0x79103ee4 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x792ce592 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x79404a64 generic_file_llseek -EXPORT_SYMBOL vmlinux 0x7967f829 padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x797d15d4 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x7982ddd3 set_bh_page -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x79863acc param_ops_bool -EXPORT_SYMBOL vmlinux 0x798d0b27 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x7991b72e poll_initwait -EXPORT_SYMBOL vmlinux 0x799c717a blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79a8a8d9 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79ad1c4f scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x79b7d141 __vfs_read -EXPORT_SYMBOL vmlinux 0x79c6b833 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x79dac59f bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x79e7c319 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x79f7f86f sock_no_connect -EXPORT_SYMBOL vmlinux 0x7a18e1a5 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x7a19a104 seq_dentry -EXPORT_SYMBOL vmlinux 0x7a2f1950 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a4759a7 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a73e4de security_path_mknod -EXPORT_SYMBOL vmlinux 0x7a8003c6 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x7a89b81f inet_addr_type -EXPORT_SYMBOL vmlinux 0x7a8bd8dd dst_release -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa9e259 _lv1_map_htab -EXPORT_SYMBOL vmlinux 0x7ab1a889 read_cache_page -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ac6a191 fb_blank -EXPORT_SYMBOL vmlinux 0x7acaeb96 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad51ef2 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x7ad6e7d3 eth_header_parse -EXPORT_SYMBOL vmlinux 0x7ad6ef77 __devm_release_region -EXPORT_SYMBOL vmlinux 0x7b035deb free_page_put_link -EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b22d64b inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc -EXPORT_SYMBOL vmlinux 0x7b2af653 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x7b2ca1ad csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x7b2ef566 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x7b36fddb scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x7b64a3c3 put_page -EXPORT_SYMBOL vmlinux 0x7b659912 con_copy_unimap -EXPORT_SYMBOL vmlinux 0x7b72a248 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x7b8525dc padata_add_cpu -EXPORT_SYMBOL vmlinux 0x7b9f4ea9 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0x7ba12379 phy_init_hw -EXPORT_SYMBOL vmlinux 0x7ba387a1 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x7bb756cc neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x7bcd982a update_region -EXPORT_SYMBOL vmlinux 0x7bd7a76e eth_mac_addr -EXPORT_SYMBOL vmlinux 0x7be6bdea tcp_read_sock -EXPORT_SYMBOL vmlinux 0x7bf8b8e6 simple_write_end -EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x7c0766a5 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x7c0edc24 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c27156c rtas_online_cpus_mask -EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc -EXPORT_SYMBOL vmlinux 0x7c316a89 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c6d7fed register_sysctl -EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7ca65e6b put_cmsg -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7ccef6ba unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x7cd340a9 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x7cd367e9 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ceeb175 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x7cefd476 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cf9f760 padata_alloc_possible -EXPORT_SYMBOL vmlinux 0x7cfa2bfc jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x7d01c03f blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d18dd10 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x7d3d4f8e xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x7d4df6f9 nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d76c2f8 __skb_tx_hash -EXPORT_SYMBOL vmlinux 0x7d88755a neigh_seq_next -EXPORT_SYMBOL vmlinux 0x7da8a775 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x7dc90505 PDE_DATA -EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max -EXPORT_SYMBOL vmlinux 0x7dd6a6fd mount_single -EXPORT_SYMBOL vmlinux 0x7dd835fb mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7df0b4a2 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x7e12ad07 napi_consume_skb -EXPORT_SYMBOL vmlinux 0x7e193193 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x7e25ecdd macio_dev_put -EXPORT_SYMBOL vmlinux 0x7e4eafde mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress -EXPORT_SYMBOL vmlinux 0x7ed356d2 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x7edcaa3a mmc_detect_change -EXPORT_SYMBOL vmlinux 0x7ee2fe83 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x7ee6a62c i8042_install_filter -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7eef3457 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x7efbaa91 tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f1cc7aa component_match_add -EXPORT_SYMBOL vmlinux 0x7f206dc5 scsi_remove_device -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x7f4922a5 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x7f57d150 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f6fe605 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x7f7085f9 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x7f742fbd remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x7f86cd9a sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x7f8e3508 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x7fbbdc76 filemap_fault -EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x7fcc6ac0 fb_set_var -EXPORT_SYMBOL vmlinux 0x7fd0ca0e dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x7fda190a sk_capable -EXPORT_SYMBOL vmlinux 0x7fdc4ec5 inode_change_ok -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x7fe9a060 _lv1_net_stop_tx_dma -EXPORT_SYMBOL vmlinux 0x800f46cc free_task -EXPORT_SYMBOL vmlinux 0x801d202b put_io_context -EXPORT_SYMBOL vmlinux 0x804701df tty_set_operations -EXPORT_SYMBOL vmlinux 0x8059ce26 pci_release_region -EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x8072e6e2 km_new_mapping -EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0x80841288 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x8085b415 registered_fb -EXPORT_SYMBOL vmlinux 0x808eaca1 alloc_pages_current -EXPORT_SYMBOL vmlinux 0x80b7d602 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x80c25dac iget_locked -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80ccf872 dquot_operations -EXPORT_SYMBOL vmlinux 0x80d30d1f build_skb -EXPORT_SYMBOL vmlinux 0x80d408e9 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80e234d6 simple_release_fs -EXPORT_SYMBOL vmlinux 0x80f009d8 security_path_chmod -EXPORT_SYMBOL vmlinux 0x80fa7c37 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x80fb688b of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x810ab454 __kernel_write -EXPORT_SYMBOL vmlinux 0x81110f19 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x81211a02 blk_get_request -EXPORT_SYMBOL vmlinux 0x8122960c max8998_write_reg -EXPORT_SYMBOL vmlinux 0x812d0702 giveup_vsx -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x81536fdc blk_end_request_all -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x816b9ae4 md_error -EXPORT_SYMBOL vmlinux 0x817f08b9 compat_mc_setsockopt -EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator -EXPORT_SYMBOL vmlinux 0x81d01adc mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x81d71d04 wireless_send_event -EXPORT_SYMBOL vmlinux 0x81d9f7f2 _lv1_put_iopte -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81dfa3d2 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x81ed6e7b blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x81f416c2 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x81fa9382 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x81fd1f7e blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x82008a00 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x82083068 dquot_transfer -EXPORT_SYMBOL vmlinux 0x8216fd57 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback -EXPORT_SYMBOL vmlinux 0x823924fe xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x82688684 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x829af7fa __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x829ea66b tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82b56c00 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x82b74ff9 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x82bde749 d_splice_alias -EXPORT_SYMBOL vmlinux 0x82be4505 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x82cb7bf5 of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x82ce70b3 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x8354acfe dev_uc_del -EXPORT_SYMBOL vmlinux 0x8359fafe block_write_begin -EXPORT_SYMBOL vmlinux 0x837f0d71 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x83900bea srp_start_tl_fail_timers -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8399ccc9 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83b1caae vfs_statfs -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83cdb675 skb_unlink -EXPORT_SYMBOL vmlinux 0x83dbc983 search_binary_handler -EXPORT_SYMBOL vmlinux 0x83fa9e69 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x84119d66 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x8414265b end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x8419fe32 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x841f0c8e dev_mc_del -EXPORT_SYMBOL vmlinux 0x8422db9d unregister_key_type -EXPORT_SYMBOL vmlinux 0x84296bba simple_getattr -EXPORT_SYMBOL vmlinux 0x844e342d agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x844f423d inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x845124e0 ps3_mm_phys_to_lpar -EXPORT_SYMBOL vmlinux 0x84657769 tty_port_close -EXPORT_SYMBOL vmlinux 0x8478bedd devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x84802c97 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0x8480c444 input_open_device -EXPORT_SYMBOL vmlinux 0x84819f51 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x848cfb26 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x849fe807 csum_and_copy_from_user -EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock -EXPORT_SYMBOL vmlinux 0x84c9cbf5 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x84cc2888 input_close_device -EXPORT_SYMBOL vmlinux 0x84ce4582 dcb_getapp -EXPORT_SYMBOL vmlinux 0x84e4849a kernel_getpeername -EXPORT_SYMBOL vmlinux 0x84ea1bac xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x850240eb iget5_locked -EXPORT_SYMBOL vmlinux 0x8522a0cf ns_capable -EXPORT_SYMBOL vmlinux 0x852c6501 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0x8539c420 pci_bus_put -EXPORT_SYMBOL vmlinux 0x8548fe28 dev_notice -EXPORT_SYMBOL vmlinux 0x855c2fd0 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x856b59a7 dump_emit -EXPORT_SYMBOL vmlinux 0x8575ef1f vfs_write -EXPORT_SYMBOL vmlinux 0x85904719 kset_unregister -EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall -EXPORT_SYMBOL vmlinux 0x85a72721 sockfd_lookup -EXPORT_SYMBOL vmlinux 0x85ae6052 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x85b3d529 kern_path_create -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85c4a38a mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x85db7e51 submit_bh -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x8604b5dc lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x86588610 setup_new_exec -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x8684904f ppp_dev_name -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86acdc74 param_get_short -EXPORT_SYMBOL vmlinux 0x86affde8 scsi_register -EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook -EXPORT_SYMBOL vmlinux 0x86de39f6 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x86de5bcb pci_pme_active -EXPORT_SYMBOL vmlinux 0x86f517cf devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x87065974 set_device_ro -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 -EXPORT_SYMBOL vmlinux 0x87689bc4 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x876fd141 ibmebus_register_driver -EXPORT_SYMBOL vmlinux 0x87722d4c cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x8780cda4 pipe_unlock -EXPORT_SYMBOL vmlinux 0x8784490d devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x879e2477 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x87abd037 down_read_trylock -EXPORT_SYMBOL vmlinux 0x87af25a3 ppp_input_error -EXPORT_SYMBOL vmlinux 0x87b879fe tcf_hash_search -EXPORT_SYMBOL vmlinux 0x87e4feff dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x880070eb padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x88090b90 keyring_alloc -EXPORT_SYMBOL vmlinux 0x880a3722 udp_add_offload -EXPORT_SYMBOL vmlinux 0x880da1b1 _lv1_get_logical_partition_id -EXPORT_SYMBOL vmlinux 0x882db37f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x8834363e __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x887a621a inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x888a4a70 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x88b16c01 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x88bc77cb generic_write_checks -EXPORT_SYMBOL vmlinux 0x88d6f59d tty_free_termios -EXPORT_SYMBOL vmlinux 0x88dc2616 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x88f9b0cb phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x890385c4 md_write_end -EXPORT_SYMBOL vmlinux 0x8909330c of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat -EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy -EXPORT_SYMBOL vmlinux 0x89341513 of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x89496c4f blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x895108f3 proc_dostring -EXPORT_SYMBOL vmlinux 0x8954bb26 file_open_root -EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table -EXPORT_SYMBOL vmlinux 0x89675f33 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x89834784 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x8988a1ac dquot_quota_off -EXPORT_SYMBOL vmlinux 0x89a320df iterate_mounts -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89c069e2 mach_ps3 -EXPORT_SYMBOL vmlinux 0x89c5a8be smu_get_sdb_partition -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x8a13f78c from_kgid -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4f3764 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x8a50d671 register_quota_format -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a529b58 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x8a760193 mmc_remove_host -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a88385a crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8a9cef2a _lv1_allocate_device_dma_region -EXPORT_SYMBOL vmlinux 0x8aa4cfae __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x8aa4d148 unlock_buffer -EXPORT_SYMBOL vmlinux 0x8aad8539 agp_free_memory -EXPORT_SYMBOL vmlinux 0x8ab87d02 blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0x8ae0964c empty_aops -EXPORT_SYMBOL vmlinux 0x8ae6412b nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x8ae7482d kernel_write -EXPORT_SYMBOL vmlinux 0x8aeda471 iov_iter_init -EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put -EXPORT_SYMBOL vmlinux 0x8b28abad agp_bridge -EXPORT_SYMBOL vmlinux 0x8b2abfaa inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b46ecca netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b6a63db netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x8b709851 skb_find_text -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b9a2c69 proc_symlink -EXPORT_SYMBOL vmlinux 0x8ba339da dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x8bab5a14 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x8bb02a49 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x8bca4b4e generic_file_mmap -EXPORT_SYMBOL vmlinux 0x8be8e7ff devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x8bea2b3a uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x8bee5d28 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr -EXPORT_SYMBOL vmlinux 0x8c0535d0 fb_class -EXPORT_SYMBOL vmlinux 0x8c0863cf __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 -EXPORT_SYMBOL vmlinux 0x8c2a5747 ppc_md -EXPORT_SYMBOL vmlinux 0x8c3cc070 param_set_bint -EXPORT_SYMBOL vmlinux 0x8c5365a4 dev_trans_start -EXPORT_SYMBOL vmlinux 0x8c5a91c8 param_ops_string -EXPORT_SYMBOL vmlinux 0x8c5ae3a4 skb_split -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c8587b0 truncate_setsize -EXPORT_SYMBOL vmlinux 0x8c8d79c0 _lv1_gpu_context_iomap -EXPORT_SYMBOL vmlinux 0x8cba9d4a irq_to_desc -EXPORT_SYMBOL vmlinux 0x8cbd6f0c inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cd54882 km_is_alive -EXPORT_SYMBOL vmlinux 0x8cd89c75 vio_register_device_node -EXPORT_SYMBOL vmlinux 0x8ce592a0 dquot_acquire -EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 -EXPORT_SYMBOL vmlinux 0x8d182c98 commit_creds -EXPORT_SYMBOL vmlinux 0x8d321327 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x8d373b4f ihold -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d6b2a03 scsi_remove_host -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d8787ec nf_setsockopt -EXPORT_SYMBOL vmlinux 0x8d944cbb copy_in_user -EXPORT_SYMBOL vmlinux 0x8da7e3f0 __destroy_inode -EXPORT_SYMBOL vmlinux 0x8daa6908 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x8dabf705 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x8dadcc6a gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x8dd44bf6 dquot_release -EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create -EXPORT_SYMBOL vmlinux 0x8de2fbc5 _lv1_get_virtual_uart_param -EXPORT_SYMBOL vmlinux 0x8deee26f backlight_device_register -EXPORT_SYMBOL vmlinux 0x8df223bd genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x8df41f0d blk_finish_request -EXPORT_SYMBOL vmlinux 0x8df5a964 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8dfd28bd iunique -EXPORT_SYMBOL vmlinux 0x8e0309d7 generic_update_time -EXPORT_SYMBOL vmlinux 0x8e14ba1c max8998_read_reg -EXPORT_SYMBOL vmlinux 0x8e2a5b85 macio_unregister_driver -EXPORT_SYMBOL vmlinux 0x8e39932c tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x8e3a3718 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x8e65ecd1 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x8e682e2c tcp_prot -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e762e08 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x8e9296f2 qdisc_list_add -EXPORT_SYMBOL vmlinux 0x8e92da5f input_release_device -EXPORT_SYMBOL vmlinux 0x8e9b6808 __dst_free -EXPORT_SYMBOL vmlinux 0x8eb7f31a tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x8eea1bc9 smu_poll -EXPORT_SYMBOL vmlinux 0x8effcb99 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x8f012034 skb_clone -EXPORT_SYMBOL vmlinux 0x8f0cfc68 dev_warn -EXPORT_SYMBOL vmlinux 0x8f407e87 skb_store_bits -EXPORT_SYMBOL vmlinux 0x8f4865d7 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x8f52c3e5 dev_uc_init -EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x8f91b0b3 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x8fac87a7 dev_load -EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0x8fe4fc67 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x8fed3c9f elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0x9002b0cb blk_init_tags -EXPORT_SYMBOL vmlinux 0x90057e89 skb_append -EXPORT_SYMBOL vmlinux 0x90142d9d devm_memunmap -EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x9037122d kernel_read -EXPORT_SYMBOL vmlinux 0x903da478 cont_write_begin -EXPORT_SYMBOL vmlinux 0x908f3b4f pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x909758ea dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x90a34b89 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x90a4324b agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x90b55217 cdev_alloc -EXPORT_SYMBOL vmlinux 0x90b5a888 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x90befd8b unlock_page -EXPORT_SYMBOL vmlinux 0x90e018a0 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x90ee61e3 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x90fa37d7 seq_read -EXPORT_SYMBOL vmlinux 0x91100d5a qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x9110f055 netdev_state_change -EXPORT_SYMBOL vmlinux 0x911f61f6 kernel_bind -EXPORT_SYMBOL vmlinux 0x91201cef _lv1_enable_logical_spe -EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay -EXPORT_SYMBOL vmlinux 0x91276864 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x912deab4 phy_drivers_register -EXPORT_SYMBOL vmlinux 0x9135c0bd agp_create_memory -EXPORT_SYMBOL vmlinux 0x9137678a security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x914f9d0e sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x919eb6c7 tty_do_resize -EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf -EXPORT_SYMBOL vmlinux 0x91ba64b2 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x91c49bcb ps2_end_command -EXPORT_SYMBOL vmlinux 0x91c4feca _lv1_unmap_htab -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x91fd1244 dm_put_device -EXPORT_SYMBOL vmlinux 0x92153e33 pci_disable_device -EXPORT_SYMBOL vmlinux 0x922719d6 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x922fcbc7 serio_interrupt -EXPORT_SYMBOL vmlinux 0x9232f2a4 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x92647242 mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0x926e66fa pcie_get_mps -EXPORT_SYMBOL vmlinux 0x9271c45d fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x927e8b55 __lock_buffer -EXPORT_SYMBOL vmlinux 0x928ec02d dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x92a42e01 agp_generic_enable -EXPORT_SYMBOL vmlinux 0x92a96da7 nf_reinject -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92a9f5cf __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x92b7feb6 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x92b94ccf sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x92be9270 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x92d023c1 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x92f90cd1 dquot_enable -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x930ba797 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x93248704 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x933de55c setup_arg_pages -EXPORT_SYMBOL vmlinux 0x93462a6d find_lock_entry -EXPORT_SYMBOL vmlinux 0x93507f1c _lv1_gpu_memory_allocate -EXPORT_SYMBOL vmlinux 0x9354fcde ibmebus_free_irq -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93830c30 __register_nls -EXPORT_SYMBOL vmlinux 0x938d66f9 tcp_child_process -EXPORT_SYMBOL vmlinux 0x93ac4ec5 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93d4be14 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0x93d6782f dquot_resume -EXPORT_SYMBOL vmlinux 0x93f68ad4 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x93fbbd29 sock_from_file -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x93fe04ab remove_arg_zero -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x94062889 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x9430d4e3 tty_throttle -EXPORT_SYMBOL vmlinux 0x94316906 input_register_device -EXPORT_SYMBOL vmlinux 0x943dc80f csum_and_copy_to_user -EXPORT_SYMBOL vmlinux 0x943f05db locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x943fe0f8 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x9465fd2a ip6_frag_match -EXPORT_SYMBOL vmlinux 0x947b51f2 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x9481e6c3 vio_h_cop_sync -EXPORT_SYMBOL vmlinux 0x9490f219 giveup_altivec -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x949f9871 block_truncate_page -EXPORT_SYMBOL vmlinux 0x94ab5c1a skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x94b3fd13 swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0x950836eb skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x9509aec8 __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x95117a70 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x9514151a _mcount -EXPORT_SYMBOL vmlinux 0x951d33a3 textsearch_register -EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb -EXPORT_SYMBOL vmlinux 0x95261d90 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x9527c381 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x95479486 padata_start -EXPORT_SYMBOL vmlinux 0x954fe0ea security_path_truncate -EXPORT_SYMBOL vmlinux 0x9572a4e2 mntput -EXPORT_SYMBOL vmlinux 0x95b3ea5e blkdev_put -EXPORT_SYMBOL vmlinux 0x960363d9 swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x960818fd vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x9610d89a dev_alert -EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x96a5833e tcp_shutdown -EXPORT_SYMBOL vmlinux 0x96afdeef single_open -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x9710c980 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x971c0545 iterate_dir -EXPORT_SYMBOL vmlinux 0x97205e18 vm_insert_page -EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x975ae4d1 consume_skb -EXPORT_SYMBOL vmlinux 0x97661ff7 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x9769fcf0 __get_user_pages -EXPORT_SYMBOL vmlinux 0x976e014f _lv1_map_device_mmio_region -EXPORT_SYMBOL vmlinux 0x9770170b mmc_erase -EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x97a41678 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97afba7b proc_douintvec -EXPORT_SYMBOL vmlinux 0x97ba1af0 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x97d90ab5 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x97daefb8 sk_stream_write_space -EXPORT_SYMBOL vmlinux 0x97eebc9f simple_link -EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update -EXPORT_SYMBOL vmlinux 0x98177648 _lv1_set_lpm_interval -EXPORT_SYMBOL vmlinux 0x981a412e pci_platform_rom -EXPORT_SYMBOL vmlinux 0x981f4822 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x98466a9b dev_disable_lro -EXPORT_SYMBOL vmlinux 0x98646ef7 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x98654d52 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x9878b7c8 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x987fc124 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x988b9d90 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x98b1235b pid_task -EXPORT_SYMBOL vmlinux 0x98b292f1 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x98b538dc of_find_property -EXPORT_SYMBOL vmlinux 0x98bd68ce blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98e6454a inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x98ea46da udp_proc_unregister -EXPORT_SYMBOL vmlinux 0x98f58fdb d_alloc -EXPORT_SYMBOL vmlinux 0x98fa774a posix_acl_valid -EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf -EXPORT_SYMBOL vmlinux 0x991968bf ppp_unit_number -EXPORT_SYMBOL vmlinux 0x992108c1 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x9922903e kfree_skb -EXPORT_SYMBOL vmlinux 0x9922f174 keyring_search -EXPORT_SYMBOL vmlinux 0x992de664 init_buffer -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x99653d8b key_reject_and_link -EXPORT_SYMBOL vmlinux 0x996894ac sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x997534d7 module_refcount -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a1ba85 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x99c24cfe _lv1_free_device_dma_region -EXPORT_SYMBOL vmlinux 0x99c3b562 register_qdisc -EXPORT_SYMBOL vmlinux 0x99c65adb set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99df35ce dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x99e50ecb seq_lseek -EXPORT_SYMBOL vmlinux 0x99e9d5c0 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x99f7231c sock_edemux -EXPORT_SYMBOL vmlinux 0x9a017b11 mpage_readpages -EXPORT_SYMBOL vmlinux 0x9a07f524 pci_clear_master -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a1ffb92 _lv1_clear_spe_interrupt_status -EXPORT_SYMBOL vmlinux 0x9a5277d3 of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0x9a66e352 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x9a6c2531 pasemi_dma_init -EXPORT_SYMBOL vmlinux 0x9a770eb5 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x9aa396b5 __genl_register_family -EXPORT_SYMBOL vmlinux 0x9aabf366 udp_poll -EXPORT_SYMBOL vmlinux 0x9ab96ab2 input_event -EXPORT_SYMBOL vmlinux 0x9ac355cb twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x9ad0fc59 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x9ad96e4c tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9af366b0 mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0x9b054510 dquot_initialize -EXPORT_SYMBOL vmlinux 0x9b11053d page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x9b19b68d blk_delay_queue -EXPORT_SYMBOL vmlinux 0x9b1d01e5 phy_connect -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b3fce97 netpoll_setup -EXPORT_SYMBOL vmlinux 0x9b4ac539 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x9b4f408b __dquot_free_space -EXPORT_SYMBOL vmlinux 0x9b57724e agp_copy_info -EXPORT_SYMBOL vmlinux 0x9b657203 kill_pgrp -EXPORT_SYMBOL vmlinux 0x9b6b3069 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x9b6f6084 get_tz_trend -EXPORT_SYMBOL vmlinux 0x9b7b11b2 bio_map_kern -EXPORT_SYMBOL vmlinux 0x9b7e85a6 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0x9b7f5144 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bcd0f10 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x9bd343d2 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x9bd4fe40 get_user_pages -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9bf9e7a3 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x9c024f97 security_task_getsecid -EXPORT_SYMBOL vmlinux 0x9c2322e1 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x9c25df7a netif_device_attach -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c6582d5 __dax_fault -EXPORT_SYMBOL vmlinux 0x9c9f7683 rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb40871 devm_memremap -EXPORT_SYMBOL vmlinux 0x9ce55d8e kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0x9cf27de6 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs -EXPORT_SYMBOL vmlinux 0x9d36a96a handle_edge_irq -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d481d3f ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x9d89d30a __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x9d90ac31 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x9d917c19 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x9d9db9d1 I_BDEV -EXPORT_SYMBOL vmlinux 0x9d9dfc18 load_fp_state -EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x9dd55e2a pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x9dd6f9d1 dst_init -EXPORT_SYMBOL vmlinux 0x9deefcd1 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x9df0820e abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x9dfbcc05 get_cached_acl -EXPORT_SYMBOL vmlinux 0x9e0882bb param_ops_ulong -EXPORT_SYMBOL vmlinux 0x9e097a2f mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x9e0b2901 kthread_stop -EXPORT_SYMBOL vmlinux 0x9e0b71d8 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e15cac6 pci_find_bus -EXPORT_SYMBOL vmlinux 0x9e228514 of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e3ccd10 blkdev_get -EXPORT_SYMBOL vmlinux 0x9e3f374b notify_change -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e51eab5 key_put -EXPORT_SYMBOL vmlinux 0x9e570af1 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e6f8774 inet_select_addr -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9ed204db noop_qdisc -EXPORT_SYMBOL vmlinux 0x9ee78669 _lv1_write_virtual_uart -EXPORT_SYMBOL vmlinux 0x9eedb64d unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x9f168708 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x9f3c6cfe lease_get_mtime -EXPORT_SYMBOL vmlinux 0x9f41ec0a sock_init_data -EXPORT_SYMBOL vmlinux 0x9f446824 bitmap_unplug -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f64ae4c elv_add_request -EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x9f83aeca bdi_register_dev -EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fa4135d lock_sock_nested -EXPORT_SYMBOL vmlinux 0x9fd0467b netif_rx_ni -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa0182434 neigh_for_each -EXPORT_SYMBOL vmlinux 0xa01cec14 con_is_bound -EXPORT_SYMBOL vmlinux 0xa027dc8f ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xa027f96b of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0xa0370c75 prepare_binprm -EXPORT_SYMBOL vmlinux 0xa0434e75 __napi_complete -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa0692df3 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa08c3aa2 kernel_accept -EXPORT_SYMBOL vmlinux 0xa09d458c iov_iter_zero -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0c45017 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e6ea00 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0xa0e78686 fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0ed4ec2 inode_permission -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0xa1083374 seq_puts -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa132e047 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa1751a3a vga_get -EXPORT_SYMBOL vmlinux 0xa1751ecb vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0xa17fc78c tty_unregister_device -EXPORT_SYMBOL vmlinux 0xa18b3423 udp_ioctl -EXPORT_SYMBOL vmlinux 0xa1a75833 mmc_align_data_size -EXPORT_SYMBOL vmlinux 0xa1abc395 dentry_open -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1bff973 security_inode_readlink -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xa1d3d873 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0xa1f9304b blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa20a3b66 of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0xa20d7ed4 bio_copy_data -EXPORT_SYMBOL vmlinux 0xa20df027 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xa2127cdc pasemi_dma_alloc_flag -EXPORT_SYMBOL vmlinux 0xa2391c1b vga_client_register -EXPORT_SYMBOL vmlinux 0xa23c85b7 swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0xa2435faa misc_register -EXPORT_SYMBOL vmlinux 0xa2465322 _lv1_get_version_info -EXPORT_SYMBOL vmlinux 0xa25a13fc security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xa282fab9 bioset_integrity_free -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa2984d28 key_payload_reserve -EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register -EXPORT_SYMBOL vmlinux 0xa2e9e4f3 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait -EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0xa3064bdb mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xa30711fd bdevname -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa31f5236 iput -EXPORT_SYMBOL vmlinux 0xa33800e6 get_fs_type -EXPORT_SYMBOL vmlinux 0xa3437119 get_task_io_context -EXPORT_SYMBOL vmlinux 0xa3453d02 write_cache_pages -EXPORT_SYMBOL vmlinux 0xa346f61c get_acl -EXPORT_SYMBOL vmlinux 0xa34916d8 udp_del_offload -EXPORT_SYMBOL vmlinux 0xa354b2c2 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xa360890d create_empty_buffers -EXPORT_SYMBOL vmlinux 0xa3709848 block_read_full_page -EXPORT_SYMBOL vmlinux 0xa385dbc6 km_report -EXPORT_SYMBOL vmlinux 0xa39857fc input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay -EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xa3b7888b kernel_param_lock -EXPORT_SYMBOL vmlinux 0xa3bc634f vfs_readv -EXPORT_SYMBOL vmlinux 0xa3f336c1 blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0xa3fbc321 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xa40d26e8 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0xa40f0d9f mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0xa41bace8 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xa434952a vfs_whiteout -EXPORT_SYMBOL vmlinux 0xa434df6b pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xa4511467 crc16 -EXPORT_SYMBOL vmlinux 0xa45194b0 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xa45c248e dma_find_channel -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa480c04b _lv1_gpu_context_attribute -EXPORT_SYMBOL vmlinux 0xa481660f audit_log -EXPORT_SYMBOL vmlinux 0xa48a72f3 sock_register -EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4cb19ae nd_iostat_end -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4daec70 scmd_printk -EXPORT_SYMBOL vmlinux 0xa525b615 pcim_iounmap -EXPORT_SYMBOL vmlinux 0xa5392a2a sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xa54701a4 nvm_submit_io -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa55c6830 register_sysctl_table -EXPORT_SYMBOL vmlinux 0xa55eb664 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free -EXPORT_SYMBOL vmlinux 0xa572d45c lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0xa5793d4d of_mdio_parse_addr -EXPORT_SYMBOL vmlinux 0xa58be726 request_key_async -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le -EXPORT_SYMBOL vmlinux 0xa5c94987 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xa5d362e5 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0xa5db6e3d mutex_lock_killable -EXPORT_SYMBOL vmlinux 0xa5f7f233 agp_find_bridge -EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xa63a8fe1 tcf_hash_check -EXPORT_SYMBOL vmlinux 0xa6584e77 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa67893c5 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0xa680fa5c skb_free_datagram -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa68a1b0a d_instantiate -EXPORT_SYMBOL vmlinux 0xa69af78b pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0xa69f498e get_thermal_instance -EXPORT_SYMBOL vmlinux 0xa6aded82 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xa6b103f9 nvm_register -EXPORT_SYMBOL vmlinux 0xa6c4bb99 vio_find_node -EXPORT_SYMBOL vmlinux 0xa6cac379 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xa6ce472f cpu_rmap_update -EXPORT_SYMBOL vmlinux 0xa6f07f1c decrementer_clockevent -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock -EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes -EXPORT_SYMBOL vmlinux 0xa735504e from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa73e5adb dquot_quota_on -EXPORT_SYMBOL vmlinux 0xa73e7fc5 scsi_scan_target -EXPORT_SYMBOL vmlinux 0xa7417d86 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xa748fbdd dev_driver_string -EXPORT_SYMBOL vmlinux 0xa749253f blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0xa74c8f2d dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get -EXPORT_SYMBOL vmlinux 0xa773a8e3 pci_iomap -EXPORT_SYMBOL vmlinux 0xa78b022b blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xa7a8230d neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xa7af24f6 write_one_page -EXPORT_SYMBOL vmlinux 0xa7b0de0b simple_rename -EXPORT_SYMBOL vmlinux 0xa7baacb8 vfs_read -EXPORT_SYMBOL vmlinux 0xa7d547b5 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xa7d8f354 udp_proc_register -EXPORT_SYMBOL vmlinux 0xa80abef3 seq_vprintf -EXPORT_SYMBOL vmlinux 0xa8279367 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xa83c368b security_file_permission -EXPORT_SYMBOL vmlinux 0xa84367db __devm_request_region -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa8496d75 dquot_drop -EXPORT_SYMBOL vmlinux 0xa85bac6d neigh_table_init -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa874eacd __nd_iostat_start -EXPORT_SYMBOL vmlinux 0xa8ab205b jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xa8af8860 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xa8c6b08d sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0xa8ced546 _lv1_net_set_interrupt_status_indicator -EXPORT_SYMBOL vmlinux 0xa8d0d738 __serio_register_port -EXPORT_SYMBOL vmlinux 0xa8ddba2f kill_pid -EXPORT_SYMBOL vmlinux 0xa8e070c8 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa91c77b6 _lv1_end_of_interrupt -EXPORT_SYMBOL vmlinux 0xa921d195 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start -EXPORT_SYMBOL vmlinux 0xa93ba88e proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xa93bfc5e of_translate_address -EXPORT_SYMBOL vmlinux 0xa94e765d xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xa956b143 netdev_info -EXPORT_SYMBOL vmlinux 0xa95e6dce tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa976b354 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9ebc446 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0xa9ec40d6 sock_update_memcg -EXPORT_SYMBOL vmlinux 0xa9f49696 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0xaa0edca8 pasemi_dma_alloc_fun -EXPORT_SYMBOL vmlinux 0xaa33df07 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0xaa45a5e0 account_page_dirtied -EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock -EXPORT_SYMBOL vmlinux 0xaa4a6730 tc_classify -EXPORT_SYMBOL vmlinux 0xaa5272fb pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0xaa6b150a page_put_link -EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaad06927 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab00415c inet_sendmsg -EXPORT_SYMBOL vmlinux 0xab228e31 csum_tcpudp_magic -EXPORT_SYMBOL vmlinux 0xab3c868e ip_getsockopt -EXPORT_SYMBOL vmlinux 0xab521f78 udp_disconnect -EXPORT_SYMBOL vmlinux 0xab66f611 _lv1_set_lpm_trigger_control -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab8473ef fget_raw -EXPORT_SYMBOL vmlinux 0xab95c785 of_mm_gpiochip_add -EXPORT_SYMBOL vmlinux 0xabab1637 generic_file_open -EXPORT_SYMBOL vmlinux 0xabb7c9ff ab3100_event_register -EXPORT_SYMBOL vmlinux 0xabca8fcc dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabd9539b agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0xabe855c7 locks_remove_posix -EXPORT_SYMBOL vmlinux 0xabea0b57 mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0xabf3f858 mmc_get_card -EXPORT_SYMBOL vmlinux 0xabfbc15f scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xabfe752a iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac10ecf8 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0xac16a0a5 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xac44a3ba unmap_mapping_range -EXPORT_SYMBOL vmlinux 0xac5ce177 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xac69175c wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xac9536ca kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd14ab8 _lv1_construct_logical_spe -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xace5228a vc_resize -EXPORT_SYMBOL vmlinux 0xacee2d08 kset_register -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacfac75a do_SAK -EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xad232a1a pci_scan_slot -EXPORT_SYMBOL vmlinux 0xad2483b0 d_path -EXPORT_SYMBOL vmlinux 0xad2af0c8 gen_pool_free -EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock -EXPORT_SYMBOL vmlinux 0xad5164a6 netdev_err -EXPORT_SYMBOL vmlinux 0xad70d29c pci_set_mwi -EXPORT_SYMBOL vmlinux 0xad81e39d submit_bio_wait -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad85a27b hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xad8c9bd2 mmc_register_driver -EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit -EXPORT_SYMBOL vmlinux 0xad982d4d d_find_any_alias -EXPORT_SYMBOL vmlinux 0xadbaf616 input_set_keycode -EXPORT_SYMBOL vmlinux 0xadbe04b2 ppp_register_channel -EXPORT_SYMBOL vmlinux 0xadbf3a83 scsi_scan_host -EXPORT_SYMBOL vmlinux 0xadc74677 lwtunnel_output -EXPORT_SYMBOL vmlinux 0xadccd78b netif_rx -EXPORT_SYMBOL vmlinux 0xadd0b03c thaw_bdev -EXPORT_SYMBOL vmlinux 0xadd4dee6 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0xaddea9b8 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xade61b55 __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0xadeffe25 _lv1_gpu_context_intr -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae077001 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xae233df6 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xae266c46 md_flush_request -EXPORT_SYMBOL vmlinux 0xae2e55e3 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xae358236 fence_signal -EXPORT_SYMBOL vmlinux 0xae3d3297 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xae49a986 devm_gpiod_get -EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xae7871c4 blk_init_queue_node -EXPORT_SYMBOL vmlinux 0xaeb7910d reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0xaecd27e9 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xaef2e933 md_unregister_thread -EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf677ceb key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup -EXPORT_SYMBOL vmlinux 0xaf74e138 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xaf86e916 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0xaf90e11e pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create -EXPORT_SYMBOL vmlinux 0xafb764fc inet_sendpage -EXPORT_SYMBOL vmlinux 0xafdd81a1 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc -EXPORT_SYMBOL vmlinux 0xb0027d55 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xb007c83c fddi_change_mtu -EXPORT_SYMBOL vmlinux 0xb0095492 fsl_lbc_ctrl_dev -EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove -EXPORT_SYMBOL vmlinux 0xb043edad inet6_offloads -EXPORT_SYMBOL vmlinux 0xb051e655 dev_add_pack -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb0642851 xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0xb071e5c6 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0d9896f of_device_get_match_data -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb116cfe7 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb144843c xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset -EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb165ef45 __irq_regs -EXPORT_SYMBOL vmlinux 0xb17bb968 nvm_put_blk -EXPORT_SYMBOL vmlinux 0xb18dbc1d module_layout -EXPORT_SYMBOL vmlinux 0xb1a6ae52 set_disk_ro -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xb1caf8f4 get_agp_version -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb1d55161 ip6_xmit -EXPORT_SYMBOL vmlinux 0xb1dd9d69 macio_register_driver -EXPORT_SYMBOL vmlinux 0xb1e1c6c3 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xb1ed2459 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xb206891e i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xb224b9ca xfrm_lookup -EXPORT_SYMBOL vmlinux 0xb238e0ed alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xb24cda91 __dquot_transfer -EXPORT_SYMBOL vmlinux 0xb24eecfc nobh_writepage -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb27562e6 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xb294ffec read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xb2a8757b loop_register_transfer -EXPORT_SYMBOL vmlinux 0xb2ab2b6f kdb_current_task -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2c47cc7 blk_put_request -EXPORT_SYMBOL vmlinux 0xb2cc3b9f tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xb327a4c7 unregister_nls -EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked -EXPORT_SYMBOL vmlinux 0xb36c6aed scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xb37ac050 user_revoke -EXPORT_SYMBOL vmlinux 0xb39e2455 sk_alloc -EXPORT_SYMBOL vmlinux 0xb3b21031 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xb3bf73df cpu_active_mask -EXPORT_SYMBOL vmlinux 0xb3c135d4 vfs_symlink -EXPORT_SYMBOL vmlinux 0xb3c59667 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xb3c77ab5 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb437acc2 mach_pseries -EXPORT_SYMBOL vmlinux 0xb44e01d5 keyring_clear -EXPORT_SYMBOL vmlinux 0xb4513907 security_path_unlink -EXPORT_SYMBOL vmlinux 0xb45be432 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xb46812d9 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class -EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get -EXPORT_SYMBOL vmlinux 0xb47d3274 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xb4852697 eth_gro_receive -EXPORT_SYMBOL vmlinux 0xb49cbdc8 mmc_can_reset -EXPORT_SYMBOL vmlinux 0xb4b0148a devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xb4ed90a2 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0xb4faac56 pneigh_lookup -EXPORT_SYMBOL vmlinux 0xb5253a27 sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xb52c68e2 page_follow_link_light -EXPORT_SYMBOL vmlinux 0xb5687ed8 simple_write_begin -EXPORT_SYMBOL vmlinux 0xb56951d6 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xb56bfd9e smu_spinwait_cmd -EXPORT_SYMBOL vmlinux 0xb572b863 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb5871c93 rfkill_alloc -EXPORT_SYMBOL vmlinux 0xb58c819d devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xb59db4bf devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a6b3e6 of_root -EXPORT_SYMBOL vmlinux 0xb5a9fcd7 write_inode_now -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5f23512 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xb62078cf ip_ct_attach -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb628477d mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0xb62e2759 ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xb6329918 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0xb63bfd7d inet_stream_ops -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb6880e2f d_lookup -EXPORT_SYMBOL vmlinux 0xb68bfa9d node_states -EXPORT_SYMBOL vmlinux 0xb68f41db nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69b31c5 flush_signals -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6b69940 fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0xb6d94f37 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xb6e7a6ff md_integrity_register -EXPORT_SYMBOL vmlinux 0xb6ebb1b1 cdev_init -EXPORT_SYMBOL vmlinux 0xb70d1151 mntget -EXPORT_SYMBOL vmlinux 0xb70eabb1 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0xb7164aa2 set_anon_super -EXPORT_SYMBOL vmlinux 0xb737be88 netif_device_detach -EXPORT_SYMBOL vmlinux 0xb73b5275 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb74e2c8b kill_fasync -EXPORT_SYMBOL vmlinux 0xb74f0e8f take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xb755a5e0 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xb758d1d0 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb7818276 compat_ip_getsockopt -EXPORT_SYMBOL vmlinux 0xb7a20c2e pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xb7a9a13f jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0xb7b31c7f scsi_unregister -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7ca846c request_firmware_nowait -EXPORT_SYMBOL vmlinux 0xb7faab22 pci_enable_device -EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xb8275801 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xb836c2e9 block_commit_write -EXPORT_SYMBOL vmlinux 0xb85d129c ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xb86123be _lv1_write_repository_node -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb878caf1 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xb87e0e3c devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xb8a30c7e _lv1_add_lpm_event_bookmark -EXPORT_SYMBOL vmlinux 0xb8c13d8a generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xb8c7b0e9 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xb8da3280 param_get_int -EXPORT_SYMBOL vmlinux 0xb8db293d mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xb8e7d992 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xb8ea263d dmam_pool_create -EXPORT_SYMBOL vmlinux 0xb902a6fe i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb91df7e9 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xb9a06a9c pnv_pci_get_gpu_dev -EXPORT_SYMBOL vmlinux 0xb9a2bc22 scsi_host_set_state -EXPORT_SYMBOL vmlinux 0xb9a9a607 __lock_page -EXPORT_SYMBOL vmlinux 0xb9aa5c3f mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0xb9c801a4 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0xb9e3ead3 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9eb8740 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xba08d989 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xba0ef316 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xba122a2c smu_done_complete -EXPORT_SYMBOL vmlinux 0xba2215ca __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xba2d79b5 vme_lm_request -EXPORT_SYMBOL vmlinux 0xba2ffec2 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xba463c60 path_is_under -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4aff66 scsi_device_put -EXPORT_SYMBOL vmlinux 0xba528d9d __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xba6273e6 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xba73f5a0 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xba89b293 tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0xba93a34a eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0xbaf4f861 get_mm_exe_file -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb0e0de1 pagevec_lookup -EXPORT_SYMBOL vmlinux 0xbb140224 put_tty_driver -EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbba2400a csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xbba6bf5e max8998_bulk_read -EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0xbbb6b412 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xbbb9d21b nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0xbbcf1f2a of_n_size_cells -EXPORT_SYMBOL vmlinux 0xbbde26a5 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xbbe850c2 kfree_put_link -EXPORT_SYMBOL vmlinux 0xbbfed592 seq_escape -EXPORT_SYMBOL vmlinux 0xbc078839 vmap -EXPORT_SYMBOL vmlinux 0xbc0b3805 skb_queue_tail -EXPORT_SYMBOL vmlinux 0xbc1ca76c vme_master_request -EXPORT_SYMBOL vmlinux 0xbc1d1a4a thaw_super -EXPORT_SYMBOL vmlinux 0xbc29c5d2 param_set_ullong -EXPORT_SYMBOL vmlinux 0xbc2fff16 genl_notify -EXPORT_SYMBOL vmlinux 0xbc30148c ilookup5_nowait -EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0xbc4e3857 fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0xbc7830f1 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags -EXPORT_SYMBOL vmlinux 0xbca49577 kern_unmount -EXPORT_SYMBOL vmlinux 0xbcb5b0f4 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xbcb68347 fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcd28d39 dev_get_flags -EXPORT_SYMBOL vmlinux 0xbceb2327 devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 -EXPORT_SYMBOL vmlinux 0xbd090d0f skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve -EXPORT_SYMBOL vmlinux 0xbd1bfb59 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xbd1e202d neigh_update -EXPORT_SYMBOL vmlinux 0xbd1e773a ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xbd1eaa5d vio_get_attribute -EXPORT_SYMBOL vmlinux 0xbd410260 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd4a9354 pci_scan_bus -EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0xbd710e98 generic_listxattr -EXPORT_SYMBOL vmlinux 0xbd7412fd inode_needs_sync -EXPORT_SYMBOL vmlinux 0xbd7971bf tty_register_driver -EXPORT_SYMBOL vmlinux 0xbd7d1c48 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xbd8cfa15 pasemi_write_mac_reg -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbd9785f7 clear_user_page -EXPORT_SYMBOL vmlinux 0xbd9bc793 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xbda6489a iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0xbdb69b57 uart_add_one_port -EXPORT_SYMBOL vmlinux 0xbde5ace8 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0xbdf919a6 inet6_getname -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe3ab9a2 mount_subtree -EXPORT_SYMBOL vmlinux 0xbe43b62a simple_transaction_release -EXPORT_SYMBOL vmlinux 0xbe563d24 tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0xbe56613d blk_complete_request -EXPORT_SYMBOL vmlinux 0xbe57da8b follow_pfn -EXPORT_SYMBOL vmlinux 0xbe6ac03c sock_create -EXPORT_SYMBOL vmlinux 0xbe79ec2d sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xbebb8ff6 bdget_disk -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbef91aaf of_scan_pci_bridge -EXPORT_SYMBOL vmlinux 0xbf0626b2 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xbf217104 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xbf24e50d __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xbf4362ec sg_miter_stop -EXPORT_SYMBOL vmlinux 0xbf47763b dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xbf49db82 uart_match_port -EXPORT_SYMBOL vmlinux 0xbf535a18 bdi_destroy -EXPORT_SYMBOL vmlinux 0xbf610b73 sock_no_accept -EXPORT_SYMBOL vmlinux 0xbf72721c mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf853e23 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init -EXPORT_SYMBOL vmlinux 0xbf970355 cdrom_media_changed -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbf9bea32 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xbfabfe59 __debugger_iabr_match -EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xbfbacef0 is_nd_btt -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfcd1efc input_unregister_handler -EXPORT_SYMBOL vmlinux 0xbfd1308c do_splice_to -EXPORT_SYMBOL vmlinux 0xbfe86688 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff18efc nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets -EXPORT_SYMBOL vmlinux 0xc00e5626 neigh_lookup -EXPORT_SYMBOL vmlinux 0xc011c714 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xc02ae710 textsearch_prepare -EXPORT_SYMBOL vmlinux 0xc03c22df netlink_net_capable -EXPORT_SYMBOL vmlinux 0xc043bbdf blk_fetch_request -EXPORT_SYMBOL vmlinux 0xc0449419 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc081cb4d default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc083437d rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0a41cec vme_bus_type -EXPORT_SYMBOL vmlinux 0xc0a68140 read_cache_pages -EXPORT_SYMBOL vmlinux 0xc0c286bd crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xc0f3cd98 path_nosuid -EXPORT_SYMBOL vmlinux 0xc112a495 security_path_mkdir -EXPORT_SYMBOL vmlinux 0xc130af86 kmalloc_caches -EXPORT_SYMBOL vmlinux 0xc132db21 i2c_del_driver -EXPORT_SYMBOL vmlinux 0xc13511d7 cpumask_next_and -EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc -EXPORT_SYMBOL vmlinux 0xc14f0335 open_exec -EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit -EXPORT_SYMBOL vmlinux 0xc163b1b2 ether_setup -EXPORT_SYMBOL vmlinux 0xc1896cbb xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xc1c070a0 cdev_add -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1fea91a get_gendisk -EXPORT_SYMBOL vmlinux 0xc20be437 dev_get_by_index -EXPORT_SYMBOL vmlinux 0xc2211e09 srp_rport_get -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2ac8604 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xc2bab7a6 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2fb9ee1 _lv1_shutdown_logical_partition -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc32f647c sock_no_bind -EXPORT_SYMBOL vmlinux 0xc368dd84 ps3_sb_event_receive_port_destroy -EXPORT_SYMBOL vmlinux 0xc3921c47 dma_direct_ops -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc3dd886d devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xc4053f7f seq_open_private -EXPORT_SYMBOL vmlinux 0xc41edf00 key_task_permission -EXPORT_SYMBOL vmlinux 0xc41f1696 _lv1_configure_virtual_uart_irq -EXPORT_SYMBOL vmlinux 0xc420f5f9 xfrm_input -EXPORT_SYMBOL vmlinux 0xc4298a9d cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xc44dd757 i2c_register_driver -EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0xc46aa3b3 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xc4702b1c rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc4a86068 agp_bind_memory -EXPORT_SYMBOL vmlinux 0xc4bc2fac filemap_flush -EXPORT_SYMBOL vmlinux 0xc4c639bd try_module_get -EXPORT_SYMBOL vmlinux 0xc5089620 _lv1_stop_ppe_periodic_tracer -EXPORT_SYMBOL vmlinux 0xc52c38bf lwtunnel_input -EXPORT_SYMBOL vmlinux 0xc53faceb sync_blockdev -EXPORT_SYMBOL vmlinux 0xc54a2261 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc5537834 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set -EXPORT_SYMBOL vmlinux 0xc567f166 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5bfd40d dquot_file_open -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5e1c53a dev_mc_flush -EXPORT_SYMBOL vmlinux 0xc5e68d9d macio_request_resource -EXPORT_SYMBOL vmlinux 0xc5f2060e tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xc5f9a23c input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc6571646 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xc694d59e mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6dd0cdd ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xc6f512ee pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc733379f mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0xc7357ca2 fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0xc736d935 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0xc7384932 install_exec_creds -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc7591182 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xc76ba558 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xc7789a0a register_gifconf -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc7898275 flex_array_shrink -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a376f8 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7ad39c5 dentry_path_raw -EXPORT_SYMBOL vmlinux 0xc7f39b15 irq_stat -EXPORT_SYMBOL vmlinux 0xc7fb658e vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0xc80cf888 max8998_update_reg -EXPORT_SYMBOL vmlinux 0xc8284bcc blk_recount_segments -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xc84604c9 bio_put -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84b1563 sk_stream_error -EXPORT_SYMBOL vmlinux 0xc84fc8d0 __sb_start_write -EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each -EXPORT_SYMBOL vmlinux 0xc867a172 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc88bb889 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8ac7829 serio_unregister_port -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8c99c7c __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xc8e31d75 _lv1_configure_irq_state_bitmap -EXPORT_SYMBOL vmlinux 0xc8ed5515 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xc8f0aa38 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xc902dce0 param_ops_short -EXPORT_SYMBOL vmlinux 0xc90ae049 bioset_free -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc9221aed netlink_broadcast -EXPORT_SYMBOL vmlinux 0xc9320dc8 i2c_master_send -EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xc947ac0d jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xc95d9a94 fd_install -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run -EXPORT_SYMBOL vmlinux 0xc9849598 abort_creds -EXPORT_SYMBOL vmlinux 0xc98be11c pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0xc99090f0 udp_seq_open -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9affeb9 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0xc9bd91ed __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xc9d4d7f7 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0xc9e62020 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xc9fc598d pasemi_read_dma_reg -EXPORT_SYMBOL vmlinux 0xca0588ad dev_addr_flush -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca10ef13 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0xca188696 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0xca1b62e9 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get -EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state -EXPORT_SYMBOL vmlinux 0xca3c92e6 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xca4a8a40 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xca5a1dec qdisc_reset -EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent -EXPORT_SYMBOL vmlinux 0xca7235ac pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xca825895 pmu_suspend -EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order -EXPORT_SYMBOL vmlinux 0xca8a3df7 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca9798f9 tcp_seq_open -EXPORT_SYMBOL vmlinux 0xca9ce6ef giveup_fpu -EXPORT_SYMBOL vmlinux 0xcaa029de in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xcaabf3f9 pasemi_write_iob_reg -EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty -EXPORT_SYMBOL vmlinux 0xcad274bf dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xcae1c661 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xcae8a8e9 __ps2_command -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcaf56bf9 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0xcb00860a devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb11d0da key_revoke -EXPORT_SYMBOL vmlinux 0xcb408e2a of_get_mac_address -EXPORT_SYMBOL vmlinux 0xcb62a813 phy_start_aneg -EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc3b94e eeh_check_failure -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbca2b4f tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xcbe8b038 _lv1_configure_execution_time_variable -EXPORT_SYMBOL vmlinux 0xcbe91879 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0xcbf1acdd tcp_proc_register -EXPORT_SYMBOL vmlinux 0xcc0d061d of_mm_gpiochip_remove -EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc25b5b8 tty_port_close_end -EXPORT_SYMBOL vmlinux 0xcc28870f tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc6fc07e sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xcc80bebd dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xcc836a25 compat_nf_getsockopt -EXPORT_SYMBOL vmlinux 0xcc89c246 pasemi_dma_alloc_chan -EXPORT_SYMBOL vmlinux 0xcc921b76 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xcc963f1d compat_sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xcc97ecbc jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xcca81551 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xccab082a backlight_force_update -EXPORT_SYMBOL vmlinux 0xccbec23c pnv_cxl_release_hwirq_ranges -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccd11828 inet_ioctl -EXPORT_SYMBOL vmlinux 0xccd174a1 set_posix_acl -EXPORT_SYMBOL vmlinux 0xccf104c9 agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xcd236903 mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd3d62c9 pcie_set_mps -EXPORT_SYMBOL vmlinux 0xcd45c557 param_ops_byte -EXPORT_SYMBOL vmlinux 0xcd557ac0 tty_devnum -EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xcd637bd6 input_free_device -EXPORT_SYMBOL vmlinux 0xcd769f62 _lv1_gpu_device_map -EXPORT_SYMBOL vmlinux 0xcd76f81f of_get_parent -EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xcdaa37ac inet_add_protocol -EXPORT_SYMBOL vmlinux 0xcdb0ea78 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xcdb7faec fifo_set_limit -EXPORT_SYMBOL vmlinux 0xcdb9fd1c cdev_del -EXPORT_SYMBOL vmlinux 0xcdc176e2 get_super -EXPORT_SYMBOL vmlinux 0xcdc1ceb8 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdcbae18 vio_cmo_set_dev_desired -EXPORT_SYMBOL vmlinux 0xcdfb65e2 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xce0ce084 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xce194153 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xce2053d6 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce34ab39 of_gpio_simple_xlate -EXPORT_SYMBOL vmlinux 0xce3b3f09 profile_pc -EXPORT_SYMBOL vmlinux 0xce409cda pmac_set_early_video_resume -EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce6b2269 dentry_unhash -EXPORT_SYMBOL vmlinux 0xce6ed521 of_get_address -EXPORT_SYMBOL vmlinux 0xce74c24f dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0xce77e79d kmem_cache_size -EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift -EXPORT_SYMBOL vmlinux 0xce96d7b5 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free -EXPORT_SYMBOL vmlinux 0xceb4c937 ps2_command -EXPORT_SYMBOL vmlinux 0xcecf2c75 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xced777cb proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0xced938fa tcp_disconnect -EXPORT_SYMBOL vmlinux 0xcee5d187 dentry_update_name_case -EXPORT_SYMBOL vmlinux 0xcef22cf2 of_device_unregister -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf3d4176 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xcf61ebd0 blk_end_request -EXPORT_SYMBOL vmlinux 0xcf80eb6f do_truncate -EXPORT_SYMBOL vmlinux 0xcfb1f430 blk_start_request -EXPORT_SYMBOL vmlinux 0xcfb7d5a0 cpu_sibling_map -EXPORT_SYMBOL vmlinux 0xcfcee75a bio_integrity_endio -EXPORT_SYMBOL vmlinux 0xcfd0c36d lro_flush_all -EXPORT_SYMBOL vmlinux 0xcfeb384d sock_kmalloc -EXPORT_SYMBOL vmlinux 0xd0102d58 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0xd0354024 pci_disable_msi -EXPORT_SYMBOL vmlinux 0xd03e0326 ibmebus_unregister_driver -EXPORT_SYMBOL vmlinux 0xd03e79c1 mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0xd03f1e83 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xd04d1e09 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0xd05931ec _lv1_set_lpm_counter_control -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd086c81d nf_register_hook -EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a88e27 bio_split -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0bbd91c filp_close -EXPORT_SYMBOL vmlinux 0xd0d00cf6 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xd0d02c90 complete_request_key -EXPORT_SYMBOL vmlinux 0xd0e4e7c9 eth_header -EXPORT_SYMBOL vmlinux 0xd0e89f27 get_unmapped_area -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd111b6c4 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf -EXPORT_SYMBOL vmlinux 0xd14cdb3c scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd18438ea ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xd1a6e6cf posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0xd1bf8137 dquot_scan_active -EXPORT_SYMBOL vmlinux 0xd1bf96fb gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0xd1c1aeea tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xd1cad558 security_path_link -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1fc3f78 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0xd1fe8ebb _lv1_get_spe_interrupt_status -EXPORT_SYMBOL vmlinux 0xd212dca6 mutex_unlock -EXPORT_SYMBOL vmlinux 0xd21af9ab xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xd21bae40 devfreq_add_device -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd2586ddd dev_remove_offload -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd25f7a97 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd2883147 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc -EXPORT_SYMBOL vmlinux 0xd2b12a6a vfs_mknod -EXPORT_SYMBOL vmlinux 0xd2b89cdc input_allocate_device -EXPORT_SYMBOL vmlinux 0xd2c2e75b textsearch_unregister -EXPORT_SYMBOL vmlinux 0xd2d51cbe simple_setattr -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e5aa1f netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0xd2ef2638 smu_cmdbuf_abs -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd31d1f0a ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xd3299aa7 input_flush_device -EXPORT_SYMBOL vmlinux 0xd32fca2c scsi_target_resume -EXPORT_SYMBOL vmlinux 0xd35213a5 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xd3609377 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd3788441 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xd38c15d6 tso_build_hdr -EXPORT_SYMBOL vmlinux 0xd3a732ab blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xd3a83eae bio_init -EXPORT_SYMBOL vmlinux 0xd3b8754b unregister_qdisc -EXPORT_SYMBOL vmlinux 0xd3ba4e0b should_remove_suid -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3c3788f request_key -EXPORT_SYMBOL vmlinux 0xd3e32253 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0xd3ea3607 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xd3efabf7 of_find_node_with_property -EXPORT_SYMBOL vmlinux 0xd3fddcbb ppp_channel_index -EXPORT_SYMBOL vmlinux 0xd409383c pmu_request -EXPORT_SYMBOL vmlinux 0xd40ac746 sys_fillrect -EXPORT_SYMBOL vmlinux 0xd4198691 scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0xd4223258 agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm -EXPORT_SYMBOL vmlinux 0xd45ad655 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd487f22b lookup_bdev -EXPORT_SYMBOL vmlinux 0xd48e37a4 put_disk -EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed -EXPORT_SYMBOL vmlinux 0xd49aa9ec elevator_init -EXPORT_SYMBOL vmlinux 0xd4db6185 nf_getsockopt -EXPORT_SYMBOL vmlinux 0xd51a6af5 of_get_property -EXPORT_SYMBOL vmlinux 0xd51c296c invalidate_bdev -EXPORT_SYMBOL vmlinux 0xd53422ee jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xd5443565 pci_get_subsys -EXPORT_SYMBOL vmlinux 0xd546abe1 md_update_sb -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd5592aad nf_log_register -EXPORT_SYMBOL vmlinux 0xd55d1b2d inet6_del_offload -EXPORT_SYMBOL vmlinux 0xd569a967 __kfree_skb -EXPORT_SYMBOL vmlinux 0xd581f7de blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xd5855bbb param_set_uint -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd5b9a04e pci_select_bars -EXPORT_SYMBOL vmlinux 0xd5c4b750 dquot_get_state -EXPORT_SYMBOL vmlinux 0xd5d228ac pcim_enable_device -EXPORT_SYMBOL vmlinux 0xd5e1d719 _lv1_set_ppe_periodic_tracer_frequency -EXPORT_SYMBOL vmlinux 0xd5f40591 blk_start_queue -EXPORT_SYMBOL vmlinux 0xd60b7d0a drop_nlink -EXPORT_SYMBOL vmlinux 0xd60d124b simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xd61324a0 do_splice_from -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd627eb09 dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0xd6293937 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd63aded3 mdiobus_read -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd682da11 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68cd1e5 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0xd6a8b218 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0xd6b8ce27 rwsem_wake -EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0xd6edf811 _lv1_release_memory -EXPORT_SYMBOL vmlinux 0xd6ee3d39 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f37ce6 nonseekable_open -EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 -EXPORT_SYMBOL vmlinux 0xd7124b91 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0xd72e1cfc _lv1_set_lpm_spr_trigger -EXPORT_SYMBOL vmlinux 0xd74097a1 __frontswap_test -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd76119ab pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot -EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 -EXPORT_SYMBOL vmlinux 0xd7ad1dfe from_kuid_munged -EXPORT_SYMBOL vmlinux 0xd7c3be68 __neigh_event_send -EXPORT_SYMBOL vmlinux 0xd7c93416 posix_test_lock -EXPORT_SYMBOL vmlinux 0xd7d050f2 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f571d9 neigh_destroy -EXPORT_SYMBOL vmlinux 0xd803db70 agp_unbind_memory -EXPORT_SYMBOL vmlinux 0xd807fa9b xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xd80a1234 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0xd80bc2dc pci_get_slot -EXPORT_SYMBOL vmlinux 0xd81eac9f ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0xd84e3d14 mmc_put_card -EXPORT_SYMBOL vmlinux 0xd8584f57 nvm_end_io -EXPORT_SYMBOL vmlinux 0xd8597db7 sk_dst_check -EXPORT_SYMBOL vmlinux 0xd86eadc7 find_vma -EXPORT_SYMBOL vmlinux 0xd8909fc2 register_filesystem -EXPORT_SYMBOL vmlinux 0xd89cab39 mmc_release_host -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd89e5000 submit_bio -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8ac28b3 mdiobus_write -EXPORT_SYMBOL vmlinux 0xd8b33a30 dcache_readdir -EXPORT_SYMBOL vmlinux 0xd8b717f6 lock_fb_info -EXPORT_SYMBOL vmlinux 0xd8bb28a0 dput -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8ed77ee blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0xd8f69487 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xd933bbdc phy_start_interrupts -EXPORT_SYMBOL vmlinux 0xd9342273 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xd94a3bf1 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xd9641ed4 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xd9c9375d elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0xd9ccd603 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xd9cffb07 flush_dcache_icache_page -EXPORT_SYMBOL vmlinux 0xd9d4d09d _lv1_release_io_segment -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9e150ab pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xd9ee9e32 simple_open -EXPORT_SYMBOL vmlinux 0xd9ff0fbd of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0xda04caca dma_sync_wait -EXPORT_SYMBOL vmlinux 0xda05e769 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xda06211b fb_pan_display -EXPORT_SYMBOL vmlinux 0xda06814b release_pages -EXPORT_SYMBOL vmlinux 0xda0f5234 rtas_offline_cpus_mask -EXPORT_SYMBOL vmlinux 0xda2e0140 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0xda39b0ed file_ns_capable -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda512df4 seq_putc -EXPORT_SYMBOL vmlinux 0xda53dee2 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda994bb7 unregister_cdrom -EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xdaa25090 pci_get_device -EXPORT_SYMBOL vmlinux 0xdabc1ea8 fsl_lbc_find -EXPORT_SYMBOL vmlinux 0xdac03ed9 netif_napi_add -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac545b9 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xdade999c memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xdae85e43 noop_llseek -EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell -EXPORT_SYMBOL vmlinux 0xdaf1b4d5 simple_readpage -EXPORT_SYMBOL vmlinux 0xdafc086a xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find -EXPORT_SYMBOL vmlinux 0xdb114097 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xdb15abfb alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xdb2702b6 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0xdb28c6a4 blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0xdb4ecc5f mfd_add_devices -EXPORT_SYMBOL vmlinux 0xdb55c43d netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xdb599f08 add_disk -EXPORT_SYMBOL vmlinux 0xdb5ca272 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xdb60718d nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7fcfc2 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xdb85cf74 nf_log_unset -EXPORT_SYMBOL vmlinux 0xdba10346 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xdbb9982b ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0xdbf54473 skb_dequeue -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xdc2b0f93 done_path_create -EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc509ce5 vfs_rmdir -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc756a37 release_sock -EXPORT_SYMBOL vmlinux 0xdc9498dd down -EXPORT_SYMBOL vmlinux 0xdc9de9e1 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xdca5d9a5 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdcd897d6 tcf_hash_insert -EXPORT_SYMBOL vmlinux 0xdcdb96f0 of_get_next_child -EXPORT_SYMBOL vmlinux 0xdce8b9d3 dma_iommu_ops -EXPORT_SYMBOL vmlinux 0xdcefb9a5 pmu_resume -EXPORT_SYMBOL vmlinux 0xdcfa30af blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0xdd1dd662 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xdd1e15cd of_platform_device_create -EXPORT_SYMBOL vmlinux 0xdd208dfe netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xdd3ab713 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0xdd539be2 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xdd5f6f9e pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xdd60858d dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd8921e5 md_write_start -EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer -EXPORT_SYMBOL vmlinux 0xdd955144 __debugger -EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xddc37d92 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0xddc5e154 scsi_add_device -EXPORT_SYMBOL vmlinux 0xddde640a fb_set_cmap -EXPORT_SYMBOL vmlinux 0xddf23b29 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0xde22e267 bio_add_page -EXPORT_SYMBOL vmlinux 0xde2c5937 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xde399fa2 of_node_get -EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0xde64e98a swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0xde783883 pSeries_disable_reloc_on_exc -EXPORT_SYMBOL vmlinux 0xde8b6fbb ps3_sb_event_receive_port_setup -EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xded691f7 alloc_file -EXPORT_SYMBOL vmlinux 0xdef47481 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xdf0437b0 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf34977e param_ops_bint -EXPORT_SYMBOL vmlinux 0xdf4710a9 eth_type_trans -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf60fc83 _lv1_net_start_tx_dma -EXPORT_SYMBOL vmlinux 0xdf68a952 __pci_enable_wake -EXPORT_SYMBOL vmlinux 0xdf6c3091 vfs_unlink -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf98c27f inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xdfc896d3 tty_hangup -EXPORT_SYMBOL vmlinux 0xdff38452 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xe041b1f4 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe053fa1a xattr_full_name -EXPORT_SYMBOL vmlinux 0xe058e08f scsi_print_command -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe08d7e7b scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0dbd5e4 pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0xe0ffdac3 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xe1092a6f dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xe11194cb debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe11b4c9e dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xe12c6882 of_get_cpu_node -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe1457625 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0xe16c1736 sk_common_release -EXPORT_SYMBOL vmlinux 0xe16cd1d6 dev_err -EXPORT_SYMBOL vmlinux 0xe16da9c8 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe1ed63aa i8042_remove_filter -EXPORT_SYMBOL vmlinux 0xe1ff1e52 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0xe204ab38 kobject_del -EXPORT_SYMBOL vmlinux 0xe20c63e7 _lv1_unmap_device_mmio_region -EXPORT_SYMBOL vmlinux 0xe2172767 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0xe220ceb8 __debugger_sstep -EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL vmlinux 0xe2316779 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe23d4a96 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0xe240532e sock_recvmsg -EXPORT_SYMBOL vmlinux 0xe245356e nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe296d9cc inet6_release -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2ac17e4 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock -EXPORT_SYMBOL vmlinux 0xe2c7fab0 ppp_input -EXPORT_SYMBOL vmlinux 0xe2cce1a3 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xe2ce5e73 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xe2d4779b blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0xe2d484b7 vfs_setpos -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2fc0247 sk_stop_timer -EXPORT_SYMBOL vmlinux 0xe2ffb51e phy_print_status -EXPORT_SYMBOL vmlinux 0xe3020a1c free_buffer_head -EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0xe33df04c of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xe348da5e __netif_schedule -EXPORT_SYMBOL vmlinux 0xe3563a29 save_mount_options -EXPORT_SYMBOL vmlinux 0xe368056f inet_recvmsg -EXPORT_SYMBOL vmlinux 0xe38d1b80 vio_unregister_device -EXPORT_SYMBOL vmlinux 0xe3a53f4c sort -EXPORT_SYMBOL vmlinux 0xe3b65a54 nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0xe3ba5003 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3d8b286 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0xe3ed36bd start_tty -EXPORT_SYMBOL vmlinux 0xe4087d7e scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xe4155b1e napi_gro_frags -EXPORT_SYMBOL vmlinux 0xe43fc749 proc_set_user -EXPORT_SYMBOL vmlinux 0xe4531a5c mpage_writepage -EXPORT_SYMBOL vmlinux 0xe47abd0d dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe48991b1 pskb_expand_head -EXPORT_SYMBOL vmlinux 0xe48fc4d2 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0xe4a52358 generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0xe4ad758c dev_get_stats -EXPORT_SYMBOL vmlinux 0xe4ae0db9 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0xe4df03ba nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xe4e0be83 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xe4f1d68a abx500_register_ops -EXPORT_SYMBOL vmlinux 0xe4f88b45 vga_tryget -EXPORT_SYMBOL vmlinux 0xe4fa3e23 __init_rwsem -EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe527a70b phy_device_remove -EXPORT_SYMBOL vmlinux 0xe52da1a2 dup_iter -EXPORT_SYMBOL vmlinux 0xe54c6f72 mount_bdev -EXPORT_SYMBOL vmlinux 0xe55a8b5b capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xe56233d0 nd_btt_probe -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe5886346 setattr_copy -EXPORT_SYMBOL vmlinux 0xe58e14bf genphy_read_status -EXPORT_SYMBOL vmlinux 0xe5b0f580 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xe5c018a7 pci_disable_msix -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5db1599 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0xe5dffed7 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xe5e5fe96 __skb_checksum -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe60988ac _lv1_query_logical_partition_address_region_info -EXPORT_SYMBOL vmlinux 0xe6142bb6 phy_detach -EXPORT_SYMBOL vmlinux 0xe630824a mdiobus_scan -EXPORT_SYMBOL vmlinux 0xe6462a34 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xe675bb76 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe6abbe94 machine_id -EXPORT_SYMBOL vmlinux 0xe6af8d30 mmc_start_bkops -EXPORT_SYMBOL vmlinux 0xe6b6c11e netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xe6bcb677 elevator_exit -EXPORT_SYMBOL vmlinux 0xe6f7cf22 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe73838b3 n_tty_compat_ioctl_helper -EXPORT_SYMBOL vmlinux 0xe741424a sock_kfree_s -EXPORT_SYMBOL vmlinux 0xe7428472 agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0xe74aa406 _lv1_set_dabr -EXPORT_SYMBOL vmlinux 0xe751127c param_set_copystring -EXPORT_SYMBOL vmlinux 0xe7529b9a pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0xe75b93d3 blk_register_region -EXPORT_SYMBOL vmlinux 0xe773ebc7 mmc_power_save_host -EXPORT_SYMBOL vmlinux 0xe77a4ed2 bprm_change_interp -EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7b10040 tty_name -EXPORT_SYMBOL vmlinux 0xe7c4d5c6 set_page_dirty -EXPORT_SYMBOL vmlinux 0xe7cd99b7 smu_queue_simple -EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7e9d949 genphy_resume -EXPORT_SYMBOL vmlinux 0xe7f5ff16 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xe7f6f1c2 param_get_long -EXPORT_SYMBOL vmlinux 0xe8050ab1 dev_mc_add -EXPORT_SYMBOL vmlinux 0xe8194876 have_submounts -EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe8225dc6 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0xe824075f devfreq_interval_update -EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xe83890bd i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0xe896e953 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8b45061 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8c438f3 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0xe8cba548 ata_link_printk -EXPORT_SYMBOL vmlinux 0xe8ccff25 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xe8d9b8c8 __frontswap_store -EXPORT_SYMBOL vmlinux 0xe8e18994 i2c_clients_command -EXPORT_SYMBOL vmlinux 0xe8ed9c0b qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 -EXPORT_SYMBOL vmlinux 0xe90dfe92 genlmsg_put -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe928f74b mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next -EXPORT_SYMBOL vmlinux 0xe9394801 revert_creds -EXPORT_SYMBOL vmlinux 0xe9415ec1 module_put -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe961f867 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0xe96acd68 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0xe970a324 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xe998f96f pci_request_region -EXPORT_SYMBOL vmlinux 0xe9abfb5d mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0xe9b75a70 input_set_abs_params -EXPORT_SYMBOL vmlinux 0xe9d41eb4 fsync_bdev -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea08d3f9 netif_carrier_off -EXPORT_SYMBOL vmlinux 0xea1cd247 bio_phys_segments -EXPORT_SYMBOL vmlinux 0xea1f82c3 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xea290669 vfs_readf -EXPORT_SYMBOL vmlinux 0xea2fdaec bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xea38a8b1 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0xea442524 may_umount_tree -EXPORT_SYMBOL vmlinux 0xea6280da pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xea664eb2 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit -EXPORT_SYMBOL vmlinux 0xea96ee2b __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xea97cd95 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0xeab43f93 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xeab86ecc __register_binfmt -EXPORT_SYMBOL vmlinux 0xeb041c21 always_delete_dentry -EXPORT_SYMBOL vmlinux 0xeb3530f9 down_write -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb6b283d mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xeb7500ab kernel_sendpage -EXPORT_SYMBOL vmlinux 0xeb7cd009 abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count -EXPORT_SYMBOL vmlinux 0xeb9f3a75 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present -EXPORT_SYMBOL vmlinux 0xebbc9138 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xebcab3a6 ppc_pci_io -EXPORT_SYMBOL vmlinux 0xebe3af9e blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xebed6f92 qdisc_destroy -EXPORT_SYMBOL vmlinux 0xebf82ef0 page_symlink -EXPORT_SYMBOL vmlinux 0xebfaaa64 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xec0c7b68 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xec141445 __brelse -EXPORT_SYMBOL vmlinux 0xec17ffcd scm_detach_fds -EXPORT_SYMBOL vmlinux 0xec281705 pmac_resume_agp_for_card -EXPORT_SYMBOL vmlinux 0xec30765a _lv1_allocate_io_segment -EXPORT_SYMBOL vmlinux 0xec3efde4 scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0xec426fcc generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xec65f1fb pci_save_state -EXPORT_SYMBOL vmlinux 0xec666cea dev_get_by_name -EXPORT_SYMBOL vmlinux 0xec972921 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 -EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xecdbfe74 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecebc451 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xecefa83b account_page_redirty -EXPORT_SYMBOL vmlinux 0xed30aca9 lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0xed38bc9f ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed5b081c twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0xed652427 _lv1_set_interrupt_mask -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xeda8a0a1 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedbed6be sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table -EXPORT_SYMBOL vmlinux 0xedcae805 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xedddaa66 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0xedde7735 inet6_add_offload -EXPORT_SYMBOL vmlinux 0xede7f8c4 __f_setown -EXPORT_SYMBOL vmlinux 0xede8e90c eth_validate_addr -EXPORT_SYMBOL vmlinux 0xedf0b48c _lv1_storage_get_async_status -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xedf7f9e7 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xee10e8a7 clear_inode -EXPORT_SYMBOL vmlinux 0xee20e3cd mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xee2206de of_translate_dma_address -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee2d5bc5 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xee5bb20b _lv1_panic -EXPORT_SYMBOL vmlinux 0xee8cfb8b jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0xee9174c5 _lv1_storage_read -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeae8d6b uart_remove_one_port -EXPORT_SYMBOL vmlinux 0xeeb0b3a4 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0xeeb75a50 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xeec0d236 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xef3ce3fd mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0xef4eaac1 dev_uc_add -EXPORT_SYMBOL vmlinux 0xef5cf8e1 agp_backend_acquire -EXPORT_SYMBOL vmlinux 0xef621b86 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xef638ae3 kmem_cache_free -EXPORT_SYMBOL vmlinux 0xef8beeb4 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0xef9ab563 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xefa55e9d devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0xefa9de67 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0xefc2e54d _lv1_storage_send_device_command -EXPORT_SYMBOL vmlinux 0xefc66b26 nf_log_trace -EXPORT_SYMBOL vmlinux 0xefd120ad cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range -EXPORT_SYMBOL vmlinux 0xefdf3f8b swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0xefe39136 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0xefff7b72 max8925_reg_read -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0xf069274c __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xf077cf97 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xf07e98e4 tso_count_descs -EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0xf08063f3 cfb_fillrect -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xf0a93880 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xf0ae7af5 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xf0bccaea macio_dev_get -EXPORT_SYMBOL vmlinux 0xf0d2f84a _lv1_gpu_context_free -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf0f5c1fc phy_register_fixup -EXPORT_SYMBOL vmlinux 0xf0f77c77 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible -EXPORT_SYMBOL vmlinux 0xf11d745c kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xf1398a6d lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf14c4d8b ll_rw_block -EXPORT_SYMBOL vmlinux 0xf15ab5f0 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xf15ce51d tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xf1685427 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0xf1712c24 clear_nlink -EXPORT_SYMBOL vmlinux 0xf183189b __ioremap_at -EXPORT_SYMBOL vmlinux 0xf189e52e xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19e22fe sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xf1c7eac0 read_dev_sector -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1de5f94 vme_irq_handler -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1fdce34 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock -EXPORT_SYMBOL vmlinux 0xf23552f1 skb_seq_read -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf2445d76 ata_port_printk -EXPORT_SYMBOL vmlinux 0xf24c00a3 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xf24dcaa8 _lv1_net_stop_rx_dma -EXPORT_SYMBOL vmlinux 0xf274af67 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0xf2a3c721 xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2d1188e napi_gro_receive -EXPORT_SYMBOL vmlinux 0xf2d901d1 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xf30caa45 softnet_data -EXPORT_SYMBOL vmlinux 0xf30d1036 _lv1_start_ppe_periodic_tracer -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue -EXPORT_SYMBOL vmlinux 0xf3297b88 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf357db8d pasemi_dma_set_flag -EXPORT_SYMBOL vmlinux 0xf370799f skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xf37ae5d0 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0xf37ba419 mount_ns -EXPORT_SYMBOL vmlinux 0xf3847fdd bdev_read_only -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf39fe506 user_path_at_empty -EXPORT_SYMBOL vmlinux 0xf3a8f1b3 nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xf3b5e959 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xf3bfb3eb xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0xf3c8b9e2 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xf3e56503 pagecache_get_page -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3e8f01d reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0xf3f592f8 nf_log_packet -EXPORT_SYMBOL vmlinux 0xf3ff84bb blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0xf40a951f locks_mandatory_area -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf4465f52 phy_init_eee -EXPORT_SYMBOL vmlinux 0xf4502cd3 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0xf459a33f bdi_register_owner -EXPORT_SYMBOL vmlinux 0xf46669ff pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xf4736ecb nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4b5d757 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xf4b5d80f mmc_fixup_device -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4cd4314 pcim_iomap -EXPORT_SYMBOL vmlinux 0xf4d1580f tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xf4dcc578 cdrom_release -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f52c23 md_finish_reshape -EXPORT_SYMBOL vmlinux 0xf4f9a0fa pci_choose_state -EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0xf529c9ef call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xf5313e33 zpool_register_driver -EXPORT_SYMBOL vmlinux 0xf539e327 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf559e298 param_set_long -EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 -EXPORT_SYMBOL vmlinux 0xf565936c elevator_alloc -EXPORT_SYMBOL vmlinux 0xf571824f agp_collect_device_status -EXPORT_SYMBOL vmlinux 0xf578578f may_umount -EXPORT_SYMBOL vmlinux 0xf57901a1 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xf57d9d89 seq_file_path -EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set -EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5dfeab6 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister -EXPORT_SYMBOL vmlinux 0xf5e9106b ip_defrag -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf6021942 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0xf60443a0 simple_transaction_get -EXPORT_SYMBOL vmlinux 0xf607765b register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xf6213e12 pasemi_dma_clear_flag -EXPORT_SYMBOL vmlinux 0xf63017fb deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf663e3eb dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xf664ab21 vme_irq_generate -EXPORT_SYMBOL vmlinux 0xf665d089 mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0xf66721c8 tty_register_device -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf6785bf0 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xf67b7eb4 nd_device_register -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf694cf49 set_nlink -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6bba882 skb_make_writable -EXPORT_SYMBOL vmlinux 0xf6ddc0c3 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xf6df9a57 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xf6e59ba7 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6ecb763 _lv1_send_event_locally -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf7589331 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xf760293c kill_block_super -EXPORT_SYMBOL vmlinux 0xf762605d compat_mc_getsockopt -EXPORT_SYMBOL vmlinux 0xf7835e65 sock_no_mmap -EXPORT_SYMBOL vmlinux 0xf78db1d7 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0xf79a541e down_write_trylock -EXPORT_SYMBOL vmlinux 0xf7b61ec3 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0xf7bac0ec _lv1_set_lpm_counter -EXPORT_SYMBOL vmlinux 0xf7bc6100 mach_pasemi -EXPORT_SYMBOL vmlinux 0xf7dfc698 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xf7e28391 blk_sync_queue -EXPORT_SYMBOL vmlinux 0xf8004bfd _lv1_disconnect_interrupt_event_receive_port -EXPORT_SYMBOL vmlinux 0xf803ed40 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf82005ac of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82cc914 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf834e8b4 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0xf8507674 blk_get_queue -EXPORT_SYMBOL vmlinux 0xf869a847 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xf87940df check_disk_change -EXPORT_SYMBOL vmlinux 0xf8a7111d get_io_context -EXPORT_SYMBOL vmlinux 0xf8b58a9a tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xf8c88246 __neigh_create -EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0xf8e01f0c current_fs_time -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf8f2d22b genphy_setup_forced -EXPORT_SYMBOL vmlinux 0xf9027f92 i2c_release_client -EXPORT_SYMBOL vmlinux 0xf90e4902 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xf917c85d follow_down_one -EXPORT_SYMBOL vmlinux 0xf9209c41 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0xf964c65b genphy_config_init -EXPORT_SYMBOL vmlinux 0xf979f5f3 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xf985b5cf kernel_setsockopt -EXPORT_SYMBOL vmlinux 0xf9954e3a free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xf99b317e sock_alloc_file -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9a62fc9 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9cc0105 eeh_dev_release -EXPORT_SYMBOL vmlinux 0xf9ccce23 powerpc_debugfs_root -EXPORT_SYMBOL vmlinux 0xf9d33ee8 tcp_filter -EXPORT_SYMBOL vmlinux 0xf9dc2570 pnv_pci_get_phb_node -EXPORT_SYMBOL vmlinux 0xf9f02f27 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0xf9fa3098 mmc_of_parse -EXPORT_SYMBOL vmlinux 0xf9fc2b49 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0xfa336321 abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0xfa368dad soft_cursor -EXPORT_SYMBOL vmlinux 0xfa4e1a2c mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5a3d8b seq_hex_dump -EXPORT_SYMBOL vmlinux 0xfa6f0052 km_policy_notify -EXPORT_SYMBOL vmlinux 0xfa816e79 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0xfa85123c abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0xfaa8f75c write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xfab4523b param_ops_ullong -EXPORT_SYMBOL vmlinux 0xfab59edb sg_miter_skip -EXPORT_SYMBOL vmlinux 0xfab74f07 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xfac1da49 key_unlink -EXPORT_SYMBOL vmlinux 0xfac7e3be jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfad72f33 tcp_connect -EXPORT_SYMBOL vmlinux 0xfadb5750 pmu_unlock -EXPORT_SYMBOL vmlinux 0xfae51cb7 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfaece29e pnv_cxl_ioda_msi_setup -EXPORT_SYMBOL vmlinux 0xfaf38262 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xfb0cecfd vm_event_states -EXPORT_SYMBOL vmlinux 0xfb1781c3 vfs_link -EXPORT_SYMBOL vmlinux 0xfb536c72 srp_reconnect_rport -EXPORT_SYMBOL vmlinux 0xfb63730f ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb70ec22 bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xfb741873 vio_disable_interrupts -EXPORT_SYMBOL vmlinux 0xfb8a35b3 generic_file_fsync -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfb953d74 sget_userns -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbad002b mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbc508c8 fb_show_logo -EXPORT_SYMBOL vmlinux 0xfbf03124 locks_init_lock -EXPORT_SYMBOL vmlinux 0xfbf0df81 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc0fe7af blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xfc149d4c udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node -EXPORT_SYMBOL vmlinux 0xfc675918 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xfc6ba467 prepare_creds -EXPORT_SYMBOL vmlinux 0xfc8a7a1d bdev_stack_limits -EXPORT_SYMBOL vmlinux 0xfc8aa755 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xfc8c203c phy_device_free -EXPORT_SYMBOL vmlinux 0xfc92c52e kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xfcb06775 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xfcbf279e inet_frags_init -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfce89218 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd0e9883 d_obtain_root -EXPORT_SYMBOL vmlinux 0xfd107a92 inc_nlink -EXPORT_SYMBOL vmlinux 0xfd1e5f6f phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xfd348411 __vfs_write -EXPORT_SYMBOL vmlinux 0xfd363b87 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xfd41db33 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xfd422526 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0xfd444f45 path_noexec -EXPORT_SYMBOL vmlinux 0xfd506b37 seq_write -EXPORT_SYMBOL vmlinux 0xfd63010b vme_register_driver -EXPORT_SYMBOL vmlinux 0xfd7a2582 generic_write_end -EXPORT_SYMBOL vmlinux 0xfd88bd95 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0xfd88f22a bdi_register -EXPORT_SYMBOL vmlinux 0xfd9123f6 blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0xfd91ba18 sk_receive_skb -EXPORT_SYMBOL vmlinux 0xfd9235a3 unregister_quota_format -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfd9cd2b9 brioctl_set -EXPORT_SYMBOL vmlinux 0xfdb526e2 sock_no_listen -EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp -EXPORT_SYMBOL vmlinux 0xfdf01a76 km_state_expired -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe0b4ce9 input_unregister_handle -EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids -EXPORT_SYMBOL vmlinux 0xfe4cb4b5 _lv1_storage_write -EXPORT_SYMBOL vmlinux 0xfe510ad1 i2c_master_recv -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe5e4f85 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xfe657c03 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xfe77579f mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xfe799b81 twl6040_power -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe820825 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe945e76 md_reload_sb -EXPORT_SYMBOL vmlinux 0xfea41a6d __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xfecbe42c of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0xfed221d9 pasemi_dma_alloc_ring -EXPORT_SYMBOL vmlinux 0xfeda2380 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfedf0213 md_cluster_mod -EXPORT_SYMBOL vmlinux 0xfee288d5 compat_tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xfee5c75a make_kprojid -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xff09c8df mdio_bus_type -EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff20a500 kthread_bind -EXPORT_SYMBOL vmlinux 0xff24cff2 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xff403a75 inode_set_flags -EXPORT_SYMBOL vmlinux 0xff408a8a sock_wmalloc -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xff78f73b remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xff8fd878 neigh_app_ns -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff97bd61 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffa2e727 pci_restore_state -EXPORT_SYMBOL vmlinux 0xffd36bf5 dev_remove_pack -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xfff06e1a dget_parent -EXPORT_SYMBOL vmlinux 0xfff754ea zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xfffd4ffc mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x02904c2b gfn_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x06b76390 kvm_put_kvm -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0740d283 vcpu_put -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0adfdfb2 kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x10169526 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x22c753bd kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x26424cce kvmppc_pr_ops -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x280f59bb gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2b639404 kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2c5c341d __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x30da6063 kvmppc_gpa_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x324be1cd kvmppc_handle_store -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x32d2e812 kvmppc_prepare_to_enter -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x39e26693 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3bee187d kvm_read_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x495dc4ff kvmppc_set_msr -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x52af9e8f gfn_to_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5741f955 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5929255b kvmppc_st -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5c8c6243 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5cfd7049 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5f4aac5e kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x60bb2b48 kvm_init -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x646113ea kvm_get_dirty_log -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x69400e88 kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6d1c4ee7 kvmppc_book3s_queue_irqprio -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6fedc95e kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x71499333 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x718faf0c gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x72baa8b1 kvmppc_xics_hcall -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7a44dc8e gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7a4ad931 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7d1a5f6d gfn_to_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x83d6de4f kvm_vcpu_init -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8518a4a6 kvm_clear_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x85a5a4b2 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x85f2cba6 vcpu_load -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x891d1eef kvmppc_core_queue_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8d6c5691 kvmppc_core_prepare_to_enter -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x91e07def kvmppc_core_pending_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x92286993 kvmppc_kvm_pv -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x92e5d7d7 kvmppc_emulate_mmio -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x944dbe75 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x96c24b17 kvm_unmap_hva -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9d0c57cd kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa0764b24 kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa5604c4b kvmppc_load_last_inst -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa8e5566b gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xab59d373 kvmppc_free_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xaccae4c9 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb06ecdb8 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb0bc4ad3 kvmppc_h_logical_ci_load -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb0e1281e kvmppc_handle_load -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb1809fe8 kvm_clear_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb63b2f0f kvmppc_core_queue_program -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb6470f21 kvmppc_rtas_hcall -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb7171609 kvmppc_ld -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbc923037 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbd2ca683 kvmppc_unfixup_split_real -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbdfedaf3 kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc1866bfe kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc27beabc gfn_to_hva -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc70e4b59 kvmppc_claim_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc44961f kvmppc_alloc_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcd2677a9 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xce758762 kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd1df5a2e kvm_read_guest_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd3c96e62 kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd5291f77 kvm_write_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xda36963e kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdcb4380d kvmppc_core_dequeue_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdd56f521 kvm_get_kvm -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdd987b51 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe6e8f0a0 kvmppc_sanity_check -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe9e2dc71 kvmppc_hv_ops -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe9eb6e2e kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xecc512af kvmppc_h_logical_ci_store -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xef11cb35 __tracepoint_kvm_ppc_instr -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xef5900fb mark_page_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf275f18f kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf404d5a5 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4da3546 kvmppc_init_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfdfe1d34 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0x9a0b4268 kvmppc_emulate_instruction -EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0x08a306d8 spufs_context_fops -EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0x3c172d6f spu_save -EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0xda13bfeb spu_restore -EXPORT_SYMBOL_GPL crypto/af_alg 0x0e35bfdf af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x19fb1363 af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0x2f61212f af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x49d7294f af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0x5f42a902 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x69a7f75f af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x8fc2b150 af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0xaf7af62f af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xb3d15c29 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xfea1610d af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xb934f6e0 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x24617131 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x5c84df04 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x7460ce1d async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x94f25583 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6da6fbf0 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x840bd034 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x991f0d08 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xaeb93473 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9fb8cc1b async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xcbf31ed1 async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xdf6b1db8 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xb143f72a cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x703ff6ba cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x384afe9a crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x56b7f328 crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x25218825 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x31378cab cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x37673ab5 cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x5a8f04b6 cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x77b2a241 cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x9ded7339 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xa37d173b cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xd1d04f29 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xe2f01c74 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xeb1071b3 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/lrw 0xfb0a490a lrw_crypt -EXPORT_SYMBOL_GPL crypto/mcryptd 0x1b095760 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0x4fd290bd mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0x550f254e shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0x78f6e8fc mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x7983afd1 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0xaeead860 shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0xb8406c8e mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0xedf14f4b shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x06b2ab16 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x52f6da33 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xa065770c crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xb6f5ab99 crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x091a600e serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x9d63dced twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0x70fa4edd xts_crypt -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x00f45bf1 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0577356a ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x17fc65db ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1ddf6b69 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2eee3bcd ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x37f07a93 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x46a0d471 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4c40bf48 ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4eeede33 ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x56048803 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x57cb0d3f ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5ab71dd7 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6b59d65b ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6fee57fb ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x74024a35 ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7a6b5dc8 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x866bee34 ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa97ace9a ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xad5d3291 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaf01beca ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbd7a62c9 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd12b5077 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf2a36159 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0a002dd5 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2894b8b1 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5a72be52 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x72666f65 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7273a093 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x73eb6266 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8973a57b ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9daeef82 ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xad6219ab ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xaf6209ab ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xba30e131 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdeee7dbb ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf9d2dcfc ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xc8b22f94 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xc181e24c sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x30db29ee __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4bc29a59 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x816d0357 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf9ce275b __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x012b3226 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0fba980e bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1671b527 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x19c79bf1 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2c61a311 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3483ba51 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x36ac4498 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3fddc68d bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x685d872d bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6d546fc4 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8222ee2b bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x841416b6 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x87e1e4e5 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x896a0bc3 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8a179a55 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9014e0f7 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9ae8106f bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc87c937f __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd04a006b bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd35f8b12 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdb824bbb bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdbb01015 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe82ec3f0 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf06f89de bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1274004d btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2db211f5 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x470884c4 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x75ac352c btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x873e6e3e btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xed2c2db7 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x051c115d btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x10d56fe2 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1a769d03 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x25f80d54 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x48babf91 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x56a61781 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5eb20ef9 btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb4cb1d57 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc43d459b btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf253bf05 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf3841e9d btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x029a1517 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x378f5d1b btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3ec15a65 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3f1ef085 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x418c29b6 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4be5afd4 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x84887563 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa0648127 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa4b77d7f btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd27d30ea btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe3b2491a btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7c179052 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xdfec81e6 qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x62534ac4 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7d092c87 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x1c9fde1a nx842_crypto_compress -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x1d3a27b8 nx842_crypto_decompress -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x5b20dc33 nx842_crypto_exit -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xdc770a1f nx842_crypto_init -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4292ccaa dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x642b8532 dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x809e63ae dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x94692a6b dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa7abbcb2 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x204558fa hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x46ddf6f1 hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x5e4e3091 hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x2cf211c1 vchan_find_desc -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x6cb4ed37 vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x99837eb1 vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xc2c843ca vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0bed48ed edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0ddf5e16 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x12ac5d25 find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x15f8f567 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x35750d0a edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4ae7c3f4 edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4b1551cb edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x57e0c956 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x66d4ed34 edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x67d5a116 edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x728a5073 edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x83759649 edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x978ebf40 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa03b4673 edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb5d6ad38 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbc5c52b6 edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc98e6786 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc9d51c8d edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcfcf5937 edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe4ced026 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xee26d478 edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xeebeb64b edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfbd326ae edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3bcbdf06 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x645cdac1 fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa7d2772f of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc676bf4b fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf946fb39 fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfea40be9 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xafc76ead bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xe2307f64 bgpio_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x42d83a8c __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xd6111ec6 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0658cd4e drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0ed16dfa of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x304d1f1c drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x41f08799 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4915d9bc drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x52c3a105 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6b7b6dae ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xa60adba9 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xcb7c0bf4 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0093f31b hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x09539a81 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x095a7c92 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0af48824 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x182e0bae __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x208505bc hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x21151890 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x248c8a1b __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x25c93d30 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x27683485 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2947fd80 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2ad35d5d hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3af8473f hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3ec0b601 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4629cd7a hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x582cd859 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6269cc47 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x70bd480d hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x788dd812 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7dedfb95 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x83682854 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x86d3440a hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x923ce447 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x94f0742f hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4ce91c7 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xac57e333 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb8aa9721 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbaf80c59 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc4a2435e hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc7adb874 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcb5d6fb2 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd7395556 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf2cb9646 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf90e91ba hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc1f33ab hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xff63db57 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xe74c27be roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x192b49ef roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x871d721a roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbbdfe68c roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xcc9431bf roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xdd3c8280 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xef26681a roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2a975803 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x514072e7 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x530afa8e sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7af2ca87 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x88169c99 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc2c9d336 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcb444069 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcfbe014b sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe4be893e sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xfea6babf hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0ce8a7ee hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1f1368c9 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x28270a69 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5ddf7d56 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x61adf38c hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6929311a hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7446e36f hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7d31c970 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x870c4538 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x90d9375d hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x97189b44 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaa4414f2 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xad55653e hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb1c42120 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcf37468a hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd7d16de6 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xedfe968e hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf0db6a5f hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x516c6303 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x937ff15e adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xea4ba9cb adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0ed5776d pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x13985b39 pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2101fddc pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3d7ddcc1 pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x63f5e5d8 pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6b7bb0f7 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6f709539 pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x82dfcd14 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc04148c1 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc1412f40 pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xda463228 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xedd6f43d pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfab5d3cd pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfbe5e686 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xff3a0a9c pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x059cb31a intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x076a9acf intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x30214c3f intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xae83d663 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xaed90052 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc48dcb99 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd0757d53 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x87e52c6e stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xae2c77aa stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb9a2a9b1 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf1c18fef stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfd6345ff stm_source_register_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x06536a11 i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x17437dad i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x3ed1fadb i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x4e50a6cd i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xf3b2993c i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x016d865d i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x72e2039a i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x8c819b4b i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xcc7a52c5 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x0d677999 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x57149a5f bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x966362b8 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0314866d ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x112918aa ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2a95158a ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x40f2512a ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6a944d95 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8adf443d ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x92ab897e ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x99b5a0c3 ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf369d7cd ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x01b4e61c iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x94c44d33 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xc3404b70 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xfcfbac40 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x77a1c5d1 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x82ca5a89 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe23a43dc bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0f611f70 adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x134ac12e adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x256a5dd2 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3c90ffaf adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4911efe4 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4e630931 adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6e998645 adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x926c785b adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xab2c8713 adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc12bf2c8 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdb707c03 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xeeea4410 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x029915cf iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x04edd1b3 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x11d9982c iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x13245201 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1eb3289f iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x22189456 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26270139 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x55bc7d7b iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5e592892 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x71bd1afa devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x72496599 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7be5dc0a iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fb829b9 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x81e4ae2a devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8574cdad iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x98032870 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9acce27d iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaa97add3 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb127819f iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb420879d iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb5412498 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc541083c iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc686312b iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcca379b3 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xccf125f1 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcece1baf devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe2c2347a iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf123acd1 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf7c0aadf iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf8899aa1 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc9be134 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xf90b80a4 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xdf0332e1 matrix_keypad_parse_of_params -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x25abbb54 adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x058e6f67 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x5ec39f70 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xfd48f128 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x1c2d0ed1 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x437f0d2b cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xfccf4e24 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x7d8b71fa cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xc0a3ae29 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2534548b tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x49ac7d83 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x604b4c0d tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xac0bef71 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x49996d2e wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4e7224cc wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x50936b2e wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x54277074 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5b1d346e wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6e72649e wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x70349c38 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7191ca02 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x85336db0 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x892cb662 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe9eef60b wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xed5aab95 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3b834fbd ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x518faf1a ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5e44398f ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x60d8008f ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x64d5e0cb ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb8659c0e ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc08a1747 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xde41a91d ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xec0b4a90 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0a1cf554 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x21c029d8 gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x26e2631f gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x31bea348 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x326552f5 gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6784f79f gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x687f5c3d gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7c756e74 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8fbd8703 gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x97a096f8 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb03b2b93 gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd97d8763 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdaa4165e gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xde309767 gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xec6f68a0 gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf06b1586 gigaset_start -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf0ea7355 gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x211e0f04 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2dea4acf led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa31e3714 led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc0c8aeba led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd7d75021 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf68d8faa led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x172f733e lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1b407fa1 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x55722fad lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9c556e1c lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb0469e3f lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb27eca73 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe0e0333a lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe34e8165 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xeca20ce6 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf4690d5a lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xfd40cbbb lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a0527be wf_register_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0fa9a4a6 wf_register_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x170b61fe wf_put_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x2d08d6ca wf_unregister_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x31fd8286 wf_register_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x8e375457 wf_unregister_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xdb55cc63 wf_get_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xdbbf2a86 wf_get_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xeb3aed80 wf_put_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_pid 0x9808f147 wf_pid_run -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_pid 0xb8ed5b2c wf_cpu_pid_init -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_pid 0xcd9a18ef wf_pid_init -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_pid 0xceda69f1 wf_cpu_pid_run -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_smu_sat 0xe05851d5 smu_sat_get_sdb_partition -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0987a61b mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1766162f mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x23ebae46 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3069776d mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4d95cac5 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5ddd8e02 mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6a72b6c3 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9d5a24d2 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa4ff28bb mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xac4b4b8c mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd4d5470d mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe7780144 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xec2d4d26 mcb_request_mem -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1ef9d5b2 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4d4f59b1 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4d91e98a dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x90c082ff dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xafafc633 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcf8988c8 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe996083f dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xec9227fb dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfa115c55 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7292f126 dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x195e2123 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3c065cab dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4fa0a6d9 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5b1b5cf3 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xaa0f453e dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb14e95a7 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf1bfdf29 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x632a75d1 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xba6cfb8b dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x0a35f274 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x22634a42 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3d8c7b86 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6a195190 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc5f53b5a dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf0923ae1 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0af3cd98 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x827a42f4 dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9f624559 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x07d7e316 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1254d272 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2e813492 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x44d2eb04 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x71aa813e saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7fb3359e saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9f6cf2aa saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xcb52e5af saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3815e46 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3f57ca2 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0ca4e161 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2aa8f533 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x42209033 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x53e213d7 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x58ff3894 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcbc140e1 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcf55def8 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x174d1ad9 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2cfef92c sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3fc5561a smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x536e578e smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5d0ce274 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6469fb79 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x691a8000 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6e8e4af2 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa3712018 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa3cb0857 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa9f2b0e6 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb4955e49 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb69ecce5 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbcb5b136 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbfacdba5 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe88f0924 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf8c2631b smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xc65ded41 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x82a62b4d cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xa04f17e1 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x00f39248 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0x0266710d media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x0f60686a __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0x0fed572d media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0x530a453e __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0x641d7d98 media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0x6eb8b278 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0x74e5ab10 media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0x754768e7 media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0x801b5a69 media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0x8345afc2 media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0xab69dae4 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xbd7f574d media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0xc99165be media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/media 0xcdeb4ff8 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0xd1d7d18c media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0xf7c91eeb media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0xfdce7acb media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xc6ae90fa cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1633ad3f mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x177d6ca5 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2c257f77 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2cbfef7a mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x401cb84c mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4f3883d8 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x58c0896c mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5f672f8c mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x772a86c6 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x82dfb741 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8b711d80 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9a4b0934 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9ae995bd mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9d400855 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa289afc3 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa756da1d mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd4e7c5c3 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe4faa96c mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeef1178b mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x109efc0d saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1630b67a saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3ae6d1de saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4c0e4f4f saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x502ccb99 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x66eb9c03 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8127cadd saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x92f5aa01 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9589dc3b saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x98046f95 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9ec94fa8 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa842b9dc saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xad61f268 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbb387a13 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc75e057c saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc89a516d saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdb870aa9 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdd0de9e4 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf4d00bae saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0e1a178e ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4dde80b6 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x50154e78 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb4192e20 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbdbda870 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd2daee67 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xef8c0078 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x02b9fd33 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7b283dd6 xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xbbdc4679 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xccd3ebad xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd7cc17a6 xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe2227add xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xff7f6953 xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xc1bbd3ff xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x70ae90c2 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xdd12c5a7 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x00b318d8 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1961b833 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x22d692a7 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2edab99c ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x59fdc054 rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x785f29f2 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x829b8937 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa310e27e ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa7bc57ec rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xac10c943 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbecdf79d rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc81544cd ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcdb8eac9 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcfe58b83 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe0b7a3a1 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeff31dcd rc_free_device -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xa99d6f01 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x5a0f0e68 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x134873c8 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xa1b13955 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x961c0857 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x4a692a87 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x065bb64d tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xa7a1a810 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xd41babbb tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x906378fb tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xeb21cd5f tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x02af6701 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x0b406a23 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x684be5b5 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x099eb7ca cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x191b0ba1 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2e11bd31 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x32f4dfdd cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x35ef8890 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3d269d7a cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x44365dc6 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x47af8afc is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x47f245ad cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5ed713a9 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x74469adc cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x78f41f1c cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x91f6878d cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9823a19f cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa9948ad6 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc0b8c4e3 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc0bebf39 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc622ea38 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xceb19390 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe4846480 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x8e0b136d mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xcda0cba9 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x08eac3c9 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x248ea345 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3a22b13d em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x598b43b0 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5c50fe79 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x68c60a92 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6e852930 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7990c67c em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x94d48d60 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9fc98173 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa8ee9c68 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaa7ddd84 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb8cc87ae em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbddaf2be em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd5f9c744 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe0792e85 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf4684efc em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfb66cf7b em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x1ceba117 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2551dc4e tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x482ee930 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x9b432ad0 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x1c948c55 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x6001ca98 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x6b371e43 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x78966849 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x9fc9ab04 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xfcaca066 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x4aecfce5 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xc76d7009 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x05d0ea72 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x122ae82c v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x13229b42 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1d9404d7 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2d9905ca v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x34a408e6 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x448d447b v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x461148c3 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4fa55185 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6527ebce v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c566964 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f8779f0 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x75e5760e v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7cd8cbe0 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x97bf4297 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa58891d2 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xac292a58 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaed28216 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb0c1f81a v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb6381ceb v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc2d429bc v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc7b7730a v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc931671e v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd8630f56 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe55c3623 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf5b09d26 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfce77841 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x078a6126 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x13a724de videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1c703b62 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x214194dc videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x216e06e0 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7785977a videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x77ab77a7 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7958d3df videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x81ebd11c videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x87434b70 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x94cf5a43 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa9578b43 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc29372ce videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc62e35eb videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc73f2956 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xccfa3468 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcd763496 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd060f228 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd2f490a5 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd89d5cd0 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd9ebd31f videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xef060be8 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf03b9c7e videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfefc6dd7 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6a2281ad videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xba90c970 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xcfb38789 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xfb65fda3 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x7c3426f9 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x9deb9c56 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xaf31d1c6 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x03ad5fcf vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1328069a vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2b575cc3 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x30eb4f04 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x323baf90 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5404ffad vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x637a470d vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x67ae5f6e vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x68470d6d vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6bf847cf vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6c84467e vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6cdb2131 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6db9cd77 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7c54cbb1 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xad1661fb vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd052a01a vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xeaf9a471 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfeba90c0 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x8bb580e6 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xf1f2f24b vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x07eae124 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x49abc7f5 vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x4174fad2 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x00323b0c _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x03ac1487 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x12197ba9 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2668a3e4 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2ca178c7 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2e9497f4 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x30783785 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3cb98ce9 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x54cb7e6c vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x593bbe0f vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x67dc05c4 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x70fed6bc vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x756ffa8b vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8c1337a8 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x981781cd vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9c849d49 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9ca3c9a4 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9e7e2c4c vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa2ff21ec vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa8ad00ba vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb233fae3 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb33ca520 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb510f7ca vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb5f8767e vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbe7c6f50 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc105c42f vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc88d89e9 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdcaa9d51 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdf6002b7 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xea0d56dd vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xed3c4786 vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf6322410 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x45d9740d vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x03a307d0 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x04c9d06a v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0eba49da v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x169e1cb2 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x192a8c34 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1aea552d v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f41cc81 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x239783ff v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x29aa7e09 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31153598 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x430afedd v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50324d55 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5bc5cfbe v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e3f09b4 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x753468b9 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78283bda v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81eb53b3 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x87e83a97 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88546da1 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8ab3388d v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8ffbe3d3 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ab2c65d v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbeb5dd1a v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc1cbbc1b v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3112ddd v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd4e53db7 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdaad5753 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5f8ef5b v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf0f9bd52 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x8a3725aa pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xb20304c1 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xeb2a06e9 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x07976f79 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1669237a da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2efaba15 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3190a41f da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xad24b8ef da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc2da16b3 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc80d3592 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1a90795c kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4b96390f kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xab28e6be kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb4a0adbf kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb8466b97 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbda468c6 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe1847a17 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xed0fa41b kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x24189029 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4eac32e1 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xfe4e0e98 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1f0cb1f4 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3edfbbfc lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x536b64bd lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x61efe74b lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x693d6c69 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x72207af0 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe4c23ef8 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x1b2e69cf lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x302d4d69 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xeab2eb39 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0ea8efda mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x145f3632 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1ca71ab2 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x31f035a4 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5c1d5192 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc699cf20 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x10cae4bd pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x31f1205c pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4f2cb7d8 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x61872af8 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7e14ab52 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x87817d3d pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9ad63f04 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa00e04eb pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa11aee00 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xae5ae71f pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb6382222 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x225569a1 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xc71ec3c4 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2831a016 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x944b892d pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb6f15473 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe2b29d8d pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xec81b673 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x08c32829 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0a55d7fd rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0b10c19f rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0bac70dc rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1c5a17dd rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1e41366d rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x212d4617 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x21ecd0b0 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x30f3b31b rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x35e166be rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4135de55 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x47791038 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4afb869e rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5d340c76 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6cf7283e rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xab4a0adf rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb89b8ab2 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbaca653d rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc8ad322f rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcf2b53b1 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd3905055 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd5f0aed6 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdec193d6 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf6855718 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x19ad2fb2 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x23f47f4b rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3750f2df rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x40372b0e rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x413aa191 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5fcef475 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x73469712 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9c4bdc5c rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xae385561 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb234f392 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc0c1b4f4 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe6c29fb4 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf3d93ec2 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x08d10a29 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1497288b si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1988ee32 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c9f49e8 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x29cf9b96 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2c529cea si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x41e213b4 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x440e6e6b si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4c0ef646 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5254fe3a si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5e69cb49 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x61574d8d si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x750e9b47 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7ec171b6 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8bc26de9 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x90132056 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x960ab255 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x98e9e23c si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa0a402ad si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xad8cfc2c si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaf329eab si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb2bcdc7f si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb9bea7af si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbf3041b3 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc724c1cf si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd843722f si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd9623028 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdee7ed22 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3c7173c si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xef090650 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf2a5fc1d si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf726a71f si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf81d5f16 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfc378611 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x25276528 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2b9b0076 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x781a9120 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x9a2ad4bf sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xddb966d9 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x903e9b5e am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa5579945 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb6aaa544 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xca231e61 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x3202872e tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x7922077f tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xba951d79 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe4ddaf2f tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xf2d5bdeb ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x156b1df6 bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xa4ddebce bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xc9b970c4 bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xe24fcfd4 bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x26800dd5 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9056b666 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xbc8a0965 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xfd6b71d8 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x2f8ec7af cxl_perst_reloads_same_image -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x30993b7d cxl_get_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x33753a2c cxl_read_adapter_vpd -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x48804d8f cxl_dev_context_init -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x55f15dc9 cxl_psa_map -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x581f2c2e cxl_stop_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x73964868 cxl_set_master -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x75488b61 cxl_fd_ioctl -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7e0a7a65 cxl_map_afu_irq -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8740bc47 cxl_psa_unmap -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x94324cfa cxl_pci_to_cfg_record -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x97e8905a cxl_unmap_afu_irq -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa1d89269 cxl_fd_open -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa1df2550 cxl_allocate_afu_irqs -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa58de36c cxl_fd_poll -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xaca6c5a1 cxl_fd_release -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb80dcf7c cxl_get_fd -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xba49f018 cxl_fd_read -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc32e9752 cxl_fops_get_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd3c02f75 cxl_start_work -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd470a5bb cxl_afu_reset -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd878390b cxl_process_element -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe325708e cxl_release_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe523d2f3 cxl_fd_mmap -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe96fa01b cxl_free_afu_irqs -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf0e503e1 cxl_pci_to_afu -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xff3c2e70 cxl_start_context -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x011a15e0 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2c6937d2 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2f7894ce enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4b0e066f enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x63e379c6 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x977c4540 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xdccfbf1a enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xddd53244 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x09433ad0 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0ade78d8 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x118cf3a3 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7d3c598f lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8f0a24b8 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb240b735 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd88b9f5c lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf13e6328 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x611799db st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xe73dfb4f st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x02217609 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x040bc8bd sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x11c21e53 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3908ab3b sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5377c8e1 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6f793f4e sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x767832d8 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x805515cc sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x83d25eb3 sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x84217945 sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x871bcbe5 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x919cc2aa sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc7a9d8af sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe75f12b3 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2ac39278 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2ca4100d sdhci_get_of_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa56bfa40 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb0e40e0e sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbe99af36 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc1af8304 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd889b4ee sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdcda1612 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xedeabcb0 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x0829d4e3 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xca1ed49d cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xf537f175 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x195aac07 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x94f12851 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xeaa36381 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x7b640506 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x49f419a7 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x63192442 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe74813f4 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x029f5cdd mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0439892b mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0473dffc register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0a95df1f mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x113335be kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1c0da907 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x257782bb mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x269d9c28 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x27904a2c mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x36820e15 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3904e3ed mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4b8822f5 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x56a15d50 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x62fe5f2e mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6a9bb59f __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7316f006 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7625f403 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7ae530e4 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7e33a55f mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7fd175e9 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x81afc566 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8581eab8 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8b4d650a __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8f67c172 mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x92c2cc2b mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x937aa509 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9941257f mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9d46630d deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9f0e94c9 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa33d7790 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa3710b85 register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb0e46489 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb30b76b7 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9d6fe6b mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd79f4e1d get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdee3089e mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdfdacf60 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2230512 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xed5ed895 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf10d7bbc __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf23cee7f mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf5626a9e mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x392bf13c mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x6e2ee67f register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x8031b9f9 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x8cc57afa del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb4eee640 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xaa67b133 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xaae9f86b nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x6026e2f1 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x372bffe9 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xf38af7fa onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x1bee0a01 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0659780d ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0ae289ca ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x32216fe2 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x34ab42e8 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3b1a008b ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4ca230a4 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5469b18d ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x55e1eac6 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5e5fa11a ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8a5cb7e8 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9f9312be ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdb53bc52 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xee741468 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfbb9fc88 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x5898342e devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x70514c8c arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0f89a675 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x37c68a5c c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7b08d4d3 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbc6d9a46 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbd8a0ce2 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe17a8cc6 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x12694824 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x23647cdc alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7389b4cb can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x767c0c54 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7a141c2d can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7e7505ee alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8270de39 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa148a8f6 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa4f9c7ad unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa882e5e3 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xaa08b6d7 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb2288305 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbe3afa69 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc911963d safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcb3cf44e close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdda16aa0 devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe95e0cb4 alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xef5ba5aa can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x046283aa alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1a1fb011 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x54e93bb9 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x93f8871d free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x11577251 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x434c290a unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x57444aee free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x5ff80bb5 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x72698466 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xbd9ee84e arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05759504 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0641c6a4 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0725d519 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bfa5607 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e8486d2 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e8ea5f3 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10205119 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x122b2315 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1760014a mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b4c0cdc mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bab364d mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cead8bc mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e2533cb mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x210e5cb6 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x225f026d mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2269fb19 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2321559b __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x242ded6b mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2501615d mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2afc16fe mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d27745d mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d70df3b mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30522b22 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30c71647 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x370749db __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37f0edad mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c6733d9 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e37ca63 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ed29d44 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x405e1c7b mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43442ca1 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45c11345 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47c0fb5f mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49be57ff mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a19d4b2 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a361e24 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b563341 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d4c3dc7 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50e90535 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5481de7a mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x597b5afc mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x598321e6 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a31333c mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a7e4537 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f1d563d mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60ef635c mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6611d962 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6770f37b mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6830d498 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68e434ac mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69868df7 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a1b0a4f __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c6ac9ff mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ee1446e mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x709ea5de mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74838b47 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7492b0a7 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75eda7a7 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7891b9e4 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x789c1c9a mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b86d278 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c8b4a69 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cb938e8 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e263a5e mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ea71863 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ec664bb mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80a90d89 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80b668a3 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83095d7c mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8413658c mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84424548 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84a2fa4d mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8529b6fa mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86a4a504 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8735b396 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8757054c mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x919148ae mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92878445 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x936f2af9 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95bdccd3 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x965b7ac8 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97ae4e48 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b37a16c mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0645e0d mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0b832a2 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2160cf5 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3a33df6 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5713f60 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5eca71b mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa857dc59 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac859d7f mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadf7be27 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2878158 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2cd25eb mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbae0f418 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbccbaff2 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe859b4a mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0220d28 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc08d236a mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc133b395 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5a982c9 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5f9352c mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc75007b9 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca939e9b mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc78971b mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccc5538c mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce818899 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2298e43 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd25909ed mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7eba75a mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd86637b4 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc50e084 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde1c9646 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xded3d359 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe28ec82c mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe460f39d mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea1fbc58 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec01e97b mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf00719df mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf41a635e mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7c915a7 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8817b57 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf92156ce mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd5df4b7 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08c0d85d mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cc0b8dd mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13c9c231 mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16e7c178 mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17a23a41 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20925d2e mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23c40446 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d6d17a2 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c45312c mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3dc77eb6 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40d5b85f mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49118ca2 mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cd4cb2a mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57c806b3 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76a9c36e mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a21a3a9 mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8367c461 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83d5f995 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x848f41d5 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85022bdf mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86611312 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x874e1775 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88b98a65 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b7c0dfa mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90f9622f mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9231ab80 mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x950253e3 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98537f24 mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a0da3e6 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d413a41 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4c90b7d mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa61938f1 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa7ed325 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcc4bf40 mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf152438 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc340fddf mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6073e05 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc89d8a98 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaa7d9ba mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe945ee08 mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea394943 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb7484d4 mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefab818d mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf63871bf mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd8e66b9 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x737811d7 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x174e2738 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4aec2138 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x5c78b718 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8846baa1 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3efc9acd stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x614e50dc stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xfa3bc482 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xfdf4636b stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0a08d584 cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x229d3d7e cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x35231055 cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x43d72c71 cpsw_ale_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4c1b9694 cpsw_ale_control_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x61c3ebb9 cpsw_ale_control_get -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6bb88fbb cpsw_ale_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6d31e4d0 cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x7efe08c9 cpsw_ale_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x995504f4 cpsw_ale_dump -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xabfebd3d cpsw_ale_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xba3f4e30 cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc98eacea cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe2e69c89 cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf9f0dbef cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL drivers/net/geneve 0xb65e6294 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/geneve 0xcf3ee61d geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x236f248a macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4e701848 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8c2b37e7 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8d6fba81 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x19c1aae3 macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x082181b0 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x37c4483b bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x730bf91e bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7c352658 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x91d73a62 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc6c1b072 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd9b14eb7 bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xebab683c bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xec829ce2 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xff337525 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x0064cbe9 mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2dbd3a67 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6944036b usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8970b828 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8d05d44d usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x089a99c9 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0ca1df8e cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0f53b131 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2f522cc1 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x551fdc5e cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x806a6ffe cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x83fe8cd2 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9d973b07 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbdb17bae cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x60910fbd rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8a5a8e11 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe25be5fc rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf1d7e0d4 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf2ee328a rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf648f87f rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0247731e usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0687b224 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0762fd28 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1e88f508 usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x247d5654 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x38f82fca usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3a766d17 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x430e2454 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4c13d473 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x59625784 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a8d08bf usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x62f1c16f usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x64a9c4a5 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x64ca818d usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x78c87a22 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x866e853b usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x91b79f78 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x984b018c usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xab710fd4 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xacebbfde usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb609542c usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc25ff745 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd71c1710 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd9fbfd40 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xda247eb2 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe2cac3b6 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe42b2b07 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe6a9ded5 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe74429cf usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xed64d698 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf32ec87c usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfb687dce usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x0e45e35c vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xa0133020 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x197ed5c7 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x273b680e i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2743c8b8 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2fe969ca i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3726a55c i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3925271f i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5eb2b400 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x644ab373 i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9757aab2 i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa655aaa7 i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xabfe95a4 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb5bf85ab i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc0d44852 i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc60649d6 i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe2c8d366 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfd218dc5 i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x0158cf5a cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x4505abe7 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xab67782e cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xb3acf422 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xc2e6e94f libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x11a2fb58 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x373a970a il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x5b6ae9ad il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xe5eaa5bc il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xebb03032 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x05219320 iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x244e08dc iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x335400f3 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x440b9f66 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4957099f iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4975dc2c iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4b04e0b0 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x70897027 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x783f5690 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8068bb90 iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x82af3162 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x876c130e iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8e6818ce iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9a0e6d2f iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9c4da553 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa1741702 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa536d860 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcbcf62a6 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd1ef7c56 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0fefeb4 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xee7823bf iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xef455dd9 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfb33b5e3 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfcfcae75 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfd75b8f6 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x062f82f3 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x42695063 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x45aa0b6e lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x49ee8b8e lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x567e1909 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x836afdb9 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x907b6ebe lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x924f411e lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9fd3e5d2 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc13e52a1 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xcf4fda79 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd1f6aeb9 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd6bdf0d8 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdcebd291 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xefed3131 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfae21a07 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x084711c9 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x086b3417 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x0cf0dcca lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4f7c0a91 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x8ef67377 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xb4677c3f lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf8ef41b2 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xfbf02e7e lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0a024a15 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x304f3db4 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3d455cd0 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3dfc71c3 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x55c31f1f mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5a38fcc7 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6de09100 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6e6a3b7a mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x749c57e9 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9f057d73 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xaffb0c05 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb07cdc7e mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb57cb77e mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb78fb6dd mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcc0de506 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe724ee05 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xea6eb12b mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf13b4638 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf25137d1 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3432f330 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x411fb319 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x4ab0359f p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x59ca61e3 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x744efce6 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x837663ae p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xbd0c555b p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc21ea0ce p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd02eb0f7 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0e76ea15 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1e4f83d8 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f594768 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xced660d8 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x179bd859 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2f5ced4b rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3fcfefdf rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5f0ad268 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x65163a69 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x66b5450b rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6b18e03f rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6d504943 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6f68fdbf rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x75acab10 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x771260eb rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7bbdf226 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7f3fd6d6 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x84cd24fc rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9fe5ad36 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa3b3c5d2 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaa2ba3db rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaab28394 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xab31d94a rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb519d2c4 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7485513 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd9a692fc rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdf1fc0f7 rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe1b71940 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe2843040 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xebae788b rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf1eddec8 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x02053d0b rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x04e445c0 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0595b3b4 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x13dc48a9 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1738c88a rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d6e9ddb rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4aa9f62c rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f17949e rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74364fba rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x89cdd2df rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8a04dfe5 rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0b31ca5 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6086445 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae16bf8d rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb1174d0e rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc33ca3b9 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1b89d30 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe3e33ac6 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb9cdeb4 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4ff86fb0 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x91e707c5 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xab280e31 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xba50e95b rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x01eb5c40 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0786e5ae rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0b135a91 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0ba44376 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0d78b274 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0edddffb rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x100169f5 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1386447c rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x16828c26 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x16e2da49 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x226816d4 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x24055dba rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x31ee3c47 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x31fe6ddf rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x385c609e rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4927174d rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5f25ee98 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x637b49a3 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x729a9d65 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x730b6511 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7725d9ea rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7b8d016c rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8306b93f rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8f26023a rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x90218651 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x905fb96e rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x91e2f4f5 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9d18c4c0 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9f988121 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa6180097 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbedc04f9 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcadaf371 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcdd53212 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcf035f15 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcfb5020a rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd49e07c3 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe9874f0d rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xed64465f rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x11ca35da rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x233b24a2 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x48523bdb rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x67b6a9b1 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9306e342 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa01eadc5 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa2ba5e59 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xabfe3df8 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb75e23b7 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb7794deb rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc161b88e rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe78b7e8c rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe7efd8e0 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x02a1fcc9 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x06922419 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0bcba908 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0d02a3fc rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x17b77f48 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1a557083 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1bca8063 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2078f37b rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x20e3cb43 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x297b1544 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2a999e70 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x34856ce8 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x40776589 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x41b3c7b6 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4502b9ce rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x455f8d77 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4674177a rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x481742f0 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4c82ebad rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4d9e8ba6 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5237a77e rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x541da5d6 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x546aa748 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x57ba522f rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x602c0ce1 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x65c89fa9 rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7973d0cb rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7c39912c rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x86d72f24 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x88fdd1b0 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x89c5a272 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8efed3de rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8f012b23 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9831ba0e rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9b4a4827 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9dae7355 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa0ba3e84 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa3e9d01b rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xabca7436 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb0a5d12a rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb15c5424 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd1ab2481 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd66943b4 rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdb49596c rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf31a5414 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfb8c8114 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x46886244 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x5f0bc5f3 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x7437d126 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x8f18cc6e rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe6cb27c7 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x95f75e0d rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xc8bfdc90 rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xd873101c rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xe14c745c rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0fc562b7 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1bde0db2 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2236c12b rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x23832cc7 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x33c1f73a rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x40b46027 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4a87f856 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x68d48d53 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x79369860 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9aa141b7 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa2289de7 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa4c50bb1 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xacda6f3e rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdbf50e28 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xea053f8c rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf01ac954 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x1d8f97e0 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x749b760f wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xeb8200a0 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x07d5a2c7 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0992d223 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c3934ac wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1439f8cb wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21386044 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x223f351f wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x26171384 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x36b1830e wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x392d3d93 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x45712341 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x45f676c7 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x461a0268 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4bf4febd wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6edb0348 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x70410338 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x710f3eec wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x716574c5 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x75539f78 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76aeb68b wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7aad62b0 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7cd02149 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8019df56 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x825491ba wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x87588c41 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x88ce7a2b wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8a80a28f wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d6873d9 wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8ddb24c0 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8f0b40a1 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9c1cb46e wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae0c670b wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb31569e3 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4712569 wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb57b94ef wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbf5e71e7 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbfbaf0be wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbfd43527 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc146c4a3 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc218c8cd wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc997596f wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcb153d1b wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd8a37129 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe7b1408b wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfec17493 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x3210235e nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8c76bd29 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x954e8999 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc5afeb35 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x95fff025 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9fce953d st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa2c8a170 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb039cc08 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb6b77d9a st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc565bad3 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd9ee41b2 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf791c500 st_nci_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x1ce9a1a4 ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x40395642 ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xb71220fa ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x06a96af0 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x69e64793 of_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x6c06ab65 nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xa405c4ce nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xaf2fea83 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc1baf5ed of_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe6aa32f3 devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe8fc5da4 devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x3a034de7 rpaphp_get_drc_props -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x60240be6 rpaphp_deregister_slot -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x70893210 rpaphp_add_slot -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x355793ed pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xc833a677 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xee3367ef pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x003998ab ps3_write_ctr -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x0bdf50c4 ps3_disable_pm_interrupts -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x0e622920 ps3_write_pm07_control -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x181e55ab ps3_read_phys_ctr -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x1bcb88c1 ps3_write_pm -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x2abf1471 ps3_get_hw_thread_id -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x2b339635 ps3_disable_pm -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x3c71a6b2 ps3_set_ctr_size -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x4a24996f ps3_lpm_copy_tb_to_user -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x50488f64 ps3_lpm_close -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x58e642c1 ps3_lpm_copy_tb -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x59c54782 ps3_set_bookmark -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x5eca6711 ps3_get_ctr_size -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x60e3f0d7 ps3_read_ctr -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x6702a28c ps3_get_and_clear_pm_interrupts -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x69010c19 ps3_set_signal -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x70177200 ps3_write_phys_ctr -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xa76ee01d ps3_read_pm07_control -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xaa190bc1 ps3_read_pm -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xbb72a01c ps3_enable_pm_interrupts -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xce72c9c0 ps3_lpm_open -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xdddfc980 ps3_set_pm_bookmark -EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xfae0ab68 ps3_enable_pm -EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0x2d8e465f ps3stor_teardown -EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0x5dd5fe17 ps3stor_read_write_sectors -EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0x803752e6 ps3stor_setup -EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0x86146d97 ps3stor_send_command -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x219c956f mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x26dde8c6 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x51ce6d1a mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x91a67a99 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xae81bf90 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x02c18548 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x573357bb wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6b2a6707 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8c48d525 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbe7e24ec wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc1a88082 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xbd4cef61 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02783da8 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0cf96bfc cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0dae48eb cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1bbbdd47 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e915ce3 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x22a4bebb cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x24173243 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2718894f cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2f1e9571 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2f260fe5 cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2f6f93ee cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30d2198e cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x36d915cb cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x431f0b82 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4f7b4a36 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x519bc43d cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x52d8e861 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x52dfa4e6 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x54a7cf80 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c8db9f7 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x74325ac9 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7e4e6970 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x83705b45 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8d65879f cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x93cc7e52 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x961194dc cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9681ec99 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x98f7ffc8 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e15d952 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e39b2ef cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa5c102e3 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb18c1b1e cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb91c6b92 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbbf74d13 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcaa2003a cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcec43f9b cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd8439a56 cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda51d8b8 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdd8be675 cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe6571a49 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe6821edd cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe76a4620 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf38067d1 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf81da595 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf990595a cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xff7d04ca cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1b24366e fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1c26c7ee fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x20fff424 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x36bc7d84 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3b278e58 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3e96d507 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x71abb02b fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7c9bd9fd fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x91d5c391 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x99e60318 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9e12e6c2 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa2185450 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa682c694 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaf748590 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb3ff14e4 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc0a2d76d fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x524a5b3f iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5767b144 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5af3d086 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x88f072d9 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc41d0630 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf726ca2a iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x046798f1 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x06041dd7 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x09422ddd iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0bef7a68 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c757c35 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12aa3407 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x15e795e7 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1acebb45 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x211b248e iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x258fb092 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ff0a8dd iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x37b24d0b iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x476232e5 iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5070d4b9 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x556f1ba3 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x55f5a8a1 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5abafc60 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c65fe18 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ddd8c52 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f27bbd0 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x719e4135 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e422218 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ec97339 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x820a2514 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x966fbf78 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x99f3483c iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9acde770 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa16b37fc iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1dbd5da iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3384001 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb75def05 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb91dd94b iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe7919ae iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc97ec333 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb6de7fa __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf11d6e9 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd2becbce iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd6291106 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd6979780 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd719bde2 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe3e177e iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe3f58bf __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x03791266 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x11001c5c iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x327a360a iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3abe21c9 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4139b4cc iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x423f6996 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x47a38a51 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x614fce8b iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x652ca897 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8014d067 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8e2bc683 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x98778de9 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xab4ba5b8 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc6c6fe31 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd579b2c3 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe1566ce0 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfb75127f iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1193c1cf sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x155b26f1 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x15ffcd90 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2ce9390e sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4417871a sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x45b630a6 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4a93e8ed sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x54e1a047 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x63c657b7 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x68511158 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6c33fa2b sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8420fe70 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x84cc3322 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x89ab5e13 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a1d7d14 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbcba29b5 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc013f58e sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc95ba916 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd0d61d95 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd979260e sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdb39d96f sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe99110b0 sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf9e3a2fa sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfbc80a94 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0656dc99 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x09dbfff0 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a5c7cdd iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20d0c381 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x27670708 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x28678e97 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x291898c0 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3dc2fe76 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fa85a0d iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x519b5be3 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x534c2fd0 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60620ad5 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61ee61d9 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x649fd8f5 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6cd3f654 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7001ee91 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71519a1d iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72b468e7 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7316f5e1 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7cc705b9 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8143ea23 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8551e910 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa87f7fd9 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaccf5325 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb19d670b iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb395b33c iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4e6ff34 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9b2ada1 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc4c61bee iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5160a01 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6c50778 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc6d62ae iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4ec0447 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdfc5d56e iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0f03bcf iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0fa5671 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe195eb55 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9d2f2b3 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc18abd8 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xffdf5c5c iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0d1a6a51 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x74ae40a5 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd46cafc0 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xeead5088 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xbc530d3c spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x65f4f1ff ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x7eb8972e ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x91eaf3e2 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa45ef27d ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc45ee123 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc522127a ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xec1fbd66 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7209d1df ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x9a5af195 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa984af41 ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xafebb1ba ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb14eb6b5 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb5a6639d ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe62f8d04 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x52f99e9a spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x62dd175b spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbc307547 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcbfd4d9d spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf55551ee spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x51667c09 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x817b43a6 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x8841b951 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x8c0290f3 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x035db605 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x11089e00 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x255592da spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x32d6df9d spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x34728a21 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x480d1331 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4ac3853b spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5a037638 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6538c887 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x80c1d9f6 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x956b8d02 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb261a4f3 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xba15a225 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbf215bd4 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc8047a84 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd40cfe89 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd7b370d3 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfc32209a spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x5120dd6e ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0507aff8 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x06416ebc comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0c5bf8e4 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x11074029 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x121d8f91 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x14eed0fb comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x19b86282 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1bcd33fe comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1ec3ba75 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x240977c5 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x443821a4 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x582a116a comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5a7ef4f6 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6b204164 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7de409ba comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x84407146 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8aa44175 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8ddaafd5 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x95791cd6 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x99e12995 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa04d783e comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa6e00853 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xacd73e0a comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaedc0663 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb256308e comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb2640e33 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbe80bffa comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc512efc6 comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcc73cc53 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe078064b comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe89368ee comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe8ed2677 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xee6f0d2e comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf6ece06b comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xff311950 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x078cf28d comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2496573e comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2f57c34b comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x3b69ad9b comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x3d777a89 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x728f12d5 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9f3eab54 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xef3adf21 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x6247de15 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x891bfe36 comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x9e160edf comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xa1739f09 comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xa92a0f73 comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xd6686ba2 comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xf61aa4ff comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x58111313 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x8a8743a7 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xa877423a comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xa8dcb990 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xb604a293 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xbe15463e comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xf1366d61 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x97c1ef08 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xa29331d4 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xbf79ecfc amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1a2e0655 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x300b4092 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5547a3f9 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6ce51634 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7b8e5b1b comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8aa22798 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x96a4b9e3 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb72abca0 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc9d5bf6b comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xcdfe0b09 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe627aaa4 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe82bce56 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe9e67abe comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x538d0ae4 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x76553db9 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x9a3fafa9 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x82866934 comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x546d54fb das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x05cdf7d2 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0ffd1e27 mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x12ecc26a mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x24214608 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x495a076f mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x58edf2d8 mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5ed637ea mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x69fe5d24 mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6aead8f7 mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9042b138 mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x90c1b40b mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x926cc351 mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xba6f6261 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc7a00bea mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcebc9ffb mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcf292fa3 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdca90794 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xee18c5b0 mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf175f9d9 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf913e614 mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfb9465f8 mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x47fb6ef9 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xea43d6ec labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x181e9cd1 labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x475b77d3 labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xd9d1ccc5 labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xf5325d05 labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xf5795307 labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2b2e910f ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3ce19e8e ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x49d58112 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5e3e24f5 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x8521a877 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x98757006 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xaa3b27c1 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xba9d6cee ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x38164212 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x7b7563d8 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x89c64b73 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9517dcf6 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x98f0c69a ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa7020edc ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x2608faf3 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x37a6b267 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9f7ed1d3 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa093eecc comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xb652bed3 comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xc5c61d6e comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe5f128cc comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xa44ac81d adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x14430cd9 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1a1ace5a most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x48445f43 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x66202ab6 most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x712d2bfb most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x98af5683 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9d973ce7 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa0b9de2d most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xcaeb1bb1 most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd5e4491c channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe9771afa most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf7b89467 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x11c54657 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1261df42 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x12f1ac81 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1c20812a spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2e4f8314 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2fe759da spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x34558516 spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x726c1902 spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc56de7b0 spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe3a53eb0 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x6a051396 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x9ecdfbdf __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xcf50bb12 uio_event_notify -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x32222a4b usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x4ec83016 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x0370f69e ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x14522d1a ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x107c718b imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x2c319c9e imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xa64f44e7 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3c2bb787 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x522f1bf4 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6bbe1114 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x98d81890 ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb54dcada ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe43f3a09 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x005379fa gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x164658e1 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2bb952e1 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x31eb758f gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3bdef428 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x60003d75 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x659d368c gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7c302a16 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x942cba32 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x97f8fd1e gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa62da456 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa64022ac gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbbec6dbb gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe1a36639 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe614fdd9 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x2fd9e41e gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x69d6fe88 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x15cf1391 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x42869b98 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x8c2b4a8e ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x17eb6ade fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x20be09b9 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3d37e37d fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x43271af4 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x65b70687 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7c629fd8 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa1761d56 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa727eba2 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xae229621 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb458fc75 fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbdbd7228 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcecb6c11 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe3b5ec70 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe7c181bf fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf02f3436 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x176055b7 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1d01f90b rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1f66dd6d rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x283d07ca rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x54ff996f rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5cb7dc16 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6a5010c5 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x88db0fda rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8f714318 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x919321e5 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa06546ac rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb577c252 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdc88a64f rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdcb739a2 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe50d70cb rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x03278195 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x039bf223 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x04a86db6 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0fd42ae8 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x122ccce8 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x160112ec usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x18adcf02 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x207dceb4 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3e942263 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x40d5f721 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x47788775 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x47811018 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x496bb97d usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x58ffcf21 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x59afd771 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x59edd0c0 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x62f78980 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6bed04b3 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6f6b3ccd usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9f0dc5d6 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa59c37d4 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa89e3606 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb0ce5a84 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcc905a3e usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd3856c37 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xde4a36a7 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe48df135 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xea18b94f usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf0c53925 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfcbc2940 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3bc6e14e usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3fdca388 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x56173031 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x587736d5 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x66619a8f usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x709a83ba usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x842432da usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8e4ed459 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4b2ff8f usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc5c97cea usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd76f1dbf usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdc90e69c usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xec8bc7ee usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x3317a147 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x39d8b825 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2096a4e1 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8cabf116 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xad8c093b usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xaecb73b6 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb24035de usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd5b73f8a usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xeb7d170f usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf391555a usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf51b0b1d ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x1b2beb95 musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xbcdfb222 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xf9197bbb usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0669fb4e usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0e16b685 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x16a43560 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x21565088 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x31a15da8 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3596c1a5 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3af0a691 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3b81a57d usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3d8decfd usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x43958fd9 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x53bb1952 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5e0a357b usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8a51ad33 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8f8f698d usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaa62af04 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb360e92c usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb639da09 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd4db872e usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xed48cef4 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfcf694a4 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xffba01ba usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x051d5a72 usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0851fe8c usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0bb949be usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x14b2f1d4 usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x22e4ed74 usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x36f069bb usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x510b83b2 usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x57cfd6a3 usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5a98adc9 usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x722baad2 usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x73461763 fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7b0bf3b7 usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8029bd0f usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa4013ce2 usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xab74304b usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xac96216a usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb1978cb1 usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb2fd01c2 usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbd5a70ae usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbfb499aa usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc72797de usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe0dc1c99 usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf68414da usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf7a0833b usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3812fb92 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3ce17bc2 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x655346af usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8d889773 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x941becba usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9ba4c45e dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa4f1b408 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa613486d usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb9166a0a usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbe641550 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc53d1193 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc769028c usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x52ffb98e wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5b0a464e wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x6b7ef086 wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xae8e374e __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb6cbbef3 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcccd710c wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xdd1b5b53 rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0ed4e795 wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1acce4e8 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1df1b0ab wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3ef5500d wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4fee78ac wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7666f9c2 wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x80a7cedf wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8f307b80 wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9e3bb036 wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xab600b55 wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb7c64ee8 wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb87ed33e wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbec02e4d __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xcab0b3ce wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x1e642e21 i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x30ff2337 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xc8869e8d i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x294be489 umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x6df0fdf7 __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x7b8c92e5 umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x91fd904c umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa7af438c umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xae090ef8 umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe2306991 umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf6070537 umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x01acf450 uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0dbb17cd uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x110a6fb4 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1adc26e4 uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1b543b85 uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1cd30f2a uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1d7c8e40 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1e37e1bd uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2133fe50 uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x226289c5 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2c6eefab uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3529d7ad uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x37f5ba5f uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4f231388 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5d5b410a uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6254fe56 uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x67e534ba uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6fe56ece uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7a287cd0 uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7ef871c0 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8501cf3f uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa7ed9076 uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb3985bc0 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb5a0f97d uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcd465110 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd3105080 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd3281e30 uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd44082bf uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd7aac768 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd8e35803 uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd96c0350 uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd9ebcab0 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xda8947a4 uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xee282b2e uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xefa92688 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf57abd79 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf841a74b uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/whci 0x2c3cd9f0 whci_wait_for -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x044211d3 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x35e56715 vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x449054c7 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x729c790f vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7ee136f6 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd2ba7827 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio_spapr_eeh 0xac0624b4 vfio_spapr_iommu_eeh_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/vfio_spapr_eeh 0xadc718db vfio_spapr_pci_eeh_release -EXPORT_SYMBOL_GPL drivers/vfio/vfio_spapr_eeh 0xf6d0ccb5 vfio_spapr_pci_eeh_open -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xd3f9713f vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xd85f3058 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x05253d7a vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0b9e2210 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0faf2d67 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x12f94034 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x22f28dd2 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2b6a8f2a vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2edc856e vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x399c463c vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4968abe9 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4bb765e1 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e575d2e vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f19bf61 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x63be158e vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x718fffac vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7e256679 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7ff6902e vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d48959b vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf0ce11d vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0e2d722 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb28e7fd6 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb39163a1 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbbafceab vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc33f596c vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc61f1404 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcecf1aaf vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd186567d vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd2617e7d vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe621d416 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xead7b690 vhost_init_used -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4cf4982a ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x84f111c7 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9cf4ee09 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xcbb175b4 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xcbe78d53 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe7265229 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe88c4077 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1d184363 auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x386a0d62 auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x50b22fb2 auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5e2047ac auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7ba7f1e2 auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8439350a auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9fe5e7d8 auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb1da2bd4 auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe11ef639 auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfa6fd7c1 auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x66e3cec2 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x1c56dd48 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xe13ee16a sis_free_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1cd267e5 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5515dfe9 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x564feb40 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x57fd4b86 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa7370e99 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xadc7a685 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb35cf84b w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xbb06655d w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xd5fe6063 w1_write_block -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x6f6b0a8c dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xaf56aa88 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xe70058cc dlm_posix_get -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x03bbd26f nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3a67e7d0 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x485dddac nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77c84550 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7c7de47d nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9c4fc6b6 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd6175f9d nlmsvc_ops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00b6be64 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x011bdfcd nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0706188a nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bc57a46 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d16a4ce nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e42304e nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ed324b2 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10a83415 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14824781 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x162985b9 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x162eb128 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x171c3a42 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18ffd50e nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19475904 nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19668b16 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19d2985b nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b5b5344 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c49a4b1 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f711202 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x210281b8 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22a7745f nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24ad416d nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x266c381e nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27b9b3ad nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29c5097e nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2adced3d nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2da91f0f nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e5fd2f7 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34ad6924 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a844a02 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b9499f3 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40d25128 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42630b38 nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f79739 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4405fc7b nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46a49730 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47e3c8ad nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48c29631 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a0f271a nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a56ce55 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c0d3220 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x507a0358 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x511a683e nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5223d53a nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5284839a nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x563ac50e nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x580fb2f8 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58a8350b get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59946cbe nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b272a6e nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bbbf0af nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5de13619 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x616c209f nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67b096a5 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69832b2e nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cb02a55 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fd0bbfb nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70a2acf2 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77bac84c nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c40d72c nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cc9168a nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d07ccdf nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d9cd4b0 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80b7de97 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82be33bc nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x850eff4b nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x887e698b nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89f92c95 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c5b23d7 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ad2761d nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e0ab644 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f89bf14 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fab4944 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa321fb9b nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3b1a2d9 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4ac7662 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa68dde2c nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7cdb0c4 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa347cae nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac76048b nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad1d830e nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad9795d2 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0fccd5b nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3ed61f6 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb430b907 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5be3ec8 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7db56d5 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7f0dbfd nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb88507e7 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb97add86 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd701a53 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbee3b2ae nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2388217 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc39ed5c8 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3ce6e0f nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc73fa093 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb21aa5d nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd35fb08 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf680312 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf873e31 nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd004ad9b nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1c27856 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd306d0c9 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3288a4e nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7594950 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8768580 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd89c394e alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb2ca1cf nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf1ebd7f nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2e343e8 nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe52ec70d nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeab93528 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb7e44ca nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec6c6dbd nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeda878fa nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefffe4a2 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf26a89d7 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf34b5f9c nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6942e03 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa4e5f22 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa7269b3 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd858541 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff7bd322 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x16377e97 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09a011a4 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12c2a601 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17ac139a pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c0a0583 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f5395bf pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f6d05ea nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x215812e7 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2af148b4 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d196676 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d9e1949 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x313bb39b pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3255456b pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x371b6738 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43cb13ea pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f56d200 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ee20695 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61f274c8 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66231414 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d6436f6 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x736cab3f pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78fe0425 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79775cee pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x804a5723 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81b26e5a pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x834628e2 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84259146 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85b703ff pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9016dfc0 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x904be64b pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x917179f0 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92698674 nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9683a1a4 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a5e827d _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02a33c9 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0aecabe pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa509a7ad nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab1752d5 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf816986 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb332ff3f pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb430a279 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4f1cb03 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb781befb pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8670172 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc17a2e53 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc0a3e61 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6c175a8 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdbdffc8f pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdee653d5 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe063f3a3 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7f9fb4a pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe958e794 nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeef03fcf nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef4bb864 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf19f8090 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf33f3a1d pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf38c399d pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7047ad7 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf8561d49 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1682e14f opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x33b3c2bb locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x51ba244e locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x344cd422 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc8172467 nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x06a9a46f o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2ee04639 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x35364319 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x72121626 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8ce7d092 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc903bff0 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd9e10c7a o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3f638dd8 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x61e7f8e7 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x75e2bbcf dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x88928506 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa91dfa58 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xae85ee95 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x70e02d93 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8a77a6b0 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xec32a1b0 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL kernel/torture 0x13928800 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x20e65a20 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x3d347c3c torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x25d86905 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb7ad33cb notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x7626bdb6 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x7ba25828 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x2d57f980 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x6cf78de1 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x942a997f garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x9b471419 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xc67602b5 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xf8b17d1b garp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x0434d18a mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x538f9529 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x623d5535 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xce3ba627 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0xedc5690d mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xf96701d8 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/stp 0x2a7ebc40 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xcb382e89 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x4ec05555 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0x901e0ac3 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0x1e7e105d ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x19654965 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1c967b67 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1dabbe2d l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7f9bed28 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x816f3c74 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x83cd4d05 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xebd55d2e l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf973bc82 bt_debugfs -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x046cb86f nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x21f5d1b8 br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x24b3214b br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3873f9a3 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb1a24111 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbc030887 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcadcf0f6 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xebfd2b8a br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x0d1cdec6 nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x6f6622a8 nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0525f7d4 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c01b3f0 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x106d4b7c dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x14bd2784 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x14e9f31c dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2293e3e6 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d71647c dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3ff2c825 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5651eb46 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e8dde9e dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x61cb2aab dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x66074394 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7526b80a dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x76dd49ff dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x833ce99f dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x87a32cd3 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x88504965 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x88b93f3f dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8b281bde dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x933131dd dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9605b6ff dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4035230 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa774e675 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa8ac1f65 compat_dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb4c55ffb dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb5384524 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb9d2edd8 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc8da7082 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcba36dbd dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdd25203e dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe004c0e1 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5256155 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf12d2ee5 compat_dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3960503 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf902da7e dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x206cf0e5 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4e577639 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x543c9550 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8b7c7ce6 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xab53177e dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc0e0d358 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1cf16121 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xafe36e21 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xcdd7e48f ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd2537e26 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ipv4/gre 0x3951be53 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xeb7b7058 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1126c139 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5b677015 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x848e0a30 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8c98c2db inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb6e298eb inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc157e2fe inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x4470b236 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x05db2935 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x11baf4a0 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x13229d3d ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x16c08f9d ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x22dca188 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x26c5378b ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x45f5c9db ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5d41c7bb __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x76afa6e2 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7b6c7f25 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9e8009ab ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb71e3da6 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbfda65b7 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe9806e8a ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf46b9b1a ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xb42698b2 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x63209066 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x4b7d7eb9 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x0c935f6c nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x364244f6 nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x66b1e613 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9b121eb6 nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xf1fb35f7 nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xaab58222 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3d62ef85 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4133d8f4 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6e1b1290 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbd667db6 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd3853f31 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xaf4e43e0 nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1c922869 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x42c7d1e3 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8a30084b tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xac6c7fe6 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xea05c052 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb2b9a94d setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb73365ba udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc172d4e5 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd6e8ffff udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1a465111 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x37cd4e0a ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3d935ac1 ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5bd36031 ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa4dc753d ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb466a9ce ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe63e4603 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x7056b568 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe3098a6c udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x6cc1563a ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x1d02f533 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x23b3268d nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x10e6fc2c nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x314c5fdc nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x34ab80f9 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x51aeabd9 nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xbd7727b4 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xf2283880 nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x8c135bfe nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x047b5b9f nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x189bf1aa nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x284372a0 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7997c0a5 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x80a0eca8 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x35467d72 nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x04cd6d88 l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2d62d1c5 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x351ce813 l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x419262b4 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x56f29602 l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x65e83bf9 l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6c187562 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x72d1ffff __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x798e6fe4 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9a7ceba0 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9b577252 l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb00e418d l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbbfd0110 l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe865309f l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeb39b22f l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xec3b08f5 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x1e57df80 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x05d0e5bc ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x077feaca ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x32664ae7 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x44ee2590 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6dac12a2 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8e79fe1e ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x914f36c0 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9312d3fe ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x97fc324b ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa124dae8 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbc90d4ce ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcd44309d ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcf87793c wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd5acfa4b ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe4fd6bf6 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8c0da656 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc65c9e20 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd1e3196c mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xdbdf6c3d nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0ec9ff72 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1f884b46 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x216682aa ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2f04110d ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x412d217c ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x72441d10 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x72a775f1 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8352d5e7 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x95e2467a ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9fb88035 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa12143cc ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xac6a1152 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe00bba13 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeb02f733 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xebacfc45 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf88c3fe2 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa76e585b register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc7cdc5a2 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf28b08dd ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf5028771 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08e2a4a9 nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0954c1f4 nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0eceb8f4 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10c8301a nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11018ee1 nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x145e0737 nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x152831b1 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a345789 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a4c3317 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1cebfe00 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e5a2963 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f6c0e6b nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f8a7cf6 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fb1ce4d nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fb85247 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x220a4069 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2422dff8 nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25789b7e nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26586182 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x266865b5 nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28b697a5 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a9ec85a nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31cc302a nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31ecfc97 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x371dce62 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f3ee5e5 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44f4179f nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5716150d nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x578d8424 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6224ad70 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62c55c36 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63aa2cd1 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66656c44 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70e108c6 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70ef4995 nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x713dd3ec nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74ecf6b0 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75471e47 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76ac3d45 nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e496fab nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83768e07 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8454a640 nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85fa2543 __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x873cb1af __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88a59e8c nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88bd47f3 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8928be91 seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c359a51 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8cedd6b8 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91c2474e nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94c2a80d nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94de8a24 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a15546b nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2eb1d6f __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5aea43c nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7ab81c8 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb02bde73 nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb444aca0 nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba8b2571 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdbe6a9d nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf21ff40 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0e9b89a nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc114d33e nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc611dfd8 nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7765e6a nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc947673d __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce592f95 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1982f56 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde6f412c nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdef6a1f6 nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfd7445a nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8f2d38b __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb5f376a nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xecf6bf6e nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf00ee249 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf073c7ed nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf311bd7e nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7a0717d nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xc23f4234 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xa79a8bfc nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x67079b9d nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7b74776a set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x823b5ac6 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x855bfdc2 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x89ff75ff set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x976e59ec nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa4f93132 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb6ccedff nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcaf41ac8 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd1150e56 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd1cd022b set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x80cfce8d nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0d9ec956 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4f2b7d2c nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x8c7508e0 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc60d515d nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x2a37e0c5 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x3e97d07c nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1b451244 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x26555475 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x288734f9 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x322f42b8 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x351424cb ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4d484734 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe0da9779 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xc3fdcd9c nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x90e4175b nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x614a94c1 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x99735753 nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xa6264f3a nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xdc4aadff nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x00833dc8 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x39c5312d nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3e34d231 nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5ab3f481 nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7885918b nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7ce1d90d nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb671be74 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb7093f42 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcf148373 __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x950bfa6e nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xd0ea49fa nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2d8ecadf synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x979e7262 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1824cca6 nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x373b9052 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x384fbec8 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x411ad6f3 nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4478d327 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x46fb4a46 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x57e5d8e4 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5aa3ee41 nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x70f993cf nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7d3f9177 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x822dc3a8 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x86a5f162 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9869a566 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9ca2bf8c nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3a4d3c6 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf3ead66 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeafc01fe nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0368280d nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x31108477 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd7c1bb52 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd7d81269 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdcbeae62 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xefc7cb36 nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf0824364 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x1d7ac5c3 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2e40973a nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x89fbe43f nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x622c7257 nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x5e7d44e7 nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x9b148e0f nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xb0604c5d nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4cd980b4 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x6c2eb97e nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb9b91065 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xbe12aad9 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xc331f7fe nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xca6e7537 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x104b080f nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x4c76b86b nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xe84bcdbe nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1e5d3ccf nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x88673b09 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x01d7735b xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1badca8c xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1e190e8c xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x41f3553a xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4ad10b5a xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x536854e2 xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5d5fb4f3 xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x69b1cb69 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6e6eaf51 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7183a18c xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x764df93f xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbd433f02 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc0be4b31 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc4257d04 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc80dd9b7 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcaf20694 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcc9a068a xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd7bc6bad xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf504e785 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1ef9b84a nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1f8b620e nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x242ebc4d nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x8844b8a2 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x89740d22 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xebe3f101 nci_uart_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x41ff0742 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x60cfcfb5 ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x731df8f4 ovs_vport_receive -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7d5f2a02 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x81a5a89c ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb1d1ccf2 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd640843f ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe1f2d91d __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf7cfaa95 ovs_netdev_link -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x0230d7b0 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x0a3e157c rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x23041f6b rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x2349b773 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2cd37d92 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3341a402 rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0x368544f8 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x3c0454c7 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x58d8b1b4 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x82c67dea rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x8720e9f4 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x901cfada rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x956a87a2 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x996a1ded rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x9d843f9a rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xa7d727c1 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xb3fcd5f9 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xbe192177 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xd5a94c0f rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xea40654e rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xef94e36d rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0xefb819d5 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xfa3d773c rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x97503ba4 rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xe76de0be rxrpc_register_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x0c5d3f8a gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x854d6776 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc5b450dd gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x004674cf auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0050499a xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x017e7570 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0255da06 rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x084ab090 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aa2a85e put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ac5dfa9 cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b4688b6 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c85b740 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d673b22 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da06165 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f28bd95 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10f6d6e5 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x117480b0 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13e1df9e rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1400134c svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1612b09c rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16a49313 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x174a23f0 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x182c7682 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19982578 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a3a99d9 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b1f5089 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bba80e8 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bf8c3ea xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f3c2445 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f67dec0 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fea45fa rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x251be160 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25bc0548 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2610ba3b xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x261e8fcd rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x268c6d55 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x281ec9c9 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x283332c0 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c844c6f rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e3ddc41 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e9d3923 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ee0420b svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30260afc rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32f846dc svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37409478 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38e183cd svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c86db06 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d6bb140 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d7ad139 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dc39b9c svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e8b9a9c xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ef6f9f5 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f07b110 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fa09d78 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4033fd13 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41c4ad6e svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42097951 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43981d9a rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b7d6940 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bb2be8f xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ce3d5b5 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e959821 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5084bd20 xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51cebad6 rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52cfba0a xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5384ff84 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x551e9d0b gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x572fdd54 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ad5844b rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bbe3e92 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ea8e17e rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ef444e0 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f39b685 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60c29c96 sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60d3bb02 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x616f5f42 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6230c7ec rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62df21f9 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63de6d4f svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x667c8234 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x673e65f4 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6885e5fb write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69b29852 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b4f2b00 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c48f2fb xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c54827c xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cb5126a rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dbdf6ba xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7191d942 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x728d8b09 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72ac5a37 cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x738f3b89 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73a156fe rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x749ca145 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74c79218 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7585c5ac rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x773f5744 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a30683a xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c1dfeac rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e590ba1 cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8056d446 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82bb74e4 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82d3440c xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85aa1717 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87518b49 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8823ac4b svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a8ad6b9 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ad414f2 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b4b12b6 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ce06f38 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d64b306 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e264438 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e6cead8 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ec3bc97 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ee3e796 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f1a39ea rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x900ad72e rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95abd761 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96a64ae7 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96b3708c xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9938073b cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x999e8eeb rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b2197b5 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b5eb326 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b928201 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c7314e2 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ca377eb __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ddd9de4 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fa86830 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa000ef64 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1c728e1 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1fd5fdc rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3cc5be6 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa67651d4 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8489591 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8f20e94 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa7857fe xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab99c049 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac93d2b7 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad61a5ab rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2fd2bfb rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5204e5a rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb52e7a54 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6461733 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7a9d753 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9500845 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba487e61 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbca48c74 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd147ddc xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe1e9f13 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4110ec0 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5570026 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5fae27e xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7b2cfb3 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc47e336 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc75ac7d rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce388d7d rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce501613 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf7649d6 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd017db89 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd306e492 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd349fe06 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3b7d66a rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd81b5fc4 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8f07bfd cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8fd7cc4 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda20de3b xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda7a4d38 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc49efdf svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc700d19 rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcfb7f32 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd445ff4 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd7a8714 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde026279 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde6269df xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe19dc76b rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1b6a33e rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ed542e xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1f0c49a xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5dedb1b svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6b49c18 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe945bb2e auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee8b1341 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0c21e4 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1515b8a svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf52bde0a sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5fa8db2 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf678c393 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf683ab60 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8111597 rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8c10988 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf99ce4f5 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9c08361 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbd2442f rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbdfb210 rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc3019ba svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdf1d0a4 rpc_put_task_async -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x10eeaeba vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x16cba243 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1c8dd407 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x26ab6cdc vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x45e45cb8 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4dd639d8 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6af50943 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x70b326ae vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa6c669d3 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc47ec2d0 __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd22df0a6 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xda7fbd76 __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeacf9ba5 vsock_insert_connected -EXPORT_SYMBOL_GPL net/wimax/wimax 0x032dad6c wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x2c654ed0 wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0x48c8eb1e wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0x5b8443c8 wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0x84b665bd wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0x84e21d63 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x877c7998 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x895d6893 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x89ff2df8 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0x99c3f8e0 wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0xd7acb84e wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xd93c6e17 wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0xedbba0ec wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x08125f71 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2099b01d cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2e46d991 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x412bf9d3 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x60bef821 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x811db363 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x846b212e cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x96bca48c cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb9d96eec cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc98e721a cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xed705c8a cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf8dab9c0 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfee6b32d cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0567da4c ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x96fe812f ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb2f93bd4 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd464c016 ipcomp_init_state -EXPORT_SYMBOL_GPL sound/ac97_bus 0xd228f01c snd_ac97_reset -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x0d8c17f5 aoa_codec_unregister -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x17b4b3ca aoa_fabric_unlink_codec -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x24cfafb0 ftr_gpio_methods -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x38276a1d aoa_fabric_unregister -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x50b9baf0 aoa_snd_device_new -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x61dcec1a aoa_get_card -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x61e84ba9 pmf_gpio_methods -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x821338a6 aoa_codec_register -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x857745c2 aoa_fabric_register -EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xc85c8bbd aoa_snd_ctl_add -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x1d7e9137 soundbus_dev_put -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x3b4ca064 soundbus_register_driver -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x465d18bb soundbus_dev_get -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x861ddfbd soundbus_unregister_driver -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x96a1c163 soundbus_add_one -EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xac4a093c soundbus_remove_one -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xe7ca98a9 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xf37cfa94 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd 0x33db48bb snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x6fb67316 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x8cd012e9 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x96c06c7b snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0xab91707e snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0xf365171a snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0xff7ef70f snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0f4fae17 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4bc8b4e2 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x65602865 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6c843a29 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x97bb9b62 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbea2b085 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc81c3d9c _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe4dfeefc snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf7718527 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1102aef6 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x46e9457d snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5c06a082 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5e1a60a1 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x64c73241 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x831d0aa2 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xaa1e3834 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd20f63e8 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdb8276fb snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe4485c52 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe55d80e8 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x13e3e3d9 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4cbc38bf amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6c49995b amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fab8289 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x973a8cc8 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9cddbec4 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb6350a74 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06f0c063 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c9bebe3 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0cdb0eb9 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x194b5c3d snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19f1905d snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22e52f01 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24ee0f95 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26847734 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27656da7 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27ef4262 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e3548b4 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x340c8313 snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x36ae7159 snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e049298 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e38926d snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e4a18b3 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x416d6afd snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43c7524a hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43e8c1a5 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49a9bd99 snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b2b9d5b snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b840273 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5dfd0dd6 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e3b3809 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e7d8798 snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5eb9439a snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6107a37b snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61476f8d snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6351cbb7 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63ef6ca5 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x652aed1e snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66988369 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x68655be5 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d6e356d snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d916c88 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d92a196 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x708852c9 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x796b6e37 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e0572ef snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7eef62e1 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8356d1d9 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x836fb1f9 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84d6ba11 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8691ca43 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8cc78b19 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d5e1274 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9494e2a1 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94e7ee30 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9603b1c4 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b4cffb0 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b638695 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c342543 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3b0bef0 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab0e6671 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf99ab90 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7e9905d snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf708c32 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1c2c352 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5591b07 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf7624a3 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe04019aa snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe11d43b9 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed0fd59a snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee292acb snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2d03387 snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3a7fb7b snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf475fb5e snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6f75a14 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf71a9730 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf92a81d2 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9df65a3 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x085233a3 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1c68eb0d snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6fc07f1a snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa079c775 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcce53539 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfb484159 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0427aab7 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c986502 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e8772ce snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ebdc9a3 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f9d011a snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x149579da snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14f2a7b4 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ff31c54 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24a5b4ad snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2653f2c4 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c245eb7 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cca5e6e snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x306ef732 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30edeee8 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x314adfc5 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x356d8bd0 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37597f8c __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x394403cd snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3965072b snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x399fcfcb snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c20b1d7 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d872540 snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e1d8160 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x403a38b2 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x410be418 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41795fc3 snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42e6c866 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45218e94 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x459dd8fb snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a4401a8 snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4add3ea3 snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c52e76f snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x532ea66a snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5661fd12 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58c06098 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d863b35 snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e71bf86 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f559800 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x618191c8 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6819b882 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x686078ba snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6995f509 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a650d5b snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6be4ac27 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c8f8461 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6dd9bd53 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77dd22b1 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x783dbc4d snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x784c552a snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79052f0c snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79b0285c snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a7b113c query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d84958c snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x813b5a65 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x835f0776 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84434334 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8827bc97 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8892ad0f snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88add5d2 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89754909 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f55c9e0 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x927eca16 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x934bc0f2 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9351fa73 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x953de707 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96775281 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97d2f0c3 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98a3df2f snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99270b2b snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99d71b56 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c03977f snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cc28492 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9db137c8 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fd14ad6 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa316c6a5 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa36b84a5 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa406040e snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4ce6976 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4f686fa snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5cfd5d5 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8511374 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8df799f azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab6599a0 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac98dd19 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad215143 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1428903 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb46cf608 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb72d4123 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb960b22d snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbad3267 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdfe50a1 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbecb9a2d is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbefe6fa8 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc13e2e89 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc49e3fc9 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc659eb07 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc807e09a snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc82faa0a snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb4c4ed6 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc9ac7c8 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd47e1e5 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0d4fc06 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd265710f snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6a34abe snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbd6404a azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbf4f05e azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc02a5a5 snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc63b48b snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde0d2a92 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdfdee2da snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe45ab3bc snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4701022 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4eed322 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9873d2a azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xecd15bbc snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee518d10 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee54dba6 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0d442c6 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf601bb26 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf69258c7 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7f4c1f0 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb812ea8 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbdeef7d snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc72ea9e snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x002135d4 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x22446973 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2659462b snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2a74b71f snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2b66fb0e snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2bc4596e snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x34c418e6 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x588befbe snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6fe726a9 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x730ae788 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7778e5d2 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7f7a1992 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa282fd50 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbcab25ff snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc7e19dc7 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcb8ba917 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xce9a5115 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd7c87b13 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdaccbf35 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe0a41043 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe6b97a25 snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x2bba721f cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x950fc7f8 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x37d9ab10 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf955ecf2 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x508cdc6a cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cf13966 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x8fef18b4 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x457c86ea es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x882bd89e es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x3f25c3a5 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x4d7ede32 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9b441e1c pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xdd34885a pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x212d4fc3 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5321e1b7 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5c83eda4 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7dd90793 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd47dc5df sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xe6a9220f devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x63e5e65d ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xe7df469d ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x33f4b927 tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xde06e59d tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x66c1097d ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x23b67619 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x23dc545f wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x70ad965a wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x9dab4558 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x19e5cec3 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xb3ef42b5 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x51a31927 fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xcaaceaaf fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00f751e0 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01750295 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03dae640 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05bfda8c snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0668d1b6 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x087ed34a snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x088520fb snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b0b32ec snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10a1f1aa snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10e467f5 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x144c5491 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15ccfe08 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18e60db1 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x192ad6e4 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21977c61 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2487ace8 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b420daf snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bc2729b snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f138c5d snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31cfe76b snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32572ba6 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a5b4802 snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ab720ed snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b43189b snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ca2b45f snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e17b240 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f3ddeab dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42730d15 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4815c0c8 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a7041da snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dec9111 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50071a2f snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50403902 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x535164bc snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5352a535 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54f77a11 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x553d4a8a snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x571ea01c snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57e755ef snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a3c7b30 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b5e5808 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5eeb6625 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f19df28 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6034efdb snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x610a3887 snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61695cf5 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63472c6c snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63b798f0 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63ff469c snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65d50166 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6609c651 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67ab589e snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a54e671 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6de4b796 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f78b00f snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x702ae973 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x703c480e snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72641895 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73db3267 snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x742c0f42 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7532e684 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x758d6119 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79c22d88 snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a77420e snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b2d7b98 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cbca332 snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cf75ddf snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e56bc07 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f84864c snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x888feaef snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89ea0e9f snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9079907a dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x910c1225 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9245a22a snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92ba2f20 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x933aef55 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9373d384 snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93749be3 snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94bf5545 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x971211ac snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9730c399 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9972943e snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x999938ad soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9dae49aa snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0dc3174 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa48c8c94 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa49e0936 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa49f8b8a snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8836fc6 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9d8865f snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa5a71a2 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabb4cf18 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac768510 snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad09ab90 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad6a96ed snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae2a4db8 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaef8b468 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0df942c dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb36b934b snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb63b1569 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7a384df snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba7491b4 snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf13b824 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc03d3ea2 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0c4f377 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0d75c8d snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc18227da snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc35d88f5 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4ed8a79 devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4f11bac snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc53afbc1 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5ce10e9 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc769c4ca snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc815319c snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8ffe68f snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc932983a snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca759eff snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd5a318b snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd43ff32b snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd707db04 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9f2f54a snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdeab329c snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2224a90 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2e5f549 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3669910 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3ae3c46 snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4b62124 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe500f8ac snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe623879c snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6f7e6b6 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe796e6a4 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8975671 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xead3193f snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed7cc433 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee13d611 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeec15dc9 snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1e108a4 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf398cad7 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf815d80f snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf89f9f70 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9fa741f devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa04b187 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa6ce21d snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd8a7523 snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdb86373 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdc1ec4f snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff0d74ae snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfff0498f snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1a527f4f line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3e36f4f6 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4aa7ca1a line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x58f4fb37 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5e4857d8 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x62a1f1f7 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x664d914c line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x86a51642 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x87cea8f6 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8e8e58f0 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x934d5ad0 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xab1fce07 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xae77e261 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbe0a0fc7 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd25c36f8 line6_pcm_release -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x000af8b6 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x000cf2f3 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x00200263 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x0071cf54 scom_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x007e6f10 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x00952947 aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x00955fe3 wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x009b3c43 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x00a923f7 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x00bb4f67 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x00d71476 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x0106b4c8 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x012fab96 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x013a56f9 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x017993a5 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x01840c5d rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0x0194539a pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0x019be4d0 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x01c9018e ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x01cf087f add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x01d98e46 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e35aba put_device -EXPORT_SYMBOL_GPL vmlinux 0x01e8fe18 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x01ea2188 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update -EXPORT_SYMBOL_GPL vmlinux 0x0224e2a1 spu_init_channels -EXPORT_SYMBOL_GPL vmlinux 0x024dae5b cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue -EXPORT_SYMBOL_GPL vmlinux 0x02653643 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x0268cbd4 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x026e2727 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x02889b19 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x02ad4f7a of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0x02b4c46e __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x02c5549e pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x02e39b22 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x0300d111 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x031f96da regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x0320cd6f thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x03301497 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x039428f6 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x039cc1ed to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03a9b002 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x03cfd6f3 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x03e2e9aa ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x041b0ca2 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x0435e97e rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x04670ca0 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x049563d2 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x05043b97 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x051c7da2 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x0537cbb5 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x053b8b51 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x053f045b crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x054f9f45 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x0557d5fb ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x05ad1f1e uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x0642ad1f regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x065ca716 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x066e7fc0 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x06723909 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x067c1c4c fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x06ad9c7a blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x06b13343 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x06f56a39 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x070ca18f devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x073cc058 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x0749ae4d shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x074c71aa led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x0768c690 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x077501e9 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x07976d17 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x079b1e88 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x079fbd2b ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x07b17306 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07cc0d7d gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x07dff8be dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x07e14a47 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x07f5cec5 of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x083396ab ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x084c88cc devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x085608df sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x08937902 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x08b8a91f debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec -EXPORT_SYMBOL_GPL vmlinux 0x08c48f34 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x08cb5e1d file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x08d91c22 mm_iommu_put -EXPORT_SYMBOL_GPL vmlinux 0x08d98e89 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x08eb3f7c dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x08eca3cd tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x08fd7415 spu_get_profile_private_kref -EXPORT_SYMBOL_GPL vmlinux 0x0907e29c ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x0908434a tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09436a15 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x09516ee5 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x0957e448 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x09688494 cpu_add_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0x09725a68 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x09cda9e7 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x09eb8655 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x09edd247 fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0x09f8b1df irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x0a101cb9 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x0a3f64e5 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw -EXPORT_SYMBOL_GPL vmlinux 0x0a637213 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x0aa086bb shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x0ac5d6c1 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x0ad8f774 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x0ada905e ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x0aeea6cf i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b19d2b2 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x0b2aa1c6 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0b3b938f pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x0b4cade0 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x0b590829 kvmppc_do_h_remove -EXPORT_SYMBOL_GPL vmlinux 0x0b62a0d0 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x0b746edc __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b76533d nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x0b85e314 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x0bd6eaa2 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x0bf653bd ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0bff8a64 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0x0c02ffee tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c0eeb35 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x0c1d6466 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x0c263694 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c32c23c bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x0c37bfb3 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x0c47d282 of_get_nand_ecc_mode -EXPORT_SYMBOL_GPL vmlinux 0x0c4e6e38 devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x0c52e1b3 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x0c5460f3 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x0c5eb97e regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x0c8c30b8 tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0x0caf75d9 opal_flash_erase -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0ccffed4 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0ce3ee5a mmu_kernel_ssize -EXPORT_SYMBOL_GPL vmlinux 0x0d0917cd class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0d199aab device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x0d2df307 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x0d4398b2 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x0d48352f crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d73a952 GregorianDay -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d8c3dec fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0x0d8d3384 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x0db10dab usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x0dd7b7b9 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core -EXPORT_SYMBOL_GPL vmlinux 0x0de87e97 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0df4cd19 ps3_sys_manager_register_ops -EXPORT_SYMBOL_GPL vmlinux 0x0dff6c08 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x0e4994b6 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x0e9dc06c usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x0eb616a1 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x0eb64069 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x0ef8a8d8 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x0f1d791d mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x0f273eb5 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0f32fc82 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f55de3c spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0x0f6893c4 sysfs_add_device_to_node -EXPORT_SYMBOL_GPL vmlinux 0x0f69c929 srp_release_transport -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0f9fc058 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x0fc4de83 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x0fe3abb2 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x0ff9d1f9 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x100eb06e pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x101f6ab6 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x102c0dd5 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x104d52fe crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x10638ebb dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x10903006 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x10a1e81c device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x10af6c3d usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x10b6790b devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x10bc2601 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x10c45b0d regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x10c57119 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x10c600a8 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x10dc7b1a regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x11073dd6 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x1108e17f pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x110d2d46 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift -EXPORT_SYMBOL_GPL vmlinux 0x1136ebce tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x113ce651 seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0x114175c3 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x11646c21 iommu_del_device -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x118744a2 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x118fb40d bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x11ac5b54 default_iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x11b025bd usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x11b9482e sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x11ccfa7f pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x11d9b7e1 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x11f719bf tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x120d2241 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x12102cdb usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x125b6d78 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x126ebea5 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x12a82bf8 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x12e8888d sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x13185afd use_mm -EXPORT_SYMBOL_GPL vmlinux 0x131a3b7c da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x1326949b dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x132a4745 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x1332fdd3 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x1333d8b3 ps3av_video_mode2res -EXPORT_SYMBOL_GPL vmlinux 0x133c3557 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x133ee511 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x135a76af mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x1381c7d0 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1394ff65 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x13a7f2e0 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13adea7d rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x13c231b9 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13d30a77 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x13e5b7de crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x1412b053 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x144ad8d7 ps3_system_bus_device_register -EXPORT_SYMBOL_GPL vmlinux 0x14663df6 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x14698b15 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x14879f0c regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x148a822f devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x14aa9d6a __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x14aff5af attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x14bc6405 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x14c4f0fe rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x14e920d7 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x14feafe6 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x15091a23 __remove_pages -EXPORT_SYMBOL_GPL vmlinux 0x150e7512 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x1520393c platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x152bb1e4 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x15328613 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x1535b719 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x1541a03e vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x156641e6 arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x158c4168 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x15b8b44d opal_async_wait_response -EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x15c3d907 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x15e4c2e2 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x15e5d919 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x15f2ab83 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x164b8899 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x168aa6f5 srp_attach_transport -EXPORT_SYMBOL_GPL vmlinux 0x168c2554 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x168d7ed2 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x16997337 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x169ad2e5 split_page -EXPORT_SYMBOL_GPL vmlinux 0x16a4cafe usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x16ce43f2 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x16e1f8ee pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x16f5e791 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x1731b9d4 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x1733e2d5 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x173ff53a aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x174dd146 devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x17655ffd fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0x176e8eac pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x177620f7 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x178a738d blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0x178a99c8 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online -EXPORT_SYMBOL_GPL vmlinux 0x17a2f8c9 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x17c2f576 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x17c3caa4 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x17dde622 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x18039e9c crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x181f95df ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x18570516 pmac_i2c_xfer -EXPORT_SYMBOL_GPL vmlinux 0x185c57f9 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x186a9a40 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x188a0bf4 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x189f874d powernv_get_random_long -EXPORT_SYMBOL_GPL vmlinux 0x18af62ea da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x18ed922f irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x18f221a3 pmac_low_i2c_unlock -EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x193067e8 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x1931b358 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x193d38ac pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x1944cff0 spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x196756fc phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x19a0b7cc ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x19a0ba8a driver_register -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19a9452e spu_remove_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x19bb71e1 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x19cf097e iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x19e41a87 of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x19e44df1 devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x19e49149 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a0464cd to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0x1a4f8b62 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x1a632711 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x1a66a86a hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1a9df3ed ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x1ac717e3 ps3_os_area_get_rtc_diff -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1aedcda0 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x1b55f451 nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x1b596990 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x1b6a967c crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x1b89252e dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x1b9664d1 __destroy_context -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1b9ff3b5 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x1be0d17d rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0x1be2200b ps3_vuart_clear_rx_bytes -EXPORT_SYMBOL_GPL vmlinux 0x1be664dc get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x1c088edb task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x1c222294 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0x1c2ad10a srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x1c3189be platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c67f56b __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0x1c7df74c kvm_hv_vm_activated -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c86f015 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1ca6f74f serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x1cbe19d7 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x1ccdfb37 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x1ce260d5 pcibios_claim_one_bus -EXPORT_SYMBOL_GPL vmlinux 0x1ce5402d srp_stop_rport_timers -EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x1cfb40e3 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x1d1ac69a mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d2876e7 spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0x1d3e2385 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x1d3f3056 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x1d45aa4d blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x1d49eab6 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d652735 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1d6a0972 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d878fde crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0x1da48e8e devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x1da8557b __nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable -EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0x1e0c502f rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x1e271966 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x1e326752 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1e3e6835 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x1e58373b regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e5bc1ff pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1ea17021 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec42d58 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1ed72fcf subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x1edaa39f debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x1edc21cb hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x1ef18760 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x1ef5028f pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x1ef9cd27 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x1f5113b9 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x1f52cfd6 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0x1f53a832 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x1f7eddc5 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1fdff711 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x1fe970cb ps3_io_irq_setup -EXPORT_SYMBOL_GPL vmlinux 0x1fecd134 wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x1fff610e n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x20010e3f percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0x200bf021 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x20279d47 ps3_vuart_write -EXPORT_SYMBOL_GPL vmlinux 0x2041e0cc usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x2050f6a0 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20b99d62 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x20e009c2 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x20e267ca skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x2108e9a6 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask -EXPORT_SYMBOL_GPL vmlinux 0x211dd986 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2154770a usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x216279b2 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x2180b430 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x218dd85a __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x21a9c692 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x21ab1536 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x21abea53 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21fff805 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x22082b3b regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x22210e90 agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0x22690ed2 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x226916bd usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x22d644f4 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x22e674b0 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x22ffa8d3 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x2303bee8 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x2317d674 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x2323acb5 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x235af890 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x235b0a22 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x2364b465 spu_add_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0x2373cd6d skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x238004a1 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x2392e3b7 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x2397015b ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x23e16bb9 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x23f0d4a9 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x24399fb3 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x243a8f60 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x2461c814 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2487a5b4 wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0x248bf40e ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24ad42cd ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x24ba1902 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0x24c51600 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x24d4909d dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x24e1c3a9 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x24e1f328 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24fd259f kvmppc_clear_ref_hpte -EXPORT_SYMBOL_GPL vmlinux 0x25153a61 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x2522dbf5 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x2528c21e fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x253771fa iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x2540471c reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x25423baa sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x25757062 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x25846e4a usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x25a6186e regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x25c85726 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x25d271f6 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x25daa510 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x26030384 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x261a6380 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x262ca8e9 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x263d0a35 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x264bbca7 __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x2675980a skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x26766a40 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x26ad021d inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x26b4ae85 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26da54b9 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x26f4f35b platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x270451e6 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x2725f256 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2738b578 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x2754a2c8 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x276b831a gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x2774ac42 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x277b3398 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x27a49f8c scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x27a57b04 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x27b68a35 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27e54d6d of_node_to_nid -EXPORT_SYMBOL_GPL vmlinux 0x27e7695e regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f5a38c pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x282144df save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x283ee8c7 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x287c4f31 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x2886ca78 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x2899d782 reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28a8f246 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x28b33f48 rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0x28bcab9f blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x28e3e58c debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x28e5549c fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x28f17795 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x28f9823d tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x28ff99a9 opal_prd_msg -EXPORT_SYMBOL_GPL vmlinux 0x2904cce3 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x290529d1 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x29226a21 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x293c2ed5 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x2969363d shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x29714add inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29994c7a get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x29ab6893 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x29bc043d regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0x29c6bc41 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x29de0b27 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x2a1620de regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x2a3ede27 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2a5e10bd crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x2a65e078 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2ac4c308 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x2aee955f ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x2b1185bd ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x2b11934e debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b4147ed kvmppc_hcall_impl_hv_realmode -EXPORT_SYMBOL_GPL vmlinux 0x2b4703c4 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule -EXPORT_SYMBOL_GPL vmlinux 0x2b662d86 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x2b6c234b debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x2b78770a regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x2b99c60c ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x2b9a61c3 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x2bb4c28d splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x2bd8fc02 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x2be68821 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x2be9f29e rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0x2bfbf0fc __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c281fd0 arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0x2c29d18c fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c469751 of_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x2c470491 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c827a30 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x2c84c96a usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2cbedfbc pmf_find_function -EXPORT_SYMBOL_GPL vmlinux 0x2cc3e675 pmac_i2c_close -EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x2cd88f51 kvm_hv_vm_deactivated -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d419417 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d5299c6 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d5b6fa0 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x2da2772e __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x2dc16a3d device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last -EXPORT_SYMBOL_GPL vmlinux 0x2de7150a blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x2e0e6ced spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x2e0eff67 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x2e110b90 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x2e18e9d0 pmf_put_function -EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2bae03 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e32c96d component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x2e3acf49 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x2e496ee8 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x2e5c3cd3 securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0x2e6cd66d ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x2e719226 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x2e79f414 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x2e81a7bc mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x2e89f38c each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec29f4d __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x2eef1fa2 __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0x2ef9d1e0 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x2efa62b3 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2f049e09 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x2f05c659 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f1959ee fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x2f1ae893 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x2f2e455f firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2f338058 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f47dfc4 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x2f511bb6 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x2f59d7d7 extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x2f628710 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f95e6e4 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x2fa75daf force_sig_info -EXPORT_SYMBOL_GPL vmlinux 0x2fd24173 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x2fd476d8 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x2fda74b9 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x2fe9f423 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x2fecf17c ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x2fef0a91 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x30003cf8 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x30014cfa gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x300c0fc2 ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0x301018a1 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x302d8d6b bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x3032d3e1 tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x303a7694 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x3048e1ec sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x30596490 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x30679469 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x3075cc67 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x311b78c2 ps3_get_spe_id -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31288373 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x312dc17b led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x3130d6a0 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x3157f6ef user_read -EXPORT_SYMBOL_GPL vmlinux 0x315d50d2 device_move -EXPORT_SYMBOL_GPL vmlinux 0x315e2cd6 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x31678d3d user_describe -EXPORT_SYMBOL_GPL vmlinux 0x316f0e37 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x319c4d7e devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x31bef441 opal_i2c_request -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c4a7fe perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x31c53094 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31d6b455 extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x31e315a4 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x320e724b spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x32169a9a srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval -EXPORT_SYMBOL_GPL vmlinux 0x322f0fcb wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x323a99e5 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x325fe94b scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32fe77d3 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x3309ea64 ps3av_audio_mute -EXPORT_SYMBOL_GPL vmlinux 0x3329f8f2 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x332b098b kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x33398de6 mmu_psize_defs -EXPORT_SYMBOL_GPL vmlinux 0x334313bd ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x334ace25 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x33751a5a sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x338aed54 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x33904575 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x339cad4a crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x33b23d3b subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x33ba1762 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x33c77089 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x33f088e6 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x340bd620 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x340c4149 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x342238f0 mm_iommu_get -EXPORT_SYMBOL_GPL vmlinux 0x3426fe72 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x34298625 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x34ac9922 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x34af0adf opal_ipmi_send -EXPORT_SYMBOL_GPL vmlinux 0x34b0e6a9 device_register -EXPORT_SYMBOL_GPL vmlinux 0x34eed6a8 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x34f32e78 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x34f84a23 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x34fecbda usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x35296c1b shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x3567e8e3 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x356c4be2 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x357921e1 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x358bf179 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x3595756b ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x35c9317d rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x36165a3a crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x361ecb61 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x362a11b0 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x3643683c device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x36553c49 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x366d91ab anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x36904784 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x369a8a9e debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a1793d sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36cc0694 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x37275eb1 mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0x37346c61 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x37435111 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x377000dd usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x377c9adf ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x377f4c56 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x378b0a33 iommu_add_device -EXPORT_SYMBOL_GPL vmlinux 0x378b8a5b power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x37aaf91a ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x37ab8106 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x37dba11b smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x37e4eb8e crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x37ef4a9d __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x37f9241b da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x3807022a __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x381b9c4b vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x383761a2 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x38399220 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x383dd7d0 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x3860ab9d bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy -EXPORT_SYMBOL_GPL vmlinux 0x388fd40c wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x38ab32e7 pnv_get_supported_cpuidle_states -EXPORT_SYMBOL_GPL vmlinux 0x38bfc857 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x38c5b30e xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x38e7cc79 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x38e92a0c gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x38f6a52d i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x38f9b164 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x390975ef register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x391577f0 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0x391a6c11 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x393d56e0 spu_management_ops -EXPORT_SYMBOL_GPL vmlinux 0x39455961 arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x394c516e pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x3987bd37 hash_page_mm -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39ec4da4 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x39ef3d82 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x39f61c73 acop_handle_fault -EXPORT_SYMBOL_GPL vmlinux 0x3a09cd1b spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x3a105f58 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a38dc65 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a609ad2 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x3a7d0a72 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aae54cc regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x3ae2c917 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x3ae5051c regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0x3aff0f56 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x3b01948e wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x3b1283b6 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x3b1c5afc ps3_vuart_irq_setup -EXPORT_SYMBOL_GPL vmlinux 0x3b59dcd0 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x3b75faea sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x3b7e177e udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3b8bd49c ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x3b993167 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x3bc0f2ac bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3bc4c973 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x3bc57d8e of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x3c25737f devres_add -EXPORT_SYMBOL_GPL vmlinux 0x3c264a3a __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x3c51ea7c opal_leds_get_ind -EXPORT_SYMBOL_GPL vmlinux 0x3c625626 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x3c634bce find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x3c687c2f inet_csk_compat_getsockopt -EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3ce158c3 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x3ce5978e pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x3d250ceb gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d3fda42 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x3d5837c9 pwm_config -EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm -EXPORT_SYMBOL_GPL vmlinux 0x3d7e1a35 __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3de76a77 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x3e04f946 dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3e0a7507 skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0x3e167c32 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x3e289cd0 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x3e334691 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x3e50776a __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e662a37 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x3e66e19b crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x3e67c9be l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e7fff83 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3e824eef of_pci_msi_chip_add -EXPORT_SYMBOL_GPL vmlinux 0x3e881e1e unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x3eb947f7 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x3ef2531e devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f165e81 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x3f1e75c0 irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0x3f9a2094 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0x3faf34ab led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x3faf5bce platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x3fb14423 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x3fc57c27 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x3fe950bd bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x3fef7431 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x40032da3 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x400d8682 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x403f1e7e __put_net -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x4046b943 __online_page_increment_counters -EXPORT_SYMBOL_GPL vmlinux 0x405d9d30 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x409673af irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x40a5cc84 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40b78c5e bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x40bd5f1d gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x40c18f80 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40d96cf7 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f0fc6c devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x410e299d devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x41351cd5 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x413a8883 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4159309e __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41a5a96a pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x41cf9876 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41d0db3b pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0x4205bca7 wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0x420e9786 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x42149076 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x42550d10 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x426e3961 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42ae3145 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x42b0eb1b device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x42e0ba58 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x431d0e19 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x432702e6 mm_iommu_mapped_inc -EXPORT_SYMBOL_GPL vmlinux 0x432968a5 crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x434e602d shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x43521f1b xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x435863f6 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x4380e10a module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x439a5faf skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43aae30a rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x43ad44fc eeh_pe_configure -EXPORT_SYMBOL_GPL vmlinux 0x43bbc566 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43d8c96f ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x4401bd98 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x440f33ec irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x440fc5c1 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x4414d848 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x442a558d usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x443194ea vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x443c4315 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x444d562f led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x4463c958 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x448373e7 dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x448a6f47 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x448ef495 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0x44a89fdf watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44d11453 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x44fa032f handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x44fcc796 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0x450a1555 copro_flush_all_slbs -EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x4514b93b __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x4520af37 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x453725bf devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x4543a635 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x45515dce trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x4556b0ab tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x455f9440 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x456d9b1a device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x457fc24d flush_altivec_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x458eaa2f call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x459322b1 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x45b71de9 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45d3322b serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x45ee7712 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x45efd85a sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x461b11cb wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x464664b5 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x46883709 cpu_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x4688a625 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4696072b usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x469f07d0 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x46d9f955 ps3_irq_plug_setup -EXPORT_SYMBOL_GPL vmlinux 0x46dd5ff2 tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x46ecc976 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x46fd96ee __module_address -EXPORT_SYMBOL_GPL vmlinux 0x471773a3 flush_fp_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x4717f580 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x471bd7f2 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4734ad69 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0x4735a00e page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x4741db42 ps3av_set_audio_mode -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x476f4ca6 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x477e5278 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47acddea ps3_sys_manager_set_wol -EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x47e16a77 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x4812608a wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x484124dc pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x48550d5d modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x4858ca5f pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x487512f9 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x49002047 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x491553e3 dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0x491f8df5 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x49363478 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x495e1088 ps3_system_bus_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x4969ba5c of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x49738570 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49b7c1f4 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x49c69abc tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x49d797d7 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49fee2ff phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec -EXPORT_SYMBOL_GPL vmlinux 0x4a1d0271 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x4a2bf39a __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x4a3d3943 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x4a43e119 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a643fcf ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x4a89495c of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf -EXPORT_SYMBOL_GPL vmlinux 0x4aac997d ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ab9e344 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x4ae8c705 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x4b102376 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x4b122c1c crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x4b19f72d of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x4b217ac9 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x4b46c578 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x4b6ae24e skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4b78bdca pmac_i2c_get_controller -EXPORT_SYMBOL_GPL vmlinux 0x4b88584c ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x4bb32e83 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4bc76fb5 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x4bff5b8c blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x4c18f773 ps3_os_area_set_rtc_diff -EXPORT_SYMBOL_GPL vmlinux 0x4c529f1c of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x4c5c906d tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4c84b11b of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x4c8ce114 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x4c8e4313 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x4ca91070 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ce036c5 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x4cfa83c8 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d10b72d led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x4d215d53 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x4d2265bb pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x4d558c54 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x4d7c2fa9 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d85392c fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x4d909dfd pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x4db6d988 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x4dc49f9b crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x4dd46159 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4dee58b5 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x4df06017 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x4df3879e perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x4e09be4d __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e178490 md_run -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e354782 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x4e484153 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4e6d4615 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x4e812d59 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x4e9e546c dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x4eb5d51e crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4f0e0dae of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x4f103df9 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x4f20b7af bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x4f29f80f devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f52bc7e pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0x4f56f03b dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f88db2d xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0x4f98d565 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4f9dbaac dax_fault -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x500a2868 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x50176dc4 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x50184112 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x502632dc unregister_spu_syscalls -EXPORT_SYMBOL_GPL vmlinux 0x504575df scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x50495ef7 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x5053c4ce crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x50565dae md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x507ce3c6 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory -EXPORT_SYMBOL_GPL vmlinux 0x50847aec fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x5091fe0c watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x50c1fd27 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x50cf991f cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0x50d7ed61 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x50dc6275 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f28799 rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510e1c71 mm_iommu_lookup -EXPORT_SYMBOL_GPL vmlinux 0x513f1ce3 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x514399b3 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x51475899 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x515719d8 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x515b2299 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x518d0cd4 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x5192efd0 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock -EXPORT_SYMBOL_GPL vmlinux 0x51b780db tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x51d95c44 fb_sys_write -EXPORT_SYMBOL_GPL vmlinux 0x51eb15f9 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0x51f10349 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51fd5b5e dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x5205e64d disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x521120b3 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x52365e02 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x523714ac crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x5246b1b1 of_get_nand_ecc_step_size -EXPORT_SYMBOL_GPL vmlinux 0x524c37fa gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x524db980 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x52c90d90 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x52d685f4 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x52df73d6 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x52f5f35f of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x530f92a3 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x53106de9 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x531a6835 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x531aedfd led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x532926c9 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x534aa1ba tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x5350f7b4 trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x53659ae8 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x538bee37 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x539c7cd6 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x539ef4e6 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x539fe40c virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x53dae8e3 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x53f1ae42 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x53f6829a iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x53f7e313 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x540b09cd __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x5432ad11 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x5434bf3f crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x54606ef2 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x548d08df usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54a10e44 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x54b7f99e fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x54ba0e28 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54e0f09a __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x54e22174 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x5505873f class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x55238005 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x552778bc rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x5588879e kvmppc_entry_trampoline -EXPORT_SYMBOL_GPL vmlinux 0x55a77299 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x55a7a977 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x55aaaf38 srp_rport_add -EXPORT_SYMBOL_GPL vmlinux 0x55d7ea2d pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x55dd4a1f bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x55dd5013 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x55f6d473 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x560aa1db opal_tpo_write -EXPORT_SYMBOL_GPL vmlinux 0x561977cc scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x562329ec regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x5629010e nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x562ac84c pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x56332e5f crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x5636c0e1 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x564bf711 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x56567dc7 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x5665ef68 mpic_subsys -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x568f1c75 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x56981d53 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x56a7ebec init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x56c86d30 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x56ecf007 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x56ff85e4 flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x57324da5 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x5764d984 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x57836e9e ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x57847152 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x578a9318 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x57937c2a ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x579c263b macio_find -EXPORT_SYMBOL_GPL vmlinux 0x579d7d3d regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57ad8466 usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x57bf2b1a __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x57c17c48 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x57c265fa bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57db475e serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x57dbca80 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x5820ab0a nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x582b4f0e vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x585aac1e regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x585ed42f ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x5862b9bf __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x5865a77d of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x58720d2a extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x588671a0 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58aadb41 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x58b57079 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x58e1eb8c __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x58f5cf2a devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x58fb3bab of_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x5911e1bb uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x594eeb42 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x597aeada rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x59812cdd key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x59882572 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x599e6cd2 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59bf70ef usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x59c67df9 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x59d6e13a validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x59d9a453 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x59e0b67e wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59f3e20f scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x59f67efc of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x5a0050de preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5a19848b pcibios_find_pci_bus -EXPORT_SYMBOL_GPL vmlinux 0x5a22db2f kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x5a25da02 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x5a2c5c30 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x5a30682f inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x5a4c4201 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x5a58bd7e x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x5a5f43f9 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a7c1cb4 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x5a8d6453 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x5a9fa013 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x5acc6615 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x5ae675a9 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x5af6c74f usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x5afedad8 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x5b33de93 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x5b3a7425 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x5b443491 kvmppc_h_put_tce -EXPORT_SYMBOL_GPL vmlinux 0x5b5583a8 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5b994090 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x5baca650 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x5bbce85b dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5be75f6d tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x5bf8edce power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x5c012df0 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x5c0440a8 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x5c2b2236 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x5c3c911b ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x5c3e67ff iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c759590 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cb9ec8f blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5ccfa4d2 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x5cdbbb66 cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x5ce50a21 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x5cf09352 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d189cbc hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x5d18b598 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x5d223a7e ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x5d5cd4f8 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x5d77cc4a subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x5d7ede79 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x5d988a06 of_pci_msi_chip_remove -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5db7ce29 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x5dc92174 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x5decfc62 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x5e0fc13e crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x5e23bd3e ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x5e2a7651 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x5e438259 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e769986 ps3_os_area_get_av_multi_out -EXPORT_SYMBOL_GPL vmlinux 0x5e9640d4 mmput -EXPORT_SYMBOL_GPL vmlinux 0x5e9f7379 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x5ea613c3 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x5ec37d3a tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x5ee18fab shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x5ee7542e reserve_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5f12bcdc class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x5f51bfca sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x5f65e47b irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x5f726923 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x5f8350b4 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5f85c616 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x5f870a5b gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x5f8b4ecc blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0x5f8c9b78 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x5fa1063b fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5fbab5aa regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x5ff92806 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x600029d4 rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x602b57c5 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x60467b06 btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x6047c2f3 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x6069baf2 kvmppc_invalidate_hpte -EXPORT_SYMBOL_GPL vmlinux 0x607ca353 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x6096af01 __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60a6c6f7 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x60cca309 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60fdd1ac usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x6111cf56 blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x6118b771 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x6120a788 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x6154c1bb of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x617b62a2 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x619f26c7 of_get_dma_window -EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x61ab6199 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x628981fd sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0x62a3a3cb blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x62bca800 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x62c629ef regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x62c7062c crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x62ca05c4 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6306d785 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6315b9f7 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x6321001e device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x633884fe vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x635a148c pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x63765aa3 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x639b9ae2 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x63a1ba55 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6425e7e0 pmf_unregister_irq_client -EXPORT_SYMBOL_GPL vmlinux 0x64320b29 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x646a4d85 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6474758b irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x64832ef6 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x64a155f0 sysfs_remove_device_from_node -EXPORT_SYMBOL_GPL vmlinux 0x64adcafa usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0x64ae273f unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x64b4229d mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x652eb6b0 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x65585152 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x6579f109 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x6593d0f2 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x659481d9 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x65a71831 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65e64e77 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x6643971d get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x664df016 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x6661bb29 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x666e98b1 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x667a812c ps3av_set_video_mode -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x66859582 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x66be9295 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x66c299a4 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66cb1c2c srp_remove_host -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66f719c4 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x67016d72 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x672d7612 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x67310346 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x676bf235 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x676ff6d4 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x677b6888 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x678a4105 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67af2545 scom_controller -EXPORT_SYMBOL_GPL vmlinux 0x67c55faa regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x67c999bc fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x67ced9e2 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x6830d961 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x683fccd1 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x68428261 virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0x6873e57e extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x68ac2563 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x68ba4283 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x68bff7df ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x68cb93f0 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x68e77cf0 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x68ef84fd noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x68f3ead9 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x69388033 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6946f646 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x694cd21d regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x69774456 of_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x69790ef6 __init_new_context -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x699b3cce blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x69ecd10c devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x69ede26f of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x69f2e9c3 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x69faf14c crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x6a14769e wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a228db3 nl_table -EXPORT_SYMBOL_GPL vmlinux 0x6a3bb0f5 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x6a4247a6 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x6a48e9e3 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a84f821 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x6a88f81b spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x6a8b669c pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x6acb8d84 ppc64_caches -EXPORT_SYMBOL_GPL vmlinux 0x6afd3845 pmf_do_functions -EXPORT_SYMBOL_GPL vmlinux 0x6b01881d pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x6b1866a6 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b559f58 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x6b5bf4c1 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x6b801eaf usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b84450d pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x6b8f6354 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x6b91d64b pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x6b9372f6 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x6ba45f6d __class_register -EXPORT_SYMBOL_GPL vmlinux 0x6bb7e17b tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x6bc80478 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x6bcae3a3 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x6bd88019 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c17ed02 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x6c236523 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c51ed9e device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6c8818c2 napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0x6c9eaf25 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6caffb63 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x6cb80885 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x6cc2fb2c opal_message_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6ccf4416 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cdc8e36 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x6ce28af0 of_pci_find_msi_chip_by_node -EXPORT_SYMBOL_GPL vmlinux 0x6ceb1799 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x6d21e378 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d503945 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x6d7694cd crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x6da4c3ec rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x6dab5737 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x6dd13a78 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6ddeea37 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e0d3495 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x6e1b8bd8 cxl_update_properties -EXPORT_SYMBOL_GPL vmlinux 0x6e2313da ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x6e379526 kernstart_addr -EXPORT_SYMBOL_GPL vmlinux 0x6e4cdfa2 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x6e551528 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x6e5fdc4f zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x6e6da530 swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e7af88d tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6ea1b2dc usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x6ea89407 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f392958 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x6f46d909 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x6f5f3f9b device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x6f720867 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6fca6e5d swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0x6fcc25c5 rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0x6fcf1179 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6fe5f622 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x6fede69c regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x6ff1535d max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x70028002 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x70059bef ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x70067067 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x70292cb1 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x703c404c crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x704d9b64 of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0x7075f19d blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x708c80b3 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x70967286 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x70ac1686 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70ef453d __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x70f6705c __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x7100ef3f devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x71174025 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x7123a0be iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x713ae49e gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x714a14f9 crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x715770b4 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71699f5c ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x71872fca driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x71cebbd5 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x71d9f2ba anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x71dac768 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x71f038fe __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x7228ea0d mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x7238b76e rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x725c96f1 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7268599f pcibios_free_controller -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x7286fd89 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x72b873e9 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0x72bba578 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x72bee3bb __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x72ccb79e of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0x72d343a8 arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x72e0829e powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x72f99fb7 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x730b5153 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x732854e7 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x739aa1a1 pmac_i2c_setmode -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b8a82f crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x73bab70b devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73d65290 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73e3a1f9 regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0x74127cdb netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x7447510f init_phb_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x74487886 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x74611145 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x748a7de7 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74c22660 blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0x74c31f75 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x74ca293b virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x74e68bfa kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x7538da8c dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x7543b6a4 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x7557b9cc extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7565d65f power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x75795dbb rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x75805f94 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x75a3f598 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x75b855fa usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75cd5650 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x75d17d0b pmac_i2c_open -EXPORT_SYMBOL_GPL vmlinux 0x75d8c548 blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x75e3cf7a bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x75f6154e pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x75f621e3 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x75fb550d of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x7603b90b dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x764cc7cb fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x769693e6 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x769af060 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x76a70748 ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x76c3b008 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x77121984 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x771332d4 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x77257700 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x77318f1f scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x774418e5 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0x77482936 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7763f565 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b18a7b scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x77b52ce8 cbe_spu_info -EXPORT_SYMBOL_GPL vmlinux 0x77e62ccb transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x77f58908 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x7826310e nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0x78342a90 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x7843f043 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x784acbcd pcibios_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x784eaeae iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x78539a6a dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x78546f43 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x78867fda sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x788fe139 use_cop -EXPORT_SYMBOL_GPL vmlinux 0x78907b6e blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x78def8af led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x7903906d crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0x79290242 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x794c3d5f attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x795b6af0 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x798949e2 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x798aee16 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x79929a49 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x7995349f pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x7996bba6 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x79971fbd tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x7997ad24 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0x79a889b9 eeh_iommu_group_to_pe -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x7a04a229 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x7a20f9f6 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x7a229bf7 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x7a2c2f14 mm_iommu_find -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a3b9bd0 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7a4a9011 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x7a56595d generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x7a5885e2 early_find_capability -EXPORT_SYMBOL_GPL vmlinux 0x7a7adfd0 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7ab2a56b locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x7adc22aa user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7b05cf1d __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b329341 regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x7b545c2c tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x7b791cba usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x7b9261bb ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x7b9b49e6 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x7bb41566 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x7be4e7fc pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x7be99ca5 device_create -EXPORT_SYMBOL_GPL vmlinux 0x7bf0c00b thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x7bf90e3d extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x7c308ef5 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0x7c37bc89 pseries_ioei_notifier_list -EXPORT_SYMBOL_GPL vmlinux 0x7c51e9fb crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x7c7c07e9 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x7c9fa978 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ce8bd8d serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x7cf0dcd9 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d03a8f4 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0x7d044230 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7d1f093a fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x7d27b460 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x7d3945e0 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x7d56812d phy_get -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d9a464e perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7db3a30e iommu_flush_tce -EXPORT_SYMBOL_GPL vmlinux 0x7db66116 of_display_timings_exist -EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x7dc914d9 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7dfd3ecf gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x7dff777f to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7e18cce0 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x7e1a4b12 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x7e58545a pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e732a17 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x7e8600f0 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x7e8c6be2 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x7e8d2a61 spu_priv1_ops -EXPORT_SYMBOL_GPL vmlinux 0x7e90634b wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7e965945 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x7eb583cf add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x7eb59dad inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x7ebd6dcc kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x7ec896d8 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x7ed33acd serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x7ee011c5 nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x7efb9e37 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7f074f6d ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f518334 thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x7f52c522 ps3av_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x7f70186c regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f929f88 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x7faa0f73 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x7fb0eb3e powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fd756aa dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x7ff285bb trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x7ff2b790 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x80095dc7 pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0x800b2a55 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x800bb590 arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x8012dae7 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x80202313 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x802fca56 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x803168f5 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x804ea02d __find_linux_pte_or_hugepte -EXPORT_SYMBOL_GPL vmlinux 0x804f169f regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x80507f72 ps3av_audio_mute_analog -EXPORT_SYMBOL_GPL vmlinux 0x805f9488 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x80628931 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x80773736 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x808a2d0b pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80abad0f dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x80b53e3d put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x80f816cb ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x810a4015 _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x81116126 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x8114b8d6 md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x812fd5d7 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x81404184 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x818332e3 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x818795bb pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x81a95aef eeh_pe_set_option -EXPORT_SYMBOL_GPL vmlinux 0x81adf241 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x81ba827f usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x822557b2 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x822bc90c led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x82693f53 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x826c5151 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x82a8b8d8 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x82a9f842 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82fb3c86 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x830d55f1 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x83123975 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x831d0a3d lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x83247bbd tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x834d23d3 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x83733e02 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x837f88cd ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x838438a5 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x83aa8312 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x83afae30 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x83c48519 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x841885b5 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x8425c7a9 pmac_i2c_find_bus -EXPORT_SYMBOL_GPL vmlinux 0x8432c082 blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x84419efd devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x847d0346 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x848d066e copro_handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84bf5dcf ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x84c56eb8 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x84dd2cb5 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x84e71912 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x84f4d2d4 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x85013f18 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x850f293d dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x852f3c58 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x85327e8e rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x8536b0eb ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x853c5d52 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x85439973 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x85597267 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x855f5c8c dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0x858fa4cf ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x85c033e1 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85ce27a4 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x85d6ff0d posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x85f02504 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x85f0d76a cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x85fb0c90 device_del -EXPORT_SYMBOL_GPL vmlinux 0x8610ba07 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x864be612 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8684630c single_open_net -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868cabd1 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x86ef304c skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu -EXPORT_SYMBOL_GPL vmlinux 0x8725189a usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x87374d60 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x8749c370 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x87525934 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x876fb3f7 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x877410fe msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x879f7fe7 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x87ab2842 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x87c16a52 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x87e5da25 get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x883f5448 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x885137a5 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x886b8916 pmf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x887fc160 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x889f4171 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x88a09c27 i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x88a696c5 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b359ff bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x88b54e77 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88bb2cc0 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x88d3a973 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x88f500bf ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x890c3b25 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x8928e9bc bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x893863dd blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x8938d239 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x8953bc95 blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0x8961b0ee digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x89643d74 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x89741fe5 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x89959c28 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89dbf5b0 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x89e12970 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x89e7c943 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x89ebdd08 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x8a0af466 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x8a15afb5 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x8a22655c ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x8a31a7f0 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x8a367e0c blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x8a458cb4 component_add -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8a5ea58c l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x8a88c5a6 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x8a8de63c kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x8a9afeeb device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x8ab25a1d cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ad60e52 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x8ad6f3ad udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x8af537b8 eeh_pe_reset -EXPORT_SYMBOL_GPL vmlinux 0x8af57b96 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x8b012cfe of_overlay_create -EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x8b1b79b8 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x8b34a8c8 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8bd4f2a5 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8bde0fa5 device_add -EXPORT_SYMBOL_GPL vmlinux 0x8bf86c87 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x8bfd42d7 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c0f04c8 pmac_i2c_adapter_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x8c158ca6 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8c192541 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x8c195cd5 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x8c1ee80a fb_sys_read -EXPORT_SYMBOL_GPL vmlinux 0x8c4007e0 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x8c436de3 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x8c4726c9 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x8c5f9141 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x8c62f88f clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c733002 remove_phb_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c8c71b5 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8c8d45c4 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8cbe4819 wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0x8cbeb068 kvmppc_h_get_tce -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cdd8cad __online_page_free -EXPORT_SYMBOL_GPL vmlinux 0x8ce4c697 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x8d13f91c sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d292484 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x8d6ea181 ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0x8d85367f smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x8d8563e7 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline -EXPORT_SYMBOL_GPL vmlinux 0x8dd734b6 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x8dde2cb7 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x8dea0a98 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x8deaf6a9 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x8def3a83 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8e02d91c crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x8e113f36 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x8e258ee6 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e3ab3fb pmf_call_function -EXPORT_SYMBOL_GPL vmlinux 0x8e3e3e59 shake_page -EXPORT_SYMBOL_GPL vmlinux 0x8e4c69ae crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x8e58b63a pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x8e5acfc4 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8e5f0bf3 swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0x8e7218fd crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x8eba2664 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x8ec6edfb key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f1c0ca5 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x8f33e007 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x8f3bccaa dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f97d2b8 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x8f99286b irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0x8f9ef8a4 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x8fb65c94 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x8fd4f927 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x8fd840cd percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0x8ff2a17c thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8fffa5f4 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x90192a8f dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x904e2327 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x905f8247 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x9089cb20 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90aa24dd rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x90cc7878 arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x90ed5e20 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x91011f74 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x911d608b devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x9127c618 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x91566fb0 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x9169d99a scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x916bfa0d fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x9189d28c metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x91927576 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x91ad89e1 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x91bdd791 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91d6af96 devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x91daef9a srp_rport_del -EXPORT_SYMBOL_GPL vmlinux 0x91e1574b bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x91ed0fe4 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x920184ae tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x921416eb relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x92591603 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x928a21f0 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x929825fe __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x92bf0cf8 kvm_alloc_hpt -EXPORT_SYMBOL_GPL vmlinux 0x92cb19ef serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x92d91dfd of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92f1ac89 dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x92fe606a __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x931330ca find_module -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x93311080 opal_flash_read -EXPORT_SYMBOL_GPL vmlinux 0x9331aaf4 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x9342bdcb udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x93556250 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x93734eff component_del -EXPORT_SYMBOL_GPL vmlinux 0x937f2c03 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x93daaab7 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x93e54031 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x93e8d5f6 pcibios_remove_pci_devices -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x943b2b9f debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x94469b9a debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x9451b9f1 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x94705258 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x94832e8a wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a9be78 kvmppc_add_revmap_chain -EXPORT_SYMBOL_GPL vmlinux 0x94b2124b apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x94b3ec80 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x94ccb768 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x94d5f138 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x94d972b7 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x94eb04fb crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94f553db power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x950191d9 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x950432e0 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x951d2a7c pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x95219637 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x952bfb2e usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x9530e444 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x954a2f48 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x9586b1b8 get_slice_psize -EXPORT_SYMBOL_GPL vmlinux 0x958722dd irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x958ce00b da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x9598df1c devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x959bac46 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95cfe0d9 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x95d066fc gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x95dd1c60 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x95e8b8e4 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x95eb4ade ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x95f5cf42 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x960546f0 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x963d3f86 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x9644a7d9 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0x964fd5f2 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x965a78d5 threads_core_mask -EXPORT_SYMBOL_GPL vmlinux 0x9690caa6 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x96983a6f rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x96a5bbb2 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x96aa62fe invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x96b801a9 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x96d83010 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x96da0cc5 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x96da4433 device_reset -EXPORT_SYMBOL_GPL vmlinux 0x96dc744d tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x96f09b4a eeh_dev_open -EXPORT_SYMBOL_GPL vmlinux 0x9727631f wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x972fc2a8 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x9735f061 register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x973ae6c0 pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x973b806a pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9741d66c get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x975dd7d8 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x975e7b94 thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x977b6a49 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x9780c464 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x97909669 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x97a01819 iommu_tce_clear_param_check -EXPORT_SYMBOL_GPL vmlinux 0x97c6446f of_scan_bus -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e6ff19 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x9801ed0a trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x980c9736 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x9826907a invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x983b5c36 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x984ea29f power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x98604db8 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x98642c06 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x98645955 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9882cab3 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x98917ffd event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x98a02a70 register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x98ac47ca shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x98b1f6f6 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x98b7a351 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x9909b58c devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x9929816c regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x99368d65 kvmppc_update_rmap_change -EXPORT_SYMBOL_GPL vmlinux 0x993805ea blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x9987e6e9 opal_get_sensor_data -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x9992cdb6 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99bbe8c1 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x99be4d3c leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x99cd4691 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x99d36104 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x99e91808 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x99f3c67c device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0x99f96e17 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x99ff8d08 opal_invalid_call -EXPORT_SYMBOL_GPL vmlinux 0x9a0af6b4 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a38e82c usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x9a3f644c rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x9a45d911 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x9a64a3d3 component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac612ef inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x9ac8a108 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x9ad27b57 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x9ad48ed9 register_spu_syscalls -EXPORT_SYMBOL_GPL vmlinux 0x9adf08c3 mmu_linear_psize -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9aec6c90 flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x9af0b2e5 nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x9af73886 of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0x9b001f55 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9b0cf985 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x9b4003ff dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x9b4407c1 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x9b80c0f3 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x9b999423 crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba83e73 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x9bb615f0 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c1cec6c regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x9c1f9832 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x9c38cc3b ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cce1c2f pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x9ce1ef03 arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x9d046648 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x9d0e2e0f ps3_vuart_port_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9d10bd05 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x9d1835b2 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x9d463aa7 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x9d5c18f8 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x9d6432d8 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x9d84ea8d trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x9da2e2b8 extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0x9da9bbe5 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9dbb3c63 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x9dc0a6a3 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x9e11654c find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x9e267743 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e52479f usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x9e608cdb pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0x9e8b160a ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x9ec4aae5 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x9ec6ff86 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x9ed1b4bf anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ee24d8a devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x9ef0f383 nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x9ef5c639 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9f094513 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x9f105212 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x9f10f8e7 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x9f13b03b __class_create -EXPORT_SYMBOL_GPL vmlinux 0x9f46c6ed wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0x9f532e7b __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x9f575eca tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x9f5ba62e __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x9f7f8de5 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9f83a614 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x9f873303 blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x9f8a5a28 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x9f9123e9 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x9fa47005 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x9fa5e1b0 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fdd90d4 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x9fe0a175 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff9ea20 ps3_free_mmio_region -EXPORT_SYMBOL_GPL vmlinux 0xa009bd18 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xa00d4076 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa01b895d cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0xa026237c pcibios_add_pci_devices -EXPORT_SYMBOL_GPL vmlinux 0xa02e02bb perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xa035465d pmf_do_irq -EXPORT_SYMBOL_GPL vmlinux 0xa03a895e __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xa0919ca5 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio -EXPORT_SYMBOL_GPL vmlinux 0xa0c55ca4 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xa0cf2feb platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xa0d625f7 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0xa0e93a5f inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xa11d33fc led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0xa13cc374 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xa1443a23 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa19c5837 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa210c021 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xa219a936 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xa2b058f2 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xa2b3dc30 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0xa2b7d807 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2c684e6 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0xa2ef50e1 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa2f651ce blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xa2fdb84d regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xa3151e41 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xa3367ba5 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0xa3428fe0 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xa35353ae usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xa37070b2 kvm_release_hpt -EXPORT_SYMBOL_GPL vmlinux 0xa384918b pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range -EXPORT_SYMBOL_GPL vmlinux 0xa3b59fca dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3e16693 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa4273b11 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0xa4309574 queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xa43d4223 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xa4488dc6 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa490e4ad devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xa49484ad pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xa4adc677 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xa4da07ea fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0xa4e67e90 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xa4ec0a2a blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa4fff607 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0xa51cdac2 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xa5326a8e bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xa555b8fb nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xa5826bd4 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xa59ddeda mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq -EXPORT_SYMBOL_GPL vmlinux 0xa5b442a3 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xa5ba49d7 kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0xa5c0592e pcibios_finish_adding_to_bus -EXPORT_SYMBOL_GPL vmlinux 0xa5ec1eeb netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xa60c7397 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xa61f460b cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa62db9e9 iommu_tce_xchg -EXPORT_SYMBOL_GPL vmlinux 0xa638c915 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xa6535444 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xa6576a68 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa66bdc08 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xa6789d2b crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0xa689c83c sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0xa6968e1c tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6b9f760 elv_register -EXPORT_SYMBOL_GPL vmlinux 0xa6ca0ef5 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xa6d59bdd ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6eded6c opal_xscom_read -EXPORT_SYMBOL_GPL vmlinux 0xa716f1cb ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xa721bc3f opal_rtc_write -EXPORT_SYMBOL_GPL vmlinux 0xa73264b0 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xa73a9c5c ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0xa740e9e0 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa7487910 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0xa769b596 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xa77269c2 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xa78920dd dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xa7ae406a dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa80305c4 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xa818a01c regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0xa8222c49 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0xa833fc19 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xa8386f50 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0xa84d8469 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8693a5a nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0xa88eb160 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xa89829e9 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xa8a49397 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0xa8ae949b dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8c314b6 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0xa8c546a4 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xa8c92682 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xa8e989f1 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xa8ea7858 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xa9000ce4 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xa90fb99f sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa9459fb4 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xa946ab06 get_device -EXPORT_SYMBOL_GPL vmlinux 0xa94fcdf3 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xa95b2ac7 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa964c1fc dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0xa96f51d5 pmf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xa9700ad5 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0xa970b550 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa98cdb36 ps3_get_firmware_version -EXPORT_SYMBOL_GPL vmlinux 0xa99c9518 crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0xa9a2dd78 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0xa9a9ea03 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xa9aa1b00 opal_poll_events -EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e2be73 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa9e9b5d0 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xa9ed41ed skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xa9f19f2c devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xa9ff408a pstore_register -EXPORT_SYMBOL_GPL vmlinux 0xaa11ef61 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0xaa555280 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0xaa5dc170 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xaa7700b7 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xaa83e234 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xaa88a96b dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0xaa8ba8fb of_reserved_mem_device_init -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaaba52d ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xab0b2af9 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0xab0e3ec4 component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab2b243d ps3_irq_plug_destroy -EXPORT_SYMBOL_GPL vmlinux 0xab3e4cf6 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xab43d9c9 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab62d94a cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab7bf662 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xab9b1edc crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xaba2db15 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xabb3c829 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabd1e85a securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xabd5367b of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xabd91860 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0xabded191 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xac00824b iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xac066ecd usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0xac0ee003 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xac1272bc iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xac242f46 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xac319126 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0xac42ef52 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0xac4ddce6 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xac69ad06 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0xac6ca07b cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0xac743ca1 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xac855a54 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xac9e4183 pmf_call_one -EXPORT_SYMBOL_GPL vmlinux 0xacbaf42c of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0xacc1c865 blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xaccd34eb tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xacdeae30 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xace5ea78 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xacfc4867 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features -EXPORT_SYMBOL_GPL vmlinux 0xacffc09c sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xad14eeea sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0xad280fc7 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xad551b61 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xad6f8efb lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xad76f324 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0xad7a3881 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xad907e52 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xada9ffe2 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xadc54b09 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xaded9da1 perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0xadf4ae47 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xadf7d1d4 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0xae10e980 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xae20c4b7 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xae237cba devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xae3fd50c fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xae475d56 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xae54dc67 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0xae5de7a5 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6eaf93 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0xae6fd75d rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae80f6c0 tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all -EXPORT_SYMBOL_GPL vmlinux 0xae897be5 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0xae9e36d1 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xaea24a5a nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0xaec1ee91 of_get_nand_on_flash_bbt -EXPORT_SYMBOL_GPL vmlinux 0xaec9921f hash_page -EXPORT_SYMBOL_GPL vmlinux 0xaed50bc4 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xaee591ee tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xaf14afd5 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xaf1d4b02 dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0xaf25271b bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xaf279112 opal_leds_set_ind -EXPORT_SYMBOL_GPL vmlinux 0xaf797aa3 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0xafb89b6f pwm_request -EXPORT_SYMBOL_GPL vmlinux 0xafbccddb pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present -EXPORT_SYMBOL_GPL vmlinux 0xafc03587 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0xafc53e01 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xafd7c028 dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0xafdb8a25 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0xafdde950 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xb02ceb17 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb07b1f84 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xb0a24d88 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0xb0a4bef5 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xb0b1141e crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb119ceb0 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xb11c2c90 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xb12c7f68 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xb134a5ec inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xb13c3cc8 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xb13e08e2 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb144282f kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0xb166516b blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0xb16add77 crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xb18141ce inet_csk_compat_setsockopt -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1c8da10 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xb1dd98dc tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb20727e4 pmac_i2c_get_adapter -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb22429e6 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0xb2458986 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xb25c0ccf ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb27e734c ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xb284f325 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xb2b14984 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xb2bf4eca relay_open -EXPORT_SYMBOL_GPL vmlinux 0xb2ca9c75 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xb2dcc289 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2ef8238 md_stop -EXPORT_SYMBOL_GPL vmlinux 0xb2fdda20 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb334bb23 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy -EXPORT_SYMBOL_GPL vmlinux 0xb36e7d58 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xb3936257 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xb3dd162a of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0xb3fabd3b __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0xb4026567 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb42482be pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0xb4363e56 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xb45f6b35 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0xb4621645 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns -EXPORT_SYMBOL_GPL vmlinux 0xb494c4be devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c4b584 flush_vsx_to_thread -EXPORT_SYMBOL_GPL vmlinux 0xb4ca0f6c of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4ec456c usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xb501ccdd security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xb50bdaa8 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0xb51056bf part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb54134b7 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb55ed250 of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0xb56f944b devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0xb5792787 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xb585e6ed register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb58eb155 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xb58f7f67 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5a5753a device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb5bc6652 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xb5c64055 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xb5c8526b mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xb5cb5fda usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xb5e06988 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq -EXPORT_SYMBOL_GPL vmlinux 0xb61e6526 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb643c250 xics_wake_cpu -EXPORT_SYMBOL_GPL vmlinux 0xb6460ff9 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0xb66d73a4 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xb69b8de7 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb6aec19c perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0xb6b4f690 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0xb6b686d7 of_irq_parse_pci -EXPORT_SYMBOL_GPL vmlinux 0xb6bc007a spu_sys_callback -EXPORT_SYMBOL_GPL vmlinux 0xb6c49543 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0xb6e0b63e rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xb70d58c5 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xb719fb69 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xb71b56a2 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0xb73b9516 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xb742e2f7 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xb74fb045 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xb761bedb pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xb773de07 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xb7c203f8 seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0xb7ce571a crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xb7d7e650 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xb7efa1cb debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb80dc712 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xb84b1aae ps3_event_receive_port_setup -EXPORT_SYMBOL_GPL vmlinux 0xb86d6fd8 spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb89665a6 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8ce2822 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xb90279c8 pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb916deea pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xb91c79ca pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0xb91f00b1 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0xb934829e devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb935c96e dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xb937e430 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xb94de068 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb9b54acc devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb9b7084e pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9bbd301 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xb9c28bdb skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9ca79d8 nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9dcebea gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xb9dd2199 nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xb9e466c1 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xb9edc64f device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xb9fb95bf cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xba12a90a lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan -EXPORT_SYMBOL_GPL vmlinux 0xba1c7f65 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba5ed717 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xba80b3ff mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0xba84cdd2 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0xba946119 regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0xba9a4d15 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xbaa4b552 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xbaaa7d1a virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbabbb46d vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xbac3bebc ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xbae64a4a bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0xbaf6c39c clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbafdf31a wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb11e683 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xbb32c1c3 get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0xbb42f8ce thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbb43cfa6 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xbb49aafe spu_64k_pages_available -EXPORT_SYMBOL_GPL vmlinux 0xbb5f0e01 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0xbb6e5833 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xbb6ea28e devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0xbb8fc0db transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xbbae5616 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xbbc6fca4 percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0xbbe9ebb9 i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xbbece4fd kvmppc_do_h_enter -EXPORT_SYMBOL_GPL vmlinux 0xbc0a52b0 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0xbc0bfbd7 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbc2041b4 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7f8d75 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0xbc8c25c2 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xbc9c2e9d reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xbcabfa74 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcc15ca2 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd46641 spu_invalidate_slbs -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcea0e2b ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xbcfe8616 get_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0xbd1e76e1 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd50434e tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd6497b8 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xbd88f537 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xbd8f25fc ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbde7ee2f __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0xbdfb5e4c ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0xbe01073a platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe3f7989 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xbe471cdf opal_rtc_read -EXPORT_SYMBOL_GPL vmlinux 0xbe4eb99a md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0xbe523417 arizona_of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe87b598 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0xbe96bb7e regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeae624d posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xbeb30fde pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbec15b5a irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xbec89d8e sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xbec8d1c8 analyse_instr -EXPORT_SYMBOL_GPL vmlinux 0xbee1b721 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbee4dcf0 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xbeea2d8d to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xbef23940 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xbf201464 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0xbf3294af sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xbf528a5d virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfcd3b28 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space -EXPORT_SYMBOL_GPL vmlinux 0xc01a8767 __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0xc027b8f3 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc05e142d ps3_vuart_port_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xc061367e mpic_msgr_get -EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc08dd45a ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0e382ac cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0fc1e8d kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xc10f3388 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0xc12c7403 eeh_dev_check_failure -EXPORT_SYMBOL_GPL vmlinux 0xc162ccf5 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc17eb074 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xc17f1e64 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xc19217ee of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xc19554b8 dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0xc1bfd532 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xc1c08aa6 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xc1dc2a3a ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xc2023009 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc2746f1c devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0xc27cd33d sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc29a5f21 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc2dd90c3 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xc2f08f3c shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xc3199ab8 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xc31d2050 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xc323af29 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc34ae706 pmac_low_i2c_lock -EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xc35eaa0b crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0xc36b3b63 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc378a3e4 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xc38bec4a blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xc38d7170 spu_switch_notify -EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc3ae12db fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xc3bc7b58 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0xc3bf8b65 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xc3c7306f skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xc3f2e0e0 spu_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xc4111b29 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0xc412f980 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc447460d usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc46c4e9d __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xc46f33ab inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc478573b bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48e47c5 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0xc4a16a61 unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xc4ab3617 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4d6f631 tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc4f06e14 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xc50083e7 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xc50bf702 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc5143264 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc5452f9c __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xc54df154 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xc57183f3 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xc58ea428 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc5d0f888 pmac_i2c_match_adapter -EXPORT_SYMBOL_GPL vmlinux 0xc5dc9296 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xc63cea5b fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xc6401949 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xc658f51a crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc669c0f3 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc66c2311 ps3_vuart_irq_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc679741d cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6ae695d usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xc6c69a8f opal_flash_write -EXPORT_SYMBOL_GPL vmlinux 0xc6cc9d76 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xc6e18c4b hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc6e2f79a percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc714382f sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc77566d8 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xc78d6aae regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7babe9a wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7d940c2 edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc809c67c tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xc816059c device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc89cb40f posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8b21f91 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0xc8bcadbd wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8eef608 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xc8f4e3d1 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0xc90432cb percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level -EXPORT_SYMBOL_GPL vmlinux 0xc98658a3 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0xc9e2037c __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9f2100d i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0xca35bf50 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xca3b3701 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xca51c37d usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0xca572edf cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0xca6570c9 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xcaa0ceff pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcad12415 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xcadbfc0e fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0xcae569e2 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xcafd45a8 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcb06e614 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0xcb084339 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb45e037 of_pci_get_host_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb4a67ce md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xcb5741ab ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xcb5e0a69 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xcb73c003 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0xcb7c0e10 rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xcb937cab pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xcb9fa3dd uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0xcba684e9 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0xcbd849da device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcbef972c dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xcbf4b9dd pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcc003ea3 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xcc0d746d trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcc22720f shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xcc2ba30d list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcc36e37d vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xcc3c3a65 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xcc543246 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xcc5bfab2 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc5e804a perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xcc6280a9 __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0xcc74c61e of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xcc7522a0 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc8ff376 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xcc925d49 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0xcc981980 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xcc9f31cc device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xcca86911 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0xccbbecc2 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xccc2a80f tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd16461 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0xccd64784 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xccf44330 input_class -EXPORT_SYMBOL_GPL vmlinux 0xcd383a67 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xcd3f23b2 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xcd51b012 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xcd67d569 platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xcd786364 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xcd8a2cb7 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcda53875 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdc7ce30 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd44d2d ref_module -EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource -EXPORT_SYMBOL_GPL vmlinux 0xce102819 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xce394103 iommu_tce_put_param_check -EXPORT_SYMBOL_GPL vmlinux 0xce3d802a virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xce4668f7 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xce4c520e ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0xce4f1fec dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce795d55 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xce8edc34 spu_switch_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xce8f0397 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xce9b6a58 of_get_nand_bus_width -EXPORT_SYMBOL_GPL vmlinux 0xcea2bb96 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xcebb9bf9 ps3_mmio_region_create -EXPORT_SYMBOL_GPL vmlinux 0xcec9464e i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee66c9e ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xcee9074d driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xcee9539c bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xceef20e4 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xcf0e9aa9 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xcf1ba138 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf606793 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xcf82448e kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0xcf890534 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xd004f2a9 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xd00bd14f i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xd00c5363 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xd01afd3f opal_tpo_read -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd040bf44 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xd041aefa devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xd0506c43 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xd057cd93 put_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd09d401d rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0xd0a0f310 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c32f1d led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xd0e0982d ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd0f50c01 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xd0f54de3 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0xd0fe5a99 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xd1115b5d stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0xd11b528a scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0xd14f8593 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xd15f50f7 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd1a02879 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xd1ac5fa3 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd1b30ff8 pmf_register_irq_client -EXPORT_SYMBOL_GPL vmlinux 0xd1b74206 ps3_vuart_read_async -EXPORT_SYMBOL_GPL vmlinux 0xd1dd4b1f __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd23d2918 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xd23e4dc2 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0xd2409cd4 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xd24d9603 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd2660b58 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xd26c9f6d dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd27b80cb da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0xd27f806f __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xd28c2f00 spu_associate_mm -EXPORT_SYMBOL_GPL vmlinux 0xd29b0b6d power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xd2d11049 ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2e27675 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xd2e3621a devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd2ebf82a usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd2f88d3c gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0xd324fec5 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xd331bed0 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xd3370335 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0xd33b6e8d ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0xd3743e73 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xd37f0db2 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd3a33ef9 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xd3ac583e spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3b57ef0 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0xd3ca4909 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0xd3cee1a1 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0xd3d060cc kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xd3d573b4 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xd3e5128b regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0xd3ee1e8e regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xd3f979ef nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4035ca3 of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd41f41ad rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd43cc893 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd43d96bf dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd48532fa devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xd4b1e34f ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c385b8 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd4ca4a1c ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xd4d88dda set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xd5281ef6 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xd542f29e ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xd546b9d4 irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0xd5484b2f rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xd54febd3 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xd5567b79 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xd5596d48 opal_xscom_write -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd55ed241 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0xd56cea8c __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xd57b0a47 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xd5924ac5 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0xd5a45da1 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xd5b66c6d ps3_system_bus_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5be0ea8 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0xd5cd4890 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xd5d009a8 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xd5d2c010 nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xd5dcb36e skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0xd5f9358a regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd612e8ab mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xd61fab18 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd6226ce9 eeh_add_sysfs_files -EXPORT_SYMBOL_GPL vmlinux 0xd6245b47 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xd627d06b inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xd628d2d8 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xd637eea1 pcibios_free_controller_deferred -EXPORT_SYMBOL_GPL vmlinux 0xd648d192 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0xd6494cbb of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd68b63e3 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xd69176c2 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xd69b4374 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token -EXPORT_SYMBOL_GPL vmlinux 0xd6bdf4d7 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xd6c32f5b pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0xd6d6cd31 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xd6d81b14 __giveup_vsx -EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0xd6f592bf blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0xd6f9042f tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0xd6fa7a51 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd715595e param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xd724a7db vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xd73c6b8f sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0xd748bec0 scom_map_device -EXPORT_SYMBOL_GPL vmlinux 0xd7575147 tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xd7578332 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd76c2cb1 pcibios_unmap_io_space -EXPORT_SYMBOL_GPL vmlinux 0xd76c562f stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd78d4fa9 raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0xd798c62d scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xd7af71fd init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xd7b8e693 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xd7bb129c security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0xd7bd608f tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xd7c3a2f6 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7e4449e srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xd803b311 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xd80ae9af netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xd80c9f2b dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd8263870 mmu_slb_size -EXPORT_SYMBOL_GPL vmlinux 0xd828a786 unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0xd847e2fc tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xd8498f4d ps3av_mode_cs_info -EXPORT_SYMBOL_GPL vmlinux 0xd869fcc2 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd8856c0c spu_remove_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0xd88e5107 rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0xd8960a77 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xd8a80607 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xd8b069dc scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xd8d8693f gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xd920611b rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xd92338af regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xd93e8e0e of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd9497b3c ps3_os_area_flash_register -EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0xd95ce148 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd97878a7 mm_iommu_preregistered -EXPORT_SYMBOL_GPL vmlinux 0xd9837cf0 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xd98aa1e0 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xd98e3ea9 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xd990588c blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0xd9af3084 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xd9ce4d0f pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xd9d064b9 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xd9db0f33 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable -EXPORT_SYMBOL_GPL vmlinux 0xda302164 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xda496466 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xda71dffa skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xda802a5c of_console_check -EXPORT_SYMBOL_GPL vmlinux 0xda8c010e handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xda8df0bf rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0xda97c9bc __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xdab923f9 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xdae1b318 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0xdae3f47f __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb0ac13b ps3_compare_firmware_version -EXPORT_SYMBOL_GPL vmlinux 0xdb0e4dc8 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xdb1b3c2a ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xdb22aecc tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0xdb29790f hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xdb444f5c class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb6f25dd rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0xdb6fa487 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb8c421e smu_get_ofdev -EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xdbba88ea cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0xdbf4adcd netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0xdbf4b621 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc00a928 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xdc1c379d __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xdc27ad7f serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xdc3246f0 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xdc378b51 wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0xdc57ae2d of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0xdc7487db pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc937864 spu_switch_event_register -EXPORT_SYMBOL_GPL vmlinux 0xdc978569 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca3ec99 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xdcd83db2 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xdcdaaafc of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xdce6c68b __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xdcf81301 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0xdd043eea ps3av_get_auto_mode -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd430902 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0xdd6d7fc7 pcibios_scan_phb -EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xdd7de492 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xdd91ffae ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xddaeecf9 bus_register -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xdde06cd8 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xdde2e5ba blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0xdde9fce3 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xddea1337 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xde09e525 usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xde0a07b0 regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0xde16dad8 pmf_get_function -EXPORT_SYMBOL_GPL vmlinux 0xde1ec1f7 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xde312139 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xde40f21e pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xde6226e7 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xde74b230 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0xde765033 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xde89a172 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xde8b2c31 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdebc41e7 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xdebceaea arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0xdecd965d sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0xdeced2f3 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xdeec98bd regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0xdf0efa9e of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf22955b pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xdf2d4543 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0xdf37d52c usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xdf59b6cd pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xdf6af836 swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0xdf7731b2 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0xdf7e9ec0 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xdf80476d trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xdf858fbf of_get_nand_ecc_strength -EXPORT_SYMBOL_GPL vmlinux 0xdf911aa8 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xdfd6caea usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0xdfe2cfb0 xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0xdff0d423 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe011f817 ps3flash_bounce_buffer -EXPORT_SYMBOL_GPL vmlinux 0xe016461b stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0xe02ce2d9 of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put -EXPORT_SYMBOL_GPL vmlinux 0xe041fc07 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xe06178d1 single_release_net -EXPORT_SYMBOL_GPL vmlinux 0xe06fe221 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe0908c76 spu_setup_kernel_slbs -EXPORT_SYMBOL_GPL vmlinux 0xe096c443 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xe09fa439 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xe0a0abf2 rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0xe0b31348 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xe0f2b339 eeh_add_device_tree_early -EXPORT_SYMBOL_GPL vmlinux 0xe0fd7d90 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe129d0de blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0xe136d69b preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xe13904e0 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xe145aaf0 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0xe1729cce realmode_pfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe19ef486 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe19fc092 ps3fb_videomemory -EXPORT_SYMBOL_GPL vmlinux 0xe1a567c3 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe1a76b1a inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xe1a7cd1e clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1bfaabe ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xe1d23441 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xe1d331b4 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xe1f38b4c bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0xe1f80f3f extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xe2086333 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xe23a1a69 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe27dd922 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0xe281f610 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xe2864120 devres_find -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe2b64f32 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe2b76621 gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0xe2c8fc31 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0xe2d0514f pmac_i2c_get_bus_node -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe341fce6 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xe3592c6d debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0xe38b4b12 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xe391485b rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe3d7750e btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0xe3f6358d pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xe3fd4d2b bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0xe4066328 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe4171117 eeh_pe_inject_err -EXPORT_SYMBOL_GPL vmlinux 0xe42f840a regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4329ad6 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe45c586d mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xe463554a bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe46c372a of_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4980156 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0xe49c2b08 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4a6ab5e fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xe4c36a1e __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4e9c281 pmac_i2c_get_dev_addr -EXPORT_SYMBOL_GPL vmlinux 0xe4f588c4 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0xe4fc5787 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xe51c040f register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xe524799b pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0xe52853cf pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xe54610c4 extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0xe5479df7 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xe54b5ce9 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe54d5ca9 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0xe5540302 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xe5749519 ping_close -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5afbe4c iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0xe5b12ceb ps3_vuart_cancel_async -EXPORT_SYMBOL_GPL vmlinux 0xe5e399a4 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xe5f11908 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xe626c607 devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xe63d5829 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xe64d3f80 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe662c9e7 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0xe66cf472 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0xe671f33c pmac_i2c_get_channel -EXPORT_SYMBOL_GPL vmlinux 0xe6821ee5 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xe6c395e9 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xe6c551b1 kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe6f98179 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0xe70a6b9d skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xe70bcb5f crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xe7411b95 of_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xe74275f3 mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe781ace3 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe79b0256 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xe7b36ceb usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xe7c7b7fe genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0xe7db4b2e sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xe7db5795 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0xe7e6d40b desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe81b40f0 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xe8204698 ps3_vuart_read -EXPORT_SYMBOL_GPL vmlinux 0xe8268fd5 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xe82ada17 usb_string -EXPORT_SYMBOL_GPL vmlinux 0xe842bbba adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0xe844e6e9 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe85c44ea cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe89c1fab skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0xe8a60db9 nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xe8a887c8 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0xe8add67b __add_pages -EXPORT_SYMBOL_GPL vmlinux 0xe8b890e5 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0xe8bd9b83 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xe8d3a2de iommu_take_ownership -EXPORT_SYMBOL_GPL vmlinux 0xe8ea3eee debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xe90ceabc devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xe922a111 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0xe92ca4ca ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe94f7726 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction -EXPORT_SYMBOL_GPL vmlinux 0xe98006eb trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xe9ad68c9 devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9dcb02e hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xe9ebf4a2 eeh_pe_get_state -EXPORT_SYMBOL_GPL vmlinux 0xea00dd72 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea2965f1 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xea3ea71f fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0xea720e94 isa_bridge_pcidev -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xea974978 dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xea998d16 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xeabc851a tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xead3124b crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0xeae84380 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xeaff6623 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xeb128cf0 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xeb12de89 register_cxl_calls -EXPORT_SYMBOL_GPL vmlinux 0xeb2143a6 cpu_remove_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0xeb31999e sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xeb668c37 regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0xeb69ed50 copro_calculate_slb -EXPORT_SYMBOL_GPL vmlinux 0xeb70f7d9 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xeb719f10 irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xeb861743 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xeb920e97 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xeb9de1a3 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xeba441ad gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xebac8f1b __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xebb4df5b unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xebea9790 user_update -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xebf96fe1 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec2d7a57 __online_page_set_limits -EXPORT_SYMBOL_GPL vmlinux 0xec438d2d blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0xec68fdf4 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0xec7076d4 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xec90d0c2 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xec955b54 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0xec98bc56 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xecd9a3a8 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xecf0dbd9 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xecfcfc91 drop_cop -EXPORT_SYMBOL_GPL vmlinux 0xed0fbe0d da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xed3d9fd8 spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0xed44d188 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xed57a36d to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0xed7d7db9 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xed7d981e of_css -EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xed9bb5fc phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0xed9efb1f scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0xedae7600 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xedb98c33 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xedbcd671 __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xedbcfe0b elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xedca24de ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xedd21282 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xeddceaef ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xee0de9db wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xee27ae83 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xee544a23 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xee578e2b crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0xee5b0562 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xee69b3a4 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL vmlinux 0xee99fdfb __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0xeeb5edab pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xeebe69fc class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xeeeaa694 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xeeebfb7f ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0xeef9572f ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xef179318 posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0xef196c3d devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xef3e0017 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xef4a1ead fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat -EXPORT_SYMBOL_GPL vmlinux 0xef71976e task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xef931bc4 sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xef9c51b5 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefcdd907 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xefeb94a6 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xf00bcab2 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0xf00fb3c9 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf0571dea rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xf05744be pcibios_map_io_space -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf07a9f1d tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xf08e6d43 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0xf098dd15 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xf0a2a2b5 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0xf0addbf0 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0xf0bdf299 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf106a114 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xf1145383 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xf1214bbb remove_irq -EXPORT_SYMBOL_GPL vmlinux 0xf12242c0 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xf138b3bd nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0xf15bd67d sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xf15d55ac sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0xf162f283 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xf16a5827 device_attach -EXPORT_SYMBOL_GPL vmlinux 0xf16e0716 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xf18086c6 iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf1a2cdab scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1bb9113 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0xf1c7722f wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xf1cfee79 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0xf1d075ff __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0xf1d59e91 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xf1fde4dd hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf2225f28 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xf22764e4 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xf228536d ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0xf23f5376 ps3_open_hv_device -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf28badd6 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xf29abab5 spu_set_profile_private_kref -EXPORT_SYMBOL_GPL vmlinux 0xf29b6b6b gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xf2a00018 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2acf5b9 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0xf2c8b23d pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0xf2eeac10 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf2fe7cae pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xf3082305 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf318b67f crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xf33e5af3 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xf342239e fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0xf364d175 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0xf3676124 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0xf37400b9 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3925838 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xf3a5f74b disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0xf3a93813 eeh_add_device_tree_late -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3ddc1c8 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf3f9bc0b cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf40643bf pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf426990c kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xf42c897d filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0xf43f681b __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0xf454e590 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xf4594703 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xf469c705 ps3_io_irq_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf4719947 cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0xf47d5270 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4aa83c7 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xf4abcbd5 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5136b0b register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xf51540f5 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xf51c5e88 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xf52a54bb class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xf533be5f power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5a9ebfd device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xf5b45b40 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xf5cd6b6c blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xf5d01d94 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xf5fd7271 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xf6240881 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xf63359c9 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xf63b82d8 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xf652abb6 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf667c377 devres_get -EXPORT_SYMBOL_GPL vmlinux 0xf668fa44 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0xf679f5fb wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf686ca79 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xf6a08c8f register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf6c54cc8 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf6c82344 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d5d5cf nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xf6db3f2a gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf7192dc2 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0xf719eec3 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0xf73b29a2 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xf744c42f blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xf7993a15 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf7a381af component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xf7ace03d agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xf7f380ec irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0xf800b03b ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf808cf2a dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0xf80c3062 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf837e0eb unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xf869ac73 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xf86ea14b crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xf8702aec sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xf87b3713 pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf8ad4f29 nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xf8e398fc memstart_addr -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf906ae4e init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf9385fb4 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xf94cc1c1 unregister_cxl_calls -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf960514c wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xf960dd9b ps3_mmio_region_init -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9bb1ecc debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9d12d84 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xf9dc10f0 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xf9f5e103 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa2d3be4 cpu_remove_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xfa329461 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0xfa56ba45 fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0xfa5b48e1 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xfa74d830 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec -EXPORT_SYMBOL_GPL vmlinux 0xfaa9a407 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xfac30419 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xfb051aa0 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb44a7a1 opal_ipmi_recv -EXPORT_SYMBOL_GPL vmlinux 0xfb525dfc pmac_i2c_get_type -EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb7bc093 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbcb22c2 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xfbcd197d usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xfbd3a24d opal_message_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xfbfcdc2b ps3_sys_manager_get_wol -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0613ed __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xfc10b861 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0xfc16d29a iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0xfc1d17f1 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc2848e3 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0xfc28c9f3 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xfc479c31 virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0xfc47d88b power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xfc54a6cb shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xfc6ad805 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xfc9937a7 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xfca3429b rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0xfccfcfda dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0xfcd431d6 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0xfcf82486 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xfcfd8db6 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xfcffb4e1 pmac_i2c_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xfd0d71d9 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xfd165d5a fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfd1892a5 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfd474728 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xfd65c28a gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0xfd70d6cc ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfddd285f mm_iommu_ua_to_hpa -EXPORT_SYMBOL_GPL vmlinux 0xfde29965 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xfde43c91 ps3_gpu_mutex -EXPORT_SYMBOL_GPL vmlinux 0xfdf01810 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xfdf453d8 ps3_close_hv_device -EXPORT_SYMBOL_GPL vmlinux 0xfe1a8a6f iommu_release_ownership -EXPORT_SYMBOL_GPL vmlinux 0xfe305f93 yield_to -EXPORT_SYMBOL_GPL vmlinux 0xfe3780cd crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xfe39682b tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xfe4b407c __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0xfe5f3e3e dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xfeff22e5 thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff0dacff ps3av_video_mute -EXPORT_SYMBOL_GPL vmlinux 0xff14b4be devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xff2b4478 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xff40dc9c pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0xff5725dd dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff6ed282 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xff8c69bc inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xffa8ba35 pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffc7e54b phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0xffceb90e napi_hash_add reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-smp.compiler +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-smp.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-smp.modules +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/powerpc/powerpc64-smp.modules @@ -1,4367 +0,0 @@ -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_mid -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -DAC960 -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -ac97_bus -acard-ahci -acecad -acenic -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -aha152x_cs -ahci -ahci_ceva -ahci_platform -ahci_qoriq -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airo_cs -airport -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -ali-ircc -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am53c974 -amc6821 -amd -amd-rng -amd5536udc -amd8111_edac -amd8111e -amd8131_edac -amdgpu -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apbps2 -apds9300 -apds9802als -apds990x -apds9960 -appledisplay -appletalk -appletouch -applicom -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -asc7621 -ascot2e -asix -ast -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atm -atmel -atmel-flexcom -atmel-hlcdc -atmel_cs -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avm_cs -avma1_cs -avmfritz -ax25 -ax88179_178a -axnet_cs -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1pci -b1pcmcia -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcma-hcd -bcmsysport -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluecard_cs -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bsr -bt3c_cs -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btuart_cs -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -cap11xx -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_das16_cs -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipone_icn8318 -chipreg -chnl_net -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -clip -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cm4000_cs -cm4040_cs -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -colibri-vf50-ts -com20020 -com20020-pci -com20020_cs -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_isadma -comedi_parport -comedi_pci -comedi_pcmcia -comedi_test -comedi_usb -comm -configfs -contec_pci_dio -cordic -core -cp210x -cpc925_edac -cpia2 -cpsw_ale -cpu-notifier-error-inject -cpufreq_spudemand -cramfs -crc-ccitt -crc-itu-t -crc32 -crc7 -crc8 -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -csiostor -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cxl -cxlflash -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_cs -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -ddbridge -de2104x -de4x5 -decnet -deflate -defxx -denali -denali_pci -des_generic -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9601 -dmfe -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -dp83848 -dp83867 -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dtl1_cs -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc3 -dwc3-pci -dwc_eth_qos -dwmac-generic -dwmac-ipq806x -dwmac-lpc18xx -dwmac-meson -dwmac-rk -dwmac-socfpga -dwmac-sti -dwmac-sunxi -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -eata -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -echainiv -echo -edac_core -edt-ft5x06 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efs -egalax_ts -ehset -elan_i2c -electra_cf -elo -elsa_cs -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emac_arc -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_pcmcia -ems_usb -emu10k1-gp -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -eni -enic -epat -epia -epic100 -eql -esas2r -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f75375s -f81232 -fakelb -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_cs -fdp -fdp_i2c -fealnx -ff-memless -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fl512 -flexcan -flexfb -floppy -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -fmvj18x_cs -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fsl-edma -fsl_elbc_nand -fsl_lpuart -ft6236 -ftdi-elan -ftdi_sio -ftl -fujitsu_ts -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcm -gdmtty -gdmulte -gdmwm -gdth -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -genwqe_card -gf128mul -gf2k -gfs2 -ghash-generic -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -gluebi -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-addr-flash -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-amd8111 -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-fan -gpio-generic -gpio-grgpio -gpio-ir-recv -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-rdc321x -gpio-regulator -gpio-syscon -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mdio -gpio_mouse -gpio_tilt_polled -gpio_wdt -gr_udc -grace -grcan -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -gxt4500 -hackrf -hamachi -hampshire -hangcheck-timer -hanwang -hci -hci_uart -hci_vhci -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hi6421-pmic-core -hi6421-regulator -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hih6130 -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi504_nand -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horus3a -hostap -hostap_cs -hostap_pci -hostap_plx -hp100 -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -hsu_dma -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hvcs -hvcserver -hwa-hc -hwa-rc -hwmon-vid -hwpoison-inject -hx8357 -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-cbus-gpio -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-mpc -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-reg -i2c-nforce2 -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pasemi -i2c-pca-platform -i2c-piix4 -i2c-robotfuzz-osif -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i40e -i40evf -i5k_amb -i6300esb -i740fb -i82092 -ib_addr -ib_cm -ib_core -ib_ehca -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_qib -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibmaem -ibmpex -ibmpowernv -ibmveth -ibmvfc -ibmvnic -ibmvscsi -ibmvscsis -icom -icp_multi -icplus -ics932s401 -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_gen2 -idtcps -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -ims-pcu -imx074 -imx6ul_tsc -imx_thermal -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int51x1 -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_powernv -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipwireless -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irqbypass -irtty-sir -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it913x -itd1000 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -kafs -kalmia -kaweth -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kvm -kvm-hv -kvm-pr -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan78xx -lanai -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-adp5520 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-ktd2692 -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-pca9532 -leds-pca955x -leds-pca963x -leds-powernv -leds-pwm -leds-regulator -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_cs -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -liquidio -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -litelink-sir -lkkbd -ll_temac -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac_hid -macb -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mailbox-test -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max5821 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77686 -max77693 -max77693-haptic -max77693_charger -max77802 -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -md5-ppc -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-cavium -mdio-gpio -mdio-mux -mdio-mux-gpio -mdio-mux-mmioreg -mdio-octeon -mdio-thunder -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -memory-notifier-error-inject -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -metro-usb -metronomefb -mf6x4 -mga -michael_mic -micrel -microchip -microread -microread_i2c -microtek -mii -minix -mip6 -mite -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_block -mmc_spi -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi001 -msi2500 -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxser -mxuport -myri10ge -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nand -nand_bch -nand_ecc -nand_ids -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -ncpfs -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_daq_700 -ni_daq_dio24 -ni_labpc -ni_labpc_common -ni_labpc_cs -ni_labpc_isadma -ni_labpc_pci -ni_mio_cs -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicpf -nicstar -nicvf -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nmclan_cs -nosy -notifier-error-inject -nouveau -nozomi -nps_enet -ns558 -ns83820 -nsc-ircc -ntb -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nvidiafb -nvme -nvmem_core -nx-compress -nx-compress-powernv -nx-compress-pseries -nx-crypto -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_mmc_spi -of_xilinx_wdt -ofpart -old_belkin-sir -omap4-keypad -omfs -omninet -on20 -on26 -onenand -opal-prd -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_cs -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -palmas-pwrbutton -palmas-regulator -pandora_bl -panel -panel-lg-lg4573 -panel-samsung-ld9040 -panel-samsung-s6e8aa0 -panel-sharp-lq101r1sx01 -panel-simple -parade-ps8622 -paride -parkbd -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pasemi-rng -pasemi_edac -pasemi_nand -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pcmcia -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pc300too -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia -pcmcia_core -pcmcia_rsrc -pcmciamtd -pcmda12 -pcmmio -pcmuio -pcnet32 -pcnet_cs -pcrypt -pcspkr -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc_adma -peak_pci -peak_pcmcia -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-tahvo -phy-tusb1210 -physmap -physmap_of -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pn533 -pn544 -pn544_i2c -pn_pep -poly1305_generic -port100 -powermate -powernv-rng -powernv_flash -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_core -pps_parport -pptp -prism2_usb -ps2mult -ps3-lpm -ps3_gelic -ps3disk -ps3flash -ps3rom -ps3stor_lib -ps3vram -pseries-rng -pseries_energy -psmouse -psnap -pt -ptp -pulsedlight-lidar-lite-v2 -pvrusb2 -pwc -pwm-beeper -pwm-fan -pwm-fsl-ftm -pwm-lp3943 -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa27x_udc -qcaspi -qcaux -qcom-spmi-iadc -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom_spmi-regulator -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qlogic_cs -qlogicfas408 -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quatech_daqp_cs -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -rack-meter -radeon -radeonfb -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -ray_cs -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio-scan -rio500 -rionet -rivafb -rj54n1cb0c -rk808 -rk808-regulator -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpadlpar_io -rpaphp -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtas_flash -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-as3722 -rtc-bq32k -rtc-bq4802 -rtc-cmos -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-generic -rtc-hid-sensor-time -rtc-hym8563 -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max77686 -rtc-max77802 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-ps3 -rtc-r9701 -rtc-rc5t583 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-snvs -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtc_cmos_setup -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7706h -safe_serial -salsa20_generic -samsung-sxgbe -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sbp_target -sbs-battery -sc16is7xx -sc92031 -sca3000 -scanlog -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -sctp -sctp_probe -sdhci -sdhci-of-arasan -sdhci-of-at91 -sdhci-of-esdhc -sdhci-of-hlwd -sdhci-pci -sdhci-pltfm -sdhci_f_sdh30 -sdio_uart -sdricoh_cs -sedlbauer_cs -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serial_cs -serio_raw -sermouse -serpent_generic -serport -ses -sfc -sh_veu -sha1-powerpc -shark2 -shpchp -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sis -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skd -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -sl811_cs -slcan -slip -slram -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smc91c92_cs -smipcie -smm665 -smsc -smsc-ircc2 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4117 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-als4000 -snd-aoa -snd-aoa-codec-onyx -snd-aoa-codec-tas -snd-aoa-codec-toonie -snd-aoa-fabric-layout -snd-aoa-i2sbus -snd-aoa-soundbus -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pcxhr -snd-pdaudiocf -snd-portman2x4 -snd-powermac -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-sb-common -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-imx-audmux -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rt5631 -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-usx2y -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-vxpocket -snd-ymfpci -snd_ps3 -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -softing_cs -solo6x10 -solos-pci -sony-btf-mpx -soundcore -sp2 -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -spectrum_cs -speedfax -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-nor -spi-oc-tiny -spi-pxa2xx-platform -spi-sc18is602 -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spl -splat -spmi -spufs -sr9700 -sr9800 -ssb -ssb-hcd -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -ssu100 -st -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stmmac -stmmac-platform -stmpe-keypad -stmpe-ts -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -svgalib -sx8 -sx8654 -sx9500 -sym53c500_cs -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink -synclink_cs -synclink_gt -synclinkmp -sysv -t1pci -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc3589x-keypad -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teles_cs -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tg3 -tgr192 -thmc50 -thunder_bgx -thunderbolt -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -torture -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_atmel -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish_common -twofish_generic -typhoon -u132-hcd -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_fsl_elbc_gpcm -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -uninorth-agp -unix_diag -upd64031a -upd64083 -us5182d -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vcan -vcnl4000 -ves1820 -ves1x93 -veth -vf610_adc -vfio -vfio-pci -vfio_iommu_spapr_tce -vfio_spapr_eeh -vfio_virqfd -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-ircc -via-rhine -via-sdmmc -via-velocity -via686a -videobuf-core -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videodev -vim2m -viperboard -viperboard_adc -virt-dma -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -vitesse -vivid -vlsi_ir -vmac -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmx-crypto -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vrf -vringh -vsock -vsxxxaa -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83781d -w83791d -w83792d -w83793 -w83795 -w83977af_ir -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wbsd -wcn36xx -wd719x -wdrtas -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -windfarm_ad7417_sensor -windfarm_core -windfarm_cpufreq_clamp -windfarm_fcu_controls -windfarm_lm75_sensor -windfarm_lm87_sensor -windfarm_max6690_sensor -windfarm_pid -windfarm_pm112 -windfarm_pm121 -windfarm_pm72 -windfarm_pm81 -windfarm_pm91 -windfarm_rm31 -windfarm_smu_controls -windfarm_smu_sat -windfarm_smu_sensors -wire -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wl3501_cs -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xc4000 -xc5000 -xcbc -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xhci-plat-hcd -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx_ps2 -xilinx_uartps -xillybus_core -xillybus_of -xillybus_pcie -xirc2ps_cs -xircom_cb -xor -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yenta_socket -yurex -zaurus -zavl -zcommon -zd1201 -zd1211rw -zforce_ts -zfs -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -znvpair -zpios -zr364xx -zram -zunicode -zynq-fpga reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/ppc64el/generic +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/ppc64el/generic @@ -1,17406 +0,0 @@ -EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0x048d27cc hvcs_register_connection -EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0x536d329b hvcs_get_partner_info -EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xc39c3704 hvcs_free_partner_info -EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xd0a02396 hvcs_free_connection -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x6310e901 mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0xe563a1a6 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x4a2bbb83 bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0x93471510 bcma_core_irq -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x036919a7 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x1c07eb6a pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x21f01177 paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0x2c74e71a pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x59a595e5 pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x59d0d3dc pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0xa2629b42 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xb289be7b paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0xd95f6770 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xe007ecc9 pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xe5bdd835 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0xf5b68f83 pi_release -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x353b7df9 btbcm_patchram -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x27227b25 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x409b3250 ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9f749b53 ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd7df3795 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe59f8840 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x091687e8 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2160472d st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x537efdf5 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x9aca84ae st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3ede4589 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x74cbe0a9 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xf8c58d46 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x105876c3 dw_dma_cyclic_free -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x2f18b42f dw_dma_cyclic_prep -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x3c7e6b2c dw_dma_get_dst_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xaa5f88e9 dw_dma_cyclic_stop -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xb4523491 dw_dma_get_src_addr -EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xd201f43e dw_dma_cyclic_start -EXPORT_SYMBOL drivers/edac/edac_core 0xd2f9e4cf edac_mc_find -EXPORT_SYMBOL drivers/firewire/firewire-core 0x049f411b fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1d36f13d fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x28fb40d4 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x290f36dc fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x35e36b15 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3bc18ac8 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x48775689 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5f731333 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x75d39db0 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7a3a8674 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7bcff929 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7ff7ad87 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9a465803 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9d308c50 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa79d6b12 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xad0f7aa8 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb3730a93 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc8f2f4d2 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xce82095b fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd47f4be3 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdc6f4cd2 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdff2cf32 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe74f1e3d fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xee46c74f fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf0cc8e65 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xff1508d4 fw_core_handle_request -EXPORT_SYMBOL drivers/fmc/fmc 0x09087741 fmc_device_register_n -EXPORT_SYMBOL drivers/fmc/fmc 0x18e8ca15 fmc_free_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x297bf280 fmc_show_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0x433cebfb fmc_device_register -EXPORT_SYMBOL drivers/fmc/fmc 0x6255579b fmc_reprogram -EXPORT_SYMBOL drivers/fmc/fmc 0x62afc1ae fmc_device_unregister_n -EXPORT_SYMBOL drivers/fmc/fmc 0x62d4716c fmc_find_sdb_device -EXPORT_SYMBOL drivers/fmc/fmc 0x7e5ae6bc fmc_driver_register -EXPORT_SYMBOL drivers/fmc/fmc 0x88261e15 fmc_driver_unregister -EXPORT_SYMBOL drivers/fmc/fmc 0xa40e9ae9 fmc_scan_sdb_tree -EXPORT_SYMBOL drivers/fmc/fmc 0xffc4f2da fmc_device_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01ec64a4 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x022e7e19 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02d864fa drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04b55bdf drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04dbcd0e drm_legacy_addbufs_agp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ecf8c0 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0602ce67 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06597b25 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x067060d4 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07c4a120 drm_plane_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08403967 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x099eee2a drm_connector_unplug_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dc22a3d drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dfc98ef drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb3a37f drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f64905d drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fbc4c61 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fe9ed07 drm_atomic_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x103803ff drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10906fa8 drm_platform_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x112208b9 drm_atomic_clean_old_fb -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1239bfae drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12f4c6e4 drm_dev_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13351343 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14dae872 drm_framebuffer_reference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16244ddb drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x162e2950 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x164d17bd drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x170bdb6e drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1794f1dc drm_legacy_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17a63698 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e4430f drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ba23281 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd3cbd6 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c69362f drm_legacy_getsarea -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cff4f21 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dbf5c26 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e9cfa07 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f5f9085 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fde96b5 drm_legacy_idlelock_take -EXPORT_SYMBOL drivers/gpu/drm/drm 0x202ca657 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x211223f0 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x211263fc drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21b0645b drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23d0a787 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26e4af1f drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27797189 drm_select_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ac8e8b8 drm_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b32a990 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d357144 drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e372227 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e3ce5b9 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f4920ed drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f6a9aaa drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3056038f drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x313ef7ae drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x323b3ace drm_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x326274d2 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33dc7804 drm_mode_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x352b7db6 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36912dc9 drm_mode_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37311913 drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3820b564 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x389cb469 drm_mode_create_dirty_info_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3933bdee drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c57635c drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3db81c4c drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42699b2f drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43410355 drm_encoder_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4518c6d9 drm_crtc_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45ccadfe drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4671344f drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x483e6011 drm_legacy_rmmap_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4891cda5 drm_property_unreference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48c9a4e9 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a51438a drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aaa28d4 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c58b740 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ce7a25b drm_legacy_addbufs_pci -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4de75663 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4efaedaa drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f48fa79 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x503ef592 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x513aa563 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x515016ec drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51a9469a drm_modeset_unlock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51b20c12 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51b2d247 drm_modeset_backoff_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5255c31f drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5264a838 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x542b8288 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56b44c3c drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56ea1029 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x577916d7 drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57bed2be drm_legacy_rmmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57d5e8e9 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x588eb0db drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59894f78 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59d5fdf3 drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a01196f drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ab641b6 drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cc8ab7e drm_vblank_post_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d1f269f drm_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f06e173 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6148d7f3 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61511d74 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61fbc090 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65c221e0 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65d57c69 drm_vblank_no_hw_counter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x665bf2bb drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66bec064 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67dc667b drm_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6860187d drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0x686b8839 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68e22b81 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ed607c drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x690f78dc drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x692f9301 drm_pci_set_busid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a16893c drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b576d45 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ccc8cda drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x703a0f23 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x704bf914 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7070418b drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x713bf6ca drm_mode_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72a10019 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73d22489 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73d3fd23 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74923d27 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75ee69a2 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x764f20e1 drm_edid_to_eld -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a073a33 drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bdf0cef drm_pcie_get_max_link_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c71b398 drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d7d9a90 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d9b68da drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81281aee drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x813beade drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8311bf4f drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85308543 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8554e51c drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8632f123 drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87126f66 drm_agp_bind_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87d97081 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87ec7e2c drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88bb4582 drm_crtc_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8987e120 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b4074dd drm_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b55e3f4 drm_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b96a369 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8baadc3b drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bd6cf52 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cac154b drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d904405 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dee8dec drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ef60a54 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f8bcaec drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x905f6df4 drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x909eb4a1 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90b01424 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x922779d6 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ab6339 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92eb8983 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94905826 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9763de65 drm_framebuffer_unreference -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97873aa5 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9797d7fd drm_modeset_legacy_acquire_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x989de470 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a703b0c drm_mode_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c2ab385 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d53f430 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d7d9753 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d8307ac drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e9a82bf drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0abbe71 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa15a841d drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa17daf11 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa23183a0 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa30cdde9 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa42c9b47 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4f0fe4c drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa50e2d1c drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa719b63b drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7f8465f drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa80cbace drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8407fa1 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9265b7b drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa93606c1 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab47d9a7 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab65e0a1 drm_atomic_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab6891db drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab8dffef drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac35e29e drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac623aa9 drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacd81efd drm_ati_pcigart_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad5ec385 drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad73d868 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadc700c2 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafa9feee drm_atomic_legacy_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0ce4fb1 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3a5bdc3 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4360b46 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb45b0382 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb565a332 drm_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb60f4703 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7214ac9 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb900bfa6 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb96619f7 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9f47043 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba3168ec drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba5b4bd2 of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc549f5e drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc7d6888 drm_mode_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc83d358 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc9658ca drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd3ccaf9 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdb4c13a drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbde5a713 drm_connector_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe46403c drm_vblank_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0259060 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc055a024 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0f813df drm_modeset_lock_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3714e41 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3e9a730 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3f009ec drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6f4fc04 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc81018fa drm_vblank_pre_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc87c4f0d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8c71dac drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9922096 drm_atomic_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca35673a drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd34ad4e drm_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdaa57ac drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcec0a6da drm_pcie_get_speed_cap_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfcd4e01 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd057826f drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0e7ee32 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd18f9348 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd190798e drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd266663f drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2aedda8 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3965ace drm_unplug_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3f428d5 drm_property_reference_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5904eda drm_modeset_lock_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6f88dc8 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9645ba2 drm_legacy_addmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb4a3c5 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb964b6 drm_atomic_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbfc8e7d drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc3c744d drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc89a04e drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde11aeb9 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdec6b501 drm_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf5691c8 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe108338d drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe305bdfa drm_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3facd49 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe67b0a55 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe71830be drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe747a522 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe79b9549 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a821bc drm_mm_dump_table -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8d4dd24 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9d83059 drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea23fae1 drm_dev_ref -EXPORT_SYMBOL drivers/gpu/drm/drm 0xead299d5 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb82daec drm_mode_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeddcf40c drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef174d77 drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xefdebd13 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf201a47e drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf26845e8 drm_mode_validate_basic -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3139d12 drm_legacy_idlelock_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf637b84c drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6a4926d drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6f423de drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7d4e541 drm_platform_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf87f7262 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8c76834 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf93a4435 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa657278 drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdaa57ec drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05a00ae5 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x072c88cd drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07cbbf29 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07f82aef drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08849324 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09d677bb drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09e305d4 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0be1c018 drm_primary_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cb52308 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d4811ac drm_helper_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dc6b9c3 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1152f9b5 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1347381d drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19216fe3 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19b580ac drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a9b0d8c drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c01ecd9 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c67b661 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cbb1ea7 drm_atomic_helper_framebuffer_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d9cd824 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d699ca9 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31fa7494 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x355ad29a __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36eed89d drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39bfafa3 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c2953d6 drm_fb_helper_add_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cb70504 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3da3fed6 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e1b1ad2 drm_atomic_helper_plane_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f494eb5 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x411383a1 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47ca5a01 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4aaf4505 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b0fe248 drm_has_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c2d82b2 drm_atomic_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d92f82e drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e29cb02 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x529b76ac drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52b27882 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x531e2704 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x568d8cff drm_primary_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56f78939 drm_kms_helper_poll_enable_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57f61d3e drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59878e32 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d242dfa drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e07b40f drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e191018 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e85365e drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62098db1 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6720d22b drm_dp_aux_unregister_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68a4b902 drm_dp_aux_register_devnode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d0875e drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d93151 drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a10e01d drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f41cde1 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f7d79b3 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ff33125 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70cabb52 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7249a0d5 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73362208 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x743870dc drm_helper_crtc_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78594dc4 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ab0deba drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bd900d7 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ddd4165 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7df4b852 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7df95a99 drm_plane_helper_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8052837c drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82202ede drm_fb_helper_remove_one_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x823ba2fb drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82634673 drm_fb_helper_fill_fix -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x827f506b drm_atomic_helper_connector_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83cd6a5e drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83d009ac drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84569a63 drm_pick_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85fe4179 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87b45e03 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b3c01a4 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cdd9d41 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d47fd0c __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e34906b drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f24babf drm_fb_helper_fill_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91657c1f drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9180aee3 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x921da1fe drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x922c4a2f drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94aa2a52 drm_helper_crtc_mode_set_base -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95864326 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98857b10 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99441814 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99eb99ec drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bd4f915 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d06839e drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d8d06dd drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fe8e395 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1f9c1c7 drm_plane_helper_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa515adb9 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa63f498e drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa701c45e drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7186703 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf502cd4 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb147bde9 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb18fd3a3 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3a497fa drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5de15e2 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8c32661 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba433530 drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba4e9599 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbae0c2b drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd65f7a0 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf288d24 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1076a9d drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc17cff46 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc193ccd4 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc411eaff drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc720d1d2 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7d95d04 drm_plane_helper_check_update -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9572777 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca5a844d drm_atomic_helper_crtc_set_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1223129 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd22a2720 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd382fde4 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd424f326 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4862651 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda3cf6bd drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddf2f577 drm_helper_probe_single_connector_modes_nomerge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfbb9cf0 drm_fb_helper_single_add_all_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe353696f drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe76da5d9 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7d188f5 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7ee3522 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe895a3c8 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8bc659c drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebddb14a drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecc22bfd drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee5ee9ab drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef64b27f drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1b1b0b1 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf21d4df8 drm_fb_helper_release_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6c6144c drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc2b3e92 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcb6ea00 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x023f594e ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0d5e8846 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0eba2b5c ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2207f2fd ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24d74e5e ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2660332b ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x299a44ee ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3525a35f ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x39aafda3 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c7b2054 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3de3dab5 ttm_mem_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e9051fd ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x54c38451 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5665e7f7 ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59f48771 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a86402f ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f632532 ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x660ed5f3 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66dced64 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ae38c0a ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7126d608 ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x77f268d4 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ce0955d ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b89726f ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c868a1f ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d323bd4 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d7dc34c ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90519d59 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9307815c ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95144a33 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96edf2d6 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a00fd21 ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ab4d22a ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae6e14c8 ttm_mem_global_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb039ac1e ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb26c21b8 ttm_object_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd2e079b ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2ab71e0 ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2cd5ebe ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc334b922 ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc459772c ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce55836a ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd2174ce0 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd4d9abe7 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb2f648d ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdbbe5247 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdeb99f82 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe4595a93 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe69ca614 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeae7ef4d ttm_prime_object_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xedb44189 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf1345977 ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf19eb82c ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf27e8fd8 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3a547a8 ttm_bo_unref -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd6f22c8 ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x4a76ef93 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc59788f8 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfa6b691e i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x5c3027ca i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xacf564de i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x7627b77d amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x05bc8705 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1c98065d mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x37df9d50 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x44b12b34 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6970a3d9 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x69d61f43 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x73d81005 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x778aabed mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7f3eee29 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa7e12775 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcd03a488 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcdcebba3 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcf91657f mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xec89ca00 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf6e6d1f2 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfdaff605 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xaadbf90e st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xe5a068be st_accel_common_probe -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x5a915670 iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xb6cf00d7 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x36a1cc67 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x47553c70 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xbbfeac18 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xcf3c8ced iio_kfifo_free -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x144e2f9c hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x2e45401a hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x9b50298e hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa25c75a2 hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc9865eb4 hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xf8d751b7 hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x314e7875 hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x823e744b hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x842aaf19 hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xac896daa hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x300f568a ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x381978de ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x45aac561 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x66845113 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x69323e00 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xda133f43 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe5e35340 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf4fb2dd8 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfe3d134d ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x2bcdfa47 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x3339f243 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x8b6224ff ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xdd8d80c9 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xe67452c8 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x636f0924 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xab25b4d5 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xdd69695b ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x00e1a1fc st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2ff8cb86 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x30fde093 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x319cf0fe st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3809036c st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x53eae82f st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x627f97c7 st_sensors_get_buffer_element -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x66cfce78 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x80e0059c st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x83e893b8 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x89ce73ea st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9d8f04a0 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb53ab57c st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc32cf995 st_sensors_check_device_support -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcab0eda1 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd33bf7a9 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xef9e300b st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x2537675f st_sensors_of_i2c_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x9cd83e2b st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x0a3b7e8a st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x691d699c st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xf0c040cf st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xb468b765 hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xa5d26b61 adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xcf353e7f adis_enable_irq -EXPORT_SYMBOL drivers/iio/industrialio 0x09eaa4ed iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x1ab67d08 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x1ddefc58 iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x23aab4d5 iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x31a6cf8f iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x32fbce31 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x35bd8852 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x512c1a02 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x5a4a8abc iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x7a25724c iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x85147c70 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x878e87bf iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x9a9f8ac6 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x9d14f660 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0xba674cbc iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xed99d515 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xf4319205 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x1f69a78e iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x426f08c9 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x0c526741 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x42b29bc7 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x695c127d ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x2e1271c7 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x92697fad st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x023f9259 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1ea5767b rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x32a8402c rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3a85b2a3 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x4dcfd88c rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xbba7c1a0 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0700e434 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0a5fd916 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0d3a11e5 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x14b883ea ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x20973426 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2ae1108b ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2e1b7a98 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x37af2ee0 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4353e16e ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x46e44ad5 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5008c963 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5eee4494 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x681ebb86 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x832a7547 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x89200e98 cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x97d8f5cc ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa9176e87 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xba2dac65 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x009c60c0 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05632ca8 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07f3d83f ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x093a6e3e ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bb785d8 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1014278d ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x114a766e ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1340db1c ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x159339ab ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1740d4b4 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x181bf69f ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c1076cc ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2121dd9d ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26710393 ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26fbae64 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3466da6d ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a3ce6a1 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bb7e5cf ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e54e44e ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3eebdcf5 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x402c0ead ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x405d76cb ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43c1ad21 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x467eb6b7 ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46c690e4 ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c75f6e2 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cc28369 ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e4eb305 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51ca694a ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb37db ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a826afa ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d19a729 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62a19449 ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6730b8b1 ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7389572d ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73df3c14 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73fce057 ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x766b66e7 ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a8bd4d8 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87caca1d ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a27ef4e ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d523f32 ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x905f7591 ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x908802ca ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98034115 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b0450e5 ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c8d9b4a ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d061e94 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6c173dd ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa910ecc5 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad3fb79f ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3eeef2e ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb47f16d9 ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4ecddce ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5a9ac89 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5b8dd73 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd0d7038 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc024b0f9 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0a5b6dd ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2a61d16 ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4154afd ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7f69b55 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8fbd639 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdf2e1dc ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce252779 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0f10565 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd111c1c4 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4b38667 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4ece8cb ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd1440ec ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd7b071d ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe00aed86 ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0463178 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe22510d6 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe23e9152 ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe28efa4d ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4a722ac ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe991d355 ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeab2a977 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedacd673 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1ba4863 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf41507e5 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffce995f ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1f83d3e2 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x288480a0 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x33d19442 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x3b66be4f ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x59677b50 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x64764819 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8af89513 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa9c7082a ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb50ca427 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb66a05d1 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb75dbd6f ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb9fe9f44 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc2175fbf ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x0f491a1a ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x165e31b8 ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x2df8733f ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x2ec16e65 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x383e597f ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7362118a ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7ac80ad7 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xbf08c92a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd0289e78 ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc96f0062 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf1017e73 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x113b95d2 iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x20b7abae iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x24cf7d38 iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2f48df6a iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3c9a60ba iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4dede35a iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8797f80e iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x93d6cb58 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xae61aaf0 iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbb8d9bb7 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc16ebc84 iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdff9e231 iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe3f666f6 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf56ea852 iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xff55fbee iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x09c7061f rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x20fd2afe rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2b2e04f3 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x328dd3ad rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3ddd81bf rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x486dedda rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x61474a16 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x63f1597e rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6d2686d3 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x77fa43d0 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7e240cc6 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88477863 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9128acfa rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x93954b36 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x97ecbebf rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9c4d1798 rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa94d5237 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc9c6ddee rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf2c3a0a1 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfcaf91cb rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfef106cd rdma_destroy_id -EXPORT_SYMBOL drivers/input/gameport/gameport 0x14ea28db __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1be2bdc6 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3cfb2428 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x5e4dea26 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x6ed92c0a gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x70247e96 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x8088334c gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xaf077f8f __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xc28393b8 gameport_close -EXPORT_SYMBOL drivers/input/input-polldev 0x1ecb9ebe devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x39675bb8 input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xa2b40ead input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xc7608ef1 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xcd7e18fa input_free_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0xee69022e matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0xab37f598 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xd47e119a ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0xdd3adcd9 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x35bca988 cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/sparse-keymap 0x05a890a7 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x2196406e sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x49a92451 sparse_keymap_free -EXPORT_SYMBOL drivers/input/sparse-keymap 0x73182516 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xebb14214 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xf66b8f7e sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x76415069 ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xa0b074b9 ad7879_pm_ops -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1851fa9f capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x258d0675 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x63f6f59a capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6dd50f02 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x836ba656 capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9e607051 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa16a25f3 capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd26de2cd capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe26b770c capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf793e4ba capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x014be433 b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x080c1b33 b1ctl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x47218c1f b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6f7f04e3 avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9557fb2d avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x970ec10d b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa2b17a17 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb127d5d7 b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb7d1de3c b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbb5bb6d5 b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe1550e0d b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xed1c08d3 b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf756fd0c b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfcea9124 b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfd164bf8 b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x0ad4fabb b1dmactl_proc_fops -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x814b3372 b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x877d36e6 b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa3bb92c2 b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xab18edb1 t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc1c14ce7 b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xea0816fb b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xeba5d3d2 b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf81de39c b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd2a41634 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd70b37f6 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xddabf508 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xfd3c8477 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x3a079447 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xcf282ddf mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6fe1ca04 FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9f987c85 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa1bc94b9 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xe312d20b hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x13231330 isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3a45c0ae isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x45c1c8d2 isacsx_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x9e72d27c isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xf0169698 isac_init -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x28069ed2 isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x48983a36 isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xa4eb73fd register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0bbaf851 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3fd0f32e mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4b2bf2c1 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5c904e57 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5d7e1dfc create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6af62ab1 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x79a14a4b mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x87153ac8 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9837f51c mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa0788f24 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa143b830 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xae16cecc mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb77e5ce1 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbc24f043 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbebcd1f6 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc240c897 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xccdf4b53 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd061ba05 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd546a8dc bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe0b91b89 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe78a8550 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf568c616 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf5d7cdcf mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d89bd11 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0x26481f26 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x465a37ec closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x4d7b02f1 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x515f7e68 closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd88cd3f5 closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe67c2d16 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next -EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-log 0x000b23e6 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xc828aba1 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xd0b4cae8 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xd545dc68 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x0208d854 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x4dd49483 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x76e13649 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x8992e917 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xb928d3e9 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd290af7b dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/raid456 0x7fe4a281 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x16edac3b flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1722edea flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x21f7b510 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x267bc28d flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2774eae5 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4cb0efec flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4cf03e7c flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6311c998 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x64a9bfcd flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x98e8e2f7 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa9d446e2 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbd375c20 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf55a0f16 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/cx2341x 0x0a5c152c cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x682b57ce cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xae8f5f5f cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xd1ce4350 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x2521f6d2 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x56201821 tveeprom_read -EXPORT_SYMBOL drivers/media/common/tveeprom 0x88d27d74 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x098b2571 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1215f1b0 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1378e7a8 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18142b71 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18b53939 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x20a56219 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2dbb0382 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3002f580 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32706276 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3313fd72 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4cfe458d dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d383c4b dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c0ea535 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70af1058 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78db694b dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7b763b79 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7cc43642 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7cdc0e39 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7df3024c dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f4f9b54 dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80ec17b9 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x830a9253 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85a5e7d3 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x95dc7122 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9fcb1533 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa66657db dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa68b33ed dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa6dacd69 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb9fcdff2 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3051c27 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc4b2a1d9 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcd3c8c64 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf589e8c dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8f7184c dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd9842daa dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe882b759 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf28e7431 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfbaa7e01 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xdf9c2214 af9013_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xfb6cde61 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x7a8a2427 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1384bf5e au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1e618e6d au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x239baddc au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x30037b94 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3fb99a94 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa74e04d5 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xba401979 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd1f4641a au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe05443cc au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xb06fe319 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x444129e5 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x0f8f44f9 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x655aa341 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xc0168825 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xc24cfa84 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xed25cacd cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x59fa813d cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x507866e8 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x31122c22 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xa3f7b831 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x75e91a3b cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x4764c3fc cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x5536f0e4 cxd2841er_attach_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xad27a948 cxd2841er_attach_t -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x01d50f40 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6396c78e dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7d9bbffb dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa17bcd98 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xfbba7249 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x00132e81 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x325017da dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5e9a0e76 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x65ad5579 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x70c78d09 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x70d42e64 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x83ebe4bd dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x84aea11d dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8fb82d47 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9425bf99 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9b363a50 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd257c9c3 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdb2dfeee dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeae68fc2 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf7d36dcf dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x5e10acb0 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x63815da2 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6486a062 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x699cea11 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x8eeba7e0 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa9326eb2 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xcaa6840f dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x414c54db dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x83b46296 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x90576885 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xdb74d6ca dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x312c1164 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xe191af3f dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x20bd43cb dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x22f01506 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x85f2a54b dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x874bd297 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xacdfec06 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xdc17eeea drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x255fa93d drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x88b43908 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x33d8b1ae ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x45db38a2 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x9cd7e952 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xc3fef718 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xd92cbc61 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xc0c47e3b isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x34f472e2 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x9afdb70a itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x0a059ef2 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x0345327d l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x36efc735 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x3c858e6f lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xda328221 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x4ca73bfe lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x5bee5065 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x205284a1 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x8d79b62a lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x95065b48 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xaf14db34 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x0e01ba80 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xe0745958 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xbf699fb8 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x239a834a mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x83ae8990 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x5e04281a mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xa6fcbebb mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x1e7a960c nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x222a4f48 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xa5a46639 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xa80c847b or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x67f06c06 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x61f39f2a s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x15de7ffa s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xb8b4489d s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x460e354d s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x7767e5b3 si2165_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xda0dc19e si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x0235431f sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x518081de sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x2d2f711c stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x26fa5317 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x4b02a844 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x2b62bb5d stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xc0624edf stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x63e54666 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x40705be8 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x432963f2 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xfc322c18 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x8d4eaa21 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x8e5d9ef4 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x6fe79c27 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x599202f4 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x9509b83f tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x95f26590 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x4322a83e tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x77370056 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x84e5f461 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xd321a948 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x623544a5 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x40fe1361 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xa6b6c508 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x67886c28 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xed30ced6 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xa59f4a68 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x82574967 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x869ce6a7 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x08f23f9d zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x88920bc3 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x32b72233 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x40432f23 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x40eda4ae flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8d3863f3 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8fb5cc98 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa07fe8ef flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xed77d806 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x58f94ffc bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5b453b93 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xacdedc0d bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xfa7b736c bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x6028f9a1 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x73cd3776 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xb04dd284 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1aa7a349 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x33ea00e4 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x626a114d dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x77b8e84b dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7fb093cf dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb3afa43b rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xbb0ae39e write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc3d89b9a dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf7051556 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x8e4f1b3d dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0cfeb89c cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xbb7769b6 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc083a789 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc533b2b7 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xcd7d3e9f cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x83a6989d altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x05caeda8 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x2b220117 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x48664b41 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7040c140 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xca502d49 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe5dac9c0 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf7b0b788 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x1ca49387 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x6d1902a9 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1635fc5f cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3cc61ea7 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe513e21b cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe642b0b3 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x24cd1c8c cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9ea6b487 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9f1be849 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbfbbd75f cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc8adcdd5 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdf5e1f19 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf3630ea5 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0f30f759 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x22eca056 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3549ea29 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3791d484 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3f0d85b5 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5a2dca3b cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7657bb85 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7d1847bd cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7e69e139 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7f8ee548 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8e1842c2 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9cffba89 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9f40c519 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaaec83dd cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xacf5d182 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc7eed5b0 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe1de6d03 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe7cdafcf cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe909aa57 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf61caf7e cx88_reset -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x03f15eb6 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x17080cef ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x29137bf1 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3b4a19ef ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3d27b854 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5bb7ed93 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x703281c2 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9b41f243 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xab1730aa ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xabeb0339 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb179c7b4 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb2602616 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc3169ff4 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcad5dbf2 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe0375401 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf47a4309 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfd90891f ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0bcc6a49 saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3fcdc211 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x49ded0ed saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6b33171a saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x731b81c1 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x94bf25c5 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb18dd1c6 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbfa62433 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc6dcdb5a saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcdb9e981 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd9751425 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdc934609 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xdb878890 ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x28aa1500 soc_camera_apply_board_flags -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x3b766c85 soc_camera_xlate_by_fourcc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x4dfe44c8 soc_camera_power_init -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x88521553 soc_camera_power_on -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x9921f43f soc_camera_power_off -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb33a9146 soc_camera_host_unregister -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf98d26b0 soc_camera_host_register -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible -EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc -EXPORT_SYMBOL drivers/media/radio/tea575x 0x2e0433f3 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x3e7c2dfb snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x44ce124e snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5a2c44f6 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x91f32054 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xa86fc327 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0xcce08b82 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x14265b64 lirc_register_driver -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x38457f79 lirc_dev_fop_read -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7c5c3dd0 lirc_dev_fop_ioctl -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7e6d0c1e lirc_dev_fop_close -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa35d31c3 lirc_get_pdata -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xbf64bddb lirc_dev_fop_poll -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xda62cac6 lirc_dev_fop_write -EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe007efb7 lirc_dev_fop_open -EXPORT_SYMBOL drivers/media/rc/rc-core 0x570dea85 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0x60ed951e ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x3232c994 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x6548eb40 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x1f1db3bb fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x3001ced5 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb53df0a9 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0x044bd64f max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xbe9672a0 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xcab7ffe1 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0xf2ff48c4 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xdfd0af30 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x578e81c3 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xa67fac1a qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x1f78866d tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x8b57b769 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x5d49c104 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0xbd38a523 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x0d12ef2f cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xcf845f36 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3122dabd dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x37cf134e dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x399f98cf dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3dfb2b7a dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x498473b5 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x58724254 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8d96f520 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdf475fd9 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf48256a1 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1174ac31 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x25426809 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x466624b5 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7c4c825f dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x96edba71 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x9ff3245c dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf1630bf2 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x92f93040 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1ea2906b dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2f3ef13f dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x34bc8680 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3bed2d9a dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6f9fd41e dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x720cbb2a dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x871a1caf dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9a2b6201 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa2d86249 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc7a3aba9 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xed2600d7 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x30a299c9 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x8243c76b em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0481f1c7 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1e55d98a go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2ef9e74b go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3c9574fa go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x51682e91 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x729b8026 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x788fe043 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcab509cc go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xef3561ef go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x05b867e7 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0b1c130b gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1457def7 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x540b2e37 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5cd60dfc gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7a37236d gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xba82bf2f gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xfc4881a7 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x38d4a54c tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x49ab470e tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xb8fa3f08 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x467e2c01 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x6db92dcb ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9cd9f624 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9f393f81 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xcf597531 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x2b18ad12 videobuf_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x78ddcea0 videobuf_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x9edfdc34 videobuf_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xab8d003a videobuf_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xbdef10c1 videobuf_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xc143bf38 videobuf_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x3a5eb568 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x932c4923 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x349db991 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x69bce40c vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x86288249 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x9193202d vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xbaf0e390 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xcb391d4b vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec -EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0xa548d8d1 vb2_querybuf -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09798c92 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e1e4e40 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e7c40a4 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f04a04e v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f5afe97 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10db7dab v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13a0fa6b v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1548d77c v4l2_subdev_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x199774f9 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x19abe891 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b650c0d v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c685064 v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1cc19ceb v4l2_subdev_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f2944d3 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f5999e4 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22dd70c1 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x251203ee v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e40f910 v4l2_of_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f4139bc v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30e2a701 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x327449f1 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33ef3e1e v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ab349f6 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4214f801 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x42a12b80 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43b83724 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45e9b9ac v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48977a2d v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48b84ee4 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4f82b80a v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4fbe7999 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a6c5c4e v4l2_subdev_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x641b36e9 v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6995e72d v4l2_subdev_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a0bc6c4 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6aafdb80 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e7c7669 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6efca67a v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x706486e0 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x709ffbb8 v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74d0bcc3 v4l2_subdev_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e0d56a7 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82412013 v4l2_of_alloc_parse_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8423a7c4 __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x847ff34d v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x92e4e957 v4l2_of_put_link -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9713f102 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x97c3f5dd v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99dc763c video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a982f1d video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5a9e15f video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa60bd01e v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xade1b977 v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae095b32 v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae269ce0 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xafd61fb4 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb171a7d3 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb70da345 v4l2_subdev_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbf5185df video_usercopy -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcbb8e502 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8e4a237 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda29e0ec video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe767d74c v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed5c7dc4 v4l2_of_free_endpoint -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee7146ac v4l2_ctrl_add_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf18785fc v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf5d43bfe v4l2_subdev_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf780552e v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf8004fa9 v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfad5a42f v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfbe0018c v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe5d5d21 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfeb5c471 v4l2_of_parse_link -EXPORT_SYMBOL drivers/memstick/core/memstick 0x034286d7 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x05055e43 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d132420 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6a700742 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8103e5e0 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x90bc5a88 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa32d4202 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb6066930 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd8051414 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd9c3506d memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xea3cffc7 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xfa003707 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x055715e1 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x173d4f71 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x18acf3b1 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1a993037 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1e7ce08e mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x22eb7ad1 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x238f14b9 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x30aa4d32 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3275e277 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3497c7b3 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x37a6ae2b mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5d37ce47 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x689047bf mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6ab5ebbf mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7015c931 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8fdb672a mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x914af06b mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x92afa898 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x95d931a2 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9ceb1efd mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xacfcf1cd mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbee751c2 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc266e94b mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd4606758 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd7236e08 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdf05e400 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe28dc692 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf95abacc mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfdd99df0 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x01ce8bb9 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x031d842e mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x11dcd771 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1c6133b5 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1cc67d5d mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x24d44a27 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2b55376d mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x48199887 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x48ff5df0 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4c91949d mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x57aff0f0 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6900bf94 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7d4145e6 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7e1db9e4 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x82b0e8a8 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x90b87994 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9ba60988 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa407b166 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa6baed22 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaa279597 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaeb0bcad mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb2f3e1ea mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb608c8d3 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcfb2ff58 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe52a9836 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe6f15904 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xffc1234e mptscsih_qcmd -EXPORT_SYMBOL drivers/mfd/dln2 0x38b0d86f dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xca4a516a dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xe8b309a7 dln2_transfer -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x83003071 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x8e72a6ad pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x29457bfe mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x46d8e1c6 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5e9d59b9 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x77b91899 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x80f5180e mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x866fa0c1 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8ee16c43 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x918199a0 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd86d684f mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdc361808 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe687c1b2 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x73679310 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xbb34acc4 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x53bb659a wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x6181de03 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xa90e8366 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xfee3dc2e wm1811_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x358583e7 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xb9fb973f ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x30b3ae49 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x2f995f51 c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xe47284f0 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/ioc4 0xc21bbd26 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0xcc1bcdcd ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/tifm_core 0x031d4484 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x0c9257c5 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x16d5f790 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x3672e7b9 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x5c5b9fb7 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x9b494519 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0xbd3e1a90 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xdfa13383 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xe6e606ba tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xe6f7a44a tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xe8cf9e3c tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xfaf88580 tifm_alloc_device -EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xa8a2d8e2 mmc_cleanup_queue -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x394ee9bc mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xd343dd3f mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x07aca7ab cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x12690144 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1fcfc083 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x450d1d2d cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x894fa5f2 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa60a174f cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xdf214246 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x05c7f6fe unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x1de0a69c do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x44841697 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x6645def6 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x49688634 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x49275141 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xbf54d82c simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x3e6b5758 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0x9aadc3cd mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/denali 0xab14994a denali_remove -EXPORT_SYMBOL drivers/mtd/nand/denali 0xc1254984 denali_init -EXPORT_SYMBOL drivers/mtd/nand/nand 0x08b0c00f nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand 0x164bb2c5 nand_scan_tail -EXPORT_SYMBOL drivers/mtd/nand/nand 0x2d2cef46 nand_scan_ident -EXPORT_SYMBOL drivers/mtd/nand/nand 0x340a9569 nand_scan -EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/nand 0x9d85ac62 nand_unlock -EXPORT_SYMBOL drivers/mtd/nand/nand 0xc1688694 nand_lock -EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x447a5066 nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x50b8d37a nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xf57e9664 nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x0f1a5324 nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xe09c73ac nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x1692c616 onenand_scan_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x6abcf38f flexonenand_region -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd2881573 onenand_addr -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xfef26e8a onenand_default_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x014ee757 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x22219dc7 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x37b50173 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6cdf4af0 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x710a96f5 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x906d0f79 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa1b39662 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb483880f arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc7115502 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf21106b2 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6b2fc8d6 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb5e9ce3f com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc144ee38 com20020_check -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x120e43b4 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x20a71ccc __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x33018f23 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3d8d0b48 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x639313cc ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x70c25bf5 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8dcf9e77 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8eff1fa0 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbd98cb8a ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xeafc7e48 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xf93e7af9 bnx2x_schedule_sp_rtnl -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xd5054525 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xe48ca42a bgx_get_tx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x14acd9c4 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x24bb8817 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x65b6fb4e cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x70053e1b cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x78c5da6f t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7b78b622 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9443a230 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9720abcf t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9d0ef52e t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa5bc8995 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbba8315b dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbf217423 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd41f7bc4 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdca587ec cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe3ff9add cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf4ff47dc cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x05a38441 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b55a8ea t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0fdf459d cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2a9050bb cxgb4_dcb_enabled -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2ded24ad cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3453dec8 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x39a87b1d cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d25890c cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47c70887 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57b4a4c4 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5ff43cd8 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x63707ea1 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6874769f cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x68f5e7a8 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6aa0143d cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d248ae2 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x71570b41 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x723ed6ca cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7dd4b840 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8734f980 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x890f56a3 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x952126ca cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa605b4dd cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0687115 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbb0a3069 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcf65ecb2 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd6f2bcc3 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8fb6d82 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdb1eb617 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0aed8f2 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe1f393bb cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe9cb8caf cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedc78402 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef30c82c cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x18ab78d9 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7d727d39 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x81258eed vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x90e82c1f vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd5de9ddf vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf8471632 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x2036d03e be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xe7a7bd36 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14f1290c mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1826401c mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29aaa46f mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34b31e8a mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35956637 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x428640a9 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47c61144 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54e95b00 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a35547a mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b346ca3 mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fe2d361 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75638d8a mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x793200c2 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e67cfe7 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81575acf mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82341550 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8735e372 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a081d0f mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9429d24e mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96b8ad85 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x993ad4e3 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bb265fa mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9eececbc mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0bccaa5 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2a11096 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa878e683 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadf19285 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8c5fede mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd96c946 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc622c84a set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6b2b8a8 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9244570 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5353621 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea371540 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef845bbe mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbf17053 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfddbafc3 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe82f75b mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01d643d4 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x068ec558 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f4839d1 mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f5f4d44 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x161853e5 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19a9a524 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ae1fae6 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b3cf460 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x392d9f99 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d49ce85 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ed4e306 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41a7c26b mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43929ea6 mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6944f7ef mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x772c7eff mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c8579d8 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84118731 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8de2a664 mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x900090bd mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98954425 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ec88e3a mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaac24326 mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac2c62db mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacfc8b94 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadc7e834 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae028b27 mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf566cd2 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf8b7542 mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc913643c mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3484d03 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaec1de9 mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde96efa2 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3012b56 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe79348c4 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee06a1a0 mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0e08f7d mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6046d62 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf677d587 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cd11069 mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2279ba10 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3b0317b9 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8f1582ef mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xae4ec13e mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0eb3357 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe3fa00d mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x79a6a413 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x2456b828 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x51c0f3fd hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9990d304 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9c906325 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe4e50f68 hdlcdrv_register -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0e3bd8ce sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x1e528057 irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x744f76ce sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa19273a2 irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc8211285 sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xcda3156b sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xda95eae8 sirdev_get_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xdf9936c0 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xef4e0bb9 sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xfd7dd5a9 sirdev_raw_read -EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart -EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe -EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage -EXPORT_SYMBOL drivers/net/mii 0x1f148883 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x1f352b8b mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0x3411183a mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x79dd6e28 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x8c3e82d0 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x9e2b220a mii_check_link -EXPORT_SYMBOL drivers/net/mii 0xd4d289ca mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0xff51e3de mii_link_ok -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x79049443 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xc5eb585f free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x49e83254 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xf313648c cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x4fb865a9 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x557bad73 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x705a0482 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/vitesse 0xa8a49f97 vsc824x_add_skew -EXPORT_SYMBOL drivers/net/ppp/pppox 0x1dc72b83 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x5ca05bfd register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe90f4a58 pppox_ioctl -EXPORT_SYMBOL drivers/net/sungem_phy 0x36a8d43b sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x1c7be5b7 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x40518e55 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x5127770d team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x56bbd9ef team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x5fd5763c team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xa2c473cc team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xb06bcc4d team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xd2c3c491 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/usb/usbnet 0x515ccfd3 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xccc48902 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xce2f73bb usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0xf81ab2bb cdc_parse_cdc_header -EXPORT_SYMBOL drivers/net/wan/hdlc 0x09fd6efd hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x253073f8 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x393ead31 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4923cee1 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x56a22525 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x66cbe64a hdlc_change_mtu -EXPORT_SYMBOL drivers/net/wan/hdlc 0x70b42357 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x72108b4d hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x8dd19b97 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf4a63e6f unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xfc1b29d9 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xfc41035e i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/airo 0x78aca7ef stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xf04da9de reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xf9214c8d init_airo_card -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x054cf7be ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0937326a ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b9f6eab ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1b4acc9a ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8df0a571 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9ad206a5 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa263b133 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc76ac8b0 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd8978926 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf62184f6 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf676b714 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xff65ab52 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x139d6a68 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1f47d473 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2933a3e5 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3245b7ad ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3e754b9d ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x49882305 ath10k_debug_get_new_fw_crash_data -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4fb82986 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x56252c30 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5eba0620 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x685ae31d ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x74fd6e38 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9762767c ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc8124a46 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca42fdd0 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6f2c0ce ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x159a3bf5 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2d6d17db ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x32a06448 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4c884d7c ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x833710b9 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9b67e20d ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb23aa6b3 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbb409f32 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc04236a6 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf5c1e0ac ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf84423a0 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x02111996 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0ee2cbd9 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x21ec74a5 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2c096de2 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x36f24800 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x424e0f42 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4a643245 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5a0c99c5 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5f240edc ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x723e6299 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x88d830e3 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9512262f ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa0330b85 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa2646d6b ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaf1cef8c ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc1bf9f1f ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc905e9e7 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd5d372c2 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd80e1af4 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdbaf2917 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe8cfaf72 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf7e519ec ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xffa648d8 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x016feeba ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0189a2f0 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x022902f5 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x032a00c9 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x083c5c29 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0cfa7902 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d25d791 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d321047 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10e047b9 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x115871ba ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13fe1d9d ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14110ab0 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16df9360 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18048c77 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a67b5f2 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e00bef7 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2326c3fe ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24a7f7cf ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x276bfead ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x335b227d ath9k_hw_request_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x347185af ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35551996 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x356d0d22 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35a767fa ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b057cb1 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ba58739 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ba91df3 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cd8bf94 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x406e4f24 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4215a15f ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43777c54 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x445bbe3a ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x465517aa ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x465f2f7c ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46aaf5c3 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46b2cb34 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b357273 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e8fc363 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51c650e4 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51f46b0e ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x557db286 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55f97df2 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a80bc0e ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f2fb6a1 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f4a4210 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ffbd9c1 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x618d0ec2 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x635d46b4 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64c0438d ath9k_hw_cfg_gpio_input -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a05a605 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ce225ac ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d553207 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71a9d4ff ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x753c6a72 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7609ce29 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b07a83e ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b646e55 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bcdeb9b ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c9f276d ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8390d095 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85d7709e ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x861e6375 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x879ef5e6 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x885824a1 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a5631ae ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91f416a3 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92050575 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x931288ff ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93185ad5 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f092b7f ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f2ee18c ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f9e6e19 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9053de8 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaded7842 ath9k_hw_cfg_output -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae09c78b ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae34e0c4 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb28f3e00 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb615d069 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb89a0acc ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbfef70d0 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0a15d7c ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2330ebd ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd247e26 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd877b95 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce2442f8 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd47e414b ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5343275 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd79e8f97 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb143142 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe384573e ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3b1b183 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6fd6930 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe85f7d4c ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe885f2a0 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef19a95b ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf01866ed ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0aadcb2 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf10d8b7a ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1618942 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4a4f216 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf98c4f00 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9eee652 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb7a5607 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe6e2097 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff72e418 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/atmel 0x32a38eb5 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0x548791ca atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel 0x856f88d7 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x277258bf brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2e7465e7 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x34d292e9 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x548e578e brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x680054bf brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x826e7206 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x829acc4d brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x92c47ea8 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa36f9e95 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb22dd1c4 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd1986905 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd445843a brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xdad7c395 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x26b6f0e3 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2bd207f0 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3c6b9d1a hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x58d6e5bb hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x63a2ba6e hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6737ca60 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x69b7070a hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6fd82a74 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7aaca1ce hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x80cd7a88 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8107d791 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x82e2a869 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x85ca30be hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x93269556 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9a82dc47 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa0ade4f6 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa1546efa hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xaeecea95 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb62f7a06 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb6d93c8b hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc561693b hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd2d42074 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd420ac4f hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdf2aa2dd hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe08502a7 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x098e8150 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x14b46084 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x475adaa2 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x49dac602 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x53feb15b libipw_change_mtu -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x595b7e86 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x68aef402 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x73085832 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x78dc6a2d libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x79a00803 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7f3a5eed libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x82fccb78 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9b7a9ed1 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa7016b30 free_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa932a4b0 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xae1867c0 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb158e6ae libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb49786d5 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb6512f33 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xdbff559d libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf36b255b libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x00aab167 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0106db1b il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x056da38b il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05fb858d il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06c2ffdb il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x07e53055 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08106bbd il_force_reset -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x09829ee4 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0a6b46e2 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0aa39ba8 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0c3b3c5b il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x106d709b il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x128cda75 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x12c52020 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x146b1661 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x16fa343e il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2041d235 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x24045c52 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x25154833 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3193347e il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3271d5a1 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3946dc6a il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a43a4e0 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3b9f9b0e il_leds_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3bab2a30 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d839e0c il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3de5dd60 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3e0d1e95 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4012cea0 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4538a3f3 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x55cb7af5 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x562feb1c il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x563ce846 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x56fbbc47 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x571d8042 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x57ba9a73 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x58e7b9af il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d3f8d66 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5dac92c1 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5e5d9568 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5eba07c3 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5f0d0f75 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x62a20474 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x62ee83f9 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x63fa9e50 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x650d19c3 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6d000793 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6dd69a0e il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6e4d4234 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x70b574fe il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x73109210 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x763be1d2 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x76bca563 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x78189103 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x78de625c il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x80e9ca6e il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88a47c7c il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88b29b5b il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88cc2793 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8b540b48 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x92be4b4e il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x95c1833d il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9e9cfa7a il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa24d74e8 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3de98cb il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa5deb46b il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xab6d54c5 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb68ca5a3 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbdae7785 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc46841c5 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc6fbf235 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc8dbee06 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc9db3abf il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xca248042 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xca41eb56 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcdbb54b7 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcf329b18 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd15a5479 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd3414250 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd71ffd1a il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd8ef2b4b il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xda0a8d23 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xda5959a5 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xda5f3792 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdda7782c il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xddca3a62 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe0e143ac il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2e24e0b il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe3714a51 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe43decbb il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe51f26fd il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xed8b4cb7 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xee48ca7a il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf130c063 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf17ed928 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf1d88731 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf9591f56 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfc101a37 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1b06ce78 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x2447a6ab __tracepoint_iwlwifi_dev_iowrite8 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x314a20a8 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x5e9c24ff __tracepoint_iwlwifi_dev_ucode_error -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8c8ab242 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x9a1b1df9 __tracepoint_iwlwifi_dev_ioread32 -EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xdced6db1 __tracepoint_iwlwifi_dev_iowrite32 -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x013a0b27 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x106a9d81 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3dde2611 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x405bf9d1 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4a66dde1 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5f8df20b orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x60ffacf4 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x686c981d orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7f7f97fd orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x83708f18 orinoco_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xadbe1d28 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb435e111 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc7663283 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdb2c47cc __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe1470ed0 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe6b6bd2f orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xc421f11b rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0ce53389 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x139ce642 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1c83fc8d rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ad9deec rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x425f008e rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42ac9a02 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44687d4f rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x48460927 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4a847527 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4d43d793 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4f0e5230 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x50cba6e0 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5570b736 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x623f0ba1 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6661499b rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6831ad22 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x76055776 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7a009041 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ef37670 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x93d8be98 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x93ea1082 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9a68b1b8 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9bc802b8 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa021ffa0 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa7ebc32a _rtl92c_store_pwrIndex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab0a4f33 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb943924f rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcb1554f3 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcfd2c7d2 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd10f1202 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd40e5a0b _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd530dd63 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd5362135 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7dfe1ea rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdfa666bf rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe21cc920 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe5eb38f8 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe5f1f1e2 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xece21e6c rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf28799ee rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf4003ea5 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x117544de rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xac462140 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xbb8b38aa rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xdac2f943 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1249a28a rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x73178dc8 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xca435aa4 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xfe3efa5c rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x046193ce rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0fff086f rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x12d056f0 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x15095283 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1df000d3 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1e0e8a7b rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29b8b138 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x396c0c85 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b8bc91f rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c380662 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x45154520 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53bc7f08 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62bef7e4 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x66382510 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71d27220 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x75c0c26b rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7b0ae61e rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9641d980 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9c14e029 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0cdafc5 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5cc8110 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb9158f99 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbcb79424 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd42daf5 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf9b6484 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd0d2ac2 rtl_ps_set_rf_state -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2819189 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xea72c01d rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa3d8626b wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc33bfe3c wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xec4ee520 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xfb2cf945 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x116f9df8 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x3ccc3f1f fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xa5918fe0 fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/microread/microread 0x77fd060f microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xfc96f5b9 microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x1bc07351 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xaf88999b nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xf8c27b1d nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x01afa2b9 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xaf0e5f64 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x1a4f8528 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xdc0bf845 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xdca231e9 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0565f5cb ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4c09531c ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5ebbec53 st_nci_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5efac544 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x88585846 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa7f59f3f st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xad1504dd st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb9c4c825 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbde93a73 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdd19aac1 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf300e115 ndlc_send -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x07c98479 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0ed7bc20 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x13d5ce2a st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x27c6724a st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x47f2e40e st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4a19d9be st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5cac8c67 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x670ddca7 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x740e956c st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7f7a8d5d st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x81084afc st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x84c3992c st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb0e3618e st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc004d80c st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xee4871ca st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf101afd3 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf8018c24 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfdbb1f8a st21nfca_hci_se_io -EXPORT_SYMBOL drivers/ntb/ntb 0x024e3ff1 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x2801b420 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x39e0dedf ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x6e36ad1f ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x79a69958 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x8bc90fdb __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xad7560a3 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0xeee803f2 ntb_clear_ctx -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x4807578c nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xf6dabafc nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x4125fb8f devm_nvmem_cell_put -EXPORT_SYMBOL drivers/parport/parport 0x09426b65 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x1387156d __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x2155d0f9 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x2ecedcbc parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x3979c223 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x3a39d12c parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x434d2d8b parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x4f9e60b8 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x500912ce parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x54e0ad4a parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5f921e8b parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x654158ec parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x655c2f99 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x69ca8564 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x7ad76ace parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x7f566ca6 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x80b14665 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xa9cd9794 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0xb2afe87e parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xb7cb24ff parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xb9ab6332 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xc5920b0b parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xc7430374 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xc9a33474 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xcdaae559 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xd457d3c1 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xd5fed6f4 parport_write -EXPORT_SYMBOL drivers/parport/parport 0xd666b566 parport_read -EXPORT_SYMBOL drivers/parport/parport 0xe121dd56 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xe18cd2d5 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xf25d1ccf parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xf9df09e5 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport_pc 0x1b83b7f5 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x9f963467 parport_pc_probe_port -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x08aa7c61 rproc_vq_interrupt -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0a45dabd rproc_get_by_phandle -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3d13480f rproc_report_crash -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x50259689 rproc_da_to_va -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xa19c6689 rproc_add -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xa876c6b7 rproc_shutdown -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xae4869cb rproc_alloc -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xbbd7881a rproc_boot -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfa20720e rproc_del -EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfe04214b rproc_put -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x234d052e ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x22de7b80 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb59d0a99 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd97a69ca scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xefe1eacb scsi_esp_template -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x125ab5de fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x13dd3944 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2060027b fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x31f8fa0c fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3de87f26 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7412d5a9 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x772c4968 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb53ba1b8 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb63206c7 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd30a8a30 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe2b37c26 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe7ade732 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x028e1fa5 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a349427 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c5444a8 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0cac5ce2 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1980b9fe libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d055fe8 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27899562 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2aa40074 fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b61a833 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2e51281b fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f45d3ff fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x393cfdc5 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a956389 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3cc24a9b fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3faa9c15 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x418fb8fc fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x44bb63d2 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x466f0818 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46a35645 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46ce22c9 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4dd63281 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6091706f fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63e864fb fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x645c3de3 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x651af08e fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6982a18b fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e939dba fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x704c4971 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8682e23e fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x914c61b4 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x97572df7 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9ad48b28 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c742ed2 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9edf17e0 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaa6df640 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xba3c50df fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc76fd51 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3a77d4e fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2f77c34 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe08c47a5 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeb0b098e fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed64f675 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xef5ba83a fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5cc3e1e2 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa2eea849 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xbb6aca20 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xed62de5d sas_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x40828d10 mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x05739e16 osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0bebdae8 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1243c306 osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x224cd01d osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x31e3f0e7 osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x37bdfc06 osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3ce2d03a osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4179a763 osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4346ed1e osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x48197f84 osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4f0d1923 osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x50f43d66 osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x51334d3d osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x64cdfd6c osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6756da91 osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6c7fd98d osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7920eda6 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7e08cfce osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x82610bba osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x82bf25fb osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x85d5b6bd osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x88ec7299 osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8bed631a osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8df377a0 osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x95a1026c osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x96391436 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa0017b8d osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa51ecee6 osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbda31c68 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc1754fa5 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcf8eb5f6 osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd49a4868 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd790670c osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdb6cab96 osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xed4da979 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf8c105ad osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/osd 0x338e0672 osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5d33d0ff osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x9ec19de4 osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0xce4645b2 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0xddb469f4 osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0xfd02141d osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x02734827 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2ebb3fca qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6f0a5712 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x78eb4b17 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x90f31555 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x95f529b0 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xab497832 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbe3de1fe qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd30cde1a qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd556b7a0 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd8fcaa6a qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfe0b6a35 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/raid_class 0x193f9435 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xaf3e219c raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xbb4eebe5 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x101a3f0d fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1a8ea965 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2012f6f2 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x428d0660 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4acdef4f fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5b4f2efb fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x602cf24f fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x691fa64e fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xac4d1cec fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd8508e73 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe91c904a scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf51c2107 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfcae8123 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0072c990 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x06beaefb sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x07a355d4 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0f29785a sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2caab716 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x416b9fa5 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x464c7079 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5c4f3673 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5cc7d57a scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6400d370 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x662c137a sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6f845598 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x79e4be7a sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7b6e6017 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7b9c31f8 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7df0bf5f sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa83c9916 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae4af94e sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbb731221 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc2dfb516 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc673bc7c sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd4d3e2dc scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7374f14 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdf865c80 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0dc925a sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe2950822 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeead4795 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf993d667 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0e46565c spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x10af4d83 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x341229d9 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8e304d36 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe08ed5ac spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x1bafb3c3 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x283e6a1e ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2d924c62 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x43fc1f57 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x8a1bcfd3 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xbf56740f ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xdac5d17a ufshcd_runtime_idle -EXPORT_SYMBOL drivers/ssb/ssb 0x0534b19b ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x203dd1d2 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x319b94a9 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x37399ec8 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x3afe3235 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x3f6befef ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x44cd93ba ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x56a6da25 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x5b4e687a ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x72b2b132 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x79e37017 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x7a55c4f3 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x935327e8 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0xb7b04bf1 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0xbab75891 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xcb67d3d7 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xce4674d8 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe51f1e77 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xe6e72351 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xef867da0 __ssb_driver_register -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x006e9497 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x01010b93 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x17405435 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1babc50f fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1eeb4716 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2b8eaa9e fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x41f81b70 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x456ddbaf fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x466b1a70 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x468d2519 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x64e889dc fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x91535066 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9607ef97 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x96bb85c6 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9ea7134d fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa7cbb629 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcd75ce39 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd696255f fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xde344045 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe0ec14cb fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xea2f3ac6 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf2f8e080 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf4a52a44 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfd15a40c fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x31a1dbb7 fwtty_port_get -EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x3ca7bd49 fwtty_port_put -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xa9b01d07 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x5feb871b hmc5843_common_probe -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x88d4c791 hmc5843_common_suspend -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xb7a86eb9 hmc5843_common_resume -EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xce412bcb hmc5843_common_remove -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x008ce1fc ade7854_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x77241bbd ade7854_remove -EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xe57a7c9f cxd2099_attach -EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x344b84a0 most_deliver_netinfo -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x020933d1 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0647b513 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x115b5704 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x12aaaecb rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x16b65a81 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2033c910 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e5dee4d rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f7d014f rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32679f3f rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4378e8a2 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x438b64f3 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x493eeba4 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4b13eb4a rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4daec329 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4f263166 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x508fc005 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5855bc50 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5ab4d6d9 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e9fa06f dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5fdf87c6 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6032ddb2 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63caa30b rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6bfa0a8d free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x736bf9a2 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x737f8be7 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x739458bf rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x74928662 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x74cf5437 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x78fc5f07 rtllib_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b1e3ee8 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x843194da notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8a3d5fee rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8d7a939f Dot11d_Channelmap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x914d98cd rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x96c7c6ce rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99fcffff rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa9257843 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xae060452 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xafa651d0 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb35cc8f0 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc0af2d0a rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcfe22f51 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdacf4c46 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe27fbc09 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe3aedb58 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe5ff659f rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe89cf23f rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf1c9414b rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc0d9c9d rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfd308c96 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x001d3e92 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x00ec6910 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03c3b231 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e472a68 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x10c0e13e ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x209d644f Dot11d_UpdateCountryIe -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x248faf55 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x24ea2103 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x36197233 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x36902fef ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3fecf57c ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4520d5d7 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x49cb33ec ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x533281bb ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53d5f8dd ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x595e0f69 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b68296e ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5be9f5b5 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e73b765 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x62bbf738 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68d8a258 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6fd8c6b3 ToLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x704038be ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x73e3fc2e ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7c33f855 Dot11d_Reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f250d01 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8c131409 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99682c28 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b5e0a2f ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f60da32 ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4294d0a ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4f324b4 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab0854a7 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb2403df8 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb803e226 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb83e97fc ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbad000c5 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc472f2e ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd560e06f ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd56e4f00 Dot11d_Init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd7119209 ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdab5ff71 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe00346e3 DOT11D_ScanComplete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1e3938f ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe9a52b70 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xea28daaf ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed093663 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf1b12517 IsLegalChannel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf7a546f8 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf800e888 DOT11D_GetMaxTxPwrInDbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf8731010 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfbc5e1e8 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfcef292e ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x03c1301b iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x06047b9f iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1110a731 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6d824168 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7697fc38 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8255e9ee iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e12fbc0 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x91f57db9 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x939f3193 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9529de47 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9771b6e9 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98a77996 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c7279a1 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d59f1f4 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbd94164f iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbee36d0a iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc33c9ba8 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc9383bcc iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf47e1c9 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf66900e iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd140bd73 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd29dea71 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd46599ba iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd7f19cd7 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xebee85e5 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xee447d5a iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa54264d iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfd3dec33 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/target_core_mod 0x00783466 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0927ddf5 transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0x0a4c38cc sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x0a88d8b8 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x0faecdca target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x0fcf8549 target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x10ed9913 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x12114941 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x141a8f78 target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x143d46d4 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x1de8838a passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x211c594c transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x212e4f15 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x2586a15f transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x25a4e05f transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x27e7a54d target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x2ce124a4 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x2df19f13 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x365c2ae9 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4153078e target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x49a5f61b target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x49f9ec70 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d9d886d target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x52e3bce1 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x536185e6 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x5a09f80c sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x5b7a3a66 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x5bbf5cfc transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x5f3c9238 transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x617d6562 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x62d4501a target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x6384cacb core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x6e5b2c6f target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x79e26efc core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a6ad818 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x80005ab5 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x8620d315 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x8ed661b4 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x906394e4 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x957a3e4f spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x9a568517 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x9bde73b3 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa75a2705 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xad66bcb5 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xb0afa28b transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xb86c6dc1 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xb95444bb transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xc0d6219f spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xc2650796 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xc5df3fb4 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc6b86056 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xcaa344cc transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xcac82847 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xcacf8bb9 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xce773c1d target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xcfefe128 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xd10bd297 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0xd87ab9db sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xdf01c38a transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xe39f2b69 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xe58abaaf transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf2109956 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf2927388 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf35458d3 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3ba7bdb target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3dbd9fa spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xf949327e sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xfa98dbaf target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xfffcce9a target_unregister_template -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x20b69426 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x5422f62c usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xfd2421ae sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x16a6115d usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1790796c usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2fa514aa usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5959b864 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5dd1a15e usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x765b5e34 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x890a66ad usb_wwan_ioctl -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8fa560ae usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa661a60c usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb965d7b3 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc2d4e0b5 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd0caf6b3 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x185b9386 usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x18df1859 usb_serial_suspend -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/video/backlight/lcd 0x955670bb lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xe73cda92 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xf0669834 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xf574bd8f devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2ae55016 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x46502d4b svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6a367953 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7dafd13e svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8beac298 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa1fda752 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb515eadf svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x095ac5fe sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x5d719054 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x932cb1f0 sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x2f91b4d1 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x2b6ef906 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x5ff9f211 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xb913a36c g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x099abffd DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2f9e0df9 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x48d9a0f0 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd3d484ef matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x91b624cd matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xd1b05265 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x38f408b6 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5b3806b7 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd4d16119 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xde7898e6 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x2e67574e matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xdd216ef4 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0c5f4cc3 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1ac5c13b matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x81b6767c matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa8fa1597 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb1f5d5ef matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xabbaa1ed mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x26f65dd1 w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x283512ef w1_ds2760_store_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xb0f8d32b w1_ds2760_read -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xd070f520 w1_ds2760_recall_eeprom -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x5ce4be04 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xfc710c42 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x5e386805 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xb2832db5 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x17728c91 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x6f548539 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x8ebd0166 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xf7a1b7e4 w1_add_master_device -EXPORT_SYMBOL fs/configfs/configfs 0x05a64874 configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0x0b961219 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x0eca8f19 configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x22f48394 configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0x301f3a0b config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0x3f8c2c0d configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x47ef645b configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x4e7d561d config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0x5e57643a config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0xa36893ab configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0xa449dd3c configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0xada81a5f config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0xc5bdd427 configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0xc9e075e3 config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0xfd72866e config_group_init_type_name -EXPORT_SYMBOL fs/exofs/libore 0x007c2388 ore_read -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x32335eb5 ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0x340404c1 ore_write -EXPORT_SYMBOL fs/exofs/libore 0x37894a2c ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x865ceac0 ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0x96be52fe extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x98f40d34 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0x9c417d2c ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xc1c488e6 ore_remove -EXPORT_SYMBOL fs/exofs/libore 0xdbf04409 ore_create -EXPORT_SYMBOL fs/fscache/fscache 0x006afdc3 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x085640f4 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x0968e9ed fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x0be4299a __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x113226e6 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x1382d8a1 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x15d95dee __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x22880b2c __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x275e7819 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x296b683c __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x44177f5d fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x4969c05e fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x4a8ee116 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x4bc688a0 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x5a1b9a01 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x5bd32157 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x657b6ff2 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x68e31fe3 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x79291547 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x8a8ee1a0 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x8ca31f92 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x94c0795c fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x98774f1f __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x9d7b9f8c fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xabd3bdc9 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xb0140a08 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xb7d8dd9b fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xc380f33c __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xcb208d24 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xcc6da07f fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xcf2594f1 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xd8c91418 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0xdad923c7 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xdb4a10d9 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xdbeedcf7 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0xe86d7726 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xe9f56e9f fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xf22c7a8f __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xf8ecd74b fscache_put_operation -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x158faa47 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xaba24bd2 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xcf7b3916 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0xdb85ffb4 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xe51adb21 qtree_release_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x04dda81f lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy -EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed -EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x895b2504 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find -EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put -EXPORT_SYMBOL lib/lz4/lz4_compress 0x0c222eb5 lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0xefc78e77 raid6_empty_zero_page -EXPORT_SYMBOL net/6lowpan/6lowpan 0x233846b2 lowpan_netdev_setup -EXPORT_SYMBOL net/6lowpan/6lowpan 0x43ef1eb5 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xc00f6e7c lowpan_nhc_add -EXPORT_SYMBOL net/802/p8022 0x0fbc7eef unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xb2b480d3 register_8022_client -EXPORT_SYMBOL net/802/p8023 0x18310c4a make_8023_client -EXPORT_SYMBOL net/802/p8023 0x4a625b33 destroy_8023_client -EXPORT_SYMBOL net/802/psnap 0x29a6ccf3 register_snap_client -EXPORT_SYMBOL net/802/psnap 0x9133f8ae unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x046c2437 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x055517db p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x09851522 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x15b47ae8 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x164c3485 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x1e648b4e p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x330aac80 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x35920485 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x3986db88 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3e89cfed p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x3ebae012 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x4326d879 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x448b8e61 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x4bd02ebd p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x4c784951 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x4d4e68c7 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x53d58a07 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x5e51c7e5 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x62f03513 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x693d26a4 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x6a7d62bb p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x6e8fe657 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x71ec31aa p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x7259099b p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x7fe329c6 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x87f73ff5 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x8ad6c250 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x9501ba64 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xa1cbaed9 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xaaae21da p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xae64c094 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xb261cc9b p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xb40f7c43 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xdc3e3bb5 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0xdf10829c p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0xe15ec58c p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xe44cab80 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xeafc433d p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xec358f84 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xf1be7ce2 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xf254c409 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/appletalk/appletalk 0x6cccb565 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x7dd7f315 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x9b5a56c3 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xc6fa57fb atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x2ed953c8 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x3a533549 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x493c68d1 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x52a062a2 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x5f462c15 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x808ed20b atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x8bd073ce atm_charge -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa8f9aad0 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb982ddc7 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xbcc1e125 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xd8d12e85 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xf2312f1d vcc_release_async -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xf7ebd718 atm_init_aal5 -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x2ec920eb ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x4a25d0c3 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x4ca7868c ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x6331f406 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x7709d42c ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x7ca3e7e3 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xb2c0b83e ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xce4f1dce ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/bluetooth/bluetooth 0x03a47ee0 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x062edbf3 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x12b8f9e6 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x15535f1c hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1baa7a12 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x27506f14 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x29452d8b bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a7bbe0c bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ca9766c bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d5bf247 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f52e2ce hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3df7fa01 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4350211d hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4837ef65 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d460ce2 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x506538e3 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6494b452 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6cb99857 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6ec7ba41 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7f5e4c4f bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8f9044a6 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x919d61b9 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x964ebd35 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x966ff33d hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa4291a08 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa7450c14 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa9a5c2bd hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xab03dbc4 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc17b8644 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc9f2da55 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xca4f21fd bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6cc32af hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdb66cf2f bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe00ac049 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe19235c6 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe52b182c hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe5c55ec6 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe6c782dd bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe9721923 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf4bf7c5a bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf9e7781e hci_free_dev -EXPORT_SYMBOL net/bridge/bridge 0x8c9857b6 br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3d1d5fa7 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x746e00d4 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xea583958 ebt_do_table -EXPORT_SYMBOL net/caif/caif 0x0ce07f69 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2559cd2b get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x879b3975 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xaa3b7c29 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xcaf9d659 caif_disconnect_client -EXPORT_SYMBOL net/can/can 0x2195c073 can_rx_register -EXPORT_SYMBOL net/can/can 0x339f64e2 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x7b82ce2b can_send -EXPORT_SYMBOL net/can/can 0x7bff47e4 can_proto_register -EXPORT_SYMBOL net/can/can 0xc0f21f05 can_rx_unregister -EXPORT_SYMBOL net/can/can 0xf2276e47 can_ioctl -EXPORT_SYMBOL net/ceph/libceph 0x03bed299 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x049ab058 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x14ec96d8 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x1d0405fc osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x1eb0c187 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x1fce6247 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x215e7afd ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x223f5e8d ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x2432a737 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x28d5cc86 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x30c3b15b ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x341941ac ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3b0c8d07 osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0x3be22362 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x3ec709d7 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x41426c45 ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x442044eb ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x47f4843d ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x491f8149 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x494297f2 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x495d77b3 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x4ad6e0a5 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x4d013bb8 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x4e486aaf ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x4e6e85c8 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x52b1910c osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x5302afdb ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x5739588d ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x58f4bfa7 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x5ab2329c ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0x5d2ca11b ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x5dbd3afc ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0x613ec9e0 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x61a10e12 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x62591f04 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6c9e5cac ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x6d146fe3 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x70809b77 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x70f08964 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x748fa663 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x753f813d osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x7681f955 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x78f5d41a ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x84021e8b ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x84ae83c3 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x873767a1 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x88d1f01c ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x891fe745 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x8c8118d6 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x8f42956b ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x94422a55 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0x96f04453 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9aedabcf ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x9b92a5a0 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x9c3e5d9f ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x9de23d98 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x9df10c70 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa18ce0d1 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xa32636cc ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0xa7014d32 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xaa7add38 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb046b3dd ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xb121a36c ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xb24ebbfd ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xc4714060 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc5db34f3 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc7ef6d02 ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xcdb3e8f4 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd27985e9 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd3ca24d3 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xd4d1dd13 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xd5e6dc7e ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xdf756ef0 osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xe3f3b176 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0xe85a40aa ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0xeb0e53b5 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xf0dfb817 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xf9a893c4 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0xf9c9f1b0 ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xfa892398 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xffe7f0c5 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x07c49485 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xb70a5719 dccp_req_err -EXPORT_SYMBOL net/ieee802154/ieee802154 0x08989cb7 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x52ef9cf6 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x585631c5 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x8ed5212f wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x92f9e0f2 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc37556f4 wpan_phy_for_each -EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x429d3387 fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xab6f5a2a gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x09f3433c ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x28b9ba18 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x479fc7e1 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x73f82e09 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa8b547d7 ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf4e5f7c6 ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3cc51b36 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x86cca7af arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9ed87f95 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x48a98dba ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x498518dd ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa5be53ea ipt_unregister_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x353a0f45 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xd47dbc5a xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x495929be udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x00defdab ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x06dcbc0e ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0d8a9a35 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc595ec94 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5c0a6c61 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x97b81aae ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xa0da53fe ip6t_do_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x0a6e7ce8 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xe1976cd9 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xae509574 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xc1414c27 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8663c594 ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8760e16b ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x9349fe01 ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa3fed06b ircomm_data_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc99ab937 ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xccda2d62 ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd3e0ae19 ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd7b7e14f ircomm_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0x05e88596 iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x0af7feff iriap_close -EXPORT_SYMBOL net/irda/irda 0x0ec8da25 alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0x141fa2fd irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x18350909 irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0x224b377e irlap_open -EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda -EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new -EXPORT_SYMBOL net/irda/irda 0x40c1b77b irlmp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x4296be5b irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x4aeeffe9 irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0x5913716e irttp_dup -EXPORT_SYMBOL net/irda/irda 0x5ee61099 irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove -EXPORT_SYMBOL net/irda/irda 0x63fa749d irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0x6fa24503 irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x7154c164 iriap_open -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x7f0eec13 irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x9165945a async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x9b5c934e irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0x9f1f997a irttp_data_request -EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete -EXPORT_SYMBOL net/irda/irda 0xa56e14f9 async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object -EXPORT_SYMBOL net/irda/irda 0xaec7767e irlap_close -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xbcb88338 irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xc38bfc36 irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find -EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert -EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xdef6b319 irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object -EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this -EXPORT_SYMBOL net/irda/irda 0xf7109945 irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0xfd2a4faf irda_notify_init -EXPORT_SYMBOL net/l2tp/l2tp_core 0xc421b7c3 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x456ecd4f l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x2e7a45d3 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x36ba6938 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x411ae82c lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x8a39860b lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x9d0a5f61 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xab59a606 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xb1197cf8 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xdc86aacc lapb_register -EXPORT_SYMBOL net/llc/llc 0x1f13ea87 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x557f95ce llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x80cf337c llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x8a6bd365 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xd687cb51 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xe1e35c79 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0xeb8e695a llc_add_pack -EXPORT_SYMBOL net/mac80211/mac80211 0x04565106 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x05cd8396 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x0710316f ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x0d66221c ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x16a42c6b ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x1a6a6a68 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x1ba7bd3c ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x1e83b08e ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x1f0dc9f3 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x2362e8ac ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x289ee263 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x2dc77135 ieee80211_tx_status_noskb -EXPORT_SYMBOL net/mac80211/mac80211 0x2fb35c14 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x30d1cebc ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x3e54aeac ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x4399e4aa ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x4a4451c5 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x4a87a1a9 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x4a9872e8 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x502f7cf9 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x51bf315a ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x57bd1dea ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x5b25cb94 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x63125d54 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x6315c600 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x642caa71 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x65af0fe5 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x65f056b9 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x6b3ecf57 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x6e879049 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x6f248126 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x70981976 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x727f7518 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x762f09e8 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x7b35c6d1 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x8314ab5b ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x83392c4a ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x89dcfe82 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x8d6ca6b5 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x8da3bac0 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x8f3bc26b ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x9301c71f ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x989430d4 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x99bf4faf ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x9e45e3ff __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x9fc62790 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xa1dcb83b ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xaa2592bb ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xac9218f2 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xaef47015 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xb22ff518 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xb65370d7 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xbb389ba7 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xbb68c696 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0xbd767b5a ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xbf8d6863 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0xc4410f0e ieee80211_start_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xc5744c48 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xc7045b67 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xc87e71ca __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xc9a631a0 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcc31a9cf ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xce7d9863 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xcebd7525 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xd22c6876 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xda096319 ieee80211_stop_rx_ba_session_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xdadc366b ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xe08d2946 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xe58668b7 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xe824db65 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xecb8fb3b ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xef0288fe rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xefbdfcad ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xf341b07e ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xf4beff11 rate_control_send_low -EXPORT_SYMBOL net/mac80211/mac80211 0xfb748651 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xfc9a6080 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xfe0bc613 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac802154/mac802154 0x3d7e7f5b ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x3feae147 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x40db0ab2 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x42190ee6 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x8fc3abb0 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x92bfb00b ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x95ed8237 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xfcf4572f ieee802154_stop_queue -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1e612b42 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x28200abe unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6515ba89 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x723b2f7d ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x763fc04b ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8001a2d7 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x80eb5734 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x80eeb551 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa99053e7 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbbb8f40d register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc76fd443 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc7edfd01 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcc994cd2 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe1982a12 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x0c38fb22 nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6a576a23 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xff9c9ad2 __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x53d234c0 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x6178fd64 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0x83763d33 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x928e3c59 nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0xba532b2d nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xde8fac87 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/x_tables 0x2485bb44 xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x5878896d xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x5bcd6a73 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x980f6827 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xc4a00f50 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xd022a1ae xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xd41c243e xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xe4c51e80 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0xef38bb3b xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xfccc5814 xt_unregister_matches -EXPORT_SYMBOL net/nfc/hci/hci 0x09ffecbd nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x1d309108 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x35d37d0c nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x379fc097 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x3ba95634 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x4100cbc3 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x45568b90 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x50a29b43 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x5d37fc5c nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x6eb3644f nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x6fc29bac nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x7f03db6d nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x826599ea nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x9a6276fb nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x9b9f7176 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xaae5fb00 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xaf88fafe nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xba596dcf nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xc1301b55 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0xc51955a9 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xd1b566ff nfc_llc_stop -EXPORT_SYMBOL net/nfc/nci/nci 0x02f7dff0 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x09feaab6 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x0bdf10c4 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x2036f0c5 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x305173d7 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x40e9f35a nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x43b4dbc6 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x488157ed nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x48dae788 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x6b3d3ecf nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x6c2cf294 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x74981f52 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x88e5b8e0 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x8e40f925 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x9b06dec3 nci_get_conn_info_by_id -EXPORT_SYMBOL net/nfc/nci/nci 0x9b2da4d3 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xa313cff8 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xa5daad9f nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xafae2559 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xafc15563 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xb979036e nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xd0a25dec nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xd70992d6 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0xdd4b96bd nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xeb25908b nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xf3fb9d72 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xfa38ff02 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xfb2d62c5 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nfc 0x0cb7002d nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x1556f176 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x186e9c76 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x19d7aee7 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x1b32a044 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x2311568a nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x24c6f03b nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x26e2beb3 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x35462768 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x365013f4 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x3ce77da3 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x521e2e03 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x62a6521b nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x6667319a nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x6cc33264 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x742376f0 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x78fc0d15 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x87f7a641 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xb737c0bf nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xba1ef22e nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xdbd60bb6 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xef2b2b77 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xf49f0471 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xf533f4a2 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc_digital 0x061cbd91 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x620c1e6a nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x7d38e52f nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x8509b47d nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x2fa88663 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x495f19e2 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x6422bd04 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x78007ed7 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x8885e923 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x950aa358 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xc04db45a pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xe4b1ebe2 phonet_proto_unregister -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x02fffc98 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1343db91 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x203bd477 rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3cc8fab9 rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4502d8cc rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x56ccd935 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x78ed7fc0 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x81196b5c rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xac6a58da rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xafb7c52f rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb0ff222b key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb651d197 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xba50d9f9 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc08de9ce rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfc58fb1b rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/sctp/sctp 0xd30a381c sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2b359aeb gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd98cf509 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe3c60224 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x4c4d39d0 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x890e005f svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xcca6ef6f xdr_restrict_buflen -EXPORT_SYMBOL net/wimax/wimax 0x44e2d673 wimax_rfkill -EXPORT_SYMBOL net/wimax/wimax 0x9ab8d5bf wimax_reset -EXPORT_SYMBOL net/wireless/cfg80211 0x00e143bc regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x027db44b cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x06d4c410 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x07010961 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0adaab75 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x0ae6e7d8 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x12d8a893 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x143d6fd7 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x1565f606 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x18156f2d cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x182e4fd7 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x191a3464 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0x1b1c3267 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x1cda8313 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x2344d773 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x25e03bd0 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x2bd61949 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2c17a585 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x380e646c cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x3b3d8a30 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x40f296a8 cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x4587831f regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x46b8f0a8 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4a857074 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x4e871cb2 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x5a708937 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x5b61a840 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x5c3302cf cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x5d50b058 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x62323266 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x640e477e cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6b9fa2c0 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x700f71cd cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x70113586 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x75ba0787 wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x781df8c8 ieee80211_data_from_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0x7a6ed9b3 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x7e160bcf cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x7e50b7b7 cfg80211_roamed_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x7ee2a612 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie -EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x864d0eb6 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x88fa5f9c cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x8db1cdef cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x8f11eb8d cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x90081670 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0x9131b1a0 __ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x915e14eb wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x971539d5 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x97344ad0 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x9d604ba5 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x9fca9b81 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x9fe92343 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xad05ca73 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xad2dc7bc cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xad56688e cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xad712c35 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xafe0b8bc cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xb1af5485 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xb703241c cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xbd3dc2d4 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xbef34762 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xbf40d6ff ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xc142ab2b regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0xc797243d wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xc8bc52f2 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xcc0ab4d9 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xce2657cd cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xce2f7657 cfg80211_connect_result -EXPORT_SYMBOL net/wireless/cfg80211 0xd0ddd2fb cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xd4ae373a cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split -EXPORT_SYMBOL net/wireless/cfg80211 0xd7a0cc3c cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xdaf13b63 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xdb1bb0a7 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xdb44a157 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdd76a9dd cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xe037d962 ieee80211_data_to_8023 -EXPORT_SYMBOL net/wireless/cfg80211 0xe6f5c754 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xe7c99ea6 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xe82cb1e7 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf198c772 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xf4178712 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xfb9bb014 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie -EXPORT_SYMBOL net/wireless/lib80211 0x55c130db lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x7478a0f4 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x7b5c3236 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xaaa145d6 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xb6712355 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xddf050a4 lib80211_crypt_info_init -EXPORT_SYMBOL sound/ac97_bus 0x24825b96 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xd13d0d86 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x86d11e7b snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xd3182c57 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xdddeda7f snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xec2f068d snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xd0696cb3 snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x072d978b snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x13a17752 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2eed26bf snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5ca523 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd7c7afcc snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xaa401f16 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x025668f3 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x02ecbf17 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x02efa5f4 snd_card_new -EXPORT_SYMBOL sound/core/snd 0x03b5951c snd_cards -EXPORT_SYMBOL sound/core/snd 0x0581a89b snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x07bc7f33 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x09704a3b snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x1161fade snd_device_register -EXPORT_SYMBOL sound/core/snd 0x175457b0 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x295e9efb snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x2a05ae56 snd_card_free -EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0x2ae8fa75 snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3af528c1 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x40062c44 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x4435b352 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x4591503b snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4d391577 snd_info_register -EXPORT_SYMBOL sound/core/snd 0x57a91213 snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x67ac9904 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x6a9f1d91 _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0x6f92deee snd_device_new -EXPORT_SYMBOL sound/core/snd 0x70402118 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x74157f1a snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x756d103e snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x764e9ccf snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x7d7c89a0 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x7dfa17a8 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x87e547c1 snd_card_register -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f369688 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x91a874a8 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x935c396e snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x94ccb9c6 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x9aa42917 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0xaef7170c snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0xafbacadf snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb5e066d2 snd_register_device -EXPORT_SYMBOL sound/core/snd 0xbd976dc0 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xc477de9c snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0xc5659889 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xc6e897ca snd_component_add -EXPORT_SYMBOL sound/core/snd 0xcb7155c8 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0xd200b038 snd_device_free -EXPORT_SYMBOL sound/core/snd 0xd8cc2d39 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0xdb52d335 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xdb654798 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0xe5b9c68c snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0xe5e55f8b snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0xef3f2e45 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-hwdep 0x70dd23f3 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x011f1d9d snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x050b740e snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x0f44a869 snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0x18ca1f27 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x1a402d3b snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x1ad99a45 snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x1ec230a8 snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x2303f147 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x24615c2a snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x27200215 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x2e0071a4 snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0x32b0c342 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x359fe574 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x3977fa30 snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3a0da881 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x4131ff46 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x42470851 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x43c00b29 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x58127032 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x5b49251c snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x5ba26fb7 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x607cb84a snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x6627cdce snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x7d3d0e2e snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x913910cd snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x95f4e818 snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0x993d6786 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x9b60d471 snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x9bb89fd4 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xa3b3b662 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb61de1df snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0xb934d344 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbabae2ed snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xbef09382 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0xc12dd318 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xd1937eb7 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0xd40000d7 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0xdf9f809c snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xdff63f11 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xeceb0e84 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xee0cadba _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xf377bd7b snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0xf39c9c2c snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0xfa82f268 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0xfb19f745 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0xfd3511e2 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xfeeca7b8 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x091e4c80 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1b302a77 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x29502cda snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2c3fa6b1 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x469c785c snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x627d5652 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x669d92ca snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x77b54486 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x844e2a03 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9895378e snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa2eb4238 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xba8a3ccc snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc06f236f snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc54f6ced snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd74d6f6e snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdbb9fb02 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf074398d snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf8adb83d snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfd02f951 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-timer 0x0679768d snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x3b7cd524 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x6b7363a4 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x842c4893 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x9452fb45 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x96f6981f snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x9ad17ee1 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xa280168c snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xb58bb7ad snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xb5e61fae snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xb8ecdb8a snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xd8df9aa9 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xe61fe92c snd_timer_stop -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x92fc0118 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x15298b36 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x71e1a8dc snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x73adc426 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb51e5cb4 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb85e5b22 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc268d2ea snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc82d8ea0 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd04d01ca snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe63eb31b snd_opl3_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x09a77da9 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1f743852 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3801d635 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x400c96fc snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x572cb607 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x66d0544a snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb5e5364e snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcd6836e7 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xeb9458f5 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0210bd75 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x059efa76 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0bf19fe6 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x12f58cba amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1db888c1 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1f973592 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x39518604 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c57311a cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4905f416 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4dfefe10 amdtp_stream_start -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x56a886b7 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5e13852f snd_fw_async_midi_port_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x62c14e70 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6be7fced amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x77c1e382 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7866c88c amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7a236235 amdtp_stream_stop -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7a5f25e1 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fcba686 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8a872aee fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x918fbbfb cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9ae5e1d8 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa2b483d1 amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa5631397 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb0eada6e fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbaac78e5 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbdb226f4 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc2beb227 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xca72d00f avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd9b761d8 snd_fw_async_midi_port_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf6e10e0d amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfb5e27b4 fw_iso_resources_allocate -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x13b310e9 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x2f4ff7b4 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5f0283c5 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x62d66571 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x78e02c24 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa190886c snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa80f9c38 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xac2f067c snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xeab6189a snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfd4db660 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x05c7390a snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5090e8bc snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xab804634 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xee5ad2e3 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x0230e55f snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xb5ea39c2 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0cf21210 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x42e8e651 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4bf0780a snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x684da6cc snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x953555d6 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xdb1bbccd snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-i2c 0x0cd36685 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x5e15ae02 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x7c758d4f snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x7cdd0811 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x8e11996d snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xb090aa6e snd_i2c_readbytes -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x11890329 snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6aaea5ff snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7bdabdf3 snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7ef86eea snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8d7d53be snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa0e3df31 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb6747696 snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xba354d23 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd502793d snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf5d53317 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0929d06f snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1b76b6c0 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x231a2c2e snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2ee391eb snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3b6cb502 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x47b9ddc3 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6c0f402a snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8b266a54 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa07aa94a snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa0f91680 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa82d9644 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd04e02bc snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd95b387b snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe1c6155c snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf54fa266 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfd2e11d1 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xff700010 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0032ef27 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x37d3e204 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x46913775 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x93b0d3e0 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa4e3a94f snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xbb11f635 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc866ec44 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdcbb0742 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe0971b2a snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3e6c18eb snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xcb868407 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xfd99edc1 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0101cd5f oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x04f1080d oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x13ccfade oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x172f4220 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2dfb56bd oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x359681c1 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4e45464e oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x55aa56d0 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5e496b66 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x765bdd93 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9ee7793c oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa8889396 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb4a7ab10 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbf1b8216 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcfa3b308 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd0cf1f90 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd4964b8b oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdf05d378 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe73cdc09 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xea4b40d9 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xeb71c4f4 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x293b9bc2 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4622976b snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x953ed13c snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xadc9a6b9 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc41774b9 snd_trident_stop_voice -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x63e7135e tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xfab179b1 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/snd-soc-core 0xe2763bfd snd_soc_alloc_ac97_codec -EXPORT_SYMBOL sound/soundcore 0x503ba45f register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0x54785f2b register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x8d41b5a8 register_sound_midi -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xa1e5561d sound_class -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xd6a61fd3 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0xed9f6ff0 register_sound_special -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0ccc4326 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3e0b9d4e snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x426a4b73 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5604467b snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7d211ae3 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb7aa51d0 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/snd-util-mem 0x02373caf snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x09fc4fee snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x568f7a49 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0x623bdbf1 __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x7506e7b8 snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x77ee3650 __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xcd80a8f1 __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xf12e4628 snd_util_memhdr_new -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x311c88d6 snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x00000000 TOC. -EXPORT_SYMBOL vmlinux 0x00185ecb tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x002340db cdrom_open -EXPORT_SYMBOL vmlinux 0x006bb8b0 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x007195ef tcp_ioctl -EXPORT_SYMBOL vmlinux 0x00759eb1 ether_setup -EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done -EXPORT_SYMBOL vmlinux 0x0094273f reservation_object_add_excl_fence -EXPORT_SYMBOL vmlinux 0x00a739d6 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x00cad5c6 __blk_run_queue -EXPORT_SYMBOL vmlinux 0x00cbdc38 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x00cdf630 input_open_device -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00e435a7 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x00eb9f67 udplite_prot -EXPORT_SYMBOL vmlinux 0x00eeef7c scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x00f78f74 pci_restore_state -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 -EXPORT_SYMBOL vmlinux 0x014d476f of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x01578cb6 nvm_register_target -EXPORT_SYMBOL vmlinux 0x0160b6bc alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x0164a872 simple_dname -EXPORT_SYMBOL vmlinux 0x016e18c2 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x01790e94 csum_partial_copy -EXPORT_SYMBOL vmlinux 0x01a29e04 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x01cfedac rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0x01e69e16 abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x01f86d52 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x01fee120 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x02056ff2 dm_get_device -EXPORT_SYMBOL vmlinux 0x020bacb6 pps_register_source -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x0213fc77 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x021bc801 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x023a074a hvc_get_chars -EXPORT_SYMBOL vmlinux 0x023bd475 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x02568ffd __netif_schedule -EXPORT_SYMBOL vmlinux 0x025a8604 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x02651804 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0x026ad381 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x026baee1 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027b320e input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x0296b077 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x029b49c8 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x029d9c43 release_sock -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x031afd1a clear_wb_congested -EXPORT_SYMBOL vmlinux 0x0324655e pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x032867f6 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x036bb8f9 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x037ea06f pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x039237ac request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0x03ab0197 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x03c21ef9 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x03c6672d vio_cmo_set_dev_desired -EXPORT_SYMBOL vmlinux 0x03c6d105 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x03e066b4 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x03e89b33 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04005dff generic_ro_fops -EXPORT_SYMBOL vmlinux 0x0406d732 generic_update_time -EXPORT_SYMBOL vmlinux 0x04074f48 ioremap -EXPORT_SYMBOL vmlinux 0x040f8f9d dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x0421d72e posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x04239366 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0x04363e56 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x04396f2c tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x044a0adf kobject_get -EXPORT_SYMBOL vmlinux 0x046ec2f8 dqget -EXPORT_SYMBOL vmlinux 0x0474a956 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x047eb192 vfs_llseek -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x04a587d9 simple_readpage -EXPORT_SYMBOL vmlinux 0x04d67e2a pci_disable_device -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04ffb084 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x050d8267 devm_gpio_free -EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range -EXPORT_SYMBOL vmlinux 0x051dfcae genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x052c8dd4 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x056f35ed fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0x0573b8a5 pci_get_class -EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns -EXPORT_SYMBOL vmlinux 0x05abdb34 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x05b3aae5 invalidate_partition -EXPORT_SYMBOL vmlinux 0x05ca9c32 mpage_writepages -EXPORT_SYMBOL vmlinux 0x06064851 tty_register_driver -EXPORT_SYMBOL vmlinux 0x060de700 bdi_register_owner -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x06575922 blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x065af3a6 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x067886e6 tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x0692cdea mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x06dd6ea0 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x06de4465 find_get_entry -EXPORT_SYMBOL vmlinux 0x06fd51f5 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x06feccbc blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x070ba15d km_report -EXPORT_SYMBOL vmlinux 0x071a088a d_instantiate -EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x073d7b7d kobject_set_name -EXPORT_SYMBOL vmlinux 0x073faee1 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x074a4f52 bdi_register -EXPORT_SYMBOL vmlinux 0x074dc8a0 fb_blank -EXPORT_SYMBOL vmlinux 0x074e9213 down_killable -EXPORT_SYMBOL vmlinux 0x07596b87 of_find_property -EXPORT_SYMBOL vmlinux 0x079a164a dev_uc_del -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x07ae888e of_translate_address -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07ec80a9 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x081b408c ata_print_version -EXPORT_SYMBOL vmlinux 0x081e4698 sock_release -EXPORT_SYMBOL vmlinux 0x082b7769 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x082de2d0 __getblk_slow -EXPORT_SYMBOL vmlinux 0x0833b5ff input_get_keycode -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x0866d235 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x08726837 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x0881407a dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x08a4b521 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x08ab71e0 key_revoke -EXPORT_SYMBOL vmlinux 0x08c8137f i2c_verify_client -EXPORT_SYMBOL vmlinux 0x08c95905 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0x08fba5f9 input_grab_device -EXPORT_SYMBOL vmlinux 0x093c7bb2 param_set_bool -EXPORT_SYMBOL vmlinux 0x0943ea4b cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x099649d0 brioctl_set -EXPORT_SYMBOL vmlinux 0x09c0426e mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09cec974 get_task_io_context -EXPORT_SYMBOL vmlinux 0x09d2d0eb of_device_get_match_data -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09d8c108 simple_statfs -EXPORT_SYMBOL vmlinux 0x09dbcc6b datagram_poll -EXPORT_SYMBOL vmlinux 0x0a12b619 lock_rename -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a2fa359 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x0a3004cf xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x0a313b53 phy_start -EXPORT_SYMBOL vmlinux 0x0a4823a6 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x0a6bac08 kernel_listen -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a7841c3 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x0a7fa9fc vfs_writef -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aac4a4b simple_lookup -EXPORT_SYMBOL vmlinux 0x0ab2b910 bdev_read_only -EXPORT_SYMBOL vmlinux 0x0abd5b27 input_reset_device -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0add4a5c bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x0aeff89b keyring_alloc -EXPORT_SYMBOL vmlinux 0x0afe7058 fb_find_mode -EXPORT_SYMBOL vmlinux 0x0b0cbf56 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b24cb7e scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x0b25d72a __sb_start_write -EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp -EXPORT_SYMBOL vmlinux 0x0b3ad318 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x0b4b134f bio_endio -EXPORT_SYMBOL vmlinux 0x0b524a81 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x0b538a55 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b61392a misc_deregister -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b869924 tcp_proc_register -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc978be xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x0bcc719c pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x0bddaab7 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x0bee08ac xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x0bf72bf3 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x0c0d3606 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x0c19a508 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x0c1f7f21 of_get_property -EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work -EXPORT_SYMBOL vmlinux 0x0c269061 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x0c2cc517 generic_perform_write -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c74daba simple_dir_operations -EXPORT_SYMBOL vmlinux 0x0c79f64a devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x0c9224fe proc_set_user -EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cb6a313 nd_btt_probe -EXPORT_SYMBOL vmlinux 0x0cbaadf7 input_unregister_handle -EXPORT_SYMBOL vmlinux 0x0ceacba4 console_start -EXPORT_SYMBOL vmlinux 0x0d1fbf0a i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x0d252adf of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x0d2551f6 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x0d360751 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x0d3e5f8e __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x0d4a8cf7 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d6c963c copy_from_user -EXPORT_SYMBOL vmlinux 0x0d72e360 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x0d7d3c83 kernel_connect -EXPORT_SYMBOL vmlinux 0x0d8a53be abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0db03836 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x0dd9384a i2c_clients_command -EXPORT_SYMBOL vmlinux 0x0de1c765 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x0de38a3d get_agp_version -EXPORT_SYMBOL vmlinux 0x0e1bd272 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x0e3ff104 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0x0e456ef9 sock_i_ino -EXPORT_SYMBOL vmlinux 0x0e4bed60 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x0e635107 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e7df545 pci_enable_msix -EXPORT_SYMBOL vmlinux 0x0e818361 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x0e8b6b2b elevator_alloc -EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x0e9fa893 inet_offloads -EXPORT_SYMBOL vmlinux 0x0ea34a35 blk_finish_request -EXPORT_SYMBOL vmlinux 0x0ea96d14 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x0eb409ce lwtunnel_output -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ed762c4 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x0ee48edd remap_pfn_range -EXPORT_SYMBOL vmlinux 0x0eea87b0 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x0eee799c generic_write_checks -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0f132c0a tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x0f1d5da7 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x0f37779f kern_path -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f59e0ca inet_frags_init -EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x0f60b5ac scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x0f629eb6 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f7c1caf dump_skip -EXPORT_SYMBOL vmlinux 0x0f7c5603 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0x0f7ccd34 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x0f8a507a free_task -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress -EXPORT_SYMBOL vmlinux 0x0ffa1c52 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x10021d1c generic_end_io_acct -EXPORT_SYMBOL vmlinux 0x10194c8e pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x101ac4f2 pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0x101b606d md_error -EXPORT_SYMBOL vmlinux 0x10386bbd param_ops_int -EXPORT_SYMBOL vmlinux 0x103b4fa9 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x10674920 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x106a1fc1 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x10793f2c agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0x10795a8a devm_iounmap -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10840af4 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x10b33702 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x10bd67a2 passthru_features_check -EXPORT_SYMBOL vmlinux 0x10c76e65 bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x10cf84fa cdev_add -EXPORT_SYMBOL vmlinux 0x10d0787c xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10f20439 pci_iomap -EXPORT_SYMBOL vmlinux 0x10fa708e serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x1121421c bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0x1142b687 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x11702587 kdb_current_task -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable -EXPORT_SYMBOL vmlinux 0x118d251f register_key_type -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11b5b6f6 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x11b68f49 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x11dfd9d3 inet6_offloads -EXPORT_SYMBOL vmlinux 0x11f0bad9 finish_open -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120bad17 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x120d55cd ip_defrag -EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x1228081d dev_trans_start -EXPORT_SYMBOL vmlinux 0x1228cb13 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x122ef689 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x124417d7 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x1267189f unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x12688f6e bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x128580fb sk_receive_skb -EXPORT_SYMBOL vmlinux 0x128653cd __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12ac1aa8 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x12b0d11e padata_remove_cpu -EXPORT_SYMBOL vmlinux 0x12cb32ca d_alloc -EXPORT_SYMBOL vmlinux 0x12ce00d5 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x12d4a5f3 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit -EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level -EXPORT_SYMBOL vmlinux 0x13109f5c d_obtain_alias -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x133705aa sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x1347b0d8 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x136259f2 skb_seq_read -EXPORT_SYMBOL vmlinux 0x13b967cf vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0x13bb100f bio_alloc_pages -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize -EXPORT_SYMBOL vmlinux 0x14076af4 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x14111ade filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x1424fd93 revalidate_disk -EXPORT_SYMBOL vmlinux 0x142bf12d sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x143afe07 devm_gpiod_put -EXPORT_SYMBOL vmlinux 0x143bffb6 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x144a3748 __scsi_add_device -EXPORT_SYMBOL vmlinux 0x1450833c scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x14777b51 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x14812668 bio_split -EXPORT_SYMBOL vmlinux 0x14881b46 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x148b6d1d mmc_gpio_request_ro -EXPORT_SYMBOL vmlinux 0x148c2b22 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x1491dd31 udp_disconnect -EXPORT_SYMBOL vmlinux 0x14a14817 pSeries_enable_reloc_on_exc -EXPORT_SYMBOL vmlinux 0x14a18552 skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x14b8ad40 fb_pan_display -EXPORT_SYMBOL vmlinux 0x14c03693 blk_make_request -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14fd32ad __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x15043edc mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x152316fb dm_register_target -EXPORT_SYMBOL vmlinux 0x153c51b3 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x155a7827 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x155f039e ibmebus_unregister_driver -EXPORT_SYMBOL vmlinux 0x1564ce61 km_state_notify -EXPORT_SYMBOL vmlinux 0x15786e2f d_delete -EXPORT_SYMBOL vmlinux 0x157a7d6a bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x1581c55a inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x158723b2 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x1592af62 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x159c798d tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x15af2611 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x15b1bd75 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x15e167f6 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x16096a2f phy_init_hw -EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token -EXPORT_SYMBOL vmlinux 0x164ac3b8 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x166d0a46 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x1672b4ac __bread_gfp -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x16893d2b dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x169c40c0 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e7f81c param_get_ulong -EXPORT_SYMBOL vmlinux 0x16f33802 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x16fb7128 netlink_unicast -EXPORT_SYMBOL vmlinux 0x170c2ac3 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x1717d86e agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0x17337972 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x1743414f __debugger_fault_handler -EXPORT_SYMBOL vmlinux 0x1743f3ad inode_permission -EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock -EXPORT_SYMBOL vmlinux 0x1773210d eeh_dev_release -EXPORT_SYMBOL vmlinux 0x177ba72d netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x17847436 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17bb84b6 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x17c6f306 block_write_end -EXPORT_SYMBOL vmlinux 0x17d15b74 sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17f47a41 put_cmsg -EXPORT_SYMBOL vmlinux 0x17f7ab5e kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x1800ed82 keyring_clear -EXPORT_SYMBOL vmlinux 0x18075ac4 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x180e9dab of_get_named_gpio_flags -EXPORT_SYMBOL vmlinux 0x182980f7 agp_copy_info -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x184a748c i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask -EXPORT_SYMBOL vmlinux 0x184e45ee mmc_stop_bkops -EXPORT_SYMBOL vmlinux 0x1857aa39 proc_dointvec -EXPORT_SYMBOL vmlinux 0x18658894 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x187a4879 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x18a3969e security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x18abf6a2 bdi_destroy -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x1901ac51 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x19120b0b vfs_whiteout -EXPORT_SYMBOL vmlinux 0x19441fe4 blk_put_queue -EXPORT_SYMBOL vmlinux 0x195fa069 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x198f397e sock_alloc_file -EXPORT_SYMBOL vmlinux 0x1991a33b input_set_abs_params -EXPORT_SYMBOL vmlinux 0x199ec4fb arch_spin_unlock_wait -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x19ba1dc7 fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19ca2252 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x19d90c19 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x1a017db9 proc_remove -EXPORT_SYMBOL vmlinux 0x1a0cce11 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x1a26fa36 nvm_get_blk -EXPORT_SYMBOL vmlinux 0x1a2713fa pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0x1a3faf9e dqput -EXPORT_SYMBOL vmlinux 0x1a44ea93 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0x1a45dcf4 sk_wait_data -EXPORT_SYMBOL vmlinux 0x1a568e42 __find_get_block -EXPORT_SYMBOL vmlinux 0x1a60bd2a task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0x1ab84931 napi_consume_skb -EXPORT_SYMBOL vmlinux 0x1ac3da3d scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ac64447 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x1ae28b93 dm_put_table_device -EXPORT_SYMBOL vmlinux 0x1aee0243 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x1aeef627 tty_port_open -EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x1b0105c6 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock -EXPORT_SYMBOL vmlinux 0x1b180c9b __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b2076a4 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x1b28e1ba sock_register -EXPORT_SYMBOL vmlinux 0x1b33f8c4 swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0x1b36f635 netif_napi_del -EXPORT_SYMBOL vmlinux 0x1b3d807e xfrm_state_add -EXPORT_SYMBOL vmlinux 0x1b46c2c2 nvm_register_mgr -EXPORT_SYMBOL vmlinux 0x1b625d33 enable_kernel_vsx -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b63eba0 __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0x1b65eb14 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x1b70bcd2 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b8719a6 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x1b89bda7 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1ba4291d tty_vhangup -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bb5ef9e gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x1bc0b6d0 iterate_mounts -EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x1bd573cd inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x1bdebb34 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x1bfec830 __iounmap_at -EXPORT_SYMBOL vmlinux 0x1c066b7b kset_register -EXPORT_SYMBOL vmlinux 0x1c1798c0 get_super -EXPORT_SYMBOL vmlinux 0x1c37dfcb skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x1c3ae755 sget_userns -EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp -EXPORT_SYMBOL vmlinux 0x1c4ad078 unregister_console -EXPORT_SYMBOL vmlinux 0x1c4c34b5 ab3100_event_register -EXPORT_SYMBOL vmlinux 0x1c4c3d26 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x1c694f64 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0x1c7fa585 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x1c81b98c ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x1c91d9ee vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x1ca0935b padata_alloc -EXPORT_SYMBOL vmlinux 0x1ca27913 kill_fasync -EXPORT_SYMBOL vmlinux 0x1cb66b6a jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x1ccaa392 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x1ce7ace4 free_buffer_head -EXPORT_SYMBOL vmlinux 0x1cf4da3d netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x1d0dd111 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be -EXPORT_SYMBOL vmlinux 0x1d1d93d1 kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0x1d5c02a9 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x1d603662 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x1d663929 page_put_link -EXPORT_SYMBOL vmlinux 0x1d7651db __invalidate_device -EXPORT_SYMBOL vmlinux 0x1d79cc05 vio_unregister_driver -EXPORT_SYMBOL vmlinux 0x1d975248 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x1db1985c swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0x1db8f522 simple_link -EXPORT_SYMBOL vmlinux 0x1dbc4d0c proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x1dc06228 phy_suspend -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1ddbe78f vme_irq_generate -EXPORT_SYMBOL vmlinux 0x1dec3f02 netdev_update_features -EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query -EXPORT_SYMBOL vmlinux 0x1e197b1c tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e2ac978 flow_cache_lookup -EXPORT_SYMBOL vmlinux 0x1e3f4645 param_get_ushort -EXPORT_SYMBOL vmlinux 0x1e63c8b2 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e84574d __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x1e85bd60 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea4dbd6 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x1eace66a invalidate_bdev -EXPORT_SYMBOL vmlinux 0x1eb1cae3 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x1ec7b5ee pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x1ecae572 fsync_bdev -EXPORT_SYMBOL vmlinux 0x1ed91e70 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x1edb68ec __pagevec_release -EXPORT_SYMBOL vmlinux 0x1eeb38a3 release_firmware -EXPORT_SYMBOL vmlinux 0x1efb52cc simple_transaction_set -EXPORT_SYMBOL vmlinux 0x1efbdb8c security_inode_init_security -EXPORT_SYMBOL vmlinux 0x1f2ba7d6 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x1f4db8b6 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x1f744cef tty_hangup -EXPORT_SYMBOL vmlinux 0x1f771a55 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x1f860c0f find_get_pages_tag -EXPORT_SYMBOL vmlinux 0x1f8be1ca pci_disable_msi -EXPORT_SYMBOL vmlinux 0x1f9bd8b7 arp_tbl -EXPORT_SYMBOL vmlinux 0x1fa071a0 compat_tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x1fa1febf phy_stop_interrupts -EXPORT_SYMBOL vmlinux 0x1fa6e239 noop_qdisc -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc75ca1 dev_get_flags -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x1ff83b6a pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200a14e9 path_noexec -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x2029a004 nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0x204016d2 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x2043e321 inet_add_offload -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x2057c325 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x205cba43 param_set_ullong -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x2080c882 mmc_can_discard -EXPORT_SYMBOL vmlinux 0x20892f64 register_md_personality -EXPORT_SYMBOL vmlinux 0x208e730a page_readlink -EXPORT_SYMBOL vmlinux 0x20a3ef78 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20aec5ec fb_set_suspend -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20d9b996 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x20e858b0 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x20f83dce pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x2110d516 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x212ed47e blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x21377aee locks_copy_lock -EXPORT_SYMBOL vmlinux 0x213d1b13 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x21632ad9 key_type_keyring -EXPORT_SYMBOL vmlinux 0x21671f42 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x216ab287 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x21bc9e34 scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x21c46af7 filemap_flush -EXPORT_SYMBOL vmlinux 0x21d4c182 ppp_input -EXPORT_SYMBOL vmlinux 0x21d732f6 sync_inode -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback -EXPORT_SYMBOL vmlinux 0x220782a5 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x222516ba set_nlink -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2247b1c3 ptp_clock_index -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x2271e48c __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x2287687a i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x2296f601 serio_rescan -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22f36c6c input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x2319aa16 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs -EXPORT_SYMBOL vmlinux 0x233069f1 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL vmlinux 0x2347312e compat_mc_setsockopt -EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit -EXPORT_SYMBOL vmlinux 0x23760610 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23be801e sg_miter_start -EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x23cf97db vm_event_states -EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x24116f0b lookup_one_len -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x2426ad41 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x243b641f inet_frags_fini -EXPORT_SYMBOL vmlinux 0x2440191a devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x2441d35a blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x244a958d ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x24558300 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245fe658 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x24c65351 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x24c7a505 __mutex_init -EXPORT_SYMBOL vmlinux 0x24c7d594 of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x24d6b4a6 cur_cpu_spec -EXPORT_SYMBOL vmlinux 0x24de38f5 compat_mc_getsockopt -EXPORT_SYMBOL vmlinux 0x24e32c60 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x24e87e0a neigh_for_each -EXPORT_SYMBOL vmlinux 0x24f00380 ida_init -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x25582302 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x255e84a2 request_key_async -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x25781afe bioset_create -EXPORT_SYMBOL vmlinux 0x257b6fe0 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x257ce0a6 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x25aba885 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x25b734fc udp_set_csum -EXPORT_SYMBOL vmlinux 0x25c5acf6 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x25ddf2f7 submit_bio -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x262dd682 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x2631e75e block_commit_write -EXPORT_SYMBOL vmlinux 0x2632de13 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x26411b7b tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x26464c5a agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc -EXPORT_SYMBOL vmlinux 0x264af0ea security_path_rename -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update -EXPORT_SYMBOL vmlinux 0x268ed015 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x26957553 icmp_send -EXPORT_SYMBOL vmlinux 0x26a7f36e cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x26ac9975 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x26bbdcf7 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x26c0fa13 phy_start_interrupts -EXPORT_SYMBOL vmlinux 0x26c14c9f jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x26e28845 elv_add_request -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e621c6 fddi_type_trans -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26eb4e35 irq_to_desc -EXPORT_SYMBOL vmlinux 0x2722c9f9 padata_alloc_possible -EXPORT_SYMBOL vmlinux 0x27274be3 dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x2731e980 blk_start_request -EXPORT_SYMBOL vmlinux 0x27400d2c down_read -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x27646df3 start_thread -EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above -EXPORT_SYMBOL vmlinux 0x277a5a94 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27bda1ff cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x27ca65d2 serio_interrupt -EXPORT_SYMBOL vmlinux 0x27d6579e dev_remove_pack -EXPORT_SYMBOL vmlinux 0x27de779e input_set_keycode -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x27e78f93 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x28073182 keyring_search -EXPORT_SYMBOL vmlinux 0x280c5694 bio_add_page -EXPORT_SYMBOL vmlinux 0x280e51dc vfs_unlink -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x2827903d mmc_start_bkops -EXPORT_SYMBOL vmlinux 0x2829efab inet6_release -EXPORT_SYMBOL vmlinux 0x28318305 snprintf -EXPORT_SYMBOL vmlinux 0x2855c978 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x28789eb0 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x28956746 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove -EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28a7beba __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x28ab4a4d deactivate_super -EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x28c8569e param_ops_ulong -EXPORT_SYMBOL vmlinux 0x28d24388 dquot_commit -EXPORT_SYMBOL vmlinux 0x28e4896c nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x28ef9c05 cap_mmap_file -EXPORT_SYMBOL vmlinux 0x293402a1 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x2938b2e3 tso_start -EXPORT_SYMBOL vmlinux 0x293c2e23 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x2954b2ee proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x2959050a scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x2969bc39 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x2970c590 flush_icache_user_range -EXPORT_SYMBOL vmlinux 0x29856348 kernel_accept -EXPORT_SYMBOL vmlinux 0x2985e00a dev_uc_add -EXPORT_SYMBOL vmlinux 0x29aa8971 simple_write_begin -EXPORT_SYMBOL vmlinux 0x29c714a6 dm_unregister_target -EXPORT_SYMBOL vmlinux 0x29cbd876 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x29db62d0 mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0x29dea469 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x29edd8c3 rtas_online_cpus_mask -EXPORT_SYMBOL vmlinux 0x2a1f9a40 inet6_protos -EXPORT_SYMBOL vmlinux 0x2a2517d0 sget -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2a4de471 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x2a4e0714 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x2a5426d7 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x2a604c6e fget -EXPORT_SYMBOL vmlinux 0x2a62e1f7 dev_alert -EXPORT_SYMBOL vmlinux 0x2a663af3 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x2a6d8e6e migrate_page -EXPORT_SYMBOL vmlinux 0x2a7a6f1a kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x2a841b85 bdi_init -EXPORT_SYMBOL vmlinux 0x2a87f6ff vfs_rmdir -EXPORT_SYMBOL vmlinux 0x2a8be08c tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x2aab858d dev_printk_emit -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2aaeb1ca ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x2ab87344 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put -EXPORT_SYMBOL vmlinux 0x2ac37222 nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2ad9695e blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0x2add1ea4 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b10fe8f sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x2b115a00 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b31ed09 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x2b3c5e94 srp_reconnect_rport -EXPORT_SYMBOL vmlinux 0x2b40ad68 scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0x2b40c968 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x2b4991ec xmon -EXPORT_SYMBOL vmlinux 0x2b60c708 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x2b6c00f0 dst_alloc -EXPORT_SYMBOL vmlinux 0x2b763c68 mpage_readpage -EXPORT_SYMBOL vmlinux 0x2b8560d3 vio_unregister_device -EXPORT_SYMBOL vmlinux 0x2b99a195 dquot_transfer -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2bc5f537 check_disk_size_change -EXPORT_SYMBOL vmlinux 0x2bcf385e pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x2be19cd1 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x2c056011 mb_cache_shrink -EXPORT_SYMBOL vmlinux 0x2c1cfb75 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x2c248d0b rt6_lookup -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c56504b skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x2c77fd20 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout -EXPORT_SYMBOL vmlinux 0x2c8890be __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x2c8a751f pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x2cb26c75 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x2cee3694 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x2cf25508 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x2cf45a73 do_splice_from -EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d26c680 __d_drop -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d35b75f trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x2d41c445 __quota_error -EXPORT_SYMBOL vmlinux 0x2d56dcbf cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x2d5b0247 of_device_is_available -EXPORT_SYMBOL vmlinux 0x2d8b9cf6 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x2db1e0c6 dql_init -EXPORT_SYMBOL vmlinux 0x2db4da5a vfs_iter_write -EXPORT_SYMBOL vmlinux 0x2dd97201 fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0x2df29b5e mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x2df56e5a get_tz_trend -EXPORT_SYMBOL vmlinux 0x2dfd8a18 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x2e097ccf __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on -EXPORT_SYMBOL vmlinux 0x2e12a93b ibmebus_request_irq -EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e44bb90 mmc_can_erase -EXPORT_SYMBOL vmlinux 0x2e4c805e input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0x2e59533e of_platform_device_create -EXPORT_SYMBOL vmlinux 0x2e5988b0 mount_bdev -EXPORT_SYMBOL vmlinux 0x2e6027ab wake_up_process -EXPORT_SYMBOL vmlinux 0x2e62ab29 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x2e94cf4b mark_page_accessed -EXPORT_SYMBOL vmlinux 0x2e956d81 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x2e993b24 __block_write_begin -EXPORT_SYMBOL vmlinux 0x2ec483f1 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x2ed2fa2c remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x2ed6673a framebuffer_release -EXPORT_SYMBOL vmlinux 0x2edc52e1 mfd_add_devices -EXPORT_SYMBOL vmlinux 0x2ee7756d iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x2ef06736 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f15660f tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x2f1c09e6 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user -EXPORT_SYMBOL vmlinux 0x2f2ba495 dm_put_device -EXPORT_SYMBOL vmlinux 0x2f37816a dentry_path_raw -EXPORT_SYMBOL vmlinux 0x2f7f8d4d input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x2f849fc3 param_get_charp -EXPORT_SYMBOL vmlinux 0x2fa0c106 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x2fa8398e dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fef2480 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x300112ae thaw_super -EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x30523478 skb_put -EXPORT_SYMBOL vmlinux 0x30579590 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x3063ae2c nf_log_register -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x308d872a inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x3098fd74 elv_register_queue -EXPORT_SYMBOL vmlinux 0x30a2b368 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id -EXPORT_SYMBOL vmlinux 0x30c0e569 input_event -EXPORT_SYMBOL vmlinux 0x30c492ff udp6_csum_init -EXPORT_SYMBOL vmlinux 0x30df47e5 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x30ec3aec xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310f02ec memremap -EXPORT_SYMBOL vmlinux 0x313bbc59 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x31432c11 compat_ip_getsockopt -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x31847493 mpage_readpages -EXPORT_SYMBOL vmlinux 0x319995e0 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x319a9a1b ps2_drain -EXPORT_SYMBOL vmlinux 0x319f4dce paca -EXPORT_SYMBOL vmlinux 0x31ac1e8d fget_raw -EXPORT_SYMBOL vmlinux 0x31b7eabc dump_truncate -EXPORT_SYMBOL vmlinux 0x31c3107b devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x31cc1dfe blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x31cd995b store_fp_state -EXPORT_SYMBOL vmlinux 0x31d3a542 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x31eefe32 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x31f34a57 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x31f37ec2 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x31fcdd70 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x320f6fd7 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x3214b46d __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x321dc4e1 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x321e8fc7 iov_iter_init -EXPORT_SYMBOL vmlinux 0x32239e9b mmc_align_data_size -EXPORT_SYMBOL vmlinux 0x322a72eb tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x324b1272 scsi_init_io -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x325dd60f input_register_handler -EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x32f6f06f would_dump -EXPORT_SYMBOL vmlinux 0x331adf5e tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x331ce585 tty_free_termios -EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x3347b6d9 fb_show_logo -EXPORT_SYMBOL vmlinux 0x33552ce0 zero_fill_bio -EXPORT_SYMBOL vmlinux 0x3375bf48 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x3376e0fa phy_drivers_register -EXPORT_SYMBOL vmlinux 0x33858a42 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x338f27f1 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x339343fe xfrm_register_km -EXPORT_SYMBOL vmlinux 0x3397e88a reservation_object_reserve_shared -EXPORT_SYMBOL vmlinux 0x33a4d284 dev_addr_flush -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33dbee91 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x33dcffc9 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x33ff7e5c f_setown -EXPORT_SYMBOL vmlinux 0x3419bc7b read_cache_pages -EXPORT_SYMBOL vmlinux 0x34231519 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x343f3cf4 dma_pool_create -EXPORT_SYMBOL vmlinux 0x34547d72 nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x346b2499 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x3474b053 icmpv6_send -EXPORT_SYMBOL vmlinux 0x34841422 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x349c198f always_delete_dentry -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34a97b47 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x34c0646b dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x34c16eca agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0x34cb19fe blk_sync_queue -EXPORT_SYMBOL vmlinux 0x34ddb0e4 sk_free -EXPORT_SYMBOL vmlinux 0x34e15f4e tty_do_resize -EXPORT_SYMBOL vmlinux 0x34f04a84 input_inject_event -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34ff1e40 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x350c9cf8 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x3541ca29 simple_setattr -EXPORT_SYMBOL vmlinux 0x35583ca5 key_alloc -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x3567fd22 mmc_free_host -EXPORT_SYMBOL vmlinux 0x358de5ae ppp_dev_name -EXPORT_SYMBOL vmlinux 0x359e97c4 blk_init_tags -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35b20df1 devm_memunmap -EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 -EXPORT_SYMBOL vmlinux 0x35e09980 flex_array_put -EXPORT_SYMBOL vmlinux 0x35f35858 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x360c9c90 genphy_config_init -EXPORT_SYMBOL vmlinux 0x360d395a of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy -EXPORT_SYMBOL vmlinux 0x362b27ae dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x364cd2ea dev_get_by_name -EXPORT_SYMBOL vmlinux 0x365bea3d udp_prot -EXPORT_SYMBOL vmlinux 0x365c689e phy_print_status -EXPORT_SYMBOL vmlinux 0x3668fd48 flex_array_free_parts -EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy -EXPORT_SYMBOL vmlinux 0x367c5172 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x3684635d pci_choose_state -EXPORT_SYMBOL vmlinux 0x369c7298 dump_align -EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36ca2b0a qdisc_destroy -EXPORT_SYMBOL vmlinux 0x36f04298 eth_header -EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport -EXPORT_SYMBOL vmlinux 0x372b85e1 do_SAK -EXPORT_SYMBOL vmlinux 0x37344510 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level -EXPORT_SYMBOL vmlinux 0x3741658c crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374bb89f xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0x379d005c devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b28bf5 blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x37b44f66 of_mm_gpiochip_add -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37be07eb devm_gpiod_get_array -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c6d124 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x37d9e047 module_put -EXPORT_SYMBOL vmlinux 0x37f59c63 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x3816a018 inet_accept -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x382792c7 blk_get_request -EXPORT_SYMBOL vmlinux 0x382d5aa9 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x383647c0 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a780d8 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38aefe2b lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace -EXPORT_SYMBOL vmlinux 0x38d3e8ef bioset_free -EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios -EXPORT_SYMBOL vmlinux 0x390205ca xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x39049f7f jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x3911c3f6 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x3916646a xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x391b67dd put_page -EXPORT_SYMBOL vmlinux 0x391f399a unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x392ed43e default_llseek -EXPORT_SYMBOL vmlinux 0x39336926 __vfs_write -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le -EXPORT_SYMBOL vmlinux 0x3943dbef sock_no_accept -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3946ef20 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x39476616 param_set_byte -EXPORT_SYMBOL vmlinux 0x39543f1b devm_gpiod_get_index -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x39729405 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x397b4822 dquot_release -EXPORT_SYMBOL vmlinux 0x3995fc62 padata_add_cpu -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39bb243c init_task -EXPORT_SYMBOL vmlinux 0x39bc2330 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x39e4c884 pci_map_rom -EXPORT_SYMBOL vmlinux 0x3a060ea3 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x3a066ce9 tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0x3a0d3ef9 dm_io -EXPORT_SYMBOL vmlinux 0x3a176ee0 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x3a1c7a9d dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x3a2a9989 neigh_xmit -EXPORT_SYMBOL vmlinux 0x3a3b7b3e neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x3a776f96 sockfd_lookup -EXPORT_SYMBOL vmlinux 0x3a86042f tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x3a91a209 get_task_exe_file -EXPORT_SYMBOL vmlinux 0x3a971903 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3aa5327d scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x3aba2ead dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x3ac3f411 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x3acb0d42 kill_litter_super -EXPORT_SYMBOL vmlinux 0x3af35d5d end_page_writeback -EXPORT_SYMBOL vmlinux 0x3af932d7 inet_listen -EXPORT_SYMBOL vmlinux 0x3afd99b5 ping_prot -EXPORT_SYMBOL vmlinux 0x3afdeee5 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x3b328c78 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0x3b53f34c security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x3b5c580a ppp_register_channel -EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x3b9bcb4b msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x3b9e05f1 param_set_copystring -EXPORT_SYMBOL vmlinux 0x3badf088 dev_activate -EXPORT_SYMBOL vmlinux 0x3bb18a4a dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x3bd0329b mmc_start_req -EXPORT_SYMBOL vmlinux 0x3bd18e3f padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0x3bd77017 devm_gpiod_get_array_optional -EXPORT_SYMBOL vmlinux 0x3bf707b2 generic_writepages -EXPORT_SYMBOL vmlinux 0x3bfe6593 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x3c02f85d vm_insert_mixed -EXPORT_SYMBOL vmlinux 0x3c0341e5 free_netdev -EXPORT_SYMBOL vmlinux 0x3c05b8e1 devm_free_irq -EXPORT_SYMBOL vmlinux 0x3c3bdfc0 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c45c338 user_revoke -EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x3c4f6700 tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init -EXPORT_SYMBOL vmlinux 0x3cc4ea0a inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x3cd18b60 nd_device_register -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce876c4 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x3cfdbfe0 inet_frag_find -EXPORT_SYMBOL vmlinux 0x3d008043 skb_clone -EXPORT_SYMBOL vmlinux 0x3d0a45e3 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x3d0d615e con_copy_unimap -EXPORT_SYMBOL vmlinux 0x3d1b5755 bitmap_unplug -EXPORT_SYMBOL vmlinux 0x3d50237a scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x3d7284d5 backlight_device_register -EXPORT_SYMBOL vmlinux 0x3d789e8c skb_push -EXPORT_SYMBOL vmlinux 0x3d829255 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x3dbf97dd md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dd8fb67 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x3ddfc05b elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0x3de5040c param_ops_invbool -EXPORT_SYMBOL vmlinux 0x3df0e004 pnv_pci_get_gpu_dev -EXPORT_SYMBOL vmlinux 0x3df57596 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x3df746e0 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e1c022b blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0x3e39531d inc_nlink -EXPORT_SYMBOL vmlinux 0x3e3a0e27 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x3e3b11d9 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x3e44a726 pci_clear_master -EXPORT_SYMBOL vmlinux 0x3e5536c7 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0x3e692d5c of_parse_phandle -EXPORT_SYMBOL vmlinux 0x3e750909 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource -EXPORT_SYMBOL vmlinux 0x3e910fe0 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get -EXPORT_SYMBOL vmlinux 0x3ea9a1e8 sk_net_capable -EXPORT_SYMBOL vmlinux 0x3eafcfac __get_page_tail -EXPORT_SYMBOL vmlinux 0x3eb68a44 dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x3f016089 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f0c3924 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x3f1a71a1 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x3f1c55cf iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f53fdb8 srp_rport_put -EXPORT_SYMBOL vmlinux 0x3f6c216d __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x3f9c320c dquot_enable -EXPORT_SYMBOL vmlinux 0x3fbb7b43 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x3fc44dec inet_del_protocol -EXPORT_SYMBOL vmlinux 0x3fc81232 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x3fd2fd53 of_get_min_tck -EXPORT_SYMBOL vmlinux 0x3fdb43ab mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fe347a8 pagecache_write_end -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0x3ffb994a blkdev_fsync -EXPORT_SYMBOL vmlinux 0x40175761 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x401c406f security_inode_readlink -EXPORT_SYMBOL vmlinux 0x4022c3a5 set_user_nice -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x403c3637 update_region -EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x4061f448 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b9dcba fs_bio_set -EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x40c12656 pci_match_id -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d329ee mutex_unlock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40dab3b1 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x4111a8a5 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x411a103c skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x4127734a xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x412eca86 vme_dma_request -EXPORT_SYMBOL vmlinux 0x4137dd63 of_node_put -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x4150f716 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc -EXPORT_SYMBOL vmlinux 0x415b22de blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x41c9dad8 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x41cfdd8e cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x41e35388 netdev_notice -EXPORT_SYMBOL vmlinux 0x41e50a2a shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x41e6d186 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x41ed465e bdi_register_dev -EXPORT_SYMBOL vmlinux 0x41f351ac serio_reconnect -EXPORT_SYMBOL vmlinux 0x42026b2a dev_close -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x4216ed3e pcie_set_mps -EXPORT_SYMBOL vmlinux 0x4219de30 km_query -EXPORT_SYMBOL vmlinux 0x421e88c1 genphy_resume -EXPORT_SYMBOL vmlinux 0x422100fb devm_request_resource -EXPORT_SYMBOL vmlinux 0x42351e5d pci_set_mwi -EXPORT_SYMBOL vmlinux 0x42388e60 mmc_set_blockcount -EXPORT_SYMBOL vmlinux 0x42399549 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x424611b0 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4254123a send_sig_info -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x426adcf2 inode_set_flags -EXPORT_SYMBOL vmlinux 0x42770721 compat_tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x4296f256 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x429fff61 tty_mutex -EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x42b648b4 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x42ce4acf vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x42dcb0ea blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x42eab5d5 of_create_pci_dev -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x4361d983 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 -EXPORT_SYMBOL vmlinux 0x437dfa3e scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x439e7dea dentry_unhash -EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all -EXPORT_SYMBOL vmlinux 0x43a78649 gen_pool_add_virt -EXPORT_SYMBOL vmlinux 0x43b43890 abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0x43c715a8 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x43e6a10b rtnl_notify -EXPORT_SYMBOL vmlinux 0x43ea9722 flush_old_exec -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x4408f848 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x4410b223 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x44192051 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0x4425ca16 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x443f6308 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x4451fab8 inode_change_ok -EXPORT_SYMBOL vmlinux 0x446cb03a blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x4478afd9 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x447a91f9 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44b3f977 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x44e8dcfc single_open -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion -EXPORT_SYMBOL vmlinux 0x44f430e3 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x454e06f1 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45dabb12 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x45f65d34 __secpath_destroy -EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock -EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user -EXPORT_SYMBOL vmlinux 0x463e47f7 pci_disable_msix -EXPORT_SYMBOL vmlinux 0x4647fd82 block_read_full_page -EXPORT_SYMBOL vmlinux 0x464fa292 fifo_set_limit -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x465f61b1 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x466c3b6a inode_init_owner -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x46849baf md_register_thread -EXPORT_SYMBOL vmlinux 0x46a0170e flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0x46afa5f1 address_space_init_once -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46ca634c open_exec -EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x4727a033 inet_del_offload -EXPORT_SYMBOL vmlinux 0x472b8c06 put_filp -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x47608718 fence_init -EXPORT_SYMBOL vmlinux 0x4760f804 ppp_input_error -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x47ad52aa kernel_getsockname -EXPORT_SYMBOL vmlinux 0x47d20564 sync_filesystem -EXPORT_SYMBOL vmlinux 0x47d75a42 inode_init_once -EXPORT_SYMBOL vmlinux 0x47de5500 vme_bus_num -EXPORT_SYMBOL vmlinux 0x480a85f9 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0x4829a47e memcpy -EXPORT_SYMBOL vmlinux 0x482d3f0c clear_nlink -EXPORT_SYMBOL vmlinux 0x483f42a5 may_umount_tree -EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x486381ab register_framebuffer -EXPORT_SYMBOL vmlinux 0x486cb4ca d_walk -EXPORT_SYMBOL vmlinux 0x486ef179 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x48820a7c tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0x48b0792d dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x48b77230 scsi_remove_host -EXPORT_SYMBOL vmlinux 0x48b8324c of_get_parent -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48cf518b mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x48ded432 pci_get_device -EXPORT_SYMBOL vmlinux 0x48e8ecac tty_unregister_device -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x49046c52 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x490f57cf netif_device_detach -EXPORT_SYMBOL vmlinux 0x4916064c __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x49299a37 security_path_symlink -EXPORT_SYMBOL vmlinux 0x4935353e sock_create -EXPORT_SYMBOL vmlinux 0x493c27ff sock_kmalloc -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x4973b8dc dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x4978fada skb_queue_tail -EXPORT_SYMBOL vmlinux 0x497b4079 simple_fill_super -EXPORT_SYMBOL vmlinux 0x499bfc6d __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x49a7ee46 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b249ef get_mm_exe_file -EXPORT_SYMBOL vmlinux 0x49b6d410 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x49f63bd9 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x4a0781c6 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x4a2f5d4e inet6_ioctl -EXPORT_SYMBOL vmlinux 0x4a32fdfc inet_release -EXPORT_SYMBOL vmlinux 0x4a3df895 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x4a655118 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x4a811443 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x4a9ecdfb ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x4aa466ae i8042_install_filter -EXPORT_SYMBOL vmlinux 0x4aa4a126 down_write -EXPORT_SYMBOL vmlinux 0x4ab1da01 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4ac09296 replace_mount_options -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request -EXPORT_SYMBOL vmlinux 0x4ae038cc giveup_altivec -EXPORT_SYMBOL vmlinux 0x4aebc90c phy_connect_direct -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b040934 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b0adb35 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x4b117c52 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x4b2667e4 param_set_uint -EXPORT_SYMBOL vmlinux 0x4b3315be deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x4b4d6e3e neigh_destroy -EXPORT_SYMBOL vmlinux 0x4b52febf block_write_begin -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b74a106 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove -EXPORT_SYMBOL vmlinux 0x4b900928 bio_chain -EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get -EXPORT_SYMBOL vmlinux 0x4bc4c556 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x4bc65cc5 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x4bc7323c peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x4bc8a0ca udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x4beca824 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add -EXPORT_SYMBOL vmlinux 0x4c0d822e generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x4c197cda security_file_permission -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c6cd230 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x4c70e6b6 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x4c8349f2 netif_device_attach -EXPORT_SYMBOL vmlinux 0x4c9eedaa generic_show_options -EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf -EXPORT_SYMBOL vmlinux 0x4cd0f66d __scm_destroy -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4cf9089b skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x4d28232b ptp_find_pin -EXPORT_SYMBOL vmlinux 0x4d2dde2d of_io_request_and_map -EXPORT_SYMBOL vmlinux 0x4d4ef150 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x4d645d57 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x4d67f15b padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize -EXPORT_SYMBOL vmlinux 0x4d80c946 d_lookup -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9bc53d mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4debf617 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e593e39 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x4e605c90 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6afecc twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e75ca33 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x4e7c368b tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum -EXPORT_SYMBOL vmlinux 0x4ea3763e inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x4eae8a5a netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x4eb5d40f tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x4ebef19d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x4ecad34c mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0x4ed0c725 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x4ef1c92a ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0x4f09b9e3 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f33cfdd kernel_read -EXPORT_SYMBOL vmlinux 0x4f34a3c7 blk_queue_split -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x4f4c8e41 uart_resume_port -EXPORT_SYMBOL vmlinux 0x4f507846 vfs_setpos -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f6bc523 dev_deactivate -EXPORT_SYMBOL vmlinux 0x4f77eea0 lwtunnel_input -EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve -EXPORT_SYMBOL vmlinux 0x4f8c8e62 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x4f9204ef d_move -EXPORT_SYMBOL vmlinux 0x4fa8a511 pnv_pci_get_npu_dev -EXPORT_SYMBOL vmlinux 0x4fd75d40 skb_split -EXPORT_SYMBOL vmlinux 0x4fda3ed5 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4fe8cd25 simple_follow_link -EXPORT_SYMBOL vmlinux 0x4ff6ef69 twl6040_power -EXPORT_SYMBOL vmlinux 0x4ffb1324 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x50068895 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x507d9bad abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x50886f69 mount_pseudo -EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch -EXPORT_SYMBOL vmlinux 0x50ae0999 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x50c01ac6 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x50cac0f4 simple_getattr -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50eccd50 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x50eefb28 init_special_inode -EXPORT_SYMBOL vmlinux 0x511213f3 blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x513dcf6d vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x5142d855 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x516a3fc7 dev_crit -EXPORT_SYMBOL vmlinux 0x517fa2ba netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x518889e8 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait -EXPORT_SYMBOL vmlinux 0x519dbcb3 account_page_redirty -EXPORT_SYMBOL vmlinux 0x519ee511 seq_vprintf -EXPORT_SYMBOL vmlinux 0x51c375cd iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x51fee5e1 param_get_uint -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x5262d628 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x526d01a5 current_in_userns -EXPORT_SYMBOL vmlinux 0x5275132c ps2_command -EXPORT_SYMBOL vmlinux 0x52896c79 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x528c77ed swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x52938daf __dquot_transfer -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52a0a720 fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x52a8fddf __genl_register_family -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x53147908 page_waitqueue -EXPORT_SYMBOL vmlinux 0x531a2eec ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin -EXPORT_SYMBOL vmlinux 0x538a683e tty_port_close -EXPORT_SYMBOL vmlinux 0x538e611f of_n_size_cells -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x53a18847 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x53b49102 param_get_invbool -EXPORT_SYMBOL vmlinux 0x53b56435 __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x53d9579c ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x53da3ff9 current_fs_time -EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns -EXPORT_SYMBOL vmlinux 0x53f154d3 ___pskb_trim -EXPORT_SYMBOL vmlinux 0x54007173 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x540163e7 __scm_send -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x54115c8e qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x5412c7c7 up -EXPORT_SYMBOL vmlinux 0x5419a375 tcp_child_process -EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x546d9b4d vfs_rename -EXPORT_SYMBOL vmlinux 0x54951882 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x54960751 agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0x5497ae70 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x549b2586 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54bea1d3 serio_bus -EXPORT_SYMBOL vmlinux 0x54c20db7 register_quota_format -EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54f16504 blk_requeue_request -EXPORT_SYMBOL vmlinux 0x54fcac03 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x552f674a pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x554b1c43 phy_attach -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x5568c553 complete -EXPORT_SYMBOL vmlinux 0x556f36c3 add_disk -EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table -EXPORT_SYMBOL vmlinux 0x55a05794 pnv_cxl_alloc_hwirq_ranges -EXPORT_SYMBOL vmlinux 0x55c04692 blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node -EXPORT_SYMBOL vmlinux 0x55f5dc9f block_invalidatepage -EXPORT_SYMBOL vmlinux 0x560eb2d6 agp_bridge -EXPORT_SYMBOL vmlinux 0x5620d186 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x567633f0 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x5679c69c migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x56805ded udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x568e3054 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x5692b6ad blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress -EXPORT_SYMBOL vmlinux 0x56c2cae4 fd_install -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56eb174e ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x5711e6da clear_user_page -EXPORT_SYMBOL vmlinux 0x5713d743 single_release -EXPORT_SYMBOL vmlinux 0x572647d6 get_mce_fault_addr -EXPORT_SYMBOL vmlinux 0x57285952 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x57431520 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x5754aea1 seq_path -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x576ed525 proto_unregister -EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5788682f bio_copy_kern -EXPORT_SYMBOL vmlinux 0x5791118a phy_init_eee -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x57a7f4cf sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x57b60eab blk_get_queue -EXPORT_SYMBOL vmlinux 0x57bfe00b proc_set_size -EXPORT_SYMBOL vmlinux 0x57caec29 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x57cf7195 textsearch_register -EXPORT_SYMBOL vmlinux 0x580dd0da tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x58106c96 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x5814c304 check_disk_change -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x5834b17a sync_blockdev -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x5844b099 nvm_register -EXPORT_SYMBOL vmlinux 0x5856da8d nf_reinject -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x585fe305 path_get -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x58769269 nf_log_unset -EXPORT_SYMBOL vmlinux 0x588c22de start_tty -EXPORT_SYMBOL vmlinux 0x58a683d1 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x58aa64ef tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58e7bd59 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x590d970e ip_ct_attach -EXPORT_SYMBOL vmlinux 0x59467126 dev_get_stats -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page -EXPORT_SYMBOL vmlinux 0x59695dc2 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x598ef3a3 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release -EXPORT_SYMBOL vmlinux 0x59b3378a completion_done -EXPORT_SYMBOL vmlinux 0x59ce97b7 uart_register_driver -EXPORT_SYMBOL vmlinux 0x59f435ec ip6_frag_match -EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore -EXPORT_SYMBOL vmlinux 0x5a0aaa12 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a0d0134 netlink_set_err -EXPORT_SYMBOL vmlinux 0x5a1d1b92 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x5a23a9fd dquot_commit_info -EXPORT_SYMBOL vmlinux 0x5a37d89d generic_write_end -EXPORT_SYMBOL vmlinux 0x5a57e51a __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x5a6749d1 dev_mc_del -EXPORT_SYMBOL vmlinux 0x5a8ed928 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a98b61d ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5ae29bda dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x5af21f62 machine_id -EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get -EXPORT_SYMBOL vmlinux 0x5b0fcd3d iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0x5b148b4a rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x5b1ed4b7 del_gendisk -EXPORT_SYMBOL vmlinux 0x5b28a825 fasync_helper -EXPORT_SYMBOL vmlinux 0x5b3421de neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x5b41276b iov_iter_npages -EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b676831 udp_poll -EXPORT_SYMBOL vmlinux 0x5b7b95ec scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock -EXPORT_SYMBOL vmlinux 0x5bab1f41 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit -EXPORT_SYMBOL vmlinux 0x5bcac8f0 is_bad_inode -EXPORT_SYMBOL vmlinux 0x5be5f1c3 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x5bf03e86 __frontswap_test -EXPORT_SYMBOL vmlinux 0x5bf2b8b3 dma_direct_ops -EXPORT_SYMBOL vmlinux 0x5c34effc mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x5c91ad0c set_disk_ro -EXPORT_SYMBOL vmlinux 0x5c99ff9d vme_lm_request -EXPORT_SYMBOL vmlinux 0x5ca25a2f vme_master_mmap -EXPORT_SYMBOL vmlinux 0x5caaba7c uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x5caf7120 free_page_put_link -EXPORT_SYMBOL vmlinux 0x5cb23c20 netlink_ack -EXPORT_SYMBOL vmlinux 0x5cbc29a5 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x5cbd155c vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x5cd8bae7 unlock_page -EXPORT_SYMBOL vmlinux 0x5cdbbd53 tcf_hash_create -EXPORT_SYMBOL vmlinux 0x5cdec882 generic_removexattr -EXPORT_SYMBOL vmlinux 0x5cf30e10 __debugger_ipi -EXPORT_SYMBOL vmlinux 0x5cf3f1a8 dev_addr_add -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d0178ed netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x5d1170e6 __inet_hash -EXPORT_SYMBOL vmlinux 0x5d234b18 tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0x5d2f8a14 __nd_iostat_start -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d5b067f simple_empty -EXPORT_SYMBOL vmlinux 0x5d6dfa4d seq_file_path -EXPORT_SYMBOL vmlinux 0x5d81fa88 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x5d84eeb0 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x5d8e5fdd fsl_lbc_ctrl_dev -EXPORT_SYMBOL vmlinux 0x5daa11b7 of_phy_attach -EXPORT_SYMBOL vmlinux 0x5db54d8c get_fs_type -EXPORT_SYMBOL vmlinux 0x5dc41626 napi_get_frags -EXPORT_SYMBOL vmlinux 0x5de7fce6 follow_up -EXPORT_SYMBOL vmlinux 0x5de93888 have_submounts -EXPORT_SYMBOL vmlinux 0x5df0a1f0 __dquot_free_space -EXPORT_SYMBOL vmlinux 0x5df2926c kill_bdev -EXPORT_SYMBOL vmlinux 0x5dfb93c6 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x5e139a27 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x5e13eeee __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x5e297e32 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x5e336987 flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up -EXPORT_SYMBOL vmlinux 0x5e5e9773 inet_addr_type -EXPORT_SYMBOL vmlinux 0x5e6ebafd skb_queue_purge -EXPORT_SYMBOL vmlinux 0x5e789a4a sg_miter_next -EXPORT_SYMBOL vmlinux 0x5e7dcf78 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x5e8155e0 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x5e84bc12 __ps2_command -EXPORT_SYMBOL vmlinux 0x5e8d92e8 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x5e8ebf6a devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec447a8 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return -EXPORT_SYMBOL vmlinux 0x5ee81c66 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x5ef1e390 generic_fillattr -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f08d7ce ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f0f8ad9 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x5f23ca7d pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x5f4c9df9 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base -EXPORT_SYMBOL vmlinux 0x5f968761 vfs_statfs -EXPORT_SYMBOL vmlinux 0x5faecfff load_nls_default -EXPORT_SYMBOL vmlinux 0x5fd821ba phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5fec499b tcf_em_register -EXPORT_SYMBOL vmlinux 0x5fef509c netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600ba654 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602a6d4d sk_stream_write_space -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x603ae1d4 led_blink_set_oneshot -EXPORT_SYMBOL vmlinux 0x60414b88 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x607687fd scsi_dma_map -EXPORT_SYMBOL vmlinux 0x60806026 set_security_override -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60b360bb is_nd_btt -EXPORT_SYMBOL vmlinux 0x60b49a47 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x60ba4507 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x60ba8763 input_flush_device -EXPORT_SYMBOL vmlinux 0x60c14704 d_path -EXPORT_SYMBOL vmlinux 0x60d62ceb of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x61050fc1 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x61123668 dev_addr_del -EXPORT_SYMBOL vmlinux 0x612092e3 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x6131b894 inet_put_port -EXPORT_SYMBOL vmlinux 0x613ad04a jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x61443507 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x6144d434 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x614ae25a cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x61888b24 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x618c761d inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x619b9b94 kthread_stop -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61af48b8 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c002c5 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb -EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x621b9735 ll_rw_block -EXPORT_SYMBOL vmlinux 0x62244ee1 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x62352b38 skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0x624d5932 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x626125ff nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x6283a42f blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62addf22 try_to_release_page -EXPORT_SYMBOL vmlinux 0x62ca4e02 nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0x630294c3 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x63396aec __debugger_break_match -EXPORT_SYMBOL vmlinux 0x638f380e dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x6390f9fe dquot_operations -EXPORT_SYMBOL vmlinux 0x639a6f0c blk_start_queue -EXPORT_SYMBOL vmlinux 0x639dd6a1 stop_tty -EXPORT_SYMBOL vmlinux 0x63a07aa7 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63e8e856 copy_to_iter -EXPORT_SYMBOL vmlinux 0x63e8f454 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63ec14c0 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x63f7291a of_match_device -EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x64133f69 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x6415ac3b kset_unregister -EXPORT_SYMBOL vmlinux 0x64245300 mntput -EXPORT_SYMBOL vmlinux 0x642c4163 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x642df85a to_nd_btt -EXPORT_SYMBOL vmlinux 0x64696b7b get_pci_dma_ops -EXPORT_SYMBOL vmlinux 0x6480f633 kill_pgrp -EXPORT_SYMBOL vmlinux 0x648195be poll_freewait -EXPORT_SYMBOL vmlinux 0x649668a2 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x649d6289 pcim_iomap -EXPORT_SYMBOL vmlinux 0x64ab9629 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x64b1140d filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x64b48156 d_splice_alias -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64c6d0d1 phy_find_first -EXPORT_SYMBOL vmlinux 0x64d1dfc9 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x64da7874 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x64dfc055 dquot_initialize -EXPORT_SYMBOL vmlinux 0x64e82f2c vfs_write -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x65566756 nvm_dev_factory -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x65797c34 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x658271a4 fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x65938255 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x65bdeccc mmc_power_save_host -EXPORT_SYMBOL vmlinux 0x65c4e1ab nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x660a93e4 of_dev_put -EXPORT_SYMBOL vmlinux 0x661d272b tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x662b42b3 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x664a191e generic_setlease -EXPORT_SYMBOL vmlinux 0x664e3f89 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x664f7473 ps2_end_command -EXPORT_SYMBOL vmlinux 0x666bc3a1 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x66754be3 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x6681a95a of_dev_get -EXPORT_SYMBOL vmlinux 0x66e5f0fd cont_write_begin -EXPORT_SYMBOL vmlinux 0x66eccdbf get_gendisk -EXPORT_SYMBOL vmlinux 0x66f108e2 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x6704f5bb mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x6719872e netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x672bdbde of_cpufreq_power_cooling_register -EXPORT_SYMBOL vmlinux 0x673815e2 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x6740c613 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x674bec75 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x6753e0fc tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x675e1bca skb_dequeue -EXPORT_SYMBOL vmlinux 0x67619a12 key_invalidate -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x677efc8b dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x6799b30c mdiobus_read -EXPORT_SYMBOL vmlinux 0x67a6dc68 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0x67ae2351 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67e3e8ee key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x6800e4f4 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x6809519c register_shrinker -EXPORT_SYMBOL vmlinux 0x6831d2a0 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x683ba815 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x68415e0f from_kprojid -EXPORT_SYMBOL vmlinux 0x6852d034 vfs_readv -EXPORT_SYMBOL vmlinux 0x685ce993 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x68824ac9 of_device_register -EXPORT_SYMBOL vmlinux 0x6885d744 tty_name -EXPORT_SYMBOL vmlinux 0x68909f6c register_filesystem -EXPORT_SYMBOL vmlinux 0x6897a103 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a45215 simple_write_end -EXPORT_SYMBOL vmlinux 0x68ae540e __get_user_pages -EXPORT_SYMBOL vmlinux 0x68b505a0 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68d95e81 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x68ddc6a4 dev_add_offload -EXPORT_SYMBOL vmlinux 0x69107033 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x6921d915 __brelse -EXPORT_SYMBOL vmlinux 0x693fd7fa frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x696d3e18 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x6986b383 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x69997ee3 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69a510c0 copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x69a6058a twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69b00463 sock_no_getname -EXPORT_SYMBOL vmlinux 0x69c8c754 netdev_printk -EXPORT_SYMBOL vmlinux 0x69f7a73e dquot_get_state -EXPORT_SYMBOL vmlinux 0x6a00badb generic_getxattr -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a2929c3 agp_backend_release -EXPORT_SYMBOL vmlinux 0x6a3393a3 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x6a41b8ef unlock_buffer -EXPORT_SYMBOL vmlinux 0x6a5ad7e8 agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a65057b __register_chrdev -EXPORT_SYMBOL vmlinux 0x6a6dce6d vm_insert_page -EXPORT_SYMBOL vmlinux 0x6a70a4e2 abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0x6a7384bd bio_copy_data -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6aa82db0 write_cache_pages -EXPORT_SYMBOL vmlinux 0x6ab9a1a7 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x6acaaff1 bdput -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be -EXPORT_SYMBOL vmlinux 0x6acbe929 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x6ada40e8 ipv4_specific -EXPORT_SYMBOL vmlinux 0x6add193d of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x6ae2fa2b udp_proc_unregister -EXPORT_SYMBOL vmlinux 0x6ae34fe7 file_path -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af47d41 __put_cred -EXPORT_SYMBOL vmlinux 0x6af75f74 sk_dst_check -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b077cde security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b1f4c54 of_get_address -EXPORT_SYMBOL vmlinux 0x6b20d0d9 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x6b282d42 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b2ea2e5 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x6b575962 netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x6b5dfe73 __debugger_bpt -EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free -EXPORT_SYMBOL vmlinux 0x6b6a1d48 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x6b6e7ae9 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0x6b7b1509 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x6b81ea35 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x6bbcdd68 param_ops_byte -EXPORT_SYMBOL vmlinux 0x6bc2b1e1 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6bee0562 set_cached_acl -EXPORT_SYMBOL vmlinux 0x6bf69e0e tcp_req_err -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c0ff361 km_policy_expired -EXPORT_SYMBOL vmlinux 0x6c24e3eb ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x6c2869d9 pci_save_state -EXPORT_SYMBOL vmlinux 0x6c43b524 drop_super -EXPORT_SYMBOL vmlinux 0x6c440511 kern_path_create -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c6a666d __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c76dd18 sk_common_release -EXPORT_SYMBOL vmlinux 0x6c9b7ce5 qdisc_list_del -EXPORT_SYMBOL vmlinux 0x6ca52348 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x6cbd85b7 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x6cd611d0 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x6cdd312b sock_no_connect -EXPORT_SYMBOL vmlinux 0x6cff280c pci_write_vpd -EXPORT_SYMBOL vmlinux 0x6d0156f1 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d2049df of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x6d24fcac sock_init_data -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d348595 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x6d4b1343 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x6d6f16cb of_iomap -EXPORT_SYMBOL vmlinux 0x6d7334a9 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x6d89c384 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns -EXPORT_SYMBOL vmlinux 0x6dbb923d __blk_end_request_all -EXPORT_SYMBOL vmlinux 0x6dbc6761 tcf_hash_search -EXPORT_SYMBOL vmlinux 0x6dbcc611 tcp_shutdown -EXPORT_SYMBOL vmlinux 0x6dce7528 commit_creds -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e035d5b swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0x6e096f2a skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x6e0f0f63 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x6e22beba nvm_end_io -EXPORT_SYMBOL vmlinux 0x6e31d725 unlock_rename -EXPORT_SYMBOL vmlinux 0x6e3b3485 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x6e4f0f85 key_put -EXPORT_SYMBOL vmlinux 0x6e528ab3 xattr_full_name -EXPORT_SYMBOL vmlinux 0x6e6cf191 dma_iommu_ops -EXPORT_SYMBOL vmlinux 0x6e6efe90 tcp_seq_open -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e754ddc sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x6e759771 fb_set_cmap -EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x6e827b6d d_find_alias -EXPORT_SYMBOL vmlinux 0x6e87335e tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x6e947f41 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6eaf78a4 bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x6eb3de5a bdevname -EXPORT_SYMBOL vmlinux 0x6eb6ef96 of_get_ibm_chip_id -EXPORT_SYMBOL vmlinux 0x6eda8527 get_io_context -EXPORT_SYMBOL vmlinux 0x6f0c9bee i2c_transfer -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f2f59f1 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x6f35a1c6 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x6f37b450 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x6f491cee blk_peek_request -EXPORT_SYMBOL vmlinux 0x6f6f56ec tcp_filter -EXPORT_SYMBOL vmlinux 0x6f82fdf0 __napi_complete -EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x6fba6c32 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6feaba13 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x6ffe1d69 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x70349d52 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707a35fa fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x7092ec57 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x70a1076d security_path_unlink -EXPORT_SYMBOL vmlinux 0x70a79d5c sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x70df93c4 blk_queue_bounce -EXPORT_SYMBOL vmlinux 0x70eef651 rwsem_wake -EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match -EXPORT_SYMBOL vmlinux 0x70fb1431 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x7128cc7c textsearch_destroy -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x71452c52 tcf_hash_check -EXPORT_SYMBOL vmlinux 0x7169784c blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x718f88e5 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x719b31ea arp_create -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71fc93f0 nonseekable_open -EXPORT_SYMBOL vmlinux 0x7221ea53 input_close_device -EXPORT_SYMBOL vmlinux 0x7223ddae mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x725992e1 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x725fd887 nla_append -EXPORT_SYMBOL vmlinux 0x726ba963 path_nosuid -EXPORT_SYMBOL vmlinux 0x72846889 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x728e315c security_path_link -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x72bdeea9 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 -EXPORT_SYMBOL vmlinux 0x72d81052 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72eb6dcc freeze_super -EXPORT_SYMBOL vmlinux 0x72f28604 dma_common_mmap -EXPORT_SYMBOL vmlinux 0x730a6720 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x730fc06e inet_bind -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x734bf92b __check_sticky -EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue -EXPORT_SYMBOL vmlinux 0x736cea38 mdiobus_write -EXPORT_SYMBOL vmlinux 0x73710a3e dqstats -EXPORT_SYMBOL vmlinux 0x7377811c blk_run_queue -EXPORT_SYMBOL vmlinux 0x7377bb14 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x737919e1 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x738a14f5 dst_release -EXPORT_SYMBOL vmlinux 0x73b85d37 complete_request_key -EXPORT_SYMBOL vmlinux 0x73e97b2d ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x73f7144f sock_from_file -EXPORT_SYMBOL vmlinux 0x7402b30d generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x741ec3a7 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x7431f89b mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x74426ff0 swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x7442d3d0 dquot_disable -EXPORT_SYMBOL vmlinux 0x74434b3c max8998_update_reg -EXPORT_SYMBOL vmlinux 0x7451e38c bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x74623c9f mapping_tagged -EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x7478bf91 dev_mc_add -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x74896e18 phy_resume -EXPORT_SYMBOL vmlinux 0x74a2a27c genphy_update_link -EXPORT_SYMBOL vmlinux 0x74b10d1c qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x74b22563 find_lock_entry -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74d3552d blkdev_put -EXPORT_SYMBOL vmlinux 0x74d8920b scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74e89f13 padata_start -EXPORT_SYMBOL vmlinux 0x74fae476 led_blink_set -EXPORT_SYMBOL vmlinux 0x74ffdc69 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x7507c498 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x75150c4a kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0x7517bc0c agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x751bf7e0 generic_permission -EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x754888bc padata_do_serial -EXPORT_SYMBOL vmlinux 0x754a52c3 sock_recvmsg -EXPORT_SYMBOL vmlinux 0x754f3267 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x7561332d vlan_vid_add -EXPORT_SYMBOL vmlinux 0x756e945a swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x75750a5a import_iovec -EXPORT_SYMBOL vmlinux 0x757fa5ab tc_classify -EXPORT_SYMBOL vmlinux 0x75819f22 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75be6702 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x75d38847 get_thermal_instance -EXPORT_SYMBOL vmlinux 0x75e199c5 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x75e2e7da scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x76148d82 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x76178f1e blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x7636f357 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x76757d88 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x76ababad qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x76af5405 input_register_handle -EXPORT_SYMBOL vmlinux 0x76b3f42f devm_ioremap -EXPORT_SYMBOL vmlinux 0x76b59b33 cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x76c89508 iunique -EXPORT_SYMBOL vmlinux 0x76cebb15 module_refcount -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76d474fe max8925_set_bits -EXPORT_SYMBOL vmlinux 0x76e608d5 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x76ed2844 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x76fce8cb alloc_fddidev -EXPORT_SYMBOL vmlinux 0x77090cf8 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x77351245 put_tty_driver -EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x775d7f42 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x776998c7 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x777c56ca dma_sync_wait -EXPORT_SYMBOL vmlinux 0x778429b2 clear_inode -EXPORT_SYMBOL vmlinux 0x77986167 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77a4d1c8 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77c158c3 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x77d3113d bio_init -EXPORT_SYMBOL vmlinux 0x77f712a5 skb_insert -EXPORT_SYMBOL vmlinux 0x781cc7ec of_device_alloc -EXPORT_SYMBOL vmlinux 0x78219a27 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x78260293 sock_no_bind -EXPORT_SYMBOL vmlinux 0x782b2150 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x7830b04f hvc_put_chars -EXPORT_SYMBOL vmlinux 0x7839ce55 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x784e7a05 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0x78575e6f seq_release -EXPORT_SYMBOL vmlinux 0x785d662c tcp_close -EXPORT_SYMBOL vmlinux 0x7867348c dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a9e905 _numa_mem_ -EXPORT_SYMBOL vmlinux 0x78cd04e4 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78df7786 nobh_writepage -EXPORT_SYMBOL vmlinux 0x78fb32e2 seq_printf -EXPORT_SYMBOL vmlinux 0x78fea9c0 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x7927cbb9 netif_skb_features -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x797497ad pcim_pin_device -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x799b747b dquot_quota_off -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79cd8f41 param_ops_bint -EXPORT_SYMBOL vmlinux 0x79e9aefd abx500_register_ops -EXPORT_SYMBOL vmlinux 0x7a071be1 console_stop -EXPORT_SYMBOL vmlinux 0x7a0e7aa9 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a4ba8ff dcb_setapp -EXPORT_SYMBOL vmlinux 0x7a4c72ea mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x7a653c46 inet6_bind -EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a83701a tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ac81e06 mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0x7acfff2c remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7adf7021 param_set_int -EXPORT_SYMBOL vmlinux 0x7aeb4f91 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x7aff32ed __frontswap_store -EXPORT_SYMBOL vmlinux 0x7b01f1e8 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x7b03655b ppp_channel_index -EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc -EXPORT_SYMBOL vmlinux 0x7b3c7b83 msi_bitmap_free_hwirqs -EXPORT_SYMBOL vmlinux 0x7b6a8d50 vio_get_attribute -EXPORT_SYMBOL vmlinux 0x7b85eed6 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x7b865188 km_new_mapping -EXPORT_SYMBOL vmlinux 0x7b9dda1c skb_append -EXPORT_SYMBOL vmlinux 0x7ba25d48 agp_free_memory -EXPORT_SYMBOL vmlinux 0x7bb5e798 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x7bb756cc neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x7bc37cf9 inode_init_always -EXPORT_SYMBOL vmlinux 0x7bd0c440 setattr_copy -EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x7c013cc9 vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c19acb3 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x7c1e4dd5 elevator_init -EXPORT_SYMBOL vmlinux 0x7c2960ba filemap_fdatawait -EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc -EXPORT_SYMBOL vmlinux 0x7c341123 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c598e32 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c6d0897 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x7c6d7fed register_sysctl -EXPORT_SYMBOL vmlinux 0x7c725640 read_dev_sector -EXPORT_SYMBOL vmlinux 0x7c7f0169 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7ccc3706 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7d0348b1 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x7d076229 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x7d09e071 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d157483 lro_flush_all -EXPORT_SYMBOL vmlinux 0x7d36abe9 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x7d3881dd blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x7d519e6a of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x7d54c7d7 pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x7d609e38 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d754d3e lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x7d786593 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x7d910983 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x7d9514c1 node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x7dc6f45d mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7df0bc83 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x7e23171e seq_read -EXPORT_SYMBOL vmlinux 0x7e246a96 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x7e2ce839 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x7e30bb37 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x7e6552be cfb_copyarea -EXPORT_SYMBOL vmlinux 0x7e665160 param_get_int -EXPORT_SYMBOL vmlinux 0x7e66d052 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x7e675957 pnv_cxl_release_hwirqs -EXPORT_SYMBOL vmlinux 0x7e964b19 __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x7ea17d15 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x7ea7c890 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x7eafe3ad pci_assign_resource -EXPORT_SYMBOL vmlinux 0x7eb68753 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f0ebccf skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x7f150c8b follow_down -EXPORT_SYMBOL vmlinux 0x7f21335d file_open_root -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x7f289578 nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x7f29b797 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x7f3bc680 tcp_prot -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f68ba78 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0x7f6cdc1c dcb_getapp -EXPORT_SYMBOL vmlinux 0x7f70dc6a set_page_dirty -EXPORT_SYMBOL vmlinux 0x7f7f3442 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x7f987c39 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x7f9e5070 xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0x7fbc11f4 param_set_ulong -EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x7fc208c5 param_ops_short -EXPORT_SYMBOL vmlinux 0x7fc891b2 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0x7fd05a83 dput -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x7ff12fcc jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x7ff5383e cpu_active_mask -EXPORT_SYMBOL vmlinux 0x80053785 dquot_file_open -EXPORT_SYMBOL vmlinux 0x8017c802 neigh_update -EXPORT_SYMBOL vmlinux 0x803fa3cc serio_open -EXPORT_SYMBOL vmlinux 0x8049f7ea jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0x805a1117 netdev_state_change -EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x806f884b pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x8071d1a8 cpu_all_bits -EXPORT_SYMBOL vmlinux 0x80742515 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0x80a20860 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x80a59f8d follow_down_one -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80ca840e splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x810b2035 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x8119fae4 kernel_bind -EXPORT_SYMBOL vmlinux 0x814a689c bprm_change_interp -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x81577b17 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x8163f496 key_link -EXPORT_SYMBOL vmlinux 0x817bde4c __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x81878055 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x81952072 blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x81ac8563 reservation_object_add_shared_fence -EXPORT_SYMBOL vmlinux 0x81adcba2 dquot_free_inode -EXPORT_SYMBOL vmlinux 0x81bbe0f0 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator -EXPORT_SYMBOL vmlinux 0x81c32afd lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x81c95ab0 scsi_register -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81dbf3a2 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x81f88965 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x822653ae __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback -EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x82703707 md_write_end -EXPORT_SYMBOL vmlinux 0x82712450 unload_nls -EXPORT_SYMBOL vmlinux 0x82792f6e param_ops_long -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82816b01 kill_anon_super -EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes -EXPORT_SYMBOL vmlinux 0x82a0b523 iget5_locked -EXPORT_SYMBOL vmlinux 0x82a22266 netdev_features_change -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82b610ed __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x82c04ef7 request_key -EXPORT_SYMBOL vmlinux 0x82d6b0d0 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x82d83b00 neigh_table_init -EXPORT_SYMBOL vmlinux 0x82de168d __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x82f15c0b mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x834ad2b4 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x8350e4d9 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x83605ea2 dev_err -EXPORT_SYMBOL vmlinux 0x837149ba install_exec_creds -EXPORT_SYMBOL vmlinux 0x838b64e7 blk_init_queue -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x839e3cc7 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83b0d96b pci_dev_get -EXPORT_SYMBOL vmlinux 0x83c08b1c tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83def6d7 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x840c407a jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x840f706d scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x8410d3a6 sock_create_kern -EXPORT_SYMBOL vmlinux 0x8423f8a4 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x844484b5 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x84454b0a register_gifconf -EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x845367c6 ihold -EXPORT_SYMBOL vmlinux 0x846f7298 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x847870d8 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x8495a94b eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x84bbca7f ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock -EXPORT_SYMBOL vmlinux 0x84e21fc9 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x84e8eec9 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x850ebee6 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x851283d4 arp_xmit -EXPORT_SYMBOL vmlinux 0x8518aa02 udp_seq_open -EXPORT_SYMBOL vmlinux 0x8533879c create_empty_buffers -EXPORT_SYMBOL vmlinux 0x853fda88 wireless_send_event -EXPORT_SYMBOL vmlinux 0x8554cb38 param_array_ops -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8570ee35 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x8572e96c dquot_resume -EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85c439be twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85fa7543 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x86013132 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x864036ed __inode_permission -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x866932f1 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x86700991 pipe_lock -EXPORT_SYMBOL vmlinux 0x86802624 posix_test_lock -EXPORT_SYMBOL vmlinux 0x8680c277 pci_dev_put -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x869476be unregister_md_personality -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86a4e3b0 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x86b3e619 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x86c11179 __destroy_inode -EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook -EXPORT_SYMBOL vmlinux 0x86df33a4 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x86f662ec __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x8702714e cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x8708e235 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x8711f9b4 register_netdevice -EXPORT_SYMBOL vmlinux 0x87167dbd udp_ioctl -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 -EXPORT_SYMBOL vmlinux 0x8746f7a9 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x8758a1fd devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x878740a9 bio_integrity_free -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x878fdfc7 put_io_context -EXPORT_SYMBOL vmlinux 0x87d27cd7 security_mmap_file -EXPORT_SYMBOL vmlinux 0x87e31dcf scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x87f0a81f of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x88090209 mount_single -EXPORT_SYMBOL vmlinux 0x882814d4 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x882db37f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x882edc23 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x883ca42f mutex_lock -EXPORT_SYMBOL vmlinux 0x885c898e bio_advance -EXPORT_SYMBOL vmlinux 0x88646722 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x88658cfb i2c_master_send -EXPORT_SYMBOL vmlinux 0x886854df netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x887480e9 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x888c0016 simple_release_fs -EXPORT_SYMBOL vmlinux 0x888c0474 input_set_capability -EXPORT_SYMBOL vmlinux 0x8898500a redraw_screen -EXPORT_SYMBOL vmlinux 0x8899a9fd inode_get_bytes -EXPORT_SYMBOL vmlinux 0x88b93411 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x88ece0a0 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x88ed12c2 open_check_o_direct -EXPORT_SYMBOL vmlinux 0x88fa0567 generic_make_request -EXPORT_SYMBOL vmlinux 0x8911ffa3 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat -EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy -EXPORT_SYMBOL vmlinux 0x892e4ccb wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x895108f3 proc_dostring -EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table -EXPORT_SYMBOL vmlinux 0x896f14f8 inet_ioctl -EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x898e09b0 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x89a420be blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x89a9153b i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x89aa5be3 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x89dac6ab bio_integrity_endio -EXPORT_SYMBOL vmlinux 0x89dd18e7 simple_unlink -EXPORT_SYMBOL vmlinux 0x89e6335d tty_throttle -EXPORT_SYMBOL vmlinux 0x89f04c6f seq_dentry -EXPORT_SYMBOL vmlinux 0x89f4ddfa touch_buffer -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a3993da tty_register_device -EXPORT_SYMBOL vmlinux 0x8a467ff9 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4edc6a get_phy_device -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a5f3030 kfree_skb -EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x8a746e92 audit_log_task_info -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a90df61 ibmebus_bus_type -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aacfb84 of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x8ae12b8a compat_ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x8af1a02b netdev_change_features -EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put -EXPORT_SYMBOL vmlinux 0x8b3132e4 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x8b31ca70 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b38dfc2 blk_init_queue_node -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b69f3c2 sock_rfree -EXPORT_SYMBOL vmlinux 0x8b762fea build_skb -EXPORT_SYMBOL vmlinux 0x8b7b26e5 skb_trim -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b834933 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x8b84318e tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x8b8c26f3 validate_sp -EXPORT_SYMBOL vmlinux 0x8b9ac5e1 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x8bbc7813 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x8be8e7ff devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr -EXPORT_SYMBOL vmlinux 0x8c0ee6cc pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 -EXPORT_SYMBOL vmlinux 0x8c1938b1 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x8c2dbe1e dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x8c465957 sock_no_listen -EXPORT_SYMBOL vmlinux 0x8c475708 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8c77d31e param_get_long -EXPORT_SYMBOL vmlinux 0x8c82f321 pci_release_regions -EXPORT_SYMBOL vmlinux 0x8c95eeb8 dquot_quota_on -EXPORT_SYMBOL vmlinux 0x8ca31d82 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x8ca730e4 give_up_console -EXPORT_SYMBOL vmlinux 0x8cb420c2 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8ccc4676 dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x8ce346ac nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x8cff6601 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x8cffb829 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 -EXPORT_SYMBOL vmlinux 0x8d0714c6 generic_setxattr -EXPORT_SYMBOL vmlinux 0x8d0ec0ed dma_find_channel -EXPORT_SYMBOL vmlinux 0x8d3445c6 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d67c2b9 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x8d701218 fb_get_mode -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d88e1b9 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x8d8b64bf pci_fixup_device -EXPORT_SYMBOL vmlinux 0x8d8bc0d3 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x8d944cbb copy_in_user -EXPORT_SYMBOL vmlinux 0x8d96402c serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x8dadcc6a gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x8db009a8 genlmsg_put -EXPORT_SYMBOL vmlinux 0x8db16810 d_drop -EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create -EXPORT_SYMBOL vmlinux 0x8df60921 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8dfefd9a __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x8e011fdb iov_iter_advance -EXPORT_SYMBOL vmlinux 0x8e0d528b pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x8e111b71 flush_signals -EXPORT_SYMBOL vmlinux 0x8e33bfd5 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x8e3b0611 blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x8e4e40ed neigh_connected_output -EXPORT_SYMBOL vmlinux 0x8e6d1aa3 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8ea568fa srp_rport_get -EXPORT_SYMBOL vmlinux 0x8eb069c2 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x8ebc9a2b inode_dio_wait -EXPORT_SYMBOL vmlinux 0x8ebfa364 dev_set_group -EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x8ec8e6db sock_no_poll -EXPORT_SYMBOL vmlinux 0x8ecb2d2e alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x8eda4fe7 done_path_create -EXPORT_SYMBOL vmlinux 0x8eeea2fc __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x8ef60bff tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0x8efcffea agp_unbind_memory -EXPORT_SYMBOL vmlinux 0x8f166593 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x8f280c28 lookup_bdev -EXPORT_SYMBOL vmlinux 0x8f321762 single_open_size -EXPORT_SYMBOL vmlinux 0x8f422bfe __nd_driver_register -EXPORT_SYMBOL vmlinux 0x8f4e9241 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x8f8a9ea3 skb_unlink -EXPORT_SYMBOL vmlinux 0x8f916d41 vfs_link -EXPORT_SYMBOL vmlinux 0x8f9fa9c2 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x8fad18f5 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x8fbee2ac neigh_parms_release -EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0x8fc4caf6 fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x8fc59f9b rtas_offline_cpus_mask -EXPORT_SYMBOL vmlinux 0x8ff65e44 cdev_del -EXPORT_SYMBOL vmlinux 0x900497e2 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0x900d2a1f msi_bitmap_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0x900e04d7 scsi_print_command -EXPORT_SYMBOL vmlinux 0x900fcd78 dquot_destroy -EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x905d942f neigh_direct_output -EXPORT_SYMBOL vmlinux 0x9067f123 agp_enable -EXPORT_SYMBOL vmlinux 0x907122b8 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x9080fd46 pci_release_region -EXPORT_SYMBOL vmlinux 0x908c1396 set_create_files_as -EXPORT_SYMBOL vmlinux 0x90b187d8 blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0x90c9501b ps2_handle_response -EXPORT_SYMBOL vmlinux 0x9103a9ce __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x9113d794 nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay -EXPORT_SYMBOL vmlinux 0x913f5c83 mmc_gpio_request_cd -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x914aefea __bforget -EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor -EXPORT_SYMBOL vmlinux 0x916e1e0a in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x916f9c8c pci_get_subsys -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x9177ba11 pci_pme_active -EXPORT_SYMBOL vmlinux 0x9178a4e5 dentry_update_name_case -EXPORT_SYMBOL vmlinux 0x918f8863 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf -EXPORT_SYMBOL vmlinux 0x91b0e6ef clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x91c14d05 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x91dad879 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x91eb6210 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x91ef5fe7 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x9205ebe5 blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x923cefe1 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x924d4b42 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x926368ee inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0x927507d9 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x9286d901 dev_open -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x9291de27 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92ac5398 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x92b17148 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x92c1f835 fb_class -EXPORT_SYMBOL vmlinux 0x92eb9044 freeze_bdev -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x9307c205 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x930c4a6e eth_change_mtu -EXPORT_SYMBOL vmlinux 0x930f3be5 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x9313ff73 powerpc_debugfs_root -EXPORT_SYMBOL vmlinux 0x93438705 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x9354fcde ibmebus_free_irq -EXPORT_SYMBOL vmlinux 0x9356d890 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93787b8b pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x938e13f3 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x939e2bb0 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x93a6d807 dst_init -EXPORT_SYMBOL vmlinux 0x93b0f960 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93ceafcf xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x93d5a85c max8998_read_reg -EXPORT_SYMBOL vmlinux 0x93d6ee30 of_match_node -EXPORT_SYMBOL vmlinux 0x93eb07b7 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x93f1885d seq_putc -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x93ff30c2 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x942f5508 acl_by_type -EXPORT_SYMBOL vmlinux 0x943cd8c0 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x94400f57 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x9473981e kernel_write -EXPORT_SYMBOL vmlinux 0x947c28c0 mmc_remove_host -EXPORT_SYMBOL vmlinux 0x948015be seq_puts -EXPORT_SYMBOL vmlinux 0x9483dedc param_set_long -EXPORT_SYMBOL vmlinux 0x9488f07a key_validate -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94ac6c2d vfs_mknod -EXPORT_SYMBOL vmlinux 0x94ca8222 of_phy_find_device -EXPORT_SYMBOL vmlinux 0x94ca8ef5 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x94cc8e1e inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x94ce5cf0 pnv_phb_to_cxl_mode -EXPORT_SYMBOL vmlinux 0x94ce7db4 dst_destroy -EXPORT_SYMBOL vmlinux 0x94d838ae mmc_erase -EXPORT_SYMBOL vmlinux 0x94ea7888 register_console -EXPORT_SYMBOL vmlinux 0x94ef7fd0 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x95120aa3 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x9514151a _mcount -EXPORT_SYMBOL vmlinux 0x9519ec27 vfs_read -EXPORT_SYMBOL vmlinux 0x9522a1c0 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb -EXPORT_SYMBOL vmlinux 0x952a2a83 set_blocksize -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x95649996 nf_log_packet -EXPORT_SYMBOL vmlinux 0x9566b899 iget_locked -EXPORT_SYMBOL vmlinux 0x9592e98f kvmppc_hv_find_lock_hpte -EXPORT_SYMBOL vmlinux 0x95b68e04 mac_find_mode -EXPORT_SYMBOL vmlinux 0x95ba5e04 vio_h_cop_sync -EXPORT_SYMBOL vmlinux 0x95bc9075 d_set_d_op -EXPORT_SYMBOL vmlinux 0x95bdb4c7 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x9632c936 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x964bde24 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x96559522 request_firmware -EXPORT_SYMBOL vmlinux 0x9664aa90 input_allocate_device -EXPORT_SYMBOL vmlinux 0x9667c48f scsi_device_put -EXPORT_SYMBOL vmlinux 0x96951873 d_rehash -EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96ba5662 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x96c2943d jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x96c2c718 thaw_bdev -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96e16fbe jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x96e9ab85 dev_addr_init -EXPORT_SYMBOL vmlinux 0x96f47ca9 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x96f5d7df scsi_host_set_state -EXPORT_SYMBOL vmlinux 0x96f7d38c mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x96fa1ae7 dcache_readdir -EXPORT_SYMBOL vmlinux 0x96fe5447 path_put -EXPORT_SYMBOL vmlinux 0x9709a45e dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0x970b2039 pnv_cxl_ioda_msi_setup -EXPORT_SYMBOL vmlinux 0x9717d830 da903x_query_status -EXPORT_SYMBOL vmlinux 0x97192af8 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x97468e72 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x9775f9e7 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x9783ad58 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97afba7b proc_douintvec -EXPORT_SYMBOL vmlinux 0x97ba1af0 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update -EXPORT_SYMBOL vmlinux 0x98251ad3 truncate_setsize -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x986c50d1 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x986c8cbc tcf_action_exec -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x986fbeba iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x987fc124 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x98833333 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x989c5eb8 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x98b52548 dev_emerg -EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98d5d7be vga_put -EXPORT_SYMBOL vmlinux 0x9907c839 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x99186027 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf -EXPORT_SYMBOL vmlinux 0x9922ec46 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x9949affc dev_mc_sync -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9953aedb kill_block_super -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x996a4262 nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0x99737214 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x997628f5 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x998cfca7 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a4f681 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99f45847 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x9a1d2b30 dev_driver_string -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1f1038 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a32f9c8 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x9a7029bb skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x9a8bfda0 pci_iounmap -EXPORT_SYMBOL vmlinux 0x9a9926bd blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x9ad51a5a abort_creds -EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach -EXPORT_SYMBOL vmlinux 0x9aef6ec0 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x9af6585d I_BDEV -EXPORT_SYMBOL vmlinux 0x9b16d4a7 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x9b1c2fa8 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x9b21cb5d rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b69581a filp_close -EXPORT_SYMBOL vmlinux 0x9b6e5bdf mmc_get_card -EXPORT_SYMBOL vmlinux 0x9b7e85a6 gen_pool_alloc -EXPORT_SYMBOL vmlinux 0x9b9a5457 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9babf1da inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x9bae4a8b pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x9bc61485 backlight_force_update -EXPORT_SYMBOL vmlinux 0x9bd2a802 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x9bd343d2 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9bf2c9a4 __register_binfmt -EXPORT_SYMBOL vmlinux 0x9bfa50d3 revert_creds -EXPORT_SYMBOL vmlinux 0x9bfdf749 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x9c0587d3 swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x9c0ba8f0 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x9c204f61 make_kuid -EXPORT_SYMBOL vmlinux 0x9c289976 inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0x9c2b2382 mutex_trylock -EXPORT_SYMBOL vmlinux 0x9c42bd5a jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c57ee96 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x9c749343 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x9c752fc6 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x9c83e6ec dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x9c88f702 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9ce09abf devm_gpiod_get -EXPORT_SYMBOL vmlinux 0x9cef4d1d pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x9cfe66cc pci_bus_get -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d10a43b vga_tryget -EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d430d81 unregister_netdev -EXPORT_SYMBOL vmlinux 0x9d460cc0 set_groups -EXPORT_SYMBOL vmlinux 0x9d5cd467 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x9d9dfc18 load_fp_state -EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x9db5a3d3 devm_ioport_map -EXPORT_SYMBOL vmlinux 0x9dbee34b vfs_getattr -EXPORT_SYMBOL vmlinux 0x9dc5d190 sock_i_uid -EXPORT_SYMBOL vmlinux 0x9de6a6fb md_finish_reshape -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e1d3496 tcp_poll -EXPORT_SYMBOL vmlinux 0x9e2c20e9 devm_gpio_request_one -EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x9e3a73a8 napi_disable -EXPORT_SYMBOL vmlinux 0x9e4155db read_cache_page -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e56f6ab blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x9e59f635 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x9e5d2aa0 nd_iostat_end -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e6db497 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x9e6edd21 proc_create_data -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e780776 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x9e8786f4 setup_new_exec -EXPORT_SYMBOL vmlinux 0x9e951368 netdev_emerg -EXPORT_SYMBOL vmlinux 0x9e9594c1 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea251b9 phy_detach -EXPORT_SYMBOL vmlinux 0x9ea8b545 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9ed75e0c page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x9eda2ec4 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x9eef006b fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0x9eef419f vm_map_ram -EXPORT_SYMBOL vmlinux 0x9f2b6b70 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x9f3dead3 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f69abbf jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x9f8a8f79 __vio_register_driver -EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x9f91cf54 input_register_device -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fd181cc poll_initwait -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa0059d4f save_mount_options -EXPORT_SYMBOL vmlinux 0xa01c85cc mmc_wait_for_app_cmd -EXPORT_SYMBOL vmlinux 0xa02267b0 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xa0339475 seq_pad -EXPORT_SYMBOL vmlinux 0xa0342a7b tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xa03dc8d8 __dax_fault -EXPORT_SYMBOL vmlinux 0xa040ddd9 textsearch_unregister -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa054d081 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa08f4322 user_path_create -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b19da2 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xa0b749fb pnv_cxl_get_irq_count -EXPORT_SYMBOL vmlinux 0xa0c14a97 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0ddb28a devm_gpiod_get_optional -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0f53309 dup_iter -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0xa1049e82 phy_device_remove -EXPORT_SYMBOL vmlinux 0xa105cc54 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xa108061c clocksource_unregister -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa13b9171 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0xa146ec00 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0xa153fd4e capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xa15a92be inetdev_by_index -EXPORT_SYMBOL vmlinux 0xa15b94dd arch_free_page -EXPORT_SYMBOL vmlinux 0xa170291d pci_find_capability -EXPORT_SYMBOL vmlinux 0xa180ac36 tty_check_change -EXPORT_SYMBOL vmlinux 0xa189030d nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0xa1b41bdb __napi_schedule -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1b86de1 unregister_filesystem -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xa1c9ac4d kobject_add -EXPORT_SYMBOL vmlinux 0xa1d0ac52 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1eca494 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0xa1fc820b secpath_dup -EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xa20649f0 filemap_map_pages -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa221b7d9 mem_section -EXPORT_SYMBOL vmlinux 0xa22acf80 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xa23ce695 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0xa24b80a2 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xa268f55c serio_close -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa28a649a vfs_iter_read -EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0xa2a3d5dd from_kuid -EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register -EXPORT_SYMBOL vmlinux 0xa2cee846 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xa2d38e3c gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xa2d6dbae del_random_ready_callback -EXPORT_SYMBOL vmlinux 0xa2d75a62 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xa2fb8590 __ip_dev_find -EXPORT_SYMBOL vmlinux 0xa2fd46e6 netdev_alert -EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait -EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0xa310542d scm_detach_fds -EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set -EXPORT_SYMBOL vmlinux 0xa32fafb0 blk_register_region -EXPORT_SYMBOL vmlinux 0xa344d5f8 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0xa3841cfa kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xa3976c93 phy_ethtool_gset -EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay -EXPORT_SYMBOL vmlinux 0xa39f8e84 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xa3a389cc skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xa3c95c89 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xa3e08015 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xa3e49cc9 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0xa3e52889 sock_wake_async -EXPORT_SYMBOL vmlinux 0xa3f7325a key_task_permission -EXPORT_SYMBOL vmlinux 0xa431c005 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0xa43584e5 tty_port_init -EXPORT_SYMBOL vmlinux 0xa4511467 crc16 -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa48468d5 qdisc_reset -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4b97c21 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xa4ce94b7 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa5154449 bdget_disk -EXPORT_SYMBOL vmlinux 0xa51cca08 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xa5222c3d pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa5527918 padata_free -EXPORT_SYMBOL vmlinux 0xa55abb9e netdev_err -EXPORT_SYMBOL vmlinux 0xa55c6830 register_sysctl_table -EXPORT_SYMBOL vmlinux 0xa567bb1b pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xa5916dd1 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa59f9fa1 md_flush_request -EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le -EXPORT_SYMBOL vmlinux 0xa5b5a3c3 tso_build_hdr -EXPORT_SYMBOL vmlinux 0xa5b946c4 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xa5e06711 agp_find_bridge -EXPORT_SYMBOL vmlinux 0xa5ebfddd unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xa5f19550 register_cdrom -EXPORT_SYMBOL vmlinux 0xa5f6f69f tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xa60bb982 bioset_integrity_free -EXPORT_SYMBOL vmlinux 0xa61358cf xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xa62df3d4 page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0xa631df8a cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xa63899e5 compat_nf_getsockopt -EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember -EXPORT_SYMBOL vmlinux 0xa63d8f18 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio -EXPORT_SYMBOL vmlinux 0xa6695839 bmap -EXPORT_SYMBOL vmlinux 0xa672f486 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa687ef7b tty_port_tty_set -EXPORT_SYMBOL vmlinux 0xa68f764a blk_complete_request -EXPORT_SYMBOL vmlinux 0xa6981ce7 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xa6d557c6 page_follow_link_light -EXPORT_SYMBOL vmlinux 0xa6f6e40e elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa700cac1 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xa7014988 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0xa707baba page_symlink -EXPORT_SYMBOL vmlinux 0xa70e2c55 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xa70f5a59 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock -EXPORT_SYMBOL vmlinux 0xa7266d41 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa73d601a kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xa73eda1c nf_log_set -EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get -EXPORT_SYMBOL vmlinux 0xa768f8bf of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0xa7a70683 __sock_create -EXPORT_SYMBOL vmlinux 0xa7c240e5 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xa7c38bbe compat_sock_get_timestamp -EXPORT_SYMBOL vmlinux 0xa7cf59b1 pci_set_power_state -EXPORT_SYMBOL vmlinux 0xa7e612f2 agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0xa7ef8374 blkdev_get -EXPORT_SYMBOL vmlinux 0xa7f6ef10 downgrade_write -EXPORT_SYMBOL vmlinux 0xa7fadab1 dev_get_iflink -EXPORT_SYMBOL vmlinux 0xa7fc1c4a ppp_unit_number -EXPORT_SYMBOL vmlinux 0xa8046361 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xa8221ce8 nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0xa82479a9 __pci_enable_wake -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa84d4aff __nlmsg_put -EXPORT_SYMBOL vmlinux 0xa86709fb fput -EXPORT_SYMBOL vmlinux 0xa86940da dev_uc_init -EXPORT_SYMBOL vmlinux 0xa86df9b9 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa89cb8d6 ns_capable -EXPORT_SYMBOL vmlinux 0xa8d8c8b3 vc_cons -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa909be9d tty_unlock -EXPORT_SYMBOL vmlinux 0xa9126005 xfrm_init_state -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start -EXPORT_SYMBOL vmlinux 0xa92af5de irq_set_chip -EXPORT_SYMBOL vmlinux 0xa9389c2d mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0xa93ba88e proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xa93d8dbb xfrm_input -EXPORT_SYMBOL vmlinux 0xa9589630 get_super_thawed -EXPORT_SYMBOL vmlinux 0xa96c749f inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xa972ff81 alloc_pages_current -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa98464be blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9caf741 pci_set_master -EXPORT_SYMBOL vmlinux 0xa9dffe83 nd_integrity_init -EXPORT_SYMBOL vmlinux 0xa9e8877e tcf_exts_change -EXPORT_SYMBOL vmlinux 0xaa228431 blk_end_request_all -EXPORT_SYMBOL vmlinux 0xaa2e52fd vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xaa36c855 try_module_get -EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock -EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xaa6eadc6 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaaa01a6c param_get_ullong -EXPORT_SYMBOL vmlinux 0xaab49539 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xaab8b312 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xaabc3cfd flow_cache_init -EXPORT_SYMBOL vmlinux 0xaabdf991 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xaabf8130 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xaac39a94 filemap_fault -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab0dc4d3 param_ops_uint -EXPORT_SYMBOL vmlinux 0xab0ec513 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xab19d750 __f_setown -EXPORT_SYMBOL vmlinux 0xab1c914c blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0xab5dbe57 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xab682692 km_is_alive -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab767de2 input_free_device -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab7d07c2 path_is_under -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabd22d6f vfs_readf -EXPORT_SYMBOL vmlinux 0xabe1c5dc sock_create_lite -EXPORT_SYMBOL vmlinux 0xabe1ddaf kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xabe2c72c serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xabe2ca14 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0xabe96408 inet6_getname -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac113bd9 cdev_alloc -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xac357736 compat_sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xac3b2a1e pneigh_enqueue -EXPORT_SYMBOL vmlinux 0xac520e82 nf_unregister_hook -EXPORT_SYMBOL vmlinux 0xac5c1891 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0xac69d118 tty_kref_put -EXPORT_SYMBOL vmlinux 0xac734b2a file_ns_capable -EXPORT_SYMBOL vmlinux 0xac7dee5b devm_get_gpiod_from_child -EXPORT_SYMBOL vmlinux 0xac9a3f64 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd11d2f dev_change_flags -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacf22a93 d_obtain_root -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad115f8e tcp_disconnect -EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xad1d8ae1 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xad2af0c8 gen_pool_free -EXPORT_SYMBOL vmlinux 0xad40d0d7 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xad452c27 proc_mkdir -EXPORT_SYMBOL vmlinux 0xad4c1b51 flex_array_alloc -EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock -EXPORT_SYMBOL vmlinux 0xad578d05 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad85a27b hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit -EXPORT_SYMBOL vmlinux 0xadb297e9 vme_slot_num -EXPORT_SYMBOL vmlinux 0xadb61c8c sock_wfree -EXPORT_SYMBOL vmlinux 0xadc93c84 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xadf391a3 pci_domain_nr -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae061d0b zpool_register_driver -EXPORT_SYMBOL vmlinux 0xae358236 fence_signal -EXPORT_SYMBOL vmlinux 0xae4a1bda csum_tcpudp_nofold -EXPORT_SYMBOL vmlinux 0xae4ba76b sk_send_sigurg -EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xae57b3ee pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0xaeb614bf agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0xaec31f9d search_binary_handler -EXPORT_SYMBOL vmlinux 0xaec35db4 flex_array_free -EXPORT_SYMBOL vmlinux 0xaee18894 inet_frag_kill -EXPORT_SYMBOL vmlinux 0xaee2f37d __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xaee33970 con_is_bound -EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xaf2219c3 security_path_chown -EXPORT_SYMBOL vmlinux 0xaf2c84aa vmap -EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait -EXPORT_SYMBOL vmlinux 0xaf34085f qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0xaf383451 i2c_del_driver -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf430769 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup -EXPORT_SYMBOL vmlinux 0xaf6e311a crypto_sha512_update -EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0xafa71936 prepare_binprm -EXPORT_SYMBOL vmlinux 0xafa96368 n_tty_compat_ioctl_helper -EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create -EXPORT_SYMBOL vmlinux 0xafb90ca1 generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0xafc09950 param_get_bool -EXPORT_SYMBOL vmlinux 0xafceddd3 uart_add_one_port -EXPORT_SYMBOL vmlinux 0xafecdb86 rfkill_alloc -EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc -EXPORT_SYMBOL vmlinux 0xb00c6188 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xb0352b2d ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove -EXPORT_SYMBOL vmlinux 0xb045b3c5 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xb05f73a9 compat_ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb067ba66 abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0b8f597 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0xb0baeb1e __serio_register_driver -EXPORT_SYMBOL vmlinux 0xb0c69daa vio_find_node -EXPORT_SYMBOL vmlinux 0xb0c85868 blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0xb0dd9ce4 blk_put_request -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e72611 of_scan_pci_bridge -EXPORT_SYMBOL vmlinux 0xb0e8f7dd remove_proc_entry -EXPORT_SYMBOL vmlinux 0xb0f4a8c8 igrab -EXPORT_SYMBOL vmlinux 0xb0f4e8b5 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xb10646a8 param_ops_ullong -EXPORT_SYMBOL vmlinux 0xb12214f2 alloc_disk -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb13698f3 inet_select_addr -EXPORT_SYMBOL vmlinux 0xb145a896 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset -EXPORT_SYMBOL vmlinux 0xb14d8c7b copy_from_iter -EXPORT_SYMBOL vmlinux 0xb14dcb7f pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb16243ca security_path_mknod -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb165ef45 __irq_regs -EXPORT_SYMBOL vmlinux 0xb16717f2 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xb185f8f5 i2c_release_client -EXPORT_SYMBOL vmlinux 0xb191ebf2 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0xb1a1214f truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xb1a929cd of_get_next_child -EXPORT_SYMBOL vmlinux 0xb1bd20f0 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xb1cc8a91 scsi_print_result -EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb26ea1af inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0xb286341b xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xb302d95e giveup_vsx -EXPORT_SYMBOL vmlinux 0xb3163fcb tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xb31fee70 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xb323be5c inet_getname -EXPORT_SYMBOL vmlinux 0xb3246322 __lock_buffer -EXPORT_SYMBOL vmlinux 0xb327aba8 dquot_drop -EXPORT_SYMBOL vmlinux 0xb330f774 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked -EXPORT_SYMBOL vmlinux 0xb33aa702 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xb359df99 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xb36c5a3a tso_build_data -EXPORT_SYMBOL vmlinux 0xb3a2bd82 blk_free_tags -EXPORT_SYMBOL vmlinux 0xb3b50bc2 blk_recount_segments -EXPORT_SYMBOL vmlinux 0xb3b6c9d5 tty_port_close_start -EXPORT_SYMBOL vmlinux 0xb3c2df6c devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d63fa2 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xb3d6a45a seq_open -EXPORT_SYMBOL vmlinux 0xb3db2de0 __dst_free -EXPORT_SYMBOL vmlinux 0xb3ecbd27 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xb3ed9522 locks_init_lock -EXPORT_SYMBOL vmlinux 0xb3f1c1c2 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb408a51b pci_request_regions -EXPORT_SYMBOL vmlinux 0xb40c00f7 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xb416dd9f pipe_unlock -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb44f52b0 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class -EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get -EXPORT_SYMBOL vmlinux 0xb48423fe jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xb486dba4 mmc_add_host -EXPORT_SYMBOL vmlinux 0xb48e82fa nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0xb48f5d72 unregister_key_type -EXPORT_SYMBOL vmlinux 0xb49c31cc pnv_cxl_release_hwirq_ranges -EXPORT_SYMBOL vmlinux 0xb4a68702 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xb4acce06 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0xb4adffb1 nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xb4b87d80 tcp_prequeue -EXPORT_SYMBOL vmlinux 0xb4da2f96 blk_rq_init -EXPORT_SYMBOL vmlinux 0xb4dd407c compat_nf_setsockopt -EXPORT_SYMBOL vmlinux 0xb4e198a5 netif_napi_add -EXPORT_SYMBOL vmlinux 0xb4eb6daa get_disk -EXPORT_SYMBOL vmlinux 0xb4f48770 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xb4fc289d inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xb4fdeaea elv_unregister_queue -EXPORT_SYMBOL vmlinux 0xb51d165b dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xb54da498 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xb55b01fc udp_proc_register -EXPORT_SYMBOL vmlinux 0xb55b8ac0 neigh_lookup -EXPORT_SYMBOL vmlinux 0xb561b72c rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xb56238a3 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb57870ff __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xb58c9469 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xb599a168 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xb59dec02 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0xb5a304b5 mdiobus_free -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free -EXPORT_SYMBOL vmlinux 0xb5ce617c max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xb5d17ed3 sock_update_memcg -EXPORT_SYMBOL vmlinux 0xb5dd142d skb_pull -EXPORT_SYMBOL vmlinux 0xb5ef92a1 param_set_charp -EXPORT_SYMBOL vmlinux 0xb61cf4cd agp_generic_enable -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb64b67bb pagecache_write_begin -EXPORT_SYMBOL vmlinux 0xb6688295 proto_register -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb679ef40 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xb67f1893 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0xb68bfa9d node_states -EXPORT_SYMBOL vmlinux 0xb690e2f8 simple_rename -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb694e6db pnv_cxl_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0xb6a055de mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6ae738f vme_irq_request -EXPORT_SYMBOL vmlinux 0xb6b8aabe set_binfmt -EXPORT_SYMBOL vmlinux 0xb6bd3606 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xb6edd8cf decrementer_clockevent -EXPORT_SYMBOL vmlinux 0xb70f58f7 do_splice_direct -EXPORT_SYMBOL vmlinux 0xb73c7d1a __pci_register_driver -EXPORT_SYMBOL vmlinux 0xb7473ccd bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb74b5f73 phy_disconnect -EXPORT_SYMBOL vmlinux 0xb74e4c74 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb7733666 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xb77932eb flex_array_clear -EXPORT_SYMBOL vmlinux 0xb77d8076 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xb7b0ff4d kobject_del -EXPORT_SYMBOL vmlinux 0xb7b9eb42 mmc_detect_change -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d246e7 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xb7d96b63 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xb7f39d33 padata_stop -EXPORT_SYMBOL vmlinux 0xb7fe733d generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xb8086917 kthread_bind -EXPORT_SYMBOL vmlinux 0xb81a5e9c pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xb82ca63d copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xb84594f2 d_tmpfile -EXPORT_SYMBOL vmlinux 0xb846f33f netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0xb85dbba9 do_splice_to -EXPORT_SYMBOL vmlinux 0xb870a788 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb887b971 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xb8a2bd55 kernel_getpeername -EXPORT_SYMBOL vmlinux 0xb8a3b586 poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0xb8a433c5 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0xb8bcc9e5 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0xb8ccbed0 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xb8e5d7f3 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xb9017627 dump_page -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb918e272 posix_unblock_lock -EXPORT_SYMBOL vmlinux 0xb9595af0 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0xb9a00896 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xb9a36955 unregister_qdisc -EXPORT_SYMBOL vmlinux 0xb9b07d5a unregister_nls -EXPORT_SYMBOL vmlinux 0xb9b4212d tcf_hash_insert -EXPORT_SYMBOL vmlinux 0xb9bda041 pci_bus_put -EXPORT_SYMBOL vmlinux 0xb9d9d77a __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xba2ffec2 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xba315725 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0xba39829f d_invalidate -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4f3d2b iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xba5e0d3f nf_log_trace -EXPORT_SYMBOL vmlinux 0xba66a662 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0xba7ed861 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0xba916f3c generic_listxattr -EXPORT_SYMBOL vmlinux 0xbabc8f78 alloc_file -EXPORT_SYMBOL vmlinux 0xbabdb85e tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xbac43934 vfs_fsync -EXPORT_SYMBOL vmlinux 0xbac81964 vga_con -EXPORT_SYMBOL vmlinux 0xbad19f47 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xbad4e082 blk_end_request -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb2059be agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0xbb25ac49 component_match_add -EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb37cf84 nf_getsockopt -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb574c9b mount_subtree -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb64fe68 mntget -EXPORT_SYMBOL vmlinux 0xbb73e9ff sock_efree -EXPORT_SYMBOL vmlinux 0xbb84a59f sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font -EXPORT_SYMBOL vmlinux 0xbb9a4565 generic_readlink -EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0xbbb6b412 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xbbe15d1a notify_change -EXPORT_SYMBOL vmlinux 0xbc0b1f05 lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0xbc26dbc6 _dev_info -EXPORT_SYMBOL vmlinux 0xbc27014e skb_checksum -EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0xbc3c7c07 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0xbc7d7e4e mmc_power_restore_host -EXPORT_SYMBOL vmlinux 0xbc83380e of_get_mac_address -EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags -EXPORT_SYMBOL vmlinux 0xbcaee94c xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xbcb52da5 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbce08170 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 -EXPORT_SYMBOL vmlinux 0xbcf934e1 security_task_getsecid -EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve -EXPORT_SYMBOL vmlinux 0xbd14ec4f md_integrity_register -EXPORT_SYMBOL vmlinux 0xbd256a2d scsi_is_target_device -EXPORT_SYMBOL vmlinux 0xbd25b038 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0xbd27306b elv_rb_find -EXPORT_SYMBOL vmlinux 0xbd2d3550 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xbd3f056e of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd54922d md_cluster_mod -EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on -EXPORT_SYMBOL vmlinux 0xbd872b41 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbda4edb5 fddi_change_mtu -EXPORT_SYMBOL vmlinux 0xbdb7c1fb fsnotify_put_group -EXPORT_SYMBOL vmlinux 0xbdf0ce05 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe268379 ps2_begin_command -EXPORT_SYMBOL vmlinux 0xbe2df2d4 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xbe4d58c7 phy_stop -EXPORT_SYMBOL vmlinux 0xbe8d20aa do_truncate -EXPORT_SYMBOL vmlinux 0xbeb57bf2 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xbec9e9cd mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xbeca523e genphy_setup_forced -EXPORT_SYMBOL vmlinux 0xbeca77b4 security_path_rmdir -EXPORT_SYMBOL vmlinux 0xbecf8bab mmc_can_reset -EXPORT_SYMBOL vmlinux 0xbee1ffef mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0xbee2c963 __init_rwsem -EXPORT_SYMBOL vmlinux 0xbee711c3 of_device_unregister -EXPORT_SYMBOL vmlinux 0xbeea0ec9 tty_port_hangup -EXPORT_SYMBOL vmlinux 0xbef29b4c blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbef5b527 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0xbefe9078 vga_client_register -EXPORT_SYMBOL vmlinux 0xbefecd12 skb_tx_error -EXPORT_SYMBOL vmlinux 0xbf1e0307 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0xbf26650b dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0xbf394121 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xbf3deb93 cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0xbf48a322 vfs_symlink -EXPORT_SYMBOL vmlinux 0xbf4afc86 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xbf6eddf5 lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf827170 dev_notice -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf8c67b9 mpage_writepage -EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfa6f436 phy_connect -EXPORT_SYMBOL vmlinux 0xbfabfe59 __debugger_iabr_match -EXPORT_SYMBOL vmlinux 0xbfb02967 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfd91da2 ptp_clock_event -EXPORT_SYMBOL vmlinux 0xbfec1925 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xbfed9615 nvm_put_blk -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets -EXPORT_SYMBOL vmlinux 0xc01b3177 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0xc01cf78f xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xc02e76dc d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0xc0495680 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xc06e3880 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07758ae nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write -EXPORT_SYMBOL vmlinux 0xc08c31f2 __getblk_gfp -EXPORT_SYMBOL vmlinux 0xc0967490 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0c5beef __skb_tx_hash -EXPORT_SYMBOL vmlinux 0xc0d1e489 vga_get -EXPORT_SYMBOL vmlinux 0xc0f400bd bio_integrity_advance -EXPORT_SYMBOL vmlinux 0xc1144653 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0xc1548d79 km_policy_notify -EXPORT_SYMBOL vmlinux 0xc1560229 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit -EXPORT_SYMBOL vmlinux 0xc1a76c34 ip_do_fragment -EXPORT_SYMBOL vmlinux 0xc1ac387f tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xc1b7effe node_data -EXPORT_SYMBOL vmlinux 0xc1bc23d6 vme_bus_type -EXPORT_SYMBOL vmlinux 0xc1c8797a tcp_connect -EXPORT_SYMBOL vmlinux 0xc1cb5bd9 of_mdio_parse_addr -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1e9042c ps2_init -EXPORT_SYMBOL vmlinux 0xc23e6c8a md_check_recovery -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc246109f file_remove_privs -EXPORT_SYMBOL vmlinux 0xc24eb3a1 inet_sendmsg -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a3d7f2 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xc2a4879d of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2a91a7f kmem_cache_free -EXPORT_SYMBOL vmlinux 0xc2bad2d1 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xc2bb354b md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xc2bdab79 rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0xc2c8e54b __alloc_skb -EXPORT_SYMBOL vmlinux 0xc2d54ba0 param_ops_ushort -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc30cdb1c netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc33d443f i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xc3497612 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0xc35b84fa page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xc35d0d81 nvm_submit_io -EXPORT_SYMBOL vmlinux 0xc38f2885 __frontswap_load -EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0xc4071594 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xc416df05 of_mm_gpiochip_remove -EXPORT_SYMBOL vmlinux 0xc4511860 bio_map_kern -EXPORT_SYMBOL vmlinux 0xc4597951 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xc47ed660 pagevec_lookup -EXPORT_SYMBOL vmlinux 0xc4810527 input_unregister_device -EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc4bb8288 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xc4c25cc1 param_get_string -EXPORT_SYMBOL vmlinux 0xc4edf715 md_update_sb -EXPORT_SYMBOL vmlinux 0xc4f28e3b insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xc4f7e99b devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xc5301d39 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0xc530a8f9 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc555b188 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5d7b908 finish_no_open -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5e4e3e0 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc601c2f9 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xc60846d1 mmc_request_done -EXPORT_SYMBOL vmlinux 0xc61f98e5 kmem_cache_create -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc64bc8be block_write_full_page -EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xc6774da5 cpu_online_mask -EXPORT_SYMBOL vmlinux 0xc68b4a9d dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0xc6931f19 lock_sock_fast -EXPORT_SYMBOL vmlinux 0xc6a1b484 napi_complete_done -EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xc6b61fe0 pci_request_region -EXPORT_SYMBOL vmlinux 0xc6c3f43b nobh_write_end -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d3fb9f nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xc70ba168 simple_rmdir -EXPORT_SYMBOL vmlinux 0xc71f249e of_root -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc7299739 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0xc732e9e9 skb_copy_expand -EXPORT_SYMBOL vmlinux 0xc73644e4 audit_log -EXPORT_SYMBOL vmlinux 0xc7497fd0 netif_rx -EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xc766a139 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc78459f2 blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc791e1be generic_file_mmap -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7c0e27d init_net -EXPORT_SYMBOL vmlinux 0xc7d2861c pci_find_bus -EXPORT_SYMBOL vmlinux 0xc7e8855b param_ops_string -EXPORT_SYMBOL vmlinux 0xc7f39b15 irq_stat -EXPORT_SYMBOL vmlinux 0xc7fff4f1 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xc810401d lock_fb_info -EXPORT_SYMBOL vmlinux 0xc81197e4 key_unlink -EXPORT_SYMBOL vmlinux 0xc82d12d3 phy_write_mmd_indirect -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xc846fe1a xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84ef3ec mdio_bus_type -EXPORT_SYMBOL vmlinux 0xc85540fc pnv_pci_get_phb_node -EXPORT_SYMBOL vmlinux 0xc855d3e7 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each -EXPORT_SYMBOL vmlinux 0xc85fa277 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xc8675cca __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc876252a phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0xc885e650 swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xc8884a62 module_layout -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8c47573 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0xc8f4bc01 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xc8f93310 md_write_start -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc9390dba xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc9669a58 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run -EXPORT_SYMBOL vmlinux 0xc9875390 netif_carrier_off -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9d58508 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0xc9edade9 ppc_md -EXPORT_SYMBOL vmlinux 0xc9ee700e __seq_open_private -EXPORT_SYMBOL vmlinux 0xca041b63 unregister_quota_format -EXPORT_SYMBOL vmlinux 0xca0642f4 phy_register_fixup -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca2084fc filp_open -EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get -EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state -EXPORT_SYMBOL vmlinux 0xca3deb60 pci_select_bars -EXPORT_SYMBOL vmlinux 0xca41f0cc mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0xca544316 __neigh_create -EXPORT_SYMBOL vmlinux 0xca565a68 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent -EXPORT_SYMBOL vmlinux 0xca7487a9 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order -EXPORT_SYMBOL vmlinux 0xca8de1c3 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcaae6763 xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0xcab1616c iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xcab49670 generic_file_open -EXPORT_SYMBOL vmlinux 0xcaca1b50 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty -EXPORT_SYMBOL vmlinux 0xcaf00342 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xcaf12cb8 __serio_register_port -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcafbb09e d_set_fallthru -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb0dda9f devm_release_resource -EXPORT_SYMBOL vmlinux 0xcb2582ee adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0xcb447924 srp_start_tl_fail_timers -EXPORT_SYMBOL vmlinux 0xcb520879 iterate_dir -EXPORT_SYMBOL vmlinux 0xcb58208e security_inode_permission -EXPORT_SYMBOL vmlinux 0xcb61e18f load_nls -EXPORT_SYMBOL vmlinux 0xcb6c926d compat_sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xcb82a6dc get_acl -EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc1fbf2 skb_copy_bits -EXPORT_SYMBOL vmlinux 0xcbc3b94e eeh_check_failure -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbcd6d4b sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xcbe1441c lock_sock_nested -EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xcc17da5a scsi_host_put -EXPORT_SYMBOL vmlinux 0xcc1b127b pps_unregister_source -EXPORT_SYMBOL vmlinux 0xcc215573 flex_array_shrink -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc56c4c1 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xcc6b73da giveup_fpu -EXPORT_SYMBOL vmlinux 0xcc7c5798 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xcc9a2148 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0xccbbd1a6 set_bh_page -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccc3a3bc blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xcccd6cdd PDE_DATA -EXPORT_SYMBOL vmlinux 0xccf558b3 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0xccff628b i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xcd06d3fc sock_kfree_s -EXPORT_SYMBOL vmlinux 0xcd093efc dma_async_device_register -EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd447766 mount_ns -EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xcd665a61 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xcd725419 of_get_next_parent -EXPORT_SYMBOL vmlinux 0xcd7d1e29 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xcd8c145d page_cache_next_hole -EXPORT_SYMBOL vmlinux 0xcd8d34cd swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0xcd945583 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0xcda113d2 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0xcdc0bb7f agp_backend_acquire -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc85477 tcf_register_action -EXPORT_SYMBOL vmlinux 0xcded6170 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0xcdf4f735 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xcdf795e3 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xcdfb9607 bio_unmap_user -EXPORT_SYMBOL vmlinux 0xce09ddf1 noop_fsync -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce3b3f09 profile_pc -EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce510410 blk_stop_queue -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce5b0203 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xce5f271d nvm_erase_blk -EXPORT_SYMBOL vmlinux 0xce72af7a xfrm_register_mode -EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift -EXPORT_SYMBOL vmlinux 0xce93057d ata_port_printk -EXPORT_SYMBOL vmlinux 0xce9d41ce mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xcea3ce9c send_sig -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free -EXPORT_SYMBOL vmlinux 0xcec779a8 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0xced777cb proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0xced9154f __sb_end_write -EXPORT_SYMBOL vmlinux 0xcef3a4c7 make_kprojid -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf028f21 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xcf0a5ee6 __page_symlink -EXPORT_SYMBOL vmlinux 0xcf1877a1 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xcf2578da skb_checksum_help -EXPORT_SYMBOL vmlinux 0xcf2e3c0b up_read -EXPORT_SYMBOL vmlinux 0xcf4fa959 __devm_request_region -EXPORT_SYMBOL vmlinux 0xcf74631a generic_file_llseek -EXPORT_SYMBOL vmlinux 0xcff31727 bdgrab -EXPORT_SYMBOL vmlinux 0xd00d4f1f uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xd024d87e pcim_iounmap -EXPORT_SYMBOL vmlinux 0xd0306451 mmc_of_parse -EXPORT_SYMBOL vmlinux 0xd058e6c1 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd08607f8 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a2e740 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0b6659d input_unregister_handler -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd1017f13 netpoll_setup -EXPORT_SYMBOL vmlinux 0xd1034c93 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0xd108516c simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xd116670f security_path_chmod -EXPORT_SYMBOL vmlinux 0xd1207504 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xd1217b2a twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf -EXPORT_SYMBOL vmlinux 0xd15faba4 of_node_get -EXPORT_SYMBOL vmlinux 0xd167e062 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0xd17a011a qdisc_list_add -EXPORT_SYMBOL vmlinux 0xd180ae69 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd1983311 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0xd19c5529 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xd1bf55b4 __blk_end_request -EXPORT_SYMBOL vmlinux 0xd1c2723c agp_create_memory -EXPORT_SYMBOL vmlinux 0xd1c5ca53 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xd1c6ab69 pps_event -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1dde43b follow_pfn -EXPORT_SYMBOL vmlinux 0xd20336f6 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xd20c3937 flex_array_get -EXPORT_SYMBOL vmlinux 0xd215e9af qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xd2206b7a agp_collect_device_status -EXPORT_SYMBOL vmlinux 0xd22c36a4 pci_read_vpd -EXPORT_SYMBOL vmlinux 0xd2441e81 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd26cc088 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd2814e8e netif_rx_ni -EXPORT_SYMBOL vmlinux 0xd2a75716 pcibus_to_node -EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc -EXPORT_SYMBOL vmlinux 0xd2b96522 agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0xd2c5b7ff dst_discard_out -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2ff5b59 d_genocide -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd337f3d1 blk_delay_queue -EXPORT_SYMBOL vmlinux 0xd346a7de skb_find_text -EXPORT_SYMBOL vmlinux 0xd346fc61 d_find_any_alias -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd36ea649 skb_make_writable -EXPORT_SYMBOL vmlinux 0xd3802868 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0xd3b4fd84 set_wb_congested -EXPORT_SYMBOL vmlinux 0xd3bad42b netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3d3e9ba arp_send -EXPORT_SYMBOL vmlinux 0xd3e0197a scsi_scan_target -EXPORT_SYMBOL vmlinux 0xd3e22112 __breadahead -EXPORT_SYMBOL vmlinux 0xd3fbd856 get_cached_acl -EXPORT_SYMBOL vmlinux 0xd41c9cd7 dev_disable_lro -EXPORT_SYMBOL vmlinux 0xd41db8f8 scsi_remove_target -EXPORT_SYMBOL vmlinux 0xd42080da nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0xd44002de dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd4828546 nf_register_hook -EXPORT_SYMBOL vmlinux 0xd48316f9 __register_nls -EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed -EXPORT_SYMBOL vmlinux 0xd49792af __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xd4a89e15 vm_mmap -EXPORT_SYMBOL vmlinux 0xd4aedbb7 sk_stop_timer -EXPORT_SYMBOL vmlinux 0xd4b37c3c phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xd4d342d4 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xd4ee8201 elv_rb_add -EXPORT_SYMBOL vmlinux 0xd4f114d2 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xd525523f misc_register -EXPORT_SYMBOL vmlinux 0xd52e7dc5 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xd53a07e2 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xd54a9134 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd5523e58 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0xd5565685 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xd56cc13a noop_llseek -EXPORT_SYMBOL vmlinux 0xd57f29e2 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0xd57f4ad3 __kfree_skb -EXPORT_SYMBOL vmlinux 0xd58a6bd0 mmc_register_driver -EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xd594f82e mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0xd59d59e1 vme_irq_free -EXPORT_SYMBOL vmlinux 0xd5c4eb56 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0xd5e9b40b devm_gpiod_get_index_optional -EXPORT_SYMBOL vmlinux 0xd607ed21 compat_sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd6259738 sk_mc_loop -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd62f6f13 ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xd6395537 mmc_interrupt_hpi -EXPORT_SYMBOL vmlinux 0xd63d5fba netdev_info -EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode -EXPORT_SYMBOL vmlinux 0xd662ff27 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xd6689036 vme_master_request -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd6b45512 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xd6b566f0 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0xd6d28d1e md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 -EXPORT_SYMBOL vmlinux 0xd716e5d0 registered_fb -EXPORT_SYMBOL vmlinux 0xd7233aa9 d_make_root -EXPORT_SYMBOL vmlinux 0xd72d4504 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xd744ff82 cdev_init -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot -EXPORT_SYMBOL vmlinux 0xd768439a iterate_fd -EXPORT_SYMBOL vmlinux 0xd77758ec __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xd7779c25 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 -EXPORT_SYMBOL vmlinux 0xd796570f netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0xd79aeff6 dcache_dir_close -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7ee7572 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xd80e4b15 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xd8384fc9 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0xd83fb5df inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xd84c6da7 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xd8576aef rtas -EXPORT_SYMBOL vmlinux 0xd86bb2af vfs_create -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a527f8 set_anon_super -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8af88aa pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xd8c48a07 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xd8cd8460 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e00f99 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xd8e2e695 softnet_data -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8e64dc5 migrate_page_copy -EXPORT_SYMBOL vmlinux 0xd8eeebbc ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xd8fadbd6 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xd8ff9b90 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xd902e322 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0xd90cee4d scmd_printk -EXPORT_SYMBOL vmlinux 0xd9270e7b is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0xd9710df5 led_update_brightness -EXPORT_SYMBOL vmlinux 0xd97bdba8 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xd97d8fad security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9a7af0b seq_write -EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xd9d8f57d posix_lock_file -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9ffd145 dump_emit -EXPORT_SYMBOL vmlinux 0xda32cbf9 dma_set_mask -EXPORT_SYMBOL vmlinux 0xda32d438 bio_clone_fast -EXPORT_SYMBOL vmlinux 0xda35f640 genphy_read_status -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda686b49 param_set_ushort -EXPORT_SYMBOL vmlinux 0xda6aede6 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xda6c96b2 nf_register_hooks -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda919bb4 cad_pid -EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xdaa257c8 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xdaaed08d skb_store_bits -EXPORT_SYMBOL vmlinux 0xdabc1ea8 fsl_lbc_find -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac545b9 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xdad34eb4 sk_alloc -EXPORT_SYMBOL vmlinux 0xdad8e27e ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0xdae8edf7 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell -EXPORT_SYMBOL vmlinux 0xdb00fda6 phy_driver_register -EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find -EXPORT_SYMBOL vmlinux 0xdb1ba1d8 mmc_read_bkops_status -EXPORT_SYMBOL vmlinux 0xdb2421b9 dev_uc_flush -EXPORT_SYMBOL vmlinux 0xdb2ccde2 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0xdb48767d override_creds -EXPORT_SYMBOL vmlinux 0xdb61c864 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb745530 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb854a20 bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xdb8d083f blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0xdb9bca93 netdev_crit -EXPORT_SYMBOL vmlinux 0xdb9e803c lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xdbbdf0bd security_path_truncate -EXPORT_SYMBOL vmlinux 0xdbd0531c buffer_migrate_page -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc11bbc7 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xdc13e1d4 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc40e221 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xdc423095 of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xdc461030 read_code -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc60ed4a __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xdc63d87f fb_prepare_logo -EXPORT_SYMBOL vmlinux 0xdc7c7d5b disk_stack_limits -EXPORT_SYMBOL vmlinux 0xdc818fb4 block_truncate_page -EXPORT_SYMBOL vmlinux 0xdc93e2e0 dev_mc_init -EXPORT_SYMBOL vmlinux 0xdc9498dd down -EXPORT_SYMBOL vmlinux 0xdc95796f __mdiobus_register -EXPORT_SYMBOL vmlinux 0xdca8a3d4 vme_slave_request -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdcbbeb42 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xdcc063f4 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0xdcc24307 vio_enable_interrupts -EXPORT_SYMBOL vmlinux 0xdcff73b8 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0xdd02d841 of_get_cpu_node -EXPORT_SYMBOL vmlinux 0xdd41ce52 from_kuid_munged -EXPORT_SYMBOL vmlinux 0xdd42442b dget_parent -EXPORT_SYMBOL vmlinux 0xdd45f163 elevator_exit -EXPORT_SYMBOL vmlinux 0xdd4a28a2 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xdd4f6a82 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xdd5cee48 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd7e9e43 eth_type_trans -EXPORT_SYMBOL vmlinux 0xdd8a6213 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer -EXPORT_SYMBOL vmlinux 0xdd955144 __debugger -EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xddc2f48c agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0xddcc2ae9 __kernel_write -EXPORT_SYMBOL vmlinux 0xddf83891 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xde1bf029 mmc_put_card -EXPORT_SYMBOL vmlinux 0xde1d9442 pci_pme_capable -EXPORT_SYMBOL vmlinux 0xde24a711 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xde294574 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xde2d7cb4 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0xde3add5b mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0xde465cb2 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xde5bd08f mdiobus_unregister -EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0xde783883 pSeries_disable_reloc_on_exc -EXPORT_SYMBOL vmlinux 0xde7cd5d6 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xde7fb11e scsi_print_sense -EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xded15995 simple_open -EXPORT_SYMBOL vmlinux 0xded85d17 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xdee5b40c __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0xdee994f5 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xdf094eae tty_port_destroy -EXPORT_SYMBOL vmlinux 0xdf179aa7 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xdf1e4549 nobh_write_begin -EXPORT_SYMBOL vmlinux 0xdf247b9c mmc_release_host -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf426210 devm_gpio_request -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf6cedb6 down_write_trylock -EXPORT_SYMBOL vmlinux 0xdf7f22f3 param_ops_bool -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf9ec315 of_gpio_simple_xlate -EXPORT_SYMBOL vmlinux 0xdfbd5060 __lock_page -EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init -EXPORT_SYMBOL vmlinux 0xdfd10aa9 unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0xdfef2e6f inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xdff390c2 ibmebus_register_driver -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xe0268239 lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe0769517 device_get_mac_address -EXPORT_SYMBOL vmlinux 0xe080f847 iput -EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe090ab7a seq_release_private -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0c2f53b dev_alloc_name -EXPORT_SYMBOL vmlinux 0xe0ce71b1 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xe0d50354 bio_reset -EXPORT_SYMBOL vmlinux 0xe10da8ca blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe12c3ce2 of_phy_connect -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe13880a9 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe17d2317 drop_nlink -EXPORT_SYMBOL vmlinux 0xe1861ebf posix_acl_valid -EXPORT_SYMBOL vmlinux 0xe18d9df5 of_get_pci_address -EXPORT_SYMBOL vmlinux 0xe18efb23 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xe19195a8 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xe198a347 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0xe1a2e274 d_alloc_name -EXPORT_SYMBOL vmlinux 0xe1bdb8a7 napi_gro_frags -EXPORT_SYMBOL vmlinux 0xe1c8bd2b twl6040_reg_read -EXPORT_SYMBOL vmlinux 0xe1cd3f0a of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0xe220ceb8 __debugger_sstep -EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe2510319 inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0xe258baf5 unlock_new_inode -EXPORT_SYMBOL vmlinux 0xe28bc593 md_done_sync -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2aa678d init_buffer -EXPORT_SYMBOL vmlinux 0xe2b541f1 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock -EXPORT_SYMBOL vmlinux 0xe2d2603c netlink_capable -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2f63760 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xe2f99fbe genphy_suspend -EXPORT_SYMBOL vmlinux 0xe314e8fb cpu_core_map -EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0xe3240cc5 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xe32f86dd xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xe3418156 scm_fp_dup -EXPORT_SYMBOL vmlinux 0xe34fa6b4 kern_unmount -EXPORT_SYMBOL vmlinux 0xe375dae3 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xe39264c8 phy_device_free -EXPORT_SYMBOL vmlinux 0xe3a52545 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xe3a53f4c sort -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3c73744 dentry_open -EXPORT_SYMBOL vmlinux 0xe3c96d1b sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xe3e8689a consume_skb -EXPORT_SYMBOL vmlinux 0xe3ee5688 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xe3f42183 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xe4262098 audit_log_start -EXPORT_SYMBOL vmlinux 0xe43affb5 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xe46db607 neigh_event_ns -EXPORT_SYMBOL vmlinux 0xe47147b1 scsi_host_get -EXPORT_SYMBOL vmlinux 0xe47b0ddc netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0xe47d6d22 lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0xe482bd7e nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe4b0837c ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xe4c312a1 scsi_add_device -EXPORT_SYMBOL vmlinux 0xe4dc4acc file_update_time -EXPORT_SYMBOL vmlinux 0xe4dd9eb7 vio_disable_interrupts -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xe4fbd267 tty_port_put -EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe5020f31 lease_modify -EXPORT_SYMBOL vmlinux 0xe51b9fe9 cdrom_release -EXPORT_SYMBOL vmlinux 0xe5239f75 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe536d7cf to_ndd -EXPORT_SYMBOL vmlinux 0xe541ed3a abx500_remove_ops -EXPORT_SYMBOL vmlinux 0xe55c7501 ilookup5 -EXPORT_SYMBOL vmlinux 0xe55da1bf pci_enable_device -EXPORT_SYMBOL vmlinux 0xe5780fb2 ata_dev_printk -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe57c1d74 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xe583384e blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe58c3f8e i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0xe58d6339 write_one_page -EXPORT_SYMBOL vmlinux 0xe5a52726 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5d05779 get_empty_filp -EXPORT_SYMBOL vmlinux 0xe5d3abd1 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xe5e6b9a3 bh_submit_read -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5ff5c74 new_inode -EXPORT_SYMBOL vmlinux 0xe6144ef0 sock_setsockopt -EXPORT_SYMBOL vmlinux 0xe616e9a7 pci_bus_type -EXPORT_SYMBOL vmlinux 0xe653a07c genphy_config_aneg -EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0xe68208b2 touch_atime -EXPORT_SYMBOL vmlinux 0xe684e9c3 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xe68ef5b5 kobject_init -EXPORT_SYMBOL vmlinux 0xe697bf4d bd_set_size -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe699ef0a devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe6a79c4b fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0xe6e0c0ac tty_write_room -EXPORT_SYMBOL vmlinux 0xe6f5f5a7 rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe715539e netdev_warn -EXPORT_SYMBOL vmlinux 0xe71ec713 i2c_master_recv -EXPORT_SYMBOL vmlinux 0xe73e6538 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xe74757be __break_lease -EXPORT_SYMBOL vmlinux 0xe748a6c2 alloc_fcdev -EXPORT_SYMBOL vmlinux 0xe74b0fb9 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xe7598d9f mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe7870aad d_add_ci -EXPORT_SYMBOL vmlinux 0xe795938e tso_count_descs -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7bc906d sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7d68a3f xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0xe7e073fe dev_add_pack -EXPORT_SYMBOL vmlinux 0xe7e10031 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xe7eee8d0 eth_header_parse -EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xe84ac6f0 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xe862b455 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xe8650492 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss -EXPORT_SYMBOL vmlinux 0xe87c2cc7 md_cluster_ops -EXPORT_SYMBOL vmlinux 0xe89df891 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8b1e2f3 sock_edemux -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8c438f3 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0xe8c5d983 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xe8d95647 proc_symlink -EXPORT_SYMBOL vmlinux 0xe8e79c43 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xe8e994f5 nd_device_unregister -EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 -EXPORT_SYMBOL vmlinux 0xe90a076c fb_set_var -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe92b9e01 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next -EXPORT_SYMBOL vmlinux 0xe949a73b pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe960dc96 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xe9632d0d xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xe971876a on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0xe972fae8 locks_free_lock -EXPORT_SYMBOL vmlinux 0xe9775f8e tty_set_operations -EXPORT_SYMBOL vmlinux 0xe97a9fe3 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xe9a0a31d tty_devnum -EXPORT_SYMBOL vmlinux 0xe9adb1d0 vc_resize -EXPORT_SYMBOL vmlinux 0xe9aff606 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0xe9b0348c pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xe9d37cd1 scsi_register_driver -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea049ad2 register_netdev -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea090164 loop_register_transfer -EXPORT_SYMBOL vmlinux 0xea17978c kernel_sendpage -EXPORT_SYMBOL vmlinux 0xea3c921f vme_register_driver -EXPORT_SYMBOL vmlinux 0xea3ec1f2 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xea5af08b fixed_phy_update_state -EXPORT_SYMBOL vmlinux 0xea5cbfcf scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xea736960 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit -EXPORT_SYMBOL vmlinux 0xeac1e209 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xeaf1149b bio_put -EXPORT_SYMBOL vmlinux 0xeb011234 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xeb03ca2f udp_sendmsg -EXPORT_SYMBOL vmlinux 0xeb09ab5d kobject_put -EXPORT_SYMBOL vmlinux 0xeb0d05e6 flow_cache_fini -EXPORT_SYMBOL vmlinux 0xeb31d2d5 vio_register_device_node -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb4910e0 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xeb764423 should_remove_suid -EXPORT_SYMBOL vmlinux 0xeb80ac80 loop_backing_file -EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count -EXPORT_SYMBOL vmlinux 0xeb9b6556 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present -EXPORT_SYMBOL vmlinux 0xeba6b683 vlan_vid_del -EXPORT_SYMBOL vmlinux 0xebcab3a6 ppc_pci_io -EXPORT_SYMBOL vmlinux 0xebd79aea pneigh_lookup -EXPORT_SYMBOL vmlinux 0xebdf5a94 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xec0d7653 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0xec387452 cfb_imageblit -EXPORT_SYMBOL vmlinux 0xec41b979 kill_pid -EXPORT_SYMBOL vmlinux 0xec48be9b max8998_write_reg -EXPORT_SYMBOL vmlinux 0xec7c4218 skb_free_datagram -EXPORT_SYMBOL vmlinux 0xec9fb7e8 alloc_disk_node -EXPORT_SYMBOL vmlinux 0xeca3a19f __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0xeca68ecf sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xecb4e45a ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 -EXPORT_SYMBOL vmlinux 0xecc42bc2 mach_powernv -EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xecdb7a95 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0xece10e98 bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xece2b793 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecf1ec53 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xed130e8d from_kgid -EXPORT_SYMBOL vmlinux 0xed3dceb4 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed61d6e4 inet_shutdown -EXPORT_SYMBOL vmlinux 0xed788f19 tcp_check_req -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xeda2a217 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedbc4ab6 scsi_target_resume -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table -EXPORT_SYMBOL vmlinux 0xedd0dc16 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xedd65a45 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0xededa2ed make_bad_inode -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xedf9c43b scsi_remove_device -EXPORT_SYMBOL vmlinux 0xee04e838 elv_rb_del -EXPORT_SYMBOL vmlinux 0xee0d3e99 phy_device_create -EXPORT_SYMBOL vmlinux 0xee18a3c9 elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0xee1f9702 led_set_brightness -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee330420 param_set_invbool -EXPORT_SYMBOL vmlinux 0xee5461c6 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xee56e7b9 dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0xee6453fe devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee96b6d4 inode_needs_sync -EXPORT_SYMBOL vmlinux 0xee9c5348 inet_sendpage -EXPORT_SYMBOL vmlinux 0xeea2f9e3 bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xeea47625 set_device_ro -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeaf4a34 handle_edge_irq -EXPORT_SYMBOL vmlinux 0xeec589be n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xef1207f9 generic_file_fsync -EXPORT_SYMBOL vmlinux 0xef233dee scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0xef2ef0b8 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xef321e3a fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xef36fc7c param_set_short -EXPORT_SYMBOL vmlinux 0xef467a7c up_write -EXPORT_SYMBOL vmlinux 0xef5998d7 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xef6923ba kfree_put_link -EXPORT_SYMBOL vmlinux 0xef6eee3f con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xef9aecca tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xefb35ed5 bio_phys_segments -EXPORT_SYMBOL vmlinux 0xefb957c3 update_devfreq -EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xefd821f6 elevator_change -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range -EXPORT_SYMBOL vmlinux 0xefe415d9 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xefea1217 ilookup -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf0275469 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xf055cd1a generic_read_dir -EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09b7fdf get_user_pages_locked -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xf0abb742 param_get_short -EXPORT_SYMBOL vmlinux 0xf0c5d266 scsi_unregister -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf109bc82 i8042_remove_filter -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible -EXPORT_SYMBOL vmlinux 0xf12d3cdd pid_task -EXPORT_SYMBOL vmlinux 0xf135c65a xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xf1372c1e try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xf13f65cd mount_nodev -EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0xf14e0140 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xf1687219 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xf183189b __ioremap_at -EXPORT_SYMBOL vmlinux 0xf1845466 devm_gpiod_put_array -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19c153a seq_escape -EXPORT_SYMBOL vmlinux 0xf1bdb50e mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xf1c8f0e7 param_get_byte -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1dd55fd dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xf1de1570 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1eecc6d __elv_add_request -EXPORT_SYMBOL vmlinux 0xf20537c3 sk_stream_error -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xf21a4881 empty_aops -EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock -EXPORT_SYMBOL vmlinux 0xf22f1fe2 setup_arg_pages -EXPORT_SYMBOL vmlinux 0xf23a6284 scsi_device_get -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24a4a90 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xf24d319e of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0xf2501f3c pci_find_hose_for_OF_device -EXPORT_SYMBOL vmlinux 0xf2719278 soft_cursor -EXPORT_SYMBOL vmlinux 0xf27a249e netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xf27bf8bf mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered -EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0xf2b914d4 xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2d31c4f force_sig -EXPORT_SYMBOL vmlinux 0xf2d7ccd2 write_inode_now -EXPORT_SYMBOL vmlinux 0xf2f24bee inet_stream_ops -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf31c029d __devm_release_region -EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue -EXPORT_SYMBOL vmlinux 0xf32f4003 bdget -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf33cb40f mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0xf3437eca netpoll_print_options -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf34992a3 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf35cf20d qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xf3b1f3e9 ip_options_compile -EXPORT_SYMBOL vmlinux 0xf3b66a3d fb_validate_mode -EXPORT_SYMBOL vmlinux 0xf3cd69af pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xf3de9124 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xf3e0f53f fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3fe742d uart_match_port -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf4450bdc default_file_splice_read -EXPORT_SYMBOL vmlinux 0xf44f6e68 dev_printk -EXPORT_SYMBOL vmlinux 0xf455ee82 ptp_clock_register -EXPORT_SYMBOL vmlinux 0xf464076e vfs_path_lookup -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf478095a max8925_bulk_read -EXPORT_SYMBOL vmlinux 0xf47ce60d pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0xf48c1f63 skb_copy -EXPORT_SYMBOL vmlinux 0xf492c491 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0xf4b5d80f mmc_fixup_device -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f9aae4 pci_get_slot -EXPORT_SYMBOL vmlinux 0xf4fdad72 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xf504ced8 register_qdisc -EXPORT_SYMBOL vmlinux 0xf516007d account_page_dirtied -EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0xf523075c dev_load -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf54d94e0 find_vma -EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 -EXPORT_SYMBOL vmlinux 0xf567399b genl_notify -EXPORT_SYMBOL vmlinux 0xf58444c2 skb_pad -EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set -EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io -EXPORT_SYMBOL vmlinux 0xf5b05cb3 devm_memremap -EXPORT_SYMBOL vmlinux 0xf5b0ef19 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xf5d93d33 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister -EXPORT_SYMBOL vmlinux 0xf5e6dffd from_kgid_munged -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf5fccbc7 dev_warn -EXPORT_SYMBOL vmlinux 0xf6107780 uart_get_divisor -EXPORT_SYMBOL vmlinux 0xf61946ba __skb_checksum -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf646ec18 swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0xf6512511 bio_flush_dcache_pages -EXPORT_SYMBOL vmlinux 0xf6578b04 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xf65dee3d max8998_bulk_read -EXPORT_SYMBOL vmlinux 0xf6626a2f sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xf675df1c __vfs_read -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6c06d26 pci_platform_rom -EXPORT_SYMBOL vmlinux 0xf6c4bbec nf_afinfo -EXPORT_SYMBOL vmlinux 0xf6e9bda6 xfrm_lookup -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6ee6d40 sk_capable -EXPORT_SYMBOL vmlinux 0xf6f5e582 blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf711ba0d lro_receive_skb -EXPORT_SYMBOL vmlinux 0xf717d8df pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xf7237caa __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xf7386bfc submit_bh -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf77c4011 vfs_writev -EXPORT_SYMBOL vmlinux 0xf7814bd9 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xf78c8a54 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0xf7ab1189 seq_lseek -EXPORT_SYMBOL vmlinux 0xf7db0aa9 agp_bind_memory -EXPORT_SYMBOL vmlinux 0xf7f89d24 bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xf8052ea6 agp_put_bridge -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf84604e1 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xf84739e5 md_reload_sb -EXPORT_SYMBOL vmlinux 0xf8575b57 may_umount -EXPORT_SYMBOL vmlinux 0xf85bf031 phy_device_register -EXPORT_SYMBOL vmlinux 0xf88ede62 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xf89597ff copy_strings_kernel -EXPORT_SYMBOL vmlinux 0xf8a7b869 param_ops_charp -EXPORT_SYMBOL vmlinux 0xf8b985f3 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xf8c189c2 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0xf8e05545 prepare_creds -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf8f107c3 param_set_bint -EXPORT_SYMBOL vmlinux 0xf9038bcf smp_call_function_many -EXPORT_SYMBOL vmlinux 0xf91271f7 insert_inode_locked -EXPORT_SYMBOL vmlinux 0xf915283e swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0xf91a7020 tty_lock -EXPORT_SYMBOL vmlinux 0xf9207944 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xf9409956 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9c37613 get_user_pages -EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0xf9fb149e blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0xfa10588d fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xfa3221ed udp_add_offload -EXPORT_SYMBOL vmlinux 0xfa412c81 release_pages -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa57c628 neigh_ifdown -EXPORT_SYMBOL vmlinux 0xfa580663 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa59c5d8 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xfa76a468 dquot_alloc -EXPORT_SYMBOL vmlinux 0xfa800ca1 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xfa9122a3 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xfa93f71d blk_start_queue_async -EXPORT_SYMBOL vmlinux 0xfaaec693 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfafd10f8 ata_link_printk -EXPORT_SYMBOL vmlinux 0xfb0ac9a0 scsi_execute -EXPORT_SYMBOL vmlinux 0xfb0f3876 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0xfb12aa99 input_release_device -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb798a25 dquot_acquire -EXPORT_SYMBOL vmlinux 0xfb7b246f xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0xfb8f8855 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbcbecad fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0xfbd11569 pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0xfbd706bc tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xfbdd4c01 cpu_present_mask -EXPORT_SYMBOL vmlinux 0xfbe520bb pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc078382 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0xfc160368 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xfc318cd5 mach_pseries -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node -EXPORT_SYMBOL vmlinux 0xfc53a126 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xfc6159b8 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xfc6f3af3 ip6_xmit -EXPORT_SYMBOL vmlinux 0xfc9a87fb km_state_expired -EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xfcbe175d inode_add_bytes -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcc3ae3d kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xfcd5dae7 set_posix_acl -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf18168 agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd205c71 submit_bio_wait -EXPORT_SYMBOL vmlinux 0xfd3257db tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xfd854760 put_disk -EXPORT_SYMBOL vmlinux 0xfd93563c agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfdabe446 down_read_trylock -EXPORT_SYMBOL vmlinux 0xfdb22ea1 flush_dcache_icache_page -EXPORT_SYMBOL vmlinux 0xfdb45945 scsi_ioctl -EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfde335d3 compat_ip_setsockopt -EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp -EXPORT_SYMBOL vmlinux 0xfdf09d2f __free_pages -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe09670b pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0xfe123532 no_llseek -EXPORT_SYMBOL vmlinux 0xfe146397 udp_del_offload -EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xfe1e5d40 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe5dfc91 make_kgid -EXPORT_SYMBOL vmlinux 0xfe6d1b07 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xfe7bba76 blk_fetch_request -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe7dcd5b kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfea003de __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xfeccdb88 scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0xfed053c1 skb_queue_head -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfedea992 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xfee70a30 iget_failed -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfef001ca i2c_use_client -EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff3fbd48 free_user_ns -EXPORT_SYMBOL vmlinux 0xff536153 phy_read_mmd_indirect -EXPORT_SYMBOL vmlinux 0xff6656e2 eth_header_cache -EXPORT_SYMBOL vmlinux 0xff676405 mmc_flush_cache -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff734fc0 seq_open_private -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff9850db scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffa314dc dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xffbf1595 __module_get -EXPORT_SYMBOL vmlinux 0xffbf7067 inet_recvmsg -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xfff0f104 netif_tx_wake_queue -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x038d8933 kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x085a5e28 kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0cf0057d kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0f544098 kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x12b39f43 kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1315783e kvm_vcpu_uninit -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x13525145 gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x13c009b3 kvm_clear_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x168db652 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1b3f116f kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1d4cbdda kvmppc_rtas_hcall -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1d7e7984 vcpu_load -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1e1ade8d kvmppc_core_dequeue_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x23eaa790 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x26157a9c kvmppc_sanity_check -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2715e6d8 kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x280f59bb gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x285a96be kvm_init -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x287ab5d6 kvm_get_dirty_log -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x32a02c8a kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x33215682 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x376054f2 kvmppc_set_msr -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x38263c72 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4784a7b6 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x49d3bf24 kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4d048360 kvmppc_book3s_queue_irqprio -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x581be050 kvmppc_core_queue_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x587fa6c2 kvm_put_kvm -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x593136bb kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5d5b9690 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6116297f kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x64161e24 kvm_vcpu_init -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x68224f6f kvmppc_xics_hcall -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6c89fe09 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6e99dec4 kvmppc_kvm_pv -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7705e5b5 kvmppc_handle_load -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7cadc9ca kvmppc_pr_ops -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x826cc438 kvmppc_prepare_to_enter -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x85a5a4b2 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8712d5e9 kvm_write_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8e8d2c29 kvmppc_st -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x90fb04f7 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x92216770 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x939d2c7e kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x944dbe75 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x973a99da kvmppc_core_queue_program -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x97e9810e gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x98252492 kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa04486b5 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa8e5566b gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa93ac6fc kvmppc_unfixup_split_real -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xab59d373 kvmppc_free_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb2630c14 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb30d5975 kvmppc_hv_ops -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xba33b0fa kvm_unmap_hva -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbc4bf5db kvmppc_load_last_inst -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbd6bf1c5 kvmppc_ld -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc0071919 kvmppc_h_logical_ci_store -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc70e4b59 kvmppc_claim_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xca00cf56 kvm_read_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xca65ae77 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xca6e4b15 kvmppc_handle_store -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc44961f kvmppc_alloc_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcd1f36e1 mark_page_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcfd80302 kvmppc_gpa_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd1db9b5a gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd27c62ac kvm_read_guest_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd2c5964a kvm_get_kvm -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd55dc2f0 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd6ef460a __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd6f72014 vcpu_put -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd7e6005c gfn_to_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd7f84670 kvm_clear_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xde00e996 gfn_to_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdff0e887 kvmppc_core_prepare_to_enter -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe5470438 gfn_to_hva -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xef11cb35 __tracepoint_kvm_ppc_instr -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4da3546 kvmppc_init_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf533d460 kvmppc_emulate_mmio -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf7ce32f2 gfn_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf7da2e26 kvmppc_h_logical_ci_load -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfad4c841 kvmppc_core_pending_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfeab7dd0 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0xb95634d3 kvmppc_emulate_instruction -EXPORT_SYMBOL_GPL crypto/af_alg 0x27164360 af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x458f83de af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x4fc58a60 af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0x5720ec08 af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0x5f3cdbbe af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x773553f9 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xb31d5f31 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xbf153cff af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xcef8f1dd af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xd5bc06c2 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x03f4c829 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x7dfe6c5c async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xe61197f9 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x546ada0d async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x6f3f9266 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0066e34b async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x079ee9e0 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x902989d3 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9caf8d9d async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8e107a8b async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xffe93160 async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x3185767c blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xe45378e0 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xc5ee880d cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x56ebb10e crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xd97c9123 crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/cryptd 0x229f52f7 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x3e9e4b64 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x622372c3 cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x64babd21 cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x7b8f0384 cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x9356f904 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x96fec17c cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xac678ba1 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xdecf8f5e cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xee95ffa9 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0x9b2f2587 lrw_crypt -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/mcryptd 0x03180703 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x471f7229 mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0x4750e394 mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x8c6c740e shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/mcryptd 0xa8d7c458 shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0xc4955b09 mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0xcfb70db2 shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0xf1350129 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3ddbea1b crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x423c7168 crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x54c81e66 crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x6d467c96 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x9227f0ec serpent_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xb7eae73e twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0xd8c74e4d xts_crypt -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1a22d62e ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1de89600 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1ef29251 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x35ab25fc ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3d3ef619 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4c9b61f1 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5b1b7432 ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x74a8680c ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7b3ec9cd ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x81c17c4c ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8c073c4b ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ea1f407 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x93ff3586 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaec7edc3 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb16582ae ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbd4ad4f5 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc95e6194 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcb69bece ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe13495bc ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe9ad416f ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xed611c25 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf53d4b79 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf7a17d15 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0fcfd87f ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x21d326e9 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3aa6f271 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3da72ea8 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3e5c857f ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x57ae0ac9 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6b2ddca3 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6d353e31 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x716aead5 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7912a69e ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7db35a08 ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x93ac3fa9 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb3423169 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xc4e1627f __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x21b7f52e sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x211dbe2d __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x59202101 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x930f9ed4 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb460e1dc __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0b184a89 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0e74af4c bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x16bc1620 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1a5e20df bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x256aa896 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x33d5abc7 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3d7d887b bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x45633598 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x52978fbc bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5500ee1f bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6677a235 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x73c79651 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x82e7d620 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x919fe402 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaecc9d3f bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb54a37dc bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb7f318f7 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbc5f375a bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc0ef7921 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdb34fb46 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdbb52452 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe0c83536 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe84ce5ca bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe8646613 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2a4af56a btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x33b60fde btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3a971e3e btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x45d62a51 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xdfd7e7e3 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf735345c btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x12c6455e btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x246b0bce btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2c37ec23 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5cc8a404 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5f4bc12c btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6925133b btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7dfaeaa6 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa94434c9 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdb2afca7 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe5b72e72 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfba4e641 btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x14db731e btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1ada077a btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2c79d331 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x32b4a0a8 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3ca00fde btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x464130b4 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x65deb14a btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbf9090bf btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc7ad90dd btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xca95abf7 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe672fa44 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x35c8a3e1 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7ad42856 qca_uart_setup_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa12e6a6b btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xaa96f0be h4_recv_buf -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x00e3f2eb nx842_crypto_exit -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x0cddeb05 nx842_crypto_decompress -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x1e2f14cc nx842_crypto_compress -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xcff2d08c nx842_crypto_init -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x02c8cb79 dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x438b37c3 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x858ebedb dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xafec58ef dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc3c2d82b dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x3dcf51bc hsu_dma_irq -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x92bb8a3d hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xa826d559 hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x63ecd078 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xa7831a9c vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xe7f01332 vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xf91ccc1c vchan_find_desc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x076b5f52 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x10cfab04 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1851b7f7 edac_mc_free -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x315de51f find_mci_by_dev -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x42005c35 edac_device_handle_ce -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4885634f edac_pci_handle_npe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x499c1d85 edac_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5b850fdc edac_device_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5bd47e42 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6898b3b2 edac_pci_handle_pe -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x793e4af6 edac_pci_reset_delay_period -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7e8eda7d edac_pci_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8c318e05 edac_device_add_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8d74f792 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x91865d15 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x936c2704 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9483d741 edac_mc_del_mc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa1842ae8 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa365a0b4 edac_pci_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc9189da0 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd3cdab5f edac_device_del_device -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe55d5889 edac_mc_alloc -EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf0a0459c edac_device_handle_ue -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0d72d863 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x214814da fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x230c9f1c fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4d4c93ab fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x566b3176 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf81af75f fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x2106f3fe bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x34098e92 bgpio_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x42e0836c __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x50020710 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x01469c7d drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x266fbd71 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7a6bb137 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb3e856c1 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd7bceca6 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe7b900e3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x4dc64b90 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x5b89290e ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xa8f6203f ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x069f55b1 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x21f83d28 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b438a37 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e1d60cf hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5851b33c hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a78ff74 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x604a37a4 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x61c8a0d9 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x656b995c hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x67c4ec59 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x68dd289a hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x713a0b3f hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7505a3ef hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c9f9edf hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x863cf563 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x87ea702d hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9392e2b9 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x93b50c4d hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x977a6fb7 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x97bb2097 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9f2f7e71 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9fd5fd4a hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa2e5b615 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa535fa94 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa9809b63 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd3a9a25 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc4fe7f77 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc81d0fa6 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd1f501f8 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xda92913a hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdbbbe1c5 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xde926887 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xeb178275 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xeb24610b hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf284d21d hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd3f8bed hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xe8c89af8 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2e9a6d8a roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x41b20698 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5cc47705 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9238d8bd roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xdb4f9037 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xfed8e0d9 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x32b8036d sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x530fedc8 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5940cf9b sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x930601eb hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xad54fa4d sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb23b5f49 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbf0a14eb sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf4561c58 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfb400926 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x2ac779ea hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2a227983 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x37369173 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x47fb37d7 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5c878874 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x65d017ed hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6abf1885 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7853142a hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x79557f1b hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x84c6bc0f hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8ee8c018 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaa1f1999 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb3a614e0 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc8a4a7bc hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcb882221 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcd352534 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd22f9521 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe06dca52 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xeef795fe hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x505d9fb2 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x53ea42d9 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xfa7ad9a9 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x166177e8 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2523ed2a pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x83ac8266 pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8d361477 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x99742712 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9f3ce9b9 pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xaa3d07a5 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xab2c02fc pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb39e3340 pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb95e8fef pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbc2046f5 pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcc5dce26 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe1465695 pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe50bd8ba pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf73fc47c pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4476d672 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4cb36c21 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x94a1635e intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa603cb92 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc8961e8b intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe6fb0080 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf5c22ac9 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x37aae441 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa2d65c7d stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe8121b0f stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xec7d0755 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfd6ff952 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x0150f738 i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x1442dece i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x5f2f3744 i2c_dw_disable_int -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x9ba96660 i2c_dw_init -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xbe9b24cf i2c_dw_disable -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x3252fae2 i2c_add_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xe81642be i2c_del_mux_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x062802cd i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa679ca4d i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x56fa0add bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x5a3ac8fc bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x7e7745f1 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1e155086 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3a49baed ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3a5514e6 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x412307eb ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x848c3fbb ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9950f8c8 ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb90fb6b1 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbfc7d005 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xddac0aec ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x58f7de36 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xb8bf1031 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x7fd0889f ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x94d464e8 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0487e43b bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x76d9ad27 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xc1caf8c4 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0089883c adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x01c53d0b adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1a6381d2 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2d1b86ec adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x531d689b adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x761ddff4 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7fcacdf9 adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x80e55525 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x85ab2240 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdd6074c1 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdd9d5423 adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfac299ad adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c06befb iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x13245201 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1a3b4be6 devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1eb3289f iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x22189456 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2bb498dc iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x414c24cf iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4369b932 iio_scan_mask_query -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x47136f72 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x55bc7d7b iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65466f08 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x67f56356 devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x68765a1f devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x69e34af8 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7a6742d2 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa784081c iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaa97add3 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb127819f iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb420879d iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc45a3bea devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc541083c iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc686312b iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcca379b3 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xccf125f1 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd4ff527f iio_update_demux -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd561c490 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe6dd625e iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeae7fc08 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf123acd1 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf8899aa1 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xff85d136 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xcd34a8b9 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xb56453b6 matrix_keypad_parse_of_params -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x567d8e1d adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x001f778f cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x500a2d64 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xfa6e387f cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x360357a1 cyttsp_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x80ac2c42 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x85cca074 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x6b8784ac cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x7cc7679e cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x08a6487e tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x12bb6fa7 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x497bcd60 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x6b6f7cd9 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x058bc9d5 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x07e51eb6 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0acbbbda wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x122cfcbb wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6c6ab0a0 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x71d4adfa wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa0c0b03e wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xab39fdf1 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb6b14838 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb9b206ca wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbfd1786e wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe29117c0 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x465c77d7 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5d1334e4 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x66bae642 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x83de42e3 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb351c94c ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xced23819 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe4e1b3c7 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfc1e6260 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xff3b21e0 ipack_device_init -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0cd48b91 gigaset_stop -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3750fe9b gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x38f6c784 gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3e27eff7 gigaset_initcs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4623e9f8 gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4d3bb541 gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x503fea08 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5a09621d gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6acb86ef gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x818134ab gigaset_add_event -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x82c02f3b gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9df47ef7 gigaset_freecs -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc67b3d7c gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc89a8d18 gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcbb74113 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd56602c3 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdf929227 gigaset_start -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x44e85b09 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4536bb8e led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa30174ee led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb9b10ff8 led_classdev_flash_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd12f7a7a led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xddb9ac31 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x24cef6b6 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x285cba1c lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7ab807f4 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7ec5f776 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x871e16d3 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x91984401 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa0a6d5e7 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xaa7aa8f8 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe9e9d700 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xeead6e00 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf3f8bab1 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a0527be wf_register_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x6a8e22e2 wf_put_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x74f59771 wf_get_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x7afd9895 wf_get_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x7db857b7 wf_unregister_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xa86d41cb wf_put_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xb2c3d5d6 wf_register_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbd533dfe wf_register_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xef0ccba5 wf_unregister_control -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x04f0fcd0 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0e05ebc3 mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x167f57be mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x24c50c56 mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8e13fade __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9d5a24d2 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb9d94165 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xceeba920 mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xdee5f3b2 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe24e12a4 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf0d05148 mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf6380603 mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf81e8439 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x27d09954 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x39afd7ed dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4e938f8f dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5961f630 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5e89443d dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x881f505f dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa8ab8dc6 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa9a5f4f9 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xce4727c2 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x632f81cc dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5324e9ff dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5daacbbd dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb85b6e3d dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd376f583 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xda4db9e5 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe0167937 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe6004203 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x5f9ef0d8 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xf5f0eb2d dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4d9c7087 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa73ea17d dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc48b3fc6 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc91521ac dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd269d592 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd2fd8221 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x59e8db90 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x827a42f4 dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9f624559 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x00ce6af1 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0568d49c saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3817a16c saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4b6c2f68 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6c3f50f1 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb604252b saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbe7076bf saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd418321b saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe65edb5e saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe87ff7b6 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0afd9fa5 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0e2958a8 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x444c55c8 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6a082294 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x874ae80c saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x94d5fed7 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x99cd358e saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0ab6dbdc smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x23e06c72 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x57bff1ca smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5ef07e14 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x68bb6036 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x69c65e08 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8af1079a smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8d273612 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x96fc876f sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9ac8cfb5 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9b84c94c smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9bec8614 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa2018064 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbdbc3ef3 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc4559454 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf93c75d0 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfd1d44ae sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x049faf18 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x045da81b cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x7a46f91d tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/media 0x09931830 media_entity_create_link -EXPORT_SYMBOL_GPL drivers/media/media 0x120b4c58 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/media 0x39b9eeda media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/media 0x48af02cb media_entity_get -EXPORT_SYMBOL_GPL drivers/media/media 0x56523b91 media_entity_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/media 0x5ae6deb2 media_entity_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/media 0x5e9dc516 media_entity_put -EXPORT_SYMBOL_GPL drivers/media/media 0x86300c36 media_entity_init -EXPORT_SYMBOL_GPL drivers/media/media 0x894d9831 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/media 0x90f9dffa media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/media 0xbbc9eb9f media_entity_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/media 0xc29ba483 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/media 0xd2617be5 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xd74d1ebf media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/media 0xdc76d106 media_entity_cleanup -EXPORT_SYMBOL_GPL drivers/media/media 0xed357899 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/media 0xf0561c35 media_entity_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/media 0xf6c0487e media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xee08d4ca cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0a825095 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x23ad67b0 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2f2404f8 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x464333ec mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5fa54a11 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x68b3ca0e mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x97598a18 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa7608b0c mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xab2e9ecc mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb32de6ae mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb42ba362 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbc7b4871 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd418ac3b mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd8548849 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdb98e961 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe61c6210 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe85fcb1c mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf8eac01b mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf8f6895d mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x022c3988 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x053a7361 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0bd05625 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x19cdccb3 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2e1aca82 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x545835d9 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6f612d6a saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x77ed29b6 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x842b5288 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9d2ad2f6 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa6d29f51 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa7cdec9b saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xacb67b20 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xafdf59cb saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb26644c0 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcc300fba saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdc9fb3ae saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xec2e1447 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfcac5b8e saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x28452e97 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x61e3a186 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7e4d1e74 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xaa88096d ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd94dba17 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe3c7001c ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf3dd0e06 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x03aabc5b xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0eda09c0 xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x17d46346 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x29809f0f xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4f836388 xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x588e98bf xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x71dfb481 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x056b02ca xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x83f69227 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x9ad2fabf radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0ee5400c rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1525d3e8 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x250a8d9a rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5071f0f0 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x549225f8 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6bbb22db ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7a6e20c5 rc_open -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x991bcb2d rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9beae8f7 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9da86d2a rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa60c0e60 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcae40753 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe42e1e3a rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe5090737 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe7912406 rc_close -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf94aefd3 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x04e49d88 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xb1eba118 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x01a917dc mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x07c1993c r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x6d8122a3 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xe3902586 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xaa883c77 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xcdf823e5 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x4003fa5b tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xa72931db tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xd15856f5 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x4ea79b85 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x4eddad58 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x423185b0 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x00118c24 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x14bc6826 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x16c97ed1 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1af5d136 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x38c36397 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3d56fd71 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5460bda9 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x568e7f31 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x67b5000d cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6a988640 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x825dc7f4 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa6e39a15 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaf18c674 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbd0910a6 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc43cc93c cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcbd1a73f cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe02f4a62 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf5bd507d cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf6022615 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf8a0f939 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xf040fd06 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xf36a65f4 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x15f7e76a em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2ec0dc58 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x43840c89 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4fb90762 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x56d3a73b em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5a54f027 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5e4d7b7d em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x71f30697 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x87dcb462 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa3b8ef29 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa422f327 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa741b7c0 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc7e4a043 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd6b3684c em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdc8e4cb2 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe60ad313 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xec94a6ac em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf7bed4c6 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x15a6f238 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x44e46cb2 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x9479c2dd tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xbb025e08 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x07f75acc v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x53ffaf68 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x64a7ee67 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x8fcfcfdb v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf9f793f3 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xfb28854d v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08982d59 v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x03a03d96 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x2f9dfb99 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x16a03c77 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x24f34eda v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x257e059b v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x28e87bf8 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x33779f86 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3a71d9d1 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x408cac72 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x452a3eda v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5cd93002 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5d4469eb v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5dacd749 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5e107873 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x64862bb9 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x87cbf854 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8a87faac v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8e70b00e v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9821afa4 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9bb60f23 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb48b3473 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb5ae2a83 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb5b4aad9 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb6cc4e8e v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc3bb56f3 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6c4a446 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd0db31c3 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd4aef6b7 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd6e00d57 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x03e37950 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x092b448a videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1464471c videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1f7b2da1 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x23cdbc04 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x318c9352 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3ffa4627 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x44506efa videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4a08f900 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6c82f114 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6fd7986a videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x714587dc videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7528a1e9 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7f418ba3 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x83f17db1 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8e6afe9a videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x95aff85f videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa3c12e9e __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa6946284 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb03cb03a videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe374274a videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xec794638 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf3ebb76b videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfd59ad0f videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x58826a1c videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa4cb0d95 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xb2059f9d videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xc03db43d videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x17466028 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x80258852 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x89471d25 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x038f1ef0 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x069469e4 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2b39d990 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x399e294f vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4292cfec vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x44a93fb8 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5466622d vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6cfdb26c vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x83214b48 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9ec85c25 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xaa0a4239 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xafd405d0 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc22037be vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xce6f6488 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd13ab749 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd2b15649 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdf2d280f vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xee8d08f3 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x1c410d1d vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x6e4e37c1 vb2_dma_contig_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x52a0d123 vb2_dma_sg_init_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xa9fbb901 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd30ec30f vb2_dma_sg_cleanup_ctx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x45a552e4 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0ce72967 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x12823e66 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x170963f6 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x255cd7e8 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x29b3ea77 vb2_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2a9d0584 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2bf33292 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x43791782 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4f2bcb1a vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x59445448 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x60f2d2bf vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x73edf1d6 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x74c5ca08 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x75f73c14 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8a66c2e2 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8e827777 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8f1b4b93 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9691b9f0 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9b4be95c vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa40da1df vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xab73aaac vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xae280e05 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb1a54a54 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc0c66123 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc157fea2 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc7661d18 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcf34f1dc vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd0efa6b0 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd608c754 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdc30af75 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdee27ed8 vb2_read -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf9bec15c vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x0e73b112 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x06e991a4 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21611f92 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21eeba54 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x258a81b7 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25ff64fa v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x27f41000 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4866aef4 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x518092be v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x657a3ddd v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f579fe0 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x701fd107 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x83242700 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c857396 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x925dad8f v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98f8b65b v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa21eaa64 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2eadd3a v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa3c35ef5 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa508a705 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa690e134 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf0ddd7e v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb16fd564 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbd74f8bb v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd303203a v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdb5bb788 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xddaf995d v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5ccb42f v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xef547a30 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfceb6780 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x17e427ba pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x9c255904 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xcb1f5d07 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1f67932d da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2636ea9f da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6f6d3445 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xab0d30aa da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb4a0eec8 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xbc291616 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd93d86d6 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x37da8482 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x47c30efb kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x52b5d461 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x616c99c8 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x778f678e kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x884631c8 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa6e62d20 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf932d20c kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x0abba2bc lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xedc25d43 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xf519b1a0 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x074b9ff0 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x093bd54c lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7d5f2968 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xbc594344 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc3c24e99 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd582124a lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe2129a9b lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0202910e lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x123d3a80 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xfc84677a lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x015d8522 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3bb08188 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x41e7ce02 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x53e83b6a mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9d265c32 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc1ee7c58 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x054dcb71 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0a626328 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x252de7a9 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2feaa13a pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x48c660b6 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x542a7dc1 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x84f2906a pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8c6a4fdb pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8d140fd7 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd694b838 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdf462485 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x0de18829 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x2065c1e4 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x160f59ec pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2907ffc2 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4706693d pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4b3e374a pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x59862386 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x023d6fe4 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x04643c39 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x05611dc8 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0c6a6dab rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0de58c30 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x19a7a723 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x28b73e4a rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x351a3c41 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x374c0c61 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3ef8ba08 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x46e95fe9 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x573be420 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x732b85c3 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x87fb0317 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8a0a1191 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa9f1ac90 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xae32f215 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb036ece5 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb1ad9ff4 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc3dca396 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcfcab635 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdc3d0cf0 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf390054c rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf6d02f5e rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x03f1c217 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0a0124ff rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x50421cd1 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x50b28be9 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x63faeb28 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x69ef1bf8 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x72edb7f4 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x80fabca7 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xadd5ef52 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd5af441e rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xec2ea2ae rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf49cab5c rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf52bb530 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1a336f27 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1b3768d6 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x225c5e46 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x368aa8c5 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x40666ed5 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x43d71d76 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4ce92f9a si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x527c1790 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x673cd73c si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x69f6ed18 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6cd99016 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6cf7d904 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7073d398 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7551c0c3 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7573fe0f si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7f5ef45f si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82fa59e3 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8653d7ac si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x93c932a5 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9a895545 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9c424b15 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaed0d97c si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb0e954ca si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb7a161d8 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc7492e9d si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd059e120 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdeca74a5 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdf7ba7fe si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdfbc8672 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe04c21f1 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xefd250ac si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf0f475f3 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfaf80be0 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfcebf81c si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x14248960 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1887e6ad sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7b0806f4 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x81029f31 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x95f3de59 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x02b4ce50 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x1e7dfe99 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x39d0ce25 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xdb1251f3 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x1fe463f8 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xc7a3fc01 tps65218_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xc8bb2004 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe0d883a1 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xfa3ab7b9 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x3547633c bmp085_regmap_config -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x3ec5281c bmp085_detect -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x8af4e4fa bmp085_remove -EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xd8baf7a3 bmp085_probe -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x10f9d863 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x66de19d5 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa7181802 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd5e593c4 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x0179bab2 cxl_perst_reloads_same_image -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x1a490702 cxl_unmap_afu_irq -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x203a66b1 cxl_fd_open -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x21e2ee26 cxl_pci_to_afu -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x251c612e cxl_get_fd -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x27ad61be cxl_allocate_afu_irqs -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x2e362ee8 cxl_fd_read -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x32f3944b cxl_fd_poll -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x455dde0f cxl_psa_map -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x6740dbad cxl_fd_release -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x692a354e cxl_stop_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x6ee446dd cxl_fd_mmap -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7a1855b6 cxl_dev_context_init -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7c8e2c7e cxl_afu_reset -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7f3ac16d cxl_release_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x848457d4 cxl_start_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8486ad7c cxl_get_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8740bc47 cxl_psa_unmap -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x942f4230 cxl_read_adapter_vpd -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa0a916fa cxl_start_work -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xaeb02785 cxl_set_master -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xaed87706 cxl_free_afu_irqs -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc1bffa1c cxl_pci_to_cfg_record -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc359247d cxl_fops_get_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc620ac23 cxl_process_element -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xdffd2910 cxl_fd_ioctl -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe3f041f7 cxl_map_afu_irq -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1ccd27da enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1e564984 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x21ba9afa enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4dd2bea8 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x594247fa enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa2e17ffa enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xbcdb7a07 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xebd61f34 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x03cda539 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x08a8fe47 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1c00d5c9 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5b5f2129 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5c610b2b lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xdc892e60 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe9dee4ea lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xebc9d79f lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x611799db st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xe73dfb4f st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x15759da9 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1f42e121 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3bf6cf68 sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x40bbd5dd sdhci_enable_irq_wakeups -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4192de91 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5efbd332 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x788e587d sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x86f6f1ac sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8b76131d sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x945bcd40 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaff0df08 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbafbf0e1 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe1e608e0 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfc71a091 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0436ab94 sdhci_get_of_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0adbad76 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1099076a sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x26afe329 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3f127f07 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9f5bbf34 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdc21cbc0 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe8134ad1 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xffc8392b sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x50e359f4 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x92d4598a cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xadfd7c62 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x41902110 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb269ee96 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xcc3ba546 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x23ae8811 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x40a3ad81 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7d046699 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xef516809 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x01473681 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x01e1a4ca mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x06d5c02c mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x093897b3 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c43b18f mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x177191a8 mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a7a1f36 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b213bc3 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x205a0290 register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x26b8d35f mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x27a74357 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ac0e0ae mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2d7fc053 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2dd6bc68 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x417eab74 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x455f9802 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4d8a5e6a mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x513697c7 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52eea47c mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5e3b3e92 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x61a57e95 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x65a756f9 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8fcfa053 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x924f5873 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9754daff __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x99f4aeb9 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9a9c1565 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa09ecc30 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa75dd6a3 mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac03910e mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf2ef6c5 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb2b67a10 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb5399c67 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf076348 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc70f1322 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcb0d4018 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcbcb726e __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcc652f56 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd40ee7f2 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd4267589 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe921f3f5 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfbd5f8cf mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x39895af2 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x48927982 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x898f5a00 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9ddd55f4 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa29f769e register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x50919d2b nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x99a4ee9d nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x82fe37f3 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x3dbfa79f onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xff3a4b1d onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xd560b47a spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x03869027 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0a4f0c41 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x29c17993 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x354d2e65 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5d002b0b ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66ed7c09 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6dc959c5 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9304e2bc ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x93d65557 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa08ea705 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa41854a8 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb7c5b346 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcd71bdcf ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfead5889 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xb5938dee devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc7a10e37 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x253823da c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x44811297 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6d9a8b88 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc02bee2c free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xccc5ec0b unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xedd3d222 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x04f7954e safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x08ae726b can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0db8394b free_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1348f9b9 can_led_event -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1814606b can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x24afa867 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x560d4e0c can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6d5047d7 devm_can_led_init -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6dbf2f3e close_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x83c7ade7 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9279cb86 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa0aa5107 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa271a3ec open_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa90e9eaa alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb02fa5e7 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb0b3653d register_candev -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb0b4150b can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd01f0fd3 alloc_candev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0790242c register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x086dac70 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x28ec8f8d alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x494c9ed9 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0b48b2c4 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xbc5aa5c5 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc224a091 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfe25a473 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x12078886 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x4ac55bc0 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00f55bf9 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02b2638c mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06107454 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x064fe345 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0666c900 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x089ac577 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a9860e3 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ce1f0f0 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ee1a571 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10a8c7e5 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x147623e1 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18b02066 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19704945 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1983223d mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b1fe909 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20d7c878 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21a82e1d mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23c44bea mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2676383f mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dad1940 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x316a4ec2 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3383ed5c mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3598329b mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36a16fa6 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x373183be mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37787b13 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38f8cf80 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39756b3f mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a05ad9b mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3aeaa2f2 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c80323a mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cfbcfba mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d477ac3 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x400bad7a mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40db126e mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x437cc79f mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4397e7c5 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4675508e mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b0d1b57 mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4daaa155 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fae464b mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5220a2f6 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54938ba3 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x556d14d1 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x592ea3ac mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59bfd20a mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a77ff88 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5aca0694 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cd65a4b mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fa1fe2f mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x603a176b mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64003ad5 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x649baa92 mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65c32a25 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68a30850 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68f64cb6 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a494b56 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d5c73b1 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7006f4ed mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7054377c mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72f43bb9 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73882827 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x773a09b5 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b357b21 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d144977 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x842ae4ba mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84ad8158 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8888a4fd mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88b98d7c mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c95d0d5 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8db19a7a mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dcb000b __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e31d579 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e7c1e73 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fce3b90 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x933912d0 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94c08633 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98de04a3 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99126451 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bbf4ee7 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa14ff0e4 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa28f9521 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa631ad54 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabf41bed mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabff0fbe mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf73794f mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb08905ab mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb13aa1a6 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb67e7e72 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8db8f7a __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbae2f92f mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbeb7a08c mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfb05c3c mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc14ce127 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1de828e mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3ac1aff mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5044af8 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5048ae1 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8328a1e mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc846df85 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc87e18c8 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9b5b79e mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb4d3bdc mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1864feb mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd40e23c0 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb7002fa mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbd10244 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcd9c15e mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcdac7e7 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfd4eb62 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe607cc97 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea60887c mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeacf6cc2 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec9b2bd8 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2c437da mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa07fffd mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfac207d5 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb06fc76 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc39c0ea mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc811376 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcb8d049 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd885b70 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe021ffc mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe52a504 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x003f7a58 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x033ab659 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05671c1d mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0963e5ab mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09905a9d mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12bf131a mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b2b116a mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x299a6a13 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a61aade mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32c1a7af mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36944af9 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c8f9d53 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44655d21 mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f80783a mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61b55512 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69f59730 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6dadacb3 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6faa270e mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77df68b4 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a674306 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b484940 mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x851eedb8 mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8748abb1 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f3827ef mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa17cad80 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa212bd5d mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4af458d mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa89301e0 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaaba72d0 mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba3d93f8 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc4ba024 mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdaf69b2 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1f148d8 mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2e8f6e4 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8ded48b mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd8a51a4 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3f5db0d mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee85269a mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeff60d6e mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0a65c13 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2298a70 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf557ec36 mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf659f0f7 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd0caad8 mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd3b2876 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xbe73ce51 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x093b2b16 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9ed37bd7 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa7f3d725 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xbcf5fe83 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x459fd3d1 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5e305336 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9090dc75 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe19e156b stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x02d549da cpsw_ale_add_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x085d6424 cpsw_ale_del_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x47677aba cpsw_ale_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4fc9951e cpsw_ale_control_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x688edfc9 cpsw_ale_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8718b15d cpsw_ale_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8defabff cpsw_ale_flush_multicast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9c8eede6 cpsw_ale_control_get -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa4dc4ded cpsw_ale_add_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa9fae1b7 cpsw_ale_del_mcast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb4d8c040 cpsw_ale_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbc881355 cpsw_ale_dump -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc08a1b6e cpsw_ale_add_ucast -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd4a5067a cpsw_ale_set_allmulti -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xec34725d cpsw_ale_del_ucast -EXPORT_SYMBOL_GPL drivers/net/geneve 0x3e9f15e5 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/geneve 0x6bc091e3 geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2116de1d macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3be90f42 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x994170c0 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xdee15960 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x14a925f5 macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x195a7ca2 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2a2bff25 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x367b4ba9 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x49145b19 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa07b10fc bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa51e82a0 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xacd524ea bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xae29278b bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb9b4f6d1 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe00476cf bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x13a631fd mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x248d105d usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x24ffec67 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x44902a3a usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xdb56c6b5 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x25cc5edd cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x26a61b5b cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x37f03624 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x45c627e1 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4b3b7e96 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x56360577 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7679fd55 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcfd638df cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf1fc43c5 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3f47b9c6 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4e2ab292 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa67e1f1d rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xabd8552c generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbbaeaaaa rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xdcaf6909 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x022b636e usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x139fc814 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x19401384 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b200e54 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2d3f0163 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x30389ac2 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3927d26a usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x45a5c178 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4d408221 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x51689382 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x52035828 usbnet_get_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x70d21ec0 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7bd2f450 usbnet_set_settings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7cf3e9ee usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8adddd2f usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x94f4fade usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x96b40851 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x991d8da8 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa6cc61b0 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa9f5ba65 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaee640c3 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb60daf97 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbd0a82e4 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbff6c602 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc7bcfcb6 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xca2fc9a5 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd051d1c6 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdf3416a8 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe2b01f2c usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe455aa93 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf456c044 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf8d28c46 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x95eb6a29 vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xcadf09bf vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x22776a96 i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2ebe0ef7 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3fa1f1a4 i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5504d56e i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x58db989a i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5991dda7 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6095359c i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x983900c4 i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa6063a04 i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb5baff6a i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb942a90b i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbef39717 i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcb7a749f i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdc2c0372 i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe2600f45 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe9201d16 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x05430725 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x777d817d cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xce8024c6 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xee20cb85 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xb1b3e931 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x03209052 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x1d497eca il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x8a164ed5 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xa273cf5e il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xf71441a5 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x01f596ae iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x054b4df4 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1233968b __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2191a78b iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2e9ffc22 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x31bddf28 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3e03bb2d iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3e9c2050 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4377002f iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x601d6284 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x779720e1 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7adeefda __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8c549824 iwl_nvm_check_version -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x96b10a9b iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9708260b iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x97e2e700 iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa5a32183 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa92fecd4 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xce170fcf iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd2c06695 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd709a107 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xda0ea0bc iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdfe1d598 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xebb38cbf iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf9890af2 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x024b042a lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0d717c0c lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1812b7a7 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x39d54648 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4060ec44 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4b58f36c lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4fc3c3af lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5a6c7022 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x679e7fcb lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x84b51a4d lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8605edb8 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa5d13661 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc1f70304 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe4f0d536 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xeddfd8e2 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfe516245 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x24388c6a lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x25e986ec lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4904715c lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x63287b0f __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6acb73ab lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x734ff1d5 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xd36ce6f2 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xe314db31 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x06ab7ed2 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0aead220 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2b886306 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2c739bb0 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x340626d1 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4a4bcdf7 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8797b27e mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8878a8c7 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8aac41d1 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x967194e3 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9d48ed0f mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa929dc40 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb241f2ad mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb812cf65 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbed7f9de mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc0b89951 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcfa07e1a mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xddf25e1c mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xed88a0dd mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x67c7b348 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x785137b3 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x81f4011b p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x995d6b21 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x9d97e334 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xb81e7b26 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc9669f01 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xda49f1cf p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf543b08b p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x09b6e356 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33ec90d7 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8886576c rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd5f86f4 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0ea448c6 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1ef9329d rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2d38f938 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3c04c253 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x40ed2ba9 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4e9a7fe9 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x52562a46 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x551eaf10 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x63d0c311 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x651690df rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7cf7224c rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8c5b8eff rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8ff2c4bc rtl8723_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x94861376 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x96599d71 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa7df61db rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbc68ed91 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc53bdb10 rtl8723_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc65ad447 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdb7f553e rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe03b5284 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe08fda77 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5eecf62 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfaf347db rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfb74fc64 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfbed6993 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xffa858c3 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0354cadc rtl_dbgp_flag_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d16f3d4 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1248d19d rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3533d9c1 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e036735 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x57cdae21 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7cb7cb5d rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8fba58eb rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa9eaaa57 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb814a026 rtl_attribute_group -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc000c0d rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe2a15f6 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe769494 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcfd1e25f rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe0957cca rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe823bd8c rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef969cf7 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf67e81bd rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8994c54 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0ca8b561 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x27f67cd6 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe13bbc74 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf0adf272 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x01767d29 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0d03fc2d rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0e22b62b rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x123c5fca rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1296244e rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x14776f1e rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2e9aefdb rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3178b4c7 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x34f9fda7 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x35af7198 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3905f5ba rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3a268091 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x41dd727e rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4340fc32 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x44ebdf8f rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4971698a rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4a69ddef rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x506c28df rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x55c889ee rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5aafbc10 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5acb5f99 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5c48e16b rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x684b431c rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6c3a18ff rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x770cdb0e rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7e30bb7c rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x84a9535e rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x88cb595f rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x99f1716e rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9e1a1c6d rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9f06d634 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa1f5146e rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc4b2711c rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc9333b12 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc95f1130 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcdca46fc rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xef9639a1 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xff7a7c7b rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x02c50ccb rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x165f1cb0 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x22ab98dc rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x318334c0 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4c9d5902 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4ef66f8e rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x6f77101e rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9e60c3a0 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb464b924 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xcc553a10 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xccde5da1 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xeafbc6dc rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xfbf5d1f7 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x00a5df8a rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x04c95ccc rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x07c6dbde rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0f551235 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0fe9c314 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x15f838a5 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1924da47 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x26124f58 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x26b75c7f rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x28cc0898 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2aecc9f6 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2e245338 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3b24fd25 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3cb47199 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3db5b875 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x41f0a6fb rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x42274526 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4441feed rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x46a0e35b rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5254d0d8 rt2x00mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6200b693 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x62fb68a1 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x65d80d89 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6d821ab8 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6e3d93e5 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7c37a9ae rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x92931cb5 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x95f8583e rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9d569ab6 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9e2eed5d rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaad14b7a rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb5e4efa9 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc1a1c347 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc446f163 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc5085e7c rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc879022a rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xca0c4f47 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcf1f589b rt2x00mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd37352f0 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd9396dc1 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdc0bab1b rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xde3215b7 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe5745105 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf494e039 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfaecb679 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfbcfc012 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x1b480e61 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x3b3772ef rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x4c9af670 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x4e3fa649 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x9260f484 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x49558cec rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xa5131c94 rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xdec8cf32 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xeb14696a rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x23018a25 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4e45a227 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x52468e96 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x531b5edb rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5a301fa9 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5ac1c044 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x669acfe1 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7c73ed38 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9d21e4f0 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9de3c75f rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9e489b97 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb514b996 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb6bacc86 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc37a4f3a rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xcc61df33 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe6060070 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x646959b8 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x962f1980 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xaff86d16 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x02afd092 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x09a0a39b wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0f46a90a wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x11eb6bc0 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x160ff700 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a4a6c8e wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21020331 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x216fca22 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x29043162 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2ae87108 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f9de020 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x324dbab8 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x35f12098 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3657f033 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3731570b wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3b22df27 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3cca9870 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3ff2b915 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x527d1361 wl1271_ps_elp_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x52b5b6d0 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x57ad9836 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5ae9ac28 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x646ff509 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6e0619df wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7044cff7 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x73d104e3 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x89778136 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9800d0ec wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9be6ac78 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa45732dc wl1271_ps_elp_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xabd60c68 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xac356273 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0571541 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5a91e90 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb9a67452 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbb5d6338 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbc889e86 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc5c5cd41 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcb9552ed wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcdf215fe wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdf2277ed wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdf2557fd wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdfd3533b wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf88194f4 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x57cc828e nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x9f45d55c nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa21b3605 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xcf193bd1 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0316cc52 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x11da74e8 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x13bd86cd st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x16067def st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1e196f56 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x38864b46 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9d01a82d st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe62c5a79 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7ef0638c ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x808de4de ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf102a4df ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x13e532e0 nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3060f694 nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3c600a03 devm_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4ed7385f devm_nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x5fcaffa4 nvmem_register -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8c1364e9 of_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xd34831ac of_nvmem_device_get -EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xfc77e37f devm_nvmem_cell_get -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x34e19c22 rpaphp_add_slot -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0xceab053a rpaphp_deregister_slot -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0xe38029ae rpaphp_get_drc_props -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x56db82e2 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xdae351a7 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xdd2f6611 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x07e3d4c7 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x367700c9 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x57dd4f1d mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa90bbd21 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe5083817 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4b9a8e7f wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x681d3309 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9dfd9b8b wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xad924178 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xaf5e386d wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb89f3e4e wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xb903b5b9 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x041a8ad2 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a570ec4 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x184e6e10 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1cc06619 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1cdbcac8 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x240bbdf7 cxgbi_ddp_ppod_set -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3bbe466b cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3dfbd89f cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x439ac3cc cxgbi_ddp_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5177c894 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x54d01b04 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x59e1796c cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5dcf6944 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x615fe124 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x62879dd9 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64db4072 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x74571419 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x77992f4d cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x78972669 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x82e77391 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x84a49998 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x94e267c4 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95c66141 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x979b484a cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9d527f2d cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa1404ac4 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaed0e9fc cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0f27001 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb2b36668 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xba6d8cac cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbc454524 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc46e83f9 cxgbi_ddp_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc4853fec cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc53789d3 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2fa22a4 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd3d10acb cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd65c106d cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd8f13ba4 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0450188 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5fbb590 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe8c40bd2 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe9dcd1fe cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec62f36f cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed4d830b cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed50bfcc cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf85819ad cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x090cfdb2 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x19a8b0d3 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2a8e128b fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2f5c2de5 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x44b58225 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5c2bdb4e fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x76e7607d fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8bcfde07 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8ea10cbe fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x90cf9a86 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb2139dab fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb93b88d7 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xba6171a9 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xba7ec812 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe6b2be61 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf117764b fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x03d601cb iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0da0de6d iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x707cfa38 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb4b7a9bf iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcaacb88c iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe69f6a37 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x04658a4f iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0da72139 iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17fefabd iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23845929 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3701e7d0 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3dfc094e iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46973374 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4c80afd6 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4e90ebce iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4fb37404 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x56b13f28 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ae5e0b9 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x640d461a iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x695cfef4 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b740a9e iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b8226b3 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6cfc0f84 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78296dd7 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b75d06e iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b42cc90 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8dd9dfb7 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c239d14 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0ce3098 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0dc109c iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf1a133a iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf5fd9b8 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb6068e3d iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbbf1b2ce iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf5f44ea iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc20a0f56 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4a3147b iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4c48c31 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb9d181d iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcffe5385 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd12226cf iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda3b04f2 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xecc5d029 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xedfc2e89 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xef01d021 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3c8d4e3 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf7942cfe iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf967cebf iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x17791efe iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x27578caa iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x453894ea iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x52af1d6b iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x558d3d6b iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x60aaf07d iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x679a6f3a iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fee7fe5 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x81a4bf92 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb55736f7 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbab25020 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbce5a29f iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc4c56740 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd062cb68 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd071b6e9 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe05c1258 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe2c13711 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x061b3534 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x085d5515 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x13757812 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x28b70de5 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2cf00e5f sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x330c84e8 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x544d5db0 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b77e008 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x71115e81 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x773109a2 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7c3c2f73 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7ef0aadd sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa3e34916 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb19485e9 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb4f81eec sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb8f4101e sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc198a261 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc87db698 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdded6840 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeb7b2c2f sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xed06c13c sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf04a5b24 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf4633a9e sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfd884c4b sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b8a9d3a iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1be108c1 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ed740ff iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x230bd294 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2785d2e9 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c00cbf1 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3650863e iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d809e92 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41e9ad3d iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x45a3fd93 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5868cb08 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58c96416 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58ee746a iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a7a0bbf iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6193f5e8 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ec55b2c iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x76003f73 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79a749be iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x86449aa0 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c347637 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e049af3 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x954557bd iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c9ced57 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa5db26c6 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8d11d16 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae98d63d iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3bd8e66 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbae1bdf3 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc1c739ff iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc370e7c4 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5daff2d iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd8d19558 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd8db89a5 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd962ab65 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe269f267 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe697c2b8 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe769b005 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe863a663 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xedc37b5f iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4f786b7 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc2ad02ae sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xcafb61cf sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe971d9a1 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf30065f0 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xc5e032ae spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x3c081f74 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x4159f9e1 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x4c2a020b ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x5d892bc7 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x5fe3f537 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x73db0b19 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xdb0697c9 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x341704b3 ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x402b1535 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x55cbc6f2 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x96be1209 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc9665551 ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xeaa941d1 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf398db0c ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x07b15bfb spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1a926263 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x523f5dac spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x64e0e1a7 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcdc95cff spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1eba2bba dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2f78e13e dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x8eca82ef dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xeaa13a9a dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x07f71f15 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0e3455e9 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x10da9bc3 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x16b0f469 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x176a4392 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1fe3a5a7 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x29d6fa65 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x49673979 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5005b4c8 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5b609956 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6cbe86aa spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6f2d0f75 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x728fe7ac spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x885833a6 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8a21e3c7 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x93ced28a spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x981ac3ef spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa7194740 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x2e798da7 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x051ffab8 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x08b8c8bb comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cbf766d comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x10b2c6e2 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x34008884 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x385b48f3 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3c7ad943 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x43ce17b0 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x473b3798 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4c07794d comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4c5e7771 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4e93651c comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x57305b3a comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5cf6f879 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x60efa184 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6f99d6bf comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x77e93e32 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7d109d20 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x832b776e comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8cf925f9 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8dcc2fb7 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9028c1db comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x97824d12 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9c8109af comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa1edbe92 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa8302aa3 comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb15175c5 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbac3a997 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd3c1b939 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe2968931 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe5c6fc5c comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe7e0d04a comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xee4cc30c comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf7a95fb4 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfbbf8dbf comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x175d1829 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x3b6466af comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x414c253e comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x482eef41 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5fc9efc4 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6fa94da0 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xcd0aa1d6 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd6e5fda2 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x22181a6d comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x374d995d comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3bd2e594 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x940e6235 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc317816c comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd67848f3 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x96c6ca9f addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x8e31f7ac amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xd3009087 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x0ac0d312 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x00d1b3be comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x01bffd2e comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1b4d2be8 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x211e49c6 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x25308d23 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3d06c143 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3d95c78a comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x79fc7152 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7c89676d comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x81ebee94 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x905ad5eb comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9bd79181 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf0eae81b comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x2fc0cb5f subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x3b5a7ab2 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x9caa22be subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xcf37e59b comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x188ede92 das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x02c93e35 mite_sync_output_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0b0afa3f mite_bytes_read_from_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0f70ecab mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x16822acd mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2b258d79 mite_bytes_written_to_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x38d2817a mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x399aea73 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5125e804 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x64c2b4b9 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6e7402c2 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8488060c mite_dma_tcr -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8c7988c5 mite_bytes_read_from_memory_lb -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9b0a184c mite_sync_input_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa567b1ef mite_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xac56ff83 mite_bytes_written_to_memory_ub -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc544b7de mite_get_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdcd1269a mite_setup2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xde245d26 mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xea8a1463 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xee278cf8 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf0de2218 mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x5c267b8c labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x95901e20 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x201db15c labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x77d534ef labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x997e7f4b labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xdc15e579 labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xdd0d6c9e labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x06007bd9 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x72c0b75e ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x8acf8a6a ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa69ad63e ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xad3ef442 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc7e56512 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe9479214 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xec53dc90 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x731c0b88 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x84e3e146 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x97ab00b4 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb6378e71 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd0be215d ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe708f4b1 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x0dfd639c comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x362fc932 comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x7adaf53c comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x90cb2760 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa0b0cd9d comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xd5a15bca comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xfe726009 comedi_close -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x734c91bc adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1c616ec6 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x36abbfc2 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x3af4d2ef most_register_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x56d1d05d most_deregister_aim -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x60b326e9 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x945b61a4 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9b4af0e1 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb24f12f4 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc53b0010 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd5381c13 most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe048c227 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xfdeafc80 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x032c6504 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0911d874 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1d96c6d6 spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x20a09eff synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4709e89b spk_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x54ae6495 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x79b8f429 spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc66f3d76 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfbe6c610 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfd4451a0 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x47ab6937 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x9309fe6c uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xe4d6eb40 __uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x65432b96 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x68c54156 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xe133a357 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xfd1e7ebe ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x4a1c9655 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xc5a3bf79 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xdb92ee0a imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x62693107 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x76ab0f1f ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x84ff1ee5 ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x94013919 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc3da7050 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf5d67adb ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0b3e817d gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0cf74196 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x18a389a8 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1e14d2b3 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2e088ef8 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3c70ec2e gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x488aaa3d gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6b55df78 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x773b2ddb gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9b18ac33 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa8492095 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd6500323 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdd258806 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe686f7d8 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xee08d54a gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x2ca47dda gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x61fe4596 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x43f097ca ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xd6846e4a ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xf53091a1 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x068a3392 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ac317d1 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x308dbdb7 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3876d057 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x40616a3f fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6460969a fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x76048698 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8c92850f fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x946da211 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9c2fb080 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc7e81826 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc8e5b344 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe3d8ffa5 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf3aa35ff fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfb67bc66 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0328494f rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0940ca7e rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x10f8a7f4 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x31dae5e9 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x38c0779e rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4ec773ad rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4fe01bab rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x52fb536b rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7dee62bb rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x97bc361a rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xad9b628d rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb7dc4521 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc940f394 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd8066c44 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe35e7894 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x035e9b2f usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0581204a usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0b1ee95f usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1808c894 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a03f982 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3b743b4f usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3b90e7ab usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x46dee6f7 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a8a6be7 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x507fa8fa usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5790ab55 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x59a2074c usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5c40efa6 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6dc2834a unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8ba4bfb5 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8cb66ce3 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94f2dee9 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x999c8c95 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa40a5595 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa57d05b4 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xae6b59b2 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb2954a9a usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xba8996de usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc14ff5f0 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc8ec4e61 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd0ec1db5 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd4fcc0d2 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd6e156a6 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3a39459 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfb2be385 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x204d2611 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c7e41f4 usb_udc_attach_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5f595b04 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6601ba64 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7c63c677 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8dfb15ed usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9649ca18 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaa77d1b4 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaac0f4c2 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb94dc5b3 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcd073ce9 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce655087 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce80b669 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x14b2dc5d ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xda27ef87 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0208ea11 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x26014949 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3ce63378 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7d5a1e4e usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa439d2d8 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb613c789 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc94a3774 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe381191e usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xea6e7902 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x99d40a7b musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xb92600cf isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x62e27d60 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0bf66a6b usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0cf9a465 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x119f0bb6 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x20be64e6 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2643ccd6 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x26d74621 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x31f346a1 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x376773b7 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3f82e6b4 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x527a5bfb usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x53c438d2 usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x69b9756d usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x77a8f923 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x808ae732 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x86b4d43d usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9f34c7a3 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa61dc0f7 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb8a1c67a usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd6cfc7a3 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd9f6b7ac usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe6b7383a usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x12fafbea usb_stor_resume -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1535f832 usb_stor_disconnect -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1a59f26e usb_stor_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1e3d4553 usb_stor_post_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x27e99f81 usb_stor_transparent_scsi_command -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x299ffdb8 usb_stor_CB_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x39dff0ef usb_stor_set_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3ef47ee1 usb_stor_pre_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x524b499f usb_stor_host_template_init -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6464aab8 usb_stor_access_xfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x69d0a521 usb_stor_bulk_transfer_buf -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x76546ffb usb_stor_bulk_transfer_sg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7f5ceab7 usb_stor_bulk_srb -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x98a2c335 usb_stor_CB_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9ac3e043 usb_stor_adjust_quirks -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9df4c2cd usb_stor_Bulk_reset -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xaea65fc7 usb_stor_probe2 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb3465f47 usb_stor_ctrl_transfer -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbf563bdd usb_stor_suspend -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd28cbc22 fill_inquiry_response -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd874d216 usb_stor_Bulk_transport -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xde7130ce usb_stor_probe1 -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf5313096 usb_stor_control_msg -EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfb762929 usb_stor_reset_resume -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1546ef3d usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4a261aa2 usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x553fb094 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5a152e6b dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6287f3a6 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x67c09975 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7d4027b5 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8cfe1f5e usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x97964137 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9c2016b6 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9d770b24 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xce56f21f usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x280b0f20 wa_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x50356ad8 __wa_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x74d38e5a rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x804b7dff wa_dti_start -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x9a93d33a wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa24d64d3 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb54db614 wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x140b3d99 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2c250c65 wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4281f69d wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x434a2b05 wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x44f964ef wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4ad65354 wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x53e24a62 wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x56aff65d wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6a682ff4 wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x792abc72 __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa2f9e6af wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xaa5525a2 wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbc79b8b5 wusbhc_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdbd3b1cd wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x3a811064 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x7ed4c5f4 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xb1547adc i1480_cmd -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x06bd51fe umc_device_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x38d54b2a umc_controller_reset -EXPORT_SYMBOL_GPL drivers/uwb/umc 0x48951e58 umc_device_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xbfc0f3ed umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc712c25d umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc8b11e7d umc_bus_type -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xcebc51dd __umc_driver_register -EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf829821c umc_device_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x01deffc4 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0bea53c4 uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0ede0fa6 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fd99b6d uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x109219a9 uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x16c4fcbd uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1ef966a7 uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x204beb05 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x22a075a0 uwb_rc_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2617fa52 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3876fb62 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x444432f5 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5643339d uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5d5d1287 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x673ce9ee uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x68d5955c uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x74fdcd7f uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x799b64e0 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7bc56a0b uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7ca21812 uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x841e5bcd uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8ac13183 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8b52da75 uwb_radio_start -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x960d6f2d uwb_rc_put -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x960ebcc5 uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa95151f1 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xae03a385 uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb849aa4b uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb852a016 uwb_pal_register -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb9a83dd4 uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbd0c5825 uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xca916bb6 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdf2d333c uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeb42e55c uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeda4d31c uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf5c219c8 uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf98d1656 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/uwb/whci 0xaa1e4840 whci_wait_for -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x017fc2cd vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0d6d1a8c vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x10fcb566 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x117a61c9 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x29b6e704 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2d6e6d31 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36ea2b45 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x40f4465b vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x416d5dc4 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4a480fcf vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f8490f7 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5812dcc8 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5d7246ea vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5f73d75c vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x73e87832 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78ca2590 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79f771c1 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x86f6c4f9 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8b820b99 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9d13c59a vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xae888d20 vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbc8b3f14 vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6afbf4e vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd7dd2c49 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdaa73a9a vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe5190acf vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf8111709 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf82aa5e7 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfa53391e vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x043b99d6 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1e905649 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x39980d0b ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5d3d9db5 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x85e0fdea ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc7fda59b ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf5d9d5b5 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x43b63a73 auok190x_send_cmdargs_pixels -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x44ff119d auok190x_read_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5c89e482 auok190x_common_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x6da7ea64 auok190x_send_cmdargs -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7ee0b941 auok190x_send_cmdargs_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x949f26e1 auok190x_send_command -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa684a7e0 auok190x_send_cmdargs_pixels_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xc2b6c1a1 auok190x_pm -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xced6b43a auok190x_send_command_nowait -EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xdfec6758 auok190x_common_probe -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xa4134cfc fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x2e564281 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x709f59de fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc57373f5 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xf59079d0 sis_free_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1025a26f w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x3b0e7996 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x4af2c07e w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x52f587ad w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x66a2d503 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9d0b7d2c w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9f8f51fb w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc9489436 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xeb710212 w1_reset_resume_command -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x741e29d6 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcda8285e dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xd171f651 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x40687d65 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4106701c nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x417bfcad nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x721b46be lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcc494708 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd50d4331 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfb84b491 lockd_up -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x013501ed nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x050f3864 nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06e8c79d nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c8c4e8e nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e3d8e38 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e688039 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x108f90ca nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11a5aaa1 nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1262eac7 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12c4d216 nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12f460a4 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13420c58 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16a02410 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a431587 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1db611a6 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eb3cda3 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fc8411b nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20eebc76 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21176455 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28fc4ff5 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cd8fac2 nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cdc3f24 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33db3fbb nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3763506f nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38d9fee6 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39fff046 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a5e02ba nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b4a61b6 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c68a627 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44d0f4f8 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47878fea nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47925f4c nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49fb4dac nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bdc4831 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f38bd7f nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f52957b nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x566c92d3 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5671b892 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57cb0fb7 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5806e790 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59077a6a nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x592b4827 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b98f7f6 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63f6db4f nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65faa120 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x699271a1 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69d35433 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ea60f6f nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f8cd53f nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fdbada8 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70df79df nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x711ff496 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71f8f410 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76aa45b9 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b45b95f unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e4b061f nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fe057be nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x800b1ffa nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x828a6df9 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82ed1145 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84114f50 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x848d5052 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85841cf6 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x859fd1f8 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85ae9255 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a5908aa nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d4201f8 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e1f37ce nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x907ba6a0 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x911601e4 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9656f432 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9774d431 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97f4c714 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a2c39d7 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ad6e5c9 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b556791 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c371ce9 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c85bc02 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d1c07fc nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ee39f3e nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fb40ef4 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2cfad70 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3ccda15 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5c48333 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa600fcca nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6e68f79 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabafad54 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1e9ac8d nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb29addf8 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3c1720a nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3c6ef4d nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4e93e2a nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcf2b76c nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc11b44f0 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc14a1009 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4a47617 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc77920b7 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc98ad2e9 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd037cc6 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdbb6877 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf61d4d0 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd151c238 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3023d82 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd76952a1 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd85321e7 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd87bdf00 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb519af2 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdccc543f nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd656e14 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde48e87d nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe10f05a4 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe625d16c nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9ebeaa0 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9fcad75 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebf3f6e1 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf01e20ef nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf30e3a7e nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf39332e0 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3d4400f nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3f1be0f nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf79d8126 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfac9708a nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb2b06ee nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x9e7d9e58 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01fe4c06 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x077fe7d6 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07c5532c pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0cf3c305 nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d472fbb pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11684193 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x121e7744 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12579b6d pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15950601 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2385749b nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23fb5fac nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24d91428 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x283d9008 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b94eea7 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bf4b1cd nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ec49531 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31e113ae pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32af738e pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39259501 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3daec1ef nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3de5678a pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3f559ebd pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4253727f pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4290f3ea nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b8c2c8e pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6543a346 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69fae082 _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ae7df64 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70c05740 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x747b9405 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b76c9d7 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f5ffc24 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x890de772 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9afb1428 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d2951f5 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9de98341 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e422901 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa01e9dad nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4ec03cf pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xada5a0cc pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2e2b237 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb38a26dc pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb51e1128 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb68c33ad pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc6fed99 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc9f5376 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc69b7fa8 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcee13644 pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd065f8c7 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1b57654 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6e411f1 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd728c1d7 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xecac4730 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed7b4eb2 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1ca2e94 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9caa7ba pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc937e85 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd1671c4 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x2d02a240 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x808e10a3 locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9760ecf3 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x074012c9 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x66982e4d nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4c8a08f9 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x51dd33d5 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7f3dd7c3 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9296df72 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xcc26606d o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd1e2e594 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf9011976 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7aaa7be2 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x88957999 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x91930cc4 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xccf18081 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf02e2d17 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf4f964ff dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2670ad8e ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x640927e6 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc38cbde6 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3cd2a990 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x5c3be739 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe183652e torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch -EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch -EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x1f7814a7 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xdb408789 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x01dbf8ce lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xe5ea4063 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x7d389f36 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x89dd8a2f garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x9ac4a54f garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xae957b16 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0xd0792fe3 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xe5561c4e garp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x3dbebe19 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x4247f7af mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x4b014c00 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x5332ebb7 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x5c549ba9 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xc535d1dc mrp_request_join -EXPORT_SYMBOL_GPL net/802/stp 0x6f14bd49 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0x8bc408d5 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x2d24bd07 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0x790b4936 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0x4c10a77c ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4e7b7a5e l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7c7db017 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7f236deb l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x874bf527 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8c2031ad l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdb9cbfb4 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdc7e284c l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfef808f6 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1bea7c77 br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6b008752 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7929bdf6 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x811dab7c br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9c8738fd br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc1913619 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xdf3af175 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf228fb98 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x1cb76984 nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x4f8c55c9 nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0053e895 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x00d8d163 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x05da013d dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x13f751fc dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x14bd2784 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1e0354a7 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x21438238 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x21e7aa98 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2486a82b dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d32a289 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x38f13d98 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3dab3744 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5009c0f5 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x600ebc0c dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x65aaa1a3 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6a83df02 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6be5d1ec dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80062841 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x846d0c4f dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x84bf0a61 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8b29d8f9 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8f43e745 compat_dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa6efffaf dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xade7ec35 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc9220364 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd11b8934 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd215b2e2 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7bf5036 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4505cdb dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5256155 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe8cbf05a dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xeaaeadb6 compat_dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf88b09af dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfc0e5a4c dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfd10fe49 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x45679e92 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5024842b dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa7ab4017 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcdc4c2b3 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf4c56f92 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfd7f1c26 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x23be1865 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x29ed9bd4 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4c02f6b4 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x82baf86d ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ipv4/gre 0x8b11a9e5 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xfe27dacc gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x067d675b inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x27f91833 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6e2cf055 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa234af75 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc34a1dd2 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf0a61b3c inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x4a9948b1 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0bc66707 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x28cdeca5 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x291465d9 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x359d618a ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5c9be067 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5f4189e3 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x765350c6 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9dcc82b2 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb4058284 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc0602671 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xde918d23 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe58df15a ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe715f09f ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xefdedc7c __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfbb5934a ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xc2f30a50 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xefb2654b ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x5fe9b239 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x012376d1 nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x3cc76144 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x84c35ef8 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9515e877 nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xc243439d nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x238e53a5 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x24d7ddd7 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x27f6f405 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x30411777 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x55d5b77a nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x87708b93 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xd31a2649 nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4dc4cb61 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5c5281cf tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x95ec8e3e tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcf7f6a4e tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xea17e631 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x11265264 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x25ca9cce udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7f9e4da3 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe30020d7 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x08b7a407 ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5162c7b1 ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x84f43544 ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x86447b75 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x998d58ad ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa9319e7f ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xdbb56046 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x8c31820f udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x932a5e21 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xf62d448e ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa0e612ee nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xadf5098c nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xffb5b7d1 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1f0a9da2 nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x3fb158fa nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x4599fd37 nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb4896867 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xe90bf7ad nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xd85930e4 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x187ccdb4 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2b367086 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x64d93152 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6bdfbac4 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd2514178 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xaaea1a0f nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1c3caaaa l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4db7aa39 l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5003c062 l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5c663333 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x84c9f523 l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x914206d7 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x92ea6451 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x92ff3144 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x978410dd l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x99eeb0d3 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa4364a79 l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaf9c2243 l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc82f7570 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd1d0eb9b l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xde2d3fea l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf5166067 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xd2bcfc91 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x01a82e6b ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0e2442b6 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x246f786c wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2df9a084 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4b24255d ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x79dbb024 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x82a772f1 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8d633990 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8d6356d1 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc1109304 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc1fabccc ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc8cb47ca ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdcfb80b1 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdf5d69f5 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe4f68cba ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4104982e nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x547bf81a mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x68cb8ad7 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf2e6cfa2 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x105442f1 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x356c1c14 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3dbc6b07 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x45dcf1ec ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x46f9ad4d ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4abe296f ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x523d749f ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8902337a ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9fb1e1fd ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa1afc490 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbbe5a74f ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbd5df73f ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc0c47c5d ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd0572fac ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe9cecfa2 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xefd80a88 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x716cb571 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x903100de ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xab6fc90f ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe08ab48a unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00276254 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0413f2c1 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04e6dc47 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x061d7c0d nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09a7a3ba nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ab04c5e nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0adccdb7 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c96383c seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14b7a8e2 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1544b156 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15a61ff7 nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a7d9349 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b04ec4d nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21c73093 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24826970 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a37fc32 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e0f7dd1 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fcf23e6 nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x427e30c6 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x436dd947 nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x448f8f4c nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48ac152f nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a293385 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x513677ff nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52b14c11 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x536d1060 nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53d02d8e nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a38e238 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5cb02fa3 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f79a0fb nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62376a92 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6660a5ab nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d7521e6 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e5c05e3 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79199fc5 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79af9f50 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86c9417f nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88f9ffbc nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a6f96d3 nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b633f9f __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b831ec0 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c81ecf4 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8eedc417 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93a74f66 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e9791f0 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa33ccaa7 nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3bf10af nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6ce612e __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0a01756 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb32fde08 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb859f451 nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9b57c42 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbaa5dee1 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd49a400 nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0af498b nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc319d5c4 nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc35746b5 nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5272dda nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7f8915d __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9116066 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc17a0e2 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd69af507 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8b32659 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb8e5eff __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcd59195 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdda8aaaf nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe27b17bf nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4ac6370 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5ebf863 nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe71f80bf __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe88cb945 nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec07fc00 nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xefd9e524 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1f42b7c nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf32b12c5 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7acc7c6 nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf94bddb1 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa98527f nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xff55e2a0 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x29b63444 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x11b20982 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0fe59c8b nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2094e8eb set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x46193757 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5802a56b set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5b19790f set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x70e004bd nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa0159a61 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xad03f21f nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe7d7b4c2 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xeaedfff6 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x25fe1707 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x00cfc492 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x170aa2f9 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6cbfeaeb nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xdbcd7878 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x9d03465e nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xd7fbc56c nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x164a3b87 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x21a5709b ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x331899c3 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x440487ab nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8817324d ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa8766b06 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xec966cdc ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x9557bdda nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x8cca948d nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x85e8b96f nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x93331dcc nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xb60c1069 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xe1000e7f nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x01af1645 nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2037b6e5 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2e8d8aee nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3701ac24 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x41cf3e01 nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x51c800b7 nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc0556331 __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe9909edd nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xed5a19ec nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x70f1512a nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x876162c0 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x28129241 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbcd2feff synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04585194 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x066f64ce nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0dff9180 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1a8bba61 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2943972b nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a463138 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5a7ebda4 nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x72fd072b nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f8ba03c nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9512485 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc5e598c5 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc96493b9 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd0f3accf nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd362d19c nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe41dde01 nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe653f195 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe8c0f58a nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x306f6a42 nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x463794b0 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x50ffee77 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x94dc504c nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9785ae9f nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd25c187a nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd92a1c6e nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5bd6de84 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbc691183 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd84bc648 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xd72de48d nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x2c9bf61f nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x9271df48 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xec6acb81 nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x0b2eb233 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x1c56d089 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x5ede28ea nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb425ea0f nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xc6c5613e nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xf3ea3a55 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x197ea478 nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x8690da4a nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x9632a03d nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x548e06e1 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xac338c87 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x101d2db2 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1c241a34 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3cd4d98c xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3fdbc9eb xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4dea99e9 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x53a4e3f3 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6627ce4a xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x69bcb7b3 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73e8ad9a xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8f26c68e xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x95b4aa59 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc4c73786 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc5503b6c xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcd1c22a0 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd7605b17 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf13e97d6 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf1ce4c4c xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf569352d xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf7d4cd35 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x2e982fac nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x93889371 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xe8d830fd nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x17440e4d nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7bdd2325 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x8179238b nci_uart_set_config -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x10c16910 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6579e02a ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x86c418f4 ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9d866ed0 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9e8f9e97 ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xaa09260d ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe0214ed0 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xeff7e5f2 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf57294ea ovs_vport_receive -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x24d8beb2 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x2586faf0 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x47b7fd52 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x4ab4eed1 rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x51ae1cd2 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x62c6eff3 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x6541f6fe rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x73f7007a rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x874bf863 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x93943ce2 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x95eb4aae rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x97d18cb9 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x99f126ee rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0xa35b7f79 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xa5ef3334 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xa994dba3 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xaa1c589b rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xb1498c91 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xd2dfd640 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xdf3a79b0 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xea5b8554 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xf9e6b81f rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xfc2004bf rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xfd90f1a2 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x3abbd5b2 rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x8f83d4a5 rxrpc_register_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8a91f33b gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa7a6069c gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xff5c8957 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x001d1a43 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00a43834 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01968bb4 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01d9263b cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06a3323a rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x075b350b svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08032e94 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0acae5ee svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c8881c6 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c894fb5 xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da06165 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ec88e28 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f2f12a7 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f69db0c rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1104a599 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11b5c852 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1206ea9a rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x138c88b0 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18c807d3 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bdb388e rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ce7b56c svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e2277c1 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f300558 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x222f22f5 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23bdf027 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2597276e rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x266a89e9 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a875c9c xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2af74603 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b0082ef svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b75aefa rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bc2d2fc xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2db30b71 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3466b008 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35a042b6 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35ab9302 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a27bd59 rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3adf3acd svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d1cb60d xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d9af038 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dae5db7 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e1cea41 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e9d14ab rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40feb667 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42e38a51 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4322dc94 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x441f574a rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44b96d49 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4581a7e3 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45acff0c svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x464ca71f rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4761ba71 cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x479de9e2 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b60ac73 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e434378 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50a9f1bc xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51469271 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51ed0e96 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52eaac9e read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56abba1a rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5705ae81 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5884f5db cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59c422d3 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59c6d915 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a5e0f90 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d1c3f06 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d3d03ea svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ed5ad5e rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f3c0407 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6214dfd5 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63c4997e _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67077ee8 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x699caa2b cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a991840 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bda4c29 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c3c0783 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d583fab rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ee84656 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fd65c63 rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7040ba92 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70bf7ce8 rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70f8bb5a put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71a90f73 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x728ffa56 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72d457aa rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73661359 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x736a294e svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78f2a94d rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79ba5a21 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79bd0955 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c26fbef svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f981ef3 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x808b0776 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80d53159 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8106f11d svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x811d7f2f svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81850f3b rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8202f163 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8394fb4b rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83bec124 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8411a348 rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84503b73 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85370864 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x898e14a8 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a89a93d rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8aaca006 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ad417b4 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bc536c1 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bfa4023 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d3ada74 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dcdc883 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e34fa65 sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fb0ca34 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90dad2b6 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92c244a9 xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x936c6ca2 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93f56792 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x949a1dda rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b302a41 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b76c23f rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c80cb25 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e73f684 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e91ae75 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f340f00 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0676e8b svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0dd2d3e svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1cc52bd svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa29d3a4e xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa509c2fc __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa726ac29 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa96c1b5d rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab197acf cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac0f2fc9 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaca4ce7f xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae576d96 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1db0f9e rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4005098 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb53292a8 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7890054 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb80bc0bd svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8b3ba52 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb3f230c svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb927a84 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd04f086 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd2397ba xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd40326f cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbec2fa04 rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4b2531d rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7dd615c xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9da34ea xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccb8c344 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf39f10f write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd11cb406 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1973de0 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd23a0aa1 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd397b1ad rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd39ade65 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd434e6fe xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd49444cd sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4a16923 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4c9649e rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb6d1c39 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd307479 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd93afcb cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddd5d8b1 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde950e26 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdee9c9f1 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfadf9d2 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe29973fb rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe37947c1 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe481739f xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe59cff52 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe661d561 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7a75b34 rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8721dc3 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9cbd9f9 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb5acda7 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedba4830 rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeb26c6c xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeec292ee rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0c21e4 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefbc88da rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefc3d1b4 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2f35a86 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4a7dbdb rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf83b49f4 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf86aec4c xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8e754a3 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf983439b xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc0f342c svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd4cb34b svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd89514b rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe384d28 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfec6b30a xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x01f78935 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x46fbde71 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5e3f9c75 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x725c740f vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x85f05a02 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9f28fbcb vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa4c58888 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xae232447 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xba916b51 __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdeb3741e vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe0e93241 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe522e1b1 __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xff089287 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0x0943db24 wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0x115253b6 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x52bbf00a wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0x53e9e1d9 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x8c917800 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0x8cb70e4e wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0x98802166 wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0xbb56f568 wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc60e665b wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc8de8123 wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0xdcdd9ed2 wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0xde61294a wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0xe583f6ab wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x02c7a209 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x39b27827 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4921be6a cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4b7bed83 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5404631d cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6163a917 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6b9cd8b8 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6e582ae5 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x89ac83d3 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8e7c2cbf cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9bce9907 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd6aeb74c cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfb2c3972 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x59f464e7 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7465edae ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe44c4679 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfd842eb7 ipcomp_input -EXPORT_SYMBOL_GPL sound/ac97_bus 0x01279c19 snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xcaa3ee23 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xf488b3f6 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd 0x0197ab38 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0x0216cf52 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x04d1e4de snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x07fdcbd7 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x2641ab5c snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0xd148a484 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0xdf3c1107 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1cfa7475 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x22e34388 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x494b21b4 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x68899bf9 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc432ef0d snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xddeee3da _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe1199d15 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf40c1581 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf50bc3a1 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1332020e snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x21e942c1 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2225f050 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x69b8e884 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6f859c77 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8f93bf8d snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa01aa583 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xafb2be7e snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdf4e1ce0 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf74435d3 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfd2567c8 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1b062cba amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4b5e91c8 amdtp_am824_set_pcm_format -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x56b87568 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x77f6b876 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9f62848a amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa926f817 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf85ac4af amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07c54790 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x09bb111c snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12509761 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12f7747f snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x151f3d96 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1df4403f snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ebbea63 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ed37c30 snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x293eada1 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x296b1b38 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ca69e25 snd_hdac_refresh_widget_sysfs -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d034685 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e161948 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31665bd3 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31ba7a4a snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x327928fa snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32f23a08 snd_hdac_bus_add_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x388cc928 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39e7a54e snd_hdac_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x412eef33 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e69692f snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4f73bfd4 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x519045f4 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5797fec6 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5bbb0106 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d62c7ea snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63c88142 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x65444607 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f931ba6 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x745a4bfd snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x755418aa snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b44a3ec snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d9bd33b snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e3213fd snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x805f613b snd_hdac_make_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x923f7696 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x970ea88f snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ae30a5f snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b36550f snd_hdac_bus_remove_device -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e149a9b snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa13ffcd2 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa92cd4bc snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac3c1b3a snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad4b5e7e snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb87569d8 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbce2074e snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbcf43a9f snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc80e7200 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb6619ce snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc4eb260 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcea02953 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd168ad9e snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb890e27 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde4bdd81 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe106532e snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe22cc4d0 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe28d59c7 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe44d4992 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5b2c687 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8672544 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8ff5acc snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec50dfef snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee9ee9c4 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1ba73f7 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf209c8de snd_hdac_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3fa32b9 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf743e353 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfaf0d7c4 snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfdeefb7d snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe898ab6 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfeab0665 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0cc37aae snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4f794787 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7ea1d871 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa6082525 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc8aeb6ee snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcea24aeb snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02156282 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09542242 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bf4286e snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d0e02c4 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ebab80c snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f6a2e2a snd_hda_mixer_bind_ctls_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10a77dac __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11619cba snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x134e2bed snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x149994dc snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x155d0ca9 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19c9a18b hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c5af390 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f78b404 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ffc3bee azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2138ad11 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2346e8bc snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25550ac3 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x279356af snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x287936e2 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2934fd8f snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29c45aeb snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c10d52a snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2dd5d18e snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ee21eed snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30e65c80 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32e676b9 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33c5919d snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3549cc7a __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35552afc snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3618238b azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39eff774 snd_hda_jack_tbl_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3caed4a1 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d4ffac0 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x431b4e74 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45e98a31 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47feb8dc snd_hda_register_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48159b1f snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x485a0044 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c161a75 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4deeac7c snd_hda_mixer_bind_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50655cd1 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x541173eb azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55ec3243 snd_hda_mixer_bind_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x562e4070 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57e56ad8 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b63f05a snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cd99732 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d81cbcf snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61f1388d snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x683adf35 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6891c5bb snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x694f6199 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b3795f9 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c17cf7d __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6dff7368 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70a3600b azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x763aaede snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7726ed4d snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b0d039f snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7da349cb snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e46107b snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ef5a511 snd_hda_jack_detect_enable_callback -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f65f726 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f87c9a7 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ff15f20 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x801ce80c snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81f929b0 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83172498 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84b3c0c6 snd_hda_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x865a4881 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91068979 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95768a6c snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96165202 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x985efc06 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x998a1b15 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b60fe98 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bc53d4c snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e4e0146 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f0801c2 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f650712 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa189c9c9 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4f02ab9 snd_hda_jack_detect_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4f6c972 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa55f1e73 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9dca5e2 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa1a2770 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafe246fa snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb32fc16c snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb385425d snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb60a312b snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7a33f11 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9c68059 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc212321 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc6c200c snd_hda_bind_vol -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc84de48 snd_hda_mixer_bind_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf0fd521 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc638d735 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc65ebcd8 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc77c2d70 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc5b9c40 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4649a66 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd50b3dfb snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5bff270 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd729a462 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd941b311 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9592b2c snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdaae08d8 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc01d7d0 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4dcb74d snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe602c221 snd_hda_mixer_bind_ctls_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe615f43c snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe68c64dc snd_hda_jack_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9cc6c71 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec59cd2d snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeeb83c9d snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeeeea404 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef623f17 snd_hda_mixer_bind_ctls_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2cabace azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf501a335 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf56f605c snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6576bc9 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd26c26a azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe7331be snd_hda_bind_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x028d4302 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x068e2917 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x07c1b986 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0bf96b08 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x24e91f9e snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2b13a73f snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2bec2206 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4e8b9cc0 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x61002f2a snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x78d54ea9 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x884286c0 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8864b96d snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x89dbd734 snd_hda_parse_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8c781678 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x95943a3a snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x96c91839 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xccd6fe00 snd_hda_get_nid_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd5d2bf76 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe08d0bc3 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xee193bba snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfe23567c snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x88308630 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x997b309a cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x4dfeef45 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xcedfeaa8 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x2c5f6c37 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xc73146e2 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xd5d8c7c9 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x49087188 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xd0ef777b es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2432c9e2 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x846d9e3d pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9553f2a8 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xaa17abd2 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5b4da674 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5d335f8e sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xac3665d3 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb76b0dde sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xdebc5e51 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xf61058da devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x446f321e ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xaf55f4f2 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xd15011eb tpa6130a2_stereo_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xdde5ea0a tpa6130a2_add_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x93309f42 ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x36d43ce1 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x4cf57612 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5b7198f2 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x91dfb23a wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x42c4cf2b wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xcc4a465b wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x5036310a fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xaab9233e fsl_asrc_platform -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x006366f8 snd_soc_platform_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01772d5d snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02134555 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0459c0ea snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09297f2b snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fd89512 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x116dde33 devm_snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11864a82 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11ec972c snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14f1e244 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x153dcc88 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1769d580 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x182d2d04 snd_soc_platform_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ae1c8c1 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b2c7308 snd_soc_unregister_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c3cfe1d dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1de0131e snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f5d6912 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x208aa0de snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x221c74a2 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x222a6e35 snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x230d4b35 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23e79a9e snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2434cca2 snd_soc_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25afbc4c devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26471c83 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a81a71e snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2aabcc6a snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c1624d8 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ca1ee16 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ecba744 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3012b23d devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30726df6 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x351a911a snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3572ca92 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3577975c snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38162b82 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38e2f427 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x395b25c1 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bb99232 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cfa9a1d snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e3195f0 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f14cb81 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f3bcff5 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f5c8936 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4157361d snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44f20b48 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4851f003 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48f87baf snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a927be8 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4da38bb0 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x509a5cb3 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5524f440 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55dcf15d snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a985f4b snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c066622 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c9b6210 snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cb3c789 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ea076bc snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x615925dc snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62a42778 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62e84a6e snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6aa62aec snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b0a362f snd_soc_unregister_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c7c8d6a snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d65e030 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e5448d0 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f7ef07e snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x706bfd86 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x721fcdb3 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73be3d31 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b7b947d snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c160a0b snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cb68c41 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ecf9fca snd_soc_remove_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ed8c867 snd_soc_add_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83c9404c snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85d222ce snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8626e2f0 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86ed45df snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8893dfb3 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ac961cd snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b7f23ab snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bd1a616 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c9cd42d snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d78e5eb snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dced6a3 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x932fbbc5 snd_soc_of_parse_audio_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9362f22c snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97ba9571 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98b0d0d4 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99788f44 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d5bd76b snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9dd3a909 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e18ece5 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1853dc8 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3c71fbe snd_soc_lookup_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3fa97e3 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa471334e snd_soc_codec_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5dfad15 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa603ee35 snd_soc_add_platform_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa9a6ad5 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaae080d5 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab2ec0d5 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadf9ea43 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafd5053a snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb33e63b4 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4f1be17 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5bb7828 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb682b283 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7688c58 snd_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb96cfa52 snd_soc_platform_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba7225c9 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb57af2e snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdb79ab0 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbff14913 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc030ceef snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0b3482c soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc34ad14f snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3ae3730 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb08b6ad snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb42aad1 snd_soc_codec_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd7dcc9b snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdf1e3e5 snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd258de78 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3ab9316 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd59768f7 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdae5e2ce snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde3d3f0b snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0f16e98 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe20ef108 snd_soc_add_codec_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe26cf195 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe75f237e snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8af6a8e snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb0bd367 snd_soc_register_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecf51202 snd_soc_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0531293 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf065ad1c snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0a6e975 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4b1f525 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5abd8f5 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5b94125 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5c9da18 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf747c03f snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8be0f2f snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8c9fbba snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf99fd867 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd45c17e snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x01a2cccb line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0d81f796 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x151619b2 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1757e3c3 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2f921970 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3fb52699 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x434ec5d9 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x59f50347 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5d8a26d9 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5da958f4 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8fab22af line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x92ab53d4 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa360b77e line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd21215a2 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdd5f71e0 line6_init_pcm -EXPORT_SYMBOL_GPL vmlinux 0x0009d6c2 ata_sff_data_xfer_noirq -EXPORT_SYMBOL_GPL vmlinux 0x0014ea32 flush_fp_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x006e4f76 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x00722f38 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x008c516b gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x00a3289f max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x00afbe3c ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0x00eeff3b eeh_dev_open -EXPORT_SYMBOL_GPL vmlinux 0x00f822d1 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x0118be7d uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish -EXPORT_SYMBOL_GPL vmlinux 0x01243ca1 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0168f186 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x01856334 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x018ff612 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x019210c1 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x019444ea platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x019e8ba3 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x01acf126 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x01d33b65 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x01d89bb7 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x01dd5576 nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e34001 scom_map_device -EXPORT_SYMBOL_GPL vmlinux 0x01efd8fc crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x0208f48a kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update -EXPORT_SYMBOL_GPL vmlinux 0x022d3bd9 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x0238653b irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x023f03e0 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x023f8715 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x023fbe19 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x0247107d spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue -EXPORT_SYMBOL_GPL vmlinux 0x028c0d11 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x02935b05 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x02a65be5 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x02ad2bba simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x02ad4f7a of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0x02ae57a1 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x02b1709c usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0x02b6efbd gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x02c5fa7d trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x03006151 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x0304d100 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x0320858e device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x033ecf5b subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x034eeeec ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x03519d88 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x03aeebc0 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x03b0bc9d bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x03c2185d usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0x03d25331 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x03dbc5f6 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0x03eca890 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x03f902aa regmap_update_bits_check -EXPORT_SYMBOL_GPL vmlinux 0x03ff51ee pwm_config -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x040387f0 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x0428d23d fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x043aa868 virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0x043b35c5 devm_usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x044920e8 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x045d1f78 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x04724bd4 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04ad4ca0 skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04e2e15e tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x050d3d25 of_node_to_nid -EXPORT_SYMBOL_GPL vmlinux 0x051c0c2d dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x0545773e regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x0586e14c raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x058a67ac sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x05b3f9a4 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x05b959bf page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x05c627b6 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x05cbd5aa rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x05e0eb38 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x060e8a6a ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x06161454 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0654279a led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x0655821d skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x066573ec __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x066b35b8 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x068326cc wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0689ce17 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x069524bb get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x06a0f513 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x06cee329 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x06ec2b73 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x07137b7e usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x07324a69 get_slice_psize -EXPORT_SYMBOL_GPL vmlinux 0x07581dd0 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x07601918 spi_master_resume -EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x0763c403 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x0764c610 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x076ff1a1 unregister_cxl_calls -EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x0787f8f7 of_scan_bus -EXPORT_SYMBOL_GPL vmlinux 0x07999f42 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x07b02b22 kvmppc_do_h_remove -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07c52ed4 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x07c91d9d to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x07cc0d7d gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x07d46e45 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07dba242 of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x07ddd3a8 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x0815a6e5 part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0x08253591 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x0847f8de blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x08510715 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x0855b0db devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x085e3782 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x0886973d tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec -EXPORT_SYMBOL_GPL vmlinux 0x08d91c22 mm_iommu_put -EXPORT_SYMBOL_GPL vmlinux 0x08d98e89 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x08ef61a9 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x08f206b1 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x090a894e regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off -EXPORT_SYMBOL_GPL vmlinux 0x091db247 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x0935d1c4 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x094012c2 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x09424bb5 eeh_add_sysfs_files -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x094e2ba5 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x096d8638 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x098ed72c device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x09b15f4d debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x09b7062d fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x09ccf813 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x09efe0cb perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x09f5b7e4 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x0a2471f1 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x0a4f8286 dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw -EXPORT_SYMBOL_GPL vmlinux 0x0a773b5d dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0x0a7ad7c2 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x0a935990 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x0aaf886b md_stop -EXPORT_SYMBOL_GPL vmlinux 0x0ab79813 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x0ab7f6c9 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x0afa8dce sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x0b00b215 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0c291a serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x0b0de39b pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x0b21bb87 cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x0b296dcd wm8400_block_read -EXPORT_SYMBOL_GPL vmlinux 0x0b3f9926 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x0b415bab mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x0b45e053 edac_subsys -EXPORT_SYMBOL_GPL vmlinux 0x0b478a5d regmap_fields_write -EXPORT_SYMBOL_GPL vmlinux 0x0b5b9dfc driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x0b8d3a70 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x0b9eb743 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x0ba025b9 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x0ba0bd8b bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0x0bae2556 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c09752e stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c1d6267 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c65a653 of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0x0c9c567e ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x0caf75d9 opal_flash_erase -EXPORT_SYMBOL_GPL vmlinux 0x0cb88648 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0cc8c2b2 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x0ce3ee5a mmu_kernel_ssize -EXPORT_SYMBOL_GPL vmlinux 0x0ce665c4 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x0ce6ab66 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x0cfba695 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x0d1e072b of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x0d377fe4 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d53a6af sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x0d73a952 GregorianDay -EXPORT_SYMBOL_GPL vmlinux 0x0d79acf2 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d8c00a4 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x0da77fad generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x0dae251b raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x0dafac54 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x0dbd84ab i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x0dc55e8c __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x0dc6957b get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core -EXPORT_SYMBOL_GPL vmlinux 0x0deb41c4 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x0e1525f8 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x0e21c56f of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x0e582ace blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x0e58bd41 crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0e5be6ad copro_handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x0e6054af __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x0ec611c4 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x0ecfdba8 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x0ee8a6a4 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x0f0a06b6 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x0f15f2f4 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x0f1646c0 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x0f2d7818 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f3a2781 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x0f3daf75 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x0f447028 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x0fdbf478 input_class -EXPORT_SYMBOL_GPL vmlinux 0x0fe05f94 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x0ffa26ba devres_release -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x105fc9df vfio_register_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0x1060793e handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10f6ceb2 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x10f812e2 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x10fe2b3a cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x110ae83d phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift -EXPORT_SYMBOL_GPL vmlinux 0x111a01d5 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0x112d28dc find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x1153a735 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x11949968 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x11aa6480 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x11b1a296 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x11edc984 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x11fc4e9b of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1220ec7e cpufreq_governor_dbs -EXPORT_SYMBOL_GPL vmlinux 0x1225b1c0 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x12409932 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x12618f89 __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x1268facb mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x126f52d7 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x127283e9 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x1288c81d ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x1289954b fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x12d2cb7b dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x12f39429 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x12fba3a3 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x131dcc3c split_page -EXPORT_SYMBOL_GPL vmlinux 0x132336ab ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x132e8b5b led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x1339492a pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x133c131a scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x135e7a66 of_get_nand_on_flash_bbt -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x137257a1 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x1389da84 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x138a9036 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x1392c2c1 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x139ba227 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x13a6de94 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13b778ff driver_register -EXPORT_SYMBOL_GPL vmlinux 0x13cab883 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x13f1c4ec blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x13f47113 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0x1408219a crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x1426ebde ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x1452d737 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x1460488d rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x14658872 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0x147e1f0b irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x148bda41 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x14bce622 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x14dd0d76 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x14dec7fd usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x15000280 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x1519db2f gpiochip_add -EXPORT_SYMBOL_GPL vmlinux 0x152787c4 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x15412a0c usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x154316ad regmap_fields_force_write -EXPORT_SYMBOL_GPL vmlinux 0x15726c99 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x1574f294 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x15958e42 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x15a2bac0 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x15b5e19c of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x15b8b44d opal_async_wait_response -EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x15eef15c add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x16093b24 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x160b5d0c dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x1632c32a nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x165dc82b pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x16996804 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x16bbf1ab of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0x16c2d6c8 dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0x16c7b556 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x16cc72b3 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x16fa14e0 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x17077278 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x1708db77 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x17383238 __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x1792cb17 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online -EXPORT_SYMBOL_GPL vmlinux 0x17c51b93 of_reserved_mem_device_init -EXPORT_SYMBOL_GPL vmlinux 0x17cce6a9 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x18026646 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x183518e8 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x183c0ad0 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x184ccdf1 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1855ab26 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x185df021 i2c_lock_adapter -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x186e8817 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert -EXPORT_SYMBOL_GPL vmlinux 0x189f874d powernv_get_random_long -EXPORT_SYMBOL_GPL vmlinux 0x18ff72d7 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x1902722c ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1916575c dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x192a4417 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x193f3a86 __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x194f261a cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x195620a0 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x1956253d nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x19931c0b ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19a82184 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x19b2a2fe ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a2a0e21 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x1a8ecfad stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1a99a04e fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x1aa65434 reservation_object_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1aba5eaf pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x1abd81a8 scom_controller -EXPORT_SYMBOL_GPL vmlinux 0x1ac4ccd1 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1ad84294 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x1ae87549 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x1ae98b36 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x1afcb2b0 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x1b094ce9 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x1b10e1e3 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x1b1300d0 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x1b2dea44 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x1b647b3f spi_master_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1b692e75 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x1b944714 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1b9664d1 __destroy_context -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1b9e5608 arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x1b9f1911 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x1bbc5a63 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x1bc94298 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x1be30d38 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x1bfe635b crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x1c088134 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x1c0ed758 tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x1c1215bd threads_core_mask -EXPORT_SYMBOL_GPL vmlinux 0x1c150a30 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x1c2ad10a srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x1c2ebafc usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x1c381d10 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5deb7e ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x1c6f130a pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x1c7be029 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x1c7df74c kvm_hv_vm_activated -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c81472c rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c96756a __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x1caac2e5 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x1cbd8d72 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x1cc8c4c4 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x1cdcb566 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x1cf55a35 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x1cfc3a9c usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x1d02b86a virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d283efd regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d652735 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1d7d3d41 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x1d7ef036 srp_attach_transport -EXPORT_SYMBOL_GPL vmlinux 0x1d82136b __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0x1d89bc56 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x1da86ad3 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x1dd9dc66 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x1de539b3 arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0x1e55d831 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e78f282 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x1e79f492 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e89e1f7 save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0x1e8ba3a6 cpu_add_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1eba6b4c __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1edb769e led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x1edc21cb hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x1ef68e2a blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x1f055f7b iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x1f1562f4 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x1f354707 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x1f640817 register_cxl_calls -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1fa0bb01 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x1fa1569e register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x1fad27a0 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x1fc298a9 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x1fc5a459 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x1fcb2b00 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x1fd94e88 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x1fdeb188 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x1fdf1a2e ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x1ff52478 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x1ffdf26d mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x20155a90 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x202c8f36 of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x20394a09 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x20533be6 regmap_fields_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x205ff313 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x20620665 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x206aed58 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x206c527b ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x208641c8 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x20ae64e7 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x20c9d94c i2c_generic_gpio_recovery -EXPORT_SYMBOL_GPL vmlinux 0x20f8fa51 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask -EXPORT_SYMBOL_GPL vmlinux 0x214cdbd8 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x21603444 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x2173fb41 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x2184e12a virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x21a1271c regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21b3059c of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21f33949 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x221299c3 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2256e376 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x2264afd0 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x2280b246 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x228785c1 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x22905da0 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x22b6f9af rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x22cad5ef of_get_nand_ecc_step_size -EXPORT_SYMBOL_GPL vmlinux 0x22ce7eb9 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x22d5a51c vfio_del_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x22d69aa8 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x22dd371d udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x22dd544f ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x22e2c78a pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x231d49b2 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x232a5b8b crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x232d1ada of_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x233dd8d0 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x2349de62 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x237cf9b3 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x237d8571 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x2380e697 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x23849afd ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238ec99e rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x23b2e7a3 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x23b435c8 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x23c4a7da pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x23f6d68e dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x241e9948 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x242254cb pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x2422a1f6 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x245601a0 skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0x246f263f find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x247c48eb netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2482573e task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x248cb2d2 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x24a93d8d of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24aea77c unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x24d5bfbe event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x250a5ad6 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x25485efd usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x25634a09 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x25741eea irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x25c3dc04 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x25da3bbb blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x262108b3 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x264616d8 extcon_get_cable_state -EXPORT_SYMBOL_GPL vmlinux 0x2650f713 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x2667b9fe da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x26816440 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x2694c4e0 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x26a69668 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x26a96c2b irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26b89f00 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26f9873d rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x272645f3 percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0x27392fb2 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x276c02cf br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x27a28290 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x27a7820c register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x280c5c87 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x281318a3 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x281a9391 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x284e70ab list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x28715fc4 tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x28881f28 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x28a4d146 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x28a85783 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x28e4321d pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x28ff99a9 opal_prd_msg -EXPORT_SYMBOL_GPL vmlinux 0x29190632 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x293d9b2d rtc_irq_register -EXPORT_SYMBOL_GPL vmlinux 0x2945f70f copro_flush_all_slbs -EXPORT_SYMBOL_GPL vmlinux 0x294c5ddc of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x295bc0ef of_pci_msi_chip_remove -EXPORT_SYMBOL_GPL vmlinux 0x296c398f skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x2975b027 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x2986753c of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x29924d40 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29b384dc raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x29b90c17 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x29c3fc7d __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x29d2855c tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29ec5a99 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x2a18799d pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x2a38964f dax_fault -EXPORT_SYMBOL_GPL vmlinux 0x2a4c7122 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x2a4cf874 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x2a4eba10 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a68919e scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x2a91c219 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x2abd50b4 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x2ad9b5c3 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x2add62e6 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x2ae08b08 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x2affc481 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b4147ed kvmppc_hcall_impl_hv_realmode -EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule -EXPORT_SYMBOL_GPL vmlinux 0x2b6cf658 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x2ba8a040 arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0x2bd96a64 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2bddba71 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x2bea8491 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2beacc05 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x2bf00673 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c29b634 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c4681fc pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x2c49451e pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c823f8a xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2ccaccae sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x2cd88f51 kvm_hv_vm_deactivated -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2ceb1a4e get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d2540f5 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x2d2bd3eb extcon_get_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0x2d3321dc usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x2d398a41 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2d62ade6 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x2d762c18 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x2d79a65b phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x2da02a55 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x2daa558a key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x2dbf562a usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last -EXPORT_SYMBOL_GPL vmlinux 0x2dd4ac8f regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x2ddb1c4e usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x2df69ddc srp_rport_del -EXPORT_SYMBOL_GPL vmlinux 0x2e1b402c fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e32c72e usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x2e4a4579 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x2e81e330 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x2e9d1db8 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f23848f fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x2f38ef28 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f5a365b tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f6e5606 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x2f7719eb ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x2f87a094 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x2f98aad6 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x2fa80a47 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x2fb8531b bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x2fc7de30 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x2fd6488b subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake -EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x300ff091 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x3059e329 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x3081efa8 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x30889b9f regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x30976b55 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x30998a37 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x309f4945 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x30c9fcfa usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x30edcff2 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x30ffc937 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x312663b6 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x3132c02f regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x3137118e lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x314057d5 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x31426beb led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x314f3de4 napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x315cef54 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x316ee85a devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x31841e93 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x3195afd2 percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0x31bef441 opal_i2c_request -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31ccd5f1 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x32055376 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x320b852b __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval -EXPORT_SYMBOL_GPL vmlinux 0x3228a690 tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x3228bfd0 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x326264ef thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x326d3dde platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x3274497a ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x32864fb6 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x328739e9 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x328b9036 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x32a95e13 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x32af76e7 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c473f4 platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x32e0006b file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x32e01eab ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x32f03861 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x33398de6 mmu_psize_defs -EXPORT_SYMBOL_GPL vmlinux 0x333ecd5f devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x33404423 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x33556303 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x335d2679 __online_page_free -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x3375dd3b spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x33a210b2 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x33a4bcc2 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x33b392c3 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x33c7aef8 pcibios_unmap_io_space -EXPORT_SYMBOL_GPL vmlinux 0x33c9bfc3 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x33db5df0 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x340fa670 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x342238f0 mm_iommu_get -EXPORT_SYMBOL_GPL vmlinux 0x34464e5d regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x345b5f92 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x34af0adf opal_ipmi_send -EXPORT_SYMBOL_GPL vmlinux 0x34b3be71 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x351efe75 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x35534c5f mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35985011 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x35c87623 of_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x35d044e6 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x3621165d debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x362701f7 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x3639fb18 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x366d91ab anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3678426a regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36ae05df sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x36bb9007 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x36c3b15d ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x36c983ae blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x36d64314 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x36d729ed ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x36f16e1c usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x36f3143e sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x36fdc8cd rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x373936e7 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x376e1d04 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x37758a77 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x3779df80 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x377e7523 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x377f2af2 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x37c77ca4 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x37ccb719 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x37d8c668 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x37ddb225 pwm_set_polarity -EXPORT_SYMBOL_GPL vmlinux 0x37e60008 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x37ef4a9d __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x38046311 arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x380ec22f ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x382ee91b usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x3862cb2c debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy -EXPORT_SYMBOL_GPL vmlinux 0x386c591b wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x387103d4 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x38ab32e7 pnv_get_supported_cpuidle_states -EXPORT_SYMBOL_GPL vmlinux 0x38e13517 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x38e9d325 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x38ea5d1a clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x38fbeedd class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x390ae4ef nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x3911ce3f get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x391488a0 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x392d09bb usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x393590ba dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x39492eba crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x394e0cee mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x3984eca2 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x39907a21 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x39a5e9bf elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x39bc294c uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x39c9cee0 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x39cffee0 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39eb5d88 device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0x3a0073e8 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x3a01fd56 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x3a1e9549 inet_csk_compat_getsockopt -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a38dc65 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x3a40b096 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x3a4d4ea7 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aa2898c usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x3adf75a4 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x3b0aa8a3 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x3b205629 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x3b2ae7c0 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x3b6638af nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x3b75139f skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x3b816f87 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x3b84a5df dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x3b860210 rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x3b9a24f7 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x3be42226 regmap_field_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x3be46ffd tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x3bf24fe6 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x3c25fd62 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3c4665e0 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x3c51ea7c opal_leds_get_ind -EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x3c879cb7 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3cab27d5 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x3cb0687e pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd48df8 irq_map_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x3d0a676d tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x3d0ed14f netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d47056f elv_register -EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm -EXPORT_SYMBOL_GPL vmlinux 0x3d6c94b4 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x3d7a8a81 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x3d7ff117 tps65912_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x3d84ac49 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x3d8b9038 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x3d8ceb7d bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x3da52762 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dcbc3f2 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3dede7bd blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3dee095b sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x3df2824f flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x3df8c990 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x3e07e360 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x3e0b61e1 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x3e135c05 blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x3e259239 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x3e48c07f unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e6c24b1 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e935a42 crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x3e9aef76 pcibios_free_controller -EXPORT_SYMBOL_GPL vmlinux 0x3e9b13c6 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x3eb51682 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x3ec0e59c netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x3ed710f7 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x3eed22a4 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f0f0163 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x3f4f9085 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x3f7f92c5 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x3fa170d7 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0x3fb14423 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x3fb2bd8a irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0x3fbf2fae usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x3fd18097 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x3fd9a119 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL vmlinux 0x3fe5fffd vfio_spapr_pci_eeh_release -EXPORT_SYMBOL_GPL vmlinux 0x3fef7431 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x3ff574a2 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x4014fa0a adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x40209445 regmap_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x40220411 of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0x403a50d4 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x4045da30 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0x4047c494 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x4093bfde virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x40dbec71 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x41154521 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x411af192 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x4130fd50 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x416d408b shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x4180cdf5 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x4183d55d arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x419d8aa1 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x41a350bd usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x41a80ab5 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x41bf9127 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x41cac8bf fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41eb72d9 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x41f82b3e device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x42271755 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x423ded4f class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x424cb690 rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x425ccf19 __spin_yield -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x426db544 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428471c6 of_irq_parse_pci -EXPORT_SYMBOL_GPL vmlinux 0x429c3f55 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x429e0800 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x42b6164a virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x42c28d55 wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0x42e8e497 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x4314c587 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x432702e6 mm_iommu_mapped_inc -EXPORT_SYMBOL_GPL vmlinux 0x4327d124 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x4362f8b5 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x438ab229 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43b548dc rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x44173452 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x4421e892 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x4437c5d5 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x44423753 __add_pages -EXPORT_SYMBOL_GPL vmlinux 0x4444cdb8 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x44663354 __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x447281dc usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x4486c79f device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44bc0e9f device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x44bcdeb5 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x44c7b720 extcon_update_state -EXPORT_SYMBOL_GPL vmlinux 0x44cd2353 of_get_dma_window -EXPORT_SYMBOL_GPL vmlinux 0x44f4c46d usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x44f7e6c1 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x44fa280e irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x4508f438 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x451df499 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x452691e5 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x452e3ca7 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x453d8f75 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x453f0d9f inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x4548ba35 tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x4589d9f3 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x458eaa2f call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x45ac8da6 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x45bbe780 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x4603c232 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x460bb86f wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0x463c9479 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x4644d203 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x464f4c69 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x464fded0 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x4663990c __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x4676e6ee sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46a71f83 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x46bad1ff fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x46d6dac8 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x46e0c972 fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0x46f2c861 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x46ff615f ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x470b489b devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x475b2fba pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x476fae18 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x4782203f irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x4788da69 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x47897d1a da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x47d0d114 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x483424b9 reservation_object_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x483fc38b evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x4855d524 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x485a2292 rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0x485aa8fa fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x48812f8b tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x48984c7a gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x489b2654 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x48b4a8ab key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x48e0c0c7 blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x48f6a788 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x491e494a pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x49470934 devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x494e8640 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x49544e20 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x49690570 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x498358b1 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x4994070a ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x4997d7c8 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x49a3a03d ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x49df0363 init_phb_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f4a5c8 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x49f98d3f sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec -EXPORT_SYMBOL_GPL vmlinux 0x4a25d802 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a7b9766 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x4a7fb014 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf -EXPORT_SYMBOL_GPL vmlinux 0x4aa39ddf gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ae8c705 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x4b12116e cpu_remove_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x4b160b68 swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0x4b200584 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x4b2ac7f6 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x4b2d8cb9 shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x4b563e06 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x4b774a7d iommu_add_device -EXPORT_SYMBOL_GPL vmlinux 0x4b8fa9f4 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x4c5242a1 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c645b52 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x4c6b0e39 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x4c70f591 device_create -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4c9033eb rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x4ca5067b hash_page_mm -EXPORT_SYMBOL_GPL vmlinux 0x4ca5c869 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x4cc4f8f9 get_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0x4ccea0de lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x4ce49556 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x4cef4e39 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x4cf939fe trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d0aa421 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x4d0e3240 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x4d27fffe pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x4d585310 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4d79dd85 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0x4dba9aeb device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x4dc63c2b usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4e08984f regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path -EXPORT_SYMBOL_GPL vmlinux 0x4e369947 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x4e482e04 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x4e4dd45e __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4e90d5bb ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x4e9e546c dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x4ea16140 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x4eac4824 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x4ec0f173 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x4ee1b76e __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f56f2ac mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x4f580d2a device_move -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f78f5fe rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x4fa9e23a __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x4fb6fa79 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ff4d22d thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0x500b4b7f srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x50184112 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x501a9704 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x5028ac7b pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x5030512a of_css -EXPORT_SYMBOL_GPL vmlinux 0x5039c4ab percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x507c160c rtc_irq_set_state -EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50924c76 find_module -EXPORT_SYMBOL_GPL vmlinux 0x50a45c9a pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x50c1fd27 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x50c4c8ea fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x50cd7802 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x50df0f02 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f217e4 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x50f85377 bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510e1c71 mm_iommu_lookup -EXPORT_SYMBOL_GPL vmlinux 0x512fc6bb pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x5132fb8e component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0x51449eaa xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x518049a8 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x518d65e1 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock -EXPORT_SYMBOL_GPL vmlinux 0x51c3e475 usb_get_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x51db0dbb sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x51ebe1f8 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x51f3ae13 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x51f71e5c dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x51ff09fa dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x5205e64d disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x520a0cfe device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL vmlinux 0x521f6462 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x522d2bcf usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x5233189c pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x524e8205 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x52678f17 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x527ebf1e securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x52801d2b __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0x52a09678 pcibios_finish_adding_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x52b2b9fc class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x52bf682d sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x532c9eec device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x5331187d sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x533a54cb tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x533b156f blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x53440a40 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x53544af1 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x53564143 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x53573277 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x53578968 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x538cc16e pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x53bf659a kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x53c00d9c ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x53c4ab1f of_overlay_create -EXPORT_SYMBOL_GPL vmlinux 0x53cab4a2 spi_alloc_master -EXPORT_SYMBOL_GPL vmlinux 0x53e211a6 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x54147a32 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x54375162 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x54493174 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x545b54f6 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x5465a321 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq -EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x5483bbe8 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x548d331b kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54ad940c gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x54d6acd3 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x5521a818 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x555826ac __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x557df30f virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x5588879e kvmppc_entry_trampoline -EXPORT_SYMBOL_GPL vmlinux 0x55904426 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5592a255 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x559a770c ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x55a38ea9 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x55a910a6 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x55c6994b ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x55cd1673 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x55dca909 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x55df83d1 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x55e97123 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x55ea2b1b pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x55eb881c __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f11455 kvmppc_add_revmap_chain -EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x55f6328c sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x55fae921 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x560aa1db opal_tpo_write -EXPORT_SYMBOL_GPL vmlinux 0x561a67eb nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56285bba cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x563a8c0b verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x563f1aa8 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x5650e80e led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x56534b62 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x5669af63 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x567d247d swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x569c8abe crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x56a722be virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x56a7ebec init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x56b80d4f regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x56bf3d2f register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x56c19b03 of_pci_get_host_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x571aee74 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x572828dc nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x5737d586 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0x573e23bc alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x5740f7cc debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x5748b32b kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x5753a6b0 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x575b35b6 percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x5761f1fa usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x5767bcc0 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x57770f4f sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0x57825fa1 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x5782c645 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57eed93d __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x5800df79 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x580a1f89 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x581fc6bc crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x5829c932 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x583d7aa9 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x58473105 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x58543fe4 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x586b845f vfio_spapr_pci_eeh_open -EXPORT_SYMBOL_GPL vmlinux 0x588f743b pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname -EXPORT_SYMBOL_GPL vmlinux 0x58aa7dcd of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0x58ae0e58 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x58dd6bda virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x58e15392 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x58ee3abb fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x58f24719 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x59052659 rtc_irq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x59202332 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x59444e4f skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x5947d8bc scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x594eb6e9 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x5961bdc9 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x596ec64c usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x599e6cd2 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x599fd624 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59c79265 _gpiochip_irqchip_add -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59f17b17 usb_bus_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x5a024ecd percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5a253ab0 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x5a2d8dc1 security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0x5a30682f inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x5a34c907 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x5a71c502 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5aac2e79 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x5aca08de splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x5acc3e05 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x5afe5ef8 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x5b0caede phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x5b1867ad napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0x5bb53a3f unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x5bd00a00 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bea60c4 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x5bed0687 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x5bf136d9 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x5bfac416 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x5c12a28b user_describe -EXPORT_SYMBOL_GPL vmlinux 0x5c276584 __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x5c310339 blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x5c3d2d6c usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c5b60eb irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x5c88b150 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x5c913eac extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x5c92adfd sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5cc84f36 of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x5cc99dc6 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x5cd6a96f __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x5cdd1182 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x5cee07ec nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x5cf93687 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x5d3a267f usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x5d723071 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x5d7fcc55 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x5d89f073 bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dc7189b realmode_pfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x5deb4fdd ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x5e0adc0f usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x5e29b6f9 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e56d330 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x5e5b0ce5 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x5e6475d0 seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0x5ee7542e reserve_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5eeedd77 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x5f3c23f1 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x5f4193f4 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x5f9c5179 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x5fd8f398 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x5fe0ebb2 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x5fe25a0a of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x5ff75449 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x601058c6 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x60338b2c regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x60467b06 btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x608d5424 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60a678c6 get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x60b3375f tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x60bd3b5d trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x60bfc743 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x60cca309 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x60d61fa1 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0x60fcd5b9 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x610d0af6 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x6128475c reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x6154c1bb of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x616641a9 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x619f31f1 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x61ab7f39 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x61b69885 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x61bede5f of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x61c52009 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x61d0decf tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x61e75bf8 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x62041687 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x621b4467 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x621ea905 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x624dff0e da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x624e2808 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x62626a95 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x62655dd5 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x626b2feb crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0x627c7dcd adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x627fbde1 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x62a69218 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x62dbd79a da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x63122761 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x631c9ba0 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x63294244 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x635392fa sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x63997633 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x63f53a63 rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0x63fc8535 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x64067853 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x64154a0f xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x642ad087 mmput -EXPORT_SYMBOL_GPL vmlinux 0x642edbc4 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x64491c21 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x6450645a trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x647aadf1 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x64ba4e50 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0x64ba95e7 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x64ed0e71 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x64f1d53c nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x64f3d577 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x651695ee sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x651b728c __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x652964ff component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x65498c4a skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x65616448 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x658630a7 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x65b5c4e4 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x65bae25c sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65dd45d4 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x65ebc150 ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x65ee696f __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x66050325 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x664c0e76 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x664e9e0d dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x666ea9b9 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x66728602 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x66b0ef4a usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x671aa84c stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x67217a48 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x675dc3fa kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x6767a4f9 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x678a4105 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x679bd598 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x67ad6d4b nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x67b53431 xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0x67beeaf3 __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0x67d32f03 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x67df534e vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x67e85de1 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x6839185e eeh_pe_configure -EXPORT_SYMBOL_GPL vmlinux 0x68473059 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x686b9353 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x686edcee iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x68809b9f blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x68851beb shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x68858697 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x689e0d14 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x68a1dbf1 __nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x68a258d1 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x68d65ac7 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6945854d init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x6955c9cf netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x695a8a87 crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0x695deccb ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x69728043 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x69790ef6 __init_new_context -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core -EXPORT_SYMBOL_GPL vmlinux 0x69821c8f rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x698bc886 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x69b7c25d uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x69c9867d tps65912_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x69cb81fd led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x69d65199 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x69d78bff regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x69d84cab tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x69e5b6c7 ref_module -EXPORT_SYMBOL_GPL vmlinux 0x69fb4a7f sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x6a1439bb rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a1e9b8a dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x6a1f4843 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x6a2a9ead crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x6a367b74 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x6a392943 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x6a39a50a dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x6a3d4175 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a642537 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x6a9dc310 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x6aa4d769 md_run -EXPORT_SYMBOL_GPL vmlinux 0x6aa650a8 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x6aaf29f8 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x6ab1373b perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x6ab1446b ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x6ab40e73 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x6abbb822 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x6ac5925d fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x6ac66826 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x6acb8d84 ppc64_caches -EXPORT_SYMBOL_GPL vmlinux 0x6b1901ee da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b2b28ce bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x6b4c9f6b device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x6b609ffe subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x6b69e734 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6bdb2f60 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x6bdc3433 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x6bf2e66e ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x6c071c72 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c1cf725 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c508b78 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x6c6b169e pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x6c6e1378 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0x6cc2fb2c opal_message_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6ccdaa53 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x6cd56861 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x6d0864c3 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x6d108022 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x6d203423 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d4ac67b crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x6d4caad9 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x6d601c5c rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x6d967fe4 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x6da1a43b power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x6dbaa221 led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0x6dbf388c pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x6dccdbaa stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x6dfddc60 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x6e000ffe usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e09b1df wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x6e163672 pcibios_find_pci_bus -EXPORT_SYMBOL_GPL vmlinux 0x6e182eca tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x6e1d1c96 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x6e1d8558 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x6e379526 kernstart_addr -EXPORT_SYMBOL_GPL vmlinux 0x6e3cea03 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x6e6b39a8 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x6e6befee blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e9a45c1 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x6ea0bf65 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x6ea5c13d dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x6ef625e2 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x6f2504fe blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x6f2b8921 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6f3f5477 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6f5fd324 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f871bf8 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x6fc43eb5 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x6fd02668 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x6fd0e33c of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6fe656cd pcibios_scan_phb -EXPORT_SYMBOL_GPL vmlinux 0x6fe7d44c usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7044a2a7 cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0x70499b0b power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x70992487 ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70dea992 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x70e0f41d of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0x70f3758e regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x712e7b7f ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x7157e4c7 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x715db237 trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71708bc8 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x71c71edb fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x71ccded2 kvmppc_h_put_tce -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x71f3485c __online_page_set_limits -EXPORT_SYMBOL_GPL vmlinux 0x720e02f3 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x7223d462 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x7232ec8c devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x7239b95e blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0x726cc777 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x72990c65 securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0x729b48fe wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0x729cac67 gov_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x72b92943 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x72e001e9 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0x72ff2c6b of_pci_find_msi_chip_by_node -EXPORT_SYMBOL_GPL vmlinux 0x7339e441 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x73917215 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x7399be6b pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b276d8 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x73bb8a1d nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73f4022a tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x7414d53b usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x7443b35a __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x74515014 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x74546157 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x747d8e57 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0x74a56a58 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x74a8ebbd blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x74aee4b4 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x74af28ec tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b8a5cf gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x74b8bc22 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x750f9a0d platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x7514e281 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x7538da8c dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x753ad4f4 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x75429428 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x75919861 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x7592cc76 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x7594f181 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x759e590e setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x7618c8c5 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x762f8635 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x76515425 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x76533b16 of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x7656a430 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x765c6d12 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x765d1cc5 ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76acc85e regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x76bce090 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x76f5576b crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x7716e061 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x7748c33e relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x776d52c8 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x77736a65 napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0x777765cf devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b0cc4b dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0x77b455e3 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x77c5f660 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x77e62ccb transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x78001631 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x780b26fb posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0x780edbfe regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x7831b0db nl_table -EXPORT_SYMBOL_GPL vmlinux 0x7832511f phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7850f90d gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785dc8cc sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x78656503 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x78701e20 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x78a5f70f da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78c9d28c ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x78f10999 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x7916be22 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x7936ded7 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x79417fdb vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x795b6af0 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x7963592e percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x79755a19 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x799f1244 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x79aee096 tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x79bf5762 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x79cbe91e dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x79d13934 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x79d9da9a kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x7a0dcb9c gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x7a1c7291 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x7a2c2f14 mm_iommu_find -EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a3ed85a tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0x7a5b8bfe add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x7a6eb962 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x7a91c96b devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x7a9324be ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7aae41fd devres_find -EXPORT_SYMBOL_GPL vmlinux 0x7abbdf85 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x7aef223c mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set -EXPORT_SYMBOL_GPL vmlinux 0x7b21d85c regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x7b2cc796 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x7b4c62c0 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x7b7c6765 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x7b85bf1a devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7b876ed5 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x7b92a43a bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x7b9b49e6 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x7ba11d32 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x7bb7da9a led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x7bbb4670 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x7bc916be dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x7bedeb40 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x7bfbd32e pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x7c35706c blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x7c37bc89 pseries_ioei_notifier_list -EXPORT_SYMBOL_GPL vmlinux 0x7c47b09a ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x7c7d8036 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7c7f378e serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x7caf7c85 shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ce8a9a5 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x7cea6577 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d058e49 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x7d129d11 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x7d1fbc24 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x7d244184 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x7d2aad4c usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x7d2f7f0a srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x7d42288a i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x7d491c2c dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x7d52cfc9 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d945244 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7db3a30e iommu_flush_tce -EXPORT_SYMBOL_GPL vmlinux 0x7db66116 of_display_timings_exist -EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7deddf15 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x7dfd3ecf gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7e37dbac ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7e4db2ae __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e68b424 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x7e70de5d rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x7e8485b6 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x7ea5cca7 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x7ec36ad7 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x7ed0654f pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x7ee8e203 kvmppc_clear_ref_hpte -EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7f0d786d iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x7f11e66b platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7f1b0f97 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x7f1fab43 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f423f6c eeh_pe_reset -EXPORT_SYMBOL_GPL vmlinux 0x7f518334 thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x7f599fc1 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x7f6bcade eeh_add_device_tree_early -EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f810e42 blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x7fa6e601 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fe31972 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x7fe66c77 rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0x7ffd6b11 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x804ea02d __find_linux_pte_or_hugepte -EXPORT_SYMBOL_GPL vmlinux 0x8055a5d0 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x805ea9d9 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x807670bd trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80950352 __online_page_increment_counters -EXPORT_SYMBOL_GPL vmlinux 0x809a897b devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x80b2488e inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x8114b8d6 md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x8117ee8c spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x811af876 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x8141fcd4 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8161cc32 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x817428bc mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x8197664e blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x81bdb701 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x81cbdeda inet_csk_compat_setsockopt -EXPORT_SYMBOL_GPL vmlinux 0x81ce5a91 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x81f577b5 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x822088cc tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x82348a81 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x825e60da ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x826b49d4 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x826b939c irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x82a22a20 iommu_del_device -EXPORT_SYMBOL_GPL vmlinux 0x82d4f786 xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x830bf5fc platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x83374edc x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x834139c8 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x834248a7 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x83f26ba1 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x8401f2af usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x844325ea bus_register -EXPORT_SYMBOL_GPL vmlinux 0x844a65d1 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x84577f31 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x845f5ed2 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x847b4941 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x84af9286 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84ce7a9f swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x84e4d12a do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x84f3a663 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x85013f18 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0x852c00f1 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x852cbfc5 rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x8535da20 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x855c0f7a da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x857fa6cd debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x8590a43c ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x85a0d280 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x85a0fc7f pwm_can_sleep -EXPORT_SYMBOL_GPL vmlinux 0x85c612ef skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85e51a54 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x861a352f __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x864861f4 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x86676152 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x8692bcd3 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0x86cd2550 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x86dd0aaa task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f11859 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x86fdf689 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu -EXPORT_SYMBOL_GPL vmlinux 0x872c6563 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x872eb31a crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x8737d28e rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error -EXPORT_SYMBOL_GPL vmlinux 0x87468f28 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x874eb7fc pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x876d0445 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x876f336e queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x87786dde device_reset -EXPORT_SYMBOL_GPL vmlinux 0x877c77f6 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x879a66d8 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x87b3c0e8 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x87b6e71a smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x87c72900 __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x87d5ea8f pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x880abf8f perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x882c1b09 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x883ecffc class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL vmlinux 0x888de986 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x8892c140 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x889d0be6 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88ad1a0e tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x88b69e2c srp_stop_rport_timers -EXPORT_SYMBOL_GPL vmlinux 0x88b8173a ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x88cbe232 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x88dfc0c1 tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x88ea18a4 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x88eb98f9 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x88f0efa7 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x8908c37b alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x8913c407 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x894de18b dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x894e4fc8 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x894fd529 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x896ea980 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x899d5f43 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x899d7265 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x89b34231 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89c347f6 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x89dbf5b0 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x89f984f9 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x8a057baa sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x8a106ff1 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0x8a1c1887 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x8a475eb0 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x8a53d07b gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ac80821 blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0x8ace1c8f virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0x8ae1e229 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x8b04cd37 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x8b587ac6 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x8b5be554 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x8b60953f regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x8b74afc5 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8ba610e3 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8bd479bd perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8be6fdbf bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x8bfa6be9 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c45b6f1 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x8c4d5b7c rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c94ce62 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8cafc8ba devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x8d1b73fb device_add -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d281e8c fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0x8d6b69a7 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x8d7acc2a nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0x8d9a3c53 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x8db2b993 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x8db80c15 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline -EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e2ea859 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8e3e7144 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x8e54634b cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x8e65905b devres_add -EXPORT_SYMBOL_GPL vmlinux 0x8e65a3bb devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8e9f02a6 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x8ea94190 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8eb5b71f debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x8edb21c7 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x8ee7b3eb usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x8ef460ff cpufreq_table_validate_and_show -EXPORT_SYMBOL_GPL vmlinux 0x8ef6bd8e spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x8f04c21d led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f25f5d3 blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x8f2e1e32 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x8f3b6594 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x8f3e58c2 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x8f415b3e tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x8f5026ef vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x8f60bf16 __remove_pages -EXPORT_SYMBOL_GPL vmlinux 0x8f61f248 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x8f6681c1 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f94456d pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x8fda208c gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x9006eeee serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x90100826 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x903930e6 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x90439a5b platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x904c65cc rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x906c905b usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x9082a770 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x9092ec2a serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90c307c8 of_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x90c319ac __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x90c68884 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x90f83c0a __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x91038744 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x910673a9 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x912c1f78 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x916da9a0 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9171a445 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x917a0f7b rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91e7d5de regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x921d85cf pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x9221dafe rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x9239c5f6 of_pci_msi_chip_add -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x925a1812 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x925e7ca6 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x9264a475 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x926c7a09 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x9282488b put_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0x92848d77 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x92988a69 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x92d4f0b5 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e3d265 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0x92f59a6b trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x931770df phy_put -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x93311080 opal_flash_read -EXPORT_SYMBOL_GPL vmlinux 0x934110fe usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x93910cbb inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x9391f60f sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x939a9a52 eeh_pe_set_option -EXPORT_SYMBOL_GPL vmlinux 0x93b425bc rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x93c9bf1b ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x93e2fbd4 default_iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x94093a79 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x94176c08 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9424d399 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x946708ef wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x947a4cd2 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94ce81c2 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x94d0ada7 flush_altivec_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x94d972b7 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x94de8dc8 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x94e2ed2f crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x951ce607 crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x951f5913 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x954e46ce ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x9559f8ef devm_rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x956c4779 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x9570e54b tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x95745221 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x957832a2 pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x957d82eb usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x95bb5655 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95d0edb6 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x95fa8d94 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x95fdac21 tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x96495ba8 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x9652bfe1 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x96778c2c cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x967e7ab4 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x9680dbb7 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL vmlinux 0x96a3bb2a pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x96b2c34c __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x96b3df78 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x96c05120 device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x96cddffb inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x96cf3563 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x96e8b6ba blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x970a61f8 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x971e904e pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x97244753 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x9735f061 register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x974002c9 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x977070ec bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x977d7c68 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x9780c464 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x97896063 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x97a01819 iommu_tce_clear_param_check -EXPORT_SYMBOL_GPL vmlinux 0x97a6b3e7 iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0x97b48a36 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x97b60fbd shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x980a6230 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x98263cbd con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x982d1035 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98418304 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9878fcd6 arizona_of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9884213a cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x98a02a70 register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x98cb2290 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x98cc5bd9 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x98e8514e ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x98e8d0a7 skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x9905c77b crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x990be411 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x992a57d7 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x99368d65 kvmppc_update_rmap_change -EXPORT_SYMBOL_GPL vmlinux 0x99436add device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x9955db1e pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x996526c3 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9975831f dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x9987e6e9 opal_get_sensor_data -EXPORT_SYMBOL_GPL vmlinux 0x998d32d1 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x9991157c rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x999cc795 wm8400_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99d3f295 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x99da657d relay_open -EXPORT_SYMBOL_GPL vmlinux 0x99da7205 mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x99e9d517 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x99ff8d08 opal_invalid_call -EXPORT_SYMBOL_GPL vmlinux 0x9a013dbf tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a16740d pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x9a16e6f5 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x9a1797f1 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x9a201d74 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x9a2befb8 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x9a433428 swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x9a4e622d vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9a8ebc71 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x9ab36df8 irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9adf08c3 mmu_linear_psize -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9aec4793 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x9af13b7d sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x9b001f55 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9b0491f0 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x9b0dfef6 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x9b0f0eb4 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x9b3e2a4e perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x9b55947b scom_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x9b5ebbec ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x9b67b91a ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9ba0889e pcibios_map_io_space -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9bb9861d kvmppc_invalidate_hpte -EXPORT_SYMBOL_GPL vmlinux 0x9bbd6dbf screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x9bcc7fbd blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0x9bd6a344 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9be86762 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf5cef6 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9bfcdf5f serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x9c1f9832 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x9c275c38 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x9c3e0d31 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x9c434cf8 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9c537564 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x9c6f9023 component_del -EXPORT_SYMBOL_GPL vmlinux 0x9caf190a arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x9cb0df4b trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x9cb60c58 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9d028076 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x9d27c1a9 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x9d2ef950 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x9d3ed2a7 rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x9d6bb08e rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x9d9004ef of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported -EXPORT_SYMBOL_GPL vmlinux 0x9db8e0db stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x9dc70df5 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x9dde413d ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9df7e540 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x9e2d8900 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x9e45d71c root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e4a7da9 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x9e52599b dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x9e59ca4f wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9e5d47c6 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x9e7d9f09 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x9e8970d2 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x9e8bcd79 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x9e954b94 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x9eaabf0d cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x9ec6eeb8 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x9ed1b4bf anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x9ed217d8 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ef5c639 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9f0a4582 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x9f1cc7cb regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x9f67bfec bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x9fce716e uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0xa02d8d81 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xa049692a ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xa05e43d9 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio -EXPORT_SYMBOL_GPL vmlinux 0xa0b7b8ab cpu_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xa0fadf92 unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xa1015538 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xa11b00f1 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xa13bc792 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xa161be58 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xa16d8c97 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0xa1739d84 nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xa178f012 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xa17f227e input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa18becca wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa1a7d69f dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0xa1acd481 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xa1aef969 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0xa1d047a3 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xa1db5263 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0xa1df41a7 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xa1e2652f pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa2546a6b __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa26e1ac0 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa279f219 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xa2aa8131 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xa2ac6bde blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0xa2b24eb7 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2d0359e xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0xa2f2e197 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xa30d9142 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xa3116c87 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa31dbe15 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xa322cea3 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xa3396604 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xa33e0782 regulator_can_change_voltage -EXPORT_SYMBOL_GPL vmlinux 0xa363a2e1 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0xa366b762 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xa384918b pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0xa38541f3 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3c6f632 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xa3c7aa86 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xa3e16693 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa40adae4 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xa40af26e dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xa422e6c5 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa4411fe2 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0xa455175e pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa49533f4 eeh_pe_get_state -EXPORT_SYMBOL_GPL vmlinux 0xa4b22ba0 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xa4be06ae spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0xa4ca5dca usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xa4e13925 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xa50fcb1a skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xa55a936f sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0xa5910043 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xa5942c1d fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xa59c3db6 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq -EXPORT_SYMBOL_GPL vmlinux 0xa5d821bd reservation_object_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xa5f0791e rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xa5f1df92 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xa60fbf6c trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa62db9e9 iommu_tce_xchg -EXPORT_SYMBOL_GPL vmlinux 0xa6443335 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa6474c5b cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa699588a device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0xa6ae7c41 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6b27e70 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xa6c01671 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6eb3bbc devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xa6eded6c opal_xscom_read -EXPORT_SYMBOL_GPL vmlinux 0xa6f4fbc1 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xa721bc3f opal_rtc_write -EXPORT_SYMBOL_GPL vmlinux 0xa72435aa crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xa72adeae dbs_check_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa72fa7ec public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xa77269c2 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xa79228dc dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0xa796b52b tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa7d1f3c9 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0xa801be4b sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa80585ff of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xa82b90d0 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xa834d0fb page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa85427a0 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xa86b53cf vfio_group_get_external_user -EXPORT_SYMBOL_GPL vmlinux 0xa8b05c96 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8c53f6f digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xa8d065a1 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xa8f1a677 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xa8f1d69a sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xa91764fd __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xa91edb29 seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa934e5b5 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xa957cb06 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xa965f30a of_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xa97fabd5 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xa99af367 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xa9a39731 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xa9aa1b00 opal_poll_events -EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xa9ce53f2 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e838db crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xa9f4d11d usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xa9f789c2 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xaa3eae4f __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xaa5f939f fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0xaa60cdfc thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xaa62d6dd ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xaa6b4703 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xaa8437a2 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaaecf57 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xaac14a5a __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL vmlinux 0xab68d694 crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab6ebe71 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xab9d890b crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0xab9f7cae get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0xaba29e3b sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xabaa61b4 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabccece8 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xabda3310 of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0xac0624b4 vfio_spapr_iommu_eeh_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xac36b91c dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xac51f620 copro_calculate_slb -EXPORT_SYMBOL_GPL vmlinux 0xac539279 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xac633ab7 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xac71323c stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0xac7dd8a6 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xac81c11b fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0xacbaf42c of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0xacdc8ce7 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xace01442 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL vmlinux 0xacf5756d tps65912_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features -EXPORT_SYMBOL_GPL vmlinux 0xad3d2141 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xad5f4790 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xad8d2717 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xad9393de rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xadc10794 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xade865e7 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xaded9da1 perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae070a95 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xae168b4b crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0xae20cbd3 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xae2fc506 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0xae529622 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6eaf93 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all -EXPORT_SYMBOL_GPL vmlinux 0xaec9921f hash_page -EXPORT_SYMBOL_GPL vmlinux 0xaef849c0 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xaf01bc7c of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xaf0adede dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xaf125077 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xaf25f25a raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xaf279112 opal_leds_set_ind -EXPORT_SYMBOL_GPL vmlinux 0xafa99cce register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xafaccb26 scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0xafbddaed crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present -EXPORT_SYMBOL_GPL vmlinux 0xafde2d7d blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xafe5c00a pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xafe98813 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xaff1a26f __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xb01676e7 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xb0253ea3 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb048182e mpic_subsys -EXPORT_SYMBOL_GPL vmlinux 0xb05b39a5 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xb05cc52a find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xb0666da9 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xb089ca19 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xb08c5329 component_master_add -EXPORT_SYMBOL_GPL vmlinux 0xb0a2a7e9 srp_remove_host -EXPORT_SYMBOL_GPL vmlinux 0xb0aaf3a6 ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0e4160f pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xb0e9942f tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0xb0f8ee74 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xb0ff4977 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xb108f41a iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xb115b591 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb15a4baf pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0xb166c12f spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb184438a of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xb192aa0a dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0xb196f8f4 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xb1b7c607 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0xb1bb6922 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1c73a37 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xb1c78ee0 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xb1cff981 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xb1d0dd15 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xb1dc756a ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1e9632c vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0xb1f6abd3 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xb20acea0 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0xb21e1284 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb22c3bd0 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0xb2361892 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0xb23b1e2a iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xb2641f80 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb27b967d ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb2812c01 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xb2d1bbf4 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb3004306 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0xb3087fad irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0xb31b8eb7 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xb32021c5 __put_net -EXPORT_SYMBOL_GPL vmlinux 0xb32f6272 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy -EXPORT_SYMBOL_GPL vmlinux 0xb381562f spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xb39c02f2 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0xb3c483cb rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xb3c56c2d ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xb3d12da9 skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0xb3d29dbf spi_unregister_master -EXPORT_SYMBOL_GPL vmlinux 0xb3d7d948 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xb3ea89b2 blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0xb3f27ce9 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xb3f9be49 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xb3fa0040 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xb4400c52 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xb46a306c wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xb46f7e75 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns -EXPORT_SYMBOL_GPL vmlinux 0xb490c66d mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xb495aced of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xb49c2087 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xb4b72dcf to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4cf799a net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xb4d7fe21 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0xb4e90e23 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb513e680 fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0xb51e4ed4 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb52e61bf pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb549a2d6 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xb57cb466 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb59ba952 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5a4869f ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xb5e8bcdd key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb5fba80c kvm_release_hpt -EXPORT_SYMBOL_GPL vmlinux 0xb6008a53 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0xb6061e5d pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xb60ad49a of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq -EXPORT_SYMBOL_GPL vmlinux 0xb62413c4 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb63a8e7c ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb643c250 xics_wake_cpu -EXPORT_SYMBOL_GPL vmlinux 0xb66faf98 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb67eb0a3 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xb683f04d aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xb685e20f pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xb68b133c led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0xb68dfffc __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xb722f7b4 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb7393bde inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xb753a1cc shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xb7671684 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xb7683798 nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xb79fc7a0 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xb7ae7809 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xb7c3c453 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0xb8230d18 agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xb8242661 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xb82fa2bf __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xb836ec33 cpu_remove_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0xb83a828b kvm_alloc_hpt -EXPORT_SYMBOL_GPL vmlinux 0xb83c18a1 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xb840e03f power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xb846f676 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xb852dcc0 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0xb855ddd6 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xb857dd8e tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xb862d99d nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xb8632c9b spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0xb8670a5a dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb88e104d get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0xb8c668b6 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d4b577 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb8e8b3bd wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb8f6b1fd skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xb8fa0f74 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xb976dae1 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xb97d70e2 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xb99e7062 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xb9a404c9 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9cf60a4 crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9e466c1 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xba0aadba ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba4145aa crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0xba9e79ea list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbaf32cc1 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb388a91 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xbb42c35e devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xbb6d60f5 extcon_set_cable_state -EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0xbb8fc0db transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xbbb9b116 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0xbbc5213b irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xbbc7a02a i2c_unlock_adapter -EXPORT_SYMBOL_GPL vmlinux 0xbbf6f5fc blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0xbbf84b31 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xbc14f9b0 wm8350_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xbc26a2c0 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xbc43d686 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xbc63b7db fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7f0b56 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xbc8a6fa0 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0xbc935ec9 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbd117405 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xbd1a04f6 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xbd2a9905 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xbd3871d5 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0xbd3f01e9 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd494db4 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xbd758130 irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0xbd7f3443 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xbd8b4d8c pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xbd9e512f pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xbda9f5d1 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xbdb86166 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbdd4a7d2 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0xbdd60ea9 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0xbdf41a75 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xbdf639a1 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0xbdfbcb81 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xbe061f4e scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0xbe0ba61c agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0xbe18181f flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe1d0cfd sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0xbe1fbbde mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0xbe2f25ef skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xbe37061c wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xbe471cdf opal_rtc_read -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe6c1f66 pwm_disable -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbea971c0 sdio_run_irqs -EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbec8d1c8 analyse_instr -EXPORT_SYMBOL_GPL vmlinux 0xbec9596c ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0xbecfdd92 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xbf36fbb7 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xbf3c084d rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xbf46fb5a crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0xbf5c1ee8 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xbf688879 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xbfa48f5b sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xbfac30b8 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfcb312e cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0xbfda98d2 shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbffa82bc param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space -EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc03540bf ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xc0493f3b regmap_field_write -EXPORT_SYMBOL_GPL vmlinux 0xc05b7e7a ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread -EXPORT_SYMBOL_GPL vmlinux 0xc06cb719 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xc081d70f ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc08a363a tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xc09dad5f __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0c287ce fsnotify -EXPORT_SYMBOL_GPL vmlinux 0xc0c9f6a7 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc12dc669 nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xc12dd76e gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xc135388e find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0xc13e2047 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xc13fbaf0 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xc1404114 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc1a3ff03 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc1b68f93 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc1b88640 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc1bf6b9c sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xc1bff329 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL vmlinux 0xc1e72610 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc1ee483d devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xc2185667 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xc221b8a2 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xc2230aa1 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xc2257dd3 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc235f343 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0xc2433792 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0xc24729f5 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xc2507922 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xc26f2a18 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xc280d0c8 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc2ab6746 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xc2b9ba75 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc2c6dd27 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xc2e00d49 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xc2fdaaf9 cxl_update_properties -EXPORT_SYMBOL_GPL vmlinux 0xc321e9b6 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc32e77e0 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xc32f7976 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc339f832 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3434e00 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xc34a38e0 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xc34c1920 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xc35d2382 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0xc3678327 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0xc3719e8f bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc37bd265 dma_request_slave_channel_reason -EXPORT_SYMBOL_GPL vmlinux 0xc37f402b wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc3a63181 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xc3b15bf1 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0xc3b19454 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xc3b4be35 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xc3bfa171 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xc3c01ca1 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc3cc7b3a kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xc3d39bf0 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0xc3dfdaf4 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xc3e184f1 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc3fcf731 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xc425bb9c init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc4659a86 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc4767ae3 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc48a5f83 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL vmlinux 0xc4a16a61 unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xc4bf1ee7 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc4c3fba8 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4d2b8bc device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc520f4e9 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xc52d9ba8 dma_buf_kunmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0xc5404764 devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc551ab4d security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xc56bb2fe debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc588ebab l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc5b1f16e spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0xc5cd7fc2 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xc5e2fc00 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0xc5e5a9fe kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xc5e7c3cf virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xc5fa2861 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0xc6067187 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xc630f2e1 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xc634e04b __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xc63b174b pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xc647e02c wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc669e0fa to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc679741d cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6b17f71 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xc6b628ee iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xc6bea9e8 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xc6c69a8f opal_flash_write -EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xc6ea5b1e iommu_map -EXPORT_SYMBOL_GPL vmlinux 0xc6efe567 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc747d8d5 device_del -EXPORT_SYMBOL_GPL vmlinux 0xc74b5546 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xc75aef47 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xc766225b regmap_write_bits -EXPORT_SYMBOL_GPL vmlinux 0xc76799fb tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0xc77015c3 bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7b15e41 dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0xc7be6fce __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7e2173f tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc801af2e usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xc81e02a6 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xc861bc1d sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0xc8624aeb usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xc8695c36 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xc86c170b ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc8867136 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xc890d98a blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0xc89879e2 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xc8abb90a fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8afe6a3 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc8e5a545 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xc8fa3e49 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0xc8ff6884 eeh_add_device_tree_late -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc9167331 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xc93b2594 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xc93b3ad6 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xc93bf12c of_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xc93c07c5 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc95eb3d5 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc96af2e2 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc975d596 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level -EXPORT_SYMBOL_GPL vmlinux 0xc99e9a0a debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xc9a239bf irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xc9ae58cb tps65912_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc9c88873 kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0xc9cdd2b1 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xc9d6f7ea extcon_unregister_interest -EXPORT_SYMBOL_GPL vmlinux 0xc9db628c irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9ed2e57 rtc_irq_set_freq -EXPORT_SYMBOL_GPL vmlinux 0xca00645b get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xca07b0b8 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xca0f3d0a unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xca7d123b blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca8d895c crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xca94ffc0 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xcaadc58e ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcacb6d6a key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xcae94807 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xcaf59fdc devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xcb02ce71 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xcb04c8d9 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb25e703 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xcb67ee42 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xcb756b6a inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xcb8b9c28 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xcbb742af of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xcbc2632a pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcc1c0cc7 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xcc1dafa6 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xcc2ba30d list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcc2c0362 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xcc380920 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xcc53b11e handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xcc56bb39 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xcc6deeed __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0xcc83dbe3 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xcc842aa5 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc937fdb bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0xccc793dc rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd34672 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0xccd609e0 sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0xcce454a6 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xccf345df put_device -EXPORT_SYMBOL_GPL vmlinux 0xccfe2813 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xcd050970 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0xcd0f2426 devm_led_classdev_register -EXPORT_SYMBOL_GPL vmlinux 0xcd0f5432 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xcd35b412 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xcd512be3 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xcd6cada2 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xcd7394d5 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xcd7d74a9 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcde17bad ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0xcde1c09e rtc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource -EXPORT_SYMBOL_GPL vmlinux 0xcdf4a13f da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xce17c4ba powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0xce1c7c3e regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xce379a53 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0xce385bb0 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xce394103 iommu_tce_put_param_check -EXPORT_SYMBOL_GPL vmlinux 0xce4b40d4 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xce50fa06 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce8117f1 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xce832309 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xce89bebc bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0xceaf5aee device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xcebd9ee4 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xced774ba modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xceea2e89 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xceecf5e7 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0xcef74f26 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xcefa4d0d trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xcf196c29 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0xcf4973c8 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf611265 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcf719642 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfc0641d nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcff5ecca bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0xcfff9ee4 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd00b0e59 user_update -EXPORT_SYMBOL_GPL vmlinux 0xd01afd3f opal_tpo_read -EXPORT_SYMBOL_GPL vmlinux 0xd01f8077 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xd022339d __giveup_vsx -EXPORT_SYMBOL_GPL vmlinux 0xd02f4591 spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xd0361e3d bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd0504bdf inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xd05b71eb regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd070dc8c gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xd0771b4a iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0xd0954d1b tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xd0a09888 devm_spi_register_master -EXPORT_SYMBOL_GPL vmlinux 0xd0a5c411 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xd0b87a24 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xd0bb77fc vfio_virqfd_enable -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0cbd217 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0xd0d33b40 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xd0fb4eae platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xd100f51f usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xd1212f9e iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0xd1524095 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd18ceb93 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xd18ea05a pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xd1b70863 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xd1be5a88 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xd1dbb169 __module_address -EXPORT_SYMBOL_GPL vmlinux 0xd1dbdc21 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1fcad0a ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd2128d51 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd2193a55 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xd21a8d4c usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xd22945c7 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xd2460966 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xd2489f23 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd249f054 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xd250808b pwm_enable -EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd269fa88 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd2745a50 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0xd278fb00 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xd298547f tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xd2a3cee9 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0xd2b3cc8e vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xd2b50872 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0xd2fd1fb6 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd33dfde2 device_register -EXPORT_SYMBOL_GPL vmlinux 0xd3743e73 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xd374eb33 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3cf9048 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd4193092 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44ba481 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xd4597c7e sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xd4715b26 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xd4805238 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xd4810c90 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xd4a0c652 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c535dd tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0xd4cee4a1 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd4f77900 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xd50194e0 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0xd51f7540 eeh_pe_inject_err -EXPORT_SYMBOL_GPL vmlinux 0xd5238149 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xd53c9d70 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xd53d50af devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd549477b ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xd5596d48 opal_xscom_write -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0xd589594d put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xd58b9ace dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0xd5b1a834 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5ff869f pcibios_claim_one_bus -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd615ab0d dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0xd6178e0d single_release_net -EXPORT_SYMBOL_GPL vmlinux 0xd62bd029 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xd645758c of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0xd647ed57 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xd64a604b sysfs_remove_device_from_node -EXPORT_SYMBOL_GPL vmlinux 0xd64dae62 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token -EXPORT_SYMBOL_GPL vmlinux 0xd6b28897 rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xd6d47d34 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd71d9ec0 regmap_update_bits_check_async -EXPORT_SYMBOL_GPL vmlinux 0xd737b530 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0xd74d22bb serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd780da5e da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0xd7843d3c spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd784e5bc pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xd794ce5a apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0xd7953e62 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xd79fb371 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xd7a3c1e1 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xd7bb0031 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xd7cd62e7 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xd7d35132 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7de96d5 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd7e4449e srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0xd7f4ec02 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xd81a190a devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd8263870 mmu_slb_size -EXPORT_SYMBOL_GPL vmlinux 0xd828a786 unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0xd85a8d70 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd8752aa1 get_device -EXPORT_SYMBOL_GPL vmlinux 0xd875d91f crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd87ccd05 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xd87d8578 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd884feb5 pcibios_remove_pci_devices -EXPORT_SYMBOL_GPL vmlinux 0xd895b425 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd89764da phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xd89dd601 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0xd8a43d26 of_get_nand_bus_width -EXPORT_SYMBOL_GPL vmlinux 0xd8c786f2 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd8c89a1e srp_release_transport -EXPORT_SYMBOL_GPL vmlinux 0xd8cb9bd3 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xd8cd5edb crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0xd900f3f6 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0xd9125177 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xd93e8e0e of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0xd9555e0a devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd97878a7 mm_iommu_preregistered -EXPORT_SYMBOL_GPL vmlinux 0xd98f5a68 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xd99afee2 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xd99c1c17 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xd9aafca7 of_get_nand_ecc_mode -EXPORT_SYMBOL_GPL vmlinux 0xd9d81400 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xd9e3992d bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9f48d09 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xda016eff usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xda06d4b9 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xda3efe4d pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0xda59a0c3 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xda61d3f2 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xda63e070 kvmppc_do_h_enter -EXPORT_SYMBOL_GPL vmlinux 0xda913c9c __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xdab56436 wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0xdada4d97 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb012757 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xdb208848 eeh_dev_check_failure -EXPORT_SYMBOL_GPL vmlinux 0xdb22aecc tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0xdb2357b0 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xdb23fafb rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0xdb2918c0 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb6d4e75 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xdb7c0c4f securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xdb88a285 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xdbb1f87b pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xdbb57869 ping_close -EXPORT_SYMBOL_GPL vmlinux 0xdbb83fc7 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdbc4419c pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0xdbcc7703 user_read -EXPORT_SYMBOL_GPL vmlinux 0xdbd42692 of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xdbdb07ec shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc1c379d __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xdc21405e fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0xdc510ba4 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xdc5544e6 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc57ae2d of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc856fe1 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xdc859e77 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xdc8ed5d2 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xdc9330ab __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xdc9586f0 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca0c821 regmap_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0xdca1c529 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0xdca4060a mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xdca6004d regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xdcb0e8ec irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xdcca7457 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xdce068df crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xdd0ecf5d irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xdd1d920b cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xdd1f0793 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xdd21865f blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd326e5b devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd3f71b7 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0xdd58b2cd tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xdd5a4e23 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xdd7716f3 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xdd8569a1 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xdd991465 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xdda62c86 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xdda73653 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xdda922d2 trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xdde1c9c7 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xddedea32 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xde0997b5 eeh_iommu_group_to_pe -EXPORT_SYMBOL_GPL vmlinux 0xde2ed61d devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xde389427 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0xde49a0e2 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0xde54389c ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xde633826 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xde7005e0 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xde72bf9f dma_buf_kmap_atomic -EXPORT_SYMBOL_GPL vmlinux 0xde7a8990 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xde7e80f6 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xde8b1e1c tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xde9cc1b3 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdead1634 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xded96ca2 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xdedf7697 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf162086 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0xdf4c4e5d pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdf5436b0 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xdf5a2d83 aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xdf5d237d ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xdf71fbd3 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdf8f4683 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xdfe62afe ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe0169b20 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0xe0291803 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe043a2f2 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xe051214a blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0xe05b2a0f sysfs_add_device_to_node -EXPORT_SYMBOL_GPL vmlinux 0xe06b2b25 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe07e9660 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe08b8d3f remove_phb_dynamic -EXPORT_SYMBOL_GPL vmlinux 0xe092d024 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xe095f2f5 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xe09e3183 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xe0dce757 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xe0dcffb9 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xe0fa6e5e of_get_nand_ecc_strength -EXPORT_SYMBOL_GPL vmlinux 0xe12d8f89 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0xe13e6e3e regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xe1510fad usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe1991adf __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xe1b09df5 devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1c0f402 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xe1c31661 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xe1fdac19 flush_vsx_to_thread -EXPORT_SYMBOL_GPL vmlinux 0xe21f848d nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe2457597 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xe263ab78 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xe27498d7 fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength -EXPORT_SYMBOL_GPL vmlinux 0xe28cc861 extcon_register_interest -EXPORT_SYMBOL_GPL vmlinux 0xe295ff71 driver_find -EXPORT_SYMBOL_GPL vmlinux 0xe29c3284 __dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0xe2a2b67c kvmppc_h_get_tce -EXPORT_SYMBOL_GPL vmlinux 0xe2bb77f7 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xe2c59841 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xe2d44c8b rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xe2fc7e10 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe3135f87 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xe39a9423 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0xe3c849ce ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xe3d7750e btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0xe3e4c8ff devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xe3fc41bf __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe449a6f9 __class_register -EXPORT_SYMBOL_GPL vmlinux 0xe452d689 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xe465ecf4 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe469fcaf regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a5434e bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4f7b55d mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xe51c040f register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xe51fd53b blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xe5276e53 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xe536f0fa dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0xe5540302 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xe5579db9 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5a5d2f8 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0xe5ea8893 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe5f5f445 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xe5f75e29 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xe61a1583 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0xe62708da wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0xe640c332 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0xe6495cbb sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe654b59f wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0xe66ca56f led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6ebe6f3 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe6efbe92 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xe71f51e0 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xe729c1eb preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xe731c6e4 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xe73496cd vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xe7474616 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe75a4f6b ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe7a30eff zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xe7adfb7b __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0xe7dba831 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe81576cc ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe8425825 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe8508aef wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe85cf551 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe864861e invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0xe86639b3 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xe874d2a3 use_mm -EXPORT_SYMBOL_GPL vmlinux 0xe876e0c6 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe89d3ecb of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0xe8d3a2de iommu_take_ownership -EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xe8f54f62 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xe905f563 irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xe9129cce rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xe936f13d ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe93fced6 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xe9427ca7 kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction -EXPORT_SYMBOL_GPL vmlinux 0xe985d6e6 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xe99758b3 device_attach -EXPORT_SYMBOL_GPL vmlinux 0xe9a5b3c0 nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xe9c4da5e dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9dcb02e hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xe9e4e88d xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea126175 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xea12e5ad sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xea2d87ff ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0xea49e62e __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xea5dfa00 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0xea64dcd1 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xea740e89 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xeaa56372 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xeaa92b27 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xeaaf34d7 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0xeac638c1 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xeae94bc6 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0xeaff6623 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xeb0752a1 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0xeb0af747 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xeb34f353 mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0xeb4eb6a5 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0xeb6f9faa gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xebadd82e regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xebb6a948 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xebb92fac of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xec06050c mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec2d7899 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xec41bcf3 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0xec6d7f1c crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0xec864236 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xec8d4e4f vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0xec92f124 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0xecfd7fb9 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0xed14ead7 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xed1c74e8 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xed20c99f ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xed25bb93 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xed459800 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xed66635f relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xed8021c4 vfio_virqfd_disable -EXPORT_SYMBOL_GPL vmlinux 0xed83e147 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xed8d36bb xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xed9b55ac rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xedb4990d arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0xedc2ae33 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xede5106b sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0xedec8689 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xedf1eb21 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0xee021048 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0xee109fa0 arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0xee59ac42 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL vmlinux 0xee89812f of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0xee8ec3a7 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xee96f1f4 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xee98e418 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0xeea05acb crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xeea9b15c ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xeeb454d9 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0xeebf4710 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xeec20e54 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xeec5fa15 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeed11d21 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xeed7d240 usb_string -EXPORT_SYMBOL_GPL vmlinux 0xeee1ddbf ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xef051d29 thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0xef3e351f ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xef5ae136 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xef68c387 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat -EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefab68bb gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xefb07257 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xefc847f4 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xefd6075c spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xf0115ec3 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xf0348e20 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xf03b8425 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf03ed6ee pcibios_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xf04bb49b __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0xf0721835 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf080d977 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0ecf425 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xf0ee554f genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf126a242 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xf1282963 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xf156e93b ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0xf1674c22 posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0xf16dc6b0 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf16f33cc gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf192a36d gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1afcfbb fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1d83aa5 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0xf1ed4298 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0xf1fde4dd hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf2114c9e crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0xf21d68ff usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf23b75cc dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xf26ebe58 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf27efda1 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2cd1096 fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0xf3074a9b ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf314189e get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf3325c04 vfio_add_group_dev -EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xf34eb369 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf39c6019 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3cd4959 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xf3dd3d9e early_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf3f51b59 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xf3f5b6ee register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xf445e312 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xf4487bd0 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xf4502db3 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4a4dc2e replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xf4c78f14 skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf4e5a793 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf4f857ad component_add -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf50ce00a of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5157b0e __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xf52e54cc pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xf532dd0f dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf5501aa8 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf56e9c58 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xf578a62f ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xf591c173 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xf59be382 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5c25060 nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xf5d0bd3c gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xf601768f nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0xf601b23d tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xf6222e8f adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xf660bdca sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0xf662a677 pcibios_add_pci_devices -EXPORT_SYMBOL_GPL vmlinux 0xf6791176 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xf6ad8bdc isa_bridge_pcidev -EXPORT_SYMBOL_GPL vmlinux 0xf6bcac22 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d28860 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6ef683b of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xf72f763e debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xf73b29a2 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xf74ae33c pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0xf7578811 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xf75c6729 of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0xf78588d0 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0xf78724ba crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xf78bf205 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf7ad93c2 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xf7aea4ed blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0xf7eea624 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0xf7f47afd devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xf806fe01 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0xf82306ba cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf837e0eb unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xf845a81d serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xf84d4b86 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf89d1675 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xf89f562f wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xf8a53d88 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xf8a8c414 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xf8e398fc memstart_addr -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf91583ba skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xf923e213 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf94dec26 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf958678e rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0xf9833a6f irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf997fca2 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xf998b593 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a21881 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xf9ccc6e0 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0xf9dad256 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xfa1011c5 srp_rport_add -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa2c84ba page_endio -EXPORT_SYMBOL_GPL vmlinux 0xfa39f6b6 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xfa5c044a pcibios_free_controller_deferred -EXPORT_SYMBOL_GPL vmlinux 0xfa8f210e _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec -EXPORT_SYMBOL_GPL vmlinux 0xfaa0da0f leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xfaebe98b regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xfaf2f143 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xfb2d4da9 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xfb2fc070 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb44a7a1 opal_ipmi_recv -EXPORT_SYMBOL_GPL vmlinux 0xfb4d20f2 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0xfb63bc4b tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xfb6a1b4a posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb8deea7 irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0xfba57d57 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbcc9036 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xfbd072f1 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xfbd3a24d opal_message_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc093423 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfc16ff3a pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc22f860 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xfc384059 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xfc3da944 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0xfc417669 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xfc6e0c69 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xfcaaf32d extcon_set_cable_state_ -EXPORT_SYMBOL_GPL vmlinux 0xfcb9366b od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xfcddf931 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0xfcf4dd05 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xfcf73f75 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xfd1892a5 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfd1b3cc3 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xfd2d5c97 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xfd78151d usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfdbb8fff xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xfddd285f mm_iommu_ua_to_hpa -EXPORT_SYMBOL_GPL vmlinux 0xfdf7443a shake_page -EXPORT_SYMBOL_GPL vmlinux 0xfdfc5118 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfdfe3092 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0xfe00e5b0 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0xfe16b6ed of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0xfe1a8a6f iommu_release_ownership -EXPORT_SYMBOL_GPL vmlinux 0xfe1f8097 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xfe39d5c9 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xfe91cdcd devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xfe97aa61 fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfedcdddd pci_intx -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xfefdf941 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xff02db88 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff073b13 __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0xff217181 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xff34993e devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xff3ed6ba ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0xff50f6f4 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff5fa07d sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff77e223 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xff7d0448 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xff86367a exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xff9e3479 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffc215bd of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0xfff1bf64 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xfff35818 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xfffbc776 pci_sriov_get_totalvfs reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/ppc64el/generic.compiler +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/ppc64el/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu/IBM 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/ppc64el/generic.modules +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/ppc64el/generic.modules @@ -1,4255 +0,0 @@ -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_mid -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pm800 -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -DAC960 -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -ac97_bus -acard-ahci -acecad -acenic -act200l-sir -act8865-regulator -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -actisys-sir -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5755 -ad5764 -ad5791 -ad5933 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7152 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7746 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad799x -ad8366 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7753 -ade7754 -ade7758 -ade7759 -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adfs -adi -adis16060 -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16204 -adis16209 -adis16220 -adis16240 -adis16260 -adis16400 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads1015 -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7511 -adv7604 -adv7842 -adv_pci1710 -adv_pci1723 -adv_pci1724 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxrs450 -af-rxrpc -af9013 -af9033 -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -ahci -ahci_ceva -ahci_platform -ahci_qoriq -aic79xx -aic7xxx -aic94xx -aim_cdev -aim_network -aim_sound -aim_v4l2 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airspy -ak8975 -al3320a -algif_aead -algif_hash -algif_rng -algif_skcipher -ali-ircc -alim7101_wdt -altera-ci -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am53c974 -amc6821 -amd -amd5536udc -amd8111e -amdgpu -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams369fg06 -analog -anatop-regulator -ansi_cprng -anubis -aoe -apbps2 -apds9300 -apds9802als -apds990x -apds9960 -appledisplay -appletalk -appletouch -applicom -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arp_tables -arpt_mangle -arptable_filter -as102_fe -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -asc7621 -ascot2e -asix -ast -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atm -atmel -atmel-flexcom -atmel-hlcdc -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -aufs -auo-pixcir-ts -auo_k1900fb -auo_k1901fb -auo_k190x -auth_rpcgss -authenc -authencesn -autofs4 -avmfritz -ax25 -ax88179_178a -axp20x-pek -axp20x-regulator -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b1 -b1dma -b1pci -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-phy-lib -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7038_wdt -bcm7xxx -bcm87xx -bcma -bcma-hcd -bcmsysport -bd6107 -bdc -bdc_pci -be2iscsi -be2net -befs -belkin_sa -bfa -bfs -bfusb -bh1750 -bh1770glc -bh1780gli -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmg160_core -bmg160_i2c -bmg160_spi -bmp085 -bmp085-i2c -bmp085-spi -bmp280 -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bonding -bpa10x -bpck -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -broadsheetfb -bsd_comp -bsr -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btqca -btrfs -btrtl -btsdio -bttv -btusb -btwilink -bu21013_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-raw -cap11xx -capi -capidrv -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc2520 -cc770 -cc770_isa -cc770_platform -cciss -ccm -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -ceph -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20_generic -chacha20poly1305 -chaoskey -chipone_icn8318 -chipreg -chnl_net -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -clip -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmm -cmtp -cnic -cobalt -cobra -coda -colibri-vf50-ts -com20020 -com20020-pci -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_isadma -comedi_parport -comedi_pci -comedi_test -comedi_usb -comm -configfs -contec_pci_dio -cordic -core -cp210x -cpc925_edac -cpia2 -cpsw_ale -cpu-notifier-error-inject -cramfs -crc-ccitt -crc-itu-t -crc32 -crc7 -crc8 -cryptd -crypto_user -cryptoloop -cs5345 -cs53l32a -csiostor -ctr -cts -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cxl -cxlflash -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da9030_battery -da9034-ts -da903x -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -ddbridge -de2104x -de4x5 -decnet -deflate -defxx -denali -denali_pci -des_generic -dgap -dgnc -dht11 -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -diva_idi -diva_mnt -divacapi -divadidd -divas -dl2k -dlci -dlm -dln2 -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dm1105 -dm9601 -dmfe -dmm32at -dmx3191d -dn_rtmsg -dnet -docg3 -docg4 -dp83848 -dp83867 -drbd -drbg -drm -drm_kms_helper -drop_monitor -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds620 -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-friio -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_usb_v2 -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc3 -dwc3-pci -dwc_eth_qos -dwmac-generic -dwmac-ipq806x -dwmac-lpc18xx -dwmac-meson -dwmac-rk -dwmac-socfpga -dwmac-sti -dwmac-sunxi -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -eata -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -echainiv -echo -edac_core -edt-ft5x06 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efs -egalax_ts -ehci-platform -ehset -elan_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -emac_arc -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_usb -emu10k1-gp -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -eni -enic -epat -epia -epic100 -eql -esas2r -esd_usb2 -esi-sir -esp4 -esp6 -esp_scsi -et1011c -et131x -ethoc -evbug -exofs -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-gpio -extcon-max14577 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -ezusb -f2fs -f75375s -f81232 -fakelb -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_ssd1289 -fb_ssd1306 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fbtft_device -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdp -fdp_i2c -fealnx -ff-memless -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fl512 -flexcan -flexfb -floppy -fm10k -fm801-gp -fm_drv -fmc -fmc-chardev -fmc-fakedev -fmc-trivial -fmc-write-eeprom -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fpga-mgr -freevxfs -friq -frpw -fsa9480 -fscache -fsl-edma -fsl_elbc_nand -fsl_lpuart -ft6236 -ftdi-elan -ftdi_sio -ftl -fujitsu_ts -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gcm -gdmtty -gdmulte -gdmwm -gdth -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gennvm -genwqe_card -gf128mul -gf2k -gfs2 -ghash-generic -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -gluebi -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-addr-flash -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-amd8111 -gpio-arizona -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-fan -gpio-generic -gpio-grgpio -gpio-ir-recv -gpio-janz-ttl -gpio-kempld -gpio-lp3943 -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mc33880 -gpio-mcp23s08 -gpio-ml-ioh -gpio-pca953x -gpio-pcf857x -gpio-rdc321x -gpio-regulator -gpio-syscon -gpio-tps65912 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-viperboard -gpio-vx855 -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio_backlight -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_tilt_polled -gpio_wdt -gr_udc -grace -grcan -gre -grip -grip_mp -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -guillemot -gunze -hackrf -hamachi -hampshire -hangcheck-timer -hanwang -hci -hci_uart -hci_vhci -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdm_dim2 -hdm_i2c -hdm_usb -hdpvr -he -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hi6421-pmic-core -hi6421-regulator -hi8435 -hid -hid-a4tech -hid-alps -hid-apple -hid-appleir -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-cherry -hid-chicony -hid-corsair -hid-cp2112 -hid-cypress -hid-dr -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-icade -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-lenovo -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-magicmouse -hid-microsoft -hid-monterey -hid-multitouch -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-primax -hid-prodikeys -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steelseries -hid-sunplus -hid-thingm -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-uclogic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hidp -hih6130 -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -hisi504_nand -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horus3a -hostap -hostap_pci -hostap_plx -hp100 -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -hsu_dma -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hvcs -hvcserver -hwa-hc -hwa-rc -hwmon-vid -hwpoison-inject -hx8357 -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-cbus-gpio -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-diolan-u2c -i2c-dln2 -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-mpc -i2c-mux -i2c-mux-gpio -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-reg -i2c-nforce2 -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-robotfuzz-osif -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i40e -i40evf -i5k_amb -i6300esb -i740fb -ib_addr -ib_cm -ib_core -ib_ehca -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_qib -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -ibmaem -ibmpex -ibmpowernv -ibmveth -ibmvfc -ibmvnic -ibmvscsi -ibmvscsis -icom -icp_multi -icplus -ics932s401 -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_gen2 -idtcps -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -iforce -igb -igbvf -igorplugusb -iguanair -ii_pci20kc -iio-trig-interrupt -iio-trig-periodic-rtc -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili922x -ili9320 -imm -imon -ims-pcu -imx074 -imx6ul_tsc -imx_thermal -ina209 -ina2xx -industrialio -industrialio-buffer-cb -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -int51x1 -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interval_tree_test -inv-mpu6050 -io_edgeport -io_ti -ioc4 -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -ipddp -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_powernv -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -ips -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipw -ipw2100 -ipw2200 -ipx -ir-hix5hd2 -ir-jvc-decoder -ir-kbd-i2c -ir-lirc-codec -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-usb -ir-xmp-decoder -ircomm -ircomm-tty -irda -irda-usb -irlan -irnet -irtty-sir -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl9305 -isofs -isp116x-hcd -isp1362-hcd -isp1704_charger -isp1760 -it913x -itd1000 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -iw_cxgb4 -iw_nes -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jitterentropy_rng -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -kafs -kalmia -kaweth -kbic -kbtab -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kingsun-sir -kl5kusb105 -kmx61 -kobil_sct -ks0108 -ks8842 -ks8851 -ks8851_mll -ks959-sir -ksdazzle-sir -ksz884x -ktti -kvaser_pci -kvaser_usb -kvm -kvm-hv -kvm-pr -kxcjk-1013 -kxsd9 -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan78xx -lanai -lapb -lapbether -latch-addr-flash -lattice-ecp3-config -lcd -ld9040 -ldusb -lec -led-class-flash -leds-88pm860x -leds-adp5520 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-ktd2692 -leds-lm3530 -leds-lm3533 -leds-lm355x -leds-lm3642 -leds-lp3944 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-pca9532 -leds-pca955x -leds-pca963x -leds-powernv -leds-pwm -leds-regulator -leds-tca6507 -leds-tlc591xx -leds-wm831x-status -leds-wm8350 -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libceph -libcomposite -libcrc32c -libcxgbi -libertas -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libore -libosd -libsas -lightning -lineage-pem -linear -liquidio -lirc_bt829 -lirc_dev -lirc_imon -lirc_parallel -lirc_sasem -lirc_serial -lirc_sir -lirc_zilog -lis3l02dq -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -litelink-sir -lkkbd -ll_temac -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3630a_bl -lm3639_bl -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lms283gf05 -lms501kf03 -lnbh25 -lnbp21 -lnbp22 -lockd -locktorture -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc3589 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m25p80 -m2m-deinterlace -m52790 -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -ma600-sir -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac_hid -macb -macvlan -macvtap -mag3110 -magellan -mailbox-altera -mailbox-test -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max1111 -max11801_ts -max1363 -max14577 -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max197 -max20751 -max2165 -max3100 -max31790 -max3421-hcd -max34440 -max517 -max5821 -max63xx_wdt -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77686 -max77693 -max77693-haptic -max77693_charger -max77802 -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997 -max8997_charger -max8997_haptic -max8998 -max8998_charger -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc44s803 -mcb -mcb-pci -mceusb -mcp2120-sir -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp4531 -mcp4725 -mcp4922 -mcryptd -mcs5000_ts -mcs7780 -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -md5-ppc -mdc800 -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-cavium -mdio-gpio -mdio-mux -mdio-mux-gpio -mdio-mux-mmioreg -mdio-octeon -mdio-thunder -mdio-xgene -me4000 -me_daq -media -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -memory-notifier-error-inject -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -metro-usb -metronomefb -mf6x4 -mga -michael_mic -micrel -microchip -microread -microread_i2c -microtek -mii -minix -mip6 -mite -mk712 -mkiss -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlxsw_core -mlxsw_pci -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_block -mmc_spi -mms114 -mn88472 -mn88473 -mos7720 -mos7840 -mostcore -moxa -mpc624 -mpl115 -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msdos -msi001 -msi2500 -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt29f_spinand -mt312 -mt352 -mt6311-regulator -mt6397-core -mt6397-regulator -mt7601u -mt9m001 -mt9m111 -mt9t031 -mt9t112 -mt9v011 -mt9v022 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxser -mxuport -myri10ge -n_gsm -n_hdlc -n_r3964 -n_tracerouter -n_tracesink -nand -nand_bch -nand_ecc -nand_ids -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -ncpfs -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -ne2k-pci -neofb -net1080 -net2272 -net2280 -netconsole -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfc -nfc_digital -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfcwilink -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_labpc -ni_labpc_common -ni_labpc_isadma -ni_labpc_pci -ni_pcidio -ni_pcimio -ni_tio -ni_tiocmd -ni_usb6501 -nicpf -nicstar -nicvf -nilfs2 -niu -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nosy -notifier-error-inject -nouveau -nozomi -nps_enet -ns558 -ns83820 -nsc-ircc -ntb -ntb_netdev -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nvidiafb -nvme -nvmem_core -nx-compress -nx-compress-powernv -nx-compress-pseries -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxt200x -nxt6000 -objlayoutdriver -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_mmc_spi -of_xilinx_wdt -ofpart -ohci-platform -old_belkin-sir -omap4-keypad -omfs -omninet -on20 -on26 -onenand -opal-prd -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orinoco -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -osd -osdblk -osst -oti6858 -ov2640 -ov5642 -ov6650 -ov7640 -ov7670 -ov772x -ov9640 -ov9740 -overlay -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -p8023 -pa12203001 -palmas-pwrbutton -palmas-regulator -pandora_bl -panel -panel-lg-lg4573 -panel-samsung-ld9040 -panel-samsung-s6e8aa0 -panel-sharp-lq101r1sx01 -panel-simple -parade-ps8622 -paride -parkbd -parport -parport_ax88796 -parport_pc -parport_serial -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pc300too -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmda12 -pcmmio -pcmuio -pcnet32 -pcrypt -pcspkr -pcwd_pci -pcwd_usb -pd -pda_power -pdc_adma -peak_pci -peak_usb -pegasus -penmount -percpu_test -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-exynos-usb2 -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-tahvo -phy-tusb1210 -physmap -physmap_of -pixcir_i2c_ts -pkcs7_test_key -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pn533 -pn544 -pn544_i2c -pn_pep -poly1305_generic -port100 -powermate -powernv-rng -powernv_flash -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_parport -pptp -prism2_usb -ps2mult -pseries-rng -pseries_energy -psmouse -psnap -pt -pulsedlight-lidar-lite-v2 -pvrusb2 -pwc -pwm-beeper -pwm-fan -pwm-fsl-ftm -pwm-lp3943 -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm_bl -pxa27x_udc -qcaspi -qcaux -qcom-spmi-iadc -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom_spmi-regulator -qcserial -qed -qede -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qsemi -qt1010 -qt1070 -qt2160 -quatech2 -quota_tree -quota_v1 -quota_v2 -qxl -r128 -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723au -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-bcm2048 -radio-i2c-si470x -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si476x -radio-tea5764 -radio-usb-si470x -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -ramoops -raw -rbd -rbtree_test -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -rc-delock-61959 -rc-dib0700-nec -rc-dib0700-rc5 -rc-digitalnow-tinytwin -rc-digittrade -rc-dm1105-nec -rc-dntv-live-dvb-t -rc-dntv-live-dvbt-pro -rc-dvbsky -rc-em-terratec -rc-encore-enltv -rc-encore-enltv-fm53 -rc-encore-enltv2 -rc-evga-indtube -rc-eztv -rc-flydvb -rc-flyvideo -rc-fusionhdtv-mce -rc-gadmei-rm008z -rc-genius-tvgo-a11mce -rc-gotview7135 -rc-hauppauge -rc-imon-mce -rc-imon-pad -rc-iodata-bctv7e -rc-it913x-v1 -rc-it913x-v2 -rc-kaiomy -rc-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lirc -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -rc-msi-digivox-ii -rc-msi-digivox-iii -rc-msi-tvanywhere -rc-msi-tvanywhere-plus -rc-nebula -rc-nec-terratec-cinergy-xs -rc-norwood -rc-npgtech -rc-pctv-sedna -rc-pinnacle-color -rc-pinnacle-grey -rc-pinnacle-pctv-hd -rc-pixelview -rc-pixelview-002t -rc-pixelview-mk12 -rc-pixelview-new -rc-powercolor-real-angel -rc-proteus-2309 -rc-purpletv -rc-pv951 -rc-rc6-mce -rc-real-audio-220-32-keys -rc-reddo -rc-snapstream-firefly -rc-streamzap -rc-su3000 -rc-tbs-nec -rc-technisat-ts35 -rc-technisat-usb2 -rc-terratec-cinergy-c-pci -rc-terratec-cinergy-s2-hd -rc-terratec-cinergy-xs -rc-terratec-slim -rc-terratec-slim-2 -rc-tevii-nec -rc-tivo -rc-total-media-in-hand -rc-total-media-in-hand-02 -rc-trekstor -rc-tt-1500 -rc-twinhan-dtv-cab-ci -rc-twinhan1027 -rc-videomate-m1f -rc-videomate-s350 -rc-videomate-tv-pvr -rc-winfast -rc-winfast-usbii-deluxe -rc5t583-regulator -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -redboot -redrat3 -reed_solomon -regmap-spmi -regulator-haptic -reiserfs -remoteproc -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill-gpio -rfkill-regulator -rio-scan -rio500 -rionet -rivafb -rj54n1cb0c -rk808 -rk808-regulator -rmd128 -rmd160 -rmd256 -rmd320 -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rocket -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpadlpar_io -rpaphp -rpcrdma -rpcsec_gss_krb5 -rpr0521 -rrpc -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtas_flash -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab3100 -rtc-abx80x -rtc-as3722 -rtc-bq32k -rtc-bq4802 -rtc-cmos -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-ds3234 -rtc-em3027 -rtc-fm3130 -rtc-generic -rtc-hid-sensor-time -rtc-hym8563 -rtc-isl12022 -rtc-isl12057 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max77686 -rtc-max77802 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf8563 -rtc-pcf8583 -rtc-r9701 -rtc-rc5t583 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-snvs -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtc_cmos_setup -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rx51_battery -rxkad -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5h1409 -s5h1411 -s5h1420 -s5m8767 -s626 -s6e63m0 -s921 -saa6588 -saa6752hs -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7706h -safe_serial -salsa20_generic -samsung-sxgbe -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sbp_target -sbs-battery -sc16is7xx -sc92031 -sca3000 -scanlog -sch_atm -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -sctp -sctp_probe -sdhci -sdhci-of-arasan -sdhci-of-at91 -sdhci-of-esdhc -sdhci-of-hlwd -sdhci-pci -sdhci-pltfm -sdhci_f_sdh30 -sdio_uart -seed -sensorhub -seqiv -ser_gigaset -serial2002 -serio_raw -sermouse -serpent_generic -serport -ses -sfc -sh_veu -sha1-powerpc -shark2 -sht15 -sht21 -shtc1 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -sir-dev -sis -sis190 -sis5595 -sis900 -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -skd -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -slcan -slip -slram -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smb347-charger -smipcie -smm665 -smsc -smsc-ircc2 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-als4000 -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcm-oss -snd-pcxhr -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-sb-common -snd-scs1x -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-adau1701 -snd-soc-ak4104 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-alc5623 -snd-soc-core -snd-soc-cs35l32 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs4349 -snd-soc-es8328 -snd-soc-fsl-asrc -snd-soc-fsl-esai -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-imx-audmux -snd-soc-pcm1681 -snd-soc-pcm1792a-codec -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rt5631 -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-simple-card -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8962 -snd-soc-wm8978 -snd-soc-xtfpga-i2s -snd-sonicvibes -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-usx2y -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-ymfpci -snic -soc_button_array -soc_camera -soc_camera_platform -soc_mediabus -softdog -softing -solo6x10 -solos-pci -sony-btf-mpx -soundcore -sp2 -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -speedfax -speedtch -spi-altera -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-nor -spi-oc-tiny -spi-pxa2xx-platform -spi-sc18is602 -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spl -splat -spmi -sr9700 -sr9800 -ssb -ssb-hcd -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -ste_modem_rproc -stex -stinger -stir4200 -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stmmac -stmmac-platform -stmpe-keypad -stmpe-ts -stowaway -stp -streamzap -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv6110 -stv6110x -sun4i-codec -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -svgalib -sx8 -sx8654 -sx9500 -sym53c8xx -symbolserial -synaptics_i2c -synaptics_i2c_rmi4 -synaptics_usb -synclink -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -t1pci -t5403 -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc3589x-keypad -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18271 -tda18271c2dd -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda998x -tdfx -tdfxfb -tdo24m -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -tekram-sir -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_power -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tgr192 -thmc50 -thunder_bgx -thunderbolt -ti-adc081c -ti-adc128s052 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_dac7512 -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmp006 -tmp102 -tmp103 -tmp401 -tmp421 -toim3232-sir -torture -toshsd -touchit213 -touchright -touchwin -tpci200 -tpm-rng -tpm_atmel -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tps40422 -tps51632-regulator -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps80031-regulator -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2x7x_core -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -tw2804 -tw68 -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-madc-hwmon -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish_common -twofish_generic -typhoon -u132-hcd -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -uda1342 -udc-core -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_fsl_elbc_gpcm -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -us5182d -usb-serial-simple -usb-storage -usb3503 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac2 -usb_f_uvc -usb_gigaset -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbkbd -usblcd -usbled -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-common -v4l2-dv-timings -v4l2-flash-led-class -v4l2-mem2mem -vcan -vcnl4000 -ves1820 -ves1x93 -veth -vf610_adc -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -via -via-ircc -via-rhine -via-sdmmc -via-velocity -via686a -videobuf-core -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videobuf2-core -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videodev -vim2m -viperboard -viperboard_adc -virt-dma -virtio-gpu -virtio-rng -virtio_input -virtio_scsi -virtual -visor -vitesse -vivid -vlsi_ir -vmac -vme_pio2 -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmx-crypto -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vrf -vringh -vsock -vsxxxaa -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxge -vxlan -vz89x -w1-gpio -w1_bq27000 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2431 -w1_ds2433 -w1_ds2760 -w1_ds2780 -w1_ds2781 -w1_ds28e04 -w1_smem -w1_therm -w5100 -w5300 -w6692 -w83781d -w83791d -w83792d -w83793 -w83795 -w83977af_ir -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wbsd -wcn36xx -wd719x -wdrtas -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wimax -winbond-840 -windfarm_core -wire -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994-core -wm8994-irq -wm8994-regmap -wm8994-regulator -wm97xx-ts -wp512 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xc4000 -xc5000 -xcbc -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xgifb -xhci-plat-hcd -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx_ps2 -xilinx_uartps -xillybus_core -xillybus_of -xillybus_pcie -xor -xpad -xr_usb_serial_common -xsens_mt -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xtkbd -xts -xusbatm -xz_dec_test -yam -yealink -yellowfin -yurex -zaurus -zavl -zcommon -zd1201 -zd1211rw -zforce_ts -zfs -zhenhua -zl10036 -zl10039 -zl10353 -zl6100 -zlib -znvpair -zpios -zr364xx -zram -zunicode -zynq-fpga reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/s390x/generic +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/s390x/generic @@ -1,8994 +0,0 @@ -EXPORT_SYMBOL arch/s390/oprofile/oprofile 0x06a93370 sampler_cpu_buffer -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/mcryptd 0x841c582a mcryptd_arm_flusher -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x0090e5c0 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1e8bd780 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xc212c21a rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xd206f3c9 rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xdf81984b rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xed143ce3 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1442000d ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2b8cd55f cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2c806842 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x467ccb09 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5cf5a067 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6bb3dd87 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6e5d7c12 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7b7309eb ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb2e44773 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb3c760af ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb97ffe29 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbad739f2 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbc46817c ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc1f5c47c ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc29b66da ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd2a684b6 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdda2a512 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe0a3bcfd ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03851659 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05e5bacf ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06830b9a ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x086081d2 ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d7e2991 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1559cb3a ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15feca5e ibnl_add_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18a7b2bf ibnl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a3bdf6b ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23720175 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c7ff090 ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35eaae45 ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37493a37 ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37d11ce1 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x389b414f ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39623d80 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ab8f445 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c8a43ed ibnl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4130352b ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42061e0b ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46c886fb ib_modify_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b8d2960 ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cea82a9 ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f266c84 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54460a80 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57ea2da9 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b2975d0 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d407bc5 ib_resolve_eth_dmac -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e1dba82 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60559699 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62ce0267 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6452478d ib_find_cached_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b58872e ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c1780f6 ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71167812 ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71f876f5 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72b7f197 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76495291 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79e7281f ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a060615 ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a15de60 ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82c70266 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82eed2c5 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87023b1d ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c19b52a ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f587dec ib_create_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fc2c59e rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9098bf86 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9435206d ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97f7c541 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1cc9755 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa512af1d ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5e7d68d ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6e1508a ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa86fc042 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaaff54db ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0e2d8b ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad4e7061 ib_destroy_flow -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0f8f508 ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6475406 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb86e6a1a ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9d643f9 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba402b4c ib_find_gid_by_filter -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd210a9f ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc14fd0d1 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc36d6cc7 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc42d253f ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb8f79c6 ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc2c6dc0 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdb4b1d1 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xceca699a ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd306514a ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4d1c2fd ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda957f36 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdea7d420 ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf5df7f8 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf9cef68 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe272af56 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe30bc91f ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5617246 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe66602ed ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9f1f162 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4f7d37b ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7eec163 ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf96fc9de ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x216f533a ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x70e1c8b5 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x79ea0967 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8a0dddc2 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8dad0e81 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x9aa9d9bd ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xabefc643 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xbc547645 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xbfd69857 ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc9ad77ce ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd021128d ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe446ec20 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xfa043437 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x035d36d2 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x27a3c7ff ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x27afd6fc ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x28428eb1 ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x39b8e079 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5555ab28 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x55e4c0f2 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb088d5e9 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xcaa25b45 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe7ee07ad ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xed6ca851 ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd31dc99e ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe97f0f2f ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0c8311bf iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x14916ae8 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2c7f04e6 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2e65d47a iwpm_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x375993bc iwpm_ack_mapping_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x517b1261 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x545ce785 iwpm_add_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x61afa7f2 iwpm_remote_info_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xaf774ead iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb8548f78 iwpm_add_and_query_mapping_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb8b62c5b iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbafdc44c iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc810d03e iwpm_register_pid_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xca300208 iwpm_mapping_error_cb -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd1b90eb1 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x04bef763 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0f409611 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1861eaec rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2f1dfebe rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x36fb019e rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a5aa1c4 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x42cb23ce rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x529551c7 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x92117ee3 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x96cd55ec rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9d528e4b rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xad47f802 rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb922760f rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbe9e0681 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc4cbae64 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc5759faa rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc6d166fa rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd21a0f28 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdb9e9ce7 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdf054a61 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfc94ece9 rdma_set_ib_paths -EXPORT_SYMBOL drivers/md/bcache/bcache 0x0187bb6a __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0x0224fc32 bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0x18290c90 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x313ff088 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x3b42669b bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0x594d1f90 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0x627aed19 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6dc1194a bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x79711460 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7d2e3553 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7e232679 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0xbbf73b16 bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc72b27a0 closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0xcb47df76 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd9183c35 closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf6f8461 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xf8446678 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0xf920f854 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xfd1cf2b2 closure_put -EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget -EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL drivers/md/dm-log 0x177aaa4e dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x38bab62e dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x828fd6ab dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x8b8a9203 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x272f955a dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x7806ed38 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x91335661 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x96d02d16 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x9a7cd45f dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xda069e15 dm_snap_origin -EXPORT_SYMBOL drivers/md/raid456 0x4023646d raid5_set_cache_size -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05a4960a mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x060aae56 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09095a85 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a466bb3 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ea7c534 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18a9bf14 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1958df7e mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21eac749 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36b7cb5a mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38767a82 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c188b5e mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e043cbc mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e5884b0 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6acbcc37 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84e742d1 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a55b8e0 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x994dd1ac set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d3e2949 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e2fb70c set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f52f62e mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa33cb51f mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6bdf27a mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6d119cd mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5387f4d mlx4_test_interrupts -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7fb9f2d mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd3a755b mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbebc228f mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc203acdc get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6af0338 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8328e5a mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc3b2a8b mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd05c49af mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdeaec46f mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe616857e mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe81e3fda mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8be305e mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeadd875e mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf73afcd2 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03739358 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f52cd8c mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c466ddb mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e22d926 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ef59150 mlx5_core_destroy_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f771a70 mlx5_modify_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2436a8f0 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cbec5c7 mlx5_query_vport_admin_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33042833 mlx5_unmap_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36e8402a mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43932451 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5091e01a mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50dfdbc3 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59ce2ad6 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c5c5bc6 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x629f91c5 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63fabe51 mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x794ecaf8 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7afe283e mlx5_alloc_map_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95b2b2eb mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e138586 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa58b6412 mlx5_get_protocol_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0455e31 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5c2dbe0 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb62feeba mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6e3c990 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7b81250 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc07c6af0 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc47614a1 mlx5_core_arm_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd71e21e8 mlx5_core_create_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd743ed53 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7928c1b mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd77fe20 mlx5_core_get_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe244b997 mlx5_core_dump_fill_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5495b5a mlx5_core_query_srq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5e248dc mlx5_cmd_comp_handler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af33e4 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeefa002f mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcf3183d mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1116e269 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2360a424 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x25dc3db4 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x443e33f4 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x803e6ffd mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9f7e1ce8 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xab498b97 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xec61d2f5 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/phy/fixed_phy 0x9481f6a5 fixed_phy_update_state -EXPORT_SYMBOL drivers/net/phy/libphy 0x02303bee mdiobus_free -EXPORT_SYMBOL drivers/net/phy/libphy 0x073c8265 phy_attach -EXPORT_SYMBOL drivers/net/phy/libphy 0x0bb39630 phy_drivers_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0x162f0595 phy_ethtool_set_wol -EXPORT_SYMBOL drivers/net/phy/libphy 0x2390c488 phy_driver_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0x240255b3 genphy_config_init -EXPORT_SYMBOL drivers/net/phy/libphy 0x257d9f8d mdiobus_read_nested -EXPORT_SYMBOL drivers/net/phy/libphy 0x274a2b44 phy_device_remove -EXPORT_SYMBOL drivers/net/phy/libphy 0x279d4217 mdiobus_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0x28763d95 phy_disconnect -EXPORT_SYMBOL drivers/net/phy/libphy 0x28928679 phy_start -EXPORT_SYMBOL drivers/net/phy/libphy 0x30299680 phy_find_first -EXPORT_SYMBOL drivers/net/phy/libphy 0x322373a2 genphy_resume -EXPORT_SYMBOL drivers/net/phy/libphy 0x38d9791f mdiobus_write_nested -EXPORT_SYMBOL drivers/net/phy/libphy 0x3affd76a mdiobus_scan -EXPORT_SYMBOL drivers/net/phy/libphy 0x3d9f06a9 phy_mac_interrupt -EXPORT_SYMBOL drivers/net/phy/libphy 0x3e411a7a phy_ethtool_set_eee -EXPORT_SYMBOL drivers/net/phy/libphy 0x4012a868 mdiobus_alloc_size -EXPORT_SYMBOL drivers/net/phy/libphy 0x41f00ec3 phy_connect -EXPORT_SYMBOL drivers/net/phy/libphy 0x44bc93a6 genphy_restart_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x45c75d6f mdiobus_write -EXPORT_SYMBOL drivers/net/phy/libphy 0x4b05b9c0 phy_register_fixup -EXPORT_SYMBOL drivers/net/phy/libphy 0x4c3467a5 genphy_setup_forced -EXPORT_SYMBOL drivers/net/phy/libphy 0x542f6a43 phy_start_interrupts -EXPORT_SYMBOL drivers/net/phy/libphy 0x5559f3d5 phy_ethtool_get_wol -EXPORT_SYMBOL drivers/net/phy/libphy 0x55fd072a phy_print_status -EXPORT_SYMBOL drivers/net/phy/libphy 0x5e052355 phy_suspend -EXPORT_SYMBOL drivers/net/phy/libphy 0x62446f8e phy_ethtool_get_eee -EXPORT_SYMBOL drivers/net/phy/libphy 0x6bec7e78 mdiobus_read -EXPORT_SYMBOL drivers/net/phy/libphy 0x6d188327 __mdiobus_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x7e473063 genphy_config_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x7e626244 phy_ethtool_gset -EXPORT_SYMBOL drivers/net/phy/libphy 0x7f3aa0ae phy_device_free -EXPORT_SYMBOL drivers/net/phy/libphy 0x7f5cf94d phy_ethtool_sset -EXPORT_SYMBOL drivers/net/phy/libphy 0x80bb9638 genphy_aneg_done -EXPORT_SYMBOL drivers/net/phy/libphy 0x853e51dd get_phy_device -EXPORT_SYMBOL drivers/net/phy/libphy 0x89ac6514 phy_register_fixup_for_id -EXPORT_SYMBOL drivers/net/phy/libphy 0x8dc45097 phy_get_eee_err -EXPORT_SYMBOL drivers/net/phy/libphy 0x9005381a genphy_soft_reset -EXPORT_SYMBOL drivers/net/phy/libphy 0xa2acb7ec phy_start_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0xa6f23557 phy_read_mmd_indirect -EXPORT_SYMBOL drivers/net/phy/libphy 0xaa5e6c22 genphy_suspend -EXPORT_SYMBOL drivers/net/phy/libphy 0xac251833 phy_set_max_speed -EXPORT_SYMBOL drivers/net/phy/libphy 0xaf876f95 phy_device_register -EXPORT_SYMBOL drivers/net/phy/libphy 0xb6e59c75 phy_register_fixup_for_uid -EXPORT_SYMBOL drivers/net/phy/libphy 0xb8ff456a phy_driver_register -EXPORT_SYMBOL drivers/net/phy/libphy 0xbbbfa769 phy_drivers_register -EXPORT_SYMBOL drivers/net/phy/libphy 0xbdd955b4 phy_resume -EXPORT_SYMBOL drivers/net/phy/libphy 0xc11c6f4e phy_init_hw -EXPORT_SYMBOL drivers/net/phy/libphy 0xd0184bd6 genphy_read_status -EXPORT_SYMBOL drivers/net/phy/libphy 0xd1c8136d phy_detach -EXPORT_SYMBOL drivers/net/phy/libphy 0xd52b36e1 phy_mii_ioctl -EXPORT_SYMBOL drivers/net/phy/libphy 0xdb91f4e9 phy_device_create -EXPORT_SYMBOL drivers/net/phy/libphy 0xdc2467fd genphy_update_link -EXPORT_SYMBOL drivers/net/phy/libphy 0xe20f9eec phy_init_eee -EXPORT_SYMBOL drivers/net/phy/libphy 0xe3f039d7 phy_attach_direct -EXPORT_SYMBOL drivers/net/phy/libphy 0xe46aa4d5 phy_write_mmd_indirect -EXPORT_SYMBOL drivers/net/phy/libphy 0xe92735b1 phy_stop_interrupts -EXPORT_SYMBOL drivers/net/phy/libphy 0xef566dd5 mdio_bus_type -EXPORT_SYMBOL drivers/net/phy/libphy 0xfb73d674 phy_stop -EXPORT_SYMBOL drivers/net/phy/libphy 0xfeb783e3 phy_connect_direct -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x1b10ac2e alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x22691a28 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x1dd44ad0 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x2d63f7bf cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x0d56597d xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x2360db9d xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xc926af96 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/vitesse 0xc64fa8a9 vsc824x_add_skew -EXPORT_SYMBOL drivers/net/team/team 0x1bdda2a5 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x62a8bcd1 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x717b1995 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x76a40cb0 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x9ecdce25 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xb927d3fc team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xce560b60 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xe646871e team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/pps/pps_core 0x5f02c8b6 pps_register_source -EXPORT_SYMBOL drivers/pps/pps_core 0x742a3a55 pps_unregister_source -EXPORT_SYMBOL drivers/pps/pps_core 0x842fea89 pps_event -EXPORT_SYMBOL drivers/pps/pps_core 0x84c947d8 pps_lookup_dev -EXPORT_SYMBOL drivers/ptp/ptp 0x0d1af68a ptp_clock_event -EXPORT_SYMBOL drivers/ptp/ptp 0x3c4d04db ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0x51de35f7 ptp_clock_index -EXPORT_SYMBOL drivers/ptp/ptp 0x55ddfc51 ptp_clock_register -EXPORT_SYMBOL drivers/ptp/ptp 0x5ac342fb ptp_clock_unregister -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x030587fa dasd_log_sense_dbf -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x08b29c6f dasd_set_target_state -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x0d3acec2 dasd_block_set_timer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x143de7cc dasd_alloc_erp_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x144b08b3 dasd_reload_device -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1af14dd5 dasd_log_sense -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1eb3ba45 dasd_kmalloc_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x2697b963 dasd_default_erp_action -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x27ddb934 dasd_int_handler -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x28cd50f4 dasd_sleep_on -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x3442f7c7 dasd_add_request_tail -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x500a0029 dasd_schedule_block_bh -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x50845560 dasd_debug_area -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x51ab0d19 dasd_sleep_on_immediatly -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x5b439f86 dasd_enable_device -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x5e62cbc0 dasd_block_clear_timer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x74618d6b dasd_diag_discipline_pointer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x86a3c98e dasd_add_request_head -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x913e19cf dasd_schedule_device_bh -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x937f54e6 dasd_free_erp_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9fe6e726 dasd_start_IO -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb0626b20 dasd_kick_device -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb4dcb5de dasd_sleep_on_queue -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xbb027671 dasd_eer_write -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xbe8b5807 dasd_default_erp_postaction -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc044d91a dasd_smalloc_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc3ff622f dasd_term_IO -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd0355bfc dasd_cancel_req -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd33c8a8c dasd_sfree_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xddc5e581 dasd_kfree_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xe616364f dasd_device_clear_timer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf62e377a dasd_sleep_on_interruptible -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xff256640 dasd_device_set_timer -EXPORT_SYMBOL drivers/s390/char/hmcdrv 0x08e57a2c hmcdrv_ftp_do -EXPORT_SYMBOL drivers/s390/char/hmcdrv 0x3198b5cb hmcdrv_ftp_startup -EXPORT_SYMBOL drivers/s390/char/hmcdrv 0x83a6e87f hmcdrv_ftp_probe -EXPORT_SYMBOL drivers/s390/char/hmcdrv 0xba68949c hmcdrv_ftp_shutdown -EXPORT_SYMBOL drivers/s390/char/tape 0x01550465 tape_std_read_block -EXPORT_SYMBOL drivers/s390/char/tape 0x01568dae tape_std_write_block -EXPORT_SYMBOL drivers/s390/char/tape 0x01cdd8ec tape_cancel_io -EXPORT_SYMBOL drivers/s390/char/tape 0x08350ed2 tape_free_request -EXPORT_SYMBOL drivers/s390/char/tape 0x1106fd24 tape_std_mterase -EXPORT_SYMBOL drivers/s390/char/tape 0x11e9fab0 tape_std_mtnop -EXPORT_SYMBOL drivers/s390/char/tape 0x1c725cf6 tape_std_mtbsfm -EXPORT_SYMBOL drivers/s390/char/tape 0x1d17ff40 tape_put_device -EXPORT_SYMBOL drivers/s390/char/tape 0x20b94895 tape_std_mtunload -EXPORT_SYMBOL drivers/s390/char/tape 0x2546c415 tape_state_verbose -EXPORT_SYMBOL drivers/s390/char/tape 0x2656f724 tape_std_read_backward -EXPORT_SYMBOL drivers/s390/char/tape 0x2e858b45 tape_core_dbf -EXPORT_SYMBOL drivers/s390/char/tape 0x38e59e93 tape_std_assign -EXPORT_SYMBOL drivers/s390/char/tape 0x403afe82 tape_std_mtsetblk -EXPORT_SYMBOL drivers/s390/char/tape 0x44fb87ff tape_std_mteom -EXPORT_SYMBOL drivers/s390/char/tape 0x5d2adbe0 tape_std_mtfsfm -EXPORT_SYMBOL drivers/s390/char/tape 0x61f063fc tape_generic_pm_suspend -EXPORT_SYMBOL drivers/s390/char/tape 0x65172453 tape_std_mtload -EXPORT_SYMBOL drivers/s390/char/tape 0x66deb66c tape_op_verbose -EXPORT_SYMBOL drivers/s390/char/tape 0x6f07e8d7 tape_generic_online -EXPORT_SYMBOL drivers/s390/char/tape 0x7621c4bc tape_dump_sense_dbf -EXPORT_SYMBOL drivers/s390/char/tape 0x78899ba7 tape_alloc_request -EXPORT_SYMBOL drivers/s390/char/tape 0x7b36b071 tape_state_set -EXPORT_SYMBOL drivers/s390/char/tape 0x86eb727a tape_do_io -EXPORT_SYMBOL drivers/s390/char/tape 0x8a4e57ea tape_std_mtweof -EXPORT_SYMBOL drivers/s390/char/tape 0x8fea59fc tape_generic_offline -EXPORT_SYMBOL drivers/s390/char/tape 0x95232877 tape_std_mtfsr -EXPORT_SYMBOL drivers/s390/char/tape 0x9cf1b5fc tape_med_state_set -EXPORT_SYMBOL drivers/s390/char/tape 0xa18f3fad tape_std_mtreten -EXPORT_SYMBOL drivers/s390/char/tape 0xa60a1bd9 tape_get_device -EXPORT_SYMBOL drivers/s390/char/tape 0xaf238522 tape_std_process_eov -EXPORT_SYMBOL drivers/s390/char/tape 0xb1410eb6 tape_std_mtbsf -EXPORT_SYMBOL drivers/s390/char/tape 0xb1e4faad tape_std_mtoffl -EXPORT_SYMBOL drivers/s390/char/tape 0xbcedac55 tape_do_io_async -EXPORT_SYMBOL drivers/s390/char/tape 0xc05d5f28 tape_generic_probe -EXPORT_SYMBOL drivers/s390/char/tape 0xc0acb38b tape_std_display -EXPORT_SYMBOL drivers/s390/char/tape 0xc5bfc89e tape_generic_remove -EXPORT_SYMBOL drivers/s390/char/tape 0xc9de5edc tape_std_mtbsr -EXPORT_SYMBOL drivers/s390/char/tape 0xdb2eaea3 tape_std_read_block_id -EXPORT_SYMBOL drivers/s390/char/tape 0xdf811b9b tape_mtop -EXPORT_SYMBOL drivers/s390/char/tape 0xe4460fa4 tape_std_unassign -EXPORT_SYMBOL drivers/s390/char/tape 0xe9285ffd tape_do_io_interruptible -EXPORT_SYMBOL drivers/s390/char/tape 0xedbc781d tape_std_mtfsf -EXPORT_SYMBOL drivers/s390/char/tape 0xee13f9d4 tape_std_mtreset -EXPORT_SYMBOL drivers/s390/char/tape 0xeeb9643c tape_std_mtcompression -EXPORT_SYMBOL drivers/s390/char/tape 0xf56c16e0 tape_std_mtrew -EXPORT_SYMBOL drivers/s390/char/tape_34xx 0xf6c9d357 tape_34xx_dbf -EXPORT_SYMBOL drivers/s390/char/tape_3590 0x3b142505 tape_3590_dbf -EXPORT_SYMBOL drivers/s390/char/tape_class 0xb8641b17 register_tape_dev -EXPORT_SYMBOL drivers/s390/char/tape_class 0xf9c15eda unregister_tape_dev -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x0e8ccd73 ccwgroup_set_online -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x2bf26ee1 ccwgroup_set_offline -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x3d5a48bb ccwgroup_driver_unregister -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x91235a43 ccwgroup_driver_register -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xd5da84aa ccwgroup_create_dev -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xe79c9fba ccwgroup_probe_ccwdev -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xec83810a ccwgroup_remove_ccwdev -EXPORT_SYMBOL drivers/s390/cio/qdio 0x1a866717 qdio_stop_irq -EXPORT_SYMBOL drivers/s390/cio/qdio 0x27232346 qdio_get_next_buffers -EXPORT_SYMBOL drivers/s390/cio/qdio 0x4a08e75f qdio_start_irq -EXPORT_SYMBOL drivers/s390/crypto/ap 0x0b2f053c ap_driver_unregister -EXPORT_SYMBOL drivers/s390/crypto/ap 0x0ffc9609 ap_recv -EXPORT_SYMBOL drivers/s390/crypto/ap 0x5e21cb82 ap_send -EXPORT_SYMBOL drivers/s390/crypto/ap 0x77247c5e ap_bus_force_rescan -EXPORT_SYMBOL drivers/s390/crypto/ap 0xbee8fa8e ap_queue_message -EXPORT_SYMBOL drivers/s390/crypto/ap 0xcfe9606f ap_cancel_message -EXPORT_SYMBOL drivers/s390/crypto/ap 0xd267f5e7 ap_flush_queue -EXPORT_SYMBOL drivers/s390/crypto/ap 0xd5e90454 ap_domain_index -EXPORT_SYMBOL drivers/s390/crypto/ap 0xe3d7567f ap_driver_register -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x0f4bd977 zcrypt_msgtype_request -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x2b450ed2 zcrypt_msgtype_unregister -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x32d9113e zcrypt_device_get -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x459f0202 zcrypt_msgtype_register -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x6354c2f7 zcrypt_device_alloc -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x67cedaeb zcrypt_rescan_req -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x8427d95a zcrypt_device_register -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x9442ffb5 zcrypt_device_put -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0xa5d799dd zcrypt_msgtype_release -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0xecb477cf zcrypt_device_unregister -EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0xf3c4a78f zcrypt_device_free -EXPORT_SYMBOL drivers/s390/net/ctcm 0x40b3051a ctc_mpc_dealloc_ch -EXPORT_SYMBOL drivers/s390/net/ctcm 0x56f42138 ctc_mpc_alloc_channel -EXPORT_SYMBOL drivers/s390/net/ctcm 0x812fa936 ctc_mpc_establish_connectivity -EXPORT_SYMBOL drivers/s390/net/ctcm 0xf5440dc6 ctc_mpc_flow_control -EXPORT_SYMBOL drivers/s390/net/fsm 0x0e10e441 fsm_modtimer -EXPORT_SYMBOL drivers/s390/net/fsm 0x1b770365 kfree_fsm -EXPORT_SYMBOL drivers/s390/net/fsm 0x3805a87b fsm_getstate_str -EXPORT_SYMBOL drivers/s390/net/fsm 0x57b18322 fsm_deltimer -EXPORT_SYMBOL drivers/s390/net/fsm 0x7af9f0a2 fsm_settimer -EXPORT_SYMBOL drivers/s390/net/fsm 0xc6696799 fsm_addtimer -EXPORT_SYMBOL drivers/s390/net/fsm 0xdcbc5aa7 init_fsm -EXPORT_SYMBOL drivers/s390/net/qeth_l2 0x4a31bcbc qeth_osn_register -EXPORT_SYMBOL drivers/s390/net/qeth_l2 0x5cb89697 qeth_osn_deregister -EXPORT_SYMBOL drivers/s390/net/qeth_l2 0xe358efb8 qeth_osn_assist -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0b74a743 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x269fc1c5 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3534e783 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5a1dd563 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5d905fdd fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x637188cc fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9b7c5dac fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9c16e932 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9e3e5e92 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa6b9c585 fcoe_ctlr_destroy_store -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc383db16 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfce75a4a fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0e7fb9c4 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10f66423 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x137c5d49 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x19e19166 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x21dfe027 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x259d35bf fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2dacaa2f fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36352069 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a9a2ba3 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3e634155 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ef6d665 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3fb9786d fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x426c9f15 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x490cad07 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a951522 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e72fb47 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x649a23f4 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e7e5d0b fc_rport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x82d6d652 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83a0431c fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x840f5451 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8967da97 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ad093ee fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8dbe24ac fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e01d50e fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x93e7f075 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa353c895 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2a7331a fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb408eb9f fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbbc14203 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbddb9a66 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2e03679 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2fc5233 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc51f911e fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcee0c4d4 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd19d4b37 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd367b85c fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdbca54b6 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd70e149 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe016dddf fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe6c19387 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf8a9b4f3 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9bedd29 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfcca0f51 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfefd9106 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x04617778 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x289f309f sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x701c624a sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb256b529 sas_wait_eh -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0738606f osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x09fb3ab2 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0d5fdf68 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0f6f017c osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x11c55cb4 osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x157a5684 osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1abf9e3a osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1f2f688c osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x25d78fc0 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2d54d506 osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x329178b1 osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x45e732a6 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x483daaea osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x598a805b osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x60080d46 osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6b279146 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6f609e8e osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7309b3b5 osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x812bb0a2 osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x81731a84 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa03c5a71 osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa7dca53f osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaa44f6d4 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc0028dab osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc40bdfbf osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc4162385 osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcf19f9d4 osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd041b2a6 osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd0f0f9c7 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd1ef33d6 osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd22357ea osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeb3b7601 osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xecc05b51 osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xefe9d2f7 osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf18a7aa4 osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf9b86416 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/osd 0x129b4ffd osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x2664004a osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x73bf4ab6 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0xb435b5be osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0xba4e61d6 osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0xd9144670 osduld_register_test -EXPORT_SYMBOL drivers/scsi/raid_class 0x467be3e1 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0x7c0bc6f2 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xcd036ba5 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0c3b4e39 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0daa34f0 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2e1bfe1d fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x38815a0f fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3a539f15 scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5cf9f74c fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5e048eaa fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9c34f7d5 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaf739b14 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb14cecab fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb16ca4a9 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb23e1e52 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf3d353bc fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x066890a9 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0ffbbb99 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1a3b0a76 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1e035ad0 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x21b3e26e sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2247d1b1 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x22ed726b sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x374013f6 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3e68e177 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x476a2c01 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x49768a1b sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c30e046 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x54d8abbf sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x60d709d3 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x68da88da sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6f2ed206 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7d7c0a9e scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7f0c4126 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x98e77598 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaab272fa sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb9c0d9fc sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcf563e9f sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd4940962 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdf9ee7c9 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe25d5034 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec37eb60 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf90fb951 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfabc1799 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x093ead5b spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x22a37ac2 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x37367de6 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4318e942 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfeba7c8e spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2bd875b6 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x86d6c1a3 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa32045bd srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb6211add srp_reconnect_rport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x02ae2511 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x049dc622 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0dc5e90a iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x20103d1e iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x27fd6f0c iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x41f6f2ed iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42e2a052 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4dbfa1db iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x58b53c7c iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e1d35be iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x789e9105 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7ac89b1f iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d336ef7 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x897a4d8e iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8f2e8453 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9035f6bd iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x96c6e7e5 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0211352 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0ddb4ca iscsit_set_unsoliticed_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa1f35338 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa9144f9c iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaa9cc03e iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaeb3670c iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xafa7f2de iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdc46d66e iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf02fdaaa iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf2ac68ba iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfdd36886 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x04e150c0 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x075dacf7 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x09345ef7 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x0a8c4dac transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x0b98498f target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f1a0ce3 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x119b0872 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x15c660f0 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e1afa9b target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x20af07b9 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x20e4a84a transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x2d651c3a target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x33abdbcc target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x3e4dd8b7 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x3e9a3b5a target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x3f754eeb target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x4091d387 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x464c233c transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a1cedf9 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a2995fc spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x5b86aaa1 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x5baaaa5d transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x5c145496 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x5cf77f13 transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x64888d63 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x666bbf50 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x66b70298 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x6bfab7d8 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x6c615c14 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x6d60e630 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x6f83e69f transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x7005cf74 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x7260e3cd target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x740b9309 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x75068df4 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x765aa6f6 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x7ec4fb09 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x7ee56ebf core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b8ad54d transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x8cb42832 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x8fe0fedc target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x93489aad transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x93e61668 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x940f8e30 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x994d7f2e core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x9af01675 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x9c1b16b3 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xa9df2000 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xb26cbc9d spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xb5dc89c0 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb8762892 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xb98956bb transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc880cfb transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xbe46842c sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xbee8f4da sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xccbd3656 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xd911bc95 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xda1cccdf transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xdd2fdccf target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xe0f3a8bd target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xe6a98c67 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf10aedd7 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xf1165116 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf6904ec2 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xf77a034d core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xfa84acb2 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xfbd896df passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xfe444bf1 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xfe5d2f34 target_to_linux_sector -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x09e88429 uart_remove_one_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x24bcba17 uart_get_baud_rate -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x3ff638b6 uart_suspend_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x411c51fd uart_write_wakeup -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x69bd5df3 uart_get_divisor -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x757d54b8 uart_register_driver -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x97ee8a1a uart_unregister_driver -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xb630cdd8 uart_add_one_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xc6f35660 uart_resume_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xcdf017ee uart_match_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xfbd29c5d uart_update_timeout -EXPORT_SYMBOL drivers/vhost/vringh 0x0617468c vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x15a80695 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3fc7a1da vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x42898ba2 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x42903a3b vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x4b40c951 vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user -EXPORT_SYMBOL fs/exofs/libore 0x0c0adf30 ore_remove -EXPORT_SYMBOL fs/exofs/libore 0x196d0b0b ore_read -EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x3306b162 ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x4b75f18b extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x9db34bdf ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0xa52f4bc5 ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0xb8f1f6f8 ore_write -EXPORT_SYMBOL fs/exofs/libore 0xc11e0c39 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0xd5f9c832 ore_create -EXPORT_SYMBOL fs/exofs/libore 0xf4dbd95e ore_get_rw_state -EXPORT_SYMBOL fs/fscache/fscache 0x0a4c6b94 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x0d05d35d __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x1b8c1784 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x1f5bbda0 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x265fbae6 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x2993076a fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x2c01a567 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x337562fe __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x348d6072 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x352889df fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x3f468fc8 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x47513a1f fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x4a1b7a2f __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x4faeaa34 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x51228d53 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x557449a0 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x6375f529 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x64529873 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x68a193a6 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x7282baee __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x7879c0c4 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x7bc876b7 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x7e2799b2 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x87b4cedd __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x892af138 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x9088c398 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x923d0052 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x94299054 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x9469029d __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x97d42e8c __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xa53eee6c fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xa6a7dfbb __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xb4d6d414 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xb93cfe08 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0xba294ec2 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xc8d50f23 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0xd432d15d fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xda83a78f fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xed593dc1 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xfc28a6a6 fscache_check_aux -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x09ba1516 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x59147074 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x896c86f0 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xaccae6da qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xcadba522 qtree_read_dquot -EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq -EXPORT_SYMBOL lib/crc-ccitt 0x651c2313 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0x276c7e62 crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x6b96fbac crc7_be -EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc8 0x3e77b340 crc8 -EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb -EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c -EXPORT_SYMBOL lib/lru_cache 0x0f6f0fdb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x17c6b1e1 lc_del -EXPORT_SYMBOL lib/lru_cache 0x52857213 lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x5e7b324d lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x6f1d0c3b lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0x7869961b lc_set -EXPORT_SYMBOL lib/lru_cache 0x79c87149 lc_get -EXPORT_SYMBOL lib/lru_cache 0x88713f97 lc_create -EXPORT_SYMBOL lib/lru_cache 0x955d4873 lc_committed -EXPORT_SYMBOL lib/lru_cache 0xbbc7a78d lc_put -EXPORT_SYMBOL lib/lru_cache 0xc1a43316 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a4ca05 lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xe4a98afa lc_try_get -EXPORT_SYMBOL lib/lru_cache 0xebae3022 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xf68cbb8f lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xff3f1db8 lc_find -EXPORT_SYMBOL lib/lru_cache 0xffb12208 lc_is_used -EXPORT_SYMBOL lib/lz4/lz4_compress 0x32ec514e lz4_compress -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xab08068b lz4hc_compress -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL net/802/p8022 0x918e7e2b register_8022_client -EXPORT_SYMBOL net/802/p8022 0xb63132ba unregister_8022_client -EXPORT_SYMBOL net/802/psnap 0x12e9f397 register_snap_client -EXPORT_SYMBOL net/802/psnap 0x69916ef6 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0bcc18a0 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x0e57601f p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x13d5ea29 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x1b01935c p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x1cfedb00 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x1d44d30b v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x20e554c3 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x250b45b9 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x276a3d1a p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x2fb48ebe p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x34c8090f p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x37a371de p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x3a572c0c p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x41e3921c p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x44977151 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x5095d04b p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x66f43e63 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x7520c34c p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x77aeb8e1 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x7cb5bbc9 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x7d2b1706 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8370174d p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x8c6bc053 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x8e505519 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x96b750fd v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x9eba0829 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xa17c7ae5 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xa2576a63 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0xa4e6539e p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xa68975da p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xaa7a1b3b v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xaf1e6de5 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xba183b41 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0xc02ae5ac p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xc0d1a657 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xc45c97d4 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0xcc0ad9d1 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xd6306154 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0xd95b88d9 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xe06edf65 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0xf7f1e67f p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xfbfdc8d3 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check -EXPORT_SYMBOL net/bridge/bridge 0xd61c015d br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3369bcdf ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8ad77b48 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe4e39323 ebt_do_table -EXPORT_SYMBOL net/ceph/libceph 0x037af9d2 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x03cfb4d3 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x087c16c8 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x122d39a5 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x17d7089f osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x1aa3e266 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0x1c365f58 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x1f6980cc osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x22f3b15d ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x2515cc8a ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x25a02173 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x2638f348 ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0x2896b0ed ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0x29042786 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x2c0a9fdb osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x2cf3fb44 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x2f0d69a3 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x3004fc0f ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x37970b29 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x37e4746c ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x3ed30c97 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x3f6375f9 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x419df2f7 ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x45e283ec ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x46825094 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x4a69fadc ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0x4b2fc8f0 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x4bf0271e ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0x4dd1cc60 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x4ecfa512 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x5419f0ec ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x548dc2bf ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5bbfe5fc osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x5c6460df ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x5cd5777f ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x5f947752 ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x69f74d95 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x6a86a290 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x6ca77f1e ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x6ead4b82 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x70bdc64b ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x73c312c1 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x74bfe9f9 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0x76f9007f osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x7730edc4 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x7b0f8bb0 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x7d5dfe78 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x8977535d ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x8a4f6da5 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x8eee95c4 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x90d529c2 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x93e82254 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x9609007f ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x9abf3249 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xa6162be4 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0xa81a2541 osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0xa9de8b0d ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xabff75e7 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb308f9bc ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xb4e74c52 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xb518c655 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0xb5368f36 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0xb53b20d4 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb550ef84 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xb5b4c200 ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0xbfc88f25 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0xc13dfa69 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xc1f544bb ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0xc4999115 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0xc6bc840e ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xc9da9253 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xcf38a6c9 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd305dbea ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xd46d5f31 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xd4f35bb0 osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0xd7a1e466 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xd8760728 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0xd9e71a8b ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xda9ea1d8 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xde75497f ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0xde88b316 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xe552b6fc ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0xe6a8e402 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xeeea4f74 ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0xef37c8c3 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0xf3aef966 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xf7a75d73 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xfa1f8abc ceph_osdc_put_request -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x18266dff dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xe7c29866 dccp_syn_ack_timeout -EXPORT_SYMBOL net/ipv4/fou 0x4a6219ba fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0x72395c37 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x934af5fb gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xc39c5331 gue_build_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x08b892ae ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6b3870a7 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9c974559 ip_tunnel_dst_reset_all -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa61a19d4 ip_tunnel_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa669a115 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb1abe9af ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x0d304595 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2603077c arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x369865d5 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x583e5702 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6989a20a ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x9bbee783 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x878d80d1 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0x979a9e80 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xa3042d07 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x21d6165b ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd652ad5d ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf91894bb ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf9b59a70 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xc51f7141 ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xee41450d ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf3a7fd14 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x1d6a1dc5 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0x24db1f70 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xcc255763 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf2f14def xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/l2tp/l2tp_core 0x5160cd5d l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0xe1e6b972 l2tp_ioctl -EXPORT_SYMBOL net/llc/llc 0x039c5fa9 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x077d8ecf llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x9a597075 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xa0d6354f llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xa719ad05 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xaa4dba04 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xc0fa97c9 llc_sap_find -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0437e493 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x054b3dbe unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x06d6316c ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3c05ae37 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x527c4b1f ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x55eb2454 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5addfa85 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6de3e6ba register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9624ebda ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9c9971cf unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa81844ec ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xae34ff30 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcf039f51 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf74966e3 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3aa5f9da __nf_ct_ext_add_length -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x728f09cd nf_conntrack_untracked -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xf84f2dc7 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x1db26992 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x42a4aaa7 nf_nat_used_tuple -EXPORT_SYMBOL net/netfilter/nf_nat 0x838182ec nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x9eb7ba03 nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0xb48e60d6 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xdf12e205 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x2b4ee367 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x4670834a xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x6e008605 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x84d5ac01 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x962fcc16 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xb68c42a8 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0xb93ee8ce xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xbe44087a xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xd724a9e3 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xf59a3632 xt_find_target -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x141e204e rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1711ef96 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1db4b4f0 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3437a25f rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x36012811 rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4aa88f0b rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x51861097 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8d96bb92 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x93b6e167 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xcfddb637 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd931cc42 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xddce2e3d rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xee866427 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf2caffb6 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf3940bf2 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/sctp/sctp 0x9f353ae6 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x87cc8fd0 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xa57a1138 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xaebeeced gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x32df63b6 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x45867a51 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x9bb9d7c3 xdr_truncate_encode -EXPORT_SYMBOL vmlinux 0x000ed184 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x002c3759 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x0031c81a sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x004b79b2 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x0057945d __devm_release_region -EXPORT_SYMBOL vmlinux 0x005ba061 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x005cdb00 vm_map_ram -EXPORT_SYMBOL vmlinux 0x0068f0d7 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x00713e76 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x008062d9 search_binary_handler -EXPORT_SYMBOL vmlinux 0x008400b4 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x0084b312 generic_readlink -EXPORT_SYMBOL vmlinux 0x00851137 md_integrity_register -EXPORT_SYMBOL vmlinux 0x0095f288 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0x00abed75 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x00bfe676 __inode_permission -EXPORT_SYMBOL vmlinux 0x00e7a60f mark_info_dirty -EXPORT_SYMBOL vmlinux 0x00e7c6a6 param_set_ulong -EXPORT_SYMBOL vmlinux 0x00f4a223 _ebc_toupper -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x0118bc90 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x011eb138 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x01379617 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer -EXPORT_SYMBOL vmlinux 0x017137ed generic_file_mmap -EXPORT_SYMBOL vmlinux 0x0185a7d7 sclp_pci_deconfigure -EXPORT_SYMBOL vmlinux 0x018787f2 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x018ed79f blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x0199fad6 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x01a0874d pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x01a7a7e8 __f_setown -EXPORT_SYMBOL vmlinux 0x01c6d198 lwtunnel_output -EXPORT_SYMBOL vmlinux 0x01d5b1d0 default_llseek -EXPORT_SYMBOL vmlinux 0x01d8baef nf_log_unset -EXPORT_SYMBOL vmlinux 0x01dbab5d load_nls_default -EXPORT_SYMBOL vmlinux 0x01e49ae6 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x01e778a0 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x01ebcb7b lg_global_unlock -EXPORT_SYMBOL vmlinux 0x022d0315 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x022d3771 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x023a208e simple_link -EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x0271cb98 pci_set_master -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x029b0577 pci_choose_state -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table -EXPORT_SYMBOL vmlinux 0x02a8f934 I_BDEV -EXPORT_SYMBOL vmlinux 0x02af0f26 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x02b9e2c4 seq_release -EXPORT_SYMBOL vmlinux 0x02ca22a8 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0x02e4b4f9 wake_up_process -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02f0da0c nvm_register -EXPORT_SYMBOL vmlinux 0x02f398df blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x03023289 nvm_get_blk_unlocked -EXPORT_SYMBOL vmlinux 0x031c1ab8 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0337a3c1 tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0x03498156 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x03746fed nf_hooks_needed -EXPORT_SYMBOL vmlinux 0x03747691 kbd_ascebc -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x0388a5d8 idr_init -EXPORT_SYMBOL vmlinux 0x038a1eb1 md_update_sb -EXPORT_SYMBOL vmlinux 0x03c84ae4 scsi_remove_device -EXPORT_SYMBOL vmlinux 0x03cd5d0d tsb_init -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x042dfe18 param_set_copystring -EXPORT_SYMBOL vmlinux 0x0435f26d lowcore_ptr -EXPORT_SYMBOL vmlinux 0x0444b58b sg_miter_next -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x04810ea5 down_killable -EXPORT_SYMBOL vmlinux 0x048e1de5 arp_create -EXPORT_SYMBOL vmlinux 0x04927208 cpu_active_mask -EXPORT_SYMBOL vmlinux 0x04b701bb filemap_flush -EXPORT_SYMBOL vmlinux 0x04ce727c xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04f74767 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x051e9673 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x05666e9a param_ops_string -EXPORT_SYMBOL vmlinux 0x0574cc32 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x057746dd blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x057c4ea5 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0x057cb73b ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x05834546 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0x05969dd8 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x05afc4c3 pci_get_class -EXPORT_SYMBOL vmlinux 0x05b03df8 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x05f872e1 bit_waitqueue -EXPORT_SYMBOL vmlinux 0x06026d3b sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x06032bd8 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x0604c7bd __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0630ac89 may_umount -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x0640d6be inet_frag_find -EXPORT_SYMBOL vmlinux 0x06616939 debug_set_level -EXPORT_SYMBOL vmlinux 0x066e8345 lockref_get -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x069b5353 try_to_release_page -EXPORT_SYMBOL vmlinux 0x06a485f2 __krealloc -EXPORT_SYMBOL vmlinux 0x06a4d41d inet_accept -EXPORT_SYMBOL vmlinux 0x06cc77c8 follow_up -EXPORT_SYMBOL vmlinux 0x06d6e5d5 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x071578c4 ipv4_specific -EXPORT_SYMBOL vmlinux 0x071889e0 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x07297511 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x07a12f7c __napi_complete -EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free -EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x07aa14ac netif_rx -EXPORT_SYMBOL vmlinux 0x07b68796 pci_dev_put -EXPORT_SYMBOL vmlinux 0x07c2cc1d iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x08044d6f idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x0818533c textsearch_unregister -EXPORT_SYMBOL vmlinux 0x08297435 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083d75db inet_put_port -EXPORT_SYMBOL vmlinux 0x084826b9 inet_select_addr -EXPORT_SYMBOL vmlinux 0x084cd23e dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x0872f879 blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0x088065de sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x089a864e bio_copy_kern -EXPORT_SYMBOL vmlinux 0x08a7d880 nobh_write_end -EXPORT_SYMBOL vmlinux 0x08ace69e register_external_irq -EXPORT_SYMBOL vmlinux 0x08b00bac crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x08b4b3ff __ip_dev_find -EXPORT_SYMBOL vmlinux 0x08be4b8f km_state_notify -EXPORT_SYMBOL vmlinux 0x08d2279f ___pskb_trim -EXPORT_SYMBOL vmlinux 0x08d26549 inet_addr_type -EXPORT_SYMBOL vmlinux 0x08d2f48c nvm_free_rqd_ppalist -EXPORT_SYMBOL vmlinux 0x09125bb6 debug_exception_common -EXPORT_SYMBOL vmlinux 0x092f458b skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0x093d7fa6 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x0950c255 free_user_ns -EXPORT_SYMBOL vmlinux 0x09576f93 complete_and_exit -EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key -EXPORT_SYMBOL vmlinux 0x0960ea11 param_get_short -EXPORT_SYMBOL vmlinux 0x0986fdc4 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x0987b085 blk_free_tags -EXPORT_SYMBOL vmlinux 0x09915f70 udp_table -EXPORT_SYMBOL vmlinux 0x09b56daa sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x09b7efa4 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09c8d6b8 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x09cc5422 file_open_root -EXPORT_SYMBOL vmlinux 0x09ce7fd5 find_lock_entry -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09f925ed blk_stop_queue -EXPORT_SYMBOL vmlinux 0x0a1407da tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x0a640b05 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a7a1661 seq_printf -EXPORT_SYMBOL vmlinux 0x0a86d0f9 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0x0a9d7a9f make_kgid -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aacd352 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x0acfc07b dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x0ad2ada6 d_rehash -EXPORT_SYMBOL vmlinux 0x0aedabb3 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x0af88c58 config_item_put -EXPORT_SYMBOL vmlinux 0x0afa3d53 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x0b04fdb8 from_kprojid -EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b210c7b ccw_device_get_path_mask -EXPORT_SYMBOL vmlinux 0x0b2647f7 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x0b2d5180 lwtunnel_cmp_encap -EXPORT_SYMBOL vmlinux 0x0b31ed10 xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x0b457703 task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b6fc5dd cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x0b712735 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0bb9f08f register_qdisc -EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc98a15 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x0bdbccc9 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x0c196fe9 tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work -EXPORT_SYMBOL vmlinux 0x0c23120e scsi_print_sense -EXPORT_SYMBOL vmlinux 0x0c3510cc new_inode -EXPORT_SYMBOL vmlinux 0x0c44eebc proc_set_size -EXPORT_SYMBOL vmlinux 0x0c456b9d down_read_trylock -EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat -EXPORT_SYMBOL vmlinux 0x0c566faf param_ops_uint -EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features -EXPORT_SYMBOL vmlinux 0x0c5f2a5b idr_get_next -EXPORT_SYMBOL vmlinux 0x0c6195f0 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x0c6529a0 sk_free -EXPORT_SYMBOL vmlinux 0x0c737a57 dump_skip -EXPORT_SYMBOL vmlinux 0x0c7cf7c6 zero_page_mask -EXPORT_SYMBOL vmlinux 0x0c7e208a scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x0c83d43d __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x0c8a82c9 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x0cceac6c iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0x0cefd029 sk_dst_check -EXPORT_SYMBOL vmlinux 0x0d4c519b call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d6565ab filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x0d8569e9 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x0d8c3f59 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x0d9b7122 vm_insert_page -EXPORT_SYMBOL vmlinux 0x0da07590 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0db41d49 udp_set_csum -EXPORT_SYMBOL vmlinux 0x0dced061 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x0dee8aa2 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x0e079ac7 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x0e0ed45c scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x0e37cbaa xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x0e3ff7f3 revalidate_disk -EXPORT_SYMBOL vmlinux 0x0e57846d inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x0e7d046e tty_unregister_device -EXPORT_SYMBOL vmlinux 0x0e8cea48 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x0e9c9d44 class3270 -EXPORT_SYMBOL vmlinux 0x0ea18bf3 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x0ea763c3 sclp_sync_wait -EXPORT_SYMBOL vmlinux 0x0eab56fa __kfifo_max_r -EXPORT_SYMBOL vmlinux 0x0eb91f0f cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups -EXPORT_SYMBOL vmlinux 0x0efe9d3d skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x0f173233 iucv_bus -EXPORT_SYMBOL vmlinux 0x0f2d58e1 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x0f3f278d tcp_shutdown -EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec -EXPORT_SYMBOL vmlinux 0x0f500d6d mark_page_accessed -EXPORT_SYMBOL vmlinux 0x0f55b951 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x0f5e8248 ping_prot -EXPORT_SYMBOL vmlinux 0x0f69ed35 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size -EXPORT_SYMBOL vmlinux 0x0f71b602 blk_start_request -EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0f9d7c76 register_console -EXPORT_SYMBOL vmlinux 0x0fa96a83 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fc9b727 ccw_device_start -EXPORT_SYMBOL vmlinux 0x0fe70bb8 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x10000f61 compat_sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x1022adb3 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x102bdac1 nf_unregister_hook -EXPORT_SYMBOL vmlinux 0x1042c349 __free_pages -EXPORT_SYMBOL vmlinux 0x10497616 memweight -EXPORT_SYMBOL vmlinux 0x104f7541 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x1054e732 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x10639d67 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x10b3ac16 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x10b3e681 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x10c9a43b tcp_close -EXPORT_SYMBOL vmlinux 0x10cfcbb3 single_open_size -EXPORT_SYMBOL vmlinux 0x10f2eb76 vsnprintf -EXPORT_SYMBOL vmlinux 0x10f99873 address_space_init_once -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110a6f52 blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x1115e9ab lz4_decompress_unknownoutputsize -EXPORT_SYMBOL vmlinux 0x11394f13 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x115ead33 pid_task -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x11678bc4 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x11b22d90 __dax_fault -EXPORT_SYMBOL vmlinux 0x11b54052 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x11c65146 debug_unregister_view -EXPORT_SYMBOL vmlinux 0x11c93b71 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x11e87a35 block_read_full_page -EXPORT_SYMBOL vmlinux 0x11ed2eb8 sclp_remove_processed -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x12075791 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const -EXPORT_SYMBOL vmlinux 0x12115faa inet_frags_init -EXPORT_SYMBOL vmlinux 0x1218f5b8 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x121e0e0c kernel_write -EXPORT_SYMBOL vmlinux 0x1224d249 param_get_invbool -EXPORT_SYMBOL vmlinux 0x122d7e31 __register_chrdev -EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x124919ae blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x124a4426 path_nosuid -EXPORT_SYMBOL vmlinux 0x1251a12e console_mode -EXPORT_SYMBOL vmlinux 0x12576839 simple_write_end -EXPORT_SYMBOL vmlinux 0x12646954 no_llseek -EXPORT_SYMBOL vmlinux 0x1265ac29 ccw_device_clear_options -EXPORT_SYMBOL vmlinux 0x128658bf datagram_poll -EXPORT_SYMBOL vmlinux 0x12887a93 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x129d4bc8 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12a5c996 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x12ade252 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x12b86d23 sock_create -EXPORT_SYMBOL vmlinux 0x12f9789d scsi_scan_target -EXPORT_SYMBOL vmlinux 0x13012431 vfs_getattr -EXPORT_SYMBOL vmlinux 0x1307b726 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x130a6c5a security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x1319449d secure_modules -EXPORT_SYMBOL vmlinux 0x132a4a3a key_payload_reserve -EXPORT_SYMBOL vmlinux 0x13304921 elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0x13307fde vsscanf -EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc -EXPORT_SYMBOL vmlinux 0x1343d73f pcie_set_mps -EXPORT_SYMBOL vmlinux 0x134d6112 poll_freewait -EXPORT_SYMBOL vmlinux 0x13669d57 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x137c7c48 netdev_change_features -EXPORT_SYMBOL vmlinux 0x13945880 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x139484e6 get_disk -EXPORT_SYMBOL vmlinux 0x13b79554 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x13c7d142 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d7d8b3 simple_empty -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x13fb3c87 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x146428d3 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x147ec284 loop_backing_file -EXPORT_SYMBOL vmlinux 0x1493fc89 mpage_writepages -EXPORT_SYMBOL vmlinux 0x14c5e5b3 segment_warning -EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x14ed6025 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x14f563e1 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x14f59ba9 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x1514ade5 qdisc_list_add -EXPORT_SYMBOL vmlinux 0x15208cbc bdget -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x1559806a copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x157b98be dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x1588366a lock_sock_nested -EXPORT_SYMBOL vmlinux 0x158a676c compat_ip_setsockopt -EXPORT_SYMBOL vmlinux 0x159a85c3 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x15a3084c param_set_bool -EXPORT_SYMBOL vmlinux 0x15a9bb26 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15d95bc0 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x15e8f7cf always_delete_dentry -EXPORT_SYMBOL vmlinux 0x15fbddf9 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x160b7535 dump_page -EXPORT_SYMBOL vmlinux 0x1619fedb load_nls -EXPORT_SYMBOL vmlinux 0x16679f8c filp_open -EXPORT_SYMBOL vmlinux 0x1681a5fb gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x169b7aee unregister_adapter_interrupt -EXPORT_SYMBOL vmlinux 0x16a4972e pneigh_lookup -EXPORT_SYMBOL vmlinux 0x16aacd52 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x16b38297 kill_anon_super -EXPORT_SYMBOL vmlinux 0x16d34089 pci_clear_master -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16f5c428 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x17261585 thaw_super -EXPORT_SYMBOL vmlinux 0x17376813 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x173c6584 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x1781dcff rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x1783a8dc ll_rw_block -EXPORT_SYMBOL vmlinux 0x1789e65b seq_vprintf -EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x1795b3f2 posix_lock_file -EXPORT_SYMBOL vmlinux 0x1797f266 netlink_ack -EXPORT_SYMBOL vmlinux 0x179fc2fc __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x17a142df __copy_from_user -EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x17dcb490 nvm_put_blk_unlocked -EXPORT_SYMBOL vmlinux 0x17e05223 raw3270_del_view -EXPORT_SYMBOL vmlinux 0x18003fd1 nf_afinfo -EXPORT_SYMBOL vmlinux 0x18123f6b nf_reinject -EXPORT_SYMBOL vmlinux 0x1824dd0c __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken -EXPORT_SYMBOL vmlinux 0x183c50ed bio_put -EXPORT_SYMBOL vmlinux 0x183f45d8 generic_make_request -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x184bf5ab configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc -EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x189b6bac memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x189df10d blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x18b87cca sclp_deactivate -EXPORT_SYMBOL vmlinux 0x18c57798 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x191367dd blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x194839cf jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x195d7248 kernel_listen -EXPORT_SYMBOL vmlinux 0x1979a277 tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19aac703 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19ecc6fa nvm_submit_io -EXPORT_SYMBOL vmlinux 0x19fc8306 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0x1a062b28 dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0x1a1d1d36 module_refcount -EXPORT_SYMBOL vmlinux 0x1a29c107 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x1a4a4880 blk_start_queue -EXPORT_SYMBOL vmlinux 0x1a4c207d netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x1a73698a __put_cred -EXPORT_SYMBOL vmlinux 0x1a7a94e7 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x1aab607a dquot_commit -EXPORT_SYMBOL vmlinux 0x1ab6847f nf_register_hooks -EXPORT_SYMBOL vmlinux 0x1aed7fdf key_type_keyring -EXPORT_SYMBOL vmlinux 0x1b008492 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents -EXPORT_SYMBOL vmlinux 0x1b5198b3 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x1b58273b simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b7e0448 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug -EXPORT_SYMBOL vmlinux 0x1b91b0e7 configfs_depend_item -EXPORT_SYMBOL vmlinux 0x1baf6f0f elv_register_queue -EXPORT_SYMBOL vmlinux 0x1bb07a42 lz4_decompress -EXPORT_SYMBOL vmlinux 0x1bb0a5e5 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer -EXPORT_SYMBOL vmlinux 0x1bbdc8f8 seq_escape -EXPORT_SYMBOL vmlinux 0x1bc2c6c3 audit_log_task_info -EXPORT_SYMBOL vmlinux 0x1bd79bd3 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x1bd7af74 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x1bf18dd7 skb_seq_read -EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states -EXPORT_SYMBOL vmlinux 0x1c1264a1 fput -EXPORT_SYMBOL vmlinux 0x1c13045d generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x1c13490e tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x1c1c74c7 iucv_message_receive -EXPORT_SYMBOL vmlinux 0x1c212766 vfs_read -EXPORT_SYMBOL vmlinux 0x1c53b6f6 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x1c61b587 raw3270_start -EXPORT_SYMBOL vmlinux 0x1c762a81 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check -EXPORT_SYMBOL vmlinux 0x1c8a451d jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x1d2626f9 tty_register_driver -EXPORT_SYMBOL vmlinux 0x1d47db18 compat_sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x1d4a6628 tcp_poll -EXPORT_SYMBOL vmlinux 0x1d4d845e pci_read_vpd -EXPORT_SYMBOL vmlinux 0x1d63cd6d ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x1d69298d try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x1d70a6b4 xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0x1d71bfff remove_arg_zero -EXPORT_SYMBOL vmlinux 0x1d91966f __skb_tx_hash -EXPORT_SYMBOL vmlinux 0x1daa8f08 devm_iounmap -EXPORT_SYMBOL vmlinux 0x1dbb3b99 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x1dc58a73 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x1df2e22c check_disk_change -EXPORT_SYMBOL vmlinux 0x1e0b16af scsi_add_device -EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev -EXPORT_SYMBOL vmlinux 0x1e4a3073 page_follow_link_light -EXPORT_SYMBOL vmlinux 0x1e541ca1 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x1e624742 dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e76ff33 put_disk -EXPORT_SYMBOL vmlinux 0x1e827675 blk_init_queue -EXPORT_SYMBOL vmlinux 0x1e8a161a crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x1e8aacb9 submit_bio -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ebe0712 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x1ebe31ad pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x1ec01a94 d_obtain_root -EXPORT_SYMBOL vmlinux 0x1ee88857 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x1f049d90 udp_ioctl -EXPORT_SYMBOL vmlinux 0x1f33412e param_set_long -EXPORT_SYMBOL vmlinux 0x1f4581b9 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x1f46a728 netdev_features_change -EXPORT_SYMBOL vmlinux 0x1f538a4d __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x1f78e128 touch_atime -EXPORT_SYMBOL vmlinux 0x1f97c0eb dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x1faabfe8 tcf_hash_insert -EXPORT_SYMBOL vmlinux 0x1fbb0bb2 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region -EXPORT_SYMBOL vmlinux 0x1ffac2fc pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x200f9cbb pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x201f0f24 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x2024225b __inet_hash -EXPORT_SYMBOL vmlinux 0x203d60d6 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x205635c0 tty_mutex -EXPORT_SYMBOL vmlinux 0x205f4d9f sclp_unregister -EXPORT_SYMBOL vmlinux 0x2066a967 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x2086c69d jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x208b752c unregister_shrinker -EXPORT_SYMBOL vmlinux 0x20973b94 segment_unload -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20a9a5df simple_unlink -EXPORT_SYMBOL vmlinux 0x20b7769f write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x20b85b41 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf -EXPORT_SYMBOL vmlinux 0x20e1fd25 pci_enable_device -EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x20fd3dff get_acl -EXPORT_SYMBOL vmlinux 0x210d5871 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x2115776c blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x212bc54a ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x2136fa92 kernel_read -EXPORT_SYMBOL vmlinux 0x21697a21 iucv_message_reject -EXPORT_SYMBOL vmlinux 0x219f0ba2 elevator_init -EXPORT_SYMBOL vmlinux 0x21a7298a generic_show_options -EXPORT_SYMBOL vmlinux 0x21a7fb9e pci_bus_get -EXPORT_SYMBOL vmlinux 0x21cacb76 md_check_recovery -EXPORT_SYMBOL vmlinux 0x21da7625 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set -EXPORT_SYMBOL vmlinux 0x21e472bd dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x21eb5b00 sclp_cpi_set_data -EXPORT_SYMBOL vmlinux 0x21fbc5cc nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x2201bdf3 tty_write_room -EXPORT_SYMBOL vmlinux 0x221be09f genl_unregister_family -EXPORT_SYMBOL vmlinux 0x222c1add kobject_get -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x224cb332 down -EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x226b08a4 idr_is_empty -EXPORT_SYMBOL vmlinux 0x226db434 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x2275770f dev_remove_offload -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x22ac1d06 raw3270_request_set_data -EXPORT_SYMBOL vmlinux 0x22b424fa dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x22d4e951 try_module_get -EXPORT_SYMBOL vmlinux 0x22db4013 km_new_mapping -EXPORT_SYMBOL vmlinux 0x22e23df2 generic_file_open -EXPORT_SYMBOL vmlinux 0x22e4cd20 cad_pid -EXPORT_SYMBOL vmlinux 0x22ecf082 idr_remove -EXPORT_SYMBOL vmlinux 0x22f51070 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x22f5a3b6 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x230d2355 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x231f9838 simple_statfs -EXPORT_SYMBOL vmlinux 0x233a19cd f_setown -EXPORT_SYMBOL vmlinux 0x23467e66 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x235cb951 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x2365ede7 __irq_regs -EXPORT_SYMBOL vmlinux 0x236c8c64 memcpy -EXPORT_SYMBOL vmlinux 0x2378289a neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x23792d0a inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x23816fd5 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x239285b9 inet6_protos -EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c82926 eth_change_mtu -EXPORT_SYMBOL vmlinux 0x23d2db96 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x23d39eb5 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x23e97e24 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x2400c383 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x240db5be dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x242f3562 irq_subclass_register -EXPORT_SYMBOL vmlinux 0x2430378a tcp_check_req -EXPORT_SYMBOL vmlinux 0x2434fa11 noop_qdisc -EXPORT_SYMBOL vmlinux 0x2438387f tccb_add_dcw -EXPORT_SYMBOL vmlinux 0x2445b291 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x2472188e __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x2477e332 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf -EXPORT_SYMBOL vmlinux 0x24ce92d9 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x24d6722b kthread_bind -EXPORT_SYMBOL vmlinux 0x24dfd4bd tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x24eb0968 ccw_device_is_pathgroup -EXPORT_SYMBOL vmlinux 0x24f48502 scsi_dma_map -EXPORT_SYMBOL vmlinux 0x24fbd9cb airq_iv_release -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x25227fa3 down_read -EXPORT_SYMBOL vmlinux 0x25228412 param_ops_long -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x25a0034f tcp_release_cb -EXPORT_SYMBOL vmlinux 0x25abda14 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x25bbc103 __find_get_block -EXPORT_SYMBOL vmlinux 0x25cd7c0e neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x25d21286 thaw_bdev -EXPORT_SYMBOL vmlinux 0x25d84c49 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25ec1b28 strlen -EXPORT_SYMBOL vmlinux 0x25f77e29 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x25fc0e75 tcp_prot -EXPORT_SYMBOL vmlinux 0x2602af70 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x260d1d85 unload_nls -EXPORT_SYMBOL vmlinux 0x260e15d8 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x261484a8 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x2658cc84 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x2683576b free_buffer_head -EXPORT_SYMBOL vmlinux 0x26ab88dd memcg_socket_limit_enabled -EXPORT_SYMBOL vmlinux 0x26d66e79 param_ops_short -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x26fa50c0 complete -EXPORT_SYMBOL vmlinux 0x270855a7 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x2729dde2 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x276278c8 setattr_copy -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x278e00c5 dm_get_device -EXPORT_SYMBOL vmlinux 0x27ac2b0a get_fs_type -EXPORT_SYMBOL vmlinux 0x27b60a2a page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27d937b9 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x27e1a049 printk -EXPORT_SYMBOL vmlinux 0x280536fe pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28343bad scnprintf -EXPORT_SYMBOL vmlinux 0x2836df2e inode_init_once -EXPORT_SYMBOL vmlinux 0x2843c643 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x2885cce4 pci_get_slot -EXPORT_SYMBOL vmlinux 0x289425bc __sb_end_write -EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x28b45824 ccw_device_start_key -EXPORT_SYMBOL vmlinux 0x28bead86 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x28dc108c xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x29061444 tcp_destroy_cgroup -EXPORT_SYMBOL vmlinux 0x29113992 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x2911e32e tty_lock -EXPORT_SYMBOL vmlinux 0x2932b22f __pci_register_driver -EXPORT_SYMBOL vmlinux 0x29391e7d vm_munmap -EXPORT_SYMBOL vmlinux 0x2944334c kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x29769f1f dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x29789394 empty_zero_page -EXPORT_SYMBOL vmlinux 0x29a35189 mount_bdev -EXPORT_SYMBOL vmlinux 0x29bdc07d param_get_uint -EXPORT_SYMBOL vmlinux 0x29c1d1c4 tcp_seq_open -EXPORT_SYMBOL vmlinux 0x29c97d7e blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x29cc27c0 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x29dacbee nvm_erase_blk -EXPORT_SYMBOL vmlinux 0x29db5cd3 tcf_hash_check -EXPORT_SYMBOL vmlinux 0x29f8fbfb neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x2a114e1f open_check_o_direct -EXPORT_SYMBOL vmlinux 0x2a32fdc1 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2a6f3dcd dev_printk -EXPORT_SYMBOL vmlinux 0x2a79a5f4 rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0x2a7cb937 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x2a845a4f have_submounts -EXPORT_SYMBOL vmlinux 0x2a864464 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x2a9bb5ee get_task_exe_file -EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x2ab11881 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put -EXPORT_SYMBOL vmlinux 0x2ac45901 pci_enable_msix -EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat -EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 -EXPORT_SYMBOL vmlinux 0x2b4ac0bf xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x2b4ad559 skb_pad -EXPORT_SYMBOL vmlinux 0x2b728e57 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2bb809fe register_key_type -EXPORT_SYMBOL vmlinux 0x2bc4cc37 dcb_setapp -EXPORT_SYMBOL vmlinux 0x2bd88320 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x2bd99df6 bio_add_page -EXPORT_SYMBOL vmlinux 0x2be54428 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x2c11fdb7 dev_addr_init -EXPORT_SYMBOL vmlinux 0x2c231c04 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x2c235b27 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x2c29a995 __strnlen_user -EXPORT_SYMBOL vmlinux 0x2c2d58ed __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x2c458e9c tcw_add_tidaw -EXPORT_SYMBOL vmlinux 0x2c59c16f inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x2c61b2a1 put_page -EXPORT_SYMBOL vmlinux 0x2c703690 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x2c897734 tcw_get_tsb -EXPORT_SYMBOL vmlinux 0x2c8b3e4c tcp_req_err -EXPORT_SYMBOL vmlinux 0x2c950982 skb_push -EXPORT_SYMBOL vmlinux 0x2cb57659 param_ops_int -EXPORT_SYMBOL vmlinux 0x2cc51754 get_gendisk -EXPORT_SYMBOL vmlinux 0x2cd72826 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x2cd81918 kernel_accept -EXPORT_SYMBOL vmlinux 0x2cde1a9e sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x2d016203 compat_sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x2d0adf83 bmap -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d466b14 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x2d5528c9 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x2d6e53b8 read_cache_pages -EXPORT_SYMBOL vmlinux 0x2db2c2ca fifo_set_limit -EXPORT_SYMBOL vmlinux 0x2dbb9241 ida_init -EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink -EXPORT_SYMBOL vmlinux 0x2de58ec0 inet_getname -EXPORT_SYMBOL vmlinux 0x2e001861 compat_ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x2e02c9b7 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on -EXPORT_SYMBOL vmlinux 0x2e1fc150 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0x2e6540ca bdi_destroy -EXPORT_SYMBOL vmlinux 0x2e7d6b80 pagecache_write_end -EXPORT_SYMBOL vmlinux 0x2e839fc7 passthru_features_check -EXPORT_SYMBOL vmlinux 0x2e8536c5 d_alloc_name -EXPORT_SYMBOL vmlinux 0x2e8abdeb proc_douintvec -EXPORT_SYMBOL vmlinux 0x2e9267eb scsi_host_put -EXPORT_SYMBOL vmlinux 0x2ead0fb0 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x2eb9afe3 fd_install -EXPORT_SYMBOL vmlinux 0x2ed9a9c2 module_put -EXPORT_SYMBOL vmlinux 0x2ee133df netif_receive_skb -EXPORT_SYMBOL vmlinux 0x2ee3fe76 module_layout -EXPORT_SYMBOL vmlinux 0x2ee70f1c __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x2ef5661d segment_modify_shared -EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x2efabe42 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x2efc102f tcw_set_data -EXPORT_SYMBOL vmlinux 0x2f03f4a7 simple_setattr -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource -EXPORT_SYMBOL vmlinux 0x2f293de9 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0x2f29dd86 skb_clone -EXPORT_SYMBOL vmlinux 0x2f3d9a47 seq_release_private -EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x2f48e193 vmemmap -EXPORT_SYMBOL vmlinux 0x2f53be14 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x2f5fe171 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x2f67d0fc compat_nf_getsockopt -EXPORT_SYMBOL vmlinux 0x2f6b0d13 kset_unregister -EXPORT_SYMBOL vmlinux 0x2f6cc33b pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x2f920baf blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0x2f92f658 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x2fa5a500 memcmp -EXPORT_SYMBOL vmlinux 0x2fb3750c on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe3971c ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x2ff07f69 elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0x2ffffb6f _ebc_tolower -EXPORT_SYMBOL vmlinux 0x3009cc76 rtnl_notify -EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x30418a2e pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x3069b17a blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x3083c253 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30d35c88 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30f46468 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x31010eac __crypto_memneq -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x312a3451 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0x313ed1f9 blk_init_queue_node -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x314da1dc generic_write_checks -EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear -EXPORT_SYMBOL vmlinux 0x31970557 nf_log_packet -EXPORT_SYMBOL vmlinux 0x321a43cb netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x321b982d idr_replace -EXPORT_SYMBOL vmlinux 0x3221bd3f raw3270_request_set_idal -EXPORT_SYMBOL vmlinux 0x32379298 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x3237d878 rwsem_wake -EXPORT_SYMBOL vmlinux 0x3238a155 rename_lock -EXPORT_SYMBOL vmlinux 0x324555c1 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x324a50a7 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x3275689f smp_ctl_set_bit -EXPORT_SYMBOL vmlinux 0x32977fa7 kill_pid -EXPORT_SYMBOL vmlinux 0x3297a155 __neigh_create -EXPORT_SYMBOL vmlinux 0x329a9400 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x32a7429e jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x32c6a2d8 _ebcasc_500 -EXPORT_SYMBOL vmlinux 0x32debb16 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x32e9e0be path_is_under -EXPORT_SYMBOL vmlinux 0x32f9c768 unregister_external_irq -EXPORT_SYMBOL vmlinux 0x33133cba xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x33216be9 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x33312ef7 pci_release_region -EXPORT_SYMBOL vmlinux 0x33519b7f register_quota_format -EXPORT_SYMBOL vmlinux 0x33660839 udp_proc_register -EXPORT_SYMBOL vmlinux 0x33780185 dcache_readdir -EXPORT_SYMBOL vmlinux 0x338bbef8 __ndelay -EXPORT_SYMBOL vmlinux 0x3392f334 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x33ae432a __destroy_inode -EXPORT_SYMBOL vmlinux 0x33b1d02f dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x33b2e8d7 ccw_device_set_online -EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x33ceb5bb netif_rx_ni -EXPORT_SYMBOL vmlinux 0x33f74de3 _ascebc_500 -EXPORT_SYMBOL vmlinux 0x341cbed2 cpu_present_mask -EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x34554242 set_device_ro -EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x3467f44b xfrm_input -EXPORT_SYMBOL vmlinux 0x347013de nla_validate -EXPORT_SYMBOL vmlinux 0x34702202 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x348af88f kill_block_super -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34a41273 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x34a8d940 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x34c0fff1 __scm_destroy -EXPORT_SYMBOL vmlinux 0x34dd164d md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f592ce netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x34fada2b raw3270_reset -EXPORT_SYMBOL vmlinux 0x350e9dc2 single_open -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x351bc32b md_register_thread -EXPORT_SYMBOL vmlinux 0x3558fa24 crc32_be -EXPORT_SYMBOL vmlinux 0x3559d5a6 bio_endio -EXPORT_SYMBOL vmlinux 0x355ac717 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x3562aa9a tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x3593cc69 d_tmpfile -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35b381b7 dentry_update_name_case -EXPORT_SYMBOL vmlinux 0x35c6d599 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x35ca2274 ilookup -EXPORT_SYMBOL vmlinux 0x35eb59fb tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x35edf7c3 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x3602aba9 raw3270_register_notifier -EXPORT_SYMBOL vmlinux 0x362b2b82 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x36398710 free_netdev -EXPORT_SYMBOL vmlinux 0x36591d6c sock_create_lite -EXPORT_SYMBOL vmlinux 0x3666a412 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x3678cb8c simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x368af1c4 devm_memremap -EXPORT_SYMBOL vmlinux 0x36a575c0 acl_by_type -EXPORT_SYMBOL vmlinux 0x36ab603b __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc -EXPORT_SYMBOL vmlinux 0x36c93ef8 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x36e779d7 sock_wake_async -EXPORT_SYMBOL vmlinux 0x36ea076f qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x36f583a9 unregister_key_type -EXPORT_SYMBOL vmlinux 0x3707e641 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x3718c116 arch_lock_relax -EXPORT_SYMBOL vmlinux 0x3725ff77 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x37703425 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x3774c96c ida_simple_remove -EXPORT_SYMBOL vmlinux 0x378a80d3 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x379b0e64 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37ce3354 put_io_context -EXPORT_SYMBOL vmlinux 0x37fa3d3f blk_delay_queue -EXPORT_SYMBOL vmlinux 0x37fec2b1 neigh_table_init -EXPORT_SYMBOL vmlinux 0x37ff4c06 copy_from_user_overflow -EXPORT_SYMBOL vmlinux 0x38017496 security_inode_permission -EXPORT_SYMBOL vmlinux 0x38197f27 __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x3820b649 drop_nlink -EXPORT_SYMBOL vmlinux 0x3834a94c dentry_open -EXPORT_SYMBOL vmlinux 0x383eb8c3 ccw_driver_register -EXPORT_SYMBOL vmlinux 0x384681d3 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x384c68b5 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x385bc360 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x38759475 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x3890d431 netif_device_attach -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38de42c9 blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x391367b2 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x396d01a5 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x397cf0a1 param_set_ullong -EXPORT_SYMBOL vmlinux 0x398595ff dquot_drop -EXPORT_SYMBOL vmlinux 0x398d89e9 tcf_em_register -EXPORT_SYMBOL vmlinux 0x3990fc52 __tcf_hash_release -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399d05b8 __wake_up_bit -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x3a466796 file_update_time -EXPORT_SYMBOL vmlinux 0x3a748cc9 dump_emit -EXPORT_SYMBOL vmlinux 0x3a8aa24d km_report -EXPORT_SYMBOL vmlinux 0x3a8e08bb itcw_add_dcw -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3aa11bd1 _raw_read_lock_wait -EXPORT_SYMBOL vmlinux 0x3ab41b25 __copy_in_user -EXPORT_SYMBOL vmlinux 0x3acb0080 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x3acd3bd7 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x3b0d5a65 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x3b1c2a3d d_drop -EXPORT_SYMBOL vmlinux 0x3b3c5405 dquot_operations -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x3b9066bb genl_notify -EXPORT_SYMBOL vmlinux 0x3b9d19d6 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x3ba5ef27 dquot_alloc -EXPORT_SYMBOL vmlinux 0x3ba6d3c4 mount_ns -EXPORT_SYMBOL vmlinux 0x3bc63e19 security_path_mknod -EXPORT_SYMBOL vmlinux 0x3bd58eb5 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x3c0b4eee __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x3c281d23 netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0x3c2a26aa compat_ip_getsockopt -EXPORT_SYMBOL vmlinux 0x3c306c1f tty_port_put -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x3c7c32be __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x3c7e513a skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3ca025fc scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x3cbff3ce dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x3cc3d20b tcp_init_sock -EXPORT_SYMBOL vmlinux 0x3cc6acbc __invalidate_device -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce4ffe3 dev_get_by_name -EXPORT_SYMBOL vmlinux 0x3d117a60 itcw_calc_size -EXPORT_SYMBOL vmlinux 0x3d1ac785 inet_listen -EXPORT_SYMBOL vmlinux 0x3d2aa9ae inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x3d2b8b98 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x3d5977c7 padata_free -EXPORT_SYMBOL vmlinux 0x3dabf292 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3df53399 blk_put_queue -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e016c91 mntput -EXPORT_SYMBOL vmlinux 0x3e2ee266 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x3e445905 km_policy_notify -EXPORT_SYMBOL vmlinux 0x3e71c640 scsi_host_get -EXPORT_SYMBOL vmlinux 0x3e73b974 get_task_io_context -EXPORT_SYMBOL vmlinux 0x3e82dd51 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x3e88e3b2 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x3e8f0e92 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e937f5b console_stop -EXPORT_SYMBOL vmlinux 0x3e96f9a2 register_sysctl -EXPORT_SYMBOL vmlinux 0x3eba48f2 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x3ecd3b77 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x3ecf4382 cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x3ed02927 blk_register_region -EXPORT_SYMBOL vmlinux 0x3ed7c92b read_code -EXPORT_SYMBOL vmlinux 0x3ee36557 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x3eec9923 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x3f2286d5 napi_complete_done -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f5bd66f textsearch_prepare -EXPORT_SYMBOL vmlinux 0x3f840675 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x3fa432d5 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x3fa913da strspn -EXPORT_SYMBOL vmlinux 0x3fb0b9e3 __udelay -EXPORT_SYMBOL vmlinux 0x3fb58b6d up -EXPORT_SYMBOL vmlinux 0x3fec048f sg_next -EXPORT_SYMBOL vmlinux 0x3ffce487 zero_fill_bio -EXPORT_SYMBOL vmlinux 0x40094aea cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x400f9997 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x4020b901 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x402b8281 __request_module -EXPORT_SYMBOL vmlinux 0x4048cbe2 ip6_xmit -EXPORT_SYMBOL vmlinux 0x405b5640 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x40937da4 vfs_statfs -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x409ba278 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x40a548e1 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b97814 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d3250b msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40e51eb7 param_set_invbool -EXPORT_SYMBOL vmlinux 0x40eaa0d7 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x40ef71ec blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x419e11c2 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x41b55d6d __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x41c923ef netdev_state_change -EXPORT_SYMBOL vmlinux 0x41d6fdd6 clear_inode -EXPORT_SYMBOL vmlinux 0x41df696c wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x41f09205 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x41fb04f1 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x42039f21 dev_load -EXPORT_SYMBOL vmlinux 0x4207f8eb netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x420d0f4f set_anon_super -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x4221fc65 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x422454a1 sock_update_memcg -EXPORT_SYMBOL vmlinux 0x422e667d bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x423c9668 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x423d8aa3 blk_run_queue -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424c3c26 dev_notice -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x425e25c3 touch_buffer -EXPORT_SYMBOL vmlinux 0x42711898 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x4274fa05 copy_from_iter -EXPORT_SYMBOL vmlinux 0x428f432e inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x42aad64b blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x42b071d5 get_mm_exe_file -EXPORT_SYMBOL vmlinux 0x42c42d58 sock_get_timestampns -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x431540ce lro_receive_skb -EXPORT_SYMBOL vmlinux 0x4352665e sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x43bdfa20 console_irq -EXPORT_SYMBOL vmlinux 0x43c486d4 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x43cf3bc3 dql_completed -EXPORT_SYMBOL vmlinux 0x43f000a4 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x440bc5fb inet_del_offload -EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed -EXPORT_SYMBOL vmlinux 0x441b6099 read_dev_sector -EXPORT_SYMBOL vmlinux 0x441bb17f posix_unblock_lock -EXPORT_SYMBOL vmlinux 0x441df6ad truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x443fe4a7 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x44511fce simple_transaction_get -EXPORT_SYMBOL vmlinux 0x44551567 nvm_unregister_target -EXPORT_SYMBOL vmlinux 0x44658e27 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x44a0bd4c textsearch_register -EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x44b2e1ca pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x44d21934 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x44dd87bc mutex_unlock -EXPORT_SYMBOL vmlinux 0x44e8b3be inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x450ff914 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x4510c489 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x4534f0db netif_device_detach -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x45475242 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x454ab205 generic_setlease -EXPORT_SYMBOL vmlinux 0x455e7557 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x4566c43c sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x4568220e sock_efree -EXPORT_SYMBOL vmlinux 0x45708ce9 cdrom_release -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457f0855 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x45a5fa13 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource -EXPORT_SYMBOL vmlinux 0x45c178e7 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x45c92313 VMALLOC_END -EXPORT_SYMBOL vmlinux 0x45e5e243 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0x46013e72 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x46066e5b perf_pmu_name -EXPORT_SYMBOL vmlinux 0x460fc690 icmpv6_send -EXPORT_SYMBOL vmlinux 0x4610daf2 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x46497d05 tty_hangup -EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x46824d32 netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x46b67693 hex2bin -EXPORT_SYMBOL vmlinux 0x46c7e75b vm_insert_mixed -EXPORT_SYMBOL vmlinux 0x46cc96f1 init_net -EXPORT_SYMBOL vmlinux 0x46d59f7d smp_cpu_mt_shift -EXPORT_SYMBOL vmlinux 0x46d9d796 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x46e34b15 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg -EXPORT_SYMBOL vmlinux 0x47028988 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x47161e30 set_bh_page -EXPORT_SYMBOL vmlinux 0x473f942a kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x474162d4 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x4748acb3 nf_log_set -EXPORT_SYMBOL vmlinux 0x4753ed27 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x476084c3 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x47730ed9 vmap -EXPORT_SYMBOL vmlinux 0x477a08e0 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x47ac6fee seq_open_private -EXPORT_SYMBOL vmlinux 0x47d949b8 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x48061e6d dev_change_carrier -EXPORT_SYMBOL vmlinux 0x48150a7d security_path_link -EXPORT_SYMBOL vmlinux 0x4823819e raw3270_buffer_address -EXPORT_SYMBOL vmlinux 0x48244fba scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x487c5a45 lwtunnel_fill_encap -EXPORT_SYMBOL vmlinux 0x48931f51 __netif_schedule -EXPORT_SYMBOL vmlinux 0x48a1a86e __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x48aa94c7 flow_cache_init -EXPORT_SYMBOL vmlinux 0x48b50176 dev_addr_add -EXPORT_SYMBOL vmlinux 0x48b99bb8 __lock_buffer -EXPORT_SYMBOL vmlinux 0x48be1db0 jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0x48cab08f generic_listxattr -EXPORT_SYMBOL vmlinux 0x48dbd7d2 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x48ebef66 dquot_get_state -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4907a56d wait_for_completion -EXPORT_SYMBOL vmlinux 0x4924c850 _raw_write_trylock_retry -EXPORT_SYMBOL vmlinux 0x49536f3c dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init -EXPORT_SYMBOL vmlinux 0x495da0ec kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x49602461 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data -EXPORT_SYMBOL vmlinux 0x496218d2 iput -EXPORT_SYMBOL vmlinux 0x49684279 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x496d6be4 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x4970ccc5 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x4974d7ed __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x499bf627 bio_integrity_endio -EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x49b4e398 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x49be2600 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x49d8c885 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many -EXPORT_SYMBOL vmlinux 0x49f885b4 flush_old_exec -EXPORT_SYMBOL vmlinux 0x4a0c322d simple_fill_super -EXPORT_SYMBOL vmlinux 0x4a0e7944 key_validate -EXPORT_SYMBOL vmlinux 0x4a3191c7 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x4a34e379 genlmsg_put -EXPORT_SYMBOL vmlinux 0x4a4a1e30 vfs_readf -EXPORT_SYMBOL vmlinux 0x4a4e5148 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x4a638c93 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x4a87bb72 key_put -EXPORT_SYMBOL vmlinux 0x4a9dc381 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x4ab6bd93 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk -EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource -EXPORT_SYMBOL vmlinux 0x4afc1b08 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b1c7a2a generic_setxattr -EXPORT_SYMBOL vmlinux 0x4b39a1c8 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x4b5814ef kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b616e11 del_gendisk -EXPORT_SYMBOL vmlinux 0x4b73fa6d linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x4b74c617 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x4b7b3804 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x4b7d59e5 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x4b97eebf truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x4baedc91 parent_mem_cgroup -EXPORT_SYMBOL vmlinux 0x4bb3ee50 file_remove_privs -EXPORT_SYMBOL vmlinux 0x4bde07f4 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x4be3d433 __quota_error -EXPORT_SYMBOL vmlinux 0x4be7d2a0 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x4c0a548f blkdev_put -EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf -EXPORT_SYMBOL vmlinux 0x4c3edbb0 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x4c4c956e nla_memcmp -EXPORT_SYMBOL vmlinux 0x4c4d2148 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x4c564333 mem_cgroup_begin_page_stat -EXPORT_SYMBOL vmlinux 0x4c8a74c0 node_data -EXPORT_SYMBOL vmlinux 0x4cbb16de blk_get_queue -EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x4ce6d8a1 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x4cf7a285 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x4d030d7c done_path_create -EXPORT_SYMBOL vmlinux 0x4d06037e bio_unmap_user -EXPORT_SYMBOL vmlinux 0x4d1c4d14 __devcgroup_inode_permission -EXPORT_SYMBOL vmlinux 0x4d23cfba pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x4d3432bd sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x4d3b2f47 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x4d49c8b0 __debug_sprintf_exception -EXPORT_SYMBOL vmlinux 0x4d4b5757 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x4d50d70c udp_prot -EXPORT_SYMBOL vmlinux 0x4d673f0a scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x4d87dc28 __devm_request_region -EXPORT_SYMBOL vmlinux 0x4d891249 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x4d912d84 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4dd8e1a7 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x4dda726b match_strlcpy -EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4dea1053 memchr -EXPORT_SYMBOL vmlinux 0x4dea9faa clear_nlink -EXPORT_SYMBOL vmlinux 0x4dec70ed tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x4dedb0e7 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4e247984 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x4e2bd2af scsi_host_set_state -EXPORT_SYMBOL vmlinux 0x4e337467 pci_dev_get -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e437e78 blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0x4e506395 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x4e5fd6c7 dst_destroy -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e8029bf dst_discard_out -EXPORT_SYMBOL vmlinux 0x4e9a7bd8 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x4ebd3b23 sget -EXPORT_SYMBOL vmlinux 0x4ef4f163 tccb_init -EXPORT_SYMBOL vmlinux 0x4effe09a vfs_unlink -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f26ab82 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x4f28f880 simple_rmdir -EXPORT_SYMBOL vmlinux 0x4f2cd1b5 __cpcmd -EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse -EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve -EXPORT_SYMBOL vmlinux 0x4fcf773a kernel_connect -EXPORT_SYMBOL vmlinux 0x4fe29a3a param_set_short -EXPORT_SYMBOL vmlinux 0x4fe4d0f3 bio_split -EXPORT_SYMBOL vmlinux 0x4fe92707 __sb_start_write -EXPORT_SYMBOL vmlinux 0x50068f8c scsi_device_put -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x5023794d raw3270_activate_view -EXPORT_SYMBOL vmlinux 0x50328035 dev_get_flags -EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x50720c5f snprintf -EXPORT_SYMBOL vmlinux 0x50730f9a kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x509ba10a make_kprojid -EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x50c2eebe kernel_bind -EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x50e00ef1 set_create_files_as -EXPORT_SYMBOL vmlinux 0x510c2535 xz_dec_run -EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x512d43cf dev_open -EXPORT_SYMBOL vmlinux 0x513598c9 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x51759be2 tty_unlock -EXPORT_SYMBOL vmlinux 0x5191efd7 seq_puts -EXPORT_SYMBOL vmlinux 0x51971218 prepare_binprm -EXPORT_SYMBOL vmlinux 0x51af468c bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x51b5f2dc tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x51c3c0e4 dm_ratelimit_state -EXPORT_SYMBOL vmlinux 0x51d3c718 mount_pseudo -EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str -EXPORT_SYMBOL vmlinux 0x5217c34e scsi_device_get -EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x522834b0 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x523bc120 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x526ebc6e netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x52796b92 dget_parent -EXPORT_SYMBOL vmlinux 0x528e49c1 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x529ccf70 netif_napi_add -EXPORT_SYMBOL vmlinux 0x52a04278 simple_readpage -EXPORT_SYMBOL vmlinux 0x52e4e723 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x532707dc generic_write_end -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x53748dad request_key -EXPORT_SYMBOL vmlinux 0x538c9939 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x539234b3 netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x53a79551 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x53a97537 bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x53b6fc9a iterate_mounts -EXPORT_SYMBOL vmlinux 0x53d02b78 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x53f04062 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x53f568ce __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x540862e2 diag14 -EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x541dea16 pci_bus_type -EXPORT_SYMBOL vmlinux 0x542a6190 cont_write_begin -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x5484a5b8 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x54a3c8ef skb_find_text -EXPORT_SYMBOL vmlinux 0x54a4ea6f printk_emit -EXPORT_SYMBOL vmlinux 0x54a8b022 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54ae5706 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu -EXPORT_SYMBOL vmlinux 0x5542a8c3 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x555c86f0 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x55678b4b bsearch -EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x55a3f3e0 sclp_add_request -EXPORT_SYMBOL vmlinux 0x55b484b1 iget5_locked -EXPORT_SYMBOL vmlinux 0x55bdfa0b scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x55c51b36 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x55fbaf1d smsg_unregister_callback -EXPORT_SYMBOL vmlinux 0x560323dd tso_build_data -EXPORT_SYMBOL vmlinux 0x56050399 qdisc_reset -EXPORT_SYMBOL vmlinux 0x560b168d diag_stat_inc -EXPORT_SYMBOL vmlinux 0x5614474c blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x562df40e alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x56609346 udp_seq_open -EXPORT_SYMBOL vmlinux 0x56730bc5 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x567fa5b9 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x5691d55f inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56d1a7d2 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x56d69cb2 __register_binfmt -EXPORT_SYMBOL vmlinux 0x56fdb906 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x571cf392 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x572db28d __getblk_slow -EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x57381104 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x576a276c lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x576ed4e0 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x577560f6 dev_deactivate -EXPORT_SYMBOL vmlinux 0x579ee481 lwtunnel_build_state -EXPORT_SYMBOL vmlinux 0x57a8dcc8 __do_once_done -EXPORT_SYMBOL vmlinux 0x57a96fde arp_xmit -EXPORT_SYMBOL vmlinux 0x57abf846 pci_save_state -EXPORT_SYMBOL vmlinux 0x57d3a3c9 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x57f4b291 skb_unlink -EXPORT_SYMBOL vmlinux 0x580285de poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0x580b6ea7 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x581787e7 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x581959f3 down_write_trylock -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x5823cdd3 completion_done -EXPORT_SYMBOL vmlinux 0x5825c3a9 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x5847b8af tcw_finalize -EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x587922ed __secpath_destroy -EXPORT_SYMBOL vmlinux 0x5885b2a6 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x5888b978 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58cd1b54 string_escape_mem -EXPORT_SYMBOL vmlinux 0x58cd4b98 compat_sock_get_timestampns -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x590b3d86 param_set_byte -EXPORT_SYMBOL vmlinux 0x5923ed7d dev_warn -EXPORT_SYMBOL vmlinux 0x59320501 eth_type_trans -EXPORT_SYMBOL vmlinux 0x594650b5 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x5965734f __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x59a373a8 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x59bff177 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x59df5d0a vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x5a07af71 mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0x5a34a45c __kmalloc -EXPORT_SYMBOL vmlinux 0x5a595816 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x5a5e7ea3 simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x5a6ad224 seq_read -EXPORT_SYMBOL vmlinux 0x5a92fdc9 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x5a96dfd2 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x5a9e6c4f ccw_device_start_timeout_key -EXPORT_SYMBOL vmlinux 0x5aaf2f2c skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x5ab7a5e4 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x5aca1e3a pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x5acc41a2 arp_tbl -EXPORT_SYMBOL vmlinux 0x5ace9233 fget_raw -EXPORT_SYMBOL vmlinux 0x5ad4417a sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x5ae4b671 sock_register -EXPORT_SYMBOL vmlinux 0x5aeeadb0 ip_defrag -EXPORT_SYMBOL vmlinux 0x5b07d834 fasync_helper -EXPORT_SYMBOL vmlinux 0x5b1b95eb bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x5b1e4619 udplite_prot -EXPORT_SYMBOL vmlinux 0x5b28bf5d memremap -EXPORT_SYMBOL vmlinux 0x5b361b7f dquot_quota_on -EXPORT_SYMBOL vmlinux 0x5b389e9c pci_reenable_device -EXPORT_SYMBOL vmlinux 0x5b56cf61 sock_from_file -EXPORT_SYMBOL vmlinux 0x5b604bd1 segment_type -EXPORT_SYMBOL vmlinux 0x5b8a4432 inode_init_owner -EXPORT_SYMBOL vmlinux 0x5b9671e6 inet6_release -EXPORT_SYMBOL vmlinux 0x5ba01fc6 mutex_trylock -EXPORT_SYMBOL vmlinux 0x5bae8b07 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x5bb74cfa trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0x5bbff0f8 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x5bcb3b82 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x5bd5d1f9 free_page_put_link -EXPORT_SYMBOL vmlinux 0x5c0ac7bc blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x5c27c8ca padata_stop -EXPORT_SYMBOL vmlinux 0x5c2a933b pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x5c347c44 padata_alloc -EXPORT_SYMBOL vmlinux 0x5c79489d kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x5c8672f9 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x5c8c2261 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x5cad5048 raw3270_deactivate_view -EXPORT_SYMBOL vmlinux 0x5cb4bef9 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x5cbbf14b sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le -EXPORT_SYMBOL vmlinux 0x5ce24b2a __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x5d10e17d vfs_iter_write -EXPORT_SYMBOL vmlinux 0x5d11d95c trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x5d1bd4ae sk_alloc -EXPORT_SYMBOL vmlinux 0x5d1f5d80 pci_find_capability -EXPORT_SYMBOL vmlinux 0x5d34530a key_unlink -EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x5d914007 do_splice_to -EXPORT_SYMBOL vmlinux 0x5d9c3856 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x5da7e12f scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0x5dbbe98e memmove -EXPORT_SYMBOL vmlinux 0x5dc0f338 diag_stat_inc_norecursion -EXPORT_SYMBOL vmlinux 0x5dd1b022 register_gifconf -EXPORT_SYMBOL vmlinux 0x5de1ca19 lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0x5e84ced0 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x5e86171d raw3270_unregister_notifier -EXPORT_SYMBOL vmlinux 0x5e89b4ce dev_base_lock -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ee4694b skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x5efffd12 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 -EXPORT_SYMBOL vmlinux 0x5f0911e1 __pci_enable_wake -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f2f706c tcp_connect -EXPORT_SYMBOL vmlinux 0x5f3422d8 netif_napi_del -EXPORT_SYMBOL vmlinux 0x5f3549bd create_empty_buffers -EXPORT_SYMBOL vmlinux 0x5f4b2de8 cio_irb -EXPORT_SYMBOL vmlinux 0x5f5b5a82 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x5f778261 raw3270_request_alloc -EXPORT_SYMBOL vmlinux 0x5f7ff16d n_tty_compat_ioctl_helper -EXPORT_SYMBOL vmlinux 0x5f8fe173 prepare_to_wait -EXPORT_SYMBOL vmlinux 0x5fb4d97c tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x5fc29440 __brelse -EXPORT_SYMBOL vmlinux 0x5fcb0115 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x5fd2298e strnstr -EXPORT_SYMBOL vmlinux 0x5fd3e366 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat -EXPORT_SYMBOL vmlinux 0x5ffaf2de arch_spin_trylock_retry -EXPORT_SYMBOL vmlinux 0x6000d77d filemap_map_pages -EXPORT_SYMBOL vmlinux 0x6004e52d xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x606cfe37 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x60972558 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a18df2 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x60c92003 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x60df724a pci_get_subsys -EXPORT_SYMBOL vmlinux 0x61025180 skb_tx_error -EXPORT_SYMBOL vmlinux 0x6102fac5 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x6136a0fc pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0x61414510 blk_complete_request -EXPORT_SYMBOL vmlinux 0x6147ee4d xfrm_init_state -EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x614d095c wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x615cce08 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x616a5287 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x61b0582d param_set_bint -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61b93212 mod_virt_timer_periodic -EXPORT_SYMBOL vmlinux 0x61bf43f5 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x61d588cf tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x61dfae64 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x61e34caa skb_put -EXPORT_SYMBOL vmlinux 0x61e9ef02 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x61f68cb5 lwtunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0x62236ec3 udp_disconnect -EXPORT_SYMBOL vmlinux 0x6225637e md5_transform -EXPORT_SYMBOL vmlinux 0x622675da send_sig -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x623e239b iget_failed -EXPORT_SYMBOL vmlinux 0x623f32ae __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x62477a76 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x6248b324 security_path_rmdir -EXPORT_SYMBOL vmlinux 0x624b8254 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x6254c5f3 dquot_initialize -EXPORT_SYMBOL vmlinux 0x6265e7dc scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x626988be tty_name -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x628151cd sync_filesystem -EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x6297b859 path_noexec -EXPORT_SYMBOL vmlinux 0x629cf6f9 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x63043335 read_cache_page -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x631aed69 softnet_data -EXPORT_SYMBOL vmlinux 0x6340cc78 dev_emerg -EXPORT_SYMBOL vmlinux 0x634bec88 netdev_update_features -EXPORT_SYMBOL vmlinux 0x63534c3c inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63ab3b8f dns_query -EXPORT_SYMBOL vmlinux 0x63bb8c48 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f620c5 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x6457cfdf sock_no_bind -EXPORT_SYMBOL vmlinux 0x64618551 generic_removexattr -EXPORT_SYMBOL vmlinux 0x6479f39b eth_mac_addr -EXPORT_SYMBOL vmlinux 0x648cd9c5 kfree_skb -EXPORT_SYMBOL vmlinux 0x64944e69 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a52473 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x64b1ca38 security_path_symlink -EXPORT_SYMBOL vmlinux 0x64cf2e04 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0x64d2064f nvm_register_target -EXPORT_SYMBOL vmlinux 0x64eb0b37 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x64fa3ce1 padata_do_serial -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x65349f5a xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x658bc919 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x658cd2bc d_add_ci -EXPORT_SYMBOL vmlinux 0x65c393d5 configfs_register_group -EXPORT_SYMBOL vmlinux 0x65cf1278 __seq_open_private -EXPORT_SYMBOL vmlinux 0x65daa364 tcw_set_tsb -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e5d5bd rt6_lookup -EXPORT_SYMBOL vmlinux 0x65fa44c4 simple_getattr -EXPORT_SYMBOL vmlinux 0x66009729 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x6606c88c xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x661f8714 generic_getxattr -EXPORT_SYMBOL vmlinux 0x66207302 pci_iounmap -EXPORT_SYMBOL vmlinux 0x66273575 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x663f6476 debug_dflt_header_fn -EXPORT_SYMBOL vmlinux 0x6640479d xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0x6655b29e prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x66aa4e75 __mutex_init -EXPORT_SYMBOL vmlinux 0x66b255d4 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x66b4972f put_tty_driver -EXPORT_SYMBOL vmlinux 0x66e69897 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x67059dc2 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x6711216c nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x671894ad bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x672144bd strlcpy -EXPORT_SYMBOL vmlinux 0x6724e119 crc32_le -EXPORT_SYMBOL vmlinux 0x67277bf2 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0x674b9181 tcp_filter -EXPORT_SYMBOL vmlinux 0x67678cbf udp_add_offload -EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create -EXPORT_SYMBOL vmlinux 0x67749e06 get_io_context -EXPORT_SYMBOL vmlinux 0x677e5179 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x6787d516 submit_bh -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b5d0b5 generic_perform_write -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67ca46fa locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x6820d52d iucv_root -EXPORT_SYMBOL vmlinux 0x685aa4da bio_integrity_free -EXPORT_SYMBOL vmlinux 0x686c046e d_path -EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x68d4b618 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x68e62855 __blk_end_request -EXPORT_SYMBOL vmlinux 0x68fb52e4 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x6920401b bprm_change_interp -EXPORT_SYMBOL vmlinux 0x6921c84c padata_alloc_possible -EXPORT_SYMBOL vmlinux 0x6955bcbe clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x69622a5d sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x696533c8 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x6986303d security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69d0a4dc netdev_notice -EXPORT_SYMBOL vmlinux 0x69dc8972 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x69fc7077 page_readlink -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a070d42 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x6a0858b0 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x6a157381 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x6a260343 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x6a2f0c55 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x6a520bb4 __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x6a5b5bad d_set_fallthru -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a707672 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6ad2fd6a scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x6ad5ae0e tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x6adc2b04 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x6af6395e jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x6afeb5cc tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x6b02f090 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b1c1a8c iget_locked -EXPORT_SYMBOL vmlinux 0x6b29937b skb_vlan_push -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b655b2f __bforget -EXPORT_SYMBOL vmlinux 0x6b68f902 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x6b6df279 add_disk -EXPORT_SYMBOL vmlinux 0x6b7450dd scsi_ioctl -EXPORT_SYMBOL vmlinux 0x6b83a313 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x6b933eb1 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc7c311 kmalloc_order -EXPORT_SYMBOL vmlinux 0x6bd1afcd netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x6bdb4981 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x6be15d2c wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x6be2fa64 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x6bf5019f follow_down -EXPORT_SYMBOL vmlinux 0x6bfa7257 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer -EXPORT_SYMBOL vmlinux 0x6c0ef8c9 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x6c254aba vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x6c3038b2 sk_wait_data -EXPORT_SYMBOL vmlinux 0x6c4026e6 dquot_acquire -EXPORT_SYMBOL vmlinux 0x6c440651 init_virt_timer -EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x6c69cd3e ip_do_fragment -EXPORT_SYMBOL vmlinux 0x6c6bde69 md_flush_request -EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x6c766d3d pci_disable_msix -EXPORT_SYMBOL vmlinux 0x6c884b2d napi_consume_skb -EXPORT_SYMBOL vmlinux 0x6c905f1b sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x6c9b1034 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x6ca00e42 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x6cea30b1 blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6d1ea6ec strlcat -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d2db64d jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d4577ae vfs_write -EXPORT_SYMBOL vmlinux 0x6d509146 tcw_get_intrg -EXPORT_SYMBOL vmlinux 0x6d658ab2 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x6d79eea0 blk_rq_init -EXPORT_SYMBOL vmlinux 0x6d9288d2 idr_for_each -EXPORT_SYMBOL vmlinux 0x6dabc5f5 vfs_readv -EXPORT_SYMBOL vmlinux 0x6dac0480 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x6dc8fe4d blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x6ddca21d down_trylock -EXPORT_SYMBOL vmlinux 0x6ddd4934 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x6de4dd3c account_page_dirtied -EXPORT_SYMBOL vmlinux 0x6dec6ebf d_set_d_op -EXPORT_SYMBOL vmlinux 0x6dee2676 d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6dff0fd3 page_put_link -EXPORT_SYMBOL vmlinux 0x6dffc5fe nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x6e00700b vfs_create -EXPORT_SYMBOL vmlinux 0x6e00b8cb _ebcasc -EXPORT_SYMBOL vmlinux 0x6e2f30dd jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e72de2a trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x6e828aad percpu_counter_set -EXPORT_SYMBOL vmlinux 0x6e8e8df7 proc_set_user -EXPORT_SYMBOL vmlinux 0x6e947306 config_item_set_name -EXPORT_SYMBOL vmlinux 0x6e9ad290 cpu_have_feature -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6eab74d9 d_alloc -EXPORT_SYMBOL vmlinux 0x6ec7df91 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x6ecaae8e pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x6ee76261 md_write_start -EXPORT_SYMBOL vmlinux 0x6eef354a ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x6f1a259c dev_set_mtu -EXPORT_SYMBOL vmlinux 0x6f200b03 tcw_set_intrg -EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash -EXPORT_SYMBOL vmlinux 0x6f3ec4a3 nvm_submit_ppa -EXPORT_SYMBOL vmlinux 0x6f4afc3f iov_iter_npages -EXPORT_SYMBOL vmlinux 0x6f5429a9 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x6f5ef93d memchr_inv -EXPORT_SYMBOL vmlinux 0x6f63f154 unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0x6f818831 security_file_permission -EXPORT_SYMBOL vmlinux 0x6f915271 airq_iv_create -EXPORT_SYMBOL vmlinux 0x6f9ae7c3 inc_nlink -EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag -EXPORT_SYMBOL vmlinux 0x6fc7e626 memzero_explicit -EXPORT_SYMBOL vmlinux 0x6ff22a40 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x7000277d pci_set_mwi -EXPORT_SYMBOL vmlinux 0x701773bb blk_peek_request -EXPORT_SYMBOL vmlinux 0x7049969b dev_crit -EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x7061e35a eth_header_parse -EXPORT_SYMBOL vmlinux 0x706c2908 skb_insert -EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync -EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x708a244d find_get_pages_tag -EXPORT_SYMBOL vmlinux 0x70a3001d dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x70a5de66 scsi_register_interface -EXPORT_SYMBOL vmlinux 0x70c19186 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x70d26800 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x70db2caa vfs_writev -EXPORT_SYMBOL vmlinux 0x70e3a430 inode_init_always -EXPORT_SYMBOL vmlinux 0x70e742de dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x70f493f7 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x70f6bf98 get_guest_storage_key -EXPORT_SYMBOL vmlinux 0x71281d74 audit_log_start -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x71391331 __blk_run_queue -EXPORT_SYMBOL vmlinux 0x713ebc4f __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x7143c043 skb_make_writable -EXPORT_SYMBOL vmlinux 0x7145aef0 segment_load -EXPORT_SYMBOL vmlinux 0x716a188f kmem_cache_free -EXPORT_SYMBOL vmlinux 0x716fa6f4 sock_i_uid -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71b66c39 dev_add_offload -EXPORT_SYMBOL vmlinux 0x71b73544 neigh_for_each -EXPORT_SYMBOL vmlinux 0x71ba081d dentry_unhash -EXPORT_SYMBOL vmlinux 0x71c0c3a8 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0x71dc3022 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x71f44363 tty_register_device -EXPORT_SYMBOL vmlinux 0x71f732fa __frontswap_load -EXPORT_SYMBOL vmlinux 0x71f9c48c bdput -EXPORT_SYMBOL vmlinux 0x721d8e85 inet_offloads -EXPORT_SYMBOL vmlinux 0x721d9600 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0x7242e96d strnchr -EXPORT_SYMBOL vmlinux 0x724705ac scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x725fd887 nla_append -EXPORT_SYMBOL vmlinux 0x7261afa2 tcp_proc_register -EXPORT_SYMBOL vmlinux 0x72b211c2 page_cache_next_hole -EXPORT_SYMBOL vmlinux 0x72befd53 config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x72c4db1d audit_log -EXPORT_SYMBOL vmlinux 0x72c63bd5 debug_register_view -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x730d4e0b lg_local_lock -EXPORT_SYMBOL vmlinux 0x73332c6c sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x73356f2f tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf -EXPORT_SYMBOL vmlinux 0x7366d54a kill_bdev -EXPORT_SYMBOL vmlinux 0x737153d0 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x738839f2 nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x7388ad69 param_ops_ullong -EXPORT_SYMBOL vmlinux 0x73af27c9 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x73bf20c6 _ascebc -EXPORT_SYMBOL vmlinux 0x73f7db06 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x73fd0c81 param_get_long -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x741f70a9 debug_stop_all -EXPORT_SYMBOL vmlinux 0x741fefc7 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x744dc7f7 iunique -EXPORT_SYMBOL vmlinux 0x7455958e noop_fsync -EXPORT_SYMBOL vmlinux 0x7469769c __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x749c3252 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x74a8b3cf d_walk -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c3917e udplite_table -EXPORT_SYMBOL vmlinux 0x74cbe8dc skb_store_bits -EXPORT_SYMBOL vmlinux 0x74d13525 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f38c45 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x752ff27e skb_queue_tail -EXPORT_SYMBOL vmlinux 0x755f9a65 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x756a50b4 mpage_readpages -EXPORT_SYMBOL vmlinux 0x758fdcf1 ida_get_new_above -EXPORT_SYMBOL vmlinux 0x75ac0197 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x75ac2b87 flush_signals -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x75be9e48 dquot_resume -EXPORT_SYMBOL vmlinux 0x75dcde88 pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764ae73d inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x764bd77c request_resource -EXPORT_SYMBOL vmlinux 0x7664cbf7 inet6_bind -EXPORT_SYMBOL vmlinux 0x766f20c2 fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x76842479 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x76aed753 sock_i_ino -EXPORT_SYMBOL vmlinux 0x76c1310f should_remove_suid -EXPORT_SYMBOL vmlinux 0x76cf7f68 netdev_info -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x7712a5bc md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x7715424c kern_path_create -EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x77234f72 vfs_mknod -EXPORT_SYMBOL vmlinux 0x77367e66 freeze_bdev -EXPORT_SYMBOL vmlinux 0x774c265b call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x776fe1a6 __page_symlink -EXPORT_SYMBOL vmlinux 0x778d825c __break_lease -EXPORT_SYMBOL vmlinux 0x7797ce63 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77caa8ab blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x77d6ffe9 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x77e57a25 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x77f421a4 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x77f93555 kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x7802ff79 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x7803dffc __wake_up -EXPORT_SYMBOL vmlinux 0x780ee14f loop_register_transfer -EXPORT_SYMBOL vmlinux 0x7820ee12 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x7824898f param_ops_bool -EXPORT_SYMBOL vmlinux 0x78289867 kfree_put_link -EXPORT_SYMBOL vmlinux 0x7828b3c7 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x782acba5 crc_t10dif -EXPORT_SYMBOL vmlinux 0x783a9f75 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x784588a5 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x785d3573 simple_lookup -EXPORT_SYMBOL vmlinux 0x7864414c add_virt_timer_periodic -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x7892b821 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e51f95 sget_userns -EXPORT_SYMBOL vmlinux 0x78f85434 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x790ad26a unregister_qdisc -EXPORT_SYMBOL vmlinux 0x790c3154 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x79133e05 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x791c18c8 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x792721bb dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x79293d35 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x792e0d45 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79b62961 mod_virt_timer -EXPORT_SYMBOL vmlinux 0x79e459c6 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0x79fe5c16 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x7a0d2df6 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a4c941a ether_setup -EXPORT_SYMBOL vmlinux 0x7a58441d sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x7a6cce0d d_lookup -EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a73c489 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x7a8e1839 nobh_writepage -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7abf8afc devm_request_resource -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad85c3b pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x7ae73de1 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x7ae7ee93 ccw_device_get_id -EXPORT_SYMBOL vmlinux 0x7ae943ee nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x7af2b95b scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x7af689aa complete_request_key -EXPORT_SYMBOL vmlinux 0x7b03ce3f finish_no_open -EXPORT_SYMBOL vmlinux 0x7b0da730 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x7b369deb ccw_device_set_offline -EXPORT_SYMBOL vmlinux 0x7b4fa80d nlmsg_notify -EXPORT_SYMBOL vmlinux 0x7b55ee3c pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x7b5a7137 strncat -EXPORT_SYMBOL vmlinux 0x7b5ccd0f inode_change_ok -EXPORT_SYMBOL vmlinux 0x7b638328 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x7b8f4c40 key_create_or_update -EXPORT_SYMBOL vmlinux 0x7b9ac197 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x7b9c0645 blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x7bf479fe resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x7bfad580 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x7c1372e8 panic -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c198757 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x7c3dbaac kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x7c3ed225 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x7c422a42 mapping_tagged -EXPORT_SYMBOL vmlinux 0x7c5024b2 scsi_print_command -EXPORT_SYMBOL vmlinux 0x7c5d4a3a sclp_reactivate -EXPORT_SYMBOL vmlinux 0x7c61340c __release_region -EXPORT_SYMBOL vmlinux 0x7c621c54 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x7c6c1993 ccw_device_set_options -EXPORT_SYMBOL vmlinux 0x7c7362ad tcw_get_data -EXPORT_SYMBOL vmlinux 0x7c7ed118 get_empty_filp -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cd0f1e3 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7cf62be3 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x7cf6b339 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x7cff93ea wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x7d056946 get_ccwdev_by_busid -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d1a43ea find_get_entry -EXPORT_SYMBOL vmlinux 0x7d1af350 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x7d1d3bcf scsi_unregister -EXPORT_SYMBOL vmlinux 0x7d212915 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7d7e8634 down_write -EXPORT_SYMBOL vmlinux 0x7daf486e page_symlink -EXPORT_SYMBOL vmlinux 0x7db70cdf fs_bio_set -EXPORT_SYMBOL vmlinux 0x7dbaeefe blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x7dbe98dd pci_iomap -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7dfa24d9 bio_integrity_advance -EXPORT_SYMBOL vmlinux 0x7e004210 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x7e2701d7 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x7e35f63d pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x7e369cc5 inet_bind -EXPORT_SYMBOL vmlinux 0x7e3a9853 km_state_expired -EXPORT_SYMBOL vmlinux 0x7e3e301a lwtunnel_input -EXPORT_SYMBOL vmlinux 0x7e657cbd __kernel_write -EXPORT_SYMBOL vmlinux 0x7ed3de10 debug_register_mode -EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x7ee9eba3 iucv_register -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f066f87 ip_ct_attach -EXPORT_SYMBOL vmlinux 0x7f1fde84 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x7f21e63b blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x7f2a8c85 bio_chain -EXPORT_SYMBOL vmlinux 0x7f330850 seq_file_path -EXPORT_SYMBOL vmlinux 0x7f5980fd security_path_chmod -EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x7f7534bf sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x7fa383c2 bio_map_kern -EXPORT_SYMBOL vmlinux 0x7fb1b0d4 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x7fd1c16e get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x8009c3ac setup_new_exec -EXPORT_SYMBOL vmlinux 0x802fa88d bio_copy_data -EXPORT_SYMBOL vmlinux 0x8031d4c3 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x805485ab __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x805a6ec7 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x8073ac77 down_interruptible -EXPORT_SYMBOL vmlinux 0x8078667d component_match_add -EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0x808a0ab8 tty_port_open -EXPORT_SYMBOL vmlinux 0x80a8c8ab kobject_add -EXPORT_SYMBOL vmlinux 0x80b4d1e8 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x80bad531 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80e5fb86 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x80f0facf from_kgid -EXPORT_SYMBOL vmlinux 0x8127ccf3 d_delete -EXPORT_SYMBOL vmlinux 0x8128c039 smsg_register_callback -EXPORT_SYMBOL vmlinux 0x813059ef send_sig_info -EXPORT_SYMBOL vmlinux 0x8140baf2 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x814e7a9a lwtunnel_state_alloc -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x818bae81 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x818d9fa8 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x81b18409 lookup_one_len -EXPORT_SYMBOL vmlinux 0x81bf7277 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x81d35bfe tcw_get_tccb -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81db941d cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x81f2ed1f tcp_ioctl -EXPORT_SYMBOL vmlinux 0x81fa0a4d neigh_parms_release -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x82081979 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x824519f1 finish_wait -EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x82722546 kmalloc_dma_caches -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x82af4cdf delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x82c8b862 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x82de3720 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x82efe99b mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x82f5f0bf finish_open -EXPORT_SYMBOL vmlinux 0x832bc7e0 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x832f4727 proto_register -EXPORT_SYMBOL vmlinux 0x83512362 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x835fcd78 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x838ed96e blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x83ad7c8d pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x83b32143 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83d9fc1f generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x843633b2 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x8475060b raw3270_request_add_data -EXPORT_SYMBOL vmlinux 0x847765e9 __crc32c_le -EXPORT_SYMBOL vmlinux 0x84a16b47 kobject_set_name -EXPORT_SYMBOL vmlinux 0x84b037c6 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x84cca465 set_page_dirty -EXPORT_SYMBOL vmlinux 0x84e42bf5 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload -EXPORT_SYMBOL vmlinux 0x851ef49b write_cache_pages -EXPORT_SYMBOL vmlinux 0x8537c33e pci_dev_driver -EXPORT_SYMBOL vmlinux 0x8544bcd4 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x85451778 do_truncate -EXPORT_SYMBOL vmlinux 0x85550d09 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x856d0fcf single_release -EXPORT_SYMBOL vmlinux 0x85abc85f strncmp -EXPORT_SYMBOL vmlinux 0x85b192cc filemap_fault -EXPORT_SYMBOL vmlinux 0x85bbbc34 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e5e341 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f5dfed blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x85f77ac2 pci_disable_device -EXPORT_SYMBOL vmlinux 0x861d7964 kern_unmount -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x867d6324 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x869d27fb ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0x869e590b blkdev_get -EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x86d0dbb5 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x86df7282 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x87064049 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x871defbd eth_gro_receive -EXPORT_SYMBOL vmlinux 0x872263ad unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x872eada4 pci_map_rom -EXPORT_SYMBOL vmlinux 0x87636dd9 tcw_set_tccb -EXPORT_SYMBOL vmlinux 0x87667deb keyring_clear -EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x87c58a96 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x87c822d8 skb_pull -EXPORT_SYMBOL vmlinux 0x87d2853c mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x87e44d03 inode_permission -EXPORT_SYMBOL vmlinux 0x87e47337 security_path_unlink -EXPORT_SYMBOL vmlinux 0x88146973 idr_destroy -EXPORT_SYMBOL vmlinux 0x88178f0f vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x8831110f gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x8833bc7e __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x8863a099 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x8880f2fd param_get_string -EXPORT_SYMBOL vmlinux 0x8880ff37 compat_tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x888847b0 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x888e7ba5 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x88928a0d skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x889ff66b inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0x88a0f86f __frontswap_store -EXPORT_SYMBOL vmlinux 0x88c9ca2b sock_recvmsg -EXPORT_SYMBOL vmlinux 0x88cea752 node_states -EXPORT_SYMBOL vmlinux 0x88cf1971 simple_rename -EXPORT_SYMBOL vmlinux 0x88d08dd5 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x88d83533 check_disk_size_change -EXPORT_SYMBOL vmlinux 0x88fc6022 lg_local_unlock -EXPORT_SYMBOL vmlinux 0x8914abe8 _raw_read_trylock_retry -EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat -EXPORT_SYMBOL vmlinux 0x89518f7c unregister_console -EXPORT_SYMBOL vmlinux 0x895bfea9 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x8965f8b3 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x898b97c7 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x89927c75 d_make_root -EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x89c3d109 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x89fcc950 __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x89ff68fa ida_pre_get -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a29c99b blk_get_request -EXPORT_SYMBOL vmlinux 0x8a2efa1f nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x8a48a00c vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning -EXPORT_SYMBOL vmlinux 0x8a570ef6 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8ab928c6 sg_miter_start -EXPORT_SYMBOL vmlinux 0x8adcc3c0 peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x8ae95cb2 md_error -EXPORT_SYMBOL vmlinux 0x8af10c20 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x8af24ea1 pci_match_id -EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put -EXPORT_SYMBOL vmlinux 0x8b20ccdf pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x8b2b6be5 bio_phys_segments -EXPORT_SYMBOL vmlinux 0x8b2ba374 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x8b2d9819 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last -EXPORT_SYMBOL vmlinux 0x8b364dff param_get_charp -EXPORT_SYMBOL vmlinux 0x8b41d8f2 vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x8b4b291b set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b7fe311 kmemdup -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b957622 add_virt_timer -EXPORT_SYMBOL vmlinux 0x8bccc3b7 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0x8c296af6 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x8c3a1e86 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x8c5b8a90 mount_nodev -EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8cc35e99 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x8cca9f56 end_page_writeback -EXPORT_SYMBOL vmlinux 0x8ce584ca find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x8d05fdf3 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x8d4ab7ff empty_aops -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d99b1a6 crc32_le_shift -EXPORT_SYMBOL vmlinux 0x8db0b188 scsi_print_result -EXPORT_SYMBOL vmlinux 0x8db75f57 proc_create_data -EXPORT_SYMBOL vmlinux 0x8dc638cf d_obtain_alias -EXPORT_SYMBOL vmlinux 0x8dd69c5c __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x8ded182e seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x8e3013a7 dquot_release -EXPORT_SYMBOL vmlinux 0x8e418144 iterate_dir -EXPORT_SYMBOL vmlinux 0x8e5cd0d7 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x8e783dad nvm_put_blk -EXPORT_SYMBOL vmlinux 0x8e7a5f70 misc_register -EXPORT_SYMBOL vmlinux 0x8e7c4fe7 revert_creds -EXPORT_SYMBOL vmlinux 0x8e80c602 simple_open -EXPORT_SYMBOL vmlinux 0x8e865a4f config_group_init -EXPORT_SYMBOL vmlinux 0x8e879bb7 __vmalloc -EXPORT_SYMBOL vmlinux 0x8e8ad436 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x8ede70dc abort_creds -EXPORT_SYMBOL vmlinux 0x8ee1f90c xfrm_register_km -EXPORT_SYMBOL vmlinux 0x8ee360cd qdisc_destroy -EXPORT_SYMBOL vmlinux 0x8efd1e35 dq_data_lock -EXPORT_SYMBOL vmlinux 0x8f252584 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x8f4a86ce pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x8f636d23 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x8f9dbc25 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x8fbc4999 fsync_bdev -EXPORT_SYMBOL vmlinux 0x8fc23842 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x8fd479c5 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x8fd57727 may_umount_tree -EXPORT_SYMBOL vmlinux 0x8fe60e9f dm_put_table_device -EXPORT_SYMBOL vmlinux 0x8fe7cbf8 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x90029e28 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x900e616e commit_creds -EXPORT_SYMBOL vmlinux 0x903cc367 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x9042d443 unlock_rename -EXPORT_SYMBOL vmlinux 0x9069e907 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x90840ff0 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x91084cc4 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x910ab947 invalidate_partition -EXPORT_SYMBOL vmlinux 0x910b0564 set_cached_acl -EXPORT_SYMBOL vmlinux 0x9116b417 save_fpu_regs -EXPORT_SYMBOL vmlinux 0x91337724 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x9136fc2d xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x9141bd13 bdev_read_only -EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 -EXPORT_SYMBOL vmlinux 0x91715312 sprintf -EXPORT_SYMBOL vmlinux 0x917dd42b copy_strings_kernel -EXPORT_SYMBOL vmlinux 0x91a43ad7 posix_test_lock -EXPORT_SYMBOL vmlinux 0x91b57adb neigh_event_ns -EXPORT_SYMBOL vmlinux 0x91bae187 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x91da73b6 dquot_file_open -EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x91f7ca30 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x9207c44a scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x92240595 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x922cbffa pipe_unlock -EXPORT_SYMBOL vmlinux 0x92392cd9 iov_shorten -EXPORT_SYMBOL vmlinux 0x925d7312 dev_add_pack -EXPORT_SYMBOL vmlinux 0x92611b21 devm_free_irq -EXPORT_SYMBOL vmlinux 0x92736aa9 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x9281c8f9 dqget -EXPORT_SYMBOL vmlinux 0x929096d3 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x929473c4 inet_add_offload -EXPORT_SYMBOL vmlinux 0x9296c42a generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm -EXPORT_SYMBOL vmlinux 0x92c17478 igrab -EXPORT_SYMBOL vmlinux 0x92dfde32 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x92ee5627 generic_update_time -EXPORT_SYMBOL vmlinux 0x92fe6ff2 lg_global_lock -EXPORT_SYMBOL vmlinux 0x9326fc58 vfs_fsync -EXPORT_SYMBOL vmlinux 0x934745e9 __get_page_tail -EXPORT_SYMBOL vmlinux 0x934aec68 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x935a1824 dst_alloc -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93b303ad __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b6f3d7 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x93d581ac xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x93e9d3b4 iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0x93ef5681 ccw_device_is_multipath -EXPORT_SYMBOL vmlinux 0x93f55e6c dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x93fa2d47 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x93fc29d2 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages -EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x941d46e7 unregister_service_level -EXPORT_SYMBOL vmlinux 0x9423d4d1 security_task_getsecid -EXPORT_SYMBOL vmlinux 0x9429b7eb bdi_init -EXPORT_SYMBOL vmlinux 0x942c96f8 dst_init -EXPORT_SYMBOL vmlinux 0x94445363 sk_net_capable -EXPORT_SYMBOL vmlinux 0x945775a5 segment_save -EXPORT_SYMBOL vmlinux 0x9479fc4b inode_needs_sync -EXPORT_SYMBOL vmlinux 0x948adf5a skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x948af296 security_mmap_file -EXPORT_SYMBOL vmlinux 0x94903375 blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94e2d906 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x94f5e3ab bitmap_unplug -EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x9514151a _mcount -EXPORT_SYMBOL vmlinux 0x95219742 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x952dc7d9 raw3270_request_set_cmd -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x9549fb3f nf_log_register -EXPORT_SYMBOL vmlinux 0x9552a631 simple_release_fs -EXPORT_SYMBOL vmlinux 0x955bd032 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0x9581ea62 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x959065c5 scmd_printk -EXPORT_SYMBOL vmlinux 0x959bba53 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x95a18ca0 udp_del_offload -EXPORT_SYMBOL vmlinux 0x95aa4bde sock_kfree_s -EXPORT_SYMBOL vmlinux 0x95ceb864 key_update -EXPORT_SYMBOL vmlinux 0x962a6991 set_guest_storage_key -EXPORT_SYMBOL vmlinux 0x96404e39 itcw_set_data -EXPORT_SYMBOL vmlinux 0x96638fb8 sock_edemux -EXPORT_SYMBOL vmlinux 0x9669ecc8 monotonic_clock -EXPORT_SYMBOL vmlinux 0x9671f23e tty_set_operations -EXPORT_SYMBOL vmlinux 0x96801911 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x96931651 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x969571df iov_iter_init -EXPORT_SYMBOL vmlinux 0x96a48726 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0x96a748ed tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x96a7a4a9 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x96b3d374 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x96c241fa misc_deregister -EXPORT_SYMBOL vmlinux 0x96cceb2c tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x9704460b inode_set_flags -EXPORT_SYMBOL vmlinux 0x97061166 skb_split -EXPORT_SYMBOL vmlinux 0x9707f271 inet_ioctl -EXPORT_SYMBOL vmlinux 0x971b9068 inet_stream_ops -EXPORT_SYMBOL vmlinux 0x9722f7dc dcb_getapp -EXPORT_SYMBOL vmlinux 0x97345a28 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x97594c81 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x97674cc1 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x976b8845 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x97785c0c generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x977a194d __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x977f6573 user_revoke -EXPORT_SYMBOL vmlinux 0x97835771 set_user_nice -EXPORT_SYMBOL vmlinux 0x978d5bd9 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x97a6241b generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x97bbd480 vlan_vid_add -EXPORT_SYMBOL vmlinux 0x97c9881d from_kuid_munged -EXPORT_SYMBOL vmlinux 0x97e359be xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0x97f3d9a4 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x98082893 __copy_to_user -EXPORT_SYMBOL vmlinux 0x9831e9e4 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x983c5d96 blk_end_request -EXPORT_SYMBOL vmlinux 0x98536c87 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x9863e343 dev_get_stats -EXPORT_SYMBOL vmlinux 0x987ffdf1 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x98873397 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x98883bf5 fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0x989f82b9 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x98ad3335 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x98ddcdf7 devm_ioremap -EXPORT_SYMBOL vmlinux 0x98f830cd dev_get_by_index -EXPORT_SYMBOL vmlinux 0x990c34dd _raw_write_lock_wait -EXPORT_SYMBOL vmlinux 0x9923e64f nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0x9942ec77 itcw_finalize -EXPORT_SYMBOL vmlinux 0x994365f9 sk_capable -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99558ac4 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x99750257 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x997823ae register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99b9c453 scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a261a50 ccw_device_tm_start_timeout -EXPORT_SYMBOL vmlinux 0x9a2bfba1 sock_no_getname -EXPORT_SYMBOL vmlinux 0x9a2fb02c __frontswap_test -EXPORT_SYMBOL vmlinux 0x9a30199a prepare_creds -EXPORT_SYMBOL vmlinux 0x9a3ac67d wait_iff_congested -EXPORT_SYMBOL vmlinux 0x9a4a8f1b param_get_int -EXPORT_SYMBOL vmlinux 0x9a634dfa tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x9a63fab6 cdev_init -EXPORT_SYMBOL vmlinux 0x9a906daf memscan -EXPORT_SYMBOL vmlinux 0x9aabc564 crc16 -EXPORT_SYMBOL vmlinux 0x9ae45801 d_splice_alias -EXPORT_SYMBOL vmlinux 0x9af4d0ba inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x9af9f85e pci_request_region -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x9b4f2203 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x9b5f07d2 filp_close -EXPORT_SYMBOL vmlinux 0x9b8d07aa strnlen -EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put -EXPORT_SYMBOL vmlinux 0x9bd0da01 lookup_bdev -EXPORT_SYMBOL vmlinux 0x9bd790ec simple_write_begin -EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x9c066477 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x9c289436 lock_sock_fast -EXPORT_SYMBOL vmlinux 0x9c32bec9 iucv_unregister -EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x9c7ea758 dql_init -EXPORT_SYMBOL vmlinux 0x9ca1b781 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x9ca95a0e sort -EXPORT_SYMBOL vmlinux 0x9cc268d4 raw3270_wait_queue -EXPORT_SYMBOL vmlinux 0x9ceb1c90 proc_symlink -EXPORT_SYMBOL vmlinux 0x9cef36c4 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x9cf46ceb ccw_device_get_mdc -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d218873 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x9d67213e vfs_whiteout -EXPORT_SYMBOL vmlinux 0x9d6b6720 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x9dae4baf mount_single -EXPORT_SYMBOL vmlinux 0x9dc6291d truncate_setsize -EXPORT_SYMBOL vmlinux 0x9dfe58c7 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x9e0068ab s390_epoch_delta_notifier -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e138ef1 kern_path -EXPORT_SYMBOL vmlinux 0x9e16ea8b keyring_alloc -EXPORT_SYMBOL vmlinux 0x9e39b667 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x9e44545c dquot_disable -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e57d4f7 netlink_unicast -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value -EXPORT_SYMBOL vmlinux 0x9e7f5eee block_truncate_page -EXPORT_SYMBOL vmlinux 0x9e880f1f tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9e9fff2a __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x9eb231d3 __elv_add_request -EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource -EXPORT_SYMBOL vmlinux 0x9ef412cb cdrom_check_events -EXPORT_SYMBOL vmlinux 0x9f0e39de sock_release -EXPORT_SYMBOL vmlinux 0x9f125d6d vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x9f1dba1f tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f5ce59a pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x9f5e7b4c inet_release -EXPORT_SYMBOL vmlinux 0x9f940904 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fbd3e38 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x9fcfd25a truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe2383d tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa013b408 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xa058c8f2 dquot_enable -EXPORT_SYMBOL vmlinux 0xa05b73f3 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa05eb875 sclp -EXPORT_SYMBOL vmlinux 0xa060e2ce vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xa06933a6 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0xa06dbbac dev_addr_flush -EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init -EXPORT_SYMBOL vmlinux 0xa0803201 do_splice_direct -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa0afc305 pci_platform_rom -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b37a7a skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xa0c8efae remove_proc_entry -EXPORT_SYMBOL vmlinux 0xa0d3d560 ksize -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e3bfba clear_wb_congested -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0xa100bdf7 mempool_alloc -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa10a687d tty_kref_put -EXPORT_SYMBOL vmlinux 0xa10b0ef5 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xa10febff nvm_addr_to_generic_mode -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts -EXPORT_SYMBOL vmlinux 0xa14bceb0 __tracepoint_s390_diagnose -EXPORT_SYMBOL vmlinux 0xa1648b46 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0xa16d0202 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xa17bccab tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xa19065ea down_timeout -EXPORT_SYMBOL vmlinux 0xa1b3ded5 param_ops_charp -EXPORT_SYMBOL vmlinux 0xa1bfe550 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1d5979b find_first_bit_inv -EXPORT_SYMBOL vmlinux 0xa1d8169e cdev_alloc -EXPORT_SYMBOL vmlinux 0xa1dfed76 pipe_lock -EXPORT_SYMBOL vmlinux 0xa1e83f4d pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xa1ec8f1c __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold -EXPORT_SYMBOL vmlinux 0xa223a66d bdget_disk -EXPORT_SYMBOL vmlinux 0xa24c8580 ccw_device_tm_intrg -EXPORT_SYMBOL vmlinux 0xa25e87b9 sk_common_release -EXPORT_SYMBOL vmlinux 0xa269fa69 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0xa280bf81 tcf_action_exec -EXPORT_SYMBOL vmlinux 0xa2823753 inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0xa2987a79 iucv_if -EXPORT_SYMBOL vmlinux 0xa2dc0191 sock_create_kern -EXPORT_SYMBOL vmlinux 0xa2e93018 tc_classify -EXPORT_SYMBOL vmlinux 0xa2ea49c3 md_reload_sb -EXPORT_SYMBOL vmlinux 0xa2f397d7 unregister_cdrom -EXPORT_SYMBOL vmlinux 0xa310a706 __iucv_message_receive -EXPORT_SYMBOL vmlinux 0xa33f7c7c nla_strlcpy -EXPORT_SYMBOL vmlinux 0xa346e092 dev_change_flags -EXPORT_SYMBOL vmlinux 0xa35eb1de mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xa373b476 get_cached_acl -EXPORT_SYMBOL vmlinux 0xa376a20b skb_copy -EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get -EXPORT_SYMBOL vmlinux 0xa38a971a set_blocksize -EXPORT_SYMBOL vmlinux 0xa39ca35e take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xa3af6cd7 inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0xa40b3c9b tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xa422acc4 __napi_schedule -EXPORT_SYMBOL vmlinux 0xa42f4c18 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xa44b520a __scsi_format_command -EXPORT_SYMBOL vmlinux 0xa44cebae tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xa457d017 __register_nls -EXPORT_SYMBOL vmlinux 0xa459a9e3 dev_mc_add -EXPORT_SYMBOL vmlinux 0xa46a954e blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0xa48c53cd sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xa49f6c26 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le -EXPORT_SYMBOL vmlinux 0xa4c41694 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xa4da994e tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xa4e188e7 strscpy -EXPORT_SYMBOL vmlinux 0xa4e449bc sock_no_listen -EXPORT_SYMBOL vmlinux 0xa4edce59 elv_unregister_queue -EXPORT_SYMBOL vmlinux 0xa4eff604 compat_mc_getsockopt -EXPORT_SYMBOL vmlinux 0xa4f55075 iucv_message_send -EXPORT_SYMBOL vmlinux 0xa53fd092 debug_raw_view -EXPORT_SYMBOL vmlinux 0xa54284cd ccw_device_set_options_mask -EXPORT_SYMBOL vmlinux 0xa54d5871 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xa5521b2d jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa5556b7f __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xa55f154b __percpu_counter_add -EXPORT_SYMBOL vmlinux 0xa59cb687 iucv_path_quiesce -EXPORT_SYMBOL vmlinux 0xa5b00366 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xa5bd881e param_set_int -EXPORT_SYMBOL vmlinux 0xa614478f blk_queue_split -EXPORT_SYMBOL vmlinux 0xa6214231 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0xa62920e4 neigh_xmit -EXPORT_SYMBOL vmlinux 0xa642dd1f debug_hex_ascii_view -EXPORT_SYMBOL vmlinux 0xa664eee7 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xa674a445 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6b66d03 alloc_disk_node -EXPORT_SYMBOL vmlinux 0xa6c0baea lwtunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0xa6ce173b ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function -EXPORT_SYMBOL vmlinux 0xa703be29 simple_follow_link -EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes -EXPORT_SYMBOL vmlinux 0xa72ab44f udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 -EXPORT_SYMBOL vmlinux 0xa786c621 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xa786e276 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xa7aaadad vm_mmap -EXPORT_SYMBOL vmlinux 0xa7cb4fbb tcf_register_action -EXPORT_SYMBOL vmlinux 0xa7d63ce2 perf_reserve_sampling -EXPORT_SYMBOL vmlinux 0xa7ea1617 ilookup5 -EXPORT_SYMBOL vmlinux 0xa8146ae4 blk_put_request -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa8455afc __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xa8721b97 system_state -EXPORT_SYMBOL vmlinux 0xa873e964 udp_sendmsg -EXPORT_SYMBOL vmlinux 0xa886a958 krealloc -EXPORT_SYMBOL vmlinux 0xa8a4cbb2 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xa8a7a19c __vfs_write -EXPORT_SYMBOL vmlinux 0xa8b273ce dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xa8bcf594 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xa8e23019 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion -EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xa9271a43 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0xa92723ad sk_receive_skb -EXPORT_SYMBOL vmlinux 0xa93f5d17 ida_remove -EXPORT_SYMBOL vmlinux 0xa954be2a scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0xa966f538 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xa9673f6b scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xa974ed4a generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xa97603c1 unlock_page -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa97929c2 ccw_device_tm_start_key -EXPORT_SYMBOL vmlinux 0xa99bbd20 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xa9a3aea3 do_splice_from -EXPORT_SYMBOL vmlinux 0xa9a5b106 netpoll_setup -EXPORT_SYMBOL vmlinux 0xa9b0c998 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xa9b8f8f6 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0xa9e6e0b4 debug_register -EXPORT_SYMBOL vmlinux 0xa9f49f28 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xaa3a4404 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0xaa43ac84 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xaa69b933 compat_mc_setsockopt -EXPORT_SYMBOL vmlinux 0xaa7b75f2 follow_pfn -EXPORT_SYMBOL vmlinux 0xaa7b98ee posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0xaa85a23a km_query -EXPORT_SYMBOL vmlinux 0xaa90b093 consume_skb -EXPORT_SYMBOL vmlinux 0xaa92d61f register_netdev -EXPORT_SYMBOL vmlinux 0xaab4ea69 ip_options_compile -EXPORT_SYMBOL vmlinux 0xaab888a9 inet_recvmsg -EXPORT_SYMBOL vmlinux 0xaaba96c7 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0xaabe6704 airq_iv_free -EXPORT_SYMBOL vmlinux 0xaac2fd3e tcp_md5_hash_header -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad997a0 debug_event_common -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0xab09f805 set_nlink -EXPORT_SYMBOL vmlinux 0xab2f28f6 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xab399d94 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0xab6f4af8 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0xab7b9eb7 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xabaf18dd __d_drop -EXPORT_SYMBOL vmlinux 0xabb66e5a notify_change -EXPORT_SYMBOL vmlinux 0xabb96ecd param_set_uint -EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev -EXPORT_SYMBOL vmlinux 0xabd892b3 vfs_setpos -EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0xac114b1d kbd_free -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac2fb03c release_pages -EXPORT_SYMBOL vmlinux 0xac32c3e6 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear -EXPORT_SYMBOL vmlinux 0xac4e21d2 seq_open -EXPORT_SYMBOL vmlinux 0xac811549 dm_unregister_target -EXPORT_SYMBOL vmlinux 0xac83e1a3 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xac9e45af param_set_ushort -EXPORT_SYMBOL vmlinux 0xaca10736 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacd71780 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xace8b94d dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xacf36987 pci_bus_put -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad05e705 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xad3d60da __block_write_begin -EXPORT_SYMBOL vmlinux 0xad48885a dev_close -EXPORT_SYMBOL vmlinux 0xad4aee39 strncpy -EXPORT_SYMBOL vmlinux 0xad4cd138 perf_release_sampling -EXPORT_SYMBOL vmlinux 0xad4cd192 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xad6f93da scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0xad7c3cde param_set_charp -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xada3fd19 kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0xada53e2a bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0xadbcbac0 __get_user_pages -EXPORT_SYMBOL vmlinux 0xadcaf882 mutex_lock -EXPORT_SYMBOL vmlinux 0xadcee6d4 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xadfa36b2 pci_disable_msi -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae088099 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xae116ab3 param_get_byte -EXPORT_SYMBOL vmlinux 0xae15788c simple_dname -EXPORT_SYMBOL vmlinux 0xae7858aa vfs_llseek -EXPORT_SYMBOL vmlinux 0xae881390 devm_release_resource -EXPORT_SYMBOL vmlinux 0xae8fb6bc blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xaeb93ed0 ccw_device_halt -EXPORT_SYMBOL vmlinux 0xaeca00c7 register_shrinker -EXPORT_SYMBOL vmlinux 0xaecbd862 follow_down_one -EXPORT_SYMBOL vmlinux 0xaed32d4d vfs_writef -EXPORT_SYMBOL vmlinux 0xaedafcb8 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xaee08bfa dma_pool_create -EXPORT_SYMBOL vmlinux 0xaee93c6d d_genocide -EXPORT_SYMBOL vmlinux 0xaf08e8fe vprintk_emit -EXPORT_SYMBOL vmlinux 0xaf147b16 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf6d21de make_kuid -EXPORT_SYMBOL vmlinux 0xaf8ace71 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xaf8be1ed dump_truncate -EXPORT_SYMBOL vmlinux 0xaf8c883a inet6_add_offload -EXPORT_SYMBOL vmlinux 0xafc2fc96 skb_queue_purge -EXPORT_SYMBOL vmlinux 0xafc7e476 file_ns_capable -EXPORT_SYMBOL vmlinux 0xafe82e10 strcspn -EXPORT_SYMBOL vmlinux 0xaff54f15 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xb02b05d5 from_kgid_munged -EXPORT_SYMBOL vmlinux 0xb02ff703 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0xb03e4c65 downgrade_write -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb07a22bb dev_uc_init -EXPORT_SYMBOL vmlinux 0xb0842d3c dev_mc_init -EXPORT_SYMBOL vmlinux 0xb097c8ff PDE_DATA -EXPORT_SYMBOL vmlinux 0xb09f2214 kobject_del -EXPORT_SYMBOL vmlinux 0xb0ae00fd ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb0b544f7 devm_memunmap -EXPORT_SYMBOL vmlinux 0xb0bb5d36 dev_mc_del -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e953c4 set_wb_congested -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb1402ed6 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table -EXPORT_SYMBOL vmlinux 0xb1894fde blk_init_tags -EXPORT_SYMBOL vmlinux 0xb19b4d3a mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xb1b0631d udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb221fe5c scm_fp_dup -EXPORT_SYMBOL vmlinux 0xb23589e3 kbd_alloc -EXPORT_SYMBOL vmlinux 0xb2534ab0 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0xb27a915b __dquot_free_space -EXPORT_SYMBOL vmlinux 0xb281f8f4 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xb2827922 bio_reset -EXPORT_SYMBOL vmlinux 0xb2b0d772 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0xb2bb5933 airq_iv_scan -EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xb2d2005a pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xb2e149e3 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xb2f95386 free_task -EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xb3468d3f __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit -EXPORT_SYMBOL vmlinux 0xb3788dc7 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xb37a0495 tso_start -EXPORT_SYMBOL vmlinux 0xb380cbac padata_start -EXPORT_SYMBOL vmlinux 0xb3b967a1 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xb3d0494b elv_rb_add -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d54d89 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3ff1f69 free_pages_exact -EXPORT_SYMBOL vmlinux 0xb401cef8 nvm_register_mgr -EXPORT_SYMBOL vmlinux 0xb40d1e04 bdi_register_owner -EXPORT_SYMBOL vmlinux 0xb44734c5 blk_finish_request -EXPORT_SYMBOL vmlinux 0xb4551d8d seq_write -EXPORT_SYMBOL vmlinux 0xb4668e7a generic_ro_fops -EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0xb48645db netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xb48f1995 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xb49ed036 seq_pad -EXPORT_SYMBOL vmlinux 0xb4c56ee5 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xb4d6766a sock_wfree -EXPORT_SYMBOL vmlinux 0xb4dbfd25 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xb4e20d2f xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xb4e4f69f get_phys_clock -EXPORT_SYMBOL vmlinux 0xb4e944fe __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xb4edcae4 register_cdrom -EXPORT_SYMBOL vmlinux 0xb4fb7692 kernel_sendpage -EXPORT_SYMBOL vmlinux 0xb50d45c0 posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0xb536141d blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0xb5521827 inet_shutdown -EXPORT_SYMBOL vmlinux 0xb56e9810 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb57eef47 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xb5a4342e ihold -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5b0d956 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xb5baf843 tod_to_timeval -EXPORT_SYMBOL vmlinux 0xb5c72ab5 lock_rename -EXPORT_SYMBOL vmlinux 0xb601a80b dquot_free_inode -EXPORT_SYMBOL vmlinux 0xb6076d5c compat_nf_setsockopt -EXPORT_SYMBOL vmlinux 0xb61477da put_cmsg -EXPORT_SYMBOL vmlinux 0xb6151540 tty_port_hangup -EXPORT_SYMBOL vmlinux 0xb6161f91 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0xb6227e64 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one -EXPORT_SYMBOL vmlinux 0xb62cf0e9 kmem_cache_create -EXPORT_SYMBOL vmlinux 0xb630dcdd __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xb6333e64 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xb63b3c21 from_kuid -EXPORT_SYMBOL vmlinux 0xb6434fa6 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xb64ebac7 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0xb64fe7ac tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67f29a5 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6995940 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6c1611d blk_recount_segments -EXPORT_SYMBOL vmlinux 0xb6cb7961 pci_claim_resource -EXPORT_SYMBOL vmlinux 0xb6cff705 iucv_path_sever -EXPORT_SYMBOL vmlinux 0xb6d76547 proc_dointvec -EXPORT_SYMBOL vmlinux 0xb72b2226 __genl_register_family -EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xb761fac3 pcim_iounmap -EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb787e43a md_cluster_mod -EXPORT_SYMBOL vmlinux 0xb7899c6e mempool_free -EXPORT_SYMBOL vmlinux 0xb7a0b766 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xb7ab9d96 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7dd88e1 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xb7ea647c crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xb7fc861f pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0xb84e343e generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xb8522ebc xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xb856ca14 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xb85d4df9 xattr_full_name -EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 -EXPORT_SYMBOL vmlinux 0xb8818595 tcf_hash_cleanup -EXPORT_SYMBOL vmlinux 0xb88596d4 dev_printk_emit -EXPORT_SYMBOL vmlinux 0xb886135b ip6_frag_match -EXPORT_SYMBOL vmlinux 0xb8cb6a45 dqput -EXPORT_SYMBOL vmlinux 0xb8d482c6 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xb8d984c2 km_is_alive -EXPORT_SYMBOL vmlinux 0xb91093aa scsi_scan_host -EXPORT_SYMBOL vmlinux 0xb915ceca itcw_init -EXPORT_SYMBOL vmlinux 0xb919e747 dev_set_group -EXPORT_SYMBOL vmlinux 0xb923bdcd tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xb9249d16 cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xb928aa45 netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xb9a78b62 raw3270_find_view -EXPORT_SYMBOL vmlinux 0xb9adcaa0 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xb9b619de posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0xb9c51741 generic_writepages -EXPORT_SYMBOL vmlinux 0xb9dcc7a2 __lock_page -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xba05975d iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4b113c bioset_integrity_free -EXPORT_SYMBOL vmlinux 0xba544fa7 dma_common_mmap -EXPORT_SYMBOL vmlinux 0xba846cad sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xba9299f8 tty_port_close -EXPORT_SYMBOL vmlinux 0xba949f91 start_tty -EXPORT_SYMBOL vmlinux 0xba97d27f up_read -EXPORT_SYMBOL vmlinux 0xba99c10c get_super -EXPORT_SYMBOL vmlinux 0xba9c0915 copy_to_iter -EXPORT_SYMBOL vmlinux 0xbaa2782a kstrndup -EXPORT_SYMBOL vmlinux 0xbacaf3c1 inet_add_protocol -EXPORT_SYMBOL vmlinux 0xbafc0660 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb0b7483 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb6b8f7f generic_read_dir -EXPORT_SYMBOL vmlinux 0xbb81ca6d neigh_connected_output -EXPORT_SYMBOL vmlinux 0xbb9764c8 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xbb9d0dc5 bin2hex -EXPORT_SYMBOL vmlinux 0xbbce6b54 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xbbd69897 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xbbde047f user_path_create -EXPORT_SYMBOL vmlinux 0xbc1acc42 security_path_chown -EXPORT_SYMBOL vmlinux 0xbc2d2b4a __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xbc2d7c00 kset_register -EXPORT_SYMBOL vmlinux 0xbc469665 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xbc4bc8f8 rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0xbc4e71d7 d_instantiate -EXPORT_SYMBOL vmlinux 0xbc62d96b neigh_ifdown -EXPORT_SYMBOL vmlinux 0xbc69b643 drop_super -EXPORT_SYMBOL vmlinux 0xbc73d363 __check_sticky -EXPORT_SYMBOL vmlinux 0xbcb87d13 __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xbcd4cca0 netdev_warn -EXPORT_SYMBOL vmlinux 0xbce3fd9b blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xbd0f4a4e brioctl_set -EXPORT_SYMBOL vmlinux 0xbd100793 cpu_online_mask -EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve -EXPORT_SYMBOL vmlinux 0xbd21350c jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xbd2e7726 arp_send -EXPORT_SYMBOL vmlinux 0xbd44e417 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xbd4b0105 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xbdfb851f ___ratelimit -EXPORT_SYMBOL vmlinux 0xbe029335 scsi_init_io -EXPORT_SYMBOL vmlinux 0xbe1206b4 write_inode_now -EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto -EXPORT_SYMBOL vmlinux 0xbe2e296c tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0xbe8921af free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xbea4004c pci_write_vpd -EXPORT_SYMBOL vmlinux 0xbea5c34b _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xbeaa7b04 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xbee2ab08 replace_mount_options -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf1369f1 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0xbf145944 set_posix_acl -EXPORT_SYMBOL vmlinux 0xbf49641b xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfcd64c1 sock_setsockopt -EXPORT_SYMBOL vmlinux 0xbfe62839 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc003c637 __strncpy_from_user -EXPORT_SYMBOL vmlinux 0xc01a2154 raw3270_request_reset -EXPORT_SYMBOL vmlinux 0xc01b0001 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0xc0285346 tcf_hash_create -EXPORT_SYMBOL vmlinux 0xc0395f0d netlink_capable -EXPORT_SYMBOL vmlinux 0xc040a068 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0xc05a9bb0 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xc075470d adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0xc075fc0d vlan_vid_del -EXPORT_SYMBOL vmlinux 0xc09466ff install_exec_creds -EXPORT_SYMBOL vmlinux 0xc0972d2a elevator_change -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0b3de0a dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0xc0f38cbc init_special_inode -EXPORT_SYMBOL vmlinux 0xc1820e3d alloc_disk -EXPORT_SYMBOL vmlinux 0xc18a15e0 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xc1988d25 d_find_any_alias -EXPORT_SYMBOL vmlinux 0xc1a54486 remove_wait_queue -EXPORT_SYMBOL vmlinux 0xc1cfebb8 stop_tty -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e3390d bio_advance -EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xc1ef2ca1 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xc1f516a4 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0xc1f9c428 cdev_del -EXPORT_SYMBOL vmlinux 0xc1ff96af textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0xc20c4e73 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0xc212f2ab prandom_bytes -EXPORT_SYMBOL vmlinux 0xc265e06d dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xc2668bc9 padata_set_cpumasks -EXPORT_SYMBOL vmlinux 0xc281907e iucv_message_reply -EXPORT_SYMBOL vmlinux 0xc29101e0 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc2c90e93 inet6_getname -EXPORT_SYMBOL vmlinux 0xc2da0e05 bioset_create -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2ea80d9 neigh_update -EXPORT_SYMBOL vmlinux 0xc300c1bf jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xc3198718 dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0xc32baeb0 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xc34cffe2 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xc3845749 sync_blockdev -EXPORT_SYMBOL vmlinux 0xc385cb58 perf_num_counters -EXPORT_SYMBOL vmlinux 0xc39231df fsnotify_put_group -EXPORT_SYMBOL vmlinux 0xc3a373ff register_md_personality -EXPORT_SYMBOL vmlinux 0xc3c217c6 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xc3c2f458 bd_set_size -EXPORT_SYMBOL vmlinux 0xc3d1ef00 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xc3fec453 tcp_read_sock -EXPORT_SYMBOL vmlinux 0xc40bd3db sock_rfree -EXPORT_SYMBOL vmlinux 0xc40d1cf6 bdevname -EXPORT_SYMBOL vmlinux 0xc4256057 path_get -EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0xc45acbb7 skb_queue_head -EXPORT_SYMBOL vmlinux 0xc476f3fe proc_mkdir -EXPORT_SYMBOL vmlinux 0xc477a41e pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0xc490e6a2 tcp_parse_options -EXPORT_SYMBOL vmlinux 0xc492283f migrate_page_copy -EXPORT_SYMBOL vmlinux 0xc495154e inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc5288d61 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xc5354313 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0xc540fa08 bh_submit_read -EXPORT_SYMBOL vmlinux 0xc54fa94a pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xc55464cb __getblk_gfp -EXPORT_SYMBOL vmlinux 0xc5556533 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xc565ad34 tty_do_resize -EXPORT_SYMBOL vmlinux 0xc56aa399 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xc5738d68 dcache_dir_open -EXPORT_SYMBOL vmlinux 0xc5842069 bdi_register -EXPORT_SYMBOL vmlinux 0xc58c60e2 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59a365e blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xc5ad93b8 sie_exit -EXPORT_SYMBOL vmlinux 0xc5e153d7 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xc5e8ad99 set_binfmt -EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xc5fee27b sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0xc622ea97 stsi -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc65782ad abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0xc6616421 config_item_get -EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xc6aacfb3 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d60f86 tty_devnum -EXPORT_SYMBOL vmlinux 0xc7245d5e skb_append -EXPORT_SYMBOL vmlinux 0xc7302a40 nvm_set_rqd_ppalist -EXPORT_SYMBOL vmlinux 0xc7435211 km_policy_expired -EXPORT_SYMBOL vmlinux 0xc743b379 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0xc744f562 blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0xc7536200 ccw_device_tm_start_timeout_key -EXPORT_SYMBOL vmlinux 0xc7669307 nvm_end_io -EXPORT_SYMBOL vmlinux 0xc77d91ef kmem_cache_size -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a24d76 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7b010e8 tcp_prequeue -EXPORT_SYMBOL vmlinux 0xc7b43814 cap_mmap_file -EXPORT_SYMBOL vmlinux 0xc7d09cf6 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xc808bf61 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0xc812a0dc kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xc81ad58a tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xc81c8859 console_start -EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc86a6174 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc875e20a xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xc88a18af lro_flush_all -EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table -EXPORT_SYMBOL vmlinux 0xc89cdfb3 nvm_erase_ppa -EXPORT_SYMBOL vmlinux 0xc89fc29b __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8acb5f8 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8ba80fd __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xc8e7f69d dev_err -EXPORT_SYMBOL vmlinux 0xc90ba558 lease_modify -EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xc9252f53 dm_put_device -EXPORT_SYMBOL vmlinux 0xc92b67fc netdev_printk -EXPORT_SYMBOL vmlinux 0xc93b7215 __alloc_skb -EXPORT_SYMBOL vmlinux 0xc947a7e7 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc9afd8f1 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xca08e817 compat_ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy -EXPORT_SYMBOL vmlinux 0xca18251a tcf_hash_search -EXPORT_SYMBOL vmlinux 0xca44e49d unregister_binfmt -EXPORT_SYMBOL vmlinux 0xca4c923d vscnprintf -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca995b22 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xcaa158cf current_fs_time -EXPORT_SYMBOL vmlinux 0xcabc0d3c ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xcaddc58e dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0xcae63f4c bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb1f33f1 dev_trans_start -EXPORT_SYMBOL vmlinux 0xcb3dca0c ccw_device_resume -EXPORT_SYMBOL vmlinux 0xcb547ddd seq_path -EXPORT_SYMBOL vmlinux 0xcb5e4a0d nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xcb5f3cfb skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xcba780a8 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbc95675 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xcbecdb60 kill_fasync -EXPORT_SYMBOL vmlinux 0xcc2151a6 dev_get_iflink -EXPORT_SYMBOL vmlinux 0xcc2239e7 netdev_err -EXPORT_SYMBOL vmlinux 0xcc36fc4f md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xcc4cce9f ccw_device_start_timeout -EXPORT_SYMBOL vmlinux 0xcc4d4b37 cdev_add -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc559cf0 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xcc5bc9b0 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xcc5ff0bb dev_uc_add -EXPORT_SYMBOL vmlinux 0xcc92ee64 ccw_device_tm_start -EXPORT_SYMBOL vmlinux 0xcc990ef6 kernel_getsockname -EXPORT_SYMBOL vmlinux 0xcca94125 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xccba7925 nf_nat_decode_session_hook -EXPORT_SYMBOL vmlinux 0xccd2ca54 dup_iter -EXPORT_SYMBOL vmlinux 0xcce3aba8 elv_rb_find -EXPORT_SYMBOL vmlinux 0xcce77614 param_ops_byte -EXPORT_SYMBOL vmlinux 0xcd0413cf skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xcd0ac56f napi_gro_frags -EXPORT_SYMBOL vmlinux 0xcd26b4ef ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd2e89ea elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0xcd3e1828 dev_activate -EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xcd6aac51 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xcd6fbb60 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0xcd74228d pci_scan_bridge -EXPORT_SYMBOL vmlinux 0xcd816cf6 arch_spin_lock_wait -EXPORT_SYMBOL vmlinux 0xcd96dd7b proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0xcd9a78b4 nvm_dev_factory -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdcac60e vfs_link -EXPORT_SYMBOL vmlinux 0xcdf7484b proc_dostring -EXPORT_SYMBOL vmlinux 0xcdf98a4c kobject_init -EXPORT_SYMBOL vmlinux 0xce00336a panic_notifier_list -EXPORT_SYMBOL vmlinux 0xce164cef page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce4a088e __dev_get_by_name -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce709e6b __bread_gfp -EXPORT_SYMBOL vmlinux 0xce786802 pci_pme_active -EXPORT_SYMBOL vmlinux 0xce7fd125 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xce8697b1 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free -EXPORT_SYMBOL vmlinux 0xcec3a321 security_inode_readlink -EXPORT_SYMBOL vmlinux 0xcec3a908 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xcedf0886 cpu_relax -EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 -EXPORT_SYMBOL vmlinux 0xcf0bf891 __pagevec_release -EXPORT_SYMBOL vmlinux 0xcf14f8cd iucv_message_purge -EXPORT_SYMBOL vmlinux 0xcf2817d5 ida_simple_get -EXPORT_SYMBOL vmlinux 0xcf3c08a1 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xcf4be2ec tcp_child_process -EXPORT_SYMBOL vmlinux 0xcf6620df __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xcf7feff0 bioset_free -EXPORT_SYMBOL vmlinux 0xcf884209 generic_delete_inode -EXPORT_SYMBOL vmlinux 0xcf8f1447 __blk_end_request_all -EXPORT_SYMBOL vmlinux 0xcfa59c93 dm_register_target -EXPORT_SYMBOL vmlinux 0xcfbb153d sk_stream_write_space -EXPORT_SYMBOL vmlinux 0xcfeae122 lockref_put_return -EXPORT_SYMBOL vmlinux 0xd020237c mpage_writepage -EXPORT_SYMBOL vmlinux 0xd02ca281 pci_restore_state -EXPORT_SYMBOL vmlinux 0xd062092e skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a39758 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0bd7271 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xd0ed8226 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format -EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0xd1169335 vfs_symlink -EXPORT_SYMBOL vmlinux 0xd1225a95 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xd14478c1 param_ops_invbool -EXPORT_SYMBOL vmlinux 0xd15bd8b6 unregister_filesystem -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd199d498 tcw_init -EXPORT_SYMBOL vmlinux 0xd19f13f7 del_virt_timer -EXPORT_SYMBOL vmlinux 0xd1bf5c88 netlink_set_err -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1db8f78 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xd1f152ad kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xd22aac5d grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xd234057b kthread_stop -EXPORT_SYMBOL vmlinux 0xd2432833 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd255ab42 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0xd26ddbc0 pci_request_regions -EXPORT_SYMBOL vmlinux 0xd272a43f md_write_end -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd2858d0c node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0xd2a8087c netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0xd2b6dc1e config_group_find_item -EXPORT_SYMBOL vmlinux 0xd2d0fb63 request_key_async -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e0bb73 sie64a -EXPORT_SYMBOL vmlinux 0xd303e717 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xd30c7ad1 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0xd30c85df ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xd31c393b iucv_path_accept -EXPORT_SYMBOL vmlinux 0xd326b80a blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xd32909ac freeze_super -EXPORT_SYMBOL vmlinux 0xd353f7ca netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xd354d665 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xd37ff59f iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0xd3af979c memdup_user -EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xd3cce4b1 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xd3e2666f netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0xd41c0c66 generic_permission -EXPORT_SYMBOL vmlinux 0xd4396e99 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xd456afa3 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xd45c8fac file_path -EXPORT_SYMBOL vmlinux 0xd461643e iterate_supers_type -EXPORT_SYMBOL vmlinux 0xd4652bdc wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xd4719eb9 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0xd47732ab ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xd49843c6 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xd4caa0b7 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xd4e2b66b lwtunnel_get_encap_size -EXPORT_SYMBOL vmlinux 0xd50d64a3 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0xd52a438d dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xd5393d8f vfs_rename -EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xd55121f5 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0xd569406d do_SAK -EXPORT_SYMBOL vmlinux 0xd58a6aea mem_cgroup_end_page_stat -EXPORT_SYMBOL vmlinux 0xd5b785f6 debug_sprintf_view -EXPORT_SYMBOL vmlinux 0xd5c6a7a6 unlock_buffer -EXPORT_SYMBOL vmlinux 0xd5c8fd21 kbd_keycode -EXPORT_SYMBOL vmlinux 0xd5ef7c80 sock_no_connect -EXPORT_SYMBOL vmlinux 0xd5f0836a __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0xd61a66a5 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xd61c0500 cdrom_open -EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout -EXPORT_SYMBOL vmlinux 0xd62d5c4a inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xd638210d irq_to_desc -EXPORT_SYMBOL vmlinux 0xd666a588 smp_ctl_clear_bit -EXPORT_SYMBOL vmlinux 0xd684b796 seq_lseek -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68b3d71 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0xd69a3caf kernel_getpeername -EXPORT_SYMBOL vmlinux 0xd6d45f67 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6fcb313 elevator_exit -EXPORT_SYMBOL vmlinux 0xd70ac470 param_get_ullong -EXPORT_SYMBOL vmlinux 0xd74826db sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function -EXPORT_SYMBOL vmlinux 0xd7726a30 md_done_sync -EXPORT_SYMBOL vmlinux 0xd79f3fa3 param_get_ulong -EXPORT_SYMBOL vmlinux 0xd7c97de0 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7ed2f34 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xd7ee3264 set_disk_ro -EXPORT_SYMBOL vmlinux 0xd81d6213 override_creds -EXPORT_SYMBOL vmlinux 0xd81e7856 scsi_register -EXPORT_SYMBOL vmlinux 0xd8260599 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0xd8298c7b iov_iter_advance -EXPORT_SYMBOL vmlinux 0xd82aa2cf xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0xd82bae4e netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xd82fe4e6 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xd83214e0 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0xd839b7d9 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xd83fe538 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0xd8453a4c buffer_migrate_page -EXPORT_SYMBOL vmlinux 0xd8770a7e noop_llseek -EXPORT_SYMBOL vmlinux 0xd88a0fcc blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8bd046e dev_uc_del -EXPORT_SYMBOL vmlinux 0xd8d30b1d generic_file_fsync -EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8f7a11a generic_fillattr -EXPORT_SYMBOL vmlinux 0xd8fcda72 cpcmd -EXPORT_SYMBOL vmlinux 0xd8fdcda8 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xd92f09b7 dev_disable_lro -EXPORT_SYMBOL vmlinux 0xd93a8f7f pagevec_lookup -EXPORT_SYMBOL vmlinux 0xd9532949 pci_scan_bus -EXPORT_SYMBOL vmlinux 0xd96fdd92 current_in_userns -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9872785 register_filesystem -EXPORT_SYMBOL vmlinux 0xd9922afa iov_iter_zero -EXPORT_SYMBOL vmlinux 0xd9b3f97d console_devno -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9e24cb1 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xda1e39c7 register_sysctl_table -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda3db0a4 unregister_md_personality -EXPORT_SYMBOL vmlinux 0xda4620be write_one_page -EXPORT_SYMBOL vmlinux 0xda4ae842 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xda6da932 elv_add_request -EXPORT_SYMBOL vmlinux 0xda6dc706 mb_cache_shrink -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdae162cb string_unescape -EXPORT_SYMBOL vmlinux 0xdae8beb9 dm_io -EXPORT_SYMBOL vmlinux 0xdafbc225 scsi_execute -EXPORT_SYMBOL vmlinux 0xdb185e7b __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0xdb38157f pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0xdb4e1d81 lease_get_mtime -EXPORT_SYMBOL vmlinux 0xdb64be1f __iucv_message_send -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb8b7d03 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xdba14cce arch_spin_lock_wait_flags -EXPORT_SYMBOL vmlinux 0xdbb1bfd7 migrate_page -EXPORT_SYMBOL vmlinux 0xdbb4824d pci_select_bars -EXPORT_SYMBOL vmlinux 0xdbc4ec41 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xdbd82e91 key_revoke -EXPORT_SYMBOL vmlinux 0xdbe0948b skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0xdc0939e9 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc29c508 __init_rwsem -EXPORT_SYMBOL vmlinux 0xdc328b68 register_service_level -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc40ad84 param_array_ops -EXPORT_SYMBOL vmlinux 0xdc40c4a9 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xdc4d27dd raw3270_start_irq -EXPORT_SYMBOL vmlinux 0xdc6b6348 request_firmware -EXPORT_SYMBOL vmlinux 0xdc7bd004 path_put -EXPORT_SYMBOL vmlinux 0xdc8d9f16 fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0xdc953da6 filemap_fdatawait -EXPORT_SYMBOL vmlinux 0xdc96a927 tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0xdc9be5db ccw_driver_unregister -EXPORT_SYMBOL vmlinux 0xdca4c9c6 param_get_ushort -EXPORT_SYMBOL vmlinux 0xdcaa5de0 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close -EXPORT_SYMBOL vmlinux 0xdcb56923 tso_count_descs -EXPORT_SYMBOL vmlinux 0xdcce448b __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0xdd1131eb __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xdd143a7b skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xdd17a7f7 nvm_generic_to_addr_mode -EXPORT_SYMBOL vmlinux 0xdd180193 flow_cache_fini -EXPORT_SYMBOL vmlinux 0xdd1836af starget_for_each_device -EXPORT_SYMBOL vmlinux 0xdd3adb02 sock_init_data -EXPORT_SYMBOL vmlinux 0xdd672b7f qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0xdd7cf77b fget -EXPORT_SYMBOL vmlinux 0xdd7e873f blkdev_fsync -EXPORT_SYMBOL vmlinux 0xdd821580 dqstats -EXPORT_SYMBOL vmlinux 0xdd879d99 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xdd8fff00 block_write_full_page -EXPORT_SYMBOL vmlinux 0xdd9bac13 page_waitqueue -EXPORT_SYMBOL vmlinux 0xdd9d6ee8 inet_sendpage -EXPORT_SYMBOL vmlinux 0xdda08c00 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0xddaea2c3 poll_initwait -EXPORT_SYMBOL vmlinux 0xddb91265 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0xddcfe926 dst_release -EXPORT_SYMBOL vmlinux 0xddde2186 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0xde0bdcff memset -EXPORT_SYMBOL vmlinux 0xde36a978 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xde48a247 mempool_create -EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0xde661d04 napi_get_frags -EXPORT_SYMBOL vmlinux 0xde8b4f8b airq_iv_alloc -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xde940255 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xde95c474 keyring_search -EXPORT_SYMBOL vmlinux 0xde96243d param_ops_bint -EXPORT_SYMBOL vmlinux 0xde9a9624 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xdef42510 scsi_remove_host -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf68f1e9 sock_no_accept -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdfa9acca smp_cpu_mtid -EXPORT_SYMBOL vmlinux 0xdfbf669e ccw_device_get_ciw -EXPORT_SYMBOL vmlinux 0xdfc63859 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xe02e75c6 sock_no_poll -EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xe052641a neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe0614a83 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xe06e4199 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xe0812a9e register_adapter_interrupt -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b9ca7d pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xe0bc4fb2 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xe109cdcd locks_init_lock -EXPORT_SYMBOL vmlinux 0xe12459cc ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xe12a6ba7 irq_set_chip -EXPORT_SYMBOL vmlinux 0xe12dc77a pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xe13e5930 nvm_get_blk -EXPORT_SYMBOL vmlinux 0xe147d29f netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xe1520cab qdisc_list_del -EXPORT_SYMBOL vmlinux 0xe1686092 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe188467f pci_assign_resource -EXPORT_SYMBOL vmlinux 0xe18c844b inet_register_protosw -EXPORT_SYMBOL vmlinux 0xe1af2a79 raw3270_add_view -EXPORT_SYMBOL vmlinux 0xe1b954d4 d_find_alias -EXPORT_SYMBOL vmlinux 0xe1c18a2f sk_stream_error -EXPORT_SYMBOL vmlinux 0xe1d6f783 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0xe1ddf172 nonseekable_open -EXPORT_SYMBOL vmlinux 0xe1f93520 bdi_register_dev -EXPORT_SYMBOL vmlinux 0xe1ff3259 security_path_rename -EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0xe2114879 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xe21b800a pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0xe2274d88 compat_tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xe2309a5e tty_vhangup -EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe24042ed pcie_get_mps -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe250ea10 blk_execute_rq -EXPORT_SYMBOL vmlinux 0xe25a00e0 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0xe2632bf2 netdev_crit -EXPORT_SYMBOL vmlinux 0xe2763622 dev_alert -EXPORT_SYMBOL vmlinux 0xe2784ffe mpage_readpage -EXPORT_SYMBOL vmlinux 0xe27851f3 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xe28cee4c xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0xe2c5f10b nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xe2ce191c rtnl_unicast -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2d8e745 find_vma -EXPORT_SYMBOL vmlinux 0xe2da751d __skb_checksum -EXPORT_SYMBOL vmlinux 0xe2e522f5 would_dump -EXPORT_SYMBOL vmlinux 0xe2e5beba zpool_register_driver -EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0xe2f80c18 account_page_redirty -EXPORT_SYMBOL vmlinux 0xe305a614 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xe3072353 __breadahead -EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0xe3632f6a proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xe371c2fd cdrom_media_changed -EXPORT_SYMBOL vmlinux 0xe3b67b20 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xe3b858f5 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xe3c21b17 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xe3d2b1b5 md_finish_reshape -EXPORT_SYMBOL vmlinux 0xe3d86f39 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xe3ef2f39 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0xe40ecb03 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0xe4409190 mem_section -EXPORT_SYMBOL vmlinux 0xe467f9aa sclp_register -EXPORT_SYMBOL vmlinux 0xe479a964 dump_fpu -EXPORT_SYMBOL vmlinux 0xe48f1ca0 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xe4916e19 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xe4a40d2f diag210 -EXPORT_SYMBOL vmlinux 0xe4b4d0c5 force_sig -EXPORT_SYMBOL vmlinux 0xe4b60e73 neigh_destroy -EXPORT_SYMBOL vmlinux 0xe4b994e9 pcim_iomap -EXPORT_SYMBOL vmlinux 0xe4bcd22b disk_stack_limits -EXPORT_SYMBOL vmlinux 0xe4dbdf26 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xe4e26b4e bio_init -EXPORT_SYMBOL vmlinux 0xe4e73f1d rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xe5094832 page_table_allocate_pgste -EXPORT_SYMBOL vmlinux 0xe512f173 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xe51fed85 complete_all -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe52cb74d xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0xe5383db1 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0xe54036ef mempool_resize -EXPORT_SYMBOL vmlinux 0xe5408351 pci_scan_slot -EXPORT_SYMBOL vmlinux 0xe553f035 udp_proc_unregister -EXPORT_SYMBOL vmlinux 0xe5587385 vfs_iter_read -EXPORT_SYMBOL vmlinux 0xe5654162 blk_fetch_request -EXPORT_SYMBOL vmlinux 0xe577eea4 inet6_offloads -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe5874f85 put_filp -EXPORT_SYMBOL vmlinux 0xe589f8ee ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0xe58fc345 blk_make_request -EXPORT_SYMBOL vmlinux 0xe5aa3766 padata_add_cpu -EXPORT_SYMBOL vmlinux 0xe5ad0479 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0xe5b276aa proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0xe5c0c853 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xe5c2bfad is_bad_inode -EXPORT_SYMBOL vmlinux 0xe5c83f20 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xe5fe562f unlock_new_inode -EXPORT_SYMBOL vmlinux 0xe61e516c posix_acl_valid -EXPORT_SYMBOL vmlinux 0xe62db72e unregister_netdev -EXPORT_SYMBOL vmlinux 0xe63d5a1b sockfd_lookup -EXPORT_SYMBOL vmlinux 0xe6761774 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0xe68e8a35 alloc_file -EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0xe6ce9f82 unregister_nls -EXPORT_SYMBOL vmlinux 0xe6d8d6cc scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xe6f1486d dql_reset -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe704a2e5 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xe713a97a irq_subclass_unregister -EXPORT_SYMBOL vmlinux 0xe7503eb0 pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe791e59c inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xe7a64126 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx -EXPORT_SYMBOL vmlinux 0xe7b376c7 nf_log_trace -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7dcd9c4 pci_pme_capable -EXPORT_SYMBOL vmlinux 0xe7e9e55f scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xe7f49d98 set_security_override -EXPORT_SYMBOL vmlinux 0xe8116e08 __kmalloc_node -EXPORT_SYMBOL vmlinux 0xe817fb69 tty_port_close_start -EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe83a826e bio_integrity_enabled -EXPORT_SYMBOL vmlinux 0xe8404941 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xe85d8f16 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xe8880b3e security_path_truncate -EXPORT_SYMBOL vmlinux 0xe8895342 key_alloc -EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0xe8b1383e dquot_scan_active -EXPORT_SYMBOL vmlinux 0xe8bb34c7 nobh_write_begin -EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xe8c731fa debug_unregister -EXPORT_SYMBOL vmlinux 0xe8c7aaf0 kill_litter_super -EXPORT_SYMBOL vmlinux 0xe8c808c0 netif_skb_features -EXPORT_SYMBOL vmlinux 0xe8d3b55a bdev_stack_limits -EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 -EXPORT_SYMBOL vmlinux 0xe8f0b99a pcim_pin_device -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95def71 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0xe9613b47 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xe975faae __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xe9989c8c itcw_get_tcw -EXPORT_SYMBOL vmlinux 0xe9b0e904 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0xe9c99373 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len -EXPORT_SYMBOL vmlinux 0xea37b786 sk_mc_loop -EXPORT_SYMBOL vmlinux 0xea5f41bd add_wait_queue -EXPORT_SYMBOL vmlinux 0xea782af0 blk_end_request_all -EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table -EXPORT_SYMBOL vmlinux 0xea823df8 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xea872313 find_next_bit_inv -EXPORT_SYMBOL vmlinux 0xea8e973f __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0xea8eb28f init_buffer -EXPORT_SYMBOL vmlinux 0xea958aaa make_bad_inode -EXPORT_SYMBOL vmlinux 0xeaba44fe tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xeaba926b __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0xeaccf6bd sg_miter_stop -EXPORT_SYMBOL vmlinux 0xeacf21c7 eth_header_cache -EXPORT_SYMBOL vmlinux 0xeacf2c0b kbd_ioctl -EXPORT_SYMBOL vmlinux 0xead58fb9 print_hex_dump -EXPORT_SYMBOL vmlinux 0xeafb05c5 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xeb1e4116 pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb6e7984 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xeb71a848 raw3270_start_locked -EXPORT_SYMBOL vmlinux 0xeb80851a dput -EXPORT_SYMBOL vmlinux 0xeb9adf0f build_skb -EXPORT_SYMBOL vmlinux 0xeb9c08b4 tty_port_init -EXPORT_SYMBOL vmlinux 0xeba115d6 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xeba68247 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xebbf1dba strncasecmp -EXPORT_SYMBOL vmlinux 0xebcc4b54 dquot_destroy -EXPORT_SYMBOL vmlinux 0xebfe21ec ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xebffe76c sk_ns_capable -EXPORT_SYMBOL vmlinux 0xec27c4d1 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xec34c2dd generic_block_bmap -EXPORT_SYMBOL vmlinux 0xec38f643 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xec502d20 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0xec5f1d4d bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xec91439d nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0xece54544 seq_dentry -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecef11eb iucv_path_connect -EXPORT_SYMBOL vmlinux 0xed07f58d bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xed0d489d blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xed1ebea8 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xed24975c ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xed90b8c6 alloc_pages_current -EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedd07aea dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xeddc828b tty_check_change -EXPORT_SYMBOL vmlinux 0xede17d7e zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee2ec339 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xee359536 block_commit_write -EXPORT_SYMBOL vmlinux 0xee4efae3 skb_checksum -EXPORT_SYMBOL vmlinux 0xee54675a save_mount_options -EXPORT_SYMBOL vmlinux 0xee57fc54 __module_get -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee93ac39 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeecf55b1 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xeee7cb7c blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xeef161aa groups_free -EXPORT_SYMBOL vmlinux 0xeef472f6 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0xeef6922c seq_putc -EXPORT_SYMBOL vmlinux 0xef1cc91f block_page_mkwrite -EXPORT_SYMBOL vmlinux 0xef2366af napi_gro_receive -EXPORT_SYMBOL vmlinux 0xef2af64b pci_get_device -EXPORT_SYMBOL vmlinux 0xef2ef869 mount_subtree -EXPORT_SYMBOL vmlinux 0xef34b5e0 tcp_disconnect -EXPORT_SYMBOL vmlinux 0xef433cf2 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0xef45d32c __kfifo_init -EXPORT_SYMBOL vmlinux 0xef60ddf8 napi_disable -EXPORT_SYMBOL vmlinux 0xef8a0f69 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xef8b0f50 setup_arg_pages -EXPORT_SYMBOL vmlinux 0xef9ed9d4 block_write_end -EXPORT_SYMBOL vmlinux 0xefaab7a6 proc_remove -EXPORT_SYMBOL vmlinux 0xefb13a20 ip_check_defrag -EXPORT_SYMBOL vmlinux 0xefb272da get_super_thawed -EXPORT_SYMBOL vmlinux 0xefc5ea6b mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0xefc6fa90 default_file_splice_read -EXPORT_SYMBOL vmlinux 0xefdbd52f inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefe93c6c dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0xf0504219 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0xf05555e1 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xf05aab33 tty_throttle -EXPORT_SYMBOL vmlinux 0xf05dc625 register_netdevice -EXPORT_SYMBOL vmlinux 0xf06603d5 key_task_permission -EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0xf06e34c7 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xf07edefa init_task -EXPORT_SYMBOL vmlinux 0xf0843f60 _dev_info -EXPORT_SYMBOL vmlinux 0xf086406c xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int -EXPORT_SYMBOL vmlinux 0xf0a60da2 kmalloc_caches -EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xf0cd39c9 md_cluster_ops -EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort -EXPORT_SYMBOL vmlinux 0xf101b1f6 sync_inode -EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info -EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit -EXPORT_SYMBOL vmlinux 0xf118c7a4 __vfs_read -EXPORT_SYMBOL vmlinux 0xf122c1c5 lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0xf138504d gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1ba84b8 netdev_alert -EXPORT_SYMBOL vmlinux 0xf1c49d38 dentry_path_raw -EXPORT_SYMBOL vmlinux 0xf1d31909 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf2080479 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xf20b7e59 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf219c92a __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf2425a4a blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xf248d459 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xf253ee9a jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0xf253f67b nf_register_hook -EXPORT_SYMBOL vmlinux 0xf26b69c8 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xf284ad66 up_write -EXPORT_SYMBOL vmlinux 0xf2871261 __skb_get_hash -EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xf2ac7f06 dump_align -EXPORT_SYMBOL vmlinux 0xf2ea8dfa generic_file_llseek -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf31d7735 secpath_dup -EXPORT_SYMBOL vmlinux 0xf3266162 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf334cee6 neigh_lookup -EXPORT_SYMBOL vmlinux 0xf34299bb vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf366c288 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xf36aa50e ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xf382e973 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf38e6a6d netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0xf39f26ef pci_release_regions -EXPORT_SYMBOL vmlinux 0xf3bd11b0 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xf3c1796b kill_pgrp -EXPORT_SYMBOL vmlinux 0xf3c53ca9 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3e782d7 param_get_bool -EXPORT_SYMBOL vmlinux 0xf4185da4 d_move -EXPORT_SYMBOL vmlinux 0xf42b3ee1 tcp_proto_cgroup -EXPORT_SYMBOL vmlinux 0xf4356aae qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xf44a9ec4 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0xf44b36b3 d_invalidate -EXPORT_SYMBOL vmlinux 0xf4528073 scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0xf462014e flow_cache_lookup -EXPORT_SYMBOL vmlinux 0xf4711e53 scsi_remove_target -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf48e6d63 open_exec -EXPORT_SYMBOL vmlinux 0xf4a21762 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xf4b7e6d9 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4dfa66e locks_free_lock -EXPORT_SYMBOL vmlinux 0xf4e70983 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xf4ed2106 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f1d73f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xf505470a in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xf5166050 elv_rb_del -EXPORT_SYMBOL vmlinux 0xf524662a elevator_alloc -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf55e883a frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xf584e6fd textsearch_destroy -EXPORT_SYMBOL vmlinux 0xf5a59663 import_iovec -EXPORT_SYMBOL vmlinux 0xf5ac5cb3 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xf5ace27a block_write_begin -EXPORT_SYMBOL vmlinux 0xf5b15b68 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0xf5b6797f writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command -EXPORT_SYMBOL vmlinux 0xf6084a3f release_firmware -EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0xf674c259 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xf67579aa register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xf68fe0b6 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0xf6a72ec1 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xf6c131cb __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xf6e236db tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf6ff590e deactivate_super -EXPORT_SYMBOL vmlinux 0xf704fb4e xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xf70b89dd in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xf70fafe3 freezing_slow_path -EXPORT_SYMBOL vmlinux 0xf73a542a tcp_init_cgroup -EXPORT_SYMBOL vmlinux 0xf751a0a1 __scm_send -EXPORT_SYMBOL vmlinux 0xf7541013 get_user_pages -EXPORT_SYMBOL vmlinux 0xf796623a kobject_put -EXPORT_SYMBOL vmlinux 0xf7d71918 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0xf7de6f4a unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xf7f2d25d iucv_message_send2way -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf86f0dfe fixed_size_llseek -EXPORT_SYMBOL vmlinux 0xf876bbb7 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xf8810b48 ns_capable -EXPORT_SYMBOL vmlinux 0xf89cfde7 VMALLOC_START -EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf9351c79 sock_kmalloc -EXPORT_SYMBOL vmlinux 0xf95c9097 dcache_dir_close -EXPORT_SYMBOL vmlinux 0xf95d5641 ida_destroy -EXPORT_SYMBOL vmlinux 0xf97dd368 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0xf990bbe0 dev_driver_string -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9c1f31e __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xf9cdb7f9 blk_requeue_request -EXPORT_SYMBOL vmlinux 0xf9d173a2 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xf9ea8e93 skb_dequeue -EXPORT_SYMBOL vmlinux 0xf9f51284 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xf9fc567e blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0xf9fe2117 icmp_send -EXPORT_SYMBOL vmlinux 0xf9ff19a8 netdev_emerg -EXPORT_SYMBOL vmlinux 0xfa427684 __dst_free -EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0xfa53bf5c inode_get_bytes -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa9873db __scsi_add_device -EXPORT_SYMBOL vmlinux 0xfaa09920 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xfac0c01b skb_trim -EXPORT_SYMBOL vmlinux 0xfac60968 lg_lock_init -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xface2100 lru_cache_add_file -EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr -EXPORT_SYMBOL vmlinux 0xfaf8ad71 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xfb15265e set_groups -EXPORT_SYMBOL vmlinux 0xfb33144f block_invalidatepage -EXPORT_SYMBOL vmlinux 0xfb49af90 mntget -EXPORT_SYMBOL vmlinux 0xfb609d36 key_link -EXPORT_SYMBOL vmlinux 0xfb65b2bf inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0xfb69c03d eth_header -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb6b6f74 raw3270_request_free -EXPORT_SYMBOL vmlinux 0xfb725329 mempool_create_node -EXPORT_SYMBOL vmlinux 0xfb7cae24 release_sock -EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 -EXPORT_SYMBOL vmlinux 0xfb981d2b blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0xfba750fd tty_free_termios -EXPORT_SYMBOL vmlinux 0xfba7567e pci_find_bus -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbf39aa8 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc2ef204 __debug_sprintf_event -EXPORT_SYMBOL vmlinux 0xfc419c60 xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0xfc46bb96 itcw_add_tidaw -EXPORT_SYMBOL vmlinux 0xfc4a64bb bdgrab -EXPORT_SYMBOL vmlinux 0xfc59d0bc mempool_destroy -EXPORT_SYMBOL vmlinux 0xfc86231d iterate_fd -EXPORT_SYMBOL vmlinux 0xfc8b4334 proto_unregister -EXPORT_SYMBOL vmlinux 0xfcad8689 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0xfcb0152f inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0xfcb2344f udp_poll -EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0xfcd4323b xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf08df8 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xfcffe8ca sclp_pci_configure -EXPORT_SYMBOL vmlinux 0xfd048a36 key_invalidate -EXPORT_SYMBOL vmlinux 0xfd3689cf jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0xfd5372d0 nvm_unregister_mgr -EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xfda74fd5 skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0xfe022ab3 ccw_device_clear -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids -EXPORT_SYMBOL vmlinux 0xfe302d88 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xfe404323 __sock_create -EXPORT_SYMBOL vmlinux 0xfe540dfe xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe6f5b77 dquot_transfer -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe91deae dev_addr_del -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfef1ef7c xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff37a945 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xff4c2af2 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xff4e72c8 blk_run_queue_async -EXPORT_SYMBOL vmlinux 0xff50201e lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0xff52ec95 __kfree_skb -EXPORT_SYMBOL vmlinux 0xff6b662e qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0xff6d64fd pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xff741a6a netlink_broadcast -EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xfff31f89 blk_post_runtime_resume -EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0x1860d873 s390_sha_final -EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0x23b377e3 s390_sha_update -EXPORT_SYMBOL_GPL crypto/af_alg 0x2721a6ff af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x6c281769 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x6ea9fdee af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x7e35567d af_alg_complete -EXPORT_SYMBOL_GPL crypto/af_alg 0x8cffee35 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xa544b18e af_alg_wait_for_completion -EXPORT_SYMBOL_GPL crypto/af_alg 0xb2694eb8 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xbe29cb20 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xed16bde1 af_alg_link_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xf42f096b af_alg_cmsg_send -EXPORT_SYMBOL_GPL crypto/af_alg 0xff00ba2c af_alg_register_type -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xfed41312 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x8f025a36 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xa15434e2 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x04c23e45 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xab54fd8f async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd09de9f7 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf0c79615 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf7a32e6d async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x353f02fe async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x934e2111 async_xor -EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xcb0a9bda blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xcf39b348 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xc7123f2c cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 -EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 -EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 -EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x30ffb1f9 crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x9e2418bc crypto_chacha20_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x1414064a cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x16b595a3 cryptd_free_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x281a56c6 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x5b475fcf cryptd_alloc_ablkcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x6cd87829 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x97b789ae cryptd_ablkcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x9ab6e104 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xcc5328c5 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xd3f49c1a cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xe0b72665 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey -EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table -EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table -EXPORT_SYMBOL_GPL crypto/lrw 0xf91f7dfb lrw_crypt -EXPORT_SYMBOL_GPL crypto/mcryptd 0x0a46aa66 mcryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/mcryptd 0x1542f707 shash_ahash_mcryptd_digest -EXPORT_SYMBOL_GPL crypto/mcryptd 0x50ac428a shash_ahash_mcryptd_final -EXPORT_SYMBOL_GPL crypto/mcryptd 0x75facbf3 mcryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher -EXPORT_SYMBOL_GPL crypto/mcryptd 0x8f6406a0 mcryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/mcryptd 0x9b9ed24b shash_ahash_mcryptd_finup -EXPORT_SYMBOL_GPL crypto/mcryptd 0xae869883 mcryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/mcryptd 0xce1f7521 shash_ahash_mcryptd_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x7d339e4d crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xb03a8cf9 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xd6f3d2ca crypto_poly1305_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xe424caa9 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x089e9cf3 serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0x02251892 twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey -EXPORT_SYMBOL_GPL crypto/xts 0x7802995d xts_crypt -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0862cd67 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5499ac8c fpga_mgr_buf_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x77511bdc fpga_mgr_firmware_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7d01786a fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbc5e8868 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc3f67f46 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3c2581c6 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x489df08c intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x712cb408 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7a7dc0a5 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x850a05f8 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb08d5246 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc57d2129 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x609ef96e stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x62de2bf7 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xba293a2e stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xbdf955d9 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xea5bbc7a stm_source_write -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00472318 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x01d3b9ec __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x04698e56 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x13de3a79 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17951453 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25e0e29d __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e196d5e __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x40eb8ce7 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x480d259c __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x50f963e8 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5de357e7 __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x734e256b __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x76478393 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7b3bd777 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7dc83a0f __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x99e96e83 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1ee0faa __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa20d04ab __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa5fc5b3c __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7aae64e __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa8749832 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xae6f41b8 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaffc6d0d __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7de1e4f __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd0e0d4c5 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4c1f373 __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd5c4d672 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe08585f9 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe55e9c32 __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7cf2aa7 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfdc6ed3a __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x45541abb dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x62a0b12d dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9d3b32fb dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb34b01cc dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc7c5e447 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdff8470b dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe6848962 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf7823f4a dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfb6ca461 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd2557cf9 dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3989d955 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x717a5428 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x810bdb1a dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa84e8f97 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xaa1d6861 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xfa0510a0 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xfb5a9bbb dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x67bd78b7 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x97b0cd74 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3fd98372 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x91851043 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xac5fa86e dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb0584a90 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb1e02c9e dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xdb1d136d dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x07c4a1ea dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32350144 dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x67660b4e dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x80afbcf5 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8605e0ec dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8c195a05 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98925a60 dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa7e46220 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd22f0a90 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe118796a dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe2d7194c dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00536a22 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01ebe639 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02b5cfc6 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0955fa79 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c1893e6 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d857718 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dcb2571 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ebf2703 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x104b5b73 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x127cd166 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14ffc619 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15daaa2c mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a278230 mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d71f589 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e43a1c8 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21393c91 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x214126a9 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x253c2ebe mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2738608b mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29049408 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b42ee20 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30eaa7fd mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33a254d5 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33cb85dc mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x359945f9 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36b8fa0e mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36ddbcc0 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x370eac8f mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ae4baa3 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c5d68b2 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c7faf1c mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3de9e37e mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ef86395 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40f98039 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x415a3b68 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4283da07 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45f170f8 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49841e03 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c2a807f mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f1a136c mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5265791b mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58e30eea mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d1c6d91 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ea1fbaa mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ef0ea55 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f33fdcd mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f4955cb mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6030222c mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6289f2cb mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6735d15b mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x679f4112 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69b37d04 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a40c7bb __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dc1ecf7 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ec60bdd mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ef3df77 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7035a384 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x707c0fe0 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7154f688 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71a146bd mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x782f72da mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78b1f991 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79539e08 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a189edc mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ab165fe mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d19e5f2 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x830cb9aa mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x853f2727 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ba49ae5 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91a15116 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94976434 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94aae54a mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94d36f3d mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98e54bbe mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9980d9be mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a6bcef9 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d53a38d mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f50d891 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8dd6c68 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac878d7e mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadb87d84 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5916c1b mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5bbd8f2 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb62f3690 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb705e914 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb93b7b44 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba2cab80 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe4dfdab mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc072296a mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc398d079 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca8a6b0e mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd24d089 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd65615a mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf3e6242 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf66b8a5 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd27640a0 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2a9aa43 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd859c8de mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd928c304 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9ad5807 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda57306c mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbb543cb mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf870200 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe170ccc1 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe18f7d09 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe370c3e0 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4e370f2 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe676d03e mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe84b86b5 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea20a9e6 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefe93426 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0a6b472 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1c2cf94 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf279a5e2 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2d0667a mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3e16b87 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4a1a27d mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4f9c74b mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf99064dc mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfca5795d mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe10b1aa mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe4f90b0 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe644ef8 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff9ea074 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x004bd2d3 mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ed45468 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11a30885 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14b748c5 mlx5_query_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15dbddbf mlx5_query_port_proto_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1eafee4a mlx5_create_map_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x224d35c9 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x262af506 mlx5_query_vport_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f3e9462 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ffa45f9 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40793644 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4309a2ac mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d190faa mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51fe0c9b mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b83e6db mlx5_core_page_fault_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f2133eb mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c39bc41 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7030f0bb mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x753ed7e6 mlx5_core_mad_ifc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76a7ad5d mlx5_set_port_proto -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77b36d34 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bc67f70 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d95ffa8 mlx5_core_eq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8721a43d mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c92e070 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ffb1fe2 mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a147101 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d5edae1 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4305b6d mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6d1c06f mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa87ca1d1 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9a2d49e mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad00d7be mlx5_query_port_proto_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaeb3e0a3 mlx5_destroy_unmap_eq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5665652 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5984897 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd21f5d60 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3721fa6 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5693893 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd614c038 mlx5_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb291afa mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe19cbbcf mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe90e931e mlx5_query_port_proto_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5204432 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf86dca1d mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/geneve 0x7660c22e geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/geneve 0xe723be23 geneve_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x13ff1144 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6928c37e macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb6bc497d macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xbb5b59e0 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvtap 0x4bd3604b macvtap_get_socket -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1e0abe4a bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x47bbf033 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x52ef0e0d bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x594ca9ec bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x649b2ceb bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x668b82ba bcm_phy_enable_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x850af96e bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe22ff58d bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xed9a5c14 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xef2eda0a bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x1b7aa601 fixed_phy_register -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x1d5cb581 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x43d01fc1 fixed_phy_add -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0xab5a5de4 fixed_phy_del -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x3c5a0f36 devm_mdiobus_free -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x9765cc81 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x55d91522 vxlan_get_rx_port -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x688deff4 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0cb54155 dasd_free_block -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x19227556 dasd_nopav -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x262be846 dasd_device_remove_stop_bits -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x30412b0b dasd_generic_uc_handler -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x364f486c dasd_generic_set_offline -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x3744fec7 dasd_generic_last_path_gone -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x3b54687e dasd_device_set_stop_bits -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x53c26952 dasd_generic_remove -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x55c0d7e9 dasd_put_device_wake -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x59482d8a dasd_generic_set_online -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x627a037d dasd_get_sense -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x63ec8799 dasd_generic_read_dev_chars -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x69d607b5 dasd_generic_shutdown -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x6e749a8e dasd_flush_device_queue -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x7e8ecaa6 dasd_generic_notify -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x8608135f dasd_device_is_ro -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x91e8421e dasd_generic_probe -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x9327bf53 dasd_alloc_block -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xa690d8df dasd_generic_path_operational -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb38fe028 dasd_page_cache -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb828fe8f dasd_generic_handle_state_change -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xc13d2442 dasd_generic_pm_freeze -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xc5809988 dasd_generic_verify_path -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xc77990d1 dasd_wakeup_cb -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf15784f5 dasd_nofcx -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf56f3c63 dasd_generic_path_event -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf638d31a dasd_generic_restore_device -EXPORT_SYMBOL_GPL drivers/s390/cio/eadm_sch 0x24f2806e eadm_start_aob -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x40124521 qdio_get_ssqd_desc -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x45e7c295 do_QDIO -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x4cad0dbb qdio_activate -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x52d49616 qdio_alloc_buffers -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x73852c2c qdio_pnso_brinfo -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x8184dc41 qdio_reset_buffers -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x9c48fce2 qdio_allocate -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xa2fb3602 qdio_establish -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xc6755f2b qdio_release_aob -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xc8e3f47d qdio_free_buffers -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xcd4af5dd qdio_allocate_aob -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xfcddd4b2 qdio_free -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xff40b716 qdio_shutdown -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x020679cf qeth_release_buffer -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x025292fd qeth_device_attr_group -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x03b4ec9a qeth_dbf_longtext -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0b87173f qeth_query_setadapterparms -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0c247c38 qeth_clear_thread_running_bit -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x13b2875e qeth_set_rx_csum -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x17279e4c qeth_tx_timeout -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1abd5347 qeth_core_get_sset_count -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1adfb1c7 qeth_device_blkt_group -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x20137cb9 qeth_send_ipa_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2cd9e4cc qeth_core_header_cache -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x30f6b93f qeth_core_get_strings -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x31bfd549 qeth_set_allowed_threads -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x33d36438 qeth_send_startlan -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3bc46fa9 qeth_get_ipacmd_buffer -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3ee79eae IPA_PDU_HEADER -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x43bab789 qeth_card_hw_is_reachable -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x457bf43d qeth_hdr_chk_and_bounce -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x461b10ed qeth_check_qdio_errors -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x47f9e67e qeth_core_get_drvinfo -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4884f9fa qeth_hw_trap -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4b521a54 qeth_wq -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x50634b8e qeth_set_recovery_task -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x51e8d13c qeth_get_stats -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5467577c qeth_send_simple_setassparms -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x58fec7c9 qeth_print_status_message -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5bddad61 qeth_do_run_thread -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x620a5cf6 qeth_query_oat_command -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x668faad8 qeth_setadp_promisc_mode -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x67bf1cd2 qeth_configure_cq -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x77f08ba9 qeth_close_dev -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x78c20870 qeth_prepare_control_data -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7d8d3c74 qeth_trace_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x80159cf0 qeth_core_card_list -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x80515979 qeth_send_setassparms -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x815706b3 qeth_init_qdio_queues -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x83fb86bc qeth_setadpparms_change_macaddr -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x85603b5f qeth_clear_cmd_buffers -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x86c895e5 qeth_core_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x903cde35 qeth_snmp_command -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x96e65617 qeth_query_switch_attributes -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x99b9ef61 qeth_generic_devtype -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9a0cf2df qeth_clear_working_pool_list -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9faed2a6 qeth_wait_for_threads -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa441c826 qeth_wait_for_buffer -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa87789f8 qeth_clear_qdio_buffers -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa8a89d1e qeth_core_hardsetup_card -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa9e22e6d qeth_realloc_buffer_pool -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xad0f8e29 qeth_qdio_input_handler -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xaec88cc4 qeth_qdio_clear_card -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb2926fcc qeth_clear_thread_start_bit -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb3fa09b0 qeth_get_priority_queue -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbaf0d1ed qeth_get_elements_for_frags -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbcaa3eb9 qeth_dbf -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc6845d07 qeth_qdio_start_poll -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc82ca7f0 qeth_clear_ipacmd_list -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd2d7d510 qeth_set_access_ctrl_online -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd2dae937 qeth_do_send_packet -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xda4cacc2 qeth_core_ethtool_get_settings -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xdb26a92e qeth_send_control_data -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xdeed67e6 qeth_prepare_ipa_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xdf11f175 qeth_queue_input_buffer -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe30a27d6 qeth_start_ipa_tx_checksum -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe32a2347 qeth_get_elements_no -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe89d45e2 qeth_mdio_read -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xea01917f qeth_do_send_packet_fast -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xec53b4d0 qeth_threads_running -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf07e4058 qeth_core_get_next_skb -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf0ac2a70 qeth_change_mtu -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf31d0fd7 qeth_qdio_output_handler -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf3a562c1 qeth_query_ipassists -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf7dd93da qeth_schedule_recovery -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf9846026 qeth_clear_recovery_task -EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0x59150a7a qeth_l2_discipline -EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0x7faf8c7a qeth_bridgeport_query_ports -EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0xe9eed94c qeth_bridgeport_an_set -EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l3 0x6c427d05 qeth_l3_discipline -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x08d6b1c6 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x27a2d794 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3cb4b209 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3f0210e5 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x49c159d0 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x522b78ca fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x628bc0e3 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8309d257 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x90c035a2 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb92de854 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbe11131c fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc12fc72c fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc4d2663b fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdb13e3b6 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xea13eaec __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf77d9f2a fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x200047af iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x26dc15ed iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5ceb167f iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6b66a6d8 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa97e1157 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe15b8eb9 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01159874 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0a22915c __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x166adeb6 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19ea0890 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1aaf5c35 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x26bc3319 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2baf5565 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3249d260 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33f62ea9 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x341d33ca iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4ebda00b iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c30e1ca iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6440cada iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65d2bcff iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6a3164df iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6bcb283b iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6eba7e49 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7663e029 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x77d42deb iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x79a51aad iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x861e1f53 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8eb07edd iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f89e3c3 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94bfa86b iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94c84b1d iscsi_eh_target_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaed1f36b iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb23f7786 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb803d207 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xba85bd38 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6a46e42 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6f4109c iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce63f09d iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8401812 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8b2e7d7 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe94feb23 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xea534536 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed6d2fda iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf13a15d3 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf52036f0 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf98bcd92 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfacfc531 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd0282b6 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x00169ed4 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1778118c iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x220e0c25 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x293c45e1 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x54d7d008 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5d448f18 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5d600e15 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5f30d4cc iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x60a93f65 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x694640b5 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x77666b41 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x806542df iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x888ff0ed iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9e97364f iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaec534bc iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb5fe3f65 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf2a3984a iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x00f02512 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1e1991d4 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1f2c8a3a sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x24b64ce0 sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x28aaa27e sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3b164a32 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3d8501b9 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c6784d6 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b476527 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x63750eb3 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x783061b5 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x78bfe9c5 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x84f46aea sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x85d038a9 sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x90b2332a sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ca4a5c0 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa0bcd66d sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa9c8972e sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc2c31e34 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc6db25a8 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe8e5a795 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf451c64d sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf9bbaf2c sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04f077fb iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x058da8c7 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ca90e02 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x108e5df0 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x129e036f iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e874327 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e88fc48 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2f64d6a8 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3554321f iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3ad35427 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b2bc0e2 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x435c17e5 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x45a87810 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48ed6b84 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b79b5c6 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5baaa9fe iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x62c6ff35 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6728cdef iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ccfcb59 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d7614c1 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70cc6874 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x738b72c5 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7a071062 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8127237a iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85866f82 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x86eeba34 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90e56664 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xacd3cb9f iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaf78aa99 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb45a4b08 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc13feb5a iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd4ef0e3 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1604557 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5e221da iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdcdad0b2 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xded4368b iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2319879 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3afe4b0 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed6ee58f iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf56d85c1 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x12f35291 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x34c010cc sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4011cfa5 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x6047a7ce sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xf226fd49 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x11e7e625 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3d245b8b srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x557c2772 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6207e90a srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x96bf7435 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfe588b5f srp_rport_add -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x2c79b765 uart_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x70503e59 uart_insert_char -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xd8dd4c99 uart_handle_cts_change -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0e7cc95b vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x26f42631 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x65c35b1c vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbbf4653b vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc582480c vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xeabc1bcb vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x0371c1d2 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xcb2d8662 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0065af0d vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x025a4332 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x03a67f7c vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x068a3217 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0cf35cdb vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x145426ac vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x15acf27b vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x19385a85 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a7d28b0 vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x20cb2d8a vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x26aa0bd6 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2d3403f5 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3249854f vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x35245a90 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x44b5ad78 vhost_init_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4de957fb vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x563ecf9e vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x68ef83dc vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x68f5f315 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6d616b11 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x792252ca vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x976daa98 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9e732a7a vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9f51e826 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbb4ec529 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc59f2743 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcc3f86bb vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe1f1745a vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeb4c23b5 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf0c0f9bf vhost_poll_flush -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0ab5d952 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x5ca638ad dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcc89b8b1 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x056d44dc nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1d5b5225 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3f1a347c nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x43cba77a nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x592cc0ff lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x84af7fbf nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf38efefa nlmsvc_ops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0000f720 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08a28bb4 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08c72d58 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x095db76a nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a2d30d9 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bfd57b1 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0dd05d72 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ee9e213 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x135f765f nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1777ae35 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x194f9b76 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c4a377a nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d2681d2 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d8216df nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eae0594 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x268b40ff nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x268bd075 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a9ce7b9 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c78676b nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cee318c nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d9c33d5 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30a993c9 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x316870a7 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3173153c nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32200325 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x348c9834 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34e322c1 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37ffcf9f nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a01378a nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a5bf864 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b7136fd nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3baf5eb4 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3beac9b5 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c1eb51d unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d467d31 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e1f0c99 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4063124f nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42626321 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x443f60e7 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4afcc479 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c7272fe nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50a22585 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x520b54f4 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5507e1b0 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x556df551 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a64e1e2 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c88eb58 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e78464f nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5eb4b326 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f5d0d59 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x608a3bf0 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64b20a41 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x663d8bfd nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66582478 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x676acdc5 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6954954f nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69853864 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ee90ac1 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f542529 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7082c0d7 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71bd9cb2 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x744ed67a nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74b6b9e7 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76cd8bbe nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76dcca1a __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dc23096 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dfb1387 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84cd0bda nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88e8f15a nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b9eead2 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d58530f nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d919fcc nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8de5a0a4 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e168a82 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x914b8eb5 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9538fcd4 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9823d6db nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a565520 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d34b443 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dd08f9f alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e9e141a nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa51cee79 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa53d8496 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7f8d9b9 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8982822 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa34fbd8 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafeb0900 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb140519a nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1b54add nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5a2d40d nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb61921b7 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6df18d3 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb192259 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb5d5baf nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbf38586 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc983f2c nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbccc0bae nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd0a7561 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdb210bc nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf4e63c9 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf982f06 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc068285c nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3503292 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4e63bc8 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccc2f104 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd88ef31 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfa8ccb1 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd029d68a nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0b59a9d nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd29d4ad7 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3e381c5 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5189f57 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8ef5a1a nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd92a5c7f nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9ba65e2 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddc58461 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddf52677 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0be4611 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1582f7a nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef439b6b register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1ab8c0a nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8fea6b7 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb8518da nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc1aed3d nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcc958f3 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7cf704 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x4390456d nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04328568 _pnfs_return_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a453a55 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d4700b5 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10a17ca2 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x207eeb0f nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2cf437f0 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34806de8 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x382d1a00 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39457f8d nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44aa8561 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45a5e73d pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a88da49 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ae97afd pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x581a127a pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x581d9d75 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59366191 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x623e6d32 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64c7dd5c nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64d447d2 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6691ec4f __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67404759 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a6de81e pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ca4807f pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f059700 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x702c987e pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76f15e9a nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b71f34f nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d8f010b nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8be476d2 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93abfeea pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95702b24 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9dcb3c2c pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad385c96 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaea8f36e pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaebf671b pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8d1e852 nfs41_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbaf21b9b nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd941ccc pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3331772 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a0e9a8 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9be3d9a pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcde2996a pnfs_put_lseg_locked -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce05aa8c pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ce7c3b nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1d5fadb pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd21b4d53 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4b2c2ea nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6b19091 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda836ab1 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb522bd8 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc298f47 nfs40_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdff4e37c __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe15c88cb nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe98fe853 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb18a522 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebf92c4e pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf01d4538 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4b1ea7d nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf70466af nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9b70d0e pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc2e2a58 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfed678da pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x42d32334 locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x59a4fd5d opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x736f1ed3 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x9e535796 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe5bc5256 nfsacl_encode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x20725346 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2212b26c o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3b401ec7 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x521e0726 o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa2d41bd9 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa4b49608 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc8fbf546 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdee09195 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0f6efb61 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x463a1090 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5c9a70aa dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe3ee2191 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xec4d4835 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf3b307fd dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4b5677f2 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x81c60332 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcf7bf8b0 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x52f77986 torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0x9f108579 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup -EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL kernel/torture 0xfcb07384 _torture_create_kthread -EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0674000e notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x6376dbc6 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x18efd32f raid6_datap_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x391d9714 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xa51bfd9f raid6_2data_recov -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x096acf0d base_inv_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0ea96336 base_inv_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x23bf768a base_inv_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x28a031c0 base_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x5a14472f base_inv_old_false_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x71398562 base_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0x90ae1c4c base_old_true_key -EXPORT_SYMBOL_GPL lib/test_static_key_base 0xec4c111e base_false_key -EXPORT_SYMBOL_GPL net/802/garp 0x16b4618c garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x6519c5f3 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x7ee89a5a garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xbbaabe4b garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xe96e9f97 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xf9753713 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x119f0888 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x323f4906 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x9ea332f4 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xcad050c6 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xcc17e08d mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xf617014d mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/stp 0x3d1e1b0d stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xad182192 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0xd4624f6c p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0xfb14111c p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1f4a488d br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x53a03c69 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x88413181 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8a245682 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x93987741 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcbac4a3c br_deliver -EXPORT_SYMBOL_GPL net/bridge/bridge 0xdb025fe2 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe8c4f960 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x44c0d93b nft_bridge_ip6hdr_validate -EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x7cbc0010 nft_bridge_iphdr_validate -EXPORT_SYMBOL_GPL net/dccp/dccp 0x02ef187c dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a1f481d dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2e2fde92 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x329199db dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3a16c3d2 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d060c25 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d42655c dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x42db448b compat_dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ad4353e dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ee3715a dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4f148bbe dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x584f026e dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59054757 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x69c5eb57 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x76789ad8 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x82090db6 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x83b893a3 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x87f7388f dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x971c1603 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x998a9af2 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa3eb56ea dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa5f7c0ec dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa6f4a415 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa7be88d5 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaefba644 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1737bde compat_dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcb80a469 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd22e36ab dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdad89c28 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdc309380 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdd05abdd dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe14ffa38 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe48d959c dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3305595 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3c124e6 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf79d1da4 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3de7e47b dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x67d8c69d dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa0314e17 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa49255e9 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcf81185b dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe1d1d53d dccp_v4_send_check -EXPORT_SYMBOL_GPL net/ipv4/gre 0x51fb5c0c gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x8cf7fba1 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6791dac2 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6f5aef2b inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x918816ef inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9cffcadc inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd9a7b497 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf4362da4 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xdf04fad5 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1718da98 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x17b949e4 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1db0183b ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x21af8c60 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3d0ff7ba ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6101365f ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6b69bdcc ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x87639fde ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xabef5730 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb030bc5e ip_tunnel_delete_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb768a2d3 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd6cc8f76 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdc6666f4 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe71d35f6 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xee3882ea ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xc7bf6e78 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x9ac980e2 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xa3a45564 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x3d182c63 nf_nat_ipv4_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x7d551b91 nf_nat_ipv4_local_fn -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x7f560ef3 nf_nat_ipv4_in -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9ba2e180 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xc370a865 nf_nat_ipv4_out -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x71698b72 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2e4ab7b7 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4742c4fa nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x68c74168 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc198f955 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfa6da106 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xb080a466 nft_af_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3b17abc0 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7978f1fe tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8051ac02 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xaf3d0b65 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd5c8a740 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1403b49a udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x786b1abf setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x84890af6 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd7b94f5e udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1f808c49 ip6_tnl_dst_destroy -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4788f9f3 ip6_tnl_dst_get -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5d343bfa ip6_tnl_dst_reset -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x8df207a1 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9d9147df ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa6187df4 ip6_tnl_dst_set -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfffd2e34 ip6_tnl_dst_init -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x81ba878a udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xfc912951 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x0869c5e6 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x53189d60 nf_ct_frag6_consume_orig -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xe8d8adb0 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x7f5990a6 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x0cbe8a8e nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1e48a910 nf_nat_ipv6_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x278a132e nf_nat_ipv6_out -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x60175ba7 nf_nat_ipv6_in -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xf5125417 nf_nat_ipv6_local_fn -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xaba95392 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6dd9982c nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x86d13d77 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9894d6e8 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd4815518 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf8a0aa88 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xad7c97f0 nft_af_ipv6 -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1687efa5 l2tp_session_queue_purge -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x16a91266 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1fcf6aa7 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x22743aaf __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2bdcd3ce l2tp_tunnel_find_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2fdcdf77 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4e4c6347 l2tp_tunnel_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x50c60222 l2tp_tunnel_closeall -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x640b44ca l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x77de3c6d l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x98abb3dc l2tp_session_find_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa2d8a860 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xabb40ed8 l2tp_session_find -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb40efdbd l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb797b64e l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbbef5612 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xfa0b3f48 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0d7652ea mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x150a85e8 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x50ea169b mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x59391a0f nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x000a21da ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0192ff9b ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x034a9520 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b2310aa ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x19effa4c ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2af29e20 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x511284cf ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x59231c4e ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5da3ef81 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x76bc1f92 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9dc32136 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa860f92d ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb27f9e19 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbb4be395 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbd691717 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc4d8d687 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xefebd1e3 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0fbc8a46 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x89107116 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x92b624b8 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x938c052c unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08fac285 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09e330e9 __nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ddd182f nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ed05487 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11b42324 nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17d72999 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x193b2f7b __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b826113 nf_connlabel_match -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ebf1b01 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2167be11 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x220cb478 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x238241a6 nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24345fb1 nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24b48531 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27b85556 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c87ef3b nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2eea8ee1 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30711f43 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x348ebc7b nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34aae616 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3abfd7b2 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d25e5dd nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d4ed9b1 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4044527f nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4058d671 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b029371 __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f984bb2 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x51f2b2b0 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x557037dd nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a09d800 nf_connlabel_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a1497c6 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b5e2405 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d4b607c nf_ct_l3proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6056e20e nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6468c38a nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ada2ff8 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f56cac5 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7057450c nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x740dab2c nf_ct_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76713da0 nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a388cda nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b0541ce nf_ct_l4proto_pernet_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b362090 nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8730b610 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c7d0eac __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8cebd31b nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8eda50d0 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97243890 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5068ab0 nf_ct_l3proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaaa0460d nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab59af34 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4ab06d9 nf_ct_l4proto_pernet_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4f6122f seq_print_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb78c54a6 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd1af80f nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc26b5a97 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc39a08f2 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc48f4afc nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9e103ad nf_ct_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca0e98b3 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc988113 nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce4bb085 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd283b47b nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda625c7c nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb124fb3 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb53c92c nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc1b8933 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe16e2358 nf_ct_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4382e18 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4a5dd14 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8543efe nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe88d74c3 nf_ct_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb8f5933 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec982754 nfnetlink_parse_nat_setup_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed577781 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeeec428a nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2c94ca9 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf57c58f1 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc01b832 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc01d94f nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xff385cf9 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x42b9b015 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x7d7557d1 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x046cb6f9 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0d40e857 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x28bb0b91 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4eb6576b get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5dc5a466 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x646965fa set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x66ca1ee9 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7df2d645 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa33d388c set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb7fa807d nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xc59aef9d nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x35542e78 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3a913e57 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x65f3ad15 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6e62431e nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x549143c3 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xa5f4611a nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3d6d8b62 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5d299723 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x69d68a33 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa198df96 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd10a5cf6 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd26c54d9 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfb69f06f nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x722ae417 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xcea0ab15 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x4b044dc9 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xca5c8633 nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xdcc0b184 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xf68fc74d nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x02068ce0 nf_nat_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x09587612 nf_nat_l4proto_unique_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x10cd3761 nf_nat_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1aa02818 __nf_nat_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1b2f7af2 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4238e18f nf_nat_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9b5f5bd9 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa0b9d9d0 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb5575bd8 nf_nat_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x6dc7f281 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xf48ba12e nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0a2e3a0c synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa42fdd94 synproxy_tstamp_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x070405be nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x08f47f37 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x165aad88 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x31702f4e nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x33edecb1 nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x34ae7216 nft_unregister_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6b45a5ea nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7a639054 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7db2b2fc nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8cc05d64 nft_register_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x918251e2 nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x93028bf0 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa93cec11 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xca808c09 nft_unregister_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe1ae227f nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe24aca3a nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf642a7da nft_register_afinfo -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2468d3f1 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7f7f7e78 nfnetlink_alloc_skb -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x85d29b7f nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x86726aba nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xaeb95ebf nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcb33faa0 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe053ba68 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x074fc6a8 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x26bde3eb nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xdc869435 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x1e9f38ba nfulnl_log_packet -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x366f2d6a nft_masq_init -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x9abce655 nft_masq_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xb5915a11 nft_masq_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x1ea269aa nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x2c85950f nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x546ffbef nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xc7d4526e nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xf5538760 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xfa82eb17 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x12972809 nft_redir_init -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x55694b74 nft_redir_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xbd4bdec5 nft_redir_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc8fadb6a nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xfb862b41 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x012cc204 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0da896ec xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x19fdaf1a xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1e2a3f10 xt_hook_link -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1f2b3c62 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x238cc321 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3e14227f xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x45481884 xt_hook_unlink -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5801c8d1 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x656cbc45 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6d2fcb02 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7e2233b2 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7f9f252c xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x97137d37 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x980bcc51 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa146d21e xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcb82c458 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe04ebd10 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xef9e30b2 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf9323d52 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x7c470866 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xc0f395bf xt_rateest_put -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x053c538c ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x487b3d18 ovs_vport_receive -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6df19b1b ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x925d62dc __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x97fa0a61 ovs_vport_deferred_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa88a846c ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbba06879 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbcddc2d9 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcdf7675a ovs_netdev_detach_dev -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x1ad701ff rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x368ec3ac rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x431227df rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x4ebc9f5a rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x4f74b0a2 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x510c6d47 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x54c3aaf0 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x58406bbf rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x5f30e8e5 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x87c17c0c rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x8f68b749 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x98cb5c5f rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x9ac3362d rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x9ac489c9 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x9f071330 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xa5cfad71 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xab896815 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xadcad176 rds_page_copy_user -EXPORT_SYMBOL_GPL net/rds/rds 0xbe3d7a55 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xc25fb0ea rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xc2da8e38 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xd4445743 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xf75a3138 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xf862e28f rds_send_get_message -EXPORT_SYMBOL_GPL net/rds/rds 0xfde7910c rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x5bd810cc rxrpc_register_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x81026787 rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x6a545d54 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbd7206f2 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd9f2775d svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01ac394a xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0212879e xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06420d5d rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06661708 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0672eace xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07199310 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07897b12 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a546ab6 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b0e06f2 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b1a9af2 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b3ba466 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c334c65 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f9b43b1 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10463318 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x107a5522 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x114624ae rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1198a2c5 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x127322b4 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1341aaec rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x151fc682 cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x155934bc rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x174c5bf4 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x176571f4 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17a52c59 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18a3feb6 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x193c21a2 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a0dba75 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1aa91a86 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1af4daee xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ccf30a3 rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e456d68 rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ee3b6c3 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22582115 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x227c127c xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x228a8ec0 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x229067f5 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2392c8e5 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24543e88 rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28253a01 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29c6ecc0 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ad4a8eb _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ad5a021 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b62daf5 rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c734961 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e71e0a0 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ff8b15b svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3133e911 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a207af rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31ac3eb9 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3384f3e8 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x365031de rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36cdc1f9 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3817c9a3 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3beb8539 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bebabfa rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cabe7f4 sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e1f7ff2 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x413758b1 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4158819c xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43c4f935 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45299dd5 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4834d131 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48d4d88e rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4920f020 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49b88610 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c62b363 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x501046df cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5247a82f rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5494352f svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x566edc9c rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5880f0a9 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58ffba15 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59fcb7b5 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a6750b8 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd397e1 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d34b023 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e0acd04 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fb419d9 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fc2fb00 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6057f87e rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6624fbf5 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ba6dac cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66d22b95 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66e356ff svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66fa6fcb xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6779dccc sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b90ddae rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6be74636 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c310230 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e522a68 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fd29c47 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fdb9ce8 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72dbf1ee rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74263767 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76de987c rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79ea639f svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b61fef0 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b950c17 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b9e6b8a rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cc6c6f4 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80a3aee6 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82c60273 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8474d6d3 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87852b11 xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x880d17d4 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88e42e37 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89c54d44 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bfec61f rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d5d406c rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ee5db76 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f52dc51 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fd420aa svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x900acbaa csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9016019d xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90db2642 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9181b5fd rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93261ea9 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9472e08a rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9496eeca rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x950d9419 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95be5a2d svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95d14a6f svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x966159e6 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96e06821 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x971ccab8 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9af4b678 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c803b38 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c96feac rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d2ad5b4 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d7f5582 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9debc844 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f82e0a0 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1e3bd8c svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3d7c0ef rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa40f3cf6 rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa65a453f xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8f49f27 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa996679a xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac4f3f42 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaca4a198 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaee515e7 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1822f7a svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51836fa svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb629eeb4 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6ecb028 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb77e3e10 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb80e6ad0 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaf32c84 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc3514e3 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbca9bcb1 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe081441 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe3ba964 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe877145 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe9c47b7 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf20965c put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc043cb18 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc077674c svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc429e613 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4d0c6e3 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4ffefdd rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc62f809b rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc67fdc36 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcda18864 xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0996f26 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd15a3b93 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2a9cd64 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2d9b2e8 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd44feb80 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd504f3a0 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5d4b854 cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd798026d rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd89794ca xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd973d11c rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc570343 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd0baf5f rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde6ac468 rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe01c4524 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe03d25fe xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2c4f5fb rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3582588 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe36856b2 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5567a30 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5e0aa45 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9732232 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe99005e8 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea3f6d0d rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea4a1cc5 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaf06d9d xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb6a82e5 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeece8b3d xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf062ef7e svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2631a66 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6bc1561 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7fef27d bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9f4767a xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa6c99f8 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb6e267f sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc7350c8 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd281641 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0964965e vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0df752f0 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1216496c __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1cf216b8 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2c488cd5 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x31fc5a1a __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6873618f vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8a7cc66d vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa0c178e5 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa4d4d015 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb402d3e9 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbffe3e12 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe83b1ade vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf388a7dd vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x47a67b2e ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x76ce5412 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb377ea49 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xdf7211eb ipcomp_input -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x0057767d __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x009a9810 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x009c8b17 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x00b783a9 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x00c69c66 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x00ed1cc3 blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x013de121 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x01413c5f css_schedule_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x01e29e08 rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0x0213cf11 filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0x02280e94 crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x0234e085 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x0238f8dd blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x0290c656 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x02931659 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x02c8ff55 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x02ebef25 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x02f90aa7 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x0314bb9a bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0x0319411e alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x031b3287 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x03b91591 x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x03d686c1 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x03df99c6 kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x03ef48bb dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x04052950 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x04200511 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x042bbbd0 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x0432b3d9 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x04570ae5 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x04969885 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x04c3025f sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x04c340e7 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04ea8706 __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x04f209d6 pci_proc_domain -EXPORT_SYMBOL_GPL vmlinux 0x050e3da7 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x050f801a xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x05450e6b skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05639f9d ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x0582cf07 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x060bd064 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x061b483d kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x06552b3e attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0658097f net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x066c412d crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x06a7d521 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x06da6524 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x07086d07 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x074bc5ea aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x075d993f tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x075f3373 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x079ae141 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07d77425 pm_complete_with_resume_check -EXPORT_SYMBOL_GPL vmlinux 0x07da1878 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x0800fb65 nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0x080c90a4 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x0864cd16 zpci_disable_device -EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec -EXPORT_SYMBOL_GPL vmlinux 0x08d7578a shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x08dd1a1b pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x08df8135 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x08f6cca4 css_general_characteristics -EXPORT_SYMBOL_GPL vmlinux 0x091dec23 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x095cc117 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x097d9c3b kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0x09b0a219 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x09cbfd4a blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0x09ce9200 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x09d1a161 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x09e5b62f exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x0a5f478a md_is_badblock -EXPORT_SYMBOL_GPL vmlinux 0x0a7d2452 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x0a81472b blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x0a90555c restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x0aa8b623 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x0aac0e49 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x0ae24367 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0bbd3b param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x0b594bba posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x0b64816e pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x0b74f9b4 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0b7f5eeb ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x0b83379c __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x0bc0c768 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0bd178f5 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x0bedb218 mmu_notifier_unregister_no_release -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c0c4b07 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x0c0f8387 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x0c1d62e5 gmap_enable -EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x0c3c6539 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x0c3d4dbb crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x0c461669 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x0c6db451 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x0cb60006 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x0ceb2208 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x0d3e9335 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d685afe devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0d84b425 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x0d9f51be tpm2_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x0dbde2b1 blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0dfdb908 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x0e204153 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x0e72a8f5 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x0eac83d3 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x0eb2b8ec class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x0f0f55c3 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x0f196247 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0f3f9d3d sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x0f910e2a get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x0f9c22d5 crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x0fe40d1e __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x101d9c37 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x10339722 zpci_iomap_start -EXPORT_SYMBOL_GPL vmlinux 0x106cb4cf dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x10861901 bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x10b2856b rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x119af014 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x11ac33f1 blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x127e26b4 device_register -EXPORT_SYMBOL_GPL vmlinux 0x129e4793 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x12dd19c7 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x12ec01d6 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x12ee959e napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x13236f86 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x13385989 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x134f1eb6 device_create -EXPORT_SYMBOL_GPL vmlinux 0x135cdbcf fuse_get_req_for_background -EXPORT_SYMBOL_GPL vmlinux 0x13679f6a cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x13bd9d2d crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0x13eb1d1b disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x13f358f1 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x13f6469e pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x1429c94e n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x144709ea dax_fault -EXPORT_SYMBOL_GPL vmlinux 0x145879c3 pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x1473d561 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x14a724b6 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x14afb745 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x152f8b5a fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0x1559980e device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x156af14b xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x157bc422 s390_enable_skey -EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x15c43555 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x161edc82 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x1623a790 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x163839c8 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x163cf377 kvm_init -EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x16593c85 tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x169dfc50 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x16b671f3 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x16c69147 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x16df1c2c devres_add -EXPORT_SYMBOL_GPL vmlinux 0x16fd6aca device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x17096b9d init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x17468867 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online -EXPORT_SYMBOL_GPL vmlinux 0x17a70358 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x17cb937b device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x17d8aab7 default_iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x17df9296 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x1827ec86 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x1853ac0f nl_table -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x18a27eee transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x18b664fc public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x18c6aec2 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x1907179b pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x19403f1c blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x1940d43d kvm_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x19440b07 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x19663dbc subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x199792af hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x19a2f57e dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x19ef4098 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a40c06c crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x1a53f835 vtime_account_irq_enter -EXPORT_SYMBOL_GPL vmlinux 0x1a910591 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x1a9b259c vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x1aac02fd tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing -EXPORT_SYMBOL_GPL vmlinux 0x1ae42dea handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x1afc29b9 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x1b09d039 xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0x1b20445b handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x1b2345ef register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x1b26f4fb dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x1b6c5a67 chsc_error_from_response -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1bc2b6f9 bio_clone_mddev -EXPORT_SYMBOL_GPL vmlinux 0x1bfb482f pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x1c295966 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5be59a __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1c851780 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c94f62d crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x1cf32702 bpf_prog_get -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d785ec5 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x1d7bb99c pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x1dc8650a pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x1deff20a gmap_register_ipte_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e0bd083 seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0x1e43a74f kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e5dd1aa virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e863a5b mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x1e95208e inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x1e9b62d4 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x1eb1689b irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x1eb35238 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ee619fe pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x1f186916 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x1f1a1a54 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x1f30805c bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x1f37e86c device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1fa4bcc0 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x1fa67991 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x1fa8adf4 kvm_get_dirty_log -EXPORT_SYMBOL_GPL vmlinux 0x1fb2e686 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x1fbe77d4 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x200356d0 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x200f2b4e part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0x20240476 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x20534bed tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x207f0b43 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x20bf67ae inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x20cafbee evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL vmlinux 0x213d9be3 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x213ec619 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x21695b9d crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x21870f24 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x221943b9 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x223d908a trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x224d489f ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x228c002b sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x228e47e6 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x22b7c219 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x22cd01c7 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x22dfe9ad __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0x22e20b10 chsc_siosl -EXPORT_SYMBOL_GPL vmlinux 0x22f67ce2 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x2311b91e crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x233169c0 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x23334621 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x233f5316 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x236d8b6f kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x237d59f6 zpci_load -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238d4bae fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x23b0e9f5 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x23c8b358 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x23cc9719 blkg_prfill_stat -EXPORT_SYMBOL_GPL vmlinux 0x23d66b32 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x23df4f34 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x23f5c1a4 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x23f71339 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x23f92ab7 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x241bfd9f zpci_store_block -EXPORT_SYMBOL_GPL vmlinux 0x2425fcaf vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0x2454cf5c __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x24559e0a crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x2462d2e7 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x24c6beee nr_iowait -EXPORT_SYMBOL_GPL vmlinux 0x250eef70 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x259c54ac find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x25a5fa4b get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x2607a61d css_chsc_characteristics -EXPORT_SYMBOL_GPL vmlinux 0x261dd5e3 raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x263875f4 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x2669f4b8 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x26c58a75 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26e6dedf PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x26e9b78c __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x2718ce75 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x27dcdada ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x27fccfad register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x2816b333 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x281a45e4 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x288766a4 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x289ca20b ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x28bae415 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x28d5d9b5 percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0x28dbccc2 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x28e4c278 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x294cfd37 css_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x29a4a47b debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x2a054d2f pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x2a1538ca lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x2a453a71 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x2a64dd62 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a74d6b0 klist_next -EXPORT_SYMBOL_GPL vmlinux 0x2a7632af unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x2a81e7e4 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x2ab14d68 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x2ab61caf pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x2ad5231e ccw_device_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x2afcb2ed virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x2b2869e3 pci_debug_err_id -EXPORT_SYMBOL_GPL vmlinux 0x2b5fe8ec wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x2b6e0627 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x2b94e719 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x2bacef0b __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x2bad91fe ipl_info -EXPORT_SYMBOL_GPL vmlinux 0x2badd318 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x2bcded49 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x2bfcbe5e kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL vmlinux 0x2c10fa39 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x2c13e426 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2c28cfdb klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c420fec dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x2c44e942 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x2c834cd8 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x2cc8dda1 crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2cdc04d9 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2d0dc49f tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d2c49c2 security_kernel_fw_from_file -EXPORT_SYMBOL_GPL vmlinux 0x2d37c8d5 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d4955c2 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x2d8537ba device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x2df1ba0d memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x2e1d43cf lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e47b7fd fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2e49a808 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x2e9e05a4 __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0x2eb79d74 kvm_io_bus_write -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec35a8c tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x2ec92012 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x2ef1e7d6 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x2ef71eeb flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x2efa875e scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x2f0e06e3 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x2f18d2ec nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f9ea1da bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x2fa6269f fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x2fcb34c5 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x2fe62fef skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x303d036d __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x3045d3a2 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x306842c9 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x306a15a2 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x30cfdb08 devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x310d8534 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0x3112965c crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x313189c3 rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x313f049c blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x3171d611 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x317c1820 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0x318920f6 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x31a54b27 s390_reset_cmma -EXPORT_SYMBOL_GPL vmlinux 0x31b5b4b3 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x31d42cab key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x31e29c23 blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval -EXPORT_SYMBOL_GPL vmlinux 0x3257456c pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0x329ab260 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x329f3b16 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x329f4b3f tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32e824ba __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x3302c720 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x330b27f8 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x33618161 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x33996da2 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x33c4535e device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x33f62439 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x34121f64 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x341584a4 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x3460075f ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get -EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x34b1c3bb rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x34d07868 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x34da89fc pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x34dfb4fd relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x34e7313f component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0x34eaf807 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x3554a7b9 pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x356750d7 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3577bd1d scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x3591c275 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x35996ff4 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x35c90364 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x35f69dc3 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x3623f3a2 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36b3fc96 gmap_unmap_segment -EXPORT_SYMBOL_GPL vmlinux 0x36bb0f76 kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x36d9d370 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x3714721e nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x372f3459 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x373d4cc1 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x375116d1 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x379d6235 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x37c049ab blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x37ceea7b perf_trace_buf_prepare -EXPORT_SYMBOL_GPL vmlinux 0x37d0a334 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x380945aa __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x38274b4f uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3838d887 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x3875d342 wait_for_tpm_stat -EXPORT_SYMBOL_GPL vmlinux 0x38a33254 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x38d3dd57 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x38eee051 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x390161b3 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x39082563 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x390d1d9b tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x391d5504 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x393ffa6f asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x397ae869 klp_enable_patch -EXPORT_SYMBOL_GPL vmlinux 0x39a27a3b system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x3a01f208 crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aaa68e0 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x3ac3023b __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x3b15fd18 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x3b17473f class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3b194816 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x3b352756 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x3b52e390 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x3b8794fd __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x3ba5062a platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x3bb54291 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x3bd26425 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x3bd3bece __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x3bfb53c4 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x3c10b6c4 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3c1d859a __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x3c5b5e00 __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x3c8d4cae fuse_put_request -EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x3c998500 pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x3c9c41b7 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x3ca7a39d s390_dma_ops -EXPORT_SYMBOL_GPL vmlinux 0x3cab30de bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3d287dc7 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d41d986 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x3d57d6d2 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x3d6d6eed pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x3d7d71ef page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x3d8756b2 __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3dac8a02 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x3dce402e devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x3dce81bd tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd75977 page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3df1e7ff find_module -EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e84d467 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3e8deec2 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x3e948de9 unregister_reset_call -EXPORT_SYMBOL_GPL vmlinux 0x3e9e6031 blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x3eb38a31 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x3eb5c682 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x3ed2959c class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3f07f079 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x3f09f201 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x3f4c5dd1 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x3f63f16f ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x3f70eaf7 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x3f7d6e98 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x3fd2f6fb chsc_sadc -EXPORT_SYMBOL_GPL vmlinux 0x3fda5752 scm_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x3fe2e9d2 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x3fe8415a ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x40055530 wakeup_source_drop -EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0x405f6a0c dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x406d40e6 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x40933a15 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x40c5d642 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x410ba8e2 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4157e5a7 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x415beec0 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x416ab8b7 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x418d2fcf pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x41a9d652 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x41b83a86 __remove_pages -EXPORT_SYMBOL_GPL vmlinux 0x41bbadf4 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x41de34fd nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x41e73178 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x4204f7e2 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x421c11b0 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x4223ee4b zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x42458954 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x42610e0a device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42f10af0 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x4329a51f crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x43443c35 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x435f4999 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x436b1b91 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x4385360c dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x43c33665 isc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43c8a5b1 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x43d3145f iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x43eca819 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x441d8544 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x44341f94 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x44648f37 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44e1696b aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x44eb3994 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x4521356b tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0x453ac28e cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x45608385 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x456cab38 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45958c10 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x45960716 __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x45a81a1a free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x45c8645f device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x45c86e70 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x46017d7f md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x460773d1 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x4676b143 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4690f4e9 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x46a7d7e3 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x46ded05b __online_page_increment_counters -EXPORT_SYMBOL_GPL vmlinux 0x470b75a3 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x47440d2f __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x474d8bb3 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4774d24c sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x47850013 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47b87333 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x47bb8173 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x47d2bb61 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x482d5c88 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0x48842859 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x4888f2f7 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x48c545ea debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x48c62e4a eventfd_ctx_read -EXPORT_SYMBOL_GPL vmlinux 0x48cb28fb register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x48d5e895 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x48e8651b md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x48f44f93 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x4909f3de device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x492df048 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x49377ebf pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x495c3e5e md_stop -EXPORT_SYMBOL_GPL vmlinux 0x49636338 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x4984e564 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49abfd03 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0x49b3bcde raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x49cfacf1 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x49e18a39 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4a07af99 tpm2_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4a4e0681 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4a5a44b1 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x4a6538df hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x4a95468d clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x4aa23cc8 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4abc1779 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x4abe26d1 md_ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x4ad990ef class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x4af7b130 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x4b18565b static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x4b1bc5c6 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x4b292de4 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x4b2f68e7 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x4b3e319f subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x4b840dfd probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x4b91becc device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x4b9660ef __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4bc3ddcb scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x4bc99708 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x4bd86b5e platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x4bf1cf5b list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4c33b61d bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c641204 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4c94df4e rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x4ca2c345 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d1a9c00 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x4d5230a8 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x4d7c3e0d __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x4d8d51ba apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e25e79d crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x4e2b916f dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0x4e340ad6 zpci_stop_device -EXPORT_SYMBOL_GPL vmlinux 0x4e8b48cf kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x4ec153c6 nr_running -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x4f415bc0 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x4f48970b add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f9bc0ab hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x4fc539b5 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ff5f3e4 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x5048ae4c put_device -EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory -EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50abc2d4 kvm_vcpu_block -EXPORT_SYMBOL_GPL vmlinux 0x50b293e3 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x50c44f70 virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0x50c99e3f gmap_discard -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x5157d77f __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x51663cd9 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x51a1992e iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x51b998d1 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x52483557 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x5265c326 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x52a0f61b crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x52b870c1 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x52c0bf53 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x52ef6951 __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x52f41598 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x5324d04f bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x5364b915 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x537b24f7 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x537f1c64 component_master_add -EXPORT_SYMBOL_GPL vmlinux 0x539ca2b1 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x53a2ef73 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x53d3a3b8 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54a871ba fuse_get_req -EXPORT_SYMBOL_GPL vmlinux 0x54bdc8f7 appldata_register_ops -EXPORT_SYMBOL_GPL vmlinux 0x54dc87e5 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x54ef3d03 ioremap_page_range -EXPORT_SYMBOL_GPL vmlinux 0x54f4100f gmap_unregister_ipte_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5520ac2b sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x552904af unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x553ea6fb kvm_vcpu_init -EXPORT_SYMBOL_GPL vmlinux 0x555ae3b4 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x559d67c0 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x55d4543c scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0x55e9bc87 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x55ed8ace sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f2580b __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x55fe98f9 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x560e23d4 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x56586c49 pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x56897dfb __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x56a83586 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x56c0a2d5 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56d82100 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x571528f6 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x571bc21e fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x57303478 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x573b1fe1 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x577a3ccf class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x579031d4 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a55fa8 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x57b89909 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x57ecb77a fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x5801e49a ccw_device_siosl -EXPORT_SYMBOL_GPL vmlinux 0x58053723 md_run -EXPORT_SYMBOL_GPL vmlinux 0x58064f85 mmput -EXPORT_SYMBOL_GPL vmlinux 0x58220916 rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x587424e7 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x5900eeba kvm_vcpu_uninit -EXPORT_SYMBOL_GPL vmlinux 0x5911ece8 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x59473a81 chp_get_sch_opm -EXPORT_SYMBOL_GPL vmlinux 0x59bdb9d6 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x59dde3f1 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59f2b804 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x59f8aea1 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x59fe6f18 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x5a48d7f8 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a54476a crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x5a5ec9d9 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x5a6c36c6 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5aaf8777 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x5abccfca unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x5ac2727f smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x5b9f4728 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bdde282 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x5be9366b perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x5c2f2906 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x5c61ebe2 rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x5c6e9ba0 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x5c71d21a sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x5ca17bf5 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5cad4937 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x5ce64ec1 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x5cfcf452 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x5d4cd952 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x5d7c78fd pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x5d873027 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x5d8e25d1 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x5d9adee0 blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0x5d9c1260 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x5d9d51da ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x5da55ac2 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x5da5d43b component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dd2c15c raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x5e0c0d2c fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x5e1c9f94 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x5e313b1a hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x5e3a50d1 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5e3c12ab security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x5e4ab9d6 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x5e5353fd __put_net -EXPORT_SYMBOL_GPL vmlinux 0x5e697d42 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x5e743509 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x5e797e6b platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x5f34c4d3 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x5f5a6fd0 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5f680070 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5f6e79df inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x5f838a41 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x5fc0fe40 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x601078cc tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x60720f6c smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x607ee259 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x6090dbef klist_init -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60c95db0 static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x60d0b1fd anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x60d14dc2 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x613305ba dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x614ecf3c inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x6169cfc2 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x6178dc6a sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x61a97e5f register_reset_call -EXPORT_SYMBOL_GPL vmlinux 0x61cd4f59 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x61d59b87 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x61f029f7 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x62c12180 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x6330f404 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x63352eea preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6375c267 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x63a48edf ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x63cdfb5b sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x63cfc3d6 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x63e81525 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x63f4dc09 bprintf -EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x642f4251 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x645d3111 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x64664d80 pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x64892b7a sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x64aa2cde pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x64ccecfa fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x656eec3f task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x65ba8a4b sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65d84dec rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x65e744df sched_clock_base_cc -EXPORT_SYMBOL_GPL vmlinux 0x6613e8bf rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x6614322c fuse_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6619a388 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6619a745 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x663d1281 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x66426c3d pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x66696252 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x666fde97 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x66766ad0 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0x66a25234 chsc_ssqd -EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x66ca8e8d debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66f53983 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x671de493 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x67735b61 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67b45983 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x67ecc015 ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0x68027296 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x68175039 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x68324a41 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x689b953e subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x6918ea6f devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x698288f7 dax_clear_blocks -EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x699b326b scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x6a785950 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a8ab1d2 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x6ac01ba0 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x6ae9f0cc xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x6aece509 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0x6b852374 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x6b8b2125 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0x6ba36325 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x6bb2b48f pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x6bc7c12d mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x6be5162c freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6beaf81a component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x6c11934f kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x6c12e8ae pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x6c635363 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x6c7d49a0 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x6ca2062d device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6d204fd2 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d37be97 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x6d6f0e21 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x6deaac8f pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x6e0d82f6 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x6e685498 kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0x6e722741 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x6e7298db put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e920a33 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x6ef60373 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x6eff28bd pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x6f0196cc digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x6f695e87 __gmap_zap -EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x6f821920 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x6fa8d6ec sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x6fed2817 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x70614e7a component_del -EXPORT_SYMBOL_GPL vmlinux 0x70625812 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x707ca312 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x70b85c27 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70f32051 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71743e1e device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x717a322a blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0x718e48b1 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x71e8302d fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x720fd260 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x72233218 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x72e2c605 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x72e4f9c2 __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x731721e5 split_page -EXPORT_SYMBOL_GPL vmlinux 0x735daf24 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x738c092a module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x73aa0a8e netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x73af2da4 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x73bc8715 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x74194dd6 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier -EXPORT_SYMBOL_GPL vmlinux 0x746a993f bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x7474e21f pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x74937272 unregister_jprobes -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x752a06b5 gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x752a273d dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x7544c06b tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x7561d70b crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x757845e9 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x75a4cc0f crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x75a849c0 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x75c9f975 gmap_free -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75dbb332 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x76085d57 vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0x7614c62d crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0x76278945 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x76436cf8 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x76596baf blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x7677fc6b css_sched_sch_todo -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76e06795 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x7717e715 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x771908ea scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x77391eb2 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x777237ce __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x779845c4 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x77b669a2 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x77bac45a pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x77c6076d bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x780f26d4 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x781505d9 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x78251bf7 __add_pages -EXPORT_SYMBOL_GPL vmlinux 0x7834dcd6 vtime_account_system -EXPORT_SYMBOL_GPL vmlinux 0x784b57fe ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x78a329a9 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x78eb657c skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0x79308a0a tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x79732208 blkg_stat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x79cb43ee tpm2_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x79d66a3c request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e2359e securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x79fb78a5 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x7a16c644 user_read -EXPORT_SYMBOL_GPL vmlinux 0x7a2d9553 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x7a75f7ca kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x7af9c636 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7b301d76 __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x7b3bdd5b tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x7b9becd3 pci_debug_msg_id -EXPORT_SYMBOL_GPL vmlinux 0x7bea20f1 virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0x7c2a9869 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x7c728e5e mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x7c75ba97 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x7c85d14c wbc_account_io -EXPORT_SYMBOL_GPL vmlinux 0x7c88687e tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x7c8e7c17 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x7c9158b8 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7d4d19fa devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x7d509371 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x7d58f22f pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d6320ea __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x7d6b9e69 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x7d72a346 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x7d86ab7d scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de1919b trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x7e059417 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x7e6d29a1 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x7eb5a5a1 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7ed4e43b posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f9157f4 use_mm -EXPORT_SYMBOL_GPL vmlinux 0x7f95f2fc klp_disable_patch -EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x8081b7b6 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x8082b64d device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x812015ba __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x8128a78b hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x8144bb3d pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8156016f dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x815853b6 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x817eb233 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x81afb023 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x81f5251a shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x8220d788 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x829ed5f9 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x82d070d6 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x834f573f trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x835f46ac __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x836fc55e driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x837db219 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x838b2ddc crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0x838e273b mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x83b0816e __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x83bd4bd7 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x840c9180 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x841c9e40 ref_module -EXPORT_SYMBOL_GPL vmlinux 0x8428c7c1 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x8431e55e __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x84326a22 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x84a7632e dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x84c6cc1f blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8551362e device_add -EXPORT_SYMBOL_GPL vmlinux 0x858baf91 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x85a16e0a device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x85eb2600 get_ccwdev_by_dev_id -EXPORT_SYMBOL_GPL vmlinux 0x86055213 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x860f5a60 __module_address -EXPORT_SYMBOL_GPL vmlinux 0x86189582 posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x861c4ad7 percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0x863ca66e disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x864a5122 kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868f99fb crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x86ad5932 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x86bee6ee fuse_request_send -EXPORT_SYMBOL_GPL vmlinux 0x86c18440 zpci_store -EXPORT_SYMBOL_GPL vmlinux 0x86e1d1f2 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x86ed23e5 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x86f32c68 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu -EXPORT_SYMBOL_GPL vmlinux 0x87a7b092 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x87ceb397 hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x87ebda32 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x880a5186 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x8854341a fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x8855f138 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x885985d0 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x887019e3 kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0x887121c6 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x88838bc7 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x889001c6 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x88c402f9 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x891dc56c crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x89568562 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x895c46ce alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x89b69e80 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x89cf2efd bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x89dda8be skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x89f908c5 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x8a12a0d1 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x8a2692bc bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x8a608f13 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x8a91d1aa shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x8aab5511 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ae94d33 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x8aefc666 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x8b0970ed virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x8b3e452d gmap_do_ipte_notify -EXPORT_SYMBOL_GPL vmlinux 0x8b8e9293 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x8bf013d9 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c067f0a driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x8c3a16df percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0x8c5e822f device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x8c61b5a6 static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0x8c8d4e29 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x8cfe1c2d device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x8d0fc44d driver_register -EXPORT_SYMBOL_GPL vmlinux 0x8d15b729 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d259280 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x8d387c6e find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x8d54d213 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x8d82842e __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x8d8d6476 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x8d8ec1e2 blkg_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn -EXPORT_SYMBOL_GPL vmlinux 0x8da5dc93 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0x8db616a5 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x8dc58d76 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8e1cd06f kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL vmlinux 0x8e3ecb54 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x8e4d12b1 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x8e505f0d devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x8e67971f pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x8e8820cc raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x8e8ee5b9 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x8ee7a73f zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x8f00356a netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x8f061ced kvm_write_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f1301ef platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x8f1a98e4 tpm2_startup -EXPORT_SYMBOL_GPL vmlinux 0x8f232faf scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x8f277392 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x8f4d6a6d bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8f681035 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f74bcc8 blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x8f859301 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x8f8d3410 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x8fbca5ce xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0x8fde2f0c register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x90163105 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x9042a649 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x90438218 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x904d5515 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x9053ec2b __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x90567ccb scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x9059c111 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x9063ebf9 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x907e0e22 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x907f0958 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90b5fb02 blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x90c1c4f0 css_sch_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x90d4002c device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x90e5d678 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x914da882 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x918d6891 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x9195a88d find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x91a3ca10 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x91c1ef59 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x91c31754 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x91fbee40 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x91fd09a5 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x91feb7ec replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x920ba0b4 iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x924f4d0d sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x9288a2fc kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x92af8956 bio_associate_current -EXPORT_SYMBOL_GPL vmlinux 0x92b1e410 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92dd0eb8 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x932b50db x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x932c552d iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x935848f5 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x93589e33 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x936ac466 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x938a0e54 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0x93a0f46a clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x93d0b2bb crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x93f64810 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x93f72cc4 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x93f9d9e2 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x94209f6e shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x942e5c76 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x947f4d31 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x9481c307 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x948b7bf4 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x949e2010 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x94ea3646 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953d5054 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x954163d7 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x95459672 appldata_diag -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x95ae2b8c transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x95b21a2b dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x95e33ae4 cmf_read -EXPORT_SYMBOL_GPL vmlinux 0x961a926e tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x96304881 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x9648941d device_del -EXPORT_SYMBOL_GPL vmlinux 0x9649cc35 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x965df31b gmap_map_segment -EXPORT_SYMBOL_GPL vmlinux 0x965f82f4 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x96c56d81 shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x96e3a9ad kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x97477690 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x974f7f3e skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x978793f5 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x97b7033d single_release_net -EXPORT_SYMBOL_GPL vmlinux 0x97c1a6f3 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x981afb4f trace_buffer_unlock_commit_regs -EXPORT_SYMBOL_GPL vmlinux 0x981f0338 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9871c207 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x98876a1d virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x98daeb4f blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x98f8b355 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fa48be relay_close -EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x992acb63 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x9937f689 gmap_translate -EXPORT_SYMBOL_GPL vmlinux 0x993d16df __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x99416c33 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x999ebd40 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x99ab996e ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x99d9a612 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x99fa21e6 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x9a072f61 klp_unregister_patch -EXPORT_SYMBOL_GPL vmlinux 0x9a0a535c ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a23288b pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x9a422f05 __gmap_translate -EXPORT_SYMBOL_GPL vmlinux 0x9a59e7a4 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0x9aca7664 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x9aea73a0 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9b1972d3 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x9b509937 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x9bd651c6 gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c077612 kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x9c36c019 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x9c3938b2 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x9c5caae9 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x9c6da4c5 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x9c887a38 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x9caf85c6 unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x9cb0bb0f __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x9cb700e0 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cec2be2 nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x9d9c3529 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x9da8e928 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x9df63e46 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x9e1032c9 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e5abb03 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x9ecfd1ef md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x9f125b4a vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x9f280dff cio_update_schib -EXPORT_SYMBOL_GPL vmlinux 0x9f871975 hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x9fae1a5b iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x9fcb2361 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fdbabfd ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ffe04bf pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x9fffa6e9 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xa049a4f4 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xa0c19027 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0xa1426fd0 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa16eccd7 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa1b82797 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa1ee5691 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xa21df4f8 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xa250652b gmap_test_and_clear_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa26a077e balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa27a81da ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xa292ac95 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa2a6215f nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xa2a97b66 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xa2c41e76 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xa2f734c1 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xa307c06c pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0xa3110d92 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xa3562864 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xa359af38 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xa3678c1f is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xa373e0cf percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xa374e051 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa3801d7f __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa3a8060b relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3c9e111 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0xa404f3f3 gmap_ipte_notify -EXPORT_SYMBOL_GPL vmlinux 0xa40fc90b device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xa43487a4 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xa4a42813 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0xa4c17757 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xa5294631 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa53d1e0d crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xa5481736 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xa564270c cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0xa589ea15 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa5a41cb4 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0xa5c4fd8a crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa6030e28 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6c5400d __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa707d342 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xa70d194e balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xa71358b1 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xa7f83da4 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa80141ee blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xa80619fe trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0xa8131c3e pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xa815ee64 driver_find -EXPORT_SYMBOL_GPL vmlinux 0xa8324509 skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa84ed0c5 devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8763cc8 kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0xa8ad6c74 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xa8e0dfb2 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xa8ee2b49 crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0xa8ff2a2d crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa91180a0 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xa92ea427 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa93ca7d1 inet_csk_compat_setsockopt -EXPORT_SYMBOL_GPL vmlinux 0xa99d5417 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xa9a4ceab blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xa9a53aa0 tpm_gen_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e2442f gmap_disable -EXPORT_SYMBOL_GPL vmlinux 0xa9ff15b9 s390_enable_sie -EXPORT_SYMBOL_GPL vmlinux 0xaa20a08d kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xaa81c958 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xaa878322 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xaa883385 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xaaa56bfa rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaab05483 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xaabf43d4 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xab2842b2 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab875da0 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xab97a97d s390_handle_mcck -EXPORT_SYMBOL_GPL vmlinux 0xabb2f80d wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xabc322da kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabe12262 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xabe2394e iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xabf28367 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xac194a50 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0xac208973 tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0xac27d34b device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xac51f56c list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xac5bb6e8 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xac5ed581 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xac5fb0d3 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xac87fd0f devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xac8bb3a2 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xac9a1280 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0xacb8891c ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xad3887d6 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0xad3dfa13 lgr_info_log -EXPORT_SYMBOL_GPL vmlinux 0xad489fc5 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xad63e026 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0xad8f8cba debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xad9086a2 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xadaaa3ae diag308 -EXPORT_SYMBOL_GPL vmlinux 0xade31af2 __online_page_free -EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xae60b738 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae76991a init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae88b6e5 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xae9fce2f tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xaf28268d metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaff436be trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0xaff728cb debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xb00a8738 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xb015ba35 wakeup_source_prepare -EXPORT_SYMBOL_GPL vmlinux 0xb01d704b debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xb026f7bc ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xb0821e13 skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xb0b817b8 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb1276a58 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb160555c scm_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0xb1c2172d component_add -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1f24fcd fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xb1f8e9dd subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb2016996 pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0xb232432c class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb28006c4 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0xb2ab0240 gmap_fault -EXPORT_SYMBOL_GPL vmlinux 0xb2c13ed1 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xb2c6990c bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0xb2cbc17b __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xb2d70e91 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb31ca582 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xb3386f95 fuse_request_send_background -EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy -EXPORT_SYMBOL_GPL vmlinux 0xb3630fc0 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xb38ea10c bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xb3dd384b xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xb3e4a4b8 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xb3f2d9d5 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xb3fed5c9 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0xb4221fec register_jprobes -EXPORT_SYMBOL_GPL vmlinux 0xb4240f49 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xb45b4f7e chsc_pnso_brinfo -EXPORT_SYMBOL_GPL vmlinux 0xb486f829 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xb4a8bf3f watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4d73fe4 platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xb50cfc95 __pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xb5381118 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xb53b2878 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xb583d005 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0xb5958c97 __netpoll_free_async -EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb60660e0 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb6879ac9 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xb69e0a96 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0xb6b5cf1c trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xb727f35f alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xb73f3e34 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xb74a58b4 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0xb74f84ed trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0xb758c25a bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xb79bc4d7 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xb7be49ea fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xb7d64d10 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xb7dad342 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xb8095bfe percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0xb83bff2a anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xb846613f blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0xb853750a platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xb873962a blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb891f8d8 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d056ce blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xb8d45ba8 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xb8dd6f74 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xb907b442 scm_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xb920481c perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xb936d1ff debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xb93e981c fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xb9565ab9 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xb976f52f inet_csk_compat_getsockopt -EXPORT_SYMBOL_GPL vmlinux 0xb9783a9f xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xb9809584 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xb987ab52 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xb98d6df0 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9cdeb75 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9f065de __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb9f0ddf5 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0xba1b0c63 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xba2370db inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xba75e95e device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xba984216 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0xbaeb1f35 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbb09e4ac pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb128381 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xbb4c9c84 kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0xbb71b12e skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xbb769a36 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0xbbc40a71 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0xbbd1b93a crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xbc10ac59 unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xbc17b413 enable_cmf -EXPORT_SYMBOL_GPL vmlinux 0xbc384a9c pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0xbc526560 save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0xbc654507 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7e7b84 napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0xbcab3ec4 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcbbd266 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0xbcbe4277 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcde8736 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xbcec629b ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xbcf4bcfc crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd50448f __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xbd5367e0 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd60646b rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0xbdf0edd1 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xbe192134 user_update -EXPORT_SYMBOL_GPL vmlinux 0xbe517f6e disable_cmf -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe987b70 iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbea695dd transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xbebfbb0e scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xbec0e932 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbef2241d __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xbf2bf743 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbf677d9e ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xbf701446 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xbfa22890 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbff9945f pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space -EXPORT_SYMBOL_GPL vmlinux 0xbfffdab4 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0xc0012181 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xc00136f9 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xc04a72b1 skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0xc05426fb __securityfs_setup_d_inode -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc090ff65 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xc094a07b ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xc09b61ad pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0d88fe7 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f4206e __mmu_notifier_invalidate_range_end -EXPORT_SYMBOL_GPL vmlinux 0xc130b03e memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0xc167b9ea clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xc193250f watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xc19b4826 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc22cdbea mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xc231e8b9 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xc237a4b8 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xc2517490 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0xc27ce3e5 crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0xc29e7aa2 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xc2bd4f0e fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc2e58432 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0xc2ebce1d __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0xc2fe98a5 __mmu_notifier_invalidate_range_start -EXPORT_SYMBOL_GPL vmlinux 0xc30ca665 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0xc321cab6 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0xc3394835 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xc3602340 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc3870d0f crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xc3a736ba __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xc4027b33 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0xc425a2f2 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xc4353374 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0xc46186d5 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0xc49f6367 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xc4dc8247 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0xc4e79296 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0xc4fbdaf3 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xc511cd47 snprint_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xc517019f seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0xc54e053b shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0xc55148e2 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xc556bc26 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc560263a css_sch_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc59c216b pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xc5a7f1ac dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xc5bef2f3 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xc5fb9ad1 zpci_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xc5fc3049 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc6226fd5 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xc646d09b crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc67b1440 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6ac8076 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xc6d6f1a0 kvm_clear_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xc705f5dc probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0xc721a7f0 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xc735835f platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xc74eecef cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xc7536fea rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xc779d483 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0xc79f54a7 cmf_readall -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7ec2cce tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0xc7f80067 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xc805747d pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xc806a12f debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0xc8460acb cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0xc853218d gmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8cf0250 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xc939f413 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc97ea6aa find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9f7a51f dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xca18ff37 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xca1c7486 mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0xca7d175f gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca88697c crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xcac73447 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xcb016d42 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xcb0a8352 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module -EXPORT_SYMBOL_GPL vmlinux 0xcb5373c6 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xcb66dfa0 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xcb92d9e5 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcbb021bf mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xcbb7229d tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xcbb81a06 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0xcbe424b2 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0xcbf96cd1 ccw_device_get_schid -EXPORT_SYMBOL_GPL vmlinux 0xcbff2b8d sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xcc267b36 cio_enable_subchannel -EXPORT_SYMBOL_GPL vmlinux 0xcc4704bb tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xcc4ca96e simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xcc7140f6 __online_page_set_limits -EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcc8940d2 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xcc911e9f alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xcca6b192 pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0xccaae4cf crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xccb537fa for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xccc425f8 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0xccce6279 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xcce2f58f kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0xccf05c75 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0xccf7ca21 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xccffef21 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xcd04462f sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0xcd1f429d __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xcd89cdc9 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdcd8be8 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource -EXPORT_SYMBOL_GPL vmlinux 0xcdee6493 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0xce3632f4 genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0xce5341e8 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce718d1d subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0xce767cec list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcec9d06f perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcecba454 percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0xcece4914 css_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xceeeab4b sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0xcefbd9e6 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0xcefc1e30 __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xcf48ca18 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf7b0223 chsc_scm_info -EXPORT_SYMBOL_GPL vmlinux 0xcf9c87ed device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xcfe622c9 pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0xd031b589 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xd042efb6 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0xd0616073 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06e0e8c sock_update_netprioidx -EXPORT_SYMBOL_GPL vmlinux 0xd0962124 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0ffb9d4 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xd1075a6c pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd1b6fd8c inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xd1b9fcc7 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0xd1d662bd io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xd1df1ddb gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21bde00 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0xd247b5db atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd2556079 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xd25d2a2e ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd25eb5f0 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd28e8509 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xd2c09432 tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xd2c69027 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0xd2ef2452 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xd2fa4def iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xd320f0d3 napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xd3243ae8 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xd352f029 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd3b7beeb iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xd3c5ae0a netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd408807a unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xd421a065 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xd4a13794 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0xd4b607a0 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4e2afd9 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xd4f05dcd xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xd544fe97 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xd5541799 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0xd5573583 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0xd5742d38 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0xd5845756 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xd594caa2 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xd59cc12b skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5f75be3 ping_close -EXPORT_SYMBOL_GPL vmlinux 0xd609ae70 __class_register -EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0xd672c9ca rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6a3a679 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xd6c2462c __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0xd6deade2 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xd6efca33 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0xd7200fc6 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xd733eab3 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xd7912f3e task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xd79e6410 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd7b71d01 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xd7c8e8cd register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd7e171fc virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xd805a614 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd847f682 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0xd8695eed generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xd886f4aa sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xd889bbf6 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xd8bd0810 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd90b7b83 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xd92db761 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd978fe98 skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0xd9843ff6 __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0xd9b9199b relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xd9db4bae dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0xd9e0d3ef dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9edcf03 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xda10fdff disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xda3f3e8a isc_register -EXPORT_SYMBOL_GPL vmlinux 0xda475506 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xda81a0af sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xdac433f8 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0xdb1caab0 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xdb76c4a2 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb94924c get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xdba023b5 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xdbcac408 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0xdbe06f84 cio_disable_subchannel -EXPORT_SYMBOL_GPL vmlinux 0xdbe5e650 __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc233603 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xdc3303fc device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xdc45f231 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xdc639c17 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xdc6f1a7b unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdccf05bf blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xdcde0f79 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xdce5037c scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xdcf2abfd scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd447d47 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0xdd830837 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xdd8938af shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xdd8a2d45 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0xddb1a2a4 device_move -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd3bef2 securityfs_create_dentry -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xddd89e1a class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xddf32153 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xde2bdfc8 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xde32b1ac hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xde4fdba4 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0xde77ab3d msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0xde7c6d3d crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xde83a204 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0xde893011 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xded5d8e0 irq_stat -EXPORT_SYMBOL_GPL vmlinux 0xded94481 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0xdee28f38 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdef3e4e3 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf22a0b4 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xdf2d5d3d get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0xdf8a59f7 kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xdf9bf0b6 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xdfd44b10 ccw_device_force_console -EXPORT_SYMBOL_GPL vmlinux 0xe0047b2c pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe06388fd add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xe07032a9 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0xe0ea408b dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xe0ec5b68 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xe14a0ecc vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe18209ae set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xe1fb6d09 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0xe25b02e1 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xe265b3d1 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xe292cfda xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0xe2e2022f dax_do_io -EXPORT_SYMBOL_GPL vmlinux 0xe2f82c4f tpm_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xe301ee88 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe38cfc5c uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xe3a3fc09 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xe3c55f87 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xe40d6b39 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xe490ccd3 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4b43969 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0xe4f0b782 appldata_unregister_ops -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq -EXPORT_SYMBOL_GPL vmlinux 0xe59f214c rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0xe5a0c4cc cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe656639e register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xe66a2508 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0xe696abdd __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module -EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0xe6e1e845 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe71523ea skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xe72317d1 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe74d0ab6 trace_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xe74dbed3 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe780c3b5 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe786338b debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xe7b718df chsc_determine_channel_path_desc -EXPORT_SYMBOL_GPL vmlinux 0xe7be9eb1 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xe7cab89d kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xe7e6f602 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe8092b2b insn_to_mnemonic -EXPORT_SYMBOL_GPL vmlinux 0xe815afe4 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xe83c2c8a mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xe84abaea wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe853f157 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xe8557947 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe8b9badb rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xe8cb7d9c iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0xe8d09f2f chp_ssd_get_mask -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe955f038 flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0xe9999393 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xe9adfca5 blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0xe9f16a44 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea1aca78 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xea95cb5a memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xeaf08820 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0xeb2ed2c0 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xeb4266ad fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0xeb49238e virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0xeba64fda sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xeba745e1 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0xebb5a3e0 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xebbc8dc2 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xebedabe8 __dax_pmd_fault -EXPORT_SYMBOL_GPL vmlinux 0xec13c83c si_swapinfo -EXPORT_SYMBOL_GPL vmlinux 0xec16afa3 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del -EXPORT_SYMBOL_GPL vmlinux 0xec293772 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xec57ea73 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0xec83f722 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xecc94598 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xecdb8587 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xed1123a9 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed46ec67 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xeda3a884 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xedbf3389 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xedc22f75 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0xedc36b60 __mmu_notifier_invalidate_range -EXPORT_SYMBOL_GPL vmlinux 0xee33cba3 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xee497f08 jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xee7e3400 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0xee8462cd iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xee9c37e9 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0xeeb7df7d crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xeeba26fd rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0xeed01ce0 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xeedebf47 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xef13106c nr_threads -EXPORT_SYMBOL_GPL vmlinux 0xef15bcca md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xef2bc3a6 bio_associate_blkcg -EXPORT_SYMBOL_GPL vmlinux 0xef41239e debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat -EXPORT_SYMBOL_GPL vmlinux 0xef79c9fa crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0xef86e566 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xeffc9357 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xf00877e8 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xf011c06b trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0xf021e894 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0xf07ad705 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0xf092afc0 bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xf0aff318 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0xf0c3c535 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf0f55aad init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0xf13f3146 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xf1403eff queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf19dc8dc key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1be7b22 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xf1d673d5 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xf1ee3c1a wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf22c6aab blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0xf2975ec7 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf2e91278 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xf2f8259b locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0xf3112482 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf3163961 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf33fe1ca inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf37d153f tpm2_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf39bd4e4 get_device -EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xf42451ca proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xf4514e20 of_css -EXPORT_SYMBOL_GPL vmlinux 0xf457b047 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xf49998b3 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0xf4a6b488 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xf4beef69 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf508fa32 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0xf5277a60 call_filter_check_discard -EXPORT_SYMBOL_GPL vmlinux 0xf530b807 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0xf5370f4b platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf5541b77 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf5792d73 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5bb348f pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xf5c7f3f0 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0xf5d6423a pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xf5e24f18 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xf5e55ff6 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xf5ff50a1 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xf6212387 ccw_device_get_chp_desc -EXPORT_SYMBOL_GPL vmlinux 0xf656bb45 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf6725f15 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xf6a4cfab scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xf6a72a0d fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6f6dcf4 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xf7169389 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xf76fbe11 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xf7794416 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0xf7ba5bc9 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf7dc2609 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xf7e45708 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xf7ebfde4 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xf7f090d1 dax_pfn_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0xf7f33258 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xf8267b4a attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xf82a73dc trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf851a04b platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xf868f4fa device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xf885d873 gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf8c3cad7 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8fd9e9d synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0xf915425c percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf9804fc6 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xf98fb50f ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0xf993e900 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf99f8605 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a08f33 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xf9d652ca blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xf9e382b3 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xfa01fe50 gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0xfa4d0edb devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xfa83906a crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec -EXPORT_SYMBOL_GPL vmlinux 0xfa9e335e hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfadac245 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0xfafb5ae7 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb4ba7bc wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfb4bb06d crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfbba1de4 get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbd087ec blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0fbf75 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xfc4fcde8 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xfc5eb088 cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xfc67b7c1 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xfc81976d __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfd200978 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xfd258b14 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0xfd7f64a5 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xfd91dc0b tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xfd9bd1c3 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0xfdd1e166 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xfe01794a perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xfe135ba0 user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xfe1ec1f6 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xfe49a4b5 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xfe6590d1 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xfeb0d574 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xfecb5d1a ping_err -EXPORT_SYMBOL_GPL vmlinux 0xfedc9d9d klp_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff25af8a virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xff342cf4 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xff4d94de security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xff75db15 kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0xffd7d348 __ip_route_output_key_hash reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/s390x/generic.compiler +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/s390x/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-4.4.0/debian.master/abi/4.4.0-89.112/s390x/generic.modules +++ linux-4.4.0.orig/debian.master/abi/4.4.0-89.112/s390x/generic.modules @@ -1,846 +0,0 @@ -8021q -842 -842_compress -842_decompress -9p -9pnet -9pnet_rdma -9pnet_virtio -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -aes_s390 -af-rxrpc -af_alg -af_iucv -af_key -af_packet_diag -ah4 -ah6 -algif_aead -algif_hash -algif_rng -algif_skcipher -amd -ansi_cprng -anubis -ap -appldata_mem -appldata_net_sum -appldata_os -aquantia -arc4 -arp_tables -arpt_mangle -arptable_filter -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at803x -aufs -auth_rpcgss -authenc -authencesn -bcache -bcm-phy-lib -bcm7038_wdt -bcm7xxx -bcm87xx -binfmt_misc -blocklayoutdriver -blowfish_common -blowfish_generic -bonding -br_netfilter -brd -bridge -broadcom -btrfs -cachefiles -camellia_generic -cast5_generic -cast6_generic -cast_common -ccm -ccwgroup -ceph -ch -chacha20_generic -chacha20poly1305 -chsc_sch -cicada -cifs -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cmac -coda -cordic -cpu-notifier-error-inject -crc-ccitt -crc-itu-t -crc32 -crc7 -crc8 -cryptd -crypto_user -ctcm -ctr -cts -cuse -dasd_diag_mod -dasd_eckd_mod -dasd_fba_mod -dasd_mod -davicom -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -dcssblk -deflate -des_generic -des_s390 -diag288_wdt -dlm -dm-bio-prison -dm-bufio -dm-cache -dm-cache-cleaner -dm-cache-mq -dm-cache-smq -dm-crypt -dm-delay -dm-era -dm-flakey -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-verity -dm-zero -dp83848 -dp83867 -drbd -drbg -drop_monitor -dummy -dummy_stm -eadm_sch -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -echainiv -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -eql -esp4 -esp6 -et1011c -faulty -fcoe -fcrypt -fixed_phy -fou -fpga-mgr -fs3270 -fscache -fsm -garp -gcm -geneve -gennvm -genwqe_card -gf128mul -gfs2 -ghash-generic -ghash_s390 -grace -gre -hangcheck-timer -hmcdrv -ib_addr -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mad -ib_mthca -ib_sa -ib_srp -ib_srpt -ib_ucm -ib_umad -ib_uverbs -icplus -ifb -ila -inet_diag -intel_th -intel_th_gth -intel_th_msu -intel_th_pci -intel_th_pti -intel_th_sth -interval_tree_test -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_MASQUERADE -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipcomp -ipcomp6 -ipip -ipt_CLUSTERIP -ipt_ECN -ipt_MASQUERADE -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -irqbypass -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isofs -iw_cm -jitterentropy_rng -kafs -keywrap -khazad -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -lcs -libceph -libcrc32c -libfc -libfcoe -libiscsi -libiscsi_tcp -libore -libosd -libphy -libsas -linear -llc -lockd -locktorture -lru_cache -lrw -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -macvlan -macvtap -marvell -mcryptd -md-cluster -md4 -mdio-bcm-unimac -mdio-bitbang -mdio-cavium -mdio-octeon -mdio-thunder -mdio-xgene -memory-notifier-error-inject -michael_mic -micrel -microchip -mip6 -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlxsw_core -mlxsw_pci -monreader -monwriter -mpls_gso -mpls_iptunnel -mpls_router -mpt3sas -mrp -msdos -national -nb8800 -nbd -netconsole -netiucv -netlink_diag -nf_conntrack -nf_conntrack_amanda -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_dccp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_ipv4 -nf_nat_ipv6 -nf_nat_irc -nf_nat_masquerade_ipv4 -nf_nat_masquerade_ipv6 -nf_nat_pptp -nf_nat_proto_dccp -nf_nat_proto_gre -nf_nat_proto_sctp -nf_nat_proto_udplite -nf_nat_redirect -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nf_reject_ipv4 -nf_reject_ipv6 -nf_synproxy_core -nf_tables -nf_tables_arp -nf_tables_bridge -nf_tables_inet -nf_tables_ipv4 -nf_tables_ipv6 -nf_tables_netdev -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat_ipv4 -nft_chain_nat_ipv6 -nft_chain_route_ipv4 -nft_chain_route_ipv6 -nft_compat -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_exthdr -nft_hash -nft_limit -nft_log -nft_masq -nft_masq_ipv4 -nft_masq_ipv6 -nft_meta -nft_meta_bridge -nft_nat -nft_queue -nft_rbtree -nft_redir -nft_redir_ipv4 -nft_redir_ipv6 -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nilfs2 -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -notifier-error-inject -ntfs -null_blk -objlayoutdriver -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -openvswitch -oprofile -osd -osdblk -osst -overlay -p8022 -pcbc -pci-stub -pcrypt -percpu_test -pkcs7_test_key -pktgen -pm-notifier-error-inject -poly1305_generic -pps_core -prng -psnap -ptp -qdio -qeth -qeth_l2 -qeth_l3 -qsemi -quota_tree -quota_v1 -quota_v2 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -rbd -rbtree_test -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -rmd128 -rmd160 -rmd256 -rmd320 -rpcrdma -rpcsec_gss_krb5 -rrpc -rxkad -salsa20_generic -sch_cbq -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_tbf -sch_teql -sclp_async -sclp_cpi -scm_block -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_probe -seed -seqiv -serial_core -serpent_generic -sha1_s390 -sha256_s390 -sha512_s390 -sha_common -sit -smsc -smsgiucv_app -softdog -spl -splat -st -ste10Xp -stm_console -stm_core -stp -sunrpc -tape -tape_34xx -tape_3590 -tape_class -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -tcm_fc -tcm_loop -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tea -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -teranetics -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_printf -test_static_key_base -test_static_keys -test_udelay -test_user_copy -tgr192 -tipc -torture -tpm-rng -ts_bm -ts_fsm -ts_kmp -tunnel4 -tunnel6 -twofish_common -twofish_generic -uartlite -udf -udp_diag -udp_tunnel -unix_diag -veth -vfio -vfio-pci -vfio_iommu_type1 -vfio_virqfd -vhost -vhost_net -vhost_scsi -virtio-rng -virtio_scsi -vitesse -vmac -vmlogrdr -vmur -vport-geneve -vport-gre -vport-vxlan -vrf -vringh -vsock -vxlan -wp512 -x_tables -xcbc -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_ipcomp -xfrm_user -xfs -xor -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LOG -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xts -zavl -zcommon -zcrypt_api -zcrypt_cex2a -zcrypt_cex4 -zcrypt_msgtype50 -zcrypt_msgtype6 -zcrypt_pcixcc -zfcp -zfs -zlib -zlib_deflate -znvpair -zpios -zram -zunicode -zynq-fpga diff -u linux-4.4.0/debian.master/changelog linux-4.4.0/debian.master/changelog --- linux-4.4.0/debian.master/changelog +++ linux-4.4.0/debian.master/changelog @@ -1,3 +1,977 @@ +linux (4.4.0-98.121) xenial; urgency=low + + * linux: 4.4.0-98.121 -proposed tracker (LP: #1722299) + + * Controller lockup detected on ProLiant DL380 Gen9 with P440 Controller + (LP: #1720359) + - scsi: hpsa: limit transfer length to 1MB + + * [Dell Docking IE][0bda:8153] Realtek USB Ethernet leads to system hang + (LP: #1720977) + - r8152: fix the list rx_done may be used without initialization + + * Add installer support for Broadcom BCM573xx network drivers. (LP: #1720466) + - d-i: Add bnxt_en to nic-modules. + + * snapcraft.yaml: add dpkg-dev to the build deps (LP: #1718886) + - snapcraft.yaml: add dpkg-dev to the build deps + + * Support setting I2C_TIMEOUT via ioctl for i2c-designware (LP: #1718578) + - i2c: designware: Use transfer timeout from ioctl I2C_TIMEOUT + + * 5U84 - ses driver isn't binding right - cannot blink lights on 1 of the 2 + 5u84 (LP: #1693369) + - scsi_transport_sas: add function to get SAS endpoint address + - ses: fix discovery of SATA devices in SAS enclosures + - scsi: sas: provide stub implementation for scsi_is_sas_rphy + - scsi: ses: Fix SAS device detection in enclosure + + * multipath -ll is not showing the disks which are actually multipath + (LP: #1718397) + - fs: aio: fix the increment of aio-nr and counting against aio-max-nr + + * Support Dell Wireless DW5819/5818 WWAN devices (LP: #1721455) + - SAUCE: USB: serial: qcserial: add Dell DW5818, DW5819 + + * CVE-2017-10911 + - xen-blkback: don't leak stack data via response ring + + * implement 'complain mode' in seccomp for developer mode with snaps + (LP: #1567597) + - seccomp: Provide matching filter for introspection + - seccomp: Sysctl to display available actions + - seccomp: Operation for checking if an action is available + - seccomp: Sysctl to configure actions that are allowed to be logged + - seccomp: Selftest for detection of filter flag support + - seccomp: Action to log before allowing + + * implement errno action logging in seccomp for strict mode with snaps + (LP: #1721676) + - seccomp: Provide matching filter for introspection + - seccomp: Sysctl to display available actions + - seccomp: Operation for checking if an action is available + - seccomp: Sysctl to configure actions that are allowed to be logged + - seccomp: Selftest for detection of filter flag support + - seccomp: Filter flag to log all actions except SECCOMP_RET_ALLOW + + * [Xenial] update OpenNSL kernel modules to 6.5.10 (LP: #1721511) + - SAUCE: update OpenNSL kernel modules to 6.5.10 + + * Xenial update to 4.4.90 stable release (LP: #1721550) + - cifs: release auth_key.response for reconnect. + - mac80211: flush hw_roc_start work before cancelling the ROC + - KVM: PPC: Book3S: Fix race and leak in kvm_vm_ioctl_create_spapr_tce() + - tracing: Fix trace_pipe behavior for instance traces + - tracing: Erase irqsoff trace with empty write + - md/raid5: fix a race condition in stripe batch + - md/raid5: preserve STRIPE_ON_UNPLUG_LIST in break_stripe_batch_list + - scsi: scsi_transport_iscsi: fix the issue that iscsi_if_rx doesn't parse + nlmsg properly + - crypto: talitos - Don't provide setkey for non hmac hashing algs. + - crypto: talitos - fix sha224 + - KEYS: fix writing past end of user-supplied buffer in keyring_read() + - KEYS: prevent creating a different user's keyrings + - KEYS: prevent KEYCTL_READ on negative key + - powerpc/pseries: Fix parent_dn reference leak in add_dt_node() + - Fix SMB3.1.1 guest authentication to Samba + - SMB: Validate negotiate (to protect against downgrade) even if signing off + - SMB3: Don't ignore O_SYNC/O_DSYNC and O_DIRECT flags + - vfs: Return -ENXIO for negative SEEK_HOLE / SEEK_DATA offsets + - nl80211: check for the required netlink attributes presence + - bsg-lib: don't free job in bsg_prepare_job + - seccomp: fix the usage of get/put_seccomp_filter() in seccomp_get_filter() + - arm64: Make sure SPsel is always set + - arm64: fault: Route pte translation faults via do_translation_fault + - KVM: VMX: Do not BUG() on out-of-bounds guest IRQ + - kvm: nVMX: Don't allow L2 to access the hardware CR8 + - PCI: Fix race condition with driver_override + - btrfs: fix NULL pointer dereference from free_reloc_roots() + - btrfs: propagate error to btrfs_cmp_data_prepare caller + - btrfs: prevent to set invalid default subvolid + - x86/fpu: Don't let userspace set bogus xcomp_bv + - gfs2: Fix debugfs glocks dump + - timer/sysclt: Restrict timer migration sysctl values to 0 and 1 + - KVM: VMX: do not change SN bit in vmx_update_pi_irte() + - KVM: VMX: remove WARN_ON_ONCE in kvm_vcpu_trigger_posted_interrupt + - cxl: Fix driver use count + - dmaengine: mmp-pdma: add number of requestors + - ARM: pxa: add the number of DMA requestor lines + - ARM: pxa: fix the number of DMA requestor lines + - KVM: VMX: use cmpxchg64 + - video: fbdev: aty: do not leak uninitialized padding in clk to userspace + - swiotlb-xen: implement xen_swiotlb_dma_mmap callback + - fix xen_swiotlb_dma_mmap prototype + - Linux 4.4.90 + + * Xenial update to 4.4.89 stable release (LP: #1721477) + - ipv6: accept 64k - 1 packet length in ip6_find_1stfragopt() + - ipv6: add rcu grace period before freeing fib6_node + - ipv6: fix sparse warning on rt6i_node + - qlge: avoid memcpy buffer overflow + - Revert "net: phy: Correctly process PHY_HALTED in phy_stop_machine()" + - Revert "net: use lib/percpu_counter API for fragmentation mem accounting" + - Revert "net: fix percpu memory leaks" + - gianfar: Fix Tx flow control deactivation + - ipv6: fix memory leak with multiple tables during netns destruction + - ipv6: fix typo in fib6_net_exit() + - f2fs: check hot_data for roll-forward recovery + - x86/fsgsbase/64: Report FSBASE and GSBASE correctly in core dumps + - md/raid5: release/flush io in raid5_do_work() + - nfsd: Fix general protection fault in release_lock_stateid() + - mm: prevent double decrease of nr_reserved_highatomic + - tty: improve tty_insert_flip_char() fast path + - tty: improve tty_insert_flip_char() slow path + - tty: fix __tty_insert_flip_char regression + - Input: i8042 - add Gigabyte P57 to the keyboard reset table + - MIPS: math-emu: .: Fix quiet NaN propagation + - MIPS: math-emu: .: Fix cases of both inputs zero + - MIPS: math-emu: .: Fix cases of both inputs negative + - MIPS: math-emu: .: Fix cases of input values with opposite + signs + - MIPS: math-emu: .: Fix cases of both infinite inputs + - MIPS: math-emu: MINA.: Fix some cases of infinity and zero inputs + - crypto: AF_ALG - remove SGL terminator indicator when chaining + - ext4: fix incorrect quotaoff if the quota feature is enabled + - ext4: fix quota inconsistency during orphan cleanup for read-only mounts + - powerpc: Fix DAR reporting when alignment handler faults + - block: Relax a check in blk_start_queue() + - md/bitmap: disable bitmap_resize for file-backed bitmaps. + - skd: Avoid that module unloading triggers a use-after-free + - skd: Submit requests to firmware before triggering the doorbell + - scsi: zfcp: fix queuecommand for scsi_eh commands when DIX enabled + - scsi: zfcp: add handling for FCP_RESID_OVER to the fcp ingress path + - scsi: zfcp: fix capping of unsuccessful GPN_FT SAN response trace records + - scsi: zfcp: fix passing fsf_req to SCSI trace on TMF to correlate with HBA + - scsi: zfcp: fix missing trace records for early returns in TMF eh handlers + - scsi: zfcp: fix payload with full FCP_RSP IU in SCSI trace records + - scsi: zfcp: trace HBA FSF response by default on dismiss or timedout late + response + - scsi: zfcp: trace high part of "new" 64 bit SCSI LUN + - scsi: megaraid_sas: Check valid aen class range to avoid kernel panic + - scsi: megaraid_sas: Return pended IOCTLs with cmd_status + MFI_STAT_WRONG_STATE in case adapter is dead + - scsi: storvsc: fix memory leak on ring buffer busy + - scsi: sg: remove 'save_scat_len' + - scsi: sg: use standard lists for sg_requests + - scsi: sg: off by one in sg_ioctl() + - scsi: sg: factor out sg_fill_request_table() + - scsi: sg: fixup infoleak when using SG_GET_REQUEST_TABLE + - scsi: qla2xxx: Fix an integer overflow in sysfs code + - ftrace: Fix selftest goto location on error + - tracing: Apply trace_clock changes to instance max buffer + - ARC: Re-enable MMU upon Machine Check exception + - PCI: shpchp: Enable bridge bus mastering if MSI is enabled + - media: v4l2-compat-ioctl32: Fix timespec conversion + - media: uvcvideo: Prevent heap overflow when accessing mapped controls + - bcache: initialize dirty stripes in flash_dev_run() + - bcache: Fix leak of bdev reference + - bcache: do not subtract sectors_to_gc for bypassed IO + - bcache: correct cache_dirty_target in __update_writeback_rate() + - bcache: Correct return value for sysfs attach errors + - bcache: fix for gc and write-back race + - bcache: fix bch_hprint crash and improve output + - ftrace: Fix memleak when unregistering dynamic ops when tracing disabled + - Linux 4.4.89 + + * ETPS/2 Elantech Touchpad inconsistently detected (Gigabyte P57W laptop) + (LP: #1594214) + - Input: i8042 - add Gigabyte P57 to the keyboard reset table + + * Xenial update to 4.4.88 stable release (LP: #1718195) + - usb: quirks: add delay init quirk for Corsair Strafe RGB keyboard + - USB: serial: option: add support for D-Link DWM-157 C1 + - usb: Add device quirk for Logitech HD Pro Webcam C920-C + - usb:xhci:Fix regression when ATI chipsets detected + - USB: core: Avoid race of async_completed() w/ usbdev_release() + - staging/rts5208: fix incorrect shift to extract upper nybble + - driver core: bus: Fix a potential double free + - intel_th: pci: Add Cannon Lake PCH-H support + - intel_th: pci: Add Cannon Lake PCH-LP support + - ath10k: fix memory leak in rx ring buffer allocation + - rtlwifi: rtl_pci_probe: Fix fail path of _rtl_pci_find_adapter + - Bluetooth: Add support of 13d3:3494 RTL8723BE device + - dlm: avoid double-free on error path in dlm_device_{register,unregister} + - mwifiex: correct channel stat buffer overflows + - drm/nouveau/pci/msi: disable MSI on big-endian platforms by default + - workqueue: Fix flag collision + - cs5536: add support for IDE controller variant + - scsi: sg: protect against races between mmap() and SG_SET_RESERVED_SIZE + - scsi: sg: recheck MMAP_IO request length with lock held + - drm: adv7511: really enable interrupts for EDID detection + - drm/bridge: adv7511: Fix mutex deadlock when interrupts are disabled + - drm/bridge: adv7511: Use work_struct to defer hotplug handing to out of irq + context + - drm/bridge: adv7511: Switch to using drm_kms_helper_hotplug_event() + - drm/bridge: adv7511: Re-write the i2c address before EDID probing + - btrfs: resume qgroup rescan on rw remount + - locktorture: Fix potential memory leak with rw lock test + - ALSA: msnd: Optimize / harden DSP and MIDI loops + - ARM: 8692/1: mm: abort uaccess retries upon fatal signal + - NFS: Fix 2 use after free issues in the I/O code + - xfs: XFS_IS_REALTIME_INODE() should be false if no rt device present + - Linux 4.4.88 + + * Kernel has troule recognizing Corsair Strafe RGB keyboard (LP: #1678477) + - usb: quirks: add delay init quirk for Corsair Strafe RGB keyboard + + -- Thadeu Lima de Souza Cascardo Tue, 10 Oct 2017 08:52:24 -0300 + +linux (4.4.0-97.120) xenial; urgency=low + + * linux: 4.4.0-97.120 -proposed tracker (LP: #1718149) + + * blk-mq: possible deadlock on CPU hot(un)plug (LP: #1670634) + - [Config] s390x -- disable CONFIG_{DM, SCSI}_MQ_DEFAULT + + * Xenial update to 4.4.87 stable release (LP: #1715678) + - irqchip: mips-gic: SYNC after enabling GIC region + - i2c: ismt: Don't duplicate the receive length for block reads + - i2c: ismt: Return EMSGSIZE for block reads with bogus length + - ceph: fix readpage from fscache + - cpumask: fix spurious cpumask_of_node() on non-NUMA multi-node configs + - cpuset: Fix incorrect memory_pressure control file mapping + - alpha: uapi: Add support for __SANE_USERSPACE_TYPES__ + - CIFS: remove endian related sparse warning + - wl1251: add a missing spin_lock_init() + - xfrm: policy: check policy direction value + - drm/ttm: Fix accounting error when fail to get pages for pool + - kvm: arm/arm64: Fix race in resetting stage2 PGD + - kvm: arm/arm64: Force reading uncached stage2 PGD + - epoll: fix race between ep_poll_callback(POLLFREE) and ep_free()/ep_remove() + - crypto: algif_skcipher - only call put_page on referenced and used pages + - Linux 4.4.87 + + * Xenial update to 4.4.86 stable release (LP: #1715430) + - scsi: isci: avoid array subscript warning + - ALSA: au88x0: Fix zero clear of stream->resources + - btrfs: remove duplicate const specifier + - i2c: jz4780: drop superfluous init + - gcov: add support for gcc version >= 6 + - gcov: support GCC 7.1 + - lightnvm: initialize ppa_addr in dev_to_generic_addr() + - p54: memset(0) whole array + - lpfc: Fix Device discovery failures during switch reboot test. + - arm64: mm: abort uaccess retries upon fatal signal + - x86/io: Add "memory" clobber to insb/insw/insl/outsb/outsw/outsl + - arm64: fpsimd: Prevent registers leaking across exec + - scsi: sg: protect accesses to 'reserved' page array + - scsi: sg: reset 'res_in_use' after unlinking reserved array + - drm/i915: fix compiler warning in drivers/gpu/drm/i915/intel_uncore.c + - Linux 4.4.86 + + * Xenial update to 4.4.85 stable release (LP: #1714298) + - af_key: do not use GFP_KERNEL in atomic contexts + - dccp: purge write queue in dccp_destroy_sock() + - dccp: defer ccid_hc_tx_delete() at dismantle time + - ipv4: fix NULL dereference in free_fib_info_rcu() + - net_sched/sfq: update hierarchical backlog when drop packet + - ipv4: better IP_MAX_MTU enforcement + - sctp: fully initialize the IPv6 address in sctp_v6_to_addr() + - tipc: fix use-after-free + - ipv6: reset fn->rr_ptr when replacing route + - ipv6: repair fib6 tree in failure case + - tcp: when rearming RTO, if RTO time is in past then fire RTO ASAP + - irda: do not leak initialized list.dev to userspace + - net: sched: fix NULL pointer dereference when action calls some targets + - net_sched: fix order of queue length updates in qdisc_replace() + - mei: me: add broxton pci device ids + - mei: me: add lewisburg device ids + - Input: trackpoint - add new trackpoint firmware ID + - Input: elan_i2c - add ELAN0602 ACPI ID to support Lenovo Yoga310 + - ALSA: core: Fix unexpected error at replacing user TLV + - ALSA: hda - Add stereo mic quirk for Lenovo G50-70 (17aa:3978) + - ARCv2: PAE40: Explicitly set MSB counterpart of SLC region ops addresses + - i2c: designware: Fix system suspend + - drm: Release driver tracking before making the object available again + - drm/atomic: If the atomic check fails, return its value first + - drm: rcar-du: lvds: Fix PLL frequency-related configuration + - drm: rcar-du: lvds: Rename PLLEN bit to PLLON + - drm: rcar-du: Fix crash in encoder failure error path + - drm: rcar-du: Fix display timing controller parameter + - drm: rcar-du: Fix H/V sync signal polarity configuration + - tracing: Fix freeing of filter in create_filter() when set_str is false + - cifs: Fix df output for users with quota limits + - cifs: return ENAMETOOLONG for overlong names in cifs_open()/cifs_lookup() + - nfsd: Limit end of page list when decoding NFSv4 WRITE + - perf/core: Fix group {cpu,task} validation + - Bluetooth: hidp: fix possible might sleep error in hidp_session_thread + - Bluetooth: cmtp: fix possible might sleep error in cmtp_session + - Bluetooth: bnep: fix possible might sleep error in bnep_session + - binder: use group leader instead of open thread + - binder: Use wake up hint for synchronous transactions. + - ANDROID: binder: fix proc->tsk check. + - iio: imu: adis16480: Fix acceleration scale factor for adis16480 + - iio: hid-sensor-trigger: Fix the race with user space powering up sensors + - staging: rtl8188eu: add RNX-N150NUB support + - ASoC: simple-card: don't fail if sysclk setting is not supported + - ASoC: rsnd: disable SRC.out only when stop timing + - ASoC: rsnd: avoid pointless loop in rsnd_mod_interrupt() + - ASoC: rsnd: Add missing initialization of ADG req_rate + - ASoC: rsnd: ssi: 24bit data needs right-aligned settings + - ASoC: rsnd: don't call update callback if it was NULL + - ntb_transport: fix qp count bug + - ntb_transport: fix bug calculating num_qps_mw + - ACPI: ioapic: Clear on-stack resource before using it + - ACPI / APEI: Add missing synchronize_rcu() on NOTIFY_SCI removal + - Linux 4.4.85 + + * Xenial update to 4.4.84 stable release (LP: #1713729) + - audit: Fix use after free in audit_remove_watch_rule() + - parisc: pci memory bar assignment fails with 64bit kernels on dino/cujo + - crypto: x86/sha1 - Fix reads beyond the number of blocks passed + - Input: elan_i2c - Add antoher Lenovo ACPI ID for upcoming Lenovo NB + - ALSA: seq: 2nd attempt at fixing race creating a queue + - Revert "UBUNTU: SAUCE: (no-up) ALSA: usb-audio: Add quirk for sennheiser + officerunner" + - ALSA: usb-audio: Apply sample rate quirk to Sennheiser headset + - ALSA: usb-audio: Add mute TLV for playback volumes on C-Media devices + - mm/mempolicy: fix use after free when calling get_mempolicy + - xen: fix bio vec merging + - x86/asm/64: Clear AC on NMI entries + - irqchip/atmel-aic: Fix unbalanced of_node_put() in aic_common_irq_fixup() + - irqchip/atmel-aic: Fix unbalanced refcount in aic_common_rtc_irq_fixup() + - Sanitize 'move_pages()' permission checks + - pids: make task_tgid_nr_ns() safe + - perf/x86: Fix LBR related crashes on Intel Atom + - usb: optimize acpi companion search for usb port devices + - usb: qmi_wwan: add D-Link DWM-222 device ID + - Linux 4.4.84 + + * Intel i40e PF reset due to incorrect MDD detection (LP: #1713553) + - i40e: Limit TX descriptor count in cases where frag size is greater than 16K + + * Neighbour confirmation broken, breaks ARP cache aging (LP: #1715812) + - sock: add sk_dst_pending_confirm flag + - net: add dst_pending_confirm flag to skbuff + - sctp: add dst_pending_confirm flag + - tcp: replace dst_confirm with sk_dst_confirm + - net: add confirm_neigh method to dst_ops + - net: use dst_confirm_neigh for UDP, RAW, ICMP, L2TP + - net: pending_confirm is not used anymore + + * CVE-2017-14106 + - tcp: initialize rcv_mss to TCP_MIN_MSS instead of 0 + + * [CIFS] Fix maximum SMB2 header size (LP: #1713884) + - CIFS: Fix maximum SMB2 header size + + * Middle button of trackpoint doesn't work (LP: #1715271) + - Input: trackpoint - assume 3 buttons when buttons detection fails + + * kernel BUG at /build/linux-lts-xenial-_hWfOZ/linux-lts- + xenial-4.4.0/security/apparmor/include/context.h:69! (LP: #1626984) + - SAUCE: fix oops when disabled and module parameters, are accessed + + * Touchpad not detected (LP: #1708852) + - Input: elan_i2c - add ELAN0608 to the ACPI table + + -- Kleber Sacilotto de Souza Tue, 19 Sep 2017 17:55:11 +0200 + +linux (4.4.0-96.119) xenial; urgency=low + + * linux: 4.4.0-96.119 -proposed tracker (LP: #1716613) + + * kernel panic -not syncing: Fatal exception: panic_on_oops (LP: #1708399) + - s390/mm: no local TLB flush for clearing-by-ASCE IDTE + - SAUCE: s390/mm: fix local TLB flushing vs. detach of an mm address space + - SAUCE: s390/mm: fix race on mm->context.flush_mm + + * CVE-2017-1000251 + - Bluetooth: Properly check L2CAP config option output buffer length + + -- Stefan Bader Tue, 12 Sep 2017 15:40:01 +0200 + +linux (4.4.0-95.118) xenial; urgency=low + + * linux: 4.4.0-95.118 -proposed tracker (LP: #1715651) + + * Xenial update to 4.4.78 stable release broke Address Sanitizer + (LP: #1715636) + - mm: revert x86_64 and arm64 ELF_ET_DYN_BASE base changes + + -- Kleber Sacilotto de Souza Thu, 07 Sep 2017 17:26:15 +0200 + +linux (4.4.0-94.117) xenial; urgency=low + + * linux: 4.4.0-94.117 -proposed tracker (LP: #1713462) + + * mwifiex causes kernel oops when AP mode is enabled (LP: #1712746) + - SAUCE: net/wireless: do not dereference invalid pointer + - SAUCE: mwifiex: do not dereference invalid pointer + + * Backport more recent Broadcom bnxt_en driver (LP: #1711056) + - SAUCE: bnxt_en_bpo: Import bnxt_en driver version 1.8.1 + - SAUCE: bnxt_en_bpo: Drop distro out-of-tree detection logic + - SAUCE: bnxt_en_bpo: Remove unnecessary compile flags + - SAUCE: bnxt_en_bpo: Move config settings to Kconfig + - SAUCE: bnxt_en_bpo: Remove PCI_IDs handled by the regular driver + - SAUCE: bnxt_en_bpo: Rename the backport driver to bnxt_en_bpo + - bnxt_en_bpo: [Config] Enable CONFIG_BNXT_BPO=m + + * HID: multitouch: Support ALPS PTP Stick and Touchpad devices (LP: #1712481) + - HID: multitouch: Support PTP Stick and Touchpad device + - SAUCE: HID: multitouch: Support ALPS PTP stick with pid 0x120A + + * igb: Support using Broadcom 54616 as PHY (LP: #1712024) + - SAUCE: igb: add support for using Broadcom 54616 as PHY + + * IPR driver causes multipath to fail paths/stuck IO on Medium Errors + (LP: #1682644) + - scsi: ipr: do not set DID_PASSTHROUGH on CHECK CONDITION + + * accessing /dev/hvc1 with stress-ng on Ubuntu xenial causes crash + (LP: #1711401) + - tty/hvc: Use IRQF_SHARED for OPAL hvc consoles + + * memory-hotplug test needs to be fixed (LP: #1710868) + - selftests: typo correction for memory-hotplug test + - selftests: check hot-pluggagble memory for memory-hotplug test + - selftests: check percentage range for memory-hotplug test + - selftests: add missing test name in memory-hotplug test + - selftests: fix memory-hotplug test + + * HP lt4132 LTE/HSPA+ 4G Module (03f0:a31d) does not work (LP: #1707643) + - net: cdc_mbim: apply "NDP to end" quirk to HP lt4132 + + * Migrating KSM page causes the VM lock up as the KSM page merging list is too + large (LP: #1680513) + - ksm: introduce ksm_max_page_sharing per page deduplication limit + - ksm: fix use after free with merge_across_nodes = 0 + - ksm: cleanup stable_node chain collapse case + - ksm: swap the two output parameters of chain/chain_prune + - ksm: optimize refile of stable_node_dup at the head of the chain + + * sort ABI files with C.UTF-8 locale (LP: #1712345) + - [Packaging] sort ABI files with C.UTF-8 locale + + * Include Broadcom GPL modules in Xenial Kernel (LP: #1665783) + - [Config] OpenNSL Kconfig/Makefile + - Import OpenNSL v3.1.0.17 + - [Config] CONFIG_OPENNSL=y for amd64 + - OpenNSL: Enable Kconfig and build + - SAUCE: opennsl: add proper CFLAGS + + * Xenial update to 4.4.83 stable release (LP: #1711557) + - cpuset: fix a deadlock due to incomplete patching of cpusets_enabled() + - mm: ratelimit PFNs busy info message + - iscsi-target: fix memory leak in iscsit_setup_text_cmd() + - iscsi-target: Fix iscsi_np reset hung task during parallel delete + - fuse: initialize the flock flag in fuse_file on allocation + - nfs/flexfiles: fix leak of nfs4_ff_ds_version arrays + - USB: serial: option: add D-Link DWM-222 device ID + - USB: serial: cp210x: add support for Qivicon USB ZigBee dongle + - USB: serial: pl2303: add new ATEN device id + - usb: musb: fix tx fifo flush handling again + - USB: hcd: Mark secondary HCD as dead if the primary one died + - staging:iio:resolver:ad2s1210 fix negative IIO_ANGL_VEL read + - iio: accel: bmc150: Always restore device to normal mode after suspend- + resume + - iio: light: tsl2563: use correct event code + - uas: Add US_FL_IGNORE_RESIDUE for Initio Corporation INIC-3069 + - USB: Check for dropped connection before switching to full speed + - usb: core: unlink urbs from the tail of the endpoint's urb_list + - usb: quirks: Add no-lpm quirk for Moshi USB to Ethernet Adapter + - usb:xhci:Add quirk for Certain failing HP keyboard on reset after resume + - iio: adc: vf610_adc: Fix VALT selection value for REFSEL bits + - pnfs/blocklayout: require 64-bit sector_t + - pinctrl: sunxi: add a missing function of A10/A20 pinctrl driver + - pinctrl: samsung: Remove bogus irq_[un]mask from resource management + - Linux 4.4.83 + + * Xenial update to 4.4.82 stable release (LP: #1711535) + - tcp: avoid setting cwnd to invalid ssthresh after cwnd reduction states + - net: fix keepalive code vs TCP_FASTOPEN_CONNECT + - bpf, s390: fix jit branch offset related to ldimm64 + - net: sched: set xt_tgchk_param par.nft_compat as 0 in ipt_init_target + - tcp: fastopen: tcp_connect() must refresh the route + - net: avoid skb_warn_bad_offload false positives on UFO + - sparc64: Prevent perf from running during super critical sections + - KVM: arm/arm64: Handle hva aging while destroying the vm + - mm/mempool: avoid KASAN marking mempool poison checks as use-after-free + - Linux 4.4.82 + + * Xenial update to 4.4.81 stable release (LP: #1711526) + - libata: array underflow in ata_find_dev() + - workqueue: restore WQ_UNBOUND/max_active==1 to be ordered + - ALSA: hda - Fix speaker output from VAIO VPCL14M1R + - ASoC: do not close shared backend dailink + - KVM: async_pf: make rcu irq exit if not triggered from idle task + - mm/page_alloc: Remove kernel address exposure in free_reserved_area() + - ext4: fix SEEK_HOLE/SEEK_DATA for blocksize < pagesize + - ext4: fix overflow caused by missing cast in ext4_resize_fs() + - ARM: dts: armada-38x: Fix irq type for pca955 + - media: platform: davinci: return -EINVAL for VPFE_CMD_S_CCDC_RAW_PARAMS + ioctl + - target: Avoid mappedlun symlink creation during lun shutdown + - iscsi-target: Always wait for kthread_should_stop() before kthread exit + - iscsi-target: Fix early sk_data_ready LOGIN_FLAGS_READY race + - iscsi-target: Fix initial login PDU asynchronous socket close OOPs + - iscsi-target: Fix delayed logout processing greater than + SECONDS_FOR_LOGOUT_COMP + - iser-target: Avoid isert_conn->cm_id dereference in isert_login_recv_done + - mm, mprotect: flush TLB if potentially racing with a parallel reclaim + leaving stale TLB entries + - media: lirc: LIRC_GET_REC_RESOLUTION should return microseconds + - f2fs: sanity check checkpoint segno and blkoff + - drm: rcar-du: fix backport bug + - saa7164: fix double fetch PCIe access condition + - ipv4: ipv6: initialize treq->txhash in cookie_v[46]_check() + - net: Zero terminate ifr_name in dev_ifname(). + - ipv6: avoid overflow of offset in ip6_find_1stfragopt + - ipv4: initialize fib_trie prior to register_netdev_notifier call. + - rtnetlink: allocate more memory for dev_set_mac_address() + - mcs7780: Fix initialization when CONFIG_VMAP_STACK is enabled + - openvswitch: fix potential out of bound access in parse_ct + - packet: fix use-after-free in prb_retire_rx_blk_timer_expired() + - ipv6: Don't increase IPSTATS_MIB_FRAGFAILS twice in ip6_fragment() + - net: ethernet: nb8800: Handle all 4 RGMII modes identically + - dccp: fix a memleak that dccp_ipv6 doesn't put reqsk properly + - dccp: fix a memleak that dccp_ipv4 doesn't put reqsk properly + - dccp: fix a memleak for dccp_feat_init err process + - sctp: don't dereference ptr before leaving _sctp_walk_{params, errors}() + - sctp: fix the check for _sctp_walk_params and _sctp_walk_errors + - net/mlx5: Fix command bad flow on command entry allocation failure + - net: phy: Correctly process PHY_HALTED in phy_stop_machine() + - net: phy: Fix PHY unbind crash + - xen-netback: correctly schedule rate-limited queues + - sparc64: Measure receiver forward progress to avoid send mondo timeout + - wext: handle NULL extra data in iwe_stream_add_point better + - sh_eth: R8A7740 supports packet shecksumming + - net: phy: dp83867: fix irq generation + - tg3: Fix race condition in tg3_get_stats64(). + - x86/boot: Add missing declaration of string functions + - phy state machine: failsafe leave invalid RUNNING state + - scsi: qla2xxx: Get mutex lock before checking optrom_state + - drm/virtio: fix framebuffer sparse warning + - virtio_blk: fix panic in initialization error path + - ARM: 8632/1: ftrace: fix syscall name matching + - mm, slab: make sure that KMALLOC_MAX_SIZE will fit into MAX_ORDER + - lib/Kconfig.debug: fix frv build failure + - signal: protect SIGNAL_UNKILLABLE from unintentional clearing. + - mm: don't dereference struct page fields of invalid pages + - workqueue: implicit ordered attribute should be overridable + - Linux 4.4.81 + + * Xenial update to 4.4.80 stable release (LP: #1710646) + - af_key: Add lock to key dump + - pstore: Make spinlock per zone instead of global + - powerpc/pseries: Fix of_node_put() underflow during reconfig remove + - crypto: authencesn - Fix digest_null crash + - md/raid5: add thread_group worker async_tx_issue_pending_all + - drm/vmwgfx: Fix gcc-7.1.1 warning + - drm/nouveau/bar/gf100: fix access to upper half of BAR2 + - KVM: PPC: Book3S HV: Context-switch EBB registers properly + - KVM: PPC: Book3S HV: Restore critical SPRs to host values on guest exit + - KVM: PPC: Book3S HV: Reload HTM registers explicitly + - KVM: PPC: Book3S HV: Save/restore host values of debug registers + - Revert "powerpc/numa: Fix percpu allocations to be NUMA aware" + - Staging: comedi: comedi_fops: Avoid orphaned proc entry + - drm/rcar: Nuke preclose hook + - drm: rcar-du: Perform initialization/cleanup at probe/remove time + - drm: rcar-du: Simplify and fix probe error handling + - perf intel-pt: Fix ip compression + - perf intel-pt: Fix last_ip usage + - perf intel-pt: Use FUP always when scanning for an IP + - perf intel-pt: Ensure never to set 'last_ip' when packet 'count' is zero + - xfs: don't BUG() on mixed direct and mapped I/O + - nfc: fdp: fix NULL pointer dereference + - net: phy: Do not perform software reset for Generic PHY + - isdn: Fix a sleep-in-atomic bug + - isdn/i4l: fix buffer overflow + - ath10k: fix null deref on wmi-tlv when trying spectral scan + - wil6210: fix deadlock when using fw_no_recovery option + - mailbox: always wait in mbox_send_message for blocking Tx mode + - mailbox: skip complete wait event if timer expired + - mailbox: handle empty message in tx_tick + - mpt3sas: Don't overreach ioc->reply_post[] during initialization + - kaweth: fix firmware download + - kaweth: fix oops upon failed memory allocation + - sched/cgroup: Move sched_online_group() back into css_online() to fix crash + - PM / Domains: defer dev_pm_domain_set() until genpd->attach_dev succeeds if + present + - RDMA/uverbs: Fix the check for port number + - libnvdimm, btt: fix btt_rw_page not returning errors + - ipmi/watchdog: fix watchdog timeout set on reboot + - v4l: s5c73m3: fix negation operator + - pstore: Allow prz to control need for locking + - pstore: Correctly initialize spinlock and flags + - pstore: Use dynamic spinlock initializer + - net: skb_needs_check() accepts CHECKSUM_NONE for tx + - sched/cputime: Fix prev steal time accouting during CPU hotplug + - xen/blkback: don't free be structure too early + - xen/blkback: don't use xen_blkif_get() in xen-blkback kthread + - tpm: fix a kernel memory leak in tpm-sysfs.c + - tpm: Replace device number bitmap with IDR + - x86/mce/AMD: Make the init code more robust + - r8169: add support for RTL8168 series add-on card. + - ARM: dts: n900: Mark eMMC slot with no-sdio and no-sd flags + - net/mlx4: Remove BUG_ON from ICM allocation routine + - drm/msm: Ensure that the hardware write pointer is valid + - drm/msm: Verify that MSM_SUBMIT_BO_FLAGS are set + - vfio-pci: use 32-bit comparisons for register address for gcc-4.5 + - irqchip/keystone: Fix "scheduling while atomic" on rt + - ASoC: tlv320aic3x: Mark the RESET register as volatile + - spi: dw: Make debugfs name unique between instances + - ASoC: nau8825: fix invalid configuration in Pre-Scalar of FLL + - irqchip/mxs: Enable SKIP_SET_WAKE and MASK_ON_SUSPEND + - openrisc: Add _text symbol to fix ksym build error + - dmaengine: ioatdma: Add Skylake PCI Dev ID + - dmaengine: ioatdma: workaround SKX ioatdma version + - dmaengine: ti-dma-crossbar: Add some 'of_node_put()' in error path. + - ARM64: zynqmp: Fix W=1 dtc 1.4 warnings + - ARM64: zynqmp: Fix i2c node's compatible string + - ARM: s3c2410_defconfig: Fix invalid values for NF_CT_PROTO_* + - ACPI / scan: Prefer devices without _HID/_CID for _ADR matching + - usb: gadget: Fix copy/pasted error message + - Btrfs: adjust outstanding_extents counter properly when dio write is split + - tools lib traceevent: Fix prev/next_prio for deadline tasks + - xfrm: Don't use sk_family for socket policy lookups + - perf tools: Install tools/lib/traceevent plugins with install-bin + - perf symbols: Robustify reading of build-id from sysfs + - video: fbdev: cobalt_lcdfb: Handle return NULL error from devm_ioremap + - vfio-pci: Handle error from pci_iomap + - arm64: mm: fix show_pte KERN_CONT fallout + - nvmem: imx-ocotp: Fix wrong register size + - sh_eth: enable RX descriptor word 0 shift on SH7734 + - ALSA: usb-audio: test EP_FLAG_RUNNING at urb completion + - HID: ignore Petzl USB headlamp + - scsi: fnic: Avoid sending reset to firmware when another reset is in + progress + - scsi: snic: Return error code on memory allocation failure + - ASoC: dpcm: Avoid putting stream state to STOP when FE stream is paused + - Linux 4.4.80 + + * Please only recommend or suggest initramfs-tools | linux-initramfs-tool for + kernels able to boot without initramfs (LP: #1700972) + - [Debian] Don't depend on initramfs-tools + + -- Kleber Sacilotto de Souza Mon, 28 Aug 2017 17:07:08 +0200 + +linux (4.4.0-93.116) xenial; urgency=low + + * linux: 4.4.0-93.116 -proposed tracker (LP: #1709296) + + * Creating conntrack entry failure with kernel 4.4.0-89 (LP: #1709032) + - Revert "Revert "netfilter: synproxy: fix conntrackd interaction"" + - netfilter: nf_ct_ext: fix possible panic after nf_ct_extend_unregister + + * CVE-2017-1000112 + - Revert "udp: consistently apply ufo or fragmentation" + - udp: consistently apply ufo or fragmentation + + * CVE-2017-1000111 + - Revert "net-packet: fix race in packet_set_ring on PACKET_RESERVE" + - packet: fix tp_reserve race in packet_set_ring + + * kernel BUG at [tty_ldisc_reinit] mm/slub.c! (LP: #1709126) + - tty: Simplify tty_set_ldisc() exit handling + - tty: Reset c_line from driver's init_termios + - tty: Handle NULL tty->ldisc + - tty: Move tty_ldisc_kill() + - tty: Use 'disc' for line discipline index name + - tty: Refactor tty_ldisc_reinit() for reuse + - tty: Destroy ldisc instance on hangup + + * atheros bt failed after S3 (LP: #1706833) + - SAUCE: Bluetooth: Make request workqueue freezable + + * The Precision Touchpad(PTP) button sends incorrect event code (LP: #1708372) + - HID: multitouch: handle external buttons for Precision Touchpads + + * Set CONFIG_SATA_HIGHBANK=y on armhf (LP: #1703430) + - [Config] CONFIG_SATA_HIGHBANK=y + + * xfs slab objects (memory) leak when xfs shutdown is called (LP: #1706132) + - xfs: fix xfs_log_ticket leak in xfs_end_io() after fs shutdown + + * Adt tests of src:linux time out often on armhf lxc containers (LP: #1705495) + - [Packaging] tests -- reduce rebuild test to one flavour + + * CVE-2017-7495 + - ext4: fix data exposure after a crash + + * ubuntu/rsi driver downlink wifi throughput drops to 5-6 Mbps when BT + keyboard is connected (LP: #1706991) + - SAUCE: Redpine: enable power save by default for coex mode + - SAUCE: Redpine: uapsd configuration changes + + * [Hyper-V] hv_netvsc: Exclude non-TCP port numbers from vRSS hashing + (LP: #1690174) + - hv_netvsc: Exclude non-TCP port numbers from vRSS hashing + + * ath10k doesn't report full RSSI information (LP: #1706531) + - ath10k: add per chain RSSI reporting + + * ideapad_laptop don't support v310-14isk (LP: #1705378) + - platform/x86: ideapad-laptop: Add several models to no_hw_rfkill + + * [8087:0a2b] Failed to load bluetooth firmware(might affect some other Intel + bt devices) (LP: #1705633) + - Bluetooth: btintel: Create common Intel Version Read function + - Bluetooth: Use switch statement for Intel hardware variants + - Bluetooth: Replace constant hw_variant from Intel Bluetooth firmware + filename + - Bluetooth: hci_intel: Fix firmware file name to use hw_variant + - Bluetooth: btintel: Add MODULE_FIRMWARE entries for iBT 3.5 controllers + + * xhci_hcd: ERROR Transfer event TRB DMA ptr not part of current TD ep_index 2 + comp_code 13 (LP: #1667750) + - xhci: Bad Ethernet performance plugged in ASM1042A host + + * OpenPower: Some multipaths temporarily have only a single path + (LP: #1696445) + - scsi: ses: don't get power status of SES device slot on probe + + * Hotkeys on new Thinkpad systems aren't working (LP: #1705169) + - platform/x86: thinkpad_acpi: Adding new hotkey ID for Lenovo thinkpad + - platform/x86: thinkpad_acpi: guard generic hotkey case + - platform/x86: thinkpad_acpi: add mapping for new hotkeys + + * CVE-2015-7837 + - SAUCE: (no-up) kexec/uefi: copy secure_boot flag in boot params across kexec + reboot + + * misleading kernel warning skb_warn_bad_offload during checksum calculation + (LP: #1705447) + - net: reduce skb_warn_bad_offload() noise + + * bonding: stack dump when unregistering a netdev (LP: #1704102) + - bonding: avoid NETDEV_CHANGEMTU event when unregistering slave + + * Ubuntu 16.04 IOB Error when the Mustang board rebooted (LP: #1693673) + - drivers: net: xgene: Fix redundant prefetch buffer cleanup + + * Ubuntu16.04: NVMe 4K+T10 DIF/DIX format returns I/O error on dd with split + op (LP: #1689946) + - blk-mq: NVMe 512B/4K+T10 DIF/DIX format returns I/O error on dd with split + op + + * linux >= 4.2: bonding 802.3ad does not work with 5G, 25G and 50G link speeds + (LP: #1697892) + - bonding: add 802.3ad support for 100G speeds + - bonding: fix 802.3ad aggregator reselection + - bonding: add 802.3ad support for 25G speeds + - bonding: fix 802.3ad support for 5G and 50G speeds + + * Xenial update to 4.4.79 stable release (LP: #1707233) + - disable new gcc-7.1.1 warnings for now + - ir-core: fix gcc-7 warning on bool arithmetic + - s5p-jpeg: don't return a random width/height + - thermal: cpu_cooling: Avoid accessing potentially freed structures + - ath9k: fix tx99 use after free + - ath9k: fix tx99 bus error + - NFC: fix broken device allocation + - NFC: nfcmrvl_uart: add missing tty-device sanity check + - NFC: nfcmrvl: do not use device-managed resources + - NFC: nfcmrvl: use nfc-device for firmware download + - NFC: nfcmrvl: fix firmware-management initialisation + - nfc: Ensure presence of required attributes in the activate_target handler + - nfc: Fix the sockaddr length sanitization in llcp_sock_connect + - NFC: Add sockaddr length checks before accessing sa_family in bind handlers + - perf intel-pt: Move decoder error setting into one condition + - perf intel-pt: Improve sample timestamp + - perf intel-pt: Fix missing stack clear + - perf intel-pt: Ensure IP is zero when state is INTEL_PT_STATE_NO_IP + - perf intel-pt: Clear FUP flag on error + - Bluetooth: use constant time memory comparison for secret values + - wlcore: fix 64K page support + - ASoC: compress: Derive substream from stream based on direction + - PM / Domains: Fix unsafe iteration over modified list of device links + - PM / Domains: Fix unsafe iteration over modified list of domain providers + - scsi: ses: do not add a device to an enclosure if enclosure_add_links() + fails. + - iscsi-target: Add login_keys_workaround attribute for non RFC initiators + - powerpc/64: Fix atomic64_inc_not_zero() to return an int + - powerpc: Fix emulation of mcrf in emulate_step() + - powerpc: Fix emulation of mfocrf in emulate_step() + - powerpc/asm: Mark cr0 as clobbered in mftb() + - af_key: Fix sadb_x_ipsecrequest parsing + - PCI/PM: Restore the status of PCI devices across hibernation + - ipvs: SNAT packet replies only for NATed connections + - xhci: fix 20000ms port resume timeout + - xhci: Fix NULL pointer dereference when cleaning up streams for removed host + - usb: storage: return on error to avoid a null pointer dereference + - USB: cdc-acm: add device-id for quirky printer + - usb: renesas_usbhs: fix usbhsc_resume() for !USBHSF_RUNTIME_PWCTRL + - usb: renesas_usbhs: gadget: disable all eps when the driver stops + - md: don't use flush_signals in userspace processes + - x86/xen: allow userspace access during hypercalls + - cx88: Fix regression in initial video standard setting + - Raid5 should update rdev->sectors after reshape + - s390/syscalls: Fix out of bounds arguments access + - drm/amd/amdgpu: Return error if initiating read out of range on vram + - drm/radeon/ci: disable mclk switching for high refresh rates (v2) + - drm/radeon: Fix eDP for single-display iMac10,1 (v2) + - ipmi: use rcu lock around call to intf->handlers->sender() + - ipmi:ssif: Add missing unlock in error branch + - f2fs: Don't clear SGID when inheriting ACLs + - vfio: Fix group release deadlock + - vfio: New external user group/file match + - ftrace: Fix uninitialized variable in match_records() + - MIPS: Fix mips_atomic_set() retry condition + - MIPS: Fix mips_atomic_set() with EVA + - MIPS: Negate error syscall return in trace + - x86/acpi: Prevent out of bound access caused by broken ACPI tables + - x86/ioapic: Pass the correct data to unmask_ioapic_irq() + - MIPS: Fix MIPS I ISA /proc/cpuinfo reporting + - MIPS: Save static registers before sysmips + - MIPS: Actually decode JALX in `__compute_return_epc_for_insn' + - MIPS: Fix unaligned PC interpretation in `compute_return_epc' + - MIPS: math-emu: Prevent wrong ISA mode instruction emulation + - MIPS: Send SIGILL for BPOSGE32 in `__compute_return_epc_for_insn' + - MIPS: Rename `sigill_r6' to `sigill_r2r6' in `__compute_return_epc_for_insn' + - MIPS: Send SIGILL for linked branches in `__compute_return_epc_for_insn' + - MIPS: Fix a typo: s/preset/present/ in r2-to-r6 emulation error message + - Input: i8042 - fix crash at boot time + - NFS: only invalidate dentrys that are clearly invalid. + - udf: Fix deadlock between writeback and udf_setsize() + - target: Fix COMPARE_AND_WRITE caw_sem leak during se_cmd quiesce + - perf annotate: Fix broken arrow at row 0 connecting jmp instruction to its + target + - Revert "perf/core: Drop kernel samples even though :u is specified" + - staging: rtl8188eu: add TL-WN722N v2 support + - ceph: fix race in concurrent readdir + - RDMA/core: Initialize port_num in qp_attr + - drm/mst: Fix error handling during MST sideband message reception + - drm/mst: Avoid dereferencing a NULL mstb in drm_dp_mst_handle_up_req() + - drm/mst: Avoid processing partially received up/down message transactions + - of: device: Export of_device_{get_modalias, uvent_modalias} to modules + - spmi: Include OF based modalias in device uevent + - tracing: Fix kmemleak in instance_rmdir + - alarmtimer: don't rate limit one-shot timers + - Linux 4.4.79 + + * Xenial update to 4.4.78 stable release (LP: #1705707) + - net_sched: fix error recovery at qdisc creation + - net: sched: Fix one possible panic when no destroy callback + - net/phy: micrel: configure intterupts after autoneg workaround + - ipv6: avoid unregistering inet6_dev for loopback + - net: dp83640: Avoid NULL pointer dereference. + - tcp: reset sk_rx_dst in tcp_disconnect() + - net: prevent sign extension in dev_get_stats() + - bpf: prevent leaking pointer via xadd on unpriviledged + - net: handle NAPI_GRO_FREE_STOLEN_HEAD case also in napi_frags_finish() + - ipv6: dad: don't remove dynamic addresses if link is down + - net: ipv6: Compare lwstate in detecting duplicate nexthops + - vrf: fix bug_on triggered by rx when destroying a vrf + - rds: tcp: use sock_create_lite() to create the accept socket + - brcmfmac: fix possible buffer overflow in brcmf_cfg80211_mgmt_tx() + - cfg80211: Define nla_policy for NL80211_ATTR_LOCAL_MESH_POWER_MODE + - cfg80211: Validate frequencies nested in NL80211_ATTR_SCAN_FREQUENCIES + - cfg80211: Check if PMKID attribute is of expected size + - irqchip/gic-v3: Fix out-of-bound access in gic_set_affinity + - parisc: Report SIGSEGV instead of SIGBUS when running out of stack + - parisc: use compat_sys_keyctl() + - parisc: DMA API: return error instead of BUG_ON for dma ops on non dma devs + - parisc/mm: Ensure IRQs are off in switch_mm() + - tools/lib/lockdep: Reduce MAX_LOCK_DEPTH to avoid overflowing lock_chain/: + Depth + - kernel/extable.c: mark core_kernel_text notrace + - mm/list_lru.c: fix list_lru_count_node() to be race free + - fs/dcache.c: fix spin lockup issue on nlru->lock + - checkpatch: silence perl 5.26.0 unescaped left brace warnings + - binfmt_elf: use ELF_ET_DYN_BASE only for PIE + - arm: move ELF_ET_DYN_BASE to 4MB + - arm64: move ELF_ET_DYN_BASE to 4GB / 4MB + - powerpc: move ELF_ET_DYN_BASE to 4GB / 4MB + - s390: reduce ELF_ET_DYN_BASE + - exec: Limit arg stack to at most 75% of _STK_LIM + - vt: fix unchecked __put_user() in tioclinux ioctls + - mnt: In umount propagation reparent in a separate pass + - mnt: In propgate_umount handle visiting mounts in any order + - mnt: Make propagate_umount less slow for overlapping mount propagation trees + - selftests/capabilities: Fix the test_execve test + - tpm: Get rid of chip->pdev + - tpm: Provide strong locking for device removal + - Add "shutdown" to "struct class". + - tpm: Issue a TPM2_Shutdown for TPM2 devices. + - mm: fix overflow check in expand_upwards() + - crypto: talitos - Extend max key length for SHA384/512-HMAC and AEAD + - crypto: atmel - only treat EBUSY as transient if backlog + - crypto: sha1-ssse3 - Disable avx2 + - crypto: caam - fix signals handling + - sched/topology: Fix overlapping sched_group_mask + - sched/topology: Optimize build_group_mask() + - PM / wakeirq: Convert to SRCU + - PM / QoS: return -EINVAL for bogus strings + - tracing: Use SOFTIRQ_OFFSET for softirq dectection for more accurate results + - KVM: x86: disable MPX if host did not enable MPX XSAVE features + - kvm: vmx: Do not disable intercepts for BNDCFGS + - kvm: x86: Guest BNDCFGS requires guest MPX support + - kvm: vmx: Check value written to IA32_BNDCFGS + - kvm: vmx: allow host to access guest MSR_IA32_BNDCFGS + - Linux 4.4.78 + + * Xenial update to 4.4.77 stable release (LP: #1705238) + - fs: add a VALID_OPEN_FLAGS + - fs: completely ignore unknown open flags + - driver core: platform: fix race condition with driver_override + - bgmac: reset & enable Ethernet core before using it + - mm: fix classzone_idx underflow in shrink_zones() + - tracing/kprobes: Allow to create probe with a module name starting with a + digit + - usb: dwc3: replace %p with %pK + - USB: serial: cp210x: add ID for CEL EM3588 USB ZigBee stick + - Add USB quirk for HVR-950q to avoid intermittent device resets + - usb: usbip: set buffer pointers to NULL after free + - usb: Fix typo in the definition of Endpoint[out]Request + - mac80211_hwsim: Replace bogus hrtimer clockid + - sysctl: don't print negative flag for proc_douintvec + - sysctl: report EINVAL if value is larger than UINT_MAX for proc_douintvec + - pinctrl: sh-pfc: r8a7791: Fix SCIF2 pinmux data + - pinctrl: meson: meson8b: fix the NAND DQS pins + - pinctrl: sunxi: Fix SPDIF function name for A83T + - pinctrl: mxs: atomically switch mux and drive strength config + - pinctrl: sh-pfc: Update info pointer after SoC-specific init + - USB: serial: option: add two Longcheer device ids + - USB: serial: qcserial: new Sierra Wireless EM7305 device ID + - gfs2: Fix glock rhashtable rcu bug + - x86/tools: Fix gcc-7 warning in relocs.c + - x86/uaccess: Optimize copy_user_enhanced_fast_string() for short strings + - ath10k: override CE5 config for QCA9377 + - KEYS: Fix an error code in request_master_key() + - RDMA/uverbs: Check port number supplied by user verbs cmds + - mqueue: fix a use-after-free in sys_mq_notify() + - tools include: Add a __fallthrough statement + - tools string: Use __fallthrough in perf_atoll() + - tools strfilter: Use __fallthrough + - perf top: Use __fallthrough + - perf intel-pt: Use __fallthrough + - perf thread_map: Correctly size buffer used with dirent->dt_name + - perf scripting perl: Fix compile error with some perl5 versions + - perf tests: Avoid possible truncation with dirent->d_name + snprintf + - perf bench numa: Avoid possible truncation when using snprintf() + - perf tools: Use readdir() instead of deprecated readdir_r() + - perf thread_map: Use readdir() instead of deprecated readdir_r() + - perf script: Use readdir() instead of deprecated readdir_r() + - perf tools: Remove duplicate const qualifier + - perf annotate browser: Fix behaviour of Shift-Tab with nothing focussed + - perf pmu: Fix misleadingly indented assignment (whitespace) + - perf dwarf: Guard !x86_64 definitions under #ifdef else clause + - perf trace: Do not process PERF_RECORD_LOST twice + - perf tests: Remove wrong semicolon in while loop in CQM test + - perf tools: Use readdir() instead of deprecated readdir_r() again + - md: fix incorrect use of lexx_to_cpu in does_sb_need_changing + - md: fix super_offset endianness in super_1_rdev_size_change + - tcp: fix tcp_mark_head_lost to check skb len before fragmenting + - staging: vt6556: vnt_start Fix missing call to vnt_key_init_table. + - staging: comedi: fix clean-up of comedi_class in comedi_init() + - ext4: check return value of kstrtoull correctly in reserved_clusters_store + - x86/mm/pat: Don't report PAT on CPUs that don't support it + - saa7134: fix warm Medion 7134 EEPROM read + - Linux 4.4.77 + + -- Kleber Sacilotto de Souza Fri, 11 Aug 2017 16:51:50 +0200 + +linux (4.4.0-92.115) xenial; urgency=low + + * linux: 4.4.0-92.115 -proposed tracker (LP: #1709812) + + * Creating conntrack entry failure with kernel 4.4.0-89 (LP: #1709032) + - Revert "netfilter: synproxy: fix conntrackd interaction" + + -- Kleber Sacilotto de Souza Thu, 10 Aug 2017 10:29:51 +0200 + linux (4.4.0-91.114) xenial; urgency=low * CVE-2017-1000112 diff -u linux-4.4.0/debian.master/config/amd64/config.common.amd64 linux-4.4.0/debian.master/config/amd64/config.common.amd64 --- linux-4.4.0/debian.master/config/amd64/config.common.amd64 +++ linux-4.4.0/debian.master/config/amd64/config.common.amd64 @@ -74,7 +74,6 @@ CONFIG_DMA_SHARED_BUFFER=y CONFIG_DMA_VIRTUAL_CHANNELS=m # CONFIG_DM_DEBUG is not set -# CONFIG_DM_MQ_DEFAULT is not set CONFIG_DNET=m CONFIG_DRM=m CONFIG_DUMMY_IRQ=m @@ -358,7 +357,6 @@ CONFIG_SCSI_INITIO=m CONFIG_SCSI_IPS=m CONFIG_SCSI_LPFC=m -# CONFIG_SCSI_MQ_DEFAULT is not set CONFIG_SCSI_MVSAS=m CONFIG_SCSI_MVUMI=m CONFIG_SCSI_PM8001=m diff -u linux-4.4.0/debian.master/config/amd64/config.flavour.generic linux-4.4.0/debian.master/config/amd64/config.flavour.generic --- linux-4.4.0/debian.master/config/amd64/config.flavour.generic +++ linux-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-4.4.0/debian.master/config/amd64/config.flavour.lowlatency linux-4.4.0/debian.master/config/amd64/config.flavour.lowlatency --- linux-4.4.0/debian.master/config/amd64/config.flavour.lowlatency +++ linux-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-4.4.0/debian.master/config/annotations linux-4.4.0/debian.master/config/annotations --- linux-4.4.0/debian.master/config/annotations +++ linux-4.4.0/debian.master/config/annotations @@ -3875,7 +3875,7 @@ # Menu: Device Drivers >> Multiple devices driver support (RAID and LVM) >> Device mapper support CONFIG_BLK_DEV_DM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> -CONFIG_DM_MQ_DEFAULT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_DM_MQ_DEFAULT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_DM_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'y'}> CONFIG_DM_CRYPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> CONFIG_DM_SNAPSHOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> @@ -5201,7 +5201,7 @@ # Menu: Device Drivers >> SCSI device support >> SCSI device support CONFIG_SCSI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> -CONFIG_SCSI_MQ_DEFAULT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_SCSI_MQ_DEFAULT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_SCSI_PROC_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> CONFIG_BLK_DEV_SD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> CONFIG_CHR_DEV_ST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> @@ -5502,7 +5502,7 @@ # Menu: Device Drivers >> Serial ATA and Parallel ATA drivers (libata) >> ATA SFF support (for legacy IDE and PATA) >> ATA BMDMA support CONFIG_ATA_BMDMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> CONFIG_ATA_PIIX policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'm', 'i386': 'y', 'powerpc': 'm', 'ppc64el': 'm'}> -CONFIG_SATA_HIGHBANK policy<{'armhf': 'm'}> +CONFIG_SATA_HIGHBANK policy<{'armhf': 'y'}> CONFIG_SATA_MV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> CONFIG_SATA_NV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> CONFIG_SATA_PROMISE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> @@ -5557,6 +5557,7 @@ CONFIG_PATA_ACPI policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> CONFIG_ATA_GENERIC policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'm', 'i386': 'y', 'powerpc': 'm', 'ppc64el': 'm'}> # +CONFIG_SATA_HIGHBANK mark note CONFIG_PATA_HPT3X3_DMA note # Menu: Device Drivers >> Sonics Silicon Backplane diff -u linux-4.4.0/debian.master/config/arm64/config.common.arm64 linux-4.4.0/debian.master/config/arm64/config.common.arm64 --- linux-4.4.0/debian.master/config/arm64/config.common.arm64 +++ linux-4.4.0/debian.master/config/arm64/config.common.arm64 @@ -75,7 +75,6 @@ CONFIG_DMA_SHARED_BUFFER=y CONFIG_DMA_VIRTUAL_CHANNELS=y # CONFIG_DM_DEBUG is not set -# CONFIG_DM_MQ_DEFAULT is not set CONFIG_DNET=m CONFIG_DRM=m CONFIG_DUMMY_IRQ=m @@ -273,6 +272,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 @@ -360,7 +360,6 @@ CONFIG_SCSI_INITIO=m CONFIG_SCSI_IPS=m CONFIG_SCSI_LPFC=m -# CONFIG_SCSI_MQ_DEFAULT is not set CONFIG_SCSI_MVSAS=m CONFIG_SCSI_MVUMI=m CONFIG_SCSI_PM8001=m diff -u linux-4.4.0/debian.master/config/armhf/config.common.armhf linux-4.4.0/debian.master/config/armhf/config.common.armhf --- linux-4.4.0/debian.master/config/armhf/config.common.armhf +++ linux-4.4.0/debian.master/config/armhf/config.common.armhf @@ -74,7 +74,6 @@ CONFIG_DMA_SHARED_BUFFER=y CONFIG_DMA_VIRTUAL_CHANNELS=y # CONFIG_DM_DEBUG is not set -# CONFIG_DM_MQ_DEFAULT is not set CONFIG_DNET=m CONFIG_DRM=m CONFIG_DUMMY_IRQ=m @@ -263,6 +262,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 @@ -349,7 +349,6 @@ CONFIG_SCSI_INITIO=m CONFIG_SCSI_IPS=m CONFIG_SCSI_LPFC=m -# CONFIG_SCSI_MQ_DEFAULT is not set CONFIG_SCSI_MVSAS=m CONFIG_SCSI_MVUMI=m CONFIG_SCSI_PM8001=m diff -u linux-4.4.0/debian.master/config/config.common.ubuntu linux-4.4.0/debian.master/config/config.common.ubuntu --- linux-4.4.0/debian.master/config/config.common.ubuntu +++ linux-4.4.0/debian.master/config/config.common.ubuntu @@ -909,6 +909,9 @@ CONFIG_BNX2X_SRIOV=y CONFIG_BNX2X_VXLAN=y CONFIG_BNXT=m +CONFIG_BNXT_BPO=m +CONFIG_BNXT_BPO_DCB=y +CONFIG_BNXT_BPO_SRIOV=y CONFIG_BNXT_SRIOV=y CONFIG_BOARD_TPCI200=m CONFIG_BONDING=m @@ -1910,6 +1913,7 @@ CONFIG_DM_LOG_USERSPACE=m CONFIG_DM_LOG_WRITES=m CONFIG_DM_MIRROR=m +# CONFIG_DM_MQ_DEFAULT is not set CONFIG_DM_MULTIPATH=m CONFIG_DM_MULTIPATH_QL=m CONFIG_DM_MULTIPATH_ST=m @@ -5496,6 +5500,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 +6555,7 @@ CONFIG_SATA_ACARD_AHCI=m CONFIG_SATA_AHCI=m CONFIG_SATA_FSL=m -CONFIG_SATA_HIGHBANK=m +CONFIG_SATA_HIGHBANK=y CONFIG_SATA_INIC162X=m CONFIG_SATA_MV=m CONFIG_SATA_NV=m @@ -6655,6 +6662,7 @@ CONFIG_SCSI_MPT2SAS_MAX_SGE=128 CONFIG_SCSI_MPT3SAS=m CONFIG_SCSI_MPT3SAS_MAX_SGE=128 +# CONFIG_SCSI_MQ_DEFAULT is not set # CONFIG_SCSI_MVSAS_DEBUG is not set # CONFIG_SCSI_MVSAS_TASKLET is not set CONFIG_SCSI_NCR53C406A=m diff -u linux-4.4.0/debian.master/config/i386/config.common.i386 linux-4.4.0/debian.master/config/i386/config.common.i386 --- linux-4.4.0/debian.master/config/i386/config.common.i386 +++ linux-4.4.0/debian.master/config/i386/config.common.i386 @@ -72,7 +72,6 @@ CONFIG_DMA_SHARED_BUFFER=y CONFIG_DMA_VIRTUAL_CHANNELS=m # CONFIG_DM_DEBUG is not set -# CONFIG_DM_MQ_DEFAULT is not set CONFIG_DNET=m CONFIG_DRM=m CONFIG_DUMMY_IRQ=m @@ -266,6 +265,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 @@ -354,7 +354,6 @@ CONFIG_SCSI_INITIO=m CONFIG_SCSI_IPS=m CONFIG_SCSI_LPFC=m -# CONFIG_SCSI_MQ_DEFAULT is not set CONFIG_SCSI_MVSAS=m CONFIG_SCSI_MVUMI=m CONFIG_SCSI_PM8001=m diff -u linux-4.4.0/debian.master/config/powerpc/config.common.powerpc linux-4.4.0/debian.master/config/powerpc/config.common.powerpc --- linux-4.4.0/debian.master/config/powerpc/config.common.powerpc +++ linux-4.4.0/debian.master/config/powerpc/config.common.powerpc @@ -70,7 +70,6 @@ CONFIG_DMA_SHARED_BUFFER=y CONFIG_DMA_VIRTUAL_CHANNELS=m # CONFIG_DM_DEBUG is not set -# CONFIG_DM_MQ_DEFAULT is not set CONFIG_DNET=m CONFIG_DRM=m CONFIG_DUMMY_IRQ=m @@ -259,6 +258,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 @@ -349,7 +349,6 @@ CONFIG_SCSI_INITIO=m CONFIG_SCSI_IPS=m CONFIG_SCSI_LPFC=m -# CONFIG_SCSI_MQ_DEFAULT is not set CONFIG_SCSI_MVSAS=m CONFIG_SCSI_MVUMI=m CONFIG_SCSI_PM8001=m diff -u linux-4.4.0/debian.master/config/ppc64el/config.common.ppc64el linux-4.4.0/debian.master/config/ppc64el/config.common.ppc64el --- linux-4.4.0/debian.master/config/ppc64el/config.common.ppc64el +++ linux-4.4.0/debian.master/config/ppc64el/config.common.ppc64el @@ -77,7 +77,6 @@ CONFIG_DMA_SHARED_BUFFER=y CONFIG_DMA_VIRTUAL_CHANNELS=m # CONFIG_DM_DEBUG is not set -# CONFIG_DM_MQ_DEFAULT is not set CONFIG_DNET=m CONFIG_DRM=m CONFIG_DUMMY_IRQ=m @@ -285,6 +284,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 @@ -397,7 +397,6 @@ CONFIG_SCSI_INITIO=m CONFIG_SCSI_IPS=m CONFIG_SCSI_LPFC=m -# CONFIG_SCSI_MQ_DEFAULT is not set CONFIG_SCSI_MVSAS=m CONFIG_SCSI_MVUMI=m CONFIG_SCSI_PM8001=m diff -u linux-4.4.0/debian.master/config/s390x/config.common.s390x linux-4.4.0/debian.master/config/s390x/config.common.s390x --- linux-4.4.0/debian.master/config/s390x/config.common.s390x +++ linux-4.4.0/debian.master/config/s390x/config.common.s390x @@ -65,7 +65,6 @@ # CONFIG_DMADEVICES is not set # CONFIG_DMA_SHARED_BUFFER is not set CONFIG_DM_DEBUG=y -CONFIG_DM_MQ_DEFAULT=y # CONFIG_DNET is not set # CONFIG_DRM is not set # CONFIG_DUMMY_IRQ is not set @@ -301,7 +300,6 @@ # CONFIG_SCSI_INITIO is not set # CONFIG_SCSI_IPS is not set # CONFIG_SCSI_LPFC is not set -CONFIG_SCSI_MQ_DEFAULT=y # CONFIG_SCSI_MVSAS is not set # CONFIG_SCSI_MVUMI is not set # CONFIG_SCSI_PM8001 is not set diff -u linux-4.4.0/debian.master/control.d/flavour-control.stub linux-4.4.0/debian.master/control.d/flavour-control.stub --- linux-4.4.0/debian.master/control.d/flavour-control.stub +++ linux-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-4.4.0/debian.master/d-i/modules/nic-modules linux-4.4.0/debian.master/d-i/modules/nic-modules --- linux-4.4.0/debian.master/d-i/modules/nic-modules +++ linux-4.4.0/debian.master/d-i/modules/nic-modules @@ -40,6 +40,7 @@ bmac ? bnx2 ? bnx2x ? +bnxt_en ? bonding ? brcmfmac ? brcmsmac ? diff -u linux-4.4.0/debian/changelog linux-4.4.0/debian/changelog --- linux-4.4.0/debian/changelog +++ linux-4.4.0/debian/changelog @@ -1,3 +1,977 @@ +linux (4.4.0-98.121) xenial; urgency=low + + * linux: 4.4.0-98.121 -proposed tracker (LP: #1722299) + + * Controller lockup detected on ProLiant DL380 Gen9 with P440 Controller + (LP: #1720359) + - scsi: hpsa: limit transfer length to 1MB + + * [Dell Docking IE][0bda:8153] Realtek USB Ethernet leads to system hang + (LP: #1720977) + - r8152: fix the list rx_done may be used without initialization + + * Add installer support for Broadcom BCM573xx network drivers. (LP: #1720466) + - d-i: Add bnxt_en to nic-modules. + + * snapcraft.yaml: add dpkg-dev to the build deps (LP: #1718886) + - snapcraft.yaml: add dpkg-dev to the build deps + + * Support setting I2C_TIMEOUT via ioctl for i2c-designware (LP: #1718578) + - i2c: designware: Use transfer timeout from ioctl I2C_TIMEOUT + + * 5U84 - ses driver isn't binding right - cannot blink lights on 1 of the 2 + 5u84 (LP: #1693369) + - scsi_transport_sas: add function to get SAS endpoint address + - ses: fix discovery of SATA devices in SAS enclosures + - scsi: sas: provide stub implementation for scsi_is_sas_rphy + - scsi: ses: Fix SAS device detection in enclosure + + * multipath -ll is not showing the disks which are actually multipath + (LP: #1718397) + - fs: aio: fix the increment of aio-nr and counting against aio-max-nr + + * Support Dell Wireless DW5819/5818 WWAN devices (LP: #1721455) + - SAUCE: USB: serial: qcserial: add Dell DW5818, DW5819 + + * CVE-2017-10911 + - xen-blkback: don't leak stack data via response ring + + * implement 'complain mode' in seccomp for developer mode with snaps + (LP: #1567597) + - seccomp: Provide matching filter for introspection + - seccomp: Sysctl to display available actions + - seccomp: Operation for checking if an action is available + - seccomp: Sysctl to configure actions that are allowed to be logged + - seccomp: Selftest for detection of filter flag support + - seccomp: Action to log before allowing + + * implement errno action logging in seccomp for strict mode with snaps + (LP: #1721676) + - seccomp: Provide matching filter for introspection + - seccomp: Sysctl to display available actions + - seccomp: Operation for checking if an action is available + - seccomp: Sysctl to configure actions that are allowed to be logged + - seccomp: Selftest for detection of filter flag support + - seccomp: Filter flag to log all actions except SECCOMP_RET_ALLOW + + * [Xenial] update OpenNSL kernel modules to 6.5.10 (LP: #1721511) + - SAUCE: update OpenNSL kernel modules to 6.5.10 + + * Xenial update to 4.4.90 stable release (LP: #1721550) + - cifs: release auth_key.response for reconnect. + - mac80211: flush hw_roc_start work before cancelling the ROC + - KVM: PPC: Book3S: Fix race and leak in kvm_vm_ioctl_create_spapr_tce() + - tracing: Fix trace_pipe behavior for instance traces + - tracing: Erase irqsoff trace with empty write + - md/raid5: fix a race condition in stripe batch + - md/raid5: preserve STRIPE_ON_UNPLUG_LIST in break_stripe_batch_list + - scsi: scsi_transport_iscsi: fix the issue that iscsi_if_rx doesn't parse + nlmsg properly + - crypto: talitos - Don't provide setkey for non hmac hashing algs. + - crypto: talitos - fix sha224 + - KEYS: fix writing past end of user-supplied buffer in keyring_read() + - KEYS: prevent creating a different user's keyrings + - KEYS: prevent KEYCTL_READ on negative key + - powerpc/pseries: Fix parent_dn reference leak in add_dt_node() + - Fix SMB3.1.1 guest authentication to Samba + - SMB: Validate negotiate (to protect against downgrade) even if signing off + - SMB3: Don't ignore O_SYNC/O_DSYNC and O_DIRECT flags + - vfs: Return -ENXIO for negative SEEK_HOLE / SEEK_DATA offsets + - nl80211: check for the required netlink attributes presence + - bsg-lib: don't free job in bsg_prepare_job + - seccomp: fix the usage of get/put_seccomp_filter() in seccomp_get_filter() + - arm64: Make sure SPsel is always set + - arm64: fault: Route pte translation faults via do_translation_fault + - KVM: VMX: Do not BUG() on out-of-bounds guest IRQ + - kvm: nVMX: Don't allow L2 to access the hardware CR8 + - PCI: Fix race condition with driver_override + - btrfs: fix NULL pointer dereference from free_reloc_roots() + - btrfs: propagate error to btrfs_cmp_data_prepare caller + - btrfs: prevent to set invalid default subvolid + - x86/fpu: Don't let userspace set bogus xcomp_bv + - gfs2: Fix debugfs glocks dump + - timer/sysclt: Restrict timer migration sysctl values to 0 and 1 + - KVM: VMX: do not change SN bit in vmx_update_pi_irte() + - KVM: VMX: remove WARN_ON_ONCE in kvm_vcpu_trigger_posted_interrupt + - cxl: Fix driver use count + - dmaengine: mmp-pdma: add number of requestors + - ARM: pxa: add the number of DMA requestor lines + - ARM: pxa: fix the number of DMA requestor lines + - KVM: VMX: use cmpxchg64 + - video: fbdev: aty: do not leak uninitialized padding in clk to userspace + - swiotlb-xen: implement xen_swiotlb_dma_mmap callback + - fix xen_swiotlb_dma_mmap prototype + - Linux 4.4.90 + + * Xenial update to 4.4.89 stable release (LP: #1721477) + - ipv6: accept 64k - 1 packet length in ip6_find_1stfragopt() + - ipv6: add rcu grace period before freeing fib6_node + - ipv6: fix sparse warning on rt6i_node + - qlge: avoid memcpy buffer overflow + - Revert "net: phy: Correctly process PHY_HALTED in phy_stop_machine()" + - Revert "net: use lib/percpu_counter API for fragmentation mem accounting" + - Revert "net: fix percpu memory leaks" + - gianfar: Fix Tx flow control deactivation + - ipv6: fix memory leak with multiple tables during netns destruction + - ipv6: fix typo in fib6_net_exit() + - f2fs: check hot_data for roll-forward recovery + - x86/fsgsbase/64: Report FSBASE and GSBASE correctly in core dumps + - md/raid5: release/flush io in raid5_do_work() + - nfsd: Fix general protection fault in release_lock_stateid() + - mm: prevent double decrease of nr_reserved_highatomic + - tty: improve tty_insert_flip_char() fast path + - tty: improve tty_insert_flip_char() slow path + - tty: fix __tty_insert_flip_char regression + - Input: i8042 - add Gigabyte P57 to the keyboard reset table + - MIPS: math-emu: .: Fix quiet NaN propagation + - MIPS: math-emu: .: Fix cases of both inputs zero + - MIPS: math-emu: .: Fix cases of both inputs negative + - MIPS: math-emu: .: Fix cases of input values with opposite + signs + - MIPS: math-emu: .: Fix cases of both infinite inputs + - MIPS: math-emu: MINA.: Fix some cases of infinity and zero inputs + - crypto: AF_ALG - remove SGL terminator indicator when chaining + - ext4: fix incorrect quotaoff if the quota feature is enabled + - ext4: fix quota inconsistency during orphan cleanup for read-only mounts + - powerpc: Fix DAR reporting when alignment handler faults + - block: Relax a check in blk_start_queue() + - md/bitmap: disable bitmap_resize for file-backed bitmaps. + - skd: Avoid that module unloading triggers a use-after-free + - skd: Submit requests to firmware before triggering the doorbell + - scsi: zfcp: fix queuecommand for scsi_eh commands when DIX enabled + - scsi: zfcp: add handling for FCP_RESID_OVER to the fcp ingress path + - scsi: zfcp: fix capping of unsuccessful GPN_FT SAN response trace records + - scsi: zfcp: fix passing fsf_req to SCSI trace on TMF to correlate with HBA + - scsi: zfcp: fix missing trace records for early returns in TMF eh handlers + - scsi: zfcp: fix payload with full FCP_RSP IU in SCSI trace records + - scsi: zfcp: trace HBA FSF response by default on dismiss or timedout late + response + - scsi: zfcp: trace high part of "new" 64 bit SCSI LUN + - scsi: megaraid_sas: Check valid aen class range to avoid kernel panic + - scsi: megaraid_sas: Return pended IOCTLs with cmd_status + MFI_STAT_WRONG_STATE in case adapter is dead + - scsi: storvsc: fix memory leak on ring buffer busy + - scsi: sg: remove 'save_scat_len' + - scsi: sg: use standard lists for sg_requests + - scsi: sg: off by one in sg_ioctl() + - scsi: sg: factor out sg_fill_request_table() + - scsi: sg: fixup infoleak when using SG_GET_REQUEST_TABLE + - scsi: qla2xxx: Fix an integer overflow in sysfs code + - ftrace: Fix selftest goto location on error + - tracing: Apply trace_clock changes to instance max buffer + - ARC: Re-enable MMU upon Machine Check exception + - PCI: shpchp: Enable bridge bus mastering if MSI is enabled + - media: v4l2-compat-ioctl32: Fix timespec conversion + - media: uvcvideo: Prevent heap overflow when accessing mapped controls + - bcache: initialize dirty stripes in flash_dev_run() + - bcache: Fix leak of bdev reference + - bcache: do not subtract sectors_to_gc for bypassed IO + - bcache: correct cache_dirty_target in __update_writeback_rate() + - bcache: Correct return value for sysfs attach errors + - bcache: fix for gc and write-back race + - bcache: fix bch_hprint crash and improve output + - ftrace: Fix memleak when unregistering dynamic ops when tracing disabled + - Linux 4.4.89 + + * ETPS/2 Elantech Touchpad inconsistently detected (Gigabyte P57W laptop) + (LP: #1594214) + - Input: i8042 - add Gigabyte P57 to the keyboard reset table + + * Xenial update to 4.4.88 stable release (LP: #1718195) + - usb: quirks: add delay init quirk for Corsair Strafe RGB keyboard + - USB: serial: option: add support for D-Link DWM-157 C1 + - usb: Add device quirk for Logitech HD Pro Webcam C920-C + - usb:xhci:Fix regression when ATI chipsets detected + - USB: core: Avoid race of async_completed() w/ usbdev_release() + - staging/rts5208: fix incorrect shift to extract upper nybble + - driver core: bus: Fix a potential double free + - intel_th: pci: Add Cannon Lake PCH-H support + - intel_th: pci: Add Cannon Lake PCH-LP support + - ath10k: fix memory leak in rx ring buffer allocation + - rtlwifi: rtl_pci_probe: Fix fail path of _rtl_pci_find_adapter + - Bluetooth: Add support of 13d3:3494 RTL8723BE device + - dlm: avoid double-free on error path in dlm_device_{register,unregister} + - mwifiex: correct channel stat buffer overflows + - drm/nouveau/pci/msi: disable MSI on big-endian platforms by default + - workqueue: Fix flag collision + - cs5536: add support for IDE controller variant + - scsi: sg: protect against races between mmap() and SG_SET_RESERVED_SIZE + - scsi: sg: recheck MMAP_IO request length with lock held + - drm: adv7511: really enable interrupts for EDID detection + - drm/bridge: adv7511: Fix mutex deadlock when interrupts are disabled + - drm/bridge: adv7511: Use work_struct to defer hotplug handing to out of irq + context + - drm/bridge: adv7511: Switch to using drm_kms_helper_hotplug_event() + - drm/bridge: adv7511: Re-write the i2c address before EDID probing + - btrfs: resume qgroup rescan on rw remount + - locktorture: Fix potential memory leak with rw lock test + - ALSA: msnd: Optimize / harden DSP and MIDI loops + - ARM: 8692/1: mm: abort uaccess retries upon fatal signal + - NFS: Fix 2 use after free issues in the I/O code + - xfs: XFS_IS_REALTIME_INODE() should be false if no rt device present + - Linux 4.4.88 + + * Kernel has troule recognizing Corsair Strafe RGB keyboard (LP: #1678477) + - usb: quirks: add delay init quirk for Corsair Strafe RGB keyboard + + -- Thadeu Lima de Souza Cascardo Tue, 10 Oct 2017 08:52:24 -0300 + +linux (4.4.0-97.120) xenial; urgency=low + + * linux: 4.4.0-97.120 -proposed tracker (LP: #1718149) + + * blk-mq: possible deadlock on CPU hot(un)plug (LP: #1670634) + - [Config] s390x -- disable CONFIG_{DM, SCSI}_MQ_DEFAULT + + * Xenial update to 4.4.87 stable release (LP: #1715678) + - irqchip: mips-gic: SYNC after enabling GIC region + - i2c: ismt: Don't duplicate the receive length for block reads + - i2c: ismt: Return EMSGSIZE for block reads with bogus length + - ceph: fix readpage from fscache + - cpumask: fix spurious cpumask_of_node() on non-NUMA multi-node configs + - cpuset: Fix incorrect memory_pressure control file mapping + - alpha: uapi: Add support for __SANE_USERSPACE_TYPES__ + - CIFS: remove endian related sparse warning + - wl1251: add a missing spin_lock_init() + - xfrm: policy: check policy direction value + - drm/ttm: Fix accounting error when fail to get pages for pool + - kvm: arm/arm64: Fix race in resetting stage2 PGD + - kvm: arm/arm64: Force reading uncached stage2 PGD + - epoll: fix race between ep_poll_callback(POLLFREE) and ep_free()/ep_remove() + - crypto: algif_skcipher - only call put_page on referenced and used pages + - Linux 4.4.87 + + * Xenial update to 4.4.86 stable release (LP: #1715430) + - scsi: isci: avoid array subscript warning + - ALSA: au88x0: Fix zero clear of stream->resources + - btrfs: remove duplicate const specifier + - i2c: jz4780: drop superfluous init + - gcov: add support for gcc version >= 6 + - gcov: support GCC 7.1 + - lightnvm: initialize ppa_addr in dev_to_generic_addr() + - p54: memset(0) whole array + - lpfc: Fix Device discovery failures during switch reboot test. + - arm64: mm: abort uaccess retries upon fatal signal + - x86/io: Add "memory" clobber to insb/insw/insl/outsb/outsw/outsl + - arm64: fpsimd: Prevent registers leaking across exec + - scsi: sg: protect accesses to 'reserved' page array + - scsi: sg: reset 'res_in_use' after unlinking reserved array + - drm/i915: fix compiler warning in drivers/gpu/drm/i915/intel_uncore.c + - Linux 4.4.86 + + * Xenial update to 4.4.85 stable release (LP: #1714298) + - af_key: do not use GFP_KERNEL in atomic contexts + - dccp: purge write queue in dccp_destroy_sock() + - dccp: defer ccid_hc_tx_delete() at dismantle time + - ipv4: fix NULL dereference in free_fib_info_rcu() + - net_sched/sfq: update hierarchical backlog when drop packet + - ipv4: better IP_MAX_MTU enforcement + - sctp: fully initialize the IPv6 address in sctp_v6_to_addr() + - tipc: fix use-after-free + - ipv6: reset fn->rr_ptr when replacing route + - ipv6: repair fib6 tree in failure case + - tcp: when rearming RTO, if RTO time is in past then fire RTO ASAP + - irda: do not leak initialized list.dev to userspace + - net: sched: fix NULL pointer dereference when action calls some targets + - net_sched: fix order of queue length updates in qdisc_replace() + - mei: me: add broxton pci device ids + - mei: me: add lewisburg device ids + - Input: trackpoint - add new trackpoint firmware ID + - Input: elan_i2c - add ELAN0602 ACPI ID to support Lenovo Yoga310 + - ALSA: core: Fix unexpected error at replacing user TLV + - ALSA: hda - Add stereo mic quirk for Lenovo G50-70 (17aa:3978) + - ARCv2: PAE40: Explicitly set MSB counterpart of SLC region ops addresses + - i2c: designware: Fix system suspend + - drm: Release driver tracking before making the object available again + - drm/atomic: If the atomic check fails, return its value first + - drm: rcar-du: lvds: Fix PLL frequency-related configuration + - drm: rcar-du: lvds: Rename PLLEN bit to PLLON + - drm: rcar-du: Fix crash in encoder failure error path + - drm: rcar-du: Fix display timing controller parameter + - drm: rcar-du: Fix H/V sync signal polarity configuration + - tracing: Fix freeing of filter in create_filter() when set_str is false + - cifs: Fix df output for users with quota limits + - cifs: return ENAMETOOLONG for overlong names in cifs_open()/cifs_lookup() + - nfsd: Limit end of page list when decoding NFSv4 WRITE + - perf/core: Fix group {cpu,task} validation + - Bluetooth: hidp: fix possible might sleep error in hidp_session_thread + - Bluetooth: cmtp: fix possible might sleep error in cmtp_session + - Bluetooth: bnep: fix possible might sleep error in bnep_session + - binder: use group leader instead of open thread + - binder: Use wake up hint for synchronous transactions. + - ANDROID: binder: fix proc->tsk check. + - iio: imu: adis16480: Fix acceleration scale factor for adis16480 + - iio: hid-sensor-trigger: Fix the race with user space powering up sensors + - staging: rtl8188eu: add RNX-N150NUB support + - ASoC: simple-card: don't fail if sysclk setting is not supported + - ASoC: rsnd: disable SRC.out only when stop timing + - ASoC: rsnd: avoid pointless loop in rsnd_mod_interrupt() + - ASoC: rsnd: Add missing initialization of ADG req_rate + - ASoC: rsnd: ssi: 24bit data needs right-aligned settings + - ASoC: rsnd: don't call update callback if it was NULL + - ntb_transport: fix qp count bug + - ntb_transport: fix bug calculating num_qps_mw + - ACPI: ioapic: Clear on-stack resource before using it + - ACPI / APEI: Add missing synchronize_rcu() on NOTIFY_SCI removal + - Linux 4.4.85 + + * Xenial update to 4.4.84 stable release (LP: #1713729) + - audit: Fix use after free in audit_remove_watch_rule() + - parisc: pci memory bar assignment fails with 64bit kernels on dino/cujo + - crypto: x86/sha1 - Fix reads beyond the number of blocks passed + - Input: elan_i2c - Add antoher Lenovo ACPI ID for upcoming Lenovo NB + - ALSA: seq: 2nd attempt at fixing race creating a queue + - Revert "UBUNTU: SAUCE: (no-up) ALSA: usb-audio: Add quirk for sennheiser + officerunner" + - ALSA: usb-audio: Apply sample rate quirk to Sennheiser headset + - ALSA: usb-audio: Add mute TLV for playback volumes on C-Media devices + - mm/mempolicy: fix use after free when calling get_mempolicy + - xen: fix bio vec merging + - x86/asm/64: Clear AC on NMI entries + - irqchip/atmel-aic: Fix unbalanced of_node_put() in aic_common_irq_fixup() + - irqchip/atmel-aic: Fix unbalanced refcount in aic_common_rtc_irq_fixup() + - Sanitize 'move_pages()' permission checks + - pids: make task_tgid_nr_ns() safe + - perf/x86: Fix LBR related crashes on Intel Atom + - usb: optimize acpi companion search for usb port devices + - usb: qmi_wwan: add D-Link DWM-222 device ID + - Linux 4.4.84 + + * Intel i40e PF reset due to incorrect MDD detection (LP: #1713553) + - i40e: Limit TX descriptor count in cases where frag size is greater than 16K + + * Neighbour confirmation broken, breaks ARP cache aging (LP: #1715812) + - sock: add sk_dst_pending_confirm flag + - net: add dst_pending_confirm flag to skbuff + - sctp: add dst_pending_confirm flag + - tcp: replace dst_confirm with sk_dst_confirm + - net: add confirm_neigh method to dst_ops + - net: use dst_confirm_neigh for UDP, RAW, ICMP, L2TP + - net: pending_confirm is not used anymore + + * CVE-2017-14106 + - tcp: initialize rcv_mss to TCP_MIN_MSS instead of 0 + + * [CIFS] Fix maximum SMB2 header size (LP: #1713884) + - CIFS: Fix maximum SMB2 header size + + * Middle button of trackpoint doesn't work (LP: #1715271) + - Input: trackpoint - assume 3 buttons when buttons detection fails + + * kernel BUG at /build/linux-lts-xenial-_hWfOZ/linux-lts- + xenial-4.4.0/security/apparmor/include/context.h:69! (LP: #1626984) + - SAUCE: fix oops when disabled and module parameters, are accessed + + * Touchpad not detected (LP: #1708852) + - Input: elan_i2c - add ELAN0608 to the ACPI table + + -- Kleber Sacilotto de Souza Tue, 19 Sep 2017 17:55:11 +0200 + +linux (4.4.0-96.119) xenial; urgency=low + + * linux: 4.4.0-96.119 -proposed tracker (LP: #1716613) + + * kernel panic -not syncing: Fatal exception: panic_on_oops (LP: #1708399) + - s390/mm: no local TLB flush for clearing-by-ASCE IDTE + - SAUCE: s390/mm: fix local TLB flushing vs. detach of an mm address space + - SAUCE: s390/mm: fix race on mm->context.flush_mm + + * CVE-2017-1000251 + - Bluetooth: Properly check L2CAP config option output buffer length + + -- Stefan Bader Tue, 12 Sep 2017 15:40:01 +0200 + +linux (4.4.0-95.118) xenial; urgency=low + + * linux: 4.4.0-95.118 -proposed tracker (LP: #1715651) + + * Xenial update to 4.4.78 stable release broke Address Sanitizer + (LP: #1715636) + - mm: revert x86_64 and arm64 ELF_ET_DYN_BASE base changes + + -- Kleber Sacilotto de Souza Thu, 07 Sep 2017 17:26:15 +0200 + +linux (4.4.0-94.117) xenial; urgency=low + + * linux: 4.4.0-94.117 -proposed tracker (LP: #1713462) + + * mwifiex causes kernel oops when AP mode is enabled (LP: #1712746) + - SAUCE: net/wireless: do not dereference invalid pointer + - SAUCE: mwifiex: do not dereference invalid pointer + + * Backport more recent Broadcom bnxt_en driver (LP: #1711056) + - SAUCE: bnxt_en_bpo: Import bnxt_en driver version 1.8.1 + - SAUCE: bnxt_en_bpo: Drop distro out-of-tree detection logic + - SAUCE: bnxt_en_bpo: Remove unnecessary compile flags + - SAUCE: bnxt_en_bpo: Move config settings to Kconfig + - SAUCE: bnxt_en_bpo: Remove PCI_IDs handled by the regular driver + - SAUCE: bnxt_en_bpo: Rename the backport driver to bnxt_en_bpo + - bnxt_en_bpo: [Config] Enable CONFIG_BNXT_BPO=m + + * HID: multitouch: Support ALPS PTP Stick and Touchpad devices (LP: #1712481) + - HID: multitouch: Support PTP Stick and Touchpad device + - SAUCE: HID: multitouch: Support ALPS PTP stick with pid 0x120A + + * igb: Support using Broadcom 54616 as PHY (LP: #1712024) + - SAUCE: igb: add support for using Broadcom 54616 as PHY + + * IPR driver causes multipath to fail paths/stuck IO on Medium Errors + (LP: #1682644) + - scsi: ipr: do not set DID_PASSTHROUGH on CHECK CONDITION + + * accessing /dev/hvc1 with stress-ng on Ubuntu xenial causes crash + (LP: #1711401) + - tty/hvc: Use IRQF_SHARED for OPAL hvc consoles + + * memory-hotplug test needs to be fixed (LP: #1710868) + - selftests: typo correction for memory-hotplug test + - selftests: check hot-pluggagble memory for memory-hotplug test + - selftests: check percentage range for memory-hotplug test + - selftests: add missing test name in memory-hotplug test + - selftests: fix memory-hotplug test + + * HP lt4132 LTE/HSPA+ 4G Module (03f0:a31d) does not work (LP: #1707643) + - net: cdc_mbim: apply "NDP to end" quirk to HP lt4132 + + * Migrating KSM page causes the VM lock up as the KSM page merging list is too + large (LP: #1680513) + - ksm: introduce ksm_max_page_sharing per page deduplication limit + - ksm: fix use after free with merge_across_nodes = 0 + - ksm: cleanup stable_node chain collapse case + - ksm: swap the two output parameters of chain/chain_prune + - ksm: optimize refile of stable_node_dup at the head of the chain + + * sort ABI files with C.UTF-8 locale (LP: #1712345) + - [Packaging] sort ABI files with C.UTF-8 locale + + * Include Broadcom GPL modules in Xenial Kernel (LP: #1665783) + - [Config] OpenNSL Kconfig/Makefile + - Import OpenNSL v3.1.0.17 + - [Config] CONFIG_OPENNSL=y for amd64 + - OpenNSL: Enable Kconfig and build + - SAUCE: opennsl: add proper CFLAGS + + * Xenial update to 4.4.83 stable release (LP: #1711557) + - cpuset: fix a deadlock due to incomplete patching of cpusets_enabled() + - mm: ratelimit PFNs busy info message + - iscsi-target: fix memory leak in iscsit_setup_text_cmd() + - iscsi-target: Fix iscsi_np reset hung task during parallel delete + - fuse: initialize the flock flag in fuse_file on allocation + - nfs/flexfiles: fix leak of nfs4_ff_ds_version arrays + - USB: serial: option: add D-Link DWM-222 device ID + - USB: serial: cp210x: add support for Qivicon USB ZigBee dongle + - USB: serial: pl2303: add new ATEN device id + - usb: musb: fix tx fifo flush handling again + - USB: hcd: Mark secondary HCD as dead if the primary one died + - staging:iio:resolver:ad2s1210 fix negative IIO_ANGL_VEL read + - iio: accel: bmc150: Always restore device to normal mode after suspend- + resume + - iio: light: tsl2563: use correct event code + - uas: Add US_FL_IGNORE_RESIDUE for Initio Corporation INIC-3069 + - USB: Check for dropped connection before switching to full speed + - usb: core: unlink urbs from the tail of the endpoint's urb_list + - usb: quirks: Add no-lpm quirk for Moshi USB to Ethernet Adapter + - usb:xhci:Add quirk for Certain failing HP keyboard on reset after resume + - iio: adc: vf610_adc: Fix VALT selection value for REFSEL bits + - pnfs/blocklayout: require 64-bit sector_t + - pinctrl: sunxi: add a missing function of A10/A20 pinctrl driver + - pinctrl: samsung: Remove bogus irq_[un]mask from resource management + - Linux 4.4.83 + + * Xenial update to 4.4.82 stable release (LP: #1711535) + - tcp: avoid setting cwnd to invalid ssthresh after cwnd reduction states + - net: fix keepalive code vs TCP_FASTOPEN_CONNECT + - bpf, s390: fix jit branch offset related to ldimm64 + - net: sched: set xt_tgchk_param par.nft_compat as 0 in ipt_init_target + - tcp: fastopen: tcp_connect() must refresh the route + - net: avoid skb_warn_bad_offload false positives on UFO + - sparc64: Prevent perf from running during super critical sections + - KVM: arm/arm64: Handle hva aging while destroying the vm + - mm/mempool: avoid KASAN marking mempool poison checks as use-after-free + - Linux 4.4.82 + + * Xenial update to 4.4.81 stable release (LP: #1711526) + - libata: array underflow in ata_find_dev() + - workqueue: restore WQ_UNBOUND/max_active==1 to be ordered + - ALSA: hda - Fix speaker output from VAIO VPCL14M1R + - ASoC: do not close shared backend dailink + - KVM: async_pf: make rcu irq exit if not triggered from idle task + - mm/page_alloc: Remove kernel address exposure in free_reserved_area() + - ext4: fix SEEK_HOLE/SEEK_DATA for blocksize < pagesize + - ext4: fix overflow caused by missing cast in ext4_resize_fs() + - ARM: dts: armada-38x: Fix irq type for pca955 + - media: platform: davinci: return -EINVAL for VPFE_CMD_S_CCDC_RAW_PARAMS + ioctl + - target: Avoid mappedlun symlink creation during lun shutdown + - iscsi-target: Always wait for kthread_should_stop() before kthread exit + - iscsi-target: Fix early sk_data_ready LOGIN_FLAGS_READY race + - iscsi-target: Fix initial login PDU asynchronous socket close OOPs + - iscsi-target: Fix delayed logout processing greater than + SECONDS_FOR_LOGOUT_COMP + - iser-target: Avoid isert_conn->cm_id dereference in isert_login_recv_done + - mm, mprotect: flush TLB if potentially racing with a parallel reclaim + leaving stale TLB entries + - media: lirc: LIRC_GET_REC_RESOLUTION should return microseconds + - f2fs: sanity check checkpoint segno and blkoff + - drm: rcar-du: fix backport bug + - saa7164: fix double fetch PCIe access condition + - ipv4: ipv6: initialize treq->txhash in cookie_v[46]_check() + - net: Zero terminate ifr_name in dev_ifname(). + - ipv6: avoid overflow of offset in ip6_find_1stfragopt + - ipv4: initialize fib_trie prior to register_netdev_notifier call. + - rtnetlink: allocate more memory for dev_set_mac_address() + - mcs7780: Fix initialization when CONFIG_VMAP_STACK is enabled + - openvswitch: fix potential out of bound access in parse_ct + - packet: fix use-after-free in prb_retire_rx_blk_timer_expired() + - ipv6: Don't increase IPSTATS_MIB_FRAGFAILS twice in ip6_fragment() + - net: ethernet: nb8800: Handle all 4 RGMII modes identically + - dccp: fix a memleak that dccp_ipv6 doesn't put reqsk properly + - dccp: fix a memleak that dccp_ipv4 doesn't put reqsk properly + - dccp: fix a memleak for dccp_feat_init err process + - sctp: don't dereference ptr before leaving _sctp_walk_{params, errors}() + - sctp: fix the check for _sctp_walk_params and _sctp_walk_errors + - net/mlx5: Fix command bad flow on command entry allocation failure + - net: phy: Correctly process PHY_HALTED in phy_stop_machine() + - net: phy: Fix PHY unbind crash + - xen-netback: correctly schedule rate-limited queues + - sparc64: Measure receiver forward progress to avoid send mondo timeout + - wext: handle NULL extra data in iwe_stream_add_point better + - sh_eth: R8A7740 supports packet shecksumming + - net: phy: dp83867: fix irq generation + - tg3: Fix race condition in tg3_get_stats64(). + - x86/boot: Add missing declaration of string functions + - phy state machine: failsafe leave invalid RUNNING state + - scsi: qla2xxx: Get mutex lock before checking optrom_state + - drm/virtio: fix framebuffer sparse warning + - virtio_blk: fix panic in initialization error path + - ARM: 8632/1: ftrace: fix syscall name matching + - mm, slab: make sure that KMALLOC_MAX_SIZE will fit into MAX_ORDER + - lib/Kconfig.debug: fix frv build failure + - signal: protect SIGNAL_UNKILLABLE from unintentional clearing. + - mm: don't dereference struct page fields of invalid pages + - workqueue: implicit ordered attribute should be overridable + - Linux 4.4.81 + + * Xenial update to 4.4.80 stable release (LP: #1710646) + - af_key: Add lock to key dump + - pstore: Make spinlock per zone instead of global + - powerpc/pseries: Fix of_node_put() underflow during reconfig remove + - crypto: authencesn - Fix digest_null crash + - md/raid5: add thread_group worker async_tx_issue_pending_all + - drm/vmwgfx: Fix gcc-7.1.1 warning + - drm/nouveau/bar/gf100: fix access to upper half of BAR2 + - KVM: PPC: Book3S HV: Context-switch EBB registers properly + - KVM: PPC: Book3S HV: Restore critical SPRs to host values on guest exit + - KVM: PPC: Book3S HV: Reload HTM registers explicitly + - KVM: PPC: Book3S HV: Save/restore host values of debug registers + - Revert "powerpc/numa: Fix percpu allocations to be NUMA aware" + - Staging: comedi: comedi_fops: Avoid orphaned proc entry + - drm/rcar: Nuke preclose hook + - drm: rcar-du: Perform initialization/cleanup at probe/remove time + - drm: rcar-du: Simplify and fix probe error handling + - perf intel-pt: Fix ip compression + - perf intel-pt: Fix last_ip usage + - perf intel-pt: Use FUP always when scanning for an IP + - perf intel-pt: Ensure never to set 'last_ip' when packet 'count' is zero + - xfs: don't BUG() on mixed direct and mapped I/O + - nfc: fdp: fix NULL pointer dereference + - net: phy: Do not perform software reset for Generic PHY + - isdn: Fix a sleep-in-atomic bug + - isdn/i4l: fix buffer overflow + - ath10k: fix null deref on wmi-tlv when trying spectral scan + - wil6210: fix deadlock when using fw_no_recovery option + - mailbox: always wait in mbox_send_message for blocking Tx mode + - mailbox: skip complete wait event if timer expired + - mailbox: handle empty message in tx_tick + - mpt3sas: Don't overreach ioc->reply_post[] during initialization + - kaweth: fix firmware download + - kaweth: fix oops upon failed memory allocation + - sched/cgroup: Move sched_online_group() back into css_online() to fix crash + - PM / Domains: defer dev_pm_domain_set() until genpd->attach_dev succeeds if + present + - RDMA/uverbs: Fix the check for port number + - libnvdimm, btt: fix btt_rw_page not returning errors + - ipmi/watchdog: fix watchdog timeout set on reboot + - v4l: s5c73m3: fix negation operator + - pstore: Allow prz to control need for locking + - pstore: Correctly initialize spinlock and flags + - pstore: Use dynamic spinlock initializer + - net: skb_needs_check() accepts CHECKSUM_NONE for tx + - sched/cputime: Fix prev steal time accouting during CPU hotplug + - xen/blkback: don't free be structure too early + - xen/blkback: don't use xen_blkif_get() in xen-blkback kthread + - tpm: fix a kernel memory leak in tpm-sysfs.c + - tpm: Replace device number bitmap with IDR + - x86/mce/AMD: Make the init code more robust + - r8169: add support for RTL8168 series add-on card. + - ARM: dts: n900: Mark eMMC slot with no-sdio and no-sd flags + - net/mlx4: Remove BUG_ON from ICM allocation routine + - drm/msm: Ensure that the hardware write pointer is valid + - drm/msm: Verify that MSM_SUBMIT_BO_FLAGS are set + - vfio-pci: use 32-bit comparisons for register address for gcc-4.5 + - irqchip/keystone: Fix "scheduling while atomic" on rt + - ASoC: tlv320aic3x: Mark the RESET register as volatile + - spi: dw: Make debugfs name unique between instances + - ASoC: nau8825: fix invalid configuration in Pre-Scalar of FLL + - irqchip/mxs: Enable SKIP_SET_WAKE and MASK_ON_SUSPEND + - openrisc: Add _text symbol to fix ksym build error + - dmaengine: ioatdma: Add Skylake PCI Dev ID + - dmaengine: ioatdma: workaround SKX ioatdma version + - dmaengine: ti-dma-crossbar: Add some 'of_node_put()' in error path. + - ARM64: zynqmp: Fix W=1 dtc 1.4 warnings + - ARM64: zynqmp: Fix i2c node's compatible string + - ARM: s3c2410_defconfig: Fix invalid values for NF_CT_PROTO_* + - ACPI / scan: Prefer devices without _HID/_CID for _ADR matching + - usb: gadget: Fix copy/pasted error message + - Btrfs: adjust outstanding_extents counter properly when dio write is split + - tools lib traceevent: Fix prev/next_prio for deadline tasks + - xfrm: Don't use sk_family for socket policy lookups + - perf tools: Install tools/lib/traceevent plugins with install-bin + - perf symbols: Robustify reading of build-id from sysfs + - video: fbdev: cobalt_lcdfb: Handle return NULL error from devm_ioremap + - vfio-pci: Handle error from pci_iomap + - arm64: mm: fix show_pte KERN_CONT fallout + - nvmem: imx-ocotp: Fix wrong register size + - sh_eth: enable RX descriptor word 0 shift on SH7734 + - ALSA: usb-audio: test EP_FLAG_RUNNING at urb completion + - HID: ignore Petzl USB headlamp + - scsi: fnic: Avoid sending reset to firmware when another reset is in + progress + - scsi: snic: Return error code on memory allocation failure + - ASoC: dpcm: Avoid putting stream state to STOP when FE stream is paused + - Linux 4.4.80 + + * Please only recommend or suggest initramfs-tools | linux-initramfs-tool for + kernels able to boot without initramfs (LP: #1700972) + - [Debian] Don't depend on initramfs-tools + + -- Kleber Sacilotto de Souza Mon, 28 Aug 2017 17:07:08 +0200 + +linux (4.4.0-93.116) xenial; urgency=low + + * linux: 4.4.0-93.116 -proposed tracker (LP: #1709296) + + * Creating conntrack entry failure with kernel 4.4.0-89 (LP: #1709032) + - Revert "Revert "netfilter: synproxy: fix conntrackd interaction"" + - netfilter: nf_ct_ext: fix possible panic after nf_ct_extend_unregister + + * CVE-2017-1000112 + - Revert "udp: consistently apply ufo or fragmentation" + - udp: consistently apply ufo or fragmentation + + * CVE-2017-1000111 + - Revert "net-packet: fix race in packet_set_ring on PACKET_RESERVE" + - packet: fix tp_reserve race in packet_set_ring + + * kernel BUG at [tty_ldisc_reinit] mm/slub.c! (LP: #1709126) + - tty: Simplify tty_set_ldisc() exit handling + - tty: Reset c_line from driver's init_termios + - tty: Handle NULL tty->ldisc + - tty: Move tty_ldisc_kill() + - tty: Use 'disc' for line discipline index name + - tty: Refactor tty_ldisc_reinit() for reuse + - tty: Destroy ldisc instance on hangup + + * atheros bt failed after S3 (LP: #1706833) + - SAUCE: Bluetooth: Make request workqueue freezable + + * The Precision Touchpad(PTP) button sends incorrect event code (LP: #1708372) + - HID: multitouch: handle external buttons for Precision Touchpads + + * Set CONFIG_SATA_HIGHBANK=y on armhf (LP: #1703430) + - [Config] CONFIG_SATA_HIGHBANK=y + + * xfs slab objects (memory) leak when xfs shutdown is called (LP: #1706132) + - xfs: fix xfs_log_ticket leak in xfs_end_io() after fs shutdown + + * Adt tests of src:linux time out often on armhf lxc containers (LP: #1705495) + - [Packaging] tests -- reduce rebuild test to one flavour + + * CVE-2017-7495 + - ext4: fix data exposure after a crash + + * ubuntu/rsi driver downlink wifi throughput drops to 5-6 Mbps when BT + keyboard is connected (LP: #1706991) + - SAUCE: Redpine: enable power save by default for coex mode + - SAUCE: Redpine: uapsd configuration changes + + * [Hyper-V] hv_netvsc: Exclude non-TCP port numbers from vRSS hashing + (LP: #1690174) + - hv_netvsc: Exclude non-TCP port numbers from vRSS hashing + + * ath10k doesn't report full RSSI information (LP: #1706531) + - ath10k: add per chain RSSI reporting + + * ideapad_laptop don't support v310-14isk (LP: #1705378) + - platform/x86: ideapad-laptop: Add several models to no_hw_rfkill + + * [8087:0a2b] Failed to load bluetooth firmware(might affect some other Intel + bt devices) (LP: #1705633) + - Bluetooth: btintel: Create common Intel Version Read function + - Bluetooth: Use switch statement for Intel hardware variants + - Bluetooth: Replace constant hw_variant from Intel Bluetooth firmware + filename + - Bluetooth: hci_intel: Fix firmware file name to use hw_variant + - Bluetooth: btintel: Add MODULE_FIRMWARE entries for iBT 3.5 controllers + + * xhci_hcd: ERROR Transfer event TRB DMA ptr not part of current TD ep_index 2 + comp_code 13 (LP: #1667750) + - xhci: Bad Ethernet performance plugged in ASM1042A host + + * OpenPower: Some multipaths temporarily have only a single path + (LP: #1696445) + - scsi: ses: don't get power status of SES device slot on probe + + * Hotkeys on new Thinkpad systems aren't working (LP: #1705169) + - platform/x86: thinkpad_acpi: Adding new hotkey ID for Lenovo thinkpad + - platform/x86: thinkpad_acpi: guard generic hotkey case + - platform/x86: thinkpad_acpi: add mapping for new hotkeys + + * CVE-2015-7837 + - SAUCE: (no-up) kexec/uefi: copy secure_boot flag in boot params across kexec + reboot + + * misleading kernel warning skb_warn_bad_offload during checksum calculation + (LP: #1705447) + - net: reduce skb_warn_bad_offload() noise + + * bonding: stack dump when unregistering a netdev (LP: #1704102) + - bonding: avoid NETDEV_CHANGEMTU event when unregistering slave + + * Ubuntu 16.04 IOB Error when the Mustang board rebooted (LP: #1693673) + - drivers: net: xgene: Fix redundant prefetch buffer cleanup + + * Ubuntu16.04: NVMe 4K+T10 DIF/DIX format returns I/O error on dd with split + op (LP: #1689946) + - blk-mq: NVMe 512B/4K+T10 DIF/DIX format returns I/O error on dd with split + op + + * linux >= 4.2: bonding 802.3ad does not work with 5G, 25G and 50G link speeds + (LP: #1697892) + - bonding: add 802.3ad support for 100G speeds + - bonding: fix 802.3ad aggregator reselection + - bonding: add 802.3ad support for 25G speeds + - bonding: fix 802.3ad support for 5G and 50G speeds + + * Xenial update to 4.4.79 stable release (LP: #1707233) + - disable new gcc-7.1.1 warnings for now + - ir-core: fix gcc-7 warning on bool arithmetic + - s5p-jpeg: don't return a random width/height + - thermal: cpu_cooling: Avoid accessing potentially freed structures + - ath9k: fix tx99 use after free + - ath9k: fix tx99 bus error + - NFC: fix broken device allocation + - NFC: nfcmrvl_uart: add missing tty-device sanity check + - NFC: nfcmrvl: do not use device-managed resources + - NFC: nfcmrvl: use nfc-device for firmware download + - NFC: nfcmrvl: fix firmware-management initialisation + - nfc: Ensure presence of required attributes in the activate_target handler + - nfc: Fix the sockaddr length sanitization in llcp_sock_connect + - NFC: Add sockaddr length checks before accessing sa_family in bind handlers + - perf intel-pt: Move decoder error setting into one condition + - perf intel-pt: Improve sample timestamp + - perf intel-pt: Fix missing stack clear + - perf intel-pt: Ensure IP is zero when state is INTEL_PT_STATE_NO_IP + - perf intel-pt: Clear FUP flag on error + - Bluetooth: use constant time memory comparison for secret values + - wlcore: fix 64K page support + - ASoC: compress: Derive substream from stream based on direction + - PM / Domains: Fix unsafe iteration over modified list of device links + - PM / Domains: Fix unsafe iteration over modified list of domain providers + - scsi: ses: do not add a device to an enclosure if enclosure_add_links() + fails. + - iscsi-target: Add login_keys_workaround attribute for non RFC initiators + - powerpc/64: Fix atomic64_inc_not_zero() to return an int + - powerpc: Fix emulation of mcrf in emulate_step() + - powerpc: Fix emulation of mfocrf in emulate_step() + - powerpc/asm: Mark cr0 as clobbered in mftb() + - af_key: Fix sadb_x_ipsecrequest parsing + - PCI/PM: Restore the status of PCI devices across hibernation + - ipvs: SNAT packet replies only for NATed connections + - xhci: fix 20000ms port resume timeout + - xhci: Fix NULL pointer dereference when cleaning up streams for removed host + - usb: storage: return on error to avoid a null pointer dereference + - USB: cdc-acm: add device-id for quirky printer + - usb: renesas_usbhs: fix usbhsc_resume() for !USBHSF_RUNTIME_PWCTRL + - usb: renesas_usbhs: gadget: disable all eps when the driver stops + - md: don't use flush_signals in userspace processes + - x86/xen: allow userspace access during hypercalls + - cx88: Fix regression in initial video standard setting + - Raid5 should update rdev->sectors after reshape + - s390/syscalls: Fix out of bounds arguments access + - drm/amd/amdgpu: Return error if initiating read out of range on vram + - drm/radeon/ci: disable mclk switching for high refresh rates (v2) + - drm/radeon: Fix eDP for single-display iMac10,1 (v2) + - ipmi: use rcu lock around call to intf->handlers->sender() + - ipmi:ssif: Add missing unlock in error branch + - f2fs: Don't clear SGID when inheriting ACLs + - vfio: Fix group release deadlock + - vfio: New external user group/file match + - ftrace: Fix uninitialized variable in match_records() + - MIPS: Fix mips_atomic_set() retry condition + - MIPS: Fix mips_atomic_set() with EVA + - MIPS: Negate error syscall return in trace + - x86/acpi: Prevent out of bound access caused by broken ACPI tables + - x86/ioapic: Pass the correct data to unmask_ioapic_irq() + - MIPS: Fix MIPS I ISA /proc/cpuinfo reporting + - MIPS: Save static registers before sysmips + - MIPS: Actually decode JALX in `__compute_return_epc_for_insn' + - MIPS: Fix unaligned PC interpretation in `compute_return_epc' + - MIPS: math-emu: Prevent wrong ISA mode instruction emulation + - MIPS: Send SIGILL for BPOSGE32 in `__compute_return_epc_for_insn' + - MIPS: Rename `sigill_r6' to `sigill_r2r6' in `__compute_return_epc_for_insn' + - MIPS: Send SIGILL for linked branches in `__compute_return_epc_for_insn' + - MIPS: Fix a typo: s/preset/present/ in r2-to-r6 emulation error message + - Input: i8042 - fix crash at boot time + - NFS: only invalidate dentrys that are clearly invalid. + - udf: Fix deadlock between writeback and udf_setsize() + - target: Fix COMPARE_AND_WRITE caw_sem leak during se_cmd quiesce + - perf annotate: Fix broken arrow at row 0 connecting jmp instruction to its + target + - Revert "perf/core: Drop kernel samples even though :u is specified" + - staging: rtl8188eu: add TL-WN722N v2 support + - ceph: fix race in concurrent readdir + - RDMA/core: Initialize port_num in qp_attr + - drm/mst: Fix error handling during MST sideband message reception + - drm/mst: Avoid dereferencing a NULL mstb in drm_dp_mst_handle_up_req() + - drm/mst: Avoid processing partially received up/down message transactions + - of: device: Export of_device_{get_modalias, uvent_modalias} to modules + - spmi: Include OF based modalias in device uevent + - tracing: Fix kmemleak in instance_rmdir + - alarmtimer: don't rate limit one-shot timers + - Linux 4.4.79 + + * Xenial update to 4.4.78 stable release (LP: #1705707) + - net_sched: fix error recovery at qdisc creation + - net: sched: Fix one possible panic when no destroy callback + - net/phy: micrel: configure intterupts after autoneg workaround + - ipv6: avoid unregistering inet6_dev for loopback + - net: dp83640: Avoid NULL pointer dereference. + - tcp: reset sk_rx_dst in tcp_disconnect() + - net: prevent sign extension in dev_get_stats() + - bpf: prevent leaking pointer via xadd on unpriviledged + - net: handle NAPI_GRO_FREE_STOLEN_HEAD case also in napi_frags_finish() + - ipv6: dad: don't remove dynamic addresses if link is down + - net: ipv6: Compare lwstate in detecting duplicate nexthops + - vrf: fix bug_on triggered by rx when destroying a vrf + - rds: tcp: use sock_create_lite() to create the accept socket + - brcmfmac: fix possible buffer overflow in brcmf_cfg80211_mgmt_tx() + - cfg80211: Define nla_policy for NL80211_ATTR_LOCAL_MESH_POWER_MODE + - cfg80211: Validate frequencies nested in NL80211_ATTR_SCAN_FREQUENCIES + - cfg80211: Check if PMKID attribute is of expected size + - irqchip/gic-v3: Fix out-of-bound access in gic_set_affinity + - parisc: Report SIGSEGV instead of SIGBUS when running out of stack + - parisc: use compat_sys_keyctl() + - parisc: DMA API: return error instead of BUG_ON for dma ops on non dma devs + - parisc/mm: Ensure IRQs are off in switch_mm() + - tools/lib/lockdep: Reduce MAX_LOCK_DEPTH to avoid overflowing lock_chain/: + Depth + - kernel/extable.c: mark core_kernel_text notrace + - mm/list_lru.c: fix list_lru_count_node() to be race free + - fs/dcache.c: fix spin lockup issue on nlru->lock + - checkpatch: silence perl 5.26.0 unescaped left brace warnings + - binfmt_elf: use ELF_ET_DYN_BASE only for PIE + - arm: move ELF_ET_DYN_BASE to 4MB + - arm64: move ELF_ET_DYN_BASE to 4GB / 4MB + - powerpc: move ELF_ET_DYN_BASE to 4GB / 4MB + - s390: reduce ELF_ET_DYN_BASE + - exec: Limit arg stack to at most 75% of _STK_LIM + - vt: fix unchecked __put_user() in tioclinux ioctls + - mnt: In umount propagation reparent in a separate pass + - mnt: In propgate_umount handle visiting mounts in any order + - mnt: Make propagate_umount less slow for overlapping mount propagation trees + - selftests/capabilities: Fix the test_execve test + - tpm: Get rid of chip->pdev + - tpm: Provide strong locking for device removal + - Add "shutdown" to "struct class". + - tpm: Issue a TPM2_Shutdown for TPM2 devices. + - mm: fix overflow check in expand_upwards() + - crypto: talitos - Extend max key length for SHA384/512-HMAC and AEAD + - crypto: atmel - only treat EBUSY as transient if backlog + - crypto: sha1-ssse3 - Disable avx2 + - crypto: caam - fix signals handling + - sched/topology: Fix overlapping sched_group_mask + - sched/topology: Optimize build_group_mask() + - PM / wakeirq: Convert to SRCU + - PM / QoS: return -EINVAL for bogus strings + - tracing: Use SOFTIRQ_OFFSET for softirq dectection for more accurate results + - KVM: x86: disable MPX if host did not enable MPX XSAVE features + - kvm: vmx: Do not disable intercepts for BNDCFGS + - kvm: x86: Guest BNDCFGS requires guest MPX support + - kvm: vmx: Check value written to IA32_BNDCFGS + - kvm: vmx: allow host to access guest MSR_IA32_BNDCFGS + - Linux 4.4.78 + + * Xenial update to 4.4.77 stable release (LP: #1705238) + - fs: add a VALID_OPEN_FLAGS + - fs: completely ignore unknown open flags + - driver core: platform: fix race condition with driver_override + - bgmac: reset & enable Ethernet core before using it + - mm: fix classzone_idx underflow in shrink_zones() + - tracing/kprobes: Allow to create probe with a module name starting with a + digit + - usb: dwc3: replace %p with %pK + - USB: serial: cp210x: add ID for CEL EM3588 USB ZigBee stick + - Add USB quirk for HVR-950q to avoid intermittent device resets + - usb: usbip: set buffer pointers to NULL after free + - usb: Fix typo in the definition of Endpoint[out]Request + - mac80211_hwsim: Replace bogus hrtimer clockid + - sysctl: don't print negative flag for proc_douintvec + - sysctl: report EINVAL if value is larger than UINT_MAX for proc_douintvec + - pinctrl: sh-pfc: r8a7791: Fix SCIF2 pinmux data + - pinctrl: meson: meson8b: fix the NAND DQS pins + - pinctrl: sunxi: Fix SPDIF function name for A83T + - pinctrl: mxs: atomically switch mux and drive strength config + - pinctrl: sh-pfc: Update info pointer after SoC-specific init + - USB: serial: option: add two Longcheer device ids + - USB: serial: qcserial: new Sierra Wireless EM7305 device ID + - gfs2: Fix glock rhashtable rcu bug + - x86/tools: Fix gcc-7 warning in relocs.c + - x86/uaccess: Optimize copy_user_enhanced_fast_string() for short strings + - ath10k: override CE5 config for QCA9377 + - KEYS: Fix an error code in request_master_key() + - RDMA/uverbs: Check port number supplied by user verbs cmds + - mqueue: fix a use-after-free in sys_mq_notify() + - tools include: Add a __fallthrough statement + - tools string: Use __fallthrough in perf_atoll() + - tools strfilter: Use __fallthrough + - perf top: Use __fallthrough + - perf intel-pt: Use __fallthrough + - perf thread_map: Correctly size buffer used with dirent->dt_name + - perf scripting perl: Fix compile error with some perl5 versions + - perf tests: Avoid possible truncation with dirent->d_name + snprintf + - perf bench numa: Avoid possible truncation when using snprintf() + - perf tools: Use readdir() instead of deprecated readdir_r() + - perf thread_map: Use readdir() instead of deprecated readdir_r() + - perf script: Use readdir() instead of deprecated readdir_r() + - perf tools: Remove duplicate const qualifier + - perf annotate browser: Fix behaviour of Shift-Tab with nothing focussed + - perf pmu: Fix misleadingly indented assignment (whitespace) + - perf dwarf: Guard !x86_64 definitions under #ifdef else clause + - perf trace: Do not process PERF_RECORD_LOST twice + - perf tests: Remove wrong semicolon in while loop in CQM test + - perf tools: Use readdir() instead of deprecated readdir_r() again + - md: fix incorrect use of lexx_to_cpu in does_sb_need_changing + - md: fix super_offset endianness in super_1_rdev_size_change + - tcp: fix tcp_mark_head_lost to check skb len before fragmenting + - staging: vt6556: vnt_start Fix missing call to vnt_key_init_table. + - staging: comedi: fix clean-up of comedi_class in comedi_init() + - ext4: check return value of kstrtoull correctly in reserved_clusters_store + - x86/mm/pat: Don't report PAT on CPUs that don't support it + - saa7134: fix warm Medion 7134 EEPROM read + - Linux 4.4.77 + + -- Kleber Sacilotto de Souza Fri, 11 Aug 2017 16:51:50 +0200 + +linux (4.4.0-92.115) xenial; urgency=low + + * linux: 4.4.0-92.115 -proposed tracker (LP: #1709812) + + * Creating conntrack entry failure with kernel 4.4.0-89 (LP: #1709032) + - Revert "netfilter: synproxy: fix conntrackd interaction" + + -- Kleber Sacilotto de Souza Thu, 10 Aug 2017 10:29:51 +0200 + linux (4.4.0-91.114) xenial; urgency=low * CVE-2017-1000112 diff -u linux-4.4.0/debian/control linux-4.4.0/debian/control --- linux-4.4.0/debian/control +++ linux-4.4.0/debian/control @@ -85,7 +85,7 @@ /usr/share/doc/linux-doc/00-INDEX for a list of what is contained in each file. -Package: linux-headers-4.4.0-91 +Package: linux-headers-4.4.0-98 Build-Profiles: Architecture: all Multi-Arch: foreign @@ -96,7 +96,7 @@ 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-headers-4.4.0-91/debian.README.gz for details + /usr/share/doc/linux-headers-4.4.0-98/debian.README.gz for details Package: linux-libc-dev Architecture: i386 amd64 armhf arm64 x32 powerpc ppc64el s390x @@ -132,18 +132,18 @@ version locked tools (such as perf and x86_energy_perf_policy) for version PGKVER. -Package: linux-tools-4.4.0-91 +Package: linux-tools-4.4.0-98 Build-Profiles: Architecture: i386 amd64 armhf arm64 powerpc ppc64el s390x Section: devel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common -Description: Linux kernel version specific tools for version 4.4.0-91 +Description: Linux kernel version specific tools for version 4.4.0-98 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-91 on + version 4.4.0-98 on 64 bit x86. - You probably want to install linux-tools-4.4.0-91-. + You probably want to install linux-tools-4.4.0-98-. Package: linux-cloud-tools-common Build-Profiles: @@ -165,28 +165,28 @@ This package provides the architecture independent parts for kernel version locked tools for cloud tools for version PGKVER. -Package: linux-cloud-tools-4.4.0-91 +Package: linux-cloud-tools-4.4.0-98 Build-Profiles: Architecture: i386 amd64 armhf 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-91 +Description: Linux kernel version specific cloud tools for version 4.4.0-98 This package provides the architecture dependant parts for kernel - version locked tools for cloud tools for version 4.4.0-91 on + version locked tools for cloud tools for version 4.4.0-98 on 64 bit x86. - You probably want to install linux-cloud-tools-4.4.0-91-. + You probably want to install linux-cloud-tools-4.4.0-98-. -Package: linux-image-4.4.0-91-generic +Package: linux-image-4.4.0-98-generic Build-Profiles: Architecture: i386 amd64 armhf arm64 ppc64el s390x Section: kernel Priority: optional Provides: linux-image, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [i386 amd64 x32]${linux:rprovides} -Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools | linux-initramfs-tool, kmod -Recommends: grub-pc [i386 amd64 x32] | grub-efi-amd64 [amd64 x32] | grub-efi-ia32 [i386 amd64 x32] | grub [i386 amd64 x32] | lilo [i386 amd64 x32] | flash-kernel [armhf arm64] | grub-ieee1275 [ppc64el] -Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-91-generic +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod +Recommends: grub-pc [i386 amd64 x32] | grub-efi-amd64 [amd64 x32] | grub-efi-ia32 [i386 amd64 x32] | grub [i386 amd64 x32] | lilo [i386 amd64 x32] | flash-kernel [armhf arm64] | grub-ieee1275 [ppc64el], initramfs-tools | linux-initramfs-tool +Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-98-generic 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. @@ -203,12 +203,12 @@ the linux-generic meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-image-extra-4.4.0-91-generic +Package: linux-image-extra-4.4.0-98-generic Build-Profiles: Architecture: i386 amd64 armhf arm64 ppc64el s390x Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-91-generic, crda | wireless-crda +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-98-generic, crda | wireless-crda Description: Linux kernel extra modules for version 4.4.0 on 64 bit x86 SMP This package contains the Linux kernel extra modules for version 4.4.0 on 64 bit x86 SMP. @@ -225,21 +225,21 @@ the linux-generic meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-4.4.0-91-generic +Package: linux-headers-4.4.0-98-generic Build-Profiles: Architecture: i386 amd64 armhf arm64 ppc64el s390x Section: devel Priority: optional -Depends: ${misc:Depends}, linux-headers-4.4.0-91, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-headers-4.4.0-98, ${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-91/debian.README.gz for details. + /usr/share/doc/linux-headers-4.4.0-98/debian.README.gz for details. -Package: linux-image-4.4.0-91-generic-dbgsym +Package: linux-image-4.4.0-98-generic-dbgsym Build-Profiles: Architecture: i386 amd64 armhf arm64 ppc64el s390x Section: devel @@ -256,27 +256,27 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-4.4.0-91-generic +Package: linux-tools-4.4.0-98-generic Build-Profiles: Architecture: i386 amd64 armhf arm64 ppc64el s390x Section: devel Priority: optional -Depends: ${misc:Depends}, linux-tools-4.4.0-91 -Description: Linux kernel version specific tools for version 4.4.0-91 +Depends: ${misc:Depends}, linux-tools-4.4.0-98 +Description: Linux kernel version specific tools for version 4.4.0-98 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-91 on + version 4.4.0-98 on 64 bit x86. -Package: linux-cloud-tools-4.4.0-91-generic +Package: linux-cloud-tools-4.4.0-98-generic Build-Profiles: Architecture: i386 amd64 armhf arm64 ppc64el s390x Section: devel Priority: optional -Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-91 -Description: Linux kernel version specific cloud tools for version 4.4.0-91 +Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-98 +Description: Linux kernel version specific cloud tools for version 4.4.0-98 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 4.4.0-91 on + version locked tools for cloud for version 4.4.0-98 on 64 bit x86. Package: linux-udebs-generic @@ -290,15 +290,15 @@ for easier version and migration tracking. -Package: linux-image-4.4.0-91-generic-lpae +Package: linux-image-4.4.0-98-generic-lpae Build-Profiles: Architecture: armhf Section: kernel Priority: optional Provides: linux-image, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules${linux:rprovides} -Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools | linux-initramfs-tool, kmod -Recommends: flash-kernel [armhf] -Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-91-generic-lpae +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod +Recommends: flash-kernel [armhf], initramfs-tools | linux-initramfs-tool +Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-98-generic-lpae 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. @@ -315,12 +315,12 @@ the linux-generic-lpae meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-image-extra-4.4.0-91-generic-lpae +Package: linux-image-extra-4.4.0-98-generic-lpae Build-Profiles: Architecture: armhf Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-91-generic-lpae, crda | wireless-crda +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-98-generic-lpae, crda | wireless-crda Description: Linux kernel extra modules for version 4.4.0 on 64 bit x86 SMP This package contains the Linux kernel extra modules for version 4.4.0 on 64 bit x86 SMP. @@ -337,21 +337,21 @@ the linux-generic-lpae meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-4.4.0-91-generic-lpae +Package: linux-headers-4.4.0-98-generic-lpae Build-Profiles: Architecture: armhf Section: devel Priority: optional -Depends: ${misc:Depends}, linux-headers-4.4.0-91, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-headers-4.4.0-98, ${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-91/debian.README.gz for details. + /usr/share/doc/linux-headers-4.4.0-98/debian.README.gz for details. -Package: linux-image-4.4.0-91-generic-lpae-dbgsym +Package: linux-image-4.4.0-98-generic-lpae-dbgsym Build-Profiles: Architecture: armhf Section: devel @@ -368,27 +368,27 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-4.4.0-91-generic-lpae +Package: linux-tools-4.4.0-98-generic-lpae Build-Profiles: Architecture: armhf Section: devel Priority: optional -Depends: ${misc:Depends}, linux-tools-4.4.0-91 -Description: Linux kernel version specific tools for version 4.4.0-91 +Depends: ${misc:Depends}, linux-tools-4.4.0-98 +Description: Linux kernel version specific tools for version 4.4.0-98 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-91 on + version 4.4.0-98 on 64 bit x86. -Package: linux-cloud-tools-4.4.0-91-generic-lpae +Package: linux-cloud-tools-4.4.0-98-generic-lpae Build-Profiles: Architecture: armhf Section: devel Priority: optional -Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-91 -Description: Linux kernel version specific cloud tools for version 4.4.0-91 +Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-98 +Description: Linux kernel version specific cloud tools for version 4.4.0-98 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 4.4.0-91 on + version locked tools for cloud for version 4.4.0-98 on 64 bit x86. Package: linux-udebs-generic-lpae @@ -402,15 +402,15 @@ for easier version and migration tracking. -Package: linux-image-4.4.0-91-lowlatency +Package: linux-image-4.4.0-98-lowlatency Build-Profiles: Architecture: i386 amd64 Section: kernel Priority: optional Provides: linux-image, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [i386 amd64 x32]${linux:rprovides} -Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools | linux-initramfs-tool, kmod -Recommends: grub-pc [i386 amd64 x32] | grub-efi-amd64 [amd64 x32] | grub-efi-ia32 [i386 amd64 x32] | grub [i386 amd64 x32] | lilo [i386 amd64 x32] | flash-kernel [armhf arm64] -Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-91-lowlatency +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod +Recommends: grub-pc [i386 amd64 x32] | grub-efi-amd64 [amd64 x32] | grub-efi-ia32 [i386 amd64 x32] | grub [i386 amd64 x32] | lilo [i386 amd64 x32] | flash-kernel [armhf arm64], initramfs-tools | linux-initramfs-tool +Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-98-lowlatency 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. @@ -427,12 +427,12 @@ the linux-lowlatency meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-image-extra-4.4.0-91-lowlatency +Package: linux-image-extra-4.4.0-98-lowlatency Build-Profiles: Architecture: i386 amd64 Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-91-lowlatency, crda | wireless-crda +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-98-lowlatency, crda | wireless-crda Description: Linux kernel extra modules for version 4.4.0 on 64 bit x86 SMP This package contains the Linux kernel extra modules for version 4.4.0 on 64 bit x86 SMP. @@ -449,21 +449,21 @@ the linux-lowlatency meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-4.4.0-91-lowlatency +Package: linux-headers-4.4.0-98-lowlatency Build-Profiles: Architecture: i386 amd64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-headers-4.4.0-91, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-headers-4.4.0-98, ${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-91/debian.README.gz for details. + /usr/share/doc/linux-headers-4.4.0-98/debian.README.gz for details. -Package: linux-image-4.4.0-91-lowlatency-dbgsym +Package: linux-image-4.4.0-98-lowlatency-dbgsym Build-Profiles: Architecture: i386 amd64 Section: devel @@ -480,27 +480,27 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-4.4.0-91-lowlatency +Package: linux-tools-4.4.0-98-lowlatency Build-Profiles: Architecture: i386 amd64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-tools-4.4.0-91 -Description: Linux kernel version specific tools for version 4.4.0-91 +Depends: ${misc:Depends}, linux-tools-4.4.0-98 +Description: Linux kernel version specific tools for version 4.4.0-98 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-91 on + version 4.4.0-98 on 64 bit x86. -Package: linux-cloud-tools-4.4.0-91-lowlatency +Package: linux-cloud-tools-4.4.0-98-lowlatency Build-Profiles: Architecture: i386 amd64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-91 -Description: Linux kernel version specific cloud tools for version 4.4.0-91 +Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-98 +Description: Linux kernel version specific cloud tools for version 4.4.0-98 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 4.4.0-91 on + version locked tools for cloud for version 4.4.0-98 on 64 bit x86. Package: linux-udebs-lowlatency @@ -514,15 +514,15 @@ for easier version and migration tracking. -Package: linux-image-4.4.0-91-powerpc-e500mc +Package: linux-image-4.4.0-98-powerpc-e500mc Build-Profiles: Architecture: powerpc Section: kernel Priority: optional Provides: linux-image, fuse-module, redhat-cluster-modules, ivtv-modules${linux:rprovides} -Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools | linux-initramfs-tool, kmod -Recommends: grub-ieee1275 -Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-91-powerpc-e500mc +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod +Recommends: grub-ieee1275, initramfs-tools | linux-initramfs-tool +Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-98-powerpc-e500mc Description: Linux kernel image for version 4.4.0 on 32-bit Freescale Power e500mc This package contains the Linux kernel image for version 4.4.0 on 32-bit Freescale Power e500mc. @@ -539,12 +539,12 @@ the linux-powerpc-e500mc meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-image-extra-4.4.0-91-powerpc-e500mc +Package: linux-image-extra-4.4.0-98-powerpc-e500mc Build-Profiles: Architecture: powerpc Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-91-powerpc-e500mc, crda | wireless-crda +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-98-powerpc-e500mc, crda | wireless-crda Description: Linux kernel extra modules for version 4.4.0 on 32-bit Freescale Power e500mc This package contains the Linux kernel extra modules for version 4.4.0 on 32-bit Freescale Power e500mc. @@ -561,21 +561,21 @@ the linux-powerpc-e500mc meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-4.4.0-91-powerpc-e500mc +Package: linux-headers-4.4.0-98-powerpc-e500mc Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-headers-4.4.0-91, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-headers-4.4.0-98, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Linux kernel headers for version 4.4.0 on 32-bit Freescale Power e500mc This package provides kernel header files for version 4.4.0 on 32-bit Freescale Power e500mc. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-4.4.0-91/debian.README.gz for details. + /usr/share/doc/linux-headers-4.4.0-98/debian.README.gz for details. -Package: linux-image-4.4.0-91-powerpc-e500mc-dbgsym +Package: linux-image-4.4.0-98-powerpc-e500mc-dbgsym Build-Profiles: Architecture: powerpc Section: devel @@ -592,27 +592,27 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-4.4.0-91-powerpc-e500mc +Package: linux-tools-4.4.0-98-powerpc-e500mc Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-tools-4.4.0-91 -Description: Linux kernel version specific tools for version 4.4.0-91 +Depends: ${misc:Depends}, linux-tools-4.4.0-98 +Description: Linux kernel version specific tools for version 4.4.0-98 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-91 on + version 4.4.0-98 on 64 bit x86. -Package: linux-cloud-tools-4.4.0-91-powerpc-e500mc +Package: linux-cloud-tools-4.4.0-98-powerpc-e500mc Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-91 -Description: Linux kernel version specific cloud tools for version 4.4.0-91 +Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-98 +Description: Linux kernel version specific cloud tools for version 4.4.0-98 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 4.4.0-91 on + version locked tools for cloud for version 4.4.0-98 on 64 bit x86. Package: linux-udebs-powerpc-e500mc @@ -626,15 +626,15 @@ for easier version and migration tracking. -Package: linux-image-4.4.0-91-powerpc-smp +Package: linux-image-4.4.0-98-powerpc-smp Build-Profiles: Architecture: powerpc Section: kernel Priority: optional Provides: linux-image, fuse-module, redhat-cluster-modules, ivtv-modules${linux:rprovides} -Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools | linux-initramfs-tool, kmod -Recommends: yaboot -Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-91-powerpc-smp +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod +Recommends: yaboot, initramfs-tools | linux-initramfs-tool +Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-98-powerpc-smp Description: Linux kernel image for version 4.4.0 on 32-bit PowerPC SMP This package contains the Linux kernel image for version 4.4.0 on 32-bit PowerPC SMP. @@ -651,12 +651,12 @@ the linux-powerpc-smp meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-image-extra-4.4.0-91-powerpc-smp +Package: linux-image-extra-4.4.0-98-powerpc-smp Build-Profiles: Architecture: powerpc Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-91-powerpc-smp, crda | wireless-crda +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-98-powerpc-smp, crda | wireless-crda Description: Linux kernel extra modules for version 4.4.0 on 32-bit PowerPC SMP This package contains the Linux kernel extra modules for version 4.4.0 on 32-bit PowerPC SMP. @@ -673,21 +673,21 @@ the linux-powerpc-smp meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-4.4.0-91-powerpc-smp +Package: linux-headers-4.4.0-98-powerpc-smp Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-headers-4.4.0-91, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-headers-4.4.0-98, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Linux kernel headers for version 4.4.0 on 32-bit PowerPC SMP This package provides kernel header files for version 4.4.0 on 32-bit PowerPC SMP. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-4.4.0-91/debian.README.gz for details. + /usr/share/doc/linux-headers-4.4.0-98/debian.README.gz for details. -Package: linux-image-4.4.0-91-powerpc-smp-dbgsym +Package: linux-image-4.4.0-98-powerpc-smp-dbgsym Build-Profiles: Architecture: powerpc Section: devel @@ -704,27 +704,27 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-4.4.0-91-powerpc-smp +Package: linux-tools-4.4.0-98-powerpc-smp Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-tools-4.4.0-91 -Description: Linux kernel version specific tools for version 4.4.0-91 +Depends: ${misc:Depends}, linux-tools-4.4.0-98 +Description: Linux kernel version specific tools for version 4.4.0-98 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-91 on + version 4.4.0-98 on 64 bit x86. -Package: linux-cloud-tools-4.4.0-91-powerpc-smp +Package: linux-cloud-tools-4.4.0-98-powerpc-smp Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-91 -Description: Linux kernel version specific cloud tools for version 4.4.0-91 +Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-98 +Description: Linux kernel version specific cloud tools for version 4.4.0-98 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 4.4.0-91 on + version locked tools for cloud for version 4.4.0-98 on 64 bit x86. Package: linux-udebs-powerpc-smp @@ -738,15 +738,15 @@ for easier version and migration tracking. -Package: linux-image-4.4.0-91-powerpc64-emb +Package: linux-image-4.4.0-98-powerpc64-emb Build-Profiles: Architecture: powerpc Section: kernel Priority: optional Provides: linux-image, fuse-module, redhat-cluster-modules, ivtv-modules${linux:rprovides} -Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools | linux-initramfs-tool, kmod -Recommends: grub-ieee1275 -Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-91-powerpc64-emb +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod +Recommends: grub-ieee1275, initramfs-tools | linux-initramfs-tool +Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-98-powerpc64-emb Description: Linux kernel image for version 4.4.0 on 64-bit PowerPC SMP Book3E This package contains the Linux kernel image for version 4.4.0 on 64-bit PowerPC SMP Book3E. @@ -763,12 +763,12 @@ the linux-powerpc64-emb meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-image-extra-4.4.0-91-powerpc64-emb +Package: linux-image-extra-4.4.0-98-powerpc64-emb Build-Profiles: Architecture: powerpc Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-91-powerpc64-emb, crda | wireless-crda +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-98-powerpc64-emb, crda | wireless-crda Description: Linux kernel extra modules for version 4.4.0 on 64-bit PowerPC SMP Book3E This package contains the Linux kernel extra modules for version 4.4.0 on 64-bit PowerPC SMP Book3E. @@ -785,21 +785,21 @@ the linux-powerpc64-emb meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-4.4.0-91-powerpc64-emb +Package: linux-headers-4.4.0-98-powerpc64-emb Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-headers-4.4.0-91, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-headers-4.4.0-98, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Linux kernel headers for version 4.4.0 on 64-bit PowerPC SMP Book3E This package provides kernel header files for version 4.4.0 on 64-bit PowerPC SMP Book3E. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-4.4.0-91/debian.README.gz for details. + /usr/share/doc/linux-headers-4.4.0-98/debian.README.gz for details. -Package: linux-image-4.4.0-91-powerpc64-emb-dbgsym +Package: linux-image-4.4.0-98-powerpc64-emb-dbgsym Build-Profiles: Architecture: powerpc Section: devel @@ -816,27 +816,27 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-4.4.0-91-powerpc64-emb +Package: linux-tools-4.4.0-98-powerpc64-emb Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-tools-4.4.0-91 -Description: Linux kernel version specific tools for version 4.4.0-91 +Depends: ${misc:Depends}, linux-tools-4.4.0-98 +Description: Linux kernel version specific tools for version 4.4.0-98 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-91 on + version 4.4.0-98 on 64 bit x86. -Package: linux-cloud-tools-4.4.0-91-powerpc64-emb +Package: linux-cloud-tools-4.4.0-98-powerpc64-emb Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-91 -Description: Linux kernel version specific cloud tools for version 4.4.0-91 +Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-98 +Description: Linux kernel version specific cloud tools for version 4.4.0-98 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 4.4.0-91 on + version locked tools for cloud for version 4.4.0-98 on 64 bit x86. Package: linux-udebs-powerpc64-emb @@ -850,15 +850,15 @@ for easier version and migration tracking. -Package: linux-image-4.4.0-91-powerpc64-smp +Package: linux-image-4.4.0-98-powerpc64-smp Build-Profiles: Architecture: powerpc Section: kernel Priority: optional Provides: linux-image, fuse-module, redhat-cluster-modules, ivtv-modules${linux:rprovides} -Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools | linux-initramfs-tool, kmod -Recommends: yaboot -Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-91-powerpc64-smp +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod +Recommends: yaboot, initramfs-tools | linux-initramfs-tool +Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-98-powerpc64-smp Description: Linux kernel image for version 4.4.0 on 64-bit PowerPC SMP This package contains the Linux kernel image for version 4.4.0 on 64-bit PowerPC SMP. @@ -875,12 +875,12 @@ the linux-powerpc64-smp meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-image-extra-4.4.0-91-powerpc64-smp +Package: linux-image-extra-4.4.0-98-powerpc64-smp Build-Profiles: Architecture: powerpc Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-91-powerpc64-smp, crda | wireless-crda +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-98-powerpc64-smp, crda | wireless-crda Description: Linux kernel extra modules for version 4.4.0 on 64-bit PowerPC SMP This package contains the Linux kernel extra modules for version 4.4.0 on 64-bit PowerPC SMP. @@ -897,21 +897,21 @@ the linux-powerpc64-smp meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-4.4.0-91-powerpc64-smp +Package: linux-headers-4.4.0-98-powerpc64-smp Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-headers-4.4.0-91, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-headers-4.4.0-98, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Linux kernel headers for version 4.4.0 on 64-bit PowerPC SMP This package provides kernel header files for version 4.4.0 on 64-bit PowerPC SMP. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-4.4.0-91/debian.README.gz for details. + /usr/share/doc/linux-headers-4.4.0-98/debian.README.gz for details. -Package: linux-image-4.4.0-91-powerpc64-smp-dbgsym +Package: linux-image-4.4.0-98-powerpc64-smp-dbgsym Build-Profiles: Architecture: powerpc Section: devel @@ -928,27 +928,27 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-4.4.0-91-powerpc64-smp +Package: linux-tools-4.4.0-98-powerpc64-smp Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-tools-4.4.0-91 -Description: Linux kernel version specific tools for version 4.4.0-91 +Depends: ${misc:Depends}, linux-tools-4.4.0-98 +Description: Linux kernel version specific tools for version 4.4.0-98 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-91 on + version 4.4.0-98 on 64 bit x86. -Package: linux-cloud-tools-4.4.0-91-powerpc64-smp +Package: linux-cloud-tools-4.4.0-98-powerpc64-smp Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-91 -Description: Linux kernel version specific cloud tools for version 4.4.0-91 +Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-98 +Description: Linux kernel version specific cloud tools for version 4.4.0-98 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 4.4.0-91 on + version locked tools for cloud for version 4.4.0-98 on 64 bit x86. Package: linux-udebs-powerpc64-smp diff -u linux-4.4.0/debian/control-scripts/postinst linux-4.4.0/debian/control-scripts/postinst --- linux-4.4.0/debian/control-scripts/postinst +++ linux-4.4.0/debian/control-scripts/postinst @@ -142,7 +142,7 @@ } } - +$initrd = '' if (! -x "$ramdisk"); # For some versions of kernel-package, we had this warning in the # postinst, but the rules did not really interpolate the value in. diff -u linux-4.4.0/debian/control-scripts/postrm linux-4.4.0/debian/control-scripts/postrm --- linux-4.4.0/debian/control-scripts/postrm +++ linux-4.4.0/debian/control-scripts/postrm @@ -156,6 +156,8 @@ } } +$initrd = '' if (! -x "$ramdisk"); + if ($link_in_boot) { $image_dest = "/$image_dir/"; $image_dest =~ s|^/*|/|o; diff -u linux-4.4.0/debian/control-scripts/preinst linux-4.4.0/debian/control-scripts/preinst --- linux-4.4.0/debian/control-scripts/preinst +++ linux-4.4.0/debian/control-scripts/preinst @@ -161,6 +161,8 @@ } } +$initrd = '' if (! -x "$ramdisk"); + $ENV{KERNEL_ARCH}=$kernel_arch if $kernel_arch; # About to upgrade this package from version $2 TO THIS VERSION. diff -u linux-4.4.0/debian/control-scripts/prerm linux-4.4.0/debian/control-scripts/prerm --- linux-4.4.0/debian/control-scripts/prerm +++ linux-4.4.0/debian/control-scripts/prerm @@ -163,6 +163,7 @@ } } +$initrd = '' if (! -x "$ramdisk"); $ENV{KERNEL_ARCH}=$kernel_arch if $kernel_arch; diff -u linux-4.4.0/debian/rules linux-4.4.0/debian/rules --- linux-4.4.0/debian/rules +++ linux-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-4.4.0/debian/scripts/misc/getabis linux-4.4.0/debian/scripts/misc/getabis --- linux-4.4.0/debian/scripts/misc/getabis +++ linux-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-4.4.0/debian/scripts/misc/insert-ubuntu-changes linux-4.4.0/debian/scripts/misc/insert-ubuntu-changes --- linux-4.4.0/debian/scripts/misc/insert-ubuntu-changes +++ linux-4.4.0/debian/scripts/misc/insert-ubuntu-changes @@ -5,8 +5,30 @@ } my ($changelog, $end, $start) = @ARGV; -$end =~ s/.*\.//; -$start =~ s/.*\.//; +$end =~ s/^\D+//; +$start =~ s/^\D+//; + +sub version_cmp($$) { + my @a = split(/[\.-]+/, $_[0]); + my @b = split(/[\.-]+/, $_[1]); + for (my $i = 1;; $i++) { + if (!defined $a[$i]) { + if (!defined $b[$i]) { + return 0; + } + return -1; + } + if (!defined $b[$i]) { + return 1; + } + if ($a[$i] < $b[$i]) { + return -1; + } + if ($a[$i] > $b[$i]) { + return 1; + } + } +} my @changes = (); my $output = 0; @@ -14,11 +36,11 @@ open(CHG, ") { - if (/^\S+\s+\((.*\.(\d+))\)/) { - if ($2 <= $end) { + if (/^\S+\s+\((.*)\)/) { + if (version_cmp($1, $end) <= -1) { last; } - if ($2 == $start) { + if ($1 eq $start) { $output = 1; } if ($output) { diff -u linux-4.4.0/debian/tests/rebuild linux-4.4.0/debian/tests/rebuild --- linux-4.4.0/debian/tests/rebuild +++ linux-4.4.0/debian/tests/rebuild @@ -20 +20 @@ -dpkg-buildpackage -rfakeroot -us -uc -b +dpkg-buildpackage -rfakeroot -us -uc -b -Pautopkgtest diff -u linux-4.4.0/drivers/acpi/apei/ghes.c linux-4.4.0/drivers/acpi/apei/ghes.c --- linux-4.4.0/drivers/acpi/apei/ghes.c +++ linux-4.4.0/drivers/acpi/apei/ghes.c @@ -1067,6 +1067,7 @@ if (list_empty(&ghes_sci)) unregister_acpi_hed_notifier(&ghes_notifier_sci); mutex_unlock(&ghes_list_mutex); + synchronize_rcu(); break; case ACPI_HEST_NOTIFY_NMI: ghes_nmi_remove(ghes); diff -u linux-4.4.0/drivers/android/binder.c linux-4.4.0/drivers/android/binder.c --- linux-4.4.0/drivers/android/binder.c +++ linux-4.4.0/drivers/android/binder.c @@ -1718,8 +1718,12 @@ list_add_tail(&t->work.entry, target_list); tcomplete->type = BINDER_WORK_TRANSACTION_COMPLETE; list_add_tail(&tcomplete->entry, &thread->todo); - if (target_wait) - wake_up_interruptible(target_wait); + if (target_wait) { + if (reply || !(t->flags & TF_ONE_WAY)) + wake_up_interruptible_sync(target_wait); + else + wake_up_interruptible(target_wait); + } return; err_get_unused_fd_failed: @@ -2865,7 +2869,7 @@ const char *failure_string; struct binder_buffer *buffer; - if (proc->tsk != current) + if (proc->tsk != current->group_leader) return -EINVAL; if ((vma->vm_end - vma->vm_start) > SZ_4M) @@ -2966,8 +2970,8 @@ proc = kzalloc(sizeof(*proc), GFP_KERNEL); if (proc == NULL) return -ENOMEM; - get_task_struct(current); - proc->tsk = current; + get_task_struct(current->group_leader); + proc->tsk = current->group_leader; INIT_LIST_HEAD(&proc->todo); init_waitqueue_head(&proc->wait); proc->default_priority = task_nice(current); diff -u linux-4.4.0/drivers/ata/libata-scsi.c linux-4.4.0/drivers/ata/libata-scsi.c --- linux-4.4.0/drivers/ata/libata-scsi.c +++ linux-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-4.4.0/drivers/base/core.c linux-4.4.0/drivers/base/core.c --- linux-4.4.0/drivers/base/core.c +++ linux-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-4.4.0/drivers/base/platform.c linux-4.4.0/drivers/base/platform.c --- linux-4.4.0/drivers/base/platform.c +++ linux-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-4.4.0/drivers/base/power/domain.c linux-4.4.0/drivers/base/power/domain.c --- linux-4.4.0/drivers/base/power/domain.c +++ linux-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-4.4.0/drivers/bluetooth/btusb.c linux-4.4.0/drivers/bluetooth/btusb.c --- linux-4.4.0/drivers/bluetooth/btusb.c +++ linux-4.4.0/drivers/bluetooth/btusb.c @@ -341,6 +341,7 @@ { USB_DEVICE(0x13d3, 0x3410), .driver_info = BTUSB_REALTEK }, { USB_DEVICE(0x13d3, 0x3416), .driver_info = BTUSB_REALTEK }, { USB_DEVICE(0x13d3, 0x3459), .driver_info = BTUSB_REALTEK }, + { USB_DEVICE(0x13d3, 0x3494), .driver_info = BTUSB_REALTEK }, /* Additional Realtek 8821AE Bluetooth devices */ { USB_DEVICE(0x0b05, 0x17dc), .driver_info = BTUSB_REALTEK }, @@ -1659,8 +1660,8 @@ struct sk_buff *skb; const struct firmware *fw; const u8 *fw_ptr; - int disable_patch; - struct intel_version *ver; + int disable_patch, err; + struct intel_version ver; const u8 mfg_enable[] = { 0x01, 0x00 }; const u8 mfg_disable[] = { 0x00, 0x00 }; @@ -1691,35 +1692,22 @@ * The returned information are hardware variant and revision plus * firmware variant, revision and build number. */ - skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT); - if (IS_ERR(skb)) { - BT_ERR("%s reading Intel fw version command failed (%ld)", - hdev->name, PTR_ERR(skb)); - return PTR_ERR(skb); - } - - if (skb->len != sizeof(*ver)) { - BT_ERR("%s Intel version event length mismatch", hdev->name); - kfree_skb(skb); - return -EIO; - } - - ver = (struct intel_version *)skb->data; + err = btintel_read_version(hdev, &ver); + if (err) + return err; BT_INFO("%s: read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x", - hdev->name, ver->hw_platform, ver->hw_variant, - ver->hw_revision, ver->fw_variant, ver->fw_revision, - ver->fw_build_num, ver->fw_build_ww, ver->fw_build_yy, - ver->fw_patch_num); + hdev->name, ver.hw_platform, ver.hw_variant, ver.hw_revision, + ver.fw_variant, ver.fw_revision, ver.fw_build_num, + ver.fw_build_ww, ver.fw_build_yy, ver.fw_patch_num); /* fw_patch_num indicates the version of patch the device currently * have. If there is no patch data in the device, it is always 0x00. * So, if it is other than 0x00, no need to patch the device again. */ - if (ver->fw_patch_num) { + if (ver.fw_patch_num) { BT_INFO("%s: Intel device is already patched. patch num: %02x", - hdev->name, ver->fw_patch_num); - kfree_skb(skb); + hdev->name, ver.fw_patch_num); goto complete; } @@ -1729,15 +1717,11 @@ * If no patch file is found, allow the device to operate without * a patch. */ - fw = btusb_setup_intel_get_fw(hdev, ver); - if (!fw) { - kfree_skb(skb); + fw = btusb_setup_intel_get_fw(hdev, &ver); + if (!fw) goto complete; - } fw_ptr = fw->data; - kfree_skb(skb); - /* This Intel specific command enables the manufacturer mode of the * controller. * @@ -2022,7 +2006,7 @@ 0x00, 0x08, 0x04, 0x00 }; struct btusb_data *data = hci_get_drvdata(hdev); struct sk_buff *skb; - struct intel_version *ver; + struct intel_version ver; struct intel_boot_params *params; const struct firmware *fw; const u8 *fw_ptr; @@ -2040,45 +2024,36 @@ * is in bootloader mode or if it already has operational firmware * loaded. */ - skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT); - if (IS_ERR(skb)) { - BT_ERR("%s: Reading Intel version information failed (%ld)", - hdev->name, PTR_ERR(skb)); - return PTR_ERR(skb); - } - - if (skb->len != sizeof(*ver)) { - BT_ERR("%s: Intel version event size mismatch", hdev->name); - kfree_skb(skb); - return -EILSEQ; - } - - ver = (struct intel_version *)skb->data; + err = btintel_read_version(hdev, &ver); + if (err) + return err; /* The hardware platform number has a fixed value of 0x37 and * for now only accept this single value. */ - if (ver->hw_platform != 0x37) { + if (ver.hw_platform != 0x37) { BT_ERR("%s: Unsupported Intel hardware platform (%u)", - hdev->name, ver->hw_platform); - kfree_skb(skb); + hdev->name, ver.hw_platform); return -EINVAL; } - /* At the moment the iBT 3.0 hardware variants 0x0b (LnP/SfP) - * and 0x0c (WsP) are supported by this firmware loading method. + /* Check for supported iBT hardware variants of this firmware + * loading method. * * This check has been put in place to ensure correct forward * compatibility options when newer hardware variants come along. */ - if (ver->hw_variant != 0x0b && ver->hw_variant != 0x0c) { + switch (ver.hw_variant) { + case 0x0b: /* SfP */ + case 0x0c: /* WsP */ + break; + default: BT_ERR("%s: Unsupported Intel hardware variant (%u)", - hdev->name, ver->hw_variant); - kfree_skb(skb); + hdev->name, ver.hw_variant); return -EINVAL; } - btintel_version_info(hdev, ver); + btintel_version_info(hdev, &ver); /* The firmware variant determines if the device is in bootloader * mode or is running operational firmware. The value 0x06 identifies @@ -2093,8 +2068,7 @@ * It is not possible to use the Secure Boot Parameters in this * case since that command is only available in bootloader mode. */ - if (ver->fw_variant == 0x23) { - kfree_skb(skb); + if (ver.fw_variant == 0x23) { clear_bit(BTUSB_BOOTLOADER, &data->flags); btintel_check_bdaddr(hdev); return 0; @@ -2103,15 +2077,12 @@ /* If the device is not in bootloader mode, then the only possible * choice is to return an error and abort the device initialization. */ - if (ver->fw_variant != 0x06) { + if (ver.fw_variant != 0x06) { BT_ERR("%s: Unsupported Intel firmware variant (%u)", - hdev->name, ver->fw_variant); - kfree_skb(skb); + hdev->name, ver.fw_variant); return -ENODEV; } - kfree_skb(skb); - /* Read the secure boot parameters to identify the operating * details of the bootloader. */ @@ -2171,10 +2142,14 @@ /* With this Intel bootloader only the hardware variant and device * revision information are used to select the right firmware. * - * Currently this bootloader support is limited to hardware variant - * iBT 3.0 (LnP/SfP) which is identified by the value 11 (0x0b). + * The firmware filename is ibt--.sfi. + * + * Currently the supported hardware variants are: + * 11 (0x0b) for iBT3.0 (LnP/SfP) + * 12 (0x0c) for iBT3.5 (WsP) */ - snprintf(fwname, sizeof(fwname), "intel/ibt-11-%u.sfi", + snprintf(fwname, sizeof(fwname), "intel/ibt-%u-%u.sfi", + le16_to_cpu(ver.hw_variant), le16_to_cpu(params->dev_revid)); err = request_firmware(&fw, fwname, &hdev->dev); @@ -2190,7 +2165,8 @@ /* Save the DDC file name for later use to apply once the firmware * downloading is done. */ - snprintf(fwname, sizeof(fwname), "intel/ibt-11-%u.ddc", + snprintf(fwname, sizeof(fwname), "intel/ibt-%u-%u.ddc", + le16_to_cpu(ver.hw_variant), le16_to_cpu(params->dev_revid)); kfree_skb(skb); diff -u linux-4.4.0/drivers/bluetooth/hci_intel.c linux-4.4.0/drivers/bluetooth/hci_intel.c --- linux-4.4.0/drivers/bluetooth/hci_intel.c +++ linux-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-4.4.0/drivers/char/ipmi/ipmi_msghandler.c linux-4.4.0/drivers/char/ipmi/ipmi_msghandler.c --- linux-4.4.0/drivers/char/ipmi/ipmi_msghandler.c +++ linux-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-4.4.0/drivers/char/ipmi/ipmi_ssif.c linux-4.4.0/drivers/char/ipmi/ipmi_ssif.c --- linux-4.4.0/drivers/char/ipmi/ipmi_ssif.c +++ linux-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-4.4.0/drivers/char/tpm/tpm-chip.c linux-4.4.0/drivers/char/tpm/tpm-chip.c --- linux-4.4.0/drivers/char/tpm/tpm-chip.c +++ linux-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-4.4.0/drivers/char/tpm/tpm-dev.c linux-4.4.0/drivers/char/tpm/tpm-dev.c --- linux-4.4.0/drivers/char/tpm/tpm-dev.c +++ linux-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-4.4.0/drivers/char/tpm/tpm-interface.c linux-4.4.0/drivers/char/tpm/tpm-interface.c --- linux-4.4.0/drivers/char/tpm/tpm-interface.c +++ linux-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-4.4.0/drivers/char/tpm/tpm-sysfs.c linux-4.4.0/drivers/char/tpm/tpm-sysfs.c --- linux-4.4.0/drivers/char/tpm/tpm-sysfs.c +++ linux-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-4.4.0/drivers/char/tpm/tpm.h linux-4.4.0/drivers/char/tpm/tpm.h --- linux-4.4.0/drivers/char/tpm/tpm.h +++ linux-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-4.4.0/drivers/char/tpm/tpm2-cmd.c linux-4.4.0/drivers/char/tpm/tpm2-cmd.c --- linux-4.4.0/drivers/char/tpm/tpm2-cmd.c +++ linux-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-4.4.0/drivers/char/tpm/tpm_tis.c linux-4.4.0/drivers/char/tpm/tpm_tis.c --- linux-4.4.0/drivers/char/tpm/tpm_tis.c +++ linux-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-4.4.0/drivers/crypto/atmel-sha.c linux-4.4.0/drivers/crypto/atmel-sha.c --- linux-4.4.0/drivers/crypto/atmel-sha.c +++ linux-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-4.4.0/drivers/crypto/caam/caamhash.c linux-4.4.0/drivers/crypto/caam/caamhash.c --- linux-4.4.0/drivers/crypto/caam/caamhash.c +++ linux-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-4.4.0/drivers/crypto/talitos.c linux-4.4.0/drivers/crypto/talitos.c --- linux-4.4.0/drivers/crypto/talitos.c +++ linux-4.4.0/drivers/crypto/talitos.c @@ -804,7 +804,7 @@ * crypto alg */ #define TALITOS_CRA_PRIORITY 3000 -#define TALITOS_MAX_KEY_SIZE 96 +#define TALITOS_MAX_KEY_SIZE (AES_MAX_KEY_SIZE + SHA512_BLOCK_SIZE) #define TALITOS_MAX_IV_LENGTH 16 /* max of AES_BLOCK_SIZE, DES3_EDE_BLOCK_SIZE */ struct talitos_ctx { @@ -1388,6 +1388,11 @@ { struct talitos_ctx *ctx = crypto_ablkcipher_ctx(cipher); + if (keylen > TALITOS_MAX_KEY_SIZE) { + crypto_ablkcipher_set_flags(cipher, CRYPTO_TFM_RES_BAD_KEY_LEN); + return -EINVAL; + } + memcpy(&ctx->key, key, keylen); ctx->keylen = keylen; @@ -1744,9 +1749,9 @@ req_ctx->swinit = 0; } else { desc->ptr[1] = zero_entry; - /* Indicate next op is not the first. */ - req_ctx->first = 0; } + /* Indicate next op is not the first. */ + req_ctx->first = 0; /* HMAC key */ if (ctx->keylen) @@ -2765,7 +2770,8 @@ t_alg->algt.alg.hash.final = ahash_final; t_alg->algt.alg.hash.finup = ahash_finup; t_alg->algt.alg.hash.digest = ahash_digest; - t_alg->algt.alg.hash.setkey = ahash_setkey; + if (!strncmp(alg->cra_name, "hmac", 4)) + t_alg->algt.alg.hash.setkey = ahash_setkey; t_alg->algt.alg.hash.import = ahash_import; t_alg->algt.alg.hash.export = ahash_export; diff -u linux-4.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c linux-4.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c --- linux-4.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c +++ linux-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-4.4.0/drivers/gpu/drm/drm_atomic.c linux-4.4.0/drivers/gpu/drm/drm_atomic.c --- linux-4.4.0/drivers/gpu/drm/drm_atomic.c +++ linux-4.4.0/drivers/gpu/drm/drm_atomic.c @@ -1305,6 +1305,9 @@ if (config->funcs->atomic_check) ret = config->funcs->atomic_check(state->dev, state); + if (ret) + return ret; + if (!state->allow_modeset) { for_each_crtc_in_state(state, crtc, crtc_state, i) { if (drm_atomic_crtc_needs_modeset(crtc_state)) { @@ -1315,7 +1318,7 @@ } } - return ret; + return 0; } EXPORT_SYMBOL(drm_atomic_check_only); diff -u linux-4.4.0/drivers/gpu/drm/drm_dp_mst_topology.c linux-4.4.0/drivers/gpu/drm/drm_dp_mst_topology.c --- linux-4.4.0/drivers/gpu/drm/drm_dp_mst_topology.c +++ linux-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-4.4.0/drivers/gpu/drm/drm_gem.c linux-4.4.0/drivers/gpu/drm/drm_gem.c --- linux-4.4.0/drivers/gpu/drm/drm_gem.c +++ linux-4.4.0/drivers/gpu/drm/drm_gem.c @@ -715,13 +715,13 @@ struct drm_gem_object *obj = ptr; struct drm_device *dev = obj->dev; + if (dev->driver->gem_close_object) + dev->driver->gem_close_object(obj, file_priv); + if (drm_core_check_feature(dev, DRIVER_PRIME)) drm_gem_remove_prime_handles(obj, file_priv); drm_vma_node_revoke(&obj->vma_node, file_priv->filp); - if (dev->driver->gem_close_object) - dev->driver->gem_close_object(obj, file_priv); - drm_gem_object_handle_unreference_unlocked(obj); return 0; diff -u linux-4.4.0/drivers/gpu/drm/i915/intel_uncore.c linux-4.4.0/drivers/gpu/drm/i915/intel_uncore.c --- linux-4.4.0/drivers/gpu/drm/i915/intel_uncore.c +++ linux-4.4.0/drivers/gpu/drm/i915/intel_uncore.c @@ -635,7 +635,8 @@ "enabling oneshot unclaimed register reporting. " "Please use i915.mmio_debug=N for more information.\n"); __raw_i915_write32(dev_priv, FPGA_DBG, FPGA_DBG_RM_NOCLAIM); - i915.mmio_debug = mmio_debug_once--; + i915.mmio_debug = mmio_debug_once; + mmio_debug_once = false; } } diff -u linux-4.4.0/drivers/gpu/drm/msm/msm_gem_submit.c linux-4.4.0/drivers/gpu/drm/msm/msm_gem_submit.c --- linux-4.4.0/drivers/gpu/drm/msm/msm_gem_submit.c +++ linux-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-4.4.0/drivers/gpu/drm/radeon/atombios_encoders.c linux-4.4.0/drivers/gpu/drm/radeon/atombios_encoders.c --- linux-4.4.0/drivers/gpu/drm/radeon/atombios_encoders.c +++ linux-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-4.4.0/drivers/gpu/drm/radeon/ci_dpm.c linux-4.4.0/drivers/gpu/drm/radeon/ci_dpm.c --- linux-4.4.0/drivers/gpu/drm/radeon/ci_dpm.c +++ linux-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-4.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c linux-4.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c --- linux-4.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c +++ linux-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-4.4.0/drivers/hid/hid-core.c linux-4.4.0/drivers/hid/hid-core.c --- linux-4.4.0/drivers/hid/hid-core.c +++ linux-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-4.4.0/drivers/hid/hid-ids.h linux-4.4.0/drivers/hid/hid-ids.h --- linux-4.4.0/drivers/hid/hid-ids.h +++ linux-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-4.4.0/drivers/hid/hid-multitouch.c linux-4.4.0/drivers/hid/hid-multitouch.c --- linux-4.4.0/drivers/hid/hid-multitouch.c +++ linux-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-4.4.0/drivers/hwtracing/intel_th/pci.c linux-4.4.0/drivers/hwtracing/intel_th/pci.c --- linux-4.4.0/drivers/hwtracing/intel_th/pci.c +++ linux-4.4.0/drivers/hwtracing/intel_th/pci.c @@ -72,6 +72,16 @@ PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa2a6), .driver_data = (kernel_ulong_t)0, }, + { + /* Cannon Lake H */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa326), + .driver_data = (kernel_ulong_t)0, + }, + { + /* Cannon Lake LP */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x9da6), + .driver_data = (kernel_ulong_t)0, + }, { 0 }, }; diff -u linux-4.4.0/drivers/i2c/busses/i2c-designware-core.c linux-4.4.0/drivers/i2c/busses/i2c-designware-core.c --- linux-4.4.0/drivers/i2c/busses/i2c-designware-core.c +++ linux-4.4.0/drivers/i2c/busses/i2c-designware-core.c @@ -664,7 +664,7 @@ i2c_dw_xfer_init(dev); /* wait for tx to complete */ - if (!wait_for_completion_timeout(&dev->cmd_complete, HZ)) { + if (!wait_for_completion_timeout(&dev->cmd_complete, adap->timeout)) { dev_err(dev->dev, "controller timed out\n"); /* i2c_dw_init implicitly disables the adapter */ i2c_dw_init(dev); diff -u linux-4.4.0/drivers/i2c/busses/i2c-designware-platdrv.c linux-4.4.0/drivers/i2c/busses/i2c-designware-platdrv.c --- linux-4.4.0/drivers/i2c/busses/i2c-designware-platdrv.c +++ linux-4.4.0/drivers/i2c/busses/i2c-designware-platdrv.c @@ -299,7 +299,7 @@ #endif #ifdef CONFIG_PM -static int dw_i2c_plat_suspend(struct device *dev) +static int dw_i2c_plat_runtime_suspend(struct device *dev) { struct platform_device *pdev = to_platform_device(dev); struct dw_i2c_dev *i_dev = platform_get_drvdata(pdev); @@ -323,11 +323,21 @@ return 0; } +#ifdef CONFIG_PM_SLEEP +static int dw_i2c_plat_suspend(struct device *dev) +{ + pm_runtime_resume(dev); + return dw_i2c_plat_runtime_suspend(dev); +} +#endif + static const struct dev_pm_ops dw_i2c_dev_pm_ops = { .prepare = dw_i2c_plat_prepare, .complete = dw_i2c_plat_complete, SET_SYSTEM_SLEEP_PM_OPS(dw_i2c_plat_suspend, dw_i2c_plat_resume) - SET_RUNTIME_PM_OPS(dw_i2c_plat_suspend, dw_i2c_plat_resume, NULL) + SET_RUNTIME_PM_OPS(dw_i2c_plat_runtime_suspend, + dw_i2c_plat_resume, + NULL) }; #define DW_I2C_DEV_PMOPS (&dw_i2c_dev_pm_ops) diff -u linux-4.4.0/drivers/iio/accel/bmc150-accel-core.c linux-4.4.0/drivers/iio/accel/bmc150-accel-core.c --- linux-4.4.0/drivers/iio/accel/bmc150-accel-core.c +++ linux-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-4.4.0/drivers/iio/common/hid-sensors/hid-sensor-trigger.c linux-4.4.0/drivers/iio/common/hid-sensors/hid-sensor-trigger.c --- linux-4.4.0/drivers/iio/common/hid-sensors/hid-sensor-trigger.c +++ linux-4.4.0/drivers/iio/common/hid-sensors/hid-sensor-trigger.c @@ -36,8 +36,6 @@ s32 poll_value = 0; if (state) { - if (!atomic_read(&st->user_requested_state)) - return 0; if (sensor_hub_device_open(st->hsdev)) return -EIO; @@ -84,6 +82,9 @@ &report_val); } + pr_debug("HID_SENSOR %s set power_state %d report_state %d\n", + st->pdev->name, state_val, report_val); + sensor_hub_get_feature(st->hsdev, st->power_state.report_id, st->power_state.index, sizeof(state_val), &state_val); @@ -107,6 +108,7 @@ ret = pm_runtime_get_sync(&st->pdev->dev); else { pm_runtime_mark_last_busy(&st->pdev->dev); + pm_runtime_use_autosuspend(&st->pdev->dev); ret = pm_runtime_put_autosuspend(&st->pdev->dev); } if (ret < 0) { @@ -175,8 +177,6 @@ /* Default to 3 seconds, but can be changed from sysfs */ pm_runtime_set_autosuspend_delay(&attrb->pdev->dev, 3000); - pm_runtime_use_autosuspend(&attrb->pdev->dev); - return ret; error_unreg_trigger: iio_trigger_unregister(trig); diff -u linux-4.4.0/drivers/infiniband/core/cma.c linux-4.4.0/drivers/infiniband/core/cma.c --- linux-4.4.0/drivers/infiniband/core/cma.c +++ linux-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-4.4.0/drivers/infiniband/ulp/isert/ib_isert.c linux-4.4.0/drivers/infiniband/ulp/isert/ib_isert.c --- linux-4.4.0/drivers/infiniband/ulp/isert/ib_isert.c +++ linux-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-4.4.0/drivers/input/mouse/elan_i2c_core.c linux-4.4.0/drivers/input/mouse/elan_i2c_core.c --- linux-4.4.0/drivers/input/mouse/elan_i2c_core.c +++ linux-4.4.0/drivers/input/mouse/elan_i2c_core.c @@ -1234,7 +1234,12 @@ { "ELAN0000", 0 }, { "ELAN0100", 0 }, { "ELAN0600", 0 }, + { "ELAN0602", 0 }, { "ELAN0605", 0 }, + { "ELAN0608", 0 }, + { "ELAN0605", 0 }, + { "ELAN0609", 0 }, + { "ELAN060B", 0 }, { "ELAN1000", 0 }, { } }; diff -u linux-4.4.0/drivers/input/serio/i8042-x86ia64io.h linux-4.4.0/drivers/input/serio/i8042-x86ia64io.h --- linux-4.4.0/drivers/input/serio/i8042-x86ia64io.h +++ linux-4.4.0/drivers/input/serio/i8042-x86ia64io.h @@ -905,6 +905,13 @@ }, }, { + /* Gigabyte P57 - Elantech touchpad */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"), + DMI_MATCH(DMI_PRODUCT_NAME, "P57"), + }, + }, + { /* Schenker XMG C504 - Elantech touchpad */ .matches = { DMI_MATCH(DMI_SYS_VENDOR, "XMG"), diff -u linux-4.4.0/drivers/input/serio/i8042.c linux-4.4.0/drivers/input/serio/i8042.c --- linux-4.4.0/drivers/input/serio/i8042.c +++ linux-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-4.4.0/drivers/irqchip/irq-atmel-aic-common.c linux-4.4.0/drivers/irqchip/irq-atmel-aic-common.c --- linux-4.4.0/drivers/irqchip/irq-atmel-aic-common.c +++ linux-4.4.0/drivers/irqchip/irq-atmel-aic-common.c @@ -148,9 +148,9 @@ struct device_node *np; void __iomem *regs; - np = of_find_compatible_node(root, NULL, "atmel,at91rm9200-rtc"); + np = of_find_compatible_node(NULL, NULL, "atmel,at91rm9200-rtc"); if (!np) - np = of_find_compatible_node(root, NULL, + np = of_find_compatible_node(NULL, NULL, "atmel,at91sam9x5-rtc"); if (!np) @@ -202,7 +202,6 @@ return; match = of_match_node(matches, root); - of_node_put(root); if (match) { void (*fixup)(struct device_node *) = match->data; diff -u linux-4.4.0/drivers/irqchip/irq-gic-v3.c linux-4.4.0/drivers/irqchip/irq-gic-v3.c --- linux-4.4.0/drivers/irqchip/irq-gic-v3.c +++ linux-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-4.4.0/drivers/irqchip/irq-mxs.c linux-4.4.0/drivers/irqchip/irq-mxs.c --- linux-4.4.0/drivers/irqchip/irq-mxs.c +++ linux-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-4.4.0/drivers/md/bcache/bcache.h linux-4.4.0/drivers/md/bcache/bcache.h --- linux-4.4.0/drivers/md/bcache/bcache.h +++ linux-4.4.0/drivers/md/bcache/bcache.h @@ -333,6 +333,7 @@ /* Limit number of writeback bios in flight */ struct semaphore in_flight; struct task_struct *writeback_thread; + struct workqueue_struct *writeback_write_wq; struct keybuf writeback_keys; diff -u linux-4.4.0/drivers/md/bcache/request.c linux-4.4.0/drivers/md/bcache/request.c --- linux-4.4.0/drivers/md/bcache/request.c +++ linux-4.4.0/drivers/md/bcache/request.c @@ -196,12 +196,12 @@ struct data_insert_op *op = container_of(cl, struct data_insert_op, cl); struct bio *bio = op->bio, *n; - if (atomic_sub_return(bio_sectors(bio), &op->c->sectors_to_gc) < 0) - wake_up_gc(op->c); - if (op->bypass) return bch_data_invalidate(cl); + if (atomic_sub_return(bio_sectors(bio), &op->c->sectors_to_gc) < 0) + wake_up_gc(op->c); + /* * Journal writes are marked REQ_FLUSH; if the original write was a * flush, it'll wait on the journal write. diff -u linux-4.4.0/drivers/md/bcache/super.c linux-4.4.0/drivers/md/bcache/super.c --- linux-4.4.0/drivers/md/bcache/super.c +++ linux-4.4.0/drivers/md/bcache/super.c @@ -1023,7 +1023,7 @@ } if (BDEV_STATE(&dc->sb) == BDEV_STATE_DIRTY) { - bch_sectors_dirty_init(dc); + bch_sectors_dirty_init(&dc->disk); atomic_set(&dc->has_dirty, 1); atomic_inc(&dc->count); bch_writeback_queue(dc); @@ -1056,6 +1056,8 @@ cancel_delayed_work_sync(&dc->writeback_rate_update); if (!IS_ERR_OR_NULL(dc->writeback_thread)) kthread_stop(dc->writeback_thread); + if (dc->writeback_write_wq) + destroy_workqueue(dc->writeback_write_wq); mutex_lock(&bch_register_lock); @@ -1227,6 +1229,7 @@ goto err; bcache_device_attach(d, c, u - c->uuids); + bch_sectors_dirty_init(d); bch_flash_dev_request_init(d); add_disk(d->disk); @@ -1959,6 +1962,8 @@ else err = "device busy"; mutex_unlock(&bch_register_lock); + if (!IS_ERR(bdev)) + bdput(bdev); if (attr == &ksysfs_register_quiet) goto out; } diff -u linux-4.4.0/drivers/md/bcache/writeback.c linux-4.4.0/drivers/md/bcache/writeback.c --- linux-4.4.0/drivers/md/bcache/writeback.c +++ linux-4.4.0/drivers/md/bcache/writeback.c @@ -21,7 +21,8 @@ static void __update_writeback_rate(struct cached_dev *dc) { struct cache_set *c = dc->disk.c; - uint64_t cache_sectors = c->nbuckets * c->sb.bucket_size; + uint64_t cache_sectors = c->nbuckets * c->sb.bucket_size - + bcache_flash_devs_sectors_dirty(c); uint64_t cache_dirty_target = div_u64(cache_sectors * dc->writeback_percent, 100); @@ -190,7 +191,7 @@ closure_bio_submit(&io->bio, cl); - continue_at(cl, write_dirty_finish, system_wq); + continue_at(cl, write_dirty_finish, io->dc->writeback_write_wq); } static void read_dirty_endio(struct bio *bio) @@ -210,7 +211,7 @@ closure_bio_submit(&io->bio, cl); - continue_at(cl, write_dirty, system_wq); + continue_at(cl, write_dirty, io->dc->writeback_write_wq); } static void read_dirty(struct cached_dev *dc) @@ -488,17 +489,17 @@ return MAP_CONTINUE; } -void bch_sectors_dirty_init(struct cached_dev *dc) +void bch_sectors_dirty_init(struct bcache_device *d) { struct sectors_dirty_init op; bch_btree_op_init(&op.op, -1); - op.inode = dc->disk.id; + op.inode = d->id; - bch_btree_map_keys(&op.op, dc->disk.c, &KEY(op.inode, 0, 0), + bch_btree_map_keys(&op.op, d->c, &KEY(op.inode, 0, 0), sectors_dirty_init_fn, 0); - dc->disk.sectors_dirty_last = bcache_dev_sectors_dirty(&dc->disk); + d->sectors_dirty_last = bcache_dev_sectors_dirty(d); } void bch_cached_dev_writeback_init(struct cached_dev *dc) @@ -522,6 +523,11 @@ int bch_cached_dev_writeback_start(struct cached_dev *dc) { + dc->writeback_write_wq = alloc_workqueue("bcache_writeback_wq", + WQ_MEM_RECLAIM, 0); + if (!dc->writeback_write_wq) + return -ENOMEM; + dc->writeback_thread = kthread_create(bch_writeback_thread, dc, "bcache_writeback"); if (IS_ERR(dc->writeback_thread)) diff -u linux-4.4.0/drivers/md/bcache/writeback.h linux-4.4.0/drivers/md/bcache/writeback.h --- linux-4.4.0/drivers/md/bcache/writeback.h +++ linux-4.4.0/drivers/md/bcache/writeback.h @@ -14,6 +14,25 @@ return ret; } +static inline uint64_t bcache_flash_devs_sectors_dirty(struct cache_set *c) +{ + uint64_t i, ret = 0; + + mutex_lock(&bch_register_lock); + + for (i = 0; i < c->nr_uuids; i++) { + struct bcache_device *d = c->devices[i]; + + if (!d || !UUID_FLASH_ONLY(&c->uuids[i])) + continue; + ret += bcache_dev_sectors_dirty(d); + } + + mutex_unlock(&bch_register_lock); + + return ret; +} + static inline unsigned offset_to_stripe(struct bcache_device *d, uint64_t offset) { @@ -85,7 +104,7 @@ void bcache_dev_sectors_dirty_add(struct cache_set *, unsigned, uint64_t, int); -void bch_sectors_dirty_init(struct cached_dev *dc); +void bch_sectors_dirty_init(struct bcache_device *); void bch_cached_dev_writeback_init(struct cached_dev *); int bch_cached_dev_writeback_start(struct cached_dev *); diff -u linux-4.4.0/drivers/md/md.c linux-4.4.0/drivers/md/md.c --- linux-4.4.0/drivers/md/md.c +++ linux-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-4.4.0/drivers/md/raid1.c linux-4.4.0/drivers/md/raid1.c --- linux-4.4.0/drivers/md/raid1.c +++ linux-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-4.4.0/drivers/md/raid5.c linux-4.4.0/drivers/md/raid5.c --- linux-4.4.0/drivers/md/raid5.c +++ linux-4.4.0/drivers/md/raid5.c @@ -818,6 +818,14 @@ spin_unlock(&head->batch_head->batch_lock); goto unlock_out; } + /* + * We must assign batch_head of this stripe within the + * batch_lock, otherwise clear_batch_ready of batch head + * stripe could clear BATCH_READY bit of this stripe and + * this stripe->batch_head doesn't get assigned, which + * could confuse clear_batch_ready for this stripe + */ + sh->batch_head = head->batch_head; /* * at this point, head's BATCH_READY could be cleared, but we @@ -825,8 +833,6 @@ */ list_add(&sh->batch_list, &head->batch_list); spin_unlock(&head->batch_head->batch_lock); - - sh->batch_head = head->batch_head; } else { head->batch_head = head; sh->batch_head = head->batch_head; @@ -4258,7 +4264,8 @@ set_mask_bits(&sh->state, ~(STRIPE_EXPAND_SYNC_FLAGS | (1 << STRIPE_PREREAD_ACTIVE) | - (1 << STRIPE_DEGRADED)), + (1 << STRIPE_DEGRADED) | + (1 << STRIPE_ON_UNPLUG_LIST)), head_sh->state & (1 << STRIPE_INSYNC)); sh->check_state = head_sh->check_state; @@ -5279,12 +5286,15 @@ * userspace, we want an interruptible * wait. */ - flush_signals(current); prepare_to_wait(&conf->wait_for_overlap, &w, TASK_INTERRUPTIBLE); if (logical_sector >= mddev->suspend_lo && logical_sector < mddev->suspend_hi) { + sigset_t full, old; + sigfillset(&full); + sigprocmask(SIG_BLOCK, &full, &old); schedule(); + sigprocmask(SIG_SETMASK, &old, NULL); do_prepare = true; } goto retry; @@ -5818,6 +5828,10 @@ pr_debug("%d stripes handled\n", handled); spin_unlock_irq(&conf->device_lock); + + r5l_flush_stripe_to_raid(conf->log); + + async_tx_issue_pending_all(); blk_finish_plug(&plug); pr_debug("--- raid5worker inactive\n"); @@ -7528,12 +7542,10 @@ { if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) { - struct md_rdev *rdev; spin_lock_irq(&conf->device_lock); conf->previous_raid_disks = conf->raid_disks; - rdev_for_each(rdev, conf->mddev) - rdev->data_offset = rdev->new_data_offset; + md_finish_reshape(conf->mddev); smp_wmb(); conf->reshape_progress = MaxSector; conf->mddev->reshape_position = MaxSector; diff -u linux-4.4.0/drivers/media/v4l2-core/v4l2-compat-ioctl32.c linux-4.4.0/drivers/media/v4l2-core/v4l2-compat-ioctl32.c --- linux-4.4.0/drivers/media/v4l2-core/v4l2-compat-ioctl32.c +++ linux-4.4.0/drivers/media/v4l2-core/v4l2-compat-ioctl32.c @@ -773,7 +773,8 @@ copy_to_user(&up->u, &kp->u, sizeof(kp->u)) || put_user(kp->pending, &up->pending) || put_user(kp->sequence, &up->sequence) || - compat_put_timespec(&kp->timestamp, &up->timestamp) || + put_user(kp->timestamp.tv_sec, &up->timestamp.tv_sec) || + put_user(kp->timestamp.tv_nsec, &up->timestamp.tv_nsec) || put_user(kp->id, &up->id) || copy_to_user(up->reserved, kp->reserved, 8 * sizeof(__u32))) return -EFAULT; diff -u linux-4.4.0/drivers/misc/cxl/api.c linux-4.4.0/drivers/misc/cxl/api.c --- linux-4.4.0/drivers/misc/cxl/api.c +++ linux-4.4.0/drivers/misc/cxl/api.c @@ -280,6 +280,10 @@ kernel = false; } + /* + * Increment driver use count. Enables global TLBIs for hash + * and callbacks to handle the segment table + */ cxl_ctx_get(); if ((rc = cxl_ops->attach_process(ctx, kernel, wed, 0))) { diff -u linux-4.4.0/drivers/misc/cxl/file.c linux-4.4.0/drivers/misc/cxl/file.c --- linux-4.4.0/drivers/misc/cxl/file.c +++ linux-4.4.0/drivers/misc/cxl/file.c @@ -94,7 +94,6 @@ pr_devel("afu_open pe: %i\n", ctx->pe); file->private_data = ctx; - cxl_ctx_get(); /* indicate success */ rc = 0; @@ -205,11 +204,18 @@ ctx->pid = get_task_pid(current, PIDTYPE_PID); ctx->glpid = get_task_pid(current->group_leader, PIDTYPE_PID); + /* + * Increment driver use count. Enables global TLBIs for hash + * and callbacks to handle the segment table + */ + cxl_ctx_get(); + trace_cxl_attach(ctx, work.work_element_descriptor, work.num_interrupts, amr); if ((rc = cxl_ops->attach_process(ctx, false, work.work_element_descriptor, amr))) { afu_release_irqs(ctx, ctx); + cxl_ctx_put(); goto out; } diff -u linux-4.4.0/drivers/misc/mei/hw-me-regs.h linux-4.4.0/drivers/misc/mei/hw-me-regs.h --- linux-4.4.0/drivers/misc/mei/hw-me-regs.h +++ linux-4.4.0/drivers/misc/mei/hw-me-regs.h @@ -125,6 +125,11 @@ #define MEI_DEV_ID_KBP 0xA2BA /* Kaby Point */ #define MEI_DEV_ID_KBP_2 0xA2BB /* Kaby Point 2 */ +#define MEI_DEV_ID_LBG 0xA1BA /* Lewisburg (SPT) */ + +#define MEI_DEV_ID_BXT_M 0x1A9A /* Broxton M */ +#define MEI_DEV_ID_APL_I 0x5A9A /* Apollo Lake I */ + /* * MEI HW Section */ diff -u linux-4.4.0/drivers/misc/mei/pci-me.c linux-4.4.0/drivers/misc/mei/pci-me.c --- linux-4.4.0/drivers/misc/mei/pci-me.c +++ linux-4.4.0/drivers/misc/mei/pci-me.c @@ -90,8 +90,12 @@ {MEI_PCI_DEVICE(MEI_DEV_ID_SPT_H, mei_me_pch8_sps_cfg)}, {MEI_PCI_DEVICE(MEI_DEV_ID_SPT_H_2, mei_me_pch8_sps_cfg)}, + {MEI_PCI_DEVICE(MEI_DEV_ID_LBG, mei_me_pch8_cfg)}, {MEI_PCI_DEVICE(MEI_DEV_ID_KBP, mei_me_pch8_cfg)}, {MEI_PCI_DEVICE(MEI_DEV_ID_KBP_2, mei_me_pch8_cfg)}, + {MEI_PCI_DEVICE(MEI_DEV_ID_BXT_M, mei_me_pch8_cfg)}, + {MEI_PCI_DEVICE(MEI_DEV_ID_APL_I, mei_me_pch8_cfg)}, + /* required last entry */ {0, } diff -u linux-4.4.0/drivers/net/bonding/bond_main.c linux-4.4.0/drivers/net/bonding/bond_main.c --- linux-4.4.0/drivers/net/bonding/bond_main.c +++ linux-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-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_hw.c linux-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_hw.c --- linux-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_hw.c +++ linux-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-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_main.c linux-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_main.c --- linux-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_main.c +++ linux-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-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_sgmac.c linux-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_sgmac.c --- linux-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_sgmac.c +++ linux-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-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_xgmac.c linux-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_xgmac.c --- linux-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_xgmac.c +++ linux-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-4.4.0/drivers/net/ethernet/broadcom/bgmac.c linux-4.4.0/drivers/net/ethernet/broadcom/bgmac.c --- linux-4.4.0/drivers/net/ethernet/broadcom/bgmac.c +++ linux-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-4.4.0/drivers/net/ethernet/broadcom/tg3.c linux-4.4.0/drivers/net/ethernet/broadcom/tg3.c --- linux-4.4.0/drivers/net/ethernet/broadcom/tg3.c +++ linux-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-4.4.0/drivers/net/ethernet/freescale/gianfar.c linux-4.4.0/drivers/net/ethernet/freescale/gianfar.c --- linux-4.4.0/drivers/net/ethernet/freescale/gianfar.c +++ linux-4.4.0/drivers/net/ethernet/freescale/gianfar.c @@ -3676,7 +3676,7 @@ u32 tempval1 = gfar_read(®s->maccfg1); u32 tempval = gfar_read(®s->maccfg2); u32 ecntrl = gfar_read(®s->ecntrl); - u32 tx_flow_oldval = (tempval & MACCFG1_TX_FLOW); + u32 tx_flow_oldval = (tempval1 & MACCFG1_TX_FLOW); if (phydev->duplex != priv->oldduplex) { if (!(phydev->duplex)) diff -u linux-4.4.0/drivers/net/ethernet/intel/i40e/i40e_txrx.c linux-4.4.0/drivers/net/ethernet/intel/i40e/i40e_txrx.c --- linux-4.4.0/drivers/net/ethernet/intel/i40e/i40e_txrx.c +++ linux-4.4.0/drivers/net/ethernet/intel/i40e/i40e_txrx.c @@ -2617,9 +2617,7 @@ return false; /* We need to walk through the list and validate that each group - * of 6 fragments totals at least gso_size. However we don't need - * to perform such validation on the last 6 since the last 6 cannot - * inherit any data from a descriptor after them. + * of 6 fragments totals at least gso_size. */ nr_frags -= I40E_MAX_BUFFER_TXD - 2; frag = &skb_shinfo(skb)->frags[0]; @@ -2650,8 +2648,7 @@ if (sum < 0) return true; - /* use pre-decrement to avoid processing last fragment */ - if (!--nr_frags) + if (!nr_frags--) break; sum -= skb_frag_size(stale++); diff -u linux-4.4.0/drivers/net/ethernet/intel/i40evf/i40e_txrx.c linux-4.4.0/drivers/net/ethernet/intel/i40evf/i40e_txrx.c --- linux-4.4.0/drivers/net/ethernet/intel/i40evf/i40e_txrx.c +++ linux-4.4.0/drivers/net/ethernet/intel/i40evf/i40e_txrx.c @@ -1820,9 +1820,7 @@ return false; /* We need to walk through the list and validate that each group - * of 6 fragments totals at least gso_size. However we don't need - * to perform such validation on the last 6 since the last 6 cannot - * inherit any data from a descriptor after them. + * of 6 fragments totals at least gso_size. */ nr_frags -= I40E_MAX_BUFFER_TXD - 2; frag = &skb_shinfo(skb)->frags[0]; @@ -1853,8 +1851,7 @@ if (sum < 0) return true; - /* use pre-decrement to avoid processing last fragment */ - if (!--nr_frags) + if (!nr_frags--) break; sum -= skb_frag_size(stale++); diff -u linux-4.4.0/drivers/net/ethernet/intel/igb/e1000_82575.c linux-4.4.0/drivers/net/ethernet/intel/igb/e1000_82575.c --- linux-4.4.0/drivers/net/ethernet/intel/igb/e1000_82575.c +++ linux-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-4.4.0/drivers/net/ethernet/intel/igb/e1000_defines.h linux-4.4.0/drivers/net/ethernet/intel/igb/e1000_defines.h --- linux-4.4.0/drivers/net/ethernet/intel/igb/e1000_defines.h +++ linux-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-4.4.0/drivers/net/ethernet/intel/igb/e1000_hw.h linux-4.4.0/drivers/net/ethernet/intel/igb/e1000_hw.h --- linux-4.4.0/drivers/net/ethernet/intel/igb/e1000_hw.h +++ linux-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-4.4.0/drivers/net/ethernet/intel/igb/igb_main.c linux-4.4.0/drivers/net/ethernet/intel/igb/igb_main.c --- linux-4.4.0/drivers/net/ethernet/intel/igb/igb_main.c +++ linux-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-4.4.0/drivers/net/ethernet/mellanox/mlx5/core/cmd.c linux-4.4.0/drivers/net/ethernet/mellanox/mlx5/core/cmd.c --- linux-4.4.0/drivers/net/ethernet/mellanox/mlx5/core/cmd.c +++ linux-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-4.4.0/drivers/net/ethernet/renesas/sh_eth.c linux-4.4.0/drivers/net/ethernet/renesas/sh_eth.c --- linux-4.4.0/drivers/net/ethernet/renesas/sh_eth.c +++ linux-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-4.4.0/drivers/net/hyperv/netvsc_drv.c linux-4.4.0/drivers/net/hyperv/netvsc_drv.c --- linux-4.4.0/drivers/net/hyperv/netvsc_drv.c +++ linux-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-4.4.0/drivers/net/phy/dp83640.c linux-4.4.0/drivers/net/phy/dp83640.c --- linux-4.4.0/drivers/net/phy/dp83640.c +++ linux-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-4.4.0/drivers/net/phy/phy.c linux-4.4.0/drivers/net/phy/phy.c --- linux-4.4.0/drivers/net/phy/phy.c +++ linux-4.4.0/drivers/net/phy/phy.c @@ -918,6 +918,15 @@ if (old_link != phydev->link) phydev->state = PHY_CHANGELINK; } + /* + * Failsafe: check that nobody set phydev->link=0 between two + * poll cycles, otherwise we won't leave RUNNING state as long + * as link remains down. + */ + if (!phydev->link && phydev->state == PHY_RUNNING) { + phydev->state = PHY_CHANGELINK; + dev_err(&phydev->dev, "no link in PHY_RUNNING\n"); + } break; case PHY_CHANGELINK: err = phy_read_status(phydev); diff -u linux-4.4.0/drivers/net/usb/cdc_mbim.c linux-4.4.0/drivers/net/usb/cdc_mbim.c --- linux-4.4.0/drivers/net/usb/cdc_mbim.c +++ linux-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-4.4.0/drivers/net/usb/qmi_wwan.c linux-4.4.0/drivers/net/usb/qmi_wwan.c --- linux-4.4.0/drivers/net/usb/qmi_wwan.c +++ linux-4.4.0/drivers/net/usb/qmi_wwan.c @@ -707,6 +707,7 @@ {QMI_FIXED_INTF(0x19d2, 0x1428, 2)}, /* Telewell TW-LTE 4G v2 */ {QMI_FIXED_INTF(0x19d2, 0x2002, 4)}, /* ZTE (Vodafone) K3765-Z */ {QMI_FIXED_INTF(0x2001, 0x7e19, 4)}, /* D-Link DWM-221 B1 */ + {QMI_FIXED_INTF(0x2001, 0x7e35, 4)}, /* D-Link DWM-222 */ {QMI_FIXED_INTF(0x0f3d, 0x68a2, 8)}, /* Sierra Wireless MC7700 */ {QMI_FIXED_INTF(0x114f, 0x68a2, 8)}, /* Sierra Wireless MC7750 */ {QMI_FIXED_INTF(0x1199, 0x68a2, 8)}, /* Sierra Wireless MC7710 in QMI mode */ diff -u linux-4.4.0/drivers/net/usb/r8152.c linux-4.4.0/drivers/net/usb/r8152.c --- linux-4.4.0/drivers/net/usb/r8152.c +++ linux-4.4.0/drivers/net/usb/r8152.c @@ -1350,6 +1350,7 @@ spin_lock_init(&tp->rx_lock); spin_lock_init(&tp->tx_lock); INIT_LIST_HEAD(&tp->tx_free); + INIT_LIST_HEAD(&tp->rx_done); skb_queue_head_init(&tp->tx_queue); skb_queue_head_init(&tp->rx_queue); diff -u linux-4.4.0/drivers/net/vrf.c linux-4.4.0/drivers/net/vrf.c --- linux-4.4.0/drivers/net/vrf.c +++ linux-4.4.0/drivers/net/vrf.c @@ -424,6 +424,7 @@ if (unlikely(!neigh)) neigh = __neigh_create(&nd_tbl, nexthop, dst->dev, false); if (!IS_ERR(neigh)) { + sock_confirm_neigh(skb, neigh); ret = dst_neigh_output(dst, neigh, skb); rcu_read_unlock_bh(); return ret; @@ -550,8 +551,10 @@ neigh = __ipv4_neigh_lookup_noref(dev, nexthop); if (unlikely(!neigh)) neigh = __neigh_create(&arp_tbl, &nexthop, dev, false); - if (!IS_ERR(neigh)) + if (!IS_ERR(neigh)) { + sock_confirm_neigh(skb, neigh); ret = dst_neigh_output(dst, neigh, skb); + } rcu_read_unlock_bh(); err: @@ -733,15 +736,15 @@ static void vrf_dev_uninit(struct net_device *dev) { struct net_vrf *vrf = netdev_priv(dev); - struct slave_queue *queue = &vrf->queue; - struct list_head *head = &queue->all_slaves; - struct slave *slave, *next; +// struct slave_queue *queue = &vrf->queue; +// struct list_head *head = &queue->all_slaves; +// struct slave *slave, *next; vrf_rtable_destroy(vrf); vrf_rt6_destroy(vrf); - list_for_each_entry_safe(slave, next, head, list) - vrf_del_slave(dev, slave->dev); +// list_for_each_entry_safe(slave, next, head, list) +// vrf_del_slave(dev, slave->dev); free_percpu(dev->dstats); dev->dstats = NULL; @@ -914,6 +917,14 @@ static void vrf_dellink(struct net_device *dev, struct list_head *head) { + struct net_vrf *vrf = netdev_priv(dev); + struct slave_queue *queue = &vrf->queue; + struct list_head *all_slaves = &queue->all_slaves; + struct slave *slave, *next; + + list_for_each_entry_safe(slave, next, all_slaves, list) + vrf_del_slave(dev, slave->dev); + unregister_netdevice_queue(dev, head); } diff -u linux-4.4.0/drivers/net/wireless/ath/ath10k/core.c linux-4.4.0/drivers/net/wireless/ath/ath10k/core.c --- linux-4.4.0/drivers/net/wireless/ath/ath10k/core.c +++ linux-4.4.0/drivers/net/wireless/ath/ath10k/core.c @@ -1699,6 +1699,12 @@ goto err_wmi_detach; } + /* If firmware indicates Full Rx Reorder support it must be used in a + * slightly different manner. Let HTT code know. + */ + ar->htt.rx_ring.in_ord_rx = !!(test_bit(WMI_SERVICE_RX_FULL_REORDER, + ar->wmi.svc_map)); + status = ath10k_htt_rx_alloc(&ar->htt); if (status) { ath10k_err(ar, "failed to alloc htt rx: %d\n", status); @@ -1761,12 +1767,6 @@ goto err_hif_stop; } - /* If firmware indicates Full Rx Reorder support it must be used in a - * slightly different manner. Let HTT code know. - */ - ar->htt.rx_ring.in_ord_rx = !!(test_bit(WMI_SERVICE_RX_FULL_REORDER, - ar->wmi.svc_map)); - status = ath10k_htt_rx_ring_refill(ar); if (status) { ath10k_err(ar, "failed to refill htt rx ring: %d\n", status); diff -u linux-4.4.0/drivers/net/wireless/brcm80211/brcmfmac/cfg80211.c linux-4.4.0/drivers/net/wireless/brcm80211/brcmfmac/cfg80211.c --- linux-4.4.0/drivers/net/wireless/brcm80211/brcmfmac/cfg80211.c +++ linux-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-4.4.0/drivers/net/wireless/mac80211_hwsim.c linux-4.4.0/drivers/net/wireless/mac80211_hwsim.c --- linux-4.4.0/drivers/net/wireless/mac80211_hwsim.c +++ linux-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-4.4.0/drivers/net/wireless/mwifiex/cfg80211.c linux-4.4.0/drivers/net/wireless/mwifiex/cfg80211.c --- linux-4.4.0/drivers/net/wireless/mwifiex/cfg80211.c +++ linux-4.4.0/drivers/net/wireless/mwifiex/cfg80211.c @@ -3740,7 +3740,7 @@ if (adapter->config_bands & BAND_A) n_channels_a = mwifiex_band_5ghz.n_channels; - adapter->num_in_chan_stats = max_t(u32, n_channels_bg, n_channels_a); + adapter->num_in_chan_stats = n_channels_bg + n_channels_a; adapter->chan_stats = vmalloc(sizeof(*adapter->chan_stats) * adapter->num_in_chan_stats); diff -u linux-4.4.0/drivers/net/wireless/mwifiex/cfp.c linux-4.4.0/drivers/net/wireless/mwifiex/cfp.c --- linux-4.4.0/drivers/net/wireless/mwifiex/cfp.c +++ linux-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-4.4.0/drivers/net/wireless/realtek/rtlwifi/pci.c linux-4.4.0/drivers/net/wireless/realtek/rtlwifi/pci.c --- linux-4.4.0/drivers/net/wireless/realtek/rtlwifi/pci.c +++ linux-4.4.0/drivers/net/wireless/realtek/rtlwifi/pci.c @@ -2269,7 +2269,7 @@ /* find adapter */ if (!_rtl_pci_find_adapter(pdev, hw)) { err = -ENODEV; - goto fail3; + goto fail2; } /* Init IO handler */ @@ -2339,10 +2339,10 @@ pci_set_drvdata(pdev, NULL); rtl_deinit_core(hw); +fail2: if (rtlpriv->io.pci_mem_start != 0) pci_iounmap(pdev, (void __iomem *)rtlpriv->io.pci_mem_start); -fail2: pci_release_regions(pdev); complete(&rtlpriv->firmware_loading_complete); diff -u linux-4.4.0/drivers/net/wireless/ti/wlcore/spi.c linux-4.4.0/drivers/net/wireless/ti/wlcore/spi.c --- linux-4.4.0/drivers/net/wireless/ti/wlcore/spi.c +++ linux-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-4.4.0/drivers/ntb/ntb_transport.c linux-4.4.0/drivers/ntb/ntb_transport.c --- linux-4.4.0/drivers/ntb/ntb_transport.c +++ linux-4.4.0/drivers/ntb/ntb_transport.c @@ -599,7 +599,7 @@ if (!mw->virt_addr) return -ENOMEM; - if (qp_count % mw_count && mw_num + 1 < qp_count / mw_count) + if (mw_num < qp_count % mw_count) num_qps_mw = qp_count / mw_count + 1; else num_qps_mw = qp_count / mw_count; @@ -947,7 +947,7 @@ qp->event_handler = NULL; ntb_qp_link_down_reset(qp); - if (qp_count % mw_count && mw_num + 1 < qp_count / mw_count) + if (mw_num < qp_count % mw_count) num_qps_mw = qp_count / mw_count + 1; else num_qps_mw = qp_count / mw_count; @@ -1065,8 +1065,8 @@ qp_count = ilog2(qp_bitmap); if (max_num_clients && max_num_clients < qp_count) qp_count = max_num_clients; - else if (mw_count < qp_count) - qp_count = mw_count; + else if (nt->mw_count < qp_count) + qp_count = nt->mw_count; qp_bitmap &= BIT_ULL(qp_count) - 1; diff -u linux-4.4.0/drivers/pci/pci-sysfs.c linux-4.4.0/drivers/pci/pci-sysfs.c --- linux-4.4.0/drivers/pci/pci-sysfs.c +++ linux-4.4.0/drivers/pci/pci-sysfs.c @@ -523,7 +523,7 @@ const char *buf, size_t count) { struct pci_dev *pdev = to_pci_dev(dev); - char *driver_override, *old = pdev->driver_override, *cp; + char *driver_override, *old, *cp; /* We need to keep extra room for a newline */ if (count >= (PAGE_SIZE - 1)) @@ -537,12 +537,15 @@ if (cp) *cp = '\0'; + device_lock(dev); + old = pdev->driver_override; if (strlen(driver_override)) { pdev->driver_override = driver_override; } else { kfree(driver_override); pdev->driver_override = NULL; } + device_unlock(dev); kfree(old); @@ -553,8 +556,12 @@ struct device_attribute *attr, char *buf) { struct pci_dev *pdev = to_pci_dev(dev); + ssize_t len; - return snprintf(buf, PAGE_SIZE, "%s\n", pdev->driver_override); + device_lock(dev); + len = snprintf(buf, PAGE_SIZE, "%s\n", pdev->driver_override); + device_unlock(dev); + return len; } static DEVICE_ATTR_RW(driver_override); diff -u linux-4.4.0/drivers/pinctrl/sh-pfc/core.c linux-4.4.0/drivers/pinctrl/sh-pfc/core.c --- linux-4.4.0/drivers/pinctrl/sh-pfc/core.c +++ linux-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-4.4.0/drivers/platform/x86/ideapad-laptop.c linux-4.4.0/drivers/platform/x86/ideapad-laptop.c --- linux-4.4.0/drivers/platform/x86/ideapad-laptop.c +++ linux-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-4.4.0/drivers/platform/x86/thinkpad_acpi.c linux-4.4.0/drivers/platform/x86/thinkpad_acpi.c --- linux-4.4.0/drivers/platform/x86/thinkpad_acpi.c +++ linux-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-4.4.0/drivers/s390/scsi/zfcp_dbf.c linux-4.4.0/drivers/s390/scsi/zfcp_dbf.c --- linux-4.4.0/drivers/s390/scsi/zfcp_dbf.c +++ linux-4.4.0/drivers/s390/scsi/zfcp_dbf.c @@ -3,7 +3,7 @@ * * Debug traces for zfcp. * - * Copyright IBM Corp. 2002, 2016 + * Copyright IBM Corp. 2002, 2017 */ #define KMSG_COMPONENT "zfcp" @@ -447,6 +447,7 @@ struct fc_ct_hdr *reqh = sg_virt(ct_els->req); struct fc_ns_gid_ft *reqn = (struct fc_ns_gid_ft *)(reqh + 1); struct scatterlist *resp_entry = ct_els->resp; + struct fc_ct_hdr *resph; struct fc_gpn_ft_resp *acc; int max_entries, x, last = 0; @@ -473,6 +474,13 @@ return len; /* not GPN_FT response so do not cap */ acc = sg_virt(resp_entry); + + /* cap all but accept CT responses to at least the CT header */ + resph = (struct fc_ct_hdr *)acc; + if ((ct_els->status) || + (resph->ct_cmd != cpu_to_be16(FC_FS_ACC))) + return max(FC_CT_HDR_LEN, ZFCP_DBF_SAN_MAX_PAYLOAD); + max_entries = (reqh->ct_mr_size * 4 / sizeof(struct fc_gpn_ft_resp)) + 1 /* zfcp_fc_scan_ports: bytes correct, entries off-by-one * to account for header as 1st pseudo "entry" */; @@ -555,8 +563,8 @@ rec->scsi_retries = sc->retries; rec->scsi_allowed = sc->allowed; rec->scsi_id = sc->device->id; - /* struct zfcp_dbf_scsi needs to be updated to handle 64bit LUNs */ rec->scsi_lun = (u32)sc->device->lun; + rec->scsi_lun_64_hi = (u32)(sc->device->lun >> 32); rec->host_scribble = (unsigned long)sc->host_scribble; memcpy(rec->scsi_opcode, sc->cmnd, @@ -564,19 +572,32 @@ if (fsf) { rec->fsf_req_id = fsf->req_id; + rec->pl_len = FCP_RESP_WITH_EXT; fcp_rsp = (struct fcp_resp_with_ext *) &(fsf->qtcb->bottom.io.fcp_rsp); + /* mandatory parts of FCP_RSP IU in this SCSI record */ memcpy(&rec->fcp_rsp, fcp_rsp, FCP_RESP_WITH_EXT); if (fcp_rsp->resp.fr_flags & FCP_RSP_LEN_VAL) { fcp_rsp_info = (struct fcp_resp_rsp_info *) &fcp_rsp[1]; rec->fcp_rsp_info = fcp_rsp_info->rsp_code; + rec->pl_len += be32_to_cpu(fcp_rsp->ext.fr_rsp_len); } if (fcp_rsp->resp.fr_flags & FCP_SNS_LEN_VAL) { - rec->pl_len = min((u16)SCSI_SENSE_BUFFERSIZE, - (u16)ZFCP_DBF_PAY_MAX_REC); - zfcp_dbf_pl_write(dbf, sc->sense_buffer, rec->pl_len, - "fcp_sns", fsf->req_id); + rec->pl_len += be32_to_cpu(fcp_rsp->ext.fr_sns_len); } + /* complete FCP_RSP IU in associated PAYload record + * but only if there are optional parts + */ + if (fcp_rsp->resp.fr_flags != 0) + zfcp_dbf_pl_write( + dbf, fcp_rsp, + /* at least one full PAY record + * but not beyond hardware response field + */ + min_t(u16, max_t(u16, rec->pl_len, + ZFCP_DBF_PAY_MAX_REC), + FSF_FCP_RSP_SIZE), + "fcp_riu", fsf->req_id); } debug_event(dbf->scsi, level, rec, sizeof(*rec)); diff -u linux-4.4.0/drivers/s390/scsi/zfcp_dbf.h linux-4.4.0/drivers/s390/scsi/zfcp_dbf.h --- linux-4.4.0/drivers/s390/scsi/zfcp_dbf.h +++ linux-4.4.0/drivers/s390/scsi/zfcp_dbf.h @@ -2,7 +2,7 @@ * zfcp device driver * debug feature declarations * - * Copyright IBM Corp. 2008, 2016 + * Copyright IBM Corp. 2008, 2017 */ #ifndef ZFCP_DBF_H @@ -204,7 +204,7 @@ * @id: unique number of recovery record type * @tag: identifier string specifying the location of initiation * @scsi_id: scsi device id - * @scsi_lun: scsi device logical unit number + * @scsi_lun: scsi device logical unit number, low part of 64 bit, old 32 bit * @scsi_result: scsi result * @scsi_retries: current retry number of scsi request * @scsi_allowed: allowed retries @@ -214,6 +214,7 @@ * @host_scribble: LLD specific data attached to SCSI request * @pl_len: length of paload stored as zfcp_dbf_pay * @fsf_rsp: response for fsf request + * @scsi_lun_64_hi: scsi device logical unit number, high part of 64 bit */ struct zfcp_dbf_scsi { u8 id; @@ -230,6 +231,7 @@ u64 host_scribble; u16 pl_len; struct fcp_resp_with_ext fcp_rsp; + u32 scsi_lun_64_hi; } __packed; /** @@ -323,7 +325,11 @@ { struct fsf_qtcb *qtcb = req->qtcb; - if ((qtcb->prefix.prot_status != FSF_PROT_GOOD) && + if (unlikely(req->status & (ZFCP_STATUS_FSFREQ_DISMISSED | + ZFCP_STATUS_FSFREQ_ERROR))) { + zfcp_dbf_hba_fsf_resp("fs_rerr", 3, req); + + } else if ((qtcb->prefix.prot_status != FSF_PROT_GOOD) && (qtcb->prefix.prot_status != FSF_PROT_FSF_STATUS_PRESENTED)) { zfcp_dbf_hba_fsf_resp("fs_perr", 1, req); @@ -401,7 +407,8 @@ * @flag: indicates type of reset (Target Reset, Logical Unit Reset) */ static inline -void zfcp_dbf_scsi_devreset(char *tag, struct scsi_cmnd *scmnd, u8 flag) +void zfcp_dbf_scsi_devreset(char *tag, struct scsi_cmnd *scmnd, u8 flag, + struct zfcp_fsf_req *fsf_req) { char tmp_tag[ZFCP_DBF_TAG_LEN]; @@ -411,7 +418,7 @@ memcpy(tmp_tag, "lr_", 3); memcpy(&tmp_tag[3], tag, 4); - _zfcp_dbf_scsi(tmp_tag, 1, scmnd, NULL); + _zfcp_dbf_scsi(tmp_tag, 1, scmnd, fsf_req); } /** diff -u linux-4.4.0/drivers/s390/scsi/zfcp_fsf.c linux-4.4.0/drivers/s390/scsi/zfcp_fsf.c --- linux-4.4.0/drivers/s390/scsi/zfcp_fsf.c +++ linux-4.4.0/drivers/s390/scsi/zfcp_fsf.c @@ -928,8 +928,8 @@ switch (header->fsf_status) { case FSF_GOOD: - zfcp_dbf_san_res("fsscth2", req); ct->status = 0; + zfcp_dbf_san_res("fsscth2", req); break; case FSF_SERVICE_CLASS_NOT_SUPPORTED: zfcp_fsf_class_not_supp(req); @@ -1109,8 +1109,8 @@ switch (header->fsf_status) { case FSF_GOOD: - zfcp_dbf_san_res("fsselh1", req); send_els->status = 0; + zfcp_dbf_san_res("fsselh1", req); break; case FSF_SERVICE_CLASS_NOT_SUPPORTED: zfcp_fsf_class_not_supp(req); @@ -2258,7 +2258,8 @@ fcp_cmnd = (struct fcp_cmnd *) &req->qtcb->bottom.io.fcp_cmnd; zfcp_fc_scsi_to_fcp(fcp_cmnd, scsi_cmnd, 0); - if (scsi_prot_sg_count(scsi_cmnd)) { + if ((scsi_get_prot_op(scsi_cmnd) != SCSI_PROT_NORMAL) && + scsi_prot_sg_count(scsi_cmnd)) { zfcp_qdio_set_data_div(qdio, &req->qdio_req, scsi_prot_sg_count(scsi_cmnd)); retval = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req, diff -u linux-4.4.0/drivers/s390/scsi/zfcp_scsi.c linux-4.4.0/drivers/s390/scsi/zfcp_scsi.c --- linux-4.4.0/drivers/s390/scsi/zfcp_scsi.c +++ linux-4.4.0/drivers/s390/scsi/zfcp_scsi.c @@ -3,7 +3,7 @@ * * Interface to Linux SCSI midlayer. * - * Copyright IBM Corp. 2002, 2016 + * Copyright IBM Corp. 2002, 2017 */ #define KMSG_COMPONENT "zfcp" @@ -273,25 +273,29 @@ zfcp_erp_wait(adapter); ret = fc_block_scsi_eh(scpnt); - if (ret) + if (ret) { + zfcp_dbf_scsi_devreset("fiof", scpnt, tm_flags, NULL); return ret; + } if (!(atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_RUNNING)) { - zfcp_dbf_scsi_devreset("nres", scpnt, tm_flags); + zfcp_dbf_scsi_devreset("nres", scpnt, tm_flags, NULL); return SUCCESS; } } - if (!fsf_req) + if (!fsf_req) { + zfcp_dbf_scsi_devreset("reqf", scpnt, tm_flags, NULL); return FAILED; + } wait_for_completion(&fsf_req->completion); if (fsf_req->status & ZFCP_STATUS_FSFREQ_TMFUNCFAILED) { - zfcp_dbf_scsi_devreset("fail", scpnt, tm_flags); + zfcp_dbf_scsi_devreset("fail", scpnt, tm_flags, fsf_req); retval = FAILED; } else { - zfcp_dbf_scsi_devreset("okay", scpnt, tm_flags); + zfcp_dbf_scsi_devreset("okay", scpnt, tm_flags, fsf_req); zfcp_scsi_forget_cmnds(zfcp_sdev, tm_flags); } diff -u linux-4.4.0/drivers/scsi/Kconfig linux-4.4.0/drivers/scsi/Kconfig --- linux-4.4.0/drivers/scsi/Kconfig +++ linux-4.4.0/drivers/scsi/Kconfig @@ -194,6 +194,7 @@ config SCSI_ENCLOSURE tristate "SCSI Enclosure Support" depends on SCSI && ENCLOSURE_SERVICES + depends on m || SCSI_SAS_ATTRS != m help Enclosures are devices sitting on or in SCSI backplanes that manage devices. If you have a disk cage, the chances are that diff -u linux-4.4.0/drivers/scsi/hpsa.c linux-4.4.0/drivers/scsi/hpsa.c --- linux-4.4.0/drivers/scsi/hpsa.c +++ linux-4.4.0/drivers/scsi/hpsa.c @@ -906,7 +906,7 @@ #endif .sdev_attrs = hpsa_sdev_attrs, .shost_attrs = hpsa_shost_attrs, - .max_sectors = 8192, + .max_sectors = 1024, .no_write_same = 1, }; diff -u linux-4.4.0/drivers/scsi/ipr.c linux-4.4.0/drivers/scsi/ipr.c --- linux-4.4.0/drivers/scsi/ipr.c +++ linux-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-4.4.0/drivers/scsi/lpfc/lpfc_els.c linux-4.4.0/drivers/scsi/lpfc/lpfc_els.c --- linux-4.4.0/drivers/scsi/lpfc/lpfc_els.c +++ linux-4.4.0/drivers/scsi/lpfc/lpfc_els.c @@ -1069,7 +1069,10 @@ lpfc_sli4_unreg_all_rpis(vport); } } - lpfc_issue_reg_vfi(vport); + + /* Do not register VFI if the driver aborted FLOGI */ + if (!lpfc_error_lost_link(irsp)) + lpfc_issue_reg_vfi(vport); lpfc_nlp_put(ndlp); goto out; } diff -u linux-4.4.0/drivers/scsi/megaraid/megaraid_sas_base.c linux-4.4.0/drivers/scsi/megaraid/megaraid_sas_base.c --- linux-4.4.0/drivers/scsi/megaraid/megaraid_sas_base.c +++ linux-4.4.0/drivers/scsi/megaraid/megaraid_sas_base.c @@ -1914,9 +1914,12 @@ if (cmd_fusion->sync_cmd_idx != (u32)ULONG_MAX) { cmd_mfi = instance->cmd_list[cmd_fusion->sync_cmd_idx]; if (cmd_mfi->sync_cmd && - cmd_mfi->frame->hdr.cmd != MFI_CMD_ABORT) + (cmd_mfi->frame->hdr.cmd != MFI_CMD_ABORT)) { + cmd_mfi->frame->hdr.cmd_status = + MFI_STAT_WRONG_STATE; megasas_complete_cmd(instance, cmd_mfi, DID_OK); + } } } } else { @@ -5433,6 +5436,14 @@ prev_aen.word = le32_to_cpu(instance->aen_cmd->frame->dcmd.mbox.w[1]); + if ((curr_aen.members.class < MFI_EVT_CLASS_DEBUG) || + (curr_aen.members.class > MFI_EVT_CLASS_DEAD)) { + dev_info(&instance->pdev->dev, + "%s %d out of range class %d send by application\n", + __func__, __LINE__, curr_aen.members.class); + return 0; + } + /* * A class whose enum value is smaller is inclusive of all * higher values. If a PROGRESS (= -1) was previously diff -u linux-4.4.0/drivers/scsi/mpt3sas/mpt3sas_base.c linux-4.4.0/drivers/scsi/mpt3sas/mpt3sas_base.c --- linux-4.4.0/drivers/scsi/mpt3sas/mpt3sas_base.c +++ linux-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-4.4.0/drivers/scsi/qla2xxx/qla_attr.c linux-4.4.0/drivers/scsi/qla2xxx/qla_attr.c --- linux-4.4.0/drivers/scsi/qla2xxx/qla_attr.c +++ linux-4.4.0/drivers/scsi/qla2xxx/qla_attr.c @@ -329,12 +329,15 @@ struct qla_hw_data *ha = vha->hw; ssize_t rval = 0; + mutex_lock(&ha->optrom_mutex); + if (ha->optrom_state != QLA_SREADING) - return 0; + goto out; - mutex_lock(&ha->optrom_mutex); rval = memory_read_from_buffer(buf, count, &off, ha->optrom_buffer, ha->optrom_region_size); + +out: mutex_unlock(&ha->optrom_mutex); return rval; @@ -349,14 +352,19 @@ struct device, kobj))); struct qla_hw_data *ha = vha->hw; - if (ha->optrom_state != QLA_SWRITING) + mutex_lock(&ha->optrom_mutex); + + if (ha->optrom_state != QLA_SWRITING) { + mutex_unlock(&ha->optrom_mutex); return -EINVAL; - if (off > ha->optrom_region_size) + } + if (off > ha->optrom_region_size) { + mutex_unlock(&ha->optrom_mutex); return -ERANGE; + } if (off + count > ha->optrom_region_size) count = ha->optrom_region_size - off; - mutex_lock(&ha->optrom_mutex); memcpy(&ha->optrom_buffer[off], buf, count); mutex_unlock(&ha->optrom_mutex); @@ -396,6 +404,8 @@ return -EINVAL; if (start > ha->optrom_size) return -EINVAL; + if (size > ha->optrom_size - start) + size = ha->optrom_size - start; mutex_lock(&ha->optrom_mutex); switch (val) { @@ -421,8 +431,7 @@ } ha->optrom_region_start = start; - ha->optrom_region_size = start + size > ha->optrom_size ? - ha->optrom_size - start : size; + ha->optrom_region_size = start + size; ha->optrom_state = QLA_SREADING; ha->optrom_buffer = vmalloc(ha->optrom_region_size); @@ -495,8 +504,7 @@ } ha->optrom_region_start = start; - ha->optrom_region_size = start + size > ha->optrom_size ? - ha->optrom_size - start : size; + ha->optrom_region_size = start + size; ha->optrom_state = QLA_SWRITING; ha->optrom_buffer = vmalloc(ha->optrom_region_size); diff -u linux-4.4.0/drivers/scsi/sg.c linux-4.4.0/drivers/scsi/sg.c --- linux-4.4.0/drivers/scsi/sg.c +++ linux-4.4.0/drivers/scsi/sg.c @@ -133,7 +133,7 @@ struct sg_fd; typedef struct sg_request { /* SG_MAX_QUEUE requests outstanding per file */ - struct sg_request *nextrp; /* NULL -> tail request (slist) */ + struct list_head entry; /* list entry */ struct sg_fd *parentfp; /* NULL -> not in use */ Sg_scatter_hold data; /* hold buffer, perhaps scatter list */ sg_io_hdr_t header; /* scsi command+info, see */ @@ -153,11 +153,11 @@ struct sg_device *parentdp; /* owning device */ wait_queue_head_t read_wait; /* queue read until command done */ rwlock_t rq_list_lock; /* protect access to list in req_arr */ + struct mutex f_mutex; /* protect against changes in this fd */ int timeout; /* defaults to SG_DEFAULT_TIMEOUT */ int timeout_user; /* defaults to SG_DEFAULT_TIMEOUT_USER */ Sg_scatter_hold reserve; /* buffer held for this file descriptor */ - unsigned save_scat_len; /* original length of trunc. scat. element */ - Sg_request *headrp; /* head of request slist, NULL->empty */ + struct list_head rq_list; /* head of request list */ struct fasync_struct *async_qp; /* used by asynchronous notification */ Sg_request req_arr[SG_MAX_QUEUE]; /* used as singly-linked list */ char low_dma; /* as in parent but possibly overridden to 1 */ @@ -166,6 +166,7 @@ unsigned char next_cmd_len; /* 0: automatic, >0: use on next write() */ char keep_orphan; /* 0 -> drop orphan (def), 1 -> keep for read() */ char mmap_called; /* 0 -> mmap() never called on this fd */ + char res_in_use; /* 1 -> 'reserve' array in use */ struct kref f_ref; struct execute_work ew; } Sg_fd; @@ -209,7 +210,6 @@ static Sg_request *sg_get_rq_mark(Sg_fd * sfp, int pack_id); static Sg_request *sg_add_request(Sg_fd * sfp); static int sg_remove_request(Sg_fd * sfp, Sg_request * srp); -static int sg_res_in_use(Sg_fd * sfp); static Sg_device *sg_get_dev(int dev); static void sg_device_destroy(struct kref *kref); @@ -625,6 +625,7 @@ } buf += SZ_SG_HEADER; __get_user(opcode, buf); + mutex_lock(&sfp->f_mutex); if (sfp->next_cmd_len > 0) { cmd_size = sfp->next_cmd_len; sfp->next_cmd_len = 0; /* reset so only this write() effected */ @@ -633,6 +634,7 @@ if ((opcode >= 0xc0) && old_hdr.twelve_byte) cmd_size = 12; } + mutex_unlock(&sfp->f_mutex); SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sdp, "sg_write: scsi opcode=0x%02x, cmd_size=%d\n", (int) opcode, cmd_size)); /* Determine buffer size. */ @@ -732,7 +734,7 @@ sg_remove_request(sfp, srp); return -EINVAL; /* either MMAP_IO or DIRECT_IO (not both) */ } - if (sg_res_in_use(sfp)) { + if (sfp->res_in_use) { sg_remove_request(sfp, srp); return -EBUSY; /* reserve buffer already being used */ } @@ -837,6 +839,39 @@ return max_sectors << 9; } +static void +sg_fill_request_table(Sg_fd *sfp, sg_req_info_t *rinfo) +{ + Sg_request *srp; + int val; + unsigned int ms; + + val = 0; + list_for_each_entry(srp, &sfp->rq_list, entry) { + if (val > SG_MAX_QUEUE) + break; + rinfo[val].req_state = srp->done + 1; + rinfo[val].problem = + srp->header.masked_status & + srp->header.host_status & + srp->header.driver_status; + if (srp->done) + rinfo[val].duration = + srp->header.duration; + else { + ms = jiffies_to_msecs(jiffies); + rinfo[val].duration = + (ms > srp->header.duration) ? + (ms - srp->header.duration) : 0; + } + rinfo[val].orphan = srp->orphan; + rinfo[val].sg_io_owned = srp->sg_io_owned; + rinfo[val].pack_id = srp->header.pack_id; + rinfo[val].usr_ptr = srp->header.usr_ptr; + val++; + } +} + static long sg_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg) { @@ -902,7 +937,7 @@ return result; if (val) { sfp->low_dma = 1; - if ((0 == sfp->low_dma) && (0 == sg_res_in_use(sfp))) { + if ((0 == sfp->low_dma) && !sfp->res_in_use) { val = (int) sfp->reserve.bufflen; sg_remove_scat(sfp, &sfp->reserve); sg_build_reserve(sfp, val); @@ -948,7 +983,7 @@ if (!access_ok(VERIFY_WRITE, ip, sizeof (int))) return -EFAULT; read_lock_irqsave(&sfp->rq_list_lock, iflags); - for (srp = sfp->headrp; srp; srp = srp->nextrp) { + list_for_each_entry(srp, &sfp->rq_list, entry) { if ((1 == srp->done) && (!srp->sg_io_owned)) { read_unlock_irqrestore(&sfp->rq_list_lock, iflags); @@ -961,7 +996,8 @@ return 0; case SG_GET_NUM_WAITING: read_lock_irqsave(&sfp->rq_list_lock, iflags); - for (val = 0, srp = sfp->headrp; srp; srp = srp->nextrp) { + val = 0; + list_for_each_entry(srp, &sfp->rq_list, entry) { if ((1 == srp->done) && (!srp->sg_io_owned)) ++val; } @@ -977,12 +1013,18 @@ return -EINVAL; val = min_t(int, val, max_sectors_bytes(sdp->device->request_queue)); + mutex_lock(&sfp->f_mutex); if (val != sfp->reserve.bufflen) { - if (sg_res_in_use(sfp) || sfp->mmap_called) + if (sfp->mmap_called || + sfp->res_in_use) { + mutex_unlock(&sfp->f_mutex); return -EBUSY; + } + sg_remove_scat(sfp, &sfp->reserve); sg_build_reserve(sfp, val); } + mutex_unlock(&sfp->f_mutex); return 0; case SG_GET_RESERVED_SIZE: val = min_t(int, sfp->reserve.bufflen, @@ -1023,42 +1065,15 @@ return -EFAULT; else { sg_req_info_t *rinfo; - unsigned int ms; - rinfo = kmalloc(SZ_SG_REQ_INFO * SG_MAX_QUEUE, - GFP_KERNEL); + rinfo = kzalloc(SZ_SG_REQ_INFO * SG_MAX_QUEUE, + GFP_KERNEL); if (!rinfo) return -ENOMEM; read_lock_irqsave(&sfp->rq_list_lock, iflags); - for (srp = sfp->headrp, val = 0; val < SG_MAX_QUEUE; - ++val, srp = srp ? srp->nextrp : srp) { - memset(&rinfo[val], 0, SZ_SG_REQ_INFO); - if (srp) { - rinfo[val].req_state = srp->done + 1; - rinfo[val].problem = - srp->header.masked_status & - srp->header.host_status & - srp->header.driver_status; - if (srp->done) - rinfo[val].duration = - srp->header.duration; - else { - ms = jiffies_to_msecs(jiffies); - rinfo[val].duration = - (ms > srp->header.duration) ? - (ms - srp->header.duration) : 0; - } - rinfo[val].orphan = srp->orphan; - rinfo[val].sg_io_owned = - srp->sg_io_owned; - rinfo[val].pack_id = - srp->header.pack_id; - rinfo[val].usr_ptr = - srp->header.usr_ptr; - } - } + sg_fill_request_table(sfp, rinfo); read_unlock_irqrestore(&sfp->rq_list_lock, iflags); - result = __copy_to_user(p, rinfo, + result = __copy_to_user(p, rinfo, SZ_SG_REQ_INFO * SG_MAX_QUEUE); result = result ? -EFAULT : 0; kfree(rinfo); @@ -1164,7 +1179,7 @@ return POLLERR; poll_wait(filp, &sfp->read_wait, wait); read_lock_irqsave(&sfp->rq_list_lock, iflags); - for (srp = sfp->headrp; srp; srp = srp->nextrp) { + list_for_each_entry(srp, &sfp->rq_list, entry) { /* if any read waiting, flag it */ if ((0 == res) && (1 == srp->done) && (!srp->sg_io_owned)) res = POLLIN | POLLRDNORM; @@ -1245,6 +1260,7 @@ unsigned long req_sz, len, sa; Sg_scatter_hold *rsv_schp; int k, length; + int ret = 0; if ((!filp) || (!vma) || (!(sfp = (Sg_fd *) filp->private_data))) return -ENXIO; @@ -1255,8 +1271,11 @@ if (vma->vm_pgoff) return -EINVAL; /* want no offset */ rsv_schp = &sfp->reserve; - if (req_sz > rsv_schp->bufflen) - return -ENOMEM; /* cannot map more than reserved buffer */ + mutex_lock(&sfp->f_mutex); + if (req_sz > rsv_schp->bufflen) { + ret = -ENOMEM; /* cannot map more than reserved buffer */ + goto out; + } sa = vma->vm_start; length = 1 << (PAGE_SHIFT + rsv_schp->page_order); @@ -1270,7 +1289,9 @@ vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP; vma->vm_private_data = sfp; vma->vm_ops = &sg_mmap_vm_ops; - return 0; +out: + mutex_unlock(&sfp->f_mutex); + return ret; } static void @@ -1737,13 +1758,25 @@ md = &map_data; if (md) { - if (!sg_res_in_use(sfp) && dxfer_len <= rsv_schp->bufflen) + mutex_lock(&sfp->f_mutex); + if (dxfer_len <= rsv_schp->bufflen && + !sfp->res_in_use) { + sfp->res_in_use = 1; sg_link_reserve(sfp, srp, dxfer_len); - else { + } else if (hp->flags & SG_FLAG_MMAP_IO) { + res = -EBUSY; /* sfp->res_in_use == 1 */ + if (dxfer_len > rsv_schp->bufflen) + res = -ENOMEM; + mutex_unlock(&sfp->f_mutex); + return res; + } else { res = sg_build_indirect(req_schp, sfp, dxfer_len); - if (res) + if (res) { + mutex_unlock(&sfp->f_mutex); return res; + } } + mutex_unlock(&sfp->f_mutex); md->pages = req_schp->pages; md->page_order = req_schp->page_order; @@ -2032,8 +2065,9 @@ req_schp->pages = NULL; req_schp->page_order = 0; req_schp->sglist_len = 0; - sfp->save_scat_len = 0; srp->res_used = 0; + /* Called without mutex lock to avoid deadlock */ + sfp->res_in_use = 0; } static Sg_request * @@ -2043,7 +2077,7 @@ unsigned long iflags; write_lock_irqsave(&sfp->rq_list_lock, iflags); - for (resp = sfp->headrp; resp; resp = resp->nextrp) { + list_for_each_entry(resp, &sfp->rq_list, entry) { /* look for requests that are ready + not SG_IO owned */ if ((1 == resp->done) && (!resp->sg_io_owned) && ((-1 == pack_id) || (resp->header.pack_id == pack_id))) { @@ -2061,70 +2095,45 @@ { int k; unsigned long iflags; - Sg_request *resp; Sg_request *rp = sfp->req_arr; write_lock_irqsave(&sfp->rq_list_lock, iflags); - resp = sfp->headrp; - if (!resp) { - memset(rp, 0, sizeof (Sg_request)); - rp->parentfp = sfp; - resp = rp; - sfp->headrp = resp; - } else { - if (0 == sfp->cmd_q) - resp = NULL; /* command queuing disallowed */ - else { - for (k = 0; k < SG_MAX_QUEUE; ++k, ++rp) { - if (!rp->parentfp) - break; - } - if (k < SG_MAX_QUEUE) { - memset(rp, 0, sizeof (Sg_request)); - rp->parentfp = sfp; - while (resp->nextrp) - resp = resp->nextrp; - resp->nextrp = rp; - resp = rp; - } else - resp = NULL; + if (!list_empty(&sfp->rq_list)) { + if (!sfp->cmd_q) + goto out_unlock; + + for (k = 0; k < SG_MAX_QUEUE; ++k, ++rp) { + if (!rp->parentfp) + break; } + if (k >= SG_MAX_QUEUE) + goto out_unlock; } - if (resp) { - resp->nextrp = NULL; - resp->header.duration = jiffies_to_msecs(jiffies); - } + memset(rp, 0, sizeof (Sg_request)); + rp->parentfp = sfp; + rp->header.duration = jiffies_to_msecs(jiffies); + list_add_tail(&rp->entry, &sfp->rq_list); write_unlock_irqrestore(&sfp->rq_list_lock, iflags); - return resp; + return rp; +out_unlock: + write_unlock_irqrestore(&sfp->rq_list_lock, iflags); + return NULL; } /* Return of 1 for found; 0 for not found */ static int sg_remove_request(Sg_fd * sfp, Sg_request * srp) { - Sg_request *prev_rp; - Sg_request *rp; unsigned long iflags; int res = 0; - if ((!sfp) || (!srp) || (!sfp->headrp)) + if (!sfp || !srp || list_empty(&sfp->rq_list)) return res; write_lock_irqsave(&sfp->rq_list_lock, iflags); - prev_rp = sfp->headrp; - if (srp == prev_rp) { - sfp->headrp = prev_rp->nextrp; - prev_rp->parentfp = NULL; + if (!list_empty(&srp->entry)) { + list_del(&srp->entry); + srp->parentfp = NULL; res = 1; - } else { - while ((rp = prev_rp->nextrp)) { - if (srp == rp) { - prev_rp->nextrp = rp->nextrp; - rp->parentfp = NULL; - res = 1; - break; - } - prev_rp = rp; - } } write_unlock_irqrestore(&sfp->rq_list_lock, iflags); return res; @@ -2143,8 +2152,9 @@ init_waitqueue_head(&sfp->read_wait); rwlock_init(&sfp->rq_list_lock); - + INIT_LIST_HEAD(&sfp->rq_list); kref_init(&sfp->f_ref); + mutex_init(&sfp->f_mutex); sfp->timeout = SG_DEFAULT_TIMEOUT; sfp->timeout_user = SG_DEFAULT_TIMEOUT_USER; sfp->force_packid = SG_DEF_FORCE_PACK_ID; @@ -2183,10 +2193,13 @@ { struct sg_fd *sfp = container_of(work, struct sg_fd, ew.work); struct sg_device *sdp = sfp->parentdp; + Sg_request *srp; /* Cleanup any responses which were never read(). */ - while (sfp->headrp) - sg_finish_rem_req(sfp->headrp); + while (!list_empty(&sfp->rq_list)) { + srp = list_first_entry(&sfp->rq_list, Sg_request, entry); + sg_finish_rem_req(srp); + } if (sfp->reserve.bufflen > 0) { SCSI_LOG_TIMEOUT(6, sg_printk(KERN_INFO, sdp, @@ -2220,20 +2233,6 @@ schedule_work(&sfp->ew.work); } -static int -sg_res_in_use(Sg_fd * sfp) -{ - const Sg_request *srp; - unsigned long iflags; - - read_lock_irqsave(&sfp->rq_list_lock, iflags); - for (srp = sfp->headrp; srp; srp = srp->nextrp) - if (srp->res_used) - break; - read_unlock_irqrestore(&sfp->rq_list_lock, iflags); - return srp ? 1 : 0; -} - #ifdef CONFIG_SCSI_PROC_FS static int sg_idr_max_id(int id, void *p, void *data) @@ -2603,7 +2602,7 @@ /* must be called while holding sg_index_lock */ static void sg_proc_debug_helper(struct seq_file *s, Sg_device * sdp) { - int k, m, new_interface, blen, usg; + int k, new_interface, blen, usg; Sg_request *srp; Sg_fd *fp; const sg_io_hdr_t *hp; @@ -2623,13 +2622,11 @@ seq_printf(s, " cmd_q=%d f_packid=%d k_orphan=%d closed=0\n", (int) fp->cmd_q, (int) fp->force_packid, (int) fp->keep_orphan); - for (m = 0, srp = fp->headrp; - srp != NULL; - ++m, srp = srp->nextrp) { + list_for_each_entry(srp, &fp->rq_list, entry) { hp = &srp->header; new_interface = (hp->interface_id == '\0') ? 0 : 1; if (srp->res_used) { - if (new_interface && + if (new_interface && (SG_FLAG_MMAP_IO & hp->flags)) cp = " mmap>> "; else @@ -2660,7 +2657,7 @@ seq_printf(s, "ms sgat=%d op=0x%02x\n", usg, (int) srp->data.cmd_opcode); } - if (0 == m) + if (list_empty(&fp->rq_list)) seq_puts(s, " No requests active\n"); read_unlock(&fp->rq_list_lock); } diff -u linux-4.4.0/drivers/scsi/storvsc_drv.c linux-4.4.0/drivers/scsi/storvsc_drv.c --- linux-4.4.0/drivers/scsi/storvsc_drv.c +++ linux-4.4.0/drivers/scsi/storvsc_drv.c @@ -1658,6 +1658,8 @@ put_cpu(); if (ret == -EAGAIN) { + if (payload_sz > sizeof(cmd_request->mpb)) + kfree(payload); /* no more space */ return SCSI_MLQUEUE_DEVICE_BUSY; } diff -u linux-4.4.0/drivers/target/iscsi/iscsi_target.c linux-4.4.0/drivers/target/iscsi/iscsi_target.c --- linux-4.4.0/drivers/target/iscsi/iscsi_target.c +++ linux-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-4.4.0/drivers/target/iscsi/iscsi_target_configfs.c linux-4.4.0/drivers/target/iscsi/iscsi_target_configfs.c --- linux-4.4.0/drivers/target/iscsi/iscsi_target_configfs.c +++ linux-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-4.4.0/drivers/target/iscsi/iscsi_target_login.c linux-4.4.0/drivers/target/iscsi/iscsi_target_login.c --- linux-4.4.0/drivers/target/iscsi/iscsi_target_login.c +++ linux-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-4.4.0/drivers/target/iscsi/iscsi_target_parameters.c linux-4.4.0/drivers/target/iscsi/iscsi_target_parameters.c --- linux-4.4.0/drivers/target/iscsi/iscsi_target_parameters.c +++ linux-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-4.4.0/drivers/target/iscsi/iscsi_target_tpg.c linux-4.4.0/drivers/target/iscsi/iscsi_target_tpg.c --- linux-4.4.0/drivers/target/iscsi/iscsi_target_tpg.c +++ linux-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-4.4.0/drivers/target/iscsi/iscsi_target_tpg.h linux-4.4.0/drivers/target/iscsi/iscsi_target_tpg.h --- linux-4.4.0/drivers/target/iscsi/iscsi_target_tpg.h +++ linux-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-4.4.0/drivers/target/target_core_tpg.c linux-4.4.0/drivers/target/target_core_tpg.c --- linux-4.4.0/drivers/target/target_core_tpg.c +++ linux-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-4.4.0/drivers/target/target_core_transport.c linux-4.4.0/drivers/target/target_core_transport.c --- linux-4.4.0/drivers/target/target_core_transport.c +++ linux-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-4.4.0/drivers/thermal/cpu_cooling.c linux-4.4.0/drivers/thermal/cpu_cooling.c --- linux-4.4.0/drivers/thermal/cpu_cooling.c +++ linux-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-4.4.0/drivers/tty/tty_buffer.c linux-4.4.0/drivers/tty/tty_buffer.c --- linux-4.4.0/drivers/tty/tty_buffer.c +++ linux-4.4.0/drivers/tty/tty_buffer.c @@ -362,6 +362,32 @@ EXPORT_SYMBOL(tty_insert_flip_string_flags); /** + * __tty_insert_flip_char - Add one character to the tty buffer + * @port: tty port + * @ch: character + * @flag: flag byte + * + * Queue a single byte to the tty buffering, with an optional flag. + * This is the slow path of tty_insert_flip_char. + */ +int __tty_insert_flip_char(struct tty_port *port, unsigned char ch, char flag) +{ + struct tty_buffer *tb; + int flags = (flag == TTY_NORMAL) ? TTYB_NORMAL : 0; + + if (!__tty_buffer_request_room(port, 1, flags)) + return 0; + + tb = port->buf.tail; + if (~tb->flags & TTYB_NORMAL) + *flag_buf_ptr(tb, tb->used) = flag; + *char_buf_ptr(tb, tb->used++) = ch; + + return 1; +} +EXPORT_SYMBOL(__tty_insert_flip_char); + +/** * tty_schedule_flip - push characters to ldisc * @port: tty port to push from * diff -u linux-4.4.0/drivers/tty/tty_io.c linux-4.4.0/drivers/tty/tty_io.c --- linux-4.4.0/drivers/tty/tty_io.c +++ linux-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-4.4.0/drivers/tty/tty_ldisc.c linux-4.4.0/drivers/tty/tty_ldisc.c --- linux-4.4.0/drivers/tty/tty_ldisc.c +++ linux-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-4.4.0/drivers/tty/vt/vt.c linux-4.4.0/drivers/tty/vt/vt.c --- linux-4.4.0/drivers/tty/vt/vt.c +++ linux-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-4.4.0/drivers/usb/class/cdc-acm.c linux-4.4.0/drivers/usb/class/cdc-acm.c --- linux-4.4.0/drivers/usb/class/cdc-acm.c +++ linux-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-4.4.0/drivers/usb/core/devio.c linux-4.4.0/drivers/usb/core/devio.c --- linux-4.4.0/drivers/usb/core/devio.c +++ linux-4.4.0/drivers/usb/core/devio.c @@ -519,6 +519,8 @@ if (as->status < 0 && as->bulk_addr && as->status != -ECONNRESET && as->status != -ENOENT) cancel_bulk_urbs(ps, as->bulk_addr); + + wake_up(&ps->wait); spin_unlock(&ps->lock); if (signr) { @@ -526,8 +528,6 @@ put_pid(pid); put_cred(cred); } - - wake_up(&ps->wait); } static void destroy_async(struct usb_dev_state *ps, struct list_head *list) diff -u linux-4.4.0/drivers/usb/core/hcd.c linux-4.4.0/drivers/usb/core/hcd.c --- linux-4.4.0/drivers/usb/core/hcd.c +++ linux-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-4.4.0/drivers/usb/core/hub.c linux-4.4.0/drivers/usb/core/hub.c --- linux-4.4.0/drivers/usb/core/hub.c +++ linux-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-4.4.0/drivers/usb/core/quirks.c linux-4.4.0/drivers/usb/core/quirks.c --- linux-4.4.0/drivers/usb/core/quirks.c +++ linux-4.4.0/drivers/usb/core/quirks.c @@ -57,8 +57,9 @@ /* Microsoft LifeCam-VX700 v2.0 */ { USB_DEVICE(0x045e, 0x0770), .driver_info = USB_QUIRK_RESET_RESUME }, - /* Logitech HD Pro Webcams C920 and C930e */ + /* Logitech HD Pro Webcams C920, C920-C and C930e */ { USB_DEVICE(0x046d, 0x082d), .driver_info = USB_QUIRK_DELAY_INIT }, + { USB_DEVICE(0x046d, 0x0841), .driver_info = USB_QUIRK_DELAY_INIT }, { USB_DEVICE(0x046d, 0x0843), .driver_info = USB_QUIRK_DELAY_INIT }, /* Logitech ConferenceCam CC3000e */ @@ -150,6 +151,9 @@ /* appletouch */ { USB_DEVICE(0x05ac, 0x021a), .driver_info = USB_QUIRK_RESET_RESUME }, + /* Genesys Logic hub, internally used by Moshi USB to Ethernet Adapter */ + { USB_DEVICE(0x05e3, 0x0616), .driver_info = USB_QUIRK_NO_LPM }, + /* Avision AV600U */ { USB_DEVICE(0x0638, 0x0a13), .driver_info = USB_QUIRK_STRING_FETCH_255 }, @@ -214,6 +218,9 @@ { USB_DEVICE(0x1a0a, 0x0200), .driver_info = USB_QUIRK_LINEAR_UFRAME_INTR_BINTERVAL }, + /* Corsair Strafe RGB */ + { USB_DEVICE(0x1b1c, 0x1b20), .driver_info = USB_QUIRK_DELAY_INIT }, + /* Acer C120 LED Projector */ { USB_DEVICE(0x1de1, 0xc102), .driver_info = USB_QUIRK_NO_LPM }, @@ -223,6 +230,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 +256,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-4.4.0/drivers/usb/dwc3/gadget.c linux-4.4.0/drivers/usb/dwc3/gadget.c --- linux-4.4.0/drivers/usb/dwc3/gadget.c +++ linux-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-4.4.0/drivers/usb/host/xhci-hub.c linux-4.4.0/drivers/usb/host/xhci-hub.c --- linux-4.4.0/drivers/usb/host/xhci-hub.c +++ linux-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-4.4.0/drivers/usb/host/xhci-pci.c linux-4.4.0/drivers/usb/host/xhci-pci.c --- linux-4.4.0/drivers/usb/host/xhci-pci.c +++ linux-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-4.4.0/drivers/usb/host/xhci-ring.c linux-4.4.0/drivers/usb/host/xhci-ring.c --- linux-4.4.0/drivers/usb/host/xhci-ring.c +++ linux-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-4.4.0/drivers/usb/host/xhci.c linux-4.4.0/drivers/usb/host/xhci.c --- linux-4.4.0/drivers/usb/host/xhci.c +++ linux-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-4.4.0/drivers/usb/host/xhci.h linux-4.4.0/drivers/usb/host/xhci.h --- linux-4.4.0/drivers/usb/host/xhci.h +++ linux-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-4.4.0/drivers/usb/musb/musb_host.c linux-4.4.0/drivers/usb/musb/musb_host.c --- linux-4.4.0/drivers/usb/musb/musb_host.c +++ linux-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-4.4.0/drivers/usb/renesas_usbhs/mod_gadget.c linux-4.4.0/drivers/usb/renesas_usbhs/mod_gadget.c --- linux-4.4.0/drivers/usb/renesas_usbhs/mod_gadget.c +++ linux-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-4.4.0/drivers/usb/serial/cp210x.c linux-4.4.0/drivers/usb/serial/cp210x.c --- linux-4.4.0/drivers/usb/serial/cp210x.c +++ linux-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-4.4.0/drivers/usb/serial/option.c linux-4.4.0/drivers/usb/serial/option.c --- linux-4.4.0/drivers/usb/serial/option.c +++ linux-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) }, @@ -2019,8 +2023,11 @@ { USB_DEVICE_AND_INTERFACE_INFO(0x2001, 0x7d03, 0xff, 0x02, 0x01) }, { USB_DEVICE_AND_INTERFACE_INFO(0x2001, 0x7d03, 0xff, 0x00, 0x00) }, { USB_DEVICE_INTERFACE_CLASS(0x2001, 0x7d04, 0xff) }, /* D-Link DWM-158 */ + { USB_DEVICE_INTERFACE_CLASS(0x2001, 0x7d0e, 0xff) }, /* D-Link DWM-157 C1 */ { USB_DEVICE_INTERFACE_CLASS(0x2001, 0x7e19, 0xff), /* D-Link DWM-221 B1 */ .driver_info = (kernel_ulong_t)&net_intf4_blacklist }, + { USB_DEVICE_INTERFACE_CLASS(0x2001, 0x7e35, 0xff), /* D-Link DWM-222 */ + .driver_info = (kernel_ulong_t)&net_intf4_blacklist }, { USB_DEVICE_AND_INTERFACE_INFO(0x07d1, 0x3e01, 0xff, 0xff, 0xff) }, /* D-Link DWM-152/C1 */ { USB_DEVICE_AND_INTERFACE_INFO(0x07d1, 0x3e02, 0xff, 0xff, 0xff) }, /* D-Link DWM-156/C1 */ { USB_DEVICE_AND_INTERFACE_INFO(0x07d1, 0x7e11, 0xff, 0xff, 0xff) }, /* D-Link DWM-156/A3 */ diff -u linux-4.4.0/drivers/usb/serial/pl2303.c linux-4.4.0/drivers/usb/serial/pl2303.c --- linux-4.4.0/drivers/usb/serial/pl2303.c +++ linux-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-4.4.0/drivers/usb/serial/pl2303.h linux-4.4.0/drivers/usb/serial/pl2303.h --- linux-4.4.0/drivers/usb/serial/pl2303.h +++ linux-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-4.4.0/drivers/usb/serial/qcserial.c linux-4.4.0/drivers/usb/serial/qcserial.c --- linux-4.4.0/drivers/usb/serial/qcserial.c +++ linux-4.4.0/drivers/usb/serial/qcserial.c @@ -158,6 +158,7 @@ {DEVICE_SWI(0x1199, 0x9056)}, /* Sierra Wireless Modem */ {DEVICE_SWI(0x1199, 0x9060)}, /* Sierra Wireless Modem */ {DEVICE_SWI(0x1199, 0x9061)}, /* Sierra Wireless Modem */ + {DEVICE_SWI(0x1199, 0x9063)}, /* Sierra Wireless EM7305 */ {DEVICE_SWI(0x1199, 0x9070)}, /* Sierra Wireless MC74xx */ {DEVICE_SWI(0x1199, 0x9071)}, /* Sierra Wireless MC74xx */ {DEVICE_SWI(0x1199, 0x9078)}, /* Sierra Wireless EM74xx */ @@ -173,6 +174,10 @@ {DEVICE_SWI(0x413c, 0x81b3)}, /* Dell Wireless 5809e Gobi(TM) 4G LTE Mobile Broadband Card (rev3) */ {DEVICE_SWI(0x413c, 0x81b5)}, /* Dell Wireless 5811e QDL */ {DEVICE_SWI(0x413c, 0x81b6)}, /* Dell Wireless 5811e QDL */ + {DEVICE_SWI(0x413c, 0x81cf)}, /* Dell Wireless 5819 */ + {DEVICE_SWI(0x413c, 0x81d0)}, /* Dell Wireless 5819 */ + {DEVICE_SWI(0x413c, 0x81d1)}, /* Dell Wireless 5818 */ + {DEVICE_SWI(0x413c, 0x81d2)}, /* Dell Wireless 5818 */ /* Huawei devices */ {DEVICE_HWI(0x03f0, 0x581d)}, /* HP lt4112 LTE/HSPA+ Gobi 4G Modem (Huawei me906e) */ diff -u linux-4.4.0/drivers/usb/storage/unusual_uas.h linux-4.4.0/drivers/usb/storage/unusual_uas.h --- linux-4.4.0/drivers/usb/storage/unusual_uas.h +++ linux-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-4.4.0/drivers/vfio/pci/vfio_pci.c linux-4.4.0/drivers/vfio/pci/vfio_pci.c --- linux-4.4.0/drivers/vfio/pci/vfio_pci.c +++ linux-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-4.4.0/drivers/xen/swiotlb-xen.c linux-4.4.0/drivers/xen/swiotlb-xen.c --- linux-4.4.0/drivers/xen/swiotlb-xen.c +++ linux-4.4.0/drivers/xen/swiotlb-xen.c @@ -682,0 +683,19 @@ + +/* + * Create userspace mapping for the DMA-coherent memory. + * This function should be called with the pages from the current domain only, + * passing pages mapped from other domains would lead to memory corruption. + */ +int +xen_swiotlb_dma_mmap(struct device *dev, struct vm_area_struct *vma, + void *cpu_addr, dma_addr_t dma_addr, size_t size, + struct dma_attrs *attrs) +{ +#if defined(CONFIG_ARM) || defined(CONFIG_ARM64) + if (__generic_dma_ops(dev)->mmap) + return __generic_dma_ops(dev)->mmap(dev, vma, cpu_addr, + dma_addr, size, attrs); +#endif + return dma_common_mmap(dev, vma, cpu_addr, dma_addr, size); +} +EXPORT_SYMBOL_GPL(xen_swiotlb_dma_mmap); diff -u linux-4.4.0/fs/aio.c linux-4.4.0/fs/aio.c --- linux-4.4.0/fs/aio.c +++ linux-4.4.0/fs/aio.c @@ -438,10 +438,9 @@ #endif }; -static int aio_setup_ring(struct kioctx *ctx) +static int aio_setup_ring(struct kioctx *ctx, unsigned int nr_events) { struct aio_ring *ring; - unsigned nr_events = ctx->max_reqs; struct mm_struct *mm = current->mm; unsigned long size, unused; int nr_pages; @@ -699,6 +698,12 @@ int err = -ENOMEM; /* + * Store the original nr_events -- what userspace passed to io_setup(), + * for counting against the global limit -- before it changes. + */ + unsigned int max_reqs = nr_events; + + /* * We keep track of the number of available ringbuffer slots, to prevent * overflow (reqs_available), and we also use percpu counters for this. * @@ -716,14 +721,14 @@ return ERR_PTR(-EINVAL); } - if (!nr_events || (unsigned long)nr_events > (aio_max_nr * 2UL)) + if (!nr_events || (unsigned long)max_reqs > aio_max_nr) return ERR_PTR(-EAGAIN); ctx = kmem_cache_zalloc(kioctx_cachep, GFP_KERNEL); if (!ctx) return ERR_PTR(-ENOMEM); - ctx->max_reqs = nr_events; + ctx->max_reqs = max_reqs; spin_lock_init(&ctx->ctx_lock); spin_lock_init(&ctx->completion_lock); @@ -745,7 +750,7 @@ if (!ctx->cpu) goto err; - err = aio_setup_ring(ctx); + err = aio_setup_ring(ctx, nr_events); if (err < 0) goto err; @@ -756,8 +761,8 @@ /* limit the number of system wide aios */ spin_lock(&aio_nr_lock); - if (aio_nr + nr_events > (aio_max_nr * 2UL) || - aio_nr + nr_events < aio_nr) { + if (aio_nr + ctx->max_reqs > aio_max_nr || + aio_nr + ctx->max_reqs < aio_nr) { spin_unlock(&aio_nr_lock); err = -EAGAIN; goto err_ctx; diff -u linux-4.4.0/fs/binfmt_elf.c linux-4.4.0/fs/binfmt_elf.c --- linux-4.4.0/fs/binfmt_elf.c +++ linux-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-4.4.0/fs/btrfs/inode.c linux-4.4.0/fs/btrfs/inode.c --- linux-4.4.0/fs/btrfs/inode.c +++ linux-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-4.4.0/fs/btrfs/ioctl.c linux-4.4.0/fs/btrfs/ioctl.c --- linux-4.4.0/fs/btrfs/ioctl.c +++ linux-4.4.0/fs/btrfs/ioctl.c @@ -2984,7 +2984,7 @@ out: if (ret) btrfs_cmp_data_free(cmp); - return 0; + return ret; } static int btrfs_cmp_data(struct inode *src, u64 loff, struct inode *dst, @@ -4118,6 +4118,10 @@ ret = PTR_ERR(new_root); goto out; } + if (!is_fstree(new_root->objectid)) { + ret = -ENOENT; + goto out; + } path = btrfs_alloc_path(); if (!path) { diff -u linux-4.4.0/fs/btrfs/relocation.c linux-4.4.0/fs/btrfs/relocation.c --- linux-4.4.0/fs/btrfs/relocation.c +++ linux-4.4.0/fs/btrfs/relocation.c @@ -2350,11 +2350,11 @@ while (!list_empty(list)) { reloc_root = list_entry(list->next, struct btrfs_root, root_list); + __del_reloc_root(reloc_root); free_extent_buffer(reloc_root->node); free_extent_buffer(reloc_root->commit_root); reloc_root->node = NULL; reloc_root->commit_root = NULL; - __del_reloc_root(reloc_root); } } diff -u linux-4.4.0/fs/btrfs/super.c linux-4.4.0/fs/btrfs/super.c --- linux-4.4.0/fs/btrfs/super.c +++ linux-4.4.0/fs/btrfs/super.c @@ -1727,6 +1727,8 @@ goto restore; } + btrfs_qgroup_rescan_resume(fs_info); + if (!fs_info->uuid_root) { btrfs_info(fs_info, "creating UUID tree"); ret = btrfs_create_uuid_tree(fs_info); diff -u linux-4.4.0/fs/btrfs/volumes.c linux-4.4.0/fs/btrfs/volumes.c --- linux-4.4.0/fs/btrfs/volumes.c +++ linux-4.4.0/fs/btrfs/volumes.c @@ -108,7 +108,7 @@ }, }; -const u64 const btrfs_raid_group[BTRFS_NR_RAID_TYPES] = { +const u64 btrfs_raid_group[BTRFS_NR_RAID_TYPES] = { [BTRFS_RAID_RAID10] = BTRFS_BLOCK_GROUP_RAID10, [BTRFS_RAID_RAID1] = BTRFS_BLOCK_GROUP_RAID1, [BTRFS_RAID_DUP] = BTRFS_BLOCK_GROUP_DUP, diff -u linux-4.4.0/fs/ceph/addr.c linux-4.4.0/fs/ceph/addr.c --- linux-4.4.0/fs/ceph/addr.c +++ linux-4.4.0/fs/ceph/addr.c @@ -189,7 +189,7 @@ /* * read a single page, without unlocking it. */ -static int readpage_nounlock(struct file *filp, struct page *page) +static int ceph_do_readpage(struct file *filp, struct page *page) { struct inode *inode = file_inode(filp); struct ceph_inode_info *ci = ceph_inode(inode); @@ -219,7 +219,7 @@ err = ceph_readpage_from_fscache(inode, page); if (err == 0) - goto out; + return -EINPROGRESS; dout("readpage inode %p file %p page %p index %lu\n", inode, filp, page, page->index); @@ -249,8 +249,11 @@ static int ceph_readpage(struct file *filp, struct page *page) { - int r = readpage_nounlock(filp, page); - unlock_page(page); + int r = ceph_do_readpage(filp, page); + if (r != -EINPROGRESS) + unlock_page(page); + else + r = 0; return r; } @@ -1094,7 +1097,7 @@ goto retry_locked; r = writepage_nounlock(page, NULL); if (r < 0) - goto fail_nosnap; + goto fail_unlock; goto retry_locked; } @@ -1122,11 +1125,14 @@ } /* we need to read it. */ - r = readpage_nounlock(file, page); - if (r < 0) - goto fail_nosnap; + r = ceph_do_readpage(file, page); + if (r < 0) { + if (r == -EINPROGRESS) + return -EAGAIN; + goto fail_unlock; + } goto retry_locked; -fail_nosnap: +fail_unlock: unlock_page(page); return r; } diff -u linux-4.4.0/fs/cifs/connect.c linux-4.4.0/fs/cifs/connect.c --- linux-4.4.0/fs/cifs/connect.c +++ linux-4.4.0/fs/cifs/connect.c @@ -4125,6 +4125,14 @@ cifs_dbg(FYI, "Security Mode: 0x%x Capabilities: 0x%x TimeAdjust: %d\n", server->sec_mode, server->capabilities, server->timeAdj); + if (ses->auth_key.response) { + cifs_dbg(VFS, "Free previous auth_key.response = %p\n", + ses->auth_key.response); + kfree(ses->auth_key.response); + ses->auth_key.response = NULL; + ses->auth_key.len = 0; + } + if (server->ops->sess_setup) rc = server->ops->sess_setup(xid, ses, nls_info); diff -u linux-4.4.0/fs/cifs/dir.c linux-4.4.0/fs/cifs/dir.c --- linux-4.4.0/fs/cifs/dir.c +++ linux-4.4.0/fs/cifs/dir.c @@ -183,15 +183,20 @@ } /* + * Don't allow path components longer than the server max. * Don't allow the separator character in a path component. * The VFS will not allow "/", but "\" is allowed by posix. */ static int -check_name(struct dentry *direntry) +check_name(struct dentry *direntry, struct cifs_tcon *tcon) { struct cifs_sb_info *cifs_sb = CIFS_SB(direntry->d_sb); int i; + if (unlikely(direntry->d_name.len > + le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength))) + return -ENAMETOOLONG; + if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS)) { for (i = 0; i < direntry->d_name.len; i++) { if (direntry->d_name.name[i] == '\\') { @@ -489,10 +494,6 @@ return finish_no_open(file, res); } - rc = check_name(direntry); - if (rc) - return rc; - xid = get_xid(); cifs_dbg(FYI, "parent inode = 0x%p name is: %pd and dentry = 0x%p\n", @@ -505,6 +506,11 @@ } tcon = tlink_tcon(tlink); + + rc = check_name(direntry, tcon); + if (rc) + goto out_free_xid; + server = tcon->ses->server; if (server->ops->new_lease_key) @@ -765,7 +771,7 @@ } pTcon = tlink_tcon(tlink); - rc = check_name(direntry); + rc = check_name(direntry, pTcon); if (rc) goto lookup_out; diff -u linux-4.4.0/fs/cifs/file.c linux-4.4.0/fs/cifs/file.c --- linux-4.4.0/fs/cifs/file.c +++ linux-4.4.0/fs/cifs/file.c @@ -224,6 +224,13 @@ if (backup_cred(cifs_sb)) create_options |= CREATE_OPEN_BACKUP_INTENT; + /* O_SYNC also has bit for O_DSYNC so following check picks up either */ + if (f_flags & O_SYNC) + create_options |= CREATE_WRITE_THROUGH; + + if (f_flags & O_DIRECT) + create_options |= CREATE_NO_BUFFER; + oparms.tcon = tcon; oparms.cifs_sb = cifs_sb; oparms.desired_access = desired_access; diff -u linux-4.4.0/fs/cifs/smb2pdu.c linux-4.4.0/fs/cifs/smb2pdu.c --- linux-4.4.0/fs/cifs/smb2pdu.c +++ linux-4.4.0/fs/cifs/smb2pdu.c @@ -418,7 +418,7 @@ build_encrypt_ctxt((struct smb2_encryption_neg_context *)pneg_ctxt); req->NegotiateContextOffset = cpu_to_le32(OFFSET_OF_NEG_CONTEXT); req->NegotiateContextCount = cpu_to_le16(2); - inc_rfc1001_len(req, 4 + sizeof(struct smb2_preauth_neg_context) + 2 + inc_rfc1001_len(req, 4 + sizeof(struct smb2_preauth_neg_context) + sizeof(struct smb2_encryption_neg_context)); /* calculate hash */ } #else @@ -584,13 +584,20 @@ /* * validation ioctl must be signed, so no point sending this if we - * can not sign it. We could eventually change this to selectively + * can not sign it (ie are not known user). Even if signing is not + * required (enabled but not negotiated), in those cases we selectively * sign just this, the first and only signed request on a connection. - * This is good enough for now since a user who wants better security - * would also enable signing on the mount. Having validation of - * negotiate info for signed connections helps reduce attack vectors + * Having validation of negotiate info helps reduce attack vectors. */ - if (tcon->ses->server->sign == false) + if (tcon->ses->session_flags & SMB2_SESSION_FLAG_IS_GUEST) return 0; /* validation requires signing */ + if (tcon->ses->user_name == NULL) { + cifs_dbg(FYI, "Can't validate negotiate: null user mount\n"); + return 0; /* validation requires signing */ + } + + if (tcon->ses->session_flags & SMB2_SESSION_FLAG_IS_NULL) + cifs_dbg(VFS, "Unexpected null user (anonymous) auth flag sent by server\n"); + vneg_inbuf.Capabilities = cpu_to_le32(tcon->ses->server->vals->req_capabilities); @@ -3072,8 +3079,8 @@ kst->f_bsize = le32_to_cpu(pfs_inf->BytesPerSector) * le32_to_cpu(pfs_inf->SectorsPerAllocationUnit); kst->f_blocks = le64_to_cpu(pfs_inf->TotalAllocationUnits); - kst->f_bfree = le64_to_cpu(pfs_inf->ActualAvailableAllocationUnits); - kst->f_bavail = le64_to_cpu(pfs_inf->CallerAvailableAllocationUnits); + kst->f_bfree = kst->f_bavail = + le64_to_cpu(pfs_inf->CallerAvailableAllocationUnits); return; } diff -u linux-4.4.0/fs/cifs/smb2pdu.h linux-4.4.0/fs/cifs/smb2pdu.h --- linux-4.4.0/fs/cifs/smb2pdu.h +++ linux-4.4.0/fs/cifs/smb2pdu.h @@ -82,8 +82,8 @@ #define NUMBER_OF_SMB2_COMMANDS 0x0013 -/* BB FIXME - analyze following length BB */ -#define MAX_SMB2_HDR_SIZE 0x78 /* 4 len + 64 hdr + (2*24 wct) + 2 bct + 2 pad */ +/* 4 len + 52 transform hdr + 64 hdr + 56 create rsp */ +#define MAX_SMB2_HDR_SIZE 0x00b0 #define SMB2_PROTO_NUMBER cpu_to_le32(0x424d53fe) #define SMB2_TRANSFORM_PROTO_NUM cpu_to_le32(0x424d53fd) diff -u linux-4.4.0/fs/dcache.c linux-4.4.0/fs/dcache.c --- linux-4.4.0/fs/dcache.c +++ linux-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-4.4.0/fs/exec.c linux-4.4.0/fs/exec.c --- linux-4.4.0/fs/exec.c +++ linux-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-4.4.0/fs/ext4/file.c linux-4.4.0/fs/ext4/file.c --- linux-4.4.0/fs/ext4/file.c +++ linux-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-4.4.0/fs/ext4/inode.c linux-4.4.0/fs/ext4/inode.c --- linux-4.4.0/fs/ext4/inode.c +++ linux-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-4.4.0/fs/ext4/resize.c linux-4.4.0/fs/ext4/resize.c --- linux-4.4.0/fs/ext4/resize.c +++ linux-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-4.4.0/fs/ext4/super.c linux-4.4.0/fs/ext4/super.c --- linux-4.4.0/fs/ext4/super.c +++ linux-4.4.0/fs/ext4/super.c @@ -2230,6 +2230,7 @@ unsigned int s_flags = sb->s_flags; int nr_orphans = 0, nr_truncates = 0; #ifdef CONFIG_QUOTA + int quota_update = 0; int i; #endif if (!es->s_last_orphan) { @@ -2268,14 +2269,32 @@ #ifdef CONFIG_QUOTA /* Needed for iput() to work correctly and not trash data */ sb->s_flags |= MS_ACTIVE; - /* Turn on quotas so that they are updated correctly */ + + /* + * Turn on quotas which were not enabled for read-only mounts if + * filesystem has quota feature, so that they are updated correctly. + */ + if (ext4_has_feature_quota(sb) && (s_flags & MS_RDONLY)) { + int ret = ext4_enable_quotas(sb); + + if (!ret) + quota_update = 1; + else + ext4_msg(sb, KERN_ERR, + "Cannot turn on quotas: error %d", ret); + } + + /* Turn on journaled quotas used for old sytle */ for (i = 0; i < EXT4_MAXQUOTAS; i++) { if (EXT4_SB(sb)->s_qf_names[i]) { int ret = ext4_quota_on_mount(sb, i); - if (ret < 0) + + if (!ret) + quota_update = 1; + else ext4_msg(sb, KERN_ERR, "Cannot turn on journaled " - "quota: error %d", ret); + "quota: type %d: error %d", i, ret); } } #endif @@ -2334,10 +2353,12 @@ ext4_msg(sb, KERN_INFO, "%d truncate%s cleaned up", PLURAL(nr_truncates)); #ifdef CONFIG_QUOTA - /* Turn quotas off */ - for (i = 0; i < EXT4_MAXQUOTAS; i++) { - if (sb_dqopt(sb)->files[i]) - dquot_quota_off(sb, i); + /* Turn off quotas if they were enabled for orphan cleanup */ + if (quota_update) { + for (i = 0; i < EXT4_MAXQUOTAS; i++) { + if (sb_dqopt(sb)->files[i]) + dquot_quota_off(sb, i); + } } #endif sb->s_flags = s_flags; /* Restore MS_RDONLY status */ @@ -5156,6 +5177,9 @@ err = ext4_quota_enable(sb, type, QFMT_VFS_V1, DQUOT_USAGE_ENABLED); if (err) { + for (type--; type >= 0; type--) + dquot_quota_off(sb, type); + ext4_warning(sb, "Failed to enable quota tracking " "(type=%d, err=%d). Please run " diff -u linux-4.4.0/fs/ext4/sysfs.c linux-4.4.0/fs/ext4/sysfs.c --- linux-4.4.0/fs/ext4/sysfs.c +++ linux-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-4.4.0/fs/f2fs/acl.c linux-4.4.0/fs/f2fs/acl.c --- linux-4.4.0/fs/f2fs/acl.c +++ linux-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-4.4.0/fs/f2fs/super.c linux-4.4.0/fs/f2fs/super.c --- linux-4.4.0/fs/f2fs/super.c +++ linux-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-4.4.0/fs/fuse/file.c linux-4.4.0/fs/fuse/file.c --- linux-4.4.0/fs/fuse/file.c +++ linux-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-4.4.0/fs/gfs2/glock.c linux-4.4.0/fs/gfs2/glock.c --- linux-4.4.0/fs/gfs2/glock.c +++ linux-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); } @@ -1807,13 +1814,10 @@ { struct gfs2_glock_iter *gi = seq->private; loff_t n = *pos; - int ret; - - if (gi->last_pos <= *pos) - n = (*pos - gi->last_pos); - ret = rhashtable_walk_start(&gi->hti); - if (ret) + if (rhashtable_walk_init(&gl_hash_table, &gi->hti) != 0) + return NULL; + if (rhashtable_walk_start(&gi->hti) != 0) return NULL; do { @@ -1821,6 +1825,7 @@ } while (gi->gl && n--); gi->last_pos = *pos; + return gi->gl; } @@ -1832,6 +1837,7 @@ (*pos)++; gi->last_pos = *pos; gfs2_glock_iter_next(gi); + return gi->gl; } @@ -1840,7 +1846,10 @@ struct gfs2_glock_iter *gi = seq->private; gi->gl = NULL; - rhashtable_walk_stop(&gi->hti); + if (gi->hti.walker) { + rhashtable_walk_stop(&gi->hti); + rhashtable_walk_exit(&gi->hti); + } } static int gfs2_glock_seq_show(struct seq_file *seq, void *iter_ptr) @@ -1903,12 +1912,10 @@ struct gfs2_glock_iter *gi = seq->private; gi->sdp = inode->i_private; - gi->last_pos = 0; seq->buf = kmalloc(GFS2_SEQ_GOODSIZE, GFP_KERNEL | __GFP_NOWARN); if (seq->buf) seq->size = GFS2_SEQ_GOODSIZE; gi->gl = NULL; - ret = rhashtable_walk_init(&gl_hash_table, &gi->hti); } return ret; } @@ -1919,7 +1926,6 @@ struct gfs2_glock_iter *gi = seq->private; gi->gl = NULL; - rhashtable_walk_exit(&gi->hti); return seq_release_private(inode, file); } @@ -1931,12 +1937,10 @@ struct seq_file *seq = file->private_data; struct gfs2_glock_iter *gi = seq->private; gi->sdp = inode->i_private; - gi->last_pos = 0; seq->buf = kmalloc(GFS2_SEQ_GOODSIZE, GFP_KERNEL | __GFP_NOWARN); if (seq->buf) seq->size = GFS2_SEQ_GOODSIZE; gi->gl = NULL; - ret = rhashtable_walk_init(&gl_hash_table, &gi->hti); } return ret; } diff -u linux-4.4.0/fs/gfs2/incore.h linux-4.4.0/fs/gfs2/incore.h --- linux-4.4.0/fs/gfs2/incore.h +++ linux-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-4.4.0/fs/mount.h linux-4.4.0/fs/mount.h --- linux-4.4.0/fs/mount.h +++ linux-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-4.4.0/fs/namespace.c linux-4.4.0/fs/namespace.c --- linux-4.4.0/fs/namespace.c +++ linux-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-4.4.0/fs/nfs/dir.c linux-4.4.0/fs/nfs/dir.c --- linux-4.4.0/fs/nfs/dir.c +++ linux-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-4.4.0/fs/nfs/inode.c linux-4.4.0/fs/nfs/inode.c --- linux-4.4.0/fs/nfs/inode.c +++ linux-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-4.4.0/fs/nfs/pnfs.c linux-4.4.0/fs/nfs/pnfs.c --- linux-4.4.0/fs/nfs/pnfs.c +++ linux-4.4.0/fs/nfs/pnfs.c @@ -1943,7 +1943,6 @@ nfs_pageio_reset_write_mds(desc); mirror->pg_recoalesce = 1; } - nfs_pgio_data_destroy(hdr); hdr->release(hdr); } @@ -2059,7 +2058,6 @@ nfs_pageio_reset_read_mds(desc); mirror->pg_recoalesce = 1; } - nfs_pgio_data_destroy(hdr); hdr->release(hdr); } diff -u linux-4.4.0/fs/nfsd/nfs4state.c linux-4.4.0/fs/nfsd/nfs4state.c --- linux-4.4.0/fs/nfsd/nfs4state.c +++ linux-4.4.0/fs/nfsd/nfs4state.c @@ -1145,9 +1145,7 @@ static bool unhash_lock_stateid(struct nfs4_ol_stateid *stp) { - struct nfs4_openowner *oo = openowner(stp->st_openstp->st_stateowner); - - lockdep_assert_held(&oo->oo_owner.so_client->cl_lock); + lockdep_assert_held(&stp->st_stid.sc_client->cl_lock); list_del_init(&stp->st_locks); nfs4_unhash_stid(&stp->st_stid); @@ -1156,12 +1154,12 @@ static void release_lock_stateid(struct nfs4_ol_stateid *stp) { - struct nfs4_openowner *oo = openowner(stp->st_openstp->st_stateowner); + struct nfs4_client *clp = stp->st_stid.sc_client; bool unhashed; - spin_lock(&oo->oo_owner.so_client->cl_lock); + spin_lock(&clp->cl_lock); unhashed = unhash_lock_stateid(stp); - spin_unlock(&oo->oo_owner.so_client->cl_lock); + spin_unlock(&clp->cl_lock); if (unhashed) nfs4_put_stid(&stp->st_stid); } diff -u linux-4.4.0/fs/nfsd/nfs4xdr.c linux-4.4.0/fs/nfsd/nfs4xdr.c --- linux-4.4.0/fs/nfsd/nfs4xdr.c +++ linux-4.4.0/fs/nfsd/nfs4xdr.c @@ -129,7 +129,7 @@ argp->p = page_address(argp->pagelist[0]); argp->pagelist++; if (argp->pagelen < PAGE_SIZE) { - argp->end = argp->p + (argp->pagelen>>2); + argp->end = argp->p + XDR_QUADLEN(argp->pagelen); argp->pagelen = 0; } else { argp->end = argp->p + (PAGE_SIZE>>2); @@ -1246,9 +1246,7 @@ argp->pagelen -= pages * PAGE_SIZE; len -= pages * PAGE_SIZE; - argp->p = (__be32 *)page_address(argp->pagelist[0]); - argp->pagelist++; - argp->end = argp->p + XDR_QUADLEN(PAGE_SIZE); + next_decode_page(argp); } argp->p += XDR_QUADLEN(len); diff -u linux-4.4.0/fs/open.c linux-4.4.0/fs/open.c --- linux-4.4.0/fs/open.c +++ linux-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-4.4.0/fs/pnode.c linux-4.4.0/fs/pnode.c --- linux-4.4.0/fs/pnode.c +++ linux-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-4.4.0/fs/pstore/ram.c linux-4.4.0/fs/pstore/ram.c --- linux-4.4.0/fs/pstore/ram.c +++ linux-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-4.4.0/fs/pstore/ram_core.c linux-4.4.0/fs/pstore/ram_core.c --- linux-4.4.0/fs/pstore/ram_core.c +++ linux-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-4.4.0/fs/read_write.c linux-4.4.0/fs/read_write.c --- linux-4.4.0/fs/read_write.c +++ linux-4.4.0/fs/read_write.c @@ -112,7 +112,7 @@ * In the generic case the entire file is data, so as long as * offset isn't at the end of the file then the offset is data. */ - if (offset >= eof) + if ((unsigned long long)offset >= eof) return -ENXIO; break; case SEEK_HOLE: @@ -120,7 +120,7 @@ * There is a virtual hole at the end of the file, so as long as * offset isn't i_size or larger, return i_size. */ - if (offset >= eof) + if ((unsigned long long)offset >= eof) return -ENXIO; offset = eof; break; diff -u linux-4.4.0/fs/udf/inode.c linux-4.4.0/fs/udf/inode.c --- linux-4.4.0/fs/udf/inode.c +++ linux-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-4.4.0/fs/xfs/xfs_aops.c linux-4.4.0/fs/xfs/xfs_aops.c --- linux-4.4.0/fs/xfs/xfs_aops.c +++ linux-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-4.4.0/include/linux/key.h linux-4.4.0/include/linux/key.h --- linux-4.4.0/include/linux/key.h +++ linux-4.4.0/include/linux/key.h @@ -177,6 +177,7 @@ #define KEY_FLAG_TRUSTED_ONLY 9 /* set if keyring only accepts links to trusted keys */ #define KEY_FLAG_BUILTIN 10 /* set if key is builtin */ #define KEY_FLAG_ROOT_CAN_INVAL 11 /* set if key can be invalidated by root without permission */ +#define KEY_FLAG_UID_KEYRING 12 /* set if key is a user or user session keyring */ /* the key type and key description string * - the desc is used to match a key against search criteria @@ -219,6 +220,7 @@ #define KEY_ALLOC_NOT_IN_QUOTA 0x0002 /* not in quota */ #define KEY_ALLOC_TRUSTED 0x0004 /* Key should be flagged as trusted */ #define KEY_ALLOC_BUILT_IN 0x0008 /* Key is built into kernel */ +#define KEY_ALLOC_UID_KEYRING 0x0010 /* allocating a user or user session keyring */ extern void key_revoke(struct key *key); extern void key_invalidate(struct key *key); diff -u linux-4.4.0/include/linux/lightnvm.h linux-4.4.0/include/linux/lightnvm.h --- linux-4.4.0/include/linux/lightnvm.h +++ linux-4.4.0/include/linux/lightnvm.h @@ -373,6 +373,7 @@ { struct ppa_addr l; + l.ppa = 0; /* * (r.ppa << X offset) & X len bitmask. X eq. blk, pg, etc. */ diff -u linux-4.4.0/include/linux/mm_types.h linux-4.4.0/include/linux/mm_types.h --- linux-4.4.0/include/linux/mm_types.h +++ linux-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-4.4.0/include/linux/netdevice.h linux-4.4.0/include/linux/netdevice.h --- linux-4.4.0/include/linux/netdevice.h +++ linux-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-4.4.0/include/linux/pci_ids.h linux-4.4.0/include/linux/pci_ids.h --- linux-4.4.0/include/linux/pci_ids.h +++ linux-4.4.0/include/linux/pci_ids.h @@ -573,6 +573,7 @@ #define PCI_DEVICE_ID_AMD_CS5536_EHC 0x2095 #define PCI_DEVICE_ID_AMD_CS5536_UDC 0x2096 #define PCI_DEVICE_ID_AMD_CS5536_UOC 0x2097 +#define PCI_DEVICE_ID_AMD_CS5536_DEV_IDE 0x2092 #define PCI_DEVICE_ID_AMD_CS5536_IDE 0x209A #define PCI_DEVICE_ID_AMD_LX_VIDEO 0x2081 #define PCI_DEVICE_ID_AMD_LX_AES 0x2082 diff -u linux-4.4.0/include/linux/sched.h linux-4.4.0/include/linux/sched.h --- linux-4.4.0/include/linux/sched.h +++ linux-4.4.0/include/linux/sched.h @@ -801,6 +801,16 @@ #define SIGNAL_UNKILLABLE 0x00000040 /* for init: ignore fatal signals */ +#define SIGNAL_STOP_MASK (SIGNAL_CLD_MASK | SIGNAL_STOP_STOPPED | \ + SIGNAL_STOP_CONTINUED) + +static inline void signal_set_stop_flags(struct signal_struct *sig, + unsigned int flags) +{ + WARN_ON(sig->flags & (SIGNAL_GROUP_EXIT|SIGNAL_GROUP_COREDUMP)); + sig->flags = (sig->flags & ~SIGNAL_STOP_MASK) | flags; +} + /* If true, all threads except ->group_exit_task have pending SIGKILL */ static inline int signal_group_exit(const struct signal_struct *sig) { @@ -1939,31 +1949,8 @@ return tsk->tgid; } -pid_t task_tgid_nr_ns(struct task_struct *tsk, struct pid_namespace *ns); - -static inline pid_t task_tgid_vnr(struct task_struct *tsk) -{ - return pid_vnr(task_tgid(tsk)); -} - static inline int pid_alive(const struct task_struct *p); -static inline pid_t task_ppid_nr_ns(const struct task_struct *tsk, struct pid_namespace *ns) -{ - pid_t pid = 0; - - rcu_read_lock(); - if (pid_alive(tsk)) - pid = task_tgid_nr_ns(rcu_dereference(tsk->real_parent), ns); - rcu_read_unlock(); - - return pid; -} - -static inline pid_t task_ppid_nr(const struct task_struct *tsk) -{ - return task_ppid_nr_ns(tsk, &init_pid_ns); -} static inline pid_t task_pgrp_nr_ns(struct task_struct *tsk, struct pid_namespace *ns) @@ -1988,6 +1975,33 @@ return __task_pid_nr_ns(tsk, PIDTYPE_SID, NULL); } +static inline pid_t task_tgid_nr_ns(struct task_struct *tsk, struct pid_namespace *ns) +{ + return __task_pid_nr_ns(tsk, __PIDTYPE_TGID, ns); +} + +static inline pid_t task_tgid_vnr(struct task_struct *tsk) +{ + return __task_pid_nr_ns(tsk, __PIDTYPE_TGID, NULL); +} + +static inline pid_t task_ppid_nr_ns(const struct task_struct *tsk, struct pid_namespace *ns) +{ + pid_t pid = 0; + + rcu_read_lock(); + if (pid_alive(tsk)) + pid = task_tgid_nr_ns(rcu_dereference(tsk->real_parent), ns); + rcu_read_unlock(); + + return pid; +} + +static inline pid_t task_ppid_nr(const struct task_struct *tsk) +{ + return task_ppid_nr_ns(tsk, &init_pid_ns); +} + /* obsolete, do not use */ static inline pid_t task_pgrp_nr(struct task_struct *tsk) { diff -u linux-4.4.0/include/linux/skbuff.h linux-4.4.0/include/linux/skbuff.h --- linux-4.4.0/include/linux/skbuff.h +++ linux-4.4.0/include/linux/skbuff.h @@ -522,6 +522,7 @@ * @wifi_acked_valid: wifi_acked was set * @wifi_acked: whether frame was acked on wifi or not * @no_fcs: Request NIC to treat last 4 bytes as Ethernet FCS + * @dst_pending_confirm: need to confirm neighbour * @napi_id: id of the NAPI struct this skb came from * @secmark: security marking * @offload_fwd_mark: fwding offload mark @@ -636,6 +637,7 @@ __u8 csum_level:2; __u8 csum_bad:1; + __u8 dst_pending_confirm:1; #ifdef CONFIG_IPV6_NDISC_NODETYPE __u8 ndisc_nodetype:2; #endif @@ -3495,6 +3497,16 @@ return skb->queue_mapping != 0; } +static inline void skb_set_dst_pending_confirm(struct sk_buff *skb, u32 val) +{ + skb->dst_pending_confirm = val; +} + +static inline bool skb_get_dst_pending_confirm(const struct sk_buff *skb) +{ + return skb->dst_pending_confirm != 0; +} + static inline struct sec_path *skb_sec_path(struct sk_buff *skb) { #ifdef CONFIG_XFRM diff -u linux-4.4.0/include/linux/tty.h linux-4.4.0/include/linux/tty.h --- linux-4.4.0/include/linux/tty.h +++ linux-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-4.4.0/include/linux/usb/hcd.h linux-4.4.0/include/linux/usb/hcd.h --- linux-4.4.0/include/linux/usb/hcd.h +++ linux-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-4.4.0/include/net/dst.h linux-4.4.0/include/net/dst.h --- linux-4.4.0/include/net/dst.h +++ linux-4.4.0/include/net/dst.h @@ -59,8 +59,6 @@ #define DST_XFRM_QUEUE 0x0100 #define DST_METADATA 0x0200 - unsigned short pending_confirm; - short error; /* A non-zero value of dst->obsolete forces by-hand validation @@ -78,6 +76,8 @@ #define DST_OBSOLETE_KILL -2 unsigned short header_len; /* more space at head required */ unsigned short trailer_len; /* space to reserve at tail */ + unsigned short __pad3; + #ifdef CONFIG_IP_ROUTE_CLASSID __u32 tclassid; #else @@ -437,7 +437,6 @@ static inline void dst_confirm(struct dst_entry *dst) { - dst->pending_confirm = 1; } static inline int dst_neigh_output(struct dst_entry *dst, struct neighbour *n, @@ -445,15 +444,6 @@ { const struct hh_cache *hh; - if (dst->pending_confirm) { - unsigned long now = jiffies; - - dst->pending_confirm = 0; - /* avoid dirtying neighbour */ - if (n->confirmed != now) - n->confirmed = now; - } - hh = &n->hh; if ((n->nud_state & NUD_CONNECTED) && hh->hh_len) return neigh_hh_output(hh, skb); @@ -474,6 +464,13 @@ return IS_ERR(n) ? NULL : n; } +static inline void dst_confirm_neigh(const struct dst_entry *dst, + const void *daddr) +{ + if (dst->ops->confirm_neigh) + dst->ops->confirm_neigh(dst, daddr); +} + static inline void dst_link_failure(struct sk_buff *skb) { struct dst_entry *dst = skb_dst(skb); diff -u linux-4.4.0/include/net/ip.h linux-4.4.0/include/net/ip.h --- linux-4.4.0/include/net/ip.h +++ linux-4.4.0/include/net/ip.h @@ -314,7 +314,7 @@ !forwarding) return dst_mtu(dst); - return min(dst->dev->mtu, IP_MAX_MTU); + return min(READ_ONCE(dst->dev->mtu), IP_MAX_MTU); } static inline unsigned int ip_skb_dst_mtu(const struct sk_buff *skb) @@ -327,7 +327,7 @@ return ip_dst_mtu_maybe_forward(skb_dst(skb), forwarding); } - return min(skb_dst(skb)->dev->mtu, IP_MAX_MTU); + return min(READ_ONCE(skb_dst(skb)->dev->mtu), IP_MAX_MTU); } u32 ip_idents_reserve(u32 hash, int segs); diff -u linux-4.4.0/include/net/ip6_route.h linux-4.4.0/include/net/ip6_route.h --- linux-4.4.0/include/net/ip6_route.h +++ linux-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-4.4.0/include/net/iw_handler.h linux-4.4.0/include/net/iw_handler.h --- linux-4.4.0/include/net/iw_handler.h +++ linux-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-4.4.0/include/net/sch_generic.h linux-4.4.0/include/net/sch_generic.h --- linux-4.4.0/include/net/sch_generic.h +++ linux-4.4.0/include/net/sch_generic.h @@ -717,8 +717,11 @@ old = *pold; *pold = new; if (old != NULL) { - qdisc_tree_reduce_backlog(old, old->q.qlen, old->qstats.backlog); + unsigned int qlen = old->q.qlen; + unsigned int backlog = old->qstats.backlog; + qdisc_reset(old); + qdisc_tree_reduce_backlog(old, qlen, backlog); } sch_tree_unlock(sch); diff -u linux-4.4.0/include/net/sock.h linux-4.4.0/include/net/sock.h --- linux-4.4.0/include/net/sock.h +++ linux-4.4.0/include/net/sock.h @@ -254,6 +254,7 @@ * @sk_wq: sock wait queue and async head * @sk_rx_dst: receive input route used by early demux * @sk_dst_cache: destination cache + * @sk_dst_pending_confirm: need to confirm neighbour * @sk_policy: flow policy * @sk_receive_queue: incoming packets * @sk_wmem_alloc: transmit queue bytes committed @@ -397,6 +398,7 @@ atomic_t sk_omem_alloc; int sk_sndbuf; struct sk_buff_head sk_write_queue; + __u32 sk_dst_pending_confirm; kmemcheck_bitfield_begin(flags); unsigned int sk_shutdown : 2, sk_no_check_tx : 1, @@ -1748,6 +1750,7 @@ if (ndst != dst) { rcu_assign_pointer(sk->sk_dst_cache, ndst); sk_tx_queue_clear(sk); + sk->sk_dst_pending_confirm = 0; } } } @@ -1758,6 +1761,7 @@ struct dst_entry *old_dst; sk_tx_queue_clear(sk); + sk->sk_dst_pending_confirm = 0; /* * This can be called while sk is owned by the caller only, * with no state that can be checked in a rcu_dereference_check() cond @@ -1773,6 +1777,7 @@ struct dst_entry *old_dst; sk_tx_queue_clear(sk); + sk->sk_dst_pending_confirm = 0; old_dst = xchg((__force struct dst_entry **)&sk->sk_dst_cache, dst); dst_release(old_dst); } @@ -1793,6 +1798,26 @@ struct dst_entry *sk_dst_check(struct sock *sk, u32 cookie); +static inline void sk_dst_confirm(struct sock *sk) +{ + if (!sk->sk_dst_pending_confirm) + sk->sk_dst_pending_confirm = 1; +} + +static inline void sock_confirm_neigh(struct sk_buff *skb, struct neighbour *n) +{ + if (skb_get_dst_pending_confirm(skb)) { + struct sock *sk = skb->sk; + unsigned long now = jiffies; + + /* avoid dirtying neighbour */ + if (n->confirmed != now) + n->confirmed = now; + if (sk && sk->sk_dst_pending_confirm) + sk->sk_dst_pending_confirm = 0; + } +} + bool sk_mc_loop(struct sock *sk); static inline bool sk_can_gso(const struct sock *sk) diff -u linux-4.4.0/include/target/target_core_base.h linux-4.4.0/include/target/target_core_base.h --- linux-4.4.0/include/target/target_core_base.h +++ linux-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-4.4.0/ipc/mqueue.c linux-4.4.0/ipc/mqueue.c --- linux-4.4.0/ipc/mqueue.c +++ linux-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-4.4.0/kernel/audit_watch.c linux-4.4.0/kernel/audit_watch.c --- linux-4.4.0/kernel/audit_watch.c +++ linux-4.4.0/kernel/audit_watch.c @@ -457,13 +457,15 @@ list_del(&krule->rlist); if (list_empty(&watch->rules)) { + /* + * audit_remove_watch() drops our reference to 'parent' which + * can get freed. Grab our own reference to be safe. + */ + audit_get_parent(parent); audit_remove_watch(watch); - - if (list_empty(&parent->watches)) { - audit_get_parent(parent); + if (list_empty(&parent->watches)) fsnotify_destroy_mark(&parent->mark, audit_watch_group); - audit_put_parent(parent); - } + audit_put_parent(parent); } } diff -u linux-4.4.0/kernel/bpf/verifier.c linux-4.4.0/kernel/bpf/verifier.c --- linux-4.4.0/kernel/bpf/verifier.c +++ linux-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-4.4.0/kernel/cpuset.c linux-4.4.0/kernel/cpuset.c --- linux-4.4.0/kernel/cpuset.c +++ linux-4.4.0/kernel/cpuset.c @@ -60,6 +60,7 @@ #include #include +struct static_key cpusets_pre_enable_key __read_mostly = STATIC_KEY_INIT_FALSE; struct static_key cpusets_enabled_key __read_mostly = STATIC_KEY_INIT_FALSE; /* See "Frequency meter" comments, below. */ @@ -1909,6 +1910,7 @@ { .name = "memory_pressure", .read_u64 = cpuset_read_u64, + .private = FILE_MEMORY_PRESSURE, }, { diff -u linux-4.4.0/kernel/events/core.c linux-4.4.0/kernel/events/core.c --- linux-4.4.0/kernel/events/core.c +++ linux-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 */ @@ -8494,28 +8473,27 @@ goto err_context; /* - * Do not allow to attach to a group in a different - * task or CPU context: + * Make sure we're both events for the same CPU; + * grouping events for different CPUs is broken; since + * you can never concurrently schedule them anyhow. */ - if (move_group) { - /* - * Make sure we're both on the same task, or both - * per-cpu events. - */ - if (group_leader->ctx->task != ctx->task) - goto err_context; - - /* - * Make sure we're both events for the same CPU; - * grouping events for different CPUs is broken; since - * you can never concurrently schedule them anyhow. - */ - if (group_leader->cpu != event->cpu) - goto err_context; - } else { - if (group_leader->ctx != ctx) - goto err_context; - } + if (group_leader->cpu != event->cpu) + goto err_context; + + /* + * Make sure we're both on the same task, or both + * per-CPU events. + */ + if (group_leader->ctx->task != ctx->task) + goto err_context; + + /* + * Do not allow to attach to a group in a different task + * or CPU context. If we're moving SW events, we'll fix + * this up later, so allow that. + */ + if (!move_group && group_leader->ctx != ctx) + goto err_context; /* * Only a group leader can be exclusive or pinned diff -u linux-4.4.0/kernel/gcov/base.c linux-4.4.0/kernel/gcov/base.c --- linux-4.4.0/kernel/gcov/base.c +++ linux-4.4.0/kernel/gcov/base.c @@ -98,6 +98,12 @@ } EXPORT_SYMBOL(__gcov_merge_icall_topn); +void __gcov_exit(void) +{ + /* Unused. */ +} +EXPORT_SYMBOL(__gcov_exit); + /** * gcov_enable_events - enable event reporting through gcov_event() * diff -u linux-4.4.0/kernel/sched/core.c linux-4.4.0/kernel/sched/core.c --- linux-4.4.0/kernel/sched/core.c +++ linux-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-4.4.0/kernel/sched/sched.h linux-4.4.0/kernel/sched/sched.h --- linux-4.4.0/kernel/sched/sched.h +++ linux-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-4.4.0/kernel/seccomp.c linux-4.4.0/kernel/seccomp.c --- linux-4.4.0/kernel/seccomp.c +++ linux-4.4.0/kernel/seccomp.c @@ -16,10 +16,12 @@ #include #include #include +#include #include #include #include #include +#include #ifdef CONFIG_HAVE_ARCH_SECCOMP_FILTER #include @@ -40,6 +42,7 @@ * get/put helpers should be used when accessing an instance * outside of a lifetime-guarded section. In general, this * is only needed for handling filters shared across tasks. + * @log: true if all actions except for SECCOMP_RET_ALLOW should be logged * @prev: points to a previously installed, or inherited, filter * @len: the number of instructions in the program * @insnsi: the BPF program instructions to evaluate @@ -56,6 +59,7 @@ */ struct seccomp_filter { atomic_t usage; + bool log; struct seccomp_filter *prev; struct bpf_prog *prog; }; @@ -170,10 +174,14 @@ /** * seccomp_run_filters - evaluates all seccomp filters against @syscall * @syscall: number of the current system call + * @match: stores struct seccomp_filter that resulted in the return value, + * unless filter returned SECCOMP_RET_ALLOW, in which case it will + * be unchanged. * * Returns valid seccomp BPF response codes. */ -static u32 seccomp_run_filters(struct seccomp_data *sd) +static u32 seccomp_run_filters(struct seccomp_data *sd, + struct seccomp_filter **match) { struct seccomp_data sd_local; u32 ret = SECCOMP_RET_ALLOW; @@ -197,8 +205,10 @@ for (; f; f = f->prev) { u32 cur_ret = BPF_PROG_RUN(f->prog, (void *)sd); - if ((cur_ret & SECCOMP_RET_ACTION) < (ret & SECCOMP_RET_ACTION)) + if ((cur_ret & SECCOMP_RET_ACTION) < (ret & SECCOMP_RET_ACTION)) { ret = cur_ret; + *match = f; + } } return ret; } @@ -443,6 +453,10 @@ return ret; } + /* Set log flag, if present. */ + if (flags & SECCOMP_FILTER_FLAG_LOG) + filter->log = true; + /* * If there is an existing filter, make it the prev and don't drop its * task reference. @@ -457,14 +471,19 @@ return 0; } +void __get_seccomp_filter(struct seccomp_filter *filter) +{ + /* Reference count is bounded by the number of total processes. */ + atomic_inc(&filter->usage); +} + /* get_seccomp_filter - increments the reference count of the filter on @tsk */ void get_seccomp_filter(struct task_struct *tsk) { struct seccomp_filter *orig = tsk->seccomp.filter; if (!orig) return; - /* Reference count is bounded by the number of total processes. */ - atomic_inc(&orig->usage); + __get_seccomp_filter(orig); } static inline void seccomp_filter_free(struct seccomp_filter *filter) @@ -475,10 +494,8 @@ } } -/* put_seccomp_filter - decrements the ref count of tsk->seccomp.filter */ -void put_seccomp_filter(struct task_struct *tsk) +static void __put_seccomp_filter(struct seccomp_filter *orig) { - struct seccomp_filter *orig = tsk->seccomp.filter; /* Clean up single-reference branches iteratively. */ while (orig && atomic_dec_and_test(&orig->usage)) { struct seccomp_filter *freeme = orig; @@ -487,6 +504,12 @@ } } +/* put_seccomp_filter - decrements the ref count of tsk->seccomp.filter */ +void put_seccomp_filter(struct task_struct *tsk) +{ + __put_seccomp_filter(tsk->seccomp.filter); +} + /** * seccomp_send_sigsys - signals the task to allow in-process syscall emulation * @syscall: syscall number to send to userland @@ -508,6 +531,58 @@ } #endif /* CONFIG_SECCOMP_FILTER */ +/* For use with seccomp_actions_logged */ +#define SECCOMP_LOG_KILL (1 << 0) +#define SECCOMP_LOG_TRAP (1 << 2) +#define SECCOMP_LOG_ERRNO (1 << 3) +#define SECCOMP_LOG_TRACE (1 << 4) +#define SECCOMP_LOG_LOG (1 << 5) +#define SECCOMP_LOG_ALLOW (1 << 6) + +static u32 seccomp_actions_logged = SECCOMP_LOG_KILL | SECCOMP_LOG_TRAP | + SECCOMP_LOG_ERRNO | SECCOMP_LOG_TRACE | + SECCOMP_LOG_LOG; + +static inline void seccomp_log(unsigned long syscall, long signr, u32 action, + bool requested) +{ + bool log = false; + + switch (action) { + case SECCOMP_RET_ALLOW: + break; + case SECCOMP_RET_TRAP: + log = requested && seccomp_actions_logged & SECCOMP_LOG_TRAP; + break; + case SECCOMP_RET_ERRNO: + log = requested && seccomp_actions_logged & SECCOMP_LOG_ERRNO; + break; + case SECCOMP_RET_TRACE: + log = requested && seccomp_actions_logged & SECCOMP_LOG_TRACE; + break; + case SECCOMP_RET_LOG: + log = seccomp_actions_logged & SECCOMP_LOG_LOG; + break; + case SECCOMP_RET_KILL: + default: + log = seccomp_actions_logged & SECCOMP_LOG_KILL; + } + + /* + * Force an audit message to be emitted when the action is RET_KILL, + * RET_LOG, or the FILTER_FLAG_LOG bit was set and the action is + * allowed to be logged by the admin. + */ + if (log) + return __audit_seccomp(syscall, signr, action); + + /* + * Let the audit subsystem decide if the action should be audited based + * on whether the current task itself is being audited. + */ + return audit_seccomp(syscall, signr, action); +} + /* * Secure computing mode 1 allows only read/write/exit/sigreturn. * To be fully secure this must be combined with rlimit @@ -540,7 +615,7 @@ #ifdef SECCOMP_DEBUG dump_stack(); #endif - audit_seccomp(this_syscall, SIGKILL, SECCOMP_RET_KILL); + seccomp_log(this_syscall, SIGKILL, SECCOMP_RET_KILL, true); do_exit(SIGKILL); } @@ -577,6 +652,7 @@ static u32 __seccomp_phase1_filter(int this_syscall, struct seccomp_data *sd) { u32 filter_ret, action; + struct seccomp_filter *match = NULL; int data; /* @@ -585,7 +661,7 @@ */ rmb(); - filter_ret = seccomp_run_filters(sd); + filter_ret = seccomp_run_filters(sd, &match); data = filter_ret & SECCOMP_RET_DATA; action = filter_ret & SECCOMP_RET_ACTION; @@ -608,19 +684,28 @@ case SECCOMP_RET_TRACE: return filter_ret; /* Save the rest for phase 2. */ + case SECCOMP_RET_LOG: + seccomp_log(this_syscall, 0, action, true); + return SECCOMP_PHASE1_OK; + case SECCOMP_RET_ALLOW: + /* + * Note that the "match" filter will always be NULL for + * this action since SECCOMP_RET_ALLOW is the starting + * state in seccomp_run_filters(). + */ return SECCOMP_PHASE1_OK; case SECCOMP_RET_KILL: default: - audit_seccomp(this_syscall, SIGSYS, action); + seccomp_log(this_syscall, SIGSYS, action, true); do_exit(SIGSYS); } unreachable(); skip: - audit_seccomp(this_syscall, 0, action); + seccomp_log(this_syscall, 0, action, match ? match->log : false); return SECCOMP_PHASE1_SKIP; } #endif @@ -687,7 +772,13 @@ BUG_ON(action != SECCOMP_RET_TRACE); - audit_seccomp(syscall_get_nr(current, regs), 0, action); + /* We don't have access to the filter that was matched in the phase1 + * stage in order to know if logging was requested when the filter was + * loaded. Logging for SECCOMP_RET_TRACE isn't particularly useful so + * hard-coding the _requested_ parameter of seccomp_log() to 'false' + * will suffice for this backport. + */ + seccomp_log(syscall_get_nr(current, regs), 0, action, false); /* Skip these calls if there is no tracer. */ if (!ptrace_event_enabled(current, PTRACE_EVENT_SECCOMP)) { @@ -813,6 +904,28 @@ } #endif +static long seccomp_get_action_avail(const char __user *uaction) +{ + u32 action; + + if (copy_from_user(&action, uaction, sizeof(action))) + return -EFAULT; + + switch (action) { + case SECCOMP_RET_KILL: + case SECCOMP_RET_TRAP: + case SECCOMP_RET_ERRNO: + case SECCOMP_RET_TRACE: + case SECCOMP_RET_LOG: + case SECCOMP_RET_ALLOW: + break; + default: + return -EOPNOTSUPP; + } + + return 0; +} + /* Common entry point for both prctl and syscall. */ static long do_seccomp(unsigned int op, unsigned int flags, const char __user *uargs) @@ -824,6 +937,11 @@ return seccomp_set_mode_strict(); case SECCOMP_SET_MODE_FILTER: return seccomp_set_mode_filter(flags, uargs); + case SECCOMP_GET_ACTION_AVAIL: + if (flags != 0) + return -EINVAL; + + return seccomp_get_action_avail(uargs); default: return -EINVAL; } @@ -927,13 +1045,13 @@ if (!data) goto out; - get_seccomp_filter(task); + __get_seccomp_filter(filter); spin_unlock_irq(&task->sighand->siglock); if (copy_to_user(data, fprog->filter, bpf_classic_proglen(fprog))) ret = -EFAULT; - put_seccomp_filter(task); + __put_seccomp_filter(filter); return ret; out: @@ -943,0 +1062,178 @@ + +#ifdef CONFIG_SYSCTL + +/* Human readable action names for friendly sysctl interaction */ +#define SECCOMP_RET_KILL_NAME "kill" +#define SECCOMP_RET_TRAP_NAME "trap" +#define SECCOMP_RET_ERRNO_NAME "errno" +#define SECCOMP_RET_TRACE_NAME "trace" +#define SECCOMP_RET_LOG_NAME "log" +#define SECCOMP_RET_ALLOW_NAME "allow" + +static const char seccomp_actions_avail[] = SECCOMP_RET_KILL_NAME " " + SECCOMP_RET_TRAP_NAME " " + SECCOMP_RET_ERRNO_NAME " " + SECCOMP_RET_TRACE_NAME " " + SECCOMP_RET_LOG_NAME " " + SECCOMP_RET_ALLOW_NAME; + +struct seccomp_log_name { + u32 log; + const char *name; +}; + +static const struct seccomp_log_name seccomp_log_names[] = { + { SECCOMP_LOG_KILL, SECCOMP_RET_KILL_NAME }, + { SECCOMP_LOG_TRAP, SECCOMP_RET_TRAP_NAME }, + { SECCOMP_LOG_ERRNO, SECCOMP_RET_ERRNO_NAME }, + { SECCOMP_LOG_TRACE, SECCOMP_RET_TRACE_NAME }, + { SECCOMP_LOG_LOG, SECCOMP_RET_LOG_NAME }, + { SECCOMP_LOG_ALLOW, SECCOMP_RET_ALLOW_NAME }, + { } +}; + +static bool seccomp_names_from_actions_logged(char *names, size_t size, + u32 actions_logged) +{ + const struct seccomp_log_name *cur; + bool append_space = false; + + for (cur = seccomp_log_names; cur->name && size; cur++) { + ssize_t ret; + + if (!(actions_logged & cur->log)) + continue; + + if (append_space) { + ret = strscpy(names, " ", size); + if (ret < 0) + return false; + + names += ret; + size -= ret; + } else + append_space = true; + + ret = strscpy(names, cur->name, size); + if (ret < 0) + return false; + + names += ret; + size -= ret; + } + + return true; +} + +static bool seccomp_action_logged_from_name(u32 *action_logged, + const char *name) +{ + const struct seccomp_log_name *cur; + + for (cur = seccomp_log_names; cur->name; cur++) { + if (!strcmp(cur->name, name)) { + *action_logged = cur->log; + return true; + } + } + + return false; +} + +static bool seccomp_actions_logged_from_names(u32 *actions_logged, char *names) +{ + char *name; + + *actions_logged = 0; + while ((name = strsep(&names, " ")) && *name) { + u32 action_logged = 0; + + if (!seccomp_action_logged_from_name(&action_logged, name)) + return false; + + *actions_logged |= action_logged; + } + + return true; +} + +static int seccomp_actions_logged_handler(struct ctl_table *ro_table, int write, + void __user *buffer, size_t *lenp, + loff_t *ppos) +{ + char names[sizeof(seccomp_actions_avail)]; + struct ctl_table table; + int ret; + + if (write && !capable(CAP_SYS_ADMIN)) + return -EPERM; + + memset(names, 0, sizeof(names)); + + if (!write) { + if (!seccomp_names_from_actions_logged(names, sizeof(names), + seccomp_actions_logged)) + return -EINVAL; + } + + table = *ro_table; + table.data = names; + table.maxlen = sizeof(names); + ret = proc_dostring(&table, write, buffer, lenp, ppos); + if (ret) + return ret; + + if (write) { + u32 actions_logged; + + if (!seccomp_actions_logged_from_names(&actions_logged, + table.data)) + return -EINVAL; + + if (actions_logged & SECCOMP_LOG_ALLOW) + return -EINVAL; + + seccomp_actions_logged = actions_logged; + } + + return 0; +} + +static struct ctl_path seccomp_sysctl_path[] = { + { .procname = "kernel", }, + { .procname = "seccomp", }, + { } +}; + +static struct ctl_table seccomp_sysctl_table[] = { + { + .procname = "actions_avail", + .data = (void *) &seccomp_actions_avail, + .maxlen = sizeof(seccomp_actions_avail), + .mode = 0444, + .proc_handler = proc_dostring, + }, + { + .procname = "actions_logged", + .mode = 0644, + .proc_handler = seccomp_actions_logged_handler, + }, + { } +}; + +static int __init seccomp_sysctl_init(void) +{ + struct ctl_table_header *hdr; + + hdr = register_sysctl_paths(seccomp_sysctl_path, seccomp_sysctl_table); + if (!hdr) + pr_warn("seccomp: sysctl registration failed\n"); + else + kmemleak_not_leak(hdr); + + return 0; +} + +device_initcall(seccomp_sysctl_init) + +#endif /* CONFIG_SYSCTL */ diff -u linux-4.4.0/kernel/signal.c linux-4.4.0/kernel/signal.c --- linux-4.4.0/kernel/signal.c +++ linux-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-4.4.0/kernel/sysctl.c linux-4.4.0/kernel/sysctl.c --- linux-4.4.0/kernel/sysctl.c +++ linux-4.4.0/kernel/sysctl.c @@ -1202,6 +1202,8 @@ .maxlen = sizeof(unsigned int), .mode = 0644, .proc_handler = timer_migration_handler, + .extra1 = &zero, + .extra2 = &one, }, #endif #ifdef CONFIG_BPF_SYSCALL @@ -2110,9 +2112,12 @@ if (write) { if (*negp) return -EINVAL; + if (*lvalp > UINT_MAX) + return -EINVAL; *valp = *lvalp; } else { unsigned int val = *valp; + *negp = false; *lvalp = (unsigned long)val; } return 0; diff -u linux-4.4.0/kernel/time/alarmtimer.c linux-4.4.0/kernel/time/alarmtimer.c --- linux-4.4.0/kernel/time/alarmtimer.c +++ linux-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-4.4.0/kernel/trace/ftrace.c linux-4.4.0/kernel/trace/ftrace.c --- linux-4.4.0/kernel/trace/ftrace.c +++ linux-4.4.0/kernel/trace/ftrace.c @@ -2667,13 +2667,14 @@ if (!command || !ftrace_enabled) { /* - * If these are control ops, they still need their - * per_cpu field freed. Since, function tracing is + * If these are dynamic or control ops, they still + * need their data freed. Since, function tracing is * not currently active, we can just free them * without synchronizing all CPUs. */ - if (ops->flags & FTRACE_OPS_FL_CONTROL) - control_ops_free(ops); + if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_CONTROL)) + goto free_ops; + return 0; } @@ -2728,6 +2729,7 @@ if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_CONTROL)) { schedule_on_each_cpu(ftrace_sync); + free_ops: arch_ftrace_trampoline_free(ops); if (ops->flags & FTRACE_OPS_FL_CONTROL) @@ -3535,7 +3537,7 @@ int exclude_mod = 0; int found = 0; int ret; - int clear_filter; + int clear_filter = 0; if (func) { func_g.type = filter_parse_regex(func, len, &func_g.search, diff -u linux-4.4.0/kernel/trace/trace.c linux-4.4.0/kernel/trace/trace.c --- linux-4.4.0/kernel/trace/trace.c +++ linux-4.4.0/kernel/trace/trace.c @@ -1660,7 +1660,7 @@ TRACE_FLAG_IRQS_NOSUPPORT | #endif ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) | - ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) | + ((pc & SOFTIRQ_OFFSET) ? TRACE_FLAG_SOFTIRQ : 0) | (tif_need_resched() ? TRACE_FLAG_NEED_RESCHED : 0) | (test_preempt_need_resched() ? TRACE_FLAG_PREEMPT_RESCHED : 0); } @@ -3226,11 +3226,17 @@ /* If this file was open for write, then erase contents */ if ((file->f_mode & FMODE_WRITE) && (file->f_flags & O_TRUNC)) { int cpu = tracing_get_cpu(inode); + struct trace_buffer *trace_buf = &tr->trace_buffer; + +#ifdef CONFIG_TRACER_MAX_TRACE + if (tr->current_trace->print_max) + trace_buf = &tr->max_buffer; +#endif if (cpu == RING_BUFFER_ALL_CPUS) - tracing_reset_online_cpus(&tr->trace_buffer); + tracing_reset_online_cpus(trace_buf); else - tracing_reset(&tr->trace_buffer, cpu); + tracing_reset(trace_buf, cpu); } if (file->f_mode & FMODE_READ) { @@ -4701,7 +4707,7 @@ * * iter->pos will be 0 if we haven't read anything. */ - if (!tracing_is_on() && iter->pos) + if (!tracer_tracing_is_on(iter->tr) && iter->pos) break; mutex_unlock(&iter->mutex); @@ -5237,7 +5243,7 @@ tracing_reset_online_cpus(&tr->trace_buffer); #ifdef CONFIG_TRACER_MAX_TRACE - if (tr->flags & TRACE_ARRAY_FL_GLOBAL && tr->max_buffer.buffer) + if (tr->max_buffer.buffer) ring_buffer_set_clock(tr->max_buffer.buffer, trace_clocks[i].func); tracing_reset_online_cpus(&tr->max_buffer); #endif @@ -6737,6 +6743,7 @@ } kfree(tr->topts); + free_cpumask_var(tr->tracing_cpumask); kfree(tr->name); kfree(tr); diff -u linux-4.4.0/kernel/trace/trace_events_filter.c linux-4.4.0/kernel/trace/trace_events_filter.c --- linux-4.4.0/kernel/trace/trace_events_filter.c +++ linux-4.4.0/kernel/trace/trace_events_filter.c @@ -1979,6 +1979,10 @@ if (err && set_str) append_filter_err(ps, filter); } + if (err && !set_str) { + free_event_filter(filter); + filter = NULL; + } create_filter_finish(ps); *filterp = filter; diff -u linux-4.4.0/kernel/trace/trace_kprobe.c linux-4.4.0/kernel/trace/trace_kprobe.c --- linux-4.4.0/kernel/trace/trace_kprobe.c +++ linux-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-4.4.0/kernel/workqueue.c linux-4.4.0/kernel/workqueue.c --- linux-4.4.0/kernel/workqueue.c +++ linux-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-4.4.0/mm/internal.h linux-4.4.0/mm/internal.h --- linux-4.4.0/mm/internal.h +++ linux-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-4.4.0/mm/ksm.c linux-4.4.0/mm/ksm.c --- linux-4.4.0/mm/ksm.c +++ linux-4.4.0/mm/ksm.c @@ -126,9 +126,12 @@ * struct stable_node - node of the stable rbtree * @node: rb node of this ksm page in the stable tree * @head: (overlaying parent) &migrate_nodes indicates temporarily on that list + * @hlist_dup: linked into the stable_node->hlist with a stable_node chain * @list: linked into migrate_nodes, pending placement in the proper node tree * @hlist: hlist head of rmap_items using this ksm page * @kpfn: page frame number of this ksm page (perhaps temporarily on wrong nid) + * @chain_prune_time: time of the last full garbage collection + * @rmap_hlist_len: number of rmap_item entries in hlist or STABLE_NODE_CHAIN * @nid: NUMA node id of stable tree in which linked (may not match kpfn) */ struct stable_node { @@ -136,11 +139,24 @@ struct rb_node node; /* when node of stable tree */ struct { /* when listed for migration */ struct list_head *head; - struct list_head list; + struct { + struct hlist_node hlist_dup; + struct list_head list; + }; }; }; struct hlist_head hlist; - unsigned long kpfn; + union { + unsigned long kpfn; + unsigned long chain_prune_time; + }; + /* + * STABLE_NODE_CHAIN can be any negative number in + * rmap_hlist_len negative range, but better not -1 to be able + * to reliably detect underflows. + */ +#define STABLE_NODE_CHAIN -1024 + int rmap_hlist_len; #ifdef CONFIG_NUMA int nid; #endif @@ -190,6 +206,7 @@ /* Recently migrated nodes of stable tree, pending proper placement */ static LIST_HEAD(migrate_nodes); +#define STABLE_NODE_DUP_HEAD ((struct list_head *)&migrate_nodes.prev) #define MM_SLOTS_HASH_BITS 10 static DEFINE_HASHTABLE(mm_slots_hash, MM_SLOTS_HASH_BITS); @@ -217,6 +234,18 @@ /* The number of rmap_items in use: to calculate pages_volatile */ static unsigned long ksm_rmap_items; +/* The number of stable_node chains */ +static unsigned long ksm_stable_node_chains; + +/* The number of stable_node dups linked to the stable_node chains */ +static unsigned long ksm_stable_node_dups; + +/* Delay in pruning stale stable_node_dups in the stable_node_chains */ +static int ksm_stable_node_chains_prune_millisecs = 2000; + +/* Maximum number of page slots sharing a stable node */ +static int ksm_max_page_sharing = 256; + /* Number of pages ksmd should scan in one batch */ static unsigned int ksm_thread_pages_to_scan = 100; @@ -279,6 +308,45 @@ mm_slot_cache = NULL; } +static __always_inline bool is_stable_node_chain(struct stable_node *chain) +{ + return chain->rmap_hlist_len == STABLE_NODE_CHAIN; +} + +static __always_inline bool is_stable_node_dup(struct stable_node *dup) +{ + return dup->head == STABLE_NODE_DUP_HEAD; +} + +static inline void stable_node_chain_add_dup(struct stable_node *dup, + struct stable_node *chain) +{ + VM_BUG_ON(is_stable_node_dup(dup)); + dup->head = STABLE_NODE_DUP_HEAD; + VM_BUG_ON(!is_stable_node_chain(chain)); + hlist_add_head(&dup->hlist_dup, &chain->hlist); + ksm_stable_node_dups++; +} + +static inline void __stable_node_dup_del(struct stable_node *dup) +{ + VM_BUG_ON(!is_stable_node_dup(dup)); + hlist_del(&dup->hlist_dup); + ksm_stable_node_dups--; +} + +static inline void stable_node_dup_del(struct stable_node *dup) +{ + VM_BUG_ON(is_stable_node_chain(dup)); + if (is_stable_node_dup(dup)) + __stable_node_dup_del(dup); + else + rb_erase(&dup->node, root_stable_tree + NUMA(dup->nid)); +#ifdef CONFIG_DEBUG_VM + dup->head = NULL; +#endif +} + static inline struct rmap_item *alloc_rmap_item(void) { struct rmap_item *rmap_item; @@ -304,6 +372,8 @@ static inline void free_stable_node(struct stable_node *stable_node) { + VM_BUG_ON(stable_node->rmap_hlist_len && + !is_stable_node_chain(stable_node)); kmem_cache_free(stable_node_cache, stable_node); } @@ -494,25 +564,82 @@ return ksm_merge_across_nodes ? 0 : NUMA(pfn_to_nid(kpfn)); } +static struct stable_node *alloc_stable_node_chain(struct stable_node *dup, + struct rb_root *root) +{ + struct stable_node *chain = alloc_stable_node(); + VM_BUG_ON(is_stable_node_chain(dup)); + if (likely(chain)) { + INIT_HLIST_HEAD(&chain->hlist); + chain->chain_prune_time = jiffies; + chain->rmap_hlist_len = STABLE_NODE_CHAIN; +#if defined (CONFIG_DEBUG_VM) && defined(CONFIG_NUMA) + chain->nid = -1; /* debug */ +#endif + ksm_stable_node_chains++; + + /* + * Put the stable node chain in the first dimension of + * the stable tree and at the same time remove the old + * stable node. + */ + rb_replace_node(&dup->node, &chain->node, root); + + /* + * Move the old stable node to the second dimension + * queued in the hlist_dup. The invariant is that all + * dup stable_nodes in the chain->hlist point to pages + * that are wrprotected and have the exact same + * content. + */ + stable_node_chain_add_dup(dup, chain); + } + return chain; +} + +static inline void free_stable_node_chain(struct stable_node *chain, + struct rb_root *root) +{ + rb_erase(&chain->node, root); + free_stable_node(chain); + ksm_stable_node_chains--; +} + static void remove_node_from_stable_tree(struct stable_node *stable_node) { struct rmap_item *rmap_item; + /* check it's not STABLE_NODE_CHAIN or negative */ + BUG_ON(stable_node->rmap_hlist_len < 0); + hlist_for_each_entry(rmap_item, &stable_node->hlist, hlist) { if (rmap_item->hlist.next) ksm_pages_sharing--; else ksm_pages_shared--; + VM_BUG_ON(stable_node->rmap_hlist_len <= 0); + stable_node->rmap_hlist_len--; put_anon_vma(rmap_item->anon_vma); rmap_item->address &= PAGE_MASK; cond_resched(); } + /* + * We need the second aligned pointer of the migrate_nodes + * list_head to stay clear from the rb_parent_color union + * (aligned and different than any node) and also different + * from &migrate_nodes. This will verify that future list.h changes + * don't break STABLE_NODE_DUP_HEAD. + */ +#if GCC_VERSION >= 40903 /* only recent gcc can handle it */ + BUILD_BUG_ON(STABLE_NODE_DUP_HEAD <= &migrate_nodes); + BUILD_BUG_ON(STABLE_NODE_DUP_HEAD >= &migrate_nodes + 1); +#endif + if (stable_node->head == &migrate_nodes) list_del(&stable_node->list); else - rb_erase(&stable_node->node, - root_stable_tree + NUMA(stable_node->nid)); + stable_node_dup_del(stable_node); free_stable_node(stable_node); } @@ -631,6 +758,8 @@ ksm_pages_sharing--; else ksm_pages_shared--; + VM_BUG_ON(stable_node->rmap_hlist_len <= 0); + stable_node->rmap_hlist_len--; put_anon_vma(rmap_item->anon_vma); rmap_item->address &= PAGE_MASK; @@ -739,6 +868,31 @@ return err; } +static int remove_stable_node_chain(struct stable_node *stable_node, + struct rb_root *root) +{ + struct stable_node *dup; + struct hlist_node *hlist_safe; + + if (!is_stable_node_chain(stable_node)) { + VM_BUG_ON(is_stable_node_dup(stable_node)); + if (remove_stable_node(stable_node)) + return true; + else + return false; + } + + hlist_for_each_entry_safe(dup, hlist_safe, + &stable_node->hlist, hlist_dup) { + VM_BUG_ON(!is_stable_node_dup(dup)); + if (remove_stable_node(dup)) + return true; + } + BUG_ON(!hlist_empty(&stable_node->hlist)); + free_stable_node_chain(stable_node, root); + return false; +} + static int remove_all_stable_nodes(void) { struct stable_node *stable_node; @@ -750,7 +904,8 @@ while (root_stable_tree[nid].rb_node) { stable_node = rb_entry(root_stable_tree[nid].rb_node, struct stable_node, node); - if (remove_stable_node(stable_node)) { + if (remove_stable_node_chain(stable_node, + root_stable_tree + nid)) { err = -EBUSY; break; /* proceed to next nid */ } @@ -1137,6 +1292,214 @@ return err ? NULL : page; } +static __always_inline +bool __is_page_sharing_candidate(struct stable_node *stable_node, int offset) +{ + VM_BUG_ON(stable_node->rmap_hlist_len < 0); + /* + * Check that at least one mapping still exists, otherwise + * there's no much point to merge and share with this + * stable_node, as the underlying tree_page of the other + * sharer is going to be freed soon. + */ + return stable_node->rmap_hlist_len && + stable_node->rmap_hlist_len + offset < ksm_max_page_sharing; +} + +static __always_inline +bool is_page_sharing_candidate(struct stable_node *stable_node) +{ + return __is_page_sharing_candidate(stable_node, 0); +} + +struct page *stable_node_dup(struct stable_node **_stable_node_dup, + struct stable_node **_stable_node, + struct rb_root *root, + bool prune_stale_stable_nodes) +{ + struct stable_node *dup, *found = NULL, *stable_node = *_stable_node; + struct hlist_node *hlist_safe; + struct page *_tree_page, *tree_page = NULL; + int nr = 0; + int found_rmap_hlist_len; + + if (!prune_stale_stable_nodes || + time_before(jiffies, stable_node->chain_prune_time + + msecs_to_jiffies( + ksm_stable_node_chains_prune_millisecs))) + prune_stale_stable_nodes = false; + else + stable_node->chain_prune_time = jiffies; + + hlist_for_each_entry_safe(dup, hlist_safe, + &stable_node->hlist, hlist_dup) { + cond_resched(); + /* + * We must walk all stable_node_dup to prune the stale + * stable nodes during lookup. + * + * get_ksm_page can drop the nodes from the + * stable_node->hlist if they point to freed pages + * (that's why we do a _safe walk). The "dup" + * stable_node parameter itself will be freed from + * under us if it returns NULL. + */ + _tree_page = get_ksm_page(dup, false); + if (!_tree_page) + continue; + nr += 1; + if (is_page_sharing_candidate(dup)) { + if (!found || + dup->rmap_hlist_len > found_rmap_hlist_len) { + if (found) + put_page(tree_page); + found = dup; + found_rmap_hlist_len = found->rmap_hlist_len; + tree_page = _tree_page; + + /* skip put_page for found dup */ + if (!prune_stale_stable_nodes) + break; + continue; + } + } + put_page(_tree_page); + } + + if (found) { + /* + * nr is counting all dups in the chain only if + * prune_stale_stable_nodes is true, otherwise we may + * break the loop at nr == 1 even if there are + * multiple entries. + */ + if (prune_stale_stable_nodes && nr == 1) { + /* + * If there's not just one entry it would + * corrupt memory, better BUG_ON. In KSM + * context with no lock held it's not even + * fatal. + */ + BUG_ON(stable_node->hlist.first->next); + + /* + * There's just one entry and it is below the + * deduplication limit so drop the chain. + */ + rb_replace_node(&stable_node->node, &found->node, + root); + free_stable_node(stable_node); + ksm_stable_node_chains--; + ksm_stable_node_dups--; + /* + * NOTE: the caller depends on the stable_node + * to be equal to stable_node_dup if the chain + * was collapsed. + */ + *_stable_node = found; + /* + * Just for robustneess as stable_node is + * otherwise left as a stable pointer, the + * compiler shall optimize it away at build + * time. + */ + stable_node = NULL; + } else if (stable_node->hlist.first != &found->hlist_dup && + __is_page_sharing_candidate(found, 1)) { + /* + * If the found stable_node dup can accept one + * more future merge (in addition to the one + * that is underway) and is not at the head of + * the chain, put it there so next search will + * be quicker in the !prune_stale_stable_nodes + * case. + * + * NOTE: it would be inaccurate to use nr > 1 + * instead of checking the hlist.first pointer + * directly, because in the + * prune_stale_stable_nodes case "nr" isn't + * the position of the found dup in the chain, + * but the total number of dups in the chain. + */ + hlist_del(&found->hlist_dup); + hlist_add_head(&found->hlist_dup, + &stable_node->hlist); + } + } + + *_stable_node_dup = found; + return tree_page; +} + +static struct stable_node *stable_node_dup_any(struct stable_node *stable_node, + struct rb_root *root) +{ + if (!is_stable_node_chain(stable_node)) + return stable_node; + if (hlist_empty(&stable_node->hlist)) { + free_stable_node_chain(stable_node, root); + return NULL; + } + return hlist_entry(stable_node->hlist.first, + typeof(*stable_node), hlist_dup); +} + +/* + * Like for get_ksm_page, this function can free the *_stable_node and + * *_stable_node_dup if the returned tree_page is NULL. + * + * It can also free and overwrite *_stable_node with the found + * stable_node_dup if the chain is collapsed (in which case + * *_stable_node will be equal to *_stable_node_dup like if the chain + * never existed). It's up to the caller to verify tree_page is not + * NULL before dereferencing *_stable_node or *_stable_node_dup. + * + * *_stable_node_dup is really a second output parameter of this + * function and will be overwritten in all cases, the caller doesn't + * need to initialize it. + */ +static struct page *__stable_node_chain(struct stable_node **_stable_node_dup, + struct stable_node **_stable_node, + struct rb_root *root, + bool prune_stale_stable_nodes) +{ + struct stable_node *stable_node = *_stable_node; + if (!is_stable_node_chain(stable_node)) { + if (is_page_sharing_candidate(stable_node)) { + *_stable_node_dup = stable_node; + return get_ksm_page(stable_node, false); + } + /* + * _stable_node_dup set to NULL means the stable_node + * reached the ksm_max_page_sharing limit. + */ + *_stable_node_dup = NULL; + return NULL; + } + return stable_node_dup(_stable_node_dup, _stable_node, root, + prune_stale_stable_nodes); +} + +static __always_inline struct page *chain_prune(struct stable_node **s_n_d, + struct stable_node **s_n, + struct rb_root *root) +{ + return __stable_node_chain(s_n_d, s_n, root, true); +} + +static __always_inline struct page *chain(struct stable_node **s_n_d, + struct stable_node *s_n, + struct rb_root *root) +{ + struct stable_node *old_stable_node = s_n; + struct page *tree_page; + + tree_page = __stable_node_chain(s_n_d, &s_n, root, false); + /* not pruning dups so s_n cannot have changed */ + VM_BUG_ON(s_n != old_stable_node); + return tree_page; +} + /* * stable_tree_search - search for page inside the stable tree * @@ -1152,7 +1515,7 @@ struct rb_root *root; struct rb_node **new; struct rb_node *parent; - struct stable_node *stable_node; + struct stable_node *stable_node, *stable_node_dup, *stable_node_any; struct stable_node *page_node; page_node = page_stable_node(page); @@ -1174,7 +1537,44 @@ cond_resched(); stable_node = rb_entry(*new, struct stable_node, node); - tree_page = get_ksm_page(stable_node, false); + stable_node_any = NULL; + tree_page = chain_prune(&stable_node_dup, &stable_node, root); + /* + * NOTE: stable_node may have been freed by + * chain_prune() if the returned stable_node_dup is + * not NULL. stable_node_dup may have been inserted in + * the rbtree instead as a regular stable_node (in + * order to collapse the stable_node chain if a single + * stable_node dup was found in it). In such case the + * stable_node is overwritten by the calleee to point + * to the stable_node_dup that was collapsed in the + * stable rbtree and stable_node will be equal to + * stable_node_dup like if the chain never existed. + */ + if (!stable_node_dup) { + /* + * Either all stable_node dups were full in + * this stable_node chain, or this chain was + * empty and should be rb_erased. + */ + stable_node_any = stable_node_dup_any(stable_node, + root); + if (!stable_node_any) { + /* rb_erase just run */ + goto again; + } + /* + * Take any of the stable_node dups page of + * this stable_node chain to let the tree walk + * continue. All KSM pages belonging to the + * stable_node dups in a stable_node chain + * have the same content and they're + * wrprotected at all times. Any will work + * fine to continue the walk. + */ + tree_page = get_ksm_page(stable_node_any, false); + } + VM_BUG_ON(!stable_node_dup ^ !!stable_node_any); if (!tree_page) { /* * If we walked over a stale stable_node, @@ -1197,6 +1597,34 @@ else if (ret > 0) new = &parent->rb_right; else { + if (page_node) { + VM_BUG_ON(page_node->head != &migrate_nodes); + /* + * Test if the migrated page should be merged + * into a stable node dup. If the mapcount is + * 1 we can migrate it with another KSM page + * without adding it to the chain. + */ + if (page_mapcount(page) > 1) + goto chain_append; + } + + if (!stable_node_dup) { + /* + * If the stable_node is a chain and + * we got a payload match in memcmp + * but we cannot merge the scanned + * page in any of the existing + * stable_node dups because they're + * all full, we need to wait the + * scanned page to find itself a match + * in the unstable tree to create a + * brand new KSM page to add later to + * the dups of this stable_node. + */ + return NULL; + } + /* * Lock and unlock the stable_node's page (which * might already have been migrated) so that page @@ -1204,23 +1632,21 @@ * It would be more elegant to return stable_node * than kpage, but that involves more changes. */ - tree_page = get_ksm_page(stable_node, true); - if (tree_page) { - unlock_page(tree_page); - if (get_kpfn_nid(stable_node->kpfn) != - NUMA(stable_node->nid)) { - put_page(tree_page); - goto replace; - } - return tree_page; - } - /* - * There is now a place for page_node, but the tree may - * have been rebalanced, so re-evaluate parent and new. - */ - if (page_node) + tree_page = get_ksm_page(stable_node_dup, true); + if (unlikely(!tree_page)) + /* + * The tree may have been rebalanced, + * so re-evaluate parent and new. + */ goto again; - return NULL; + unlock_page(tree_page); + + if (get_kpfn_nid(stable_node_dup->kpfn) != + NUMA(stable_node_dup->nid)) { + put_page(tree_page); + goto replace; + } + return tree_page; } } @@ -1231,22 +1657,95 @@ DO_NUMA(page_node->nid = nid); rb_link_node(&page_node->node, parent, new); rb_insert_color(&page_node->node, root); - get_page(page); - return page; +out: + if (is_page_sharing_candidate(page_node)) { + get_page(page); + return page; + } else + return NULL; replace: - if (page_node) { - list_del(&page_node->list); - DO_NUMA(page_node->nid = nid); - rb_replace_node(&stable_node->node, &page_node->node, root); - get_page(page); + /* + * If stable_node was a chain and chain_prune collapsed it, + * stable_node has been updated to be the new regular + * stable_node. A collapse of the chain is indistinguishable + * from the case there was no chain in the stable + * rbtree. Otherwise stable_node is the chain and + * stable_node_dup is the dup to replace. + */ + if (stable_node_dup == stable_node) { + VM_BUG_ON(is_stable_node_chain(stable_node_dup)); + VM_BUG_ON(is_stable_node_dup(stable_node_dup)); + /* there is no chain */ + if (page_node) { + VM_BUG_ON(page_node->head != &migrate_nodes); + list_del(&page_node->list); + DO_NUMA(page_node->nid = nid); + rb_replace_node(&stable_node_dup->node, + &page_node->node, + root); + if (is_page_sharing_candidate(page_node)) + get_page(page); + else + page = NULL; + } else { + rb_erase(&stable_node_dup->node, root); + page = NULL; + } } else { - rb_erase(&stable_node->node, root); - page = NULL; + VM_BUG_ON(!is_stable_node_chain(stable_node)); + __stable_node_dup_del(stable_node_dup); + if (page_node) { + VM_BUG_ON(page_node->head != &migrate_nodes); + list_del(&page_node->list); + DO_NUMA(page_node->nid = nid); + stable_node_chain_add_dup(page_node, stable_node); + if (is_page_sharing_candidate(page_node)) + get_page(page); + else + page = NULL; + } else { + page = NULL; + } } - stable_node->head = &migrate_nodes; - list_add(&stable_node->list, stable_node->head); + stable_node_dup->head = &migrate_nodes; + list_add(&stable_node_dup->list, stable_node_dup->head); return page; + +chain_append: + /* stable_node_dup could be null if it reached the limit */ + if (!stable_node_dup) + stable_node_dup = stable_node_any; + /* + * If stable_node was a chain and chain_prune collapsed it, + * stable_node has been updated to be the new regular + * stable_node. A collapse of the chain is indistinguishable + * from the case there was no chain in the stable + * rbtree. Otherwise stable_node is the chain and + * stable_node_dup is the dup to replace. + */ + if (stable_node_dup == stable_node) { + VM_BUG_ON(is_stable_node_chain(stable_node_dup)); + VM_BUG_ON(is_stable_node_dup(stable_node_dup)); + /* chain is missing so create it */ + stable_node = alloc_stable_node_chain(stable_node_dup, + root); + if (!stable_node) + return NULL; + } + /* + * Add this stable_node dup that was + * migrated to the stable_node chain + * of the current nid for this page + * content. + */ + VM_BUG_ON(!is_stable_node_chain(stable_node)); + VM_BUG_ON(!is_stable_node_dup(stable_node_dup)); + VM_BUG_ON(page_node->head != &migrate_nodes); + list_del(&page_node->list); + DO_NUMA(page_node->nid = nid); + stable_node_chain_add_dup(page_node, stable_node); + goto out; } /* @@ -1263,7 +1762,8 @@ struct rb_root *root; struct rb_node **new; struct rb_node *parent; - struct stable_node *stable_node; + struct stable_node *stable_node, *stable_node_dup, *stable_node_any; + bool need_chain = false; kpfn = page_to_pfn(kpage); nid = get_kpfn_nid(kpfn); @@ -1278,7 +1778,32 @@ cond_resched(); stable_node = rb_entry(*new, struct stable_node, node); - tree_page = get_ksm_page(stable_node, false); + stable_node_any = NULL; + tree_page = chain(&stable_node_dup, stable_node, root); + if (!stable_node_dup) { + /* + * Either all stable_node dups were full in + * this stable_node chain, or this chain was + * empty and should be rb_erased. + */ + stable_node_any = stable_node_dup_any(stable_node, + root); + if (!stable_node_any) { + /* rb_erase just run */ + goto again; + } + /* + * Take any of the stable_node dups page of + * this stable_node chain to let the tree walk + * continue. All KSM pages belonging to the + * stable_node dups in a stable_node chain + * have the same content and they're + * wrprotected at all times. Any will work + * fine to continue the walk. + */ + tree_page = get_ksm_page(stable_node_any, false); + } + VM_BUG_ON(!stable_node_dup ^ !!stable_node_any); if (!tree_page) { /* * If we walked over a stale stable_node, @@ -1301,27 +1826,37 @@ else if (ret > 0) new = &parent->rb_right; else { - /* - * It is not a bug that stable_tree_search() didn't - * find this node: because at that time our page was - * not yet write-protected, so may have changed since. - */ - return NULL; + need_chain = true; + break; } } - stable_node = alloc_stable_node(); - if (!stable_node) + stable_node_dup = alloc_stable_node(); + if (!stable_node_dup) return NULL; - INIT_HLIST_HEAD(&stable_node->hlist); - stable_node->kpfn = kpfn; - set_page_stable_node(kpage, stable_node); - DO_NUMA(stable_node->nid = nid); - rb_link_node(&stable_node->node, parent, new); - rb_insert_color(&stable_node->node, root); + INIT_HLIST_HEAD(&stable_node_dup->hlist); + stable_node_dup->kpfn = kpfn; + set_page_stable_node(kpage, stable_node_dup); + stable_node_dup->rmap_hlist_len = 0; + DO_NUMA(stable_node_dup->nid = nid); + if (!need_chain) { + rb_link_node(&stable_node_dup->node, parent, new); + rb_insert_color(&stable_node_dup->node, root); + } else { + if (!is_stable_node_chain(stable_node)) { + struct stable_node *orig = stable_node; + /* chain is missing so create it */ + stable_node = alloc_stable_node_chain(orig, root); + if (!stable_node) { + free_stable_node(stable_node_dup); + return NULL; + } + } + stable_node_chain_add_dup(stable_node_dup, stable_node); + } - return stable_node; + return stable_node_dup; } /* @@ -1411,8 +1946,27 @@ * the same ksm page. */ static void stable_tree_append(struct rmap_item *rmap_item, - struct stable_node *stable_node) + struct stable_node *stable_node, + bool max_page_sharing_bypass) { + /* + * rmap won't find this mapping if we don't insert the + * rmap_item in the right stable_node + * duplicate. page_migration could break later if rmap breaks, + * so we can as well crash here. We really need to check for + * rmap_hlist_len == STABLE_NODE_CHAIN, but we can as well check + * for other negative values as an undeflow if detected here + * for the first time (and not when decreasing rmap_hlist_len) + * would be sign of memory corruption in the stable_node. + */ + BUG_ON(stable_node->rmap_hlist_len < 0); + + stable_node->rmap_hlist_len++; + if (!max_page_sharing_bypass) + /* possibly non fatal but unexpected overflow, only warn */ + WARN_ON_ONCE(stable_node->rmap_hlist_len > + ksm_max_page_sharing); + rmap_item->head = stable_node; rmap_item->address |= STABLE_FLAG; hlist_add_head(&rmap_item->hlist, &stable_node->hlist); @@ -1440,19 +1994,26 @@ struct page *kpage; unsigned int checksum; int err; + bool max_page_sharing_bypass = false; stable_node = page_stable_node(page); if (stable_node) { if (stable_node->head != &migrate_nodes && - get_kpfn_nid(stable_node->kpfn) != NUMA(stable_node->nid)) { - rb_erase(&stable_node->node, - root_stable_tree + NUMA(stable_node->nid)); + get_kpfn_nid(READ_ONCE(stable_node->kpfn)) != + NUMA(stable_node->nid)) { + stable_node_dup_del(stable_node); stable_node->head = &migrate_nodes; list_add(&stable_node->list, stable_node->head); } if (stable_node->head != &migrate_nodes && rmap_item->head == stable_node) return; + /* + * If it's a KSM fork, allow it to go over the sharing limit + * without warnings. + */ + if (!is_page_sharing_candidate(stable_node)) + max_page_sharing_bypass = true; } /* We first start with searching the page inside the stable tree */ @@ -1472,7 +2033,8 @@ * add its rmap_item to the stable tree. */ lock_page(kpage); - stable_tree_append(rmap_item, page_stable_node(kpage)); + stable_tree_append(rmap_item, page_stable_node(kpage), + max_page_sharing_bypass); unlock_page(kpage); } put_page(kpage); @@ -1505,8 +2067,10 @@ lock_page(kpage); stable_node = stable_tree_insert(kpage); if (stable_node) { - stable_tree_append(tree_rmap_item, stable_node); - stable_tree_append(rmap_item, stable_node); + stable_tree_append(tree_rmap_item, stable_node, + false); + stable_tree_append(rmap_item, stable_node, + false); } unlock_page(kpage); @@ -2010,6 +2574,48 @@ } } +static bool stable_node_dup_remove_range(struct stable_node *stable_node, + unsigned long start_pfn, + unsigned long end_pfn) +{ + if (stable_node->kpfn >= start_pfn && + stable_node->kpfn < end_pfn) { + /* + * Don't get_ksm_page, page has already gone: + * which is why we keep kpfn instead of page* + */ + remove_node_from_stable_tree(stable_node); + return true; + } + return false; +} + +static bool stable_node_chain_remove_range(struct stable_node *stable_node, + unsigned long start_pfn, + unsigned long end_pfn, + struct rb_root *root) +{ + struct stable_node *dup; + struct hlist_node *hlist_safe; + + if (!is_stable_node_chain(stable_node)) { + VM_BUG_ON(is_stable_node_dup(stable_node)); + return stable_node_dup_remove_range(stable_node, start_pfn, + end_pfn); + } + + hlist_for_each_entry_safe(dup, hlist_safe, + &stable_node->hlist, hlist_dup) { + VM_BUG_ON(!is_stable_node_dup(dup)); + stable_node_dup_remove_range(dup, start_pfn, end_pfn); + } + if (hlist_empty(&stable_node->hlist)) { + free_stable_node_chain(stable_node, root); + return true; /* notify caller that tree was rebalanced */ + } else + return false; +} + static void ksm_check_stable_tree(unsigned long start_pfn, unsigned long end_pfn) { @@ -2022,15 +2628,12 @@ node = rb_first(root_stable_tree + nid); while (node) { stable_node = rb_entry(node, struct stable_node, node); - if (stable_node->kpfn >= start_pfn && - stable_node->kpfn < end_pfn) { - /* - * Don't get_ksm_page, page has already gone: - * which is why we keep kpfn instead of page* - */ - remove_node_from_stable_tree(stable_node); + if (stable_node_chain_remove_range(stable_node, + start_pfn, end_pfn, + root_stable_tree + + nid)) node = rb_first(root_stable_tree + nid); - } else + else node = rb_next(node); cond_resched(); } @@ -2255,6 +2858,47 @@ KSM_ATTR(merge_across_nodes); #endif +static ssize_t max_page_sharing_show(struct kobject *kobj, + struct kobj_attribute *attr, char *buf) +{ + return sprintf(buf, "%u\n", ksm_max_page_sharing); +} + +static ssize_t max_page_sharing_store(struct kobject *kobj, + struct kobj_attribute *attr, + const char *buf, size_t count) +{ + int err; + int knob; + + err = kstrtoint(buf, 10, &knob); + if (err) + return err; + /* + * When a KSM page is created it is shared by 2 mappings. This + * being a signed comparison, it implicitly verifies it's not + * negative. + */ + if (knob < 2) + return -EINVAL; + + if (READ_ONCE(ksm_max_page_sharing) == knob) + return count; + + mutex_lock(&ksm_thread_mutex); + wait_while_offlining(); + if (ksm_max_page_sharing != knob) { + if (ksm_pages_shared || remove_all_stable_nodes()) + err = -EBUSY; + else + ksm_max_page_sharing = knob; + } + mutex_unlock(&ksm_thread_mutex); + + return err ? err : count; +} +KSM_ATTR(max_page_sharing); + static ssize_t pages_shared_show(struct kobject *kobj, struct kobj_attribute *attr, char *buf) { @@ -2293,6 +2937,46 @@ } KSM_ATTR_RO(pages_volatile); +static ssize_t stable_node_dups_show(struct kobject *kobj, + struct kobj_attribute *attr, char *buf) +{ + return sprintf(buf, "%lu\n", ksm_stable_node_dups); +} +KSM_ATTR_RO(stable_node_dups); + +static ssize_t stable_node_chains_show(struct kobject *kobj, + struct kobj_attribute *attr, char *buf) +{ + return sprintf(buf, "%lu\n", ksm_stable_node_chains); +} +KSM_ATTR_RO(stable_node_chains); + +static ssize_t +stable_node_chains_prune_millisecs_show(struct kobject *kobj, + struct kobj_attribute *attr, + char *buf) +{ + return sprintf(buf, "%u\n", ksm_stable_node_chains_prune_millisecs); +} + +static ssize_t +stable_node_chains_prune_millisecs_store(struct kobject *kobj, + struct kobj_attribute *attr, + const char *buf, size_t count) +{ + unsigned long msecs; + int err; + + err = kstrtoul(buf, 10, &msecs); + if (err || msecs > UINT_MAX) + return -EINVAL; + + ksm_stable_node_chains_prune_millisecs = msecs; + + return count; +} +KSM_ATTR(stable_node_chains_prune_millisecs); + static ssize_t full_scans_show(struct kobject *kobj, struct kobj_attribute *attr, char *buf) { @@ -2312,6 +2996,10 @@ #ifdef CONFIG_NUMA &merge_across_nodes_attr.attr, #endif + &max_page_sharing_attr.attr, + &stable_node_chains_attr.attr, + &stable_node_dups_attr.attr, + &stable_node_chains_prune_millisecs_attr.attr, NULL, }; diff -u linux-4.4.0/mm/list_lru.c linux-4.4.0/mm/list_lru.c --- linux-4.4.0/mm/list_lru.c +++ linux-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-4.4.0/mm/memory.c linux-4.4.0/mm/memory.c --- linux-4.4.0/mm/memory.c +++ linux-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-4.4.0/mm/mempolicy.c linux-4.4.0/mm/mempolicy.c --- linux-4.4.0/mm/mempolicy.c +++ linux-4.4.0/mm/mempolicy.c @@ -894,11 +894,6 @@ *policy |= (pol->flags & MPOL_MODE_FLAGS); } - if (vma) { - up_read(¤t->mm->mmap_sem); - vma = NULL; - } - err = 0; if (nmask) { if (mpol_store_user_nodemask(pol)) { diff -u linux-4.4.0/mm/migrate.c linux-4.4.0/mm/migrate.c --- linux-4.4.0/mm/migrate.c +++ linux-4.4.0/mm/migrate.c @@ -38,6 +38,7 @@ #include #include #include +#include #include @@ -1483,7 +1484,6 @@ const int __user *, nodes, int __user *, status, int, flags) { - const struct cred *cred = current_cred(), *tcred; struct task_struct *task; struct mm_struct *mm; int err; @@ -1507,14 +1507,9 @@ /* * Check if this process has the right to modify the specified - * process. The right exists if the process has administrative - * capabilities, superuser privileges or the same - * userid as the target process. + * process. Use the regular "ptrace_may_access()" checks. */ - tcred = __task_cred(task); - if (!uid_eq(cred->euid, tcred->suid) && !uid_eq(cred->euid, tcred->uid) && - !uid_eq(cred->uid, tcred->suid) && !uid_eq(cred->uid, tcred->uid) && - !capable(CAP_SYS_NICE)) { + if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS)) { rcu_read_unlock(); err = -EPERM; goto out; diff -u linux-4.4.0/mm/mmap.c linux-4.4.0/mm/mmap.c --- linux-4.4.0/mm/mmap.c +++ linux-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-4.4.0/mm/page_alloc.c linux-4.4.0/mm/page_alloc.c --- linux-4.4.0/mm/page_alloc.c +++ linux-4.4.0/mm/page_alloc.c @@ -1527,14 +1527,14 @@ #endif for (page = start_page; page <= end_page;) { - /* Make sure we are not inadvertently changing nodes */ - VM_BUG_ON_PAGE(page_to_nid(page) != zone_to_nid(zone), page); - if (!pfn_valid_within(page_to_pfn(page))) { page++; continue; } + /* Make sure we are not inadvertently changing nodes */ + VM_BUG_ON_PAGE(page_to_nid(page) != zone_to_nid(zone), page); + if (!PageBuddy(page)) { page++; continue; @@ -1748,13 +1748,25 @@ struct page, lru); /* - * It should never happen but changes to locking could - * inadvertently allow a per-cpu drain to add pages - * to MIGRATE_HIGHATOMIC while unreserving so be safe - * and watch for underflows. + * In page freeing path, migratetype change is racy so + * we can counter several free pages in a pageblock + * in this loop althoug we changed the pageblock type + * from highatomic to ac->migratetype. So we should + * adjust the count once. */ - zone->nr_reserved_highatomic -= min(pageblock_nr_pages, - zone->nr_reserved_highatomic); + if (get_pageblock_migratetype(page) == + MIGRATE_HIGHATOMIC) { + /* + * It should never happen but changes to + * locking could inadvertently allow a per-cpu + * drain to add pages to MIGRATE_HIGHATOMIC + * while unreserving so be safe and watch for + * underflows. + */ + zone->nr_reserved_highatomic -= min( + pageblock_nr_pages, + zone->nr_reserved_highatomic); + } /* * Convert to ac->migratetype and avoid the normal @@ -6047,8 +6059,8 @@ } if (pages && s) - pr_info("Freeing %s memory: %ldK (%p - %p)\n", - s, pages << (PAGE_SHIFT - 10), start, end); + pr_info("Freeing %s memory: %ldK\n", + s, pages << (PAGE_SHIFT - 10)); return pages; } @@ -7004,7 +7016,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-4.4.0/mm/vmscan.c linux-4.4.0/mm/vmscan.c --- linux-4.4.0/mm/vmscan.c +++ linux-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-4.4.0/net/bluetooth/hci_core.c linux-4.4.0/net/bluetooth/hci_core.c --- linux-4.4.0/net/bluetooth/hci_core.c +++ linux-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-4.4.0/net/bluetooth/smp.c linux-4.4.0/net/bluetooth/smp.c --- linux-4.4.0/net/bluetooth/smp.c +++ linux-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-4.4.0/net/core/dev.c linux-4.4.0/net/core/dev.c --- linux-4.4.0/net/core/dev.c +++ linux-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-4.4.0/net/core/dst.c linux-4.4.0/net/core/dst.c --- linux-4.4.0/net/core/dst.c +++ linux-4.4.0/net/core/dst.c @@ -190,7 +190,6 @@ dst->__use = 0; dst->lastuse = jiffies; dst->flags = flags; - dst->pending_confirm = 0; dst->next = NULL; if (!(flags & DST_NOCOUNT)) dst_entries_add(ops, 1); diff -u linux-4.4.0/net/core/rtnetlink.c linux-4.4.0/net/core/rtnetlink.c --- linux-4.4.0/net/core/rtnetlink.c +++ linux-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-4.4.0/net/core/sock.c linux-4.4.0/net/core/sock.c --- linux-4.4.0/net/core/sock.c +++ linux-4.4.0/net/core/sock.c @@ -532,6 +532,7 @@ if (dst && dst->obsolete && dst->ops->check(dst, cookie) == NULL) { sk_tx_queue_clear(sk); + sk->sk_dst_pending_confirm = 0; RCU_INIT_POINTER(sk->sk_dst_cache, NULL); dst_release(dst); return NULL; @@ -1540,6 +1541,7 @@ af_family_clock_key_strings[newsk->sk_family]); newsk->sk_dst_cache = NULL; + newsk->sk_dst_pending_confirm = 0; newsk->sk_wmem_queued = 0; newsk->sk_forward_alloc = 0; newsk->sk_send_head = NULL; diff -u linux-4.4.0/net/dccp/ipv4.c linux-4.4.0/net/dccp/ipv4.c --- linux-4.4.0/net/dccp/ipv4.c +++ linux-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-4.4.0/net/dccp/ipv6.c linux-4.4.0/net/dccp/ipv6.c --- linux-4.4.0/net/dccp/ipv6.c +++ linux-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-4.4.0/net/dccp/proto.c linux-4.4.0/net/dccp/proto.c --- linux-4.4.0/net/dccp/proto.c +++ linux-4.4.0/net/dccp/proto.c @@ -24,6 +24,7 @@ #include #include +#include #include #include @@ -170,6 +171,15 @@ EXPORT_SYMBOL_GPL(dccp_packet_name); +static void dccp_sk_destruct(struct sock *sk) +{ + struct dccp_sock *dp = dccp_sk(sk); + + ccid_hc_tx_delete(dp->dccps_hc_tx_ccid, sk); + dp->dccps_hc_tx_ccid = NULL; + inet_sock_destruct(sk); +} + int dccp_init_sock(struct sock *sk, const __u8 ctl_sock_initialized) { struct dccp_sock *dp = dccp_sk(sk); @@ -179,6 +189,7 @@ icsk->icsk_syn_retries = sysctl_dccp_request_retries; sk->sk_state = DCCP_CLOSED; sk->sk_write_space = dccp_write_space; + sk->sk_destruct = dccp_sk_destruct; icsk->icsk_sync_mss = dccp_sync_mss; dp->dccps_mss_cache = 536; dp->dccps_rate_last = jiffies; @@ -201,10 +212,7 @@ { struct dccp_sock *dp = dccp_sk(sk); - /* - * DCCP doesn't use sk_write_queue, just sk_send_head - * for retransmissions - */ + __skb_queue_purge(&sk->sk_write_queue); if (sk->sk_send_head != NULL) { kfree_skb(sk->sk_send_head); sk->sk_send_head = NULL; @@ -222,8 +230,7 @@ dp->dccps_hc_rx_ackvec = NULL; } ccid_hc_rx_delete(dp->dccps_hc_rx_ccid, sk); - ccid_hc_tx_delete(dp->dccps_hc_tx_ccid, sk); - dp->dccps_hc_rx_ccid = dp->dccps_hc_tx_ccid = NULL; + dp->dccps_hc_rx_ccid = NULL; /* clean up feature negotiation state */ dccp_feat_list_purge(&dp->dccps_featneg); diff -u linux-4.4.0/net/ipv4/fib_frontend.c linux-4.4.0/net/ipv4/fib_frontend.c --- linux-4.4.0/net/ipv4/fib_frontend.c +++ linux-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-4.4.0/net/ipv4/fib_semantics.c linux-4.4.0/net/ipv4/fib_semantics.c --- linux-4.4.0/net/ipv4/fib_semantics.c +++ linux-4.4.0/net/ipv4/fib_semantics.c @@ -1044,15 +1044,17 @@ fi = kzalloc(sizeof(*fi)+nhs*sizeof(struct fib_nh), GFP_KERNEL); if (!fi) goto failure; - fib_info_cnt++; if (cfg->fc_mx) { fi->fib_metrics = kzalloc(sizeof(*fi->fib_metrics), GFP_KERNEL); - if (!fi->fib_metrics) - goto failure; + if (unlikely(!fi->fib_metrics)) { + kfree(fi); + return ERR_PTR(err); + } atomic_set(&fi->fib_metrics->refcnt, 1); - } else + } else { fi->fib_metrics = (struct dst_metrics *)&dst_default_metrics; - + } + fib_info_cnt++; fi->fib_net = net; fi->fib_protocol = cfg->fc_protocol; fi->fib_scope = cfg->fc_scope; diff -u linux-4.4.0/net/ipv4/ip_fragment.c linux-4.4.0/net/ipv4/ip_fragment.c --- linux-4.4.0/net/ipv4/ip_fragment.c +++ linux-4.4.0/net/ipv4/ip_fragment.c @@ -840,8 +840,6 @@ static int __net_init ipv4_frags_init_net(struct net *net) { - int res; - /* Fragment cache limits. * * The fragment memory accounting code, (tries to) account for @@ -865,13 +863,9 @@ */ net->ipv4.frags.timeout = IP_FRAG_TIME; - res = inet_frags_init_net(&net->ipv4.frags); - if (res) - return res; - res = ip4_frags_ns_ctl_register(net); - if (res) - inet_frags_uninit_net(&net->ipv4.frags); - return res; + inet_frags_init_net(&net->ipv4.frags); + + return ip4_frags_ns_ctl_register(net); } static void __net_exit ipv4_frags_exit_net(struct net *net) diff -u linux-4.4.0/net/ipv4/ip_output.c linux-4.4.0/net/ipv4/ip_output.c --- linux-4.4.0/net/ipv4/ip_output.c +++ linux-4.4.0/net/ipv4/ip_output.c @@ -210,7 +210,10 @@ if (unlikely(!neigh)) neigh = __neigh_create(&arp_tbl, &nexthop, dev, false); if (!IS_ERR(neigh)) { - int res = dst_neigh_output(dst, neigh, skb); + int res; + + sock_confirm_neigh(skb, neigh); + res = dst_neigh_output(dst, neigh, skb); rcu_read_unlock_bh(); return res; @@ -850,6 +853,9 @@ skb->csum = 0; + if (flags & MSG_CONFIRM) + skb_set_dst_pending_confirm(skb, 1); + __skb_queue_tail(queue, skb); } else if (skb_is_gso(skb)) { goto append; @@ -1052,6 +1058,9 @@ exthdrlen = 0; csummode = CHECKSUM_NONE; + if ((flags & MSG_CONFIRM) && !skb_prev) + skb_set_dst_pending_confirm(skb, 1); + /* * Put the packet on the pending queue. */ diff -u linux-4.4.0/net/ipv4/ping.c linux-4.4.0/net/ipv4/ping.c --- linux-4.4.0/net/ipv4/ping.c +++ linux-4.4.0/net/ipv4/ping.c @@ -852,7 +852,8 @@ return err; do_confirm: - dst_confirm(&rt->dst); + if (msg->msg_flags & MSG_PROBE) + dst_confirm_neigh(&rt->dst, &fl4.daddr); if (!(msg->msg_flags & MSG_PROBE) || len) goto back_from_confirm; err = 0; diff -u linux-4.4.0/net/ipv4/raw.c linux-4.4.0/net/ipv4/raw.c --- linux-4.4.0/net/ipv4/raw.c +++ linux-4.4.0/net/ipv4/raw.c @@ -382,6 +382,9 @@ sock_tx_timestamp(sk, &skb_shinfo(skb)->tx_flags); + if (flags & MSG_CONFIRM) + skb_set_dst_pending_confirm(skb, 1); + skb->transport_header = skb->network_header; err = -EFAULT; if (memcpy_from_msg(iph, msg, length)) @@ -670,7 +673,8 @@ return len; do_confirm: - dst_confirm(&rt->dst); + if (msg->msg_flags & MSG_PROBE) + dst_confirm_neigh(&rt->dst, &fl4.daddr); if (!(msg->msg_flags & MSG_PROBE) || len) goto back_from_confirm; err = 0; diff -u linux-4.4.0/net/ipv4/route.c linux-4.4.0/net/ipv4/route.c --- linux-4.4.0/net/ipv4/route.c +++ linux-4.4.0/net/ipv4/route.c @@ -154,6 +154,7 @@ static struct neighbour *ipv4_neigh_lookup(const struct dst_entry *dst, struct sk_buff *skb, const void *daddr); +static void ipv4_confirm_neigh(const struct dst_entry *dst, const void *daddr); static struct dst_ops ipv4_dst_ops = { .family = AF_INET, @@ -168,6 +169,7 @@ .redirect = ip_do_redirect, .local_out = __ip_local_out, .neigh_lookup = ipv4_neigh_lookup, + .confirm_neigh = ipv4_confirm_neigh, }; #define ECN_OR_COST(class) TC_PRIO_##class @@ -461,6 +463,23 @@ return neigh_create(&arp_tbl, pkey, dev); } +static void ipv4_confirm_neigh(const struct dst_entry *dst, const void *daddr) +{ + struct net_device *dev = dst->dev; + const __be32 *pkey = daddr; + const struct rtable *rt; + + rt = (const struct rtable *)dst; + if (rt->rt_gateway) + pkey = (const __be32 *)&rt->rt_gateway; + else if (!daddr || + (rt->rt_flags & + (RTCF_MULTICAST | RTCF_BROADCAST | RTCF_LOCAL))) + return; + + __ipv4_confirm_neigh(dev, *(__force u32 *)pkey); +} + #define IP_IDENTS_SZ 2048u static atomic_t *ip_idents __read_mostly; @@ -1241,7 +1260,7 @@ if (mtu) return mtu; - mtu = dst->dev->mtu; + mtu = READ_ONCE(dst->dev->mtu); if (unlikely(dst_metric_locked(dst, RTAX_MTU))) { if (rt->rt_uses_gateway && mtu > 576) diff -u linux-4.4.0/net/ipv4/tcp.c linux-4.4.0/net/ipv4/tcp.c --- linux-4.4.0/net/ipv4/tcp.c +++ linux-4.4.0/net/ipv4/tcp.c @@ -2260,9 +2260,15 @@ tcp_set_ca_state(sk, TCP_CA_Open); tcp_clear_retrans(tp); inet_csk_delack_init(sk); + /* Initialize rcv_mss to TCP_MIN_MSS to avoid division by 0 + * issue in __tcp_select_window() + */ + icsk->icsk_ack.rcv_mss = TCP_MIN_MSS; tcp_init_send_head(sk); memset(&tp->rx_opt, 0, sizeof(tp->rx_opt)); __sk_dst_reset(sk); + dst_release(sk->sk_rx_dst); + sk->sk_rx_dst = NULL; tcp_saved_syn_free(tp); WARN_ON(inet->inet_num && !icsk->icsk_bind_hash); diff -u linux-4.4.0/net/ipv4/tcp_input.c linux-4.4.0/net/ipv4/tcp_input.c --- linux-4.4.0/net/ipv4/tcp_input.c +++ linux-4.4.0/net/ipv4/tcp_input.c @@ -2165,8 +2165,7 @@ { struct tcp_sock *tp = tcp_sk(sk); struct sk_buff *skb; - int cnt, oldcnt; - int err; + int cnt, oldcnt, lost; unsigned int mss; /* Use SACK to deduce losses of new sequences sent during recovery */ const u32 loss_high = tcp_is_sack(tp) ? tp->snd_nxt : tp->high_seq; @@ -2206,9 +2205,10 @@ break; mss = tcp_skb_mss(skb); - err = tcp_fragment(sk, skb, (packets - oldcnt) * mss, - mss, GFP_ATOMIC); - if (err < 0) + /* If needed, chop off the prefix to mark as lost. */ + lost = (packets - oldcnt) * mss; + if (lost < skb->len && + tcp_fragment(sk, skb, lost, mss, GFP_ATOMIC) < 0) break; cnt = packets; } @@ -2503,8 +2503,8 @@ struct tcp_sock *tp = tcp_sk(sk); /* Reset cwnd to ssthresh in CWR or Recovery (unless it's undone) */ - if (inet_csk(sk)->icsk_ca_state == TCP_CA_CWR || - (tp->undo_marker && tp->snd_ssthresh < TCP_INFINITE_SSTHRESH)) { + if (tp->snd_ssthresh < TCP_INFINITE_SSTHRESH && + (inet_csk(sk)->icsk_ca_state == TCP_CA_CWR || tp->undo_marker)) { tp->snd_cwnd = tp->snd_ssthresh; tp->snd_cwnd_stamp = tcp_time_stamp; } @@ -3028,8 +3028,7 @@ /* delta may not be positive if the socket is locked * when the retrans timer fires and is rescheduled. */ - if (delta > 0) - rto = delta; + rto = max(delta, 1); } inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS, rto, TCP_RTO_MAX); @@ -3637,11 +3636,8 @@ if (tcp_may_raise_cwnd(sk, flag)) tcp_cong_avoid(sk, ack, acked); - if ((flag & FLAG_FORWARD_PROGRESS) || !(flag & FLAG_NOT_DUP)) { - struct dst_entry *dst = __sk_dst_get(sk); - if (dst) - dst_confirm(dst); - } + if ((flag & FLAG_FORWARD_PROGRESS) || !(flag & FLAG_NOT_DUP)) + sk_dst_confirm(sk); if (icsk->icsk_pending == ICSK_TIME_RETRANS) tcp_schedule_loss_probe(sk); @@ -5897,7 +5893,6 @@ break; case TCP_FIN_WAIT1: { - struct dst_entry *dst; int tmo; /* If we enter the TCP_FIN_WAIT1 state and we are a @@ -5924,9 +5919,7 @@ tcp_set_state(sk, TCP_FIN_WAIT2); sk->sk_shutdown |= SEND_SHUTDOWN; - dst = __sk_dst_get(sk); - if (dst) - dst_confirm(dst); + sk_dst_confirm(sk); if (!sock_flag(sk, SOCK_DEAD)) { /* Wake up lingering close() */ diff -u linux-4.4.0/net/ipv4/tcp_metrics.c linux-4.4.0/net/ipv4/tcp_metrics.c --- linux-4.4.0/net/ipv4/tcp_metrics.c +++ linux-4.4.0/net/ipv4/tcp_metrics.c @@ -374,12 +374,10 @@ u32 val; int m; + sk_dst_confirm(sk); if (sysctl_tcp_nometrics_save || !dst) return; - if (dst->flags & DST_HOST) - dst_confirm(dst); - rcu_read_lock(); if (icsk->icsk_backoff || !tp->srtt_us) { /* This session failed to estimate rtt. Why? @@ -492,11 +490,10 @@ struct tcp_metrics_block *tm; u32 val, crtt = 0; /* cached RTT scaled by 8 */ + sk_dst_confirm(sk); if (!dst) goto reset; - dst_confirm(dst); - rcu_read_lock(); tm = tcp_get_metrics(sk, dst, true); if (!tm) { diff -u linux-4.4.0/net/ipv4/tcp_output.c linux-4.4.0/net/ipv4/tcp_output.c --- linux-4.4.0/net/ipv4/tcp_output.c +++ linux-4.4.0/net/ipv4/tcp_output.c @@ -957,6 +957,8 @@ skb_set_hash_from_sk(skb, sk); atomic_add(skb->truesize, &sk->sk_wmem_alloc); + skb_set_dst_pending_confirm(skb, sk->sk_dst_pending_confirm); + /* Build TCP header and checksum it. */ th = tcp_hdr(skb); th->source = inet->inet_sport; @@ -3256,6 +3258,9 @@ struct sk_buff *buff; int err; + if (inet_csk(sk)->icsk_af_ops->rebuild_header(sk)) + return -EHOSTUNREACH; /* Routing failure or similar. */ + tcp_connect_init(sk); if (unlikely(tp->repair)) { diff -u linux-4.4.0/net/ipv4/tcp_timer.c linux-4.4.0/net/ipv4/tcp_timer.c --- linux-4.4.0/net/ipv4/tcp_timer.c +++ linux-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-4.4.0/net/ipv4/udp.c linux-4.4.0/net/ipv4/udp.c --- linux-4.4.0/net/ipv4/udp.c +++ linux-4.4.0/net/ipv4/udp.c @@ -819,7 +819,7 @@ if (is_udplite) /* UDP-Lite */ csum = udplite_csum(skb); - else if (sk->sk_no_check_tx) { /* UDP csum disabled */ + else if (sk->sk_no_check_tx && !skb_is_gso(skb)) { /* UDP csum off */ skb->ip_summed = CHECKSUM_NONE; goto send; @@ -1123,7 +1123,8 @@ return err; do_confirm: - dst_confirm(&rt->dst); + if (msg->msg_flags & MSG_PROBE) + dst_confirm_neigh(&rt->dst, &fl4->daddr); if (!(msg->msg_flags&MSG_PROBE) || len) goto back_from_confirm; err = 0; diff -u linux-4.4.0/net/ipv4/udp_offload.c linux-4.4.0/net/ipv4/udp_offload.c --- linux-4.4.0/net/ipv4/udp_offload.c +++ linux-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-4.4.0/net/ipv6/addrconf.c linux-4.4.0/net/ipv6/addrconf.c --- linux-4.4.0/net/ipv6/addrconf.c +++ linux-4.4.0/net/ipv6/addrconf.c @@ -1772,17 +1772,7 @@ static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed) { - if (ifp->flags&IFA_F_PERMANENT) { - spin_lock_bh(&ifp->lock); - addrconf_del_dad_work(ifp); - ifp->flags |= IFA_F_TENTATIVE; - if (dad_failed) - ifp->flags |= IFA_F_DADFAILED; - spin_unlock_bh(&ifp->lock); - if (dad_failed) - ipv6_ifa_notify(0, ifp); - in6_ifa_put(ifp); - } else if (ifp->flags&IFA_F_TEMPORARY) { + if (ifp->flags&IFA_F_TEMPORARY) { struct inet6_ifaddr *ifpub; spin_lock_bh(&ifp->lock); ifpub = ifp->ifpub; @@ -1795,6 +1785,16 @@ spin_unlock_bh(&ifp->lock); } ipv6_del_addr(ifp); + } else if (ifp->flags&IFA_F_PERMANENT || !dad_failed) { + spin_lock_bh(&ifp->lock); + addrconf_del_dad_work(ifp); + ifp->flags |= IFA_F_TENTATIVE; + if (dad_failed) + ifp->flags |= IFA_F_DADFAILED; + spin_unlock_bh(&ifp->lock); + if (dad_failed) + ipv6_ifa_notify(0, ifp); + in6_ifa_put(ifp); } else { ipv6_del_addr(ifp); } @@ -3143,6 +3143,7 @@ { struct net_device *dev = netdev_notifier_info_to_dev(ptr); struct inet6_dev *idev = __in6_dev_get(dev); + struct net *net = dev_net(dev); int run_pending = 0; int err; @@ -3158,7 +3159,7 @@ case NETDEV_CHANGEMTU: /* if MTU under IPV6_MIN_MTU stop IPv6 on this interface. */ if (dev->mtu < IPV6_MIN_MTU) { - addrconf_ifdown(dev, 1); + addrconf_ifdown(dev, dev != net->loopback_dev); break; } @@ -3271,7 +3272,7 @@ * IPV6_MIN_MTU stop IPv6 on this interface. */ if (dev->mtu < IPV6_MIN_MTU) - addrconf_ifdown(dev, 1); + addrconf_ifdown(dev, dev != net->loopback_dev); } break; @@ -5151,7 +5152,7 @@ * our DAD process, so we don't need * to do it again */ - if (!(ifp->rt->rt6i_node)) + if (!rcu_access_pointer(ifp->rt->rt6i_node)) ip6_ins_rt(ifp->rt); if (ifp->idev->cnf.forwarding) addrconf_join_anycast(ifp); diff -u linux-4.4.0/net/ipv6/ip6_fib.c linux-4.4.0/net/ipv6/ip6_fib.c --- linux-4.4.0/net/ipv6/ip6_fib.c +++ linux-4.4.0/net/ipv6/ip6_fib.c @@ -150,11 +150,23 @@ return fn; } -static void node_free(struct fib6_node *fn) +static void node_free_immediate(struct fib6_node *fn) +{ + kmem_cache_free(fib6_node_kmem, fn); +} + +static void node_free_rcu(struct rcu_head *head) { + struct fib6_node *fn = container_of(head, struct fib6_node, rcu); + kmem_cache_free(fib6_node_kmem, fn); } +static void node_free(struct fib6_node *fn) +{ + call_rcu(&fn->rcu, node_free_rcu); +} + static void rt6_rcu_free(struct rt6_info *rt) { call_rcu(&rt->dst.rcu_head, dst_rcu_free); @@ -191,6 +203,12 @@ } } +static void fib6_free_table(struct fib6_table *table) +{ + inetpeer_invalidate_tree(&table->tb6_peers); + kfree(table); +} + static void fib6_link_table(struct net *net, struct fib6_table *tb) { unsigned int h; @@ -588,9 +606,9 @@ if (!in || !ln) { if (in) - node_free(in); + node_free_immediate(in); if (ln) - node_free(ln); + node_free_immediate(ln); return ERR_PTR(-ENOMEM); } @@ -767,10 +785,7 @@ goto next_iter; } - if (iter->dst.dev == rt->dst.dev && - iter->rt6i_idev == rt->rt6i_idev && - ipv6_addr_equal(&iter->rt6i_gateway, - &rt->rt6i_gateway)) { + if (rt6_duplicate_nexthop(iter, rt)) { if (rt->rt6i_nsiblings) rt->rt6i_nsiblings = 0; if (!(iter->rt6i_flags & RTF_EXPIRES)) @@ -860,7 +875,7 @@ rt->dst.rt6_next = iter; *ins = rt; - rt->rt6i_node = fn; + rcu_assign_pointer(rt->rt6i_node, fn); atomic_inc(&rt->rt6i_ref); inet6_rt_notify(RTM_NEWROUTE, rt, info, 0); info->nl_net->ipv6.rt6_stats->fib_rt_entries++; @@ -885,7 +900,7 @@ return err; *ins = rt; - rt->rt6i_node = fn; + rcu_assign_pointer(rt->rt6i_node, fn); rt->dst.rt6_next = iter->dst.rt6_next; atomic_inc(&rt->rt6i_ref); inet6_rt_notify(RTM_NEWROUTE, rt, info, NLM_F_REPLACE); @@ -895,6 +910,8 @@ } nsiblings = iter->rt6i_nsiblings; fib6_purge_rt(iter, fn, info->nl_net); + if (fn->rr_ptr == iter) + fn->rr_ptr = NULL; rt6_release(iter); if (nsiblings) { @@ -907,6 +924,8 @@ if (rt6_qualify_for_ecmp(iter)) { *ins = iter->dst.rt6_next; fib6_purge_rt(iter, fn, info->nl_net); + if (fn->rr_ptr == iter) + fn->rr_ptr = NULL; rt6_release(iter); nsiblings--; } else { @@ -995,7 +1014,7 @@ /* Create subtree root node */ sfn = node_alloc(); if (!sfn) - goto st_failure; + goto failure; sfn->leaf = info->nl_net->ipv6.ip6_null_entry; atomic_inc(&info->nl_net->ipv6.ip6_null_entry->rt6i_ref); @@ -1011,12 +1030,12 @@ if (IS_ERR(sn)) { /* If it is failed, discard just allocated - root, and then (in st_failure) stale node + root, and then (in failure) stale node in main tree. */ - node_free(sfn); + node_free_immediate(sfn); err = PTR_ERR(sn); - goto st_failure; + goto failure; } /* Now link new subtree to main tree */ @@ -1030,7 +1049,7 @@ if (IS_ERR(sn)) { err = PTR_ERR(sn); - goto st_failure; + goto failure; } } @@ -1072,22 +1091,22 @@ atomic_inc(&pn->leaf->rt6i_ref); } #endif - if (!(rt->dst.flags & DST_NOCACHE)) - dst_free(&rt->dst); + goto failure; } return err; -#ifdef CONFIG_IPV6_SUBTREES - /* Subtree creation failed, probably main tree node - is orphan. If it is, shoot it. +failure: + /* fn->leaf could be NULL if fn is an intermediate node and we + * failed to add the new route to it in both subtree creation + * failure and fib6_add_rt2node() failure case. + * In both cases, fib6_repair_tree() should be called to fix + * fn->leaf. */ -st_failure: if (fn && !(fn->fn_flags & (RTN_RTINFO|RTN_ROOT))) fib6_repair_tree(info->nl_net, fn); if (!(rt->dst.flags & DST_NOCACHE)) dst_free(&rt->dst); return err; -#endif } /* @@ -1441,8 +1460,9 @@ int fib6_del(struct rt6_info *rt, struct nl_info *info) { + struct fib6_node *fn = rcu_dereference_protected(rt->rt6i_node, + lockdep_is_held(&rt->rt6i_table->tb6_lock)); struct net *net = info->nl_net; - struct fib6_node *fn = rt->rt6i_node; struct rt6_info **rtp; #if RT6_DEBUG >= 2 @@ -1631,7 +1651,9 @@ if (res) { #if RT6_DEBUG >= 2 pr_debug("%s: del failed: rt=%p@%p err=%d\n", - __func__, rt, rt->rt6i_node, res); + __func__, rt, + rcu_access_pointer(rt->rt6i_node), + res); #endif continue; } @@ -1869,15 +1891,22 @@ static void fib6_net_exit(struct net *net) { + unsigned int i; + rt6_ifdown(net, NULL); del_timer_sync(&net->ipv6.ip6_fib_timer); -#ifdef CONFIG_IPV6_MULTIPLE_TABLES - inetpeer_invalidate_tree(&net->ipv6.fib6_local_tbl->tb6_peers); - kfree(net->ipv6.fib6_local_tbl); -#endif - inetpeer_invalidate_tree(&net->ipv6.fib6_main_tbl->tb6_peers); - kfree(net->ipv6.fib6_main_tbl); + for (i = 0; i < FIB6_TABLE_HASHSZ; i++) { + struct hlist_head *head = &net->ipv6.fib_table_hash[i]; + struct hlist_node *tmp; + struct fib6_table *tb; + + hlist_for_each_entry_safe(tb, tmp, head, tb6_hlist) { + hlist_del(&tb->tb6_hlist); + fib6_free_table(tb); + } + } + kfree(net->ipv6.fib_table_hash); kfree(net->ipv6.rt6_stats); } diff -u linux-4.4.0/net/ipv6/ip6_output.c linux-4.4.0/net/ipv6/ip6_output.c --- linux-4.4.0/net/ipv6/ip6_output.c +++ linux-4.4.0/net/ipv6/ip6_output.c @@ -110,6 +110,7 @@ if (unlikely(!neigh)) neigh = __neigh_create(&nd_tbl, nexthop, dst->dev, false); if (!IS_ERR(neigh)) { + sock_confirm_neigh(skb, neigh); ret = dst_neigh_output(dst, neigh, skb); rcu_read_unlock_bh(); return ret; @@ -647,8 +648,6 @@ *prevhdr = NEXTHDR_FRAGMENT; tmp_hdr = kmemdup(skb_network_header(skb), hlen, GFP_ATOMIC); if (!tmp_hdr) { - IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), - IPSTATS_MIB_FRAGFAILS); err = -ENOMEM; goto fail; } @@ -767,8 +766,6 @@ frag = alloc_skb(len + hlen + sizeof(struct frag_hdr) + hroom + troom, GFP_ATOMIC); if (!frag) { - IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), - IPSTATS_MIB_FRAGFAILS); err = -ENOMEM; goto fail; } @@ -1133,6 +1130,9 @@ skb->protocol = htons(ETH_P_IPV6); skb->csum = 0; + if (flags & MSG_CONFIRM) + skb_set_dst_pending_confirm(skb, 1); + __skb_queue_tail(queue, skb); } else if (skb_is_gso(skb)) { goto append; @@ -1506,6 +1506,9 @@ exthdrlen = 0; dst_exthdrlen = 0; + if ((flags & MSG_CONFIRM) && !skb_prev) + skb_set_dst_pending_confirm(skb, 1); + /* * Put the packet on the pending queue */ diff -u linux-4.4.0/net/ipv6/output_core.c linux-4.4.0/net/ipv6/output_core.c --- linux-4.4.0/net/ipv6/output_core.c +++ linux-4.4.0/net/ipv6/output_core.c @@ -78,7 +78,7 @@ int ip6_find_1stfragopt(struct sk_buff *skb, u8 **nexthdr) { - u16 offset = sizeof(struct ipv6hdr); + unsigned int offset = sizeof(struct ipv6hdr); unsigned int packet_len = skb_tail_pointer(skb) - skb_network_header(skb); int found_rhdr = 0; @@ -112,6 +112,8 @@ exthdr = (struct ipv6_opt_hdr *)(skb_network_header(skb) + offset); offset += ipv6_optlen(exthdr); + if (offset > IPV6_MAXPLEN) + return -EINVAL; *nexthdr = &exthdr->nexthdr; } diff -u linux-4.4.0/net/ipv6/raw.c linux-4.4.0/net/ipv6/raw.c --- linux-4.4.0/net/ipv6/raw.c +++ linux-4.4.0/net/ipv6/raw.c @@ -654,6 +654,9 @@ skb->ip_summed = CHECKSUM_NONE; + if (flags & MSG_CONFIRM) + skb_set_dst_pending_confirm(skb, 1); + skb->transport_header = skb->network_header; err = memcpy_from_msg(iph, msg, length); if (err) @@ -918,7 +921,8 @@ txopt_put(opt_to_free); return err < 0 ? err : len; do_confirm: - dst_confirm(dst); + if (msg->msg_flags & MSG_PROBE) + dst_confirm_neigh(dst, &fl6.daddr); if (!(msg->msg_flags & MSG_PROBE) || len) goto back_from_confirm; err = 0; diff -u linux-4.4.0/net/ipv6/reassembly.c linux-4.4.0/net/ipv6/reassembly.c --- linux-4.4.0/net/ipv6/reassembly.c +++ linux-4.4.0/net/ipv6/reassembly.c @@ -708,19 +708,13 @@ static int __net_init ipv6_frags_init_net(struct net *net) { - int res; - net->ipv6.frags.high_thresh = IPV6_FRAG_HIGH_THRESH; net->ipv6.frags.low_thresh = IPV6_FRAG_LOW_THRESH; net->ipv6.frags.timeout = IPV6_FRAG_TIMEOUT; - res = inet_frags_init_net(&net->ipv6.frags); - if (res) - return res; - res = ip6_frags_ns_sysctl_register(net); - if (res) - inet_frags_uninit_net(&net->ipv6.frags); - return res; + inet_frags_init_net(&net->ipv6.frags); + + return ip6_frags_ns_sysctl_register(net); } static void __net_exit ipv6_frags_exit_net(struct net *net) diff -u linux-4.4.0/net/ipv6/route.c linux-4.4.0/net/ipv6/route.c --- linux-4.4.0/net/ipv6/route.c +++ linux-4.4.0/net/ipv6/route.c @@ -214,6 +214,21 @@ return neigh_create(&nd_tbl, daddr, dst->dev); } +static void ip6_confirm_neigh(const struct dst_entry *dst, const void *daddr) +{ + struct net_device *dev = dst->dev; + struct rt6_info *rt = (struct rt6_info *)dst; + + daddr = choose_neigh_daddr(rt, NULL, daddr); + if (!daddr) + return; + if (dev->flags & (IFF_NOARP | IFF_LOOPBACK)) + return; + if (ipv6_addr_is_multicast((const struct in6_addr *)daddr)) + return; + __ipv6_confirm_neigh(dev, daddr); +} + static struct dst_ops ip6_dst_ops_template = { .family = AF_INET6, .gc = ip6_dst_gc, @@ -230,6 +245,7 @@ .redirect = rt6_do_redirect, .local_out = __ip6_local_out, .neigh_lookup = ip6_neigh_lookup, + .confirm_neigh = ip6_confirm_neigh, }; static unsigned int ip6_blackhole_mtu(const struct dst_entry *dst) @@ -1248,7 +1264,9 @@ static struct dst_entry *rt6_check(struct rt6_info *rt, u32 cookie) { - if (!rt->rt6i_node || (rt->rt6i_node->fn_sernum != cookie)) + u32 rt_cookie; + + if (!rt6_get_cookie_safe(rt, &rt_cookie) || rt_cookie != cookie) return NULL; if (rt6_check_expired(rt)) @@ -1316,8 +1334,14 @@ if (rt->rt6i_flags & RTF_CACHE) { dst_hold(&rt->dst); ip6_del_rt(rt); - } else if (rt->rt6i_node && (rt->rt6i_flags & RTF_DEFAULT)) { - rt->rt6i_node->fn_sernum = -1; + } else { + struct fib6_node *fn; + + rcu_read_lock(); + fn = rcu_dereference(rt->rt6i_node); + if (fn && (rt->rt6i_flags & RTF_DEFAULT)) + fn->fn_sernum = -1; + rcu_read_unlock(); } } } @@ -1334,37 +1358,39 @@ static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt) { return !(rt->rt6i_flags & RTF_CACHE) && - (rt->rt6i_flags & RTF_PCPU || rt->rt6i_node); + (rt->rt6i_flags & RTF_PCPU || + rcu_access_pointer(rt->rt6i_node)); } static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk, const struct ipv6hdr *iph, u32 mtu) { + const struct in6_addr *daddr, *saddr; struct rt6_info *rt6 = (struct rt6_info *)dst; if (rt6->rt6i_flags & RTF_LOCAL) return; - dst_confirm(dst); + if (iph) { + daddr = &iph->daddr; + saddr = &iph->saddr; + } else if (sk) { + daddr = &sk->sk_v6_daddr; + saddr = &inet6_sk(sk)->saddr; + } else { + daddr = NULL; + saddr = NULL; + } + dst_confirm_neigh(dst, daddr); mtu = max_t(u32, mtu, IPV6_MIN_MTU); if (mtu >= dst_mtu(dst)) return; if (!rt6_cache_allowed_for_pmtu(rt6)) { rt6_do_update_pmtu(rt6, mtu); - } else { - const struct in6_addr *daddr, *saddr; + } else if (daddr) { struct rt6_info *nrt6; - if (iph) { - daddr = &iph->daddr; - saddr = &iph->saddr; - } else if (sk) { - daddr = &sk->sk_v6_daddr; - saddr = &inet6_sk(sk)->saddr; - } else { - return; - } nrt6 = ip6_rt_cache_alloc(rt6, daddr, saddr); if (nrt6) { rt6_do_update_pmtu(nrt6, mtu); @@ -2172,7 +2198,7 @@ * Look, redirects are sent only in response to data packets, * so that this nexthop apparently is reachable. --ANK */ - dst_confirm(&rt->dst); + dst_confirm_neigh(&rt->dst, &ipv6_hdr(skb)->saddr); neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1); if (!neigh) @@ -2833,17 +2859,11 @@ struct rt6_info *rt, struct fib6_config *r_cfg) { struct rt6_nh *nh; - struct rt6_info *rtnh; int err = -EEXIST; list_for_each_entry(nh, rt6_nh_list, next) { /* check if rt6_info already exists */ - rtnh = nh->rt6_info; - - if (rtnh->dst.dev == rt->dst.dev && - rtnh->rt6i_idev == rt->rt6i_idev && - ipv6_addr_equal(&rtnh->rt6i_gateway, - &rt->rt6i_gateway)) + if (rt6_duplicate_nexthop(nh->rt6_info, rt)) return err; } diff -u linux-4.4.0/net/ipv6/udp.c linux-4.4.0/net/ipv6/udp.c --- linux-4.4.0/net/ipv6/udp.c +++ linux-4.4.0/net/ipv6/udp.c @@ -1398,7 +1398,8 @@ return err; do_confirm: - dst_confirm(dst); + if (msg->msg_flags & MSG_PROBE) + dst_confirm_neigh(dst, &fl6.daddr); if (!(msg->msg_flags&MSG_PROBE) || len) goto back_from_confirm; err = 0; diff -u linux-4.4.0/net/ipv6/udp_offload.c linux-4.4.0/net/ipv6/udp_offload.c --- linux-4.4.0/net/ipv6/udp_offload.c +++ linux-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-4.4.0/net/irda/af_irda.c linux-4.4.0/net/irda/af_irda.c --- linux-4.4.0/net/irda/af_irda.c +++ linux-4.4.0/net/irda/af_irda.c @@ -2227,7 +2227,7 @@ { struct sock *sk = sock->sk; struct irda_sock *self = irda_sk(sk); - struct irda_device_list list; + struct irda_device_list list = { 0 }; struct irda_device_info *discoveries; struct irda_ias_set * ias_opt; /* IAS get/query params */ struct ias_object * ias_obj; /* Object in IAS */ diff -u linux-4.4.0/net/key/af_key.c linux-4.4.0/net/key/af_key.c --- linux-4.4.0/net/key/af_key.c +++ linux-4.4.0/net/key/af_key.c @@ -63,8 +63,13 @@ } u; struct sk_buff *skb; } dump; + struct mutex dump_lock; }; +static int parse_sockaddr_pair(struct sockaddr *sa, int ext_len, + xfrm_address_t *saddr, xfrm_address_t *daddr, + u16 *family); + static inline struct pfkey_sock *pfkey_sk(struct sock *sk) { return (struct pfkey_sock *)sk; @@ -139,6 +144,7 @@ { struct netns_pfkey *net_pfkey = net_generic(net, pfkey_net_id); struct sock *sk; + struct pfkey_sock *pfk; int err; if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) @@ -153,6 +159,9 @@ if (sk == NULL) goto out; + pfk = pfkey_sk(sk); + mutex_init(&pfk->dump_lock); + sock->ops = &pfkey_ops; sock_init_data(sock, sk); @@ -219,7 +228,7 @@ #define BROADCAST_ONE 1 #define BROADCAST_REGISTERED 2 #define BROADCAST_PROMISC_ONLY 4 -static int pfkey_broadcast(struct sk_buff *skb, +static int pfkey_broadcast(struct sk_buff *skb, gfp_t allocation, int broadcast_flags, struct sock *one_sk, struct net *net) { @@ -269,7 +278,7 @@ rcu_read_unlock(); if (one_sk != NULL) - err = pfkey_broadcast_one(skb, &skb2, GFP_KERNEL, one_sk); + err = pfkey_broadcast_one(skb, &skb2, allocation, one_sk); kfree_skb(skb2); kfree_skb(skb); @@ -281,23 +290,36 @@ struct sadb_msg *hdr; int rc; + mutex_lock(&pfk->dump_lock); + if (!pfk->dump.dump) { + rc = 0; + goto out; + } + rc = pfk->dump.dump(pfk); - if (rc == -ENOBUFS) - return 0; + if (rc == -ENOBUFS) { + rc = 0; + goto out; + } if (pfk->dump.skb) { - if (!pfkey_can_dump(&pfk->sk)) - return 0; + if (!pfkey_can_dump(&pfk->sk)) { + rc = 0; + goto out; + } hdr = (struct sadb_msg *) pfk->dump.skb->data; hdr->sadb_msg_seq = 0; hdr->sadb_msg_errno = rc; - pfkey_broadcast(pfk->dump.skb, BROADCAST_ONE, + pfkey_broadcast(pfk->dump.skb, GFP_ATOMIC, BROADCAST_ONE, &pfk->sk, sock_net(&pfk->sk)); pfk->dump.skb = NULL; } pfkey_terminate_dump(pfk); + +out: + mutex_unlock(&pfk->dump_lock); return rc; } @@ -333,7 +355,7 @@ hdr->sadb_msg_len = (sizeof(struct sadb_msg) / sizeof(uint64_t)); - pfkey_broadcast(skb, BROADCAST_ONE, sk, sock_net(sk)); + pfkey_broadcast(skb, GFP_KERNEL, BROADCAST_ONE, sk, sock_net(sk)); return 0; } @@ -1374,7 +1396,7 @@ xfrm_state_put(x); - pfkey_broadcast(resp_skb, BROADCAST_ONE, sk, net); + pfkey_broadcast(resp_skb, GFP_KERNEL, BROADCAST_ONE, sk, net); return 0; } @@ -1461,7 +1483,7 @@ hdr->sadb_msg_seq = c->seq; hdr->sadb_msg_pid = c->portid; - pfkey_broadcast(skb, BROADCAST_ALL, NULL, xs_net(x)); + pfkey_broadcast(skb, GFP_ATOMIC, BROADCAST_ALL, NULL, xs_net(x)); return 0; } @@ -1574,7 +1596,7 @@ out_hdr->sadb_msg_reserved = 0; out_hdr->sadb_msg_seq = hdr->sadb_msg_seq; out_hdr->sadb_msg_pid = hdr->sadb_msg_pid; - pfkey_broadcast(out_skb, BROADCAST_ONE, sk, sock_net(sk)); + pfkey_broadcast(out_skb, GFP_ATOMIC, BROADCAST_ONE, sk, sock_net(sk)); return 0; } @@ -1679,8 +1701,8 @@ return -ENOBUFS; } - pfkey_broadcast(supp_skb, BROADCAST_REGISTERED, sk, sock_net(sk)); - + pfkey_broadcast(supp_skb, GFP_KERNEL, BROADCAST_REGISTERED, sk, + sock_net(sk)); return 0; } @@ -1698,7 +1720,8 @@ hdr->sadb_msg_errno = (uint8_t) 0; hdr->sadb_msg_len = (sizeof(struct sadb_msg) / sizeof(uint64_t)); - return pfkey_broadcast(skb, BROADCAST_ONE, sk, sock_net(sk)); + return pfkey_broadcast(skb, GFP_ATOMIC, BROADCAST_ONE, sk, + sock_net(sk)); } static int key_notify_sa_flush(const struct km_event *c) @@ -1719,7 +1742,7 @@ hdr->sadb_msg_len = (sizeof(struct sadb_msg) / sizeof(uint64_t)); hdr->sadb_msg_reserved = 0; - pfkey_broadcast(skb, BROADCAST_ALL, NULL, c->net); + pfkey_broadcast(skb, GFP_ATOMIC, BROADCAST_ALL, NULL, c->net); return 0; } @@ -1776,7 +1799,7 @@ out_hdr->sadb_msg_pid = pfk->dump.msg_portid; if (pfk->dump.skb) - pfkey_broadcast(pfk->dump.skb, BROADCAST_ONE, + pfkey_broadcast(pfk->dump.skb, GFP_ATOMIC, BROADCAST_ONE, &pfk->sk, sock_net(&pfk->sk)); pfk->dump.skb = out_skb; @@ -1802,19 +1825,26 @@ struct xfrm_address_filter *filter = NULL; struct pfkey_sock *pfk = pfkey_sk(sk); - if (pfk->dump.dump != NULL) + mutex_lock(&pfk->dump_lock); + if (pfk->dump.dump != NULL) { + mutex_unlock(&pfk->dump_lock); return -EBUSY; + } proto = pfkey_satype2proto(hdr->sadb_msg_satype); - if (proto == 0) + if (proto == 0) { + mutex_unlock(&pfk->dump_lock); return -EINVAL; + } if (ext_hdrs[SADB_X_EXT_FILTER - 1]) { struct sadb_x_filter *xfilter = ext_hdrs[SADB_X_EXT_FILTER - 1]; filter = kmalloc(sizeof(*filter), GFP_KERNEL); - if (filter == NULL) + if (filter == NULL) { + mutex_unlock(&pfk->dump_lock); return -ENOMEM; + } memcpy(&filter->saddr, &xfilter->sadb_x_filter_saddr, sizeof(xfrm_address_t)); @@ -1830,6 +1860,7 @@ pfk->dump.dump = pfkey_dump_sa; pfk->dump.done = pfkey_dump_sa_done; xfrm_state_walk_init(&pfk->dump.u.state, proto, filter); + mutex_unlock(&pfk->dump_lock); return pfkey_do_dump(pfk); } @@ -1856,7 +1887,7 @@ new_hdr->sadb_msg_errno = 0; } - pfkey_broadcast(skb, BROADCAST_ALL, NULL, sock_net(sk)); + pfkey_broadcast(skb, GFP_KERNEL, BROADCAST_ALL, NULL, sock_net(sk)); return 0; } @@ -1922,19 +1953,14 @@ /* addresses present only in tunnel mode */ if (t->mode == XFRM_MODE_TUNNEL) { - u8 *sa = (u8 *) (rq + 1); - int family, socklen; + int err; - family = pfkey_sockaddr_extract((struct sockaddr *)sa, - &t->saddr); - if (!family) - return -EINVAL; - - socklen = pfkey_sockaddr_len(family); - if (pfkey_sockaddr_extract((struct sockaddr *)(sa + socklen), - &t->id.daddr) != family) - return -EINVAL; - t->encap_family = family; + err = parse_sockaddr_pair( + (struct sockaddr *)(rq + 1), + rq->sadb_x_ipsecrequest_len - sizeof(*rq), + &t->saddr, &t->id.daddr, &t->encap_family); + if (err) + return err; } else t->encap_family = xp->family; @@ -1954,7 +1980,11 @@ if (pol->sadb_x_policy_len * 8 < sizeof(struct sadb_x_policy)) return -EINVAL; - while (len >= sizeof(struct sadb_x_ipsecrequest)) { + while (len >= sizeof(*rq)) { + if (len < rq->sadb_x_ipsecrequest_len || + rq->sadb_x_ipsecrequest_len < sizeof(*rq)) + return -EINVAL; + if ((err = parse_ipsecrequest(xp, rq)) < 0) return err; len -= rq->sadb_x_ipsecrequest_len; @@ -2190,7 +2220,7 @@ out_hdr->sadb_msg_errno = 0; out_hdr->sadb_msg_seq = c->seq; out_hdr->sadb_msg_pid = c->portid; - pfkey_broadcast(out_skb, BROADCAST_ALL, NULL, xp_net(xp)); + pfkey_broadcast(out_skb, GFP_ATOMIC, BROADCAST_ALL, NULL, xp_net(xp)); return 0; } @@ -2410,14 +2440,13 @@ out_hdr->sadb_msg_errno = 0; out_hdr->sadb_msg_seq = hdr->sadb_msg_seq; out_hdr->sadb_msg_pid = hdr->sadb_msg_pid; - pfkey_broadcast(out_skb, BROADCAST_ONE, sk, xp_net(xp)); + pfkey_broadcast(out_skb, GFP_ATOMIC, BROADCAST_ONE, sk, xp_net(xp)); err = 0; out: return err; } -#ifdef CONFIG_NET_KEY_MIGRATE static int pfkey_sockaddr_pair_size(sa_family_t family) { return PFKEY_ALIGN8(pfkey_sockaddr_len(family) * 2); @@ -2429,7 +2458,7 @@ { int af, socklen; - if (ext_len < pfkey_sockaddr_pair_size(sa->sa_family)) + if (ext_len < 2 || ext_len < pfkey_sockaddr_pair_size(sa->sa_family)) return -EINVAL; af = pfkey_sockaddr_extract(sa, saddr); @@ -2445,6 +2474,7 @@ return 0; } +#ifdef CONFIG_NET_KEY_MIGRATE static int ipsecrequests_to_migrate(struct sadb_x_ipsecrequest *rq1, int len, struct xfrm_migrate *m) { @@ -2452,13 +2482,14 @@ struct sadb_x_ipsecrequest *rq2; int mode; - if (len <= sizeof(struct sadb_x_ipsecrequest) || - len < rq1->sadb_x_ipsecrequest_len) + if (len < sizeof(*rq1) || + len < rq1->sadb_x_ipsecrequest_len || + rq1->sadb_x_ipsecrequest_len < sizeof(*rq1)) return -EINVAL; /* old endoints */ err = parse_sockaddr_pair((struct sockaddr *)(rq1 + 1), - rq1->sadb_x_ipsecrequest_len, + rq1->sadb_x_ipsecrequest_len - sizeof(*rq1), &m->old_saddr, &m->old_daddr, &m->old_family); if (err) @@ -2467,13 +2498,14 @@ rq2 = (struct sadb_x_ipsecrequest *)((u8 *)rq1 + rq1->sadb_x_ipsecrequest_len); len -= rq1->sadb_x_ipsecrequest_len; - if (len <= sizeof(struct sadb_x_ipsecrequest) || - len < rq2->sadb_x_ipsecrequest_len) + if (len <= sizeof(*rq2) || + len < rq2->sadb_x_ipsecrequest_len || + rq2->sadb_x_ipsecrequest_len < sizeof(*rq2)) return -EINVAL; /* new endpoints */ err = parse_sockaddr_pair((struct sockaddr *)(rq2 + 1), - rq2->sadb_x_ipsecrequest_len, + rq2->sadb_x_ipsecrequest_len - sizeof(*rq2), &m->new_saddr, &m->new_daddr, &m->new_family); if (err) @@ -2664,7 +2696,7 @@ out_hdr->sadb_msg_pid = pfk->dump.msg_portid; if (pfk->dump.skb) - pfkey_broadcast(pfk->dump.skb, BROADCAST_ONE, + pfkey_broadcast(pfk->dump.skb, GFP_ATOMIC, BROADCAST_ONE, &pfk->sk, sock_net(&pfk->sk)); pfk->dump.skb = out_skb; @@ -2688,14 +2720,18 @@ { struct pfkey_sock *pfk = pfkey_sk(sk); - if (pfk->dump.dump != NULL) + mutex_lock(&pfk->dump_lock); + if (pfk->dump.dump != NULL) { + mutex_unlock(&pfk->dump_lock); return -EBUSY; + } pfk->dump.msg_version = hdr->sadb_msg_version; pfk->dump.msg_portid = hdr->sadb_msg_pid; pfk->dump.dump = pfkey_dump_sp; pfk->dump.done = pfkey_dump_sp_done; xfrm_policy_walk_init(&pfk->dump.u.policy, XFRM_POLICY_TYPE_MAIN); + mutex_unlock(&pfk->dump_lock); return pfkey_do_dump(pfk); } @@ -2717,7 +2753,7 @@ hdr->sadb_msg_satype = SADB_SATYPE_UNSPEC; hdr->sadb_msg_len = (sizeof(struct sadb_msg) / sizeof(uint64_t)); hdr->sadb_msg_reserved = 0; - pfkey_broadcast(skb_out, BROADCAST_ALL, NULL, c->net); + pfkey_broadcast(skb_out, GFP_ATOMIC, BROADCAST_ALL, NULL, c->net); return 0; } @@ -2779,7 +2815,7 @@ void *ext_hdrs[SADB_EXT_MAX]; int err; - pfkey_broadcast(skb_clone(skb, GFP_KERNEL), + pfkey_broadcast(skb_clone(skb, GFP_KERNEL), GFP_KERNEL, BROADCAST_PROMISC_ONLY, NULL, sock_net(sk)); memset(ext_hdrs, 0, sizeof(ext_hdrs)); @@ -3001,7 +3037,8 @@ out_hdr->sadb_msg_seq = 0; out_hdr->sadb_msg_pid = 0; - pfkey_broadcast(out_skb, BROADCAST_REGISTERED, NULL, xs_net(x)); + pfkey_broadcast(out_skb, GFP_ATOMIC, BROADCAST_REGISTERED, NULL, + xs_net(x)); return 0; } @@ -3191,7 +3228,8 @@ xfrm_ctx->ctx_len); } - return pfkey_broadcast(skb, BROADCAST_REGISTERED, NULL, xs_net(x)); + return pfkey_broadcast(skb, GFP_ATOMIC, BROADCAST_REGISTERED, NULL, + xs_net(x)); } static struct xfrm_policy *pfkey_compile_policy(struct sock *sk, int opt, @@ -3389,7 +3427,8 @@ n_port->sadb_x_nat_t_port_port = sport; n_port->sadb_x_nat_t_port_reserved = 0; - return pfkey_broadcast(skb, BROADCAST_REGISTERED, NULL, xs_net(x)); + return pfkey_broadcast(skb, GFP_ATOMIC, BROADCAST_REGISTERED, NULL, + xs_net(x)); } #ifdef CONFIG_NET_KEY_MIGRATE @@ -3581,7 +3620,7 @@ } /* broadcast migrate message to sockets */ - pfkey_broadcast(skb, BROADCAST_ALL, NULL, &init_net); + pfkey_broadcast(skb, GFP_ATOMIC, BROADCAST_ALL, NULL, &init_net); return 0; diff -u linux-4.4.0/net/l2tp/l2tp_ip6.c linux-4.4.0/net/l2tp/l2tp_ip6.c --- linux-4.4.0/net/l2tp/l2tp_ip6.c +++ linux-4.4.0/net/l2tp/l2tp_ip6.c @@ -642,7 +642,8 @@ return err < 0 ? err : len; do_confirm: - dst_confirm(dst); + if (msg->msg_flags & MSG_PROBE) + dst_confirm_neigh(dst, &fl6.daddr); if (!(msg->msg_flags & MSG_PROBE) || len) goto back_from_confirm; err = 0; diff -u linux-4.4.0/net/netfilter/ipvs/ip_vs_core.c linux-4.4.0/net/netfilter/ipvs/ip_vs_core.c --- linux-4.4.0/net/netfilter/ipvs/ip_vs_core.c +++ linux-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-4.4.0/net/openvswitch/conntrack.c linux-4.4.0/net/openvswitch/conntrack.c --- linux-4.4.0/net/openvswitch/conntrack.c +++ linux-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-4.4.0/net/packet/af_packet.c linux-4.4.0/net/packet/af_packet.c --- linux-4.4.0/net/packet/af_packet.c +++ linux-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-4.4.0/net/sched/sch_api.c linux-4.4.0/net/sched/sch_api.c --- linux-4.4.0/net/sched/sch_api.c +++ linux-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-4.4.0/net/sched/sch_hhf.c linux-4.4.0/net/sched/sch_hhf.c --- linux-4.4.0/net/sched/sch_hhf.c +++ linux-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-4.4.0/net/sched/sch_mqprio.c linux-4.4.0/net/sched/sch_mqprio.c --- linux-4.4.0/net/sched/sch_mqprio.c +++ linux-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-4.4.0/net/sched/sch_sfq.c linux-4.4.0/net/sched/sch_sfq.c --- linux-4.4.0/net/sched/sch_sfq.c +++ linux-4.4.0/net/sched/sch_sfq.c @@ -434,6 +434,7 @@ qdisc_drop(head, sch); slot_queue_add(slot, skb); + qdisc_tree_reduce_backlog(sch, 0, delta); return NET_XMIT_CN; } @@ -465,8 +466,10 @@ /* Return Congestion Notification only if we dropped a packet * from this flow. */ - if (qlen != slot->qlen) + if (qlen != slot->qlen) { + qdisc_tree_reduce_backlog(sch, 0, dropped - qdisc_pkt_len(skb)); return NET_XMIT_CN; + } /* As we dropped a packet, better let upper stack know this */ qdisc_tree_reduce_backlog(sch, 1, dropped); @@ -742,9 +745,10 @@ q->ht = sfq_alloc(sizeof(q->ht[0]) * q->divisor); q->slots = sfq_alloc(sizeof(q->slots[0]) * q->maxflows); if (!q->ht || !q->slots) { - sfq_destroy(sch); + /* Note: sfq_destroy() will be called by our caller */ return -ENOMEM; } + for (i = 0; i < q->divisor; i++) q->ht[i] = SFQ_EMPTY_SLOT; diff -u linux-4.4.0/net/sctp/ipv6.c linux-4.4.0/net/sctp/ipv6.c --- linux-4.4.0/net/sctp/ipv6.c +++ linux-4.4.0/net/sctp/ipv6.c @@ -510,7 +510,9 @@ { addr->sa.sa_family = AF_INET6; addr->v6.sin6_port = port; + addr->v6.sin6_flowinfo = 0; addr->v6.sin6_addr = *saddr; + addr->v6.sin6_scope_id = 0; } /* Compare addresses exactly. diff -u linux-4.4.0/net/sctp/output.c linux-4.4.0/net/sctp/output.c --- linux-4.4.0/net/sctp/output.c +++ linux-4.4.0/net/sctp/output.c @@ -380,6 +380,7 @@ { struct sctp_transport *tp = packet->transport; struct sctp_association *asoc = tp->asoc; + int confirm; struct sctphdr *sh; struct sk_buff *nskb; struct sctp_chunk *chunk, *tmp; @@ -592,7 +593,14 @@ pr_debug("***sctp_transmit_packet*** skb->len:%d\n", nskb->len); nskb->ignore_df = packet->ipfragok; - tp->af_specific->sctp_xmit(nskb, tp); + confirm = tp->dst_pending_confirm; + if (confirm) + skb_set_dst_pending_confirm(nskb, 1); + /* neighbour should be confirmed on successful transmission or + * positive error + */ + if (tp->af_specific->sctp_xmit(nskb, tp) >= 0 && confirm) + tp->dst_pending_confirm = 0; out: sctp_packet_reset(packet); diff -u linux-4.4.0/net/sctp/socket.c linux-4.4.0/net/sctp/socket.c --- linux-4.4.0/net/sctp/socket.c +++ linux-4.4.0/net/sctp/socket.c @@ -590,7 +590,7 @@ list_for_each_entry(trans, &asoc->peer.transport_addr_list, transports) { /* Clear the source and route cache */ - dst_release(trans->dst); + sctp_transport_dst_release(trans); trans->cwnd = min(4*asoc->pathmtu, max_t(__u32, 2*asoc->pathmtu, 4380)); trans->ssthresh = asoc->peer.i.a_rwnd; @@ -841,7 +841,7 @@ */ list_for_each_entry(transport, &asoc->peer.transport_addr_list, transports) { - dst_release(transport->dst); + sctp_transport_dst_release(transport); sctp_transport_route(transport, NULL, sctp_sk(asoc->base.sk)); } diff -u linux-4.4.0/net/tipc/netlink_compat.c linux-4.4.0/net/tipc/netlink_compat.c --- linux-4.4.0/net/tipc/netlink_compat.c +++ linux-4.4.0/net/tipc/netlink_compat.c @@ -258,13 +258,15 @@ arg = nlmsg_new(0, GFP_KERNEL); if (!arg) { kfree_skb(msg->rep); + msg->rep = NULL; return -ENOMEM; } err = __tipc_nl_compat_dumpit(cmd, msg, arg); - if (err) + if (err) { kfree_skb(msg->rep); - + msg->rep = NULL; + } kfree_skb(arg); return err; diff -u linux-4.4.0/net/wireless/nl80211.c linux-4.4.0/net/wireless/nl80211.c --- linux-4.4.0/net/wireless/nl80211.c +++ linux-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++; /* @@ -9782,6 +9786,9 @@ if (err) return err; + if (!tb[NL80211_REKEY_DATA_REPLAY_CTR] || !tb[NL80211_REKEY_DATA_KEK] || + !tb[NL80211_REKEY_DATA_KCK]) + return -EINVAL; if (nla_len(tb[NL80211_REKEY_DATA_REPLAY_CTR]) != NL80211_REPLAY_CTR_LEN) return -ERANGE; if (nla_len(tb[NL80211_REKEY_DATA_KEK]) != NL80211_KEK_LEN) diff -u linux-4.4.0/net/xfrm/xfrm_policy.c linux-4.4.0/net/xfrm/xfrm_policy.c --- linux-4.4.0/net/xfrm/xfrm_policy.c +++ linux-4.4.0/net/xfrm/xfrm_policy.c @@ -1220,7 +1220,7 @@ } static struct xfrm_policy *xfrm_sk_policy_lookup(const struct sock *sk, int dir, - const struct flowi *fl) + const struct flowi *fl, u16 family) { struct xfrm_policy *pol; struct net *net = sock_net(sk); @@ -1229,8 +1229,7 @@ read_lock_bh(&net->xfrm.xfrm_policy_lock); pol = rcu_dereference(sk->sk_policy[dir]); if (pol != NULL) { - bool match = xfrm_selector_match(&pol->selector, fl, - sk->sk_family); + bool match = xfrm_selector_match(&pol->selector, fl, family); int err = 0; if (match) { @@ -2178,7 +2177,7 @@ sk = sk_const_to_full_sk(sk); if (sk && sk->sk_policy[XFRM_POLICY_OUT]) { num_pols = 1; - pols[0] = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl); + pols[0] = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl, family); err = xfrm_expand_policies(fl, family, pols, &num_pols, &num_xfrms); if (err < 0) @@ -2457,7 +2456,7 @@ pol = NULL; sk = sk_to_full_sk(sk); if (sk && sk->sk_policy[dir]) { - pol = xfrm_sk_policy_lookup(sk, dir, &fl); + pol = xfrm_sk_policy_lookup(sk, dir, &fl, family); if (IS_ERR(pol)) { XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR); return 0; @@ -2781,6 +2780,23 @@ return dst->path->ops->neigh_lookup(dst, skb, daddr); } +static void xfrm_confirm_neigh(const struct dst_entry *dst, const void *daddr) +{ + const struct dst_entry *path = dst->path; + + for (; dst != path; dst = dst->child) { + const struct xfrm_state *xfrm = dst->xfrm; + + if (xfrm->props.mode == XFRM_MODE_TRANSPORT) + continue; + if (xfrm->type->flags & XFRM_TYPE_REMOTE_COADDR) + daddr = xfrm->coaddr; + else if (!(xfrm->type->flags & XFRM_TYPE_LOCAL_COADDR)) + daddr = &xfrm->id.daddr; + } + path->ops->confirm_neigh(path, daddr); +} + int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo) { int err = 0; @@ -2807,6 +2823,8 @@ dst_ops->link_failure = xfrm_link_failure; if (likely(dst_ops->neigh_lookup == NULL)) dst_ops->neigh_lookup = xfrm_neigh_lookup; + if (likely(!dst_ops->confirm_neigh)) + dst_ops->confirm_neigh = xfrm_confirm_neigh; if (likely(afinfo->garbage_collect == NULL)) afinfo->garbage_collect = xfrm_garbage_collect_deferred; rcu_assign_pointer(xfrm_policy_afinfo[afinfo->family], afinfo); @@ -3280,9 +3298,15 @@ struct xfrm_state *x_new[XFRM_MAX_DEPTH]; struct xfrm_migrate *mp; + /* Stage 0 - sanity checks */ if ((err = xfrm_migrate_check(m, num_migrate)) < 0) goto out; + if (dir >= XFRM_POLICY_MAX) { + err = -EINVAL; + goto out; + } + /* Stage 1 - find policy */ if ((pol = xfrm_migrate_policy_find(sel, dir, type, net)) == NULL) { err = -ENOENT; diff -u linux-4.4.0/security/apparmor/lsm.c linux-4.4.0/security/apparmor/lsm.c --- linux-4.4.0/security/apparmor/lsm.c +++ linux-4.4.0/security/apparmor/lsm.c @@ -41,7 +41,7 @@ #include "include/mount.h" /* Flag indicating whether initialization completed */ -int apparmor_initialized __initdata; +int apparmor_initialized; DEFINE_PER_CPU(struct aa_buffers, aa_buffers); @@ -1409,74 +1409,83 @@ /* set global flag turning off the ability to load policy */ static int param_set_aalockpolicy(const char *val, const struct kernel_param *kp) { - if (!policy_admin_capable(NULL)) + if (!apparmor_enabled) + return -EINVAL; + if (apparmor_initialized && !policy_admin_capable(NULL)) return -EPERM; return param_set_bool(val, kp); } static int param_get_aalockpolicy(char *buffer, const struct kernel_param *kp) { - if (!policy_view_capable(NULL)) - return -EPERM; if (!apparmor_enabled) return -EINVAL; + if (apparmor_initialized && !policy_view_capable(NULL)) + return -EPERM; return param_get_bool(buffer, kp); } static int param_set_aabool(const char *val, const struct kernel_param *kp) { - if (!policy_admin_capable(NULL)) - return -EPERM; if (!apparmor_enabled) return -EINVAL; + if (apparmor_initialized && !policy_admin_capable(NULL)) + return -EPERM; return param_set_bool(val, kp); } static int param_get_aabool(char *buffer, const struct kernel_param *kp) { - if (!policy_view_capable(NULL)) - return -EPERM; if (!apparmor_enabled) return -EINVAL; + if (apparmor_initialized && !policy_view_capable(NULL)) + return -EPERM; return param_get_bool(buffer, kp); } static int param_set_aauint(const char *val, const struct kernel_param *kp) { - if (!policy_admin_capable(NULL)) - return -EPERM; + int error; + if (!apparmor_enabled) return -EINVAL; - return param_set_uint(val, kp); + if (apparmor_initialized && !policy_admin_capable(NULL)) + return -EPERM; + + error = param_set_uint(val, kp); + pr_info("AppArmor: buffer size set to %d bytes\n", aa_g_path_max); + + return error; } static int param_get_aauint(char *buffer, const struct kernel_param *kp) { - if (!policy_view_capable(NULL)) - return -EPERM; if (!apparmor_enabled) return -EINVAL; + if (apparmor_initialized && !policy_view_capable(NULL)) + return -EPERM; return param_get_uint(buffer, kp); } static int param_get_audit(char *buffer, struct kernel_param *kp) { - if (!policy_view_capable(NULL)) - return -EPERM; if (!apparmor_enabled) return -EINVAL; + if (apparmor_initialized && !policy_view_capable(NULL)) + return -EPERM; return sprintf(buffer, "%s", audit_mode_names[aa_g_audit]); } static int param_set_audit(const char *val, struct kernel_param *kp) { int i; - if (!policy_admin_capable(NULL)) - return -EPERM; + if (!apparmor_enabled) return -EINVAL; if (!val) return -EINVAL; + if (apparmor_initialized && !policy_admin_capable(NULL)) + return -EPERM; for (i = 0; i < AUDIT_MAX_INDEX; i++) { if (strcmp(val, audit_mode_names[i]) == 0) { @@ -1490,10 +1499,10 @@ static int param_get_mode(char *buffer, struct kernel_param *kp) { - if (!policy_view_capable(NULL)) - return -EPERM; if (!apparmor_enabled) return -EINVAL; + if (apparmor_initialized && !policy_view_capable(NULL)) + return -EPERM; return sprintf(buffer, "%s", aa_profile_mode_names[aa_g_profile_mode]); } @@ -1501,12 +1510,13 @@ static int param_set_mode(const char *val, struct kernel_param *kp) { int i; - if (!policy_admin_capable(NULL)) - return -EPERM; + if (!apparmor_enabled) return -EINVAL; if (!val) return -EINVAL; + if (apparmor_initialized && !policy_admin_capable(NULL)) + return -EPERM; for (i = 0; i < APPARMOR_MODE_NAMES_MAX_INDEX; i++) { if (strcmp(val, aa_profile_mode_names[i]) == 0) { diff -u linux-4.4.0/security/keys/key.c linux-4.4.0/security/keys/key.c --- linux-4.4.0/security/keys/key.c +++ linux-4.4.0/security/keys/key.c @@ -298,6 +298,8 @@ key->flags |= 1 << KEY_FLAG_TRUSTED; if (flags & KEY_ALLOC_BUILT_IN) key->flags |= 1 << KEY_FLAG_BUILTIN; + if (flags & KEY_ALLOC_UID_KEYRING) + key->flags |= 1 << KEY_FLAG_UID_KEYRING; #ifdef KEY_DEBUGGING key->magic = KEY_DEBUG_MAGIC; diff -u linux-4.4.0/security/keys/keyctl.c linux-4.4.0/security/keys/keyctl.c --- linux-4.4.0/security/keys/keyctl.c +++ linux-4.4.0/security/keys/keyctl.c @@ -738,6 +738,11 @@ key = key_ref_to_ptr(key_ref); + if (test_bit(KEY_FLAG_NEGATIVE, &key->flags)) { + ret = -ENOKEY; + goto error2; + } + /* see if we can read it directly */ ret = key_permission(key_ref, KEY_NEED_READ); if (ret == 0) diff -u linux-4.4.0/security/keys/process_keys.c linux-4.4.0/security/keys/process_keys.c --- linux-4.4.0/security/keys/process_keys.c +++ linux-4.4.0/security/keys/process_keys.c @@ -76,7 +76,9 @@ if (IS_ERR(uid_keyring)) { uid_keyring = keyring_alloc(buf, user->uid, INVALID_GID, cred, user_keyring_perm, - KEY_ALLOC_IN_QUOTA, NULL); + KEY_ALLOC_UID_KEYRING | + KEY_ALLOC_IN_QUOTA, + NULL); if (IS_ERR(uid_keyring)) { ret = PTR_ERR(uid_keyring); goto error; @@ -92,7 +94,9 @@ session_keyring = keyring_alloc(buf, user->uid, INVALID_GID, cred, user_keyring_perm, - KEY_ALLOC_IN_QUOTA, NULL); + KEY_ALLOC_UID_KEYRING | + KEY_ALLOC_IN_QUOTA, + NULL); if (IS_ERR(session_keyring)) { ret = PTR_ERR(session_keyring); goto error_release; diff -u linux-4.4.0/snapcraft.yaml linux-4.4.0/snapcraft.yaml --- linux-4.4.0/snapcraft.yaml +++ linux-4.4.0/snapcraft.yaml @@ -31,0 +32 @@ + - dpkg-dev diff -u linux-4.4.0/sound/core/control.c linux-4.4.0/sound/core/control.c --- linux-4.4.0/sound/core/control.c +++ linux-4.4.0/sound/core/control.c @@ -1126,7 +1126,7 @@ mutex_lock(&ue->card->user_ctl_lock); change = ue->tlv_data_size != size; if (!change) - change = memcmp(ue->tlv_data, new_data, size); + change = memcmp(ue->tlv_data, new_data, size) != 0; kfree(ue->tlv_data); ue->tlv_data = new_data; ue->tlv_data_size = size; diff -u linux-4.4.0/sound/core/seq/seq_clientmgr.c linux-4.4.0/sound/core/seq/seq_clientmgr.c --- linux-4.4.0/sound/core/seq/seq_clientmgr.c +++ linux-4.4.0/sound/core/seq/seq_clientmgr.c @@ -1530,19 +1530,14 @@ void __user *arg) { struct snd_seq_queue_info info; - int result; struct snd_seq_queue *q; if (copy_from_user(&info, arg, sizeof(info))) return -EFAULT; - result = snd_seq_queue_alloc(client->number, info.locked, info.flags); - if (result < 0) - return result; - - q = queueptr(result); - if (q == NULL) - return -EINVAL; + q = snd_seq_queue_alloc(client->number, info.locked, info.flags); + if (IS_ERR(q)) + return PTR_ERR(q); info.queue = q->queue; info.locked = q->locked; @@ -1552,7 +1547,7 @@ if (! info.name[0]) snprintf(info.name, sizeof(info.name), "Queue-%d", q->queue); strlcpy(q->name, info.name, sizeof(q->name)); - queuefree(q); + snd_use_lock_free(&q->use_lock); if (copy_to_user(arg, &info, sizeof(info))) return -EFAULT; diff -u linux-4.4.0/sound/core/seq/seq_queue.c linux-4.4.0/sound/core/seq/seq_queue.c --- linux-4.4.0/sound/core/seq/seq_queue.c +++ linux-4.4.0/sound/core/seq/seq_queue.c @@ -184,22 +184,26 @@ static void queue_use(struct snd_seq_queue *queue, int client, int use); /* allocate a new queue - - * return queue index value or negative value for error + * return pointer to new queue or ERR_PTR(-errno) for error + * The new queue's use_lock is set to 1. It is the caller's responsibility to + * call snd_use_lock_free(&q->use_lock). */ -int snd_seq_queue_alloc(int client, int locked, unsigned int info_flags) +struct snd_seq_queue *snd_seq_queue_alloc(int client, int locked, unsigned int info_flags) { struct snd_seq_queue *q; q = queue_new(client, locked); if (q == NULL) - return -ENOMEM; + return ERR_PTR(-ENOMEM); q->info_flags = info_flags; queue_use(q, client, 1); + snd_use_lock_use(&q->use_lock); if (queue_list_add(q) < 0) { + snd_use_lock_free(&q->use_lock); queue_delete(q); - return -ENOMEM; + return ERR_PTR(-ENOMEM); } - return q->queue; + return q; } /* delete a queue - queue must be owned by the client */ diff -u linux-4.4.0/sound/pci/au88x0/au88x0_core.c linux-4.4.0/sound/pci/au88x0/au88x0_core.c --- linux-4.4.0/sound/pci/au88x0/au88x0_core.c +++ linux-4.4.0/sound/pci/au88x0/au88x0_core.c @@ -2150,8 +2150,7 @@ stream->resources, en, VORTEX_RESOURCE_SRC)) < 0) { memset(stream->resources, 0, - sizeof(unsigned char) * - VORTEX_RESOURCE_LAST); + sizeof(stream->resources)); return -EBUSY; } if (stream->type != VORTEX_PCM_A3D) { @@ -2161,7 +2160,7 @@ VORTEX_RESOURCE_MIXIN)) < 0) { memset(stream->resources, 0, - sizeof(unsigned char) * VORTEX_RESOURCE_LAST); + sizeof(stream->resources)); return -EBUSY; } } @@ -2174,8 +2173,7 @@ stream->resources, en, VORTEX_RESOURCE_A3D)) < 0) { memset(stream->resources, 0, - sizeof(unsigned char) * - VORTEX_RESOURCE_LAST); + sizeof(stream->resources)); dev_err(vortex->card->dev, "out of A3D sources. Sorry\n"); return -EBUSY; @@ -2289,8 +2287,7 @@ VORTEX_RESOURCE_MIXOUT)) < 0) { memset(stream->resources, 0, - sizeof(unsigned char) * - VORTEX_RESOURCE_LAST); + sizeof(stream->resources)); return -EBUSY; } if ((src[i] = @@ -2298,8 +2295,7 @@ stream->resources, en, VORTEX_RESOURCE_SRC)) < 0) { memset(stream->resources, 0, - sizeof(unsigned char) * - VORTEX_RESOURCE_LAST); + sizeof(stream->resources)); return -EBUSY; } } diff -u linux-4.4.0/sound/pci/hda/patch_conexant.c linux-4.4.0/sound/pci/hda/patch_conexant.c --- linux-4.4.0/sound/pci/hda/patch_conexant.c +++ linux-4.4.0/sound/pci/hda/patch_conexant.c @@ -854,6 +854,7 @@ SND_PCI_QUIRK(0x17aa, 0x390b, "Lenovo G50-80", CXT_FIXUP_STEREO_DMIC), SND_PCI_QUIRK(0x17aa, 0x3975, "Lenovo U300s", CXT_FIXUP_STEREO_DMIC), SND_PCI_QUIRK(0x17aa, 0x3977, "Lenovo IdeaPad U310", CXT_FIXUP_STEREO_DMIC), + SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo G50-70", CXT_FIXUP_STEREO_DMIC), SND_PCI_QUIRK(0x17aa, 0x397b, "Lenovo S205", CXT_FIXUP_STEREO_DMIC), SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", CXT_FIXUP_THINKPAD_ACPI), SND_PCI_QUIRK(0x1c06, 0x2011, "Lemote A1004", CXT_PINCFG_LEMOTE_A1004), diff -u linux-4.4.0/sound/pci/hda/patch_realtek.c linux-4.4.0/sound/pci/hda/patch_realtek.c --- linux-4.4.0/sound/pci/hda/patch_realtek.c +++ linux-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-4.4.0/sound/soc/soc-compress.c linux-4.4.0/sound/soc/soc-compress.c --- linux-4.4.0/sound/soc/soc-compress.c +++ linux-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-4.4.0/sound/soc/soc-pcm.c linux-4.4.0/sound/soc/soc-pcm.c --- linux-4.4.0/sound/soc/soc-pcm.c +++ linux-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-4.4.0/sound/usb/endpoint.c linux-4.4.0/sound/usb/endpoint.c --- linux-4.4.0/sound/usb/endpoint.c +++ linux-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-4.4.0/sound/usb/mixer.c linux-4.4.0/sound/usb/mixer.c --- linux-4.4.0/sound/usb/mixer.c +++ linux-4.4.0/sound/usb/mixer.c @@ -541,6 +541,8 @@ if (size < sizeof(scale)) return -ENOMEM; + if (cval->min_mute) + scale[0] = SNDRV_CTL_TLVT_DB_MINMAX_MUTE; scale[2] = cval->dBmin; scale[3] = cval->dBmax; if (copy_to_user(_tlv, scale, sizeof(scale))) diff -u linux-4.4.0/sound/usb/mixer_quirks.c linux-4.4.0/sound/usb/mixer_quirks.c --- linux-4.4.0/sound/usb/mixer_quirks.c +++ linux-4.4.0/sound/usb/mixer_quirks.c @@ -1874,4 +1874,10 @@ snd_dragonfly_quirk_db_scale(mixer, cval, kctl); break; + /* lowest playback value is muted on C-Media devices */ + case USB_ID(0x0d8c, 0x000c): + case USB_ID(0x0d8c, 0x0014): + if (strstr(kctl->id.name, "Playback")) + cval->min_mute = 1; + break; } } diff -u linux-4.4.0/sound/usb/quirks.c linux-4.4.0/sound/usb/quirks.c --- linux-4.4.0/sound/usb/quirks.c +++ linux-4.4.0/sound/usb/quirks.c @@ -1143,12 +1143,12 @@ case USB_ID(0x0556, 0x0014): /* Phoenix Audio TMX320VC */ case USB_ID(0x05A3, 0x9420): /* ELP HD USB Camera */ case USB_ID(0x074D, 0x3553): /* Outlaw RR2150 (Micronas UAC3553B) */ + case USB_ID(0x1395, 0x740a): /* Sennheiser DECT */ case USB_ID(0x1901, 0x0191): /* GE B850V3 CP2114 audio interface */ case USB_ID(0x1de7, 0x0013): /* Phoenix Audio MT202exe */ case USB_ID(0x1de7, 0x0014): /* Phoenix Audio TMX320 */ case USB_ID(0x1de7, 0x0114): /* Phoenix Audio MT202pcs */ case USB_ID(0x21B4, 0x0081): /* AudioQuest DragonFly */ - case USB_ID(0x1395, 0x740a): /* Sennheiser Officerunner */ return true; } return false; diff -u linux-4.4.0/tools/perf/Makefile.perf linux-4.4.0/tools/perf/Makefile.perf --- linux-4.4.0/tools/perf/Makefile.perf +++ linux-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-4.4.0/tools/perf/util/event.c linux-4.4.0/tools/perf/util/event.c --- linux-4.4.0/tools/perf/util/event.c +++ linux-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-4.4.0/tools/perf/util/intel-pt-decoder/intel-pt-decoder.c linux-4.4.0/tools/perf/util/intel-pt-decoder/intel-pt-decoder.c --- linux-4.4.0/tools/perf/util/intel-pt-decoder/intel-pt-decoder.c +++ linux-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-4.4.0/tools/perf/util/parse-events.c linux-4.4.0/tools/perf/util/parse-events.c --- linux-4.4.0/tools/perf/util/parse-events.c +++ linux-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-4.4.0/tools/perf/util/pmu.c linux-4.4.0/tools/perf/util/pmu.c --- linux-4.4.0/tools/perf/util/pmu.c +++ linux-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-4.4.0/tools/perf/util/symbol-elf.c linux-4.4.0/tools/perf/util/symbol-elf.c --- linux-4.4.0/tools/perf/util/symbol-elf.c +++ linux-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-4.4.0/ubuntu/Kconfig linux-4.4.0/ubuntu/Kconfig --- linux-4.4.0/ubuntu/Kconfig +++ linux-4.4.0/ubuntu/Kconfig @@ -27,4 +27,18 @@ ## ## +source "ubuntu/opennsl/Kconfig" +## +## +## +## +## +## +source "ubuntu/bnxt/Kconfig" +## +## +## +## +## +## endmenu diff -u linux-4.4.0/ubuntu/Makefile linux-4.4.0/ubuntu/Makefile --- linux-4.4.0/ubuntu/Makefile +++ linux-4.4.0/ubuntu/Makefile @@ -40,6 +40,16 @@ ## ## ## +obj-$(CONFIG_OPENNSL) += opennsl/ +## +## +## +## +obj-$(CONFIG_BNXT_BPO) += bnxt/ +## +## +## +## ## ## diff -u linux-4.4.0/ubuntu/rsi/rsi_91x_mac80211.c linux-4.4.0/ubuntu/rsi/rsi_91x_mac80211.c --- linux-4.4.0/ubuntu/rsi/rsi_91x_mac80211.c +++ linux-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-4.4.0/ubuntu/rsi/rsi_91x_mgmt.c linux-4.4.0/ubuntu/rsi/rsi_91x_mgmt.c --- linux-4.4.0/ubuntu/rsi/rsi_91x_mgmt.c +++ linux-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-4.4.0/ubuntu/rsi/rsi_mgmt.h linux-4.4.0/ubuntu/rsi/rsi_mgmt.h --- linux-4.4.0/ubuntu/rsi/rsi_mgmt.h +++ linux-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-4.4.0.orig/Documentation/prctl/seccomp_filter.txt +++ linux-4.4.0/Documentation/prctl/seccomp_filter.txt @@ -138,6 +138,15 @@ allow use of ptrace, even of other sandboxed processes, without extreme care; ptracers can use this mechanism to escape.) +``SECCOMP_RET_LOG``: + Results in the system call being executed after it is logged. This + should be used by application developers to learn which syscalls their + application needs without having to iterate through multiple test and + development cycles to build the list. + + This action will only be logged if "log" is present in the + actions_logged sysctl string. + SECCOMP_RET_ALLOW: Results in the system call being executed. @@ -166,7 +175,41 @@ and a more generic example of a higher level macro interface for BPF program generation. +Sysctls +======= + +Seccomp's sysctl files can be found in the ``/proc/sys/kernel/seccomp/`` +directory. Here's a description of each file in that directory: +``actions_avail``: + A read-only ordered list of seccomp return values (refer to the + ``SECCOMP_RET_*`` macros above) in string form. The ordering, from + left-to-right, is the least permissive return value to the most + permissive return value. + + The list represents the set of seccomp return values supported + by the kernel. A userspace program may use this list to + determine if the actions found in the ``seccomp.h``, when the + program was built, differs from the set of actions actually + supported in the current running kernel. + +``actions_logged``: + A read-write ordered list of seccomp return values (refer to the + ``SECCOMP_RET_*`` macros above) that are allowed to be logged. Writes + to the file do not need to be in ordered form but reads from the file + will be ordered in the same way as the actions_avail sysctl. + + It is important to note that the value of ``actions_logged`` does not + prevent certain actions from being logged when the audit subsystem is + configured to audit a task. If the action is not found in + ``actions_logged`` list, the final decision on whether to audit the + action for that task is ultimately left up to the audit subsystem to + decide for all seccomp return values other than ``SECCOMP_RET_ALLOW``. + + The ``allow`` string is not accepted in the ``actions_logged`` sysctl + as it is not possible to log ``SECCOMP_RET_ALLOW`` actions. Attempting + to write ``allow`` to the sysctl will result in an EINVAL being + returned. Adding architecture support ----------------------- only in patch2: unchanged: --- linux-4.4.0.orig/Documentation/vm/ksm.txt +++ linux-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-4.4.0.orig/arch/alpha/include/asm/types.h +++ linux-4.4.0/arch/alpha/include/asm/types.h @@ -1,6 +1,6 @@ #ifndef _ALPHA_TYPES_H #define _ALPHA_TYPES_H -#include +#include #endif /* _ALPHA_TYPES_H */ only in patch2: unchanged: --- linux-4.4.0.orig/arch/alpha/include/uapi/asm/types.h +++ linux-4.4.0/arch/alpha/include/uapi/asm/types.h @@ -9,8 +9,18 @@ * need to be careful to avoid a name clashes. */ -#ifndef __KERNEL__ +/* + * This is here because we used to use l64 for alpha + * and we don't want to impact user mode with our change to ll64 + * in the kernel. + * + * However, some user programs are fine with this. They can + * flag __SANE_USERSPACE_TYPES__ to get int-ll64.h here. + */ +#if !defined(__SANE_USERSPACE_TYPES__) && !defined(__KERNEL__) #include +#else +#include #endif #endif /* _UAPI_ALPHA_TYPES_H */ only in patch2: unchanged: --- linux-4.4.0.orig/arch/arc/include/asm/cache.h +++ linux-4.4.0/arch/arc/include/asm/cache.h @@ -88,7 +88,9 @@ #define ARC_REG_SLC_FLUSH 0x904 #define ARC_REG_SLC_INVALIDATE 0x905 #define ARC_REG_SLC_RGN_START 0x914 +#define ARC_REG_SLC_RGN_START1 0x915 #define ARC_REG_SLC_RGN_END 0x916 +#define ARC_REG_SLC_RGN_END1 0x917 /* Bit val in SLC_CONTROL */ #define SLC_CTRL_IM 0x040 only in patch2: unchanged: --- linux-4.4.0.orig/arch/arc/kernel/entry.S +++ linux-4.4.0/arch/arc/kernel/entry.S @@ -104,6 +104,12 @@ lr r0, [efa] mov r1, sp + ; hardware auto-disables MMU, re-enable it to allow kernel vaddr + ; access for say stack unwinding of modules for crash dumps + lr r3, [ARC_REG_PID] + or r3, r3, MMU_ENABLE + sr r3, [ARC_REG_PID] + lsr r3, r2, 8 bmsk r3, r3, 7 brne r3, ECR_C_MCHK_DUP_TLB, 1f only in patch2: unchanged: --- linux-4.4.0.orig/arch/arc/mm/tlb.c +++ linux-4.4.0/arch/arc/mm/tlb.c @@ -885,9 +885,6 @@ local_irq_save(flags); - /* re-enable the MMU */ - write_aux_reg(ARC_REG_PID, MMU_ENABLE | read_aux_reg(ARC_REG_PID)); - /* loop thru all sets of TLB */ for (set = 0; set < mmu->sets; set++) { only in patch2: unchanged: --- linux-4.4.0.orig/arch/arm/boot/dts/omap3-n900.dts +++ linux-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-4.4.0.orig/arch/arm/boot/dts/pxa27x.dtsi +++ linux-4.4.0/arch/arm/boot/dts/pxa27x.dtsi @@ -13,6 +13,7 @@ interrupts = <25>; #dma-channels = <32>; #dma-cells = <2>; + #dma-requests = <75>; status = "okay"; }; only in patch2: unchanged: --- linux-4.4.0.orig/arch/arm/configs/s3c2410_defconfig +++ linux-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-4.4.0.orig/arch/arm/include/asm/elf.h +++ linux-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-4.4.0.orig/arch/arm/include/asm/ftrace.h +++ linux-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-4.4.0.orig/arch/arm/mach-pxa/devices.c +++ linux-4.4.0/arch/arm/mach-pxa/devices.c @@ -1203,6 +1203,7 @@ static struct mmp_dma_platdata pxa_dma_pdata = { .dma_channels = 0, + .nb_requestors = 0, }; static struct resource pxa_dma_resource[] = { @@ -1231,8 +1232,9 @@ .resource = pxa_dma_resource, }; -void __init pxa2xx_set_dmac_info(int nb_channels) +void __init pxa2xx_set_dmac_info(int nb_channels, int nb_requestors) { pxa_dma_pdata.dma_channels = nb_channels; + pxa_dma_pdata.nb_requestors = nb_requestors; pxa_register_device(&pxa2xx_pxa_dma, &pxa_dma_pdata); } only in patch2: unchanged: --- linux-4.4.0.orig/arch/arm/mach-pxa/pxa25x.c +++ linux-4.4.0/arch/arm/mach-pxa/pxa25x.c @@ -206,7 +206,7 @@ register_syscore_ops(&pxa_irq_syscore_ops); register_syscore_ops(&pxa2xx_mfp_syscore_ops); - pxa2xx_set_dmac_info(16); + pxa2xx_set_dmac_info(16, 40); pxa_register_device(&pxa25x_device_gpio, &pxa25x_gpio_info); ret = platform_add_devices(pxa25x_devices, ARRAY_SIZE(pxa25x_devices)); only in patch2: unchanged: --- linux-4.4.0.orig/arch/arm/mach-pxa/pxa27x.c +++ linux-4.4.0/arch/arm/mach-pxa/pxa27x.c @@ -309,7 +309,7 @@ if (!of_have_populated_dt()) { pxa_register_device(&pxa27x_device_gpio, &pxa27x_gpio_info); - pxa2xx_set_dmac_info(32); + pxa2xx_set_dmac_info(32, 75); ret = platform_add_devices(devices, ARRAY_SIZE(devices)); } only in patch2: unchanged: --- linux-4.4.0.orig/arch/arm/mach-pxa/pxa3xx.c +++ linux-4.4.0/arch/arm/mach-pxa/pxa3xx.c @@ -450,7 +450,7 @@ if (of_have_populated_dt()) return 0; - pxa2xx_set_dmac_info(32); + pxa2xx_set_dmac_info(32, 100); ret = platform_add_devices(devices, ARRAY_SIZE(devices)); if (ret) return ret; only in patch2: unchanged: --- linux-4.4.0.orig/arch/arm/plat-pxa/include/plat/dma.h +++ linux-4.4.0/arch/arm/plat-pxa/include/plat/dma.h @@ -95,6 +95,6 @@ } #endif -extern void __init pxa2xx_set_dmac_info(int nb_channels); +extern void __init pxa2xx_set_dmac_info(int nb_channels, int nb_requestors); #endif /* __PLAT_DMA_H */ only in patch2: unchanged: --- linux-4.4.0.orig/arch/arm/xen/mm.c +++ linux-4.4.0/arch/arm/xen/mm.c @@ -199,6 +199,7 @@ .unmap_page = xen_swiotlb_unmap_page, .dma_supported = xen_swiotlb_dma_supported, .set_dma_mask = xen_swiotlb_set_dma_mask, + .mmap = xen_swiotlb_dma_mmap, }; int __init xen_mm_init(void) only in patch2: unchanged: --- linux-4.4.0.orig/arch/arm64/boot/dts/xilinx/zynqmp-ep108.dts +++ linux-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-4.4.0.orig/arch/arm64/boot/dts/xilinx/zynqmp.dtsi +++ linux-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-4.4.0.orig/arch/arm64/kernel/fpsimd.c +++ linux-4.4.0/arch/arm64/kernel/fpsimd.c @@ -157,9 +157,11 @@ void fpsimd_flush_thread(void) { + preempt_disable(); memset(¤t->thread.fpsimd_state, 0, sizeof(struct fpsimd_state)); fpsimd_flush_task_state(current); set_thread_flag(TIF_FOREIGN_FPSTATE); + preempt_enable(); } /* only in patch2: unchanged: --- linux-4.4.0.orig/arch/mips/include/asm/branch.h +++ linux-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-4.4.0.orig/arch/mips/kernel/proc.c +++ linux-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-4.4.0.orig/arch/mips/kernel/scall32-o32.S +++ linux-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-4.4.0.orig/arch/mips/kernel/scall64-64.S +++ linux-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-4.4.0.orig/arch/mips/kernel/syscall.c +++ linux-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-4.4.0.orig/arch/mips/math-emu/dp_fmax.c +++ linux-4.4.0/arch/mips/math-emu/dp_fmax.c @@ -47,14 +47,26 @@ case CLPAIR(IEEE754_CLASS_SNAN, IEEE754_CLASS_INF): return ieee754dp_nanxcpt(x); - /* numbers are preferred to NaNs */ + /* + * Quiet NaN handling + */ + + /* + * The case of both inputs quiet NaNs + */ + case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): + return x; + + /* + * The cases of exactly one input quiet NaN (numbers + * are here preferred as returned values to NaNs) + */ case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_QNAN): return x; - case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_DNORM): @@ -80,9 +92,7 @@ return ys ? x : y; case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO): - if (xs == ys) - return x; - return ieee754dp_zero(1); + return ieee754dp_zero(xs & ys); case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM): DPDNORMX; @@ -106,16 +116,32 @@ else if (xs < ys) return x; - /* Compare exponent */ - if (xe > ye) - return x; - else if (xe < ye) - return y; + /* Signs of inputs are equal, let's compare exponents */ + if (xs == 0) { + /* Inputs are both positive */ + if (xe > ye) + return x; + else if (xe < ye) + return y; + } else { + /* Inputs are both negative */ + if (xe > ye) + return y; + else if (xe < ye) + return x; + } - /* Compare mantissa */ + /* Signs and exponents of inputs are equal, let's compare mantissas */ + if (xs == 0) { + /* Inputs are both positive, with equal signs and exponents */ + if (xm <= ym) + return y; + return x; + } + /* Inputs are both negative, with equal signs and exponents */ if (xm <= ym) - return y; - return x; + return x; + return y; } union ieee754dp ieee754dp_fmaxa(union ieee754dp x, union ieee754dp y) @@ -147,14 +173,26 @@ case CLPAIR(IEEE754_CLASS_SNAN, IEEE754_CLASS_INF): return ieee754dp_nanxcpt(x); - /* numbers are preferred to NaNs */ + /* + * Quiet NaN handling + */ + + /* + * The case of both inputs quiet NaNs + */ + case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): + return x; + + /* + * The cases of exactly one input quiet NaN (numbers + * are here preferred as returned values to NaNs) + */ case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_QNAN): return x; - case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_DNORM): @@ -164,6 +202,9 @@ /* * Infinity and zero handling */ + case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF): + return ieee754dp_inf(xs & ys); + case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_DNORM): @@ -171,7 +212,6 @@ case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_ZERO): return x; - case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_INF): @@ -180,9 +220,7 @@ return y; case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO): - if (xs == ys) - return x; - return ieee754dp_zero(1); + return ieee754dp_zero(xs & ys); case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM): DPDNORMX; @@ -207,7 +245,11 @@ return y; /* Compare mantissa */ - if (xm <= ym) + if (xm < ym) return y; - return x; + else if (xm > ym) + return x; + else if (xs == 0) + return x; + return y; } only in patch2: unchanged: --- linux-4.4.0.orig/arch/mips/math-emu/dp_fmin.c +++ linux-4.4.0/arch/mips/math-emu/dp_fmin.c @@ -47,14 +47,26 @@ case CLPAIR(IEEE754_CLASS_SNAN, IEEE754_CLASS_INF): return ieee754dp_nanxcpt(x); - /* numbers are preferred to NaNs */ + /* + * Quiet NaN handling + */ + + /* + * The case of both inputs quiet NaNs + */ + case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): + return x; + + /* + * The cases of exactly one input quiet NaN (numbers + * are here preferred as returned values to NaNs) + */ case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_QNAN): return x; - case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_DNORM): @@ -80,9 +92,7 @@ return ys ? y : x; case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO): - if (xs == ys) - return x; - return ieee754dp_zero(1); + return ieee754dp_zero(xs | ys); case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM): DPDNORMX; @@ -106,16 +116,32 @@ else if (xs < ys) return y; - /* Compare exponent */ - if (xe > ye) - return y; - else if (xe < ye) - return x; + /* Signs of inputs are the same, let's compare exponents */ + if (xs == 0) { + /* Inputs are both positive */ + if (xe > ye) + return y; + else if (xe < ye) + return x; + } else { + /* Inputs are both negative */ + if (xe > ye) + return x; + else if (xe < ye) + return y; + } - /* Compare mantissa */ + /* Signs and exponents of inputs are equal, let's compare mantissas */ + if (xs == 0) { + /* Inputs are both positive, with equal signs and exponents */ + if (xm <= ym) + return x; + return y; + } + /* Inputs are both negative, with equal signs and exponents */ if (xm <= ym) - return x; - return y; + return y; + return x; } union ieee754dp ieee754dp_fmina(union ieee754dp x, union ieee754dp y) @@ -147,14 +173,26 @@ case CLPAIR(IEEE754_CLASS_SNAN, IEEE754_CLASS_INF): return ieee754dp_nanxcpt(x); - /* numbers are preferred to NaNs */ + /* + * Quiet NaN handling + */ + + /* + * The case of both inputs quiet NaNs + */ + case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): + return x; + + /* + * The cases of exactly one input quiet NaN (numbers + * are here preferred as returned values to NaNs) + */ case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_QNAN): return x; - case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_DNORM): @@ -164,25 +202,25 @@ /* * Infinity and zero handling */ + case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF): + return ieee754dp_inf(xs | ys); + case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_DNORM): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_ZERO): - return x; + return y; - case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_DNORM): - return y; + return x; case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO): - if (xs == ys) - return x; - return ieee754dp_zero(1); + return ieee754dp_zero(xs | ys); case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM): DPDNORMX; @@ -207,7 +245,11 @@ return x; /* Compare mantissa */ - if (xm <= ym) + if (xm < ym) + return x; + else if (xm > ym) + return y; + else if (xs == 1) return x; return y; } only in patch2: unchanged: --- linux-4.4.0.orig/arch/mips/math-emu/sp_fmax.c +++ linux-4.4.0/arch/mips/math-emu/sp_fmax.c @@ -47,14 +47,26 @@ case CLPAIR(IEEE754_CLASS_SNAN, IEEE754_CLASS_INF): return ieee754sp_nanxcpt(x); - /* numbers are preferred to NaNs */ + /* + * Quiet NaN handling + */ + + /* + * The case of both inputs quiet NaNs + */ + case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): + return x; + + /* + * The cases of exactly one input quiet NaN (numbers + * are here preferred as returned values to NaNs) + */ case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_QNAN): return x; - case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_DNORM): @@ -80,9 +92,7 @@ return ys ? x : y; case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO): - if (xs == ys) - return x; - return ieee754sp_zero(1); + return ieee754sp_zero(xs & ys); case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM): SPDNORMX; @@ -106,16 +116,32 @@ else if (xs < ys) return x; - /* Compare exponent */ - if (xe > ye) - return x; - else if (xe < ye) - return y; + /* Signs of inputs are equal, let's compare exponents */ + if (xs == 0) { + /* Inputs are both positive */ + if (xe > ye) + return x; + else if (xe < ye) + return y; + } else { + /* Inputs are both negative */ + if (xe > ye) + return y; + else if (xe < ye) + return x; + } - /* Compare mantissa */ + /* Signs and exponents of inputs are equal, let's compare mantissas */ + if (xs == 0) { + /* Inputs are both positive, with equal signs and exponents */ + if (xm <= ym) + return y; + return x; + } + /* Inputs are both negative, with equal signs and exponents */ if (xm <= ym) - return y; - return x; + return x; + return y; } union ieee754sp ieee754sp_fmaxa(union ieee754sp x, union ieee754sp y) @@ -147,14 +173,26 @@ case CLPAIR(IEEE754_CLASS_SNAN, IEEE754_CLASS_INF): return ieee754sp_nanxcpt(x); - /* numbers are preferred to NaNs */ + /* + * Quiet NaN handling + */ + + /* + * The case of both inputs quiet NaNs + */ + case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): + return x; + + /* + * The cases of exactly one input quiet NaN (numbers + * are here preferred as returned values to NaNs) + */ case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_QNAN): return x; - case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_DNORM): @@ -164,6 +202,9 @@ /* * Infinity and zero handling */ + case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF): + return ieee754sp_inf(xs & ys); + case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_DNORM): @@ -171,7 +212,6 @@ case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_ZERO): return x; - case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_INF): @@ -180,9 +220,7 @@ return y; case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO): - if (xs == ys) - return x; - return ieee754sp_zero(1); + return ieee754sp_zero(xs & ys); case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM): SPDNORMX; @@ -207,7 +245,11 @@ return y; /* Compare mantissa */ - if (xm <= ym) + if (xm < ym) return y; - return x; + else if (xm > ym) + return x; + else if (xs == 0) + return x; + return y; } only in patch2: unchanged: --- linux-4.4.0.orig/arch/mips/math-emu/sp_fmin.c +++ linux-4.4.0/arch/mips/math-emu/sp_fmin.c @@ -47,14 +47,26 @@ case CLPAIR(IEEE754_CLASS_SNAN, IEEE754_CLASS_INF): return ieee754sp_nanxcpt(x); - /* numbers are preferred to NaNs */ + /* + * Quiet NaN handling + */ + + /* + * The case of both inputs quiet NaNs + */ + case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): + return x; + + /* + * The cases of exactly one input quiet NaN (numbers + * are here preferred as returned values to NaNs) + */ case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_QNAN): return x; - case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_DNORM): @@ -80,9 +92,7 @@ return ys ? y : x; case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO): - if (xs == ys) - return x; - return ieee754sp_zero(1); + return ieee754sp_zero(xs | ys); case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM): SPDNORMX; @@ -106,16 +116,32 @@ else if (xs < ys) return y; - /* Compare exponent */ - if (xe > ye) - return y; - else if (xe < ye) - return x; + /* Signs of inputs are the same, let's compare exponents */ + if (xs == 0) { + /* Inputs are both positive */ + if (xe > ye) + return y; + else if (xe < ye) + return x; + } else { + /* Inputs are both negative */ + if (xe > ye) + return x; + else if (xe < ye) + return y; + } - /* Compare mantissa */ + /* Signs and exponents of inputs are equal, let's compare mantissas */ + if (xs == 0) { + /* Inputs are both positive, with equal signs and exponents */ + if (xm <= ym) + return x; + return y; + } + /* Inputs are both negative, with equal signs and exponents */ if (xm <= ym) - return x; - return y; + return y; + return x; } union ieee754sp ieee754sp_fmina(union ieee754sp x, union ieee754sp y) @@ -147,14 +173,26 @@ case CLPAIR(IEEE754_CLASS_SNAN, IEEE754_CLASS_INF): return ieee754sp_nanxcpt(x); - /* numbers are preferred to NaNs */ + /* + * Quiet NaN handling + */ + + /* + * The case of both inputs quiet NaNs + */ + case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): + return x; + + /* + * The cases of exactly one input quiet NaN (numbers + * are here preferred as returned values to NaNs) + */ case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_QNAN): return x; - case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_QNAN): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_QNAN, IEEE754_CLASS_DNORM): @@ -164,25 +202,25 @@ /* * Infinity and zero handling */ + case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF): + return ieee754sp_inf(xs | ys); + case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_DNORM): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_ZERO): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_ZERO): - return x; + return y; - case CLPAIR(IEEE754_CLASS_INF, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_INF): case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_NORM): case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_DNORM): - return y; + return x; case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_ZERO): - if (xs == ys) - return x; - return ieee754sp_zero(1); + return ieee754sp_zero(xs | ys); case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM): SPDNORMX; @@ -207,7 +245,11 @@ return x; /* Compare mantissa */ - if (xm <= ym) + if (xm < ym) + return x; + else if (xm > ym) + return y; + else if (xs == 1) return x; return y; } only in patch2: unchanged: --- linux-4.4.0.orig/arch/openrisc/kernel/vmlinux.lds.S +++ linux-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-4.4.0.orig/arch/parisc/include/asm/dma-mapping.h +++ linux-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-4.4.0.orig/arch/parisc/include/asm/mmu_context.h +++ linux-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-4.4.0.orig/arch/parisc/kernel/syscall_table.S +++ linux-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-4.4.0.orig/arch/powerpc/include/asm/elf.h +++ linux-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-4.4.0.orig/arch/powerpc/kvm/book3s_64_vio.c +++ linux-4.4.0/arch/powerpc/kvm/book3s_64_vio.c @@ -101,22 +101,17 @@ struct kvm_create_spapr_tce *args) { struct kvmppc_spapr_tce_table *stt = NULL; + struct kvmppc_spapr_tce_table *siter; long npages; int ret = -ENOMEM; int i; - /* Check this LIOBN hasn't been previously allocated */ - list_for_each_entry(stt, &kvm->arch.spapr_tce_tables, list) { - if (stt->liobn == args->liobn) - return -EBUSY; - } - npages = kvmppc_stt_npages(args->window_size); stt = kzalloc(sizeof(*stt) + npages * sizeof(struct page *), GFP_KERNEL); if (!stt) - goto fail; + return ret; stt->liobn = args->liobn; stt->window_size = args->window_size; @@ -128,23 +123,36 @@ goto fail; } - kvm_get_kvm(kvm); - mutex_lock(&kvm->lock); - list_add(&stt->list, &kvm->arch.spapr_tce_tables); + + /* Check this LIOBN hasn't been previously allocated */ + ret = 0; + list_for_each_entry(siter, &kvm->arch.spapr_tce_tables, list) { + if (siter->liobn == args->liobn) { + ret = -EBUSY; + break; + } + } + + if (!ret) + ret = anon_inode_getfd("kvm-spapr-tce", &kvm_spapr_tce_fops, + stt, O_RDWR | O_CLOEXEC); + + if (ret >= 0) { + list_add(&stt->list, &kvm->arch.spapr_tce_tables); + kvm_get_kvm(kvm); + } mutex_unlock(&kvm->lock); - return anon_inode_getfd("kvm-spapr-tce", &kvm_spapr_tce_fops, - stt, O_RDWR | O_CLOEXEC); + if (ret >= 0) + return ret; -fail: - if (stt) { - for (i = 0; i < npages; i++) - if (stt->pages[i]) - __free_page(stt->pages[i]); + fail: + for (i = 0; i < npages; i++) + if (stt->pages[i]) + __free_page(stt->pages[i]); - kfree(stt); - } + kfree(stt); return ret; } only in patch2: unchanged: --- linux-4.4.0.orig/arch/powerpc/platforms/pseries/mobility.c +++ linux-4.4.0/arch/powerpc/platforms/pseries/mobility.c @@ -225,8 +225,10 @@ return -ENOENT; dn = dlpar_configure_connector(drc_index, parent_dn); - if (!dn) + if (!dn) { + of_node_put(parent_dn); return -ENOENT; + } rc = dlpar_attach_node(dn); if (rc) only in patch2: unchanged: --- linux-4.4.0.orig/arch/powerpc/platforms/pseries/reconfig.c +++ linux-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-4.4.0.orig/arch/s390/include/asm/elf.h +++ linux-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-4.4.0.orig/arch/s390/include/asm/syscall.h +++ linux-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-4.4.0.orig/arch/sparc/include/asm/trap_block.h +++ linux-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-4.4.0.orig/arch/sparc/kernel/sun4v_ivec.S +++ linux-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-4.4.0.orig/arch/sparc/power/hibernate.c +++ linux-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-4.4.0.orig/arch/x86/boot/string.c +++ linux-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-4.4.0.orig/arch/x86/boot/string.h +++ linux-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-4.4.0.orig/arch/x86/crypto/sha1_avx2_x86_64_asm.S +++ linux-4.4.0/arch/x86/crypto/sha1_avx2_x86_64_asm.S @@ -117,11 +117,10 @@ .set T1, REG_T1 .endm -#define K_BASE %r8 #define HASH_PTR %r9 +#define BLOCKS_CTR %r8 #define BUFFER_PTR %r10 #define BUFFER_PTR2 %r13 -#define BUFFER_END %r11 #define PRECALC_BUF %r14 #define WK_BUF %r15 @@ -205,14 +204,14 @@ * blended AVX2 and ALU instruction scheduling * 1 vector iteration per 8 rounds */ - vmovdqu ((i * 2) + PRECALC_OFFSET)(BUFFER_PTR), W_TMP + vmovdqu (i * 2)(BUFFER_PTR), W_TMP .elseif ((i & 7) == 1) - vinsertf128 $1, (((i-1) * 2)+PRECALC_OFFSET)(BUFFER_PTR2),\ + vinsertf128 $1, ((i-1) * 2)(BUFFER_PTR2),\ WY_TMP, WY_TMP .elseif ((i & 7) == 2) vpshufb YMM_SHUFB_BSWAP, WY_TMP, WY .elseif ((i & 7) == 4) - vpaddd K_XMM(K_BASE), WY, WY_TMP + vpaddd K_XMM + K_XMM_AR(%rip), WY, WY_TMP .elseif ((i & 7) == 7) vmovdqu WY_TMP, PRECALC_WK(i&~7) @@ -255,7 +254,7 @@ vpxor WY, WY_TMP, WY_TMP .elseif ((i & 7) == 7) vpxor WY_TMP2, WY_TMP, WY - vpaddd K_XMM(K_BASE), WY, WY_TMP + vpaddd K_XMM + K_XMM_AR(%rip), WY, WY_TMP vmovdqu WY_TMP, PRECALC_WK(i&~7) PRECALC_ROTATE_WY @@ -291,7 +290,7 @@ vpsrld $30, WY, WY vpor WY, WY_TMP, WY .elseif ((i & 7) == 7) - vpaddd K_XMM(K_BASE), WY, WY_TMP + vpaddd K_XMM + K_XMM_AR(%rip), WY, WY_TMP vmovdqu WY_TMP, PRECALC_WK(i&~7) PRECALC_ROTATE_WY @@ -446,6 +445,16 @@ .endm +/* Add constant only if (%2 > %3) condition met (uses RTA as temp) + * %1 + %2 >= %3 ? %4 : 0 + */ +.macro ADD_IF_GE a, b, c, d + mov \a, RTA + add $\d, RTA + cmp $\c, \b + cmovge RTA, \a +.endm + /* * macro implements 80 rounds of SHA-1, for multiple blocks with s/w pipelining */ @@ -463,13 +472,16 @@ lea (2*4*80+32)(%rsp), WK_BUF # Precalc WK for first 2 blocks - PRECALC_OFFSET = 0 + ADD_IF_GE BUFFER_PTR2, BLOCKS_CTR, 2, 64 .set i, 0 .rept 160 PRECALC i .set i, i + 1 .endr - PRECALC_OFFSET = 128 + + /* Go to next block if needed */ + ADD_IF_GE BUFFER_PTR, BLOCKS_CTR, 3, 128 + ADD_IF_GE BUFFER_PTR2, BLOCKS_CTR, 4, 128 xchg WK_BUF, PRECALC_BUF .align 32 @@ -479,8 +491,8 @@ * we use K_BASE value as a signal of a last block, * it is set below by: cmovae BUFFER_PTR, K_BASE */ - cmp K_BASE, BUFFER_PTR - jne _begin + test BLOCKS_CTR, BLOCKS_CTR + jnz _begin .align 32 jmp _end .align 32 @@ -512,10 +524,10 @@ .set j, j+2 .endr - add $(2*64), BUFFER_PTR /* move to next odd-64-byte block */ - cmp BUFFER_END, BUFFER_PTR /* is current block the last one? */ - cmovae K_BASE, BUFFER_PTR /* signal the last iteration smartly */ - + /* Update Counter */ + sub $1, BLOCKS_CTR + /* Move to the next block only if needed*/ + ADD_IF_GE BUFFER_PTR, BLOCKS_CTR, 4, 128 /* * rounds * 60,62,64,66,68 @@ -532,8 +544,8 @@ UPDATE_HASH 12(HASH_PTR), D UPDATE_HASH 16(HASH_PTR), E - cmp K_BASE, BUFFER_PTR /* is current block the last one? */ - je _loop + test BLOCKS_CTR, BLOCKS_CTR + jz _loop mov TB, B @@ -575,10 +587,10 @@ .set j, j+2 .endr - add $(2*64), BUFFER_PTR2 /* move to next even-64-byte block */ - - cmp BUFFER_END, BUFFER_PTR2 /* is current block the last one */ - cmovae K_BASE, BUFFER_PTR /* signal the last iteration smartly */ + /* update counter */ + sub $1, BLOCKS_CTR + /* Move to the next block only if needed*/ + ADD_IF_GE BUFFER_PTR2, BLOCKS_CTR, 4, 128 jmp _loop3 _loop3: @@ -641,19 +653,12 @@ avx2_zeroupper - lea K_XMM_AR(%rip), K_BASE - + /* Setup initial values */ mov CTX, HASH_PTR mov BUF, BUFFER_PTR - lea 64(BUF), BUFFER_PTR2 - - shl $6, CNT /* mul by 64 */ - add BUF, CNT - add $64, CNT - mov CNT, BUFFER_END - cmp BUFFER_END, BUFFER_PTR2 - cmovae K_BASE, BUFFER_PTR2 + mov BUF, BUFFER_PTR2 + mov CNT, BLOCKS_CTR xmm_mov BSWAP_SHUFB_CTL(%rip), YMM_SHUFB_BSWAP only in patch2: unchanged: --- linux-4.4.0.orig/arch/x86/entry/entry_64.S +++ linux-4.4.0/arch/x86/entry/entry_64.S @@ -1190,6 +1190,8 @@ * other IST entries. */ + ASM_CLAC + /* Use %rdx as our temp variable throughout */ pushq %rdx only in patch2: unchanged: --- linux-4.4.0.orig/arch/x86/include/asm/io.h +++ linux-4.4.0/arch/x86/include/asm/io.h @@ -304,13 +304,13 @@ static inline void outs##bwl(int port, const void *addr, unsigned long count) \ { \ asm volatile("rep; outs" #bwl \ - : "+S"(addr), "+c"(count) : "d"(port)); \ + : "+S"(addr), "+c"(count) : "d"(port) : "memory"); \ } \ \ static inline void ins##bwl(int port, void *addr, unsigned long count) \ { \ asm volatile("rep; ins" #bwl \ - : "+D"(addr), "+c"(count) : "d"(port)); \ + : "+D"(addr), "+c"(count) : "d"(port) : "memory"); \ } BUILDIO(b, b, char) only in patch2: unchanged: --- linux-4.4.0.orig/arch/x86/include/asm/xen/hypercall.h +++ linux-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-4.4.0.orig/arch/x86/kernel/fpu/regset.c +++ linux-4.4.0/arch/x86/kernel/fpu/regset.c @@ -116,6 +116,11 @@ xsave = &fpu->state.xsave; ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, xsave, 0, -1); + + /* xcomp_bv must be 0 when using uncompacted format */ + if (!ret && xsave->header.xcomp_bv) + ret = -EINVAL; + /* * mxcsr reserved bits must be masked to zero for security reasons. */ @@ -126,6 +131,12 @@ */ memset(&xsave->header.reserved, 0, 48); + /* + * In case of failure, mark all states as init: + */ + if (ret) + fpstate_init(&fpu->state); + return ret; } only in patch2: unchanged: --- linux-4.4.0.orig/arch/x86/kernel/fpu/signal.c +++ linux-4.4.0/arch/x86/kernel/fpu/signal.c @@ -309,7 +309,9 @@ fpu__drop(fpu); if (__copy_from_user(&fpu->state.xsave, buf_fx, state_size) || - __copy_from_user(&env, buf, sizeof(env))) { + __copy_from_user(&env, buf, sizeof(env)) || + (state_size > offsetof(struct xregs_state, header) && + fpu->state.xsave.header.xcomp_bv)) { fpstate_init(&fpu->state); err = -1; } else { only in patch2: unchanged: --- linux-4.4.0.orig/arch/x86/kernel/kexec-bzimage64.c +++ linux-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-4.4.0.orig/arch/x86/kvm/cpuid.h +++ linux-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-4.4.0.orig/arch/x86/tools/relocs.c +++ linux-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-4.4.0.orig/block/bsg-lib.c +++ linux-4.4.0/block/bsg-lib.c @@ -147,7 +147,6 @@ failjob_rls_rqst_payload: kfree(job->request_payload.sg_list); failjob_rls_job: - kfree(job); return -ENOMEM; } only in patch2: unchanged: --- linux-4.4.0.orig/crypto/authencesn.c +++ linux-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-4.4.0.orig/debian.master/abi/4.4.0-97.120/abiname +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/abiname @@ -0,0 +1 @@ +97 only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/amd64/generic +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/amd64/generic @@ -0,0 +1,18899 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0xd128f0cf 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 0x4db06195 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 0xfc608f35 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x7f3175f6 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x21f6fe3d bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xbb9e7ad0 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 0x28370db8 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x2a6d7024 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x3c29b460 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x46d6edda paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x5f07d239 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x6d34a98c pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x93b023ce pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xa3672659 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb2213f44 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xbc191781 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xc76bfa9e pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xe43c9e34 pi_init +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x454fb6d5 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0cd9aa25 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x161b0ff9 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 0x30150f95 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 0x97ad518a ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb1a3af15 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/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 0x0ee5cd6c st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x91e86870 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x92b87795 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc1017ba8 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x27f03483 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x592842e3 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xb3e37e1f xillybus_endpoint_remove +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x093538da dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x595d140b dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x9a347918 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xbaa5af9a dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xc2f9f1e5 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xf3cd2d26 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/edac/edac_core 0x9fbcfcd6 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x034a6968 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0421adac fw_card_initialize +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 0x10c1a36d fw_cancel_transaction +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 0x39edf0cf fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3ae0534f fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3cbd9cb9 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4c5d3166 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4fd41e33 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5b9c3594 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x61cbff89 fw_fill_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 0x66b07aed fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x705acf06 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7d5a8583 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7f22619b fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7ff77a03 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x800bc14b fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x88b40c8c fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x965dafd7 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xac7f74a5 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbf18090b fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc7f69810 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcb61c351 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd28d7e62 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe0307bb3 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xebc9c8d0 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf0e1924c fw_bus_type +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/fmc/fmc 0x0e76582a fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x128659da fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x1937f13e fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x3cd6e4f4 fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x75662423 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x8e53ef15 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0x97ea7e00 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x9cedbb2a fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0xc4b1f24c fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xd0f0d799 fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0xe492f1de fmc_driver_register +EXPORT_SYMBOL drivers/gpu/drm/amd/amdkfd/amdkfd 0xad720e79 kgd2kfd_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x004b3ec8 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01b4a104 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01fce765 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x049b621d drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04b4f677 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05d148b2 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07390a90 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07711327 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0816b7b0 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x082b50d8 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x098481f4 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x099dfa90 drm_object_attach_property +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 0x0b002e0b drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e733f42 drm_mode_equal +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 0x1041106c drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1050d4de drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x131d4b56 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14e5a4b0 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14f7f196 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15447c47 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x156865c6 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17125f5f drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17c963b3 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17ccdb2b drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a0a5e01 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a6acc29 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ac5c81c drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c37843b drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd338cc drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e2cec37 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f715c87 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2158d559 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22d6cb8a drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22e6233c drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x231f1a50 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23be32c2 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25c3a632 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26a606e9 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26b0e065 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26c214c5 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x281a3a23 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x283702b7 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28ca2b05 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2962233b drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a4d27cd drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a6db251 drm_prime_sg_to_page_addr_arrays +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 0x2fefda73 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3035592e drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x313e9f0a drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35c5d383 drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35d82079 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36a49d6b drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36fbf3e1 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3708dd9e drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x371f4dcb drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x380b31fd drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a6638f drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38ae017e drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x396a9a20 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39d521aa drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b94b87e drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bd1f6c3 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d1d6390 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e09eaf0 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e5bd86f drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4032d443 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4107c188 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41d0d7eb drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42215aab drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42948cb1 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4365a1c4 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x439f0ab6 drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4408a763 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44174e1d drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44ade0b6 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45272100 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45b3ecf9 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45f33ddf drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46730844 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x471b19c4 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x476dc6de drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4778f3d2 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47c93afe drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x487ecb39 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d44e7ab drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4da528ca drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ec9c9d4 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50385cc5 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50c44921 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51291d73 drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5267a3c4 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x528e7623 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x535eb496 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54827724 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54bd06c6 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55477743 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5594ae25 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57a7cc7b drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5889d592 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x592ace47 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59b3301d drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a37fef6 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ad450b6 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c2117bb drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d3aceef drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d70e2e1 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d85001d drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e43e412 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ed2fede drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f371b7c drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f444b19 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f8e9d87 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60f61db2 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61c7be27 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x666fd515 drm_agp_unbind +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 0x6ad47c6e drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b8e080c drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b9dc04d drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c5abf3c drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f8a030d drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x711b5966 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72479cf6 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72a71577 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73044ce6 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73affc06 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x743edff4 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x744e99b0 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74661be9 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76758778 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x771b073d drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7735ba3d drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7917bf8c drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79494984 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a2b880f drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c3e2c44 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cdc6465 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d14247b drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d4413d6 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d7f90e9 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d9892f4 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dc589f3 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ed9caca drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8125e1a0 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81437bb3 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x816df50a drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81e88ecc drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82ea95e7 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8357cd64 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x838d3be7 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83a2b19a drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8515e228 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86c44ed8 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x890f4b6b drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8996a276 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ac63476 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ade8e70 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b433fe5 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d4e3587 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dac645e drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ed55b80 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f252763 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x908f7688 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90cc3668 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9196520f drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9201ae94 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92325f70 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93c85964 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9455af86 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96799d9c drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96b7c5d2 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96f41aef drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x971fcb41 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x983247f1 drm_atomic_commit +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 0x9a3f96c5 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b71c40f drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c1e41a0 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e6f0cd1 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0d73562 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa22e474f drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3a82c91 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa55ace70 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa612286b drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6147d4a drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa61f2c25 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa65f97b2 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6a99f0e drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6b104a3 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6d9a929 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6f6d72a drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa77a1810 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa980980e drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaaa3879c drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae654d40 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae903ca4 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaebe9be9 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb017f1e0 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb17bbdb4 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb315c3f3 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb34de41f drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb45900d1 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4d07901 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb766f518 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7899470 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9a64e35 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9a691b7 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba1256ba drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbac7e2a6 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbf00c8d drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd9efbc5 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbeea3a0e drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf5de8f9 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc006f526 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc209ac00 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2290f69 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc458dd77 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4acb06f drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4b6871f drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4bae8fa drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc596a402 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc73bd60b drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7c4e21f drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7c5cdb8 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc902c2f3 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9a9daee drm_calc_vbltimestamp_from_scanoutpos +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 0xca8408b3 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb471fe7 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb4f3b6e drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc085060 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc9e6093 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd17d994 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd375ae0 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce39aa47 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce5ee94b drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd09566bc drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2648f80 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd31ac7a1 drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3eb7102 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3f82452 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4cf5d23 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd57eb806 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5e96ec4 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6768007 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6caf44f drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6fd4e40 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd777cce7 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd854513a drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8aa12b1 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda924313 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdafb8991 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbe1ff96 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd05ea9d drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddb85be3 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddef5800 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde19f75e drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdea5fd2e drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0f8b5e8 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe163acf0 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3386484 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3469253 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3c3624a drm_agp_release +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 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb42af3a drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec8cfbeb drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed0d8d12 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed155c09 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2fb551a drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3c31f2a drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4cbb1f5 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5833fc1 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7b7a7c2 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa8f5c84 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaddc6b5 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb325563 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc283c6c drm_i2c_encoder_save +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 0xfd55a0f9 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd9016ae drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff8839a7 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffba8a36 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x013759b5 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x025dc2e1 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x026071b9 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x069740c4 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x081131dd drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x096ce724 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 0x0db2bcbb drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ec6e522 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f488208 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 0x12cb4e51 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13e3db3c drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16057ef8 drm_crtc_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 0x16ab7958 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17369a42 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18a8e917 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cd12ebb drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x216937c4 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22c9dc9b drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22d1e7bc drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x269b2d2e drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b58c637 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c2f3a7b drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dc0c090 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e820a98 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37e10f4a drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3820dc95 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38bf5f3e drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39994273 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b4b534d drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bf228dd drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ddf5806 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44571d8d drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46809a7a drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b431de1 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50e78dad drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x581a6bc2 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58282b93 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b99d77c drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c53cffd drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e40e499 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e94060f __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fd718b9 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61a3f71c drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62400186 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63ec75c4 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64cb2961 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66d69246 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68a2444b drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69181aca drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x699ba970 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b1e4de6 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6caf47e0 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ddc34bd drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70533cb3 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7096f734 drm_atomic_helper_swap_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 0x7498091f drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75f31f48 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75fb2702 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7914c03c drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c4f723b drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dfb4b4c drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7eb19f6c drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80555d79 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80a1c064 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82052ab7 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x821836e4 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x832988e8 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x849fa3d2 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84b617c7 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8785e6aa drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8aa88660 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bb38ddb drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8be807dd drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d3becee drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f1c86e8 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fb2ddcc drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92828712 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92ffa776 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93293af9 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93333a9a drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94480bd2 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98da6de4 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d109cae __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d753a8f drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d7b6db9 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f520acf drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f5dc10c drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa07293f3 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa23036a8 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa50c6349 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa75759a7 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 0xa7d78258 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa85c4eaa drm_atomic_helper_crtc_reset +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 0xaff136cb drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4aa8c0f drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5060955 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb67bfd11 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7b40499 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7b53aa7 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9678c3b drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9901ca3 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9c96476 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc2706f4 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd5bcfa1 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe526fe3 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf32996a drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0d51c11 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc31a30ef drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3305551 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5ae4e3d drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6fc1209 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8c3049f drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb4bca31 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbe0c28e drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcca07677 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcff43277 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd063f86f drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0fa5c83 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1e29332 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4240815 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5040837 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd91bb421 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcc2b1fa drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe06bab25 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1ea8d6a drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2030881 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe337f773 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3f566b1 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4366c50 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe540a7c5 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe57def1d drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5de12a1 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8fa2032 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb73233a drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef451c98 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf751e3f7 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9c6ee73 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbe333ad drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc23db10 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcf45e05 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcfb06ef drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff056ba4 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x02a1b7cd ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x07a86b20 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x08ff360c ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10483a7d ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x12d6503c ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x189f8add ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1953b2e3 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1eaae2ae ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1fcc262a 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 0x27cbf52c ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28d0eebc ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33204f08 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3b7dc5e4 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3bb92225 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40c22c07 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ac418ba ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4b81b2d7 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f8124e3 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63111af9 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64762a91 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x65e6cce1 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6681e231 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67e13032 ttm_bo_kmap +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 0x7918f1cf ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8017bb3d ttm_mem_global_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 0x8493971b ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8842f917 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8905d6c9 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c3fcccf ttm_agp_tt_create +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 0x972da5fd ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x97c59593 ttm_bo_manager_func +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 0x9ba4bdb2 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9beb6f87 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c7b19df ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa1a2072e ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2ccec88 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa69442f4 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaeab07a5 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2ed55fd ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb821536d ttm_bo_add_to_lru +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 0xd2ecf8dc ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd4268b48 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdae93ede ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc87f0b3 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd08059e ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf8b72a7 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe0332c8a ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9d5509e ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xebe2283f ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf190af78 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2d99f51 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf34ec01d ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4a683a2 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5c5effe ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfce0e949 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfcfb7252 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x407d8f60 vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x8ca4cf97 vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xd4300c25 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 0xe119422a 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 0x3099c9ae i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb1f010bb i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xe9e8c5e9 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x32b0b133 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xeff6df68 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x828b00e4 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x12c2536a mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x27d043ac mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x424a09d4 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4629991c mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x56c7ae7f mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x67acaebe mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x69d2b8ec mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6cf2b656 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x72211e64 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9c10ed0d mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc085e336 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd8bb9bfc mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdddc0967 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe0af6a26 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe5cd0b81 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe97a067c mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x47131517 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x7f9797e7 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1faf7054 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xa2329f42 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x33b8ffb3 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xb07f6363 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xb3f378a8 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc0755e00 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x03b3caf8 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x0b2987a7 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x790d0cbb hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7e6de155 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8ab27514 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 0xe1821f7f hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x001de341 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x11bb5c0c hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x766b1068 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xf6996137 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0cb0b914 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x11580c7b 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 0x4ddb4aba ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6a980d51 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 0x8a6b851d ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8d886b4c ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xaf3f267f ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd120ac47 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe969ba4e ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4a056237 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xc655c25b ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd52463b9 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf735a7fb ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xfa8218ab ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x2d0edf74 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x499b4983 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x9e618428 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 0x0819f40b st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1648f854 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x23bc299a st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x35ee1ec5 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4d492fd1 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x51e27f72 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x52e6431a st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5d2e8641 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x74f77724 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x89db3b08 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x921c83ee st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9c15c562 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa1efbd53 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb4637145 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb5c44d5f st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb74c48e2 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xca00d75c st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x4ee13e2a st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x78c37d9c st_sensors_match_acpi_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x119273ae st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x7e261ccc st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x7f03ce8e st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x6e668c8c hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x138c885f adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x5a16466a adis_enable_irq +EXPORT_SYMBOL drivers/iio/industrialio 0x006c2aa8 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x01cfe7f5 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x07315596 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x088132f6 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x08aad0f7 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x0b0c5a03 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x0d188a2f iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x34153793 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x3d0aff57 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x74af5eb7 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x77407410 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x7983ca79 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xabeced88 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe7a1b11c iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xe7afeaae iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xf9874f78 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xf9f74bff iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x4b99aeef iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x95dc15c8 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x461bfe2f st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x9a23e92c st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xc344eea4 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x6664bf8a st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x7409fbda 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 0x2d59e8f7 rdma_resolve_ip +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 0xaf702758 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xb680a8d1 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xd7903bde rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x254ccf0c ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3e89f9bf ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3ef2635b ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x460fb35b ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x469113ba ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4817d4c5 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x65585345 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69738e57 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa37f5ea6 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa9e449f6 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xac3bfc82 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb6b29126 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xba664e91 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbfd696c1 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc2889ea1 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe94e0b82 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf06d10aa ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfb7cbcaa ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00275daa ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0275b01c ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0943d25b ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b155fb7 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16989dad ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cde2ca0 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e363240 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f0bc7e5 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x212432cb ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x228ad32b ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a22e458 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c50271e ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x382ba184 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39ceb925 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3af40a3c ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b150db3 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x413ac67b ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43d52b0b ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x445268a7 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x458704ee ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4803853d ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48c21139 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48cbcca6 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4974ed83 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b3a835d ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ce81d07 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e579f40 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4eb51a1d ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5435e95c ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54e55a71 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55122ab5 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55e24ae7 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x565fd3c6 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5668c5dd ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b4d9e0e ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ee10279 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x636584c7 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64dc4529 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a6dcd00 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b36d09c ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c0411da ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7083a749 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x742ae9fb ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77694e00 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78f87622 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7999d67d ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79edf204 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d348d97 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7df07687 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7eb2eaef ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8063d712 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8269d76d ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x868025ae ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86b33c00 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90c5e85e ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x955607e6 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98ee570f ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cce02cd ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1b56997 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa64ffdb9 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7897c28 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab11ce86 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a58028 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb33a50fc ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3a83904 ib_query_gid +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 0xc5034d9f ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc575b935 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbc75e12 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdd8472a ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce757398 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2f7bd17 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8f65f25 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd91345e9 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc4cc078 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4e2bbac ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb6f2aaf ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed198851 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef656c6d ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1c2303d ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf447a386 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf49702d4 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7007535 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb4309b4 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x0179fe4f ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1009b511 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4296602d ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4c5f16ae ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5eaf0a6a ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x68e34893 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 0x7d4a4b48 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x822a68a2 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x84aa7823 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xcb81ae4c ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe92b67fa ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xeb6801b6 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf76c35b2 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x05f51c4a ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x0bd316a6 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x287d1e73 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6cb59aa7 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7345d728 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x744bcf66 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x78a5cedc ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x867d2920 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9f67cc61 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_sa 0xf622f363 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf7246339 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x33ca509e 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 0x9973eb1c 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 0x03f749c7 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0b45c7bb iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x12caedbe iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1f14eb5a iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x498896ea 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 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7585b775 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7d4b04df 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 0x95410bbe iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x95b3fc6b iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9fb7f00c iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa6bd01b6 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbfbabc8d iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcb274c4e iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd891a538 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe24d5f8f iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x03497ab0 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x22275505 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a5c6d47 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3c78bff2 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4ff22c14 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5ff75c70 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x60e16e8b rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x68e87cf3 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f13f0e8 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x80885bee rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x81f9c7aa rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8e1612ab rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x926e8281 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa1f3d0c0 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa88e0ba rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xab192dd5 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb1bf3b8d rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd98f61aa rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe4910042 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf0ad4991 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfddde94b rdma_leave_multicast +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0f042385 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3e49ae57 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x968f018d gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x97486fa5 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa5228325 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xbb8b7506 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xce2cfb34 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd6ee16eb gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd8c2da29 gameport_unregister_port +EXPORT_SYMBOL drivers/input/input-polldev 0x2e85316d input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x33c96139 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x37340642 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xb8d852f7 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xf2b35a29 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x63ddc1ab matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x0f979254 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x7e9eccdf ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xc2d9214d ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x155bc0fb 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 0x189f1fa5 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x53a0fc62 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x62727493 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x66a9e290 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0xcd951bbb sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xeddfa36f sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x472c4f07 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xba6c8ec0 ad7879_probe +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x031244a6 amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x2cd253f5 amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x65d5de08 amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x70afa3d3 amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xa715888c amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xec337433 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0cfcd341 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x154a3436 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 0x3299ca97 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x349c5bf7 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3f5f7063 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4ed7e702 capi20_put_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 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 0x900087ca capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9b0ce870 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf4e53e98 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf8cef8da capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x11103822 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x16e94717 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1e237cd6 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x35ad2170 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x43f22909 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4fbfc279 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x784259a5 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7eb628ea b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9438c37c b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x98b63931 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xaa0ae39d b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xae2cd5e5 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe2fcf251 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfea38c93 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xffcae0e9 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3335f51a b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3a2d5c66 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x45dfad1f t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x827a414b b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x83a03572 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb9aafb37 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xba58e1a8 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xbc1c2c83 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xdeba6b68 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 0x11447d48 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x2f1b1d96 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xbb7e7f69 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xca4315ea mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x4960a5b2 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x69961b87 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 0x71d5b9d6 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 0x14dd4eca isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x5713f43c isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x5f0786d7 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x727ba2aa isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x93462585 isac_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x00900106 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xa0fe81b7 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xc17a5675 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 0x0595a079 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x08aba09a mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0b600d18 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1162fa65 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x15e56a44 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1f0c2618 mISDN_register_Bprotocol +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 0x4147d50a 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 0x79c19c2d mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7c09633e mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x87085e90 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a30edd7 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8c0d0d37 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x90c2348a mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9b832d5a recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xade2549d dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb6b3f396 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb8e447f5 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbcd40599 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcd13a509 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcfd65109 get_next_dframe +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 0xd7317211 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xec9a305a recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xffe1f5a4 bchannel_get_rxbuf +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 0x2f111bf7 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 0x5b069f89 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 0x7f2a56c0 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8776bbd2 closure_wait +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/bcache/bcache 0xfb48a075 closure_sub +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 0x1eae1b9d dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x2910a9e9 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x670cf8eb dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x6ac5e2bd dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x146b48de dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x1ed588dc dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8712a6b1 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb77f5bcd dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc0cf9bc1 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xdc5b6a86 dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0x4b6ebd15 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0433e84b flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x081974e9 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x156b4c59 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x305ca072 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x53fc23f7 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x67eebaae flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6b11713a flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x780d2c84 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8af4c2b2 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x99704a2b flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe65f3e5a flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf01cd9f8 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf0f76be1 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 0x666da021 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xa07ed60b cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xbaa83f80 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 0xf0e3c00e cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x99a0170e cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x715a1f83 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xf1cc9745 tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x03413b66 dvb_dmxdev_release +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 0x0f40fc1a dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x102d5427 dvb_net_init +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 0x1bb12dd5 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2030e9b1 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x22cc6de0 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2adc2347 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2febe842 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 0x3ab4f246 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4a35c252 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4cf3b0d9 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x52e5f324 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6560e532 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x67cee6e0 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7680a1d2 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7db7206c dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80098773 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8035a5f2 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 0x91cf055d dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9cdd3dcc dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa1d7cbc7 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xad9d8e81 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xae814389 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb8d4bf64 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc4d8e7eb dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc9da355a 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 0xe5700dd1 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe9685733 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeaf47cb5 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeddeb85a dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf3557fb8 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xa47029d1 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x09941946 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xa9d9d18e atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x06c419d4 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0a88234c au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2943de26 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3cc3c062 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x62befe86 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc5e328ae au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdd20b488 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe5686733 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfafe95cd au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x99d87b18 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x496143a8 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x09bd89ad cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xbb6f7aa6 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xc6244571 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x1cf1b396 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xf2ab5fc2 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x5a123bc3 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x7abcbff7 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x124b18b6 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xa829fdf8 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x465e8620 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x6db7bd5e cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x87f4d7ea cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x95a6e4f2 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x11c86dd0 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x266e15b3 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7b2c60f9 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8c5e4951 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xad3c0e0a dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x03342fd4 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x088e3f06 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x17502c72 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3119f54b dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x371db050 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4bbded44 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7672ac63 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7d6ae12b dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x87605a85 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x90fa554a dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa4d3b1dc dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb08aefe1 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd5201034 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe2b9dbf2 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe9b5000d dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xa4d5af40 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x094d6711 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x13570c88 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2c435a2e dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2d7283b1 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x34e56ab5 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb7d3674f dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x4bb4aa14 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5f0ce9ca dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xed92f6ee dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xfea6a8f0 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x76c6097e dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xcb066e19 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4977662c dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6de18d2b dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xbde39600 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe6fd32b8 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe73370b4 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x48fd8b1a drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x575f1857 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x6c480aca drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x68cb9715 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xd45a6cd6 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x68c3cc17 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x3106303f horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xaa8301f8 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x973d4a4a isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x6dd6429f isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x14ba95e7 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x234b9e4e ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xc54fa96e l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x9d1d4cce lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x8dff07b7 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x08ff67be lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xf439ea83 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xeca20274 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x121f5d12 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xa446631d lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xfed2acad lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x960e7005 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xe3606c92 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xe7ec2d3b m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x53c8bda8 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x4facf618 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x89b42758 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x6c49f1a9 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x6698e907 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xae0cb2e9 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xf7167280 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x15d242dc or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xb0849ede or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x1c1c67c3 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xe17c25c7 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x0f9b0938 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xb36a0d54 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x6c768e32 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xfa3fe9e2 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x04381879 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xb027917f sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xe39253be sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x3d7effe4 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xfc4624d4 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x95ef1c4c stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xe9b28d9c stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x66de89a5 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x160250b0 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x2c462eba stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x2f1f16a0 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xeb0f7172 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xddf7f655 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x8ecd8351 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xba02e5f7 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xb7a2d39a tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x79a89a2f tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xea39b183 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xd150746d tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xe545dc05 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xadabf4dd tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x1676e2be tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x640789f1 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xb7bf1d08 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xad82d409 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x6fb35e89 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x378cb915 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x3e5ff30a ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x884de7af ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x2c8a4bc1 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xd43d2cf6 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x8db48f3f zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x41d30754 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x56627524 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x866f7f72 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xaa831a98 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb52e0632 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd841eab0 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe0df510b flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x3b63aad6 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x903db1fc bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x99fa3e1f bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xfb38c02b bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x3dc63550 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x55c210b3 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x94192cf8 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0a4afbc9 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x28f902a6 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x46c97c35 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4ae7aba1 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x74b182a0 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x887f4513 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb0554def dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd131e8b0 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe392a1f2 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x80fe7635 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4db5b7ed cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x70033e4c cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x81deccd6 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xdc4dfc00 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe43c0eda cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x5a457731 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 0x41156b50 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4baeb615 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc2a65bbd cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe680f307 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xef887aca cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf3f2e36d cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xfcaa52f5 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x584305e1 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xb3ebc5ae vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x02ebad12 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1b8c2794 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x763fce40 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xfdee2c7c cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2330f94c cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x73a73b6c cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x77a81fb6 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb2302249 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdd5427b5 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe2cc9194 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe9906056 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0af3c932 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x12beee51 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x14f2e029 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x272f94ed cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2fc6c93d cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4d2d62e4 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4ec3ddd6 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5fea9303 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x61ad77f7 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6c5c49c7 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6cb506e7 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x700be591 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x825d5892 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x89c19f2d cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xabb3474c cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb9b77f4f cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc22e953e cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd48fc790 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd662410b cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdb781525 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0fc05349 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x45c3b8ca ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4c8c76c1 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5dcdbf0c ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7a57ba9a ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x824cbc8b ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa2d1d216 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xabad69d2 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbde991ae ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc6d5deca ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcfc1d8e0 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd4a59eda ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdb337c54 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdb382eb8 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe8c71548 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf1eb9821 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf4e22c21 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x006966a0 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04d1223b saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0821d3fe saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x08d14d45 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x21a29bd0 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x87b655d3 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8e4797d5 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa86de647 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xadd31de1 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc3616880 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcbf7219d saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd8ab407f saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x7cc53b56 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x0a899c55 videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x583b080a videocodec_register +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x6d588c20 videocodec_unregister +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xf72ae3bb videocodec_attach +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x13c9f5bc soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x17abb952 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x1b58dfc0 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x5f326561 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xd5b003b2 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe5035ffd soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe92ca5f2 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 0x00e9bee5 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x61ea0733 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x82e39115 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x94b08710 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa6bfe81f snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb7d6d5d0 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xef3e4aaf snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2d3c35cf lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x58965509 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x89599470 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9eb64ec4 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa8bd65fc lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc3a447ef lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xedb53093 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf37b08ba lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/rc-core 0x0e19bb0e ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x5eba6c98 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x98d6b51a fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x6d28f607 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x2f0b9ddb fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x3f747831 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x6265a326 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x1e4b39c1 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x2b23228c mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x5538fce1 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x6d704bc4 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xab1b5dac mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x5fb5b362 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xd2b45e86 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x1fe89bc8 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 0xa1407218 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xddc67be9 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xa77dd3e1 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x1ad6fcfd cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x7772288e cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0d4a8107 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x30c62375 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x424ac488 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x47760cd6 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5a59240b dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x60eba702 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9eb334a5 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe40be69b dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xea7718d6 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0059dfd8 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x067bf823 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x23bbf391 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x48fb7b26 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7ae45508 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb2d96011 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xdbc4aa35 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 0x3f9d7c1a 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 0x27784e38 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3bdbc622 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6632c605 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x82137d63 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x84525de5 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x96a0ce91 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xaf55a018 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb3b5dfd2 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 0xc99544df dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf2241237 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfc3d38df dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x8a69f5a2 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xd9a78f25 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0aa64942 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x106061ec go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x43e09179 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7968785b go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x95bdaca4 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa1d1aaf8 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa6309d3b go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcdf10f3f go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcf59aade go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x282bbc36 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x51ce9735 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x57303ce0 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x851eb4bc gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa2db4022 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa98329ef gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcf5c08f6 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe253e4ba gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x38784793 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x4f4c70ef tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xece6dc04 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x10ae3cba ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x3b693d70 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 0xb56ad4d9 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc624ed5e v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf12b6d4d v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x2769da51 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x3821a0d0 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x87cec3b3 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa8d4ef8c videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb21d57c1 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xd4764b10 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x0db12972 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xa2d33183 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x1ab1973f vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x632f5aa1 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x668a0af9 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x9eebe501 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xa570f412 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xb05072ac 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 0xf779f777 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x026e00bd v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x030266a3 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0951d84f v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0d4951e0 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0d545b60 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0d9851dc v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x100be43e v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1528623c v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x160a3c0e v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x175d2eae video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c2ca0fe v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c7e00ed v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20e4cd10 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x221c1126 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27bee926 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d10be2d v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33498d39 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x379dfd0a __v4l2_ctrl_modify_range +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 0x44582881 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x44964293 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45ab5cea v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x47d8e47e v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a768e79 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59950374 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c75170b v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ca0e0e7 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x63c9ec33 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x654b36d6 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x65a92543 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x65fb7c80 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6bdff9f5 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73d13157 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x779b9c8b v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b4e81e7 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b504518 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83c2a4c1 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83ccb05d v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x855a2287 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8888d3e3 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9780b173 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x98bc7799 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9c680a27 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa0619b5a v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa3d33dca v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa65360b9 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xafab17bd v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3fb5c96 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb610c7ad v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb750cc8f v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb7e2d05e __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba645c18 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbfae1902 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc3d29d04 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc400d926 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc50ee00d __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc6110e71 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc8ce1377 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcabebb6c v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd945e9a1 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe02149fb v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe23907bb v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe71e42d3 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeea2b0f7 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3c6cd11 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9c463f3 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfa3ea5bc v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfae77b59 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfcdd51ca v4l2_clk_enable +EXPORT_SYMBOL drivers/memstick/core/memstick 0x027a7ccf memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x08017d49 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x289be0c6 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4f944570 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0xab10cff8 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb7ed3a45 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbf64cf20 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf1f5e30a memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf25b96a5 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf2eaaea3 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfcd0c351 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfd09f81d memstick_free_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x090c63b8 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x17c33198 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1aeb47bc mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x32802b14 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x49ed0c06 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4d375e96 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x62edc6c9 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6e6c0040 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x78fd6633 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7b58fc37 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7bee4c8a mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981d163a mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x99e02fbc mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9a0ef818 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9ee4cca8 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa009c60f mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa400cdf9 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa749edc7 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb83ebf33 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb938856c mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc163db49 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc482b922 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcaea3a78 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcc33d6f4 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd40a6601 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 0xe41de6ae mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xece774ec mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf0b97156 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfd12ed80 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x038f0502 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0e8af257 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0f468902 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x256faefe mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4194d79c mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5799835b mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x63f55f93 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x68536ac2 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7806e20a mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x84a9c33c mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x91056124 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x91b04538 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x93b7ea2f mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x967e7be9 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9c1b56c0 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa82ea2a1 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa856ff22 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcc31f33c mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd0f5ed0d mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd399de18 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdaf3f420 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe06770ca mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xec37fcf4 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf001843d mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf1256b75 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf2773e04 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf992476b mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/mfd/cros_ec 0x1ce8be2a cros_ec_resume +EXPORT_SYMBOL drivers/mfd/cros_ec 0x4f541266 cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0x5838ef71 cros_ec_remove +EXPORT_SYMBOL drivers/mfd/cros_ec 0x791d4e3b cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/dln2 0x6390db76 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x8a1fd962 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xbcaf94d9 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x0665db69 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xc712031b pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0b2c570f mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x10cf1b02 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1d3293da mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3be0f6dc mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8d0b5225 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa901d88c mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad166b56 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb2fecf86 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb918f717 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdb779cac mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf02aff5d 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 0x2adf56b0 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xc34793d4 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x3a4418c5 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x5b2f9360 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x691528f9 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xf6772ad4 wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x95ee2b34 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xe9fac184 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x13090222 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0xb654bd81 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xf5681e2b c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0xc01a4cc8 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xe6cad3ac 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 0x0102841b tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x01d67a50 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x521e2fb9 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x66475faf tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x91d41506 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x9fc5affb tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xab8599d4 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xb86de5b2 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xc8730f3e tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xd019434a tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xd87f4866 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xf3441951 tifm_has_ms_pif +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x10394153 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x47540055 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x56ef52f4 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x57ed09b8 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5ada7a5e cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5f2845c3 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6c33636e cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9371fed2 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x23eafc57 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x39defe40 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x780cb4ec map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xe03be706 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x97539a8b mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xfc5b7994 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xd0244026 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0xaab1e0b4 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xf7815e0e mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/denali 0x2eca76b6 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0xe5597d4c denali_init +EXPORT_SYMBOL drivers/mtd/nand/nand 0x14420561 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0x2b744ba8 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x330680e6 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x4fcefacc nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0x9e269cd1 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef7834c2 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x11bcd635 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x6c3e196f nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xb1ef4b59 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x1092d13c nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xaceae21f 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 0x628a8fce onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd10c8f6c flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd646c698 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xe2e7cd8d onenand_scan_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5a1d3ea0 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6757ad01 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x677d9a7c arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x68961ab5 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x747084e8 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xab67ae2b alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd1e0ff01 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdbb70ed9 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdbbe0ba1 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xeeddc316 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x12c6cfde com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x250bab73 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x5853fb3a com20020_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1b2be27c ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5511397c ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x68e811b1 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x76908389 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x771366ae ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x89dfd0ec NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9c9db6f0 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbee55874 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xeca9d869 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf9d17cb4 ei_open +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xab6e21c6 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xed89bdf4 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 0x05e32035 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2666c230 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x319016e9 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x515aeb53 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x60737fc0 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6ce5faa5 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x75306d74 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7d532d2d cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x871b081f cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x89ef17be cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8d237987 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcceca687 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe398afd5 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe59d2c1c cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf7603efc dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfdcf8ade cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x10522c70 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x10d8b3f1 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x11df562f cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x15690f0a cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2075a689 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x26e4a7f1 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x28142b34 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2ad71f4e cxgb4_register_uld +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 0x40c41025 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x45cce3c2 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x462d8a67 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47361d35 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 0x57535f21 cxgb4_l2t_release +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 0x6a9bf724 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7105e444 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x78b7ea03 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x80a848d7 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x83fee323 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb28e3cb8 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb729a7de cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc158a349 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc604ab08 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 0xe0ba8ca2 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xea5dc9c1 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf04581c7 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfdc7dc7d cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe41694d cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfea3b41f cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4c01a72d vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6a75405a vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7cef8c1e enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x92b6229f vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd7c32620 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xee8becb1 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x25bf32da 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 0xd42511dc be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0062c35b mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x094b4f92 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0def9453 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x113d900d mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15a46e57 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x180513f8 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1beda692 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x231fd338 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2358e583 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x250c371c mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31b97b64 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3470891d mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x359a5219 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37ef0865 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4571296c mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b104d7a mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c470fbb mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55a1d1b6 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d3e6e54 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5de0b457 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x672153db mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78bbfcc8 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f5e653a set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81f02404 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d0700f2 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f6c393c mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91f728ee mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa747d75d mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7fea7fe mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc174a64a mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9f7ad00 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb86d9c2 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecf1a514 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf624b02b mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7ee49fc mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8fb8291 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9133a5d mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe975b19 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x040928e8 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06de34c5 mlx5_cmd_exec +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 0x08ad58fb mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e496e3e 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 0x255ce389 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cf0a800 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x366372df mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45081eef mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x597f6167 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62d98c4f mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x665c4ec8 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x678d8a97 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67fc43bd mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bc09e63 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80a8a38f mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80be5446 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x818ed516 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82444ea9 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x912b5a3b mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95cbbb51 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98c7b9ea mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa70f8f0e mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac6992f8 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbccd5d8 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc34cf9e9 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3b1fc60 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7c4948c mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb3cbff8 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdda1709 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd312455f mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6116e16 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd89c91a7 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfe68714 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5662737 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe59a0f54 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5b7c9ef mlx5_core_create_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 0xe6d69b0b mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1f59da6 mlx5_core_query_vendor_id +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 0x176c4b79 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 0x35084682 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a12b5a 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 0x6ecf2b24 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 0xc30f0bae 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 0xe0e0303d mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xebfce8fb 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 0xc5456416 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0ee82232 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x56bac77e hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x78489eb3 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9adb60cf hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xbf7b153a hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0440703a sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3131720e sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x518f8ef9 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x536c24a2 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x77b35302 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x84fc4504 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xabc3eb64 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc96d52e9 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd9054b4e sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xfbfa9d98 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x2bc55522 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x44d883d8 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x75c5edf7 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x80c8de4b mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x8fe3355c mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x96340c17 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xdd616423 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xe237c184 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x84f06a7e alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xa66be5ec free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x4875b1ed cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x61834f71 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x4118ae8b xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x4ec14241 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xb165034d xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/vitesse 0xcaae44fb vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x9c3a90fa pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xd7d5399b pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe941a35f register_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x699d5177 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x0dc771d7 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x21cb17e8 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x3307bf7a team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x51b3baf3 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x927494c8 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xaff9142d team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xf0df81af team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xfed91b1c team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x46dd1957 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x8b15c9c1 cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0xbc97248e usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xe8e9ba9e usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x07f942aa detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x09fcb732 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0a5732dc unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0d18b6e0 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2d35dbb7 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x43654ba8 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4a826051 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x844ce850 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9960580c attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfa6a1a7f hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfb9a4383 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x370f59c2 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x366cf61a init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x5f91f169 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xa5d76a16 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2a9f2853 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3737bd54 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x48141868 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6731b6d3 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x694b6f73 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x71779331 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x71ddcb4a ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x76c76ea8 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9e8ed22f ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaf78d02f ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc70fc4b9 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcc0c64f2 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 0x28bfb2d3 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3ade5df9 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x40d29bc2 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5d1b4580 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x624d62e3 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6c70dc9d ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7cb11530 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8f890419 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaa58ec21 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbc4e3315 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcda447f6 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd3bcefe5 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd621e273 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd78e33be ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe65b1727 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x040ce8c0 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x11c69588 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x29134c10 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x55100daa ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6b6cd81b 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 0x8887c74f 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 0x9be3fab5 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 0xc005d44c ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc37d18d9 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc6c6bcd6 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xead724c2 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x018731bf ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x05d20117 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x06552726 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x16e2fea6 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1bbd75b2 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1bf6528b ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1f60dd20 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x20700503 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2898f146 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x35a02a99 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x440c336d ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4a1031c9 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4f710bcc ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5c17011b ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6c6b4dd8 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8db71379 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa601df11 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa82802e1 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb687ace9 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc4af2bb5 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 0xd82d89b3 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe63b7d12 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfd0e2260 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01207779 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x026e1273 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x048ad852 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0721d827 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0857ef0c ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a22b810 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b135f0f ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0fa8aea4 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x108f445b ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11b53240 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1218bc74 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16765497 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ab6c662 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22f10100 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23c3ff1f ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25f38b11 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29b8cf25 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e84c532 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f436a6d ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33266a6d ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x365f01dc ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x367710a2 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ae0966d ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c029391 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ca9a86f ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e059373 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fb4fb9d ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ffe85b3 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x429f5144 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42ebbd69 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4317ca0d ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x437a47fa ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4653ff93 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4de33eaa ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x519d003e ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51df0ae9 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x551ff0d3 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57aa2a48 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5887389e ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58976be1 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58cd0a9e ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5be10132 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5eb22b17 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ef22fac ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f0b69bf ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64c4ba3c ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x681140a1 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68fd3164 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d86c519 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7090a330 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72a50866 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72e4102a ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7492b8ef ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76a79996 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77483573 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a171158 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ed2425f ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f25b556 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x892ad98c ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b541daf ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f2ea7d3 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x933f2cb9 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96ddec88 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a08060d ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f0c6464 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f1524b7 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3896b29 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa94a1786 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa639ab9 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xacc69dd6 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb57687af ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5ce9fff ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6341e3b ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7d6b607 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb95ed2ee ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba1c2d70 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc1a0005 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbee0018f ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0ad53ab ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0e42887 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc210690b ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2a01af4 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3b6a91f ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4c5eb1f ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2c3d8bc ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda13febc ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde260919 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde8b5f69 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf0b51bf ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1055418 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe76b7022 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8d907e8 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe94e805a ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea6f8401 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeaa92e5e ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb2cf155 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb95f872 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec60607b ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0e25ac1 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4db4894 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf847ac75 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9eb78b0 ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb547338 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff1a6ca7 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff69186a ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x87f7c92a atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xa088dd8f init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xdb9cd839 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x02dadd6f brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0af14f5f brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x11dde739 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x21fcecac brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x40c1bb14 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x4b4769f6 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x538ddea0 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7e0e08b9 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8989471d brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9bec0998 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xcc1a9856 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 0xdc6f89df brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xfde4837c brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0866078b hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0e491e14 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0f5362e2 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x151730fc hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x282e5347 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x29bf1574 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3a66fb80 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3e42bcb1 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x45bbcaa0 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x54305d52 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x54cf1f3b hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6001a72c hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x618f84dc hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6f92e435 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x78e25f0d hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8c4fa36b hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8c6aa62a hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa6118418 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb1b8c2f0 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd8d7544b hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd95f9db5 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd95ffeac hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xebc97c72 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xef6b7a1c hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf1fbae01 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0d3d141c libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0da57114 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1ac04ca7 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1ba970dd libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x286c1b16 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2eba8aca libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x35479b6c libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x43f080b6 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x492eccf2 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4f297ec3 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x609ba72c libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x92251acb libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa213fe87 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb34ad401 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbdc2f856 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbf2ea053 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc5d0b83e libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd99054b0 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe70b9e66 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xec61a218 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf936f875 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x00a55550 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x018d40c8 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x052d33f8 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06032fa8 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x066cb602 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x075b94c6 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x07c49079 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x07fe7af8 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x103732c8 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1229efb3 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1548913a il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1c1b7b51 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1cfa9cd4 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1cfef381 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1da7ab64 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x26bd56ee il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2abb3cb2 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2b9740be il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2ca98b06 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2d3d1ed8 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2de80084 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2de81448 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x31cbe8dc il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x340c87d9 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a4d67ed il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3c1fd2ba il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3ce05482 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3ec56dea il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x40f369eb il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x415a3712 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x41c28333 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x484af180 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4944aaf0 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4b1d8cec il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x51cb5381 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x591efaa5 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6086728a il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x61acafc9 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6423f38e il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x699a135b il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6e8658fb il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x707f356e il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x72120ff8 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x72c4a79b il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7561be92 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x784b349e il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x79173ea4 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7b7bb21d il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7c05c86e il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x89b7dd21 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ae4919e il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8cd998a8 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8dbfe390 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x90060e9c il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x93adaa48 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9408bb9b il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x94f25324 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x966aea30 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x983b1425 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa6219549 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa6ed76d5 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaaa7f971 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xae2c03c1 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaf9b446b il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb1f2c139 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb32bc95f il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb753257d il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbdfc7c30 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc2fa9978 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc307658c il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc33963b1 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc3455d6d il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc3ab9f3e il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc42405a3 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc548c5b5 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc638433e il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc8b61bbe il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd11f720e il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd1df79e2 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd4650fdf il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd4945fb2 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd4f3e8ef il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2871ced il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe37e449a il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe49c3492 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe5dfdee6 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe6423308 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe79be5e0 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe8f07b0c il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xef8b0940 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xef9607bb il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf2b33240 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf3e6f879 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf8ead16c il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfa636717 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfce52ecb il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfdac92a3 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfe9ddc7d il_rx_queue_alloc +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 0x04b7c162 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0a241aea orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x12f5d55d free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4ae4e86d __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x697412cb orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x728a28c1 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x836f1b70 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8cfad53d __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x92ccb83c alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x975013e4 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9c211885 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb0e18c94 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb5300142 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb737d454 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdec4152a orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe23b6953 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x6deec94f rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x03702bf1 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0da1e9e6 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x17177783 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1ce02cad _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x25594e84 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x26c081c1 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d7be30b _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x425fc484 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4cfc074f rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x58b8472e rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60f6c0d5 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x635344b3 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x67226e00 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x683185e9 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69c58d17 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x763c5400 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x79c5ba91 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c3c2634 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x828ce632 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8966cd7f rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9219a4e5 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x95a8fe4f rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9985e47c rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9fa62731 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa690ef82 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb9488a1e rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbeb56e58 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc0cced6a rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc4d42002 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc5d48971 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc834cbe4 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcb4377e9 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd2adf3a3 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd9330992 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda09d787 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xde8296b0 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe520b6df rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6dddc15 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xee544077 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf29405c1 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd412a28 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x34fbbcc0 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x53505078 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x72de4aa9 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xabae6944 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1cd23ccc rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x419641cc rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x82188e47 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf499bfd3 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14f3dbaf rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x155e9459 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x27170339 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x328779fc rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x331d0ca1 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c574dac efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x400a347a rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x459a329f rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x466b6b2f rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x671b2015 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b40aced efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6c19a650 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d801842 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97053202 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x970e0c33 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad88ba4b rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb151674e rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbfbefd0c rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc7ecd2e rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc8251fc efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc984e92 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6a9f57c rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd75939ca rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe163a101 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7605cf7 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf68555bf rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc524a6b rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff9cb02d rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x3632c6e0 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8b618ded wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa369c0cc wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xedd86a0a wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x893c858c fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xa40dc7df fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xc1d4071b fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0x40168599 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xe4bc201d microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x659ca1b4 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x6920b8fa nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xea8da0a0 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x4163b8a2 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xd9b3728a pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x5e01e386 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xe1c7b135 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xff6425b3 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0bd8dbe3 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1304b289 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x218d8245 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x56e82aed ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x571823e3 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5e3e3a95 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9d028784 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb1e5b056 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe5eb4482 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe6e383cb st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfbaf1357 ndlc_open +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1b9caa1f st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2dde0677 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2f0d6f82 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3296170b st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x43188485 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4f17631b st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6140080c st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6a13c029 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7b83cb1f st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8fb0d87f st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x98af259b st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa4de1944 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc2d01b62 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd94f0f03 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdb2a088c st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe22075ad st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xed9aeea4 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfb3d1117 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/ntb/ntb 0x1c770aca ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x513f486d ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x7d014e2a __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xa1b74af9 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xa9a5b624 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xcb1435da ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xcc2f6021 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xe097a635 ntb_db_event +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x4a408725 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x5b1c6979 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x50b2cad5 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x015aa1eb parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x0fa2ba8b parport_read +EXPORT_SYMBOL drivers/parport/parport 0x149126fb parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x1eb2ce00 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x1fc608ca parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x205f2c39 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x274c4bbd parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x27f9f5bf parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x2d053ce9 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x3159f1d4 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x415e50e9 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x41ebeeeb parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x48b2ab11 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5ae84d4d parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5f199636 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x620f8c68 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x71136185 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x725447cc parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x843c4a40 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x88ebeb87 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x93a8714c parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x97cf208a parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x9a6f34b2 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xc02c5b00 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xc3faf4ec parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xc59e49c0 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xcb054090 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xd201be2c parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xdb913430 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xe146d52f parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xe8d73ee0 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xe9efd776 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport_pc 0x06da50c6 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xc558d563 parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x04042b9a __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0603b38c pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x06141a48 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x12cc5faf pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x144c7a27 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1cf84922 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x222c4f4e pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6d81d9f6 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x85039814 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x86e76ca9 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xadb9c784 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xaf72e6cc pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb152f39d pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb39bb1a5 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb69d9868 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb987207d pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc517056c pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xed18e52c pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf054741b pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x332b8183 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4c378108 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5cfd4cf6 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6fd3af9b pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x730d8fc2 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x835b631c pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8f563c5d pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9d49c627 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa272635b pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa72c717f pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfb974a71 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x6a6066dd pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xbd466aa2 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 0x0ff4d34a pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0x143364cb pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0x36b040b3 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x825f2d30 pps_event +EXPORT_SYMBOL drivers/ptp/ptp 0x0c5202fd ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0x3ef99335 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0xb1f6b3ea ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xba53c0ef ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xecc95f75 ptp_clock_event +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0cf94818 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2688aed9 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4a14512e rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x82924642 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xa7188369 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb0ddeba3 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb24d1614 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc8c34f46 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd77e7137 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd980e910 rproc_vq_interrupt +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x01cc731a ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x855737b4 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9b340759 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc604c630 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd36b8cfb scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x02cd9b8a fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1bd482f0 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3a05e06b fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x614a8f73 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8858a119 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa4ccb4f4 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb36478a6 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcd3d165f fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xce047af0 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xce5b48d5 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd14ce6d8 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdf09deb1 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13c074f4 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x15efd8b3 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e1cefa5 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f780665 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1fd6f593 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x220bc125 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x25ae9a62 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d3254d1 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x363412c0 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3cd5d629 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42cc6cd6 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x52a043ac fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5303afb0 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x54c1376b fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x58ac0bae fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5934d312 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ccc441b _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a079112 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a750539 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x743ddf68 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77bd627b fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7b359ff8 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7bb35d35 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d59917a fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x999cca67 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9df3a562 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9ecec79e fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa8361617 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xac5bd730 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0d70e1e fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb238cffe fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3e72c21 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb40ee7bc fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9c00f0b fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbed167c2 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf4c89d5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1e3024e fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6b45c40 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc8f91583 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcd8c46bd fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce9b399c fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf6b943f fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd060d065 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7282837 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd76c33eb fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1072f87 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1f792db fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed069224 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xee8bdeb9 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa49fcb2 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x511c8894 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6592c41e sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x78e980a8 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xed5405b6 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x11703f42 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 0x00914691 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0624a1f5 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1a494af7 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x253da4d8 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2b505132 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x34c86741 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x35bd8fc5 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3cc9d392 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3d384107 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3ed59201 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x49561131 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4fd7fd6e osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x62dfb20b osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x640f1c81 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6af3fbfd osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6fc94da9 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7407481a osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x79547b0f osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7bd77f8a osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa90f7b06 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xab82adc7 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xad58fe20 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xadcd8419 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb1e2b56f osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb4bbe748 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb56e64ed osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbadfc572 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbd67ea96 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc17a1066 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc5d9b301 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc603c8d4 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcc058bb9 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd0e7383f osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdbd70e86 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeac015e8 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xede39ebf osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/osd 0x18a0dc15 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5a6823d5 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x97802992 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xd26e1bb5 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xd437da7c osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0xf07880c2 osduld_register_test +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x02ab10f7 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0da19cf9 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1f9ceec4 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2676732c qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x29a3e2f5 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3bbc9594 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x586dd72d qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6d8130ce qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8deb64da qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd10563d2 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd180d770 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdc6eec6a qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x0b111066 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x276b598c qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x5e9bac74 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xc3bfcdaa qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xceb0d3f5 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf602b5f0 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/raid_class 0xb9058ea2 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xdcd8564e raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xdd61ec0a raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x13a21815 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x23036d36 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2554a6ad fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x35cc6a8d scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3e9c9b1b fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x42d30c13 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x61df14e3 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x62978e19 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x81d2724c fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x872b76d5 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x905e3e0f fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x925eec27 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbd19f448 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0b0ba2bb sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1991c461 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x21cd9dbb scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32ba4ce6 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x359fd6b3 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3b14f472 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4e0e6512 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a0ec318 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5f5ee792 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x65135ec0 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6c8801ff sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x712fc879 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7e654869 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c915c5a sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8f5ce0e4 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x92c45f70 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x953b0b32 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa46f0aec sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa617caa6 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbf90900e sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc41a085c sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc43fa524 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc51814dd sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xca5e98f4 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xccaddca7 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdba372ed sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe735849b sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf642ab24 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x383da4c2 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5c77ca09 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x956eb79f spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd34da3b4 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe1ac1e64 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x28ae475d srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6974a260 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x8e83debb srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xcdc2244b srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x05479da4 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x25e636ae ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x4deade84 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6238aa87 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6a0b5dc0 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x81fa44f6 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xa64d7ebb ufshcd_alloc_host +EXPORT_SYMBOL drivers/ssb/ssb 0x007f638a ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x37a477dd ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x3b5f869d ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x4d31ba84 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x5abc562d ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x5ccff623 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x627ff85d ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x6a0762cf ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x74f4c430 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x7a1334b9 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x7b2b70af ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x8c91c516 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xaee2b159 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xb0bff11e ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcbb56793 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xdba2e7c6 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xe65f7af3 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xec72ecc5 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xf11e7201 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xf38f313b ssb_device_disable +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2d212eef fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3489690f fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x36c8e5da fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4c483baa fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x54315d77 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x556be209 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5b8b1a84 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x78e96693 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x792b6f62 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7e60a909 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x896e42ed fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x90a724d5 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9501c613 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa0b46f49 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa7e346a6 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xac5b4c21 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd36ae09b fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdbd641a6 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdf3b8431 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdf923c80 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe19e0a98 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xed691dd4 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf66616d3 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfadd613f fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x2024d346 fwtty_port_get +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x2306e46f fwtty_port_put +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x42887f93 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x6e41d3bf hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x878d185d hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xd60603c0 hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xec7be680 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x53164bd6 ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x53a7dac9 ade7854_remove +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x26a18541 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xaf4e7198 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11d9a57e dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x12b13bf2 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x138caf22 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1762bac2 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1a7924e1 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2085e9a8 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x225df363 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28c9b29e Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28f58d8c rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2cdaea5b rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d17cea3 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3c99e203 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x41fac9bb HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x45cd29b3 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x472d8741 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4a05d380 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d8c0eaf alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4e874c93 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4fed264b rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5723d866 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x596a228b rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5cdbfe74 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5f9a56a8 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6659b910 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66b95f70 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6706f47f rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a9ebe9f rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8223844c rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x833b233a rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x879bc4f1 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x90099a2a rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94f15276 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9c3b9bab rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa1189130 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa1e1086b rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa849401a rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xae1bdbe6 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xafa470e9 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xafad7b19 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb932a79f rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbaa41bad rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce259b88 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe1b8408a rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe2a21c0e rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe3e5856f free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe5b54a35 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe5dc8c18 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeaff77f5 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf59cc7fd rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb0688fb rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x00bd6deb ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x025780e2 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03cd0d61 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x05151867 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0581c6ac ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e447ee4 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x21627896 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x25861b95 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c42fb13 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e6e5715 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3005e2f5 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x30804d14 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x33bc80a7 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3533ceb3 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x39e334d8 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3f28a424 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x41a94fc8 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x41e7fbdb SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4305f1eb ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4df4a8cf DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5332a66d ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53ea8add ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x545f1db3 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x578ae325 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ba9ac97 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e7fb793 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f4cb8de ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68528b35 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6b07914b Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6d82ce09 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x75f9ae4c ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77f5cf4a ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a77b32e ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7df93e19 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x81b61173 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x82029640 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86e1c24e ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8a02ac86 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e116846 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9c961887 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3903a64 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbdcf158e ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc1bbb56b ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc701e1de ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcde4c1e5 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd96a543e ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdc5c7878 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1e383aa ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe5ff20df DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3343e70 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf7f85878 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf99cbb73 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff6b4afe ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/unisys/visorbus/visorbus 0x0a792e87 visorbus_get_device_by_id +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05e1348c iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c5f661b iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0fb7c6c1 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x12b01bfa iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x37d9004a iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x393cfa9e iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x39fe8b85 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3b3aa929 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4571ae06 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x47776362 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x544fbb2e iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x63480859 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6b51e852 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d828afc iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x82cc577a iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x84978037 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x84cef47d iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x91165db9 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9b547f91 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa54e848f iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb9ff4dbc iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc0b97921 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc92b5f00 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdf062a76 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe4b99bdf iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf44fe368 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf9e7264e iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xffda9584 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x06c4db0c core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x076f2ce9 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x083de810 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x086834c0 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0abd5503 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c55afed transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f68f7e3 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x1394bf64 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x15a07dd1 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1bad450d core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f802189 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x265ec45e target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x27dcd6bd target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x318b7f12 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x379de508 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x3916872e transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x43c41489 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x48f3edad transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x497d77bc transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e85b769 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x572fa82a transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c636b00 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6672ad42 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x69b0358b target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a6d9626 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6b0ead9e sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x6cbe13ee core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x71d89210 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x777766c4 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x783b55a5 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a5877a5 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x80658680 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x809afae9 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x86cf2fa5 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e08b241 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x9161a2d2 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x91db2cf6 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x9eb81afa core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x9fc8f8d1 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1a02f6f spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4551f80 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4c92422 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa874d834 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5d1c573 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7394e82 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xb85d9799 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xbae484f5 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xbb220e0d target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd349eeb target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc00ae2e0 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xc0b11b10 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xc1bee1db target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xc36c414d target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xc69fe3d1 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7979462 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc83a95c5 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xcb886155 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd04f40f1 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xd54fa2bf transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xd590a692 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xdbc3089f core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe7465aaf target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xec5b1f7a passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2a093dd spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3225955 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfaf851a5 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb5711fb target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfe0e5489 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xfe165c46 transport_lookup_cmd_lun +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 0x4f7ec342 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x34fb3aa2 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x28881fe1 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1420d23a usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x162eda2b usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x35e5c46a usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3cfd6ee4 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4c52066c usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5aa02855 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8555962d usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8f0994c6 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x909bdacb usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9896dfee usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf72664a5 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfcd63b49 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x2c3af525 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x6f30b670 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 0x2a55b9c1 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x3167970c lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x8d757bd7 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xe93e1193 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x097c2681 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0c06973c 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 0x2d6f9f82 svga_settile +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 0x7ae2d3f9 svga_tilecopy +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 0xa0e6cfc1 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb1b9445f 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 0xdc6afd74 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xc44976a7 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xb255207f sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x5f724749 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x23ab4a53 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 0xc0693de6 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x950607d2 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x96eac52f matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xbe55ddcf g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0ffba5a0 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6c39f0d0 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe88e2135 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe991fa60 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xbd841427 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xd0527a22 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x22bc20ef matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x63764a58 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb4513194 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xe7b323e8 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x6ba3575a matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x6cdfe78f matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x76a2af9d matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x99a679b0 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcfb2d29e matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd9346f8b matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xebbe2e0c matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x9073f995 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 0x39b9fc15 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xa6e44d8b w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xa74c6060 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xf198b493 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x6aa3c2da w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xd6c20028 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xd5ef5fe7 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xd81a4422 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x1b1e124d w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x3bb4a413 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x6a66504a w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xfcb44e1b 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 0x0060b3a6 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x0a9548e4 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x1567df3f configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x18860b43 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x2f394b2c configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x3cd678b8 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x5b2d7994 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x70ba3ceb config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x7ed3e100 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x805598d9 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xa355c678 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0xb7fd018f config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0xd01cbf55 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xd6989fbe configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xe42b19f4 config_group_find_item +EXPORT_SYMBOL fs/exofs/libore 0x148ea683 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x151fd8ba extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x1a4264d0 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x383483e4 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x5da1db31 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x6bbe19eb ore_read +EXPORT_SYMBOL fs/exofs/libore 0xa00192a8 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa01425e3 ore_create +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xa964877e ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xe07c6834 ore_write +EXPORT_SYMBOL fs/fscache/fscache 0x1197d2d3 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x1405712d __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x14c45bce __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x17777c26 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x17cac801 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x1af3f6b0 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x1b9fb9d5 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x219df21d __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x245bd5d8 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x2597cdef __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x2b871f00 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x2bfda0aa __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2bfdd2e7 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x4504ebe5 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x45f1b09c fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x4fbd2f2e __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x517cda7a fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x56ed3235 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x599e87ea __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x623e8e5d __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x672d6af3 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x693d1a92 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x6a0d21b0 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7802a7b4 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x85a5fc35 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x8b62da09 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x8dd21c84 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x8fbf91dc fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x95e7867a fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x9776e306 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x9ea0280e __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xb22c02c5 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc228a511 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xc3e5342d fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xe4a4fae2 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xe7b0d111 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xf306afd5 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf9fc4a6c __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xfb299eda fscache_io_error +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x29e8d935 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x738b9fd0 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7d16f2f5 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa27e1691 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xea61ecf0 qtree_delete_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2ef60594 lc_seq_dump_details +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 0xa20f2249 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 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 0x451e4da8 lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0x67208506 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xbbc527c4 lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x4c85d915 register_8022_client +EXPORT_SYMBOL net/802/p8022 0x6fdde3bd unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0x4db5c40c destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0x5d86e611 make_8023_client +EXPORT_SYMBOL net/802/psnap 0x1b001413 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xdc8d20c1 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x08c2f022 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x0d60fdec p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x14a52b91 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x17423f72 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x22ed2bb7 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x24c6310d v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x30dc6461 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x3306918d p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x33430c6f p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x36c0a28f p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x40028e2f p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x42748871 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x43b72058 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x544e7655 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x614751c0 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x6525689c p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x6dc3343f p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x70e6b95a p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7a244d5c p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x874b3660 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x8a184aad p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8b8d9d97 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x8e9af5ee p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x8f76d88d p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x90f66a5c p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x91550b58 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x92f90c4d p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x996aba2d p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x9d5fe424 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xaafec6e1 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xb224066b v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xbe990102 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xc0d3b5e8 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xd01fa5b0 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xd49cba5c p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xdc47f347 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xe48ab7c8 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf6312174 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xf905c31f p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xf99fbaaa p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xfc386608 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x0137fe69 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x6bfb734e atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xcd844c96 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xff5e6143 aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x08b87603 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x26675127 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x3587853b deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x45e6cb95 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x4a6a5dc8 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x4dc6c61a vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x5f4e3e52 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x64322174 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x83fc8492 atm_charge +EXPORT_SYMBOL net/atm/atm 0x872b735d atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x8a7c8669 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x8ddbfc86 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x9ab290a6 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 0xeeab2c57 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x21399946 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x2f565831 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x3e1b797a ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x8ce202b9 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x94df3d13 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x9ffa8d75 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc47eb627 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xf48c3916 ax25_send_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x05e90ef1 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a11dec1 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0c0b2e8f bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x193e00a5 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1acb7ccc l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2233be12 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x245f6206 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x248fa529 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a295975 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a54a972 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x34ffcb24 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x361b5554 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3a50ca71 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x401e745a l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4894741a bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x49157897 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x49b7c58a hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4a9c120a l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4be6ac13 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e155ab7 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x53589787 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5be423de bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x66a56a50 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x73896854 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7f87ae72 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ccb261f bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f8e9416 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa816dfe9 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xad0990c8 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb8768e92 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbccd47c7 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc32fec83 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc68b5571 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcef89d1b bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe6583715 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe79020d5 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf604a170 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf949298e hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfafbe067 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfbdd5010 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfee82fcd l2cap_is_socket +EXPORT_SYMBOL net/bridge/bridge 0x58b62237 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1b0820a0 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4ddc6c7b ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xad70473e ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x01777527 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 0x5c5ec4c9 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x61d86a82 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 0xaaff5111 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xcad8daa1 caif_enroll_dev +EXPORT_SYMBOL net/can/can 0x136b7ddd can_rx_unregister +EXPORT_SYMBOL net/can/can 0x189085fd can_ioctl +EXPORT_SYMBOL net/can/can 0x27b0b32a can_proto_register +EXPORT_SYMBOL net/can/can 0x7d520028 can_rx_register +EXPORT_SYMBOL net/can/can 0xa7929ac1 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xf569bd8a can_send +EXPORT_SYMBOL net/ceph/libceph 0x0529f40a osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0d4f401d ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x0d5c97a4 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x0da25ea3 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x0dda8268 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x12117280 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x14512075 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x16b5e5f1 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x1af1a79e ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x1b38d717 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x1c57e629 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1db25f3b ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x1f41fd8a ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x227298ed ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x27cdfdca ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x29454043 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x2a2784a8 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x305cd374 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x31276724 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x36307dc7 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x380f5692 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x39aec16c osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3ad0756f ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x3b83714f ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x3e225083 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 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 0x4952f0af ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x4b108536 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x4e03b118 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x4f46931b ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x4f6384dc ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x59f3d633 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x5e2b5ba1 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x61c253f2 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x684b3424 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x7693ef47 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x7b754b14 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x808b0b18 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x841ffe6b ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x870366c9 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x875b0cee ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x89aa2165 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x89ea19cd ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x8b06dd5b ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x8c7f6b51 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x8d341de9 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x8eae8117 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x90256cb6 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x909f77de ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x9152971c ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x91647153 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x95b2023b ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x9817bf31 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x99ba0e6e ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0x9fe86bbc ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xa2dff6d8 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xa4b8728e ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xa82fa127 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xa85bfb1c ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xad1cc8ca ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xadb008bb ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xaef0a938 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb1ad9cf4 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb590ae6f ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb6351b8c ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xba61ba47 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xbc791e5e ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xbf9bc298 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xc0a8058b ceph_osdc_writepages +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 0xcaef310f ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcd0277b5 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xcfa1e9ac ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xd10b1079 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xd1b75103 ceph_msg_data_add_pages +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 0xd8f34bbf ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xe5b1eef2 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xe7a6596e ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xeaaf241c ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xeeeedd3d osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xef5859a3 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf4936a6b osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xfe45f19f ceph_messenger_init +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x61f9fe81 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x78c98385 dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x806297aa wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa1a6bf90 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa993ec57 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xddbb3013 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xea9a7f9d wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf09255e8 wpan_phy_for_each +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xe63782d0 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xfed23d41 fou_build_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x662493d2 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7596b3b8 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9040b69b ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9b146a0e ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd1713795 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf6534efb ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4ddf2447 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x98abad5a arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9bbeac68 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0f56a976 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x557c9cd8 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7d5be935 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x1fe7271f xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x6853f82b xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x243d0f11 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1e078421 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x363ead3d ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa69fdd62 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe9889f52 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xdb76b542 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xeaed20a1 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xfd804a5c ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x4366a69f xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x8bf2d76e xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1b1e23a7 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xcaff36a8 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1467fe9e ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x180f9557 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x4caba366 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x578381f1 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa57384bb ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe10b9970 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xec56aaaa ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf9964131 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x03944dec 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 0x0963c24b irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x09939c11 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x0eeef4ef irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x1c19a258 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x1d9fa7ea iriap_open +EXPORT_SYMBOL net/irda/irda 0x2319d4a8 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x236a8222 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object +EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x2cdd2874 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x30bc66a3 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x342d1ee2 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x353c0107 irda_notify_init +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 0x4ac7f037 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x5399c483 iriap_close +EXPORT_SYMBOL net/irda/irda 0x5765f01e irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x5b133134 irlap_close +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x7042cc33 irttp_dup +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 0x796f23b2 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x7b6a07eb irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x85d02456 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 0x98a8b3b4 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xa3524df0 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xac0062e6 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xae594f0d irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbc02a412 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 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 0xeb78333e hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xec242b93 hashbin_new +EXPORT_SYMBOL net/irda/irda 0xecc34c02 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xef63c8b3 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0xf3c24771 irlmp_connect_response +EXPORT_SYMBOL net/l2tp/l2tp_core 0xb0de09a4 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0xd5c8a64a l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x365ad0ef lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x51879bd5 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x5ff3ace0 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xa37b26b3 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xba89fa63 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xc1212a2f lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xc59ac333 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xf583554c lapb_data_request +EXPORT_SYMBOL net/llc/llc 0x2727657b llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x321321b3 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 0x553fee31 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x846cfade llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x8bccc9b5 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x9fff386c llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xaa83c798 llc_sap_open +EXPORT_SYMBOL net/mac80211/mac80211 0x001b2c4d ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x003b3e01 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x0174e43b ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x094bcac9 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x0c46bd64 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x0dbaca8f ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x0e51ac7c ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x1248752e ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x14dec982 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x156a5b20 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x1766a700 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x199c7c9f ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1a8ef9b2 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x22849393 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x35b2df98 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x378dda75 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x39386bf1 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x3bcec5e0 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x42bba985 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x470b0f32 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x5213ab3c ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x575cd052 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x64854712 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6553fae3 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x66c29197 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x67bd8262 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x68c2f35a ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x697556a3 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6a534a10 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x6e612378 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x6fba0e1f ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x723dadb0 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x741746a0 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7459719f ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x75aa85dc ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x7606596a ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x787b89b6 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x7aaeb2e8 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x7f38cae6 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x85fb84e1 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x890f9797 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x8b670446 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x8d4f234e ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x96b1e715 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x96c36b7b ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x9c47fc47 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x9f9c653d wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9ff73564 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xa1391718 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xa4042982 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xa5842fe4 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xae85b0ec ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb066b14b ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xb4fb9cfb __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xbb6f8ff3 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xbbf2debf ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xbc4d6a35 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xbc5f95d1 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xbe1b77fa ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xc156cde8 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xc5130594 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xc7dff1bb ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xcbbb2c19 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xcc64460f ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xcccdffd7 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xd7196e67 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xde53202f ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xe53b9d88 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xe5a5d4f1 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xe765c4fb ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xe885bbbc ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xece7f497 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf1e808d4 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xf52a4085 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xf68e4b4e rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xfb20a807 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xfc9ae957 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xffe9a05b ieee80211_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x6b021249 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x6b570733 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x7e1b8d83 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x86acf87c ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x8e3e1deb ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x916c3c35 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x9f6be2b0 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xf2424f51 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x00998bda ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1d0a0484 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1f5d64f1 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x221d4c1e ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x234b6748 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2f813fc7 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x46d56c16 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4b23441c ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7f3f2505 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8021f327 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8fb908c8 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb97dc1f1 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbede7736 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeed92250 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x0aa9626c __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x2073114d __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x86234673 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x01eb2e8c nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x0ea03c71 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x5c70fb23 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0xbc1bad2e nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xdb2123e8 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xe893271d nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/x_tables 0x25183f07 xt_find_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 0x6cf0978a xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x82601a63 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x84b376fe xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x95721c3a xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xbfe7a962 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xc0f84f6f xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xec278046 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xef1f8c9f xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xf941e765 xt_register_match +EXPORT_SYMBOL net/nfc/hci/hci 0x13f69646 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x186319fd nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x1ff051d7 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x428ec838 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x489dab51 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x4f977259 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x50e4da97 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x50f0f888 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x6eeca1a6 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x6f5867e7 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x7d090ff3 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x80c140f9 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x8ad58a94 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x9cdfa191 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x9e60ba1f nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xac2b2679 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xaf6e2c02 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xb5e46371 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xc02d014c nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xdc2b74cb nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xfb8101a9 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/nci/nci 0x004f0bef nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x08fdf2e2 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x0964f3a2 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x0a41e981 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x0af25dea nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x14fef061 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x1b5914bd nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x2f63c202 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x33c25720 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x3afb3ef5 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x3cc65405 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x409bfa8c nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x4ecfa8c9 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x53b5eed4 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x59001d67 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x5f051549 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x6eba3ad3 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x8cfbdb52 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xb7da036a nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc1bdeabb nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xc5b4871c nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xc6a41cbf nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xc7a8146e nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xd0032512 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xd0db1a3c nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xd197298c nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xd5cd6915 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe0ea7cc2 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nfc 0x02430d01 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x0f38fa91 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x118192bd nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x18a89166 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x2189717e nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x22afd35e nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x338ec374 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x355ca3ec nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x46128dcd nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x4e0d5705 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x614a926b nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x6dd8830e nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x7b894847 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x816bf7a0 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x8a0cbdb1 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x9186d93c nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x92dddeca nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xa522d1b7 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xb87d978d nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xbc240eed nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xbcd283b9 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xc4ee5542 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xc77d07c3 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xdce87b7f nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc_digital 0x608f5479 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xce0feb8c nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xe3baa59f nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xe5d69197 nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x143cde9a pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x74d5b6f6 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x9107721b phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x926fd283 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xaabb2288 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xb28f771b pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xe437750a phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xf657e699 phonet_stream_ops +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x119d0e8a rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x170ae764 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2fe75104 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x43e38118 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x49c0518e rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x58ddc1f5 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x66c54a04 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x69df3087 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x78092678 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7db36ca9 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x81bdafe2 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9677bf8e rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xba032955 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xef0ca220 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf2659d0a rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/sctp/sctp 0x04012db1 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2dc859e2 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7c8dd4fb gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xad288f84 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x3b22946c xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xb7714280 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xf7ad419e svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0x1a173a02 wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0x232f8deb wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x0360e1cb cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x08507e5f ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x098d089a wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0e7c38d8 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x0eb0c6a1 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x148789a0 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x16109fe4 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x1682d66f cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x18682b58 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x194e1d2a cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x28bfd6d1 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x29189303 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x2abf42f7 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x2b3e1d48 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3101768c cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x3be88ad2 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x3c088c76 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x3d450a42 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3de2e2dd cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x3e9ebc41 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x41d17917 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x4329a47f cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4abc7149 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x4c759414 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x4d76f533 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x548410d2 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x55690fd8 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x5a171c0f ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x5a1e938f cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5af87cac wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x5db76863 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x605384ff ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x61bb409d cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x633c6028 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6b5ea841 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x70d127fb cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x74150d1b cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x7767d927 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x77e4ff7f cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x78fe6c20 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7a8cc56f wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x7d9e4798 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x83915f37 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x878263c4 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8b9e38a2 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x8d5e09de cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x91d321ba cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x9274aa87 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x971875a2 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9df1c97e cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa2c1589a cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xa8a5c16f cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xadb1835d cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xaf7aae0f cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xaffda767 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xb1d2887c regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xb4c58197 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xb8241081 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xbd9d2543 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xbe2d28df cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xbfc9aa5c cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xc0e5e958 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xc0fa327c cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xc4451323 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc7c4c26e cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xcf217887 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xd13a4435 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd469eb82 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xd519300a __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd602df5d cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xdaeebbfa cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdea17f8a wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xe2728cfa cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xe44c526d wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xe5a016db cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xe6c95597 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xe8192a46 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xe83cbbf5 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xeca663f9 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf3331444 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xf66e8f65 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xf79b8088 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x3c44f8ec lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x98f3d97f lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x9f9fcd16 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xd457c268 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xd458a881 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xf321c179 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL sound/ac97_bus 0xb08bdac8 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x71280d4f 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 0x293ad313 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x2b4ac064 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 0x44a7ce55 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 0xb4a6fc14 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-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 0xc3debd82 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 0x30a512e4 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x074e4f89 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x0e3532c3 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 0x19b12b11 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x1f8a7e7d snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x2402649e snd_device_register +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x25604a2e snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x2ea5fdd4 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x2fc87a22 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x381c88da snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x383d7085 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3bbd9a0b snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x3e2e3359 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x3fc12985 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x429a5b4f snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x47b6e5b4 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4aac6212 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x502f4189 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x512ecb99 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x657c6ef7 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x6859f819 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x7345fb03 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x786d9067 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x822ca21e snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x82eec1f3 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x856924c8 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x8960ab9a snd_component_add +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8e21bffd snd_card_new +EXPORT_SYMBOL sound/core/snd 0x8f2d2cda snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x904453be snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x918d2533 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0x9fc3c4c2 snd_card_register +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 0xb362b100 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xb83ad721 snd_device_free +EXPORT_SYMBOL sound/core/snd 0xb93b95af snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xc30c2d0e snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xc63fe95b snd_device_new +EXPORT_SYMBOL sound/core/snd 0xd1f2d282 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xd76fc091 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xdfe59f12 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xe71addd2 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xea57f908 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xeb9a063a snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xf0512ef6 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xf4780770 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xfa214abb snd_cards +EXPORT_SYMBOL sound/core/snd 0xfb4b8fc5 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xfc87d9eb snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xfd954bc9 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0xf1551cc0 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x01f9a675 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x02ace5dd snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x0370024c 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 0x0ab34b6e snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x11f82249 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x1a2bbdca snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x22e27ff1 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x27ffedfd snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x2973ffbc snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x2a21d4bb snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x2b384886 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x359eb007 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 0x3bc675bb snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x42960064 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x4322460d snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x43495234 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x4869bd2b snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x49a314d0 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x4b60ce24 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x4bdf877d snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x4cdb6dec 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 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x52febe41 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x58a7bbcb snd_pcm_limit_hw_rates +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 0x696f0524 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x72de20e4 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x7413ec20 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x7c5b60ad snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x7ed1f2f0 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x7f3b89cd snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x815116bf snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x823c82dd snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x85386dbd snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9554ea82 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x9df1d7e9 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa21465bf snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0xa4aa60aa _snd_pcm_lib_alloc_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 0xb46ae2f8 snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbe9fb545 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xca34c226 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xcbd9818f snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xcefc83ba snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xd2859be7 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xd415b3b1 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xdfd7b01e snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xe3763818 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xebfe7f1d snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xec6b6172 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xf68e3740 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xfb8d4098 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0e1ce4ba snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x12f93bfe snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2687ffa2 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5cf2fdae snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6f002d71 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6fd4b0d6 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x75633292 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x837a16d4 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x85f70e5f snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x923ad1d9 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa0f12187 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa4692a55 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa7c06cd6 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd1d1d666 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xda92f2b6 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe3053831 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe6c8ee73 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf7ecd874 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfb53cb89 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-timer 0x16f7329b snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x27a57a80 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x339dbfd3 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x68eb5ebd snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x6a2571ee snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x7fcc224e snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x8c10b51e snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xaf42cb5a snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xb2454a62 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xe6ac82de snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xe768626a snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xe7e3863f snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xf397ee49 snd_timer_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x5e0caa2c 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 0x2696ad8b snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x402aaa51 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x59d40693 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6a6d37dd snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7ba82254 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x862b37b7 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc3af5232 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd00c2a8c snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe8e6f9b4 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x11473892 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x16d0f8f3 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 0x3909a506 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3a99533d snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4e4a378f snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6c886ca4 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9ae2dde8 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc1bf6476 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc6f2932f snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0e41b2fe cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x12af2895 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x260e9915 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3dd955d0 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4746b582 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4762c2db amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4a525709 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x51326d33 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x565a8431 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5f94ba4b fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x60d4626a amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6947b6c9 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6ee18472 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x861c9f2c avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x88eaaefe amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8e54802d snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x922c69f1 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x95af9b2c avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x968552da fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98749652 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9d3108e2 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9ed78fc5 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa5d47a15 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaf107031 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc23ab8aa amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xca6463ea fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xce078238 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd5905db6 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xede5cd95 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xefcc1b96 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf57b87cd avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfa3acfa3 snd_fw_transaction +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x7422b6d0 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x9598d88f snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x28477fb9 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x56374da0 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x56416a08 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5b74cfcd snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa8933fa4 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbdccc70d snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdecdf6fa snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf91fb09a snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x14ebd945 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x41afcfc7 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x9a6bee9d snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x9e0c6bea snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xb6bfac6a snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xbdda3714 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x0be25013 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x3253f953 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x47ab8af8 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x79bdec78 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x8785b18c snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xff561cfc snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x801b32b6 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbbf3053e snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xc8d3b86e snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xdeb8dc1f snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe38e9726 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xeab94562 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-i2c 0x06caad70 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x07b9dc01 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x1dd95007 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x4244a1f8 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x4ae92188 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xbe48abb9 snd_i2c_probeaddr +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0deb8045 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x304f257a snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x58a1738e snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5b3e92d2 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x618d36cc snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6dab2fe5 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8af6fcf9 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xabbf02b0 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xddae14bb snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe8fb8f79 snd_sbdsp_command +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x07fb50b4 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1f9cb64f snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x30ce5764 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x44012e3b snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x71066aee snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7835da0a snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x83c1fc45 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x884d60d3 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x976a5dc5 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaa201a78 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb7d707c7 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcffa4ef7 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd76273f4 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdc5b4486 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdd5215a5 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdfaf76ad snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfc250763 snd_ac97_update +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x8555ba94 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1ef7f126 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3bc027d1 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x452c9954 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4ab75f20 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x53f2a4f7 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x70a35bd7 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x75c068a0 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xade68f0e snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc92e7558 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x00729785 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x73e3180e snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd9da012b snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x01d774ce oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x21311d9f oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2c88d801 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4a63ff68 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5216ea15 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5d461428 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x713ca1b0 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x774157ad oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x83e3cd88 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x91275739 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x938698b0 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb2ad8fc3 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb518ceb2 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb6ece5fa oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbf4849c1 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc318a876 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd585805b oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xde54f247 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe335ffd4 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe46cf0bf oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfb98cea8 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2414acc2 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x425d9889 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x56407731 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xcd4a1914 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf32170c6 snd_trident_stop_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x3e72191c tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xa1125af9 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xdc045797 sst_dma_free +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xf454fbdc sst_dma_new +EXPORT_SYMBOL sound/soc/snd-soc-core 0xb3879a38 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x0ea49d30 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x1cd92540 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x2a77e9d3 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xa585df61 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xeaf9d2de register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xf7904622 sound_class +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3ad29619 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x4edc2cba 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 0x820c28f9 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x971c9c04 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd561e88e snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xeae37cbd snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/snd-util-mem 0x0e5ac606 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x1b200b5f __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x62bd4d53 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x67aad759 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x92664596 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xb95c02b4 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe171a926 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xf698bc28 snd_util_memhdr_new +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xf690d054 snd_usbmidi_create +EXPORT_SYMBOL ubuntu/hio/hio 0x04384962 ssd_reset +EXPORT_SYMBOL ubuntu/hio/hio 0x3ac63179 ssd_get_label +EXPORT_SYMBOL ubuntu/hio/hio 0x4f60c312 ssd_bm_status +EXPORT_SYMBOL ubuntu/hio/hio 0x64dbd598 ssd_submit_pbio +EXPORT_SYMBOL ubuntu/hio/hio 0x67d60825 ssd_get_pciaddr +EXPORT_SYMBOL ubuntu/hio/hio 0xb19990b2 ssd_register_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0xb39dbdab ssd_set_otprotect +EXPORT_SYMBOL ubuntu/hio/hio 0xbe3b09ec ssd_unregister_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0xd41aab81 ssd_get_version +EXPORT_SYMBOL ubuntu/hio/hio 0xda0e374a ssd_set_wmode +EXPORT_SYMBOL ubuntu/hio/hio 0xfd008f1c ssd_get_temperature +EXPORT_SYMBOL ubuntu/opennsl/linux-bcm-knet 0x05450fc9 bkn_filter_cb_register +EXPORT_SYMBOL ubuntu/opennsl/linux-bcm-knet 0x208b427a bkn_rx_skb_cb_unregister +EXPORT_SYMBOL ubuntu/opennsl/linux-bcm-knet 0x76ffa33c bkn_rx_skb_cb_register +EXPORT_SYMBOL ubuntu/opennsl/linux-bcm-knet 0x9d1e8257 bkn_filter_cb_unregister +EXPORT_SYMBOL ubuntu/opennsl/linux-bcm-knet 0xe862e724 bkn_tx_skb_cb_unregister +EXPORT_SYMBOL ubuntu/opennsl/linux-bcm-knet 0xec564adb bkn_tx_skb_cb_register +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0x0b5382e1 lkbde_dev_instid_set +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0x0f2744ab lkbde_dev_instid_get +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0x16bcf30e linux_bde_destroy +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0x1bcd46ff lkbde_get_hw_dev +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0x29805c13 ___strtok +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0x29a863d1 lkbde_get_dev_phys_hi +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0x2ebd13e4 lkbde_irq_mask_get +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0x514ea590 lkbde_get_dev_phys +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0x7660532f linux_bde_create +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0x81afaa5c lkbde_get_dma_info +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0xb5692429 lkbde_irq_mask_set +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0xb8f8dc3d lkbde_get_dev_virt +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0xc36868a4 lkbde_get_dev_resource +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0xccfba9a2 lkbde_get_dma_dev +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0xd558f821 kmalloc_giant +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0xd63cc59b kfree_giant +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0xee9c1bd4 strtok +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0xf06cd208 lkbde_dev_state_get +EXPORT_SYMBOL ubuntu/opennsl/linux-kernel-bde 0xf3ad288d lkbde_dev_state_set +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x00322056 VBoxGuest_RTMpCpuIdFromSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x01674ab7 VBoxGuest_RTSemMutexRequestNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0429a6f0 VBoxGuest_RTThreadCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x057fd386 VBoxGuest_RTR0MemObjLockKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0731e88d VBoxGuest_RTAssertMsg2Add +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x079b132d VBoxGuest_RTMemTmpAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08ed98db VBoxGuest_RTMemDupExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x09a88bc3 VBoxGuest_RTTimeExplode +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0a442050 VBoxGuest_RTAssertAreQuiet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b94344b VBoxGuest_g_pszRTAssertExpr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0beb235d VBoxGuest_RTMpIsCpuWorkPending +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0cd1b64d VBoxGuest_RTMpCurSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0d10d1ca VBoxGuest_RTTimeNormalize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f3e114a VBoxGuest_RTSemSpinMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f884b3a VBoxGuest_RTStrToInt64Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11ced39a VBoxGuest_RTSemEventWaitEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11e95d2e VBoxGuest_RTLogLoggerEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11f80121 VBoxGuest_RTSemMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x12614b82 VBoxGuest_RTStrToInt8Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x12f430f3 VBoxGuest_RTAssertMsg2AddV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x147206e1 VBoxGuest_RTStrToUInt64 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x151752ec VBoxGuest_RTHeapSimpleGetFreeSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1520b2c8 VBoxGuest_RTLogCreateEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x160b14d4 VBoxGuest_RTMpGetPresentSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1926b25c VBoxGuest_RTLogRelLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x19790b4c VBoxGuest_RTLogFlags +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x197acd65 VBoxGuest_RTR0Init +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1a6d7d86 VBoxGuest_RTThreadPreemptIsEnabled +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1ae28abb VBoxGuest_RTThreadIsSelfAlive +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1c3b0f90 VBoxGuest_RTR0MemObjAddressR3 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1dc5ebbe VBoxGuest_RTThreadWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f3e577b VBoxGuest_RTMemTmpAllocZTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f70d065 VBoxGuest_RTErrConvertToErrno +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2003169b VBoxGuest_RTSpinlockAcquire +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x20728ae6 VBoxGuest_RTThreadCreateV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x20d9d625 VBoxGuest_RTTimeToString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x22058511 VBoxGuest_RTSemMutexRequestDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2254228b VBoxGuest_RTMpGetPresentCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2387f039 VBoxGuest_RTMpIsCpuPresent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x25219f5e VBoxGuest_RTR0Term +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2580d04c VBoxGuest_RTSemEventMultiSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2632a013 VBoxGuest_RTLogRelLoggerV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29708cf0 VBoxGuest_RTR0MemUserCopyTo +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2a2284fb VBoxGuest_RTAssertMayPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2af3453c VBoxGuest_RTLogPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2c2b5b46 VBoxGuest_RTTimerGetSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2cfefa48 VBoxGuest_RTLogBackdoorPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d445217 VBoxGuest_RTStrToInt64Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d581c06 VBoxGuest_RTMpCurSetIndexAndId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2eca7777 VBoxGuest_RTHeapSimpleAlloc +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2fb7502f VBoxGuest_RTThreadSetName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x30e40c69 VBoxGuest_RTLogSetDefaultInstanceThread +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3168cadf VBoxGuest_RTTimeSystemMilliTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x31ac4c5f VBoxGuest_RTThreadIsInitialized +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x33d7313a VBoxGuest_RTMpCpuId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x343e3e1b VBoxGuest_RTLogGetDestinations +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3480f453 VBoxGuest_RTSemMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x358153bb VBoxGuest_RTStrCopy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x362275e8 VBoxGuest_RTMemContFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x372d5e29 VBoxGuest_RTPowerNotificationDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x376d539c VBoxGuest_RTThreadGetType +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x381d7c24 VBoxGuest_RTMemAllocVarTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x383a0b9d VBoxGuest_RTMpPokeCpu +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a47392e VBoxGuest_RTErrConvertFromErrno +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b04381e VBoxGuest_RTSemEventMultiReset +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b231c95 VBoxGuest_RTTimeNanoTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3bcf543a VBoxGuest_RTLogGetDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3d00f113 VBoxGuest_g_u32RTAssertLine +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3de43f66 VBoxGuest_RTSemEventCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3dfc9ab8 VBoxGuest_RTSemMutexIsOwned +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3fbf3c07 VBoxGuest_RTThreadIsInInterrupt +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x40996438 VBoxGuest_RTSemEventMultiWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x42ecc6d1 VBoxGuest_RTThreadPreemptRestore +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x43fdd8d9 VBoxGuest_RTSemFastMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x44cfbc28 VBoxGuest_RTThreadGetNative +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x461fa9fe VBoxGuest_RTLogRelGetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x46c14223 VBoxGuest_RTLogSetCustomPrefixCallback +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x49f1be17 VBoxGuest_RTThreadFromNative +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x49f4d19c VBoxGuest_RTLogDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4ba5006e VBoxGuest_RTLogPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4bbec091 VBoxGuest_RTR0MemObjGetPagePhysAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4c7d8a56 VBoxGuest_RTSemEventMultiCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cac3157 VBoxGuest_RTLogFormatV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cecc93d VBoxGuest_RTR0MemObjEnterPhysTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cf913a1 VBoxGuest_RTThreadGetName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4ea67110 VBoxGuest_RTStrToInt32 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4f041d39 VBoxGuest_RTMemContAlloc +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4fc8e10c VBoxGuest_RTMpGetSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4fe9e5f1 VBoxGuest_RTR0MemObjProtect +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5040043b VBoxGuest_RTSemEventWaitExDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x508bb2c4 VBoxGuest_RTLogSetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x51ec28bd VBoxGuest_RTLogGetFlags +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53265abc VBoxGuest_RTLogSetBuffering +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5352c915 VBoxGuest_RTSemMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54098f34 VBoxGuest_RTTimerStop +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54ddf87c VBoxGuest_RTThreadPreemptIsPossible +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5595fc22 VBoxGuest_RTSpinlockDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x56596e82 VBoxGuest_RTThreadSelfName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x56c939fe VBoxGuest_RTAssertMsg1 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5847ae52 VBoxGuest_RTMpGetCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x58d1b65e VBoxGuest_RTThreadPreemptIsPending +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x598d3622 VBoxGuest_RTAssertMsg2AddWeak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5a97195c VBoxGuest_RTHeapSimpleRelocate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5aa6ed66 VBoxGuest_RTPowerSignalEvent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5b3a5164 VBoxGuest_RTLogWriteUser +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5cc0b1b2 VBoxGuest_RTProcSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5d3b1bd6 VBoxGuest_RTSemSpinMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e071eb3 VBoxGuest_RTSemEventMultiDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e17b70e VBoxGuest_RTSpinlockRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e75c570 VBoxGuest_RTStrToUInt16 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5eaea89a VBoxGuest_RTSemFastMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ee65bb7 VBoxGuest_RTStrToUInt16Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ef42fe5 VBoxGuest_RTTimerStart +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5f2f48bb VBoxGuest_RTLogWriteStdErr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x61143878 VBoxGuestIDCCall +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6173b384 VBoxGuest_RTMpOnPairIsConcurrentExecSupported +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x61770e8c VBoxGuest_RTStrToUInt32 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63378722 VBoxGuest_RTLogBackdoorPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x634946f7 VBoxGuest_RTMpIsCpuOnline +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x637a1d69 VBoxGuest_RTLogWriteStdOut +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6381bb97 VBoxGuest_RTStrFormat +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63b1fde6 VBoxGuest_RTMpCpuIdToSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63bc10b0 VBoxGuest_RTLogCreateExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x658cd915 VBoxGuest_RTR0MemObjFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x67135d2b VBoxGuest_RTSemFastMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6862822a VBoxGuest_RTHeapSimpleSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x695d63ad VBoxGuest_RTMpNotificationDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b01bbf3 VBoxGuest_RTMpOnSpecific +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b58b79d VBoxGuest_RTSemSpinMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b91f1ce VBoxGuest_RTStrFormatTypeDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c8460ac VBoxGuest_RTLogRelGetDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6cec7c3b VBoxGuest_RTTimerCreateEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6d8e9c87 VBoxGuest_RTTimeNow +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6e8541b7 VBoxGuest_RTAssertMsg2Weak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x704e1f6f VBoxGuest_RTAssertMsg2AddWeakV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x70867323 VBoxGuest_RTStrToUInt8Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x71060970 VBoxGuest_RTStrToUInt16Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x716e3be3 VBoxGuest_RTMpGetOnlineCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x729cc4ab VBoxGuest_RTR0MemObjSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x72ff1bc3 VBoxGuest_RTTimeIsLeapYear +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x730a01b0 VBoxGuest_RTLogRelSetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x74812dde VBoxGuest_RTStrToInt32Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x759e7492 VBoxGuest_RTSemFastMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x764ecb18 VBoxGuest_RTR0MemObjAllocLowTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76a3c47b VBoxGuest_RTMemAllocZVarTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x79d59e24 VBoxGuest_RTSemSpinMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7d0d9dae VBoxGuest_RTR0MemObjAllocPhysNCTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7d15e878 VBoxGuest_RTMpGetOnlineSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7dcc30d8 VBoxGuest_RTStrToInt32Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7e29739a VBoxGuest_RTStrToInt16 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7f0a40ea VBoxGuest_RTLogComPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7fc5bdcf VBoxGuest_RTR0MemObjAllocPhysTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8196c4e6 VBoxGuest_RTSemSpinMutexTryRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x82e081bc VBoxGuest_RTStrFormatTypeSetUser +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x83e78406 VBoxGuest_RTR0MemAreKrnlAndUsrDifferent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x841e42e9 VBoxGuest_RTSemMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8484a0d6 VBoxGuest_RTStrToInt16Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x84e227f6 VBoxGuest_RTThreadIsSelfKnown +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x86120100 VBoxGuest_RTLogDumpPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x867be0d2 VBoxGuest_RTLogDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x868b79a5 VBoxGuest_RTStrPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x879761cf VBoxGuest_RTR0MemObjAllocPhysExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x87da3860 VBoxGuest_RTAssertSetQuiet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8826d9de VBoxGuest_RTMpGetMaxCpuId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x883d496c VBoxGuest_RTMpGetCoreCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x885274fe VBoxGuest_RTThreadUserWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x89117f68 VBoxGuest_RTMemExecAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8a3c154f VBoxGuest_RTR0MemObjLockUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8a454b31 VBoxGuest_RTSemEventGetResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8e01e3fd VBoxGuest_RTStrFormatV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8f1309e3 VBoxGuest_RTAssertMsg2 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x90312938 VBoxGuest_RTStrToUInt64Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x91204a9b VBoxGuest_RTTimeSpecToString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x916e42f0 VBoxGuest_RTAssertMsg1Weak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9264ffc0 VBoxGuest_RTLogRelPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x926bf9f7 VBoxGuest_RTThreadPreemptDisable +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x92e716ae VBoxGuest_RTLogGetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x94f7365f VBoxGuest_RTPowerNotificationRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x95fa480d VBoxGuest_RTSpinlockCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x961772f3 VBoxGuestIDCOpen +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x967ea4b6 VBoxGuest_RTStrToInt64 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x96893ce3 VBoxGuest_RTR0MemObjAllocPageTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x96f2e65b VBoxGuest_RTR0MemUserCopyFrom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9796440b VBoxGuest_RTSemEventWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x97eb2414 VBoxGuest_RTThreadNativeSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9874cd16 VBoxGuest_RTMpIsCpuPossible +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9909ff3d VBoxGuest_g_pszRTAssertFunction +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9a2ee747 VBoxGuest_RTSemEventDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9bcc539d VBoxGuest_RTThreadUserReset +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9cd9213f VBoxGuest_RTR0MemKernelIsValidAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9d6b527c VBoxGuest_RTThreadWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9dbd63d6 VBoxGuest_RTStrPrintfEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9eaecd9d VBoxGuest_RTStrPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9f301085 VBoxGuest_RTTimeSpecFromString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9f4f616a VBoxGuest_RTLogLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9fb0596d VBoxGuest_RTMemDupTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa168a070 VBoxGuest_RTLogLoggerExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa34eb1b3 VBoxGuest_RTTimeSystemNanoTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa486e710 VBoxGuestIDCClose +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa554bd97 VBoxGuest_RTLogFlushRC +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5a26703 VBoxGuest_RTMpNotificationRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa696baed VBoxGuest_RTR0MemObjAddress +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6a22472 VBoxGuest_RTThreadUserWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6de1bcd VBoxGuest_RTTimerChangeInterval +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa86c5a96 VBoxGuest_RTSemEventSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaba9bc9c VBoxGuest_RTLogCloneRC +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xac990d74 VBoxGuest_RTTimerCanDoHighResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xacaac41d VBoxGuest_g_szRTAssertMsg1 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xad4fdf4e VBoxGuest_RTSemMutexRequestNoResumeDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xad649089 VBoxGuest_RTStrToUInt64Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xae3e0ecd VBoxGuest_RTLogRelPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaf6ffbfc VBoxGuest_RTThreadSleep +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb05840a7 VBoxGuest_RTSemEventMultiWaitExDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb1cc9148 VBoxGuest_RTLogWriteCom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb42ea0e3 VBoxGuest_g_pszRTAssertFile +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb444f4a1 VBoxGuest_RTLogDestinations +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb6941b2e VBoxGuest_RTStrToUInt8 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8c6e615 VBoxGuest_RTStrToUInt32Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8ca8fcb VBoxGuest_RTMpOnPair +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8df2b3a VBoxGuest_RTAssertShouldPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9b070b7 VBoxGuest_RTAssertMsg2V +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9d7a27d VBoxGuest_RTHeapSimpleDump +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaa97421 VBoxGuest_g_szRTAssertMsg2 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbb1ead73 VBoxGuest_RTR0MemKernelCopyTo +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbba928e6 VBoxGuest_RTHeapSimpleGetHeapSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc4d30f6 VBoxGuest_RTR0MemObjAllocContTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc85935a VBoxGuest_RTR0MemKernelCopyFrom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbe4e6114 VBoxGuest_RTLogFlushToLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbffedb55 VBoxGuest_RTMemAllocExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc1095c44 VBoxGuest_RTTimeImplode +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc1b3ada4 VBoxGuest_RTAssertMsg2WeakV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc3a1e5de VBoxGuest_RTLogGetGroupSettings +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc3fee96e VBoxGuest_RTMemAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4bd5fd8 VBoxGuest_RTStrPrintfExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc63cc2f0 VBoxGuest_RTR0MemExecDonate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc71362b7 VBoxGuest_RTLogRelSetBuffering +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc8fbf4aa VBoxGuest_RTHeapSimpleInit +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc91cea98 VBoxGuest_RTStrCopyEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc9a6a8e7 VBoxGuest_RTThreadCreateF +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcaee97bf VBoxGuest_RTLogComPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcb2a6b54 VBoxGuest_RTMemExecFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xceae9d6a VBoxGuest_RTStrConvertHexBytes +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd14e8ec2 VBoxGuest_RTTimerDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd1f3f0b9 VBoxGuest_RTSemEventWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2a37e73 VBoxGuest_RTTimerReleaseSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2d290ab VBoxGuest_RTStrToUInt8Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd3a125cb VBoxGuest_RTR0MemObjMapKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd46c35d4 VBoxGuest_RTMpOnAll +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd4b597fc VBoxGuest_RTStrCopyP +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd5bfc897 VBoxGuest_RTHeapSimpleAllocZ +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd637869e VBoxGuest_RTMemReallocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd69bc8e4 VBoxGuest_RTR0MemObjReserveUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd706d85c VBoxGuest_RTTimeFromString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd88c9330 VBoxGuest_RTLogLoggerV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd984a7f4 VBoxGuest_RTStrFormatTypeRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdc700594 VBoxGuest_RTSemEventMultiGetResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xde9ca744 VBoxGuest_RTThreadYield +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdfbc69bb VBoxGuest_RTThreadPreemptIsPendingTrusty +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe054d759 VBoxGuest_RTMemTmpFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe095cef8 VBoxGuest_RTThreadSetType +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0dc7391 VBoxGuest_RTThreadIsMain +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe1c6b3d7 VBoxGuest_RTR0MemObjMapKernelExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe2765c54 VBoxGuest_RTR0AssertPanicSystem +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe38d562c VBoxGuest_RTStrFormatNumber +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe3fd228f VBoxGuest_RTTimeMilliTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe7e42113 VBoxGuest_RTThreadSleepNoLog +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe88dae73 VBoxGuest_RTMemFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe8fad285 VBoxGuest_RTSemEventMultiWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea2f2944 VBoxGuest_RTStrToInt8Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea38e4f7 VBoxGuest_RTLogDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea71842b VBoxGuest_RTMpGetPresentCoreCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xebeefa0e VBoxGuest_RTR0ProcHandleSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xec3cc9a6 VBoxGuest_RTSemEventMultiWaitEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xee774b8e VBoxGuest_RTLogWriteDebugger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xeea4ee73 VBoxGuest_RTR0MemObjMapUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xef6e1359 VBoxGuest_RTMpOnOthers +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf02f22ab VBoxGuest_RTMemAllocZTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf0dbb702 VBoxGuest_RTHeapSimpleFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf26294bb VBoxGuest_RTR0MemObjIsMapping +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf2aa79bb VBoxGuest_RTThreadUserSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf3943009 VBoxGuest_RTTimerRequestSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf5d89855 VBoxGuest_RTLogGroupSettings +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf69aec24 VBoxGuest_RTStrToInt16Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf7397dd2 VBoxGuest_RTAssertSetMayPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf8113d66 VBoxGuest_RTMpOnAllIsConcurrentSafe +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf956a4e8 VBoxGuest_RTLogFlush +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf958d9cb VBoxGuest_RTLogCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfa7d95c9 VBoxGuest_RTR0MemUserIsValidAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfb31e12b VBoxGuest_RTStrToUInt32Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfba93ac9 VBoxGuest_RTR0MemObjReserveKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfbc67e88 VBoxGuest_RTMemFreeEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe72cef7 VBoxGuest_RTStrToInt8 +EXPORT_SYMBOL vmlinux 0x0017fbfc component_match_add +EXPORT_SYMBOL vmlinux 0x002d671c qdisc_destroy +EXPORT_SYMBOL vmlinux 0x00349442 simple_readpage +EXPORT_SYMBOL vmlinux 0x00350178 input_set_keycode +EXPORT_SYMBOL vmlinux 0x0054f46f prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x0058f563 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x0061ce59 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x007b94d7 ll_rw_block +EXPORT_SYMBOL vmlinux 0x0084656e pagecache_write_end +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x0095a5b9 sock_create_lite +EXPORT_SYMBOL vmlinux 0x00a170ea key_type_keyring +EXPORT_SYMBOL vmlinux 0x00af1653 padata_start +EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc +EXPORT_SYMBOL vmlinux 0x00cade38 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x0107deb5 page_put_link +EXPORT_SYMBOL vmlinux 0x0119bb65 blk_complete_request +EXPORT_SYMBOL vmlinux 0x011bb8e4 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x01442c23 __page_symlink +EXPORT_SYMBOL vmlinux 0x0159b84c tcf_exts_change +EXPORT_SYMBOL vmlinux 0x016bba17 x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x0171ce00 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x019cf27f scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x01b5b397 alloc_pages_current +EXPORT_SYMBOL vmlinux 0x01b6a01d __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x01eba34c freeze_super +EXPORT_SYMBOL vmlinux 0x01ec4842 fsync_bdev +EXPORT_SYMBOL vmlinux 0x01f3d803 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x0200c1a8 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x02593f83 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x028a5122 elevator_change +EXPORT_SYMBOL vmlinux 0x0291509c inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x029e817b key_put +EXPORT_SYMBOL vmlinux 0x02a09437 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02ac7312 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x02cafcd6 unregister_netdev +EXPORT_SYMBOL vmlinux 0x02cf0333 md_done_sync +EXPORT_SYMBOL vmlinux 0x02d41eec __kernel_write +EXPORT_SYMBOL vmlinux 0x02dfdffc mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x02e25e50 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x03097d33 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x0312f801 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x031394d2 PDE_DATA +EXPORT_SYMBOL vmlinux 0x0315320b __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x03216e56 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03456941 inet6_getname +EXPORT_SYMBOL vmlinux 0x034a0859 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x0358f1ef thaw_bdev +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036db8de __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x0374c15a tso_start +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037d5872 blk_run_queue +EXPORT_SYMBOL vmlinux 0x03a7d7a2 mntget +EXPORT_SYMBOL vmlinux 0x03ad7ddb bio_copy_kern +EXPORT_SYMBOL vmlinux 0x03da4142 amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04096e05 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x040bc73c elevator_init +EXPORT_SYMBOL vmlinux 0x0412bc48 dev_mc_del +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0424d070 param_get_uint +EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each +EXPORT_SYMBOL vmlinux 0x0427d26f pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x043fc13b vfs_statfs +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044b333c fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x045dd142 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04b197f2 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x04c473b7 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x04c54b76 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04cf9763 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x04d05e95 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x04d86133 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04e42dc3 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x04e90f12 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x04e9b961 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0548f465 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x0553d2f5 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x0569e68b nd_device_register +EXPORT_SYMBOL vmlinux 0x059e9bd1 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x05b0bff7 phy_attach +EXPORT_SYMBOL vmlinux 0x05bc0a20 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x05d0aaf0 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x05d2f4f4 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x05d4f2a0 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x05fc1f39 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x06052f8d __memmove +EXPORT_SYMBOL vmlinux 0x06081cd4 write_cache_pages +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061f4039 acpi_get_table_with_size +EXPORT_SYMBOL vmlinux 0x0623743b proc_douintvec +EXPORT_SYMBOL vmlinux 0x062611fe tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x062740d1 irq_set_chip +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06405b08 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x0662edc8 bioset_create +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache +EXPORT_SYMBOL vmlinux 0x0690fb6d set_posix_acl +EXPORT_SYMBOL vmlinux 0x06930d22 bdevname +EXPORT_SYMBOL vmlinux 0x06951f04 amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0x069addbf netif_device_detach +EXPORT_SYMBOL vmlinux 0x06a61158 unregister_nls +EXPORT_SYMBOL vmlinux 0x06ad0404 del_gendisk +EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x06cb61a4 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x06e788cb inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x06fd909f xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x070c72cf cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x0723864e simple_transaction_set +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x07428d54 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x0742a26d neigh_lookup +EXPORT_SYMBOL vmlinux 0x075d635f unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x07624426 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x0786d8bb ip_options_compile +EXPORT_SYMBOL vmlinux 0x078822e4 gen_pool_create +EXPORT_SYMBOL vmlinux 0x0797d6dd free_task +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 0x07bbced8 get_acl +EXPORT_SYMBOL vmlinux 0x07c3f2e8 param_get_ullong +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d69f98 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x07dd67bb blk_fetch_request +EXPORT_SYMBOL vmlinux 0x07f79a25 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083e4c30 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x08659e31 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x0892ec7d generic_write_checks +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x08acc6a1 down_write +EXPORT_SYMBOL vmlinux 0x08b86c7a dqput +EXPORT_SYMBOL vmlinux 0x08bd94fb insert_inode_locked +EXPORT_SYMBOL vmlinux 0x08d283ec tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x08d6b0c5 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x08e73c91 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08eedc5c __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x08faed63 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x0900ecc0 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x0905a798 locks_free_lock +EXPORT_SYMBOL vmlinux 0x0925a92b tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x093994cb framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x093e9b0c kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x0940f2a2 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x095d1794 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x095e8cca tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x09696626 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x096bbb3c dquot_transfer +EXPORT_SYMBOL vmlinux 0x098431ba acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098d6327 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x09ab5258 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x09b15f0e netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09cb0afb pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d7e175 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x0a108e13 pci_request_region +EXPORT_SYMBOL vmlinux 0x0a150a4c elv_register_queue +EXPORT_SYMBOL vmlinux 0x0a24ece7 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2fcdc2 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x0a3333cd agp_put_bridge +EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock +EXPORT_SYMBOL vmlinux 0x0a67dd52 make_bad_inode +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a886bb6 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x0aa1960d truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0aed42f5 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b42a38c skb_clone +EXPORT_SYMBOL vmlinux 0x0b479afa current_task +EXPORT_SYMBOL vmlinux 0x0b540893 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b70d871 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b80f380 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x0b9810e5 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x0bb4503a alloc_disk_node +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd879f8 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x0bf2163a sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x0bf35b94 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x0bf9e317 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x0c04e32a netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x0c1df77b devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c35ca71 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c66349b datagram_poll +EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c7031e5 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x0c86c1ca blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca145b3 inet_sendpage +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cac0980 generic_readlink +EXPORT_SYMBOL vmlinux 0x0cad362c scsi_unregister +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb06008 mdiobus_read +EXPORT_SYMBOL vmlinux 0x0cd3626b devm_ioremap +EXPORT_SYMBOL vmlinux 0x0cd8aca5 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0x0cdc0b40 nonseekable_open +EXPORT_SYMBOL vmlinux 0x0ce2ef9b dev_emerg +EXPORT_SYMBOL vmlinux 0x0cef6731 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x0cfb7eec neigh_event_ns +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d4501f5 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d77ebdd downgrade_write +EXPORT_SYMBOL vmlinux 0x0d80efb5 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dc34859 devm_iounmap +EXPORT_SYMBOL vmlinux 0x0dc87a1e dev_set_group +EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x0dee0118 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x0dfbd4fd jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x0e1a4925 kern_unmount +EXPORT_SYMBOL vmlinux 0x0e1d9619 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x0e32f7e1 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x0e5230a5 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x0e628865 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e7b9617 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x0e95f24f scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x0e998f14 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x0ea219b4 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x0ea5d788 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed8cc7b acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x0ed93ead filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x0ee5442c jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f02bb6f pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x0f0718a2 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x0f0e415d sock_rfree +EXPORT_SYMBOL vmlinux 0x0f3d187a nf_log_unregister +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 0x0fa251c9 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb63b03 netdev_update_features +EXPORT_SYMBOL vmlinux 0x0fb84031 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x0fbb5485 flush_signals +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0fe13d20 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x0ff080a2 vme_slave_request +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x100144bf inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x100e00e9 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x101b7032 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x103c3722 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x104a4e52 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x10674324 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10876fdc eth_header +EXPORT_SYMBOL vmlinux 0x10935e81 rt6_lookup +EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x109510f5 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x10ae9e6d revert_creds +EXPORT_SYMBOL vmlinux 0x10c424e0 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x10cf33b7 phy_device_register +EXPORT_SYMBOL vmlinux 0x10d85ad5 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x10d89afc balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10fd5b48 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110c2e3f vlan_vid_add +EXPORT_SYMBOL vmlinux 0x110ec1d7 __napi_schedule +EXPORT_SYMBOL vmlinux 0x11118156 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x1127c5af netdev_state_change +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x1165da19 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1181014d inet_release +EXPORT_SYMBOL vmlinux 0x119828a0 set_bh_page +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11d416c8 get_tz_trend +EXPORT_SYMBOL vmlinux 0x11d500a8 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x11dfe03b end_buffer_async_write +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 0x1210bb69 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x12154e7d __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x12197ce9 arch_dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x121eb369 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x121fdeea dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x122c5887 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x1248916e kill_pgrp +EXPORT_SYMBOL vmlinux 0x12509afc nvm_register +EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x125d9d99 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x1272fd8b dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x128dc7bd pv_cpu_ops +EXPORT_SYMBOL vmlinux 0x12938407 blkdev_put +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12a83b78 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x12ccf2be __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x12cfa123 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x1305d532 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13248d2b kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x132b637d down_write_trylock +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x1350a1e6 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x1356f40a pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x135df46a __scsi_add_device +EXPORT_SYMBOL vmlinux 0x136ec4c8 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x13befc69 sg_miter_start +EXPORT_SYMBOL vmlinux 0x13c6d49a tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13fbf63b qdisc_reset +EXPORT_SYMBOL vmlinux 0x141f6019 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x1420e753 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x143ca23a drop_nlink +EXPORT_SYMBOL vmlinux 0x14939e75 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x14c0c7ca pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14e9ce48 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x14f40a7a tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x150389d6 acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0x150e7911 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x151ae24b irq_to_desc +EXPORT_SYMBOL vmlinux 0x151b13e1 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x1546c717 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x15586fff build_skb +EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock +EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x15d97a68 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x164be579 fget_raw +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x168e8409 param_set_charp +EXPORT_SYMBOL vmlinux 0x16935026 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x16dc4d1f fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16f14242 set_cached_acl +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x171b8dc4 netlink_set_err +EXPORT_SYMBOL vmlinux 0x17275399 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x178fc438 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock +EXPORT_SYMBOL vmlinux 0x179cdd97 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x17a50677 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17bbf3f9 cdrom_open +EXPORT_SYMBOL vmlinux 0x17da3b48 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x1801c2cd tty_set_operations +EXPORT_SYMBOL vmlinux 0x1805fda2 napi_complete_done +EXPORT_SYMBOL vmlinux 0x1812f9c7 serio_rescan +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183f1b83 rwsem_wake +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x18405454 iget5_locked +EXPORT_SYMBOL vmlinux 0x18481946 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x187120fd xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x1889577f genphy_update_link +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x18979d94 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189c0f60 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x18a68935 phy_device_remove +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18ca6192 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x18d0c698 inode_change_ok +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x19035dbe get_unmapped_area +EXPORT_SYMBOL vmlinux 0x19071da7 dev_deactivate +EXPORT_SYMBOL vmlinux 0x19138035 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x191b18a7 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x1964c3ab mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a03b78 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x19abc5c8 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19bc356e blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19bf7c14 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x19c08b7d xfrm_state_update +EXPORT_SYMBOL vmlinux 0x19c85166 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x1a018533 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x1a1129be mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x1a147ef9 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x1a1588f7 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x1a1a9925 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x1a2a0798 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a45dd19 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x1a5c9764 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x1a5fc174 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a6f073a seq_putc +EXPORT_SYMBOL vmlinux 0x1a82d1a0 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x1a87f076 neigh_xmit +EXPORT_SYMBOL vmlinux 0x1a97b935 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ac5d75f key_invalidate +EXPORT_SYMBOL vmlinux 0x1ac63b5b __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x1ac69ad9 put_tty_driver +EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b3730ed ht_create_irq +EXPORT_SYMBOL vmlinux 0x1b3f9950 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x1b4af6bf udp6_set_csum +EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b75321f jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8a2fac try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b8d6aa0 vga_client_register +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bbb7ec3 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x1bc84e15 make_kgid +EXPORT_SYMBOL vmlinux 0x1bd96542 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x1bdf58ac lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock +EXPORT_SYMBOL vmlinux 0x1c0e8294 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x1c684d12 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x1c88f613 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x1c89d5e2 km_new_mapping +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1c8b7a6b node_data +EXPORT_SYMBOL vmlinux 0x1cc3ca96 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x1ccda987 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x1cd8b646 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x1cea26d3 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x1cf452ff netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x1cfa72bd fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x1d0ef4e0 d_move +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d1121e4 clear_nlink +EXPORT_SYMBOL vmlinux 0x1d3c905d dma_common_mmap +EXPORT_SYMBOL vmlinux 0x1d507147 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x1d51a6d4 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x1d666b3a get_disk +EXPORT_SYMBOL vmlinux 0x1d90c957 skb_checksum +EXPORT_SYMBOL vmlinux 0x1d9857a3 path_get +EXPORT_SYMBOL vmlinux 0x1dace254 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0x1df1ddb0 path_is_under +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 0x1e584ec4 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e7651c9 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x1e8f80b1 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea58142 pci_save_state +EXPORT_SYMBOL vmlinux 0x1eb0fd55 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ecdebbd put_page +EXPORT_SYMBOL vmlinux 0x1ee3ba02 amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0x1ee8b9c4 register_qdisc +EXPORT_SYMBOL vmlinux 0x1ef85e1b parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x1f2e2cc8 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x1f3d4e20 fput +EXPORT_SYMBOL vmlinux 0x1f4c392e sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x1f5048e3 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x1f54fb5d bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f7222cc bio_chain +EXPORT_SYMBOL vmlinux 0x1f7fa600 inc_nlink +EXPORT_SYMBOL vmlinux 0x1f810033 tcp_prot +EXPORT_SYMBOL vmlinux 0x1fb2a0dd alloc_disk +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fcb5f47 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd83fac bdgrab +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 0x20063da9 jbd2_journal_wipe +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 0x2024fb95 arp_create +EXPORT_SYMBOL vmlinux 0x2039371b __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x2044aea7 amd_iommu_pc_get_max_banks +EXPORT_SYMBOL vmlinux 0x204630b7 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x204b8c16 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2050f893 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x205108e4 d_lookup +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 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 0x2104a548 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x211858ee mmc_put_card +EXPORT_SYMBOL vmlinux 0x211b833b uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x212b3ae9 make_kprojid +EXPORT_SYMBOL vmlinux 0x213cc5d0 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x21468212 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x214b0287 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x217b1acb da903x_query_status +EXPORT_SYMBOL vmlinux 0x21855f6e generic_update_time +EXPORT_SYMBOL vmlinux 0x2185b07c acpi_pm_device_run_wake +EXPORT_SYMBOL vmlinux 0x219abff2 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x21a701fe fence_signal +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get +EXPORT_SYMBOL vmlinux 0x220618a3 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x22080957 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x22182053 param_set_copystring +EXPORT_SYMBOL vmlinux 0x2227d6f4 scsi_init_io +EXPORT_SYMBOL vmlinux 0x2229e169 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x223a4639 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x22958fe9 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x22a05c3d truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x22a3a330 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x22ab91d7 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22c3290f md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x22d8b999 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x22f0ba87 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x22ffb2c0 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x2318c70b genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x23405585 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x234d7539 force_sig +EXPORT_SYMBOL vmlinux 0x2357296a take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x23866be3 __get_page_tail +EXPORT_SYMBOL vmlinux 0x2393182c sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23a93c12 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x23b7ee52 unlock_page +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c7518f tty_devnum +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23cf97db vm_event_states +EXPORT_SYMBOL vmlinux 0x23e250e1 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240570aa dm_kobject_release +EXPORT_SYMBOL vmlinux 0x240c83f7 i2c_master_recv +EXPORT_SYMBOL vmlinux 0x2411e2f9 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x243b2574 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x243da61e fget +EXPORT_SYMBOL vmlinux 0x243dcdef simple_setattr +EXPORT_SYMBOL vmlinux 0x243e3a2b devm_memremap_pages +EXPORT_SYMBOL vmlinux 0x243e8455 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245d7d67 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x2460b028 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x2466359b set_create_files_as +EXPORT_SYMBOL vmlinux 0x247e5e49 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x247f1875 input_register_device +EXPORT_SYMBOL vmlinux 0x2481f74e phy_detach +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x2491fb36 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x2494fbb9 unload_nls +EXPORT_SYMBOL vmlinux 0x24b0ec98 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x24bc9542 nd_iostat_end +EXPORT_SYMBOL vmlinux 0x24c4ff21 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x24cbca42 pci_enable_device +EXPORT_SYMBOL vmlinux 0x24d0be0b page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x24ea1b41 sk_free +EXPORT_SYMBOL vmlinux 0x24ece2d6 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250fd18b sync_inode +EXPORT_SYMBOL vmlinux 0x251f7399 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x254ed321 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x2553db8a devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x2556de3f phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x256e4dc7 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x257205eb path_noexec +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258f8d35 param_get_string +EXPORT_SYMBOL vmlinux 0x25960fea sg_miter_next +EXPORT_SYMBOL vmlinux 0x25a108aa sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x25b6ca23 __scm_destroy +EXPORT_SYMBOL vmlinux 0x25c09036 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x25cd061e gnttab_alloc_pages +EXPORT_SYMBOL vmlinux 0x25cf1a7f stop_tty +EXPORT_SYMBOL vmlinux 0x25d2bb30 vga_con +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f63c1b d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x2625335a iov_iter_zero +EXPORT_SYMBOL vmlinux 0x26372260 skb_dequeue +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 0x26802c0d set_pages_nx +EXPORT_SYMBOL vmlinux 0x26805585 dev_get_stats +EXPORT_SYMBOL vmlinux 0x26948d96 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x26aa01d8 revalidate_disk +EXPORT_SYMBOL vmlinux 0x26af03ac jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create +EXPORT_SYMBOL vmlinux 0x26cbad2f pci_get_class +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e4617e kernel_bind +EXPORT_SYMBOL vmlinux 0x26e6be12 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26ed7ee3 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x27332d18 pci_restore_state +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x277927af lease_get_mtime +EXPORT_SYMBOL vmlinux 0x277b0596 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x27842cad netlink_net_capable +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove +EXPORT_SYMBOL vmlinux 0x27a6da3d agp_free_memory +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bf990f pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x27c33efe csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x27cc960f vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x27d7a161 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27ebc166 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x27ff5e5b xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x280549c6 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x284c69fe vmap +EXPORT_SYMBOL vmlinux 0x28551944 sync_filesystem +EXPORT_SYMBOL vmlinux 0x286b0f1d __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x2876e78c agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x28952678 d_delete +EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a763f3 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x28bd09df replace_mount_options +EXPORT_SYMBOL vmlinux 0x28cd8cb7 posix_test_lock +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28e90130 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x290a1069 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x290e150d pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x29108b65 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x29334c30 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x29945cbd vfs_whiteout +EXPORT_SYMBOL vmlinux 0x29b2279e __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x29b79920 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x29b86d40 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x29cb0619 input_close_device +EXPORT_SYMBOL vmlinux 0x29feafda uart_update_timeout +EXPORT_SYMBOL vmlinux 0x2a149b97 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x2a18eb88 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x2a1c078e mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a3e5ef4 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x2a3f069d d_splice_alias +EXPORT_SYMBOL vmlinux 0x2a403799 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x2a40b13d qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x2a70b970 generic_file_open +EXPORT_SYMBOL vmlinux 0x2a824d55 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x2a931765 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x2a9c286f trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ad68d88 thaw_super +EXPORT_SYMBOL vmlinux 0x2affa17c put_cmsg +EXPORT_SYMBOL vmlinux 0x2b01851f pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x2b05a21b intel_gtt_get +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b3777e7 free_netdev +EXPORT_SYMBOL vmlinux 0x2b3deb4b touch_buffer +EXPORT_SYMBOL vmlinux 0x2b4590d0 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x2b49d338 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x2b58043c skb_queue_head +EXPORT_SYMBOL vmlinux 0x2b7093a5 __breadahead +EXPORT_SYMBOL vmlinux 0x2b790459 sock_no_connect +EXPORT_SYMBOL vmlinux 0x2b8faa94 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x2b8faff1 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba69db5 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2ba80568 d_rehash +EXPORT_SYMBOL vmlinux 0x2bb43f97 freeze_bdev +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2bbc7c59 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x2bcce224 textsearch_register +EXPORT_SYMBOL vmlinux 0x2bd8438f uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x2bddff94 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c04bf89 padata_alloc +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2ba192 set_trace_device +EXPORT_SYMBOL vmlinux 0x2c45de8c lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x2c4b6671 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x2c506000 param_set_bint +EXPORT_SYMBOL vmlinux 0x2c60a9df ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x2c61dea8 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x2c7012bb blk_integrity_register +EXPORT_SYMBOL vmlinux 0x2c80b59e pci_fixup_device +EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x2cc40ecf fence_remove_callback +EXPORT_SYMBOL vmlinux 0x2cc45de0 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2d0bf355 put_io_context +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x2d23af8e __napi_complete +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d3aff99 skb_pull +EXPORT_SYMBOL vmlinux 0x2d43b3d7 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x2d7c5a2a xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x2d998c94 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x2dba020a pci_iomap_range +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 0x2df468aa skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e1027e9 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x2e103d2f request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e4c14b6 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e7c352e devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x2e7f5974 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x2e823475 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x2e9e600b scsi_remove_target +EXPORT_SYMBOL vmlinux 0x2ea273fd vme_dma_request +EXPORT_SYMBOL vmlinux 0x2ea7ac17 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x2eab2d1b processors +EXPORT_SYMBOL vmlinux 0x2ec04399 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x2ecb684d blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f0fd3ea zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f461362 devm_free_irq +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f4db951 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x2f64f89f cpu_present_mask +EXPORT_SYMBOL vmlinux 0x2f7c1e31 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x2f90024d mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fbccc9d blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x2fc33103 mmc_erase +EXPORT_SYMBOL vmlinux 0x2fc83bdf mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x2fcb1105 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fed541a __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x2ff063b5 acpi_get_name +EXPORT_SYMBOL vmlinux 0x2ff41bfe bioset_free +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x30254d29 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x3027475e textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x304895bc proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x3056650d pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x3061414b skb_copy_bits +EXPORT_SYMBOL vmlinux 0x306265e8 d_path +EXPORT_SYMBOL vmlinux 0x306c9550 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x3070b117 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x307733f5 param_ops_charp +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a7a635 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30adbe68 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x30b00390 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x30b04526 ida_init +EXPORT_SYMBOL vmlinux 0x30b84e04 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x30c9410c pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30eef6b1 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x31211401 __seq_open_private +EXPORT_SYMBOL vmlinux 0x3122ae9c vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x3132f43f inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x3167cf0f gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x31794655 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x31851ccc ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x3193bfdf tso_build_hdr +EXPORT_SYMBOL vmlinux 0x319434ce agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x31aa86df pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31c39589 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x31c445e1 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x321112e1 dcb_setapp +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x326bc516 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x327321ae icmp_send +EXPORT_SYMBOL vmlinux 0x327dfe7a fb_blank +EXPORT_SYMBOL vmlinux 0x32b3f9c1 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32f03b4f inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x330d939f kernel_listen +EXPORT_SYMBOL vmlinux 0x3310e87e flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x33166196 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x331ca216 file_remove_privs +EXPORT_SYMBOL vmlinux 0x3329a1f8 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x3345d58c pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x3356b90b cpu_tss +EXPORT_SYMBOL vmlinux 0x33754f91 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x3380573e sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x33aff102 mount_subtree +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33d53fbc kmalloc_caches +EXPORT_SYMBOL vmlinux 0x33da0cfe alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f5240d param_get_short +EXPORT_SYMBOL vmlinux 0x33f8013a pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x341c962d dput +EXPORT_SYMBOL vmlinux 0x342ce7e4 netdev_printk +EXPORT_SYMBOL vmlinux 0x342cef6a netif_skb_features +EXPORT_SYMBOL vmlinux 0x343551b3 cad_pid +EXPORT_SYMBOL vmlinux 0x34450b4e pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x345d048d pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x346d2729 md_error +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x34728bce clear_inode +EXPORT_SYMBOL vmlinux 0x349213ef cpu_core_map +EXPORT_SYMBOL vmlinux 0x3492f660 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34da52f3 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x34dc8b45 pci_map_rom +EXPORT_SYMBOL vmlinux 0x34e6e39e free_buffer_head +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x351526e5 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x3515695f fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x3556e158 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x357d8f7b blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x3588674f bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x358c42c8 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x35a2457b sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b3795e tcp_seq_open +EXPORT_SYMBOL vmlinux 0x35ddb633 __mutex_init +EXPORT_SYMBOL vmlinux 0x35e07961 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x35edd988 netdev_err +EXPORT_SYMBOL vmlinux 0x36012618 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x3602d64b __destroy_inode +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3648d5b8 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x368016b2 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x3691d483 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36af5149 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36be9702 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x36cadb57 md_update_sb +EXPORT_SYMBOL vmlinux 0x36d9f085 get_empty_filp +EXPORT_SYMBOL vmlinux 0x36f8aac9 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x36fbf6c2 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x36feb1e2 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x3701a196 csum_partial_copy_to_user +EXPORT_SYMBOL vmlinux 0x370f9850 efi +EXPORT_SYMBOL vmlinux 0x37148b94 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x37165ee2 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x371f0e4a udp_seq_open +EXPORT_SYMBOL vmlinux 0x3724d74d pci_dev_put +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x374b7e8e __skb_checksum +EXPORT_SYMBOL vmlinux 0x374fd4cd crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x3753b957 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x375584d3 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x3759a627 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x37627b92 __brelse +EXPORT_SYMBOL vmlinux 0x37658481 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x3778cb8d vme_irq_request +EXPORT_SYMBOL vmlinux 0x37924629 inet_frag_find +EXPORT_SYMBOL vmlinux 0x37972fb2 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b0e546 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c46092 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x37c89d0f ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x37c92435 serio_bus +EXPORT_SYMBOL vmlinux 0x37d4187d blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37de07ab release_pages +EXPORT_SYMBOL vmlinux 0x37de0efc vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x37e1a9d7 __bforget +EXPORT_SYMBOL vmlinux 0x38029eda vfs_setpos +EXPORT_SYMBOL vmlinux 0x3807f068 sock_no_listen +EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x382e63b2 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x38450903 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x384c66f8 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x3855ce69 __ht_create_irq +EXPORT_SYMBOL vmlinux 0x385db433 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x3866c316 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x38787554 nf_log_unset +EXPORT_SYMBOL vmlinux 0x3881364a audit_log_start +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388b1865 fb_find_mode +EXPORT_SYMBOL vmlinux 0x388fbd95 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38c02289 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x38d2f870 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x38db02d1 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x38f33bed dump_fpu +EXPORT_SYMBOL vmlinux 0x38ffb244 notify_change +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x390b5752 kset_unregister +EXPORT_SYMBOL vmlinux 0x39387cb0 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x393d53a8 phy_driver_register +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394dbbf0 may_umount +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x397f5289 udp_lib_rehash +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 0x39b266df mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39c1ed3d blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x39c7c4e2 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x39dd9223 x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a1f90c9 kill_block_super +EXPORT_SYMBOL vmlinux 0x3a2ec351 blk_start_request +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a36089c deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x3a407dfb agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x3a5e9fff seq_lseek +EXPORT_SYMBOL vmlinux 0x3a74c908 iget_locked +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa45e82 read_cache_page +EXPORT_SYMBOL vmlinux 0x3aa75067 dev_trans_start +EXPORT_SYMBOL vmlinux 0x3aa9b3e6 scsi_register +EXPORT_SYMBOL vmlinux 0x3ab3c26d i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x3af0d679 mount_single +EXPORT_SYMBOL vmlinux 0x3af630a1 lease_modify +EXPORT_SYMBOL vmlinux 0x3af67f39 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x3b0b8e54 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x3b1a417e neigh_app_ns +EXPORT_SYMBOL vmlinux 0x3b20d567 seq_release_private +EXPORT_SYMBOL vmlinux 0x3b4272cf noop_llseek +EXPORT_SYMBOL vmlinux 0x3b4f8c45 neigh_for_each +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b64a642 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x3b6f6cd2 udp_table +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3ba44444 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait +EXPORT_SYMBOL vmlinux 0x3bcb0670 get_super_thawed +EXPORT_SYMBOL vmlinux 0x3bcbd449 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x3bd12644 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0x3c11559b dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x3c1902f8 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x3c23d46b dev_addr_init +EXPORT_SYMBOL vmlinux 0x3c26c004 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c5bcc27 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x3c669f7d dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x3c6b1d7b tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c9b919b wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x3cad2d7c dquot_drop +EXPORT_SYMBOL vmlinux 0x3cc5f4d5 skb_unlink +EXPORT_SYMBOL vmlinux 0x3cdd7322 dump_page +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf9ce31 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x3d1177af __skb_get_hash +EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x3d42ce35 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x3d47dfc5 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x3d52a534 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x3d5deca4 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x3d73dbaa get_task_exe_file +EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc +EXPORT_SYMBOL vmlinux 0x3d7f27d1 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x3d915734 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x3d93ce54 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3dafe568 audit_log +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dcf76e5 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x3dd34183 security_mmap_file +EXPORT_SYMBOL vmlinux 0x3dd48553 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x3dd6a47a dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x3de6c56b __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x3decc684 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x3df93003 i2c_master_send +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0738b9 vme_slot_num +EXPORT_SYMBOL vmlinux 0x3e1cc86b xfrm_input +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e3eda8b dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x3e64a33a complete_request_key +EXPORT_SYMBOL vmlinux 0x3e7f2830 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3e998abf param_ops_string +EXPORT_SYMBOL vmlinux 0x3eb48999 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x3ebe9c88 vfs_write +EXPORT_SYMBOL vmlinux 0x3ec66a7c hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x3ed706ef submit_bio +EXPORT_SYMBOL vmlinux 0x3ee8aa7c blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x3ee92d3f noop_fsync +EXPORT_SYMBOL vmlinux 0x3eecc30d loop_backing_file +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f0bb71f generic_file_fsync +EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock +EXPORT_SYMBOL vmlinux 0x3f39fc9f nvm_register_target +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f482441 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x3f535198 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x3f66fe00 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x3f6da13e dev_uc_del +EXPORT_SYMBOL vmlinux 0x3f79aa78 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x3f8422e6 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x3f86727e genphy_resume +EXPORT_SYMBOL vmlinux 0x3f93e593 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x3f96adfe __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x3f9f597f max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x3fb35284 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x3fb51793 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x3fb97c4b mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x3fc5fbd2 elv_rb_find +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x404615db compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x40464eee vm_insert_page +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x406bef33 seq_pad +EXPORT_SYMBOL vmlinux 0x40797c50 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x407d7996 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x4088679e n_tty_compat_ioctl_helper +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 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e6df69 __nla_reserve +EXPORT_SYMBOL vmlinux 0x40ec7e31 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x4105acd5 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x4112375d __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x4129d6ee skb_queue_purge +EXPORT_SYMBOL vmlinux 0x414358f2 dump_truncate +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x415f4781 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x41859e0b inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418cc093 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x4191368a open_check_o_direct +EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41bcb49c __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x41d9b229 tty_mutex +EXPORT_SYMBOL vmlinux 0x41e07053 phy_disconnect +EXPORT_SYMBOL vmlinux 0x41e76b81 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x42117d6b open_exec +EXPORT_SYMBOL vmlinux 0x4214fd65 dquot_disable +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x4234f096 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen +EXPORT_SYMBOL vmlinux 0x4236abad tty_hangup +EXPORT_SYMBOL vmlinux 0x423a3d97 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x42452222 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42519824 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x426be1e0 amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0x426f4ba3 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x42751276 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x42789f6e __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x42935d96 tcf_register_action +EXPORT_SYMBOL vmlinux 0x429c0347 gnttab_free_pages +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42b59d15 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x42b60479 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x42b8d522 amd_iommu_enable_device_erratum +EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x42cc1d0f nf_getsockopt +EXPORT_SYMBOL vmlinux 0x42cfb093 kthread_bind +EXPORT_SYMBOL vmlinux 0x42d90bfb console_start +EXPORT_SYMBOL vmlinux 0x42dad681 mapping_tagged +EXPORT_SYMBOL vmlinux 0x42f257a2 netdev_notice +EXPORT_SYMBOL vmlinux 0x42f90a47 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4363c561 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438e0ed9 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x43955d4d request_firmware +EXPORT_SYMBOL vmlinux 0x439b4cf1 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x439ffd92 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x43b0d108 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x43cfe6cb lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43fc82cf cdev_init +EXPORT_SYMBOL vmlinux 0x440aeea8 ps2_end_command +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x442828a7 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x444b9b77 security_path_symlink +EXPORT_SYMBOL vmlinux 0x446a88fe devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x44728a62 sock_create +EXPORT_SYMBOL vmlinux 0x4483a3a1 i2c_transfer +EXPORT_SYMBOL vmlinux 0x4489da02 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x448ef4ba __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x44917999 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x4496434f reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x449fe84b acpi_set_firmware_waking_vectors +EXPORT_SYMBOL vmlinux 0x44a1b096 proc_set_user +EXPORT_SYMBOL vmlinux 0x44a81d5f acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0x44a954a9 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44b60b8e pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x452fd07d kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x45319752 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x455bf701 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x457191de blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x4572d8cf inet6_ioctl +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x459cfd91 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x459f5fa8 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45b1a05e pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x45b827f8 security_path_chown +EXPORT_SYMBOL vmlinux 0x45ce7c68 d_genocide +EXPORT_SYMBOL vmlinux 0x45d3a165 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x45e55556 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x45fcf662 param_set_short +EXPORT_SYMBOL vmlinux 0x45fedf39 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x4604a43a mem_section +EXPORT_SYMBOL vmlinux 0x4616d2c5 ip_getsockopt +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 0x466fa916 amd_iommu_get_v2_domain +EXPORT_SYMBOL vmlinux 0x46733aea sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x46ae13e0 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x46b60d17 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46d2b9d9 dev_get_flags +EXPORT_SYMBOL vmlinux 0x46d4fb7b sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x46f5ccfb tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x47046514 block_commit_write +EXPORT_SYMBOL vmlinux 0x470f4945 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x4720a2a7 __vfs_read +EXPORT_SYMBOL vmlinux 0x472298f0 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x4740b544 dev_activate +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x47776259 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x477e6dcb amd_iommu_pc_get_set_reg_val +EXPORT_SYMBOL vmlinux 0x477fe19d padata_remove_cpu +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 0x47af7946 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x47b7cf5f __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x47e4effe skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x47e5dcf0 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x4808e789 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x48516a19 filp_close +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485c5872 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x48637e37 inode_set_flags +EXPORT_SYMBOL vmlinux 0x48767d59 lock_fb_info +EXPORT_SYMBOL vmlinux 0x4877494c param_ops_ullong +EXPORT_SYMBOL vmlinux 0x488759ae neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x48977b20 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c00ea4 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x48c12d7a mntput +EXPORT_SYMBOL vmlinux 0x48d3fad9 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier +EXPORT_SYMBOL vmlinux 0x48d5aa47 block_read_full_page +EXPORT_SYMBOL vmlinux 0x48e288d9 key_validate +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490a2562 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x492793c9 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x492eb541 con_is_bound +EXPORT_SYMBOL vmlinux 0x49364dbb pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x495acb67 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x496de35f kill_litter_super +EXPORT_SYMBOL vmlinux 0x497e9e29 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x49801765 find_vma +EXPORT_SYMBOL vmlinux 0x4998dfc9 clkdev_drop +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49caa98f inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a0dc234 __dax_fault +EXPORT_SYMBOL vmlinux 0x4a129bf7 kill_fasync +EXPORT_SYMBOL vmlinux 0x4a147917 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x4a1e3cd2 filp_open +EXPORT_SYMBOL vmlinux 0x4a4098d1 simple_write_begin +EXPORT_SYMBOL vmlinux 0x4a583182 simple_lookup +EXPORT_SYMBOL vmlinux 0x4a60a448 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x4a724c6a vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x4a742494 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x4a7f2752 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4a9709c3 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x4aa30f88 setup_new_exec +EXPORT_SYMBOL vmlinux 0x4ab9c243 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4aca9357 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x4acbd804 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ad41f2f pci_pme_active +EXPORT_SYMBOL vmlinux 0x4aedf651 set_nlink +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4affb9d9 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b0c6b11 fb_get_mode +EXPORT_SYMBOL vmlinux 0x4b2b550d ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x4b3c6599 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x4b5b5724 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b62ed0f inet_frags_init +EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x4b6bade0 ilookup5 +EXPORT_SYMBOL vmlinux 0x4b7d9d7e single_release +EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bb6a9b9 netdev_crit +EXPORT_SYMBOL vmlinux 0x4bbcd728 dcb_getapp +EXPORT_SYMBOL vmlinux 0x4bc46785 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x4bc9c6c9 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x4bd9a6a2 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c2472e2 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c3654bb kobject_set_name +EXPORT_SYMBOL vmlinux 0x4c553a9a pnp_device_attach +EXPORT_SYMBOL vmlinux 0x4c601fdc param_set_ulong +EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x4c9a228a km_is_alive +EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4cb71897 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x4cc35680 input_event +EXPORT_SYMBOL vmlinux 0x4cc4ff77 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x4cd0e509 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x4cd16852 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x4cd770dd blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ce203ca blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x4ce5db0b tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x4ce7031a bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x4cf79ebf vfs_mkdir +EXPORT_SYMBOL vmlinux 0x4cfc87da skb_make_writable +EXPORT_SYMBOL vmlinux 0x4d215a58 update_devfreq +EXPORT_SYMBOL vmlinux 0x4d31795d security_path_unlink +EXPORT_SYMBOL vmlinux 0x4d7f5162 sk_dst_check +EXPORT_SYMBOL vmlinux 0x4d8440a4 param_array_ops +EXPORT_SYMBOL vmlinux 0x4d9405dd __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4daf9ff4 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x4db9a5e6 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x4ddfb038 tty_name +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df37f6c touch_atime +EXPORT_SYMBOL vmlinux 0x4e0e6055 bdi_init +EXPORT_SYMBOL vmlinux 0x4e2c256c skb_clone_sk +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e45faf6 dcache_readdir +EXPORT_SYMBOL vmlinux 0x4e6306ab tty_lock +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6d2038 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e78702d __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x4e990975 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ed4e1b7 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x4ed6aeaa mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x4ee082d0 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x4ee6cd4d blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x4eec44fd dev_mc_sync +EXPORT_SYMBOL vmlinux 0x4eefbefa scsi_ioctl +EXPORT_SYMBOL vmlinux 0x4f080d34 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x4f09d38e register_framebuffer +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2d956c twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f3bb6a7 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x4f420f2b blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user +EXPORT_SYMBOL vmlinux 0x4f735f4d netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x4f7507ec skb_seq_read +EXPORT_SYMBOL vmlinux 0x4f75a6eb netif_carrier_on +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f7a4827 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user +EXPORT_SYMBOL vmlinux 0x4fa026fc send_sig_info +EXPORT_SYMBOL vmlinux 0x4fbe813a fasync_helper +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4ff19a7e input_release_device +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x500b5bf9 __alloc_skb +EXPORT_SYMBOL vmlinux 0x5051e70d ip6_frag_init +EXPORT_SYMBOL vmlinux 0x50521343 dm_put_table_device +EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x5068342d __neigh_create +EXPORT_SYMBOL vmlinux 0x506b574b blk_put_queue +EXPORT_SYMBOL vmlinux 0x50714303 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x50850f13 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x50947bdb ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50ae5d9a inode_set_bytes +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50bd5b31 pci_request_regions +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50e7576a udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x50ef2074 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x50ef55be make_kuid +EXPORT_SYMBOL vmlinux 0x5113c734 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x51288a4b mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x513ae1c9 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x515e6532 vfs_writev +EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock +EXPORT_SYMBOL vmlinux 0x517d9dd5 new_inode +EXPORT_SYMBOL vmlinux 0x51841f21 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x51a7a66c __serio_register_port +EXPORT_SYMBOL vmlinux 0x51adebca buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x51b8a362 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51f6d7ef dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x520bdefc ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x520d44c3 param_set_long +EXPORT_SYMBOL vmlinux 0x52130046 acpi_check_address_range +EXPORT_SYMBOL vmlinux 0x521a206e inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x52328091 phy_stop +EXPORT_SYMBOL vmlinux 0x52462b73 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x525a04aa blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x525a8293 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x526f8af1 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x527f1ac7 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x5284cb55 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x5295fea2 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a91224 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x52b0c11e security_path_chmod +EXPORT_SYMBOL vmlinux 0x52bb28ba i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x52bcb110 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x52db2eba vfs_link +EXPORT_SYMBOL vmlinux 0x52f01548 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x5316c41c jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x53212824 security_path_mknod +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x533aaaef cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x53447b65 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x5350180f vfs_fsync +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 0x538841c2 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x539d3ce2 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x53c60c41 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x53db69ec d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x53efd7c1 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x53f34931 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x54059a2a amd_iommu_pc_get_max_counters +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x542270c5 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x542788e1 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x54314f5f inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54447422 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x546353db block_write_end +EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0x54653c57 iterate_mounts +EXPORT_SYMBOL vmlinux 0x5467d0f5 nobh_write_end +EXPORT_SYMBOL vmlinux 0x546f5892 udp_poll +EXPORT_SYMBOL vmlinux 0x54851b07 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x54934a53 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54d928a2 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x54db95f7 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f24d1a fence_default_wait +EXPORT_SYMBOL vmlinux 0x54f4e19c mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551bedc7 fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x551cd45a __invalidate_device +EXPORT_SYMBOL vmlinux 0x5536df89 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x555f6938 lockref_get +EXPORT_SYMBOL vmlinux 0x556658f7 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x557d4a99 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x557fd2cd dcache_dir_open +EXPORT_SYMBOL vmlinux 0x5598f462 seq_path +EXPORT_SYMBOL vmlinux 0x55aa78ea security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x55ab735f generic_permission +EXPORT_SYMBOL vmlinux 0x55b96f3b amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55de434d inet_del_offload +EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x55e645dd proc_mkdir +EXPORT_SYMBOL vmlinux 0x55e92581 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node +EXPORT_SYMBOL vmlinux 0x562aee23 simple_write_end +EXPORT_SYMBOL vmlinux 0x562c7e4b tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x5642e819 dquot_resume +EXPORT_SYMBOL vmlinux 0x5653a35a __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x5654aa0c tcp_req_err +EXPORT_SYMBOL vmlinux 0x5663edc6 ppp_input +EXPORT_SYMBOL vmlinux 0x566b14df inode_init_owner +EXPORT_SYMBOL vmlinux 0x568be373 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x569885e9 padata_do_serial +EXPORT_SYMBOL vmlinux 0x56a56444 nvm_end_io +EXPORT_SYMBOL vmlinux 0x56ab7a3c input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56e204a3 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x56e52d29 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x56f43eb9 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x56feba54 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x570e4722 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x570fdc11 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x57189213 try_module_get +EXPORT_SYMBOL vmlinux 0x57269a36 tcp_check_req +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57646495 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5769cb90 simple_empty +EXPORT_SYMBOL vmlinux 0x577a201b sock_wmalloc +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57942d56 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x579634a3 ata_print_version +EXPORT_SYMBOL vmlinux 0x57ba72ab fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x57c09288 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x57eacd5f __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x57fbb97f __frontswap_store +EXPORT_SYMBOL vmlinux 0x580a3056 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582a5fc2 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x5838271f nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x584c0be8 sock_no_poll +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 0x5889801b proto_register +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58cc2659 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58ecd6a4 generic_setxattr +EXPORT_SYMBOL vmlinux 0x58fb1db3 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x58fdb364 md_write_start +EXPORT_SYMBOL vmlinux 0x58fff317 kfree_put_link +EXPORT_SYMBOL vmlinux 0x5928987e swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x599fc17a phy_start +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x59ebfb34 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a1c4f7e scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x5a2bb5d2 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x5a3612d6 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a58f89f __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit +EXPORT_SYMBOL vmlinux 0x5a87ccce init_task +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9a938b sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x5aa683ca igrab +EXPORT_SYMBOL vmlinux 0x5aaaeab8 udp_del_offload +EXPORT_SYMBOL vmlinux 0x5ab3a85c mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5adc0cd1 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x5af47685 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x5af4b410 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x5afb26cb request_key_async +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b0f7c6e input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x5b10f1ae dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x5b1d8cf2 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x5b25ebce skb_find_text +EXPORT_SYMBOL vmlinux 0x5b2ebef6 param_get_charp +EXPORT_SYMBOL vmlinux 0x5b2f6e45 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x5b512f19 elv_add_request +EXPORT_SYMBOL vmlinux 0x5b55cc42 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b6be432 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x5b6d150c i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x5b742195 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x5b762206 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x5b933512 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x5b9c808a acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0x5ba2205f pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bc5f3c1 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x5bc8d583 copy_from_user_overflow +EXPORT_SYMBOL vmlinux 0x5bd4915e input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x5c0577c0 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x5c139bfb inode_dio_wait +EXPORT_SYMBOL vmlinux 0x5c272291 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x5c6ecb57 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x5c703390 file_open_root +EXPORT_SYMBOL vmlinux 0x5c9b3403 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x5c9c30b5 misc_register +EXPORT_SYMBOL vmlinux 0x5ca4f6c6 simple_follow_link +EXPORT_SYMBOL vmlinux 0x5cacb0ac scsi_print_result +EXPORT_SYMBOL vmlinux 0x5cb4925e input_reset_device +EXPORT_SYMBOL vmlinux 0x5cb4d0a2 param_get_long +EXPORT_SYMBOL vmlinux 0x5cb60f8c register_md_personality +EXPORT_SYMBOL vmlinux 0x5cf15cb0 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf806cf d_obtain_root +EXPORT_SYMBOL vmlinux 0x5d0161ec proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x5d3bcbf7 follow_pfn +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d596766 phy_suspend +EXPORT_SYMBOL vmlinux 0x5d607c64 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x5d62743a sock_init_data +EXPORT_SYMBOL vmlinux 0x5d7061c4 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d806c00 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done +EXPORT_SYMBOL vmlinux 0x5d8c89fc path_nosuid +EXPORT_SYMBOL vmlinux 0x5d8f1f93 mutex_unlock +EXPORT_SYMBOL vmlinux 0x5d9b4b49 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x5dc79a33 udp_set_csum +EXPORT_SYMBOL vmlinux 0x5de89d8f md_cluster_mod +EXPORT_SYMBOL vmlinux 0x5e18fd1a blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x5e1f7a9f tso_build_data +EXPORT_SYMBOL vmlinux 0x5e365639 __elv_add_request +EXPORT_SYMBOL vmlinux 0x5e7581eb dev_close +EXPORT_SYMBOL vmlinux 0x5e87b956 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9b9600 blk_put_request +EXPORT_SYMBOL vmlinux 0x5ea46658 __d_drop +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 0x5ef42099 flow_cache_fini +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f3c1afc lock_sock_nested +EXPORT_SYMBOL vmlinux 0x5f3e0005 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x5f473575 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x5f57b017 secpath_dup +EXPORT_SYMBOL vmlinux 0x5f5aca82 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x5f5fb85f lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x5f6b0ea4 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x5f88b559 ab3100_event_register +EXPORT_SYMBOL vmlinux 0x5f94bda9 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x5f9e6af8 put_disk +EXPORT_SYMBOL vmlinux 0x5fa379f4 serio_interrupt +EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init +EXPORT_SYMBOL vmlinux 0x5fbc35a7 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x5fbd2158 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x5fc15c2f account_page_redirty +EXPORT_SYMBOL vmlinux 0x5fc207fc is_nd_btt +EXPORT_SYMBOL vmlinux 0x5fc866b5 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x5fd1fadd dev_uc_sync +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fdc023d dquot_commit_info +EXPORT_SYMBOL vmlinux 0x60048bf6 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6016034c dmam_pool_create +EXPORT_SYMBOL vmlinux 0x601ad6c0 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6029f2e9 would_dump +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x6034a8b5 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x603b7858 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x603d4a69 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x605db5a0 ihold +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x608ca1a7 from_kgid_munged +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 0x60a6cd36 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x60aca437 param_get_bool +EXPORT_SYMBOL vmlinux 0x60c9e2c1 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60f9ae00 pci_dev_get +EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x61520529 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x616bc9df simple_release_fs +EXPORT_SYMBOL vmlinux 0x6184fdd6 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61cb910f invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x61cdeecf cdrom_release +EXPORT_SYMBOL vmlinux 0x61d10c74 try_to_release_page +EXPORT_SYMBOL vmlinux 0x61e9f8c9 genphy_suspend +EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x61fb248a node_states +EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621cc510 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x62223d2d agp_alloc_page_array +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 0x624c266e fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62748e70 acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x627eda6c inet_csk_accept +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628b657a send_sig +EXPORT_SYMBOL vmlinux 0x629a90a2 start_tty +EXPORT_SYMBOL vmlinux 0x62aa9fb2 lro_flush_all +EXPORT_SYMBOL vmlinux 0x62ac359a pci_reenable_device +EXPORT_SYMBOL vmlinux 0x62b1a3ac msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x62c85c2c i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x62ea3579 lookup_bdev +EXPORT_SYMBOL vmlinux 0x62f8de50 flow_cache_init +EXPORT_SYMBOL vmlinux 0x63150f62 input_allocate_device +EXPORT_SYMBOL vmlinux 0x6317356c textsearch_unregister +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x63291c8b bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x632c671a netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x63311a1c generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x63352dba kobject_del +EXPORT_SYMBOL vmlinux 0x6354b310 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x6366c7b3 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0x637cf55f tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x63870d84 nf_nat_decode_session_hook +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 0x63b00de6 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x63bc654a iov_iter_init +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63ce52b2 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x63d57a95 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x63dae3bc input_flush_device +EXPORT_SYMBOL vmlinux 0x63e46241 init_buffer +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f3c876 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6401e12e block_write_begin +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x640b583e ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x642a391b skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x64372238 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6446b04d install_exec_creds +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x644c8c1f blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x644f0930 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x645d022c mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x645fbb02 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x646f1c01 netlink_capable +EXPORT_SYMBOL vmlinux 0x6477c3e3 sk_stream_error +EXPORT_SYMBOL vmlinux 0x6479ce50 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64aa28fd tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64cede3e vc_cons +EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb +EXPORT_SYMBOL vmlinux 0x64f8ed64 dev_warn +EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x6506dc7d kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651f5a8c skb_store_bits +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x653aa8ee read_cache_pages +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65418b43 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x6549dda8 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x654d20d2 nf_reinject +EXPORT_SYMBOL vmlinux 0x655c9781 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65bc5e0a tty_register_device +EXPORT_SYMBOL vmlinux 0x65bdb7d8 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x65c4e25a do_SAK +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 0x65e31d27 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x65f53fea vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x65f7061c devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x65ff1c2b __sock_create +EXPORT_SYMBOL vmlinux 0x6605e7b7 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x6616f7ff phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x66264781 register_xen_selfballooning +EXPORT_SYMBOL vmlinux 0x662820e2 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x664c68a4 end_page_writeback +EXPORT_SYMBOL vmlinux 0x6650a017 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x669b1f84 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x66ae7420 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x66b3c758 console_stop +EXPORT_SYMBOL vmlinux 0x66cc8385 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x66d14a11 phy_connect +EXPORT_SYMBOL vmlinux 0x66d42ab2 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x66dd2a55 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x66ee0081 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x66f1cf81 mpage_writepages +EXPORT_SYMBOL vmlinux 0x66fe7fcb mpage_writepage +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x675a5aaf ping_prot +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x67898091 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67bff691 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x67cf12c3 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x67d11e55 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x67d87d2f reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x67e005c0 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x67e1a8c7 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x67fe8af3 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x6823fde0 blk_queue_split +EXPORT_SYMBOL vmlinux 0x68273cdd dquot_commit +EXPORT_SYMBOL vmlinux 0x682afbdc get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x684cf788 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x68687c86 abort_creds +EXPORT_SYMBOL vmlinux 0x686cb96e d_make_root +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68836d5b blk_init_tags +EXPORT_SYMBOL vmlinux 0x6899230b mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68cf6959 netdev_emerg +EXPORT_SYMBOL vmlinux 0x68fcff38 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x6920ff27 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x6936e54a pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x694a9253 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x694aae85 framebuffer_release +EXPORT_SYMBOL vmlinux 0x6961aab1 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x696909a8 register_quota_format +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x698ae89e tcf_hash_create +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69aa3d5a blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69c1dac2 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x69e915f5 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x69fbc0a2 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a47d91c vfs_mknod +EXPORT_SYMBOL vmlinux 0x6a541c60 sock_register +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 0x6a811f15 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x6a8a6117 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x6a9939e2 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x6aac6d7f sk_common_release +EXPORT_SYMBOL vmlinux 0x6ac8641f mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6ad819dd __free_pages +EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af2b5d7 sget +EXPORT_SYMBOL vmlinux 0x6afa70b0 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x6afda665 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x6b013913 dev_load +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b121073 param_set_ullong +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b276810 dquot_file_open +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b3d63fd d_find_alias +EXPORT_SYMBOL vmlinux 0x6b42edd7 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x6b49fd7e blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x6b4d6209 vfs_unlink +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b73acd7 file_update_time +EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue +EXPORT_SYMBOL vmlinux 0x6b8a60bb uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x6bb2a5cc skb_tx_error +EXPORT_SYMBOL vmlinux 0x6bb4e65e pneigh_enqueue +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 0x6be7e769 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x6be92f47 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops +EXPORT_SYMBOL vmlinux 0x6bf57e2f skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c0ce3ba jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x6c1668d9 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x6c1ed661 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x6c2600de nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x6c27ee3a inet_ioctl +EXPORT_SYMBOL vmlinux 0x6c3a513a netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x6c44bc15 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x6c4bc9d4 read_dev_sector +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c66c15a param_ops_byte +EXPORT_SYMBOL vmlinux 0x6c67995e tcp_conn_request +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c8751ad x86_hyper +EXPORT_SYMBOL vmlinux 0x6c90168f vme_irq_generate +EXPORT_SYMBOL vmlinux 0x6c9884f6 md_flush_request +EXPORT_SYMBOL vmlinux 0x6c994775 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x6cc42aee proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x6cc858da tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d1d4eba freezing_slow_path +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 0x6d58384c netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x6d6fb127 phy_init_eee +EXPORT_SYMBOL vmlinux 0x6d849aeb inode_init_always +EXPORT_SYMBOL vmlinux 0x6d8de911 proc_symlink +EXPORT_SYMBOL vmlinux 0x6d8ee56e file_ns_capable +EXPORT_SYMBOL vmlinux 0x6db62abe genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible +EXPORT_SYMBOL vmlinux 0x6dc474e5 inet6_protos +EXPORT_SYMBOL vmlinux 0x6dc60cf5 user_path_create +EXPORT_SYMBOL vmlinux 0x6dc6dd56 down +EXPORT_SYMBOL vmlinux 0x6dcd6cc8 wireless_send_event +EXPORT_SYMBOL vmlinux 0x6de3f7c6 inet_add_offload +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e0af5f9 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x6e176c6b scsi_scan_target +EXPORT_SYMBOL vmlinux 0x6e2590fe dma_ops +EXPORT_SYMBOL vmlinux 0x6e2634f2 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x6e3d42e4 truncate_setsize +EXPORT_SYMBOL vmlinux 0x6e44d50e sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x6e54044f __sb_start_write +EXPORT_SYMBOL vmlinux 0x6e545236 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e7f97ab blkdev_fsync +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6e9e878f bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x6ea46d16 ppp_input_error +EXPORT_SYMBOL vmlinux 0x6eb09f6b km_policy_notify +EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x6f04a9f5 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x6f147c40 override_creds +EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f2a6fcd fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x6f310980 netdev_warn +EXPORT_SYMBOL vmlinux 0x6f32af56 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x6f3d0c73 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6f5cfaac input_register_handler +EXPORT_SYMBOL vmlinux 0x6f6d95b8 migrate_page +EXPORT_SYMBOL vmlinux 0x6f6f6a17 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x6f7d7383 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f9941e1 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb8156 simple_rename +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x6ff64e51 devm_memunmap +EXPORT_SYMBOL vmlinux 0x6ff917c2 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0x70012d2e devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x701df7ca d_prune_aliases +EXPORT_SYMBOL vmlinux 0x701eb201 vme_irq_free +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x702922b1 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x703e6673 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x704bbe72 blk_peek_request +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x706884ee padata_stop +EXPORT_SYMBOL vmlinux 0x70698a08 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x7070ef7b generic_removexattr +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x70871b32 registered_fb +EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x70939f2f __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x70c0845f sock_recvmsg +EXPORT_SYMBOL vmlinux 0x70c42357 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x70d33184 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x70e5789b __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x70f9d0c2 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x70fe3e89 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x7102e80f serio_open +EXPORT_SYMBOL vmlinux 0x71076ec1 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x713d88af d_obtain_alias +EXPORT_SYMBOL vmlinux 0x7143d98b blkdev_get +EXPORT_SYMBOL vmlinux 0x714b05b6 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71828a66 proc_dostring +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71af9633 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x71c840b0 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x71d56670 follow_down_one +EXPORT_SYMBOL vmlinux 0x71d6bc57 mount_ns +EXPORT_SYMBOL vmlinux 0x71d7d7b6 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x71e1b0ec iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x720c2494 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x722075d2 led_set_brightness +EXPORT_SYMBOL vmlinux 0x72220176 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x722d0b9b rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x7234be8f vfs_rename +EXPORT_SYMBOL vmlinux 0x72429c43 vme_lm_request +EXPORT_SYMBOL vmlinux 0x72490476 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x725641b8 page_waitqueue +EXPORT_SYMBOL vmlinux 0x7280af6c load_nls +EXPORT_SYMBOL vmlinux 0x729c7840 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x72a98fdb copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0x72ad2895 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72bbc34b tty_register_driver +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x73027e93 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x730405dc pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x73047f43 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x7304924a seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x73434ac5 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x735dbe72 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x7367627a __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get +EXPORT_SYMBOL vmlinux 0x73ab3334 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x73c8a478 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x73ca2f16 d_alloc +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73ea1264 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x73ffdddf compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x742a18ac __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x74465cc9 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x7448402f nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x74585ae6 bio_advance +EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty +EXPORT_SYMBOL vmlinux 0x7470ea90 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74a4b711 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x74aa62fd skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c4af99 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x7511bb72 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x7525a60d kobject_init +EXPORT_SYMBOL vmlinux 0x752b50ec bio_put +EXPORT_SYMBOL vmlinux 0x752c05b5 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x753d5c67 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x753facbd netif_device_attach +EXPORT_SYMBOL vmlinux 0x75444739 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x755f6eb8 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x756c8f64 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x758f2426 get_task_io_context +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 0x75cb976c ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x75e04b66 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x75e42a79 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x762cf9e3 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x762fe9de sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x7649d135 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x764ae150 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766a10f9 kern_path +EXPORT_SYMBOL vmlinux 0x76795a60 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x767dd8fd acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x76938a4c max8925_set_bits +EXPORT_SYMBOL vmlinux 0x76a25e75 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x76b5d2be bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x76d27130 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76dd50dd mmc_detect_change +EXPORT_SYMBOL vmlinux 0x76e3a7c1 lock_rename +EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier +EXPORT_SYMBOL vmlinux 0x7702c740 vfs_llseek +EXPORT_SYMBOL vmlinux 0x770da630 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x772353fb bdev_read_only +EXPORT_SYMBOL vmlinux 0x772412b4 phy_find_first +EXPORT_SYMBOL vmlinux 0x772f8958 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x77757f10 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x778ac64a xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779fbe84 sync_blockdev +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c5513b tty_port_init +EXPORT_SYMBOL vmlinux 0x77ca6348 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x77d2eab4 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x77f53abc acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x780cb9b4 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x7824708a scmd_printk +EXPORT_SYMBOL vmlinux 0x78249e0a dump_align +EXPORT_SYMBOL vmlinux 0x782fa01a netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x783938f1 phy_init_hw +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x78468a84 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x784b498b kset_register +EXPORT_SYMBOL vmlinux 0x7852418a tty_port_destroy +EXPORT_SYMBOL vmlinux 0x785eb1e9 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x78637a97 dentry_unhash +EXPORT_SYMBOL vmlinux 0x78695c0e sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x786dd1f5 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x78764f4e pv_irq_ops +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78866666 sk_wait_data +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a5ff8a fence_add_callback +EXPORT_SYMBOL vmlinux 0x78bbfde9 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x78c0ae6e generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x78d16728 should_remove_suid +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e3a7e3 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x78e739aa up +EXPORT_SYMBOL vmlinux 0x78ee2465 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x78effff2 eth_header_cache +EXPORT_SYMBOL vmlinux 0x79000ca7 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x79056234 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock +EXPORT_SYMBOL vmlinux 0x79219c2e seq_vprintf +EXPORT_SYMBOL vmlinux 0x79306132 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x79611934 __vfs_write +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 0x79891802 km_state_expired +EXPORT_SYMBOL vmlinux 0x79915632 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x7998aee2 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79accdfd netdev_info +EXPORT_SYMBOL vmlinux 0x79b3f8b6 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x79d22f44 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x7a14ede8 napi_get_frags +EXPORT_SYMBOL vmlinux 0x7a1b35fe dev_get_by_name +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a36e093 nf_log_trace +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a636b0d qdisc_list_del +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a821b9f pci_select_bars +EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ab9a803 scsi_execute +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7aecf8bf scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x7b0bb399 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x7b0d0c62 set_pages_uc +EXPORT_SYMBOL vmlinux 0x7b10c512 __break_lease +EXPORT_SYMBOL vmlinux 0x7b1453fa xen_biovec_phys_mergeable +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1b455e kernel_write +EXPORT_SYMBOL vmlinux 0x7b2a5dcb pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b419714 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x7b4cf7d9 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7b5a4705 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x7b7c7413 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x7b7dc5d0 tcp_child_process +EXPORT_SYMBOL vmlinux 0x7b8660d1 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x7b8a6e91 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x7b8aa82d __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x7ba47478 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x7bb3c26c tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x7bd9ee57 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x7be75ffc acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x7c0b83e0 nf_log_packet +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c137c3e sk_capable +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 0x7c7032b2 input_get_keycode +EXPORT_SYMBOL vmlinux 0x7c761c0c mpage_readpages +EXPORT_SYMBOL vmlinux 0x7c7ba3d3 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x7c8c0499 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7c9e74be d_set_d_op +EXPORT_SYMBOL vmlinux 0x7ca3c2a5 cont_write_begin +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7cecddd0 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x7ceda51f __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cfa97ff dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x7cfdb7f1 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x7d0544f8 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d1447cb module_refcount +EXPORT_SYMBOL vmlinux 0x7d18aefb tcp_filter +EXPORT_SYMBOL vmlinux 0x7d212af0 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x7d287136 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x7d5d3d09 get_fs_type +EXPORT_SYMBOL vmlinux 0x7d6a98b6 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d71445d cpu_active_mask +EXPORT_SYMBOL vmlinux 0x7d71fa95 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x7db50f0a devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x7dba524e pnp_device_detach +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7ddc137e vfs_create +EXPORT_SYMBOL vmlinux 0x7deb548e tcp_shutdown +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e179373 param_ops_bint +EXPORT_SYMBOL vmlinux 0x7e4939f7 sock_i_ino +EXPORT_SYMBOL vmlinux 0x7e513f9d set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x7e5ad234 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x7e5c35b1 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x7e5dc865 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x7e73c459 to_nd_btt +EXPORT_SYMBOL vmlinux 0x7e753265 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit +EXPORT_SYMBOL vmlinux 0x7ebd4be4 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x7eda06e1 commit_creds +EXPORT_SYMBOL vmlinux 0x7ee201c1 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee94517 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x7eed8b13 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f12c704 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f27b81a empty_aops +EXPORT_SYMBOL vmlinux 0x7f2a0fe8 param_get_int +EXPORT_SYMBOL vmlinux 0x7f524bf1 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x7f560512 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f707d42 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x7f8905d5 d_add_ci +EXPORT_SYMBOL vmlinux 0x7f9c2d5e pci_claim_resource +EXPORT_SYMBOL vmlinux 0x7fb9c0de drop_super +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 0x7ffe83d0 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x802af678 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x802baa24 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x803c5159 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x804e8254 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x8054006d generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x805fba8d netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x8082d550 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x80835ee1 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy +EXPORT_SYMBOL vmlinux 0x80a08e63 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x80f48a82 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x8112a868 mmc_request_done +EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x8144b5e2 dma_find_channel +EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x8153cee1 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x81850ac7 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x81be7bdd inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x81c651bc mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x81c72a6d get_gendisk +EXPORT_SYMBOL vmlinux 0x81cc7f8f jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x81d2c480 input_set_capability +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81df3eac nd_region_release_lane +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 0x82137010 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x823d3075 pci_get_device +EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x8266e922 dquot_destroy +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 0x82a59a33 do_splice_to +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82b6dccb padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x82bf3453 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x82ca0a26 vfs_writef +EXPORT_SYMBOL vmlinux 0x82daaeb3 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x82e3afaf proc_create_data +EXPORT_SYMBOL vmlinux 0x82e814d0 bio_copy_data +EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x833f43c1 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x8358c3ad __getblk_gfp +EXPORT_SYMBOL vmlinux 0x8384647a acpi_map_pxm_to_online_node +EXPORT_SYMBOL vmlinux 0x838cb01f clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x839ccf7e clkdev_alloc +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83da19b4 bio_map_kern +EXPORT_SYMBOL vmlinux 0x8401ed89 nf_afinfo +EXPORT_SYMBOL vmlinux 0x8403f2c3 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x841031f5 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x8429f812 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x8432a7f3 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x843d6f29 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x844b694d jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x8470ee75 check_disk_change +EXPORT_SYMBOL vmlinux 0x848a843a generic_delete_inode +EXPORT_SYMBOL vmlinux 0x8495087f scsi_print_command +EXPORT_SYMBOL vmlinux 0x84f1fb71 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x84fe50df kernel_read +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x8507c383 proc_dointvec +EXPORT_SYMBOL vmlinux 0x8510febe dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x85339035 sock_wake_async +EXPORT_SYMBOL vmlinux 0x85385a34 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x854d8ab6 register_gifconf +EXPORT_SYMBOL vmlinux 0x854dbad0 done_path_create +EXPORT_SYMBOL vmlinux 0x85578346 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x8563ee90 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0x858183f8 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x858249af pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x85939b0e ps2_drain +EXPORT_SYMBOL vmlinux 0x85a3335c param_ops_long +EXPORT_SYMBOL vmlinux 0x85ac3ec1 finish_open +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85c545a1 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x85c644e0 blk_register_region +EXPORT_SYMBOL vmlinux 0x85c78b38 blk_rq_init +EXPORT_SYMBOL vmlinux 0x85de9b46 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e8d2a2 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f78d9e deactivate_super +EXPORT_SYMBOL vmlinux 0x861be16d unregister_quota_format +EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x8623575d set_wb_congested +EXPORT_SYMBOL vmlinux 0x8623b385 keyring_clear +EXPORT_SYMBOL vmlinux 0x8627214e md_register_thread +EXPORT_SYMBOL vmlinux 0x8630201c inet_select_addr +EXPORT_SYMBOL vmlinux 0x86376400 submit_bh +EXPORT_SYMBOL vmlinux 0x863e882f pci_get_subsys +EXPORT_SYMBOL vmlinux 0x864ed610 eth_header_parse +EXPORT_SYMBOL vmlinux 0x864f6ce6 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865133fa pv_mmu_ops +EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868ae358 tty_throttle +EXPORT_SYMBOL vmlinux 0x868cc710 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a6b430 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x86e0c7e6 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x873301c6 vga_switcheroo_init_domain_pm_optimus_hdmi_audio +EXPORT_SYMBOL vmlinux 0x874a5492 ata_link_printk +EXPORT_SYMBOL vmlinux 0x874ed87d __ip_dev_find +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 0x87a71907 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x87cea1ad __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x87e8eb74 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x87f0635e __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x87f32d2f bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x882ad878 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x883d3827 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x8865f165 tty_vhangup +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x888f37c4 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x88a19beb __register_chrdev +EXPORT_SYMBOL vmlinux 0x88c2aa00 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x88da2d38 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x88ea8588 __find_get_block +EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x892de3fb __nla_put +EXPORT_SYMBOL vmlinux 0x89352553 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x893b597c tcp_sendpage +EXPORT_SYMBOL vmlinux 0x894e6bad scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x8966753e scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x8976a5f1 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x89a6c342 pnp_is_active +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89e36a30 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x89ef2f68 dquot_acquire +EXPORT_SYMBOL vmlinux 0x89f09b6b __blk_end_request +EXPORT_SYMBOL vmlinux 0x89f59461 ip_defrag +EXPORT_SYMBOL vmlinux 0x89facc4b arp_tbl +EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a36ff71 compat_tcp_getsockopt +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 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 0x8a877686 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa64786 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x8ad2266d fddi_type_trans +EXPORT_SYMBOL vmlinux 0x8ad3b77d unlock_new_inode +EXPORT_SYMBOL vmlinux 0x8aed499c __module_get +EXPORT_SYMBOL vmlinux 0x8af396c6 agp_enable +EXPORT_SYMBOL vmlinux 0x8af4df9c nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b4fb643 mmc_release_host +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8bada067 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x8bb4db7c netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x8bd4e7ca dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x8bef5101 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x8c0909fc backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x8c0bdc96 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x8c0bdecc dev_add_pack +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c31d55d pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x8c4b3631 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c6998e8 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x8c79894b __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x8c977047 request_key +EXPORT_SYMBOL vmlinux 0x8cc25ae9 seq_escape +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cf1a339 load_nls_default +EXPORT_SYMBOL vmlinux 0x8cfd0c5a phy_resume +EXPORT_SYMBOL vmlinux 0x8d1859f6 tty_check_change +EXPORT_SYMBOL vmlinux 0x8d21a4d2 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +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 0x8d8e0f2c phy_attach_direct +EXPORT_SYMBOL vmlinux 0x8da1161a key_reject_and_link +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8dac0299 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init +EXPORT_SYMBOL vmlinux 0x8dc467e8 have_submounts +EXPORT_SYMBOL vmlinux 0x8dded7e6 sock_efree +EXPORT_SYMBOL vmlinux 0x8de3ae93 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df97eea dst_release +EXPORT_SYMBOL vmlinux 0x8dfd3345 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e0c7ec9 pci_bus_get +EXPORT_SYMBOL vmlinux 0x8e2d83b6 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x8e3d8bc1 dma_pool_create +EXPORT_SYMBOL vmlinux 0x8e45d087 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x8e5b8b42 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e816043 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x8e8c9de2 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x8e945895 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ebad1f0 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x8ec0e7c2 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x8eca2386 nf_register_hook +EXPORT_SYMBOL vmlinux 0x8ece24c9 __block_write_begin +EXPORT_SYMBOL vmlinux 0x8ee63d64 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x8f0d275d wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x8f1b5ab1 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x8f1ddfd0 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f31c069 kill_anon_super +EXPORT_SYMBOL vmlinux 0x8f3ac6e7 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x8f7ca0ff blk_make_request +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fa47f34 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x8fb96451 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x8fbe3298 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x8fda1b9b __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x8fee2fe5 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x8ff03391 find_get_entry +EXPORT_SYMBOL vmlinux 0x9002ce8a __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x9027c563 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x902b6cbf udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x9032327c module_put +EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x9070c0be qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x9072824b dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x90845fcb xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0x90af41f3 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x90c537ec ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x90cd86c7 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x90d55291 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x90e0a12a blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x90eaf818 uart_resume_port +EXPORT_SYMBOL vmlinux 0x90f8156b ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x90ff68e2 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x91038dd2 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x910f17ae unregister_binfmt +EXPORT_SYMBOL vmlinux 0x91457079 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x914b682a nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x917c23b8 set_pages_x +EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init +EXPORT_SYMBOL vmlinux 0x91ab2b2c I_BDEV +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91b3d56c mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x91bb0582 blk_finish_request +EXPORT_SYMBOL vmlinux 0x91d11bbf tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x91d123ef i2c_release_client +EXPORT_SYMBOL vmlinux 0x91d6f586 elevator_exit +EXPORT_SYMBOL vmlinux 0x91d74412 arp_xmit +EXPORT_SYMBOL vmlinux 0x91ddaaf3 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x91f3691a remove_proc_entry +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x91f9b950 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x9200a1c2 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x921626e3 uart_register_driver +EXPORT_SYMBOL vmlinux 0x92188169 tty_port_close +EXPORT_SYMBOL vmlinux 0x921dc131 filemap_fault +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x924806a2 clkdev_add +EXPORT_SYMBOL vmlinux 0x925301c9 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x92751f83 nf_log_set +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92938e0b ___pskb_trim +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92bbdca7 dev_err +EXPORT_SYMBOL vmlinux 0x92deeb74 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x92df0c6e fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x92e80ce5 __devm_release_region +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 0x934f9073 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93a7f086 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93d15b16 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0x93ef70c6 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x93efbba6 security_path_rename +EXPORT_SYMBOL vmlinux 0x93f3e52b acpi_extract_package +EXPORT_SYMBOL vmlinux 0x93f5d64f pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x93fe5aa8 inet_addr_type +EXPORT_SYMBOL vmlinux 0x93ffd807 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x945ad60b acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x946e1e61 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x948d1fcf abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x949160b1 key_link +EXPORT_SYMBOL vmlinux 0x9491a559 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949df3b0 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x94b2d615 devm_clk_get +EXPORT_SYMBOL vmlinux 0x94c35400 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x94cb0875 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x95006b6c __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception +EXPORT_SYMBOL vmlinux 0x9540724d tty_port_open +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x9549790f pci_bus_type +EXPORT_SYMBOL vmlinux 0x95522f37 compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x9573e0d6 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x958b9f13 pci_get_slot +EXPORT_SYMBOL vmlinux 0x959b6337 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x95b7ddde padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0x95fb8779 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x9617f892 d_tmpfile +EXPORT_SYMBOL vmlinux 0x961bcf4e in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x961f9526 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x9621db47 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x9622bb82 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x96385839 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x964d0f64 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x9659a065 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x9684fece from_kprojid +EXPORT_SYMBOL vmlinux 0x969ec48f __scm_send +EXPORT_SYMBOL vmlinux 0x96aba385 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b52b84 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96cdd325 get_phy_device +EXPORT_SYMBOL vmlinux 0x96eeb759 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x97191071 md_integrity_register +EXPORT_SYMBOL vmlinux 0x9728e7aa udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x974bc34c vc_resize +EXPORT_SYMBOL vmlinux 0x974d80a3 unregister_key_type +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x976967c7 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x9769a9bf vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x977656d3 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x9798ee6e kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97ac9c09 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x97ae5e64 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x97bf052c tty_free_termios +EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x97cbe82f down_read_trylock +EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x97ea1dd2 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x98086863 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x9825aed0 padata_free +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x9843326d set_device_ro +EXPORT_SYMBOL vmlinux 0x98489252 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x98501275 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x985546f2 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x988c96df param_set_invbool +EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL vmlinux 0x98a052c6 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98f25812 invalidate_partition +EXPORT_SYMBOL vmlinux 0x98fb9cb5 __frontswap_load +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x99280338 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x992a90ab __devm_request_region +EXPORT_SYMBOL vmlinux 0x9932b7cc backlight_device_register +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x99960932 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99aa7301 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x99b6b87c register_cdrom +EXPORT_SYMBOL vmlinux 0x99c9809e tcp_close +EXPORT_SYMBOL vmlinux 0x99cac107 tcp_make_synack +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 0x99ed5c78 module_layout +EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map +EXPORT_SYMBOL vmlinux 0x99f4a89c pci_match_id +EXPORT_SYMBOL vmlinux 0x99f8adbe vga_switcheroo_set_dynamic_switch +EXPORT_SYMBOL vmlinux 0x9a08adad amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x9a1019b5 kobject_add +EXPORT_SYMBOL vmlinux 0x9a1411f4 inode_permission +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a377254 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x9a38a12d inet_shutdown +EXPORT_SYMBOL vmlinux 0x9a3d4d7a dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x9a57d228 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x9a7b5362 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x9ac02c6b blk_start_queue +EXPORT_SYMBOL vmlinux 0x9ac6d090 ata_port_printk +EXPORT_SYMBOL vmlinux 0x9ad19be9 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9afa039e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x9aff3ad6 save_mount_options +EXPORT_SYMBOL vmlinux 0x9b200e6d pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b4e5be4 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x9b4f9373 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x9b6fe877 security_path_rmdir +EXPORT_SYMBOL vmlinux 0x9b7bb52e proc_remove +EXPORT_SYMBOL vmlinux 0x9b7e0d2b ip_ct_attach +EXPORT_SYMBOL vmlinux 0x9b86986a jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x9ba4d7bf blk_execute_rq +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9be33095 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bfc677b blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x9c019054 param_get_ushort +EXPORT_SYMBOL vmlinux 0x9c099770 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x9c3f51a5 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x9c4755db pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c6334e4 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x9c7fbcf6 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x9c9075e5 kobject_get +EXPORT_SYMBOL vmlinux 0x9ca202a6 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9ccdaa3a softnet_data +EXPORT_SYMBOL vmlinux 0x9cdad740 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x9cf8de06 unlock_rename +EXPORT_SYMBOL vmlinux 0x9d04b869 no_llseek +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d20c5bd inet_offloads +EXPORT_SYMBOL vmlinux 0x9d26784e dev_uc_init +EXPORT_SYMBOL vmlinux 0x9d27f111 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x9d2b8bbd netdev_alert +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 0x9d3f0b0d tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x9d845503 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x9d90288d grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9dc31d2e tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x9dc81dd5 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x9de4219e init_net +EXPORT_SYMBOL vmlinux 0x9de49fda dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x9de65aa6 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x9dfcb10a generic_perform_write +EXPORT_SYMBOL vmlinux 0x9e098e2b cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e2811e3 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e383c4e dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5a6c89 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x9e5b55ff inet_stream_ops +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e6d807c __lock_buffer +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e945db9 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x9e963ecf qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eae4904 kernel_accept +EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock +EXPORT_SYMBOL vmlinux 0x9eb8908e ps2_command +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ed64d94 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x9ed988e3 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x9edf834a inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x9ef01929 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x9ef0f6c9 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x9f2df51c ilookup +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f511edf ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f82b61b devm_gpio_request +EXPORT_SYMBOL vmlinux 0x9f9581ea fb_show_logo +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fc33376 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe6a75d seq_open_private +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa002d229 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa01540e7 bdi_destroy +EXPORT_SYMBOL vmlinux 0xa04151bf serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06c1e8d clk_add_alias +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 0xa088fb36 inet_bind +EXPORT_SYMBOL vmlinux 0xa099b743 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xa09a87de security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0be63c5 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e67ad3 compat_ip_setsockopt +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 0xa10d4ac6 kern_path_create +EXPORT_SYMBOL vmlinux 0xa111962f dev_change_flags +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa12b0b14 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xa12ebf95 follow_up +EXPORT_SYMBOL vmlinux 0xa136530e mb_cache_shrink +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa16ce596 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xa1823056 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c74f9c register_key_type +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1ec9d56 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa2084967 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa21bc50b param_get_ulong +EXPORT_SYMBOL vmlinux 0xa2237547 dev_add_offload +EXPORT_SYMBOL vmlinux 0xa23041ec generic_show_options +EXPORT_SYMBOL vmlinux 0xa25496c7 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xa282370a neigh_direct_output +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2b24d6d blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0xa2beed52 vfs_read +EXPORT_SYMBOL vmlinux 0xa2f99996 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xa305976c ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xa3178682 backlight_force_update +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa3294902 md_write_end +EXPORT_SYMBOL vmlinux 0xa32a8151 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xa32d190b locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xa33a98b9 redraw_screen +EXPORT_SYMBOL vmlinux 0xa34ed3fb max8998_update_reg +EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa35194f5 devm_memremap +EXPORT_SYMBOL vmlinux 0xa356a0f9 dst_init +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa3b6a74b free_page_put_link +EXPORT_SYMBOL vmlinux 0xa3b8e5a4 register_shrinker +EXPORT_SYMBOL vmlinux 0xa3c28a60 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xa3d15838 bio_phys_segments +EXPORT_SYMBOL vmlinux 0xa3e2b831 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0xa400ce95 dentry_open +EXPORT_SYMBOL vmlinux 0xa40bc239 __lock_page +EXPORT_SYMBOL vmlinux 0xa40c9ec2 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xa411b114 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xa426650f __blk_run_queue +EXPORT_SYMBOL vmlinux 0xa42e8c88 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xa43030a4 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa458a2f4 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xa468d9bf alloc_fddidev +EXPORT_SYMBOL vmlinux 0xa46e7a5a mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xa46fe170 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa49059cd mdiobus_write +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4d4c76d sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4e17fa1 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xa4eca6a8 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xa4ff9c0b devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xa50a80c2 boot_cpu_data +EXPORT_SYMBOL vmlinux 0xa52f9a99 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xa53de873 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa57ec960 vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0xa587158e tcp_proc_register +EXPORT_SYMBOL vmlinux 0xa58c229e mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xa595550b i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xa5985037 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xa598c12c x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa59bd453 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5c2a2ba blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xa5c4113c input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xa5c72683 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xa5e60ec5 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xa62eaa56 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa65e013a abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xa6698f81 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xa66c24bd dev_set_mtu +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa6785568 sock_no_getname +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa69cdfb6 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xa6a91f54 mmc_free_host +EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up +EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error +EXPORT_SYMBOL vmlinux 0xa6c58264 page_symlink +EXPORT_SYMBOL vmlinux 0xa6f0ce34 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xa6f4d486 generic_listxattr +EXPORT_SYMBOL vmlinux 0xa6f630cc skb_split +EXPORT_SYMBOL vmlinux 0xa6f9e14e tcp_init_sock +EXPORT_SYMBOL vmlinux 0xa6fb83b0 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa730fd48 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa7384086 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xa739cb6e inet_put_port +EXPORT_SYMBOL vmlinux 0xa74bcd62 rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xa7525574 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xa7633213 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock +EXPORT_SYMBOL vmlinux 0xa796c38e add_disk +EXPORT_SYMBOL vmlinux 0xa7aa6edf ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xa7e040b9 param_ops_int +EXPORT_SYMBOL vmlinux 0xa7e6afba blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xa7f99993 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xa81f062d sockfd_lookup +EXPORT_SYMBOL vmlinux 0xa839e793 first_ec +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8685378 __inet_hash +EXPORT_SYMBOL vmlinux 0xa86c65eb blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa8937b69 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xa8b15202 sock_from_file +EXPORT_SYMBOL vmlinux 0xa8bbe8df dquot_operations +EXPORT_SYMBOL vmlinux 0xa8bcebdd vga_put +EXPORT_SYMBOL vmlinux 0xa8c0cc63 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xa8c2e12e tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xa8e8082f mmc_fixup_device +EXPORT_SYMBOL vmlinux 0xa8ed04d5 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa902d205 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91d90d3 nla_put +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa9284eb7 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xa93c3ce2 devm_gpio_free +EXPORT_SYMBOL vmlinux 0xa9426294 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xa95131ab iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xa955e9d8 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9880bc1 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xa9b7ece2 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xa9bd2676 __vmalloc +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9e75a4f dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xa9e86ade udp_sendmsg +EXPORT_SYMBOL vmlinux 0xa9fcf7c4 abx500_register_ops +EXPORT_SYMBOL vmlinux 0xaa0fe94d xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xaa1a2724 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xaa20df2e simple_unlink +EXPORT_SYMBOL vmlinux 0xaa33192f ps2_init +EXPORT_SYMBOL vmlinux 0xaa40d1f4 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xaa42ac21 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xaa4332bc proc_set_size +EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xaa65607e amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa763743 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xaaaea9ab sock_sendmsg +EXPORT_SYMBOL vmlinux 0xaab82015 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xaac35da5 register_netdevice +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab10eb84 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xab28e6b8 param_set_bool +EXPORT_SYMBOL vmlinux 0xab2c03bf generic_block_bmap +EXPORT_SYMBOL vmlinux 0xab38847f input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xab3e85cd dev_mc_init +EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab6287f2 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab6981c4 __bread_gfp +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 0xab7d312a check_disk_size_change +EXPORT_SYMBOL vmlinux 0xab8413e8 sock_create_kern +EXPORT_SYMBOL vmlinux 0xab9a09e3 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xaba3159c gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xaba45add inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xabc42146 nvm_put_blk +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabce32a9 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xabd4538d truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xabd831b0 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xabe2b947 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0xabe2c44c wake_up_process +EXPORT_SYMBOL vmlinux 0xabebaa12 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xabf0b116 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac0bb876 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1bd4ae neigh_seq_next +EXPORT_SYMBOL vmlinux 0xac2829a1 sock_i_uid +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac529445 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xac53d205 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xac5a6ab6 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xac7b2afc down_read +EXPORT_SYMBOL vmlinux 0xac7f98bf phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0xac7fafa2 noop_qdisc +EXPORT_SYMBOL vmlinux 0xac802f35 sock_wfree +EXPORT_SYMBOL vmlinux 0xac84e43b nd_btt_probe +EXPORT_SYMBOL vmlinux 0xac9bdd35 pci_enable_msix +EXPORT_SYMBOL vmlinux 0xac9cfa77 uart_match_port +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacae92f5 amd_northbridges +EXPORT_SYMBOL vmlinux 0xacb3ec7d scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy +EXPORT_SYMBOL vmlinux 0xacbe0c45 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xacc76868 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xaccb1301 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xacd7d8e1 param_ops_uint +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacd96004 devm_clk_put +EXPORT_SYMBOL vmlinux 0xacec9a97 led_update_brightness +EXPORT_SYMBOL vmlinux 0xacf11019 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf4e1d2 blk_get_request +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad10de11 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad338d22 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xad40125b xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xad50c719 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xad514a43 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xad65e43d zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xad698f77 dqstats +EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xada806cb pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xadaa0159 fb_class +EXPORT_SYMBOL vmlinux 0xadb2ba0b iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xadd2a2dd bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xadf18fb5 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list +EXPORT_SYMBOL vmlinux 0xae05efa1 __put_cred +EXPORT_SYMBOL vmlinux 0xae102947 seq_read +EXPORT_SYMBOL vmlinux 0xae19ef96 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xae23cb5f jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xae3b9651 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xae4948a6 tc_classify +EXPORT_SYMBOL vmlinux 0xae8aa863 unregister_console +EXPORT_SYMBOL vmlinux 0xae8faef8 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xaec49f6a max8925_reg_read +EXPORT_SYMBOL vmlinux 0xaf0233f9 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xaf05506a filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xaf1f718f __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xaf2f0edb swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL vmlinux 0xaf69cd66 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf76033b fs_bio_set +EXPORT_SYMBOL vmlinux 0xaf8363dd tcp_parse_options +EXPORT_SYMBOL vmlinux 0xaf97ca10 icmpv6_send +EXPORT_SYMBOL vmlinux 0xafb8c6ff copy_user_generic_string +EXPORT_SYMBOL vmlinux 0xafce5cb6 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xafd58cc5 sock_no_accept +EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xafd9d1a5 padata_add_cpu +EXPORT_SYMBOL vmlinux 0xb0038676 seq_file_path +EXPORT_SYMBOL vmlinux 0xb0119be0 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xb027a6cf input_unregister_device +EXPORT_SYMBOL vmlinux 0xb028265a blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xb0314445 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xb04626fe kfree_skb_list +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb06e5a38 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xb09417b5 ns_capable +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a98dfd generic_fillattr +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0b59798 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xb0d332f2 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0xb0fdfca0 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xb1015702 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1395571 vm_mmap +EXPORT_SYMBOL vmlinux 0xb15156bf qdisc_list_add +EXPORT_SYMBOL vmlinux 0xb152d87d cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb1670979 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0xb187144e devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init +EXPORT_SYMBOL vmlinux 0xb1b30928 to_ndd +EXPORT_SYMBOL vmlinux 0xb1b9473f iter_file_splice_write +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 0xb1d05312 simple_rmdir +EXPORT_SYMBOL vmlinux 0xb1d690a2 submit_bio_wait +EXPORT_SYMBOL vmlinux 0xb1ddeb69 bdget_disk +EXPORT_SYMBOL vmlinux 0xb1f0c895 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xb20ecf88 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb2419263 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xb246269f xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb27344ff dst_discard_out +EXPORT_SYMBOL vmlinux 0xb28de0b2 lock_sock_fast +EXPORT_SYMBOL vmlinux 0xb2b8f214 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2c1bfca abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xb2c3fc2f blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xb2c9e5cb netlink_ack +EXPORT_SYMBOL vmlinux 0xb2d5a552 complete +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb30d5059 to_nd_pfn +EXPORT_SYMBOL vmlinux 0xb31cb47f i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xb31d0a99 may_umount_tree +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb32a0225 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xb346098c dev_printk_emit +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb38dce65 d_alloc_name +EXPORT_SYMBOL vmlinux 0xb39af84a mount_bdev +EXPORT_SYMBOL vmlinux 0xb3abfb8c jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xb3bbb2a0 nf_log_register +EXPORT_SYMBOL vmlinux 0xb3c72abf fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0xb3d2495d sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb418c793 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xb419f17f tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42da250 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xb43e8879 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xb441b483 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xb46b2219 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb470a7dd nlmsg_notify +EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class +EXPORT_SYMBOL vmlinux 0xb48a7f60 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xb4a2cd95 set_page_dirty +EXPORT_SYMBOL vmlinux 0xb4f610c7 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xb5019c7a inet_listen +EXPORT_SYMBOL vmlinux 0xb5044c3a cdrom_check_events +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb5463df3 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xb56560c3 tso_count_descs +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb58d4dc0 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xb596343c xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xb5a0c7f5 bio_split +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a50188 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5add7f9 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xb5c2e29a input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5caa2ad ps2_begin_command +EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xb5e03d74 mount_nodev +EXPORT_SYMBOL vmlinux 0xb5e579d2 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xb5f12f0b elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xb5fa9565 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xb603c7f9 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xb60a660d pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb62fd341 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xb630b8ff vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xb6312894 __sb_end_write +EXPORT_SYMBOL vmlinux 0xb6355e5b scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xb63de691 vme_register_driver +EXPORT_SYMBOL vmlinux 0xb64dd413 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xb6528b05 scsi_device_put +EXPORT_SYMBOL vmlinux 0xb665306e ipv4_specific +EXPORT_SYMBOL vmlinux 0xb66a2ed9 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb68d47d4 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a0de91 phy_print_status +EXPORT_SYMBOL vmlinux 0xb6a51d22 get_super +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6ab647d simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xb6e719aa acl_by_type +EXPORT_SYMBOL vmlinux 0xb7128359 param_ops_short +EXPORT_SYMBOL vmlinux 0xb7165c8d arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xb729c506 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xb72bfec0 key_task_permission +EXPORT_SYMBOL vmlinux 0xb733ab5f fifo_set_limit +EXPORT_SYMBOL vmlinux 0xb7357e58 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xb740e8ac neigh_ifdown +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb74ec414 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xb75536c2 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb769c1d1 up_write +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7c75d51 pcim_enable_device +EXPORT_SYMBOL vmlinux 0xb7ce53fe __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xb7d68948 simple_open +EXPORT_SYMBOL vmlinux 0xb7dcfb76 dev_alert +EXPORT_SYMBOL vmlinux 0xb7e74d21 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xb7e8257f ip_do_fragment +EXPORT_SYMBOL vmlinux 0xb829cd1d jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xb82ea135 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xb82fbfed neigh_update +EXPORT_SYMBOL vmlinux 0xb85fb806 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xb8672fb5 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb884567c peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xb8958d94 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xb8d3959d pci_clear_master +EXPORT_SYMBOL vmlinux 0xb8e7792c eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8e8c66d dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb91773d1 prepare_binprm +EXPORT_SYMBOL vmlinux 0xb91d4ccf up_read +EXPORT_SYMBOL vmlinux 0xb92c576d security_path_mkdir +EXPORT_SYMBOL vmlinux 0xb932a426 netdev_features_change +EXPORT_SYMBOL vmlinux 0xb93519a8 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xb93f0b5a udplite_prot +EXPORT_SYMBOL vmlinux 0xb94d249c scsi_host_get +EXPORT_SYMBOL vmlinux 0xb9555ca0 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xb95be371 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xb95e30b8 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xb9623657 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xb9b70e87 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xb9c2c46e bprm_change_interp +EXPORT_SYMBOL vmlinux 0xb9cb8244 dma_supported +EXPORT_SYMBOL vmlinux 0xb9cec0f9 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f4a59a blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xba1c605c simple_dname +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba2fa92d security_path_truncate +EXPORT_SYMBOL vmlinux 0xba41cefd pci_release_regions +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba54f91e neigh_destroy +EXPORT_SYMBOL vmlinux 0xba98d5b5 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0xbaad420f key_revoke +EXPORT_SYMBOL vmlinux 0xbabba6f6 is_nd_pfn +EXPORT_SYMBOL vmlinux 0xbacba6c2 kill_pid +EXPORT_SYMBOL vmlinux 0xbad9d1e2 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xbaf23f85 from_kuid +EXPORT_SYMBOL vmlinux 0xbafb8392 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0d01b8 bmap +EXPORT_SYMBOL vmlinux 0xbb296488 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb44b2b0 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0xbb46f6cc kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xbb4873f1 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb576597 mpage_readpage +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb6e1bd0 current_in_userns +EXPORT_SYMBOL vmlinux 0xbb7b1a2b sget_userns +EXPORT_SYMBOL vmlinux 0xbb848855 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xbb8488f1 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xbb907090 vga_switcheroo_register_client +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 0xbbbc46bd blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt +EXPORT_SYMBOL vmlinux 0xbbef1345 km_state_notify +EXPORT_SYMBOL vmlinux 0xbbf737c0 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xbbfa2215 tty_do_resize +EXPORT_SYMBOL vmlinux 0xbc0dc64c pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0xbc192a89 vme_bus_type +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc73d851 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xbc88f931 __frontswap_test +EXPORT_SYMBOL vmlinux 0xbcb636e5 acpi_device_hid +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcc59695 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xbcd36326 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xbce19aee input_grab_device +EXPORT_SYMBOL vmlinux 0xbce54abd dev_addr_del +EXPORT_SYMBOL vmlinux 0xbcf7ef9a pci_set_master +EXPORT_SYMBOL vmlinux 0xbd05bdd5 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xbd18b36f genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0xbd7ad2a3 udp_ioctl +EXPORT_SYMBOL vmlinux 0xbd7c1e3a thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd910ed2 dump_emit +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdba91e6 param_set_byte +EXPORT_SYMBOL vmlinux 0xbdbd5f76 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xbdcd2962 napi_disable +EXPORT_SYMBOL vmlinux 0xbddbd5e7 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbe152489 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xbe19e133 set_pages_wb +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe2161a7 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xbe2c652a bdi_register_dev +EXPORT_SYMBOL vmlinux 0xbe773015 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xbe7b8e21 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xbea163e7 pci_iomap +EXPORT_SYMBOL vmlinux 0xbea52dcb dst_alloc +EXPORT_SYMBOL vmlinux 0xbeac8bfc gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xbeaf1b0f kmem_cache_size +EXPORT_SYMBOL vmlinux 0xbebd10d9 param_set_int +EXPORT_SYMBOL vmlinux 0xbebdafcc tty_write_room +EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu +EXPORT_SYMBOL vmlinux 0xbed099e7 tty_unlock +EXPORT_SYMBOL vmlinux 0xbedfa4eb i2c_use_client +EXPORT_SYMBOL vmlinux 0xbef12d08 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf04e3a6 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xbf1ebbc0 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xbf233c93 simple_statfs +EXPORT_SYMBOL vmlinux 0xbf359590 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xbf4ea2f8 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0xbf63bdb6 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xbf7fb544 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf84a2e8 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbf9c6a6f flush_old_exec +EXPORT_SYMBOL vmlinux 0xbf9e3cbd acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xbfb6712b security_inode_readlink +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfed0310 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff28bb7 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xc021e19b pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xc0235bc9 cdev_alloc +EXPORT_SYMBOL vmlinux 0xc02571ca filemap_map_pages +EXPORT_SYMBOL vmlinux 0xc0260083 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xc038fcce set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xc0451686 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xc04b413e devm_request_resource +EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xc06f9634 brioctl_set +EXPORT_SYMBOL vmlinux 0xc07442b6 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07fc919 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0ab3ffe blk_end_request +EXPORT_SYMBOL vmlinux 0xc0cd3b13 ___ratelimit +EXPORT_SYMBOL vmlinux 0xc11b54f6 dst_destroy +EXPORT_SYMBOL vmlinux 0xc12a3845 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xc1394901 register_console +EXPORT_SYMBOL vmlinux 0xc13a9abf lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xc157cb3d blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc1697be7 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xc18eee4b vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xc1c6f870 __pagevec_release +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc205c18a dquot_free_inode +EXPORT_SYMBOL vmlinux 0xc21c4614 nobh_writepage +EXPORT_SYMBOL vmlinux 0xc2315fef pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc2653ebe scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xc2668989 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xc2766075 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xc295773a nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2af3120 nla_append +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc30b6852 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xc30c19a9 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc321f262 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xc33774db tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xc3449af3 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xc34e3189 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xc350b4eb wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xc360138f input_open_device +EXPORT_SYMBOL vmlinux 0xc3655d05 nobh_write_begin +EXPORT_SYMBOL vmlinux 0xc3670e64 dm_get_device +EXPORT_SYMBOL vmlinux 0xc36efca8 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xc3966737 is_bad_inode +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3b767bc seq_open +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3d2c0cd __register_nls +EXPORT_SYMBOL vmlinux 0xc3d2e01e iunique +EXPORT_SYMBOL vmlinux 0xc3f865aa dev_change_carrier +EXPORT_SYMBOL vmlinux 0xc404236e generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xc42fc3a6 dev_driver_string +EXPORT_SYMBOL vmlinux 0xc432630d current_fs_time +EXPORT_SYMBOL vmlinux 0xc44f0d34 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0xc45e88b6 pci_iounmap +EXPORT_SYMBOL vmlinux 0xc47bf7d3 __get_user_pages +EXPORT_SYMBOL vmlinux 0xc480a1a6 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc48b7e29 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0xc4953b57 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc49e4284 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xc4b0a159 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xc4bb6b8a scsi_add_device +EXPORT_SYMBOL vmlinux 0xc4c1534d security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xc4d431c5 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xc4f331c6 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xc4fd8dd9 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0xc5096f25 simple_link +EXPORT_SYMBOL vmlinux 0xc50b5b89 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0xc51a6046 copy_from_iter +EXPORT_SYMBOL vmlinux 0xc51aaa3d blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xc54dbb5c nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc55aff53 put_filp +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5b80e35 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xc5d46f01 pcim_iomap +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5d9cf3e posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0xc5f46499 block_truncate_page +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc62970bc dquot_quota_off +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63463de skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc675c7e9 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xc6cb16c8 clk_get +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6da640c ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xc6e4d00d blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xc701886b jbd2_journal_init_jbd_inode +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 0xc7650cce scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xc7717b1d acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xc7774d03 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0xc77e7c99 generic_write_end +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc79bb4cb gen_pool_alloc +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a8fcca tcf_em_register +EXPORT_SYMBOL vmlinux 0xc7c93556 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xc80c35f3 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xc815c851 set_security_override +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 0xc8540f40 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc89757ac genphy_config_init +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a06260 dump_trace +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8bc06d8 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xc8d929a4 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xc8ea96cc param_set_ushort +EXPORT_SYMBOL vmlinux 0xc8eea142 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0xc90eeb4d generic_file_llseek +EXPORT_SYMBOL vmlinux 0xc9116c31 finish_no_open +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc9191488 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xc91b51c1 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xc92786ee elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xc934f03b phy_device_free +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96c635d neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc9897251 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xc996f10b pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xc99b6fdb invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock +EXPORT_SYMBOL vmlinux 0xc9a562b1 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xc9f08df6 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue +EXPORT_SYMBOL vmlinux 0xca095a7a mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xca0c69f9 sock_edemux +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca137e0d agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xca3b7925 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xca57c92d sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca73a910 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xca7ad716 agp_create_memory +EXPORT_SYMBOL vmlinux 0xca7ddf24 mmc_start_req +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca8f2b0c gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaca5d04 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xcad27e5d iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xcaf2b3f0 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcafd1c15 bdput +EXPORT_SYMBOL vmlinux 0xcafd2b89 netif_rx +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb03ed4c lwtunnel_output +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb77c179 dqget +EXPORT_SYMBOL vmlinux 0xcb90c8f9 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcb9c835c __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xcba2c591 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xcbad17d6 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbb28084 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0xcbb5a458 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xcbbeb085 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc45eea phy_register_fixup +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbfd8484 bio_init +EXPORT_SYMBOL vmlinux 0xcc1b8f03 inet_csk_reset_keepalive_timer +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 0xcc9aa2a6 register_sysctl +EXPORT_SYMBOL vmlinux 0xccacded3 dma_sync_wait +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccdba525 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xcce8ee11 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xcd0e9efa keyring_alloc +EXPORT_SYMBOL vmlinux 0xcd15c57d iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xcd1e5502 key_alloc +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xcd664b14 eth_type_trans +EXPORT_SYMBOL vmlinux 0xcd9a6b71 inet6_offloads +EXPORT_SYMBOL vmlinux 0xcda08d0a nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xcda24687 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xcdc2b91f d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdd469ab vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xcdd4e529 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xcdddd33e iterate_dir +EXPORT_SYMBOL vmlinux 0xce04c3cc generic_file_mmap +EXPORT_SYMBOL vmlinux 0xce0e2d66 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce716041 vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0xce78406c dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcead157b dump_skip +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xceba690c set_groups +EXPORT_SYMBOL vmlinux 0xcecd1749 posix_lock_file +EXPORT_SYMBOL vmlinux 0xced4c4e3 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xced62044 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xced6593c dev_open +EXPORT_SYMBOL vmlinux 0xced8a844 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xceeb3d11 find_lock_entry +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcef56b4b neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf1f3e0f input_set_abs_params +EXPORT_SYMBOL vmlinux 0xcf418aae request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0xcf59dd07 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcf7ac1b5 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xcfb4a296 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xcfc1a022 get_io_context +EXPORT_SYMBOL vmlinux 0xcfda3a7b vga_get +EXPORT_SYMBOL vmlinux 0xcff11c82 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xcffcc7dc update_region +EXPORT_SYMBOL vmlinux 0xd00637e1 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xd00f086a from_kgid +EXPORT_SYMBOL vmlinux 0xd0150f0f inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xd02c5de6 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0xd02f8da0 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xd052978c kthread_stop +EXPORT_SYMBOL vmlinux 0xd05a38dc input_inject_event +EXPORT_SYMBOL vmlinux 0xd06433d4 page_follow_link_light +EXPORT_SYMBOL vmlinux 0xd06ee60a dquot_alloc +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd0795124 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xd096fc9d elevator_alloc +EXPORT_SYMBOL vmlinux 0xd0996f10 generic_writepages +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a40599 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0db4a2e abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xd0eaa4c2 sock_setsockopt +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f1e607 __sock_tx_timestamp +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 0xd10e12bc get_agp_version +EXPORT_SYMBOL vmlinux 0xd13c75ad max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info +EXPORT_SYMBOL vmlinux 0xd168b2ec gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd184cad4 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xd186bf7e vme_bus_num +EXPORT_SYMBOL vmlinux 0xd1a220db __kfree_skb +EXPORT_SYMBOL vmlinux 0xd1a8cc92 mfd_add_devices +EXPORT_SYMBOL vmlinux 0xd1b7f873 follow_down +EXPORT_SYMBOL vmlinux 0xd1bc2f02 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xd1bd5f3e inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1d99d25 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd1f737a9 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace +EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd214674b param_set_uint +EXPORT_SYMBOL vmlinux 0xd21be66e dev_uc_add +EXPORT_SYMBOL vmlinux 0xd2267a05 dev_crit +EXPORT_SYMBOL vmlinux 0xd23a67af do_splice_from +EXPORT_SYMBOL vmlinux 0xd2483275 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xd24c85da iput +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25a5f47 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd28d24ea sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xd29a1077 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0xd2ae4729 __register_binfmt +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e5b3ca input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xd2ea09db devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xd2f43b63 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xd31457f1 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xd31ad041 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xd3287f6f security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xd32ac01e pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xd330defe single_open_size +EXPORT_SYMBOL vmlinux 0xd33f559c mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xd35b5ead blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd3719d59 paravirt_ticketlocks_enabled +EXPORT_SYMBOL vmlinux 0xd38283cc i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xd38daa8a generic_getxattr +EXPORT_SYMBOL vmlinux 0xd39f9d68 do_truncate +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3ff157b dquot_initialize +EXPORT_SYMBOL vmlinux 0xd4155a75 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xd4210eef ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xd4240b74 pci_find_capability +EXPORT_SYMBOL vmlinux 0xd42e0a7a udp_add_offload +EXPORT_SYMBOL vmlinux 0xd43c6f84 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xd4432f2c vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xd4562a7d km_query +EXPORT_SYMBOL vmlinux 0xd45744f6 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd4a3ca60 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xd4c0ee3d mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xd4de397b sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xd4f73d13 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd5105467 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xd524b8c1 address_space_init_once +EXPORT_SYMBOL vmlinux 0xd52ccb33 d_walk +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd5605cfe __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xd56bfde5 dquot_release +EXPORT_SYMBOL vmlinux 0xd56c9910 inet6_bind +EXPORT_SYMBOL vmlinux 0xd58a2292 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5a122b5 netif_napi_add +EXPORT_SYMBOL vmlinux 0xd5e0c77b set_disk_ro +EXPORT_SYMBOL vmlinux 0xd5e84f05 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xd5ee72cc dev_printk +EXPORT_SYMBOL vmlinux 0xd5f44fbb vfs_iter_read +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd62f7057 search_binary_handler +EXPORT_SYMBOL vmlinux 0xd64891bb dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd64af744 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0xd66c3859 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xd67392bb __genl_register_family +EXPORT_SYMBOL vmlinux 0xd67916f6 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xd67a216e netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xd6950172 misc_deregister +EXPORT_SYMBOL vmlinux 0xd6ac17d4 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xd6afa51c n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6bea61b sk_receive_skb +EXPORT_SYMBOL vmlinux 0xd6c4e263 passthru_features_check +EXPORT_SYMBOL vmlinux 0xd6e524f1 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f8eb60 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xd71a980f dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xd71f6eb0 bitmap_unplug +EXPORT_SYMBOL vmlinux 0xd730959d seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xd749aa07 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xd74ca862 skb_copy +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd770b0a7 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xd7741ce2 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xd7838449 pci_platform_rom +EXPORT_SYMBOL vmlinux 0xd796d4de md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xd7b0d9a2 dev_notice +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7df81b1 generic_make_request +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7f1043e inet6_release +EXPORT_SYMBOL vmlinux 0xd81096bb jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xd811704c d_instantiate +EXPORT_SYMBOL vmlinux 0xd83fa770 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xd84d595d debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xd85357f5 agp_bridge +EXPORT_SYMBOL vmlinux 0xd8570ca8 dm_register_target +EXPORT_SYMBOL vmlinux 0xd89c7367 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a53ec1 param_ops_bool +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8ba7b50 fd_install +EXPORT_SYMBOL vmlinux 0xd8c13880 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xd8d19958 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xd8de424c rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8fd5cbb dget_parent +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd9168933 dquot_get_state +EXPORT_SYMBOL vmlinux 0xd92e2dca tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xd93bd3df kernel_getpeername +EXPORT_SYMBOL vmlinux 0xd9431b81 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd94451b7 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xd94d6382 pci_release_region +EXPORT_SYMBOL vmlinux 0xd961bd15 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected +EXPORT_SYMBOL vmlinux 0xd970bded compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd988bb0a locks_init_lock +EXPORT_SYMBOL vmlinux 0xd9c65897 seq_write +EXPORT_SYMBOL vmlinux 0xd9c66774 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xd9c67fa9 cpu_info +EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9dadcb9 udp_disconnect +EXPORT_SYMBOL vmlinux 0xd9e9c9e9 inode_get_bytes +EXPORT_SYMBOL vmlinux 0xd9ec9c2c set_user_nice +EXPORT_SYMBOL vmlinux 0xd9ff5718 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xda053afc pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xda22b172 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda5f9557 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xda79dd67 tcp_prequeue +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8798ed twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdab2782d mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xdab3fb12 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb1a7741 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb42e832 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xdb57f40f generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xdb5c572a write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb7d7b7f arp_send +EXPORT_SYMBOL vmlinux 0xdb7e6538 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xdb8e435f security_inode_permission +EXPORT_SYMBOL vmlinux 0xdba42485 mutex_trylock +EXPORT_SYMBOL vmlinux 0xdbcb710d serio_close +EXPORT_SYMBOL vmlinux 0xdbcdffdd mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0xdbd08100 bio_reset +EXPORT_SYMBOL vmlinux 0xdbd23976 prepare_creds +EXPORT_SYMBOL vmlinux 0xdbdad9de mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc26b0b7 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xdc26bc56 register_netdev +EXPORT_SYMBOL vmlinux 0xdc2dbc0b scsi_report_device_reset +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 0xdc6ad4b2 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xdc77c66c bdi_register +EXPORT_SYMBOL vmlinux 0xdc8a0399 twl6040_power +EXPORT_SYMBOL vmlinux 0xdc91774d mmc_get_card +EXPORT_SYMBOL vmlinux 0xdcaa8686 skb_put +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcbde842 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xdccc7a36 input_register_handle +EXPORT_SYMBOL vmlinux 0xdcdf4128 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xdce047ac kdb_current_task +EXPORT_SYMBOL vmlinux 0xdcf4765f proto_unregister +EXPORT_SYMBOL vmlinux 0xdcfc5ab1 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xdd17a655 __dst_free +EXPORT_SYMBOL vmlinux 0xdd50ee35 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xddb583f6 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0xddc40668 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xddc69184 kernel_connect +EXPORT_SYMBOL vmlinux 0xddec9313 kfree_skb +EXPORT_SYMBOL vmlinux 0xddffe98b elv_rb_add +EXPORT_SYMBOL vmlinux 0xde0af099 register_filesystem +EXPORT_SYMBOL vmlinux 0xde16dc16 tboot +EXPORT_SYMBOL vmlinux 0xde2ca06a bio_add_page +EXPORT_SYMBOL vmlinux 0xde34776b __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xde388f43 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xde45bd2f zpool_register_driver +EXPORT_SYMBOL vmlinux 0xde50fc05 agp_copy_info +EXPORT_SYMBOL vmlinux 0xde5e917a dev_addr_add +EXPORT_SYMBOL vmlinux 0xde60dd43 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde7e0cc4 vm_map_ram +EXPORT_SYMBOL vmlinux 0xde9030bf seq_dentry +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xde9d23fd inet_sendmsg +EXPORT_SYMBOL vmlinux 0xdeaf7daf write_one_page +EXPORT_SYMBOL vmlinux 0xdec07623 scsi_device_get +EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xdefcfc69 pid_task +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdf1427e5 idr_remove +EXPORT_SYMBOL vmlinux 0xdf147641 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xdf19cbda sock_no_bind +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf425b33 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xdf44a157 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xdf5135ad pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5b2e76 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfb20d56 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xdfb3a581 mmc_can_reset +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfd0a333 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xdfe37fcb led_blink_set +EXPORT_SYMBOL vmlinux 0xdff2d93a bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xdff519aa inet_accept +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe00cc680 simple_getattr +EXPORT_SYMBOL vmlinux 0xe00d2410 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xe018dd02 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xe0414442 user_revoke +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe0676377 truncate_pagecache +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 0xe08c5cae consume_skb +EXPORT_SYMBOL vmlinux 0xe08d4b06 key_unlink +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0aed923 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b28d3a clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0xe0c41216 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xe0c82a76 fb_set_var +EXPORT_SYMBOL vmlinux 0xe0fbd788 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xe0fd6a81 udp_proc_register +EXPORT_SYMBOL vmlinux 0xe10b680a pneigh_lookup +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe119585c posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xe11cde96 cap_mmap_file +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe1500ac8 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xe154d23c vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe186bc39 user_path_at_empty +EXPORT_SYMBOL vmlinux 0xe18dfe87 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xe1b3221a crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xe1ba00fa elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xe1bafdb5 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xe1bde4cc con_copy_unimap +EXPORT_SYMBOL vmlinux 0xe1c714d5 page_readlink +EXPORT_SYMBOL vmlinux 0xe1c98433 skb_append +EXPORT_SYMBOL vmlinux 0xe1d8ebfc bdi_register_owner +EXPORT_SYMBOL vmlinux 0xe1f5f1a5 free_user_ns +EXPORT_SYMBOL vmlinux 0xe1fb7821 pci_bus_put +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe20ae353 bh_submit_read +EXPORT_SYMBOL vmlinux 0xe21a601f ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe254af4b single_open +EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xe25c6658 netpoll_setup +EXPORT_SYMBOL vmlinux 0xe265299c cdev_add +EXPORT_SYMBOL vmlinux 0xe26d18bd scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xe2704970 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xe277c03b twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xe279a741 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xe283d14f fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xe28505e5 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xe2874abd remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xe29a8d60 give_up_console +EXPORT_SYMBOL vmlinux 0xe29b04e9 acpi_set_firmware_waking_vector64 +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2b21482 inet_getname +EXPORT_SYMBOL vmlinux 0xe2bb8d05 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2f52235 get_user_pages +EXPORT_SYMBOL vmlinux 0xe313bab5 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe344379f compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xe34b8888 sk_alloc +EXPORT_SYMBOL vmlinux 0xe3809e84 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xe38f36dc security_path_link +EXPORT_SYMBOL vmlinux 0xe39ffd55 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3b62b58 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xe3b7ef22 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3d82f94 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xe3ddff5a __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xe3f5cf18 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xe3f6b79c poll_initwait +EXPORT_SYMBOL vmlinux 0xe4130e12 release_sock +EXPORT_SYMBOL vmlinux 0xe4177507 pci_disable_device +EXPORT_SYMBOL vmlinux 0xe4256379 devm_release_resource +EXPORT_SYMBOL vmlinux 0xe42c6979 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xe42ce606 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xe444f475 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xe46c342d ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xe470f24d km_policy_expired +EXPORT_SYMBOL vmlinux 0xe475ebd7 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe4ac8af7 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xe4add760 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xe4cdaf8d lookup_one_len +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4f3f8fa nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xe50162c4 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xe50b6424 fb_pan_display +EXPORT_SYMBOL vmlinux 0xe522233a tcf_hash_search +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe534d704 blk_requeue_request +EXPORT_SYMBOL vmlinux 0xe53baa8f phy_connect_direct +EXPORT_SYMBOL vmlinux 0xe546764d jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xe547ad79 serio_reconnect +EXPORT_SYMBOL vmlinux 0xe56b09f7 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe57b00b3 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5975e83 __ps2_command +EXPORT_SYMBOL vmlinux 0xe5b13289 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xe5b20e4d ppp_register_channel +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5e0f2ba pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe6025386 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0xe6162877 down_killable +EXPORT_SYMBOL vmlinux 0xe62a08d9 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0xe6417067 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe67f61a8 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe69d7eb9 poll_freewait +EXPORT_SYMBOL vmlinux 0xe6a5d4c1 ether_setup +EXPORT_SYMBOL vmlinux 0xe6b1858e rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xe6c40874 param_get_invbool +EXPORT_SYMBOL vmlinux 0xe6c4829a cdev_del +EXPORT_SYMBOL vmlinux 0xe6d14e07 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xe6fbc80c i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe7015fa9 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xe713f167 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe719dabd unlock_buffer +EXPORT_SYMBOL vmlinux 0xe74ba8d3 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe75144bf generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xe7737f11 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xe7a5ac11 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7ac90cc vfs_getattr +EXPORT_SYMBOL vmlinux 0xe7c5a96b jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e73ef9 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xe7e9e7f0 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xe7f4e54b generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xe7fb9826 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xe80c1fff nd_integrity_init +EXPORT_SYMBOL vmlinux 0xe818543b set_anon_super +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe824c946 generic_setlease +EXPORT_SYMBOL vmlinux 0xe83a1c5b lro_receive_skb +EXPORT_SYMBOL vmlinux 0xe8720786 mdiobus_free +EXPORT_SYMBOL vmlinux 0xe8731918 x86_hyper_xen +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe8845cd1 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b0d410 param_get_byte +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c95b80 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9159990 xattr_full_name +EXPORT_SYMBOL vmlinux 0xe91dcb46 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xe925a14b free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xe92b3e79 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe957e88b scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe964fb18 dev_mc_add +EXPORT_SYMBOL vmlinux 0xe971dd27 __netif_schedule +EXPORT_SYMBOL vmlinux 0xe979d3ef tty_unregister_device +EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xe99f6e63 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xe9acfac4 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xe9b9a1d4 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xe9d1796b keyring_search +EXPORT_SYMBOL vmlinux 0xe9d807c9 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea17c565 udp_prot +EXPORT_SYMBOL vmlinux 0xea278e88 release_firmware +EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xea4f4829 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xea61e5a7 i8042_install_filter +EXPORT_SYMBOL vmlinux 0xea75df45 netdev_change_features +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xeaa39a39 blk_end_request_all +EXPORT_SYMBOL vmlinux 0xeac73847 irq_regs +EXPORT_SYMBOL vmlinux 0xead86f24 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xeae28269 seq_puts +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaeeb7cf inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0xeafc4418 blk_init_queue +EXPORT_SYMBOL vmlinux 0xeb024381 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xeb03c87d scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xeb16256a ip6_xmit +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb4fea0c neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xeb56d876 tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xeb5e5427 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xeb98d404 vga_tryget +EXPORT_SYMBOL vmlinux 0xeb9a968e default_llseek +EXPORT_SYMBOL vmlinux 0xebb9cca2 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xebf3efb6 genlmsg_put +EXPORT_SYMBOL vmlinux 0xebf532c2 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xebff5cf5 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xec3faf13 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec600b1c set_pages_array_wc +EXPORT_SYMBOL vmlinux 0xec77dc0c sk_reset_timer +EXPORT_SYMBOL vmlinux 0xec7c20c6 init_special_inode +EXPORT_SYMBOL vmlinux 0xec84e566 scsi_host_put +EXPORT_SYMBOL vmlinux 0xec84fc2d seq_release +EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy +EXPORT_SYMBOL vmlinux 0xecadfcae mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xecb8c2e8 input_free_device +EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xeceeabd6 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xecf5a4e0 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xecfc8330 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed0424f7 generic_read_dir +EXPORT_SYMBOL vmlinux 0xed0da855 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xed4bf670 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed842b85 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xed917ad3 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbb77bf rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xeddbc8fd sock_no_mmap +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3e5e4e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xee5091f7 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0xee5cac07 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee89c0e4 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9690ae __neigh_event_send +EXPORT_SYMBOL vmlinux 0xee9ba6ba pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xeea3cd7a nla_reserve +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeab0dae inode_init_once +EXPORT_SYMBOL vmlinux 0xeeafbd63 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xeebe0308 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0xeec65070 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xeecb4979 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xeecf2154 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xeed40663 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xeeddb8a7 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef427cb lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xef3ddb04 do_splice_direct +EXPORT_SYMBOL vmlinux 0xef493756 alloc_file +EXPORT_SYMBOL vmlinux 0xef5326ac __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xef575022 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefa3e9f1 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xefa4a8db invalidate_bdev +EXPORT_SYMBOL vmlinux 0xefb36c99 dm_put_device +EXPORT_SYMBOL vmlinux 0xefbaa1b1 dev_queue_xmit +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 0xefef48bb mutex_lock +EXPORT_SYMBOL vmlinux 0xeffe1556 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf02b4fbe __secpath_destroy +EXPORT_SYMBOL vmlinux 0xf0332621 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xf042d1da pcie_port_service_register +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 0xf082c338 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09376ed pci_choose_state +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 0xf0b4d37f posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xf0c05cd9 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xf0e3c43c iterate_fd +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 0xf1398e2e lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xf13fe219 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf14c16c6 vfs_readf +EXPORT_SYMBOL vmlinux 0xf14d5ae3 bdget +EXPORT_SYMBOL vmlinux 0xf15339cd __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xf16dcf14 __quota_error +EXPORT_SYMBOL vmlinux 0xf16f22e3 tty_port_put +EXPORT_SYMBOL vmlinux 0xf1709798 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0xf171ed0b import_iovec +EXPORT_SYMBOL vmlinux 0xf1784210 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xf194abe2 __f_setown +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf196c305 md_finish_reshape +EXPORT_SYMBOL vmlinux 0xf19b99fe tcp_release_cb +EXPORT_SYMBOL vmlinux 0xf1aaa79c find_get_pages_tag +EXPORT_SYMBOL vmlinux 0xf1ae4ad3 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1df7ef9 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f8ef34 kill_bdev +EXPORT_SYMBOL vmlinux 0xf1fa134d km_report +EXPORT_SYMBOL vmlinux 0xf1ff354b tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf287558a seq_printf +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 0xf2aabaa0 pipe_unlock +EXPORT_SYMBOL vmlinux 0xf2c17faa netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d0498e __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xf2e1715a security_file_permission +EXPORT_SYMBOL vmlinux 0xf2e49a67 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31fe598 d_invalidate +EXPORT_SYMBOL vmlinux 0xf328807c soft_cursor +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf33d5441 set_binfmt +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf346b992 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0xf346c8d4 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xf3471828 netlink_unicast +EXPORT_SYMBOL vmlinux 0xf347bcd4 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf3540d7e nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xf3576dfa mmc_add_host +EXPORT_SYMBOL vmlinux 0xf362e07b file_path +EXPORT_SYMBOL vmlinux 0xf37b44ed rtnl_notify +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 0xf3b4650c blk_sync_queue +EXPORT_SYMBOL vmlinux 0xf3ba7a47 __getblk_slow +EXPORT_SYMBOL vmlinux 0xf3bb2249 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xf3bf19d8 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xf3c68a40 skb_trim +EXPORT_SYMBOL vmlinux 0xf3dbac85 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf40d6f95 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xf413293b compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xf4169980 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xf43af0fa pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4497da7 skb_insert +EXPORT_SYMBOL vmlinux 0xf4557745 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47700c2 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xf479ad56 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xf479fc06 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xf47f5031 tcp_poll +EXPORT_SYMBOL vmlinux 0xf4a3c3e0 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4ae13e2 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xf4b11619 sk_net_capable +EXPORT_SYMBOL vmlinux 0xf4b3d880 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c8b21d remove_arg_zero +EXPORT_SYMBOL vmlinux 0xf4d1375f genl_notify +EXPORT_SYMBOL vmlinux 0xf4dbc7c3 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xf4e76870 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4fce418 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf532a6db tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5451786 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xf54d00ef skb_copy_expand +EXPORT_SYMBOL vmlinux 0xf55349f9 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0xf55bc129 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xf569373e sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xf5828a84 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0xf5b1984b skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xf5ba1a50 sock_release +EXPORT_SYMBOL vmlinux 0xf5c1800f xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5e1a64d blk_free_tags +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf601c4dd vfs_symlink +EXPORT_SYMBOL vmlinux 0xf6118bfa xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xf632f1b3 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf63c79b3 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf6411b4a bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xf658745d write_inode_now +EXPORT_SYMBOL vmlinux 0xf676e4f3 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6844275 elv_rb_del +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf6876b47 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xf693a145 irq_stat +EXPORT_SYMBOL vmlinux 0xf699984e kobject_put +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6db8cc7 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf73181b8 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0xf7355466 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xf741ac42 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf75bb387 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xf764868a udplite_table +EXPORT_SYMBOL vmlinux 0xf77d324b iget_failed +EXPORT_SYMBOL vmlinux 0xf787fffb pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xf78e6758 setattr_copy +EXPORT_SYMBOL vmlinux 0xf79e137d bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xf79e5f82 set_blocksize +EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0xf7a50393 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xf7b919c7 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xf7ba8776 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xf7d1a1d7 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xf7d2f55d blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xf7dd3dae netif_napi_del +EXPORT_SYMBOL vmlinux 0xf7dfd33f buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xf7e321c8 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xf7f728a7 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xf7fe9b12 __inode_permission +EXPORT_SYMBOL vmlinux 0xf8065cf3 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xf8114b59 mount_pseudo +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf81969dd padata_do_parallel +EXPORT_SYMBOL vmlinux 0xf81d583e nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf838117c tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xf8665495 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf89a7db5 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xf8af46ea inet_frag_kill +EXPORT_SYMBOL vmlinux 0xf8bc6583 _dev_info +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8d150c1 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xf8e6768c pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf9306f60 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xf939bd10 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xf951dba2 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xf96d1e31 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xf99b378a udp6_csum_init +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9aa6acc md_reload_sb +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c66b5b mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xf9f13f86 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xf9f885a9 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xfa1307cf udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xfa190d17 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xfa1a2eba path_put +EXPORT_SYMBOL vmlinux 0xfa2dd83a fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0xfa4198a2 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xfa41f98d bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa573768 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5edf6d md_check_recovery +EXPORT_SYMBOL vmlinux 0xfa7cf8d2 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xfa7d7b8f phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xfa87cff8 dm_io +EXPORT_SYMBOL vmlinux 0xfab9107b block_write_full_page +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfad44d4b bio_endio +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfae9616e get_cached_acl +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb0724dd fddi_change_mtu +EXPORT_SYMBOL vmlinux 0xfb1229b9 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xfb28de91 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xfb2c8ffb blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xfb578fc5 memset +EXPORT_SYMBOL vmlinux 0xfb66a344 filemap_flush +EXPORT_SYMBOL vmlinux 0xfb691d2f gen_pool_free +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb6e9a58 skb_push +EXPORT_SYMBOL vmlinux 0xfb7c7fb8 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xfb7f7861 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfb88bcd3 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb97d76a pci_find_bus +EXPORT_SYMBOL vmlinux 0xfba77031 simple_fill_super +EXPORT_SYMBOL vmlinux 0xfba7df50 vme_master_request +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb2edb1 d_drop +EXPORT_SYMBOL vmlinux 0xfbb7a5b6 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbcbce0b generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xfbdaedee phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc0b9842 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc401023 blk_get_queue +EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcb61573 __check_sticky +EXPORT_SYMBOL vmlinux 0xfcb806cc pipe_lock +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcc4bbb6 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfce12b67 read_code +EXPORT_SYMBOL vmlinux 0xfce47b9a netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xfcea0966 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf33989 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd352a5f __init_rwsem +EXPORT_SYMBOL vmlinux 0xfd68b4d5 copy_to_iter +EXPORT_SYMBOL vmlinux 0xfd76bde6 default_file_splice_read +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdbe50c3 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xfdd64315 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xfdf8df76 blk_queue_dma_alignment +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 0xfe00e06c jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0xfe063a8c vfs_readv +EXPORT_SYMBOL vmlinux 0xfe0cbe2b neigh_table_init +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 0xfe2982a3 genphy_read_status +EXPORT_SYMBOL vmlinux 0xfe2bbb01 phy_device_create +EXPORT_SYMBOL vmlinux 0xfe3364d7 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xfe57bc12 f_setown +EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe8e6562 tty_kref_put +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe94e582 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xfe9740b5 agp_backend_release +EXPORT_SYMBOL vmlinux 0xfe9ca1be mdiobus_scan +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfed2d220 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeeaaedd skb_pad +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next +EXPORT_SYMBOL vmlinux 0xfefb9c90 dup_iter +EXPORT_SYMBOL vmlinux 0xff04b636 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xff11d9f8 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff226fef tcp_connect +EXPORT_SYMBOL vmlinux 0xff44327f bd_set_size +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 0xffa355d1 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xffa8d310 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xfff0a910 dquot_enable +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 0x3b524ac6 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 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 0xbba31268 xts_camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xdb60c3bc lrw_camellia_exit_tfm +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xf4521fda camellia_dec_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x0c19ae3b glue_xts_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x64c7fb67 glue_cbc_encrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x82ef7db3 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 0xadd65ae7 glue_ecb_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xf437c3cf 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 0x02872aaf lrw_serpent_exit_tfm +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x090c6572 xts_serpent_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x0c5a8af6 serpent_xts_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x0ff3c26d serpent_xts_dec +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x606a8162 serpent_cbc_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x79ff0b7a serpent_ecb_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9ae34b2f serpent_xts_enc +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9d3300e7 lrw_serpent_setkey +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 0x1fd77fb1 twofish_dec_blk_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x58b69b44 xts_twofish_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x61694b97 twofish_dec_blk_cbc_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x8d75ab44 twofish_enc_blk_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x8e856922 twofish_enc_blk_ctr_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xa15f9cc0 lrw_twofish_exit_tfm +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xcc89fed1 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 0x013a7b71 kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01ccd216 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x03107361 kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x046fb0cb kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x04d201ba gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05ac591b x86_set_memory_region +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 0x0c58ea50 kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cf7b8c7 kvm_mmu_unprotect_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d4adf8b __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0fae7a43 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10bf07e2 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11f01bbb kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12cbd553 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1431ac73 reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1594a751 kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x161fe146 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17bec273 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17c114b8 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18e68178 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x190b3e5e kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1dcb4a19 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1dfffaf7 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2032d9a9 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x203a0e8f kvm_get_dirty_log +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 0x22be1be7 kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x244c97ba kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x252ac3e5 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25517fc8 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26a091b9 kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2843be34 kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x286098ac kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a919aff kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a9d2c77 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c78b8d4 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f303569 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35411fc2 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3565f6b5 kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a9b2cba kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b9cccd4 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f3c79aa kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43c354c1 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44046cb1 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48113cd7 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48a66ee5 kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48b09e5e kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b4db2dc kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4eea4902 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x502c95aa kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x562fdaed kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56890438 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58163e83 kvm_mmu_slot_set_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58591baa kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x588704ed kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a05c1f9 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a2aca22 reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c4ceeba kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c7cd434 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5da76a17 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x639b4328 kvm_inject_realmode_interrupt +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 0x66b03076 kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d320a4c kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e5cfeeb kvm_put_kvm +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 0x721edd70 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73ae496a __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x741c7155 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7629dd37 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x765adc30 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x77af6f56 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a1325b3 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a98c698 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b6c22d3 kvm_mmu_sync_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c3706d8 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d84f06f kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff1ca84 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x802a4918 kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8133adb5 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831a0bb6 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x84b5fe46 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x850fdcd9 kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8705e3c7 __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a1233ad kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a71dd6c kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c603cdf kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cf93b06 kvm_get_apic_base +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 0x8ea39782 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90309500 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95b4fe2a kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x996675b8 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99f9f96e kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a002b31 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b767ff0 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ddadd67 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f6c890d kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa01785fa kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0ec3a0a gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa21a3763 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa230d601 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa26946aa kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa33494ae kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3c1e0e6 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4d57013 __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa700bf1d kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa883eb5a kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa23af91 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaacf041b kvm_fast_pio_out +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaae8b60f kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf7f97c gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae1edb98 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb073a8d0 kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1692379 kvm_init_shadow_mmu +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 0xb66b9389 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6a02776 handle_mmio_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb7bc5325 kvm_mmu_slot_leaf_clear_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8928c36 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9a6d36a kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbecc2e1b x86_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbed37dac kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1adc2cb __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4f03fb0 kvm_emulate_halt +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 0xc60a3d85 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7cce1df kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8d87fff kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb17bf72 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc0f8c56 kvm_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd18124b kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf0b30d5 __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf8e4975 kvm_vcpu_reload_apic_access_page +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 0xd162ab65 cpuid_query_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd368aa16 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3e41809 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd463bf22 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd549eed2 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd74f6f8c kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd77effa4 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7b5b8d7 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd880ecc4 kvm_mmu_clear_dirty_pt_masked +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd932234d kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd93bbd46 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd9ae52a kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf8e5ed3 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe42597ba kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5ae6e99 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6b3748c kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7e67351 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8914ab0 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9681014 kvm_mmu_slot_largepage_remove_write_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee0d597c kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee9f9a44 kvm_set_cr3 +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 0xf3f9b9f9 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf41e94f5 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5931f5e gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf63cc454 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf87e8e0b reset_shadow_zero_bits_mask +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 0xfbf38f51 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdcce73e mark_page_dirty +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x2b74a4f9 ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x34cc1550 ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x98665c96 __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xbb70efd3 ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xcb2808a1 ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xe3fb7305 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xe452973c ablk_set_key +EXPORT_SYMBOL_GPL crypto/af_alg 0x07e69d7f af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x31a36731 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x46b4393f af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x5c1aa7f4 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x6f4a96d7 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x758940c4 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x8000f698 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x99d70b61 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xb162c6c5 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xb3176d8c af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xc652d594 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x40cb5904 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xad954d39 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x008985da async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xeddbd21b async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x53c6f519 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xda9da4de __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf5184837 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xfed114de async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7d7f90c3 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe7ac7601 async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x853513dc 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 0x8cbc0e35 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 0xf4ed2dae 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 0x0f6dc760 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x4f303cca crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x00d30459 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x018fb477 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x4bbf9d33 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x58c2904e cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x5abdd6ab cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x60d55e7d cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x647f3be7 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x747cb435 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x94b3831b cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xe52b7e91 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 0x2ca0fb20 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 0x4678e2cb shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x84bda792 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x892faf9c mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x9dcf2c1b mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xaf37801f shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0xc3d1b3b5 mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0xc5d3b7c2 shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0xc8f10e1a shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x6ea994b3 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x9db2a106 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xab2a5998 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xe20f0a2e 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 0x96bb0588 serpent_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x1eb69a5e twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/xts 0x05a3da53 xts_crypt +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0x520b63fc acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0x80bb3c2f 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 0x0c2e6da2 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x25577c13 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4c57f5b0 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x57118251 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x63ee71d3 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6d21f24e ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x746db33f ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x74876745 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x78d60a0c ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7ac06ff6 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x83efe0fd ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa246018c ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa8f4fe87 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb3045818 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc847e38c ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcde81894 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd173c3a0 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xda335bc5 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe3609ff3 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe7fcb765 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xec9f11f3 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf2321366 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfcbecb87 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1445b273 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x250ead30 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4cd03069 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x519d8c8a ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5656e29e ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x624c83fc ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6664670e ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8460ae5c ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb86d9f12 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbd217e2c ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc39850e6 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd0a70af6 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf021542a ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xdfe0a9da __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 0x2b08e0c7 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xac31f5af __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb0c9fc77 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xbf605a96 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0b2e5d66 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1494aa8a bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1e45dcaf bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x229040f4 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x30e2498f bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x31416247 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x317ecba0 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x38ebf684 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3cc9d5d4 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5b1c1a6a bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6fce8fe9 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x72b09472 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x80b841a0 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x85e7766b bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8c69cc1d bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x92222d8f bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x93e8b26b bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbcd2ead4 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc41efd31 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd050eca4 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd605a815 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdbfde214 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xea82665b bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf9a2fd59 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x17e49a73 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x253e7e8d btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7a193f91 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x809446c8 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc06b58cd btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc3096758 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0d851bd6 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3f08b95e btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5ed4ad4c btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x641ae9b3 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x65f313d8 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x75c18775 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x802c2068 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9230e2b6 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa3c27c30 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xaf83982c btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xda62d12f btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfef600ff btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1adc8054 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1e441b42 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x305cc007 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4fecd17c btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7439403e btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x77d06bc7 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x98b1b96f btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9cdba70f btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa78e3c98 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xca0775d6 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe3aa3d67 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0f0ff5c5 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xccf84c34 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7aac3a5c btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x6b88044d 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 0x63526e16 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x053826c0 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x14d4347d adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x27cc1d88 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x290ab151 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2d2053cf adf_service_register +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2dbe12b9 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2f59d61f adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3b4db754 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 0x4d6875ea adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4e9daf5e adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4f10f88e adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x552e73b8 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5fb06541 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x633f1e35 adf_service_unregister +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6404debb adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6b480bdb adf_iov_putmsg +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6f9630ce adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x76e73dbc adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7ef635a0 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8742282b adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8807fadf adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9e44162b adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa7d9642d adf_update_ring_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xabdcf60c adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xae71733d adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbf25db49 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc5eca595 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc63a668b adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc6964894 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xca372ad0 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcbce9bae adf_disable_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 0xcfdee831 adf_enable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe93ad654 adf_disable_vf2pf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf39d5087 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfba46853 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfbf04bef adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x31a2c8df dca_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x44119224 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x44c4b614 dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x51c0f402 alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x68698878 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x6ebda18c dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x7917bf4e free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0xbd671a60 register_dca_provider +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1077f31e dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x382bf458 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3a582426 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe99e1bd0 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfddc39a7 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x2a049a41 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x481ecdeb hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x8e04933a hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x00ead335 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x095a2301 vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x876d5ce0 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xa2a6ccdc vchan_find_desc +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0xab406f87 amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x077ff5d2 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x07a629f4 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1c86e28a edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2495f0e5 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2a0123c1 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x319f1914 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3cc2509b edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4468b6e7 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5216a533 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x58c8dbc3 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5afbc6e2 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6361e19b edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x69c18e4e edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7aa66fa2 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7d3bf0cb edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb5492b1d edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbb4ea62c edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcc83e49f edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe0b1932b edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe91a47a6 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf66e9216 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xffa75c8e edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xffef5033 edac_pci_create_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 0x115ae86b of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x37b1a702 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x57ffff80 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x72250fcd fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x783f4033 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdbfac768 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x40ed4f43 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xb846bd6f bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x3fb8d786 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x987845ee __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x178f4b78 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x75aeb0e0 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xab46f57a 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 0x1b0ff40e 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 0x988c9363 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 0xef07d895 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/hid/hid 0x01eb295b hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1489cf9f hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3266aa44 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3be90fe5 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x41106750 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5565fe92 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5567dc46 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5b3748d7 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x63160113 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c7a413a hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7274adf5 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7765b768 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x86383de1 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8f710a97 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x95a7e757 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9be926cd hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9da5b6d8 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9ee718cb __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa0dd6a2d hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa14b69f5 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa7ffaef4 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa96ede94 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb88ea0f6 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbbadfb61 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc56d986 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc5ea8f8e hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc9171270 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd69bc150 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xda50b8d8 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe0ec0e16 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeaf7b262 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf2732918 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf5d3b5f5 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf7c3d4f8 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfce84d1a hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd88f06c __hid_request +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 0xc1a15de1 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x289819dc roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8fc56f2b roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb89e4e50 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb9ccd1dd roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xba6914fa roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf5efa7cf roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x31e9e47f hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3b7e51e0 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x65637cb9 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x85f93866 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x926b8b7b sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb6f5bb95 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbca22dfa sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc2a0cb19 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe3c5f997 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xe1c4f670 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x018a3b95 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0aa67968 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x471ec419 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4afbabc3 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5874e8a8 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6283567a hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6fa0e07d hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8fb1ab15 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x92310146 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x93cab0fa hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb67f09b6 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc8fa94b9 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xca56e679 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdd96ab37 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xddfd9f7c hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe3b03f9a hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xeff871e6 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0f04a374 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x12f38856 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x15913ebb vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1807416d vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a25cd8a hv_do_hypercall +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a94dd15 vmbus_open +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 0x44fc9a6b vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x477d38e7 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5dc8bbd4 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x80c4de87 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86ff5fa6 hyperv_cs +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x874550b6 vmbus_sendpacket_pagebuffer_ctl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x99949a6b vmbus_get_outgoing_channel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xad789c1e vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc0b38ed4 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc37be4eb vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcc3e5f72 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xce541d6d vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcf27608b vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe8c5b6a3 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfefe4a6f vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x0bffd109 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x82a1934e adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xd6450160 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x05cb80d3 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x05da6465 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0c794430 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x213a73d1 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x41ac3181 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4fe5746d pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x544b66fc pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x58a10acd pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x74d339e0 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7b454ace pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x82079350 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x947c291a pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb6b629c0 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd3361f91 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf2528b68 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0f766b0a intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2b228965 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x352327e1 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x44f6892a intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x45b34e26 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa889e663 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc15e39b3 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1d9eb359 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7662ede6 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa79a3a36 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xba59d666 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd915366d stm_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x131ce319 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x40c60df4 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xbd11f9b8 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xdcc2728f i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xec30c650 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x621345a6 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x197bbc3c i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x64ffb8a0 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x760b7f5c i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x96960268 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1064b8f6 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xb5be7c7b bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd9d0efb5 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x24121d6b ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x46566e0c ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x681544eb ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x78199422 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8e73cc05 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdf875760 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe192a5d7 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe313e54d ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe46967bb 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 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xaf578476 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xfcca38e4 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x0c4be246 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x6642d0ee ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x2bf11d4b bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xae3d79b7 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xb7f5e7d0 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0c0d1c86 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x17330b8f adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x230c9b38 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x357078b1 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x484a8a43 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x667514eb adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8bcfbc9e adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa973f50d adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc0b6f977 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd0647e3d adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe736ac6d adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xea88e09f adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2138bdab iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2c661c29 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2da91bc4 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x35b5e06e iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x38fe9ff4 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3db92cc9 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e625c34 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x53f2b943 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5ed07de4 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63def362 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6606b4cf iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6a8a510a devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x776820e3 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x790ff46c iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7babe0b6 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8d99699d iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x905c9512 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x96093bc1 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb37f1a61 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb3d742cc iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb482f7eb iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbc6a807b devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbc928559 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbd40e2a7 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc0fdd329 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc658eaec iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe265490a iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe54ea156 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe6418327 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfca8a3d5 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfe14158e iio_channel_release +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x575506ce 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 0xc60cd864 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x67524db6 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x71164020 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xa4722579 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x9845f45a cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xa43a0e97 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xe7c3afae cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x1d5c49d7 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x377bb744 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x53d2d2cc tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x6374f9c0 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x726d3a8a tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xac546002 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x247372e8 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x24bb8bd8 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x34429b30 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3ac32421 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x50f10bff wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6b1744d0 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x81e5163b wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x925aebfd wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9c5b0b61 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa07d1c52 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xde7e2515 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf226a9dd wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x15776e72 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3916fb15 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6090b361 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6961ef30 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa760f761 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd07c7de4 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xee013b94 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xff244a67 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfff95460 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 0x0118116a gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x04a981ea gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0df19d1e gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1e806acd gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3612d7cb gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3b470ab8 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4d795278 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6ff99061 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8476edf3 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x847b7e4b gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x89832a78 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa26c7e6b gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb241c42c gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc16fcb82 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcd3fd984 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf142e26e gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf563e14d gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1999c961 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x294ec7f7 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x798fc8c1 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa465e976 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb21b4741 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf04d18e9 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x13aac4b9 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x37011c93 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3a7e99d0 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8ddcb94e lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x957fca3b lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa9f74f58 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd51651ab lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe03dd18c lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe070bb8b lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe391020d lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xff8fdde9 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 0x18f32059 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1ee04406 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2727e2ca mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x329f79c9 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5dc7fb72 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7309ce76 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8481cb89 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x84fe8ebc chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8fbe1b60 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9144d3e5 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb5a288ab mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe3918e05 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf61e8031 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0507d49d 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 0x24bef1bc dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x27ca35f7 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x356eb92d dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x577023a2 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 0x7c02a9a7 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x91e07f26 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb620aa05 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 0xf657be19 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 0xb3714437 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 0x10effc72 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4a5fa531 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4b615f41 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8a9c48bb dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa30add6f dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xadc58ed3 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xdbd3e451 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xd555f46f dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xeb49ec92 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 0x026c97ec 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 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 0x79adf36c dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x853f0dbc dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x91139700 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 0xadffc416 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb7c97a27 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 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 0xaef765f5 dm_block_manager_create +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 0x2a53e055 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2ec0ee25 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x42c57c51 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x64ae9ec4 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7b7a7365 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7e030881 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa237854e saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa23921b7 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa49bd4fe saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xce55a35f saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0bf1e0f3 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1c2ea81d saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x46fd1195 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x489015a3 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7105381b saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x921e873f saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbbe60f25 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0bd21371 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x188e0e0c smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x256133ea smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2a91075d smscore_putbuffer +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 0x48b8bec1 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5068f025 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x580c951c sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5f46199e smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x671df6c9 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6acf84ac smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x77ad2227 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x83ad13e1 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa3fb5fa6 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa9df8c1d sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xad1bd946 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd347b43f smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfa904dd5 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x914ed103 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x026f654f cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x61761c5e tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x06f79a9e media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x30a77f17 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x375aa0d0 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x388ab85d media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x54e9a97a media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x5d575ef2 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x6ac14b85 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x6cbd9fff media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x6e297ba8 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x9276af06 media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x9c371b14 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0xb217a294 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0xb2fe056e media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xb48bf1c4 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0xe10ea534 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0xf3621383 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xf662a8b9 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xf9101196 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xe4952e13 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x17918259 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1d61d579 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x21fce30f mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x34a99753 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x68c217d4 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6cbbaf3b mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7816f1de mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7ba2f9f0 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8cbdecc4 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9c690ace mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc03e04ed mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc7808117 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc7f27b4f mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc93b67be mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcb4eebcd mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd7db53af mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdcc4dea0 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe9cac863 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xedd188c8 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x07841d46 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0a9e4c16 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1a0a2869 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1d072672 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2566d2e7 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2f28eb87 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x34b75f81 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3b125537 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x43fd9deb saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6c2b0a45 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x71df92dc saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x79f41ac2 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x86e27c4a saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa7519eed saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb5053dfb saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdccfb453 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf73aab06 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfb1bd263 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfbf6ac2d saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x554f38d7 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x63de6af8 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 0x989733ac ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa65f9dfc ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa6b553cb ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc52fc3b0 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xee366991 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x62efa763 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x829c7b6b radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0cca9837 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0f36410b rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2184542a rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x24395789 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x26f15a0a rc_open +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 0x6649f364 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x778587ae rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7eb0202e rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xadcc2a8d rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb3d43ddd ir_raw_event_set_idle +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 0xc322e913 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc63c08d1 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd1f1d67b ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd78bd1f7 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xea521250 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeecca63b ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x9151cda4 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xb35c8e65 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x04835621 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x1aa9f50a r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x071f3c67 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x6acfe886 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x959cbd1f tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xe6ac4535 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xdb22d415 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x7be622b0 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xdb00d8a8 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x926888ee tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x9fe9d823 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x768b461d simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x20e931c8 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x29274a4b is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3c3430a7 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3ed286ca cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x408daeb3 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x411399af cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4658b3ac cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x57f3b62f cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8791e49b cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8c7737f7 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9326c489 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaa51a6e9 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbf5e4208 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd555916c cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe6d3a818 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xee67cf86 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xee806db6 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf1a2238e cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfdd436a7 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfdf11be8 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xa9e27729 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x36d1a246 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0463becd em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x066c2dc9 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0adf78cf em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0be94a4d em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x17244230 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2b56d06e em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2be66553 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2c677070 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4b7eacf9 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x66acd795 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7577668d em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x79aff8b4 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7c4e9fa5 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x930de2c4 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa2d15b23 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbb7ae2a7 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xceac3f24 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe7769a90 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x88c8ad13 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x9c804a77 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xbbe64652 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xcc0ba66a 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 0x0d79dce7 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x1f750517 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 0x93344e43 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xbc03619d v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xc7e0cd47 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 0xf6545d14 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 0x1343ce69 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x371a4460 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x02226a75 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x05a2a13d v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15761b8d v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17e8a590 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 0x1f78ff90 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x297d7c75 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x49ea04cd v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4f2b6d44 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x948ef634 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x955fc1c8 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xacab6b81 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb4b28df5 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb635c63b v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb6f4d697 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbe5a6aa7 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6a71558 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 0xca2040da v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xca34ffcf v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xca9db1bd v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcd83111d v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd52aa380 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdcedfeb5 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xebaa69bd v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xee443e2a v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf2308335 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf7012423 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfe589ed6 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0619566a videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x133a7e20 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x13ffd9da videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1c01f425 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3bdf347f videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4c8c2dfc videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4d0498d7 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4d38e00a videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5dd7349a videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5f99f0f8 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x66f086ec videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6ed450ba videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x74e0d028 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7856ccc4 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8181c3fd videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x82d94d1f videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9806af4d videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa1639608 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa22b3802 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc3e515e4 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc97d018b videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe55392d5 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xed2ab78f videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfffd48b9 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x54ae49b4 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 0x80c01cb2 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x903a5767 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xacb07c5e videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x30b7c07f videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x896f0db2 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc79ff3d1 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x23b9f4d7 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x31184b11 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x37121c93 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3ab45ed3 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x40c2aa9a vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4a5b7a23 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4bf3a9a3 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4f957a16 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5b84cebb vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6e21146f vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6f36dd3e vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x876f7b84 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa5de4fc2 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc898d8e5 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xce0a58b0 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd6e43159 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe37d90c6 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfa84cc0a vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xc21ba40e vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xc65acae0 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 0x02adf858 vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x55e4029a 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 0x6d5b7817 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0253e498 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1fe3c35c vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x227a3ad7 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x34c9beaa vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x39a1f3ff vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x439fcf82 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4548c9b4 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x48de88d8 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x56e80c2f vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x618a010f vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6fcd6f91 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x74255064 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7eca726c _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7ff8112b vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x83af29db vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x871871aa vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8fdd5bcf vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x957677ea vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9941ebb6 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9b673398 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcb792df8 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcc306804 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd9e9a818 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xde8857b4 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe1957472 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe3caaa5d vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe4189533 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe56baf15 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xeb7c7c2b vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xeeb009eb vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf3437622 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf8a064b3 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x6952e465 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0196d1ff v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0ff2235c v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x144ee94c v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x256203f8 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x259d00f3 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2b53c34b v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2c1c68c2 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f47d71c 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 0x653eb540 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6eca1bbf 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 0x81973f6b v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x83752408 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fef33dd v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fe033d1 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa96ec9e4 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb228f390 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb3dfa15d v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb4a9ef5d v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb56cca41 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbeff07d0 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc0c9dca5 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcca1779d v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd14dff82 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xda24b3e2 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdd586bae v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfc2413ce v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfc90864c v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfdca23ef v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfde521e7 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x1ef1034f pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xcc4f38a6 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe009ad13 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x48575b28 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x76c45adf da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xaedd8aa4 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb818158a da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xeb6933b3 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf118b879 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xfe0a5eb3 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x53afbdc3 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x6f1786b6 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x78cda727 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x7e7bd0d8 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x8d8ba5c4 intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x038d7276 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2ae56b94 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x366d2743 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x825a5764 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x844a3555 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd30b2fe3 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd3af48f0 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xdfc54175 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x0fccac90 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x16678d8b lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x9dc5275c lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x14c586d8 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x234f9f5c lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2409baa2 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2495da4f lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8aaee0ae lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb82d1d27 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc194d8d3 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x1ec8d489 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x29fc6d03 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xf0d29f4e lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x027c8091 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x107375f9 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x50c93ed9 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa531f332 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd93a45a4 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xdea34655 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x37b62580 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x44e858d6 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6614b8a1 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x83d45a3e pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x98d8d09f pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xadfe39df pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb1c3a243 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xca7755d7 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd163601b pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf43bc060 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfede3bd8 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x23852be9 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xe9d513db pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8ee5fe12 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8ef7e0b3 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa18acb1e pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xeb8ec6c3 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf9fe779e 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 0x0cea8d39 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0e96e7cc rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x11e687a8 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2a8bec14 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2e654ac6 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x324944d8 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x36bf8a59 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x372ef0e6 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3d525312 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3db6d0e9 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x439cb8a5 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x51e96172 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5d0f3c45 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x62d74745 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x772fcc14 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x89972dac rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8a73a6dc rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8bc1dff4 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x929f157f rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x92d2ccbe rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa3541745 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb4082240 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe0a5b412 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xffe45160 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0993360d rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1b2fdc29 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x20382241 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x34990e53 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4c2ee57e rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x652804fb rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x73208008 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa6911f67 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xaefb3153 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb63ee585 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc0ab45d1 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xcfdfa300 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd53cadd7 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x23566740 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2455ace0 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x275986ae si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2ac04d72 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x331641ee si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3c690ef8 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x41985bb8 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x42689b21 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x43fb729a si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x55173afd si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x55be2147 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5b16713a si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5d71a8b1 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x60d0d7da si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x73ee4e94 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7480a7bd si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8036a798 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9c486578 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9d4201f2 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa5cefb32 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa696e38a si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa72a2fc3 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xab74359e si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xac106412 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xac581a44 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xacd268f2 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb62db5b2 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc8e6bda7 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xced727f9 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xda170b87 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe2e6d4e3 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xec7ad22b si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfbe0c4bb si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xffba97ac devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x07d9f04b sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x115956a8 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1b124e41 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6ededc4a sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7da54134 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x044956e4 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x885e90f4 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x90879fec am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xed2c635a am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x3d0c7416 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x751b5dd6 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xaa9dd307 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb179e400 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xbad40b48 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x21b327d2 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x34d869fb bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x5a4277a7 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xdccf3d40 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x0e2c4ece cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1f473a73 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9db54af8 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa0fabc70 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 0x12825bf2 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x51ac88dc enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6c708fc2 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7f57a665 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc7c1bdde enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc7d24cae enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd5ec8b0b enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xea9023bd enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1399f6c2 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x37bdbb98 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7eed77d4 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x88ca02a2 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x91e2c01c lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9f64cd7d lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbdbaec59 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc0bf27c0 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0b943575 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1f810a2d mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x21a72eec mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x23710a88 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x23f7c897 mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3ed86bc0 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4315143b mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4a9f8a75 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x52cf2870 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x582889dd mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5b819db2 __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5e8d3a6a mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6b033754 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x74590e00 mei_cldev_register_event_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9f72c151 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbce41f61 mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbd1d5bd3 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc3f5c59e mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcca34b25 mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcf34d74b mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd022a0b6 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd66af5d0 mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd7417727 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe02b1b90 mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe736529a mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe8dd0278 mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfc0a215c mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x325db079 cosm_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x3763a517 cosm_find_cdev_by_id +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x4883fabf cosm_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x5682b142 cosm_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x835c44d6 cosm_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x5b67fd23 mbus_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x811a4b51 mbus_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xd89fc821 mbus_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xfc9bf820 mbus_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x20390bfd scif_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0xdc889fa7 scif_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0xeb75610c scif_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0xf2056a32 scif_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x096946e4 scif_fence_signal +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x0bc90154 scif_fence_mark +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x1f3599ee scif_client_register +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x31f517c5 scif_get_node_ids +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x409e6cd0 scif_bind +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x4d8d5251 scif_poll +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x4dc1f8d8 scif_pin_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x67b80975 scif_vwriteto +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x70d7b376 scif_register_pinned_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x809fd5c1 scif_accept +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x884e6215 scif_readfrom +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x93965dd3 scif_listen +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x9b578171 scif_register +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x9b94f186 scif_unregister +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xa27556af scif_get_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xa90a39be scif_fence_wait +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xacb3a1dc scif_client_unregister +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xb3c3f52e scif_unpin_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xbc1dd1f8 scif_put_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xc4c7023f scif_writeto +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xd47f3988 scif_connect +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xdb895373 scif_send +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xef73fb5f scif_recv +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xfc16048f scif_vreadfrom +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xfcde2ab0 scif_open +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xffd79077 scif_close +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x95ea0797 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xbe92fb75 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0f6680ea vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1152e318 vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x13aa5a5d vmci_datagram_create_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1872c7af vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1a195863 vmci_context_get_priv_flags +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3ef56cd5 vmci_qpair_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 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 0x59eb0633 vmci_qpair_enquev +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 0xb35277ba 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 0xddc37a91 vmci_qpair_peekv +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 0x2846c1a9 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x356842ab sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x447865b0 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4700ac0e sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x51d4ccfd sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5f0fa901 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6058203a sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x83012d09 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x87f66472 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9ad5f4c6 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xadb2ae0d sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe6a0ef54 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf60af4e1 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xff6057b0 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1970f438 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x24d96f6f sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4cf7ac00 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x75ee6282 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb8f8b638 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc84b0cbf sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd3dc60bd sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd5705e40 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xfc721538 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x0183939a cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc3b493e4 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xfc9db60c cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2026557f cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5e741eaf cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd3df9af9 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x72ce427f cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x1ee1397e cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x97da28f3 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xd0426c60 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0389db6a mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x053f4178 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x09563f4b put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x117336d4 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x13ad6bd0 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1d1f1435 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x24ad20af mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x26d33969 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3329efa3 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3fa2d8d7 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3fe10666 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x42d5cf1f get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4f8ba2e7 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5323ef7b mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x55bece48 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x563995cd __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5d9737e0 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5ee08de9 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6d66aaa0 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x73890d51 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a167be1 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7e495a43 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8eeffbe8 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9008086b mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x921674dd mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9301d98a kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x95835516 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa3d913e3 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa9f6f206 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xab592de4 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf7b37d4 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7caa851 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbcd25251 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc6735fd4 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd1140f95 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd1565e17 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd55519d2 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd7152883 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xddfa0b8a mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe3951fd2 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf26ee998 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf4ba4f5d mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x40c37e9e del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xbb4006bc deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc4c7d1d1 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd24c9464 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd63b779f add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x5f601f5b nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xdbd5cfab nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xf003dc73 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x43ced9e1 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x9eb86d8a onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xd10255a1 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x049a0e38 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1bd4d38c ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x32ecc6a2 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3ea1eff7 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x52d2ff81 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x60295d23 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x74b18e76 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x93e3054b ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9c49cf36 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa918fee8 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbd34f47c ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc57d26da ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc65b5aad ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf032941b ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x945f0cab devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xe63d558d arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x56ee2d6b register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x60cf6057 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x72f4e064 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x90a1bd2f alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc9cf9320 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd3c39bb3 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x116ac138 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1d1a68f1 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1da80b18 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1f7dca49 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3940f1d1 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x45d8fe07 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x560efd5e safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x57dd0815 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5f68b9b0 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6e320a5b close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x70bc6ef1 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x80f2aa37 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa24548c0 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbb54bf5e can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbb8d0d4f can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc1d9ef3e alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcc9d7d34 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdf23ed44 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1477f96c free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x6743ff90 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x850c017b alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf887c36c unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x137cf072 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x841abd80 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x8ac2e56d alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd570c530 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x025f139a mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02dbd7c6 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x091ea0a7 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a51a7f2 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a5dbf3b mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b0aa6fe mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dedc50f mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fa7a0ce mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11cf9c68 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x123db5af mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x145907bf mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16172228 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x168c4407 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b6825c6 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ce99ae2 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e2b3e85 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e9531fc mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x203a28ed mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2282b58a mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x271b19c7 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29454a8a mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d738a18 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3154b049 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33ca3b4f mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36d6361a mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x373c007b mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37adffe5 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x381e4dbe mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38bf83dd mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39d00922 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a0510d7 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bda1ee9 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cf40aff mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e035410 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e56931f __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40f51739 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42936cb8 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4424d4e4 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ac0d852 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c4a796a mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c98f221 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d47fffd mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e02e4f3 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f1062c1 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f428a67 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5183f43a mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54cc7b40 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56ba3c9c mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5900bd3d mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a947296 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b4a3e00 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d12a598 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60f5b914 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x641dcd06 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67bb4d24 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a7810ea mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6afff935 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cf287ca mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cfd436b mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f9897d1 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f9d0d92 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x721b3e74 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x745a73b6 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x763275b2 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x782abf51 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a5b1c16 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a9da8bd mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e40dcca mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e937b06 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f71260b mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86c52fdd mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x878d6807 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x882c1bd6 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bda94b1 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fc85a6e mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9320f433 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93b9c082 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94720c7c mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95917490 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x985de4ff mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e309e69 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e47e602 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f301348 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0880cf5 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6bb5816 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7de67be mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa82a52a mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf8e6167 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb000f9b2 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb034ac00 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb14b2ba7 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb24ae60d mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb453d53c mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb485f51c mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba9bc4a7 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbec5d76 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbfff473 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe46efbc mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbecf6876 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfc39dff mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1749e86 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc21a3010 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2e32fad mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9f0e661 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca776824 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd10358d mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce24407f mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce378722 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda701c88 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda8ab521 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbb255a3 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde178cad mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde1fbe19 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf341f01 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe17e2e18 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3009b97 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4414b0a mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe50013f8 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xede9f2a7 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef8d2c0e mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2e4ad9d mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf52d09fe mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa96c036 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd80487d mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x015f017d mlx5_query_hca_vport_gid +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 0x0c632ce9 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18e834aa mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bd20942 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c765f76 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f9ac49a mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x256233a1 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25cc0de5 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d2be0e6 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3372e027 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33b01f2c mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3aefd662 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42f5147d mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c9d9d98 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f25912f mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bdfc300 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6eb6f8e5 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f8761fb mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fca0327 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72d248da mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77820499 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ae4230b mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8329cb10 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85088236 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89b21c3d mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c7cde34 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c91e184 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d959f66 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb907422a mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc15c7149 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc739e021 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca40e8ec mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd493c3cf mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6e17c7f mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbefdc73 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde616db9 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1243253 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe26066ef mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3602c0a mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ee4f7e mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7e3a6e3 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe80bcb93 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb050783 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9023071 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcd0f9fa mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x14093fd1 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 0x00419253 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x125dd76f stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd2dbfad7 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe7367920 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x51ab259c stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x711ebc4c stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbb3bb9b0 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbc839a4f stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x13e0382b cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1acdad7a cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2b926af1 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5edf54b7 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x80a55cfb cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x865dbf7b cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x86d81f6a cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x95a47c2b cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa41ae670 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb6a94265 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc4c58791 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd37f7ee9 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xee293379 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xfaee54b1 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xfd16abfe cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/geneve 0x1993f8e8 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0x8321b6f4 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5bb77d1a macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x60f98405 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x72085446 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe85606c1 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xae51851a macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x03e85dc1 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x06931abf bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x15e2d9ac bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x568ad3ad bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x831e0e2b bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9604c2e7 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa4268085 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb18f1bbe bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb2d892c5 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd54f94b2 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x766c4928 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7bd538fd usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb07402f1 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd8fa4035 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x552d378a cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x578b6b00 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x579adb4a cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6bec739d cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6fa83ffa cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x73cd228a cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8722d0db cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa279e9ac cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf8239856 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x35722c09 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3f9b3c26 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x45e350bd generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x96743931 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc11cd858 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd91e5cc1 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x151cd2c3 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2b483d2b usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f979fff usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3023950b usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f2c8146 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x40067e6d usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4284287b usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x43e88f0f usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4bd4e99e usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4e209ed3 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5d762c8b usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6c701b0b usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6caf947f usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x760e2a62 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7d202cb4 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8089cffd usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x86b35582 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x871c942d usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x91215bf0 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x92efe889 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x966efaf4 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xab700345 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb5d79e44 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbec48e3b usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc23b6065 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc2619411 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc3e6837b usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdb50cd62 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdbf63523 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdd3da6f3 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe908be3e usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xefafa374 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x66ecedd6 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xc325b0fd vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x002acf02 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x10f11a2f i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1beab082 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2dded212 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3bec1801 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3f377bed i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x40e8dc0b i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4fea0180 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6aa5fd0e i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x730415a0 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x766cda03 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x85617398 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb52dd742 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc9a43c55 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcf69983b i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfe230c2d i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x1f226e6b cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x59e0f29a cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x7c7a08c2 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xce1a984c cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x8b96cea7 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x73dcbabd _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x788910c6 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xc681c1ec il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xcb98a4e5 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xd4034205 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x077e5e98 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x20041bbf iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x26b7d9bf iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4c5070fd iwl_write8 +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 0x522b76d9 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5255ba4a iwl_parse_nvm_mcc_info +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 0x69559bb1 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7861f7c6 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7df888c7 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9307e59c __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x966668df 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 0xab5c8afe iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb76761af iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb8979af3 iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbbc6344d iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc046b93b __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc52e3fd1 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc97f5c0a __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdc7d2624 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdc83a424 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe9ad093d iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xec50bed1 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf1b30667 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf33aa95a iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf3a58f37 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf63e8579 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x05efddf9 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0fedad1f lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x126604cc lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3aa414c6 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x52b2389b lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x53a90af4 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x57ef632b lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x686ba980 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8dc34458 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x94f49c64 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa86d2d78 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb5553e52 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc13bd9b1 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc4421633 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdda727ce lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe0d95cdd lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2cd5ad5c lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x3165672a lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6b1631b5 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc1885eb2 __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 0xe9af1107 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xef03e8b8 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf16f8382 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf515a92a lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x04dc6ca2 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x07f61b43 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1309c8d3 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2c931213 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 0x36cb9aaa mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x472fdf6a mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x535d2193 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5855f6d1 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6248efc2 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x68ae94fb mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6f028899 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x79d3e797 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x80e4055e mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8e0e24c0 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9c99fe00 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa73cd118 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc613b282 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe0481409 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xeec27719 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3a702973 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x4d48d387 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x63b8cbd0 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xba10e1e6 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xbe091868 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xcc92410b p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd61e9175 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xdf8d1078 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf5353de4 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1c45aeb4 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x68c8c5b8 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa6204acc dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc102414f dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x19e644c9 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x216dcbdc rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x232790e5 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x37ebab17 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4b1a5a46 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x55a34738 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6155fff2 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x676579af rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6b377d6e 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 0x76a24859 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x77cae103 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7df22619 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7ff5aeaf rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8123b760 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8c232216 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8cdd1e88 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8f44a40c rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa57dae5a rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaa878eec rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc4261ddf rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc7108cda rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcbcd5e51 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd00d7d66 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd5a0531f rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7a2aaa4 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe4afd085 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfd8ae786 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e07c4c9 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 0x4f679bbd rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58b1d2c7 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5eaad22c rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f468f4b rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x709f46ad rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7cc32043 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8a646f69 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x981582c7 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaad3bda7 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb34210c6 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb4567fa3 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc657765f rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9e753d7 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc5b4c60 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdbd8b62c rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe84dd60f rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf901d6a6 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfeeaf418 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x098cc291 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x5dfeb670 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x69384237 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb5c001ba rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0143de9c rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0c1094be rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x16914316 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x198ab54e rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1ee5a730 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1fc25836 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x23698876 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x301b198e rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x317c9d90 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3751e02b rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x40c92f15 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x43c8d93e rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4bec3e73 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5cf97b92 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x64824dff rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x65f89083 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x66a7744a rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x74213c82 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x80441bfc rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8cf05443 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8f7cc6bd rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x939e43a9 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9febec07 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa15ab33e rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xabf65a2e rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb9b60990 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc635f666 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcc63257f rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcd4fc912 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd977c575 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdae09b6f rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdc76dcd0 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdddb2c72 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xded7ebec rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe0472113 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe8b6f2a3 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xecd30019 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf895e6fd rt2800_sta_add +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 0x3f08dbaf rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x543a201e rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x547eef40 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x590794ed rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x65e10b9a rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x8e49ace9 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x969f094f rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9add9344 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa045cda9 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbde04ef0 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbf532a8c rt2800mmio_init_queues +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 0xe2c149df rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe31529e4 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0a03d170 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0f2d76e3 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0fce4754 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1199ff67 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x19abffab rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2772220b rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2b0821bb rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x302f710b rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3722464b rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3fa13b3c rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x464396e3 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x49ad4e78 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x551b1a68 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5ea89fa7 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x612eda58 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x64cf0fd0 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x76010434 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7627cfc6 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x80ceb814 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x89063c00 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x99f38c07 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9ea54efe rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa09a741e rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa0eb58d3 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa3d0920b rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xac7d9d22 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb8b5af14 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb93b31af rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbb52954a rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbbb103ba rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbfe20adf rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc2180e98 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc31c787b rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc79c834a rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xca68ee17 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcdf20c00 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd6d24a8a rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd6e04b5b rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdb09cf3d rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdde7df84 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdfe3889f rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe12ed018 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe48ce2f7 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe5e88538 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe862c864 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfbdb50de rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x2c029444 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x8ac9b47e rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xa8a6eea8 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xb22bc3e5 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xdb65f02b rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x0d3cfafe rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xb71c0e94 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xc08017a3 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xedf6ad69 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0bb6eba1 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x158fa4d1 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1e33104e rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x505611d3 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x54f6a069 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6f98942a rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x79aba4e4 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7e7533ae rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x83e96f01 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x86e74959 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x96fc4594 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9b27cdc2 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa5c24957 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xacec8ce1 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xbf748ea2 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xec2b9f2e rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x065012d5 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x8e02f89b wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xee8f0b40 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x15337ff8 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x18035128 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x23fd18fd wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3572d3ac wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x369ec3f6 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3880d8b1 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x391ba4db wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3dc09f97 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3efa6ccd wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x45ee579c wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4b3db8a8 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4df33bc4 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e32eadf wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4feacc4e 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 0x5dc3ec09 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x617c4cdb wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x627fa0ea wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6cfdd430 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 0x7a57db29 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7aa82f5b wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7f5a29b4 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7ff48dd6 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8058010b wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x882b0605 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x89ee6200 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x939916b6 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x941014d1 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x99f91429 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9ac814ec wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9b76e38d wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9baed55c wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9d31ad1e wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4a39d5d wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa57198de wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa78bdea9 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae95fe64 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb956edf5 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc844b304 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcee803b1 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcfffd142 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd69c14c1 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe5f20b01 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xed61c11a wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf69329ec wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x22ca38e3 mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x573d5be6 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x57c3f422 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x389ad985 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8c03cb0a nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8c26955a nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xf3e5a87f nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x32854460 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4d8ff44d st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4dc1c328 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x749e583a st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa4ddfa39 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc50c1c52 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc7b131d0 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc9bf08e3 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 0x32a1cd7f ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x408f9c68 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7b9fcd9f 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 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x35fdd826 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x40513df6 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 0x646df988 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x697a57ce 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 0xbc2c2448 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xdc86f4b9 nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x34656c8e intel_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x6b5c090c intel_pinctrl_resume +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xaf5af1b2 intel_pinctrl_suspend +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xe041c237 intel_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x3be68e91 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x692c42a5 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 0x2b39ed51 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x3d8dacf5 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xe945aa5d pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x2ec0a343 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 0x3cd13db8 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x50a569c6 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x6c14695c mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0950ece7 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x359cdffc wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x75beb8cc wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7c191b0d wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x87f12ea1 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9fb6368b wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xa10c9856 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00dbfe2c cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x024157bd cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0aaa820e cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0dcd2a53 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x108c68c8 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x13ccfdea cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x15be00ae cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x29e92158 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3c19ca56 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3c68deb8 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x40bb8bcd cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x42f3a336 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x46f4d55a cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x48f53203 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x57172819 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x59010a72 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5d96ca11 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5dcf4829 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x62c295ae cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x63a358c9 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x646c42cf cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x650dced1 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6c4c16de cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6d303eed cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6fa797e3 cxgbi_sock_rcv_close_conn_rpl +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 0x8e130fe4 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8fc139ea cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x96a0e47f cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97a08083 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97a9b5b2 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c05ad78 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa2400743 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb2c8495b cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb8b897d8 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbfc11194 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcba56788 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcd61fa59 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcd74fbb5 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb845ffb cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdfab777c cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0bc4d89 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe4b3c6c2 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe549975d cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeb66fdcf cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf4bbec22 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf7df3c3b cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x09ba7814 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0bc03ff9 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0cc36a43 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x22ec4372 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3c91151e fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4019a1a9 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4227eb3e fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x476afb30 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x668ae61e fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7a5681cb fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7c8fc3f6 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xac65ed14 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb63b9681 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd1a7bc3a fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd89d8a06 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfe2f4cbc fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x367f04cc iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x48b447b6 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x48ed768b iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5416cdd2 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd6428a05 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe3b1c24b iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x097e3f41 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0de103a0 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x128b68b2 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13c12f5d iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16de1e16 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2d7d414b iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x334a8dc5 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x355e1222 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4637b6ac iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46f32ac2 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4726a826 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49e78c9f iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a6a958b iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d10cc16 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4ddf8d9f iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5392bea3 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x565eb5f8 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d4df1ba __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74d49e5b iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a93af3a iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ce341b1 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7df2a99b iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e6046a9 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8416eac6 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d0032ac iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x95bfc73e iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a179652 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa12b0ead iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa78cbab3 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xabed3dae iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xafaab78c iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb007cd62 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb13cb2c4 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb2ec0be3 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb70e8af4 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbdca521a iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe64064e iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe73b3dd5 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf25bec98 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf98842e3 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfeeb021f iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xffca4022 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x37857d2f iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3a75f2cd iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3f6501d2 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x552bdf0c iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6c5d84c0 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8125b613 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x87f76439 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8c31cb7d iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x982b5fb3 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa01fa555 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb9e4f3f4 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb9ee3974 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbd7b3e43 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc868d1fe iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf19d8855 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfa498933 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfaf56510 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x03198342 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x06a158e7 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x080f72bb sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x08d5f933 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0ec3e37b sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x161ba547 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x21961af1 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x264715ea sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x267bb48a sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2f31b16b sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3a6400bd sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x480d0a89 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x49826b7b sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x529f9c3e sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x539cef20 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6038b740 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x71ba4561 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fbb962f sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x91c58e26 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb85870e6 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd1cff832 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe09d5dae sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe1bb70d9 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xedbf0bab sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0768eabe iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b8b9356 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d047a2e iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d3d1e38 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1091d4a0 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1259d6a6 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ba41a6d iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e93252d iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x203ba3b3 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x210c4f48 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x37bfc54b iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b648bfd iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50146d89 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5153485c iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x51f5a9eb iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5327adde iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x553e5fc0 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57799c66 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f947759 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x627ea026 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 0x711ff788 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72737368 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72e7a620 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ba8cda9 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9267567b iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x99b26143 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9bb50218 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa708f81d iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb466266a iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc892a0e6 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcaa33cd4 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcbffd828 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce2d06de iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd639685b iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf8c8617 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xec6b594e iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf75f100d iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf97b4d4d iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfbb56f18 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff370648 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5ab42ea4 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x766641ae sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7af2a870 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7c8671e6 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x17a4ae67 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 0x09d61904 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x93e6848c srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa63beb64 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xae5862a6 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xbec414aa srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xea58d4e4 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x15008e8a ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x1521fb38 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2a0fad6f ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x462d1958 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x4dfd6384 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x5f414aa0 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x92bb8b5e ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x4c9f549b ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x596946c7 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x6881afc7 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7160254d ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7980676b ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7e8d47a2 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd56631a3 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x11e7a44f spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x68874f20 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xafa7098c spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd8190f7f spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe2fc129c spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0945119d dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xeb1e72ca dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf3631d45 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf72f0641 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x094ab9d0 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1b04513d spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x284103c9 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3b0ffe04 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3d6610e5 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4573ad66 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4d725e0a spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6706da1a spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6e50c9eb spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7db747ae spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9079b930 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa97f7fc8 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaf104c51 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb6fd5045 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb836be59 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbfc20278 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc26b5e87 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd58b7b3c spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x7488bccc ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x00634c83 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0d08e566 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2045f984 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x25c30722 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2fef967a comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x310b0b23 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x32f14858 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3371ef9c comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3ab3f309 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x42750ff3 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x54e36317 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x57084e82 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6c91e7cf comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x71de96b2 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x72e2b3c5 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x77ea69c6 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7ac2c945 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7b80fbc3 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x81f1f463 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8d7e6d5e comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9822beb0 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9b854b1c comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9ddc7807 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9fd05877 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa2baa136 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa3bd3cad comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xadf8e312 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaec639d2 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb6379a57 comedi_dio_insn_config +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 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdce48837 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xea664f72 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xeb223680 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xeeeb45f6 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xefb02513 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf6ef0052 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x26e8dfff comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x34e3c769 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x4357aae4 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5262bfd0 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6c420ac9 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x81612e4c comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa29a473e comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa5ebb459 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x120be6b6 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x5716cd2f comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x90499bd4 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x92c24e0a comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xa6cb4983 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xeae0fcb7 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xfd1461fd comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x1ec5f492 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x2eeb2427 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x38c8bc46 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x5c8f1fa6 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xa2b24383 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc7a99180 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 0xc2cd6baa addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xaf168509 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xfe254dbb amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xee7368c8 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1612888a comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x185ae04e comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1ae8e01e comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x216f4064 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x58be5fcf comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x62634f84 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7b5819d7 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9ebe48ec comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbe3d8e0b comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbf21e1c0 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc27ad2ff comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc2bc6c19 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfcf4e9f3 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x134d6d67 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x1c954561 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x38b31900 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 0xd5537e8d comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x8257f3cd das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x037518af mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2343f474 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4005ec13 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4b9c7827 mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4f2c5957 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x50690a8d mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6584a710 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x665456b5 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6b12d3a1 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6b1cae22 mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x74c69f0c mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x91bfb420 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x95774b97 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x998f37fb mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb0ba7c8e mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb149c161 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc49216f3 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc9f80d34 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf1b74049 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfac1baff mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfbed136d mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x229460e0 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x2d0d4958 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x093460f7 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x170ff5e1 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x30c91500 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x410fb2fb labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xbdcf3692 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x23a7ccb7 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x310ef2ad ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x32078c8d ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x4c57c034 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x61ff8136 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xaeed3331 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc0411682 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xdf8b7c23 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x764d0c2f ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x7a20f7d6 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9a3a11c5 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xc0588df3 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xee0ef7bc ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xee5ae0b3 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x0134f5b4 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x28e19643 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x51967abe comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9eec4429 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa3aa1cfa comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xcb3a482b comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe4ca5edc comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xf9800b7e adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x02c3716b most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0a034fd8 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1337a788 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x246233c4 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4f1eea86 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5ba8e43b most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5cfc074b most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x7159078b most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa4335b8f most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa809e9be channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd306503d most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf0656fb2 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/rdma/ipath/ib_ipath 0x1514b2b2 ipath_debug +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0043fba4 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x03c70c6f spk_synth_is_alive_restart +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 0x3060e274 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x56ccf627 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6ad1ed00 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6c933335 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7b46b1e5 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b3aeb81 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8cb515df 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 0xb015db54 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc9d5a472 spk_synth_is_alive_nop +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 0x0cb146e6 visorbus_registerdevnode +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0ec0434e visorchannel_zoneid +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x13c5572b visorbus_read_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 0x1e9b32a1 visorbus_register_visor_driver +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 0x3ae57cc2 visorbus_disable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x3ea04932 visorchipset_register_busdev +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4063ea9d visorchannel_signalqueue_slots_avail +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4c62864e visorbus_write_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 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 0x95e8bb56 visorchannel_debug +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 0xb5137d40 visorbus_enable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xbde70583 visorbus_unregister_visor_driver +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 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 0xfa800b1e visorbus_clear_channel +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x0d1a34e4 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x2b1a2afa int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x1084fc21 intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x12dbb6d1 intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xabd4d8fc intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xb391bd9a intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0xb0e67b0f uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xd66be3d6 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xef003331 __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x7cb45211 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xd144125b usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xba6a1067 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xc2fb7c9e ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x265523a4 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x43c0aae3 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9611115f ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd75eaef1 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe6ff1b9f ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf0b606d3 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x06ab30a7 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x07e1829e gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1f3e28a5 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3a0dc382 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4cf8647b gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8a0f1d40 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8b70f7b7 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9fec67d5 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa1fc6e40 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb2f3cfec gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd7d3d3fd gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdb80853f gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe096d39d gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfde91abe gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xff366b84 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x40ed271e gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x75acdd91 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 0x402be7bf ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x79252892 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xad87aeff ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x12e448b1 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 0x1cea63b8 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x24524aca 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 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2ef4e8c3 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x34f596c3 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 0x3eaf4bda 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 0x5ce29ecb 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 0x6e13ef1d fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x792fb0d3 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7b66445e fsg_show_file +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 0x8b2ff859 fsg_store_nofua +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 0xb11116db fsg_show_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 0xd4143849 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 0xd6b7679d fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe531cffc 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 0x2754243e rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2e27c798 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x49b6c5c4 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4a0af18f rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6978fed8 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8ee4a78a rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9155975a rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa42c2390 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbd596e9e rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc51cf315 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd812cca6 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe2d76c11 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe5d4deb4 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfaa5fae9 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfebac004 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x02791c98 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x060ab0a2 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0917539d usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x25fff8eb usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x28c61787 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2cd7262d usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3086e4f7 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3e20b44f usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4acacd9d usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4fae0898 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x55212b2a usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6bc29802 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6c6c3e77 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7135848b usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x71e60b3f usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x750b58ea usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7bc95161 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x86c03f29 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x883785db usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xafbca9bb usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbc51fa8b usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbe2e2517 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcbe2f06f usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcc4e26e5 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd659a09f usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdc6f8b72 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe438e98d usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xea941db7 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfb71cf6a unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc999ff8 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2babeaa6 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2ed1f6ba usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3bb14929 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3d248ec6 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x552a0f69 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x59d6899d usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5bfb39c0 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x780791f7 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 0xae832919 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb564854c usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc74c3c70 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcfd8bd74 usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe117a49a usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x452b9858 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x59d7c312 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2535b2a2 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x271154a9 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3739f087 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x46a31da7 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4790cb2f usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x536ccb4f usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x93b80f38 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf7aec4a5 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf9d6ebae usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x1430da4d 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 0xbeec07c5 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x29175f96 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0bb7c48c usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x22bbdc7b usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x23865bf9 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x46c1375a usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4ae34695 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6ecae8af usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7b06f269 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x867c7530 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8ca423f9 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa0c239a7 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa4ddb013 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa6523136 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa74663ef usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaa805fa8 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xabb9fab8 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaf3fe052 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbb821e5a usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbc854130 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc476b3bc usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd53fffbe usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf57ce2f5 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0b611d2e usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0de798fa usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x15b910dd 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 0x3039696e usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x38985be1 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x428fa862 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4d746620 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4e8b1956 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x56e16bee usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5a48c4a6 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5d0d77ef fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x63cbeeb3 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6bc014ae usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x89425ebb usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x95491db7 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9a1498cf usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9cb112f7 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa064cc39 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa44321c0 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa8dbb2d7 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd9f33760 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe89f17dc usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xef1d4a01 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xff6f0a88 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x109c2f37 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x259558a7 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4991e07f usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x502d3998 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6f7beb29 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fe8b3cd usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9c597c40 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa83cd543 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 0xd041fdd6 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdd8f83fb usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf5c3c040 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf879a03f usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x571c9607 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x57faf6bc __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x69bf2037 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x9d92eace wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x9eb56846 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa0b09a0d rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xbbdf4443 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 0x0f1c2d40 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1f2679ca wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x41ba3c80 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x558cc5c6 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x65dfe7d2 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x693c9b5c wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7a30e959 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x96e33ae5 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x99936781 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa6fb00dd wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc31ad96a wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd15f1994 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xec9ed1ca wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf8b96883 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x3f1e8c6e i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x880adf8c i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xf60be96d i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x0bd22f8a umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2d223779 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x34e1698c umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x51e9e04a umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x54d3e322 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x7d7b24be umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb995ce49 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xbfaaed74 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x02ea7a2e uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x038a7d3e uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x05caafb2 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x09f8f184 uwb_rc_neh_error +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 0x119ffdb1 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x155f0c9c uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2368e02d uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x24312820 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x30181995 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x33bef28a uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3f4aede6 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x436be9d7 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4a7e2d62 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4a96cc10 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x51f4e235 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x64ca3ce7 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x691f228c uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6d0a3463 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6ddd87b1 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7279aff0 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x77ea7a50 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x86c5611b uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8932d6b1 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8ec043f3 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8fa4fee4 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9d5d3cd3 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa2f90bf9 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb1ceaf98 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb3367b14 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb6e188cf uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb779e721 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb8edf0f2 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc47e30de uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xda69b2f9 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe35c4024 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe3fa19f2 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe6565219 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xb1e85029 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x061d235b vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x53d24b3e vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9c15c31f vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb79e771f 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 0xd9122cbb vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe041618e vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf7d02482 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x7902b179 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xbd2f5699 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e589a7f vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0f176a3e vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x198b755e vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x26639ec9 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x271ab2de vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2e16c635 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x39f935c9 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3db50d52 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4056d793 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb96f77 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4df839ae vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5e2b54b1 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6a647e6a vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6c73bc14 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6f02ed7f vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x76b70709 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x80075894 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x843a901f vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8f046b8c vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x98c6c1f2 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaa97309b vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xca3bd279 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xca410579 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcbfe10a9 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xceb764ad vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd5d49648 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdf090605 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf00f6f23 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfa1e88a3 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfbc2a870 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 0x01ff342f ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x02e6ffc6 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x03b821ca ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2eff757c ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd715af4c ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xebda678e ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfcfe4f38 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1de1e790 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x23c4f98c auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x27672fb3 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x76caa219 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x789e7555 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8229e64e auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x90cb6285 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb4180d80 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb9b15712 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xbf598d74 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xa978a5ab fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x4eff3115 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x92e854a9 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x551963c7 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xe2692151 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 0x2d8f40fc viafb_find_i2c_adapter +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 0x09be24af w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5838ac56 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xaf42ddf6 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc1242a94 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc2c29229 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xdf1e9b6b w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe7761d7f w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xec910bb9 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf82040ab w1_touch_block +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xa491484d xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x329b539d dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4849e7ae dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x6802d0a2 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 0x049fdcd0 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3cb3906a nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9b8121cc nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xafd60262 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbc8c1731 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc4a6c150 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf59ef220 nlmclnt_done +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x035985d1 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04aa864a nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x054fb4b4 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x062d9a66 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x081ea207 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0824cfa2 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c190d89 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c80aa0a nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e5367b1 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e9cced0 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11ec3959 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12ddf376 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x146c400e nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x149e2d20 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x160ef02a nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x179c3df7 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17bf727e nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17ca6a28 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18610803 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a951fd6 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e439abf nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f0ba234 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f334fb4 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21bc4fe5 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x231bccc3 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x246bc645 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26a8be8e nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x279ca1a1 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27bac048 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29995955 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29a860cd nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36e53810 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x375d9b3e nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37ed7804 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bf1f952 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c4f7a86 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d773f6b 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 0x42d062a6 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44619baf nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45831775 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a48b613 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ca2d280 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d0cc2e0 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4da7ad17 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50e52260 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53c7b0f9 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x578290a6 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cac11db nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d1da7e9 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61c76469 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63c7bb75 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x649af22c nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x675800cd nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6906b241 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b4490ed nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c7b830e nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cb815d6 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x701348a2 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79791637 nfs_fscache_open_file +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 0x7dcf2001 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8086d1cf nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83dc04b9 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x850faa3d nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85f53725 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8710e197 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x872d5524 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89870db5 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ab4b18f nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8aca591e nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bf71bd6 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c00b679 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8eb8c1ae nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f6defd6 nfs_alloc_server +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 0x933b6866 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95c7ac70 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x989e3fd1 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99ee5eca nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f16ce71 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fc770aa nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0a47517 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa117b501 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2b64640 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4a02205 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4f6bc40 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6b722c9 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9ce42fe nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaac60097 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab929e35 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac8e703d nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad19bd1e nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad8a2b01 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1d79e22 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4ce691f nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb58f22e3 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8761edf nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9646231 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba326c0e nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc56935f nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc9d1596 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc08f7b97 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ae17ac nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8acce89 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcca33106 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd667571 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd811c7b nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce36a151 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce6678b5 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd13906e1 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4a3a922 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc28a2e4 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0574249 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe42561c9 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe559f39f nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea3b627c nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea3c0957 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeebe5dc7 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefe12a7d nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1090a66 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2b43575 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3fa2f42 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7a370cc unregister_nfs_version +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 0xfd06bd01 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe2be2b7 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xb2f3122d nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0193145d pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x024e8a3b nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b2d56e9 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 0x1ba2e95b nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22b4739d pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22fde269 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c2163a4 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34f510a0 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35416aeb pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x365558d8 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3dd9e7a9 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4056e644 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45538455 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x477d8a2d nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b75e175 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e765d9a nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54f43f89 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5dc2c35e pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x638c150f pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64d56cad pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ae73a94 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6df31659 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ff468c7 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76ba139b nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c265eb4 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d9b70a5 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x810a8d3e nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85be2544 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8dc5e243 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9255af45 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95070431 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9bce88c8 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e65e637 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2a4c10b nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae92c7d2 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaea66539 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb55b6a93 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb89089d5 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8f6c0bf pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbdfdae08 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1e4ee79 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd807deb pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf65992c pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd22a54d4 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2df3ffe pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd32dc9db nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd873b7b2 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9ce19e0 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda4d6cfe nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde1e4d0e nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1f83ff2 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe25ec74f pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe2b9844c pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe68c6bfe pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe742aeb4 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7b7be2d nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec6299fb pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeeeaf952 nfs4_schedule_stateid_recovery +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 0x7535b3ff opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x84dc3b1e locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xb07bf089 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x21611e4c nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xef0341d3 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b74f5e5 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x39aaced3 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a813268 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x76735959 o2nm_node_get +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 0xb9c91c13 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb9f65e2e o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd9d13fc7 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 0x43011c45 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x54bb3c77 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6686ceb5 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a462811 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7ff966c2 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 0xdd3f76f5 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0dd169c4 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x58d22e3a ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc7260236 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x357007b7 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 0x60f898d4 _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 0xb603ed72 _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 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 0x5fe10b1a notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xdadf4de0 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 0x4cff4675 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xc09aaa2b lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x308f9238 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x53914ba3 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x75e57a54 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xd6e578a9 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xe9cd36ed garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xf817c172 garp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x0db56d6b mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x481beb10 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x552c227a mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x65721f01 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xba6729bb mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xe005d500 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x3994fade stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xc9af902c stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x4faf5394 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xfe02946d 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 0x1cd88b01 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 0x0ddf5ccd l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1f996ef6 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x23787221 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2830e006 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x59416e94 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6cf79f9e l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x787074ee l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xce5a5916 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5807a7a6 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x68e3fefd br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x97ebac4f br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9a8ddc1b br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdc68cc29 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xed89d804 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf7a4e000 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfc2bd53a br_deliver +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x49b82cbe nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xf66ea4ff nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x01dead0e dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0d54b943 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x10e89517 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x16796310 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x22f45fe9 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23672cd0 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x24e707c5 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x29e5eec0 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2ee30aa4 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3b409109 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3cdcca95 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3dfad3a0 dccp_close +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 0x551a618f dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59fbfdac compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7cdb0d66 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x873fd095 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8b034b1d dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8be38bc7 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x93f38cc0 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x94901726 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x98d73b9f dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa3a8bea4 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa454ddb5 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa462f78f dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa68d2b1a dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xce21daa2 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf1dcf16 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf24fa18 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd077485e dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd9fb9f47 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdad93058 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xea937ab3 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeb937763 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf85c86e0 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x087f2910 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x18b816fc dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x19721170 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x40c14db6 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9e134388 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xeb5cbfef dccp_v4_send_check +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x059d49b5 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6d7926e6 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x834cff67 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x89bd3866 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ipv4/gre 0x7aba811c gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xe66b2f8d gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x07c6285b inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2bd75993 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x32f8f305 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4b6c1cbc inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbde8f259 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcf717c6e inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xc9e92073 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x03df5919 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x12adbbc8 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x538999b5 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x61c3dfbe ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x68d82d51 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x715ebe8f ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7a2939f9 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9334ddb7 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x950fc619 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc1776741 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc9ec42e1 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd2ca7fa5 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdca53d3e ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe31c66a0 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf2ecad6f ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xda3adb2a arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xc92e97bd 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 0x29a3785d nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x000b80db nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x474e1a1d nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xb9ab2f56 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xdf508520 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xfdea439f 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 0x74ece501 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 0x04b4bbef nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x483d6140 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x60f37b61 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x91fdd725 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdeeb1813 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x70d6bddc nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2bda13fd tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3129d4fd tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x759ddd89 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb7f4888a tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbeb0946a tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2b070e7a udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7d64c998 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb070be37 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd3dc1011 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x01c25712 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0fcb3d4b ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x72e1bb90 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x84c335a6 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb5c50a0d ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc74ce3bb ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd603277c ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x7c0f8694 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xb416b06d udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x410c9dc7 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x29e0138f nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x353a2055 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 0xf2a2212f nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x6236b2ad nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x6d004e5d nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x976dafc0 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xbf3ab8c8 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xfd0e9f50 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 0x6551415a nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4a4d4867 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7aa7a62b nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x80e569c7 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf46a17ea nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfe37f271 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x6ecd5af0 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x260c2d42 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x378f06e4 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3b5cc17b l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3d54308a __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x40d27c20 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4176ad2e l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x44bf75dc l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x58d08d0c l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7104146c l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xad2c78a5 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb39a7a91 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc53ca3f2 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc6149b2d l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd565451b l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe14732a5 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf31021fb l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x1d60df32 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x021ee1d3 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x062c059f ieee80211_iterate_interfaces +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 0x261638d8 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2a94a46b ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x36d34f9c ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3b791e9d ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3efafc83 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59f39c5b ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6c2bc5d2 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7be4b100 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x837a96f2 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa215ee9d wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb0ebdc70 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd218adc2 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe63e226a ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x236e53d6 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8fd45343 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9d97bc1d mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xae6ae885 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0299e990 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0a9bae2c ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x23ae2b27 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3464ffeb ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x563269f3 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6c5d40b9 ip_set_get_ip4_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 0x854e4089 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x97c4f3b9 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 0xaa3298dc ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb11075de ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd62ce927 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd67a1384 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe8c9f931 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xec08591b ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf510438a ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfa81fbc9 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x5c764ed8 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc8c16e5c unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xebe18a4a ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xfdd42564 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x047b7e22 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07d90685 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a2eadaa nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d4090ad nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10842027 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1290bb1c nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16491b86 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x168c839d nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x172d980a nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c7b829b nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24bae11f nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x251bfa88 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26b6831c nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x290b7a47 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cf73ed1 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d695f61 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ef03924 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33194063 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3367b215 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x393cdc75 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3bc92dc4 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fe76b37 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40374bb0 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45d77115 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4851b264 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4bc763c6 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e85dfbf nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5013c8d0 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x531001f0 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x549a1496 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x555b5f47 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57b81a97 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x667a36a3 nf_connlabel_set +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 0x6df34845 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70f23385 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x723cc010 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x725ef017 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73dc6559 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x741f4e0e nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7743eb7f 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 0x795e92a1 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f91561d __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87b475be nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89324019 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89d36635 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94ef1b11 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95ca2866 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cff0b6e nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9fec40ec nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa134ebe6 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa326da31 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3b20be6 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa515dde7 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa544d823 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7237919 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7e170fe __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xabe696a2 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad027669 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb323fb81 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3b96fb0 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4798651 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7b0c085 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbea9e012 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc02f31b7 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0d9050c nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc17b0012 nf_ct_iterate_cleanup +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 0xc416b449 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc481b4ff __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4bcc651 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8a93cfc nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7a04cb8 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc10130d nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2f5accb nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4472394 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4049213 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6f201b5 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8563736 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd122f65 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xfeee1b94 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xa3e29a7b nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x5e22a035 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x06e0f541 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2fed9c60 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x39152596 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x49fa7728 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x70258ebe nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x758b8460 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8ed093c0 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa26af71b nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa94a4d80 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdc2a8ad6 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xc79d1b3e nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0c678825 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4e3a965d nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb16166a4 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe7ebb905 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xe89bdbfa nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xf4c14b51 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x24b6f7b0 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2f94c6e0 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x410df199 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x438d318c nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5864b995 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe2e030d2 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf87b4605 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x396e9e9a nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x07ff013f nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x2ef77913 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x608276ba nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x6949eb64 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xa244014b 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 0x158c144b nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3242bef2 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3865e1a1 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5463f092 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x729caddc nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x875319c3 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcda369fb nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe5c19fbe nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xffff46bf nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x8f7ca20f nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xd68ac080 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 0x6ecf47ec 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 0xd95f34fa synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x072cbaed nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x15628d3d nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x285e99e5 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3477a750 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x64bf9614 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x79fda457 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x84fa989b nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x89cff98e nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa1a966c8 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa68b8d13 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa76f4d9b nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xad780420 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb7079b18 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 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdbecea9b nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xec2b15fe nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc51e4e3 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfd68f8b5 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x008886ef nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x058cf006 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x969e0b06 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc6e99f8f nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc8db8cbe nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe89ebead nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfd122a07 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x0cbccfa4 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x25f49c6f nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd0599dad nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xb35c3eb9 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x60349337 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x72ae6c83 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xd461bfaa nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x2444cdd0 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x5ce5e4f9 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7dd80308 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x9610b217 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x99d8840f nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xa154e32a nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x3d8cbf8d nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xec6daf96 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xf1fa0db1 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7b7b40d4 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7cc7ab99 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 0x0a80cb62 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x141c7abe xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x14a6fb3f xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x25ed2909 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2b176fd2 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x43433ed8 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4f98f584 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x578d885a xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6199a0a8 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x672f64e5 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6cb7939d xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x78790a8e xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x78b3d32b xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x93207893 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9a02284c xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xae15889e xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xae3cbe53 xt_replace_table +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 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfaee98cd xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfcec20f8 xt_request_find_match +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 0x16bef140 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1a4f6f44 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x521ec861 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x1c02c8ab nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x369b5694 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xc73f939d nci_uart_set_config +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x37dbe568 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3b799dab ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x798be73d ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x908171f5 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xad289c59 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc3511baa __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd4c32e03 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xde7ac42d ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xffb768c1 ovs_vport_receive +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x016afd12 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x02d4872b rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x0567c5b0 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x0d9b7a0b 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 0x313c3847 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x3423d965 rds_for_each_conn_info +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 0x5fee4670 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x62a99c30 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x64ae4d59 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x6918c7cf rds_info_register_func +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 0x89554e6d rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x89bd582a rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x937df936 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xa7f2d75d rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0xb1da043c rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xb3752631 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xb3bae898 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xb60384da rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xbaeaaa19 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xcc9c2ed4 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xe2f58f86 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xe632cc74 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xf1b8b1d2 rds_trans_register +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x43e6401b rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xeb4146d2 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 0x358fe84e svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4cc40bfa gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8bf98bbd 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 0x0073aa2d svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x013685d8 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x026d87d2 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03922be6 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04204e99 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0592faba 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 0x07509409 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0860992a rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a42026c rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b6c3da9 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bd74d7a xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfa2267 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c55217e rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c658399 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dffe736 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0edfa31f svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f5276f9 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fb66446 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10c45a0b rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10c5bcb8 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x120f7b78 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1269a709 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12f5267b put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1484d5b7 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x150ad7c5 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15d3d5e3 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x167be886 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16c75ae7 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16cafd88 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1816ab18 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x182f002e xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a7f9aec svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b94bec8 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fa3c801 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22243c8b __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23900d28 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x253a8df4 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25fdd623 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27f43d35 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x280966db xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28d1284b svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28ec1ba4 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29e95395 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b469314 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bcd4d3c rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ca6b5d7 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d9cf3c2 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ed41377 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ee962e7 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f16c515 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f3668a8 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31698b0a rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x319c287f xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31f342e1 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3228be29 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32e3b20c rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x351ecbf2 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x365055a0 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36e96c8e svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37b7225f rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3875c80b rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c46572e rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e25ca7b svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e881dd4 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4133d5a9 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41e2d3f9 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42db0c8d _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453325f0 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47f15e79 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49863344 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49bd67c6 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bb7f0a3 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f423751 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f88db56 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50ba795d svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52a12be8 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53acd77e svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5845103d rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b74122f svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c170782 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c8fd4f1 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cddfcd4 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d747e46 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f6f3f97 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6067bd3d xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60c8d32d rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6228a055 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62bb8efb rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62f255d1 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x646df958 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6776c7e7 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67c6cc75 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x695a3bf8 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cd089fe xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ebafed9 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7179c5b8 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72e2a5b7 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72eeb726 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72f5ef33 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76555dfe rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7670383a rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x778e06d0 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77cd0d3b cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7965ae74 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b71b0d5 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e3d6b67 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f2f18e4 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f7b6457 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fafb231 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fdd8bf4 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fe716c7 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x818e71a8 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81a53d64 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82506c05 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82cb2212 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x892df20d svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b8c6a2b rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d6a5d51 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dbbb915 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e381ca3 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e3ee8f4 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ff02320 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x905620fd sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90c62946 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95bcd325 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95e2f795 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9631410a rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x972fc1a0 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x988e623e xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x990b90d1 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a90a134 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e33c26b xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa097301f cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6a5e228 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa78b9899 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa797908e svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab6d16c9 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab89052f xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabb21c3c svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac206b98 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadaa5b38 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb04ef730 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2c6f051 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb31aa3e0 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3d0a2b9 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4991ee8 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb74ba500 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7e632ed rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb943262e svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb984d51d rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ff9cb3 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcd1d0fd xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfc3feea rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0799be8 rpc_wake_up_queued_task +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 0xc3e28b09 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4e4a1af rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5d83cd2 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc82863d3 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb6aa5c8 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc0b209d rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd75b9ee xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce8ab320 rpcauth_cred_key_to_expire +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 0xd2abca89 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2e263d2 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd309ed29 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3d60739 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5b15785 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd72a99e1 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdce9fa59 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde0e6a70 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1d6a508 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe297ec9d xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3128ab9 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe32b12f0 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6712509 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7189b16 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8025bd2 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe855fde5 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9908b22 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec92593a rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed50dd11 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee1ebc99 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeec139d5 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeed27f32 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0ab8f33 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2c5a605 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6f09c35 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7147093 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf77fa183 svc_authenticate +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 0xfb043e0d xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbe18745 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc31efcf xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc3465a0 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc72bba8 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd6ce190 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfec892bd rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0252ce53 vsock_stream_has_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 0x17e57242 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x32617190 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x38343645 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3cfd6e7f vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3f4a816a __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4c614664 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x51d6d086 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7637fc9d vsock_stream_has_space +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 0xa9106297 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbbf15630 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc54cb1b6 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfb92b7da __vsock_create +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1a82b374 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x3156f038 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x481a9517 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x562588e5 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5b25c744 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7912a410 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x96ba6dae wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x980bff7a wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc3a6b29f wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc69d2b8d wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd3d9fff9 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd4d57b30 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xfad54701 wimax_dev_add +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0d13c2d4 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x18066231 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1eff06fe cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x54fb7997 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5ab09baf cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8496ffc4 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xaa70e85f cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xafd14c2f cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xba830cf7 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcddc4903 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdb4d7dc8 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf4ca970b cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfb43f868 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 0x4a01e0c5 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7a1d966f ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x86c9a008 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd23d7704 ipcomp_input +EXPORT_SYMBOL_GPL sound/ac97_bus 0x354ee5fe snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x3a18d6dd __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xa76985d4 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd 0x039b15a7 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x35c33acd snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x446b8ca8 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x68af4cae snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x7ffb85fb snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xa01b0570 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xf072ea87 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x0ffabf58 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x43a09db4 snd_compress_deregister +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xac16e45e 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 0x0bf91179 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x21dab13e _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x21fc5af4 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2f761bc4 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4287c4e1 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x711a7bbc snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x875806cb 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 0xe140dfea snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfa3cbbb8 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x33a4b83e snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x429e18dc snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5193322a snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6ce5af09 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8b06f392 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x91f77b8e snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb18ca181 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xda814e2f snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe3bc2a45 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfb943df1 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfbc8e1de snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x03bc5f80 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2841b4d2 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2cb71de5 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x93934ceb amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc60cef5d amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf36d39c2 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf67ceff3 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x023bf5bd snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0c5ae6e7 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x16f2ee69 snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1bbec7cb snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1cadf28f snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1f469d2b snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x22e04979 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x29cb1752 snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2e3602c7 snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x34f8a89b snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3b8138db snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x43aa2b68 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x48ef9d91 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4c4f0a87 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4c7e2ccf snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x50269fc5 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x521f45fc snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x68ae1bef snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8595ba9c snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x891453c5 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9acfd091 snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa4645455 snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa95ce2b1 snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaa937518 snd_hdac_ext_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb3259eb5 snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb385a65e snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc72be8ba snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcb01074e snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe41375fc snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe58c06db snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe7ee0865 snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf972065b snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x045a3194 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0671addb snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08ff4047 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1286f6e4 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x151e5ff9 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1bf899d2 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c1f53ce snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d1a9079 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ea2611a snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x205692b7 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ab71203 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2fa4f336 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x387783b8 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e414e6b snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f7ce57a snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x400e6aba snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x401cccdd snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a58912c snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x52d663ff snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x554265e4 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x567fc666 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56d4f69c snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5cf6ff8d snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d7ee32e snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66d64b89 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c621b41 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71ced709 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73187668 snd_hdac_i915_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74b0ef58 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a259fb6 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7bf71ec1 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f54a6a2 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fd9de0e snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a8dc8d4 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ade84e3 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c7e4701 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94748eac snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9482491e snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99e57ffe snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9dbb8289 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9dc01558 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3084182 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa342f20f snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7d7c484 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa80ffbff snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8238063 snd_hdac_i915_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf70766b snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf72d2e4 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb6a5a307 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb71bc719 snd_hdac_get_display_clk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc21bfb0 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc12a0bcb snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc19ff8e4 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc26a49cf snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6bbec7d snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc86faab8 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca472fb5 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd9c289e snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcfb241d9 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1e2a4e6 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4f65ce4 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd624a220 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7ba7311 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9fc9f3a snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdfa69d08 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdfe384b0 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0637f5c snd_hdac_i915_init_bpo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2dcee82 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4a82841 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea69f941 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec58742a snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf51f1a61 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf69cb164 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf894ef7a snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfbdc2d8e snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfcb9fd0e snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfcfc00c0 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe26723f snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1ae31916 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3050a847 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x850ff464 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa356738b snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xdc820176 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xec13c260 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00f2afa4 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0273c041 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0296c8ef __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03b00900 _snd_hda_set_pin_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 0x0751676a azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e249d65 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15144d83 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x159c5683 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15bbf245 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17117bac snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17954958 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ac556c9 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b8277ce snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e56d244 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e9bdf21 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f676f14 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20346ee6 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x206ca85a snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20f4358d snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x211feaa0 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24220fb5 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x245de350 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2697c430 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26e5c30b snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28b6fe60 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e729466 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3182ad8d snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x341e0132 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34bab7d8 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36763dd6 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 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x390c59d4 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c847d6f snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3fd64f22 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41c8dbcf snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4279b7ea snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4455c02c snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46d312ae __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49663ea6 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e8e5d75 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50b82a38 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53862cc7 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58084b6a snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x582f5ae1 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d8bdacd snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61ad7dd8 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x680a2e89 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68c198b4 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69f155ba snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b7fd598 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6caa2741 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cbfd279 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x740b6918 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x815f6d2f snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81b21bde snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82537bef snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8416aea7 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84afd65e snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8871d9f1 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d834601 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8efdf86b azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8febdb3b snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90d7de74 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9300b1e8 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94130ab1 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x974c6b4d snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9af9e9af snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c1c7485 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cb36390 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9da6ea92 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa810060b snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa7f7363 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab131235 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab6a26f6 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xabb76abe snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafd7cfb8 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb25daec1 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4cfa8bc snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7faee7b azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb892eb2c snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9b3be35 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba644232 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbca03c6b hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc398caba snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc51c0de0 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc57ed5ed query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc88af9d1 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc907c7b1 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9398b98 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb63d464 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcdb3e2a7 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce6e7397 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfed8cc2 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0d6bf67 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2592974 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3787c6d snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4dfcac1 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd65f731a snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd692fd3c snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb08e076 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbf70bf7 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd4ba700 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe429068f snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7a47ecf snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9ead98e snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeacb0f5a snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebea5a43 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed253203 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 0xef887574 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf032aaa2 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5156b08 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6b35496 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf733c01e snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8b15452 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8f621dd snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfadfbb91 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb740022 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc935cf1 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc94dfdd snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfca0d32c snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfcaf7ed7 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdd6004c snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfeaffd1a snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffac9cbf snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffcec975 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x01ff4a13 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2450cbc3 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x29327291 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3e00252f snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4ffee887 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x509fbb13 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x54f83edc snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5cff1ef0 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x65fd1714 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x686cdf85 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6aeb968d 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 0x9ac248a8 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xabdb9754 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaeeb4af5 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd9ba3809 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe7ea6e4c snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeb1f5de8 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xec7a0a50 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf48b8be0 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf5e47393 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfece721b snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x377db7db cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xb093a2f4 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 0xc24e72b8 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xfc96df74 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x1c04d5cf cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x9c208c16 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x9e6fdfb2 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xa74e6067 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xb755f269 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x73e4d647 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x28a351f2 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x904b92d8 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd1e49527 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf98b3416 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 0x4c2c0883 rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xb9a70fec rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x69756fd4 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xd8b89a15 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x06684965 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x266ce95a rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xd3911aae rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xf4952728 rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5f155692 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xaf63b9f6 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe32312bb devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf10f7113 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xfa256edc sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x6559eff4 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x1b3651fc ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x74348be6 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x33b769a2 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x791308ec tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x7c98f49f ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x02f58c30 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x104bfe6a wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7f99a3d5 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x83919fad wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x4759ec5d wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x707a86e3 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xac897202 fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xb1f22f99 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 0x7afc58d6 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0xb467b8dc sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x08f1b7c2 sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x2904117f sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x40c0a29a sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x80f9eb6d 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 0xb9e6dc0b sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x012706ba sst_byt_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x1104ee78 sst_byt_dsp_suspend_late +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x703f77bf sst_byt_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x79911357 sst_byt_dsp_wait_for_ready +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xc584489f sst_byt_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x07a6e2fb sst_dsp_dump +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x133be52a sst_fw_reload +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 0x1d4a3ffd sst_mem_block_register +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2e2aeda4 sst_module_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2f0afd2c sst_module_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x32a7ee8e sst_module_runtime_restore +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x343ac62d sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x354404ac sst_dsp_ipc_msg_rx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x366aa5c0 sst_dsp_stall +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3917bf01 sst_dsp_shim_update_bits64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x454c84c1 sst_dsp_shim_update_bits64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x45984af7 sst_dsp_get_offset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x48c2a1ec sst_fw_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x492d0818 sst_dsp_new +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 0x4ebc0470 sst_module_runtime_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x509b7ef7 sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5495938c sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x576dcaeb sst_dsp_dma_copyfrom +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5992a753 sst_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5d2aeb7a sst_dsp_shim_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6491a068 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x71fdf54b sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x746b454b sst_module_runtime_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7930f0c5 sst_dsp_shim_read64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7b973ee1 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7bb46618 sst_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x84910695 sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x84d5887c sst_dsp_ipc_msg_tx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x86a0e19c sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x89a531e8 sst_module_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8b264d2f sst_block_free_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8e6b555a sst_module_runtime_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9362d0f6 sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9491f399 sst_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9d6b481a sst_memcpy_fromio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9dcd71ed sst_block_alloc_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa0a9348c sst_dsp_dma_copyto +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xab2a4899 sst_fw_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xac8d566e sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb2377bb3 sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb39e1997 sst_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb3cd1d63 sst_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb5f77e0d sst_dsp_shim_write64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb64e683b sst_module_runtime_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbcec5387 sst_shim32_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbe243b7c sst_fw_unload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc2cc0dc0 sst_module_runtime_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcc275d2b sst_module_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd6972d43 sst_memcpy_toio_32 +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 0xd9b39dbb sst_dsp_dma_put_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdb3d6acd sst_module_runtime_save +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdb6d57bc sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe7464afb sst_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe83f9820 sst_module_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe86c0592 sst_fw_free_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe9fe292d sst_dsp_reset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xee437870 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf0c7d2bc sst_dsp_dma_get_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf5fd3ac1 sst_dsp_shim_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf994030a sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfb356a7e sst_mem_block_unregister_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x0ab449a8 sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x0cfa0601 sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x1827cdd2 sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x45fce8c8 sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xacafa33a sst_ipc_drop_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xcdad32a0 sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xd3427a5d sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x0dabb13d 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 0xe06fd743 sst_hsw_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x205a5ce9 skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x2a3ef481 skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x31891400 skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x45970c52 skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x48a47364 skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x67999097 skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x8bb9e63d is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x923f255b skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xae9b0278 skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xb5d72376 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xbc5e9f3c skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xcb5091e0 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xdad1f514 skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xecd6efab skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xfc5472d9 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01407d48 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0295a710 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0361b6ae snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0388f590 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03bd7b90 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07029b06 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07a8a2e1 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07df9755 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08a2f7ac snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fa89ca8 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14e9ffe6 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1522ab60 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x170b6252 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x197c2811 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1999b29d snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f41f978 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20d63418 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2122c8b2 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x217830dd snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21fd9dcc snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22ae8421 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x242d25bb snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25602a79 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25a81161 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25d851f8 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28968847 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b6df7ee snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bf8a7d6 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c1bcb42 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c3d845f snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c46b1f3 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d92c75d snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e091cda devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e8ff0bf snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ec9612e snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f314112 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31be1598 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3300d758 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x332b60fe snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3331b72f snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35aa46ef snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38ee240f snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d0264d1 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d6814ad snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d772df7 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e5f3cd9 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3efa53e1 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40575184 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41d85357 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4316b1ec snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x435147e7 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x447cd6c8 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44ac6b65 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b740e2c snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b97a5d2 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d3aca08 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x513ed8f7 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52a3da04 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x535d7d9c snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53855f76 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54043e92 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54b08c23 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54be4653 snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x551d4914 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x578e528c snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57925bff snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x585006a9 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a706b7a snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cc61417 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e8cab09 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60bc2158 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65a09e07 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65e0d197 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6638b8d0 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67c1f6d3 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6931d235 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f7b8a2c snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x709ad160 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x713594a7 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74598e3b snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74d1173c snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c160013 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d575478 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e5087d1 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7edf259d snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x885b057f snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x897c4f73 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ac66a83 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b42e75d snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f25581f snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90d7401b snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96766adf snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x969cab02 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x972d07fe snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x997cbc0b snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b04e362 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c9883d3 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cf0145b snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d28ed19 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e81d7f6 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa31c81a5 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3bd8bc3 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8672c26 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9408056 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa112114 snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaae98777 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf37618c snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1816cb4 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb21f71da snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb250bde9 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb26975d4 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb515e054 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb66707e0 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7677c67 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb823e766 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb848077a snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb865629e snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8a2c31f snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9785968 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba49e2b4 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbad4b105 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc3972f5 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe12c27c snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf2570a9 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf4a6ad1 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0afd791 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc26e5718 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4a2d4c6 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc522e1ca snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5d41648 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7c074d0 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc975d668 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcda418f0 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdb10814 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcddd3bba snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd020e77d snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4cf20c9 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd665a7b1 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6ffffff snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd60b9f4 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddae103d snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf908558 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0fae355 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2825b44 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe66b1ddb snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe86cf866 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe893741a snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea563a3f snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebefdfc4 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef119442 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf18f1a32 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf33b4011 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4966996 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc0c21cb snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x09bebc06 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 0x3291f318 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x35e91cad line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3e12f3ae line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x40be5292 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4e9330a0 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6ae14f10 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7d3a8032 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 0x92102862 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa02760cd line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbc64a0df line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xca742104 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcd157e28 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xddf6094a line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf77e1ee4 line6_read_serial_number +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 0x0482e9ef rsi_hci_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x0c56b19d rsi_default_ps_params +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1e678bb2 dot11_pkt_type +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x26202390 rsi_send_rx_filter_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x29536878 ven_rsi_mac80211_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x437447f4 rsi_hex_dump +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x45c31c3e rsi_deregister_bt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x45ca198c ven_rsi_dbg +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x59878a9d ven_rsi_91x_deinit +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x764a574e rsi_hal_device_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xa29d5601 rsi_hci_attach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xa48c00db rsi_config_wowlan +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xc2780ab4 ven_rsi_91x_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xc48346e8 rsi_hci_recv_pkt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xe60e9a56 rsi_init_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xe9f05dd3 rsi_remove_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xf172a2d1 rsi_send_rfmode_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xfb8d0c5a ven_rsi_read_pkt +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0x0000cc22 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x0007f56b pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x000f6149 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x002d5a1c l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x0033cbc5 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x003d0f44 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x004426d6 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x005370f8 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x006970fe tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x008d02af rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00a224ae syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x00b849a3 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x00c5edcf to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00fff365 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x010fcba0 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x011466a7 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x01169e58 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x01266f9e devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0135f79b usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x0146fdc4 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x01617552 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x016f2853 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x0191050c fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x01a75c70 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x01b77b1a usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x01bca796 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e454c4 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x01fd6a9e crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x0202c5d0 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x02191303 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x0219bb9a thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x0221cc43 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x026db080 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x029084c7 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x02e136a3 xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x030cb53e trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x03123452 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x0328a820 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x032a3c2d input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0358625b rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x035ad15f device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x03609a43 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x039b995e phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x039c1e14 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03a3f733 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x03cf537e usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03f3c53b rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x03f4327a tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x03fc18a4 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0415806f usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x04256c0a mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0477fb72 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x0479fae0 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x047ca466 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x047cf8f6 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x0499f581 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x049b71f0 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04a8b882 vfs_lock_file +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 0x04e61810 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt +EXPORT_SYMBOL_GPL vmlinux 0x04eeda9c ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x04f0a43d crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x04fda660 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x05011e30 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x0516c4dd gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x05388cb2 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x05498b49 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0570396e gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x059bb3bb irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x05b65e9c perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x05ec61c4 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x05faff4a ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x05fc37f1 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062c5eeb cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x0643498d dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065709be generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x06644289 irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x068a9fa2 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x068fdbf3 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x06acddd6 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x06afbdd4 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x06b792de gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x06c78ec9 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06ea6775 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x06ed40d5 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x06ed89c3 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x06f9ae9b pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x071bc19c driver_register +EXPORT_SYMBOL_GPL vmlinux 0x071d79d4 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x07219d0d attribute_container_unregister +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 0x079180b0 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x079adc14 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x07a3af1c tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x07a45ec2 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07d4b85f device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x07e4dccc gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x086e0847 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08a10992 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08d628fb serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x08dc2f4c device_attach +EXPORT_SYMBOL_GPL vmlinux 0x08e1a659 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x08f74e3a crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x091f59ad nl_table +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0958753b pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x095be637 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x095c5bd9 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x096f110c relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x09739d0e usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x0997eabf dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x09bc939b crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x09ce8ef6 set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x09f9c6f2 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x0a2e12de crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x0a4ad2e9 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x0a4b9228 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a763d8f tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x0a7e84a3 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x0a86da9e wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0a8d21ae list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x0ac43fe7 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x0acaecd4 xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0ad27bab md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x0ada0c98 acpi_dev_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x0afcc9a5 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b4a5591 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b59f428 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x0b66b8b9 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x0b808447 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x0b8f2511 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x0b9e3096 fpu__save +EXPORT_SYMBOL_GPL vmlinux 0x0ba4eba6 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0bb5edea pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x0bd26c75 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x0bd5674f generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x0bed5832 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c128591 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x0c2842f2 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c31be1b sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x0c48ea71 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c4d72c2 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x0c5e868b dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x0c654fd6 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x0c746ca3 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x0c762115 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x0c83ebd8 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x0c97e30a spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x0ca26669 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x0ca55a71 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cf47ed1 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x0d02bb4a debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x0d31e032 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d517851 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d864578 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x0d97da40 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x0dc62385 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x0dc6bac7 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x0dd9a5d6 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0ddcc75d __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x0ddef200 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x0df7a7dd blkcipher_walk_done +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 0x0e3bb170 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0e401412 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x0e4692e3 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x0e60a554 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x0e62af2f sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x0e70840b cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0x0e7299df ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x0e84b548 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0e8544c6 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0ec58c80 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x0ecdb5fc extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0ef1930f wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x0f1ed4ff rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x0f206253 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x0f21b1a6 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x0f23cb90 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x0f27652e regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0f2d4fc5 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f2e6fea regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f3b0025 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x0f58f0fe ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x0f740300 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic +EXPORT_SYMBOL_GPL vmlinux 0x0fa73ffa usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x0faddfd1 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0fbe0f08 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x0fcbf576 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x0fe5611a crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x0ff1bbbb usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x0ffc03f8 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x10036196 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101a4a0b page_endio +EXPORT_SYMBOL_GPL vmlinux 0x10201b11 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x10273897 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x1027dc6a thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x10571e32 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x108f6722 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x10a2755d devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x10be333b ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x10d56065 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x10db1887 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x10e905a0 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f16124 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x110f63c8 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x113e69d8 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x113eeea8 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x114e618c blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x11574ad3 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x115fe867 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x116441bc devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x1170a045 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x11878049 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x118dee02 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x118f5311 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1194c406 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x11b18387 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x11b53fac ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x11caddc7 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x11d64bcb cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x11eb566d scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x11f07235 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x120ba96a print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x123e1586 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x12440901 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1252da24 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x12655b6b regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126bc87f driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x12bec336 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x12d0f0b5 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x12e81da6 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x12ef2624 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x130bd388 check_tsc_disabled +EXPORT_SYMBOL_GPL vmlinux 0x130de01d trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x1313796f usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131aeeb8 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1326e7e7 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x132f361d get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x13300e6d rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x1336d48b ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1382fa9e rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x1384112d rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138d0492 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x138ee84b usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x138fb21e usb_gen_phy_init +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 0x13e60a3f rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x13fa8af4 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x141e91df scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x14398aa9 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x14451296 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x144b9da5 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x1466cb3f ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x14728310 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x14804db9 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x149e7d7c of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x14b3ee40 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x14c03866 split_page +EXPORT_SYMBOL_GPL vmlinux 0x14dec974 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14f8a90d blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x150075e7 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x150713e9 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x151f4d29 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1521352d _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x15377a79 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x153b519a usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x154d8221 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x1567f092 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x15709f8c da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15963873 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x15c15608 md_run +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x1643f357 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x16470bd5 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x1665fe30 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x1684ff6e fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x1686219b inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x16879f5f ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x168ebb27 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x168f999a regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x1690b43e crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x16b0c583 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x16b79d40 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x16d6bab9 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x16df115a rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x16e215c6 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x16e34911 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x170488fb regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x170b0073 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x172a176f wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x1736907f fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x17543bdc wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x176c975d crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x17768b17 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x17af4855 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x17b52e3c regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x17d03edc virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x17eb45ce __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x17ebf569 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x18072940 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x181d373b crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x183c7c22 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x184760e3 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x184a2b9f sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x18511595 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x18600f57 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x187644a9 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x18d2aecf pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x18dcc4a4 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x18e57c13 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x18ef9e02 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x18f34df6 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x1907723a bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1908a494 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x1959080f dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x19592625 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x1968b223 acpi_dev_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x196fdae4 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x1990343c crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x19a21766 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19aaa75b blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x19d6ff54 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x19e08e01 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19e77027 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19f4de38 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x19f8a5ec ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x19fb00c5 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x1a12bb21 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x1a40c65f aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1a559b3e crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1a61af8f platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x1a627784 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x1a65f74b handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x1a7b2ea6 pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0x1a8db718 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1a9cb062 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x1aaa493e pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x1ab2e083 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x1ab6d3ab dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1adc2a10 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x1b35e7d6 xen_swiotlb_set_dma_mask +EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x1b3d8a40 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x1b570c06 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x1b5c752f ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x1b5d5bbc preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8fbaee gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1baf83e2 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bffbb66 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x1c075f12 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x1c090f77 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x1c12919b led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c1427ea pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x1c189615 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x1c26e920 digsig_verify +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 0x1c7111ce skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1cb358bf wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x1cf152b4 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1d0f5a45 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x1d15c56a acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x1d19cee9 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d24170b pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1d2784fb __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x1d3d1f4f devres_release_group +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 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 0x1db46812 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x1dc286cf smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x1dd22526 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x1de0fcc4 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1dfb3b4d ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e214c22 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1e34715f intel_svm_bind_mm +EXPORT_SYMBOL_GPL vmlinux 0x1e4ef036 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x1e581546 io_cgrp_subsys +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 0x1e842d4e dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e94cff8 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x1ea25948 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x1eb647fa user_describe +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1eb9c292 pm_generic_thaw +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 0x1edcda57 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ef6f529 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x1efe4657 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x1eff55c0 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x1f1ce14c crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x1f23b9d7 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x1f3f843d dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x1f4aa915 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x1f4ee476 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x1f63ac03 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f889dbb mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f921a4c crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x1f94802c irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x1f979380 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x1fe9e52e crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x200cc695 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x203684e6 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x20553215 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x207f2ede hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20873536 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20b519db fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x20bb0ba4 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x21042748 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x210c847a _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x211ef640 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x2123de3b ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x21307655 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x215d5992 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x21742746 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21abba3b device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21ba4e61 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d38102 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x21dd6c55 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x220bf8a5 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2218c7a6 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x22345043 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x225603e6 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x227c6c8f ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x2282fe0d cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x22b62fb5 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x22cc127b pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x230554de regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x231fc0c6 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x233912a6 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x2361a06c crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata +EXPORT_SYMBOL_GPL vmlinux 0x2384b485 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23917f74 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a34a76 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x23c7ffb6 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x23e053b5 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x23ec52c1 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x2425bfe6 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x242b6986 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x245c4ed5 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x247c2d46 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2487152a gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b5a37d phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x24bb130c blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x24c2537f da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24e01fcc dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f26ff0 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x2504cc1a shash_ahash_finup +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 0x256fc3ef devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x257febc7 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x2580f588 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x25894033 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x25b1baa1 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x25cea1bf subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25d43336 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x25d53c7b x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x25d700b8 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x25d77c71 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x25e525ff class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x25e8a354 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x25eaf116 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x25fc51d5 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x25ff4d30 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x262cf6ef srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x2631fb5b is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x2635f8bd perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x263e4192 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x264a2ce8 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26568928 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x26657694 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x266d6b5a gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x266ed631 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x267fe6a9 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x2686ed1b register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x26a7d969 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x26b2ebc0 scsi_bus_type +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 0x26cc2e4d iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x26d7742b scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x26f51bbd device_register +EXPORT_SYMBOL_GPL vmlinux 0x26f84b8b power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x270fd823 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x27a430a9 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27c41df2 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x27d2a140 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x27d97eec pci_vfs_assigned +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 0x28137fdd sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x285ee01f con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x286f4672 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x2872be79 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x287ace99 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x28ae5e6b mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x28dfe00d wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x28f4057d crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x28f502f2 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x290e85a7 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x2915b5d7 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x29193089 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x2939211a usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x2953b780 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x2969d628 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x298f8a24 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29a97508 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x29a9f1ad user_update +EXPORT_SYMBOL_GPL vmlinux 0x29d2c439 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x29de8124 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x29e2c2c7 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x29e90805 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f623c9 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x2a214906 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2a2c06ea shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x2a51dd69 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x2a66fbea cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a75d6ab tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x2aa0d840 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x2aa5cba2 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x2ab0f7ab pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x2ac88c58 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x2acfb522 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x2ae20ae8 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x2ae6402c gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x2af74c61 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x2afc5306 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2b21934a xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b416c96 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x2b4a6512 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x2b755274 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x2b849801 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x2b86978e devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x2b87b844 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b9ad498 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2bb9e949 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2bcffc95 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2bf12218 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c0e1972 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x2c0e510c call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x2c12b5ee lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x2c15c62d do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x2c1d3949 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c6d78a3 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x2c78a0e0 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c90668a devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x2c949070 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x2cab55c9 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2cb1ecad crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x2cb7282e sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x2ccf70a6 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x2ce0e646 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf9c5b5 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x2d15f931 regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d2c26dd rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x2d2ec1e7 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x2d333630 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d456c37 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2d4f69ef ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x2d590c8d unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d67327f pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x2d684af1 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x2d698833 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x2d7c7fb4 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x2d80c4c1 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x2d8b4d02 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x2d8ecbb2 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x2d96e307 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2d9f507c cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x2da96051 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x2dae598b sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x2db17bba acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x2dbd7b0c ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x2dd15cd6 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2deec9c2 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x2e02d152 task_cls_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 0x2e373f06 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x2e4d753e subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x2e60e234 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x2e71342b posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x2e886d50 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ec5b761 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2ed33c1a crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x2efa60cd powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f160324 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x2f245957 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x2f382655 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f52f1f0 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f7f6c08 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x2fb37554 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2fbb0e29 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x2fc2b8f2 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fdb4f00 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x2ff8688a pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x303307c9 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x30498f65 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x3061cefd xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0x30774917 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x3085ee36 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x30a51439 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x30ada082 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x30ba47f5 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x3107164d sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x311ecd3d bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x314aeb05 set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x31986225 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x31a4935f device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x31bde0da sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31de97f4 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x31fe768f inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x3225e622 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x32389d0c __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x325ae856 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32be2f2b __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x32c223f3 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d822fe pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x330468a6 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x335ccaef napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size +EXPORT_SYMBOL_GPL vmlinux 0x3363a6af cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync +EXPORT_SYMBOL_GPL vmlinux 0x33666162 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3390f1c8 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33c79cbf scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x33e8488c sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x3401f9e3 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x34093f40 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x3428f7ba acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x343d444f ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x3450c4d6 regmap_get_reg_stride +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 0x34b1a583 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x34e901b2 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0x3535057f gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x354a49a6 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x354bf758 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x356cf183 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x356fa262 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x3594afb9 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x35b1ec57 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35cb34fa handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x35d87df7 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x35f7f969 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x35fdb2cb bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x36325bf1 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x364692ec ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x365b71e1 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x367f3d11 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36ae8447 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x36b1aac9 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36e10fdf xen_remap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x36fae652 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x374e6ac8 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x37600833 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x37a6c9b0 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x37d0275d ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x37ed7c7a rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x37f0a5e9 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x37f1ffbf gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x3815ec2a pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x381a2229 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x3877f364 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x3879e127 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x388dcec7 of_css +EXPORT_SYMBOL_GPL vmlinux 0x38b10316 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x38b3fb30 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x38b6254c unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x38d02f9b ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x394c4d62 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +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 0x3a38dc65 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a48f075 xenbus_dev_probe +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 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 0x3aedf6d3 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x3aef032d ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x3b06945e wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x3b198e31 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x3b1ecf49 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x3b25a208 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3b3e71a6 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3b4a26a9 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b5c96ee ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3b8529f9 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x3b8b02c7 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3b9a44d6 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x3bbdb38e __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x3bc4e722 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x3bcd80f5 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x3bf04776 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x3c29bee4 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0x3c3b0c60 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x3c47e49c file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x3c5126ed devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x3c524acc napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x3c628907 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x3c6d8222 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3ca2ef0d md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cdcdcf6 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3cdebd4b blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x3cfe0668 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x3d019850 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x3d182567 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3ff46f usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x3d516919 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3d51a550 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x3d5a7ab4 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x3d5f392d acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3d6c3208 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x3d70b61d dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x3d77c60d kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3d98d9b2 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3dae6404 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3de26f69 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e0c3b4e extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e3665bb usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x3e44561c ata_qc_complete_multiple +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 0x3e79d179 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x3e80b090 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x3e9f3790 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3eb2ea50 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3ecae2b8 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f00cc5e dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x3f06148a __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f62840a mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x3f6cf3e9 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3fa2fd5b led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fa72045 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x4004cb7a devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4010b80f pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x4013781b __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x401e84c8 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x4028456a wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40456dd1 pm_generic_poweroff_noirq +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 0x408212ba hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x409604a2 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x40aa67a8 pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40cb431d rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40ddef3c edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f23933 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x4100ca9c devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x411bacd6 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x411da17f ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x41335761 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x41494ffd device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x41583eb9 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x41801cf8 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418710e7 mce_inject_log +EXPORT_SYMBOL_GPL vmlinux 0x41a5e3df ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x41a86435 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x41b11ad4 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x41b87bb6 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x41bbf7f4 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41dd6b06 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x41e87c51 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x41f86302 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x4201d0dc usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x423a64ca sdio_writel +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 0x426b7a90 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x42716c1d blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x4272d3eb rio_add_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 0x429ac857 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x42bb8d80 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x4302b534 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x430596d2 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x43171e1a arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x4334e22e crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x43402cf4 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x434de146 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x43656427 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43dbd2b9 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x43e1e45f default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43fd10f3 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save +EXPORT_SYMBOL_GPL vmlinux 0x4429af33 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x4437586a usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x44609178 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x44774a80 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x4479af74 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4495bf27 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44d7d39c power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x44e09648 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44e5bf5c pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x44ee06c6 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x4507679d rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x450e4bac device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x451cd0c8 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x452e87fd ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x4548def2 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x457022e1 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45b51f02 dma_wait_for_async_tx +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 0x45e0878b tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x45f35dd9 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x45fc6d4d gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x4642031a component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x46434934 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x4644db1b debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x464eca7a crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x464ece2b usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x4650a5df rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4663d883 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x4678157d pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x46865373 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4689ba3e ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x46def994 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x46f10816 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x46f7cbb2 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x4708a463 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4717a5b3 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x471a3b06 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4726825d acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x472e833a arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x473576a1 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x473d1ebb dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x4741226d usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476ca620 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x47823297 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478a709a gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x479cac57 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x47a41d22 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47bc5549 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x47bd49f6 tcp_twsk_unique +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 0x4810fc8d public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x48434853 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x485b59b2 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x48701867 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x4875fd0e blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x4881a01c register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x4886cdc6 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x48981aa3 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x48a991cb devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x4901ccc4 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x490a8df6 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x494edbda klp_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x4967ef63 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x49751ef9 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49920ed6 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x499cc7e7 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x49b984e5 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x49be1bd2 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x49c32aad virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x49e44dc3 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x49e4eb33 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f0c013 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4a0913a8 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x4a0bbfb3 devm_kmalloc +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 0x4a51a83e inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x4a7280fc mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab096c5 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x4aed6c0c scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x4b02b0e4 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x4b03c5dc blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4b230554 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4b394b6e debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x4b429396 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x4b44fb6b debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x4b493e54 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x4b836d99 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x4b8bfe12 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4ba5d8cb driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x4bb49ce5 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x4bb4b03d serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x4bbefe13 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4be4f8fe regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x4c02fec8 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x4c1cb12e sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x4c24abe9 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x4c298fd6 shash_register_instance +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 0x4c6bcd59 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c7a0354 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4c881c75 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4c9fd2f3 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x4ca3b8ef __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4cb0f5c4 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x4cb4826b acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4cbfbeef gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4cc295f2 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x4cd6de62 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x4cea27cf acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d057e40 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x4d16843d bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x4d7633c3 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x4d778afc blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x4d8ce6e2 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x4dacbfe3 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x4db6ce8a dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4db99ced pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x4dc58109 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4e008825 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x4e026ee2 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e2dee84 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x4e3240f4 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4e33f7ec tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x4e419728 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x4e4abef3 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read +EXPORT_SYMBOL_GPL vmlinux 0x4e5bae76 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e6edcab sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x4e84b408 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4e97a832 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x4e9fad39 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4ea1f3be pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x4ea277e7 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x4eb57a4f raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x4ee27bbe pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x4eeafe0e wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4eeb2f45 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef91183 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x4f0536bb __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f192dab fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x4f2fd921 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f3d6fa6 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x4f46206f blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x4f64f686 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f7cbd52 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x4fc7549f klp_disable_patch +EXPORT_SYMBOL_GPL vmlinux 0x4fcc3ed6 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x4fcfeedf serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe074a1 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe585f7 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x5019bdbc serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x504faea9 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x5084a982 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509bed6d xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x509d1929 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50d2ad79 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50e96f3a ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x510609ab fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x510abf85 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x510ba0cc nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x51106737 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x512b1d19 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5153c03d fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x5166f727 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x516cc4cb register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x5178ab73 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518ab724 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x5191bd3c efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x51e16366 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x51f927d0 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x5219307d xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x522e34f7 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x5252c397 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x5289d516 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x529499c4 xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0x529733f6 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x529f7601 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x52a2f541 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52b7a6e9 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x52d2cbb3 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x52f9ab9b virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x52fd59b0 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x52ff18e8 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x530152d8 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x530948d6 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x5315a5e2 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x5331b57d ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x533e2464 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x536aa105 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x536d950f cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x53708000 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x537d477c uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53b9d1ec blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x53e6e5b2 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x53ebc9a8 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x541284bc find_vpid +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 0x542569d6 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x542a213e fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x545218fa netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x5453af00 virtqueue_kick +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 0x54906b87 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54ae8e9d securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x54af50eb yield_to +EXPORT_SYMBOL_GPL vmlinux 0x54b6057e dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54f091ac irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x550546c6 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x55181725 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x553ab59d __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x554ff369 xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x556d2f92 crypto_shash_finup +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 0x559894b7 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x55e25d07 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x55e5218d sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f9a177 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x56226ace rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x562548ce tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x5625de06 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x563c69ed pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x56476676 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x56510181 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x565c2cd9 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x565f503c crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x566da0f6 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x569bce2c regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x56ade0b2 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x56af64a3 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56d7426b sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x56e058ff fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x56e511fa regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56fd2fa8 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5705461a __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x5739b4b5 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x573ddff7 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x5743ae0d tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x575b24d7 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x5762a4a5 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x57700b59 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x5779af98 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x577f46ae pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57bc3cd8 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57d51a1a pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x57f0f788 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x57faffdd posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x5825dad4 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x587d2d66 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x58912868 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x5898450e ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x58998c47 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58acbd66 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x58c6d22f xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x58da614c device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x590227ee blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x590f54cd wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x591df59e dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x5921e654 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x592f9505 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x59376e1d device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x593ddf92 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x595dd475 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x596ccc13 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x5975a240 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x597ba92c i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x598a35fe crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x59a8a9dd inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x59b0882b md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59be0c75 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x59d017e8 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x59dfe6ff simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x59dffc80 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x59e36c65 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a39d12f dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x5a4cfdf3 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5a565dd5 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a78081e mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a7ec04f kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x5a958810 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5aa7907b __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x5aab989b user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5b044b3b skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x5b1899f8 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x5b25e975 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x5b3ad796 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5b54a560 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x5b6c01d7 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x5b6f2b3c pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x5b7c2a9a shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x5bc98b4b class_interface_unregister +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 0x5bf2c305 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5bf7c954 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x5c35a051 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x5c464fef usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x5c4ca333 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5be151 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c6cb221 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5c781f7b platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5c8d7f62 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x5ca33107 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cd30e30 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x5cfcfff4 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d2be5b1 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d4ba658 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5d81e4b8 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x5da4b97d usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db6ecb2 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dcd7160 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x5e05386b mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x5e1881c6 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x5e1db40f __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x5e3d044d devres_get +EXPORT_SYMBOL_GPL vmlinux 0x5e422e76 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e6558df gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5e6f0f46 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x5e81ee4e eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x5e92f905 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x5eb57159 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x5eb7e1b0 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x5eba2770 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x5ebfe3c4 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x5ed6083a fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x5ef5c73a regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x5f2131fe __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f32e611 component_del +EXPORT_SYMBOL_GPL vmlinux 0x5f395ac8 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x5f3c9cbe crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x5f49a3cd tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x5f4e3875 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x5f5f11db iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x5f629dbe usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x5f82b92e put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x5f897638 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5fa477f4 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x5faf488c regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x5fb3bfdd adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5fbc19a6 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fc5eaaa regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5fe17218 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5fe907b7 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x5ff50674 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6028879d tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x602fef81 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x60486aae regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6051a105 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x6071eb5f percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x608015ef hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x60930d37 save_mc_for_early +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60c2a394 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops +EXPORT_SYMBOL_GPL vmlinux 0x60cdc5c6 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60fa7acd param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x61007934 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x612d3c2c pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x61546849 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x615a91a2 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x615b1616 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x61682b0c crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x616d0736 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x61790373 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x61b2e596 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x61c1b91c xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x61f559c8 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x61fe44d4 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x6204edcb dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x62133dbb devres_open_group +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 0x6260eb4b page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x627b4439 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x62c49866 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x62f47c27 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6324a0d6 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x6333072c gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x63351b11 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x637f60ab sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x6380fa46 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x638b1b49 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x638fe045 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x639476fb blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x639f7f3f ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x63d44853 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x63dfe4f6 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63e7f6dd inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x63e966c1 sata_scr_valid +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 0x641539e8 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x641683ed phy_put +EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x647b7728 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x648060b5 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x6481e1b0 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x64a1f092 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x64b55e5a od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x64bd9e41 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x64c1b7bd lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x64c53793 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x64d50fbd __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x65043858 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x650518d3 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x65184f13 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last +EXPORT_SYMBOL_GPL vmlinux 0x65439fe1 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x6590ceac virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x65ab45c3 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d19103 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x65d1a43c ping_close +EXPORT_SYMBOL_GPL vmlinux 0x65f6296b pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x65fd8b56 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x6606f771 pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x660eef49 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661fac3c __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6637e65b extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6641b64b list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x66498849 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0x6683cbcb rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66910818 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x66a75e18 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x66af685f ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66cf3c96 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66f621e9 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x670be2ea crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6737bedf wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x6746fe8f napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x677fd61a fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x6780a57f cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x6794648f ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679c60f1 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x67a6c699 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x6814d9a2 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x6835a257 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x683d8f4d ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x687f3f49 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x6888ae54 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x6890713f debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x68cce843 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x68d84ade fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x690c51e8 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x690cdac9 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x6921356e find_module +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x6929d528 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6950ee78 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x69674c82 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x697616b8 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x69a1d050 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x69d6228f security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x6a0e05d2 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x6a145307 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a2bb4ee ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x6a37402b acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a4f7331 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x6a53151d nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a7e3bac sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a903f1e blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x6a97f63e crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x6ab82375 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x6abcbccb regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x6ac2a620 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6ad3ab9f exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x6ad60c37 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x6adb4c76 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x6adc833f sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x6aed22fe ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6af1ddfd acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x6af4f796 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b29ddb1 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x6b34126b register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x6b3996ec xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae33a pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x6b4147a8 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x6b45ebdc vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x6b4d1c26 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x6b7838a7 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6bb74b5c ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x6bc20c2d gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x6bd710e9 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x6bf86491 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x6bf8b14a sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x6c063b47 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x6c19a9e6 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x6c1f6433 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x6c32238b ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3cd68a irq_get_domain_generic_chip +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 0x6c6ae7b9 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x6c807896 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c8e130d pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x6c9135f3 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6ccf21dd ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6ce84602 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x6cea2c31 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6cf9c63f cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6d08ddd1 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x6d2f6fd0 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d356986 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6d782da1 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x6d9d9c0c xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x6db294a5 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x6dc51945 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6dcc15ab virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x6dd98b04 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e25fc64 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x6e2b2dbd pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x6e2fb471 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x6e3d5494 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x6e4c6f31 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x6e4cae54 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x6e584eac regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e5c4545 crypto_shoot_alg +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 0x6e9577dd xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x6ea98361 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x6ebd319d nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x6ebdf5e0 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x6ef482df ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x6ef5ad83 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x6f1ac0a7 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f29a5f2 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x6f550461 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x6f5842cf dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x6f5ca546 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x6f7d9e51 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f9c9631 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x6fda88d9 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x700cc648 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x70308e4c fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x7080cf5a virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x708afa0c device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x70959c81 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c56efe gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d30336 xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0x70dcf2a3 pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x70f1dc4b netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x70f2ac88 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x710f712b dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x7146a630 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x714d92a2 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x714e2d4e debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x71558873 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x718c7f3f ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x718c9302 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x719aab09 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a1c53f thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x71b3c04b tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x71bf3122 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x71c762d3 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71fd0cbc udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x725ececf phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72944f12 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x72b5bbab virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x72d6d4c9 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x73312a64 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x737e62ca clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x73881191 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x738f346e skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x7399b78a register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a821d7 nvdimm_bus_unregister +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 0x73d5846b devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73faa99c fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7406d6e2 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743f3aaa fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x744a31ec sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x74719cb9 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x748e15cc gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x749be7e8 rio_release_inb_mbox +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 0x74d05ed8 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x74ef9c5c irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x750df125 device_get_next_child_node +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 0x7523caf4 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x7540d2bf ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x7551b052 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x75529f3f dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x755b15a4 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x755b1e71 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x75ba5977 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75db5b2a wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x75e8fcbb raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x75f0f682 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x75f5e85d usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x7602187b mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x760859d1 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x76289e25 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x762f2884 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x763af5af ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x76437689 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x7647b997 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x7674f25f blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x76804ba6 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76895744 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x76a6cbd6 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x76ace418 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e72c4a pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x76f72e30 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x770e72a7 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x77378e13 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x773e7918 acpi_dev_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x77535d05 sdio_writeb_readb +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 0x7791d599 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b20c2d usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x77b2e54b gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x77b95396 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x77cd3c6a usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x78028c45 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x78297b7c ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7835fb1c regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x78575bee atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x786108ad usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78cb295d spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x78cc5285 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78d0cbd1 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x78d80aca policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x78eb4436 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x78ecfac5 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x7912ef9c debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x79150bf0 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x792456ea device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x792c55c9 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x79402202 pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79467b6a pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x794d2731 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x79a6a04d __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x79ce86c6 dev_attr_em_message_type +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 0x7a1c2dae hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x7a26827b regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a4a86e7 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x7a4bf76f dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x7a78abe2 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x7a899b4e usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ace73fc wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x7ad174ea pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x7ae19ac1 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x7af086ed xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x7afcbe4c pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x7aff85cb led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d1844 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7b37a313 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7b8b8e1e usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x7b8c36f0 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7ba03b77 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7bd9c928 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x7bdfccba smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x7bfa516e device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x7bfb4a60 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x7c343732 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x7c4c7ba7 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7c4c801a devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x7c87d6a2 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x7c89d111 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca9331b blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x7cb95f51 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x7cc40144 mmc_regulator_get_supply +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 0x7ceef089 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x7cf77c73 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x7cf7c94d crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d044295 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d1ebb27 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7d263d1a debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x7d3ad41d swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x7d426d14 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7d4a95e2 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x7d538941 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7d575145 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5ee4ea ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x7d6f9018 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x7d93e5fa spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x7d9aa107 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7db6b8de regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x7dc0a3ed exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7dc81001 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x7dcdc93f __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x7dd4faab dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7e191fd5 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e561762 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6d5c8c crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e984c39 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7efcff45 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7f1af397 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f3658e6 fpstate_init +EXPORT_SYMBOL_GPL vmlinux 0x7f5b5653 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x7f6cd1ac get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fa4a2df pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x7fb4451a ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fc9d78c ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x7fd8f95b spi_async +EXPORT_SYMBOL_GPL vmlinux 0x7fd998e8 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7ffc0031 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x801321db gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x80156244 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x806a57f4 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x807922f3 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x808168e3 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x8089bba0 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809529fd alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x80a1f9f0 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x80c4f53e da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e9e301 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x80ef4664 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811ab7b1 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x811fd1cd nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x8126b326 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x81372f3b usb_get_maximum_speed +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 0x8192427c ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x81a84515 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x81b34f02 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x81d47473 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x81da2824 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x81ea82d2 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x81fde730 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x8203672b pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x821960b3 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x82c646c7 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x833fe614 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x835ae53d shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x8360a546 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x837f3f40 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83a7123f component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x83b05380 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x841411bc ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x841fd0a1 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x845c596c led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x8461df1c pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x846bafc3 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84b82a74 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x84bae97c dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x84bbc21e aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x8508e983 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x85354377 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x85486693 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x856315de pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8569bb3d pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x858231f6 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x8598c9e3 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x859aba59 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x859aea9a xen_set_domain_pte +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 0x85e65d9a pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x86157d3f regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x861a4a75 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0x862d4ab8 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x86300dce phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x86397a04 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x8653b767 ata_bmdma_start +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 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86924c3b regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x86950d3d uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x86990a08 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x86994d78 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x869e2d21 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x86a21102 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86ace2ab crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x86c95198 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x86cef58b ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x86d5375d inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x86daf614 dev_pm_set_dedicated_wake_irq +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 0x8723b271 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x873934cf put_pid +EXPORT_SYMBOL_GPL vmlinux 0x873c3e17 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x874df7c0 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x875555ea usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x87b42d2a kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x87d5b114 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x87f35896 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x87f7d848 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x87ffd4b1 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x88192d42 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x882a4a97 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8841b664 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x8879f5c9 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x8893bf34 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88c2d009 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x88db0e08 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x890b2d7d blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x891dd09d device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x891e6712 xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892b72a7 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x892c10b4 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x893ac7ff __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x894d23c7 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0x8969d216 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x89a1d4f4 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89f55ecb bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x89f73bcd locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x8a300819 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x8a3ae0cf irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x8a3fc082 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x8a465dc4 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x8a4b8066 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x8a514ecf virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0x8a55dca0 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a688992 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8a9cdfb7 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x8aaafb54 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8adafd7f regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x8af7a2ae led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x8b040af2 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b0e9038 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b1fda77 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x8b23f8ca ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x8b3b6b0c ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x8b59aa69 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x8b61d65a wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x8b75c48a mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x8b81093e clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8b98da28 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x8bb78d33 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x8bdafd25 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c02b3e5 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x8c17c678 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x8c6067fc irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x8c62b2c9 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cd1ab96 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x8cd87f4b regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0x8ce65c82 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8d0149cc dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x8d041945 get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x8d0dc8b8 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x8d21c9f3 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d232155 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x8d2e8f7c rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x8d3b3245 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x8d3f0ad4 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x8d45f721 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x8d484b2e gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x8d4dc449 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x8d7ed382 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x8d9fa235 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8da1705e adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x8da235c0 device_create +EXPORT_SYMBOL_GPL vmlinux 0x8dbd58e7 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x8de56592 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x8de79fe8 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x8df2745f da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x8e030e8d inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x8e057274 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x8e19a11e ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x8e27a2b8 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e2f409e sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x8e426c97 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x8e506cd4 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x8e542fbf fpu__restore +EXPORT_SYMBOL_GPL vmlinux 0x8e66c97b xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x8e698637 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x8e6ae0a0 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x8ea40f3f regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x8ea99b8f thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8ecf26ee scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x8edc4f4f usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x8f06f711 put_device +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0a946a da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x8f30c864 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f323186 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x8f33c305 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f716c60 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x8f76359b serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x8ff11fbc mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x900033ef trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x90106e49 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x90134ea9 xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x902aeec5 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0x903de521 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x906a46d5 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x9082c36f blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x90852bce klp_unregister_patch +EXPORT_SYMBOL_GPL vmlinux 0x90944e01 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x909fc752 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90a3c280 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x90abbcb8 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x90c69d10 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x90dc29df aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90e00742 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x91022ba6 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x910f0267 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x91170356 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x91390102 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x913b8441 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x917a3e04 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x917cf6d9 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x9182eb81 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x918a397c dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x918be071 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9191e8b3 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x919ec103 cpufreq_freq_attr_scaling_boost_freqs +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 0x9217af7f input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x9219e1ea gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x92329a12 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9239deb3 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x926f5244 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x9273028d kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x929e5224 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x92adce45 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x92ce2e28 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92f2b2b9 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x931aecd9 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x933c3d7c devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x933ebe04 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x934741a9 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x938df8bd mmput +EXPORT_SYMBOL_GPL vmlinux 0x939a2e2d wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x93a82a66 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x93d2da31 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93ebfc37 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x93f65877 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x94050027 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x940695c7 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x94238555 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x942968e5 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x9450550e percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0x94628b6e gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x948762dc pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x949cd8b5 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94e1900f subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9509bc49 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x950be5c0 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x95143dbe rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x9526b66b ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x95585a48 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x957289d8 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9598f05f tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x95bb800f blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95eae1e9 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x95ebc442 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x95f0969c pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x95fecdaf acpi_kobj +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 0x964c00eb usb_disable_lpm +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 0x96791838 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x969bc790 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x96a842b0 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x96ad9681 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x96af18a3 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x96fbcbd3 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x970931f7 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x971d5828 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97769cfc ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x9777f63e tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x97875549 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x97899813 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x978aa0f5 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x97945e55 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97ef42a2 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x97f9da3f rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x97fb0af4 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x9817b63c attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x982b1c7d clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x982f8c1b fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9832b533 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9843d2eb ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985badd3 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987be980 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x98910f40 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x98b5353c subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x98f23a28 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x98f8edef clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x98fa0447 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x991a5635 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x991e8cf7 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x99269514 sysfs_create_files +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 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x999259ab cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x999b6d21 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99c307c9 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x99c70434 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x99cac210 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x99d8702a inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x99de6509 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a4d03f2 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x9a512152 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aa0708d fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x9aa32f24 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9acb277e i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b56d5bc acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x9b6a48a7 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9b6a7412 idle_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9b710c1d nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0x9b7e7f95 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x9b876b20 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bc44489 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x9bc66123 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x9bc7d387 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9bc94d1d i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write +EXPORT_SYMBOL_GPL vmlinux 0x9bdff581 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x9c0bde2c aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x9c10b6d2 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c1adc5a crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x9c2ab94c pm_generic_freeze_late +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 0x9c4e4165 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x9c7f3473 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x9cb2cbc4 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9d03ff84 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d09a9c4 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d5d598a ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x9d9bc584 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9db25301 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9db82698 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x9dc1c99b md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x9dcc6bfa gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x9de15008 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x9de264f1 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x9de4a3ac ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x9df1accc fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x9df8cd1b platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x9e040794 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x9e05499a init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x9e1ab710 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x9e1e9210 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x9e352854 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e48cbb8 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x9e858ff8 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x9eb31d7e __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x9eb33ae7 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x9eb77083 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x9ebdf585 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x9ec38937 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ef3e243 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x9f1c9d6a pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x9f2a82db pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x9f5826ce sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x9f601c10 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x9f6c720f vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x9f6fb649 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x9f73c313 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x9f7a9bcc console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x9f8f5d94 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x9f92af83 x86_hyper_kvm +EXPORT_SYMBOL_GPL vmlinux 0x9fb29f0f ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x9fc0320d dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x9fc128b2 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9fc22c24 iommu_group_for_each_dev +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 0xa03de117 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xa06e4b1a pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xa086b112 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xa094ae41 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xa0c7bb4f disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xa0c9fe03 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xa0d004de part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xa0ec47ae skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xa0f334d1 arch_add_memory +EXPORT_SYMBOL_GPL vmlinux 0xa10308ca pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa1147082 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0xa122abe7 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa12fef87 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0xa13b5e1f ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xa144cd9c gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa149b9e6 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15f944b invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xa1729bff regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa194a85f bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa2154494 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xa2273720 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xa231ac38 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xa24c85a8 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xa24e7899 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa25e2143 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa2983ead disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xa2ac3ef2 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2b8f84d spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2c9779f sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xa3065bab pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xa31b1761 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xa3243d85 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xa329aa52 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xa3461bb1 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa373573d pci_set_cacheline_size +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 0xa3a11630 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c684ae usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xa3d216b8 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3f4a07d serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xa40c1076 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xa41661b5 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa42852c0 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xa42ac757 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xa42d5dcd __inet_lookup_established +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 0xa45930e9 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa461629d max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4aa8d52 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xa4afeb45 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xa4dab5a1 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xa4e9bc99 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xa4f3a815 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xa50d9be9 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xa5501175 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xa575dc0d each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xa5a06952 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xa5a23198 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xa5b23801 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xa5bbeb85 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xa5c19473 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xa5d2bb4b uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xa5d327a9 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa60a53ef cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xa61b69ab input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa63a54e5 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xa66438e8 erst_read +EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa67c9d63 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xa69956b4 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0xa6a1e4b6 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6c1ce4b screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xa6c5dfa2 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xa6db5409 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xa6e07149 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6fba572 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xa6fbc8fa unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xa7053e4d dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa70e86dc devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa7138f76 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xa7256b5f ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xa736b2de tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xa754dcc0 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xa76570bc set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xa7666a76 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xa77cf7ce gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7cddbe2 platform_device_alloc +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 0xa81ec1fe mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0xa82e2aec blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xa82fb740 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8572e5c skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xa88f9030 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xa8b72af3 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8bfb23f adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xa8f0964d platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xa8f492d5 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xa8f9e170 fuse_dev_release +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 0xa9361f99 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xa973028d debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xa9bf6a84 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xa9d6dd44 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9f7f518 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xaa73ddf4 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xaa8f0ba8 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xaa99aab7 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaad1c3b4 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xaae64fb1 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xaafdbe4b cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab15f914 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xab1dab36 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab280592 usb_autopm_get_interface +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 0xab5b2628 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab7613d7 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xaba82fcb dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xabb31f76 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xabb54b53 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xabc4b601 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabf52e3c mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xabfa8e6e ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xac193781 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xac2de783 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xac3ed897 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xac7ffd3f sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xaca5a181 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xacc5bc15 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacf000f9 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xacf80f1c ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xad0f3678 device_reset +EXPORT_SYMBOL_GPL vmlinux 0xad2423d2 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xad406d76 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xad5784d5 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xad732ff8 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xad7c91ac reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat +EXPORT_SYMBOL_GPL vmlinux 0xadb1f2aa power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xadb28014 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xadc3e882 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xadc475c8 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae2327b4 __add_pages +EXPORT_SYMBOL_GPL vmlinux 0xae432eb2 tps6586x_irq_get_virq +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 0xae911416 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xaecba6be percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0xaed0b74f pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0xaed6054e param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xaed6b6f3 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xaef3a0a0 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaefa7c3f device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xaf1d7a9a sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xaf27ba54 __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0xaf29ee71 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0xaf4de86a da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xaf56b22d devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xaf60cb95 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xaf6cef08 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xaf7cb8a4 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xaf914000 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xaf9214dc usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xaf9439db leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xaf944aa2 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xaf97a8a9 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xafafbd56 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xafbab188 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xafbb99a8 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xb0235cbe sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07adf05 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xb07aed0b rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xb09cdc1a scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xb09e7321 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb0c67dd6 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xb0c791fa blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb128c416 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb1454861 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xb15c95ea dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb19260a4 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xb1a8a39a ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xb1bc0c8a devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xb1be36ee dev_forward_skb +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 0xb1c6f265 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1eaa77f bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2256023 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xb2496b6b devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb27b5ec1 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb28386de xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xb2839686 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall +EXPORT_SYMBOL_GPL vmlinux 0xb29ec918 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xb2b2e7b3 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xb2d1acca skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xb2dfb4c7 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2ff809d rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xb303c56c spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0xb306bc9e fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xb30d30a1 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xb3202219 input_class +EXPORT_SYMBOL_GPL vmlinux 0xb3247cea device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb32baccb devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xb32f9340 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xb3382ad0 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb3576c2d iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xb36c6d03 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xb3978e5c blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xb39deb0e unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xb448b63f xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xb44fbca6 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xb467eff5 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xb4887939 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb48a1c14 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb4b4b525 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4e56377 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4ed4fef wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb515d908 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb55f5390 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xb5685b55 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5977706 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5a259fd blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xb5b914b2 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0xb5dfa30e serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xb5e72628 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb60be0fe device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0xb61c9dab init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb63c8214 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xb63f89ae usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xb6479933 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb64e9b91 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb68ec2e3 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xb6a9da16 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6bf8bb8 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6fde17e regulator_map_voltage_linear_range +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 0xb7b2cb09 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xb7c7ec98 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb7fb5aa7 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xb7fc099d wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb83c399c ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb846f074 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xb87d0da7 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xb87f1e19 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d058d3 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xb8e2969b crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xb8ed0353 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb8f11275 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xb8fe6c6c ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xb9005da6 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb92365e4 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xb93eb5cb unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb94c1b76 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb97aa09d clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xb988d511 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xb98c926a tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xb992b9f4 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xb9968551 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb9a27a2f crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9be6158 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9cb4e13 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9e7199c pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xba047b21 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0xba0b747d mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xba0bdf88 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba3b7256 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xba4dbb95 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xba6b2a5c usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xba7cf7e0 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xba8135f6 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0xbaa2e30e ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0xbaae1e52 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xbab349c9 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbad9bf97 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xbae9bf93 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbb01f8fb inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb1020f7 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb1b2e02 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xbb2e9dc8 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xbb67ab68 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb6f7435 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xbbb5c3ef efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xbbb75092 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbc833de debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id +EXPORT_SYMBOL_GPL vmlinux 0xbc15e74f posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xbc2c4d4c __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbc2fc590 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xbc599743 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbc605957 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc89ab9e driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xbc920ac3 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xbc97c49c regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xbca912bb elv_register +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbcc0bec9 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xbcc5bb9a gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdab815 extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbd1bb595 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0xbd23f4c4 __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xbd301179 virtqueue_get_avail +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 0xbd755122 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0xbd853ee5 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xbda0bf14 platform_device_del +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 0xbde6cbd9 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xbdec4355 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe235913 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xbe2fb43d key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xbe332d38 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xbe38e366 device_add +EXPORT_SYMBOL_GPL vmlinux 0xbe3bae0e skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xbe56f8af gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xbe5d0996 idle_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe926da8 device_remove_property_set +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 0xbee3d5f0 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xbefea48d blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf10959a list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xbf70c548 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbf8822a0 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xbf99e4cc to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xbfa3e31b ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbfae36c3 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc7c22b cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xbfd10bb7 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xbfd4ca7c devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe80de5 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xbfe86b82 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xbfe9e5dc sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc00fbb89 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xc047efeb pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xc04b21bd acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc06006b8 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc060bb32 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xc071d696 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xc084d3a9 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc09be9c7 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0c87667 sysfs_create_bin_file +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 0xc1017c89 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xc11354cc device_del +EXPORT_SYMBOL_GPL vmlinux 0xc14c2824 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0xc157ae42 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc179eb13 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc17c761d transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xc18c618b bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xc18e3541 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xc1a0feab iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xc1b47546 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xc1bff87c rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xc1d84f59 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc226188f clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc235f630 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xc235f714 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc23dabd6 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xc24cbb6e inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xc258c82d __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc25bdc39 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc26e39e2 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xc272f9fe fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2a60651 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xc2b6b3b6 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xc2cca3f8 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xc2d2a02d usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xc2d4aacc scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xc312497e ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc342cd18 phy_get +EXPORT_SYMBOL_GPL vmlinux 0xc34487c5 shake_page +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc388d5f6 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3ab706e device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xc3b49dd5 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc3ec04df usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xc3ec37d6 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xc40ad84b __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0xc40f5ec2 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc41782d9 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xc426bded xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xc4271edc ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc43337ce gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xc43cc314 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc43d428c dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xc447dd93 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xc4527121 blk_unprep_request +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 0xc4ca6ca3 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4d760c7 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc4e05bbc clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0xc4ecdbb4 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc51e46e5 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xc538b0e6 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc544d574 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0xc5500731 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc57a43d6 acpi_subsys_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xc59d008c intel_svm_unbind_mm +EXPORT_SYMBOL_GPL vmlinux 0xc5c280b9 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xc5d622a7 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5e71301 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xc5ed4420 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xc5f0d130 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xc5f90175 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc61919b0 spi_async_locked +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 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc666024e raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66fbf54 xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc67315d8 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xc6904b85 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6ad6881 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xc6b8938e spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xc6bb8c9b fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc6d74e44 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xc6e02e07 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc724d0ca n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc74b8833 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc75f5007 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xc76437e2 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xc77471d4 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xc78bc4a4 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc78eb6be ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7bc577e devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc806946d dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xc81b765d put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xc83a8024 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xc87b97f2 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc8a7138d unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8c37994 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xc8cdfe83 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8e29649 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xc8ebf76f ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xc8f9cd05 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xc9024e78 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xc90ec73a efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc929de92 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xc9337ace ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xc93aa86b unregister_pernet_device +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 0xc9749619 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xc985e814 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xc98ef5c4 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xc9bd1480 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9cde257 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f04592 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xc9f4da2d devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xca0845a1 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xca0b06a2 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xca15d8f0 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xca169c22 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xca36e580 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xca4a098e rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca4a7f63 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xca5f5ddc register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xca667be8 device_move +EXPORT_SYMBOL_GPL vmlinux 0xca72944a fuse_request_alloc +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 0xca8f5273 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcacfdb34 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xcae5ff89 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb17d4d7 xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0xcb41db5e regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xcb89568c sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xcb9a53a1 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xcbb24a77 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xcbe03ece __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xcbe4b28f pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbedba44 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc0652d1 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xcc1e00fa rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc38e0c7 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcc684bab regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc8d00d8 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0xcc9bd282 regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0xccbfd92f ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xccc24256 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xccc350c3 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xccc77749 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd35328 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xccfabb97 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xccfee715 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xcd0cf3fc nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xcd2b2957 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xcd351179 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xcd390085 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update +EXPORT_SYMBOL_GPL vmlinux 0xcd79f60a pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xcd85570c ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xcd8596c3 ata_cable_sata +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 0xcdba3ba7 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xcdc4db8a rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdcd65f6 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0xce07966f ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xce28cb1b __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xce31f9f8 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce7cf57c spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xce845f94 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xce86ebd0 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0xce9cc110 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb78dbc iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0xced6bee8 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode +EXPORT_SYMBOL_GPL vmlinux 0xcf0d6f8b net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xcf105d84 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xcf484c47 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf7f69ee regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xcf7ffadd filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfd066e3 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xd02771b1 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xd02d0832 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xd0383861 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd04f84ed usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd06a27bd relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xd06e4796 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xd0816595 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xd08ab14f ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xd09cdced regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xd0a8390a thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xd0c0268c usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c58b62 inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0xd0c6175e noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xd0c90a7d pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xd0d3fe42 pci_msi_set_desc +EXPORT_SYMBOL_GPL vmlinux 0xd0d41cd7 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd11c1da0 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd1238216 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0xd1553b3b srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xd160a17c sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd17f5c70 acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xd1a77517 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xd1e6bf5b wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd2016c46 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21f688f sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xd23cff78 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xd2476e35 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd255f652 __pci_reset_function_locked +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 0xd2852433 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd2aff6ff pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e88de5 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd2fc195f __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd306d220 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd32c095c ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xd3438aed device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xd3530dd1 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xd36b8b74 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xd37b71ef lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xd3881965 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3b9157a tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd3bd77ca bus_register +EXPORT_SYMBOL_GPL vmlinux 0xd3bd8ea6 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xd3c4cbdf irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xd3d05f53 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xd3d2bef9 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xd3e64f40 xen_remap_domain_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd40fd152 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44f8f99 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd457fca5 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xd45ea32f hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xd4818c39 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xd4a20003 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xd4a2f03e acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c4191e bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xd4c7a0ae blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xd4d963d5 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xd4dd602f ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xd4ebdfa4 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xd5030f07 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xd5165968 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xd516db52 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd52a4eec init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xd54f0072 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd55c2a5c fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd571c892 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xd57c78f9 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xd57cd8d0 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xd5abb507 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0xd5bc7faf ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5e64708 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xd5ea0373 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xd5ea2818 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xd5efef9e ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xd60127be clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xd604d20e xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd61336e1 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xd6313800 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xd6584c5f regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6b26d16 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xd6b6d2e0 wm8350_read_auxadc +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 0xd703ee5e usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd7107102 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xd71a422d ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd72a383b dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd744eb78 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xd7490007 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xd74a41bd dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xd74b92b8 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xd74cf523 fat_remove_entries +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 0xd77ee6e9 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xd7aeede0 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xd7c779eb debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xd7cc7671 dm_disk +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 0xd822217a devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xd8247926 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0xd83141bb tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xd8435468 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd851eb68 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xd85e23f0 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87cdc0d pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88d1dd8 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xd89908d0 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd8a78594 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xd8a8c080 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xd8b58a3f rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xd8c7dcf4 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xd8fbed38 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xd905e6c1 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd923afae list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xd928514a devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xd935292f apic +EXPORT_SYMBOL_GPL vmlinux 0xd93b00c6 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd946ca9b led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xd94975c1 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xd94fa823 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xd9530642 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xd954b029 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd97edd80 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin +EXPORT_SYMBOL_GPL vmlinux 0xd9cc8209 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd9d9bf71 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd9e4d7dc gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xd9e6ef97 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9ef0393 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xd9f0a234 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xd9f71781 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xda13fcb7 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xda1873ef ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xda389561 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0xda4c4e32 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xda5fbc6f rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xda6999d8 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xda727808 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xda7d9c10 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xda807da6 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xda8bd0a2 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdab434c3 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xdab7d31e get_device +EXPORT_SYMBOL_GPL vmlinux 0xdad5b109 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf8cbfa ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb6b3ccb devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xdb6ced98 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xdb729ad5 pm_runtime_no_callbacks +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 0xdb981f6c pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xdb9d7238 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xdbd158f6 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc18be9a pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc1d80cf debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xdc4003b1 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xdc56778f acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xdc5aec96 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc797fd2 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc93c975 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc99e9bf cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcb837e4 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xdcce7d40 gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xdcf1b3ea regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd1a2849 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd4222c2 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xdd496bf8 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd68b6b7 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xdd7438f9 cpu_tlbstate +EXPORT_SYMBOL_GPL vmlinux 0xddaa08f5 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xddb386ed blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xddb8b2ce blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc0ba44 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xddc3c4d2 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xde178a67 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xde18256e __put_net +EXPORT_SYMBOL_GPL vmlinux 0xde41bb05 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xde45cbb3 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde4a2900 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xde4c28fc extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xde5456c9 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xde635834 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xde693326 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xde954b3f efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdee6f150 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf34752f pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xdf5851da crypto_dequeue_request +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 0xdf84418f powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xdf867a55 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xdf948d15 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xdf9f150c sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xdfb6c417 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xdfef5dce devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdffa2448 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0325fcf sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xe0326d54 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe0773053 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xe08566bf wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe093029a __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xe09f7332 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c74609 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0c811b0 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xe0e3dd48 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe0f96c04 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe10e36ed crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe1132b42 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xe13c9de8 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xe13cd3d5 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xe13d8b4a acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe16b0d30 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe182cd86 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xe184d0af nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1ddc94f tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xe1f1f309 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0xe22423d7 user_read +EXPORT_SYMBOL_GPL vmlinux 0xe22ae4e5 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xe23e160c extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xe24a6940 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xe287fd1d pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe29349dc copy_reserved_iova +EXPORT_SYMBOL_GPL vmlinux 0xe2951523 reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe295f927 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xe29d86bf pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xe2f86d76 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3258424 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe3464693 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xe3777a4f fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xe37dc9fb ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xe39236d6 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe39c5553 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xe39d1215 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xe39e9bc3 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xe3a0d90a __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xe3b0fb1e ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3bc926c tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xe3bda663 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe3e3af36 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xe3fd7db8 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0xe418fde4 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe41ef6ac power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xe4252d3e debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe44a270b register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe474465a class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xe47e0490 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4a7f307 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0xe4b98653 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4d19ac5 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe4d664b3 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xe4d8a22d transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0xe4e8d685 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xe4f68091 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xe4f98f39 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xe4fa1b0d pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xe530cce6 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xe543114a device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0xe55ef7f4 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xe56e7405 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58ad050 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5aa7151 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0xe5ba45ff regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xe5cdb872 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xe5ced825 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xe60bb498 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe6275857 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe65c8466 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xe68f169c rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6ce7875 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xe6d5375b register_kretprobes +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 0xe6fb4c44 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe738d9d3 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe753b15d pwm_request_from_chip +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 0xe7d0aaed ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe7da3d7b device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xe7df201c bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xe7e4c574 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe804d0b3 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81a0e83 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xe81a352d rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xe84e74aa devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe87e2d0c xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xe883225a ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xe88b8ac8 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe89d4739 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0xe89fd1f1 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xe8a3bef2 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xe8f135bf crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xe8f41717 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xe8f7a08f xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xe90b89fe ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe96551ab preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xe96dedf8 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe96f337b __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xe9984a74 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe99e33e2 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xe9a5fbdc pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xe9b134e2 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe9cdccee crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9f406a9 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xe9f905f4 xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0xea122db1 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea326a5a rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea48bd7f regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea78c835 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea993b98 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0xea9dde2e transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xeaa62107 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xeab49ff1 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0xeab5e85c ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xead48924 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xeaf481ba pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xeafa0480 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xeb2eb288 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xeb34c10c iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xeb6df59d irq_domain_simple_ops +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 0xeba673e9 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xebc0bd30 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xebcb4277 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xebd1dff4 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec077a48 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xec09bdfc wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xec1aa2af ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec46de93 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xec4f5419 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xec4f752a srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xec530e7c device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec7d1b03 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xec8e1b07 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xec94ed0f regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xec9d9f43 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0xecab8a25 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xecad3b34 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0xecec9fe3 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xeced40c5 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xed00807b usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xed2cc8dd pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xed362359 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0xed4a159d regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xede61286 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xedff87c7 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xee017711 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee2214d6 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xee3768b7 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xee4b402a usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee97e08b dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xee983b9d efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xeebf2f0c iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xeed6cc0e regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xeedd90ab pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xeee18c4a __module_address +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef2dbd98 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xef4166cf regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xef651951 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xef66bdb6 put_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0xef674962 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef736e14 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef8ca33d blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefaea46e of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xefd04a97 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xf0084d07 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xf01a262e debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xf027bb16 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xf030bbb0 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf04af666 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xf05a0298 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xf05ac8ca sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xf06734fe spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf076e498 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xf0983608 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xf0b29e23 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xf0bf9957 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xf0e11660 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xf0f0392c rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf0f4756e dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf109f5fb regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xf1199256 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xf1411218 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf15440ed key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xf1596e31 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf19a9e96 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xf1a4d4b6 pci_check_and_mask_intx +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 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf222aa67 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2ae2eea xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xf2bc06f8 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xf2f0e8a1 pm_generic_thaw_early +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 0xf31b2d81 cpufreq_cpu_put +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 0xf33d1428 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xf33dd47e save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0xf357049c usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xf358a797 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xf3660ae9 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xf3719722 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38991a3 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xf39b2da2 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3c00bab tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xf3c871c6 udp4_lib_lookup +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 0xf40ce827 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xf4108491 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xf413f3bf debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xf43fc2e7 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xf441ac48 print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0xf4456165 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf451055f ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xf4622087 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xf46e43ba debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xf4711a09 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4b8ca29 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xf4ca523b usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf4d653b3 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xf4dd8a78 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf50c067a subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf50ea3e4 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf512f99f pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf51ca535 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xf51f5e87 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xf52a8ffa call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xf52acc7b regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xf5343ea6 power_supply_unregister +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 0xf55b3eb2 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xf572df21 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf577f232 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf59bafc8 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5cb8616 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xf5e7ce5b sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xf60e6aa4 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xf61b07a7 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xf63ce66c usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xf6558da6 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf65c8675 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xf660c181 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xf66bb862 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xf67cf242 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xf6803343 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xf68d5652 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xf69b4b08 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xf69fa99a set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xf6a9556a btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xf6af009b tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xf6c463dd get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6ca71f9 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xf6e20b0e __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6ecc1d7 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0xf6ee2dd3 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf71f9a5b ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xf739d594 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xf749b048 register_mce_write_callback +EXPORT_SYMBOL_GPL vmlinux 0xf75fecb6 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf76b4db3 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xf7718ab8 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xf77906de ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xf78c3315 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7a7f811 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7c8858d efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xf7cdba1d arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xf7d37387 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xf7d58ea3 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf7d90d64 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xf7eeccae get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xf7fcfa43 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xf7ff5ef8 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xf81106a2 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xf8124aeb tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xf82ecbe9 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8330e3e metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xf83630d6 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0xf8374a0a sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xf8420df1 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xf85f1b09 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf89ed32a xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xf8b6a61d ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xf8c892d3 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xf8cf90e1 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f58f04 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xf8f60bff dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xf8f9a416 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf9038b4d clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xf91c828e bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf94118b4 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xf94e6317 bio_associate_current +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 0xf99c49c0 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a3fc06 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xf9c39751 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xf9c99810 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9cffe72 device_unregister +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 0xfa0b9bf3 ata_pci_device_resume +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 0xfa3a0f50 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xfa3ac11e regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfa5eb1d6 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xfa5ec35e pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xfa63ca53 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xfa80f159 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfa97c5cd tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xfaabb7f3 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xfb2e6944 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb541b29 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xfb5f97f6 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb993d24 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc1d13c led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xfbf4dd26 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xfbfb076d crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc0e6b4b usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xfc19bca5 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xfc1d291c crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc34e65d sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc4c6263 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0xfc5b7f1e tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xfc79ac51 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xfc95fbd7 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfcc5aae5 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xfcec8a4d dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0xfd124d81 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xfd14141a of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xfd155be1 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xfd18399b irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xfd30201b crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xfd4324fa __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd5cdeaf regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xfd6b3a82 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd7580c8 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xfd787c40 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xfd7917db blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd7f87b2 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xfd9adfc4 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xfd9d6d84 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xfdae04c0 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xfdc10fc3 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xfdccfc29 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xfdee9f54 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xfdeff926 component_add +EXPORT_SYMBOL_GPL vmlinux 0xfdffed73 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xfe009b5e rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xfe48c22a pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0xfe5b0688 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xfe67d3e9 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe86d7e2 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9b09ae blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xfeae1d01 acpi_dev_resume_early +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 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2ce747 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff6245e3 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff6fb691 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xff7158a2 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xff782f25 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xff7b7e2e init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xff8b3836 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffbc2ed4 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xffc79261 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0xffd6a477 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xffe40942 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xfffd2e46 tcp_cong_avoid_ai only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/amd64/generic.compiler +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/amd64/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/amd64/generic.modules +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/amd64/generic.modules @@ -0,0 +1,4621 @@ +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_fintek +8250_mid +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +BusLogic +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +abituguru +abituguru3 +ablk_helper +ac97_bus +acard-ahci +acecad +acenic +acer-wmi +acerhdf +acpi-als +acpi_extlog +acpi_ipmi +acpi_pad +acpi_power_meter +acpi_thermal_rel +acpiphp_ibm +acquirewdt +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +advantechwdt +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-x86_64 +aesni-intel +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +aha152x_cs +ahci +ahci_platform +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-ircc +alienware-wmi +alim1535_wdt +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am53c974 +ambassador +amc6821 +amd +amd-rng +amd5536udc +amd64_edac_mod +amd76xrom +amd8111e +amd_freq_sensitivity +amd_iommu_v2 +amdgpu +amdkfd +amilo-rfkill +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apanel +apds9300 +apds9802als +apds990x +apds9960 +apple-gmux +apple_bl +appledisplay +applesmc +appletalk +appletouch +applicom +aquantia +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_ps2 +arc_uart +arcfb +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3935 +as5011 +asb100 +asc7621 +ascot2e +asix +ast +asus-laptop +asus-nb-wmi +asus-wmi +asus_atk0110 +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas_btns +atm +atmel +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcma-hcd +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blocklayoutdriver +blowfish-x86_64 +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c2port-duramar2150 +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia-aesni-avx-x86_64 +camellia-aesni-avx2 +camellia-x86_64 +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5-avx-x86_64 +cast5_generic +cast6-avx-x86_64 +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +ccp +ccp-crypto +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfag12864b +cfag12864bfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20-x86_64 +chacha20_generic +chacha20poly1305 +chaoskey +chipreg +chnl_net +chromeos_laptop +chromeos_pstore +ci_hdrc +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +ck804xrom +classmate-laptop +clip +clk-cdce706 +clk-palmas +clk-pwm +clk-s2mps11 +clk-si5351 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +com20020 +com20020-pci +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_pcmcia +comedi_test +comedi_usb +comm +compal-laptop +configfs +contec_pci_dio +cordic +core +coretemp +cosm_bus +cosm_client +cp210x +cpcihp_generic +cpcihp_zt5550 +cpia2 +cpsw_ale +cpu-notifier-error-inject +cpu5wdt +cpuid +cr_bllcd +cramfs +crc-ccitt +crc-itu-t +crc32 +crc32-pclmul +crc7 +crc8 +crct10dif-pclmul +cros_ec +cros_ec_devs +cros_ec_i2c +cros_ec_keyb +cros_ec_lpc +cros_ec_spi +crvml +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +csiostor +ct82c710 +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_cs +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dca +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +dcdbas +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +dell-laptop +dell-led +dell-rbtn +dell-smm-hwmon +dell-smo8800 +dell-wmi +dell-wmi-aio +dell_rbu +denali +denali_dt +denali_pci +des3_ede-x86_64 +des_generic +designware_i2s +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9601 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dp83848 +dp83867 +dpt_i2o +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtl1_cs +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc3 +dwc3-pci +dwmac-generic +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +e752x_edac +earth-pt1 +earth-pt3 +eata +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +ec_bhf +ec_sys +echainiv +echo +edac_core +edac_mce_amd +edt-ft5x06 +eeepc-laptop +eeepc-wmi +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efi-pstore +efi_test +efs +ehset +einj +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +ene_ir +eni +enic +epat +epia +epic100 +eql +esas2r +esb2rom +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +eurotechwdt +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81232 +fakelb +fam15h_power +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +fintek-cir +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fjes +fl512 +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +fnic +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fschmd +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +fujitsu-laptop +fujitsu-tablet +fujitsu_ts +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcm +gdmtty +gdmulte +gdmwm +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +genwqe_card +gf128mul +gf2k +gfs2 +ghash-clmulni-intel +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +glue_helper +gluebi +gma500_gfx +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-104-idio-16 +gpio-addr-flash +gpio-adp5520 +gpio-adp5588 +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-f7188x +gpio-fan +gpio-generic +gpio-ich +gpio-ir-recv +gpio-it87 +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-rdc321x +gpio-regulator +gpio-sch +gpio-sch311x +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gr_udc +grace +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdaps +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hecubafb +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfi1 +hfs +hfsplus +hgafb +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-hyperv +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hio +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp-wireless +hp-wmi +hp100 +hp_accel +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hv_balloon +hv_netvsc +hv_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 +linux-bcm-knet +linux-kernel-bde +linux-user-bde +liquidio +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac_hid +macb +machzwd +macmodes +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77693 +max77693-haptic +max77693_charger +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mce-inject +mce_amd_inj +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-octeon +mdio-thunder +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mei-me +mei-txe +mei_phy +memory-notifier-error-inject +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +meye +mf6x4 +mga +mic_bus +mic_card +mic_cosm +mic_host +mic_x100_dma +michael_mic +micrel +microchip +microread +microread_i2c +microread_mei +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mmc_spi +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi-laptop +msi-wmi +msi001 +msi2500 +msp3400 +mspro_block +msr +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwave +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxm-wmi +mxser +mxuport +myri10ge +n411 +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +nettel +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfit +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_common +ni_labpc_cs +ni_labpc_isadma +ni_labpc_pci +ni_mio_cs +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +nosy +notifier-error-inject +nouveau +nozomi +ns558 +ns83820 +nsc-ircc +ntb +ntb_hw_amd +ntb_hw_intel +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nuvoton-cir +nv_tco +nvidiafb +nvme +nvmem_core +nvram +nxp-nci +nxp-nci_i2c +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +old_belkin-sir +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p4-clockmod +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +padlock-aes +padlock-sha +palmas-pwrbutton +palmas-regulator +panasonic-laptop +pandora_bl +panel +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc300too +pc87360 +pc87413_wdt +pc87427 +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-hyperv +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmcia +pcmcia_core +pcmcia_rsrc +pcmciamtd +pcmda12 +pcmmio +pcmuio +pcnet32 +pcnet_cs +pcrypt +pcspkr +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +pinctrl-broxton +pinctrl-intel +pinctrl-sunrisepoint +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn544 +pn544_i2c +pn544_mei +pn_pep +poly1305-x86_64 +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +processor_thermal_device +ps2mult +psmouse +psnap +pt +ptp +pulsedlight-lidar-lite-v2 +punit_atom_debug +pvpanic +pvrusb2 +pwc +pwm-beeper +pwm-lp3943 +pwm-lpss +pwm-lpss-pci +pwm-lpss-platform +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qat_dh895xcc +qat_dh895xccvf +qcaux +qcom-spmi-iadc +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rionet +rivafb +rj54n1cb0c +rmd128 +rmd160 +rmd256 +rmd320 +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-bq32k +rtc-bq4802 +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-hid-sensor-time +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20-x86_64 +salsa20_generic +samsung-keypad +samsung-laptop +samsung-q10 +samsung-sxgbe +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sb1000 +sb_edac +sbc60xxwdt +sbc_epx_c3 +sbc_fitpc2_wdt +sbc_gxx +sbni +sbp_target +sbs +sbs-battery +sbshc +sc1200wdt +sc16is7xx +sc92031 +sca3000 +scb2_flash +sch311x_wdt +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scif +scif_bus +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_probe +sdhci +sdhci-acpi +sdhci-pci +sdhci-pltfm +sdio_uart +sdricoh_cs +sedlbauer_cs +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent-avx-x86_64 +serpent-avx2 +serpent-sse2-x86_64 +serpent_generic +serport +ses +sfc +sh_veu +sha1-mb +sha1-ssse3 +sha256-ssse3 +sha512-ssse3 +shark2 +shpchp +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sir-dev +sis +sis-agp +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skd +skfp +skge +skx_edac +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slicoss +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +snd-asihpi +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-compress +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-ext-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel-sst-acpi +snd-intel-sst-core +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcm-oss +snd-pcsp +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb-common +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-dmic +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-max98090 +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rl6231 +snd-soc-rl6347a +snd-soc-rt286 +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5660 +snd-soc-rt5670 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-skl +snd-soc-skl-ipc +snd-soc-skl_rt286 +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sst-acpi +snd-soc-sst-baytrail-pcm +snd-soc-sst-broadwell +snd-soc-sst-byt-max98090-mach +snd-soc-sst-byt-rt5640-mach +snd-soc-sst-bytcr-rt5640 +snd-soc-sst-bytcr-rt5660 +snd-soc-sst-cht-bsw-max98090_ti +snd-soc-sst-cht-bsw-rt5645 +snd-soc-sst-cht-bsw-rt5672 +snd-soc-sst-dsp +snd-soc-sst-haswell +snd-soc-sst-haswell-pcm +snd-soc-sst-ipc +snd-soc-sst-mfld-platform +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-us122l +snd-usb-usx2y +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-vxpocket +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +sony-laptop +soundcore +sp2 +sp5100_tco +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedstep-lib +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-nor +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spl +splat +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stmmac +stmmac-platform +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surfacepro3_button +svgalib +sx8 +sx8654 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-hexdump +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +thinkpad_acpi +thmc50 +thunder_bgx +thunderbolt +ti-adc081c +ti-adc128s052 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tlclk +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmem +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +topstar-laptop +torture +toshiba-wmi +toshiba_acpi +toshiba_bluetooth +toshiba_haps +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_atmel +tpm_crb +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_nsc +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish-avx-x86_64 +twofish-x86_64 +twofish-x86_64-3way +twofish_common +twofish_generic +typhoon +u132-hcd +uPD98402 +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +usnic_verbs +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vboxguest +vboxsf +vboxvideo +vcan +vcnl4000 +ven_rsi_91x +ven_rsi_sdio +ven_rsi_usb +ves1820 +ves1x93 +veth +vfio +vfio-pci +vfio_iommu_type1 +vfio_virqfd +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-camera +via-cputemp +via-ircc +via-rhine +via-rng +via-sdmmc +via-velocity +via686a +via_wdt +viafb +video +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocodec +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +visorbus +visorhba +visorinput +visornic +vitesse +vivid +vlsi_ir +vmac +vme_ca91cx42 +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmlfb +vmw_balloon +vmw_pvscsi +vmw_vmci +vmw_vsock_vmci_transport +vmwgfx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vsock +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83627ehf +w83627hf +w83627hf_wdt +w83781d +w83791d +w83792d +w83793 +w83795 +w83877f_wdt +w83977af_ir +w83977f_wdt +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +wafer5823wdt +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +winbond-cir +wire +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wl3501_cs +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wmi +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x38_edac +x86_pkg_temp_thermal +x_tables +xc4000 +xc5000 +xcbc +xen-blkback +xen-evtchn +xen-fbfront +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-pciback +xen-pcifront +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xillybus_core +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +zatm +zaurus +zavl +zcommon +zd1201 +zd1211rw +zforce_ts +zfs +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +znvpair +zpios +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zunicode +zynq-fpga only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/amd64/lowlatency +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/amd64/lowlatency @@ -0,0 +1,18887 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0x7cc39490 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 0xaebffa3c acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0x52592229 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0xc320a665 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x21f6fe3d bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xbb9e7ad0 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 0x10a893f1 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x156ab2c7 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x4aca8ced paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x4ee66c58 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x88131437 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x89d43ff6 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x94b02434 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x9a9ede33 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xcd4afd95 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xcfe6cab8 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xdb887874 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xe8b0b17f pi_connect +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x7ec6fc65 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 0x2c4cc68a ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2d5a9d91 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x37431b52 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x69d93f2d ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9d629ca5 ipmi_smi_watcher_register +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 0x1fb17957 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x71cb3681 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xabe04367 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc2b85715 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x18cf34ac xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x2b242fee xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x766d8425 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x093538da dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x595d140b dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x9a347918 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xbaa5af9a dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xc2f9f1e5 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xf3cd2d26 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/edac/edac_core 0xb73fe8a5 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x034a6968 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0421adac fw_card_initialize +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 0x10c1a36d fw_cancel_transaction +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 0x39edf0cf fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3ae0534f fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3cbd9cb9 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4c5d3166 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4fd41e33 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5b9c3594 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x61cbff89 fw_fill_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 0x66b07aed fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x705acf06 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7d5a8583 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7f22619b fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7ff77a03 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x800bc14b fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x88b40c8c fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x965dafd7 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xac7f74a5 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbf18090b fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc7f69810 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcb61c351 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd28d7e62 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe0307bb3 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xebc9c8d0 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf0e1924c fw_bus_type +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/fmc/fmc 0x0e76582a fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x128659da fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x1937f13e fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x3cd6e4f4 fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x75662423 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x8e53ef15 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0x97ea7e00 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x9cedbb2a fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0xc4b1f24c fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xd0f0d799 fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0xe492f1de fmc_driver_register +EXPORT_SYMBOL drivers/gpu/drm/amd/amdkfd/amdkfd 0xe9a936ca kgd2kfd_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00f805e7 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01230f11 drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x017b9091 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02f3d0d2 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03ab30f6 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04a69dab drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04fee244 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x054894d4 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05e4b997 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05eb5fdd drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06a7442b drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08764b2a drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08aa3338 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a722c76 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aaee602 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b050d98 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b411e07 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bf3d1a5 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f697969 drm_crtc_vblank_count_and_time +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 0x10460813 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12541217 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x141762cc drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1489d96b drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x163055e6 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16dc1083 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17c25ca8 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18520a1a drm_debugfs_remove_files +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 0x1b10b063 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b6cf40b drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c45889f drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c88a30a drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ed51c2f drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f7e9079 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x216e095e drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22055edb drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22795108 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2367a6d1 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23ea21ea drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25165fcc drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25b6bdf0 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25cfdba0 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x267cd530 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27b72cb0 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27efe026 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x280e6f20 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x291aa9c1 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2934c1d3 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a0d834f drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a7c5791 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cfa995c drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d64c963 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e0b4f0b drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30e22f7c drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x311db5c4 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x318983d0 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x327283d5 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3361885e drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x363c4aaa drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37096320 drm_compat_ioctl +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 0x39469cbf drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b6ae0e2 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b8ed52d drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba436f5 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bac1be0 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e39674d drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fca6298 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40c18cfe drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4171a57f drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42d7fb3b drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x437c23f8 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4391ae31 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x456e15ad drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4699cff1 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46b1aa08 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47c09b9f drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47ec3274 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49e3faac drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a4adb12 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a661506 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cd0086c drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0c22ec drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4faa9f73 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51a0fec8 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52532d8a drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52b3733b drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53a31ab4 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53ed3be4 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5413e2e1 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x564976a5 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x568610dc drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56a1a409 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x571d8907 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57580b30 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x583e46c9 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5852ab8b drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b4a7091 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cbccad7 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5eb5035a drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62569865 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62ab03c4 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63413105 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6417ad6c drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x648eb390 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x653e2c4f drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6588ba09 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67b3553a drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x681e181a drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d000e40 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d0f2214 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d34bbb9 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ec800fe drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fe590a1 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x727ec1a4 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72da1b3c drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x736a8457 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73f857cf drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x755b3e43 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76758778 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x778e3823 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a6e9fef drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7aa7457c drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ac93ed5 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b4111c3 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d683cd3 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dedacfa drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fb93087 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fc1f556 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8072952c drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x833c3a68 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8357cd64 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8520576b drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x852f3977 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85a5978b drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87e55a3d drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88200473 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8827efdf drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88c384a9 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d9e88be drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e71fed5 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e8bc436 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f6b32ba drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x909c6b4c drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x910cd78f drm_gem_dmabuf_release +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 0x924f533d drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93160561 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93677a5e drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x944ff8ad drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x957809a3 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95c33737 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96a645b6 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97afcc78 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97e31c93 drm_plane_index +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 0x9c35846b drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cacbe23 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d54ef74 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e31616e drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f3281c0 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fab0461 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fe3d3df drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa028d924 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0381f33 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa047560b drm_atomic_state_default_release +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 0xa2d66b71 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa37f002c drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6c8bdea drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa76fe843 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7b778e5 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7d0502f drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8495be8 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8987ba7 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8dd2e00 drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab8f01df drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabf11c11 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac4808f5 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac5f27f5 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae64b720 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1883869 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb20fd001 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb245118a drm_mode_copy +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 0xb5bb4839 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5f0a65f drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb70cda12 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb71b333f drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7351fa8 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7b5efff drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bf1c36 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8ed3ea9 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9fefe2d drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb7d4b58 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc2c1964 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc03ed9cd drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc091eed7 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc09c7396 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc150a871 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2beacec drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4db8d13 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc56ae410 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5b7a6d9 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5eda67e drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc609c4cc drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc61e308f drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6882f73 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6d09907 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc707a0a7 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9a8f39b drm_pci_exit +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 0xca9e2e43 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcac04ba5 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb5ce898 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcceafd92 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd017f8e drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce27d06e drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcee25d68 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf93b121 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfd88304 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd003dc78 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0bacb46 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd15c1745 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd20b9957 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3097969 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd51825c6 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52a1b03 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd68bbb46 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6ddceef drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6ecca72 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd95004ea drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd980cbab drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda8077b0 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb031d91 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc1c84ce drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde345509 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdea9fbef drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3fbc48 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3d2ea64 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4641212 drm_read +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 0xe5891e64 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6a534b0 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6a5fc22 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7ac28b4 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7ede628 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7f265d5 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe86b02ac drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9860837 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9b0bdb0 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebe9de40 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec678556 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed5c50f3 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee296c81 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef720988 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf01378c1 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0401509 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf047ed73 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0480d2c drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0522d50 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1426ed6 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1524c97 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1900223 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf246bb20 drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf27a64d0 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf35a1944 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3f6e2f3 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4f44d14 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5172f74 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf51c3f50 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf52c777d drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6561710 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6b74d61 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9c91af8 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa48be22 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa85a8e0 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb325563 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc09ea7b drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc78adbb drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc864ca8 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc8f60d4 drm_atomic_async_commit +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 0xfe3b0124 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfec2baef drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0083a7bc drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04a33dc4 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04adce33 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0699e11e drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x078e0679 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 0x0df8472f drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e1ea804 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e7b0804 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ebb89cb 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 0x125541db drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13449cf8 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13a27832 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1577fb23 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x166ff0b5 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e94b5d drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1967ca52 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a3703a2 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bbc9731 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c0e811f drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c35b1f5 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cef8309 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f51c42e drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20b87a70 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20fe88a1 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x224279f1 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x231bbf70 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23b084ee drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27850dee drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c4495f7 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cf942f8 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f5b726b drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f5cdf29 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3123573e drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3634e369 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41756bc0 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x424184db drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4352f739 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x466a8c68 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47415bb1 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49e6b29c drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ac53577 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ce9e478 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fd809f2 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5269f4e0 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53d49443 drm_plane_helper_check_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 0x545376ef drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55963204 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4f3b43 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b0bc4a8 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cdccfc4 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ee6b5a7 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6019ed09 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x620f42cf drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67f35b63 drm_atomic_helper_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 0x71218a58 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7244be55 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x732ac531 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7440bad4 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7490a256 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7644744a drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77270fe4 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78ad48df drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a5b2c42 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80ec5f7e drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x839f91f6 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84493a1c drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84b383f5 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x865c1281 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ac44d5c drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bf06dc7 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bfc9091 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c644367 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d80f86e drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8dc86758 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8eae2037 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fa5c491 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fd577b6 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x938b460b drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97b25632 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99dcab31 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a49c1ee drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a6ae916 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ada31d5 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cbc0550 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0599dc8 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa32d426a drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa412b055 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4a6aebc drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa565fbd2 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5dd57e0 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa67558cb drm_dp_mst_get_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 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa932a20d drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa28f99e drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaaa0aac drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad486b7a drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae443645 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae8b3f8d drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb825ce2d drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb3c4e3a drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe346e6d drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0743965 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0a08ec5 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4576173 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4a72a15 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc81fb92e __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb0119ed drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb1758bd drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcba3b8cc drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfb3aaaf drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfdcc3c8 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd022046b drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd159f1fe drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd32b76d3 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd459580b drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5849ece drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd61df018 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9ae49cc drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb716d10 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde31806c drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe11e6045 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe683c4b1 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6908a81 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6da0a24 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe95e3551 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9e2bfd3 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec0d23f7 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec25dfeb drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed5a38f0 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed9b98f7 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf30e3d4b drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6d6bd65 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8447a2e drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf88e4a70 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8a8fe46 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9b713fb drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa670664 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa9a1163 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfab91cc0 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfac7755f drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcdc5ad5 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe2b0bcd __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffcd751d drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00451a02 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x198f7482 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f154f45 ttm_eu_backoff_reservation +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 0x2689d275 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x43cc4f0a ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x43fbcead ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4675a64c ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4fcf2db1 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5117a59e ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x512cb159 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x52d0e386 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5312d54e ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x551a7c2a 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 0x56d37c3c ttm_bo_swapout_all +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 0x65cfc83d ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69f43c35 ttm_agp_tt_unpopulate +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 0x6ec5413c ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x762a4150 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7815f84f ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x821f4a5d ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836d8fd0 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8465cffe ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85bc1fab ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b376845 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x908d7063 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91bee254 ttm_bo_add_to_lru +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 0x97ab9b15 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x997314cc 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 0x9c7c0aa4 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c83da47 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa62187c8 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa9a7953f ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xad1ae610 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae9ec064 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb1ebe90e ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7c154d4 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbf1b07c3 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbfa4be7f ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc07e65b3 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc22335df ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3102bfd ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3f27384 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4d4618d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc6dd67cc ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xccc72492 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcd9cb0ad ttm_pool_populate +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 0xd80abf54 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd8097c6 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf58c204 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe69cc8bb ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe91670d2 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee790b7d ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf14387c6 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf22276a9 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf322747a ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbed04b1 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfc3d303a ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe206595 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x50eb6f2f vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x96619376 vmbus_sendpacket_ctl +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xdf57af82 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 0x3024eaa3 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x00e69724 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x52f06d5a i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfc3e90c9 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x5ea47016 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xcc304b85 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x5f8168dd amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x02094f50 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x13c8d290 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x141380a3 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x298afd76 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3c9d053d mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x422420e1 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6a663575 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7473cb63 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8e8fdd91 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa468e45b mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xaf6abc7b mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc1242bb3 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc22ebff7 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd0c816c2 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdc3e7ba2 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xee9c8941 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x80bb6c32 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xccdb306a st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1faf7054 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xa2329f42 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x19798df5 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x6e10119c devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x799a148a devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xbb5c9afa iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x03b3caf8 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x0b2987a7 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x790d0cbb hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7e6de155 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8ab27514 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 0xe1821f7f hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x001de341 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x11bb5c0c hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x766b1068 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xf6996137 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0ca00054 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 0x2601b699 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x35ff89a7 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x444ac7ff ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x57631771 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x671cadf7 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 0x8160741d ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc608c022 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc6985315 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x27c3f11b ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4e9b8d7d ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x558fc288 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x6670d315 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x7cf52681 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x2d0edf74 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x499b4983 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x9e618428 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x000c2788 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x00e3d01a 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 0x0cca2cb5 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1aa645fd st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x33a55687 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x42bb847c st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5773c2d7 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x67e5bdda st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x813aa501 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9a410d9c st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xae643cc9 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb505dd9e st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbb6b7404 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe3460fdd st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe9990c4c st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf5483309 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfca2f68c st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x5f431934 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x8ec1cc61 st_sensors_match_acpi_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xc34111d1 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x449d0e3d st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xddbf8025 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x6e668c8c hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x026b061d adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xd889520f adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/industrialio 0x0b0c5a03 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x0ed68c0e iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x34153793 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x3d0aff57 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x5973e3f8 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x63e76286 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x678aee1b iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x77407410 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x89c1273c iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xabeced88 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xb23f1707 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xd69997bf iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe7a1b11c iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xe7afeaae iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xe8613787 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xf9874f78 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xf9f74bff iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x4b99aeef iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x95dc15c8 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x01f16afd st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x469e2ef1 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xc344eea4 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xe9c4f31a st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xf0aabc80 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 0x67a89ec9 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x6848817d rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d9cabc5 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xdaae95e3 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xf8316e36 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x041c7e4e ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1fc31e60 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x24f30da5 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x25d6ab09 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x26a5fb47 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x27ff2adb ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2cf442c0 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4c2cfd6e ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x60b8be05 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x62dbb371 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x674c44c7 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x879ab706 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x88913dde ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x98c18e0b ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa0470fc2 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbb052cf0 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe69414d6 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf54e1328 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00205a1d ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00a17f79 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07b536bb ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0900d5ed ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10060bec ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x126fa0ed ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16e5b4cd ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19535dac ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c0bd90a ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c2773d3 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cf46ba3 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1df87e04 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e93619b ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fb42b4c ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x303a9f98 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31a85663 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3347732c ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x380fbc7d ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a2d404e ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3af1a5b8 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d82eda5 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f996065 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4005a18c ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x447044ad ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a78af1d ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ff64fdc ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52531e4a ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55f4c49a 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 0x588402b8 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58ef61ce ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ab25d55 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d777e80 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f49bec7 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67d60c12 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6823f1fb ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a43ef65 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b79420f ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d6f692f ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ea78a6e ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81272d61 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x836fd867 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x838db442 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x872914d8 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87837366 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a1a0713 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93a5755d ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cc8491a ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f92ccbd ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0bb63ce ib_modify_port +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 0xa7bd2f89 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa990fcfa ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad1ddef0 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadfa3651 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1338814 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1f79535 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb57a335c ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5deee33 ib_alloc_device +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 0xbc89725a ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd5c6174 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc17b5828 ib_umem_get +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 0xc6d539cf ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc74755aa ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8732900 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d47890 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcea06720 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd06e168f ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd14411de ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd36b3468 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4095df7 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5318cf1 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7a2e787 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfada902 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0868f29 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe27a54f9 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2f8a92c ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe632a0bb ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6b65f0d ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9eefe10 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1d54c92 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6e5c40f ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcfaa83a ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd8942b4 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdafabf1 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x0179fe4f ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1009b511 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4296602d ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4c5f16ae ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5eaf0a6a ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x68e34893 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 0x7d4a4b48 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x822a68a2 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x84aa7823 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xcb81ae4c ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe92b67fa ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xeb6801b6 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf76c35b2 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x05f51c4a ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x07e5f35e ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x082e1f11 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x287d1e73 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x3bd75c36 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x59a59f51 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x724b5602 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x99a3dc86 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb41f313b ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd5966249 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xdb9fbd55 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x23a39645 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 0xc7bbb243 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 0x15c70412 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1ad18519 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2b472c45 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2da62313 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2e66f0e7 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x402d0080 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x433377d4 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 0x77a852c7 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 0xa39605b2 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xae83f0e6 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc9b06268 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd3a63b42 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe227361d iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe6e4db46 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xef09cee9 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3fb92aa0 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x51dc3493 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5304f40d rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x65fae354 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7180016d rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x729dddf8 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x879c2fb9 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8d148ca9 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8da1cb56 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x94f968ed rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x97702f39 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9a5bf6d3 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xac7b6cc8 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb1fbff87 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb79997ec rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xba63652d rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc0ffaa29 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc22cd8d3 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc3d26ae4 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc9873acd rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe342748f rdma_create_id +EXPORT_SYMBOL drivers/input/gameport/gameport 0x00df643c __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1ec56ad3 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3670df83 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x63ea2ea1 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x715909ae gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x8411d3ce gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x946bdddc gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa9e26f9d __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb229e5d3 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/input-polldev 0x2e85316d input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x33c96139 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x37340642 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xb8d852f7 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xf2b35a29 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x63ddc1ab matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x0f979254 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x7e9eccdf ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xc2d9214d ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x155bc0fb 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 0x189f1fa5 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x53a0fc62 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x62727493 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x66a9e290 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0xcd951bbb sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xeddfa36f sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x5a41bc8b ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xfa339419 ad7879_pm_ops +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x3288596f amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x44e5e605 amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x4bf3d857 amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x950296f8 amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xddeebdfc amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xfba49747 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0cf0a87f capi_ctr_handle_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 0x2c58f0e7 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x33c0e0b5 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5a40f611 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x667a3a78 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 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x939fa63a attach_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 0xb48592e5 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc1b21924 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcd9129fa capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xea552bbf capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x10edaf5c avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x125c1bd6 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2831c26d b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x283b95a7 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2c79d531 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x337fa9e3 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3833e3e5 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x526d5e21 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x56dad72c b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x606e9e4d b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x72bf9e1b b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa3bc4852 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa5a275b1 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbde37ffe b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc06e1be7 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 0x121bb68a b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x381a734b b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x434f63b7 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x952c93b0 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa4a1805f b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb6046092 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc9932eed t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xcc5259fd b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xed5b8e0a 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 0x2d65e97d mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x57830b42 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7f54e56a mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xac5d1d0a mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xc507d76f mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xcb33275d 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 0x464a2387 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 0x538004f8 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x9fa480e0 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xc1d2dfb8 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xe7571aa9 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xeb573752 isacsx_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x1156626b register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x36110d8f isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xe6b6a289 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 0x0b716929 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x14c7e1ea create_l1 +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 0x240ea260 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x28ec20ed mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2d343b03 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x387971c0 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3b26c8cc mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x40f903ee 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 0x76cb1129 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x81cbc6cb mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x87ee139a mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa2bf83de recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa9e820c8 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xadcb517f recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb0ee46fe mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb9284ec8 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb99f28f5 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbaa4cebb recv_Bchannel_skb +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 0xda2a3f26 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe5b324b6 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe9f12dfc bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf3f8ca58 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfb71a697 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 0x00ac4dd0 closure_wait +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 0x4ae3262f closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x75e7e708 closure_put +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 0x8ed770ad closure_sync +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 0x3de37f01 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x5e1ee2f1 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x7452cc93 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xde4c4550 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x048eca77 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x41735bbd dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5cc40315 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa7c97ea4 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xaea6ee82 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc54d02d5 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/raid456 0xda9582d8 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x04a02640 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0f64a737 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3849e52d flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3afb3741 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x65a1ce24 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6a895113 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7c1137b0 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc2fe5676 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcd65cbb4 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe2c61e0c flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe8c5ebe3 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xed565266 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf644bde9 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/cx2341x 0x0856450b cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1d6bd247 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x49e7b5c1 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/cx2341x 0xf63c049d cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x80470ab7 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x464c8279 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xeb4ad737 tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08c0ecf2 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0ca02bc9 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d3c856a dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d45189c dvb_ca_en50221_camchange_irq +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 0x1bb12dd5 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1c3ee6e2 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2030e9b1 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x23c94395 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x25ae3be7 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2adc2347 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x33e7e4ab dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3405dbfc dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x34733398 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x35b1b819 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x36c0ae09 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4cf3b0d9 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6560e532 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7680a1d2 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8bb18381 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8bcbbafd dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8fcc6794 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa7bc08b6 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xae814389 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb24f5c2d dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb2bd3a76 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb925238e dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8988b7b dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd9cd4ad9 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe83364c9 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeaf47cb5 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeddeb85a dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeef06c69 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf3557fb8 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf8030409 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 0xf84ea428 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc7f00d6 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xb6e3cc6f af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x79371ab8 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xd335e5e1 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x35885aac au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3cf0e520 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x588055a0 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x60e0f15c au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7cddf47c au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xce6718d3 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xecba1058 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf2601e6a au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf5cab6a8 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x8fe959a5 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x4b5dcd73 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x1841c271 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x5cdaa638 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xd7d80ead cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xcbd40437 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xf6102673 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xe944f2ef cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xd7df40a5 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x9c7d4c40 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xbacaeeab cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x24f1e61b cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x531a681b cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xab0b31b7 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xb95902af cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x216bf50e dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x530a1c9b dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x69d07508 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf04ed798 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf5701223 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x13247544 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1dae3e59 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x21fd1421 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2c6645a7 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x33849cad dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4c44f9a4 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5be724f0 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6f728c45 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x70036b31 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb4324509 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc3df4069 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc8faed34 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe59b27be dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe7c0a54c dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf0a2606f dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x7e7fc6b9 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2f6922b5 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3a62809c dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb41d07dc dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc71b3a61 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf5d8491f dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf7f25ec4 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x35a37e8f dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x929825eb dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xb7d83c97 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd47430e8 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xcb3ddda6 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xa82b0364 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0d322520 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x74a1f8d4 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x89c27184 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xa5470520 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xdcb86cb5 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x3ab8dddb drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x557b3e31 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xb5411aa1 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x86ccc6e7 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xcc780ab6 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x6e4bd4dd ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x41a533c1 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x5af11e9b isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xda970974 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xb4d54974 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x194b0ce9 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x7624edde ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xe7360874 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x996a58a4 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x6be6bb38 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x8a37d09a lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x47be3ae6 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xfc09f05a lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xfd350e8d lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x38b0e9df lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x835e8b3d lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x5fb5fbd8 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x94370645 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xd8069333 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xf19644dc m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xc0778983 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xc56b1481 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x8363a236 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x98d2f86e mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x82fd8f43 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x718c247b nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x39237f76 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x9ada961b or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x0e8f827d s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x8ff61ec0 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x15ceef11 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xa1891e07 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xafd410d5 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xafdceecb si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xe38dc4e7 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x73f6684e sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x2043aa8f sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xb94f136a stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x2e773ac3 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x0318060b stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xd03a8bbf stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x4e7da81b stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x2e2b822d stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xa0c4693b stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xa39d5121 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x8dec55c8 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xd4663c36 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x2f54a369 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x26491c97 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xd7050d44 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xdbf6635b tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x7187ca82 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xd0f171a1 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xe4e4d9c9 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xf8c4874d tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xde13be86 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x75fbc22d tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xe3ef7c75 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xaa1bb153 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xb6ba4ee2 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xe5bda702 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x8878006f ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xc492d476 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xf6a8146a zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xe8a6c6d0 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x9c045422 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x29c0cb44 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5623a76e flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8c8b05d6 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x95c8b091 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb29c2de0 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd4fecb0f flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xfd0b9566 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x14ad3bcd bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x15dc56cb bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf51e411c bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf835f68e bt878_device_control +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 0xb15bab00 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xc9599d45 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xef28b373 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x06c009de dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x25ec41d9 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2797a8f9 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x37a3717a dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6db1affe dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x70e089d4 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x748b22dc dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xaf533e05 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb251fde7 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xde602f65 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x20e8002c cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x9ce47df6 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb2c8d8b3 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd2b3a026 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe8759a93 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x11538815 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 0x13069bca cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1bfe770f cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x249a6241 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4ff0864b cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x589536ea cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x62a34502 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x86d18176 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x02e1daf1 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x5fd3fe64 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3a806385 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6a772fca cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xcfad2e14 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xfef01858 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0ac8f9b2 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x295ab47e cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x39a9087b cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x598e1feb cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x87b25a16 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8fd9c7f9 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfe667c79 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x01555cbc cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0a536102 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x15d13226 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2fe69b22 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x44557e08 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x44bf6e06 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4e17ea6d cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4e7b2b39 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x62b27cf6 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x85805c55 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8e10dc7b cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x92763b1e cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x96699fdd cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x97efe9cb cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9d08d527 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xacdd19af cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb1aaf779 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd7d41dfd cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xed8727d4 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf5855ef7 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1158e953 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1ecef07c ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x43c09aed ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x539e5109 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7d5133db ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x850ea8fc ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8c839e6c ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa46726da ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb3463162 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb92452cf ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xca249b82 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd429b1b6 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd9f12cec ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf075fc1d ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf136e155 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf440e20f ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfdbd65c4 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 0x5008cf89 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x60aab82e saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x62f3b7a1 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6e9eda8e saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x80c651f0 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa5e7c867 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc22ae0de saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc4a5b452 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcec64289 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdb9bc1c5 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe4da7aee saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfd545ac8 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x18b128a1 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x0a899c55 videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x583b080a videocodec_register +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x6d588c20 videocodec_unregister +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xf72ae3bb videocodec_attach +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x1e1954ce soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x27a3dee0 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x3ba4f66a soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x3f3ddac0 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x7af4b6cb soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe169f879 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf9c59a6a 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 0x26739a00 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5a8d5b3d snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x766dff7a snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xab2ef356 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xad7a7fc9 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe2e51847 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe65752a2 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x03ce72bb lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x0cfdb0a3 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x20983256 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x23ff9b15 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x424e624a lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x693bf6ec lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xbab7ee9e lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc03f2968 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/rc-core 0x6e8200f2 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xf7e67598 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xf9dded17 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x7c2bc1d5 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x238ba958 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x24ec1ecd fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x62b7627c fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0xa868bee0 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xd46097cf mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xe95ac482 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xd11273a7 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x512d7e68 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x86bca309 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x28827d42 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xbe71bbf0 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 0x9a6e2f13 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xb34c40ee xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xbd2835c8 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x059ac6d4 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x2c4ce6c7 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x175fc142 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1a3f88c6 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x54743d06 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x62a1b455 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x803751ed dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x805250a5 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x87b5e220 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8ce4356d dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa4408286 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3ac60b4e dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x57c13091 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x68ab167f dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc1879fce dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd31eb286 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd9119fc3 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xebd6d6d4 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xed3485aa af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1a7e2eb2 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x47fac93c dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x48cf7d1b dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5097c143 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5c709245 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x86687a8c 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 0xcce75d93 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe844953b dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf60e357b dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfaa00fd8 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfaabed54 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xa21f1ca7 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xade42771 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x428022a8 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4644f7b1 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x58b82ffd go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5aaa14e9 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6477083b go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6c19dad9 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7c416ba0 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xae3933c6 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd1e7c79f go7007_alloc +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x270cbd75 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x68f5d207 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x69bb3ed5 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8c9b1759 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd8a1d5d2 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe86f8dd4 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf1ab57cc gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xfc522816 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xa9b97c82 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xcb6e0ba0 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xd6ee33e4 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x1f73c78a ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x34b4c640 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 0x568e6cb6 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x63374f6c v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x69a1b4e4 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x54ff61e4 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x7060bec8 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x9f5afb86 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x9f810373 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xca672443 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xf68709d6 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x983d60cc vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xff79b878 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x0aa1ddc4 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x49e429ba vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xae3e4f80 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xb7b92e25 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xd6b61fd1 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xfc42bd11 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 0xc7cd9bd7 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x014392c7 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x026aaf61 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0808a973 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f0de61d __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x135e6efe v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13ae0baf v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x147b769e v4l2_query_ext_ctrl +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 0x1be03ef9 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2355cb7c v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x23d14d04 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x245735b5 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28006b17 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x29c8f28a v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d8caeca v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2dd3e9db v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35ed5226 __video_register_device +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 0x3cc54180 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3d67b362 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3e944ee4 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x42858b5c v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4532a12c 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 0x4fcae280 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51b71661 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5356fb54 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x583321f8 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a649530 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x62b8a8b2 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x64c74e6d v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x64efda98 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x675265ea v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68ccb88c v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6db827d8 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6fa2da56 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x70227a49 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x719b4dba v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x741d5365 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x761d77e5 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c55bee5 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7db84151 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f425f71 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83462834 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x84c08ff7 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x882ad9c6 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8bdbbb64 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8cad13c8 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8fab03aa v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x97062862 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x97336a61 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x98af20bf video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa6e70d2d v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaa1cf195 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb7fa86bb v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb8629cdc video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb8f91d65 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb9b11b46 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbf1c11a4 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc90d2a97 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc9c3127c video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd2b45370 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd2e85a05 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd30af696 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc0a8203 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde3e296b v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8d971f5 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb382919 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6fe3a0b v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7367baa v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7cee509 v4l2_ctrl_find +EXPORT_SYMBOL drivers/memstick/core/memstick 0x027a7ccf memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x08017d49 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x289be0c6 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4f944570 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0xab10cff8 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb7ed3a45 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbf64cf20 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf1f5e30a memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf25b96a5 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf2eaaea3 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfcd0c351 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfd09f81d memstick_free_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x04d24d62 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x27da8b55 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4107ef29 mpt_set_taskmgmt_in_progress_flag +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 0x539d188a mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5a6d5a15 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5d6c0913 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x60a630c9 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x695b31cf mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6c6b8309 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x70e5e550 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x71642e92 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x752ddcc8 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d3d1630 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7e09dfce mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8dbdf8eb mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9caa73f0 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xac849db2 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xad1597b9 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbbbdab16 mpt_halt_firmware +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 0xc7debde0 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd2c8d53d mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd7878efd mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdc88ce0e mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xde94332e mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe2aca129 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xec83d8ec mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xef2d8760 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf5d6a8db mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfded66a2 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x15faa5f5 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2789441a mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3707ed2e mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x39ffa020 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x44998ca6 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x584a246b mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5e9ce24e mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6917e85a mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x70050360 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x800b85d3 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x86812ae0 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x90289ab1 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x92850b99 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x977fbfe0 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xae3298bc mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb26cd6ca mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbb92994c mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc170febe mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc591bd8b mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc888dd07 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc89db282 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcfc07310 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd5d282e5 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdb02a5cb mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf34f364 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeeeb4213 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf38b6239 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/mfd/cros_ec 0x1ce8be2a cros_ec_resume +EXPORT_SYMBOL drivers/mfd/cros_ec 0x4f541266 cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0x5838ef71 cros_ec_remove +EXPORT_SYMBOL drivers/mfd/cros_ec 0x791d4e3b cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/dln2 0x00139180 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x4e611e8f dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x6c8e6203 dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x0665db69 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xc712031b pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0b2c570f mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x10cf1b02 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1d3293da mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3be0f6dc mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8d0b5225 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa901d88c mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad166b56 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb2fecf86 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb918f717 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdb779cac mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf02aff5d 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 0x81ac84cf wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x8871b152 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x3a4418c5 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x5b2f9360 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x691528f9 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xf6772ad4 wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x95ee2b34 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xe9fac184 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x13090222 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0xad6ffa2d c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xe50d7c39 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0xc01a4cc8 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xe6cad3ac 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 0x0102841b tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x01d67a50 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x521e2fb9 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x66475faf tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x91d41506 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x9fc5affb tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xab8599d4 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xb86de5b2 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xc8730f3e tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xd019434a tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xd87f4866 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xf3441951 tifm_has_ms_pif +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xecfe93ac mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0263ace4 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0e277e6f cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0e388b4f cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2b275780 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x88267ba6 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8cc03b88 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb13c8ce2 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x23eafc57 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x39defe40 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x780cb4ec map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xe03be706 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x96aa15be mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xf79b6533 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xd0244026 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x0f789019 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xb34fc1bb mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0xc2008163 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0xf888fdce denali_init +EXPORT_SYMBOL drivers/mtd/nand/nand 0x036db064 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x12794ac4 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x19f0929c nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x42d5fa2c nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0x6a8d6a46 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8f00c3a8 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x0723c73e nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xcab4301f nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xe51f478e nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x7dfa4f8e nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x84b1aa86 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 0x1065edee flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x3e57b3ed onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x5fbb5d02 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xdd67dd97 onenand_scan_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x15384152 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1c0c6203 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x33e5f104 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x46d54f05 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7e5898a5 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x93feeb50 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9dffd0d5 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbdb4c39a alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbe7a9653 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfd989646 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x5932db1b com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x704d4fd3 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xdc35c2fc com20020_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x01fd641b NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x252237d4 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2c391fe7 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x63532876 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8cb50cdc ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbb5da0ba ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xceaf227b ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe4794871 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe98b3eef __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf464c8d0 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x9bbea762 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x557bc6a1 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 0x0a16740b cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2fe67c42 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3079034b cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4516d8e9 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5230e33f cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x67b51758 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9c54b630 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa0fd2766 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xac09bb50 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbd7a47f5 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xceddcd99 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcfa52f8a t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd1d1a751 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd8d7c7c1 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe876eea5 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xef603228 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0510f0fd cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0905a881 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x10f450fc cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x11ee8474 cxgb4_pktgl_to_skb +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 0x4a97241a cxgb4_create_server +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 0x5df57fcc cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x63bb0b60 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6e5a28a6 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x77ba80c1 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7d58b391 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x89816d32 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c09f851 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x92972f07 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9b632007 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa9dc4a09 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa2ee094 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xadf204d1 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xae0fcba3 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc8aba0dc cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xce5d28ca cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd148cf8d cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd3720019 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd880b19c cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdaa60428 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd5026b5 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe88713ff cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeb33517d cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf4638fed cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x079d4465 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0ae1d64f vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x22939cf9 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x62691e42 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x78403c63 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa746d68f vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x43186221 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 0xc78b1d7d be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08090759 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e8511d0 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ed508f0 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10b9a8b4 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10d39099 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11de4cf0 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b637f5f mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26a25b8a mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3270af7c mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39c1d4e5 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x433b07b7 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x480783a4 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d1ff1f8 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fbe3c76 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6264b022 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6822752d mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b33bcd7 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d52235c mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f0f6c8e get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82ce6f5a mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x847fba86 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x850d54c8 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c49c92b mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92e9f997 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e285a87 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2ae991d mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb532b973 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb54dba5c mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd72c95c mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc40d2e3a mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6c6da90 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc740a1ac mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccb25514 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdb9a18a mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8cfc448 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdca22d50 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe784ba55 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb67e963 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x038aaeb6 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06c6de70 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 0x0e439b09 mlx5_core_dump_fill_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 0x2bffe318 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x490be264 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52e2a292 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5343f94d mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57ca1640 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x588fed23 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d77d3ee mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x697da57b mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c08a67f mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73039fc4 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e54b7b3 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f87d612 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x917ae262 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a365740 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b22322c mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e3e5a15 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad4e1144 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcab4883 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca350130 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcde02e4d mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1371b30 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdecde864 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 0xe8e29330 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeac808f1 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedbe28b6 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeed28dc5 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefc88b92 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7c2f8b7 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8096f0d mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8cfaa7a mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf91df316 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc2e011e 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/mlx5/core/mlx5_core 0xfcba4728 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff8ca4fb mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff935d6b mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1f8a7ada 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 0x5879ea0b 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 0x62992b24 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 0x82a2e89c mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb8a985c5 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd0b1bd57 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 0xf0bfc533 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa209d1af qed_get_protocol_version +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe627bee7 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1b9b7042 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xca24468f hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf4e40e69 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfd6b84c4 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfe556862 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x1dcb80da sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x27d66c4e sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2e37378e sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x34447d75 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4534115f irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7422ada0 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9282ba30 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb3ff5726 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd2bca4b3 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xef82b31f irda_unregister_dongle +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x45bffcbf mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x4937a391 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x62db4179 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x649af570 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x79bfe9e7 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x867427f4 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xc82d7e35 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xf49de201 mii_link_ok +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x6fd919a6 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xa1e89fda free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x4e4518d1 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x4e90eba7 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x6c37b2c4 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x761eaaa9 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xee52e711 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/vitesse 0x2967c8c6 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x38cbf30b pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x7d1dfd00 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe9ec888b register_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x40b1cc4f sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x06b44f14 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x1e5a36bd team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x20512fc1 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x8d7c9bbf team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xa20013f9 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xadb285ed team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xb6be8ec5 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xf5cf6f0e team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/usb/usbnet 0x53ec5d33 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x80d32f7f usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xbf40420e usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xc82810ec cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/wan/hdlc 0x28041327 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x33e97d17 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3f5a7f4a register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x44d1b26a attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x84175d37 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x99382fb3 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa9a5d918 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xaffb25b4 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb67d1293 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd404a425 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xed7b0d81 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x1ab1e421 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x2bc46bef stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x461a1e83 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xb3aa75f2 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0cfcd005 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x14f57e2c ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x497a7f02 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4e48ed3a ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5ff046f8 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9c306ba0 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa3a6201d dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaf9b3b0e ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbeda1f34 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd35bb8aa ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe3de09d8 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfbd8a35e ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02716875 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2d7d958c ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x32d31a96 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x32f79481 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4379160c ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4b7e1cb2 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x64800ee7 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8bb6bf5d ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x97ce29dd ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa124da32 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa62b552c ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc0c342b9 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe1d43dc9 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe414c98e ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfcc4ead3 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x13a8b445 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x20a6b629 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x214f07ab ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x26e231c9 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x62b64dd7 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 0x838dab80 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x986db0e6 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 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcf502a9d ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd0cb865e ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe7701278 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xead72a52 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0183e5a2 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0cac8a8f ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x193ca9fa ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2196583f 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 0x30e0de39 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3dae237b ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3dc5099a ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x42cb2c28 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5b3f9f8c ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7a7a8c75 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x861e1660 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8db48526 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9650eba8 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x98fcc2c6 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xacf846c2 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb26b4720 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb8f4538e ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd1d3ad9e 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 0xd7ca7b51 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe45a1e9e ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe4fc0208 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf3077e7b ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf6f840b1 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03af776a ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05624047 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0cd3e527 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15359de0 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18aa5e4f ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d281a1f ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1dbed4b8 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e6c60cd ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e978358 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f334edf ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20906e63 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26d1ca86 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29791eae ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bfdfb64 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c1d49d8 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ee407d5 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f4fc358 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32724efe ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39b8e51f ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e933178 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x414b768a ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41cd2541 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45f4ff47 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46e23717 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47248647 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49eee027 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d0f882a ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d5e7b36 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d6cb048 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d8b69df ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x502d04e3 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x517e9133 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5237306e ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5553ca2e ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x587fbdd4 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a6cc5f2 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5aea3cb2 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e247c56 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fd07125 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60a0056a ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6187534a ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62bfa42b ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a5f7659 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b3c315d ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c8df44a ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e7e3076 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f479d50 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70104bb2 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x737ea11d ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76d00959 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78e2861f ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bea4905 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c69ed0b ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d72d82a ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80804818 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x815d0b54 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81642764 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87ea351e ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a201824 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d64ba3d ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8eb1adf3 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9466a3fa ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x962fc346 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x976eba2f ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97ee7f28 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ed5975c ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1871d81 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2c31dc6 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6fc5f10 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa91410a7 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae8c30f6 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1284706 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb202e7d8 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2574421 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb266a6ba ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb281bcbe ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb49d5e2b ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd703d5b ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbda16107 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe90db09 ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbfabba09 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc09380be ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0e69949 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc23e1645 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc568c8f4 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5f65b59 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6f5a826 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd352c619 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4ac2f99 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6387838 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd73bb89a ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9fb0f68 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda61f147 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf6ee521 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf8436d9 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe55f910a ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5bc12bc ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6c617dc ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7cbeaa4 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe87e0257 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeaa7839f ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef60dfe2 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf505370e ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf963372e ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff50a881 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x576f7f66 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x9092fa85 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xf93f0a5b init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0d01b52d brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1e2ab4e4 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x57afb249 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x606a6a48 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7c20d9cf brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9596e891 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb66f9c3f brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc76277ea brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xce0c6c1c brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd35c7b17 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe351d51a brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xf2e90fe1 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xfcda2aac brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x04fb713d hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0d47ac63 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1dc52193 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x21006a63 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x51a0e163 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x54549ab0 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x55de407e hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x56c2c811 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x59274a39 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5d523188 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x637dbe05 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x67e8969a hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6b113e09 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x72bedafb hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x87a02c60 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x88f29309 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9f38a778 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xabbab779 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb05315ed 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 0xb65a479f hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbc333bad hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbcb0ef59 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc51ca652 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xce4ac2fd hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xef430659 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0e7002bd libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1389917f libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x218d3c39 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2bd50de6 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x448a29f8 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x68fff9e6 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7bd94890 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8eda585f libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8f515c14 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xaf51db80 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb94f1ad4 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc8a1f5da libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xcfd239b7 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd600ed21 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd6cdc04b libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xddfef6b9 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xecc38809 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf0c7d71b libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf2f2efa7 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf7457049 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf9a0872e libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x010fa440 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x09b3083b il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x09b8a714 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0a68b34e il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b6f12fd il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0fab7d43 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1094d9fd il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x18517b6d il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x18a43fe7 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x18dcdad6 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x192bb4d0 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1a12bfbd il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1d282d14 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x241c93a6 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x24eb291b il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x26db89c1 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x28a1779d il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x28e7947b il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x341595bd il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x38c7bca3 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a167a8e il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3c503ccf il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d441a23 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d576ebf il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x417c2faf _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x43968f1e il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x46fc3b2b il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x47173961 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x532d1572 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x569642ad il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5874795e il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5b9529a5 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x63230e12 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x68eba1ac il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6b204bdc il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6cb61f0f il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x76dc6a6d il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7732cb1f il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x786ea544 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x790440ad il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7a235eb9 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7c29757d il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7ca18d91 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7dda8c55 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7e60e973 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7ec6fe81 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x80198656 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x80a48967 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x820919cd il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8adf2922 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9173bf02 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x92638395 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x978250e8 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x992f6e50 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x99e2cbdd il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9ab0a676 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c64ca59 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa19212c6 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa6c0250b il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa8151b65 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb06c1bd3 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb10b4d4d il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb2cc11ed il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb4cab4c8 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbc74bca7 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbfd7faf5 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc23d550d il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc723cdb4 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc7afebf1 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xca09be6c il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xca0ca2a3 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc664e09 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcfea70f6 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd0703190 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd15b9368 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd1b7c8ea il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd3582cb8 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdab18e27 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdb12e857 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdc3e318d il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe36ef283 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe5c04247 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe657396e il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe6d09784 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe7382353 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe7adabd6 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeaa68045 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xecc5722a il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xef479dfd il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf0e9d2c4 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf167a528 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf1c24e6e il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf2fba779 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf5ecded8 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf97ba341 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfd08a82d il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfd8d8849 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfe9557fd il_send_stats_request +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 0x13b737e5 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1776dd8e free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1bc0a00d orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x22fc066f orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2579c299 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x268f000c __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x70b04eee __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x777d4842 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x913bbe32 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9f81595c orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc1a7e92b orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd059a9ef orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdcc9ed60 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe34cf751 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe5340c2a alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfa14efa4 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x92007511 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0272aadf rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x05cde8ee rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x09ec6a39 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0a0e5899 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0e7963d8 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0eca6d6d rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1124e861 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1650f375 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x176fe043 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b372aae rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x24ccfdc2 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2ea2ac53 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2fd7fd93 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x32895f81 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33ab4fa0 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34996126 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x40570481 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x40c00ba3 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x431e0bd1 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4b63a37a rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4ecb1778 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6e5edd74 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7a12984a rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x81d8317e rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x89b894a8 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x91bb2cf6 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9f99100c rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa3807e60 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa5665195 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa78e4405 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 0xb9cbb82a _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb9f08bc9 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbac6b101 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbb24a47f _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbbb9aa0f _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbe4181a2 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc5977690 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd8921621 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdec0d930 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe3c7a543 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe7c88ede 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 0x10d26a1e rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb914034d rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc78fbd27 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xe5580095 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x3094b4d2 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4ef7a013 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x63ca05c0 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x95ff040c rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0146a4ea rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x02372c38 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0fde3f83 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b72632e 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 0x21073b99 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x237bfb75 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x27ef5abb rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2fbd36ed rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30876331 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x36825490 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c850614 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e549e93 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x471fef47 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58e21f98 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x59761877 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6991638f rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x714c9eea rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72589ea4 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d970942 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x95c99e50 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc04c9aef rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc28168dc rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6fcf1bc rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8837717 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8efa03a rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf1a373af rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3f5b1ec rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf74d2a5f efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7544d29c wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x96e35fb7 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xaa3a6e46 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb219d8a3 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x3a8ab8cf fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x824d505c fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xfbf86dd2 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x1f3a7705 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x43f2c0f6 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x4a848ed7 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xd08fe9f6 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xf39add5d nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xbe76b342 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xec0b2f97 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x26036a80 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xc1b20628 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xe023deba s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4b2425ea ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5520b7cf ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x599df5fd ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7b04204f st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x820b1c8b st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcabba0fd ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd540cb8d ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe45d6eac ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf08a1acd st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfcd03ef4 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfd8315e6 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x01948804 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1f6d8852 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2d570a74 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x51545a28 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x546ed8f7 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x57bd437e st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7751c891 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7d0d8717 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8c7b6a48 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8dd71812 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x904ac41b st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa6f006a0 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb3da84c1 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc70bc5a9 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd431f1e3 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf4b83dde st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfb20db60 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfdd626a3 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/ntb/ntb 0x1c770aca ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x513f486d ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x7d014e2a __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xa1b74af9 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xa9a5b624 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xcb1435da ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xcc2f6021 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xe097a635 ntb_db_event +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x1372d6d9 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x50a2a6df nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x50b2cad5 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x092dedc5 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x0e4eab0d parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x1245d8b3 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x186e9f84 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x1ac2d3da parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x1c0231a2 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x1e09733e parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x23984c03 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x4631dc87 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x4bd270a7 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4ff40c9c parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x5a03b5eb parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5f18e90d parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x62443b1a parport_read +EXPORT_SYMBOL drivers/parport/parport 0x6bd6b470 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x6f8266c0 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x75f24681 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x861d7331 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x902a29a2 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x9aa8e2ef parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xa81f8ef1 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xb5886b83 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xb9ce0302 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xd00b9b9a parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xdcd5b496 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xe378f118 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xe3e347d9 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xeebf1476 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xf26bb8e1 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xf5433a56 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xf949ccf1 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xfa347387 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport_pc 0x92840710 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xf49363ca parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x00f2a98f pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x112435c2 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1aac72d5 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1c3f5078 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1f870e0d pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x26ee3f3e pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2d25bb26 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3595b2fd pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x50cb5728 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5d7dfe05 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x704562d3 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x78e3fe30 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7f3582ff pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8c74352c pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8d6cef02 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x947a3299 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa2a50b46 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb7db4109 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf4d2d4c1 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0795ac04 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x16a0046c pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x35399786 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x63f16e27 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x66f5802b pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x673b4a61 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6d3ba586 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x94b6c57d pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa30da376 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbfe91365 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd38bf9e2 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x0e53db0f pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xbbda126f 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 0x74139eb8 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x8d77597a pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x981cd3b2 pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0xbee1093f pps_unregister_source +EXPORT_SYMBOL drivers/ptp/ptp 0x5690e82f ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xa3c73a7b ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0xbf7dffde ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xc97b8fec ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0xf5c7aa13 ptp_clock_event +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0cf94818 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2688aed9 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4a14512e rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x82924642 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xa7188369 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb0ddeba3 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb24d1614 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc8c34f46 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd77e7137 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd980e910 rproc_vq_interrupt +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x01cc731a ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x01e0deeb scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5510de17 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5b33cc86 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd86ce7ea scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x02d2fbcd fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0b62dd52 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2ed12588 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5a3d1033 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x60a0e51c fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x729bc40e fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7d26288c fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x88713bc2 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x99639657 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa7bf0857 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe0356e3e fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xee38e4f3 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x04a63e7b fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x093c66d3 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0caf2c60 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x129a27d1 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13c074f4 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x19bf1f8b fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1b1e026a fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1b2401c2 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26f40804 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c0f9ead fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d3254d1 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2fde9938 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x367615bc fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d8d8b7d libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x400bead6 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4117c20d fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42cc6cd6 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x43affe99 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48ffcdf2 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4b0ac845 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ec38a38 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x519561f3 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x52e62d45 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5303afb0 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x58c0b667 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59d4b8b1 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ccc441b _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d3d2d42 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6c89d79d fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e1fd7a1 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ee476ed fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d7c619b fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f2d78cd fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x96959d10 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e7938af fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa06ce5b6 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa48c75bb fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2805c50 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xba017fed fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xba412c72 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf4c89d5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6b45c40 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca2a4a03 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd329ae4b fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7256a10 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7e28c86 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5d2aa4b fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe86274af fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeed8caf0 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf210e477 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x038f0d19 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x39552cd6 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a7ca6ab sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc6537fb4 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2ed51cee mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0031fb9c osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1438b45e osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x15f5c73d osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x25d5664e osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2a911e86 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2ea18b09 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x338ffbf9 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x46913083 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x47f21f31 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4f0c4685 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x513de345 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5614454f osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5ef13ec2 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6880843e osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6a236ecc osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6cb73c87 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6f45cbd3 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x769ffde0 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7bb730e8 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x815b14a3 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x89b45b77 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8d480059 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x92e298cd osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9a5632fa osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9e8ddb82 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa1e0abbd osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa22aecc7 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa31cb2f8 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb9c7853e osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd06bf5b3 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd318adbf osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdd78b1a0 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xec7586c4 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xed498bd8 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xef537233 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf2bfbd11 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/osd 0x07ff0e43 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x175ea3f8 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x1f0d3826 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x691c25cb osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x6c94dfe4 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xf4919889 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0575c8f5 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x12f76c63 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1d7899e3 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2b720967 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x56627daf qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x68a8264c qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6a1346df qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x99372faa qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa04eb2f3 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xda802e0b qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe2a83c28 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf5a90bb2 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x2dba0138 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x48b3e06b qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x4e6ca08e qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x7a448a09 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe17a8b72 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf0b34efa qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x21f6f45c raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x97ef5ec1 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xb48a7d52 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0d13f44d fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0da5ed15 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x103af527 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1254b5d0 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x13b1f23b fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x16644b34 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4c15bacc fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8cfb0a57 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa083bc73 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa915b5b5 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xceea01ac scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xeddf3d43 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf9e42408 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0906fbfe sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x17566ef9 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1bf1e1f2 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x22abe16f sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x433a1795 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x52dca58f sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x53232f47 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x603278df sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x66c3244e sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6f76a953 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x75ef7904 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7b7923af sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fc5803a sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8a2463f9 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x988fedf3 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xad3d4488 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae9e9277 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaf5f4e0d sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaf9aefe4 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb1f7fe22 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbe41550a sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc9e9a1b1 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd03702b0 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd907a781 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xde8de45d scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe57e0563 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf0e01182 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfbd084e7 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7147c1f5 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa2491171 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xbd4f5cff spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc759f0a4 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xdf149c14 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x30236c63 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x546bbc8e srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5c52d0cc srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x63b2499e srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x337238bb ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x4c9f9964 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x5cdd3bd4 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x70f79f72 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x73874e1b ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x9fc9ed73 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf905f32b ufshcd_runtime_idle +EXPORT_SYMBOL drivers/ssb/ssb 0x0b924563 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x1fdfdb35 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x36edeeae ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x3ae861e7 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x3b5f869d ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x4abe576e ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x4dc157f4 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x547e88fe ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x5abc562d ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x630d88db ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x72102bb6 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x7b2b70af ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x7e9e68bd ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xa103c440 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xa3c4b41c ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xbff09f43 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe330d9ff ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xe65f7af3 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xe93ac2cc ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xf11e7201 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x07afc7f5 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0d29a3e8 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1b139d89 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x28c07532 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2e549b85 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x35e45acc fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3c0f4621 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3cfdd718 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x533d1490 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x58ac9765 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5de1bae8 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5f97fccc fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6c8b0a0c fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6cec03ad fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x73dd8ef5 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x81ee74b8 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8cfee750 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x90f4f7a7 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa552f421 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaa3b84d1 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaadb4d15 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe423560f fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe92b11b0 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf4340b05 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x557e71a7 fwtty_port_put +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x710420f7 fwtty_port_get +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xcfc81166 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x6e41d3bf hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x878d185d hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xd60603c0 hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xec7be680 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x53164bd6 ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x53a7dac9 ade7854_remove +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x99fa0cb7 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xae1eadcb most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x014f7fd4 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x141d9c88 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x14327fa4 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x16cbcb72 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x262cc6ef rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x26e12cec rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x287081d5 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d2d7af5 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x353bdc87 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4145c216 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x425b1130 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x427f8102 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47bf6902 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4a0ca9d6 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54e591f0 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5f0b23ca rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x626c703b rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63d28a5a rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x643dc3d2 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6789d461 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a91b755 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6dc97399 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7460d006 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x77855e81 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80b66ed0 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80f90785 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8116b3fb free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x822a5265 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x844ffdf3 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8d9d4847 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa20dbf23 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa87f5369 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd5cf469 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd9350dc rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4795ffa rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc62229b6 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc8169e06 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb3dfe99 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd25b1a59 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd45bb4f8 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd9267de7 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xda37be26 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe234cf25 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe5271acc rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe699ffc7 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb34f77c rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xecf722b1 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf48a4fe5 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe939be1 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff219bfe rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x026a6d00 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04aca02c ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0876ba0b ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d4b29c5 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x11206600 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x14663fc3 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2093b022 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c7f61ba ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x30b85fd1 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3719751c ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x392a9f74 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x39890cdd Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3d5c05d3 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x41f1a673 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x48c20c0d ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x55e2a1ff ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x58c465d7 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5902ace3 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x591f959c ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5fa9bc48 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6442136d ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x64970230 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x67919030 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x80d31607 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x878068a9 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88007436 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8acb6d40 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x927b55ec ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9be27ee0 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9bfb1719 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9d560349 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ec71dd0 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa3717a85 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa3c273db ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa49ecf20 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa54f5d30 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xae2629d9 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xafcbe7b5 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1d056e0 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbccf5b21 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc503704d ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd02fa916 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd1f4595d ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd217c72c ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd481c9ad ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd7eb57bf HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe32e4972 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe348acb3 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe5a60ab5 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe864803e notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeaddab19 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf15b0446 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf2370c99 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/unisys/visorbus/visorbus 0x58515128 visorbus_get_device_by_id +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0e2de50d iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1354cdca iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22be2824 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x237a8417 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2450e0f1 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2725244c iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x29a05611 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x319c0bfe iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x41fa5eff iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b823167 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4d00a4af iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4f0e3717 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5186b87c iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x51ea484b iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x524f550f iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x54d2a8d3 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x553c67bf iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5843fd16 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x703f453b iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x73dcf81c iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8034293f iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86fc3d48 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b0a6b86 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5b898e7 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb551f69b iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb5709d29 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd576e1b iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd8369874 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x06a95aff target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c9e8de2 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x14a08eb3 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x2412b4c6 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x2463bc20 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x289ac8b9 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x2cdc9a98 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f28449d target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x33596627 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x335e4e1e transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x34ebd83f core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x370207a7 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3db167c3 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x42bdc720 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x435e4a9e sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x493c3034 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x4b5b5e8b core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f56bfac core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f83bc75 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x53622d2a target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x53b888e2 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x53d8ab1e target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x547681b9 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x547f5ec8 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5622749b target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x563b28ae transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x569d72bb spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x5a3b5a33 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f8721ba target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x6258a217 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x648ef044 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d01a3b9 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x712360e4 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x76c6b36b transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x785dad82 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e32a422 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x81d7d911 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x823bef70 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b8bc451 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d4f0994 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x9262edef target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x98a553a7 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b128b15 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1cbaccd transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xa32d3f5e target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xa59f6557 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xa5b8f75c sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6b064f1 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa84c8740 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xad33cb9d sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xaef9dffc passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xb261fba2 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb673d19d core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2a32e69 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2da8268 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4c78727 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xc568f19e core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xd643ddca core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb7cb5aa target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe1d7f26f target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3128d76 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xece4d59e __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf29c4d6e target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2a74c97 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xf787bfc4 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xf796db59 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xf9d4faa9 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb6aaa2c target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xff832199 sbc_attrib_attrs +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 0x85a83e31 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x34fb3aa2 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x3f585fc4 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0e6e0c6a usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x49b8408e usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x50f17759 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5d6f086c usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x615e95b8 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7aef90de usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xac54d72e usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb00d33f6 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb90355d1 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb9ab4b09 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc05fe445 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xef3eaecc usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x1e61afe4 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xecee2c05 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 0x024fe976 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x6ad150ea devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x84d8a896 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x89dcdcd3 lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1aa27efa svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2d289935 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3cd19525 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3d88c66d svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa01ea57d 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 0xe8573090 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xecb9fbaa 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/core/syscopyarea 0xe7b7d4a5 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xe7cfabc7 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x9fdad999 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 0x71dc103c 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 0x5f916a4c mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x450d944d matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x54ad0a77 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xff42a5ba matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0d78520f matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1929dc51 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6448e86e DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7f34d6ed DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x51210f2e matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x646d12ff matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x39318690 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa01cc619 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa3e35d97 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf51bf8ec matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x57560804 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x5f37072b matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x313b63fa matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x34f22027 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x37c9006a matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x528c906c matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa54487d9 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x38e895de 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 0x39b9fc15 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xa6e44d8b w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xa74c6060 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xf198b493 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x6aa3c2da w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xd6c20028 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xd5ef5fe7 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xd81a4422 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x13a19204 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x651881cb w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x8c736553 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xc6475f7e w1_remove_master_device +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xb5f20875 iTCO_vendor_pre_keepalive +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc4f657bf iTCO_vendor_pre_stop +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xdc6effc9 iTCO_vendor_pre_start +EXPORT_SYMBOL fs/configfs/configfs 0x0060b3a6 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x0a9548e4 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x1567df3f configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x18860b43 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x2f394b2c configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x3cd678b8 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x5b2d7994 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x70ba3ceb config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x7ed3e100 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x805598d9 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xa355c678 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0xb7fd018f config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0xd01cbf55 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xd6989fbe configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xe42b19f4 config_group_find_item +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x465dccac ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x46c25b7a ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x4f430bf9 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x6873e60d ore_write +EXPORT_SYMBOL fs/exofs/libore 0x941584c9 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xa5c07df9 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa6cb9583 ore_read +EXPORT_SYMBOL fs/exofs/libore 0xa9e0dad3 ore_create +EXPORT_SYMBOL fs/exofs/libore 0xaa71e568 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xdc9a7c8f extract_attr_from_ios +EXPORT_SYMBOL fs/fscache/fscache 0x039b7f63 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x0cebad11 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x0f73bafc __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x18984172 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x1bab8905 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x1fc22ddb __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x2eeb8ea9 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x37083026 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x38144f5e __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3ecaa0a4 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x43d4843d fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x54a79cb6 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x5be995d6 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x62f4f5a9 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6fb2fbea __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x71057cae __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7b418268 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x7fe35375 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x8408eab0 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x864b62aa fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x8bcc8a7a fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x8c0d0722 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x94519e17 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x9ce23271 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xa4a4bc88 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xa61940e1 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xa9203b51 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xaa28fb75 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xaaf850d4 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xb0631e6c __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xbb56715c __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xc317d67b __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xc7e3006d fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xce80f25c fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xd2717f97 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xd649eaae __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xe0c10a1f __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xeee2a359 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xf0651977 fscache_op_complete +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x29e8d935 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x738b9fd0 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7d16f2f5 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa27e1691 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xea61ecf0 qtree_delete_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2ef60594 lc_seq_dump_details +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 0xa20f2249 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 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 0x86a3703a lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x994a4522 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xf95a0527 lowpan_netdev_setup +EXPORT_SYMBOL net/802/p8022 0xb163d703 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xe281d800 unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0x75e15e1d make_8023_client +EXPORT_SYMBOL net/802/p8023 0xbaaefdc3 destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x7d2a1bf5 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x81523b91 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x028a07aa p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x09ebc695 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x0dff9b96 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x13b94cbb v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x16613d27 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2da4c50b p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x36c53979 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3daabbab p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x44966bf0 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x46fc3d42 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x4a50ccf7 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x4e35920d p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x545e7036 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x62ac0f9b v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x66132f90 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x676ffe4b p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x6dccafac p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x6ec3315f p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x7f738897 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x7fbfa19b p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x84960115 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x871d5713 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x8b8d9d97 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x8f73a96b p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x8f76d88d p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x90f66a5c p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0xa35bb98e p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa7883aa0 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xaec553c5 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xb93b4e69 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbe3c8689 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc92e7241 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xd25d43fc v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xd2fb2b2f p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd74d98e4 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xe57f56c9 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xeb9d8bf5 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xebc8e0d7 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xebf1f18a p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xf3ce8919 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xf97c404c p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x74473b6e atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x80f36d00 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x97312e0b atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xfee71fce aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x0c3df260 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x1b395a5d atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x35d816f4 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x4b02aea0 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x5040cf27 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x623d44be atm_charge +EXPORT_SYMBOL net/atm/atm 0x74875462 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x809352ca atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x87987e49 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x8ddbfc86 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x9a1a948e atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x9afb1694 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb546d06e atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xb6969102 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x56e92a10 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x5eefca08 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x6ca2d3e9 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x6da86259 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 0xbfa8daae ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc3b53aa2 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xecdd23fb ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xf7de2e09 ax25_header_ops +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1481996b bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x193fbb6f l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1cddfc92 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2bc00a34 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x326795ce hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x33e91518 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x36ae81cf l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x372698cc bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x38a57ade hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ae7e8ce hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3b892046 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x42791b90 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4828fdfd l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c8f37d8 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x514ea760 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x52b4b10d bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x537d175d hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x58cd7bea hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5edceae0 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6410e288 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x65618930 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x677a34be bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6dc8904e hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6f13b564 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x74d3d558 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b1531bd bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8884b810 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9c8c2aed hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa735da53 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaa6cc542 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xae3d908a l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbd78ccac bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc97b9388 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd45a5b1d bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd5b36719 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd717fc84 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xda283aff bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdf99aab9 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf0dee3bd l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf4ee61ae hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfe97f84d bt_sock_ioctl +EXPORT_SYMBOL net/bridge/bridge 0x04d2a997 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x54036abf ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xaa5aef24 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xcb19dc2c ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x209c2d14 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 0x39f70144 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x63d9ae3d cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xcdbcf8e1 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xfa0b1ee7 caif_connect_client +EXPORT_SYMBOL net/can/can 0x03ad97e9 can_send +EXPORT_SYMBOL net/can/can 0x184edbfb can_rx_register +EXPORT_SYMBOL net/can/can 0x30264ce8 can_proto_register +EXPORT_SYMBOL net/can/can 0x454a6148 can_ioctl +EXPORT_SYMBOL net/can/can 0xce8b6036 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xf64d1b39 can_rx_unregister +EXPORT_SYMBOL net/ceph/libceph 0x01f1a3a8 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x03e2066c osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x089bd63d ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x08e9909a ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x098c8451 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x0abdd569 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x0ee9cec9 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x12688305 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x1980c938 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x2064a39b ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x20d5374a ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x27df1d1b ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x2e85b897 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x30b1214b ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x341b2504 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x357d8bc9 ceph_copy_user_to_page_vector +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 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 0x4419b3e3 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4f864fcf ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x51fb9750 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x52c4769a ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x54181286 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5af00c9d ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5b69d104 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x5e159f37 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x60b9aead osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x6119a66d ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6a7b14ce 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 0x705dbcaf ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x70613fab ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x7c12304d osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x7de50d95 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x7e86f434 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x8cb863e4 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x8e81a5c2 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x92b28797 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x99ca281e ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9c19f34f ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x9cc814d7 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9d0667c6 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x9d28cc4d ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0x9ff4af6d ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xa016df8c ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xa8626910 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0xa9283439 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xab0d37d3 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xaf429687 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb0d37d1b ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xb1031e80 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xb2820a3c osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0xb2e38dd1 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xb51e3cdb ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xbd1a9034 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xc024d364 ceph_oloc_oid_to_pg +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 0xca050fea ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xcae27121 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xcb4afd18 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcbba24f0 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xce03f8a2 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd6ca3785 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xd6edeebb osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xd7729f46 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xdb5d898c ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xdebdb66a ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xdf33f2eb ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xe158d745 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xe3a6fa5e ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xe4f84a0c ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xe99b8fb1 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xea8bdccc ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xeadb26db osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xef906f95 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xf02d5f03 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0xf0524de5 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xf2329c82 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf368111f ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf57e7caf ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xf6a0d3fb osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xf6ea0721 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xf8fb12f6 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xf92696d7 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xff9df5df ceph_create_client +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x2e04f8c9 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xa949feb2 dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x32f041fa wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6653a2cc wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8b4e825d wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc1b6b93d wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xdb9a3367 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xdf6e18d3 wpan_phy_for_each +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x88cd291a fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xf92b0b04 gue_build_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x12f1d1d0 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1b0493de ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1b762050 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5d8b2ecc ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5ddc9de7 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xaae19ee6 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x20f94227 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x68073133 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x95f9155d arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x137760b9 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x739c98e8 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8a77ae5a ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x37fb7cc6 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x611ccd54 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x0560e31d udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x12ad6cd9 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7a5ca850 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc45ca51c ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe91556cd ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x012f72a0 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd3d219fa ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xdcc1a7c5 ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x3a1a73d4 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x633a325b xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1fe140c2 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x9ac110f8 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x15f01201 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x304b0df0 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x45f2c715 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6814735d ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6988da76 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x850bb0e7 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc78902fc ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd30edd1f 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 0x07d47914 async_wrap_skb +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 0x1240ba96 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x1aa89b53 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x1e4c4884 irlap_open +EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object +EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x3c0b791d 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 0x4b18ffaa irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x4e50de63 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x58c193d1 irlap_close +EXPORT_SYMBOL net/irda/irda 0x5c0046d0 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x70a3f20f hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x79b8256a irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x7a20367f async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x7e78fd11 iriap_open +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x852335f4 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x8a8c9b99 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x8e704a04 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 0x9a6ab87b irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert +EXPORT_SYMBOL net/irda/irda 0x9fd191ec irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xa15d34c7 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xa3126bfc irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0xa6292613 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xa6cb2307 iriap_close +EXPORT_SYMBOL net/irda/irda 0xa84f90a1 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find +EXPORT_SYMBOL net/irda/irda 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 0xc539bab7 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xd048fc51 irlmp_connect_response +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 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 0xf744d3ed irttp_dup +EXPORT_SYMBOL net/l2tp/l2tp_core 0xd92a9a43 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0xf6adbd83 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x340f1ec5 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x806cc5f6 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x8e0aa671 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xa4fe74c1 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xa7a9f649 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xc1c2bd18 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xf9f846c2 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xfe2e4c4c lapb_data_request +EXPORT_SYMBOL net/llc/llc 0x09d9656b llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x1fdd97dc 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 0x9bf28615 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xd5d164f4 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xf3da751e llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xfd9a60e0 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xfe5b474d llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x007bbf4e ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x00c8a454 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x01069df0 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x0441b385 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x0674285c ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x0d02161b ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x10b634f9 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1200c683 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x1b3e550f ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x1cf8c145 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x1e70ccfe ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x1e9d18e3 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x2069440c ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x27d65339 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x291c72da ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2b482e1d ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x37578dae ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x3b4c777f ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x402db24f wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x4388e69b ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x47362f32 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x49073bad ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x4c237581 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x4c62f01f ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x4d92ab98 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x4f140453 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x5203a0f2 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x5a1a0892 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x5a1c56d1 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x5b5fd609 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x5d7bfd5e ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x6083d844 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x61d5ff03 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x64b53d1a ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x679a66f2 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x68e11b1b ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x6abd2bd6 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x6af72697 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6cb10f09 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x6cf5ceaa __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x79f99b4c rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x7db3cb89 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x8423b216 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x849010a8 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x8c3b0733 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8d5380bc ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x8e5f25d9 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x9798e20d __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x992963df ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x99d0c64f ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x9d11dab5 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x9f863d20 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xa63348b4 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xa86e41cb ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xa9615974 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xaba421fe ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xac544bea ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xac66dbd3 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xad397517 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xaf31e988 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb8731a10 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc16f805f ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xc711a353 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xc92aa3a4 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xc9e3b4c0 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xcb294ff3 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd8998d2e ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xdf8aa668 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe04141ce __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xe1f79173 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xe666a3e5 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xe97fe3aa ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xeccaa592 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xecfe4bd2 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xef84d32c ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xf11b7382 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xf8d36499 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xfa3665ac ieee80211_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x35b4fe4c ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x3f69e3ec ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x6fbdc89c ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa018d67b ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xabeccd39 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xb746eb1e ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xe4cb7b0a ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xfbca6385 ieee802154_stop_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x16c4bad8 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3fde3002 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x40a73077 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x472ecd57 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x53370312 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x55882052 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x639715da ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x81321e5b ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x89cee83c ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcb6d11bc register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcd916c93 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd34c8a81 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe9289c4b register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xff6ea8b6 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x5237def0 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x8314586d __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xe14e589d nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x46ee1da8 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x7b07b7e7 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x7bbb2ef3 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x95902be4 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xdc06b4c0 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xe7fe3adb nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x258cae34 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x4503b396 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x46b57ca7 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x8180e6d8 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x8c24777b xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x95999f4e xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x97d5b0b8 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x9b6647bc xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa209eab2 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 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xfe452018 xt_register_match +EXPORT_SYMBOL net/nfc/hci/hci 0x18a9b851 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x27c291ae nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x36c12f9f nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x37f9a046 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x3a36b0f8 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x3e618ed5 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x4c5bebfe nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x5286b4f5 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x546e0a03 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x61b333e1 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x71dcf1b3 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x7701834f nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x88fd1227 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x8f7c7f3d nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x90fa2bcd nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xa9e9f9ae nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xb4192d61 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xc2eb51d1 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xc87c8f9c nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xde879ae4 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xfab5fe23 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x0516ea43 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x0d7aa9bf nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x18742c1a nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x1b2dae0f nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x1db2eabf nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x28e402b1 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x333f34f1 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x370d4df5 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x3ea0a639 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x42cb64fc nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x5233bf17 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x599cf12f nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x7b14158a nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x7d0f6d5b nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x81ae9192 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x9721653f nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x9d1252aa nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xaadd2dc4 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0xb2b75c61 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xb538afc0 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xba9a8177 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xc1ae9145 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xc571013d nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xcbd31408 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xe1a19c49 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xeaa679e8 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xee5f6662 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xf5c6c56d nci_set_config +EXPORT_SYMBOL net/nfc/nfc 0x10e1d079 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x15e8e55c nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x1780964e nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x21294101 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x347d9a5e nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x4c1b7be2 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x503a1303 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x52593287 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x5a5c1b5d nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x6c2f3dae nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x72749e87 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x7669b40a nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x9003712e nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x9087b87b nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x9f9f14a4 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xa153ccea nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xa16f8ff4 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xb11aedb1 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xbda777ef nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xc087393c nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xdd360aa3 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xe2f3582c nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xec50ef05 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xfcf2de53 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc_digital 0x02c0a8b2 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x3878f38c nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x5af1c82a nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x8a0cf0ed nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x2fd8103d pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x59e3ad0c phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x62870b46 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x78b3a674 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x89bc94c0 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xa6a578cf pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xab8fbdfe phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xf9a017ac pn_sock_get_port +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x06bbadc5 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x14a913e3 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x38df5ddd rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4a38cbe0 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6044dd50 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x67b5632d rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6f718079 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7a045523 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8d5ff2f0 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x90371a64 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x92121180 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd93571c6 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe5bb51a5 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf9714a35 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfab84910 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/sctp/sctp 0xd092184a sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x3ff22aa1 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd1ccd907 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xfda780be gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x2861983e svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x3ea419aa xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc7d0a3e4 xdr_restrict_buflen +EXPORT_SYMBOL net/wimax/wimax 0x7b48d848 wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0x91b0ab25 wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x05cf2abf cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x072da52e cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0c5507e8 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x0cf2e006 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x0ecc5c70 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0fe93f26 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x150a831d cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x162d2bae cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x165a9224 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1ec93234 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x21fea0b6 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x224910ea wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x250e73f1 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x26c51d74 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x282631f8 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x384cc4f2 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3d98e803 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x40617a95 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x45a928cc wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x490022ac cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x49039d75 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4de34af7 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x4dedbe20 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x50e6613c cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x51ed698c wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x53cc2e75 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x5b2f0dbf cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x5edbbedd cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x60f52c92 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x613eb01a cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x6210f926 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6e0807a8 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x6e6a7cf8 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x709c2a1c cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x72571a09 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x75bcea91 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x76b984e2 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x792fdc85 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x7baff9a2 cfg80211_sched_scan_stopped +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 0x865f5fa0 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x886163e0 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8c61b08b cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x8de0d959 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x8eae3c16 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x9369697a cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x9410a40b ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x94de411d cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9fbe8922 __cfg80211_alloc_reply_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 0xa39ca0cc wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xa822d8b0 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xa92884c8 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xa9faa64b cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xaa270083 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xadf76162 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xb55c82dd cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xbd9f64b0 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xbe2c3be2 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xbf61e413 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xbfcfad3f cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xc28c0aeb cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xc3c16e47 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc824211f regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xcac4ea8f ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xd0c0be51 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xd1441d6a cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xd21bc17a cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xd4782f6f cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xd50420c7 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xd7604801 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xde49ac4b cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe0b88adb cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xe50ee0f5 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe6e02adb regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xe7ca9dac cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xea037c66 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xea6d7435 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xeda258d3 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf31f34cf freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xf7f54d69 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xf8118e24 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xf96d9e72 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xfd9bb054 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x26459724 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x2b7e8a91 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x387a64a2 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x6808ca73 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xc862ae4d lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xd41e7cc7 lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0x6e304dea ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x2ba4d1bc 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 0x1aaef3df snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3dd12848 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 0x61250331 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 0xeda5d59a snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 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 0xdfc61446 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 0x3431cc31 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0206e4c9 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x0b98a9bb snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x0f04a5b3 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x139bd94e snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x18574641 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 0x1e719955 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x1f1e2a01 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x2307e57b snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x24ba455b snd_info_register +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x2ba62e7a snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x32a05099 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x440b5a4e snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x46869e8d snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4cfb4429 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x54b5aa9c snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x5694620c snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x5f4e3018 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x621a29ab snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x68f7bcce snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x6de38572 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x6ef89ed5 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x705a71db snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x7482ebc5 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x783a5c1e snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x84944b51 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x858a6cc7 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x895d5861 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 0x93f05880 snd_seq_root +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 0xa1e04d17 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xab42b9e6 snd_device_free +EXPORT_SYMBOL sound/core/snd 0xafda20c0 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb9b67e54 snd_cards +EXPORT_SYMBOL sound/core/snd 0xc147f878 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xc1d6392e snd_device_new +EXPORT_SYMBOL sound/core/snd 0xc1ed7449 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xcc533d0e snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xce6abe55 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xd5c8747c snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xd7c2a4d4 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xd966da7e snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xda048618 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xdf48c128 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0xe4414884 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xef80e3bd snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xf35f521e snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xfb470274 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xfe8705ee snd_card_register +EXPORT_SYMBOL sound/core/snd 0xff637dfd snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0xa2c6eceb snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x02ca786f snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x066d3078 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x072f1f6b snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x08285ea2 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x261f12a4 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x27235798 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x29f71255 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x2a21d4bb snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x2eefe304 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39441ff3 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3adca7ac snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x409bc0d8 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x410de68f snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x4b60ce24 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x4c8424be snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x4f16bb35 snd_pcm_sgbuf_ops_page +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 0x53350443 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x572c9569 snd_pcm_new_internal +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 0x5eb60f26 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x65884d09 snd_pcm_lib_read +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 0x719ff1e3 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x72d30321 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x772e64e8 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x7ec00905 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x85386dbd snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x8ed6b1da snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x9129e474 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x98fba0f3 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9cfbdcd1 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xa19751b1 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa8038cad _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xa9018eef snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xab30c1f9 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xb2322290 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xb26b536f snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xb3195626 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xb84223ab snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbbea6da3 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xbde996f2 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xbf51385f snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xca34c226 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xca999bff snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xcbd1efeb snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xd36953e0 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xdb2e4a64 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xdc443efa snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe8b94d3b snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0xf3f4e8e7 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xf5a4d9fe snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x07de02ef snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x09df384d snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x18edcb3f snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1cda2927 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1d9cbeb5 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x254059da snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x32550b87 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3d41c3c8 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x406a32cc snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4373f61c snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7d5b5c90 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8ca8d896 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc296b15e __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc57120b6 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcb8cc12b snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd3c8cfac snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd73d0095 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf66e0dd5 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfebf07d1 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-timer 0x25d75f23 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x6f5fa491 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x77da57bf snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x83a324b8 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x87daccd5 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xb737ba63 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xc35985d9 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xce602ea0 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xd4b7c058 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xd5b370af snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xe053c33f snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xe6166e79 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xfc948094 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 0x92511e5e 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 0x00cdd609 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1e85b9ee snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x584ff064 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x69a02956 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6fb9e440 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8792e7a0 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc302562e snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd3738b82 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdce8e098 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 0x2ecc9f93 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x30aaa5dc snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5b7952f4 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x63c94bf5 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6f79b6a3 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x793f2d6a snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xecbe9e61 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf651e96d snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfba9fc95 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x19609c94 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x22456c5e fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x259d030d amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x27163a82 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x27cff2ca amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f204b39 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4744e633 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53205fde fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x623c7bb5 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6555a619 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6947b6c9 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x699997c0 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6d927b06 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x701f79f3 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x76fcb1a6 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x77706a68 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7ccc01f5 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x80649f1d amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8733a199 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8b34e4d9 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x91c71444 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x94428c7a avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x94d9b128 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9e432c4e avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb6e3d9d2 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc1355ef1 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc77bc6d3 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd39ca1c7 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd5905db6 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd699fab1 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd9245beb fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf0e8b2a2 amdtp_stream_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x746e6c31 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xc843ce29 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2a269255 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2e37dd67 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3bc1d8eb snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5278a901 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa2fcf684 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbbd32e3c snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc9d16c29 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe88c348d snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x01002c84 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x25ba1ef5 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x26942c5a snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8666d925 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xb8c7c6d6 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xd9ed7303 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x47448a59 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x683a7f71 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x69b40a5c snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe6718494 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x773e1876 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x93397345 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x527ed9e1 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x858c8e24 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa1bb234c snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xae24faef snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe102d4fc snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf19fa747 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x075ba384 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x481ed0d3 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7d149c57 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x82215118 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xbaf5a87d snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xcf053646 snd_i2c_device_free +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x09c6f684 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x477000d8 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4b414b8f snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4eb99a4f snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x53b767e7 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7af4f94c snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7b08f423 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa5351df6 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd76c3a40 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfe802c14 snd_sbmixer_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x23cb1a69 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x24549b71 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2c721450 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4170be5d snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x674def99 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x791b68cc snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7e3032f0 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x90b8c583 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9774f63a snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xad759aef snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb1368998 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb8038af0 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc07ccc28 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe4502215 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe48af35e snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe5f9f62f snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf5165879 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x6353fc8d hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1187c45d snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1e4ee100 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5211c74b snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5d760842 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6a678e44 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6e13e147 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x748a5cf8 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xcead80b4 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe6d5b456 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x182c41c8 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x9a5e3573 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xffafe5b3 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0b616594 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0dfaef6e oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2171ff61 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x21f8cd78 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x26abd678 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x407dbf23 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x514d942c oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x627c0aca oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6df5ce37 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7dabd68b oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8414b577 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8a2f859f oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9ffc900d oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb3d0abdb oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb462f208 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc036ec44 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc4dd80a1 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc51cd99b oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd104dc96 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf4a3b84a oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfcb27117 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4d8be756 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7af3c030 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x886fe9f7 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8ab9e97f snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc36140d0 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x41ff4ce5 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xeef470a2 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0x71e9714a sst_dma_new +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xdc045797 sst_dma_free +EXPORT_SYMBOL sound/soc/snd-soc-core 0x2c50ed86 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x01154f09 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x133bf5cf sound_class +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xa969dfbb register_sound_midi +EXPORT_SYMBOL sound/soundcore 0xb21f3a49 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xc219bb9b register_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xe28a63b3 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x10c53631 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x22f2ad2f snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x37228559 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 0xd5cf42eb snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe218fa89 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf38854a6 snd_emux_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x3367a63e __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x43122cbd snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x7784ed39 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9c982de5 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xa1081147 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xaaa66f21 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc97a5223 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe17bf4f5 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 0xec11bb14 snd_usbmidi_create +EXPORT_SYMBOL ubuntu/hio/hio 0x07a2cc77 ssd_get_label +EXPORT_SYMBOL ubuntu/hio/hio 0x07fd45d3 ssd_submit_pbio +EXPORT_SYMBOL ubuntu/hio/hio 0x0ad2006f ssd_reset +EXPORT_SYMBOL ubuntu/hio/hio 0x1be2f967 ssd_set_wmode +EXPORT_SYMBOL ubuntu/hio/hio 0x22e45e7d ssd_set_otprotect +EXPORT_SYMBOL ubuntu/hio/hio 0x2e9954f2 ssd_get_temperature +EXPORT_SYMBOL ubuntu/hio/hio 0x3ad6a716 ssd_bm_status +EXPORT_SYMBOL ubuntu/hio/hio 0x56de013f ssd_register_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x9414915a ssd_get_pciaddr +EXPORT_SYMBOL ubuntu/hio/hio 0xad5262ef ssd_unregister_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0xcb6d7738 ssd_get_version +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 0x0017fbfc component_match_add +EXPORT_SYMBOL vmlinux 0x0024ed68 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x0046aedd blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x005549f4 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x00584057 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x0064bc13 security_inode_readlink +EXPORT_SYMBOL vmlinux 0x006ff6be path_nosuid +EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x0090340d nf_log_register +EXPORT_SYMBOL vmlinux 0x00a35568 elevator_change +EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00da9f34 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x0103fe73 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x011f9630 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x0125f501 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x012c406e ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x012cbbbe neigh_destroy +EXPORT_SYMBOL vmlinux 0x0136f4bc ip6_frag_init +EXPORT_SYMBOL vmlinux 0x016bba17 x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x019d1109 ipv4_specific +EXPORT_SYMBOL vmlinux 0x01cb41f1 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x01f5dd19 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x021b2221 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x021eb6c5 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x023314c4 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x024eb308 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x025c3824 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x025e6c30 ata_port_printk +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0276fa78 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x02921731 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a46bcb input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02cdad3d dquot_release +EXPORT_SYMBOL vmlinux 0x02ce9d0c pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02eea7b2 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x02fe327a sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x0305bd66 account_page_redirty +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x033bfd3b nf_register_hook +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x0394909f put_cmsg +EXPORT_SYMBOL vmlinux 0x039f542d page_waitqueue +EXPORT_SYMBOL vmlinux 0x03cda1d1 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x03da4142 amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0x03ef4388 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04001408 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x041d29f2 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0424d070 param_get_uint +EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each +EXPORT_SYMBOL vmlinux 0x0427d26f pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x04292615 dev_uc_del +EXPORT_SYMBOL vmlinux 0x042caf20 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x046ec201 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x04739afa napi_gro_receive +EXPORT_SYMBOL vmlinux 0x04864748 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x0490156d __lock_page +EXPORT_SYMBOL vmlinux 0x049033ca __destroy_inode +EXPORT_SYMBOL vmlinux 0x04adbe83 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x04b197f2 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x04b1abd4 twl6040_power +EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04d05e95 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x05134e47 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x05205fce dma_supported +EXPORT_SYMBOL vmlinux 0x05236c12 thaw_bdev +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0551b07f inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x056161be genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x059e9bd1 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x05bcbecd setup_new_exec +EXPORT_SYMBOL vmlinux 0x05d75b53 locks_free_lock +EXPORT_SYMBOL vmlinux 0x05dc1857 invalidate_partition +EXPORT_SYMBOL vmlinux 0x05e8d2f2 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x05f96a9d finish_open +EXPORT_SYMBOL vmlinux 0x060512ab generic_delete_inode +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 0x062bb0c6 set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06365751 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x064179e4 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x067925a6 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x06882cf8 vmap +EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache +EXPORT_SYMBOL vmlinux 0x06951f04 amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0x06a3af6b __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x06a61158 unregister_nls +EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x06e2539c netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x06ea486e address_space_init_once +EXPORT_SYMBOL vmlinux 0x06eb3bb8 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x072346d2 kfree_skb +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x07418c25 follow_down +EXPORT_SYMBOL vmlinux 0x074701fd nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x074bed75 iput +EXPORT_SYMBOL vmlinux 0x074c51f2 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x075856d5 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x075c087c simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x076d6fef fb_validate_mode +EXPORT_SYMBOL vmlinux 0x078822e4 gen_pool_create +EXPORT_SYMBOL vmlinux 0x07888df6 dev_warn +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 0x07c3261d kill_bdev +EXPORT_SYMBOL vmlinux 0x07c3f2e8 param_get_ullong +EXPORT_SYMBOL vmlinux 0x07cb0282 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07cc97aa alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x07e1cfa5 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x08080dc5 posix_lock_file +EXPORT_SYMBOL vmlinux 0x081400eb generic_read_dir +EXPORT_SYMBOL vmlinux 0x08226224 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08359937 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x08bb5ddd pci_match_id +EXPORT_SYMBOL vmlinux 0x08de1274 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x08e73c91 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x0908cc05 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x091dae36 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x092490b8 sk_stream_error +EXPORT_SYMBOL vmlinux 0x093e9b0c kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x094bc49d pv_mmu_ops +EXPORT_SYMBOL vmlinux 0x095128cb get_phy_device +EXPORT_SYMBOL vmlinux 0x095632bc file_update_time +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x096088c5 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x09696626 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x0982ec8f posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x098431ba acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x098a1873 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09a176a3 free_page_put_link +EXPORT_SYMBOL vmlinux 0x09ab4758 lookup_bdev +EXPORT_SYMBOL vmlinux 0x09c29915 netdev_info +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09cb0afb pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x09d0bfda arp_create +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d7c518 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x09eb01ef __mdiobus_register +EXPORT_SYMBOL vmlinux 0x09fda60a dma_pool_create +EXPORT_SYMBOL vmlinux 0x0a10fc88 udp_prot +EXPORT_SYMBOL vmlinux 0x0a2389a1 __put_cred +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2fcdc2 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x0a344e92 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x0a392a1c scsi_dma_map +EXPORT_SYMBOL vmlinux 0x0a3bc23a wireless_send_event +EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock +EXPORT_SYMBOL vmlinux 0x0a67dd52 make_bad_inode +EXPORT_SYMBOL vmlinux 0x0a67f5c9 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x0a6d1154 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa50ef1 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x0ab50077 tcp_connect +EXPORT_SYMBOL vmlinux 0x0ac0aa18 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae57854 register_netdev +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1221a4 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b414c41 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x0b506042 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b73a8b9 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc8f984 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x0bc9de37 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x0bcf9339 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x0bd8fb59 genl_notify +EXPORT_SYMBOL vmlinux 0x0c0a791d generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c257862 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c4cb95b pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c63511e console_stop +EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c7f7501 dev_notice +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cc34425 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x0cd3626b devm_ioremap +EXPORT_SYMBOL vmlinux 0x0cd564a6 ps2_drain +EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0x0d01bdf9 scsi_unregister +EXPORT_SYMBOL vmlinux 0x0d1d6ca5 module_put +EXPORT_SYMBOL vmlinux 0x0d283c95 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x0d2e9984 user_revoke +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d4501f5 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5999f3 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d80efb5 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x0d82bf08 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dadcb8a sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x0db6f751 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x0db90a78 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x0dc34859 devm_iounmap +EXPORT_SYMBOL vmlinux 0x0dc78d72 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x0ddc5546 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x0de17522 dev_addr_add +EXPORT_SYMBOL vmlinux 0x0dfd80fb i2c_release_client +EXPORT_SYMBOL vmlinux 0x0e145f93 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x0e1d18aa copy_from_iter +EXPORT_SYMBOL vmlinux 0x0e224970 register_key_type +EXPORT_SYMBOL vmlinux 0x0e387200 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x0e4bd766 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x0e56aab7 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e74fd24 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x0e840736 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x0e8b663b blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x0ea38db2 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x0eaf7c2e gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x0eb5e4c0 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x0ebfbcb4 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed8cc7b acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x0ed93fbd tty_port_open +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f0a08f5 __sb_start_write +EXPORT_SYMBOL vmlinux 0x0f1a95e2 input_flush_device +EXPORT_SYMBOL vmlinux 0x0f21dc5c intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x0f41144a cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f646118 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f6c4d8b nvm_register_target +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f7b2143 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x0face18a sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0fecad02 qdisc_reset +EXPORT_SYMBOL vmlinux 0x0fed5f86 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x0fef4cca sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x1005c56d xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x100e00e9 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x101d2875 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x104587d1 md_integrity_register +EXPORT_SYMBOL vmlinux 0x104e27fa tcf_action_dump_1 +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 0x109b03eb blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x10a6c00f find_inode_nowait +EXPORT_SYMBOL vmlinux 0x10bedf60 try_to_release_page +EXPORT_SYMBOL vmlinux 0x10c424e0 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x10cc2c96 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x10e11712 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10fc33ad clocksource_unregister +EXPORT_SYMBOL vmlinux 0x11053872 padata_add_cpu +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x116927b2 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11862e84 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x1195dcb7 scsi_print_command +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11cf76a7 vfs_create +EXPORT_SYMBOL vmlinux 0x11e08314 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d3a44 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120f74ce dev_set_mtu +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x1215825f pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x12503883 bdput +EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x12609c53 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x12796d4a xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x12985a7b pci_request_regions +EXPORT_SYMBOL vmlinux 0x12987fd7 bio_map_kern +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12c44ffe wait_iff_congested +EXPORT_SYMBOL vmlinux 0x12d99e55 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12e5ab6e jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x12e716bd phy_suspend +EXPORT_SYMBOL vmlinux 0x12f87061 icmp_send +EXPORT_SYMBOL vmlinux 0x1305d532 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x132179da nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x1323b769 phy_resume +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x134b5282 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x1356f40a pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x135787e0 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x137b8524 request_key_async +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13dd1a0d sk_dst_check +EXPORT_SYMBOL vmlinux 0x13e86ad1 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f69598 nd_device_register +EXPORT_SYMBOL vmlinux 0x1409efa0 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x1452b730 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x148d44c8 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x14a16d49 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x14a8cdc7 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14f2cda7 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x14f4b5e4 mutex_unlock +EXPORT_SYMBOL vmlinux 0x150389d6 acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0x15114290 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x15339005 key_put +EXPORT_SYMBOL vmlinux 0x153fa0d6 loop_backing_file +EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1551ea4a serio_rescan +EXPORT_SYMBOL vmlinux 0x15553e22 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x15625fc1 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock +EXPORT_SYMBOL vmlinux 0x1575845c bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x157599b1 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bbe3ca dev_uc_sync +EXPORT_SYMBOL vmlinux 0x15bbf8f2 inet_put_port +EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x15cb38db __frontswap_test +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x16380af9 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x16548796 set_pages_uc +EXPORT_SYMBOL vmlinux 0x1661fa1d ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x1682d8e9 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x168e8409 param_set_charp +EXPORT_SYMBOL vmlinux 0x1695fbff fb_set_cmap +EXPORT_SYMBOL vmlinux 0x169730b9 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x16af52cd pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x16d71e49 input_inject_event +EXPORT_SYMBOL vmlinux 0x16dc4d1f fence_init +EXPORT_SYMBOL vmlinux 0x16deec9f blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x17234c8f key_invalidate +EXPORT_SYMBOL vmlinux 0x173f3d90 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x1759abc6 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x175cefd4 register_qdisc +EXPORT_SYMBOL vmlinux 0x17718be1 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x178fc438 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x1792a4ce kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17e0fbb7 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x1822a453 security_path_chown +EXPORT_SYMBOL vmlinux 0x1822f44a dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x1823780d free_buffer_head +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x182b387a filp_close +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x1843950a inode_dio_wait +EXPORT_SYMBOL vmlinux 0x184a56eb ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x18592c58 bio_advance +EXPORT_SYMBOL vmlinux 0x185c764c xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x18788c9c scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189a590b dump_page +EXPORT_SYMBOL vmlinux 0x189c0f60 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18ca6192 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f5fb58 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x190d06a0 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x194297af input_get_keycode +EXPORT_SYMBOL vmlinux 0x195d5cbd fput +EXPORT_SYMBOL vmlinux 0x1964c3ab mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x1971c229 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x19844172 dm_register_target +EXPORT_SYMBOL vmlinux 0x1987c1ce security_inode_init_security +EXPORT_SYMBOL vmlinux 0x1990c022 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a432f5 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x19a71e13 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x19a84002 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x19abc5c8 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19bf7c14 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x19d7538f blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x19ddfb12 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x19dfc1f4 read_code +EXPORT_SYMBOL vmlinux 0x19e49c0d scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x19e8ff02 setattr_copy +EXPORT_SYMBOL vmlinux 0x19eba1b5 skb_split +EXPORT_SYMBOL vmlinux 0x19ece556 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x19f359bf tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x1a1da881 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x1a26ab7e page_readlink +EXPORT_SYMBOL vmlinux 0x1a2b605d jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a530bc2 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x1a54a93d nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x1a6396e8 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a6e9205 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x1a6f073a seq_putc +EXPORT_SYMBOL vmlinux 0x1a726626 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x1a99cd21 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x1a9ae9d8 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ae09f75 _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x1af98bc6 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0e7b20 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x1b1c4960 register_console +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b245078 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x1b3730ed ht_create_irq +EXPORT_SYMBOL vmlinux 0x1b5236ec dquot_transfer +EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b7ddaea splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b995f0f blk_init_queue +EXPORT_SYMBOL vmlinux 0x1ba437a2 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x1bac41aa ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bc13eef agp_backend_release +EXPORT_SYMBOL vmlinux 0x1bdb9b0f scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock +EXPORT_SYMBOL vmlinux 0x1c10bfe4 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x1c1c36cd d_obtain_root +EXPORT_SYMBOL vmlinux 0x1c73800d xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1c9c5c8e done_path_create +EXPORT_SYMBOL vmlinux 0x1cc38405 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x1cc91fac irq_set_chip +EXPORT_SYMBOL vmlinux 0x1cc9952c dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x1d01b288 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d20f282 pci_request_region +EXPORT_SYMBOL vmlinux 0x1d261bfc posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x1d31ab7d pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x1d3c905d dma_common_mmap +EXPORT_SYMBOL vmlinux 0x1d507147 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x1d75557b do_splice_to +EXPORT_SYMBOL vmlinux 0x1d91c9ba end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x1d925395 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de686d6 sock_register +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 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e40f8be simple_follow_link +EXPORT_SYMBOL vmlinux 0x1e6358ee first_ec +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e723a73 current_task +EXPORT_SYMBOL vmlinux 0x1e7a923a iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea5d9ee scsi_print_sense +EXPORT_SYMBOL vmlinux 0x1eaee716 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ee3ba02 amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0x1ee6d008 set_blocksize +EXPORT_SYMBOL vmlinux 0x1f02aca2 up_read +EXPORT_SYMBOL vmlinux 0x1f0ed340 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x1f1d29a0 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x1f1f7f4a jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x1f2e2cc8 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x1f3c1fcb mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x1f5048e3 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x1f5f2b3c grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f85f9f5 __page_symlink +EXPORT_SYMBOL vmlinux 0x1f8922f4 __invalidate_device +EXPORT_SYMBOL vmlinux 0x1f9b75d8 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x1fadbc83 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x1faea19f block_commit_write +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe03af7 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x1fe0b2f4 security_path_chmod +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fed247e inode_set_flags +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 0x201c9088 xfrm4_prepare_output +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 0x20677ea1 block_write_end +EXPORT_SYMBOL vmlinux 0x206c6a94 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x2087f552 cdrom_open +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20d38283 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x20d5f1d5 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x20dd9104 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20e7ec64 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20fe2061 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x212ab1f9 set_device_ro +EXPORT_SYMBOL vmlinux 0x213881ac simple_write_begin +EXPORT_SYMBOL vmlinux 0x2138a64f scsi_host_put +EXPORT_SYMBOL vmlinux 0x2139b480 netdev_emerg +EXPORT_SYMBOL vmlinux 0x214257c3 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x214802ef bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x215fd6f7 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x21922c1f find_vma +EXPORT_SYMBOL vmlinux 0x21a701fe fence_signal +EXPORT_SYMBOL vmlinux 0x21c5e0e9 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x21d1b5dd input_event +EXPORT_SYMBOL vmlinux 0x21d4bb34 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get +EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x2216069f nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x22172c7b filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x22182053 param_set_copystring +EXPORT_SYMBOL vmlinux 0x221b256c filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x224aca72 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x22511db2 sock_init_data +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x226f1d4f __inet_hash +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2279f147 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x227dcbcb kernel_connect +EXPORT_SYMBOL vmlinux 0x22849fd4 security_path_symlink +EXPORT_SYMBOL vmlinux 0x228cee05 xen_biovec_phys_mergeable +EXPORT_SYMBOL vmlinux 0x22926d40 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x22a3a330 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22cb2379 km_policy_notify +EXPORT_SYMBOL vmlinux 0x22ccf6f3 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x22dc7d98 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x22e6b605 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x22f4ebae vm_insert_page +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x2322eafa pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x232f3cc9 downgrade_write +EXPORT_SYMBOL vmlinux 0x233bbbdd vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0x23405585 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x236497d2 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x2368d3fe sock_kmalloc +EXPORT_SYMBOL vmlinux 0x237e002a max8925_set_bits +EXPORT_SYMBOL vmlinux 0x23857c42 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x239f268b xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23a8ce31 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23c9171c __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23cf97db vm_event_states +EXPORT_SYMBOL vmlinux 0x23de62e3 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x241aad05 input_unregister_device +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x243e3a2b devm_memremap_pages +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2463e8df get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x248644e6 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x2494fbb9 unload_nls +EXPORT_SYMBOL vmlinux 0x24d9bbdb vga_tryget +EXPORT_SYMBOL vmlinux 0x24e2ab29 skb_tx_error +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x252fcd9a sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x25401a1b eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x2544a414 I_BDEV +EXPORT_SYMBOL vmlinux 0x254703e7 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x25568f66 irq_to_desc +EXPORT_SYMBOL vmlinux 0x256db8da ps2_handle_response +EXPORT_SYMBOL vmlinux 0x256e4dc7 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25749cec fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258f8d35 param_get_string +EXPORT_SYMBOL vmlinux 0x2598472e ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x25a53298 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x25ac104c netdev_change_features +EXPORT_SYMBOL vmlinux 0x25cd061e gnttab_alloc_pages +EXPORT_SYMBOL vmlinux 0x25ce6a0f try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x25e8a0e8 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25ec43ee acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x25f4209a __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x25f4e854 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x25fdc104 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x26014e7b scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x2621927c ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x26274324 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x26391995 mutex_lock +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 0x2665fd1d kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x2668ec74 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x26948d96 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create +EXPORT_SYMBOL vmlinux 0x26cbad2f pci_get_class +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26f55b6f bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x27382db4 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x27462c32 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x2761a40b __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x27661a69 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x276c5995 iterate_fd +EXPORT_SYMBOL vmlinux 0x277e685a blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove +EXPORT_SYMBOL vmlinux 0x2789656e scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27b5cf58 md_flush_request +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c33efe csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x27d7a161 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27ea9d98 pci_bus_type +EXPORT_SYMBOL vmlinux 0x280beb85 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x282dfea1 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x2847e35c tty_port_destroy +EXPORT_SYMBOL vmlinux 0x2862ddb4 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x287740b5 filemap_fault +EXPORT_SYMBOL vmlinux 0x287ba894 elv_rb_latter_request +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 0x28b1afcb nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x28be972b sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x28c7afd0 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x290edbe8 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x294245c1 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x2965f764 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x2975292b get_super +EXPORT_SYMBOL vmlinux 0x29816e2a block_truncate_page +EXPORT_SYMBOL vmlinux 0x29924197 neigh_lookup +EXPORT_SYMBOL vmlinux 0x2996b269 get_user_pages +EXPORT_SYMBOL vmlinux 0x29b2279e __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x29bfaaed iget5_locked +EXPORT_SYMBOL vmlinux 0x29cc6b91 dump_emit +EXPORT_SYMBOL vmlinux 0x29d01e6e nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x29d329d8 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x29e71867 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x2a2b3fc2 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x2a30369b lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a4136d6 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x2a482471 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x2a4c6510 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x2a4da40d key_validate +EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x2a59b7ee __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x2a6b2282 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x2a708972 bdget +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ac97a8c is_nd_btt +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ae032cb i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x2aec1ac2 dquot_file_open +EXPORT_SYMBOL vmlinux 0x2af432e6 tty_port_init +EXPORT_SYMBOL vmlinux 0x2b01e02c secpath_dup +EXPORT_SYMBOL vmlinux 0x2b05a21b intel_gtt_get +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b1e2492 find_lock_entry +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b3e8cc3 revalidate_disk +EXPORT_SYMBOL vmlinux 0x2b420c74 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x2b4b2712 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x2b4ef772 ps2_init +EXPORT_SYMBOL vmlinux 0x2b7fcf3d pci_release_region +EXPORT_SYMBOL vmlinux 0x2b8f3e0a ppp_register_channel +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 0x2bb78016 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x2bcc4380 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x2bcce224 textsearch_register +EXPORT_SYMBOL vmlinux 0x2bd5cf06 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x2bdb4cc2 netlink_set_err +EXPORT_SYMBOL vmlinux 0x2bee62c2 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c059115 softnet_data +EXPORT_SYMBOL vmlinux 0x2c0d9245 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c4b6671 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x2c506000 param_set_bint +EXPORT_SYMBOL vmlinux 0x2c5ffb5b unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x2c61dea8 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x2c701154 filemap_flush +EXPORT_SYMBOL vmlinux 0x2c8977fc __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x2c9cf4ab lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x2ca6015b drop_nlink +EXPORT_SYMBOL vmlinux 0x2ca752ac jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x2cc07422 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x2cc1bab4 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x2cc40ecf fence_remove_callback +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2d0fbfac security_mmap_file +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x2d231b36 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d43b3d7 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x2d43efed scsi_print_result +EXPORT_SYMBOL vmlinux 0x2d55e2ba dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x2d5db507 bio_put +EXPORT_SYMBOL vmlinux 0x2d640cd7 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x2d746f69 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x2dba020a pci_iomap_range +EXPORT_SYMBOL vmlinux 0x2dc80015 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2ddb8bc2 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2e07e622 vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e10ab6e jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e42f398 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e5d6ab3 ata_link_printk +EXPORT_SYMBOL vmlinux 0x2e70faf6 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x2e7224ee devm_request_resource +EXPORT_SYMBOL vmlinux 0x2e7c352e devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x2ea221f6 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x2ebd87ef padata_do_serial +EXPORT_SYMBOL vmlinux 0x2ec6c841 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x2eca5d49 dev_deactivate +EXPORT_SYMBOL vmlinux 0x2eeb74ad iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2ef8c03b serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x2efb7f47 tty_name +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f0a070d iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x2f0fd3ea zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f3fb067 vme_lm_request +EXPORT_SYMBOL vmlinux 0x2f461362 devm_free_irq +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f5af7ec neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x2f64f89f cpu_present_mask +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fbcb5c1 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0x2fc498f9 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x2fc4fa5e forget_cached_acl +EXPORT_SYMBOL vmlinux 0x2fc83bdf mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x2fd0abaa generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2febf67f serio_bus +EXPORT_SYMBOL vmlinux 0x2ff063b5 acpi_get_name +EXPORT_SYMBOL vmlinux 0x2ffb4eb3 fb_get_mode +EXPORT_SYMBOL vmlinux 0x300659f5 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x300c58d7 inet_select_addr +EXPORT_SYMBOL vmlinux 0x30113b26 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x3027475e textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x3043be42 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x304895bc proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x30536ffa nf_log_trace +EXPORT_SYMBOL vmlinux 0x305c9ebc tcp_make_synack +EXPORT_SYMBOL vmlinux 0x307654cc scm_detach_fds +EXPORT_SYMBOL vmlinux 0x307733f5 param_ops_charp +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x307f37f9 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x30897466 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x30901787 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309d67e3 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b04526 ida_init +EXPORT_SYMBOL vmlinux 0x30b87ea1 audit_log_start +EXPORT_SYMBOL vmlinux 0x30b8c0f5 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x30cd9450 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f1207a inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x31154da9 default_llseek +EXPORT_SYMBOL vmlinux 0x311deb10 bio_init +EXPORT_SYMBOL vmlinux 0x31201c10 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x31211401 __seq_open_private +EXPORT_SYMBOL vmlinux 0x312ccb40 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x318870ae scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x3192f83e pipe_lock +EXPORT_SYMBOL vmlinux 0x31940197 tty_lock +EXPORT_SYMBOL vmlinux 0x31a0b29a d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x31a11027 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31cf6f72 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x31d07cfb elv_rb_find +EXPORT_SYMBOL vmlinux 0x31d8943a fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x31d8f404 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x322ca9f6 simple_fill_super +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x32c17859 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x32c3b691 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x32d1714b scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32ddc800 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x3302bd41 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x330a9d62 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x333d7fdd blk_integrity_register +EXPORT_SYMBOL vmlinux 0x3356b90b cpu_tss +EXPORT_SYMBOL vmlinux 0x33a1ca10 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f28fbf module_layout +EXPORT_SYMBOL vmlinux 0x33f5240d param_get_short +EXPORT_SYMBOL vmlinux 0x33fc111e __neigh_event_send +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x3400de2e scsi_register_interface +EXPORT_SYMBOL vmlinux 0x340a9522 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x341cc6d9 skb_queue_head +EXPORT_SYMBOL vmlinux 0x34529c48 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x345a45da blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x345d048d pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x346880fa d_path +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x349213ef cpu_core_map +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34cdc088 poll_initwait +EXPORT_SYMBOL vmlinux 0x34d0b83d km_policy_expired +EXPORT_SYMBOL vmlinux 0x34dc8b45 pci_map_rom +EXPORT_SYMBOL vmlinux 0x34de199a genphy_config_init +EXPORT_SYMBOL vmlinux 0x34df235f set_pages_wb +EXPORT_SYMBOL vmlinux 0x34eeb7d1 put_page +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f40694 security_path_truncate +EXPORT_SYMBOL vmlinux 0x35065fe1 nonseekable_open +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x35436734 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x355d294b set_posix_acl +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x358bc7af eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x358cfd9c register_xen_selfballooning +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ba6ca7 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x35be3da9 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x35d2bc62 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x35eebef1 fb_blank +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3611c309 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x3614f763 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x363b327c __dquot_transfer +EXPORT_SYMBOL vmlinux 0x36495de8 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x3687c670 phy_connect +EXPORT_SYMBOL vmlinux 0x36939998 vm_map_ram +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36b5c41b padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36e2b4d6 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x36f8918a get_task_exe_file +EXPORT_SYMBOL vmlinux 0x36fa2a78 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x3701a196 csum_partial_copy_to_user +EXPORT_SYMBOL vmlinux 0x3702a81d blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x3703e7bb genphy_update_link +EXPORT_SYMBOL vmlinux 0x3703e804 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x370f9850 efi +EXPORT_SYMBOL vmlinux 0x3711c3ba open_exec +EXPORT_SYMBOL vmlinux 0x3716653b skb_checksum_help +EXPORT_SYMBOL vmlinux 0x37315c4e xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3747d018 sync_blockdev +EXPORT_SYMBOL vmlinux 0x37501605 vfs_readv +EXPORT_SYMBOL vmlinux 0x376b677a touch_atime +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 0x37c46092 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e1e56b serio_open +EXPORT_SYMBOL vmlinux 0x37f2399a crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x380cac7a cont_write_begin +EXPORT_SYMBOL vmlinux 0x3818d586 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3828223c sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x38308265 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x38386964 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x3851ea48 netdev_crit +EXPORT_SYMBOL vmlinux 0x3855ce69 __ht_create_irq +EXPORT_SYMBOL vmlinux 0x385d45ca tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x38672444 dquot_resume +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3894653f save_mount_options +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38ac45e5 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x38b061bc blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x38c379f2 arp_send +EXPORT_SYMBOL vmlinux 0x38e07f27 generic_getxattr +EXPORT_SYMBOL vmlinux 0x38f33bed dump_fpu +EXPORT_SYMBOL vmlinux 0x38ff664c lock_sock_fast +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x390b5752 kset_unregister +EXPORT_SYMBOL vmlinux 0x391b9090 pci_release_regions +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x39418a4d mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x3942011a devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394eb71b ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x3969e7b7 elv_rb_del +EXPORT_SYMBOL vmlinux 0x398599d4 fsync_bdev +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399a483b vme_slot_num +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b98799 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x39d4a633 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x39d96bf4 bdi_register +EXPORT_SYMBOL vmlinux 0x39dd5017 udp_add_offload +EXPORT_SYMBOL vmlinux 0x39dd9223 x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x39edc600 genphy_suspend +EXPORT_SYMBOL vmlinux 0x39ee5170 del_gendisk +EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a0d4acd skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a484675 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x3a5e9fff seq_lseek +EXPORT_SYMBOL vmlinux 0x3a738c67 mmc_put_card +EXPORT_SYMBOL vmlinux 0x3a7b4f83 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x3a9041d1 processors +EXPORT_SYMBOL vmlinux 0x3a94f961 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3ac4b725 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x3acfa6f8 dev_alert +EXPORT_SYMBOL vmlinux 0x3add6272 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x3ae2a9b5 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x3aec49c3 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x3b006333 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x3b0909f3 netdev_state_change +EXPORT_SYMBOL vmlinux 0x3b20d567 seq_release_private +EXPORT_SYMBOL vmlinux 0x3b2216fd i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x3b32a22a devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x3b58157c mntget +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6f6cd2 udp_table +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b80faa9 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x3b8e03eb pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x3ba44444 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait +EXPORT_SYMBOL vmlinux 0x3bbc6878 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x3be9f150 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x3c00a554 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x3c1038dc ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c465ffa inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c50e931 genlmsg_put +EXPORT_SYMBOL vmlinux 0x3c721653 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c9a1d7e cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x3cc840c4 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x3d1a242b __serio_register_driver +EXPORT_SYMBOL vmlinux 0x3d1b8ea8 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x3d289b4e d_make_root +EXPORT_SYMBOL vmlinux 0x3d28d09e generic_fillattr +EXPORT_SYMBOL vmlinux 0x3d3a9115 poll_freewait +EXPORT_SYMBOL vmlinux 0x3d651cbe cap_mmap_file +EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc +EXPORT_SYMBOL vmlinux 0x3d7c3748 agp_free_memory +EXPORT_SYMBOL vmlinux 0x3d93ce54 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x3d9ad5fe cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3da89fd4 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x3db1082b nobh_write_begin +EXPORT_SYMBOL vmlinux 0x3db9cacb md_check_recovery +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3ded5ce4 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e070509 tcp_req_err +EXPORT_SYMBOL vmlinux 0x3e100ccc netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e7229a9 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e9303c0 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3e998abf param_ops_string +EXPORT_SYMBOL vmlinux 0x3ea5819f pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x3eaef709 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x3ec66a7c hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x3ecf749f lock_rename +EXPORT_SYMBOL vmlinux 0x3ed1647d rfkill_alloc +EXPORT_SYMBOL vmlinux 0x3ed177a4 mdiobus_read +EXPORT_SYMBOL vmlinux 0x3eec1ad5 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x3eee7e97 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x3ef60504 flow_cache_fini +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f1f20c3 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock +EXPORT_SYMBOL vmlinux 0x3f3f0da1 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x3f3f1177 get_disk +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f50406a unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x3f55c1d5 sock_create_lite +EXPORT_SYMBOL vmlinux 0x3f68af8e keyring_search +EXPORT_SYMBOL vmlinux 0x3f89d7be dev_add_pack +EXPORT_SYMBOL vmlinux 0x3fa09602 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x3fa9b24c serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x3fadb4f3 have_submounts +EXPORT_SYMBOL vmlinux 0x3fc64e23 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x3fd36a8d blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x3fd68244 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x3fdc35c3 write_inode_now +EXPORT_SYMBOL vmlinux 0x3fe2ba7e empty_aops +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fe9988d ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ffb565f vme_register_bridge +EXPORT_SYMBOL vmlinux 0x40028f17 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x40046689 vga_put +EXPORT_SYMBOL vmlinux 0x40245c8e phy_device_create +EXPORT_SYMBOL vmlinux 0x40278221 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x4028b519 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4033f753 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x4038ed87 ip_defrag +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x40445992 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x405adf1b skb_push +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x406bef33 seq_pad +EXPORT_SYMBOL vmlinux 0x406c15b7 from_kprojid +EXPORT_SYMBOL vmlinux 0x407193fe vfs_llseek +EXPORT_SYMBOL vmlinux 0x40914a0c bio_copy_kern +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 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 0x40d5c675 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x40d732fb key_link +EXPORT_SYMBOL vmlinux 0x40e14e38 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x40e6df69 __nla_reserve +EXPORT_SYMBOL vmlinux 0x41019528 nf_log_set +EXPORT_SYMBOL vmlinux 0x410dd4c6 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x41315782 simple_lookup +EXPORT_SYMBOL vmlinux 0x413315f2 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x413921ff sk_common_release +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414d83ce registered_fb +EXPORT_SYMBOL vmlinux 0x41555e9e devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x41663413 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418d768c netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x41a1d5e1 dev_err +EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41cc2963 __devm_release_region +EXPORT_SYMBOL vmlinux 0x41d567fa netlink_unicast +EXPORT_SYMBOL vmlinux 0x41db439d vfs_writef +EXPORT_SYMBOL vmlinux 0x41ddc7db sock_no_bind +EXPORT_SYMBOL vmlinux 0x41e29f19 mdiobus_write +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421ad861 file_remove_privs +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 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x426be1e0 amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0x42789f6e __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x427a8512 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x429c0347 gnttab_free_pages +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42b4910f bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x42b5f583 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x42b8d522 amd_iommu_enable_device_erratum +EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x42e50d2c copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x42f957f1 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x42feb3d0 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4310edf2 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x431c3163 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x431fb4b0 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x4331309d dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x433181b4 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x43325d43 mount_pseudo +EXPORT_SYMBOL vmlinux 0x4346c8d0 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x43607dec dma_sync_wait +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43ac1377 d_tmpfile +EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule +EXPORT_SYMBOL vmlinux 0x43b62ecd vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x43cfe6cb lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x43f05c23 ppp_input +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x4402afb9 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x44334b30 get_task_io_context +EXPORT_SYMBOL vmlinux 0x4438051c ll_rw_block +EXPORT_SYMBOL vmlinux 0x446cfc7e ps2_end_command +EXPORT_SYMBOL vmlinux 0x4487fad6 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x4489da02 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x448f6ca5 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x449fe84b acpi_set_firmware_waking_vectors +EXPORT_SYMBOL vmlinux 0x44a81d5f acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0x44a954a9 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f21bf9 fb_show_logo +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450db752 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x4515e751 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x452e65b6 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x45319752 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x4533c900 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454d5c3f do_splice_direct +EXPORT_SYMBOL vmlinux 0x454fa046 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x455b3207 inode_permission +EXPORT_SYMBOL vmlinux 0x455dbf7d simple_statfs +EXPORT_SYMBOL vmlinux 0x456291f2 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45b1a05e pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x45bcc5ac locks_remove_posix +EXPORT_SYMBOL vmlinux 0x45d05b32 bioset_create +EXPORT_SYMBOL vmlinux 0x45d9e328 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x45f85e52 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x45fc40c4 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x45fcf662 param_set_short +EXPORT_SYMBOL vmlinux 0x4602d65a proc_symlink +EXPORT_SYMBOL vmlinux 0x4604a43a mem_section +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x46232e44 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x462b27da scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x46445346 d_invalidate +EXPORT_SYMBOL vmlinux 0x4655aff6 cad_pid +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x4660fbdc blk_requeue_request +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x466fa916 amd_iommu_get_v2_domain +EXPORT_SYMBOL vmlinux 0x46718500 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x4674cf6d locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x4679b110 search_binary_handler +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x4695f4cd alloc_fcdev +EXPORT_SYMBOL vmlinux 0x46968806 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x469fc7ff d_set_fallthru +EXPORT_SYMBOL vmlinux 0x46aeeb88 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x471df3cb scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x4723f268 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x4728fa3f neigh_event_ns +EXPORT_SYMBOL vmlinux 0x4729e123 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x47315dfa ppp_input_error +EXPORT_SYMBOL vmlinux 0x4732c34d dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x4732de71 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x473c2a86 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x47504021 __sock_create +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x47628d82 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x47776259 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x477e6dcb amd_iommu_pc_get_set_reg_val +EXPORT_SYMBOL vmlinux 0x47856601 phy_device_free +EXPORT_SYMBOL vmlinux 0x4787fc61 nvdimm_namespace_disk_name +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 0x47a8caf3 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x47c4b99a neigh_update +EXPORT_SYMBOL vmlinux 0x47c628a7 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x47d2fe14 dcache_readdir +EXPORT_SYMBOL vmlinux 0x47def6c4 netif_rx +EXPORT_SYMBOL vmlinux 0x47e39b82 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x47f03e86 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x47f649ad inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x481086f0 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x481470a2 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x482a3ee8 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x4839b687 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x48447f89 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x4861a46c inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x4877494c param_ops_ullong +EXPORT_SYMBOL vmlinux 0x48a65573 sget +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier +EXPORT_SYMBOL vmlinux 0x48e80885 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490f93d5 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x4911b88d xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x49239f14 blk_end_request +EXPORT_SYMBOL vmlinux 0x49288b7f bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x4935c699 inet6_getname +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 0x496e601c skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x498a21a2 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x4998dfc9 clkdev_drop +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49bff748 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x49c78520 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x49e60c38 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a183ea7 put_filp +EXPORT_SYMBOL vmlinux 0x4a186389 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x4a19d06c agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x4a4b587d pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x4a70072f tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4a9fadf9 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x4aaef69f nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x4abba4ab sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4af495fe find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b0e6f44 init_special_inode +EXPORT_SYMBOL vmlinux 0x4b21598e __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x4b2c7bd0 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x4b3b6427 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x4b6f2c30 read_dev_sector +EXPORT_SYMBOL vmlinux 0x4b7d9d7e single_release +EXPORT_SYMBOL vmlinux 0x4b8825f3 skb_unlink +EXPORT_SYMBOL vmlinux 0x4b8b12c5 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x4b90aadf blk_free_tags +EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bc95970 __kernel_write +EXPORT_SYMBOL vmlinux 0x4bc9d5d7 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x4bcf0558 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x4bf25a8a netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c19bd4c ppp_channel_index +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c3654bb kobject_set_name +EXPORT_SYMBOL vmlinux 0x4c401107 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x4c553a9a pnp_device_attach +EXPORT_SYMBOL vmlinux 0x4c601fdc param_set_ulong +EXPORT_SYMBOL vmlinux 0x4c653681 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x4c71f588 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x4c914a52 import_iovec +EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4c9ebc54 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4cb38722 cdev_add +EXPORT_SYMBOL vmlinux 0x4cba42f9 key_task_permission +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cdcad8e inode_init_always +EXPORT_SYMBOL vmlinux 0x4cf896df tcf_hash_search +EXPORT_SYMBOL vmlinux 0x4d099986 generic_writepages +EXPORT_SYMBOL vmlinux 0x4d0e3aca mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x4d32cb89 pci_restore_state +EXPORT_SYMBOL vmlinux 0x4d5fa734 vc_resize +EXPORT_SYMBOL vmlinux 0x4d818229 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x4d8440a4 param_array_ops +EXPORT_SYMBOL vmlinux 0x4d918ac9 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9ff8ba blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x4da56fba nobh_writepage +EXPORT_SYMBOL vmlinux 0x4db0c3ec netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e073e4b inode_get_bytes +EXPORT_SYMBOL vmlinux 0x4e08acfd fb_set_suspend +EXPORT_SYMBOL vmlinux 0x4e2266bc follow_down_one +EXPORT_SYMBOL vmlinux 0x4e3235da register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x4e341d4b inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3a3eea scsi_add_device +EXPORT_SYMBOL vmlinux 0x4e3bd91e filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e8d6b20 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x4e965239 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x4e99c54d _dev_info +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ea4304f __scm_destroy +EXPORT_SYMBOL vmlinux 0x4ed6aeaa mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x4ef663f0 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x4efd5fb5 __genl_register_family +EXPORT_SYMBOL vmlinux 0x4f01830c __get_user_pages +EXPORT_SYMBOL vmlinux 0x4f063583 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x4f080d34 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x4f17c658 tcf_exts_dump +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 0x4f3a5f4b dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x4f3eb6a5 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x4f43d4cb __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f50539e thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x4f518f46 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x4f537ae6 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user +EXPORT_SYMBOL vmlinux 0x4f75ac9a crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x4f76f9e8 truncate_setsize +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f7a4827 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user +EXPORT_SYMBOL vmlinux 0x4fa0c005 tty_mutex +EXPORT_SYMBOL vmlinux 0x4fbf7bbc fb_set_var +EXPORT_SYMBOL vmlinux 0x4fce4dc0 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x4fdca30d blk_execute_rq +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x50060717 d_find_alias +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x50121291 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x50144c72 d_instantiate +EXPORT_SYMBOL vmlinux 0x501f594f sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x50370ad2 soft_cursor +EXPORT_SYMBOL vmlinux 0x5042ebf5 vga_con +EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x50635e33 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x507067e7 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x5097bcd2 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +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 0x511072a5 vm_mmap +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x513a3149 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x513ce4f6 inet_release +EXPORT_SYMBOL vmlinux 0x51461b05 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x514cf1ad tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x5150027f tcp_release_cb +EXPORT_SYMBOL vmlinux 0x5150dfe7 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x51632451 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock +EXPORT_SYMBOL vmlinux 0x517654d2 blk_start_queue +EXPORT_SYMBOL vmlinux 0x51804839 vme_dma_request +EXPORT_SYMBOL vmlinux 0x51a117c9 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x51a67c99 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x51b0068e filp_open +EXPORT_SYMBOL vmlinux 0x51cb3b79 skb_copy +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51da349c truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x520d44c3 param_set_long +EXPORT_SYMBOL vmlinux 0x520df181 km_new_mapping +EXPORT_SYMBOL vmlinux 0x52130046 acpi_check_address_range +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x52339f74 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x523ff4d6 skb_find_text +EXPORT_SYMBOL vmlinux 0x52477e1f xfrm_init_state +EXPORT_SYMBOL vmlinux 0x525a8293 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52b76ef6 to_ndd +EXPORT_SYMBOL vmlinux 0x52c695e1 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x52cde84d follow_pfn +EXPORT_SYMBOL vmlinux 0x52da168f nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x52e6536c dev_addr_init +EXPORT_SYMBOL vmlinux 0x52e8fb54 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530c4753 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x530f87f9 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x5326fb57 bdgrab +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 0x5366656b netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x5391bbcd sk_stop_timer +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53b35657 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x53b65d45 agp_enable +EXPORT_SYMBOL vmlinux 0x53b8173e kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x53bedebd pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x54059a2a amd_iommu_pc_get_max_counters +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x540b5098 __blk_end_request +EXPORT_SYMBOL vmlinux 0x540c40bf simple_transaction_get +EXPORT_SYMBOL vmlinux 0x541c092c xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x542788e1 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x542d459e neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54447422 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x54450b7d bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x54482679 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x544e0e27 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x5451c4f1 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0x547dd080 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x5489f016 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x549787f6 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54c2fe4b security_path_rmdir +EXPORT_SYMBOL vmlinux 0x54daef79 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54e8e3fc vfs_rename +EXPORT_SYMBOL vmlinux 0x54f24d1a fence_default_wait +EXPORT_SYMBOL vmlinux 0x54f4e19c mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x55061388 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x550cafca ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551bedc7 fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x5526e6ce padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x5533a89d compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x5536df89 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x5538c31d key_reject_and_link +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x554ca61c padata_alloc +EXPORT_SYMBOL vmlinux 0x554e04be override_creds +EXPORT_SYMBOL vmlinux 0x555f6938 lockref_get +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5584e1ca i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x5598f462 seq_path +EXPORT_SYMBOL vmlinux 0x55ac3207 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x55b23e5e blk_queue_split +EXPORT_SYMBOL vmlinux 0x55b96f3b amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0x55ca7c87 copy_to_iter +EXPORT_SYMBOL vmlinux 0x55cbe4db nd_btt_probe +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x55f3abf1 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node +EXPORT_SYMBOL vmlinux 0x55fbc652 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x560b0737 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x5626db1c abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x562c62ff dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x56341863 phy_disconnect +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563ce1ef scsi_init_io +EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x56689246 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x56725894 ether_setup +EXPORT_SYMBOL vmlinux 0x568be373 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d9f9c5 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x56e91290 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x56f089f8 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x56f43eb9 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x56f976b6 netdev_alert +EXPORT_SYMBOL vmlinux 0x56feba54 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x56ffe9b0 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x570686a6 key_type_keyring +EXPORT_SYMBOL vmlinux 0x5712eaa4 alloc_pages_current +EXPORT_SYMBOL vmlinux 0x5726f892 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x576349ef dst_destroy +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x577215c2 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57986f08 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x57ba72ab fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x57c504d2 vfs_link +EXPORT_SYMBOL vmlinux 0x57e9e394 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x5816dd40 sg_miter_next +EXPORT_SYMBOL vmlinux 0x581a4a26 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5824e153 keyring_clear +EXPORT_SYMBOL vmlinux 0x582d3fa4 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x58497856 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x584b4a23 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x58597697 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem +EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x58645344 __dax_fault +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x5890f476 redraw_screen +EXPORT_SYMBOL vmlinux 0x5892fe43 tty_devnum +EXPORT_SYMBOL vmlinux 0x58ac934e ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58cbe424 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x58d5b41d pci_scan_bus +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x5900b626 __frontswap_store +EXPORT_SYMBOL vmlinux 0x590864fb agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x590da41b d_move +EXPORT_SYMBOL vmlinux 0x590fb579 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x591cd6ce dev_uc_add +EXPORT_SYMBOL vmlinux 0x59313d2d mpage_writepage +EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl +EXPORT_SYMBOL vmlinux 0x594b0bc6 udp_ioctl +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x5953c9b6 dev_set_group +EXPORT_SYMBOL vmlinux 0x59609553 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x59680588 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59a412c1 to_nd_pfn +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x59e8e73d blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a13aeb1 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x5a1410ed build_skb +EXPORT_SYMBOL vmlinux 0x5a1e913c serio_reconnect +EXPORT_SYMBOL vmlinux 0x5a329f02 security_path_link +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a576337 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x5a73329d phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x5a74f6e8 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x5a78345f scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a950c7b sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5ad34936 register_netdevice +EXPORT_SYMBOL vmlinux 0x5aefd268 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x5afe4cb1 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b0128b7 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x5b0b61fe eth_gro_receive +EXPORT_SYMBOL vmlinux 0x5b0f7c6e input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x5b23c139 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x5b2ebef6 param_get_charp +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b9c808a acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0x5bac2634 i2c_use_client +EXPORT_SYMBOL vmlinux 0x5bb3b42d nvm_end_io +EXPORT_SYMBOL vmlinux 0x5bb547cb skb_checksum +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bc2ec27 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x5bc8d583 copy_from_user_overflow +EXPORT_SYMBOL vmlinux 0x5bcd41ce xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x5bd7e31f tcp_check_req +EXPORT_SYMBOL vmlinux 0x5bf7a58c invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x5bf81967 inet_del_offload +EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x5c2dfc44 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x5c3b4bdd invalidate_bdev +EXPORT_SYMBOL vmlinux 0x5c4609ac register_quota_format +EXPORT_SYMBOL vmlinux 0x5c4b7dff pci_write_vpd +EXPORT_SYMBOL vmlinux 0x5c9177e8 d_drop +EXPORT_SYMBOL vmlinux 0x5c9c30b5 misc_register +EXPORT_SYMBOL vmlinux 0x5cb4d0a2 param_get_long +EXPORT_SYMBOL vmlinux 0x5cc43700 nvm_register +EXPORT_SYMBOL vmlinux 0x5cc5746d netif_device_detach +EXPORT_SYMBOL vmlinux 0x5cf41874 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb6372 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x5d0161ec proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x5d140ef3 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x5d184f3a qdisc_list_del +EXPORT_SYMBOL vmlinux 0x5d30cb74 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d59f138 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x5d6ba794 simple_readpage +EXPORT_SYMBOL vmlinux 0x5d6e88b3 get_super_thawed +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d806c00 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x5d8308b4 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done +EXPORT_SYMBOL vmlinux 0x5d8f8cfc iget_locked +EXPORT_SYMBOL vmlinux 0x5db3be4c scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x5de1ce0a jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x5dfcdc20 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x5e05f074 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x5e1a89a7 skb_insert +EXPORT_SYMBOL vmlinux 0x5e1d6a6c vfs_readf +EXPORT_SYMBOL vmlinux 0x5e3009a1 datagram_poll +EXPORT_SYMBOL vmlinux 0x5e304bf4 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x5e3527b0 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x5e4d5177 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x5e5a8658 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x5e69bff4 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x5e6af74c fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x5e717ef6 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x5e816135 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x5e820c7e input_unregister_handle +EXPORT_SYMBOL vmlinux 0x5e85ba2c blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9acfc6 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x5e9d84af tcp_prequeue +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb30003 da903x_query_status +EXPORT_SYMBOL vmlinux 0x5ebb27c6 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x5ebbfe85 set_pages_nx +EXPORT_SYMBOL vmlinux 0x5ec187fd arch_dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x5ec33dc2 pipe_unlock +EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f06ccd7 tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f14432b fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x5f2cb5ee nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x5f3e0005 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x5f3f55f7 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x5f4b6364 rtnl_notify +EXPORT_SYMBOL vmlinux 0x5f5fb85f lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x5f5fea7a swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x5f816005 d_lookup +EXPORT_SYMBOL vmlinux 0x5f8d3189 replace_mount_options +EXPORT_SYMBOL vmlinux 0x5f97c670 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init +EXPORT_SYMBOL vmlinux 0x5fb46277 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x5fbd8cad blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fe4380f inode_add_bytes +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 0x60301109 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x603e92ba serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x606da107 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x60942176 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x6098ce1a agp_copy_info +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x609f5b35 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60aca437 param_get_bool +EXPORT_SYMBOL vmlinux 0x60b3a400 release_sock +EXPORT_SYMBOL vmlinux 0x60dcb172 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy +EXPORT_SYMBOL vmlinux 0x610c8bae do_truncate +EXPORT_SYMBOL vmlinux 0x61139b7f mmc_can_discard +EXPORT_SYMBOL vmlinux 0x611491cb open_check_o_direct +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61371b75 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x61520529 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x615654a1 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x616bb8f3 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x616d81e8 __alloc_skb +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x61894611 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x618e1f38 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61a0b4fa vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x61a9d299 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61cb08e8 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x61cc97f1 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x61d46534 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x61da0ce1 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x61de4f1b qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x61fb248a node_states +EXPORT_SYMBOL vmlinux 0x61fee5de blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable +EXPORT_SYMBOL vmlinux 0x6207b857 vfs_iter_read +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 0x622dfdb8 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event +EXPORT_SYMBOL vmlinux 0x623f703a tcp_close +EXPORT_SYMBOL vmlinux 0x624c8cc2 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x625618b0 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x626017f2 inet_confirm_addr +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 0x629c6b26 mutex_trylock +EXPORT_SYMBOL vmlinux 0x62a5b242 bio_endio +EXPORT_SYMBOL vmlinux 0x62b1a3ac msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x62d2ce05 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x62d5eba0 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x62e16566 inode_change_ok +EXPORT_SYMBOL vmlinux 0x62ef0d11 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x62f6c2b0 acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x6303e261 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x6317356c textsearch_unregister +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x63352dba kobject_del +EXPORT_SYMBOL vmlinux 0x6354b310 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x63651dc0 netdev_err +EXPORT_SYMBOL vmlinux 0x63654448 memory_cgrp_subsys +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 0x63a28456 n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d55f8d udp_set_csum +EXPORT_SYMBOL vmlinux 0x63d57a95 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x63dca402 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x640c327a blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x641e12e9 path_put +EXPORT_SYMBOL vmlinux 0x6422f097 eth_type_trans +EXPORT_SYMBOL vmlinux 0x6433b621 udp_seq_open +EXPORT_SYMBOL vmlinux 0x643baa08 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x644f0930 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x64590e49 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x646cf1ea dev_disable_lro +EXPORT_SYMBOL vmlinux 0x64961b0a add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a513de lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb +EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x650a7eb8 account_page_dirtied +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 0x654ca912 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x655ea154 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x65646b10 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x6582db9b unlock_rename +EXPORT_SYMBOL vmlinux 0x659f7550 try_module_get +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65cb1cd1 ipv6_chk_addr +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 0x65fdd9f1 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x6604555a pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x660a1db8 md_register_thread +EXPORT_SYMBOL vmlinux 0x661289b0 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x66423b20 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x66575bd1 inet_listen +EXPORT_SYMBOL vmlinux 0x6663f158 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x6675d422 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x667ad652 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x66923116 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x66ab3ead __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x66b5aebf neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x66dd2a55 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x66ffe69b del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x6707d744 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x6709a628 cdrom_release +EXPORT_SYMBOL vmlinux 0x67219473 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6756feab pci_find_capability +EXPORT_SYMBOL vmlinux 0x6758dab4 consume_skb +EXPORT_SYMBOL vmlinux 0x675da022 dst_init +EXPORT_SYMBOL vmlinux 0x676c1d3b mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x678233c6 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67bdb602 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x67c4392c tcp_proc_register +EXPORT_SYMBOL vmlinux 0x67cd6b7b sock_no_connect +EXPORT_SYMBOL vmlinux 0x6806df72 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x6810fa18 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x681ae692 dma_find_channel +EXPORT_SYMBOL vmlinux 0x6821b498 agp_bridge +EXPORT_SYMBOL vmlinux 0x685c2314 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x688507f0 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x68985247 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a87be0 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x68b5e7dc tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68e4a079 mmc_request_done +EXPORT_SYMBOL vmlinux 0x690b89f1 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x69155a55 pci_pme_active +EXPORT_SYMBOL vmlinux 0x6920ff27 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x69271969 vme_register_driver +EXPORT_SYMBOL vmlinux 0x6936e54a pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x693b3d3c __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x693bd69b kern_unmount +EXPORT_SYMBOL vmlinux 0x6940bd87 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x69506f6a km_is_alive +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697b1957 agp_generic_enable +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69ccc932 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x69d0bd6a netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x69d89146 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x69fbc0a2 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a1dcf71 read_cache_pages +EXPORT_SYMBOL vmlinux 0x6a2bba56 __lock_buffer +EXPORT_SYMBOL vmlinux 0x6a3cdab9 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a60277d acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x6a60e636 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a937e3f acl_by_type +EXPORT_SYMBOL vmlinux 0x6aa24fb1 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x6ac80f8e inet_csk_accept +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 0x6ae4c619 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x6ae5ff1e scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6afda665 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b121073 param_set_ullong +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b1f1a42 read_cache_page +EXPORT_SYMBOL vmlinux 0x6b2a774b vme_master_mmap +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b4e43b0 netif_napi_add +EXPORT_SYMBOL vmlinux 0x6b5527e6 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue +EXPORT_SYMBOL vmlinux 0x6b898411 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x6b8a8c16 proto_register +EXPORT_SYMBOL vmlinux 0x6b8f807b nf_ct_attach +EXPORT_SYMBOL vmlinux 0x6ba47ebc nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x6bb825d9 get_gendisk +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcf066d _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x6bd34da9 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be7e769 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x6be853bf ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x6be983ca scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c0f0772 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x6c210dd9 set_bh_page +EXPORT_SYMBOL vmlinux 0x6c364ba2 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x6c3d886d __ip_dev_find +EXPORT_SYMBOL vmlinux 0x6c44bc15 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x6c4c494f __vfs_write +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c5690f4 get_cached_acl +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c66c15a param_ops_byte +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c8751ad x86_hyper +EXPORT_SYMBOL vmlinux 0x6c8cb38a elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x6c8f4fca dm_put_table_device +EXPORT_SYMBOL vmlinux 0x6c9834eb inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x6cc42aee proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x6ccc4aa9 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x6cdfd8b2 clear_wb_congested +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 0x6d371acd xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x6d404e2c acpi_device_hid +EXPORT_SYMBOL vmlinux 0x6d5185b1 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x6d5d7c69 simple_release_fs +EXPORT_SYMBOL vmlinux 0x6d6f616d generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x6d7af254 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x6d9b8bce mapping_tagged +EXPORT_SYMBOL vmlinux 0x6d9d35ec bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x6d9e677d jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x6db831f8 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible +EXPORT_SYMBOL vmlinux 0x6dc1cb3e __bforget +EXPORT_SYMBOL vmlinux 0x6dc6dd56 down +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e071199 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x6e0af5f9 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x6e4a286e pv_cpu_ops +EXPORT_SYMBOL vmlinux 0x6e5cf570 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x6e61850f __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea35298 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x6ea6457b i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x6ec6c4c1 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x6ef24a22 vme_bus_num +EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x6f14f540 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f2abaee freeze_super +EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6f7f4c28 kfree_put_link +EXPORT_SYMBOL vmlinux 0x6f869cfd rtnl_set_sk_err +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 0x6fce5879 arp_tbl +EXPORT_SYMBOL vmlinux 0x6fce6271 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x6fee7b6a mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x6ff64e51 devm_memunmap +EXPORT_SYMBOL vmlinux 0x6ff917c2 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0x70012d2e devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x7002f77b netdev_notice +EXPORT_SYMBOL vmlinux 0x701a29c8 dev_change_flags +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x702a96d8 scsi_device_get +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x707054a3 request_firmware +EXPORT_SYMBOL vmlinux 0x7074e6ec set_binfmt +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x70a9bf7d netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x70b1acd0 input_open_device +EXPORT_SYMBOL vmlinux 0x70ce95b5 make_kuid +EXPORT_SYMBOL vmlinux 0x70d74561 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x70ea7331 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x70ef7d10 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7134d6d0 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x7144cb8e pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x7158aefe __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x716f6e50 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71828a66 proc_dostring +EXPORT_SYMBOL vmlinux 0x718b1d55 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71acdc0e from_kuid_munged +EXPORT_SYMBOL vmlinux 0x71bc678c dquot_quota_on +EXPORT_SYMBOL vmlinux 0x71c846f9 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x721cb8d4 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x722075d2 led_set_brightness +EXPORT_SYMBOL vmlinux 0x72220176 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x723e0eba get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x7241ae65 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x7260e249 ___preempt_schedule_notrace +EXPORT_SYMBOL vmlinux 0x7265b329 lro_flush_all +EXPORT_SYMBOL vmlinux 0x727d7cd7 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x7280af6c load_nls +EXPORT_SYMBOL vmlinux 0x72a7155a freeze_bdev +EXPORT_SYMBOL vmlinux 0x72a98fdb copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72d587f3 inode_init_once +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72fe6fb2 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x72ff72d6 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x730405dc pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x7304924a seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x7312a709 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x73179060 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x733084ab simple_getattr +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x734f4e03 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x735b3eaf noop_qdisc +EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get +EXPORT_SYMBOL vmlinux 0x73af5644 dev_get_flags +EXPORT_SYMBOL vmlinux 0x73c1699f get_empty_filp +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73f8708b phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x740708ad kernel_listen +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x743c87fb vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x743ec252 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty +EXPORT_SYMBOL vmlinux 0x74663aec tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x74784014 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74913e4e free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x749dec41 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c48dca mmc_add_host +EXPORT_SYMBOL vmlinux 0x74cbdd67 bdget_disk +EXPORT_SYMBOL vmlinux 0x74dfdbe2 __kfree_skb +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74ebc447 padata_free +EXPORT_SYMBOL vmlinux 0x74fda93e input_set_capability +EXPORT_SYMBOL vmlinux 0x74ff3a47 path_is_under +EXPORT_SYMBOL vmlinux 0x75092484 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x7517c2d4 tcp_prot +EXPORT_SYMBOL vmlinux 0x7525a60d kobject_init +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x75509fbd mmc_remove_host +EXPORT_SYMBOL vmlinux 0x7551128a ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x7577405b mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x759b0772 ata_print_version +EXPORT_SYMBOL vmlinux 0x75a652b0 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x75b8461f dqput +EXPORT_SYMBOL vmlinux 0x75bc2e70 phy_device_remove +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 0x75c938f6 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x75da062d inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x75f8ddcc skb_seq_read +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x760578c7 free_task +EXPORT_SYMBOL vmlinux 0x76074d91 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x76220e51 input_set_keycode +EXPORT_SYMBOL vmlinux 0x763bbdee bio_add_page +EXPORT_SYMBOL vmlinux 0x763bd380 vme_slave_request +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x765a2f7d key_alloc +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x76630165 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x76680b80 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x767466d0 netpoll_setup +EXPORT_SYMBOL vmlinux 0x767dd8fd acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x76867c79 rt6_lookup +EXPORT_SYMBOL vmlinux 0x76906967 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x76a25e75 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x76b113a8 dev_crit +EXPORT_SYMBOL vmlinux 0x76ba6ed9 vfs_fsync +EXPORT_SYMBOL vmlinux 0x76ce354d md_write_start +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76e78f15 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x77263864 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x77899102 set_create_files_as +EXPORT_SYMBOL vmlinux 0x7790d528 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779ccb68 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x77a82e76 from_kuid +EXPORT_SYMBOL vmlinux 0x77b00fc4 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c74eba __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x77ca6348 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x77cd2801 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x77d60272 notify_change +EXPORT_SYMBOL vmlinux 0x77d790b2 __bread_gfp +EXPORT_SYMBOL vmlinux 0x77ded15a netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x77e29374 netdev_update_features +EXPORT_SYMBOL vmlinux 0x77e45d16 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x77f53abc acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x77f551bc bdi_destroy +EXPORT_SYMBOL vmlinux 0x7806616d netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x780b671b ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x7825bf21 flush_signals +EXPORT_SYMBOL vmlinux 0x78352c2b dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x78359145 md_done_sync +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x784b498b kset_register +EXPORT_SYMBOL vmlinux 0x785daf92 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x786dd1f5 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x78701a74 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x78764f4e pv_irq_ops +EXPORT_SYMBOL vmlinux 0x7879ff02 set_user_nice +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 0x78c116cb blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x78c8af8b pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x78ca8cc2 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e739aa up +EXPORT_SYMBOL vmlinux 0x78fd8ed1 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x790176c7 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x791013f6 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock +EXPORT_SYMBOL vmlinux 0x7920064d dev_open +EXPORT_SYMBOL vmlinux 0x79219c2e seq_vprintf +EXPORT_SYMBOL vmlinux 0x792dcdbf pci_dev_get +EXPORT_SYMBOL vmlinux 0x793a6ccb dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x795ef2e6 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x796354b1 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x79673b9b tty_insert_flip_string_flags +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 0x79ab7eef devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x79dc4252 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x79f1545a __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x79f337f5 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x7a11e1d3 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a3fc0c5 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a4f4690 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x7a6768ac __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7a844b66 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x7a9d2f49 km_report +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab2e4d7 prepare_creds +EXPORT_SYMBOL vmlinux 0x7ab4d250 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abd50f1 dentry_open +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad5db0d inet6_add_offload +EXPORT_SYMBOL vmlinux 0x7ae42107 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7afea271 d_walk +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b3dcefd vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x7b5113bf pagevec_lookup +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7ba6953c inet_frags_init +EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x7bb21968 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x7bc79278 set_trace_device +EXPORT_SYMBOL vmlinux 0x7bca0e4b blk_complete_request +EXPORT_SYMBOL vmlinux 0x7bdc4956 passthru_features_check +EXPORT_SYMBOL vmlinux 0x7be75ffc acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x7bfbe192 user_path_create +EXPORT_SYMBOL vmlinux 0x7bfcabb1 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c191f44 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c3ffa82 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c688099 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x7c90f304 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7c98e3d9 genphy_read_status +EXPORT_SYMBOL vmlinux 0x7ca27b65 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cbe48ef xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x7cd8eb32 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x7cdcfe54 __hw_addr_sync_dev +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 0x7d0dc377 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d15af11 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x7d1f0992 vfs_statfs +EXPORT_SYMBOL vmlinux 0x7d262348 register_gifconf +EXPORT_SYMBOL vmlinux 0x7d287136 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x7d3f4ef9 tty_register_driver +EXPORT_SYMBOL vmlinux 0x7d54b1d3 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x7d69b332 update_devfreq +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d71445d cpu_active_mask +EXPORT_SYMBOL vmlinux 0x7d8089d7 __check_sticky +EXPORT_SYMBOL vmlinux 0x7d81278a netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x7da4b14b tty_unregister_device +EXPORT_SYMBOL vmlinux 0x7db50f0a devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x7dba524e pnp_device_detach +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7dda7029 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e179373 param_ops_bint +EXPORT_SYMBOL vmlinux 0x7e586a01 dump_truncate +EXPORT_SYMBOL vmlinux 0x7e5ad234 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x7e5c35b1 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x7e73e54d devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit +EXPORT_SYMBOL vmlinux 0x7ea03465 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x7ebd4be4 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x7edff676 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7efafc97 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f0a4284 simple_setattr +EXPORT_SYMBOL vmlinux 0x7f0eaf60 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x7f1449d8 sync_filesystem +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f2a0fe8 param_get_int +EXPORT_SYMBOL vmlinux 0x7f48f671 put_tty_driver +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f63bca1 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x7f67774d flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x7f858976 udp_disconnect +EXPORT_SYMBOL vmlinux 0x7f87f5dd sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x7f8ee2d4 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x7f9c2d5e pci_claim_resource +EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7fc59337 __devm_request_region +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x8002bc0b blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x8010d7b0 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x8034b5d4 ps2_command +EXPORT_SYMBOL vmlinux 0x803c5159 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x803cc1bc tcf_register_action +EXPORT_SYMBOL vmlinux 0x804b7b63 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x8063001a vme_irq_generate +EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x80851fb2 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy +EXPORT_SYMBOL vmlinux 0x809d96ab lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x80a0945a tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x80b75fca neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e4bff9 kernel_accept +EXPORT_SYMBOL vmlinux 0x80e6965e do_SAK +EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x80f48a82 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x811fb1ec write_one_page +EXPORT_SYMBOL vmlinux 0x81313dc0 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x813e6732 put_disk +EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table +EXPORT_SYMBOL vmlinux 0x8147aba1 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815ce8c7 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x815ed680 sock_no_poll +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x816d8e67 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x8191c246 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x819853c3 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x81a0925a i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x81a3f1d4 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x81baed1d inet_accept +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81fe1fd7 release_firmware +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x820e6417 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x82226d1a sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x822305d2 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x822b0174 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x823d3075 pci_get_device +EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x824c1aaf agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x825a5ce8 cdev_init +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x828b0593 vme_irq_free +EXPORT_SYMBOL vmlinux 0x829534b3 fence_free +EXPORT_SYMBOL vmlinux 0x82a571d7 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82c8c0d8 tty_vhangup +EXPORT_SYMBOL vmlinux 0x82daaeb3 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x82dd422c qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x82ec0ff7 tso_count_descs +EXPORT_SYMBOL vmlinux 0x82f5fee7 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot +EXPORT_SYMBOL vmlinux 0x831777bc cfb_copyarea +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x8362984b remove_proc_entry +EXPORT_SYMBOL vmlinux 0x836f08de cfb_fillrect +EXPORT_SYMBOL vmlinux 0x838237e3 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x8384647a acpi_map_pxm_to_online_node +EXPORT_SYMBOL vmlinux 0x838e8afe input_grab_device +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x839759d3 nobh_write_end +EXPORT_SYMBOL vmlinux 0x839ccf7e clkdev_alloc +EXPORT_SYMBOL vmlinux 0x83a5151c lro_receive_skb +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83c36ead md_finish_reshape +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x8411c15b jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x8442199f __register_chrdev +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x84a342eb copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x84a96b6a d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x84b1f276 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x8507c383 proc_dointvec +EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x85289fb6 xfrm_input +EXPORT_SYMBOL vmlinux 0x853c154a __napi_schedule +EXPORT_SYMBOL vmlinux 0x85509f46 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x8564e85c tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x8567d463 vme_bus_type +EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x85a3335c param_ops_long +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85b7d5f4 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x8621afb8 revert_creds +EXPORT_SYMBOL vmlinux 0x862d59b0 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x862f0ce5 tty_throttle +EXPORT_SYMBOL vmlinux 0x863e882f pci_get_subsys +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x865f9984 mdiobus_free +EXPORT_SYMBOL vmlinux 0x8660084a generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x86662ee7 elv_add_request +EXPORT_SYMBOL vmlinux 0x866cd5a2 fd_install +EXPORT_SYMBOL vmlinux 0x8670b372 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x86886a17 dev_emerg +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x869ab988 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a6b430 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x86b456b5 touch_buffer +EXPORT_SYMBOL vmlinux 0x86cfbc68 wake_up_process +EXPORT_SYMBOL vmlinux 0x86ee310b lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x871393a7 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x87154896 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x8717a314 __d_drop +EXPORT_SYMBOL vmlinux 0x871b9bd8 elv_rb_add +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x87340a44 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x873879f8 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x87396c3a blk_put_request +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 0x878df2e0 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x87af1e0a peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x87c50c36 vfs_unlink +EXPORT_SYMBOL vmlinux 0x87c5dece bio_chain +EXPORT_SYMBOL vmlinux 0x87f91735 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x880fe359 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x88488ea4 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x884e2a71 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x88710f7d lookup_one_len +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x888f37c4 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x88c2aa00 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x88d18ad2 up_write +EXPORT_SYMBOL vmlinux 0x88e0c26b acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x890abd55 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x892de3fb __nla_put +EXPORT_SYMBOL vmlinux 0x8931a6fc scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x896aa59b jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x899ee305 tty_kref_put +EXPORT_SYMBOL vmlinux 0x89a6c342 pnp_is_active +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89ce3026 simple_dname +EXPORT_SYMBOL vmlinux 0x89cebb42 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89e86a11 fasync_helper +EXPORT_SYMBOL vmlinux 0x89fa9da6 padata_start +EXPORT_SYMBOL vmlinux 0x8a002826 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a1f12b5 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x8a333cdc proto_unregister +EXPORT_SYMBOL vmlinux 0x8a3f5aa1 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a493752 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x8a4a11a7 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a5dd0a6 blk_integrity_merge_bio +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 0x8acc3b74 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8ad7d8a5 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x8adfadbf blk_init_tags +EXPORT_SYMBOL vmlinux 0x8aea61bf xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x8b1b03e0 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x8b31e4b6 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b39d4fc scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x8b4169aa __sk_dst_check +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b9761d3 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x8b989879 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8ba420bf phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x8bb8b0b6 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x8bda09fe nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x8be688af __dst_free +EXPORT_SYMBOL vmlinux 0x8be7a910 blk_peek_request +EXPORT_SYMBOL vmlinux 0x8bef5101 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x8c09fb11 may_umount_tree +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c39fe8c inet_offloads +EXPORT_SYMBOL vmlinux 0x8c44c7db dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x8c46adae sock_rfree +EXPORT_SYMBOL vmlinux 0x8c55086c init_buffer +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c672246 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x8c786425 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x8c95fe68 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x8c9dddeb inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x8cabfe6e inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x8cc0e139 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x8cc25ae9 seq_escape +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8ce487ae xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x8cf1a339 load_nls_default +EXPORT_SYMBOL vmlinux 0x8cfaab90 free_netdev +EXPORT_SYMBOL vmlinux 0x8d117197 blk_get_queue +EXPORT_SYMBOL vmlinux 0x8d17196b send_sig +EXPORT_SYMBOL vmlinux 0x8d2fc570 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5e66fc blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x8d5e7b59 dquot_acquire +EXPORT_SYMBOL vmlinux 0x8d69d93e __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove +EXPORT_SYMBOL vmlinux 0x8d8abd41 scsi_execute +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8da1ae79 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init +EXPORT_SYMBOL vmlinux 0x8db9bfe3 skb_pad +EXPORT_SYMBOL vmlinux 0x8dc63ee0 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8dfc841b nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e00ca0a call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x8e0c7ec9 pci_bus_get +EXPORT_SYMBOL vmlinux 0x8e2d83b6 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x8e64a09a bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x8e6da219 __block_write_begin +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e86ecea tcp_seq_open +EXPORT_SYMBOL vmlinux 0x8e8bd36e inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x8e8c9de2 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ee483fe netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x8ee5089f blk_sync_queue +EXPORT_SYMBOL vmlinux 0x8ee63d64 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x8eee7864 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x8f1239ac udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x8f159a2a mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f58b1be pci_dev_put +EXPORT_SYMBOL vmlinux 0x8f5d6112 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x8f7a70c7 i2c_transfer +EXPORT_SYMBOL vmlinux 0x8f8401b6 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fb50621 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x8fd1152e _raw_write_unlock +EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x8fe98295 bio_copy_data +EXPORT_SYMBOL vmlinux 0x8fecb1cf netif_device_attach +EXPORT_SYMBOL vmlinux 0x90006f25 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x902bc290 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x903028ba blk_start_request +EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x90492292 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x9051df04 vfs_setpos +EXPORT_SYMBOL vmlinux 0x90529836 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x9058b983 sk_capable +EXPORT_SYMBOL vmlinux 0x905f520d md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x908413cd dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0x9085d39c phy_start +EXPORT_SYMBOL vmlinux 0x90928f8a fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x90a98906 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x90af6df8 blk_finish_request +EXPORT_SYMBOL vmlinux 0x90c032c5 vfs_mknod +EXPORT_SYMBOL vmlinux 0x90d0beb6 dma_ops +EXPORT_SYMBOL vmlinux 0x90dbfd65 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x90e215f9 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x90e44cc2 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x90e4d3e9 input_register_handler +EXPORT_SYMBOL vmlinux 0x90e6a50b __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x90ec5ccf alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x9117bdaa pci_enable_device +EXPORT_SYMBOL vmlinux 0x9118140a kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x91313833 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x91542c53 lock_fb_info +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91836978 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x91836df6 audit_log +EXPORT_SYMBOL vmlinux 0x9188d72f blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x9192ddf8 d_alloc +EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91b68569 sock_no_accept +EXPORT_SYMBOL vmlinux 0x91d0f2f5 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x91ec0c05 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x91f5ee46 dquot_get_state +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x91fe7c19 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x9228cdb1 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x922c9d8e key_unlink +EXPORT_SYMBOL vmlinux 0x922e0399 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x924806a2 clkdev_add +EXPORT_SYMBOL vmlinux 0x92584d52 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92d95b02 simple_transaction_set +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 0x930ab791 generic_make_request +EXPORT_SYMBOL vmlinux 0x931dcdfd blk_register_region +EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x934f9073 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93a2e87f cdev_alloc +EXPORT_SYMBOL vmlinux 0x93a59774 inet_bind +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b745c5 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x93bfe78b vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x93d15b16 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0x93d8de17 PDE_DATA +EXPORT_SYMBOL vmlinux 0x93d8edc2 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x93da7e35 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x93f3e52b acpi_extract_package +EXPORT_SYMBOL vmlinux 0x93f5d64f pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x93fc0475 dm_put_device +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x940223ad kernel_getpeername +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x94218b97 f_setown +EXPORT_SYMBOL vmlinux 0x94228265 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x94548788 inet_getname +EXPORT_SYMBOL vmlinux 0x945ba036 sync_inode +EXPORT_SYMBOL vmlinux 0x946e1e61 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x9479e77c mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b2d615 devm_clk_get +EXPORT_SYMBOL vmlinux 0x94c35400 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x94de7ccd mmc_start_req +EXPORT_SYMBOL vmlinux 0x94f5fbdf from_kgid +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9511d8e6 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x95185cf0 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x951f724d __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x95230fbb inode_init_owner +EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x955a832f ___preempt_schedule +EXPORT_SYMBOL vmlinux 0x9580227e kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x958b9f13 pci_get_slot +EXPORT_SYMBOL vmlinux 0x958c45ab __f_setown +EXPORT_SYMBOL vmlinux 0x9592c8f6 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x9594acd7 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x95b16f58 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x95b6224c eth_mac_addr +EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0x95df8df4 sock_create +EXPORT_SYMBOL vmlinux 0x95fdde07 complete_request_key +EXPORT_SYMBOL vmlinux 0x96107dd9 get_fs_type +EXPORT_SYMBOL vmlinux 0x962724ba scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x9647e3ab sget_userns +EXPORT_SYMBOL vmlinux 0x964fd158 dm_io +EXPORT_SYMBOL vmlinux 0x9660d941 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x967e2ccb inet_ioctl +EXPORT_SYMBOL vmlinux 0x9681eca8 mpage_readpage +EXPORT_SYMBOL vmlinux 0x96aba385 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96bf4df2 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x96c8bbba dquot_enable +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96dd6f91 __serio_register_port +EXPORT_SYMBOL vmlinux 0x96e8d3af nvm_get_blk +EXPORT_SYMBOL vmlinux 0x96f48d0d simple_open +EXPORT_SYMBOL vmlinux 0x971ba1a0 input_register_handle +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x9759cbe8 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x975d2bfb fb_find_mode +EXPORT_SYMBOL vmlinux 0x976123f4 sock_wake_async +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97ae5e64 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x97c2b478 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x97d6814f redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x97d9ff2c kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x97e40377 tty_check_change +EXPORT_SYMBOL vmlinux 0x97ea324a path_noexec +EXPORT_SYMBOL vmlinux 0x97f56b0e __module_get +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x983bdd62 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x9851c70d path_get +EXPORT_SYMBOL vmlinux 0x9855c078 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x986684af init_task +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x98709fc0 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x98860327 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x988c2967 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x988c96df param_set_invbool +EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL vmlinux 0x98924441 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x989b82ef jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x98a052c6 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x98a4600b generic_permission +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98d58930 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x98ddb859 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x9940680f cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x994ff383 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x996e9e75 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x9970f9a6 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x9985545c write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e64e9 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a3428d tty_register_device +EXPORT_SYMBOL vmlinux 0x99adf97b blk_put_queue +EXPORT_SYMBOL vmlinux 0x99ca5f4d put_io_context +EXPORT_SYMBOL vmlinux 0x99cc6a7f scsi_scan_target +EXPORT_SYMBOL vmlinux 0x99cc8572 dev_get_stats +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map +EXPORT_SYMBOL vmlinux 0x9a08adad amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x9a1019b5 kobject_add +EXPORT_SYMBOL vmlinux 0x9a1a3a00 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a29e9cc end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x9a3d4d7a dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x9a4cfef6 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x9a50043e agp_create_memory +EXPORT_SYMBOL vmlinux 0x9a7b5362 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x9a84632a ip_options_compile +EXPORT_SYMBOL vmlinux 0x9a9ec42d skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x9ac432d7 netlink_capable +EXPORT_SYMBOL vmlinux 0x9ad6adf7 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x9ade5be1 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9aed1e82 pci_choose_state +EXPORT_SYMBOL vmlinux 0x9afa039e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x9b1065dc migrate_page +EXPORT_SYMBOL vmlinux 0x9b179065 generic_readlink +EXPORT_SYMBOL vmlinux 0x9b180a92 simple_rmdir +EXPORT_SYMBOL vmlinux 0x9b1dbeed __get_page_tail +EXPORT_SYMBOL vmlinux 0x9b200e6d pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x9b2358f3 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b74cce3 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x9b78d2cb neigh_table_clear +EXPORT_SYMBOL vmlinux 0x9b802420 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba10b9d kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bbaafd1 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bcf9a9a napi_disable +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9beae322 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x9bf80831 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x9c019054 param_get_ushort +EXPORT_SYMBOL vmlinux 0x9c0cbdf6 input_reset_device +EXPORT_SYMBOL vmlinux 0x9c3bf6ae pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x9c41535c agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x9c467128 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x9c4755db pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c53ad3e kernel_read +EXPORT_SYMBOL vmlinux 0x9c557270 inet6_offloads +EXPORT_SYMBOL vmlinux 0x9c764b29 eth_header_cache +EXPORT_SYMBOL vmlinux 0x9c9075e5 kobject_get +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cc0a835 dm_get_device +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d23f977 simple_empty +EXPORT_SYMBOL vmlinux 0x9d32e24c filemap_page_mkwrite +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 0x9d3d15c5 proc_create_data +EXPORT_SYMBOL vmlinux 0x9d73b286 kthread_stop +EXPORT_SYMBOL vmlinux 0x9d8a9f23 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9dbb588d mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x9dbfc2e5 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x9dde2754 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x9e098e2b cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0f1b25 x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0x9e1cb8b6 scsi_register +EXPORT_SYMBOL vmlinux 0x9e2d91a9 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e4b2e43 clear_nlink +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 0x9e789fd7 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x9e797152 skb_dequeue +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea0e085 proc_set_user +EXPORT_SYMBOL vmlinux 0x9ea71b05 skb_append +EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ec2236e sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x9eca9c84 block_write_begin +EXPORT_SYMBOL vmlinux 0x9eccfda3 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x9ed7226b framebuffer_release +EXPORT_SYMBOL vmlinux 0x9edaaf66 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x9ef8af0e sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x9f1a40e6 unlock_page +EXPORT_SYMBOL vmlinux 0x9f243620 file_open_root +EXPORT_SYMBOL vmlinux 0x9f295535 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x9f393916 should_remove_suid +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f648474 sock_release +EXPORT_SYMBOL vmlinux 0x9f66463f netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x9f730db3 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x9f74e088 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f82b61b devm_gpio_request +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fc81401 generic_setxattr +EXPORT_SYMBOL vmlinux 0x9fd3258a tty_do_resize +EXPORT_SYMBOL vmlinux 0x9fd3ba19 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fd959a9 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe50366 dquot_alloc +EXPORT_SYMBOL vmlinux 0x9fe6a75d seq_open_private +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa002d229 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xa0072609 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa01a8c6b sock_update_memcg +EXPORT_SYMBOL vmlinux 0xa026fe8c inet6_bind +EXPORT_SYMBOL vmlinux 0xa033c2f9 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06c1e8d clk_add_alias +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 0xa087c303 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xa0a0666d tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0d64940 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0df7bfc udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0ec8c2b blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0fe5b49 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa11e311d set_nlink +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa144759e scsi_register_driver +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa14d1546 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xa180e419 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xa1ad42e5 dquot_free_inode +EXPORT_SYMBOL vmlinux 0xa1ae315c ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1b767ea __breadahead +EXPORT_SYMBOL vmlinux 0xa1b78814 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xa1c753c8 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1fbc7c2 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa204aae3 __brelse +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa21b26ee max8925_reg_read +EXPORT_SYMBOL vmlinux 0xa21bc50b param_get_ulong +EXPORT_SYMBOL vmlinux 0xa23e26ca pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xa2524e21 phy_find_first +EXPORT_SYMBOL vmlinux 0xa255ff4f cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xa276bab3 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xa27d22c6 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2debb11 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xa2e8fdc4 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa320018d set_anon_super +EXPORT_SYMBOL vmlinux 0xa32a8151 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xa3350aff netlink_net_capable +EXPORT_SYMBOL vmlinux 0xa33f095a sock_edemux +EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa35194f5 devm_memremap +EXPORT_SYMBOL vmlinux 0xa362cd1b pci_save_state +EXPORT_SYMBOL vmlinux 0xa37ae604 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa37f45e1 flow_cache_init +EXPORT_SYMBOL vmlinux 0xa38535d9 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xa39212fa simple_rename +EXPORT_SYMBOL vmlinux 0xa3b43e66 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xa3dc66f2 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xa41d07fe tcf_em_register +EXPORT_SYMBOL vmlinux 0xa44e08db dup_iter +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa46719ec neigh_seq_next +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa481fff1 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xa48f4111 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xa49acbd8 blk_fetch_request +EXPORT_SYMBOL vmlinux 0xa49fe38b __elv_add_request +EXPORT_SYMBOL vmlinux 0xa4a0e1e5 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4bb6464 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xa4c21fa9 pci_set_master +EXPORT_SYMBOL vmlinux 0xa4d293bb pid_task +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4eca6a8 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xa4ef1001 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xa4fb3355 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xa4ff9c0b devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xa50a80c2 boot_cpu_data +EXPORT_SYMBOL vmlinux 0xa516c102 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xa51cc831 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xa52be86c fs_bio_set +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa58a7f78 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a15538 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xa5a4c396 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5bef6f5 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xa5c4113c input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xa5cf83d6 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xa5d521a0 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xa5e60ec5 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xa61caa91 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa654a635 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xa6715bc9 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xa674e099 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa69cdfb6 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xa6a14037 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xa6a8f156 deactivate_super +EXPORT_SYMBOL vmlinux 0xa6acda21 security_path_mknod +EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up +EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error +EXPORT_SYMBOL vmlinux 0xa6bf9f42 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xa6cfef97 dev_close +EXPORT_SYMBOL vmlinux 0xa6e28ed7 dev_add_offload +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa741f7bc dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xa74b594c __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xa74bcd62 rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xa76aeb67 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock +EXPORT_SYMBOL vmlinux 0xa7aab500 kern_path +EXPORT_SYMBOL vmlinux 0xa7c9ac7c scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xa7cc3c14 ilookup5 +EXPORT_SYMBOL vmlinux 0xa7d113aa vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xa7e040b9 param_ops_int +EXPORT_SYMBOL vmlinux 0xa7e38d63 finish_no_open +EXPORT_SYMBOL vmlinux 0xa7e6bcdb dump_align +EXPORT_SYMBOL vmlinux 0xa7ed1918 __mutex_init +EXPORT_SYMBOL vmlinux 0xa8006f65 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xa81255e5 netdev_printk +EXPORT_SYMBOL vmlinux 0xa83c140f blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xa83f99f9 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0xa8431fea mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84dd42d wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xa85c2837 bh_submit_read +EXPORT_SYMBOL vmlinux 0xa861f70e down_write_trylock +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa8743d5c sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xa8848b82 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xa898f00a tc_classify +EXPORT_SYMBOL vmlinux 0xa8a627d6 simple_write_end +EXPORT_SYMBOL vmlinux 0xa8ade36b i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xa8e368fd jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xa8e58225 ip6_xmit +EXPORT_SYMBOL vmlinux 0xa8e8082f mmc_fixup_device +EXPORT_SYMBOL vmlinux 0xa8f60c76 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa90a8717 eth_header +EXPORT_SYMBOL vmlinux 0xa90fda0e swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xa910d555 blk_get_request +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91d90d3 nla_put +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa9299b08 __frontswap_load +EXPORT_SYMBOL vmlinux 0xa93c3ce2 devm_gpio_free +EXPORT_SYMBOL vmlinux 0xa9411d6c kill_litter_super +EXPORT_SYMBOL vmlinux 0xa96e0b7f mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa979ed4d dev_printk +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xa9bb464d max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xa9bd2676 __vmalloc +EXPORT_SYMBOL vmlinux 0xa9c2e4d0 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9cf6559 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xa9d1783f unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xa9dedb76 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xa9e48857 vc_cons +EXPORT_SYMBOL vmlinux 0xa9fb43c2 netlink_ack +EXPORT_SYMBOL vmlinux 0xaa0c2abe __skb_checksum +EXPORT_SYMBOL vmlinux 0xaa14dca0 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xaa65607e amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa9a48c9 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaaddce35 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xaae7fe25 set_wb_congested +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaaf25059 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab014f69 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xab04e31a unlock_buffer +EXPORT_SYMBOL vmlinux 0xab12ea9b request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xab28e6b8 param_set_bool +EXPORT_SYMBOL vmlinux 0xab38847f input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xab3d67fb __ps2_command +EXPORT_SYMBOL vmlinux 0xab41adfc follow_up +EXPORT_SYMBOL vmlinux 0xab4c6ff2 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xab4f6482 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xab57e86f mmc_detect_change +EXPORT_SYMBOL vmlinux 0xab6003d8 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63fef2 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab70ed9c bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab9e4338 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xab9f8071 blk_rq_init +EXPORT_SYMBOL vmlinux 0xaba3159c gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xac05a425 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac2d9da6 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac449c69 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xac787838 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xac7b4ab6 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xac7d309b blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xac98c82e ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xac9bdd35 pci_enable_msix +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacae92f5 amd_northbridges +EXPORT_SYMBOL vmlinux 0xacb08125 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xacb6bb59 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy +EXPORT_SYMBOL vmlinux 0xacc1746f insert_inode_locked +EXPORT_SYMBOL vmlinux 0xacc76868 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd31b77 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xacd7d8e1 param_ops_uint +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacd96004 devm_clk_put +EXPORT_SYMBOL vmlinux 0xacec9a97 led_update_brightness +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0b2dca page_put_link +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad1dd26b i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xad2377ba inet6_release +EXPORT_SYMBOL vmlinux 0xad27130e always_delete_dentry +EXPORT_SYMBOL vmlinux 0xad3766c3 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xad39701e phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xad3a33c9 request_key +EXPORT_SYMBOL vmlinux 0xad40c1a6 mmc_can_reset +EXPORT_SYMBOL vmlinux 0xad629bf6 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xad698f77 dqstats +EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad8d65b4 unregister_netdev +EXPORT_SYMBOL vmlinux 0xada806cb pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xada998d3 genphy_resume +EXPORT_SYMBOL vmlinux 0xadac57c2 unregister_console +EXPORT_SYMBOL vmlinux 0xadda2765 blk_make_request +EXPORT_SYMBOL vmlinux 0xadf18fb5 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list +EXPORT_SYMBOL vmlinux 0xae102947 seq_read +EXPORT_SYMBOL vmlinux 0xae1662df qdisc_destroy +EXPORT_SYMBOL vmlinux 0xae2a0222 sock_no_listen +EXPORT_SYMBOL vmlinux 0xae3202f7 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xae3fa51e phy_print_status +EXPORT_SYMBOL vmlinux 0xae41988c scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0xae492832 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xae619ac6 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xae71054a no_llseek +EXPORT_SYMBOL vmlinux 0xae742041 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xae817537 kill_anon_super +EXPORT_SYMBOL vmlinux 0xaea3bd22 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xaea81c5a gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xaeba6399 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xaebe9927 dev_mc_del +EXPORT_SYMBOL vmlinux 0xaee01030 netdev_warn +EXPORT_SYMBOL vmlinux 0xaf004c8b vfs_whiteout +EXPORT_SYMBOL vmlinux 0xaf180be5 skb_store_bits +EXPORT_SYMBOL vmlinux 0xaf27f641 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf57bd5c find_get_entry +EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf74d0ae security_d_instantiate +EXPORT_SYMBOL vmlinux 0xafb8c6ff copy_user_generic_string +EXPORT_SYMBOL vmlinux 0xafbbd308 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xafbdb157 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xafbe1a9a module_refcount +EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xafd85866 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xafe091fd blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xb0038676 seq_file_path +EXPORT_SYMBOL vmlinux 0xb0102853 blk_delay_queue +EXPORT_SYMBOL vmlinux 0xb0181b2c skb_copy_bits +EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xb02bd591 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xb035196f noop_llseek +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb06b90f1 ilookup +EXPORT_SYMBOL vmlinux 0xb08dcc6f pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a29905 tty_set_operations +EXPORT_SYMBOL vmlinux 0xb0b23ca9 kernel_bind +EXPORT_SYMBOL vmlinux 0xb0b27013 generic_write_end +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +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 0xb11ad14f prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xb1206164 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb148bfca d_prune_aliases +EXPORT_SYMBOL vmlinux 0xb152d87d cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb181645f d_add_ci +EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init +EXPORT_SYMBOL vmlinux 0xb1957f93 fixed_phy_update_state +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 0xb1d78321 block_read_full_page +EXPORT_SYMBOL vmlinux 0xb1d9e55c pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xb1f53b8b tcp_disconnect +EXPORT_SYMBOL vmlinux 0xb20ecf88 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb21f90e1 km_state_expired +EXPORT_SYMBOL vmlinux 0xb2296329 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xb22f2f4e phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xb256140d posix_test_lock +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb2690cda iterate_mounts +EXPORT_SYMBOL vmlinux 0xb26ec5e8 send_sig_info +EXPORT_SYMBOL vmlinux 0xb281ef05 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xb2b352e1 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2c3e9a1 mount_nodev +EXPORT_SYMBOL vmlinux 0xb2d5a552 complete +EXPORT_SYMBOL vmlinux 0xb2de8232 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xb2df8629 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xb2e6c008 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xb2eda765 phy_init_eee +EXPORT_SYMBOL vmlinux 0xb2f50858 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb2fe5e65 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xb303e49d dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xb309f045 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb346df43 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb36a574b security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xb38af026 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xb399d4ed vga_switcheroo_init_domain_pm_optimus_hdmi_audio +EXPORT_SYMBOL vmlinux 0xb3abb0fd d_genocide +EXPORT_SYMBOL vmlinux 0xb3aee430 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xb3b33415 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xb3c0f7e8 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0xb3c4f481 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xb3d2967a skb_put +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d93bc0 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xb3db914f __scm_send +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb401fd89 km_state_notify +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb436802f skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xb437207e phy_detach +EXPORT_SYMBOL vmlinux 0xb44057d6 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xb457554f sock_i_ino +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class +EXPORT_SYMBOL vmlinux 0xb489125c __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xb4afcf8c xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xb4c8df87 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xb4c9077d ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xb4ce3318 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xb4e24aec dcb_getapp +EXPORT_SYMBOL vmlinux 0xb4fb15ee force_sig +EXPORT_SYMBOL vmlinux 0xb515f23c nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xb52e8351 padata_stop +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5818a4d pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xb592efdc twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xb59a8902 acpi_pm_device_run_wake +EXPORT_SYMBOL vmlinux 0xb59c9c21 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5c0d081 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xb5c2e29a input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xb5ef5d32 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xb5f8a276 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb62fd341 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xb64dd413 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xb67035bc vfs_getattr +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6836f80 napi_get_frags +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69f1522 __inode_permission +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb701d555 simple_nosetlease +EXPORT_SYMBOL vmlinux 0xb7128359 param_ops_short +EXPORT_SYMBOL vmlinux 0xb72840ba blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xb730a7a1 kern_path_create +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb74ec414 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb76d6a55 inet_sendpage +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb7791fcb genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xb79fe6ed ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xb7a17676 kernel_write +EXPORT_SYMBOL vmlinux 0xb7b7dfa2 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7ca123f compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xb7e9a778 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xb7eff33a node_data +EXPORT_SYMBOL vmlinux 0xb81236cb udp_poll +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb8864f46 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xb895bfbd compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xb89a3fb9 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xb8a087f8 down_read_trylock +EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xb8b747e6 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xb8bc07eb mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xb8c7eff8 neigh_table_init +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8e7e1ec tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0xb8fcb3ca pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize +EXPORT_SYMBOL vmlinux 0xb90560e3 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb93b756b blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xb93e30d8 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xb9555ca0 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xb95d8e52 release_pages +EXPORT_SYMBOL vmlinux 0xb971a997 d_splice_alias +EXPORT_SYMBOL vmlinux 0xb984f670 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f06c00 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xb9f6bad9 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xba0c9666 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0xba0fd774 netdev_features_change +EXPORT_SYMBOL vmlinux 0xba107ec5 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xba120a36 dev_load +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba32c4d6 init_net +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4c2901 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xba78675c skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xba7a1c28 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xbaa88de0 pci_select_bars +EXPORT_SYMBOL vmlinux 0xbaae7962 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xbac273ad ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xbad13e52 locks_init_lock +EXPORT_SYMBOL vmlinux 0xbaebb0b0 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb1950a4 vme_irq_request +EXPORT_SYMBOL vmlinux 0xbb287cbc mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0xbb32f87f sk_net_capable +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb46024f pcie_set_mps +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb76ea24 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xbb8ab032 nd_dev_to_uuid +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 0xbbc22be4 skb_trim +EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt +EXPORT_SYMBOL vmlinux 0xbc08401b remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc260624 vga_client_register +EXPORT_SYMBOL vmlinux 0xbc460631 make_kprojid +EXPORT_SYMBOL vmlinux 0xbc59f25b crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xbc72d91c xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xbc8a1f3e ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xbc8cd623 mount_bdev +EXPORT_SYMBOL vmlinux 0xbc94f596 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xbcb26cc0 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xbcb371dd abort_creds +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbd02a070 blk_end_request_all +EXPORT_SYMBOL vmlinux 0xbd078962 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xbd395b6f ___pskb_trim +EXPORT_SYMBOL vmlinux 0xbd40173f blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd5c0fac pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xbd65f773 generic_perform_write +EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0xbd6e51bb may_umount +EXPORT_SYMBOL vmlinux 0xbd8972ca start_tty +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbda5f52e dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xbdad60fc neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdba91e6 param_set_byte +EXPORT_SYMBOL vmlinux 0xbdbd5f76 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xbde872e0 elevator_init +EXPORT_SYMBOL vmlinux 0xbdf05c29 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe66e3bd __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xbe8ac133 security_path_unlink +EXPORT_SYMBOL vmlinux 0xbea163e7 pci_iomap +EXPORT_SYMBOL vmlinux 0xbeb0b40f xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xbebd10d9 param_set_int +EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefb007f pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xbefd2396 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xbf109ae5 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xbf2ab0d7 sock_i_uid +EXPORT_SYMBOL vmlinux 0xbf56725b __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8059c7 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfe6f427 _raw_spin_unlock_irq +EXPORT_SYMBOL vmlinux 0xbfe7c165 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbfff9301 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xc0237545 phy_device_register +EXPORT_SYMBOL vmlinux 0xc030270f dev_get_by_name +EXPORT_SYMBOL vmlinux 0xc030c7af set_security_override +EXPORT_SYMBOL vmlinux 0xc03fc726 icmpv6_send +EXPORT_SYMBOL vmlinux 0xc058e74f inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xc05a933c inet_addr_type +EXPORT_SYMBOL vmlinux 0xc05d6ba0 generic_show_options +EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xc05fd162 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0766192 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc08678b6 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xc087481f is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xc088c832 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xc0a1df1c iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0a9b2d5 __napi_complete +EXPORT_SYMBOL vmlinux 0xc0b2ee99 elv_register_queue +EXPORT_SYMBOL vmlinux 0xc0b42fd9 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xc0b71aea lock_sock_nested +EXPORT_SYMBOL vmlinux 0xc0b84402 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xc0cd3b13 ___ratelimit +EXPORT_SYMBOL vmlinux 0xc0ddfeea jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xc0ee695b locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xc1140acb i2c_clients_command +EXPORT_SYMBOL vmlinux 0xc148c99b netif_rx_ni +EXPORT_SYMBOL vmlinux 0xc1571237 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xc1597299 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc1604d9d vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0xc16ca054 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xc179874a insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xc188e454 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xc1b4c4ea skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xc1caa374 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xc1d01ebc mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1e58b5a add_disk +EXPORT_SYMBOL vmlinux 0xc1f457c1 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xc1f5cab2 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc246ef3b kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xc295c331 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2aa5249 vfs_write +EXPORT_SYMBOL vmlinux 0xc2af3120 nla_append +EXPORT_SYMBOL vmlinux 0xc2bfd753 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xc2bfdc9f ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e8449c blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xc30f7804 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc3198519 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xc31a9f54 generic_file_open +EXPORT_SYMBOL vmlinux 0xc31b89f0 key_revoke +EXPORT_SYMBOL vmlinux 0xc329035d napi_gro_flush +EXPORT_SYMBOL vmlinux 0xc32976de dmam_pool_create +EXPORT_SYMBOL vmlinux 0xc32dbc5f skb_clone +EXPORT_SYMBOL vmlinux 0xc330aa46 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xc334a554 sock_create_kern +EXPORT_SYMBOL vmlinux 0xc33e7a3c xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xc34b9888 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0xc34ba3ee vme_irq_handler +EXPORT_SYMBOL vmlinux 0xc350b4eb wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xc36e2fc5 ns_capable +EXPORT_SYMBOL vmlinux 0xc372e317 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xc373fb8b free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xc390fb0b __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xc3966737 is_bad_inode +EXPORT_SYMBOL vmlinux 0xc3a64092 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0xc3a996aa scmd_printk +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3ad7d60 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xc3b767bc seq_open +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3cb3601 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0xc3d2c0cd __register_nls +EXPORT_SYMBOL vmlinux 0xc3dfec99 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0xc3e79035 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xc3ee8e83 vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0xc40186f1 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xc40f8e96 __free_pages +EXPORT_SYMBOL vmlinux 0xc41bdcda __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xc45adc35 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xc45e88b6 pci_iounmap +EXPORT_SYMBOL vmlinux 0xc46f3f5f netif_skb_features +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc4831144 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xc4837db3 backlight_force_update +EXPORT_SYMBOL vmlinux 0xc48f4232 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xc49479f9 flush_old_exec +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4c40836 dquot_disable +EXPORT_SYMBOL vmlinux 0xc4cf7db7 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xc4d5295c mpage_readpages +EXPORT_SYMBOL vmlinux 0xc4f331c6 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xc4fec4e5 inc_nlink +EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0xc52b6d1f mmc_release_host +EXPORT_SYMBOL vmlinux 0xc539451c nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xc54d61ce i2c_master_send +EXPORT_SYMBOL vmlinux 0xc552ab2b tcf_action_exec +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc5593a5a dquot_operations +EXPORT_SYMBOL vmlinux 0xc576da0d proc_mkdir +EXPORT_SYMBOL vmlinux 0xc5907da8 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59cb22b jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xc5ab3079 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xc5b4ce9f udp_sendmsg +EXPORT_SYMBOL vmlinux 0xc5bfd7b9 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xc5c392ea tty_port_close_end +EXPORT_SYMBOL vmlinux 0xc5d46f01 pcim_iomap +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e0ddba to_nd_btt +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc602beb8 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xc6122d19 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xc61a73cf unregister_binfmt +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc64bb46d agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xc65a3f12 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc663d94e kthread_bind +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xc67bceb7 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xc68a7279 __quota_error +EXPORT_SYMBOL vmlinux 0xc691854e vlan_vid_add +EXPORT_SYMBOL vmlinux 0xc69760dd vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xc6ac2003 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xc6af4ee5 arp_xmit +EXPORT_SYMBOL vmlinux 0xc6b0b078 fget +EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xc6cb16c8 clk_get +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6e53f3b mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xc7098774 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xc70ade1e tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xc714aac4 register_shrinker +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7330303 md_write_end +EXPORT_SYMBOL vmlinux 0xc738ba96 udplite_prot +EXPORT_SYMBOL vmlinux 0xc7484d17 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xc75afdff sock_queue_err_skb +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 0xc79a1596 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xc79bb4cb gen_pool_alloc +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4439c __register_binfmt +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7c31e9b inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xc7cf0d1f blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xc7cf8185 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xc7febb4d sock_from_file +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 0xc8536e14 agp_bind_memory +EXPORT_SYMBOL vmlinux 0xc85410cb netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc88a38a8 __neigh_create +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8946c43 devm_release_resource +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8ba2dad ab3100_event_register +EXPORT_SYMBOL vmlinux 0xc8d72c6d tty_write_room +EXPORT_SYMBOL vmlinux 0xc8d99083 bio_split +EXPORT_SYMBOL vmlinux 0xc8ea96cc param_set_ushort +EXPORT_SYMBOL vmlinux 0xc9112d93 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc9234288 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0xc932bd00 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xc95a034c end_page_writeback +EXPORT_SYMBOL vmlinux 0xc961edb5 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc966a381 mntput +EXPORT_SYMBOL vmlinux 0xc96c635d neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc981661f mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xc996f10b pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock +EXPORT_SYMBOL vmlinux 0xc9cec385 page_follow_link_light +EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue +EXPORT_SYMBOL vmlinux 0xca0bf75d tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca245969 lease_modify +EXPORT_SYMBOL vmlinux 0xca260b30 set_page_dirty +EXPORT_SYMBOL vmlinux 0xca453bb1 give_up_console +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca931be1 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaeebf42 dump_skip +EXPORT_SYMBOL vmlinux 0xcaf2b3f0 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaffe895 kdb_current_task +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb318066 noop_fsync +EXPORT_SYMBOL vmlinux 0xcb456f6c blkdev_put +EXPORT_SYMBOL vmlinux 0xcb5211ee scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xcb55e756 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xcb560745 d_set_d_op +EXPORT_SYMBOL vmlinux 0xcb608249 md_update_sb +EXPORT_SYMBOL vmlinux 0xcb6813f2 prepare_binprm +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb7414ce vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xcb753520 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xcb8f7020 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcb9efe87 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbb73c02 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbfb2f77 update_region +EXPORT_SYMBOL vmlinux 0xcc001a59 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xcc043369 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xcc138f30 nf_log_unset +EXPORT_SYMBOL vmlinux 0xcc17fa1f xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xcc23b9da ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc2c2692 elevator_alloc +EXPORT_SYMBOL vmlinux 0xcc30bc98 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xcc344809 i2c_master_recv +EXPORT_SYMBOL vmlinux 0xcc47a5dc dev_uc_init +EXPORT_SYMBOL vmlinux 0xcc4ed3f6 mount_single +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc557924 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0xcc5a4156 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl +EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute +EXPORT_SYMBOL vmlinux 0xcc955323 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xcc9aa2a6 register_sysctl +EXPORT_SYMBOL vmlinux 0xcca28551 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xcccb47b4 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xcd084d85 register_cdrom +EXPORT_SYMBOL vmlinux 0xcd141827 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd461afe jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xcd64dca3 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xcd818110 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xcd9d36f1 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xcda899bb set_pages_array_uc +EXPORT_SYMBOL vmlinux 0xcdb6ccab __vfs_read +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcde43296 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xcdeef1d3 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0xcdfd2dc3 set_disk_ro +EXPORT_SYMBOL vmlinux 0xce0e2d66 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xce16a006 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xce23dc92 get_tz_trend +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xce3a8b21 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce51d95f mmc_free_host +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce5f0ddd devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xce61f7c0 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xce6ba709 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xce6bb87e debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xced2fc72 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf31925a loop_register_transfer +EXPORT_SYMBOL vmlinux 0xcf3c3a1a rtnl_unicast +EXPORT_SYMBOL vmlinux 0xcf5142f9 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xcf600a69 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcf964df9 nf_reinject +EXPORT_SYMBOL vmlinux 0xcfaa0a7b inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xcfaabd2b mmc_erase +EXPORT_SYMBOL vmlinux 0xcfb4a296 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xcfbb2de2 security_file_permission +EXPORT_SYMBOL vmlinux 0xcfbbcbf0 kill_pid +EXPORT_SYMBOL vmlinux 0xd010d999 __break_lease +EXPORT_SYMBOL vmlinux 0xd0215002 generic_update_time +EXPORT_SYMBOL vmlinux 0xd02f8da0 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xd056b400 submit_bio_wait +EXPORT_SYMBOL vmlinux 0xd05cf343 dst_discard_out +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd084f736 fget_raw +EXPORT_SYMBOL vmlinux 0xd08c2672 d_delete +EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a65c0b find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0ac03f5 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xd0b9fddf elevator_exit +EXPORT_SYMBOL vmlinux 0xd0c78de7 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xd0d7cef3 blkdev_get +EXPORT_SYMBOL vmlinux 0xd0e817f2 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xd0ece86d vlan_vid_del +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0f91b6e dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd10b4cf8 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xd129ff36 commit_creds +EXPORT_SYMBOL vmlinux 0xd13bbb9e proc_remove +EXPORT_SYMBOL vmlinux 0xd14a1973 inet_shutdown +EXPORT_SYMBOL vmlinux 0xd14c1a0f dquot_commit +EXPORT_SYMBOL vmlinux 0xd1586183 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xd15f7b6f km_query +EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1bbb343 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xd1c43814 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xd1c68a69 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1f24ec4 backlight_device_register +EXPORT_SYMBOL vmlinux 0xd1f3c18d md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace +EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd214674b param_set_uint +EXPORT_SYMBOL vmlinux 0xd2198c0a create_empty_buffers +EXPORT_SYMBOL vmlinux 0xd23d8367 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xd2404e27 tcp_poll +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 0xd25fbcae dqget +EXPORT_SYMBOL vmlinux 0xd26d303e blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xd273c3a8 skb_pull +EXPORT_SYMBOL vmlinux 0xd2757546 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2991266 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e5b3ca input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xd32ac01e pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xd32ef7c6 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xd330defe single_open_size +EXPORT_SYMBOL vmlinux 0xd3368048 dquot_initialize +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd3719d59 paravirt_ticketlocks_enabled +EXPORT_SYMBOL vmlinux 0xd373bd1f dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xd37d1867 vga_switcheroo_set_dynamic_switch +EXPORT_SYMBOL vmlinux 0xd3865220 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xd38f7287 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xd38fba11 install_exec_creds +EXPORT_SYMBOL vmlinux 0xd395928e remove_arg_zero +EXPORT_SYMBOL vmlinux 0xd39b88fc tcf_hash_create +EXPORT_SYMBOL vmlinux 0xd3a71fdf keyring_alloc +EXPORT_SYMBOL vmlinux 0xd3b468cd swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3ec07eb compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0xd43ba081 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xd453bb6a set_groups +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd47ec761 bdi_init +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd4a29c2c kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xd4be7a5e mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xd4d58b17 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xd4fd56fc fsnotify_put_group +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd52beba1 drop_super +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd55208cd nf_log_packet +EXPORT_SYMBOL vmlinux 0xd552a70b sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xd5553126 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xd58d5c92 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5a1f7e6 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xd5daba40 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xd5f0601c udp_proc_register +EXPORT_SYMBOL vmlinux 0xd5f2a7b2 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0xd5f72e50 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xd602dd6b dquot_destroy +EXPORT_SYMBOL vmlinux 0xd61099fc __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd619b122 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd635e541 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd651b95f ip_check_defrag +EXPORT_SYMBOL vmlinux 0xd66c3859 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xd671ab6e netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xd67460fb dev_mc_init +EXPORT_SYMBOL vmlinux 0xd6753065 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd689b628 pci_clear_master +EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xd6950172 misc_deregister +EXPORT_SYMBOL vmlinux 0xd69511eb scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xd69e8a97 alloc_file +EXPORT_SYMBOL vmlinux 0xd6a00109 mount_subtree +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6d0e86b __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd7021037 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xd70d6932 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xd716c337 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xd730959d seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xd74450f2 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd7606c11 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xd766c222 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xd7838449 pci_platform_rom +EXPORT_SYMBOL vmlinux 0xd7a95d7f input_release_device +EXPORT_SYMBOL vmlinux 0xd7d00fea tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xd7d6c545 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e40db7 phy_driver_register +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7fcd855 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0xd834a210 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xd83a9373 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xd8422cb1 phy_stop +EXPORT_SYMBOL vmlinux 0xd85bef9c serio_close +EXPORT_SYMBOL vmlinux 0xd864ba11 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a53ec1 param_ops_bool +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8d4e2a2 generic_listxattr +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8e6fed2 sock_efree +EXPORT_SYMBOL vmlinux 0xd8e8e43a mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xd8edfe2e register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd92aeed0 clear_inode +EXPORT_SYMBOL vmlinux 0xd92e2dca tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xd93fd6bc bdevname +EXPORT_SYMBOL vmlinux 0xd940f0ff igrab +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd94e7c45 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xd9513ed0 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd9766e17 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xd98091fa __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xd981a563 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9b83f3b dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xd9c1b910 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xd9c65897 seq_write +EXPORT_SYMBOL vmlinux 0xd9c66774 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xd9c67fa9 cpu_info +EXPORT_SYMBOL vmlinux 0xd9c6bfe7 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xd9c8f033 vfs_symlink +EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9e1b593 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xd9e2d0b6 bd_set_size +EXPORT_SYMBOL vmlinux 0xd9f638a6 down_write +EXPORT_SYMBOL vmlinux 0xda0a438e md_error +EXPORT_SYMBOL vmlinux 0xda331a00 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda519c7c set_cached_acl +EXPORT_SYMBOL vmlinux 0xda7b9c9b dput +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda897cac md_reload_sb +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdaab7b78 nvm_submit_io +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdae80100 _raw_spin_unlock +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdaf889a5 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb4ebafd inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6a9fa8 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb9a75d1 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xdba3fc60 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xdbab8a69 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xdbd30d60 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xdbe1c379 tcp_child_process +EXPORT_SYMBOL vmlinux 0xdbe72754 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xdbe8c53f pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc16d3eb blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc47ceda page_symlink +EXPORT_SYMBOL vmlinux 0xdc4bc714 dev_get_phys_port_id +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 0xdc6c2b65 cdev_del +EXPORT_SYMBOL vmlinux 0xdc91d4be inet6_protos +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcbafb13 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xdcfc5ab1 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xdd02918d sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xdd10dfe5 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0xdd14b974 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xdd35fc7f eth_header_parse +EXPORT_SYMBOL vmlinux 0xdd4faec4 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xdd50ee35 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xdd57e6df scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xdd62d1ec bio_reset +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd74b742 would_dump +EXPORT_SYMBOL vmlinux 0xdd7e73f3 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xddae1003 file_path +EXPORT_SYMBOL vmlinux 0xddafa94e fb_class +EXPORT_SYMBOL vmlinux 0xddb583f6 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0xddfe5a3e mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xde16dc16 tboot +EXPORT_SYMBOL vmlinux 0xde1b5e49 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xde2116cd dev_activate +EXPORT_SYMBOL vmlinux 0xde34776b __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xde45bd2f zpool_register_driver +EXPORT_SYMBOL vmlinux 0xde4c2572 block_write_full_page +EXPORT_SYMBOL vmlinux 0xde5958ec tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xde5968ad tso_build_data +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde6e25fb __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xde76c423 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xde7c120f scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xde825e3f iov_iter_advance +EXPORT_SYMBOL vmlinux 0xde9030bf seq_dentry +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde941032 current_in_userns +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xde9b9189 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xdedd6486 neigh_for_each +EXPORT_SYMBOL vmlinux 0xdef23f5c dquot_scan_active +EXPORT_SYMBOL vmlinux 0xdefc3cc0 proc_set_size +EXPORT_SYMBOL vmlinux 0xdf06674e vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdf1427e5 idr_remove +EXPORT_SYMBOL vmlinux 0xdf154ff0 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xdf2ad110 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf4d24b3 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xdf5135ad pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf7d1912 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xdf81fb27 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf8cb9dd xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfa17e09 uart_register_driver +EXPORT_SYMBOL vmlinux 0xdfb6928d pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xdfd3e3ca simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xdfe37fcb led_blink_set +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe00aa903 brioctl_set +EXPORT_SYMBOL vmlinux 0xe018dd02 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xe031c8a2 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe0643042 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0xe06f587b __getblk_slow +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 0xe0978f86 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xe0a73261 mount_ns +EXPORT_SYMBOL vmlinux 0xe0a9aaf4 napi_complete_done +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b28d3a clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0xe0ee4390 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xe0fbb3b4 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe1281b09 register_framebuffer +EXPORT_SYMBOL vmlinux 0xe130ba15 blkdev_fsync +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe15be0e8 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe179c5f8 __nd_driver_register +EXPORT_SYMBOL vmlinux 0xe19f0bee input_set_abs_params +EXPORT_SYMBOL vmlinux 0xe1bde4cc con_copy_unimap +EXPORT_SYMBOL vmlinux 0xe1cb0671 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xe1cb5f8e alloc_disk_node +EXPORT_SYMBOL vmlinux 0xe1fb7821 pci_bus_put +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe2396faf kernel_sendpage +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe248ce45 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe24eeb8b abx500_register_ops +EXPORT_SYMBOL vmlinux 0xe254af4b single_open +EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xe25b022a qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xe25e5920 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xe2704970 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xe279a741 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xe2849d69 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xe29b04e9 acpi_set_firmware_waking_vector64 +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2a3740c unregister_qdisc +EXPORT_SYMBOL vmlinux 0xe2b3b7de compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2fc4d44 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0xe304182c kill_block_super +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe3209961 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xe321fcb6 __find_get_block +EXPORT_SYMBOL vmlinux 0xe3315095 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xe336f874 thaw_super +EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe33cc7da sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xe3a4b5ee iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3aa185a ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xe3b923fe check_disk_change +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3bdc7be __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xe3c63851 dget_parent +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3e2bc70 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xe40991a2 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xe448be77 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xe46bb2de tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xe474cc59 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe4ac8af7 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xe4aeb66d jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xe4c0b322 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xe4dc56de tty_port_put +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4e8fa37 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xe4ea4ed9 phy_init_hw +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4f97f3c sk_mc_loop +EXPORT_SYMBOL vmlinux 0xe5020194 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xe51ab7b1 write_cache_pages +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe54f1fca neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xe5721059 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xe572dd42 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe57c1b4a tty_free_termios +EXPORT_SYMBOL vmlinux 0xe57cfe39 dquot_drop +EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5c35060 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xe5c42e8f mmc_get_card +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d72c31 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xe5e0f2ba pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe6162877 down_killable +EXPORT_SYMBOL vmlinux 0xe625b85a tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xe62a08d9 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0xe638683d sock_wfree +EXPORT_SYMBOL vmlinux 0xe64b92a7 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe6684c58 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xe689dd1b bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6b0e293 down_read +EXPORT_SYMBOL vmlinux 0xe6c18f1c mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xe6c40874 param_get_invbool +EXPORT_SYMBOL vmlinux 0xe6ede777 generic_setlease +EXPORT_SYMBOL vmlinux 0xe6f3837d do_splice_from +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe74ba8d3 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe75b30cf bioset_free +EXPORT_SYMBOL vmlinux 0xe7807ad1 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xe7861438 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7c51ebc vme_master_request +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7db851b filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xe7dc0f92 rwsem_wake +EXPORT_SYMBOL vmlinux 0xe7f67665 tso_build_hdr +EXPORT_SYMBOL vmlinux 0xe7f9f202 dst_alloc +EXPORT_SYMBOL vmlinux 0xe7fb9826 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xe80d0160 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xe81024ca md_cluster_ops +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe828e893 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xe83a771e __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0xe8425ec0 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xe85c5ea6 console_start +EXPORT_SYMBOL vmlinux 0xe85d48ed iov_iter_init +EXPORT_SYMBOL vmlinux 0xe85e8208 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xe862b376 __pagevec_release +EXPORT_SYMBOL vmlinux 0xe8731918 x86_hyper_xen +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe8972fb9 sk_wait_data +EXPORT_SYMBOL vmlinux 0xe8a576a4 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b0d410 param_get_byte +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c2db54 input_close_device +EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe8dcd004 generic_removexattr +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe8fc8e8f swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0xe8ff4d5c blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xe908c66a netif_receive_skb +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9268eda tty_hangup +EXPORT_SYMBOL vmlinux 0xe92a4b23 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xe935997a unregister_key_type +EXPORT_SYMBOL vmlinux 0xe9428e1d dquot_commit_info +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe966f01f uart_add_one_port +EXPORT_SYMBOL vmlinux 0xe97fe385 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xe99538c7 tcp_filter +EXPORT_SYMBOL vmlinux 0xe9970927 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xe9acfac4 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xe9b4e3e5 vga_get +EXPORT_SYMBOL vmlinux 0xe9b9cede __sb_end_write +EXPORT_SYMBOL vmlinux 0xe9dd243a ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea087178 generic_write_checks +EXPORT_SYMBOL vmlinux 0xea0c465c sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xea4624e6 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xea573c80 ping_prot +EXPORT_SYMBOL vmlinux 0xea6f1d0e locks_copy_lock +EXPORT_SYMBOL vmlinux 0xea725770 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xea962cce dev_addr_del +EXPORT_SYMBOL vmlinux 0xeac73847 irq_regs +EXPORT_SYMBOL vmlinux 0xeac8f730 new_inode +EXPORT_SYMBOL vmlinux 0xeacf9087 dentry_unhash +EXPORT_SYMBOL vmlinux 0xeae28269 seq_puts +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaf5ae64 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xeafe8405 __netif_schedule +EXPORT_SYMBOL vmlinux 0xeb195ba4 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3dc8c3 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb84b8de capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xebee57ad tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xebff5cf5 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xec20eb14 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xec24095c nf_afinfo +EXPORT_SYMBOL vmlinux 0xec299a7b register_filesystem +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec4ff21f md_unregister_thread +EXPORT_SYMBOL vmlinux 0xec5ad9ed mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xec74a71d nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xec84fc2d seq_release +EXPORT_SYMBOL vmlinux 0xec8bdccc __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xec924802 dcb_setapp +EXPORT_SYMBOL vmlinux 0xec9dc002 tty_unlock +EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy +EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xecd85926 nvm_put_blk +EXPORT_SYMBOL vmlinux 0xecdf00f3 sock_no_getname +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecef54c9 sk_alloc +EXPORT_SYMBOL vmlinux 0xecf19bf4 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed2acb90 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xed3a377e n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xed52c2b5 uart_resume_port +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed77f7aa pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedcab729 scsi_device_put +EXPORT_SYMBOL vmlinux 0xede04fad sg_miter_start +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedf8c720 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xee08a41d cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xee0eed2e kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee2e5d2a padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xee328d96 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xee3e1080 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xee3e5e4e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xee4f1429 alloc_disk +EXPORT_SYMBOL vmlinux 0xee7ba5f5 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee7f0ae6 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xee84f552 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xee878629 input_register_device +EXPORT_SYMBOL vmlinux 0xee87e133 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9e196f d_alloc_name +EXPORT_SYMBOL vmlinux 0xeea3cd7a nla_reserve +EXPORT_SYMBOL vmlinux 0xeea4fc77 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeaaeb0a tcp_parse_options +EXPORT_SYMBOL vmlinux 0xeeba3241 bmap +EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0xeecb5913 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xeeee18ea dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef427cb lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xef044bbc blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0xef0725a9 con_is_bound +EXPORT_SYMBOL vmlinux 0xef0a4694 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xef14dfe4 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xef1aa4c3 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xef69dab9 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xef862b47 reservation_object_add_excl_fence +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 0xefe535f3 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf03bde01 dst_release +EXPORT_SYMBOL vmlinux 0xf042d1da pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size +EXPORT_SYMBOL vmlinux 0xf065d04d nvm_dev_factory +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait +EXPORT_SYMBOL vmlinux 0xf082c338 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0a06a58 get_acl +EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf0adef22 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xf0af8b5e genl_unregister_family +EXPORT_SYMBOL vmlinux 0xf0c7fd8c generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xf0dbacc6 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf1035543 simple_link +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf108b12e truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf116d4b5 copy_in_user +EXPORT_SYMBOL vmlinux 0xf11b969f udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xf11dcb25 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xf120e586 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf1671325 vfs_writev +EXPORT_SYMBOL vmlinux 0xf16f08b4 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xf17566eb iterate_supers_type +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19ba41f __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xf1b3db5c rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ff8259 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xf206d7c9 make_kgid +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf2146885 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xf21f39f0 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xf2308aba sock_recvmsg +EXPORT_SYMBOL vmlinux 0xf23dafb8 uart_match_port +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf25b2f5f __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xf2822390 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xf287558a seq_printf +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 0xf2b5ecf5 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2ce4cd7 submit_bh +EXPORT_SYMBOL vmlinux 0xf2d0c2eb dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xf2e49a67 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xf303d45b file_ns_capable +EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31500f8 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34b091b poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0xf34f5636 input_free_device +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf354e050 mfd_add_devices +EXPORT_SYMBOL vmlinux 0xf366b1a1 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf38b69fc dev_mc_add +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 0xf3a62ac9 security_inode_permission +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f7971b tcp_splice_read +EXPORT_SYMBOL vmlinux 0xf40d6f95 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xf41635e9 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xf4169980 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xf43a831e pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf45d08ab phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47db5f2 nd_iostat_end +EXPORT_SYMBOL vmlinux 0xf495fb9e iunique +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4ae13e2 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4cc5c4c mpage_writepages +EXPORT_SYMBOL vmlinux 0xf4e7f50c simple_transaction_release +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf5314c0e ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf556eb11 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xf562e346 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0xf569710b adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xf5828a84 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a81c99 d_rehash +EXPORT_SYMBOL vmlinux 0xf5b04c29 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0xf5b731af devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5cd1a90 serio_interrupt +EXPORT_SYMBOL vmlinux 0xf5dc5de2 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xf5dcae60 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5ed29ce ip6_frag_match +EXPORT_SYMBOL vmlinux 0xf5f75524 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xf5fe946d udp_del_offload +EXPORT_SYMBOL vmlinux 0xf61ca8e3 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xf635f4f9 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf63b5ab8 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xf64f9267 simple_unlink +EXPORT_SYMBOL vmlinux 0xf671643e phy_attach +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf686b709 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xf693a145 irq_stat +EXPORT_SYMBOL vmlinux 0xf699984e kobject_put +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6d90f5c nd_integrity_init +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf710ee01 bdev_read_only +EXPORT_SYMBOL vmlinux 0xf71c52f1 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xf73181b8 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0xf73b1856 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xf7409fdc bdi_register_owner +EXPORT_SYMBOL vmlinux 0xf74af023 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf75b8fde unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xf764868a udplite_table +EXPORT_SYMBOL vmlinux 0xf7715742 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xf77b3f34 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xf77d324b iget_failed +EXPORT_SYMBOL vmlinux 0xf787fffb pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xf7988584 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xf79d23f0 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0xf7b11695 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xf7f6647c rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xf809a84d skb_copy_and_csum_datagram_msg +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 0xf84968db xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xf849e7f1 get_agp_version +EXPORT_SYMBOL vmlinux 0xf861d61c mmc_power_save_host +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf88e215c blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xf88f92b6 neigh_xmit +EXPORT_SYMBOL vmlinux 0xf8938e1a dev_mc_flush +EXPORT_SYMBOL vmlinux 0xf8a562c0 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xf8ad31b2 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xf8c57d2b get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8e6768c pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xf8e82549 ihold +EXPORT_SYMBOL vmlinux 0xf8eca39e jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf90994be max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xf917150a lwtunnel_output +EXPORT_SYMBOL vmlinux 0xf9175119 inet_add_offload +EXPORT_SYMBOL vmlinux 0xf91d8379 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xf93de3f5 is_nd_pfn +EXPORT_SYMBOL vmlinux 0xf93ff6ee balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xf94fca4a pci_disable_device +EXPORT_SYMBOL vmlinux 0xf9507bea dev_remove_offload +EXPORT_SYMBOL vmlinux 0xf995b9d6 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xf99e65cd xattr_full_name +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9c07f7a devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c66b5b mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xf9e13649 netif_napi_del +EXPORT_SYMBOL vmlinux 0xf9e4c75b genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xf9f13f86 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xf9fb58b9 dev_trans_start +EXPORT_SYMBOL vmlinux 0xfa242d0c devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xfa354d3b remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa63a047 tso_start +EXPORT_SYMBOL vmlinux 0xfa64cab2 __init_rwsem +EXPORT_SYMBOL vmlinux 0xfa65e6fc tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xfa7cf8d2 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xfa801d37 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xfaa2e0af input_allocate_device +EXPORT_SYMBOL vmlinux 0xfaa57853 blk_run_queue +EXPORT_SYMBOL vmlinux 0xfaa941bb skb_queue_tail +EXPORT_SYMBOL vmlinux 0xfab1bba1 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfadfca96 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0xfae40d18 register_md_personality +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb28de91 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xfb2ed47f agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0xfb322a2f iterate_dir +EXPORT_SYMBOL vmlinux 0xfb578fc5 memset +EXPORT_SYMBOL vmlinux 0xfb691d2f gen_pool_free +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb74c6d6 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb97d76a pci_find_bus +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbc858cc inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xfbce5015 security_path_rename +EXPORT_SYMBOL vmlinux 0xfbcf1174 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xfbe633de inet_frag_find +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc141f87 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3c2aa0 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xfc5dd38e kill_fasync +EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps +EXPORT_SYMBOL vmlinux 0xfc969f59 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xfc970ec4 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcb1c576 unregister_quota_format +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 0xfcf10e64 dev_driver_string +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd21a9a6 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xfd2b4f7f qdisc_list_add +EXPORT_SYMBOL vmlinux 0xfd399123 tty_port_close +EXPORT_SYMBOL vmlinux 0xfd54a0f9 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xfd6bfd01 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xfd6e9c2d vfs_read +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdc50fcd scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xfdc70eeb kill_pgrp +EXPORT_SYMBOL vmlinux 0xfdcd5aa8 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xfddaff6b __skb_tx_hash +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 0xfe18962f __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe34ac73 current_fs_time +EXPORT_SYMBOL vmlinux 0xfe36bfcd skb_make_writable +EXPORT_SYMBOL vmlinux 0xfe3a7b35 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xfe409892 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe67947f stop_tty +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 0xfea00276 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xfec053da submit_bio +EXPORT_SYMBOL vmlinux 0xfec0762f dcache_dir_open +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee2142f bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xfee82f36 scsi_host_get +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next +EXPORT_SYMBOL vmlinux 0xfef9e19f blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff238493 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xff2725e3 dump_trace +EXPORT_SYMBOL vmlinux 0xff5019ef sk_free +EXPORT_SYMBOL vmlinux 0xff62bf36 fb_pan_display +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff68bde0 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff77f93c blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xff7fe23d scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xff86154b get_io_context +EXPORT_SYMBOL vmlinux 0xff8c98bc tcp_sync_mss +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 0xffb890c8 free_user_ns +EXPORT_SYMBOL vmlinux 0xffd2a6eb dev_alloc_name +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xfff441cc set_pages_x +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 0x39c79480 lrw_camellia_exit_tfm +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x50dc55b6 __camellia_enc_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x930f687f camellia_decrypt_cbc_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xa41a5ad3 camellia_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xa85e050b lrw_camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xf4521fda camellia_dec_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xf8b4fe6e xts_camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x2ec1f86c glue_cbc_encrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x73d54ea6 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 0xa0a58a22 glue_xts_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xa8848265 glue_ctr_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xcc9b0c3d glue_ecb_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x016a957f serpent_xts_enc_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x0c5a8af6 serpent_xts_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x0ff3c26d serpent_xts_dec +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x3383ad10 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 0x95e31154 lrw_serpent_exit_tfm +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9ae34b2f serpent_xts_enc +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9e018632 __serpent_crypt_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9f99663c serpent_ctr_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xa84ea33d serpent_ecb_enc_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xdc09f460 lrw_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 0x6baa20b5 xts_twofish_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x842079c5 lrw_twofish_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x8d75ab44 twofish_enc_blk_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x8e856922 twofish_enc_blk_ctr_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x910a6433 lrw_twofish_exit_tfm +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xf2e80e9c __twofish_enc_blk_3way +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01ccd216 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x023abe13 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x03a3537a kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x040af619 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06210edb kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06b4c933 kvm_mmu_unprotect_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x070f9719 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07bfa007 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07c2d96e kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x080be3ad __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08e94b0a kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ab80882 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c5338d1 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d4adf8b __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f64a361 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f9f9efb kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10302b93 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x103d6215 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15d9bdeb kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17c114b8 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x184288ef kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1887e78e kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19803755 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a58d34a kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c59e4d3 kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1db0cb73 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ecbd77a cpuid_query_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f1f8ae0 kvm_valid_efer +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 0x2372f9fe kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25aa4021 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a7c0c93 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a9abcf7 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c78b8d4 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d84133b kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2de48082 reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e057373 kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f41028b kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ff8f8d7 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x338fa565 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35c15b6f kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x395acbbb kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3963cb28 kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ba79d9e x86_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e8e9326 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3fbaccb4 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3fbf35d9 kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4046cc4c kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x409653d6 kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41f546cb handle_mmio_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x428eac71 kvm_vcpu_reload_apic_access_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44046cb1 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4509fe60 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x476378b2 kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x487bb610 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4aaf7c10 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b7af270 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4da08f76 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51c348cf kvm_fast_pio_out +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52f12875 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53c1326d kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x589680bc kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5937d046 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x597bcba8 x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a31e128 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a9c52ca kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5beccb3b kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5eb1b2e1 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x611d248c kvm_get_kvm +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 0x67f59071 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c15db72 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c5e4c4a kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ec066a9 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f75e3ea __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f9522c1 kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x710f5901 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x71b1af70 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7273dd7f kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73ae496a __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x743fa79d kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x768e76b0 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78d6d863 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79b405b7 kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c04779e kvm_mmu_slot_leaf_clear_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff1ca84 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x802011f0 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81d5ec17 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8211e262 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x827fb4ad kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8493b992 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x84aebe0c kvm_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86554d4d __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x875864ed gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x885b6a09 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x895e70fb kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a5babb4 kvm_mmu_slot_largepage_remove_write_access +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 0x8ec76556 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x925ef137 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92b8872b kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9305a94b __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94c1683c gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94d016f9 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9520f5ee kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95dbd1a9 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98062413 reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x988d1dd0 kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98ec4d5d kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x992a59bf kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ac6bdf1 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0ec3a0a gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4d57013 __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7371744 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7702976 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacb2e172 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf7f97c gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0bbe7f5 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0ea04ad kvm_intr_is_single_vcpu +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 0xb330ba97 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4d751e3 kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9cbf65c kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd97e2b9 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbeb996d6 kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfee24bd kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1adc2cb __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc44108ff kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc444da40 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc54a7d1f kvm_mmu_sync_roots +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 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 0xd158aff7 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1f1306a kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2847206 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd291c821 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2b1b7da kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd40626c0 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd48db0c5 kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd800daf2 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd93bbd46 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb6f0e57 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdbbd0849 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7d2f97 kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde499baa kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe19fb74b kvm_mmu_slot_set_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1d87e30 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe279600c kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe34c0eea kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe835f3ad kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe856dd3a kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe950a26f reset_shadow_zero_bits_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec046bac kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xefc9e56c kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2290cc4 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2312a76 __tracepoint_kvm_ple_window +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2c925b1 kvm_mmu_clear_dirty_pt_masked +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf38ebb2e kvm_requeue_exception +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 0xf946030a kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa47b7a3 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbd95c91 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfcc43677 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd76cb87 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff7b5bf9 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x438baa29 ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x5da80b8e ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x6cc2af0a ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x725716c2 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x8f9cfe3e ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xce8d21b2 ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xf1acef46 __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x1858cf8c af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x22bc5fdf af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x6ecc5ff8 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x6ffb8e51 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x921741c2 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xa701ee03 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xaf9534c4 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xc05c0db9 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xec767550 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xfda6f43a af_alg_release +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xd2e5d81d async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x0e22279d async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x2495e175 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x5c5437cb async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x8325e310 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x53c6f519 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xda9da4de __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf5184837 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xfed114de async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7d7f90c3 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe7ac7601 async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xc360df91 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 0x8be2ed72 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 0xcfa2ac81 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 0x3ba771de crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xe9e4122e crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x11d0bf2f cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x3b3ff4a3 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x47f8eff5 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x71edf548 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x78a8efd8 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x89d44080 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xc70130d1 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xcd92c7e1 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xdd2e2bde cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xf4360cf5 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 0x2c4ae5d4 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 0x0dc1ef3c shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0x158eda6f shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x2c6b5a41 shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x62e1224f mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0xbe6cc32a mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0xbfe6b322 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xd5f2bbf9 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0xe0808ffe mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x72455992 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xa9cfb205 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xe4bda2b5 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xfbf8b9a8 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xc8df4290 serpent_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x8b1a8fe2 twofish_setkey +EXPORT_SYMBOL_GPL crypto/xts 0xf6f0630a xts_crypt +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0xa124ddc7 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0xfa635d57 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 0x0f3dbd95 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1b519837 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x271fa110 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x51297fc3 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x54162ba4 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x63b23dc4 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x78463c2d ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7b781397 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7e47cb9e ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7f0a8a6c ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7f6f2af5 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7f8b90a1 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8204df81 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xabb26ba8 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbce641bd ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbff11a83 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc76250d4 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd511dae9 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd61b589e ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd8c26f04 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdc6be7df ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf45c18ba ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfa776a01 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x021feae7 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0e9fb6c2 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3daa8836 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x44b173d9 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x54c970e5 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x645b3b37 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x883995a9 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x93fe00e8 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9706ef09 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa29b17c0 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xac40c51c ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbb1f1e33 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcc2acdc4 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x79c6d948 __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 0x2b08e0c7 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xac31f5af __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb0c9fc77 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xbf605a96 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0b2e5d66 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1494aa8a bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1e45dcaf bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x229040f4 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x30e2498f bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x31416247 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x317ecba0 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x38ebf684 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3cc9d5d4 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5b1c1a6a bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6fce8fe9 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x72b09472 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x80b841a0 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x85e7766b bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8c69cc1d bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x92222d8f bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x93e8b26b bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbcd2ead4 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc41efd31 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd050eca4 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd605a815 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdbfde214 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xea82665b bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf9a2fd59 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x328f9693 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x626b7fb2 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7e7978e3 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8d864504 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x979b269f btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa985ee70 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x46c790c4 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x473bf99b btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4a5cf3e4 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5973da2b btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x793a50c5 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x81770f2f btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x84c35039 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa65b4647 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcbc991de btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe47e6677 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe56fc0cf btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe5e35a03 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3a99deb6 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5f9f046b btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6e34ae00 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6fe02979 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7c5f46fb btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7dab0603 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x97920ba5 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc428254f btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc8d49476 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf59fdd4e btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf9faed0f btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x3f148700 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4a1161f7 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xdfc45255 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x34e2b0e2 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 0x32145680 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x053826c0 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x14d4347d adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x27cc1d88 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x290ab151 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2d2053cf adf_service_register +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2dbe12b9 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2f59d61f adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3b4db754 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 0x4d6875ea adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4e9daf5e adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4f10f88e adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x552e73b8 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5fb06541 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x633f1e35 adf_service_unregister +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6404debb adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6b480bdb adf_iov_putmsg +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6f9630ce adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x76e73dbc adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7ef635a0 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8742282b adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8807fadf adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9e44162b adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa7d9642d adf_update_ring_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xabdcf60c adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xae71733d adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbf25db49 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc5eca595 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc63a668b adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc6964894 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xca372ad0 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcbce9bae adf_disable_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 0xcfdee831 adf_enable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe93ad654 adf_disable_vf2pf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf39d5087 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfba46853 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfbf04bef adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x31a2c8df dca_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x44119224 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x44c4b614 dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x51c0f402 alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x68698878 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x6ebda18c dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x7917bf4e free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0xbd671a60 register_dca_provider +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1077f31e dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x382bf458 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3a582426 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe99e1bd0 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfddc39a7 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x2a049a41 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x481ecdeb hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x8e04933a hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x00ead335 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x095a2301 vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x876d5ce0 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xa2a6ccdc vchan_find_desc +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0x8f55d744 amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x02f25e1b edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x04f4cd3b edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1a841d7b edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x26a92ffc edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x279e9ec4 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x336a3cbe find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x38d88633 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3a53c03b edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3edd069e edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x47068a84 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5fa41c41 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6d7cf772 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7a3fdb62 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8619c2b1 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x869110f5 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9f2614b2 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa6a79043 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc7d0e40c edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcec97c82 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd458e4a3 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe37a542a edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe7b5d41c edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf79625dc edac_pci_create_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 0x115ae86b of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x37b1a702 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x57ffff80 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x72250fcd fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x783f4033 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdbfac768 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x40ed4f43 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xb846bd6f bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x3fb8d786 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x987845ee __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcf4633fb drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd98701c2 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf7b1d7c7 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 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x95f5bb06 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xb9eb976d 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 0xfd521c64 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/hid/hid 0x01eb295b hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0de3e10e __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x23f4111f hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x26194efa hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2bd2c2a3 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x350757ce hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x362de8f3 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4b1ebdcd hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4df90b1e hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e7c0b47 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x519dbd05 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x63160113 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x790958a1 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7a64215c hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa333bbfa hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa694808f __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb786c3cb hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc1cba14 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc54012ae hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc5ea8f8e hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc9171270 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcb205483 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd1ae0570 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd41a428f hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd45e0e97 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd8dbb4af hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xda50b8d8 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe12ec534 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe20b553b hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe6e6d9f3 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe7060f08 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xec12b5b5 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xedb40f3f hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf17cbe3f hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf5d3b5f5 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfce84d1a hidinput_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 0xe200ea43 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x156e3279 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x17ff9569 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x86295f37 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa995b857 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc895a88e roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xee07933c roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x31e9e47f hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3b7e51e0 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x65637cb9 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x85f93866 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x926b8b7b sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb6f5bb95 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbca22dfa sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc2a0cb19 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe3c5f997 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x6610b056 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x018a3b95 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0aa67968 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x471ec419 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4afbabc3 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5874e8a8 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6283567a hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6fa0e07d hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8fb1ab15 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x92310146 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x93cab0fa hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb67f09b6 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc8fa94b9 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xca56e679 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdd96ab37 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xddfd9f7c hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe3b03f9a hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xeff871e6 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x08818665 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0f3146fe vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x141df274 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a25cd8a hv_do_hypercall +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1b78fbea vmbus_sendpacket_pagebuffer_ctl +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 0x3a3d4fab vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3fc69f93 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4f1cb481 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5dd2400f vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6eb35d2d vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7588a47a vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7814d348 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86ff5fa6 hyperv_cs +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8f918efd vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb41966b8 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbd4e44de vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd82260cc vmbus_get_outgoing_channel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd8fd7e8a vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xda2c45d6 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdf7945d2 vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdf98bee6 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x0bffd109 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x82a1934e adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xd6450160 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x00a38665 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x123d9eed pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1d997e2a pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3007107a pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x34a6cda6 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x380e2b1a pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x446a8e1f pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5b5a0dd2 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x89b11dec pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x922ac870 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x92fe3140 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa4285d93 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xaffc3e52 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe6dcbccc pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf9d45547 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0f766b0a intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2b228965 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x352327e1 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x44f6892a intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x45b34e26 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa889e663 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc15e39b3 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x12aab5a7 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x28f7efe8 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7aaa2d74 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa62f6bcb stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xce66997a stm_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x2494026f i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x3dc29f9f i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x41edcb35 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x946d62f4 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xf9b17604 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x045893d5 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x234451ad i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd62a0688 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x4a66f5f4 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xc3e9912f i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x03b74da1 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x3bcb938d bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x73b7d7c5 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0bc8330e ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1d9d4db2 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x275e3f91 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x528b8cfe ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x770b9ed7 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9077e1e8 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd3ff3001 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xde9ff7e9 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe5aedef1 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 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xaf578476 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xfcca38e4 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x0c4be246 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x6642d0ee ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x86eaf1ab bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa3cc3cd2 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xd8990587 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x029a57a6 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0b949be4 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x10ecbe25 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3e288303 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6ebfd4dd adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7b9f34b2 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x801761ad adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8212526c adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xade5e2f4 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb6e2098e adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xede5bb19 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfed07661 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0f1ea10c iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2c661c29 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2da91bc4 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x35b5e06e iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3acedb93 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3bd80ef3 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3db92cc9 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e625c34 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x536d2b0a iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5ed07de4 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6606b4cf iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6a8a510a devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x883dd548 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8d99699d iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x905c9512 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9b11f3ab devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xada5bf2d devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xae268e0f iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb37f1a61 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb482f7eb iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb564d496 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbc928559 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbd40e2a7 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc0fdd329 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc5305094 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd93e23bf iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xda6041be iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9f0ad2e iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf1e8ade1 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfca8a3d5 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfe14158e iio_channel_release +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x575506ce 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 0xc60cd864 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x57adf8bd cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xeaa7bbff cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xf73de1a6 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x9845f45a cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xa43a0e97 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xe7c3afae cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x03225d44 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x8949c063 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x53d2d2cc tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x6374f9c0 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x726d3a8a tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xac546002 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0823e849 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1609feee wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2e51bec2 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x45d871f0 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x478b582e wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8b5b37e7 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xad9e96d1 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaecb3ffe wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc71de32a wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc89e2aa3 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdaa3fe70 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf84aacec wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x15776e72 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3916fb15 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6090b361 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6961ef30 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa760f761 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd07c7de4 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xee013b94 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xff244a67 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfff95460 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 0x0f534072 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1fd5cd5a gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x33a59b4a gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3801c2d9 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4e42cd95 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x51976aa9 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6dfff2d0 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x744bce1f gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x77b4fcff gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x84dd1de3 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9f54f3fd gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe2e457e3 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe8e9705f gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xedaac3aa gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf49ebf81 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf8edc941 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfa83a167 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1999c961 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x294ec7f7 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x798fc8c1 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa465e976 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb21b4741 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf04d18e9 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x153afc75 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x173124d0 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x18e39c26 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1a89a55f lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x35ea282a lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5c9f6b15 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8dc89080 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x947ed54b lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9b4f1c80 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbc13b86f lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcb50d1ba 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 0x18f32059 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1ee04406 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2727e2ca mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x329f79c9 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5dc7fb72 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7309ce76 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8481cb89 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x84fe8ebc chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8fbe1b60 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9144d3e5 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb5a288ab mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe3918e05 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf61e8031 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1b312a34 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2bc4b9f4 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 0x3267a177 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 0x70fc2729 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 0x98f0e2f9 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9a060c10 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xaa4f50cd 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 0xc99c2ee5 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe131ed7b 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 0x0cdb4c5e 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 0x12ea7fc9 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x2a95ca98 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3afac651 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x81eae365 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x84045de5 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8ba8b002 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf9398776 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xa73bad53 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xe9a9c783 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 0x0b787373 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 0x39781857 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 0x3c47dc41 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 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 0x8611cb64 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xccc2c2eb dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd1ca357 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 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 0x8cab3b00 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9f624559 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x145b7586 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x354ac0b7 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7cf6e4e4 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8d193b47 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x996cf7b9 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa89b06ec saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd61896cb saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd626a991 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xef479e2d saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf5d8e189 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x12d8e373 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x53f08bae saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x70bf9347 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xad71e3db saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb9d92243 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbc4b73ed saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xefad096a saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1e4f55bd sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x33092aed smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3a484eaa smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3d766bf7 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x427c130d sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4b120c9e sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x58ce73bf smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x66469efe smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6669012c smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6d8e47c6 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6faebcbc 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 0x7fa92f88 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8b35022a smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8eed590f smscore_unregister_device +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 0xdf2e2a42 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf60269d1 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfe313a68 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x4a6130ab as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x13932e93 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x14804948 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x06f79a9e media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x08619707 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x30a77f17 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x375aa0d0 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x388ab85d media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x54e9a97a media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x5d575ef2 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x6cbd9fff media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x6e297ba8 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x9276af06 media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x9c371b14 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0xa1142f7f media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xb217a294 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0xb2fe056e media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xd12bdf13 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xe10ea534 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0xe5641897 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0xf9101196 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xd765c00a cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x00335fb0 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x07c7598a mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x157d3072 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3d8453f3 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x474eb577 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4f514846 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x65860161 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x692cd5f5 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6af9099b mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6b7fe47c mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x78436063 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7b96bc0d mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x940952c3 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9f07d489 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa094ff94 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa34a8877 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa6568d4d mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcadb04ee mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe14f3f08 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x021f397b saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0258e5c3 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x03b6b47b saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x40928a7c saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x46301282 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5350ab08 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x58ba8fa0 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x68f5e2e2 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8289286b saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x864a16f5 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9850b426 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa0fb1e7f saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc508a866 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xda58b884 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe290272c saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xec31885f saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xefd203e9 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf88bd0db saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfaf26bfc saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x05b88b09 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x26db1669 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4b496928 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x71b23ec3 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x721e3794 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 0xd7fb0628 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf629f613 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x55b32752 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x70b53d20 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0cca9837 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0e2a4011 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0f36410b rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2184542a rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x26f15a0a rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2bd77042 ir_raw_event_store +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 0x5af220bd ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6649f364 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x778587ae rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7eb0202e rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xadcc2a8d rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaeeffedf ir_raw_event_set_idle +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 0xc322e913 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd18449f3 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd78bd1f7 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xea521250 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x6e1278e7 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x305d3abc microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x0c0e8a31 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x0f11105f r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xdbc30e89 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x533b75e4 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x896791b5 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x990315ad tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xc8593453 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x4166270f tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x477dc896 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x82770d9e tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xaef362c8 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x46b91c6d simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0865a165 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2e3136a5 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x30df54bc cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3975b494 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3e67a549 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x57fe7c1c cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5d5c37dd cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5fff5c27 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x77928ff8 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7e398bfd cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x81ae1635 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x897bd017 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x93092a68 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x97a14095 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa99cb3fe cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb43400cc cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb53f1f9a cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc9e2c280 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xda00ffd8 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe5bcc791 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xc36e726d mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xe73194e5 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1162ca2e em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1907fcb8 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1ecb201c em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x24a32121 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x28bc8b62 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2d89aa67 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3016f308 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3034cf92 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3a97acaa em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3c179033 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4ed553b7 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x574b0203 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x619384c7 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 0x8bc95e67 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9aef5b18 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbfe1ba6b em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc94187b1 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf2f16cf4 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x3e3eef69 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x4412998c tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x784a5944 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x93fcaff9 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 0x7e1e5ce0 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 0x98e30527 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xb698709a v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe2d11940 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe84ff8fd v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf10ac339 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 0x275baf05 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xc2cfee6d v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0048467e v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1291f656 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1813b989 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1955f627 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1ecd1433 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x255c78f6 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x26637651 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2c330e61 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x31c2ddae v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x352524c2 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x47967f79 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x557f3e06 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x60e06249 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f68665b v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x724f97e0 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x75c40a79 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x80b2eb4f v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x89227959 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xadf94447 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbad999c0 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbeab9a84 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc3758e30 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc51b89fd 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 0xcf8969d6 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe54f8096 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeb2d0801 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xefd59790 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x050d565d videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x05ecc73f videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0aef3889 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2e41a653 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x31b427d4 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3335944b videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x33c98d9c videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x35c83f87 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x41d02812 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4ab17b3e videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x66f69535 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x727cc76f videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8e02afcc videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8fa8735e videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb3ae1143 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb42e1b07 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb62f9a40 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc547ada1 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcd3d705a videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd11c75b3 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdf754be1 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe2cab5a8 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xee53bcd9 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf3e4b809 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2a4cf35b videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x624d38f6 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x70fd8e00 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x96444f9b videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x01d3bfe8 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x15fe587e videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x69778d2e videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0603bbaf vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x060bf40d vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0960e32f vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x150a0592 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 0x3c9a8e95 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x447008a6 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5649caa8 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5cad7568 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x617495f8 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6f0e6de0 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x815c01e8 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8a8bb10d vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x947c27a0 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb02ca891 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc758242a vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xec03928f vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf9f37972 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfcb8c2db vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe2748418 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 0xe65361b3 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x4e23becf vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x84fae673 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 0xe23d136c vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x12be2972 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x14fddbb4 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1d19bc13 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x239a7216 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x23b140d7 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2cff7a88 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x31c45019 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x36df28e3 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3994092b vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x58b617ce _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5f27b5bb vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x63a12169 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6bd8426f vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7f2f8bef vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x812b921e vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x819f372a vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8567af54 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8cfefa3a vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9cbbc3fe vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xac04ea2c vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb087fb6f vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb88762fb vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc281722c vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd10f842e vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd1d95766 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xda8ccc63 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdd8dbb0d vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdfcecefa vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe007ad25 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe303b20f vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf1949b87 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xff50fb55 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0xb055a05d vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c2912b5 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0e4b0e74 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x12f5924c 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 0x2c1c68c2 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2c750877 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3019b1fb v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x401d0e7d v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x40ec555f v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x531437dc v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x653eb540 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6eca1bbf v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x70f39fc0 v4l2_device_disconnect +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 0x80a9ac81 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x90fbfab3 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x92f804e8 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9676021d v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d6bac2b v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac13747d v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad0b393e v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb2a5da92 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc0c9dca5 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6b6293c v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6f9ea9a v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdd586bae v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe6907e1e v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe733029b v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf62d0cc5 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfdca23ef v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfde521e7 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x1ab939a4 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xeface965 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf4e3e3dc pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0505efa8 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x20d1ed28 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3c3e2a6a da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3c953ee9 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x49f2fc2c da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xbf5787ba da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xfa480f95 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x53afbdc3 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x6f1786b6 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x78cda727 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x7e7bd0d8 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x8d8ba5c4 intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x038d7276 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2ae56b94 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x366d2743 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x825a5764 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x844a3555 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd30b2fe3 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd3af48f0 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xdfc54175 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x2b510a1f lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x559e6886 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x97466cc9 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x14c586d8 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x234f9f5c lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2409baa2 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2495da4f lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8aaee0ae lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb82d1d27 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc194d8d3 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x00cd714f lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xbf961081 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xd6cee2e6 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x027c8091 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x107375f9 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x50c93ed9 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa531f332 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd93a45a4 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xdea34655 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x283f3bb8 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x43c18fed pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4e23ebd6 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x53c51b1b pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5d6c3928 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6d668649 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc2b68f34 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd111695e pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd5342f0f pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xeb33cacd pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xecb505e1 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x943bb83d pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xad0251e9 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x07da618b pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x25d4ccd7 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x72f4ec6c pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb81e1407 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xdc2e2f00 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 0x03ba4ee7 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0c743f75 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1286339a rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x166724cf rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1bf94b24 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x294c2b0f rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2fef5663 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3a3a20f0 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4dc0da51 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5368ca55 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x567e7ded rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x67456f46 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6eaccd4c rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8323a8a8 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x93126d5a rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x94014f0a rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x981aa9ad rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb202d727 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb91b891c rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xca8a13f2 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe5b696d0 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf2d0a6b3 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf88d87f8 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfc4331f6 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1b9c5d3e rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2773f715 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2e764991 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x330548d0 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x33258075 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x364b325a rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x371aa129 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8bd6d1b2 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa05d9508 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xabb90650 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb343c481 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb55e973f rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd7c075e3 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0ef6ba1f si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x171afaea si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x196c0e38 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2287b712 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2cca87a7 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3bf00c5c si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x47cab7d1 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4ce07dfc si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x54b2144a si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x592fa9c9 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6048e322 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x69abc8af si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7dde2fc8 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x809a3441 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8afff7ed si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa060fbda si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa59a4a9b si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb8f87ebb si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc604f348 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc6537f05 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc8a910e9 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc8c7cc20 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcaa1b467 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcfe765e5 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd038e1f2 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd4b23a2d si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd5cbf404 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdc81361d si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe218c0bb si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xebfdd18c si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeea3f998 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf9acb666 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfed7e355 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xff49e9a1 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x0dc6d8c4 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x27b7b33d sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x32ef21e0 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x783b9bbe sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xfdf7ec15 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x34ad2087 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x9e76c882 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb0ae09a7 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xf06065f7 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x87f8b0fa tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x99264b3f tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb3a533d3 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xfb9663f6 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x098e20e2 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x21b327d2 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x34d869fb bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x5a4277a7 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xdccf3d40 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x0a4ce9e8 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x148a79c4 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x43a70913 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9f44610b 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 0x12825bf2 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x51ac88dc enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6c708fc2 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7f57a665 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc7c1bdde enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc7d24cae enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd5ec8b0b enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xea9023bd enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2be1fdae lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6c2c3bd3 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7468e794 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x81530d59 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xaa5082dc lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xaf01ae84 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xed58276d lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf1224ecc lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0c5e2263 mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x18c96682 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2cf64fa0 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2d852836 mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5250130c mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x54e4f538 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x759498a9 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x790e980e __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x793553d4 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9b1ebf0a mei_cldev_register_event_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa9b5ab75 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xae2d4a85 mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xafc03be3 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbb8706ae mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc009ab63 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcdf5adf5 mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdd8e5ef6 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xddccdda2 mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdddb35f5 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe5864bff mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe8dd0278 mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe9cd3615 mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xefc32ed1 mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf00675e4 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf20b8030 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf944eac4 mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfed405d5 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x325db079 cosm_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x3763a517 cosm_find_cdev_by_id +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x4883fabf cosm_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x5682b142 cosm_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x835c44d6 cosm_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x5b67fd23 mbus_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x811a4b51 mbus_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xd89fc821 mbus_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xfc9bf820 mbus_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x20390bfd scif_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0xdc889fa7 scif_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0xeb75610c scif_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0xf2056a32 scif_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x00ed7591 scif_open +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x0427d3f6 scif_pin_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x116cb31b scif_listen +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x12563d81 scif_close +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x1537f6ff scif_accept +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x15cf00e5 scif_connect +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x1a116b69 scif_fence_wait +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x1ff2bb61 scif_fence_mark +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x20190482 scif_client_register +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x2708e46e scif_unpin_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x2df14fe3 scif_client_unregister +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x31f517c5 scif_get_node_ids +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x356baf90 scif_vwriteto +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x48182bec scif_fence_signal +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x556edc79 scif_get_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x657a6430 scif_recv +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x68ac7cf1 scif_send +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x747b2251 scif_register_pinned_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x7764b364 scif_readfrom +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x8d21bcc0 scif_vreadfrom +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x9b324aec scif_poll +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xb3bad62c scif_register +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xb42c4085 scif_writeto +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xbc1dd1f8 scif_put_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xbf7c9a43 scif_unregister +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xd8d041dc scif_bind +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x95ea0797 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xbe92fb75 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0f6680ea vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1152e318 vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x13aa5a5d vmci_datagram_create_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1872c7af vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1a195863 vmci_context_get_priv_flags +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3ef56cd5 vmci_qpair_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 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 0x6763f972 vmci_qpair_peekv +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 0x9645f009 vmci_qpair_enquev +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 0xadd349ef 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 0x077f0b54 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x235686b1 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x32e7334f sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3e4a79f6 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x41ca6817 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x548da1b7 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x56676f5f sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6e215383 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x793b2e7d sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa90fc7a4 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb69ba0d7 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd7f0efe9 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdc373e8b sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfe8fc539 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0508fa56 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3305743e sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5846c8bb sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5cac5f0f sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x65f3ec34 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x882453cd sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8d0c27c1 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe9d4f547 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xef416b48 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x011a8cc6 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3e33a92e cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc32d8cb8 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x27394e8f cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x596b055f cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xaa92cad9 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xb0605d5d cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x1ea6ea3d cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x9384e6d3 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xc2076e48 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x04a93384 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x09ce3deb mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0d03cfc6 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0d6e0809 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x13ad6bd0 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x199db5e4 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1d7613ac mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x25a6968b mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x26d33969 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x27621262 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2b4d280b mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2de7b132 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3329efa3 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x37fd4107 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3ec05800 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3f9f726f mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x46e58104 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4a861613 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c3e417f mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4fdd3597 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x516bb688 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5d9737e0 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x73890d51 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8d371886 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8eeffbe8 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x921674dd mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x92785b1e mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9301d98a kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa3a1d89f mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa69b4917 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc783381f unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc938c826 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd1140f95 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd15d188f mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdd4d134b mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe3f89cd0 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe5992c03 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe6635048 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe95f4808 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xecbf2ae2 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf0028461 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf66072c3 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x11c0da7b deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x1d81e885 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x40657bc4 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x90d846d2 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x981fdc7d mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x187822f3 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x31d94dbd nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x81ee37a4 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x6de76079 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xc8371dee onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xe8381251 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x14c79a83 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x27846b51 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x380622c9 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4106d81d ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4f6bf789 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x56635c11 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5efda343 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x64619367 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x734f5a2b ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x84872cf9 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x98b0e153 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc6fb13cc ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xccc6b99d ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcfb75927 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x0fb93e42 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x7fe077a5 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x127a77ec register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3ce61825 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3ef7f7c0 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4d982efb alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9b50a500 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xaf318a58 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2de1affe open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x327202ee can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x54074898 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7d6fdcfb can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7f0ad0fa free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x969435b5 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x96b9b0c7 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9c2255d9 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9f577a76 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa8b8e845 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb853197a unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc154d8a0 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc4121b3f alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcca146f7 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd280f2ef safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf7b2d68f can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfa3658f7 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfb1cf142 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x3457d8ac alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x609303f9 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xb49b72f2 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf5a2731e free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7562a5b4 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb194e9dd register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xbbb46d9e alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf0ae68fb free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x014bc1ac mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01a22d8f mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03d2b74c mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0615d548 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08ddcfe7 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a50ac6e mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f9bfd4f mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x115b94f2 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11624fc4 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x144ae1a3 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cbb7798 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f3eef76 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20291a18 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x213a0d65 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x251bdd92 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2612a089 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2754aae8 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x292dccd3 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2987715e mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cedace4 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2eb6edb9 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35ab4fb3 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x383c7179 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38797278 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3977049c mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ade3e78 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bc43650 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f2ddc7c mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f724125 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f8f7b3b mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40bea425 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41454613 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45239393 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46b845e8 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a212fe4 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c37c4dc mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cdab137 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f560525 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53c72166 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56c31b7e mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58e38192 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x590b8597 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59993e11 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a4383a5 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b8273db mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d84a319 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e1738cb mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f3a8b71 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60ed827e mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6128a78d mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x623bae45 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6317dd9f mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x653e92a0 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6720f2c5 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6841f57b mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a122591 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c49c2a3 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d014a5c mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71fdeb9c __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76db43ee mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79a41f0d mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cd4cbdd mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7da4dd18 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e48d85d mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ef2033e mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x830caf2e mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x873e75ae mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d89a8c0 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e9cde2e mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x901ab394 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x905b98cd mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93af4e93 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95e27ab8 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96e62a28 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x980f7822 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98bf0de5 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98d36e93 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x992a5505 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99bc6ae9 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c68bb8b mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa29a5140 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa30171c9 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa35ca2ee mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa495895e mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5892bfe mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa843e1a1 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb044f751 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb19632a9 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb27b0a2c mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb28459e5 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3a012d8 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4c85b06 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6fd9ab2 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdf63133 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc406af8f mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc773c7d9 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc842017a mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8618688 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9811308 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9966b4a mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcac213d1 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcaf6b9c6 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb61ed15 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcccbcd68 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd10091f8 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3506fca mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4e8f4aa mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6871b4b mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8f64df6 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd991f9d0 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda06792d mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe329c504 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5226a8c mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7aa73e0 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7ee952b mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe88d6a66 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe937f9de mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecfbb50a mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed79a1ac mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef8883b4 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9eee154 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbf1c4c0 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfec2860e mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfeffa8dd mlx4_phys_to_slave_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 0x09ce5949 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10df446d mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1982c575 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b772785 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x215f5c22 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22cc9ba9 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25ad2eac mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2611427a mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29b21ab0 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2dc7c188 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f32a59c mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31392008 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cbc1d13 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f278c6d mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4452af3d mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4468c7df mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47626f9e mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57a86740 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f075591 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f1265d1 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x642e4365 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x669b86de mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cc7f84b mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70231cc6 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76bba423 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7805c1af mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78b2fff3 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a357882 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e6348e5 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8249cbb2 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c49907c mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c7e1bea mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ef38746 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93967bf4 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x951fe3cd mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ab43d08 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa19609e0 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac7c12ee mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb15de0d2 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb57317fc mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8b69882 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd411652e mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd8631cb mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedc640d9 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1d31c85 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x1e0b2c6f 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 0x73504e61 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8d421b00 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc9ba8600 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf35bc9dc stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x09fa5d83 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x52644bab stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xdd3da10b stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe4aef5f8 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0ca637d1 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6c3b784d cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x7de3e8d5 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x83266585 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9ed08702 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9f301ec7 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb149c9bd cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb688d40f cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb91e4564 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbf0d2f03 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc4b9e0ef cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc684af68 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdae24811 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe3fc6abf cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xff1b7a0c cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/geneve 0x200d941d geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0x5efbe656 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x185529f0 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x67bc06c2 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8328683d macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x840b8e61 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x5ef7ffd2 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1237bd1f bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x56d5f49e bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5ff2dd34 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6951ff8d bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x76c5a125 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9a7b7b31 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbaffe906 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc6c69348 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xed3b9b58 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf0193e5b bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x52729ea2 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb30c78c3 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbc4e5e49 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe6919197 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x071447b0 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x19f2ca84 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2ad9be7b cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x424d98e7 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x72b5a1a1 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x84d3a7d8 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8bcdb66c cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbab87c49 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf735272d cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x363c7998 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6328c223 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6e25b639 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9647fdf2 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9b8131c1 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbacad799 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0077e4b5 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x026b01a0 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0cef1d53 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x284d59cb usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x307f35fb usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x32d094a1 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3790feab usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3ecbe97c usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x454532e8 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x48d113f8 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4c1878da usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x50c0ac87 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5dfd8e23 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6178decd usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x67c184dc usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x84896b3f usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8fa64e81 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x937d7dc0 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x96fa47cc usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x98981ca6 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa17627cb usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa4de131d usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa791b292 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xad1d1a7f usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc34399d1 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd3eb9e36 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd6013990 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd9a4d8cc usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf21f1ac3 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf7c01178 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf929a53e usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfd675132 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x1669e79b vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xb1ffb769 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x09a6ba42 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1cf6abed i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x23524787 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x356ec371 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x479f8020 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x52668009 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x53158439 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x936db62b i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x98675db3 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xad97e1a8 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 0xb46ea73f i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc3a5bb55 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcc5d11d0 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xedf993e8 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfd4b4857 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xffea4d5f i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x108a87a9 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x2f00bb33 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x50f23f66 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x53588766 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xd5d2b4cb libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x276f8a94 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x71eb78ea il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xa9c7f4fd il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xdd689faf _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xf798e5be il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0e480ffc iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0fbde201 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1d7ce91b iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2120e876 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2d34282c __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x32dc7d1a iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x34521bb8 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4144ba08 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x424b50fe iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x499df180 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 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5ee5ab54 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x61151f46 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x63bef7d9 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x65422363 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6da34f74 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x711c0854 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x85e8068b iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x90273ff9 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x91bea66f iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9422a4d9 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xae736f04 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xae96a267 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 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 0xdb3a48c6 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xea5f2fda __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf44ec8fd iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf541f7b9 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0c845632 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x235f41be lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x33689eb8 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4131ee5f lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x560ccbb3 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5c8da42c lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7f7aba93 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8296400e lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9c770f9f __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xadd08bad lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb184e592 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb9ddecc4 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc01f91cd lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc187fe41 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe5dc13e0 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xefb74edf 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 0x1699b7d3 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x21992e57 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x3807df5b lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x537ebdce lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x9a330224 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 0xcd473d56 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xd21a5a31 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xe7ae2719 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0ecb4ac0 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0fd63c9e mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1e29e4bf mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x210059df 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 0x3bca5532 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4043aaca mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6fb394ec mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x77e1596c mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x804224ea mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9e83b77f mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa8b55553 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb4118005 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc0f27170 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd1bf1e4b mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd3cb4635 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd6cc8fb2 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe3ddf138 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe998d1f6 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf7ebeb57 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0c1452dd p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x1b37f111 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x4a388deb p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa0876cbb p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xb7e432e5 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc3b4459a p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xdca78877 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf2608c7f p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xfd509ed9 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0261c207 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x17c3480d rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x38cff5b4 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xea80c32d dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x041d2b49 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0865b772 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1240a1c6 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x175f1948 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x29b8dc1a rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x65cde4c5 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6755fb78 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6854bca8 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6ad0af09 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6cb6d3c9 rtl8723be_firmware_selfreset +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 0x714be5d5 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8454c719 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x850c442f rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8b417599 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9ec6dce1 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa1cb65c4 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa5ee1bdd rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf3d21c1 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 0xb48428a7 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb4de6a5a rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc24c8b3e rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc3578941 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd0bcaa5a rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xddd12ce1 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xec0d7464 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xed547f87 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf8b9b2ad rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0fbec6e8 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x228cccf4 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x403d873f rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48d37f76 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x552ad01f read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x729f7794 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74b8afa1 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x75fbecb7 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x76279a0a rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x84370a6d rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa1d23535 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 0xb6956678 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd073ac52 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xddf71752 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3a85071 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8190b8f rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd768532 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfefcc3de rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff5dba13 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3aaf02ce rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9bb63d29 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa06a1180 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb5595687 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x053ac272 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x099bb91e rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x12748783 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1c0e0d66 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2115cc15 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x24a0e11c rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x257988f4 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x298f3746 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2a7eeeef rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x302bad2d rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x40654a94 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x49dc137a rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4b407aab rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4cdbc93c rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5350a35e rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x60c91026 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x65c541f2 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x682a050a rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6df7bd24 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7e17ed78 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7eefcd81 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x83f44b40 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x89206620 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8cab6e36 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8e8e2d85 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9dd8831c rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9e72016c rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9f3703bc rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa075af87 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa64aee5b rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xace35c63 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbc0c9d9c rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbd740b90 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd1c1140b rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd4045834 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdb7c7465 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe4a926cc rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xeea643f7 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x06982a66 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x19b49b53 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4384be52 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x49e3e9c3 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x505ff7a2 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x63463287 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7561711f rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x98c7e4b2 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa3db251f rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa91d17e4 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd6771356 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xdfe84c76 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xff074d4f rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0524048c rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0629c70e rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1ae4aed7 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x209e8db8 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2c8abe60 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x30ee9190 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x33cf8a80 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x34488549 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x34c1e5ee rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x35412ad2 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3b2be2e3 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x438b968b rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4558e143 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x45d6e7d8 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x460286a8 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x512748d0 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5d518a94 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5e344e00 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5e63319c rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6134c328 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x70c38857 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x771cf3d9 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7726d7d8 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7b6272ea rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7c044513 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x840d2c65 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x87441d82 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x971fbd11 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa3b3c413 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa52d20f0 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa91380f9 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaba6c19e rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb3fa9ad0 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb79433b8 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbe739cdb rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc93781dd rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcfcfc508 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd06a1e08 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd0b146ec rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe19e8504 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe7558dde rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xea7552a7 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xed55f2bd rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf2ca43fa rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf62722be rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfeef230d rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x209f2b67 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x380c3d5e rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x7bd87975 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xc67d1254 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe67ef17a rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x444f0b4d rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x49a1b271 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x6a465b7a rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xb26288b5 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0c37c369 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1bc594d9 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4b6393ec rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4e9d7247 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5852a160 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x59620280 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8b65258f rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8dcd4cdd rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x95dfabef rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa33c6234 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa540150f rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb7897f93 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xbd772f79 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc7912a13 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe7f33e96 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xecd4a8d2 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x1710509f wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x3cee7b03 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa4885002 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0948942a wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c54b858 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0d7e049d wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1080f5dc wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x114f430c wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x12d91bfc wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x32875b78 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4c0d1d42 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x510f7a66 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x555ab4e7 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5ed0ca55 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6641adad wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x68cee986 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x68faf81f wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x69f78926 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6a57f05a wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6dc26d10 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6e74a329 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ec967a7 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x728ba796 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7abd2cb0 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7f694e6a wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8bf7db81 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d08b237 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x94aec5c9 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x97446b84 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x980477d9 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9a443f13 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa6055f7f wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa666689b wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xac1ea9d2 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb30b4c29 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb95812af wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc195bc51 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc7f9b3f7 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xca8c07c2 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcd870eb4 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd219b9c1 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd590a1b9 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd80e2d3c wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd88f1d1a wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe758a528 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeba94e33 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xff9d3c23 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x22ca38e3 mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x9518ebc8 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xdfc63fd6 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x6ea3e8fc nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd590b7d7 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd6c5304d nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe2e3c107 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x480d6ae7 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4e400661 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7721d7e7 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8dd2f0d9 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa5c75031 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xacbabcb0 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd1bc350e st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe0544c69 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 0x4e5db9cf ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x537f391f ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82ac6f0a 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 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x35fdd826 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x40513df6 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 0x646df988 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x697a57ce 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 0xbc2c2448 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xdc86f4b9 nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x00110376 intel_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x65295644 intel_pinctrl_resume +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x9deeb6c7 intel_pinctrl_suspend +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xbfd70872 intel_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x13bdb04f asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x4c0d78f2 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 0x4ca68e98 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x9f4815b1 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xfc580978 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x2ec0a343 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 0x808d4df5 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x889ff77f mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x8f1f5f44 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0248d768 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x252a9ece wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x534aad16 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa7d14e38 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb5b098b5 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xdc02186b wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x45749ebd wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0341848f cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x05da014b cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0b1e9117 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x162bc872 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x16440e19 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1967b70c cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1b4c8913 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1c2b6385 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x301691b3 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x33b2c298 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f120ece cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x43b43f9e cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x47f53094 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4de9deef cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x50065402 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x50bc7199 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x579409ea cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x63c96df2 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6621193e cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x72bca369 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7abe3eb2 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c753da8 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x85656a4d cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x884dd1a3 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x891bc65d cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8beb8e4a cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c19bb27 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8e56dc72 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x93559d47 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x961f3463 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c146a79 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e239d89 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9f38ad4e cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa2fd6def cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb167a5ab cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb708a47b cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbe7412a8 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc38d5bcd cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcabc05eb cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0b14c59 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe10a8cb3 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe62aa474 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xecbd7d02 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xee0def48 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf3592029 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf64ad692 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x029424dd fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2f733b50 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4683dd32 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x51b57977 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7047de22 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x76665b0a fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbacdfbb7 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc04c8825 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc0ddf26e fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xca3a313f __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd19e63b0 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd404a574 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd91bf4c0 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xde845a45 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf0ae51a7 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf516fa22 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x367f04cc iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x48b447b6 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x48ed768b iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5416cdd2 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd6428a05 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe3b1c24b iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13dad6d0 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1588c440 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a9a8ce0 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32819bee iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x338ac7cf iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b6a6f3b __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3fea1caa iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x44ced570 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4fa526f3 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x55caafb2 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x58ac0f9f iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5cf46ad8 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5e3e922b iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x62c0a5ae iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x67aeb81c iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6c3c88b7 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d31f110 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x71403ed7 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x744b87c0 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7cabe884 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7f2c4088 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x809c4217 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x89c7b537 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b65fb5a iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d134596 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8ee4b625 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f3d48d6 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x98d240ee iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x98ee9193 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9dfa496e iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xabae778b iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb27c5232 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb34e1078 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc38824d2 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc8e2144f iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd856b74 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3720564 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7f8ef72 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xddb1ba8c iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0c7d7a7 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfdbab7dd iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xffd4bf83 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x07f9fa3b iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1ce88dd4 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1d2c0781 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2432b4d0 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x25cad916 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2e3285ce iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x42dfc754 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5f3924ba iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6c4a02d6 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6eff722a iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x824d1cee iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdb5feda5 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe2843a3b iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe87ae8fd iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xede0d5cf iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf9c3a992 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfbe51809 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x073f9662 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x08728cdc sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x09f163e3 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0d32e8cf sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2819fd3e sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x31d35336 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x492bf715 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x55b8ffea sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6ffb1e4a sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x71fcabc1 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8b8382d4 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8e5947d4 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa0415ab8 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa68d9fae sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa7cc1b17 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb8de114b sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc78e912d sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcf4b44ec sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xda7615de sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdd19fddb sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe366d1e9 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe841132d sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeaae9063 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfc1e2f78 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0290ed56 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e80f6be iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x166f30a8 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1c0e0b8c iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x22b1171c iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x27bf3899 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x27e7b56b iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d17028e iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3369fc34 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3499f09c iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x34a9fb3c iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3c4d4d8c iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3fcffb6d iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x421890b2 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x45bbbeef iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4e02a976 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fd0573c iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54e5e217 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x65e12577 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 0x69a8412a iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x746def79 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x883b7968 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a688472 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f8acd3f iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9fba15a5 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1541d7c iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3c7018e iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa42cda49 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad5510bc iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc55bcc2 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe24fdba iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf52ee79 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd614d89 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd617c76b iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdccb387e iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6fffd7b iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8216032 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf908cbf1 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc9cd61f iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd8c5ea9 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x11f15d8d sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x33f1049b sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5ec57128 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x873232e2 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x2622b71c 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 0x055a70cf srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x0c487014 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x682df9fb srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb68eeb96 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xba1b4059 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd23f4c4b srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x20afde27 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2d2c3d64 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x7c0bb8a9 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe9f217dd ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xea2e1fe3 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xeb5e16de ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xf61fdc31 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x150b4d4e ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5093f444 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x86b6a3a1 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x997628b4 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd0e6d20c ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe3d3145a ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf67ce2f4 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0bb1259c spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1f2b5ba4 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x670b116a spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x99ff50ab spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa9336621 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x279fd35b dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x547ab4b3 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x717e55ea dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xdcf44a06 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1143e254 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x23eff637 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2bb1dd4d spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2ff416f7 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3e12fb9f spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x46d55b41 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x53c45126 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5a4102a0 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x67fa887a spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x705f0f79 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa90c8529 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb8d87a93 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcf5be426 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd7ac971a spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd8c39ad6 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdfc9c165 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xecccf938 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfd22b8fc spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x7488bccc ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x00634c83 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0d08e566 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2045f984 comedi_legacy_detach +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 0x2fef967a comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x310b0b23 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3371ef9c comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x36bacae7 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3ab3f309 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x42750ff3 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x57084e82 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x617c80af comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6c91e7cf comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x71de96b2 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7ac2c945 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7b80fbc3 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x81f1f463 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x830f7a2d comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8d7e6d5e comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9822beb0 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9b63f76a comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9b854b1c comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9ddc7807 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa2baa136 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa3bd3cad comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xadf8e312 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaec639d2 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb6379a57 comedi_dio_insn_config +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 0xcbd5c0f7 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcd121a0b comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdce48837 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xea664f72 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xeb223680 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xefb02513 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf6ef0052 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfa34a3d5 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x26e8dfff comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x34e3c769 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x4357aae4 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5262bfd0 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6c420ac9 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x81612e4c comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa29a473e comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa5ebb459 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x3aa1b9c7 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x4f1c4de7 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x8d9c2e51 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x9025d5ab comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xaac650ff comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xbd47cc2c comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xcaf5846f comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x17fcae5c comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x1c93153d comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x398b0c52 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x693ada8d comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xe2414960 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xf70c43e1 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 0xc2cd6baa addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xaf168509 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xfe254dbb amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xee7368c8 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1612888a comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x185ae04e comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1ae8e01e comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x216f4064 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x58be5fcf comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x62634f84 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7b5819d7 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9ebe48ec comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbe3d8e0b comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbf21e1c0 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc27ad2ff comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc2bc6c19 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfcf4e9f3 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x134d6d67 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x1c954561 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x38b31900 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 0xd5537e8d comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x8257f3cd das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x037518af mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2343f474 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4005ec13 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4b9c7827 mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4f2c5957 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x50690a8d mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6584a710 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x665456b5 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6b12d3a1 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6b1cae22 mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x74c69f0c mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x91bfb420 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x95774b97 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x998f37fb mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb0ba7c8e mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb149c161 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc49216f3 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc9f80d34 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf1b74049 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfac1baff mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfbed136d mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x229460e0 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x2d0d4958 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x093460f7 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x170ff5e1 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x30c91500 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x410fb2fb labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xbdcf3692 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x23a7ccb7 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x310ef2ad ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x32078c8d ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x4c57c034 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x61ff8136 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xaeed3331 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc0411682 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xdf8b7c23 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x764d0c2f ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x7a20f7d6 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9a3a11c5 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xc0588df3 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xee0ef7bc ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xee5ae0b3 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x1976ad66 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x3e1b59a9 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x50d40a62 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x7238a036 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x961ef02a comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa1fac352 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xd5330f43 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x8cfb2889 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x032338ee most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x274525d1 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x55f87e04 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x89993f05 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xaa4dfab7 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xae37749b channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xbc4f74a3 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xcbd5e04b most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xcc914630 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xda0c575a most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe2edf8a1 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf52745b9 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/rdma/ipath/ib_ipath 0x1514b2b2 ipath_debug +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2ab8daa7 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x56ccf627 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7cbecc09 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x82d61c37 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b3aeb81 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8cb515df spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x90c8b31f 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 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcfcb8d61 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd0fecb32 spk_serial_synth_probe +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 0xeb30278e spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xee6538ad spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xeef03140 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0877dd5c visor_periodic_work_start +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0cb146e6 visorbus_registerdevnode +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0ec0434e visorchannel_zoneid +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x13c5572b visorbus_read_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 0x1e9b32a1 visorbus_register_visor_driver +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 0x3ae57cc2 visorbus_disable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4063ea9d visorchannel_signalqueue_slots_avail +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4c62864e visorbus_write_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 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 0x95e8bb56 visorchannel_debug +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 0xa5c7dc5a visorchipset_register_busdev +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 0xb5137d40 visorbus_enable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xbde70583 visorbus_unregister_visor_driver +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 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 0xfa800b1e visorbus_clear_channel +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x82fee7bc int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0xe2bb6398 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x1084fc21 intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x12dbb6d1 intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xabd4d8fc intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xb391bd9a intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x671a9b0e uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xb31960ce uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xc2df4ce4 __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x11f0e915 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xdfe004fe usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x464827f2 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xc5a3b18d ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1fbf3f65 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x44f347d0 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x609946b5 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa10cdf37 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd02b9d89 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe6b41d56 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x15eb26f2 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1b90d7ea gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x33c65930 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3d51b87a gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x40bdb1ef gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x54a9cee1 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5cbc8eac gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x66fe074a gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8b7a40c7 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaa23a181 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xab477cdc gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb27bf5cd gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc143d8a9 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd770b899 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xee91c509 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 0x515e3cbd gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x6ebe4dd7 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 0x20f592f4 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x3612b14a ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xa9030afc ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0af8e150 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x366c8a28 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x36f21149 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3dd2af3e 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 0x4d7dd49b fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5326179b fsg_store_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 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7b8020e1 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7cf60203 fsg_store_file +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 0x89d0fe1f fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x901fb362 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 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 0xb649fde4 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 0xda2c796d fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe446f18c fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xef777ba1 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 0xff875083 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1f53790f rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x26980c7d rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3149da16 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x47a92c88 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x59e277b0 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5b8b353a rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6006c592 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7d90998f rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa3ffbe3d rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb246eb62 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd15753cb rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe74379e0 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xec24ab88 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf4ebf073 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfcacc02a rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x02791c98 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0586687b usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0917539d usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1b19c62d usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x268c661e usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2cd7262d usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x34c1e581 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x36f9479c usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4b25e94e usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x55212b2a usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x66223380 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x667d6d62 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x67b27604 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x71e60b3f usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7b328151 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7e12a63c usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x81f1b1eb usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x883785db usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x89112ce9 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa53c2ceb usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb9684b89 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcbe2f06f usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd39a5c34 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd7ebb03b usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdc6f8b72 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xecaef8cb usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xedcc5ece usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfa495c23 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfb71cf6a unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc999ff8 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x12c9b106 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1d11823c usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2cee1b82 usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e42702e usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3131c61e usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x362b56e4 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x38226044 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4581af8d usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4854d355 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x62f3743f usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7fa1bab7 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 0xa8ab4a39 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc296da48 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xd283c0ea ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xdf8994f0 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x31cc7f40 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5e88f42d usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x810ba720 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa46faa5b ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa788823d usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb6465198 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xcafa4706 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xcafaeb96 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe763b5f6 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 0x80e6a0f4 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 0x01e30b66 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xd0e583f8 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2217fdd3 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x300701ea usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3db02758 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x404b5ae5 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x51f3e9c5 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x596cbcd0 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5d0cc913 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x62e98c3e usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6f21ca90 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x732e37a2 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7e96a4a2 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x85ba7722 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x87ebcb2a usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x948eec4b usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9540f420 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa76602ea usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xca6439b5 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd22623d4 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe6d77756 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf34b9890 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfacf7141 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x015b98f4 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x04765c32 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x127563b8 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x196b8b35 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 0x30747cc6 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x31a2120e usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x37c8dbd1 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3b969a70 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4dc8e45a usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6f9a1f3e usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7154d4d5 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x74353bb7 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x746cb651 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7f05a7ae usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7fcc3f24 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x863db90b usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc76ad67e fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcc31298f usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd181c536 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd69f8eb3 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd71b9f49 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xda5d8ddd usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf3508f75 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf4d3a768 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1f39ad57 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x266eceed usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x38bd01fc usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3989ded4 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7ee989f9 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x849c3099 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9b4c38d1 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa6ce8f88 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xba834944 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcf8bf187 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdc3af447 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf2873e0c 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 0x220ab3d0 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x2c50d796 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5d261d09 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa7ac9c64 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa99f3ee5 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc48607a1 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf1ea0ee8 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x03c9ed7e wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x46ec0c95 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x492a0edc wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5ac81c8d wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x89dec0b9 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x93d10fd5 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x97d79650 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x985addf8 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb12d7c0d wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd872dfb7 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe351e2a4 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xef30b768 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf8254276 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfb2411ba 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 0x0be4eafa i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x24fbed0c i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x596dca51 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x0bd22f8a umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2d223779 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x34e1698c umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x51e9e04a umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x54d3e322 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x7d7b24be umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb995ce49 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xbfaaed74 umc_bus_type +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 0x17705aef uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x186e2f62 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x203c1601 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2324292e uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x24a27453 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x31972ceb uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3a6ab3b1 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3b3ec8f8 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3eecf28d __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3ef2f5e4 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3f677894 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x412c3862 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x43ec3cbc uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x45d8824a uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4b8f3302 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5040eb71 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x700f6e8b uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x713475ee uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x775b97e4 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x844ce9e5 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9c77bf24 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa4d5673f uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb9e06f11 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc0538f73 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xccd6ce91 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd2a4de6b uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd3a5652d uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdda5a82a uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe0229610 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xed183f46 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf0a16c62 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf49db579 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf747ce5b uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfb16b578 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfba34385 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfcb312cb uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfd86b2d3 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xb1e85029 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3aca19ef vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4a66f562 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x50eb4ba2 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d3a6395 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 0xa9c9aec2 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 0xc699d586 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe5541a1c vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x7902b179 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xbd2f5699 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02bcfef7 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x07acbdfc vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x09428091 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x139d93aa vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a04e439 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2e674163 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3685444d vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x394c9275 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x45b85d00 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x48f47b1c vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b298ef3 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb96f77 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x54dfc5c6 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5de1595f vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7133257a vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x74cc92f2 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x86ee1f20 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x92f809cd vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa711e2ca vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbb322c8e vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xce8e8244 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd456ce60 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdc3fa10d vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xde5c14a3 vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe7d249c5 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeaaac1b7 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeb2f63b0 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf2d69915 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfbfd3edb vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xffc6f750 vhost_log_access_ok +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 0x23981697 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3411dd45 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6d815146 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x92155b68 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9677e5d5 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xcf28322e ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd94b7a29 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x19e08069 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7612f0dc auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x82b9c11e auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xc577fbed auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd4f32690 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xdb48dd62 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe0046d48 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe4bd1688 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe6936ea2 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfb97e6d3 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x019e2645 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xac18c432 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xe977877a fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x01bbd6b8 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x33d0b1fe 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 0x65020eeb viafb_find_i2c_adapter +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 0x09be24af w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5838ac56 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xaf42ddf6 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc1242a94 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc2c29229 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xdf1e9b6b w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe7761d7f w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xec910bb9 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf82040ab w1_touch_block +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x5014ce3e xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x04a936e1 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x719ebf83 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 0xeafe5eed dlm_posix_get +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x11634015 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4d01747d lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x64a3345a nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7c40018d nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd966662e nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe3911f27 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xeb523080 nlmclnt_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01c75b3a nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02ef08b4 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x060136cf nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0628e904 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06fe45f9 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07077c50 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x079106a0 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cc897f8 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x151334e1 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c797774 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c8ee02b nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ca2b4bb nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23db89f2 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x278f4527 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27dbcea4 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x281a2131 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29bea0fe alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b8cf310 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2caebb10 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cd5bffb nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e806035 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e9ec8fc nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f927a8b nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fda57b5 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38efb201 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3955773a nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39a439cc nfs_permission +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 0x3ce082d1 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e0c9ce2 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40e096ed nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x427a5415 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x433064ca nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x467ae6f5 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46b0a1a6 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a764b62 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bd86120 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d160b80 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dfa0f3e nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ff4b97a nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50d13fe3 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5137c6af nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x519b98e9 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51c3c4d1 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53df0dd9 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5784949c nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58b68e48 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c2e21ee nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e00c69f nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e4518eb nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60d289a6 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x619c4eae nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61b8063b nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61f07a06 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x685f9e88 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68c04dfc nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68d8620c nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6edc19b9 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f3791a3 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7219072d nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7500042a nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x798a9757 nfs_sops +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 0x7e0d8a25 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8136db6f nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81a4829f nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8428e60e nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x866d7904 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b525dcf nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ec69289 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f13cf42 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9001efec nfs_setattr +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 0x92a37555 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93a9bd9f unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98446fca nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a676b1d nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a7cbfde get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa40a8756 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa544a293 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa55f01ed nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab236f17 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadfb6d6d nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf388a71 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafc80853 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0c576de nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb267b3c0 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb376adca nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5c4cf5e nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8e939e6 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba3aab7f nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcbbf5bb nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdb59849 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbde749f2 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe8b48c7 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf6c60e8 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2783d2f nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3094204 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3e6565a nfs_clone_sb_security +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 0xc7f10648 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc809674c nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcae81ccd nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce4cbce3 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcec1ceef nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xced5ee08 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfbf3664 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1ddd669 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd319217c nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd38dc4bd nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd56f8dbf nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6df9036 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd79964c7 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7af5373 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7afc6ad nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd846443e nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb070bf1 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb16b78f nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbcec8c0 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4924b50 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8ec074a nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef18e08f nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf572210b nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5ba3e4c nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6ed037c nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9b3c4ca nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb443550 nfs_create +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 0x82701b55 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02e6e93f nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x06ee5fdc pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e03266f pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1127923a pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11ef29e8 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1459411e pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15ef506b nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x173c7c1d pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18829b9f pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x195252d7 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x19fd8ee4 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2452ed7d pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24d61564 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26119521 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36abadd2 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3995683c nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39b5cc13 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ad532b1 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e654313 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ee0b815 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e80fc5b pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6724f3b0 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67d7c476 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71b27d8f nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75f169a9 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4bac8e pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a789647 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83bc96ef pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87f5af86 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8edc28c0 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x909a0347 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93fa1f0e pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa55a9c1f nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa732678e nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb68b12de nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb81830ec nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbda527b4 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe33eabb nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbed528c3 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3fb5d3c pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc42ff73a pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc5a29808 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21912e pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc32e8b9 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd192e0c1 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2b24d1c pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd65575a3 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7698fc8 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd77d36fb pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe273d5f1 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe44c04e5 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5549e75 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7d63c37 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed387665 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee27c001 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0f1e2d4 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf383c1ba nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfeafa577 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x0d203486 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x331f0345 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xba80165f locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x21611e4c nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xef0341d3 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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 0x696f3fed o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7b8248d5 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x80be45ec o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb08ab701 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb965ca8b 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 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd35ec0cb 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 0xf1f87610 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x217abd3a dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x50514247 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x67be1ebf dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x781293c8 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xba98ff6a 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 0xe5930ef3 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0dd169c4 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x58d22e3a ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc7260236 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x4faaad4e _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xa413f1f9 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xbc9f8966 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x5fe10b1a notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xdadf4de0 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 0x50d4fb1a lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xad88a181 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x05c77f6d garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x0fea4bc8 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x73956f77 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x87b45645 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xcb49fe34 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xfee555e4 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x2935d35f mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x302a1fd3 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x3cafdba6 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x422b07e6 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xb0bd54c5 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xf5bfe65a mrp_register_application +EXPORT_SYMBOL_GPL net/802/stp 0x21eac860 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xf752c390 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x3c1a77c3 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xf1c47221 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 0x67c680bb 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 0x4f757086 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5a29ce5a l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa4924273 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa57103eb l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xaa77cd87 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb01cfc26 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdc91a1c8 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf0c68487 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x20402988 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x50d38fcc br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x55cdea40 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5ca84132 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x688eaaae br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7ab11c98 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x89430e50 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa4f28c4e nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x19f7ccc8 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x21f86ffd nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c945651 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x157071c6 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23672cd0 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x28baa05b dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d9fbf8b dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x31dc0e1e dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x344e343d dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x365c2dc7 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x420441e9 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x47192eca dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4b992d56 dccp_disconnect +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 0x50c8f0f5 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x52dd1a99 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x534fb36d dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5531fc61 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5bee2173 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5f79a120 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ec37cd2 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7f361e39 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x84b0df66 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86ba64fe dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8be5119f inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa919b977 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb36e21a5 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb62c8f69 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb933a86d dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbb9e0ebc dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbc993c5a compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc42504bf dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd007b9ca dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd159b48b dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdbae0faf dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeb259a35 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf257b1a3 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x15fcd4e3 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x18bdf79c dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x272aae7e dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x988802cc dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xebb3b420 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xed6850c5 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x166a4054 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x47dade45 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x684848d0 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xafad6138 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ipv4/gre 0x1d58b8f4 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xc3d0196f gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x10286945 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x370a22b9 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8b00fe59 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa9dc599e inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd75f3897 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe48c8a85 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xd8cea8ab gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x03100ad1 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0954f8d5 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x28b36a8c ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2ae3a7a6 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x35cfb8af ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3e825f85 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4bd39cb9 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4df6dac3 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6c3ec7bf __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x87c6ebd0 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9550200d ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9cec6759 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb75da80d ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb97414ce ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe00c639d ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xb985c41b arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x4b966c0d 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 0xd745083a nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x0885b5b0 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x3f090a1e nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x5d2817c8 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xccbad199 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xee1fbd0a 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 0xdf9efa50 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 0x1bd1b746 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4d11d0c3 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe0b84988 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf110db13 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf9b08492 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x4d422669 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6302cfc4 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x741ba536 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x98261fc6 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xdd6dce3b tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf0fbb6c4 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2a33862e setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2c41fb13 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4506b249 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbe931163 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x202a5a30 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3a992c41 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa1ab7f02 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xaa4b138b ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc27b7d20 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd8aca24e ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xefe17dc7 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x6728eef7 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x725b7092 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x97c09f20 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x22c434c4 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x36227bfe 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 0x5be2f328 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x5df43dd2 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xa3b2624b nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb596a303 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb8f0a854 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xde0f9403 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 0xd10d3abe nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x25437bb4 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4ed5c88d nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x50369fb2 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5f4b2492 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xcc9eff62 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xe8fdeaf4 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x01e02462 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x21d82226 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2d34b863 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x34319558 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x35eb0405 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x364883d2 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x382c9b29 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4b867da8 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x795e21cc l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7a255205 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7cffd8e0 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x87f10f11 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb2ef08f0 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb7b6b026 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc6074c4a l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdabbef50 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xeffa2b6e l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x19d6c2e3 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f5c955d ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x21bf0153 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x25f71c2d ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3595d6ef ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x42ab5799 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x46400dd5 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4ca29255 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x52a9b8a8 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5f9a12ac ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x754627e5 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc7c412c3 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xed025dfe ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9d2fed7 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfab0f94b ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x76335b76 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9e2b9627 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9f84d2b0 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa61f21c8 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x007230bd ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x07354866 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x07942778 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0d134360 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x421b3476 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x68df2e86 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 0x933ef28c ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9d1f1cbe 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 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 0xa58d9869 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa97f9eab ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb7cb7faa ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdad067b7 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdad3f5db ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe5f63cf6 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeb56de6d ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf6649a6f ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6fd228d0 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x72558214 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x869f70a6 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd03c8623 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x025a8eb4 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x038cd7de nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06a2423e nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07319e56 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0791ce72 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ca092ae nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0fe9e17a nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11ca4a54 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x137df279 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16e8b347 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1787d770 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21660ab9 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27c2289c nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x288f4f3c nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a66f0cb nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d9a45c3 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d9debb3 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2df080fd nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33da3991 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36085006 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x372bfb56 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3dcc0e6c nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f4188d7 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4270b3f2 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44a2701c nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44da8c94 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4564fed0 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4696f39d nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47d021c7 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4bc4fcac nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x51821c6c __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52a42aa9 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54124b67 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x542d9141 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54a25fbf nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55045bdb nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60016b59 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60fb2c46 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65895456 nf_conntrack_register_notifier +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 0x6a628a12 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74a0911f nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75499481 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76ecee16 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x781bad88 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79cf4857 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a7baa6d nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ca6ee95 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ff40193 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86a02296 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8835814a nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a9cf80a seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8cf2f766 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8edd792c nf_ct_l4proto_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 0x95ae9d2f nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99c486ca nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99f9d0c7 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9bcef5cb nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa18dfdec __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa584bf33 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa93990bb nf_ct_unlink_expect_report +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 0xbbc19a78 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf0486fd __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 0xca410cf2 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0cae088 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd24a69ef nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd29bffc9 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4041605 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd48799d6 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd826cffd __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8923c44 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc0592b0 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe35f94dd nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5b170b0 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb876e2b nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeef2338a nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf70ebdce nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfaeee557 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd190e6b nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x5249591e nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x7f93b865 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xeb2a253d nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4019985f set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa6d8d065 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa9d6f6bf nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa9ece7f9 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc42348bf nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc59958f5 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xda223231 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe1f0284d get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe73e883d nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf84dec86 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x953af02e nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x305adce4 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x74550f92 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x800a50f8 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe1ad57b3 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x0a9a5b95 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x2287021e nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x221c1e5f ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x339500ee nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x423f30fc ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x58751a9b ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe9d1acad ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfa82a1fe ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfbd1c5c4 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xa5b5f752 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x60114647 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x01355bfa nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x02cf1145 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x1ea87a5b nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xada2f6c1 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 0x1bdf971a __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2ef18f74 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3e0bc554 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5a1e8601 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5db2e136 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6ca0b03f nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8987b4df nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc5f93c51 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfde910a1 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xa353e6d6 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xcfc94c4b nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x008cb260 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2a889cdb synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2b32f986 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2d715ba8 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x57954c72 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x57f2ab69 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x592a5f31 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8463089c nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8790eba1 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x87b7ddd6 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8a241293 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb29470c7 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb458ee8f nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb4e43e89 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb50ccf04 nft_unregister_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 0xd1b6163f nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdb1993eb nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd7d4324 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe3cbb4e8 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x20ab4197 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3de61f3d nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4330a6f7 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5c729531 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x83abc561 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd41cd8fd nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdc4624ec nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x1062b0f7 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x9bd73295 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa4eb8922 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x8048f57e nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x1ac11d4e nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x2d6b2328 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x83bebadd nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x0053ba71 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x301db463 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x6080c5ce nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x63de55c9 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x873fb64f nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xbd7748b1 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xab7aa086 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xc2ca9401 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xc78b7f31 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xbedd628c nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc582d943 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 0x0807203a xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x08548672 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0d559573 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1c0edc2a xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x35c17c93 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x390778ec xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f0090ff xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4a1232e4 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x52d254f1 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x630eb68f xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6918afa6 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9a6a490d xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb860799c xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbf480f04 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7a3c229 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd4ca2293 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdfaba1b8 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe87ca75d xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf247670b xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4c32c169 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb7459345 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x6e10bde1 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xad9d4667 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xbb475042 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x16dc24c0 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x1d28f36e nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xf7344632 nci_uart_set_config +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x07107172 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x194f8c3d ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x23fb44f0 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3ba60e1f ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x47416b49 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6d054c8f ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8bc1cc2e ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc4cfeee5 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf7e66bee ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x1106e8b4 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x11d4c262 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x1e339d07 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x2a5bb580 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2e8de24f rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x36573957 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x3fa3ccef rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x49eb8f43 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x6a3f1572 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x7238afdd rds_message_put +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 0x838dd8a0 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x8ba335cb rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x8df7926f rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x92ee17ad rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xaf089cd4 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xb22824a6 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xd4cf5bee rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xe05d1ffe rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xe6743b66 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xe819a3df rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xf666cb4b rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xfb75b96a rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xfe7384a3 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x1d21388a rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x300c9900 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 0x059e596c gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x35133920 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 0xbad10e05 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0233a4d7 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x026e87a0 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x040e7ed4 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05bd00da svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e73c52 rpcauth_lookupcred +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 0x06bfb1a0 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07e0c67b rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b0212f2 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfa2267 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c1db945 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d5c1ecc rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x100d7877 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x103b48f0 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x106cf539 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12f28a28 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13bff07c svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13f6b265 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1464f23b rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1592ab42 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1656d35c xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1739ab39 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19144641 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d540188 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d70dd72 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e3fe3d6 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x204b7287 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2414912b rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x241680c0 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x251290ff rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x254ce99f rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2577dbb2 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26b4c8ca cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27c96575 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x293bd37f rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a34e33f xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ab80f33 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b6c4724 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b9d8265 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cbc9878 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dbeae6e rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ec8b342 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3026546f svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x311ae931 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3459f689 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3938c419 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x393ebd70 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a47028f svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3af6aa71 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b179eb5 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c46572e rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d90e24a xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3da29652 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ddceee4 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e972050 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42e14820 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x432c3bba rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44f7913b xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45961a11 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49145450 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a6f04b2 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b21f3c8 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c9b3a60 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cbd15a4 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d4287d7 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e63fa35 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f48a1a6 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fde6d62 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55e7f4d8 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56aab0f4 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x577514ed rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57c891c3 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59d75bf9 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cf71984 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6153c3e3 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6361e78b rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x654fd438 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x664e6018 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66808755 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67ed1416 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68f96bc5 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69c6f472 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69f15560 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a902641 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d3461b2 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e4c3030 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e571c86 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f7425a2 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f793356 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71d5fa4f xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71e1d55c rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x738358ff xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7583adf5 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a269ff0 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c50477c rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c9f7337 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dcd2bb5 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e8c6086 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x811772c8 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8165a8cb rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x817974ec rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81a88326 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82463c0a svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83c8acb2 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dfea926 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e381ca3 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8eab6568 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9652d4d5 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97dcfdc7 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x992183c2 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ca9514d xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ec3aceb xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f2bda31 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3a6071e xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4210717 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5d777e9 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7a256dd write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa86988ba rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa885fada xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacdf6f26 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad948329 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae0b067d rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae60abae svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae8425b7 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb016ac60 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2fc359c svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb32e99a9 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb35fbcc4 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3811422 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5545e35 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb638d7f3 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6c877a8 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8d253f1 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8f90c79 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb93d92d7 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9929be5 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ff9cb3 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaa76bef sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb698637 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd0dfd42 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd22da85 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf3ddba4 rpc_put_sb_net +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 0xc172051d svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1a6c8ae rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2784e52 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3221203 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc46fe972 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc506b004 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc77304c5 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8935586 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc897fe78 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc8f271e svc_close_xprt +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 0xd19a93df svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2d087cc xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd769b3cd sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7d425ee svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7d8729f rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd821a901 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda43dd89 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda774ec4 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf8e464b rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0426674 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe076cd2d svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe172c488 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1aa8e37 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe217a748 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6a1688e xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe724c074 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7a8c7bf svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8257aa2 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8350e3d xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe86aaef0 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe91d9f28 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea0c7ab5 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec918976 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee67de06 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee828c01 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef4067af svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0a094c9 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf13474ca unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf357c9f3 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf359fcc8 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3ab819f svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf50e28da read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5466f4f sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5b0fe5c rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf70f348f svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf74c185b rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7ee2e8d xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf865c324 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa955dc5 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb347b72 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb99f95a rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbe0811d rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc6151dc auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd601f51 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff4dfb5e rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0142bb25 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0f3ce1e6 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1d4779eb vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x311b328e vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77fbfbde vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90b1ac19 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9993ffa0 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb8d3436b vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcc1fb57e __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe3df493d vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe676adc6 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf5d36224 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf87ad621 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/wimax/wimax 0x034c8241 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1ff3b7c1 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4cec1c71 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x69a8c965 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x84ef71de wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8b028448 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x915b27b2 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa2125fd3 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xaa408568 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xaab07bf1 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xbda064d5 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc3a75a28 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xea82cb41 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x342352a7 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3eba738f cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4f26617e cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x811f73f7 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x95fe1380 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa4b61732 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa7a94993 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xac0b8af9 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb8696bc4 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc56110dc cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd4448973 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf7a93239 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfa1e5eb0 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 0x207a28b6 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x40ab5dbc ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5a280e62 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc268d329 ipcomp_destroy +EXPORT_SYMBOL_GPL sound/ac97_bus 0x5d8a7838 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x25fdcd58 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x61369ec3 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd 0x3bd756d6 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x5b47303d snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x7a6215f7 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xac8bdf40 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xc483f5f7 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xd7ae065c snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xfba6c19e snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x0593c544 snd_compress_deregister +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x281aa4b6 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x8453c00e snd_compress_register +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x07e14855 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0c97ed59 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x23c04e63 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x33b3baed _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7d50ca15 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x85092d88 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x89df9644 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8c20e8c7 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa857755d snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x11af2e4d snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x28aabefe snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x28f75a5d snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x43e36715 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5a3a1cf9 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x60f0607f snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8c2634a9 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa0a2c1c4 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdee7a527 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xeb87ff4f snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfdc9a711 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x78d6b8f7 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb0fe8b3c amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbf380aee amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc18f9742 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc69f7f63 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd023b734 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfb62bd35 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0fb70039 snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x16489193 snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x18d0be51 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1947d399 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1e8aa08a snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1fcc188e snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x24b8f372 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3a42ba5b snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4f8aa8dd snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5c55a974 snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5dc044d1 snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x61ad7b9c snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7506ed25 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x76493fbb snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7ba878f8 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8d9615e6 snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x903c54d6 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9bf2f1fd snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xadd5e291 snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb848ffb4 snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xba3ec74d snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcbabd7b6 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd3b9b789 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdf873c0b snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdfa45829 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe6fb9c1f snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe9419db7 snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xede8c2c1 snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf14e1e73 snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf8f07a72 snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfe3942bc snd_hdac_ext_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xff0c02c6 snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x060291f2 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0640f462 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a4acc97 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d7eb17c snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10d3143d snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14c2cb5b snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18defd23 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b0ad81f snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e233395 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x200aa62e snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23331ee8 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24e52bbc snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27bacc60 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a76cf3e snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a8b00ef snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2af5786a snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e0c7b91 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30dcea4e snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38ae4a0c snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c66f839 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d39634a snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f0f6530 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4423c23c snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ac472ce snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d113080 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54730c17 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57153518 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58c7bd48 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x59405f30 snd_hdac_i915_init_bpo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5986f422 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62898ddd snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x68a6bc56 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f873cc7 snd_hdac_get_display_clk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73187668 snd_hdac_i915_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b8753a8 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e1bd158 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8793b696 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89bba6fc snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d57db5d snd_hdac_i915_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ec84220 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91727d2e snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95060608 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9518b9b7 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 0x9d25c86e snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ddaae7b snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa0eb03b0 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2456987 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa24aff8a snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa40a95f2 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa458383d snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0e5cb1e snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb14da2a2 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2e2729e hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8167267 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb878b732 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba1821b5 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb636eb6 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe856731 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc033937c snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0e99504 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2d847f2 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6725538 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce567a4a snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd099c1e4 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4d53c33 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd778c054 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd837bafc snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd89b52d1 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0adbd67 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe134bd44 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe65a7cee snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe82cfaed snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe936dcc5 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf96c7e39 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9fab0e0 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc496732 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfef8604d snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xffd3f694 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x272a4816 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5adfc954 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc02b441a snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd65dd5f7 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xdbe616d9 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfefa54e3 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x002bd589 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01a9ccd7 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02408078 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04292a89 azx_init_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 0x08be6e16 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ffa41d4 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x152b35b9 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d795d80 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f69e812 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f74aa81 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20309cd4 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21b44a97 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x242892e7 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2561d436 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26d57821 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27ca3891 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a076f13 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32309cf8 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 0x3a6fba3d snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c28610b azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f78c09f snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44cd5212 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49cd569a snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a953c87 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ba24583 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bbc9c6d snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bc8d481 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dfddbac hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e2b8645 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53437d62 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5716c527 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x580211c0 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b5b01d7 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c4fa7e3 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ceaf339 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d28b243 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x625bcd82 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62b0c50d snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6323a371 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6335992c snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65cae833 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x695ca713 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c1491e1 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c71819e snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e0f46fc snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e940642 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f8cba4d snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f9d9a76 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73b1475d snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77736e0c __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7902677d snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7976efae snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7aeaa225 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b9995f7 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81915c7d snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8335b7d7 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9227594b snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x923dc465 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93d2b30b snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96071bf6 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96c48222 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a3b0435 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ab29d7f snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9adef848 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa100adf4 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1178ae8 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5a44645 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa876121f snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb398e7bb snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb55e015b snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8b12b6a snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc6e58c2 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdfe11f6 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbef50824 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc23f945d snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc28f137b snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6426468 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9294920 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca72c45b snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcdb83853 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd04d4c1b __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd064d002 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd06e49b6 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3d32d93 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3f2d9ee snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd58a0385 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5963181 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6e7faae azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd811fcf6 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8c30870 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8dd51d4 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8deb5de snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda652e8d snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdafd6796 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbd6f3c7 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc9c474e snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde5bbc82 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdef63bc2 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf0309f9 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe33f237b snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4cf6b10 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5ec4fdd snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe670c568 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8070ba7 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8a643cf snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8e377d2 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9bcfcbf snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb030424 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb4416d2 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeba97d3a azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec6592f1 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xedf41e26 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef9d170b snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf04a984c snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf10d47af snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf112177c azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1fd8656 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2ed6c22 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3488c9c snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8c85318 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf90d8324 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfad19f45 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc549a65 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc9aa36e snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x076ea3cc snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1c725555 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x30a6990a snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x51b641d4 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5e9ef5eb snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x63d600c5 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x68cc1d3f 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 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x90058f9f snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x964e507c snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa81a6efc snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbb5e37f3 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbddeb4c9 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc958cc2b snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xda64f3f9 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdb2d79ee snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe24d7c20 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe610ce6e snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeb5abc14 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf2482142 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf5d17b98 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf92e19f1 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x459e9c33 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xf64af686 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 0x9ab9a404 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe5b2315b 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 0xcb1ba429 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xd1d62af9 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xfd80f3a6 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xb5ed6886 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xcc13434d es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x8e95eae5 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7054874e pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x89299972 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xbfb9b653 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd9e0ce75 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 0x1fb9361f rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x0232c3d5 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x9c7561ba rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xe194a08c rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x42a0adba rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x4d68fd22 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x8d2ebfc8 rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xc5399b35 rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x018dbcda devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x46efb303 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7f95edc8 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x98fa1d79 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd56d7729 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x67e828f8 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x31be1d9b ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xa32bfa00 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x5387a93a tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x97fe3775 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xbd505fed ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x6d3aab34 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa8a9da3a wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xc75628cd wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd170d8d9 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x73cb7d37 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x27be0a19 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x2a6daab6 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x9abdb517 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 0x63e8e177 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0xd44a7e64 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x3e51bf88 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x66aa4f65 intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x719c7bd9 sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x9953821e 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/atom/sst/snd-intel-sst-core 0xd114adb6 sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x345d10c2 sst_byt_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x5b2da308 sst_byt_dsp_wait_for_ready +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xa8dc23ca sst_byt_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xafd1c9bf sst_byt_dsp_suspend_late +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xe3d4308f sst_byt_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0b43788a sst_module_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x11d76cc0 sst_memcpy_fromio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x11fa871c sst_mem_block_unregister_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x13c47a2f sst_module_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x17713806 sst_dsp_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1980c5a6 sst_module_alloc_blocks +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 0x21cfb88c sst_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2c850f6e sst_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2dc14870 sst_module_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2e5aff00 sst_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2f164eef sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2f551b69 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2fd74c59 sst_dsp_dma_put_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x31d3c0c7 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x333f19d1 sst_block_alloc_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3b7f8d0b sst_fw_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x404d9dfc sst_module_runtime_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4585e73c sst_module_runtime_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4a045773 sst_shim32_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5c1bb898 sst_dsp_shim_read64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5e115d5f sst_module_runtime_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5eb97c0e sst_dsp_ipc_msg_rx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x61c8f02d sst_fw_free_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x62223eb2 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x64344417 sst_dsp_dump +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x659a314e sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x66b3fb8a sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6b7377e7 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6eef5c99 sst_mem_block_register +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6f29a8e0 sst_memcpy_toio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7029708a sst_dsp_get_offset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x703557fe sst_dsp_dma_copyto +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x761f1acb sst_block_free_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7635fdfb sst_dsp_stall +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x771d0267 sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x83a25c35 sst_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x85b2c547 sst_module_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x884877b9 sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x89106a88 sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x98bb7ceb sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x99c216a7 sst_fw_unload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9d68328b sst_module_runtime_restore +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9f2c67ea sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa05efdc7 sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa2625e89 sst_module_runtime_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa4fe1df5 sst_module_runtime_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa79cf75b sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa7d885bc sst_dsp_shim_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xabe66728 sst_dsp_shim_write64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xac0f3016 sst_dsp_shim_update_bits64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xafbd0be5 sst_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb06d2fa3 sst_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb57f83f3 sst_dsp_shim_read64 +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 0xc3f7f66b sst_dsp_dma_copyfrom +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd68d166e sst_dsp_ipc_msg_tx +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 0xe1fcf38f sst_fw_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe2998477 sst_fw_reload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xeb8d8784 sst_dsp_reset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xece36123 sst_dsp_dma_get_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf9fedadd sst_module_runtime_save +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xffea28b2 sst_dsp_shim_update_bits64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x1e30b412 sst_ipc_drop_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x7f6c2c54 sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xa2a2aa9f sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xbab1ea88 sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xc4b9893a sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xc522d075 sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xc62ac07b sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xbce4e41d 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 0xe6b12ef6 sst_hsw_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x135c308c skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x1f1dff55 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x2635ab43 is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x2bafeb19 skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x4139f713 skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x41a46f1e skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x41b3a02e skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x46c26b55 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x5de1b9b2 skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x6e9cfb6d skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x91fb698d skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xbe0b9cc0 skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xcf5e4460 skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xded08f62 skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xe5093b57 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0375e5f0 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03c8c7b0 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03e2019b snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03ecf465 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04d00c1d snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0559484c snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0798bb09 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09d40c3b snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0abe877f snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b9b2c85 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bc929cb snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c1b4086 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cd1d848 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e708c1b snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x124accc0 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1490328a snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14ea7e14 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14fd8403 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16020f52 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x188a31eb snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b4446e2 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e54b24c snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ee75cca snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2231751a snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2772e686 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28b3f2d3 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x290891be snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29b55331 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c118d58 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f0a13e4 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f658f5f snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32087348 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32856602 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32ab293a snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32f5b507 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x373c36d4 snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a06935c snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3beb0641 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3da64a5c snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f4a90c1 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3feb2f4c snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41058ed6 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x431c8d67 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43b4f9fc snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x487a1a58 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x492a4e5f snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49d7a5cd snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4aec89a3 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4cb25fc9 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d746884 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dcc3b5f snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51460bab snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x547cb255 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57c8e5f2 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bc6b251 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61fd8d5b snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6458fb04 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x668fdb75 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68658f81 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a5214bc snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ad7a736 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c318849 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d5f7421 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6dc17bdd snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70ff26d5 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71085f19 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71121d4a snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72f34192 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73800a8d snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7529d7c3 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7662d5b4 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x769938f2 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x792ed01b snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7eae61e2 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f3bf489 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8268bd96 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84bea9e2 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8514d989 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87ca5924 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8898ab52 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d4aeba3 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f30c037 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91304f76 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91921435 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91e7455b snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9387d639 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x963aef65 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98d8dc46 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99aca1c5 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a6941db snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d8a7c42 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9dc4e89f snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1c4f2cd snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa333f481 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa35fe9f1 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3ccc381 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6404790 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6f5bd56 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa75f36d3 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9023781 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab96c30b snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabf8f375 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae89a662 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaee602e6 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf4abf2f dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf9a39fb snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0a0046c snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0c170f9 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1a7ba49 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb25bbaf1 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4e16752 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5796496 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7383336 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb77819fb snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7bf7bd0 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd03549e snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdc8b680 snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc08fc528 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1c69c46 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc231ae86 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4761c0f snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6c7dc78 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbb19c4f snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf1f31bb snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd051d07b snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd09ed966 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd24a1463 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3a74227 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd53d5fb1 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6c6fbc1 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd70b9b6f snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7decc59 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf6988a0 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1ba501b snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe429c17e snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe55eb60a snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6641f0c snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7376e95 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe79047a2 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe85ddcc6 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe937f03a snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe94fa068 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 0xec8a6806 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeefcab65 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf049354a snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf17c3600 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1aacb95 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf26d1eb8 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2765c2d snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2cfa5e6 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfae226b3 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbdd1e9c snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc7cf74d snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe388978 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x035d9ec9 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0b9bb26c line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x177d919e line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1f46004c 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 0x5014c46c line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x64620470 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x69649c86 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6a1bf710 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6e2d90a5 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7c55ca68 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8036de92 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x85414f35 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 0xca2bfc65 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xde63dcac line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe309b59b 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 0x1e678bb2 dot11_pkt_type +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x2b1be1b2 rsi_default_ps_params +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x3049e901 ven_rsi_mac80211_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x32ef8e65 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 0x47073c04 rsi_init_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x5c20433f rsi_deregister_bt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x6dcd27c5 ven_rsi_read_pkt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x6e248974 rsi_hci_recv_pkt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x7a318e91 rsi_hci_attach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x7c7aef6e ven_rsi_91x_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x7f9e0a81 rsi_remove_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x8c6e300c ven_rsi_91x_deinit +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xb787a082 rsi_send_rx_filter_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xdd1c6088 rsi_hal_device_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xee748f06 rsi_config_wowlan +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xf0b30aa3 rsi_hci_detach +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 0x0000cc22 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x00083b98 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0020e4dd platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x0033cbc5 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x004096a2 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x00634cd1 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x0073a057 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x007cb8f3 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x007d6eae dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x008d02af rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x008f4e3f xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x009a4a67 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x00a224ae syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x00a55a0b dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x00b09551 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x00b849a3 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x00c8d4ab __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00f73ada ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x011466a7 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x01266f9e devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x012cb379 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x01335daa tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x0146fdc4 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x01512eef usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x0185a9dc tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x019cf73d fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x019eb37a wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x01ac3860 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x0221cc43 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x022cb291 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x022d7d2e md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0244779d sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x0278f6f6 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x028675ce acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x029084c7 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x029604f9 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x02e136a3 xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x02eb4768 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x03123452 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x03143821 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x0316c514 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0368dc52 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x039b995e phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03ac9e71 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x03af5a78 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x03c5ff49 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x03d09842 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03e9c7e9 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x03fe6277 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040854b3 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x041a547e arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x04256c0a mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x0434c516 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0479fae0 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x047f4206 __pneigh_lookup +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 0x04b07131 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04d8e317 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e61810 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt +EXPORT_SYMBOL_GPL vmlinux 0x0509acba usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x050f4963 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x0516c4dd gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x0536aab5 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x0537eb5c ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x05388cb2 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x058b0fa2 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x059bb3bb irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x059fd2a8 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x05a345de dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x05db13c1 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x05dfe8fd dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x05e40d7a console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x05ec61c4 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x05f19db7 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x05fc37f1 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0605f06a bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x06231bab acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06644289 irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x06982b96 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x06ae330c crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x06afbdd4 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x06b13a52 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x06ca96c4 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06e6992a regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x06ea6775 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x06eaa0e0 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x06ed89c3 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x070925e0 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x070b5b9a security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x071bc19c driver_register +EXPORT_SYMBOL_GPL vmlinux 0x07219d0d attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07441a75 regulator_get_optional +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 0x079adc14 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x07a8ced1 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07c0fee9 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x07ce7552 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x07fbbf1b usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x083773bd kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x083f54ed thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0843af6b swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x0849f5f8 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x086e0847 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x0883e096 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08a70f0b shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x08b5b9f5 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08cbc21c __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x08e1a659 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x08e5e3a4 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x08fba870 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x091a422d trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x09519ed5 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x095c5bd9 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x09b198e1 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x09c2f182 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x09c37029 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x09fbef61 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x0a00480b __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x0a13efc2 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x0a4d0e32 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a86da9e wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0a875912 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x0a8d21ae list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x0a98849a set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x0ac7eeb3 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b4a2cd1 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x0b4a5591 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b698df3 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0b7fe7bf ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x0b8f2511 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x0b9e3096 fpu__save +EXPORT_SYMBOL_GPL vmlinux 0x0ba40656 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x0bcaa284 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x0bd26c75 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x0be9ef4d blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x0bee2d0c crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x0bf8fa4c serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c1f918b dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x0c2192f8 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c654fd6 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x0c7752a6 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c80a620 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x0ca07b03 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x0cb060f0 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0d1d99ac acpi_subsys_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x0d31e032 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d69c107 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d7f21b9 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0d8054a7 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0dee880c regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0df65990 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x0df925f6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e02eff7 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e60a554 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x0e845a37 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x0e84b548 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ea312ad da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0ec58c80 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x0ecdb5fc extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0edd2f70 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x0f1047c7 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f2e6fea regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f3b0025 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x0f4112be trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x0f443833 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x0f740300 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f8caf63 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic +EXPORT_SYMBOL_GPL vmlinux 0x0faddfd1 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0fade9c7 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x0fbd2ec2 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x0fc90343 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x0fca6765 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x0ffc03f8 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1033be36 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x1048cb5c ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x1073abd6 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x1080447c scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x10a2755d devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x10c35cd3 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x10d56065 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x10e905a0 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f16124 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x10ff9fd2 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x112318f0 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x113c8f97 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x113e69d8 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x116441bc devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x1170a045 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x11878049 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x118f5311 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x11caddc7 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x11dbc56d dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x120259ff ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12335c82 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126bc87f driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x129d85ac __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x12ac31f1 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x12bd92b6 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x12bec336 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x12c76d3a gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x12d0f0b5 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x13028f11 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x1303ec2f pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x13087c91 rhashtable_insert_rehash +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 0x13300e6d rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x136d79c4 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138d0492 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x138feda8 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x139e3b16 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13c4a0b6 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13e0586a dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x13e60a3f rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x140838ae inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x141c7744 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x14222f0d platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x149afacd mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x149e7d7c of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x14b3ee40 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x14b520bb i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x14d42cb7 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x14ea4e72 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x15013043 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x150bdf45 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x15393792 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x1547f4fc usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x156d6751 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x15709f8c da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x157aa5b4 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x157edcb1 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x159da79e usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x15a19ce6 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x15bb0da2 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x15e45f9a regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x15e48999 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x16381979 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x1646db36 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x16470bd5 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x16a6af39 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x16ab7373 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x16acbff5 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x16bd8e00 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x16ce6313 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x16d6bab9 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x16df115a rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x16e215c6 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x170153b9 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x170488fb regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x172024ee debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x1765e21b ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x17c76059 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x17d03edc virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x17eb45ce __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x17ebf569 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x17f2f2f5 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x181a31fc usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1854ac4f tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x18600f57 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x187644a9 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x1880fbba l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x18823cbd pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x188ec995 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x18dcc4a4 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x18ef9e02 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x18f34df6 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x1907723a bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x197a04c9 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19a21766 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19b576c0 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x19b5a2d7 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x19d6ff54 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x19e08e01 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a5315c1 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x1a73ab11 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x1a78b410 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x1a7f21e3 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x1a8928c7 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x1a8db718 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1a9cb062 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x1a9d6a08 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x1aaa493e pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x1ab2e083 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x1abef51d gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x1acc3c59 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ad53ac0 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x1adc2a10 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x1b35e7d6 xen_swiotlb_set_dma_mask +EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x1b3c2a60 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x1b3cfd26 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1b3d8a40 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x1b5aaa03 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x1b6ece07 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x1b7a7273 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1ba58ddb pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x1bbd1e87 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1be55012 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x1c12919b led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c187384 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x1c226b5c usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x1c27d2ef gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x1c31d502 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x1c4f494b usb_get_urb +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 0x1c6520d3 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x1c6660c7 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0x1c677c56 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c9b2120 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x1cda1e0a usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x1cdf623c tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x1d0e5e16 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x1d19cee9 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d3d1f4f devres_release_group +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 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 0x1dbd183f ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x1de0fcc4 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e160fe5 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x1e459dde crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1e4ef036 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e62b347 i2c_unregister_device +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 0x1eb8e5be skb_append_pagefrags +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 0x1ed1b1e9 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x1edc21cb hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x1f01a1bf event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x1f0a0fe0 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x1f2bb6e6 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x1f573260 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x1f5a7cfb sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x1f5e0d07 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x1f7232a8 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f889dbb mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fa7949f klp_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x1fa8881f pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x1faee3ce blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x200cc695 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x2024ab1c tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x205f2355 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x207f2ede hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x208bb672 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x208f5c11 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat +EXPORT_SYMBOL_GPL vmlinux 0x20a44e03 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x20a7502a usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20d78b02 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x214b4a35 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x214e5e44 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x215d5992 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x21a421a3 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b6204b set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d9a40f regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x21e88c4f device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x220bf8a5 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x221f95af __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x223f4a01 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x2241df2b ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x226d3465 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x22b62fb5 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x22dbc40c bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x230e96ea dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x23120efe uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x231fc0c6 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x23298e9e cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x232e2f3e blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x235cf99c ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23917f74 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x2395cded rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23d5d0b5 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x23f26eb2 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x2417648d gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x241c58bc devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x241dec0e dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x242b5bc7 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x2433da35 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x24469795 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b5a37d phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f1d41e pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x24f2f24b clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x2501b3fe regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x251d85fb wm8350_clear_bits +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 0x25426d0d usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x2551ca4f sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x25655b47 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x256bf991 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x256fc3ef devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x25779cb8 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x25822ed0 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x259d9f3c pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0x25a24fbd device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x25a7f0f5 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x25c7c34a fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x25cea1bf subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25d700b8 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x25db2fde usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x25e525ff class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x25f54bd5 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x25fc51d5 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x25ff4d30 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x260a96ef xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2613e3e0 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x263e4192 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26568928 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x26570185 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x26ad8186 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26bdb7e8 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cc2e4d iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x26ceb8b5 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x26f84b8b power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x2728eb1d ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x272b132d ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x272d17ea crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x276b70c9 inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x2790573b init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x27a430a9 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x27a7b780 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x27b16bbf eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x27bd6e36 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27d97eec pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x27e1a9dc __skb_get_hash_symmetric +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 0x286b23d9 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x286f4672 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x288694e0 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x28910cc8 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28aba528 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x28d5f628 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x2902ed4d device_attach +EXPORT_SYMBOL_GPL vmlinux 0x290e85a7 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x29193089 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x2955a39c adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x297c0f8e register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x29815313 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x298f8a24 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29aa56cf ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x29be16d3 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x29cb5d9e inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x29ccde86 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x29dafd5c rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a06c34a crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x2a316b77 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x2a598016 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x2a66fbea cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a976256 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x2a9f0bbf __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x2aa5cba2 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x2ab0f7ab pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x2ab75881 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x2ad2f00b device_move +EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b2bbfd4 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2b370fa1 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x2b4a6512 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x2b86978e devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x2b87b844 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b9ad498 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2babfc32 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x2bb9e949 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2bd765ae dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x2befbb4b unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x2bf12218 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c1d3949 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +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 0x2c7dbf0a cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x2c812ba8 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x2c90f4dc get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x2ca45e1d thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x2cab55c9 rtc_device_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 0x2cf13375 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x2cf9c5b5 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x2cfc0fc6 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x2d058cd3 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d2c26dd rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x2d2ec1e7 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x2d382e55 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d456c37 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d5e2642 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x2d67327f pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x2d7e8927 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2da96051 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x2dc2bca1 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x2dd15cd6 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2e096745 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e28b44f apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e31a307 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x2e4d753e subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x2e536d9e ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x2e58fd32 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2e6e54c1 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x2e9f6f1e smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ee9eb1c xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x2efa60cd powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f18abe0 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x2f245957 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x2f299b9d ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2f399cdf aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x2f3c7bf9 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f469e93 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x2f52f1f0 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f7f6c08 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x2fb37554 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2fb762bb fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fda1064 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x2ff8688a pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x2ffc9eed platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3002c490 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x300572f7 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x300714de spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x30182157 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x304e9fa8 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x3061cefd xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0x309799c0 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x309870c8 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x30ac51e1 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x30ad208f crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30eae7c2 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x30eba827 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x30f0bb18 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3107164d sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x31164317 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31529980 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x315cfd89 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x31644b37 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x3164e8e4 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x316ea6b6 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x318d855e usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x31ac1a16 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x31ad1d25 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x31bde0da sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31cffd71 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x3202544f fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x3225e622 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x327a74df pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32a98d2c sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c223f3 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x33001033 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x330d1524 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x331e6e4b tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x33236105 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x33459ded dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0x3353d0ec file_ra_state_init +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 0x3363a9aa bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync +EXPORT_SYMBOL_GPL vmlinux 0x337509fa palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x33aac3ba gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x33aff67e gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x33b2da8a acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33d377ba regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x33da2bcd md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x33f7aad3 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x3401f9e3 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x3429f766 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x3435e314 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34a5bb6d usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x34ace01e irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x34bb0655 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0x353dc61f sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x354a49a6 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35616282 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x357ca953 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x358d6f30 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x35ae3721 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x35b1ec57 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x35b62555 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35db1715 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x35f2a6ce acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3610306a __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x361eeb26 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x36325bf1 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x363c295d ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x365b71e1 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x3667c656 of_css +EXPORT_SYMBOL_GPL vmlinux 0x366bebbc __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x367f3d11 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x369b45e9 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x369bee90 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36ae8447 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x36b1aac9 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36cdb8f9 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x36d48aaa xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36fae652 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x3701ce58 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x370d8624 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x37233379 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x3723725e ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x375d6eeb nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x377f105e ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x3792cddd perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x37b337a0 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x37b5ddf3 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x37c359d1 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x37c44397 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x37e088ed wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x37ed7c7a rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x37f1ffbf gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x3815ec2a pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x381b80ee blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x381c9642 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x3838aa4f do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x384d079a _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x3857f125 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x386dfc89 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x3873b1d8 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x38753130 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x388ed30f wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x389dd7e1 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x38b3fb30 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x38b6254c unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ef722d gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x38ffc311 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x391c7bce tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x393769fb wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x3943b528 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x394c4d62 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x3956b5b9 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x396b9828 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x39904a8e napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x39a25aac acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39e1a8c7 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x3a0a984f __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a38dc65 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +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 0x3ad3e3e2 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x3af2744f iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x3b39af18 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x3b411a01 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x3b46b575 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x3b46b8ae acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x3b4d5390 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b60df33 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3b8b02c7 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3ba95302 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x3bc06346 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x3bcd80f5 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x3bf96dbc ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x3c368f1c sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x3c38db5b ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x3c5126ed devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x3c63c6ff ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c8ece6c blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3ca56c7d dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x3cbbd6c7 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x3ccaace6 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cdcdcf6 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3ce6edf3 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d516919 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3d5a7ab4 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x3d5f392d acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3d6c3208 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3d98d9b2 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x3d9fcd4d crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3dae6404 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x3db0da4c disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3db3169d intel_svm_unbind_mm +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd60843 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3de26f69 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e065176 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x3e0695c2 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x3e0c3b4e extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3e16f58d rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e3487cc anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e5ea755 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3ea466f3 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3eb0e779 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x3ebed624 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x3ed14d18 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3ef48975 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f06148a __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f445eb6 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3f50c09e fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x3f6d5989 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3fa2fd5b led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x3fa4a219 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fab6476 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x3faf48f6 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x3fb1320f pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x3fe2e57f sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4010b80f pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x4017508e proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x401e84c8 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x4028456a wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x4046dcba usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x404fe220 __rtnl_af_unregister +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 0x4095a081 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x40aa67a8 pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40d1fe0b shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40ddef3c edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f23933 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x4107f771 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x4126824e ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x41280dcc skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4183e8b6 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x418710e7 mce_inject_log +EXPORT_SYMBOL_GPL vmlinux 0x419a59f4 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x41b87bb6 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41e87c51 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x41f8d685 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x42457bdf __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x4255026d kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x4260beae __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x42621664 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x42689b9d sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x4268aca7 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x426a7fb6 find_module +EXPORT_SYMBOL_GPL vmlinux 0x426b7a90 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x4272d3eb rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x427c58d8 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x427cdcd6 skb_pull_rcsum +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 0x429065af irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x42922ac5 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x4293d81e driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x429ac857 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x42a5dbb9 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x42bb38bd __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x42bb8d80 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x42dd5bcd lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x42e0fc94 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x430596d2 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x4309f650 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x43283185 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x432bda66 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x432df310 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x432ef851 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x43523eda device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x437bfbd1 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x43966564 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43ad5339 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43e1e45f default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x43f3a2c5 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x440ad932 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save +EXPORT_SYMBOL_GPL vmlinux 0x443b14ea ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4486e4ee ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x44b3d744 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44d7d39c power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x44def082 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44e5bf5c pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x44e88c37 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x44f7fefb crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x451f46e2 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x45300161 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x45383ab9 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x453b517d pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x4548def2 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x45606401 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x45727ba4 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x459c312b ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x459db095 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x45a2b1a7 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c11b58 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x45df06b6 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x45f3112c sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x45f8d077 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x46219a89 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x4628f28d __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x462da955 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x4642031a component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x46434934 disable_kprobe +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 0x46af4c3a ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x46d65577 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x46e13874 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x46f10816 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x473a065e crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x4743ccf3 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x474535b1 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x479133ac nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x4796deb5 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47c5ea3f nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47f3f449 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x47f7ad90 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x4810fc8d public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x483054aa uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x48374a69 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x48398773 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x4869cf92 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x4881a01c register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x48a991cb devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x48ba4181 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x48f88a89 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4903c02b xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x490a8df6 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x490cbc83 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x491de152 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x49649039 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x49756f7d i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x497d47be fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x498636e8 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x4989c5a4 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49b76b1b ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x49be1bd2 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x49c32aad virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x49d44022 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x49dafafc nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x49dc330c udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x49e4eb33 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f0c013 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4a0bbfb3 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x4a1b99e4 nvdimm_bus_check_dimm_count +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 0x4a565f81 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x4a5c1021 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x4a775768 mmput +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4a9b45ab pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ad1b7a0 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x4af912ef fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x4b390acc usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x4b493e54 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x4b4af35a fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x4b98902a clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x4ba5d8cb driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x4bb49ce5 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x4bbab803 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x4bbec051 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x4bce850f udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4bf9f93d __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x4bfce277 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x4c0287d8 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x4c02fec8 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x4c138224 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x4c15abb8 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x4c271d9b securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x4c2a472b __static_cpu_has_safe +EXPORT_SYMBOL_GPL vmlinux 0x4c3ef267 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x4c50bc75 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x4c552319 skcipher_geniv_free +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 0x4c7a0354 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4cc0358f __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0dfaa5 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x4d33faca adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4d4010e9 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x4d7946cf tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x4d89f5fb dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x4d8ce6e2 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x4dacbfe3 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x4db99ced pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x4dc58109 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x4dcdc312 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e2f0d3c serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4e473a00 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x4e97a832 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x4e9d806f blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x4ea277e7 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x4ec72f70 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x4eeafe0e wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4ef0733c ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f1d117b acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f452359 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x4f4ea9cf scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x4f64f686 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f8deec7 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x4f98cf18 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x4f9d78a7 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x4fb38462 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x4fc136cf posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x4fc4b5d4 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fdcf3cb pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe9997b pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x4ffa07a5 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x4ffa25b8 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x50046f2c register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x50344e83 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x5054a35a regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x506bb2c6 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x506d7cab cpufreq_governor_dbs +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 0x509bed6d xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x50af181c gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f13fb8 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x511588fa key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x5123a3a3 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x512b1d19 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x515e0a8d remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x516cc4cb register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x51902503 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x5191bd3c efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x519c8256 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x51d368a2 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x51de52c2 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x51e465bd nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x51f927d0 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x522d0964 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x528004e0 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x52838a05 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x5286e70d md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x5289d516 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x529499c4 xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0x529733f6 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x529f7601 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x52a1df76 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52c219fb usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x52d2cbb3 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x52f46ea4 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x52f9ab9b virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x52ff18e8 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x530948d6 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x5315a5e2 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x53410e1f skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x534d084c ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x53708000 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x538edfcc acpi_dev_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53df35a4 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x53e6e5b2 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x53f11c45 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x53f3389d blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x53fa6d86 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x541454b2 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bcbc7 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54207d1a ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x544e9e44 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x544f0861 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x5453af00 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x5455a9e9 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x545ee955 fpu__activate_curr +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546c77e1 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x5472590c devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a5cdea metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x54a73546 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x54ced2d1 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x55181725 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x554ff369 xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x555beebc n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5590de5f security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x5593d715 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x559894b7 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x55bf1732 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x55d7db6c usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x55e5218d sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f32729 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56284e61 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5631fdd1 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x563c69ed pwm_config +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 0x565dfc5c crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x5689401d __put_net +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x569903fa netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x56a44ff8 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x56a78279 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x56af64a3 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56d7426b sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56fde43b nl_table +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x57310d39 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x573ddff7 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x5744d554 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x575b24d7 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x5762a4a5 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x5766a99c acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x576bc025 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x57954dbe ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57d84c51 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x57f77529 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x57f9da97 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x5803ae0b debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x582782df nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x584b1d79 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0x587ae6e7 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x587e1e0e debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x58881485 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x588da146 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x58912868 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58c6d22f xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x58cc78b3 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58e96a65 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x58f37750 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x591c8a97 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x591fc9af agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x592f9505 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5931ab37 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x5975a240 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x5989ef76 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x59ab8c78 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x59b0882b md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59b9fa87 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x59d00838 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59f3b5c4 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x5a054cd8 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x5a1663af regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x5a16ac49 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a51ad0b i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a78081e mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a9dd6aa usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x5abf9771 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x5ae1a0d4 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5b1899f8 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x5b2cbe30 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x5b33c160 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x5b433739 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x5b54a560 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x5b6f2b3c pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x5b7c733f unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x5b9102ad inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5baa1462 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x5bb52d9b crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x5bc18f91 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x5bc98b4b class_interface_unregister +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 0x5bde2830 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5bf7c954 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x5c00c4cc blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5c2ca9c8 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x5c30de36 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x5c4b2a2c __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c77c67f dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x5c8d7f62 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x5c924807 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x5ca33107 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cd30e30 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x5d074d55 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x5d0bb5c7 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d1d1432 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x5d240d7d io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x5d2dd752 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d59ca6d dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5d6df0b9 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x5d98478c blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db5c67f wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dcd7160 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x5de477b8 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x5e1881c6 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x5e2e42d1 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x5e3d044d devres_get +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e6ede78 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5ea5a2e5 user_read +EXPORT_SYMBOL_GPL vmlinux 0x5ebfe3c4 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x5ebfee66 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f32e611 component_del +EXPORT_SYMBOL_GPL vmlinux 0x5f3d8581 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x5f7c288b __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x5f7d54ba crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x5f897638 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5faf078b gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fc5eaaa regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5fe907b7 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x5feaec3b fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x5ff50674 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60166dfb tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x603d2ba8 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x603f0b49 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6051a105 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x608015ef hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x608463bb vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x6088fd2a device_del +EXPORT_SYMBOL_GPL vmlinux 0x608d698b input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60930d37 save_mc_for_early +EXPORT_SYMBOL_GPL vmlinux 0x609ac35f gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60ccd739 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60fa7acd param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x610e083f rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x6125adb5 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x615a91a2 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x615b1616 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x61600bfe acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x6167a413 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x617dd9f3 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x61854049 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x61e37d8e debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x61fe44d4 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x62133dbb devres_open_group +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 0x6238f82d gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x625ba8f5 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x62605968 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x6267972c pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x626c3cb3 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x626c6327 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x62b17fb6 acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x62ca7e8c __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x62d2459d sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x6311e381 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x632202b4 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x6332ff65 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x6333072c gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x63351b11 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x634e31aa usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x637f60ab sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x6380fa46 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x638fe045 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6391881b nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x63a26a67 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x63a5c9e4 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x63abc300 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x63dfe4f6 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63e22855 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63f020a3 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x640f7dac posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x641683ed phy_put +EXPORT_SYMBOL_GPL vmlinux 0x6431756d ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x644b32da sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x645b0ffa alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x64744721 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x647b7728 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x648060b5 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x64858fcb kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x64993ed3 dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0x64a0cd46 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x64b3d67b pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x64bd9e41 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x64c53793 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x6504cb6a input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x650cac8b wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x650d9567 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last +EXPORT_SYMBOL_GPL vmlinux 0x655fc900 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x65612f10 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x6572fba7 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x6590ceac virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65ce6030 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x65dd9c9f inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x65f6296b pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x65f64ffe usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x65fd8b56 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x6606f771 pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x660eef49 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x66104d3b gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x66138fa2 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6637e65b extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0x666007d0 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x66635d50 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x666cebc0 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x667918f2 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x6683cbcb rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66883290 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x66a0690d usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x66a75e18 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x66a9db21 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x66aca55b pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x66b143ce get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x66bda9b8 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66cf3c96 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e70b96 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x66f1292d invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x66f2fc69 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x671fa3c8 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x674910bd usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x675f023c shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x67654a8a ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x677beaf8 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679c60f1 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x67c14a8c clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x67cf4bfe regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x67d6e071 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x67f7ee48 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x6805748d kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x6865bf28 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x689e6a83 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x68a7d38d srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68a886b8 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x68c77c12 regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0x68dee282 nvdimm_provider_data +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 0x69674c82 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x6993ca10 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x69a1d050 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x69a55235 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x6a01ece1 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a26c43b gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a57a9f6 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a75f41a ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x6aa372a2 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x6ab82375 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ac2a620 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6ad60c37 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x6aec2e6b crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b192a7c clk_register +EXPORT_SYMBOL_GPL vmlinux 0x6b201a08 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x6b25f348 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b3996ec xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae33a pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x6b613147 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6b7da8b6 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b8c236e mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6ba0b1ef pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x6c04f1e9 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x6c1f7f85 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3a9800 usb_init_urb +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 0x6c6ae7b9 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c9135f3 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x6c9ac236 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6ca94d1b mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x6cb8a494 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x6ccd9d81 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cdf6305 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6cea2c31 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6d08ddd1 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x6d20de4b cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d4bbe06 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x6d5c33c3 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x6d8196a7 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x6d9d9c0c xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x6da99bde clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x6dc06d45 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x6dcc15ab virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e2b2dbd pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x6e3d5494 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x6e538bbe usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x6e54ea2a scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7c0d50 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e86407a crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6ea98361 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x6eef83e5 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x6ef2fdc8 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x6f1ac0a7 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f29a5f2 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x6f550461 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x6f66b11e dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x6f6b2003 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f9f3558 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x6f9f9a2e regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x6fb0ffb7 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x6fb50daf __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x6fb90c3c vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x6fbd8239 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffe59a3 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x702b7118 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x705558b4 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x705bd95a usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x70793e85 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x7080cf5a virtio_device_restore +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 0x70cfdb91 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x70d30336 xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0x70dcf2a3 pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x710f594b sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x7133e5c4 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x718a6c7d xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x719aab09 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x719bb153 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71ab5b30 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x71d7aa1d ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71e2f5c0 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x71f8cbf8 cpu_tlbstate +EXPORT_SYMBOL_GPL vmlinux 0x72115fab blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x725ececf phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x7266294d acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72944f12 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x72b49b24 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x72b5bbab virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x72d6d4c9 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x72dd78e0 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x730dc36d pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x7317e34d crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x731944e6 print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x733bd651 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x7382bac2 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7382dee4 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x73912b98 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x73a2a531 ata_sas_scsi_ioctl +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 0x73cc1d20 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x73d5846b devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x7406fbad __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x7408f75e regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x744176cd irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x74420da6 __pci_hp_register +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 0x74719cb9 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x748e15cc gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x749be7e8 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x74a0357c inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x74a0369e tcp_set_state +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 0x74c43d8c crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x74ef9c5c irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x7509ae57 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x750a720e fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7515ada3 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7523caf4 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x75354918 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x75544275 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x755b1e71 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75d2f2de percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x7602187b mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x762d0823 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x7641c57f debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x76437689 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x76484a7e sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x764df03d sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x76721f50 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76a1e8ba xen_remap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x76a3bd05 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x76b861bb devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x76caf253 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x76d15a82 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76f5e61a tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x76f72e30 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x76fca25c usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x77115cbb pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7722140b register_mce_write_callback +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x7750e55e request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x7754b731 __clk_get_hw +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 0x77760830 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b95396 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x77ba59b5 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x77ba6261 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x77d04378 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x77d1e0c2 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x781b3187 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x78303ec5 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x7834c506 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x78553ac9 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x78575bee atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x786960d0 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x7877bbf4 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x787f8dfb __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x788722b6 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x789c684d simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78d80aca policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x78e5c89f i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x790262db clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7929d351 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x792eeed5 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x79402202 pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x794d2731 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x7951c8ab ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x7978bb36 user_update +EXPORT_SYMBOL_GPL vmlinux 0x79872979 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x799bb851 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x79c4f8fa ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x79d9aee3 splice_to_pipe +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 0x7a15ea8b devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x7a2298b0 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a3e9634 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7a40d204 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7a4bf76f dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x7a5e4c44 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x7a62e5f3 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x7a6c76ca l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7a6f62f7 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x7a93c758 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7abf1130 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x7ac224dd __module_address +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7accc4f4 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x7ace0905 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x7ace73fc wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x7adc8e54 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x7af4af6f ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x7afcbe4c pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x7afe5124 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7aff85cb led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1212d9 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x7b151e78 klp_disable_patch +EXPORT_SYMBOL_GPL vmlinux 0x7b196bbc crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7b64132a inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7ba03b77 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7ba3bf45 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x7ba503af set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x7bb55a8c dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x7bd4c297 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x7bd7245f debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x7beae934 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x7c275cf5 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x7c2d3783 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x7c4c7ba7 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7c4c801a devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x7c87d6a2 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x7c8837aa ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7c8aeb2d init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca7c92b swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd7fa0a perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7cd89e10 usb_get_dr_mode +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 0x7d426d14 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7d4a95e2 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x7d538941 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5e97cc md_run +EXPORT_SYMBOL_GPL vmlinux 0x7d7d291a dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7da7e3f2 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7db0b055 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x7db2bff3 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x7db8df9f ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x7dc0ce5a blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x7dc23648 ata_bmdma_port_intr +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 0x7e128eef dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x7e191fd5 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e2f7cf3 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x7e3eb5ac trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x7e419397 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e97215c fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x7e984c39 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7ea8d55b irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x7eaad79f pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x7eaff207 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x7ebc97cf pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x7ed7706f pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7ee1d849 __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x7eef5d53 __remove_pages +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 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f9c9892 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fa4a2df pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fc8fd3d acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fd9aae2 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x7feb2231 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x80156244 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x80321fea acpi_dev_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x803c9bc4 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x80477758 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x804c6b0e platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x8089bba0 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80907a73 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x809529fd alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x80a9fbb3 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x80bac16b skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c6928e wm8350_reg_read +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 0x8117f4c1 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x81257575 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x81265106 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x8150ecfb ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x817e19ac device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x818b9072 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x81a84515 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x81b898c5 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x81d06fa2 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x81d47473 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x81d816b2 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x81ea82d2 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x81ed0c7e acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x81ed0df1 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8203672b pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x821960b3 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x8234935d __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x827d99b8 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x82dccd2a usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x82f4419b ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x830cd74e crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x83341aaf ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x83372212 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x834aa723 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x837ee5f4 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x839d1499 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x83a7123f component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x83b05380 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x83c74193 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x83df271b i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x83ebee7b usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x841fd0a1 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x84302e4f vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x843b9fc4 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8447d9ad rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x845ae267 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x845c596c led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x8461df1c pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x84693d89 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x846bafc3 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x8479cad3 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x848e54e5 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84b9a8a2 device_register +EXPORT_SYMBOL_GPL vmlinux 0x84bae97c dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x84dc5af2 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x84e77621 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x84ecafbd regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x84f53aaa usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x84f5cfe4 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x84ff4bc0 raw_seq_stop +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 0x85200dd9 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x852a9c89 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x85354377 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x8547a4ee adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x85486693 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x856315de pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x856977bf tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x858a2cac acpi_dev_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x858eb587 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x859aba59 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x859aea9a xen_set_domain_pte +EXPORT_SYMBOL_GPL vmlinux 0x85a19717 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x85b43f8a usb_alloc_coherent +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 0x85e65d9a pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x85f561c1 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x861cfbf7 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x862d4ab8 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x86300dce phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x864ed0f9 ref_module +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 0x8671d803 usb_hcd_resume_root_hub +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 0x86879a2e clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x86994d78 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x869e2d21 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86ac8eb3 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x86daf614 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x86e94423 shash_ahash_finup +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 0x870eac10 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x87133660 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x873c3e17 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87548794 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x877e277b platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x87816edb spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x879e5aef ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x87a23ecd ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x87d70270 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87d82747 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x87df3a61 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x87f2c1d3 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x87f7d848 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x87ff9ee2 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x88036cb5 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x882a4a97 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8839e7d3 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x888bb445 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x8893bf34 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88ba9bab __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x88ca0d32 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x8906965d usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x890b870b bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x891e6712 xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89495aba hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0x89a75d4d get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89e48324 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x89f3e040 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x8a1288b4 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x8a12c1c9 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x8a162cab usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8a300819 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x8a4b8066 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x8a514ecf virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0x8a55dca0 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a6706b7 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8a6fd4ab dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x8a70f513 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a7955fc __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ae12dbe blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x8ae9835f acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x8aecdfff pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x8af7a2ae led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x8b0400e4 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x8b044c41 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b07a2fe blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x8b0e9038 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b1fda77 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x8b3048a8 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x8b3b8e34 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x8b3c60c9 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x8b61d65a wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x8b767b83 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b8521a0 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8bb9dfa5 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x8bdafd25 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c02b3e5 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x8c3e4390 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cb20a63 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x8cd1cef9 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x8cd55f0f regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0x8ce8fbc9 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3432bb posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d9fa235 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8da4b7ac crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x8dac55b5 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x8df2745f da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x8e064996 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8e0d6afa usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e328a2b usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x8e506cd4 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x8e542fbf fpu__restore +EXPORT_SYMBOL_GPL vmlinux 0x8e5f59b6 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x8e7f97b6 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x8e8ddc84 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x8e9059bb ping_err +EXPORT_SYMBOL_GPL vmlinux 0x8eb18543 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x8efc6ba5 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f18148f arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x8f30c864 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f3af66d regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f716c60 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x8f73076c dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x8f828e48 napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x8fbddfc1 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x8fdffeff blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x8ffaa1ee ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x90134ea9 xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9019aff4 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x901c9fab crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x902aeec5 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0x904d897f inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x9055f572 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x9056e1bd __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x9058602d ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x906a46d5 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x907f03a0 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x90930434 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x909a2c8f usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90a10069 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x90a400ca tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x90a4b98e hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x90bab407 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x90dc29df aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90f0d36e blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x91067dd5 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x9108a1d8 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x911e964e irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x91390102 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x91638091 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x91870da5 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x9199f041 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x919ec103 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x91b66e45 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x91b774a7 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x91c2e6f0 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x91fab800 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x91fb817e free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x920b97cb exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x926f5244 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x9273028d kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x9290897c ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x92a1e7b9 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x92ac2706 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x92ce2e28 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x92d6f464 put_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92f2b2b9 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9332099e kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x9338b8eb __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x933c3d7c devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x938872d1 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x9396fe6a rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x93a82a66 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x93b8f7ac wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x93cd1fd4 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93e0006d get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x93ebfc37 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x9402bd01 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x9409ee35 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x94238555 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x9438de8b dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x9450550e percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0x945cce4b devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x945d250c skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x9478e588 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x947a1c22 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x9485c11c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x948da051 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94d62bef dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x94dea22e elv_register +EXPORT_SYMBOL_GPL vmlinux 0x94e1900f subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f9b7bb crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x94ff1928 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9509bc49 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x950c78fa trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x95143dbe rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955950d1 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x95602a1c crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95b9e195 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95bfcbfd ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x95dbf07f ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x95ebc442 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x9620f904 vma_kernel_pagesize +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 0x9666fe8b ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x96873e97 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x96af18a3 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x96b16ca4 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x96b4778e regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x96da0b9a crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x96fbcbd3 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x970931f7 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x976ab680 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x979eddf3 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x97dd413d regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97f17472 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x97f51ea6 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x9817b63c attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x984802ad skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x984bec2c __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985badd3 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987be980 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x98910f40 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x98b5353c subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x98c5bd4d nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x98f8edef clkdev_create +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 0x990bdb4d ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x9912df29 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x991a5635 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x99269514 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x992b9d75 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x99343137 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x99564ff3 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9972d454 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x997389bc ata_eh_freeze_port +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 0x9995abaf device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99b5ec05 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99cac210 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x99de6509 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x99e934b6 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x9a0b1356 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a138df4 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x9a1acccb device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x9a411818 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x9a5fab95 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aac3c09 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac44837 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b06ac28 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9b19b6af acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x9b2f33a8 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x9b4732dc ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x9b6a7412 idle_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0x9b79d217 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x9b7afcc2 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x9b8f7172 sdio_readw +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 0x9be6b1c5 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x9c0d7d5e srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x9c10b6d2 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c2de449 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9c347fb3 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9c5a4437 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x9c5d58ba pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x9c7ad154 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x9c8c8b36 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x9c90f5c2 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x9cb2cbc4 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cf2ed48 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x9d013c3a acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x9d03ff84 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d14a5d1 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d4a26e4 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x9d700e97 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9db8c981 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x9dc57381 pci_msi_set_desc +EXPORT_SYMBOL_GPL vmlinux 0x9dd8179e usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x9ddf73e3 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x9de89f09 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x9ded88bc sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e02096a ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9e05499a init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x9e11159a fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x9e154cc3 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x9e1e9210 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x9e3ea49f mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e761fb7 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9e768959 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9e9cebb3 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ec16b7b sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9f0b7d8d aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9f1c9d6a pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x9f26df96 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x9f2a82db pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x9f3da911 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x9f50e790 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x9f6fb649 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x9f786892 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x9f92af83 x86_hyper_kvm +EXPORT_SYMBOL_GPL vmlinux 0x9fc09a0b ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9fc22c24 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9feb5980 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xa014a6ac trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xa030c23b gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xa047b197 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xa04a15f1 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xa04cc9a3 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xa06e4b1a pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xa07be99a platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xa087e028 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xa0b198ff __add_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0baa78d inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xa0c9fe03 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xa0d00d2b __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa0d23b96 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xa0e63969 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xa0f334d1 arch_add_memory +EXPORT_SYMBOL_GPL vmlinux 0xa0f7c438 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0xa12639fa gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xa12fef87 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa14a8a70 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xa1513f70 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xa1517039 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa18728dc ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xa18ac932 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1e46290 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1f213a6 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa1fea8ed device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xa1ff7452 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xa20d7562 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xa220da8f kick_process +EXPORT_SYMBOL_GPL vmlinux 0xa22a91b6 klp_unregister_patch +EXPORT_SYMBOL_GPL vmlinux 0xa2510c3b spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xa25e2143 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa28705b1 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xa28e1706 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xa28ec938 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa2ac3ef2 devres_close_group +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 0xa2c9779f sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xa30d654a gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xa3247a24 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0xa3265de2 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xa329aa52 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xa3461bb1 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa371c708 regmap_field_update_bits +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 0xa3a34195 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bce80c device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xa3bf0b1f gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xa3c2164e vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xa3ce23ac cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3f07cb0 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xa4060083 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xa4204d53 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xa43cce6c max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xa4415fc2 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xa452bd2f generic_fh_to_parent +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 0xa4a9b7fa ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xa4afeb45 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xa4c820ab i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xa4ca7976 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xa4fad381 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xa50de8d7 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xa5225cb0 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xa56455a8 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xa5a23198 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xa5a2c585 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xa5c9fd8c napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xa5e73913 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f31a19 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xa5f92752 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xa60a53ef cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xa6161ad5 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xa616c2b9 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xa6218cc8 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa66438e8 erst_read +EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa672edb5 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xa67d7185 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xa6b139d6 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6c5dfa2 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xa6e07149 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6fbc8fa unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xa7020c3c pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa7053e4d dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa70e86dc devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa7132d89 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xa732b1a5 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa73df06f usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xa74094f4 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa74fea3e crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0xa754dcc0 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xa7728183 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xa79ab114 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xa7a15e15 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xa7acfd0b usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7f3afb2 lp8788_update_bits +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 0xa81b72f7 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xa829e0cf cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xa82e84a6 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xa84556e0 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa85da75f blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xa860760c rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8dcb7e4 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xa8f622ac fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xa903876f pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa9143342 find_iova +EXPORT_SYMBOL_GPL vmlinux 0xa927e178 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93ee1d5 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa9521f4a bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0xa956630a inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xa95d06f4 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xa96ce648 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xa9733e5e usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xa98e4f8e ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xa9a86c33 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa9d84493 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa9df0950 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e3e1b3 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xa9f01986 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaa22d329 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xaa2e0ba9 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xaa2fbb34 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xaa597b25 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xaa7279eb crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xaa73ddf4 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xaa92ba78 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xaa99aab7 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xaa9b3e20 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaac50295 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xaad70f65 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab049174 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xab0610c6 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab2e603d __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xab4fbd31 usb_altnum_to_altsetting +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 0xab754959 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xab8e77da sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xab938d38 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xab9da2ee usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabc6cb93 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xabd69632 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xabef05bc wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xac076927 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xac2de783 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xac72d225 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xac9cab12 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xacd27fdf tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xacd3f307 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xacd51643 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xad0f3678 device_reset +EXPORT_SYMBOL_GPL vmlinux 0xad0f4413 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xad52a247 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0xad5784d5 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xad7c91ac reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat +EXPORT_SYMBOL_GPL vmlinux 0xadb1f2aa power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xadc475c8 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadcb9678 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xadde0262 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xadee1b98 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xadf9113b pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xae12efc2 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xae2bf4b4 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xae332919 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xae3cd1fb blk_queue_flush +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 0xae8628ee handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xaecba6be percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0xaed6054e param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xaf12f3bd usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xaf48a504 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xaf4de86a da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xaf56b22d devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xaf76e42e wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xaf9439db leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xafafbd56 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xafbab188 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xafc9bb01 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xafdcb150 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xb0047be2 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xb0217ebc regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xb02a9e8c pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb06008eb debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xb06bbf49 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb088a6d3 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb0c90497 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb1352331 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb15c95ea dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xb164e3cd pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb17520b3 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb19d3ce6 xfrm_inner_extract_output +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 0xb1bc0c8a devres_alloc_node +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 0xb1c6f265 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xb1cc5c56 split_page +EXPORT_SYMBOL_GPL vmlinux 0xb1d2d189 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xb1dcdb95 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1ebc721 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb20c4f84 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22e25bb __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xb2308e0d ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xb234fac0 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb2496b6b devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb24c8c22 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xb267271f scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb273da77 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xb27b5ec1 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb2b9a858 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2fca663 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xb2ff809d rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xb3041f58 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xb30d30a1 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xb31cf943 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xb31f69a7 shake_page +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb32baccb devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb3576c2d iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xb3641b99 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xb3c021ce blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb3d1303e ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xb437f461 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xb44ac8d7 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xb4541d85 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xb48a1c14 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb4aedd4b xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb4b4b525 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4ceeef2 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xb4d0c009 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xb4d4e1bc tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xb4d58e8d acpi_dev_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4e56377 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4ed4fef wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb52222fb pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb55d4b12 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xb561a62a usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb59b1fe4 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5b914b2 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5f6d311 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xb61ca61b xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb64182ee xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xb64e9b91 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb66ce115 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6b3509b nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xb6bf8bb8 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xb6d1f9c5 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xb6d4f831 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6ebec33 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xb6fde17e regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0xb719bf90 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xb725ef9e rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73b740a trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xb755a633 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xb7562f86 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xb75c1735 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0xb784205c pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xb793d9fd tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xb7b92a55 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7ea11ca pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xb7f41986 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb80526da usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xb80d559c usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xb814a29a crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xb81ee17e usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xb8251425 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xb8356615 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb8422759 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0xb84439ec tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xb8776d63 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8cc7b40 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8cdf031 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xb8ef0978 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb8f11275 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb9270b96 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xb93a5b9d tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb9474abd single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xb9555cf2 device_create +EXPORT_SYMBOL_GPL vmlinux 0xb986ac4e md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xb994ee3d to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xb9968551 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xb99d12ba da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb99ddff3 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xb9a0e9a0 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xb9ac3ef1 iptunnel_metadata_reply +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 0xb9d563f7 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xb9df77f9 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xb9ef38b4 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xb9f6d2b0 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xba0b747d mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba4dbb95 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xba63ef90 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xba6d3842 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xba8135f6 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0xba9329ad __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0xba9e3dcc devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xbaa5668c regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xbaab600c usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xbab71243 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbaba55da nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xbad9bf97 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xbae9bf93 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xbaeb2e13 mmu_notifier_unregister_no_release +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 0xbb26b665 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xbb5683ee crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xbb6ddf74 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbbb0b8d0 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xbbb5c3ef efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbc7d04b thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id +EXPORT_SYMBOL_GPL vmlinux 0xbbdb86d4 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xbbdf6d25 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xbc13db74 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xbc2c4d4c __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbc2dae45 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xbc4351a1 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xbc519813 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xbc605957 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xbc608a81 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc95049a filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb0fe96 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd11f70 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xbcd4bd07 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xbcdab815 extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbd072bac uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xbd301179 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0xbd30bfcc thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbd386ebc nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbd3ac0dd ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd4e9a81 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd617068 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbd746fc3 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xbd853ee5 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xbda727d1 device_remove_property_set +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 0xbdde58c7 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xbe0031d0 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xbe01cb2a br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe235913 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xbe52b7da relay_close +EXPORT_SYMBOL_GPL vmlinux 0xbe5b31da wakeup_source_remove +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 0xbec37ed5 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbefde66f ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf0dc889 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xbf10959a list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xbf13ca0d usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xbf5fc154 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xbf6c3da6 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xbf6cabd7 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xbf70c548 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbf8822a0 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xbf90943a uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xbfa75730 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfd0bbf0 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xbfd10bb7 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xbfd4ca7c devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xbfe4bd1a gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe80de5 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc00fbb89 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xc0139697 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xc03f214b fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc04b21bd acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc05fd97f wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xc060bb32 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xc071d696 pci_pasid_features +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 0xc0ac6804 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc0bc02d1 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc0c87667 sysfs_create_bin_file +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 0xc10a435e pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xc12d7b69 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xc1323520 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc14c2824 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0xc1591757 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xc15c0def usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc16efafa crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc179d1e8 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xc17bb948 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc17c761d transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xc196f604 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0xc1b35467 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xc1e06584 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xc1e0bde8 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc2026170 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xc222ed47 fat_fill_super +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 0xc2715720 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc28bde50 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xc2b043e9 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc2b3a924 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xc2cb385d regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xc2cca3f8 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xc2cd87c1 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xc2cdc69e ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xc2d112b4 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc2ecb734 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xc323009c usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc342cd18 phy_get +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc37297fa usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xc3796f8c sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc395aaf0 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc39b58af device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3bbe11a handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xc3c97a87 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0xc3ded28c gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xc3eb373e __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xc3ec37d6 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xc425e0bb ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc426bded xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42dabde pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xc43cc314 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc447dd93 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xc454806e ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45d7597 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc4722b8e trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0xc47dfb59 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xc4802c8b debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xc487cf76 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4bd5472 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4d760c7 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc5281b4a crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc544aa33 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xc544d574 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0xc54e664a acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xc554b800 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xc5693ce4 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc57e6c35 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xc5d1c988 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xc5d622a7 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5e71301 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xc5ec8653 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xc5ed4420 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xc5edf813 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xc5f0d130 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xc5f9d222 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xc605cccb inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc61e429c print_context_stack +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 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66fbf54 xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc683cd53 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6d74e44 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xc6e02e07 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc7252238 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc74b8833 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc74d2eab __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc74fd522 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xc75f5007 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xc77d658b crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a63763 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc7b456c5 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xc7bc577e devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xc7c023f5 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc8059807 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xc810c662 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xc81b765d put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xc82afd2b regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8306ab6 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xc83ed204 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc84f7d38 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xc8730545 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xc873f9d0 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8e29649 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xc90ec73a efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc915934d dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xc91e7897 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xc93610a5 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xc93c8627 sock_gen_put +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 0xc97c5eed set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc985e814 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xc98ef5c4 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xc9903e00 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xc9a41f16 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xc9a90d9f ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xc9c108b0 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f04592 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xc9f4da2d devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xca169c22 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xca17c05c usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xca29eed2 use_mm +EXPORT_SYMBOL_GPL vmlinux 0xca4a7f63 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xca7903a1 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca7d9f59 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xca7ff03f mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xca8cf13c ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0xca93d8f7 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcad0a9a3 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xcad16298 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xcad5b35a device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xcb10fe00 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xcb11000c sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb17d4d7 xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0xcb2fdebe tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xcb9a53a1 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xcbb24a77 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xcbbeced6 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xcbcb7621 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xcbe4b28f pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbedba44 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbfaecc7 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xcc103a2a rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xcc1e00fa rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc29ab93 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xcc571721 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xcc684bab regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xccc24256 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xccc57127 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd35328 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xccefb095 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xcd05d957 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xcd0864d0 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xcd351179 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xcd390085 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update +EXPORT_SYMBOL_GPL vmlinux 0xcd725a56 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xcd79f60a pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xcd7c756b ata_sff_tf_load +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 0xcdc4db8a rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdcd65f6 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0xcdf399f7 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xcdf42856 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xce0f8b6e thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xce1ef84e sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xce31f9f8 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xce63d18c tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce86ebd0 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb78dbc iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0xceb9d204 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xcecdbc3e da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xced6bee8 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode +EXPORT_SYMBOL_GPL vmlinux 0xcf0fe1ea ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xcf3b9826 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcf3c5460 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xcf484c47 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf973cf5 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xcfa0f1d3 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xd02056b9 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0xd0241e68 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xd02d0832 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd060cdf3 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd068964a ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xd086e2c8 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xd0938708 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0xd0b53991 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0dececd get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd0e2189f xen_remap_domain_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xd0f40253 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd1238216 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xd129a1f4 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xd14087e9 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0xd1553b3b srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xd160a17c sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd17dc357 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xd182370f xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xd1869c7b usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xd18e166f set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xd19b9d4a unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xd19eb275 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xd1aacc9a dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xd1acbd97 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd2016c46 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xd20ae582 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd214dce4 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xd2159de5 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd26f529b ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27961c3 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xd28285ef power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd29c206d task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xd2a79dc9 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e88de5 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd2f4e12b adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd2feee79 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xd3033369 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xd306d220 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd31889f1 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xd3355270 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xd33d9551 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xd35da898 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xd36b8b74 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xd38011a6 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd38f7e8b regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3bd77ca bus_register +EXPORT_SYMBOL_GPL vmlinux 0xd3ee5ae5 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd40f6b8e pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xd4172983 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd426f19f blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xd434e265 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xd4421284 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd4523516 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xd457fca5 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xd45d20cf ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xd45ea32f hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xd46260fc scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xd46bf35c regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xd4b1eafa pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xd4b87c43 acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c42eaa regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xd4c46d0b fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xd4e443a9 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xd4f287e6 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd5030f07 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xd5351a8e crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd5513067 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd5a0c918 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd5ab676b tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5c3d13e crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xd5ea0373 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xd5ec1ce4 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xd5eebcbe regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd5ef8296 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd60127be clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xd604d20e xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd6183932 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xd6313800 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xd6584c5f regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd69cbb38 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xd6b14ebc pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd6c87e79 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xd6ca975a blk_queue_bypass_start +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 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd7107102 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xd71b0246 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xd71b619b usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xd7225ebe regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xd72fd006 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd744eb78 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xd74a41bd dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xd74b92b8 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xd75ed124 ata_sff_error_handler +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 0xd77ee6e9 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xd788b3c4 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xd7aef2a5 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7d9aba2 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xd7e64f1d ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xd8135b30 get_device +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd822217a devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xd8240c38 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xd83e9e00 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xd851eb68 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87cdc0d pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88d1dd8 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xd89451ab fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xd8b58a3f rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd923afae list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xd928514a devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xd9335a29 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xd935292f apic +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd946ca9b led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xd947067a gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xd94fa823 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xd96667ee blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xd966b55e sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96c0ae0 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin +EXPORT_SYMBOL_GPL vmlinux 0xd9d892a2 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xd9d9bf71 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9fbb098 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xd9fc069f queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xda0bd7f8 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xda389561 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0xda3d5681 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xda5fbc6f rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xda6999d8 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xda762408 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xda7c98fd ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xda807da6 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xda8e95ab preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa5cd9e pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xdab434c3 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xdad118c0 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb31f1dd crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xdb329f5a mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xdb3613e2 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb4c09f9 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xdb587285 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +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 0xdb981f6c pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xdbad88cf put_device +EXPORT_SYMBOL_GPL vmlinux 0xdbad8f4b pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xdbd158f6 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xdbd30de8 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc569ffd crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdc5aec96 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xdc5ea44b blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc93c975 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9c4336 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca053d8 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xdca4d695 input_class +EXPORT_SYMBOL_GPL vmlinux 0xdcba9815 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd1a2849 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd311314 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd4a78ff regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd619da9 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xdd86f758 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xdd92ef94 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xdd9dce00 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xddbb4f9a shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddbf0467 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xddc76830 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xddc9571f platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xddd5475b tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xdde076e4 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xddfb4bec da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xde2050b6 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xde29cbce shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xde2d21a6 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xde2ea055 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xde3b4638 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xde405a38 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xde45cbb3 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde4a2900 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xde4c28fc extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xde517906 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xde62ad35 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xde83af0d validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xde954b3f efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xde9be4d6 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdea5d5b2 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xdeae10a6 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdefab7af ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xdf0376c5 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf12f98b list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +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 0xdf84418f powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xdf8aeefa regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xdfaaceac ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xdfc01229 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xdfef5dce devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe00a0e1d ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0326d54 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xe033b7f0 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe0546e8d adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xe06e4074 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe08566bf wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c74609 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0c811b0 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xe0f96c04 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xe0ff98c0 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe112dc37 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xe1374856 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xe15d3c29 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xe1600389 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xe16b0d30 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe182cd86 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xe196d2fa rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xe1979a29 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xe1acbd8d dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xe1adee24 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1d0c261 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xe1d72105 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xe1da572c simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xe1f1f309 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0xe2262c26 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xe23e160c extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xe2480363 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe24a6940 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xe270370b ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xe27c847b pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xe2852fd3 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe29349dc copy_reserved_iova +EXPORT_SYMBOL_GPL vmlinux 0xe2951523 reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2e8dc2e blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xe2fe5e7d devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe317dc9b debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xe3258424 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe346477e device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xe37c4e2d inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe39c5553 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xe3ac85db tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3bda663 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe3ddae8f dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xe3f6982a usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0xe418fde4 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe41ef6ac power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xe4249996 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4433fde nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xe446043c inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe474465a class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xe47e0490 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4b70302 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4b98653 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4c7399d regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0xe4c79c58 intel_svm_bind_mm +EXPORT_SYMBOL_GPL vmlinux 0xe4d8a22d transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0xe4ebd2d0 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe504bcde blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xe505b48a device_add +EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xe515704a gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xe515addf regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xe5390d7b usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0xe550f9de i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xe5708a5e tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xe5783ba2 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xe57a623c ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xe57b423d nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xe584994c ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe594a485 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xe5a052e0 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0xe5bcf189 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xe5fff996 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xe619e72b regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xe6275857 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe68f169c rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xe6917274 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xe6925199 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xe6947070 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6ce7875 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xe6e0962a ata_port_freeze +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 0xe6f9f20f wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xe710bc0f ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7266466 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xe72916da debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xe738d9d3 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe74bbba0 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe753b15d pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xe754a6df debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76961b5 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0xe77baff4 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe7a0e048 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xe7acb3d1 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe7ad8d59 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xe7b47614 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xe7d095c4 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xe7d53529 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xe7e929f2 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xe7fbea34 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81a352d rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xe84e74aa devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe87e2d0c xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xe89b2d33 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe8ac01dc get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xe8b0cf6d clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xe8bd1033 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xe8d6afcd crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xe8fbf80b rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe952fed7 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xe95a7577 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0xe981aaca add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xe9952c40 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xe9981257 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0xe9a6928e ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe9b09a6f crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xe9b134e2 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9e052d3 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xe9e41013 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xe9f406a9 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xe9f586aa sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xe9f905f4 xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0xea122db1 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea18cc3e device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xea2e2609 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xea2e7246 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xea326a5a rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xea3513bc __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea46c8ed acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea78c835 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xea8644f1 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xea8bdd47 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea9dde2e transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xeacaad0d device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xeadaed9c nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xeae67237 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xeb2eb288 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xeb34c10c iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xeb4fbd66 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xeb5aa01e platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xeb6df59d irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xeb796e5c gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xeb827045 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xeb8274d2 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeba9045f sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xebb54f64 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xebc437ad do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xebc92465 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xebd1dff4 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebfbfaa8 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xebfda0c2 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xec09bdfc wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec2189dd gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec2b44d3 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xec36cee7 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xec46de93 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec754484 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xec9d9f43 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0xecad3b34 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0xeccf9069 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xecd04e04 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xecd1e51f __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xece03bef dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xeced40c5 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xed06e45b __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xed1534bd dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xed2cc8dd pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xed4de8b9 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xed872ce5 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xed9304f2 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedc3f998 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xedd46377 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xedd4c1ae __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xedeb89ad ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xedfeae34 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xedff87c7 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xee0e1bd0 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee1e8b28 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xee28fa0c __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0xee3d4360 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee794a17 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xee7e57b5 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xee965c51 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xee983b9d efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xee989083 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xeebf2f0c iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeee29446 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef235000 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xef464c3e regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xef4ec340 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xef59e034 __irq_set_handler +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 0xefaea46e of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xefbf330b inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xefd04a97 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xefe10be5 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xf01110c4 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xf0208179 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf063c5aa cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xf06423f0 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf076e498 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xf0bf9957 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xf0cd60e5 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf0df381a usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xf0f0392c rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf10c51c4 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xf133b2d3 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xf145ffbc tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf154b191 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xf1821c59 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf19c3bef crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xf1ab76d1 posix_acl_default_xattr_handler +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 0xf1dc7963 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xf1e61821 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xf1f6c125 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xf207bba6 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xf210649f seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf222aa67 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0xf2600de7 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xf27060b7 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf280d86a ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xf28ade97 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2ae2eea xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xf2c6bb3b shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xf2d6c1f1 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xf2f10c0e regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xf2f17a94 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf2fe3566 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf3101019 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xf3112900 scsi_bus_type +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 0xf33d1db9 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xf37a06a0 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf389ffdd spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xf39eee0a hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xf3aa1a3e gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b4bcaa dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3c11833 ata_bmdma_irq_clear +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 0xf4067658 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf4732a0f debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4a395ec usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xf4d653b3 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xf4e1b89d locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf50c067a subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf5197edb usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf52a8ffa call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xf5343ea6 power_supply_unregister +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 0xf5576e32 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xf55c8df8 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xf572df21 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xf588ecd8 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf5953e0c __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xf596dc24 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xf5a60792 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5afd0ab fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0xf5b52e51 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xf5b63ee6 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xf5c74df3 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xf5e9b06d debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xf5f81b1b user_describe +EXPORT_SYMBOL_GPL vmlinux 0xf5f963f1 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0xf5feb113 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xf60e6aa4 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xf60e788b tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xf61139fe vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xf6558da6 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf68981a3 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xf6a9556a btree_grim_visitor +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 0xf6ecc1d7 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf7068c11 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0xf709cfa5 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0xf72dffef crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xf739d594 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xf74ee56c blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf74f98e2 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0xf757c42c gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xf76d8a1f dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf76f4062 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xf78c3315 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xf79e7997 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7b0feb7 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7c4b72e dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xf7c55653 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xf7c8858d efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xf7d58ea3 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf8044c2d rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf82df7b3 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf82ecbe9 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8374a0a sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xf83941b6 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xf844d96c sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xf85a1979 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8c16a05 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xf8c1a27f udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8f1ffc4 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f58f04 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xf8f9a416 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf91c828e bus_create_file +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 0xf9673724 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0xf96b2d55 scsi_dh_attached_handler_name +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 0xf9b9843f invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xf9bb914e spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xf9ca260b __pci_reset_function_locked +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 0xfa081dc7 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xfa1abbab bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xfa1d9570 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa2863dd debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xfa29967a serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa3a0f50 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xfa3ac11e regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfa407c51 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xfa5834c4 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xfa5eb1d6 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xfa69b195 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xfa80f159 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xfa83f86c input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfa9730ed usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xfacf9acf regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfb118672 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xfb156ab4 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xfb20d2c3 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xfb2e6944 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb3a63d7 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xfb5f97f6 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xfb60457f crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0xfb6d11f1 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb80a76f ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc1d13c led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xfbdc3df3 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xfbddc43d fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xfbed6c25 spi_alloc_master +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 0xfc2aecb9 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc42a03c crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xfc4c6263 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0xfc7433bb dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfcad9783 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xfd14141a of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xfd18399b irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xfd48cb01 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd64073f blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xfd656f8c sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd787c40 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xfd78bb4d blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd7ffd9c srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xfd8dc188 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xfdae04c0 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xfdc3ac5e spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xfddff07e xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0xfdeff926 component_add +EXPORT_SYMBOL_GPL vmlinux 0xfe009b5e rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xfe3670b2 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xfe3da2f3 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xfe4e18ba fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xfe555014 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe6ac391 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xfe6ec344 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe95b3d9 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfea7df4a acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0xfea92f29 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xfebafc17 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfedcef8f inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfeeb8d30 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xfef30d2e device_property_match_string +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 0xff2ce747 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff6628a7 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xff6fb691 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xff782f25 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xff96cb44 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xffa51274 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffe1510f usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xfffcca34 pcie_bus_configure_settings only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/amd64/lowlatency.compiler +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/amd64/lowlatency.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/amd64/lowlatency.modules +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/amd64/lowlatency.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 +bnxt_en_bpo +bonding +bpa10x +bpck +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c2port-duramar2150 +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia-aesni-avx-x86_64 +camellia-aesni-avx2 +camellia-x86_64 +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5-avx-x86_64 +cast5_generic +cast6-avx-x86_64 +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +ccp +ccp-crypto +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfag12864b +cfag12864bfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20-x86_64 +chacha20_generic +chacha20poly1305 +chaoskey +chipreg +chnl_net +chromeos_laptop +chromeos_pstore +ci_hdrc +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +ck804xrom +classmate-laptop +clip +clk-cdce706 +clk-palmas +clk-pwm +clk-s2mps11 +clk-si5351 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +com20020 +com20020-pci +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_pcmcia +comedi_test +comedi_usb +comm +compal-laptop +configfs +contec_pci_dio +cordic +core +coretemp +cosm_bus +cosm_client +cp210x +cpcihp_generic +cpcihp_zt5550 +cpia2 +cpsw_ale +cpu-notifier-error-inject +cpu5wdt +cpuid +cr_bllcd +cramfs +crc-ccitt +crc-itu-t +crc32 +crc32-pclmul +crc7 +crc8 +crct10dif-pclmul +cros_ec +cros_ec_devs +cros_ec_i2c +cros_ec_keyb +cros_ec_lpc +cros_ec_spi +crvml +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +csiostor +ct82c710 +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_cs +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dca +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +dcdbas +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +dell-laptop +dell-led +dell-rbtn +dell-smm-hwmon +dell-smo8800 +dell-wmi +dell-wmi-aio +dell_rbu +denali +denali_dt +denali_pci +des3_ede-x86_64 +des_generic +designware_i2s +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9601 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dp83848 +dp83867 +dpt_i2o +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtl1_cs +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc3 +dwc3-pci +dwmac-generic +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +e752x_edac +earth-pt1 +earth-pt3 +eata +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +ec_bhf +ec_sys +echainiv +echo +edac_core +edac_mce_amd +edt-ft5x06 +eeepc-laptop +eeepc-wmi +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efi-pstore +efi_test +efs +ehset +einj +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +ene_ir +eni +enic +epat +epia +epic100 +eql +esas2r +esb2rom +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +eurotechwdt +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81232 +fakelb +fam15h_power +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +fintek-cir +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fjes +fl512 +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +fnic +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fschmd +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +fujitsu-laptop +fujitsu-tablet +fujitsu_ts +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcm +gdmtty +gdmulte +gdmwm +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +genwqe_card +gf128mul +gf2k +gfs2 +ghash-clmulni-intel +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +glue_helper +gluebi +gma500_gfx +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-104-idio-16 +gpio-addr-flash +gpio-adp5520 +gpio-adp5588 +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-f7188x +gpio-fan +gpio-generic +gpio-ich +gpio-ir-recv +gpio-it87 +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-rdc321x +gpio-regulator +gpio-sch +gpio-sch311x +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gr_udc +grace +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdaps +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hecubafb +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfi1 +hfs +hfsplus +hgafb +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-hyperv +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hio +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp-wireless +hp-wmi +hp100 +hp_accel +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hv_balloon +hv_netvsc +hv_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-4.4.0.orig/debian.master/abi/4.4.0-97.120/arm64/generic +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/arm64/generic @@ -0,0 +1,17647 @@ +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 0x6ba9c4a2 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x524bfe10 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0x7a7c55a9 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 0xbc28a0e5 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0ab9acd1 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2b2a927c 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 0x8b5d59ee 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 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 0xea26c3a8 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/ipmi/ipmi_msghandler 0xfdbe9350 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x3955af04 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x89aa35c7 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xadcab218 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xbf713abb st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x8b4b685b xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x8fb6bb99 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x950761c7 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x36ea5b25 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x65a3b287 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x80d0f9aa dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x83f4578b dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x94eb8076 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xd64c27e0 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/pl330 0x2d45e0a9 pl330_filter +EXPORT_SYMBOL drivers/edac/edac_core 0xef83247f edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0daa61fc fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x11bb116e fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x189577a8 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2a4822ae fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3ab8358c fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3ea55760 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5db9fa4f fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65513a24 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x688892ee fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6a1fb358 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x78bd6e90 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x84463b91 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x87d06026 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8b0638b3 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x98048c03 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa7d54467 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xab69a9c6 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb6f2ffe3 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc0c863dc fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc0d5ccf0 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcfe52d94 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe10766c4 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe520f565 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe8aa3e09 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf12d89cb fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfcaee5cf fw_iso_context_destroy +EXPORT_SYMBOL drivers/fmc/fmc 0x01bdb29f fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x092141d4 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x0b4fd95c fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x100893d5 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x1e44e53f fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x6069b76e fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x6981573e fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0x7595984a fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0xc1c943e5 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xd20cc65b fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xe4887507 fmc_device_unregister_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04e2e3b8 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x054e2cb7 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07aba266 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07d07a2a drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x088e51a8 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x095b02b9 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aa2c88f drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c10ec04 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c8ea3e4 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fb4ab2e drm_crtc_vblank_reset +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 0x11a85da3 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11cef0de drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x123a45f0 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x144a644f drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15b6e6f0 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x165d3218 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c24c9e drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17a7b7d1 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18236874 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a0c9009 drm_bridge_pre_enable +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 0x1b6bd8fc drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b78b85d drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c1e3643 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d6e2378 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d85454d drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d93d57a drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1edd90fb drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f57f1a9 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x207068bb drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21587f35 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x217767ec drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2255f1bf drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x231344c7 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f2ca96 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24c1df0e drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2613e559 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27c04aea drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28751d36 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 0x2a68f25c drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a8770d8 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b733042 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2deda8bd drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e28a7c5 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eb788c0 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f03a7a2 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3065044f drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31d6614c drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32941971 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32ef26c2 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x330be942 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x348d5000 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35bd196c drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36b69396 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37162e8f drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37777571 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3833ddd1 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x385f323e drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x399bb7a1 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a1fa6dd drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a708831 drm_put_dev +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 0x3e2c602e drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e5d0afd drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f024c85 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41223385 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x414add40 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42031552 drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x436a8640 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43775ead drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x448b790d drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44c2b26c drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46360bd9 drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x465264fd drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46a4fdc7 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x489b3cc2 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48cb7f8f drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a3bb864 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a620c00 drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c904c67 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cd28c14 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d264d0d drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d7a1deb drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e068c99 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0f5796 drm_atomic_check_only +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 0x508da01a drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x519cf49d drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521e6b76 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52a456d8 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52c07829 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54c7a256 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55006083 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56a07efb drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56cb759e drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5881b127 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59426e65 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a5b0c3b drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aad8b7f drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d3b4c88 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e28005c drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e4dbc5b drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x601b3b55 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x608b2eda drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62a6c33f drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66f2c966 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x679ace20 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a84dbd6 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c1846f2 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c962351 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ca9c805 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ccc3118 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eb81353 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7035debd drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x709a7164 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70b2c71d drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70b6e3dd drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72144fac drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7285e40e drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x741a29e1 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x746571f2 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7593efc4 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75a6f861 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77018996 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77d030dc drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b617a5f drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7be834fa drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cf2b035 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d11b640 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e14a3a7 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e4b426f drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e535db7 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e920ea9 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f8a56d7 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8140ed9d drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x819168de drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81e0386f drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82bbbfc8 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83c26b60 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85192ad2 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8545b24b drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85a51023 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8879ab03 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89061fb3 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bee9514 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e859343 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8efefb56 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9067eacb drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90ea8c18 drm_mode_config_reset +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 0x93069a43 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x947ab8e0 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95aa8183 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9651b4b1 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97efdcdb drm_crtc_cleanup +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 0x9a9568d9 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8c8d33 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c42605d drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c452020 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c926acd drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c9a64ea drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cac8a32 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d5dbe60 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eef6d2e drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f4e62af drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fa1352a drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa007d4d9 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa27a1071 drm_mode_create_tv_properties +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 0xa4cd0aa6 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4ef2a36 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa517bfdf drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa4d6229 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaccec225 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacfd84a8 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb01e2f3d drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0be7054 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1deaab2 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26835ee drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2da2e10 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb524e849 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5c29825 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb68fadf2 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7ad6ef6 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb81d4244 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8860e4f drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba8f8a59 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbac4eb44 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb23c1e7 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc0558a1 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcfd46ff drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdd39f41 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe69c777 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbee1479e drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf22185f drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf3d4239 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf685380 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc18e557e drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1fbccda drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2221f58 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3127cdc drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3acaa5b drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc44710e6 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc72329e8 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7b56691 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc83acc9a drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc88e6ba0 drm_atomic_set_fb_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 0xcb19bdb4 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbc86d8e drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbff7002 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc139b0f drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc3a5449 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc7bfbb9 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc201fe drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf18fdc2 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf1cb45f drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf20d3ac drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1456a73 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd17cef4e drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1fdaaa6 drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2ea3841 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2f0613f drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3d8ab86 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd46f7030 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd488c119 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4d960b1 drm_framebuffer_unregister_private +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 0xd765ccc4 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd78b8846 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7d46508 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8389aad drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd97423b6 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9c1ebf3 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda083ac5 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdac541cf drm_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 0xde0a4304 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0d2c91e drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0efccc0 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1711188 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe228f1b1 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2b926a5 drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4374179 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4d98238 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5dc47ec drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6418805 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe656052e drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6ed0fcf drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe83603fb drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9406a96 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeada7175 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb3cda20 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb970f0a drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec54752d drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee8dbf96 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef0c7353 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef873428 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0e3142c of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3194a9f drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3cc7b3b drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf405f9ac drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf44fc250 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf502032c drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf59693a7 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf626823b drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf660e59d drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6ab3bed drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6da64b5 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf744113a drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf79a3205 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf833ab71 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8fd5549 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9798d21 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa19acfc drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa73fa80 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfab37738 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc00f12a drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcc5ad0e drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcd5f5cc drm_ioctl_permit +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 0xfd206f7a drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdcf1a17 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb596b1 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0223887e drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02336169 drm_helper_move_panel_connectors_to_head +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 0x0fca78c4 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1164b2ac drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13b8987d drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13e03801 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 0x1633d0ef drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x187d14ef drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18f8c929 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e0080ee drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f4daf35 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f56d2ed __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x208bfd80 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x220a3190 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2234f15d drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23c0822b drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x250dbda7 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29856bf8 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29b8ecba drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29e824c0 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a623780 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2eeb1372 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3025332d drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31ec8cd5 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33a6153d drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33dc2661 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34e337cd drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3585a09b drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x363bb3ea drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b2bd69c drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d273eee drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fb3af4d drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fec84ab drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x401cffcf drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40912179 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40deb222 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x428d9c2e __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4309a85b drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x435013e8 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43acd6b8 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43f86549 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44a9bd39 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45ecad24 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cc2d7d9 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50c6fb1d drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55604a76 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5666afcc drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56eab9b2 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59c4cf34 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59ec9c6e drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5da4a810 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x627ba81e drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62aab2a4 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6345680a drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64099da0 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6629b8c9 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x682e8fc0 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68f345bd drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ac4b51c drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6acac824 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b3c1db1 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70f74038 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x747efbfe drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x758127d9 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x759dc946 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77b3440d drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b1de227 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b6715a5 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bf601d6 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7de138a5 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80d7d7b0 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82988c9d drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8371dabc drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8716983b drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a1ba168 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9043b0dc drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93bf78ab drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93e57498 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95422fa4 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98d14e03 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa269abc9 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4c4efd4 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5ee6546 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa83488e7 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa92d92d7 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa5c8485 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaf73328 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabe236f4 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf8455b5 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb056c050 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb41ba6c4 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb480fc3b __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4866b1d drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4f4b9cf drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6825f64 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7a0ed7f drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb953e1da drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbce11864 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd3e0e22 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd8dd5e9 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdd7ff93 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf566e63 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc04e3e2f drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc09d19a4 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0cd2e4e drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2376499 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2a666b drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdb72a92 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1c55e34 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2777735 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd75d4c46 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd829f169 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd86c9479 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9b6c571 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9c49992 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaf51a18 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb93edc8 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd165f8a drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde0b12d4 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde9d8618 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe092354b drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0cef32e drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1456bb0 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe14d0af7 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe55b8755 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe632ef95 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe657d66c drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7dd8d5f drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8d79a48 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecaefd13 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee51219e drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2c73819 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2f2a4f9 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3552d43 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf41ac117 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7a64c10 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf901a9c5 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfab0e9fd drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb2916ab drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbd3f728 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfca0697f __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff65d574 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0163bff7 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x065784e2 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x11d04f20 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20f729a1 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20fdaacf ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x23549bba ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24f8733c ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x263756e0 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28d0f7c2 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x295af6a1 ttm_pool_populate +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 0x2d24fc85 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e7766db ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3d01e6c6 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5570c7f7 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56559668 ttm_bo_mem_put +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 0x61d27eed ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x631dd661 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63510934 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x655bf205 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6bc60020 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fa23711 ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x702a210d ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73e33f07 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75bd4e91 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7677081c ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7715dacc ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7efc1743 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f292d82 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x82bb0933 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x842f8719 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85c8a9eb ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bdbc82b ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c10c005 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x931af2d4 ttm_mem_global_free +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 0x978acb88 ttm_bo_acc_size +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 0xa0e1f89b ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae87b61d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe2808c1 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbee12576 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbfedbc20 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc1ff84ad ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xceeb7e13 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd41aa691 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd48c4202 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd712149e ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda552048 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf061249 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe3f3b727 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe6ec87f5 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeba30848 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xed644166 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xedd055c9 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeeb538a3 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefb01f6e ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0cd8eab ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf27b4eed ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3eb4aed ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf76d53f2 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfc79aa29 ttm_bo_swapout_all +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 0x870d2233 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 0x0d2b1ef1 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x3d7567fa i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x820b37e8 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xa70e848c i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xa7dbcff2 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x24c97d33 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0b8d268f mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x18184baa mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x24cba92f mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4755da1a mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x483da012 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4af7b2fd mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x800bd1c0 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x86c32d89 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x900e0a16 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa41b66ff mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa9f8f6fc mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb7e0642e mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xccb65ea8 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd250b060 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xed33826c mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf0c61f09 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x8c026f0b st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xbe1c70d5 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x077a258f iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x4b2f69dd iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x0f56ecb6 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x1ed85c39 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xbdb954ef devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf4c05577 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x15da1e3e hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8b2ff2d3 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x9c967744 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xadd6a8ad 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 0xcd6ea7c6 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xd0e57bbf hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x46d77ec9 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x5da3ad88 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x8270bf3a hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd617adcc hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x04e70a81 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0708af94 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x07094650 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2692713e ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x284c38b9 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x520dcd15 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 0xb257119a ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc19c43eb 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 0xdb98109b ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x303cdaf3 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x79c0c716 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x8b676f64 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xa32aa917 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xcd5905a1 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x681efc0b ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xbe7deec1 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xc269717d 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 0x1e297442 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2d2ed1bf st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3ca69162 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5b9403cf st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5e737501 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x616c0e92 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x66b78a75 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x790d279f st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x90c0e0ed st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x942685f1 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x99f7d4c1 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9a1437a8 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa305db83 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa5dbfc7b st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc144522a st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd3821e85 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe2a75805 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x19ba81e3 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x797732f7 st_sensors_match_acpi_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xd2a17d82 st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x5db704c5 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x548562ea st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xc926af92 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x8608bedd hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x1d71d5d9 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xa9ba5e01 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/industrialio 0x00cadefa iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x0c85f347 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x0d7ed802 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x17d62c00 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x3db06a5a iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x77ab58d7 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x7dee3da0 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x8e9a7c0a iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x96900df2 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xb944b133 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xbcb9e8b2 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xc3cfc2df iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xc84f68c5 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe00b311c iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xe27a1239 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xe9482520 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xf7267fea iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x538b4188 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xc7f6e9a6 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xad302194 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xc5babe0e st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x5f730ed3 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x73f2d7a5 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xb5a38cfe 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 0x06dab5db rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x4c33e170 rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x5eefe231 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xbf94b4e5 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xdb37a373 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xfe6e58a5 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x00fd8134 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x207056a2 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x21faf4ce cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2cb4d23d ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x33a849a4 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x33c8d838 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3952d145 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x40aae046 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4a092d77 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5db2da7d ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6cf829c9 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7ef4bd36 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x85b4fe81 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x927cb312 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc0b8d47d ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd8be7461 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfd3d39e0 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfdfbb7b3 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a3fdf2e ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12cd19bb ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1465c15a ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16c9fb28 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x173fe63b ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22d25342 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26c45047 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x290943ec ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2edbfa54 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33982266 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33e79a95 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3420c932 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37fb8529 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3912f4b0 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a85200a ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44efd76c ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x480af8d4 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4873dc3e ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b3cd910 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4eb607fc ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fdb34b8 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5322f055 ib_create_cq +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 0x5a3b56ea ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c5a3652 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e2a4f0d ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f5fc226 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62df7fd9 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6526320a ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68b3e682 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a00cded ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e4c5cf3 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ee72743 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x722a9d80 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75232f5b ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76c690fe ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7816fa45 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b29ff0b ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c015fd3 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c3d8bdd ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d1da82d ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ea3e459 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f67f36d ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83d96333 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85d6eb75 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87036d4d ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x888ad4a6 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8add72e8 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95396fb0 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e2f7b04 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa08e554f ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa365b4d6 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad2edff4 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafa4e254 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0af051a ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb18033ce ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb307d7d7 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3256c92 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3fcd077 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb47c81aa ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4abcc6e 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 0xbf4536ae ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1a5daa0 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc25f0845 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67e95d9 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc0080bc ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc7b9bf0 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce3958b0 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd971f35f ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda22d962 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcfb495b ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf861a24 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1b86690 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe648c56a ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe668be36 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec7e14a4 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed626a38 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee33ed98 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef51e19a ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf01f8664 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1e386da ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf73b9a80 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc0b7d62 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe5172a3 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1d6dfd49 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x3fd12882 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4b438c10 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x608b7fc6 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 0x944f35c5 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa043c0a5 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xbcec56e6 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc075c414 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc3ea1c78 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xdc0445b1 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf07a2843 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf39cf469 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf4711b4a ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x278e7430 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x3e31c677 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6d269ce1 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6f7e97ab ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x82c824dc ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8a29593f ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8ed9af46 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa09bb18c ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc11650f7 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe6aa6794 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xfa31ad23 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x795bf44e ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x81b5da4b 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 0x013a940a iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ec531c8 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x15239d38 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1ce662e1 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2318b6c7 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2d6a2219 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5dda9aaf 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 0x6eaf783a iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x73e44a0d iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x810232e8 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x81ad5389 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 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd8285ba1 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xec1ff7f3 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xec77869c iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfc52a36d iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x08355ef6 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x11289e07 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1cab84a0 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x21eedc75 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4162fe13 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x46b752c2 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x47871b40 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4c657fa1 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x53511c70 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x58889c14 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x84b532d6 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb0611cd8 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcb64657a rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcd225980 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcf80b859 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd1953f73 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdcc708ba rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdf3a1de6 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe2647ace rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe4f1200c rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeedcb581 rdma_join_multicast +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0e339153 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x227bdc5f gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2af750d1 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3e7fafd4 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x47d1004a gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x55cba7f4 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x675a475a __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7cea87c6 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa86b3d78 gameport_unregister_port +EXPORT_SYMBOL drivers/input/input-polldev 0x1694a21b input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x4fc537e0 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x528263dc input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x86a11c29 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xc31b6601 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xb64d68c4 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x14d34bc5 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x58375055 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xde0fe46e ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x36b5a7de 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 0x2a01eb47 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2cf70de3 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4b51eaca sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x5612e20d sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x962322ea sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb36a65c6 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x82516e69 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xc09b792e 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 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 0x3b0aa181 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x41883059 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4bd36e82 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x59e338b3 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x69118c3a capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x69254594 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7306d318 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 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb44fb98a capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbf2efb24 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 0xea7bc26d attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1389f4d9 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x15d4d9ad b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x249b1162 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x36aa6d1a b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x51255dab b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x53b709a4 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x642ad6c7 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa44ebbb6 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa4f38bbe b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa75a3611 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbc556bc6 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xcfa404d8 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd1060cc5 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd3d83d1c b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd80e77ce b1_send_message +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 0x057420ce b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x729eb16e b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x75e786d4 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x82f580ed b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9dd283a6 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xcbb52346 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xda982150 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xdde56654 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe2c0acc8 b1dma_load_firmware +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 0x4e60291f mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xac39b681 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xbf443636 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xccf718ec mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x049696ba mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x785ee66b mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x12dd89a7 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 0x31e60bc8 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x5ad66e3d isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xaee0c5a8 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xbad7118e isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xeec4fa91 isac_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x6bbd3174 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x81d6ecbe register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x93c5d99e 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 0x0b4db285 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0c07a8d2 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x107105e6 mISDN_initbchannel +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 0x32c2bb38 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x38d684bf mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x390b4504 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5676cfa3 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x572219f8 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x765c09ed recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7d7129c8 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7e3b1132 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa69d198c mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xab79d583 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xab9b9d75 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc5d4c7e7 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd0e8afc6 dchannel_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 0xd861eeb0 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xea36daa2 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf110a883 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf3e0d83a create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf89923aa recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfb0bce53 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfde7d1c6 mISDN_clear_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 0x0c161f5b bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x0c5e88ae closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x11f9991b bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1415ca79 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0x41d0af72 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 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 0xec6f33d0 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xef8191f1 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 0xb7a7b536 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xcc177a63 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xedcdedf5 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xf0b2a8ff dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x012287d9 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5c719432 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5db6bc57 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5e0407fe dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x99065e63 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf677c654 dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0xc5efca84 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x05921103 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1600cd89 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1e57bbc6 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4096a6d7 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4ae67dac flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8133d8b9 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8848db9b flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x898f4759 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8c2eef48 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x931e3af2 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcda34b24 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdbad4702 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe33a94f2 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 0x90614bb1 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xbe21d500 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 0xd9cd3b66 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xfa26a1c9 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xb59a07f8 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x9b258fe7 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xb33427d7 tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x135dcff7 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1f5fc7dc dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x22ceb7f6 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x292c60f3 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2975b9bd dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x40a3bc13 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x471c6726 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4aad3081 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x56657f79 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5ab4496e dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x616aee31 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x64573f42 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6717bc63 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6da8c88f dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7092ba42 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x720f8abd dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x735da490 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x77159790 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7caa224e dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7d2d6d8f dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85c20f8c dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x93df59b2 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9510a851 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9e3a17c1 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa10e976c dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa71113bd dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa98c1853 dvb_dmx_swfilter_raw +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 0xb6de426d dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb820ee1a dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbe7e217f dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc1a2918a dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3c77f8d dvb_ringbuffer_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 0xf38ecb95 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf70f02a9 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 0xfb34b691 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xdb50a0e8 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x69881d93 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x7a0bb316 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2d3dd103 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3d5f75ca au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x45d6a0e6 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x543e98b8 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5480293e au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6b51ac01 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9cdec168 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc735c564 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc9017a0d au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x95cbff4d au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xd612b15e bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x74b206fa cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x0ae07029 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xbb2bca26 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x64d6bab4 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xd5b364d5 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xe4124515 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x74b318ea cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x68523fc5 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xbdf69ed6 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xd850f730 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x3ce50a2b cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xc4f45387 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xd6a6609f cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x029bdf0f dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x796e3b59 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8185c237 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe2e4916d dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xfb4a0aba dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x015cba05 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x105beb2e dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x12a979e2 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2eb6fa8d dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3a3fd81d dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4ab7f944 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5069297d dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x516450c2 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5aeafd37 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5df3ccf9 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x885c4ac7 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa2658650 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa2f7b544 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf4ebde9b dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf7e34eb8 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x3e5efd82 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1fb0048d dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x40a9c744 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x687d711a dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x82a45709 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa0e1d4e4 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd3ffe44c dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x104cf259 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7b9a2c50 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xba1b2435 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xfab6854d dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x0f31b94d dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xe599c765 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0334e61d dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x50003318 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x97ecaadd dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb24b6a0c dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb3f32ceb dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x6beb5193 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x627ee9ff drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x368e993a drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xd16f81d4 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x6bc15b15 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x48fd1b13 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x511a34ea horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x9187e96f isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x95ef4277 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xe97bad6b isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x90593edc itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x39ed4ed2 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xb9940b23 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x493263c6 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xcc1c82cd lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x9e3e1d4c lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x629c26cc lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x6e856703 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xb2765106 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x43a377c2 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x941af38d lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xda3f7ff2 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xae2d0a1d m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xec6eac7d m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x09100f39 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xc199b9df mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x61b41e45 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xcc20fdbd mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xf27f40c7 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x7b2fc5ad nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x1b3c3d11 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xc0f13598 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x2d6d09c4 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x633ceefa s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xa0bd6bd0 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x7311cf69 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xadb14d79 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xe0c1c103 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xa4a16e56 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xb5b712f6 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xaa0342cb sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xf9b6800a sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x50da88fe stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xe14ae4e5 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xa8f568d3 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x34df0762 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x25e82987 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x76ce777a stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xa12a5967 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xa273617d stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xe9afd510 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x04d227fe stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xd184cb39 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xc1a2bbfa stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xeb6c0f8f tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x237028be tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x9783c806 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x13401eb3 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x2755b6db tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xb70d2441 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x8d3f78d9 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x190806a6 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xfaa2c1d6 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xd5996741 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x3575cd79 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x2a807924 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x2b24fca5 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x604ddeb2 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xdfff6860 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x6fed79e6 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x3302d9f2 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0c2fb220 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x13969cae flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x32438b77 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3f0ce98c flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x72c83362 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x76bb0d41 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc8a4b963 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x40160e43 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xa5afb548 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xa853614f bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xda73af4b bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x5ba2cce2 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xaa5b2a37 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xcb034816 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x05864154 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2c4c4ede dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x33dbf96c dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x59d23d75 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x63a60ee7 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x72065530 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb3f08650 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc75abbae dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe4218042 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x70f56785 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x031cae09 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4d3c7916 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x77d03d73 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa09a0eb7 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xdd7909ca cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x4ff23505 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 0x13542e0d cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x50833450 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x53eab31d cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x55322b24 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8113231e cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xab9bc889 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xdf5674cf cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x8f4385a5 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xe6ada4b2 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x4b43104a cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x699af1ed cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x82283315 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf05c606b cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1db24bed cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x20e3bc41 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3cb7eee5 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5de61ce1 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x658f9d44 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd47bfcac cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd7815256 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x00fe10ee cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x01f571fb cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0a50f0dc cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0ed9c243 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1e64f9e1 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x29f23083 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2d77d53d cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x609e3a5a cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x70f9c0a2 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x86e4922b cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x883675a0 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8e99d750 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x99e64b49 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9a20bf79 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9f1bbc55 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa913e247 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xad18aa55 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb8efa8ee cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc7f989fb cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf8cd734f cx88_newstation +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x05fed52f ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0daf624e ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1b287234 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1e68710c ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x20936506 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2dc72dff ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5376adc9 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5cde9a95 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x64d0b267 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7c6388c7 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7d355d8f ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8b0d5e68 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9adb0c63 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xad4997d5 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdcbc3b2b ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xeeca216a ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfab61359 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0b390d3c saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x23c284e7 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2d842f0f saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3e8af5a7 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4852b19f saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4dfce314 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4e2b12e4 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x622f3d16 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x890a71f6 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x93908fb5 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcb16455c saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd140041e saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xf01776e5 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x3fafffd1 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x6171c1e7 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb295ec8d soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xc67980fe soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xcce3fc4e soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xdfcfe022 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe507172e soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x4eb940e8 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5bc679a8 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x65333ac3 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7bac7cae snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x9e0c893e snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb572cc61 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd516b508 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x03ab11a3 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x157b0a37 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2c4e5c42 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x39f493ed lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x48970f97 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x589675e5 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xcc0bc00a lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe11c61bd lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/rc-core 0x16ecfadd ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb8cf486b ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xf5579f2d fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x3969d2dc fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x757f2666 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa1d9e5e2 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xe0edf2dd fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0xa6a61786 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x48cd4e6c mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xd6cc611d mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xee84d638 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x29e54c56 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x05732092 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x504a4f7c qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x40a1d3a0 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 0xad2a0470 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x9c0735fe xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x055797a0 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xa3a3a5a8 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xb13e1464 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x085544de dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0d73886e dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0fabba77 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5c00ca52 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7505af4f dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa1716ab6 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe875edde dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xef05c518 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xff979d6a dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4baf1114 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x738b4386 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x81017d76 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8f9fd792 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xaaaacb20 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd01f59eb usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xecb33f77 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 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e5ece8 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3d49d77f dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3fa72490 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x544dbb26 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7c656575 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x86521bac dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9945b3cc dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9c5b8116 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9e3ecb92 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 0xd4afd228 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd6df1880 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdeb781df dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x9c6aa070 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xafcf8700 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x05c83c8a go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x16326941 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1774d12d go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x17c16811 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1c7aa4d4 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x57669600 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x72563a88 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x74bf7442 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd756ca29 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0fc34c01 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x60a726a8 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x98302c13 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xaacf26f7 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb56cec53 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe2d3eba0 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf6503fe2 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xfcc9e85f gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x10f70a13 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x71c9b415 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x903f6e70 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x403a041d ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x6bfd05d7 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x1652f3cd 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 0x735ed588 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xd1834eff v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x1bcb26ce videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x78002c82 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x88ca9f75 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x99f15518 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x9c0e830b videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xcaf307b3 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x78f1d4e2 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x96f173d4 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x099b1381 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x48044f5b vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x75e1c66d vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x93115890 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xd6183701 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xed098d31 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 0x24e7f738 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01cda279 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09730c7d v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0efa04bd v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1506cba0 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x151862dc v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b01460d v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b54d0d9 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22970362 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27c12986 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x29e8d6b5 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d720199 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32103ace v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x352d8b78 video_unregister_device +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 0x3d832e1d v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x417aa39e v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4691c39b v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46ef194d video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48cc104e video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a72368a v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c57eae0 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e8489ea v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x563b7b7a v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56a93792 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5808bc5b v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5cf7a716 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60b72d56 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x650833e7 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6860decd v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68b3bc75 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69a838b8 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f32ed6f v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x70f061f4 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72f33432 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73c778d6 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x748ef271 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ac94a65 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b0d3301 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7cac9626 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x81df333f v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82262794 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x86978653 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9471e5b9 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9905286d v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9aa83c51 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b4a9e9b v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9c0c0571 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9e64a410 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5f47b9e v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa61ccabb v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa9c1f509 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa9d807af __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad0ce36c v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb2579cbd video_ioctl2 +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 0xbda5115e v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc02fb6b9 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc26b187c v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc3c8bde2 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc60b399e v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc61d6730 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc9bab0ee v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd80394e6 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd95847fa v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd29d1e3 v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xded055de v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4a6f6ec v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4a885c5 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5f1b5b2 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6a1ea0c v4l2_of_parse_link +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 0xf357e46d v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf8de6ba8 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf969aa94 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfcabf312 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/memstick/core/memstick 0x23e97708 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x34eaaf6c memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x434b1d37 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x497c15c9 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6adb2adb memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6b97e971 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x74731b3c memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x75804c78 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd8ecb6c7 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe2c9b117 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe5085d0f memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf9de0f35 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x06076519 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x145d2d6b mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1d20f90b mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x25078607 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x385986e4 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x49db2d83 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5b79d9e2 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6049a037 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x60c429a8 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6bb9783e mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6ceb1297 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7075238a mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x72f3e713 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x73ffc2e0 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x89b09346 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8b916fc9 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9ff892cb mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa4f84a07 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa89ed77d mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf895cad mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbc1e1f42 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbfa6d546 mpt_HardResetHandler +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 0xcb168c0f mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcbb4d6f8 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd5880da5 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xda0975f1 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xda4a0051 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe66b4063 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xff694469 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0722ba5c mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x091c3c76 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1d47f00d mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1e08f049 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x21d5173e mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2f068a2f mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3f92a67e mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x48d48fe6 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4cb65626 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6a51cff9 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6d00a025 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x71b88d80 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x74c138e2 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7c503f21 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fe3c23f mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa75da5b3 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaeb28338 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb2a47f4a mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb813a4f0 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbf4fa5ca mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc0f56faa mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc8c9c7c5 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xda141fc9 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xddd921a8 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe2c549b6 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xee625417 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xefc184a3 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/mfd/dln2 0x252b1f3e dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x28333296 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x8fdbef88 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x4bb07285 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x6aba05a6 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x210952f9 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x38265e56 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x663d9b3e mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6c4242c4 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9404877c mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa613bf90 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xabdfcc15 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xae48fee2 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbc50ea7d mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd40bdd4b mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe83ef60a mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/qcom_rpm 0x295fb567 qcom_rpm_write +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x1886516d wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x30230b8b wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x48c08fa4 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x7afa343d wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xe5983610 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xff4f68f6 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x18ca0b34 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x95ad2716 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0xd2c54d67 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x95e2829a c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xcc265fd2 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0x1df7030d ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xeb41164f ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x1f95298b tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x20eaee56 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x4f76fd36 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x507bab6f tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x5538ab18 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x774e42dc tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x78335eec tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x7bdf896c tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x8eb2f415 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xb76f7a82 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xbebfa0d0 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xe5d2aa2d tifm_eject +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x1948db9e dw_mci_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x2228f988 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x3a701a86 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xb7d173e5 dw_mci_resume +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x05d46842 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x711af016 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2c40083e cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3cb694d0 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4b9bf336 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x76a8783e cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7e07ecfd cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8b474552 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf2f7f837 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x394e5d5b do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x7523324e map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa91ba212 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xdae7c0b5 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x845e910a mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x598f6873 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x535a7c11 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x1da46387 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xcf5810c7 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/denali 0x4fb6844b denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0xe1b0bb1a denali_remove +EXPORT_SYMBOL drivers/mtd/nand/nand 0x39825a59 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x6cb63968 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x7e046344 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ed96e1a nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x904daa05 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xd70285b5 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x61cdde75 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x833882c5 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xf6169985 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x6f93d45b nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x818ec6e6 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 0x766b9a0a onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xbb33e750 onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xe5fc9e57 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xe997a1c7 flexonenand_region +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x08b64adb arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1851bbc0 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x807e0106 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x96f0062f alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9c76d3bf arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9fdb1330 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb47bcd4a arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbe387194 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcfb2f1da arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xff5c2785 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x23125498 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3de10a84 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x74217377 com20020_found +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x01c8da3c __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0f66d8c2 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x104a2239 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2478bed0 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x440d761f ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x698f7f76 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xae12c03a ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbcfdddaa ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xccf219e9 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd4087603 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xb40ec618 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x208f3a3e 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 0x1cfc7825 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x24f11e23 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3704ef39 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3a31a821 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x539fbe3a t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x556156cb dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9c4d7b42 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa934f3c5 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbaf25916 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc08e4a50 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc7e3e7b1 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xca147947 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdec661fa t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf1868684 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf5137364 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfc7c554a cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0507c731 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1db7e323 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x204c41c8 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x28ddd094 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x353012c4 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a8496ba cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3fcbdffd cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4531b024 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x46c2bb45 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x529e15ed cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7272b99e cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7dbf2c63 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x85878d75 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x87933ff9 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9effeecf cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa3782f3f cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa775a186 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa633f42 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6160433 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc70b2125 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcf165385 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcfa57884 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcfb7770c cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd297f930 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd6eb8a36 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xded1d584 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe21705be cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe2a8f20e cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe4b62859 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe50f1c39 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef87072b cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf3aba830 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf712ad8e cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff4ccdca cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0dc0eb84 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5c9d58b5 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x636da8f5 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x91d82fac vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbe4ec170 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf4c83d29 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x5f8e894f 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 0xc133ed04 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/gianfar_driver 0x79f28897 gfar_phc_index +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x2db0bc96 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x3806ffca hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x871ab1e3 hnae_reinit_handle +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 0xedda828a hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xfa0f0f8c hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01d7ff15 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07d1a83d mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a3dd126 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c7eeb8f mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15cdc7b3 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15d767f0 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b00a91e mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f104188 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x261b09c7 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2827f964 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fc547a6 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45ba2f77 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c935b04 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57e0394a mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6aa11f24 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74db08a7 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79448328 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8573e47d set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x860ffe19 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x868de1e8 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x881c246f mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x891ff29c mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f78c3a8 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac610494 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5543c14 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9642eef get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf2e34c1 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc2a4817 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2d221e8 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe384d156 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe87f44dd mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec8d7fcb mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf13db976 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf357cc2c mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4b7c493 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5cacc4d mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfba2ba3c mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff26d069 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03a12ed3 mlx5_core_query_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 0x1278a99b mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17b55926 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a51b00d mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29c470bd mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ed254fb mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f54d105 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3197f248 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f27b502 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x461ae23b mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b01018d mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c4121ab mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ddc8f2f mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5de249f3 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6375071e mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6560a89f mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68da5403 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d535154 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a496c13 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80d21197 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8795a899 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a929159 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95456cad mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9589ccd0 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95d4aa4e mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbe85ce1 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcac21167 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbe70f40 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf3a41ef mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd16c747a mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9a83dd7 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd99cd37 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3d8e251 mlx5_core_create_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 0xe7b659e0 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe937bb3c mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebd74ad9 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7121db2 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb430dd3 mlx5_register_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 0x03d823e6 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x072a45ac mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x342f5b13 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4f3a314a 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 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb2ac0c42 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc29a254b mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd2979366 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x3d3dfd9c 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 0x7deecd70 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd66ca457 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xdd384e83 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe329778d hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe86d5301 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x424ad6ed irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8211d168 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x83045e33 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x98946f60 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x98b03b6c sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb15e6850 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb991ca13 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xba3cfe5b sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xcd6ccfc7 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf0568be5 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/phy/mdio-bitbang 0x12f4ba2e alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x66f821a9 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x909bc657 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xe2632b01 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xb6ae828c xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xc9a7e7ab xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xf448beed xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/vitesse 0xff201144 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x507f9f70 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xf290fe88 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xf39313c3 register_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x0d3b8aca sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x2bd102a6 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x3cb78478 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x878bcc03 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x880303af team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x8e69412d team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x98aad6e3 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xda30290a team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xf3753cf4 team_mode_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x17a93d06 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x20baf03a cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0x9bfecc0f usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xd0036b0d usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x15138b58 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x648904cf hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6beaf861 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9608ec55 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9d3f7409 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9f7efe9b detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb9f7bbbd alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc7f9b403 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xda53f00e unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xdbe829ca hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfd20a664 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x86991df2 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x184acfc6 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5251fc09 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5b1c61cc ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x63bfdd9c ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x712c25e0 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa8ac6aaf ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaad9ffe6 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbdc74c0b ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbf2a914c dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdfd3860c ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe156d63a ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf14e587d 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 0x01f59756 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x168bd8ad ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x18fcaaf6 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x311bfc52 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x430b5afc ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x46e8db5c ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x65b027ae ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x65d3aeec ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x74be56f0 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8f753f3e ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9e8100b3 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa966d989 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcb7f2fef ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd0630044 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd9482fef ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0fa4717d ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2232fcad ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2846eced ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4315d8f9 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 0x851a428c ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa5b03abd ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa68ccac2 ath6kl_core_destroy +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 0xcead3e83 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd2e24e2c ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe594b0c9 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfd821a6b ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x02cdb8a6 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x236fcaf5 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 0x2f8b7542 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x33e50b4b ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4ab95e39 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x629a9707 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x68374a06 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6ad33f7e ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x79995abb ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x80c6992d ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x815da038 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8c050e22 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x910b5d21 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9d09a316 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb345081e ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbed5aed1 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc0cd928e ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc8a1937c ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xca926b63 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd5b53c40 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdd1e3dd1 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xec168dbd ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf3afe331 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0027c129 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01b28152 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04e2ff0c ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x051ddd07 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06773051 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06c9db49 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d0feab2 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d729cb9 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f6aa119 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1482a4b4 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x151d64fb ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15a2ef5f ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x167b9f87 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18dca6cc ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x199b05ff ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a5ba17f ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b379044 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2135da3f ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26677042 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2766a0eb ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a8de043 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2be657b1 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f10ee57 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3344b988 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x334c0a93 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34ff2455 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b6a27fd ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b8db051 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e6e954c ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4de868b1 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50447a0b ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55df0c68 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56350c19 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60f1da84 ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x618eff49 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63713742 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6555b47f ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6658c4bb ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x670ea205 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e74d714 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70cddf35 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7186fd62 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79363b84 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79d00cb8 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c3efbaf ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81c03db7 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83d30646 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85721491 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85a49328 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x868dee4e ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b89eb06 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d0f22dc ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d6023ef ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94a4050a ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96515438 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96e583e5 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9faa3712 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa64a09c9 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7ffae29 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa95ac5bc ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa26aefb ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabd45c1c ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac393ae0 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf6bbb6c ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xafa7b48d ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb119d93f ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb298e076 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb52aa790 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5aea670 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb65d3300 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9b6c0bb ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba5c6a83 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdc465e9 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3102047 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3366a23 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc949144d ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccf6ef14 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd08dfb52 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd172edef ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd62c1f30 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6bccb4e ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd81955fc ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8930dda ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd92d9e5e ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd931343d ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbbd63d3 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde521f30 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1012e28 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe288a5e9 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4c8697f ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7629575 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xece4519e ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee931ea2 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee950695 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeec12b7c ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1d68d19 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3b4b96b ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5f3fad3 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf64876a4 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8783c60 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf886acab ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb858ec4 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc734815 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe9c9a39 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/ath/ath9k/ath9k_hw 0xffe55be3 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/atmel 0x14b32249 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0x7c952609 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xd56f6533 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x075f7273 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x07b202a9 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1e582015 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 0x7306ce73 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8eaac379 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x96a05e88 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xaeb2ce30 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd8e33bcb brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xdea0a26b brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe66dd86e brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xef62468e brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xfc300c6e brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xfd7c0780 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x05bd6b70 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1492eb63 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1a0952f3 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2d95d373 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3cebfe3c hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5d3d9e70 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x78186331 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x78e58380 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7cc819a0 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8b4c4403 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x91adf229 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x93e815a7 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xad6697f3 hostap_set_hostapd_sta +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 0xc329c840 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc8898e38 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd3d90747 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd687e066 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xda0b2cac hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xda611d09 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe1e27625 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe1f8c6e8 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe3c32e14 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe602e590 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xeb8ff4d9 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf137321f prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0ad8ac4e libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x17c1ce07 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x26216961 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2673facc libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2df6edca libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2e2a3c4b libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4c17a431 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4d0e8042 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x55e425fe libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5afccc08 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5dde8355 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x656996ee libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x675e7b64 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x74a7b1db libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa503f05f libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc131e914 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc76cfda7 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc9fa258a libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xcd42640a libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd43d0676 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf94746a0 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0196023e il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x02b6da90 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x078f2994 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b311d01 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1044a58b il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x11538a3b il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x131aad92 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x14df89ae il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x16f12fa0 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x172f2f13 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22421cdb il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x233744d1 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x37304c28 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x37ba764b il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3cef78a5 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d420d0b il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3f98b417 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4226f814 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x42cda9e3 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x42cf70e9 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x46581a95 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4abe3ead il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x51db4ec3 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x52d46689 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x538d6ab2 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x53d39b16 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x575c4e88 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x57bc0b38 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5b51b1b5 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d127090 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5f297f62 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x60340084 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x629af6a8 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x63639b36 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x63e66049 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x67f7af0f il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6842a674 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6abca432 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6b283324 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6b696b61 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6da1fa7d il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6e77f6de il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6f4f9853 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6fe328c7 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x73e395e6 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x74964cb6 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7b531ce6 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7c574664 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7fd3a27f il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x81ea18fe il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x83e056ca il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x863838a7 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8bb6f680 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8bfa7114 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8c7817c8 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8c8a6137 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ff2aa6e il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x91de5f40 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x926b1823 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x95f68f7e il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x965ecd3f il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9712f014 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9b841b33 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa0ddc637 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa7b22796 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaabbd160 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xab06b92f il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb174db9b il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb237e1c2 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb3fec5c0 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb460986c il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7ca6558 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba5cb66b il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbb974ba1 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc084587a il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc2481b33 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc41c9f1e il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc737059a il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc7afb3de il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcaa2df8a il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xce5de09e _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcf2aa6b7 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd01fb075 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd0fcff1d il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd48bc3d5 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd5215fad il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd5605b13 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd5c01ca6 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdb6d00ad il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdd382ccc il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdd5932d6 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe5c356d0 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xee3830dc il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xef17d579 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xefaed8d0 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf76b728c il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfd286924 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xffae796e il_tx_cmd_complete +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 0x15f28c8b orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2c57dcdd orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x334b7e25 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x48646943 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5052deaf orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5244f20e alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x80e20c9b orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8159d46d orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa10587e6 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa2b7b110 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa945bd11 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa9a6000f orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbd1a42d9 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc4429952 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdad5191f orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe1f4c730 __orinoco_ev_rx +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 0xc8d38700 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0e1c423e rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x11595ad3 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x181b7b96 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x27ad6365 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b66986f rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f580d75 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2fce73e5 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34cbd4f4 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3c8900db _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x514a3c51 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x556c3dd1 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5679a61b rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x57da370b rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c6d6a63 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x629bcf2c rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6b9adac0 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f3bae4d rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f5d595f _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x71bf98fe rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x75d07538 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x815b041c rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x876f306c _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x88919e2e rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f50be3d _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9057a498 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9ef83922 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb11e7476 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 0xbb516e39 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbd8be8a7 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcccecf33 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcda55c48 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd0d32a1a _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd87b70f3 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd89fdb2c rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda160a8e rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe02a2feb rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xecfc8e3a rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xefb42855 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf5669599 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf897851d rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf8b60a08 _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 0x0bf6a1e9 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x2370b51a rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3929bb52 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd5cf958f rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8b3a675f rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xaf2bec36 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xcaa5f5ce rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe7e9e16c rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x00252a8e rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0310e9d8 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x11caa52d rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x13901ab1 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d86846e rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x430f827a efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x447a8e42 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f0176b0 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4fe73d9b rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54aba0d2 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5efb1f50 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ffd1dcd rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63e0e49a rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e55f1c9 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f05af81 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x77fa36b1 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79c41a92 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ff8e9be 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 0xac9969aa rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae7accea rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbef2186f rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd947d91d rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeab41c8a rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb4020fc efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed5ed6d3 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf213b811 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf69b735a rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfb3e7e3a rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x140d56f0 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x78936784 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x847552b9 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xae0b1896 wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xa66175ed fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xb48afcc9 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xe1a0ab92 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0x039ae677 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x4af6219b microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x40da6d9d nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xa0e77a02 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xedf18e73 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x96a6fcbe pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xa5677d76 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x0c0e51a8 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x3075fa1a s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xa8b35133 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0eaa03df st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1b32ad2b ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2a393e7a ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x461eda8c st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6d78c6ed st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7c39aed6 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x88704101 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9045c66b ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbbd5c3fc st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd545db36 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdcb4c4ae ndlc_close +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x00388df2 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0e6d09b9 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x21393c44 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x21571929 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x239fd585 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x52194025 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x55759d49 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5c9d4466 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x666a9d4e st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x686f2691 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x69d21a7b st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x81ab5e0b st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xace55f3e st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb7397949 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcd912b71 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd05ebf6b st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd51e08e5 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe237a090 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/ntb/ntb 0x41f5b073 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x506a3de2 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x5cc58de0 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x632ee4ed ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xaba609a7 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xbf8dd502 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xee944883 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xfe2f75ac ntb_db_event +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xbeed1aa6 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xd5048a89 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0xe7fbf0ea devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x03ceefb2 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x0a2bfb37 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x12b819d9 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x1f2c075c parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x278c6505 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x34b34828 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x389aa6eb parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x39dc88c9 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x3d7c68f1 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x3f17a644 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x48a23e4e parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x4b07755e parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x50b0f4bf parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5f0488d8 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x607863f9 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x621426a1 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x64fd54c2 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x6eee9bee parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x94f0b3b7 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x9db9b65e parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x9dfab28e __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xae0e50e8 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xb3461200 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xb87f6dec parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xbb4e3904 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xc62116f3 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xdeeddcc8 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xe4174eb2 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xe690c67f parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xeec607e5 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xf35425f8 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xf4ba8b02 parport_announce_port +EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x4ce88f66 iproc_pcie_setup +EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x9cc4a900 iproc_pcie_remove +EXPORT_SYMBOL drivers/pps/pps_core 0x3fa50572 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x5dd32080 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0xbc5a11df pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0xca7cdd1e pps_lookup_dev +EXPORT_SYMBOL drivers/ptp/ptp 0x19a953da ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0x7e45de9c ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0x99192fab ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0xbcd34aad ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xe9d71295 ptp_clock_event +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2cf89106 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x40d7ff1a rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x458e6692 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x527627b3 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x702a7d20 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7a071371 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb0256df4 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc375da24 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd409d078 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd68933b4 rproc_get_by_phandle +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xc1dab8e8 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5dd91820 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x63d24636 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xcb65aca5 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xec522f06 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x06bab50d fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x427753da fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5eb7f159 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6a66b647 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7da88670 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8021ecc7 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9c61c557 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb7a4cfee fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc0b09b85 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd09a00a7 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdaa3f4f4 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf496aff8 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x02c69488 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x04f863ab fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x07a1ad10 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f237abb fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0fb925b0 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13c074f4 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f5c6b5f fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a491a18 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d3254d1 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31ace75d fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3467ec9d fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ae727ae fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f632be5 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42cc6cd6 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x451b7269 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x49be0cb9 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d130e5a fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d37bae8 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d7c125d fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x507516d7 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5106b1f4 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5303afb0 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x596fdf45 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ccc441b _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5f0527ab fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x61234cae fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6f5b1c03 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x70fd0fb8 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76bce391 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d210a1d fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8be6bdf2 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a4c634a fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbcd8d369 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd1cb5be fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf4c89d5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbfb3dcd9 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc53b00be fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6b45c40 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca963a31 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcbfcaa30 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc8ceb6e fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcd8fbbb0 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd70ac43b fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5e3b471 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe6d62a3a libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf04b0a1e fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf43f65d5 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf5ff189e fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd327e6f fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xff4ecff7 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x02988c89 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x27f0e96a sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4c821c8d sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc12d01d9 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 0x862cffbc mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x03cc1f7e osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x05043b7d osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x057e7625 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x08c779b9 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0bd5f222 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x17bbc6ef osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1be22ffa osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x232c1cb6 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x23675fb1 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x24f71098 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3125c56a osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x370df54e osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3ad8904c osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x423c3080 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4b539777 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4b62f3c7 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x52abf47e osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x60fe3619 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x65d6d653 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x66540c78 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6be3ed60 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6ea71cf4 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x77917ade osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x793c6b86 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7d466860 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x85b753a2 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa9f8fc66 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb94d944d osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbf0917fc osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd8e32ab0 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdb82b91d osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdeb21426 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe2b81274 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe955c723 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xea48f729 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xef3243e6 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/osd 0x2d29e05a osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x3f0deaa3 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x540d4a49 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x828a3bdf osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xb83f23d5 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0xe4a0b6ca osduld_device_same +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5575eee9 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7f2a04ee qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcf1525e7 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd5831ae0 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd5f93e31 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd6f00b9a qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe2876012 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe60bb16c qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe6616390 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xeb520d3e qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf0431ef5 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfdd63e20 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/raid_class 0x5578db0c raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xacf343a4 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xf5c70034 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0bc6e1e2 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x165628dc fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1cc975f3 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2fc8e69c fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3fcc47fe fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x634061f9 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x75dca0bc fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x844d5f15 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8c4f398a fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8e42a965 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x91654fd2 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe3ecaaf1 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xeacf3e3b fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0192db6c sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x069729f3 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x092914a3 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0a7602b0 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0d219cd2 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0f1e9e23 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x19f9ab6d sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x25bf910e scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2a26e707 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2dbb4254 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2e8303fb sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x367205d5 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x47db9abb sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x57bfdf66 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x71658dd4 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7a791d97 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c512768 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ef4cc91 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x85c9be3d sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x95e781bf sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x969a37f2 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbb1ea06b sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc4a3082b sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd213ebae sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd305f099 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe1f9c6a6 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe7ed829c sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeb4c32ea sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2d2423f7 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4e752c50 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x72449a15 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xdcc5e9ff spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe6f48f06 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x37059906 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x47f57c88 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6e7b4d33 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa0fead44 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x3a697fed ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x60cc0e06 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x730c9fa3 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x87777f60 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x953cedfb ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xc2791136 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xfc742758 ufshcd_alloc_host +EXPORT_SYMBOL drivers/soc/qcom/smd 0x4320abc8 qcom_smd_driver_unregister +EXPORT_SYMBOL drivers/soc/qcom/smd 0xe07c5ec8 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 0x00ed5353 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x133b7bc6 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x25a44d8c ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x2707a0b9 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x2b2cbfb8 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x2bac1b57 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x2d417268 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x3e67b238 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x50ef9ce4 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x924d260a ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x9a66ef2b ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x9e90749e ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xaa4082a3 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xb14e7a8e ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xb33e7142 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xb5559941 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xb7617732 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xb979c04c ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xd59205a8 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xfba6cba7 ssb_bus_resume +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x099e1d6e fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x11008848 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1a5e156a fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1ff20cb3 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2f02f5e1 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5469bb6d fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x54fd11d3 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e4ae03d fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6b44621f fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7bfaee39 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8f7e9f45 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8fd1c191 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x92165a93 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9a487ffa fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9e041763 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaa9f596e fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xae63b828 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc263a1ef fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc66ffbdf fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcf68a9cc fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd315be53 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe1f172b0 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf02a95f7 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf3e6bfbb fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x01584b54 dprc_set_obj_label +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x0d62e0ba dpbp_close +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x0e8cd3c1 dprc_close +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x194badd0 dprc_get_obj_irq +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x1e3a0b6c dprc_get_res_ids +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x1efe94c5 dprc_get_res_count +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x39fdf181 dpbp_enable +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x5be7e551 dpbp_disable +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x740d6d32 dprc_get_obj +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x76492804 dprc_set_obj_irq +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x7e7005ae dprc_open +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x83fb9b10 mc_send_command +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x8a117bb2 dprc_get_obj_region +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x97a0222c dpbp_open +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xba8d2ef4 dprc_get_obj_count +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xd64ed15f dprc_get_obj_desc +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xf1d16d0c dpbp_get_attributes +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x9052b17b fwtty_port_put +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xcbbbc843 fwtty_port_get +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x9c4cf534 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x1dd6aae5 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x907ecb3d hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xb8940de1 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xec03b3c7 hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xb463ff04 ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xd1c443bf ade7854_remove +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x611dddd8 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xc86c75f4 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x03290f00 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x098cfefd rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0ba61f0f rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d04846a rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1bf67cab rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1bffa34e rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e45ea0f Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2282c897 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x240a70b2 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x29b28e91 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x352be87a rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3b26f48e rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3c979fbf rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4948ad68 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4a5d6c34 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x59323f7b rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5c12be2e rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5c32f081 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5f0c2962 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5f128a60 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63337676 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x690f413a rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7514dc82 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x75efdf55 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7a062f3d rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b081eb0 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7c5490ab rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7dd67c16 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x896d6050 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8dc1b4ac rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x960957d7 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9dc572e8 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa19cc300 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xab79b142 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xae9147a7 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2a478f2 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb3106303 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd5e1bb6 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd7d81ec notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc28890a6 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc46e8b79 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc7a811f3 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd14f4214 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe5fa73fa RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe923ddd5 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xea0ac040 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf11ed3fb HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf2b5eee7 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb92fec1 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfff0c2ff rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x00928cc0 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x00b8431b ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04d9f5c4 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0af10dfd IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0bef2a17 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a08f529 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x20889dc0 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x25b329c1 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x276847f0 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2fb60ab6 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x33eda170 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3484ee5a ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a1ed0b7 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x40c6cdb2 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4894db33 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a4a9b5b ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57efed94 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5acf5e2b ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e49b970 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6f2668f9 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78770dcd ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7dbc07a1 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x81a555c9 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x834dc0c8 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x90795ab0 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93d2f6e0 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x960bd387 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9cea9464 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4c52613 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8c89acf ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0987572 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb72235e2 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0d3559c ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc4329654 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb24984b ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb3bedd4 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb44ed5c ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcde49d53 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xceaeddf1 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf66108d ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd0f9ef64 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda547358 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe9722df2 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xea68f35b ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecd7a2b9 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee8f564a ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee9620c9 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xefbfda00 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb04ae26 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc26cecd Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfe179574 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfe2f7314 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff893214 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05a4fc70 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d6a8925 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x15987727 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1a72d81e iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x266a10f8 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2b9fc4b5 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3ba45aa1 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3ed48316 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x461b5b70 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x493146c6 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52dc4eba iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x56de3835 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d1acf58 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5df9bb4d iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5efca3c4 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f77fdbb iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x664c6c58 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x676a5c9e iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e403125 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x85e6ec09 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa6b94d34 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb25b25ba iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb68d87f0 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc3f705f5 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc7483bab iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xce9ecaa7 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2d6d7ee iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf78f5464 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x12628794 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x15f95507 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x19543d9a target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x1b7ac92e transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f9c5974 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x2049a344 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x23272b80 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2d7a5f82 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f2b58b2 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x30fce81d transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x32036c0a transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x32dd868c target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x37402698 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x3bc3c286 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ed9d19a target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x488fb9d5 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x48f9d7ab target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x499cf1f8 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x4fc013c7 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x50f4b7d0 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x53e9c08d core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x57d6dfb9 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f1046db sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f1de099 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x6170cd0c spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x75f4395a target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c5cddc6 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 0x7e85b190 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x80444a54 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x86271168 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a189611 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a7bd3ea target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x8ce53066 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x92cd9ef2 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x92d26ace transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x98bda27d core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1b61a39 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa2732a6d transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa2af1648 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xa521ca5a target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xa611a547 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xa748e766 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xab8a964a target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xac16af80 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xad64e3df target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xafc46ca1 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5489639 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6f8bcde core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xc26d521a sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2d8140a transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf4f7ad9 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd6b8aead core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7da794d target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9794adc sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb429c9c passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb545922 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xddc7280f sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xdeae4233 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe550f577 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xebfd0c62 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xec454a4e transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xef9f7fb9 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xefe970e4 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2274008 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf264d019 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa425960 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa4c24b9 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa963887 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xfdc50a82 target_get_session +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x29e5caf4 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x2ec7cd6d usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xdef74d12 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2b9020ae usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3da60c3d usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x43344fd4 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x553ca5cd usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5cff23a7 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7e9a5c93 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x96b5f0cb usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xaab1ccd7 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb21cfff4 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd8bd5f2d usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe7217e95 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf3b6a1d0 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x9b9879a5 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xcff0ae1b 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 0x2b4a875e lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x4566dd93 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x9c55aa9e lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xfcfad249 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 0x31016729 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x390f608e 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 0x779338fe svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x89a2c116 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8bb483af svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb2f1d8ea 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 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xfda4e570 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xc7b587ae sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x0496e33c sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x48101127 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x4d71747a 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 0x208ca83c 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 0x4d4d61a9 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7abdde87 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xe90d5efe g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1705f86c matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x84eb63a7 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xdd3d7489 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf06bf119 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x29f267c1 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x819cd6b2 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x247e648e matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2a76fddb matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x9f8c9f21 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa412fb4f matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x00d37cc7 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xdd9517a8 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x78bf379b matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7a758cbc matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa622ae0d matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xbd9bb8b1 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc864e977 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x70c6fb04 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 0x36159ba6 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x901fa490 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xda2fd280 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xe9a98646 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x9bd24842 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xd343d52b w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x253c84a5 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x74e9a81a w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x23bf6022 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x3926e2b1 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x51c34fe1 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x9fac041f w1_add_master_device +EXPORT_SYMBOL fs/configfs/configfs 0x10308adb config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x2117b499 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x2a9362d4 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x2d66b769 configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x36c87d3b config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x59da897d config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x68d44d83 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x6bddcff4 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x8d544418 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0xc65ed1cd config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0xd403dc0a configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xd8f554aa configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xe39c9a98 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xec87cd2e configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xfeed4725 configfs_register_subsystem +EXPORT_SYMBOL fs/exofs/libore 0x1359f753 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x35766a77 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x4f64008e ore_write +EXPORT_SYMBOL fs/exofs/libore 0x558dd881 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x6b9ba440 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x768c0841 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xca5c7a62 ore_read +EXPORT_SYMBOL fs/exofs/libore 0xcb5010d7 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xd38889dd ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xe9683aaa ore_put_io_state +EXPORT_SYMBOL fs/fscache/fscache 0x014796b3 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x02acb907 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x0731dc13 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x0c740b3e fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x1275152f __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x2141da14 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2e4248ec __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x341a83dc fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x35f691ff fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x3b9f5985 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x4795470c __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x54e4bf18 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x55e74765 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x56f94299 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x5f9b6574 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x639556c6 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x686e1eb0 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x6a04897a fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x6f80d149 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x6fee02f8 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x72952808 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x79cd6ac2 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x7cd16096 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x8306273b __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x841510b7 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x87ce4fa3 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x8c6696af __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x8fa8065f __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x90173bf5 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb1c573ab fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xbbdb15fb fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xbc4b48da fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xc2664388 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xc42c5bdd __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xd28af949 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xd751ce37 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xda2774d6 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xdc23f676 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xe7a2a72a __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xf3457443 fscache_mark_page_cached +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x1eaa3d84 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x1f33dee5 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x5c737c7b qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7d762d93 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x8368af89 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 0x6c61fc9f 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 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 0xcac4a163 lc_seq_dump_details +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 0x61bf037b lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0x879592e0 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb5919efe lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x1414d892 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x298aa106 register_8022_client +EXPORT_SYMBOL net/802/p8023 0xbbf03f5a make_8023_client +EXPORT_SYMBOL net/802/p8023 0xd168627c destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x056c4a54 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x9637f67f register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0c190e65 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x144d6bfe p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x23163d52 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x26ba8ae7 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x2d11e841 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2ece99d8 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x30c424b6 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x327a36bc p9_client_mkdir_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 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x4a1f0161 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x4e43f2ec p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x5a42a350 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x6169f201 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x62a30db0 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x65db6f68 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x6b2f6ff5 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x6c953d79 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x72eaa70e v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x7735e933 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7b73ef29 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x806535f5 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x822003cf v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x82c432dd p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x886bd1e3 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x96e0b136 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x996a2170 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x9ad2b272 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9af847df p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xb2f29ad6 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xb34b8348 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xba2c0084 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0xbb73b095 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xbe0362ac p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc1f604ca p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc61ce6e7 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xd0f433ae p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd3e96c69 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd7e91935 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xd884667b p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xda1f65f0 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf5421be9 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfa7f1393 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x221e398c alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x7d9d0cab atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x8dff1aab aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x9ed39d1e atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x013d5950 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x13d157f4 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x166aab6a atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x3758a126 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x42396ad6 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x5801edec register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x745dd583 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa33c8a84 atm_charge +EXPORT_SYMBOL net/atm/atm 0xa387444f atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xbacd8d2a deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xbc225df2 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf892bb4f vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xfac5ae25 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xff74d44c atm_dev_lookup +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 0x576275d0 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x6fb6c2b9 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x711713c0 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x885de6d4 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xaa5c3cb6 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc3060175 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xd4cc657f ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xfdbdb51e ax25_listen_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x130da854 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1315cb08 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x19845cc2 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e40ea35 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x201ee55e hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x364d2543 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x38bc9916 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x41b4349c hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4302aa4e hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x475abb54 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4fc99d5e hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x591b6e75 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x63e48920 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b46e794 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6c3c7d10 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7ae6b1f1 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7da0a992 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fcd99ce bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8144e28f bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8cdc57a5 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fa5e6fb bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91458164 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x92ccf483 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9795fdd2 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9d655caa hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbb759ac7 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbe88eca2 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc706abe8 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcfb3dbfa hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd2a925c5 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd42d6dc8 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd4504566 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6b11995 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd80243b9 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdcc2276c hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdcd2a1a2 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xde2bac28 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeb072b8f bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3338766 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf984ad14 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfcc20350 hci_recv_frame +EXPORT_SYMBOL net/bridge/bridge 0x0b681589 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x30b8c800 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x898d308b ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xdf17a38a ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x0577b074 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x1f687ccb cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x69d73aed caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xcd31105d caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xeb747684 get_cfcnfg +EXPORT_SYMBOL net/can/can 0x0122fc2d can_proto_unregister +EXPORT_SYMBOL net/can/can 0x68f06f5d can_rx_unregister +EXPORT_SYMBOL net/can/can 0x709c5b0c can_proto_register +EXPORT_SYMBOL net/can/can 0x72e4c431 can_ioctl +EXPORT_SYMBOL net/can/can 0x8b937bde can_rx_register +EXPORT_SYMBOL net/can/can 0x9708a608 can_send +EXPORT_SYMBOL net/ceph/libceph 0x0217cdf2 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x0689d0ab ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x09c79a75 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x0d5e2f04 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x11cc216e ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x153a7bf3 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x1b96faca ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x1c34e1ea ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x1c6fb110 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x1dbd91e8 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1eccfcb0 ceph_monc_validate_auth +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 0x27138188 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x2b71ae7b ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x2c7cdd37 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x3208a5c5 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x320f89e2 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x3249fe92 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x331f7612 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x3504b587 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3e9ac8f8 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 0x4211d0e4 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x44d21e7e ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x48a5a0bd osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x4a6427d4 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x4b8ab6b7 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x4bad372b ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x4bdb9648 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x516c83e9 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x521946d1 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x563ed2ad ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5704359b ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x572e6b53 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5c6da369 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5e096e14 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x631d0447 ceph_osdc_wait_request +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 0x6def22d6 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x6e6a6b89 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x6ff3ef73 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x70a1031e ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x719bb0d2 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x74cdde70 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x757926eb osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x7a8827b2 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x7ca51704 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x8f7e702e ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x9334aa83 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x9405fee0 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x969f7725 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x98ec6f56 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9b6e8600 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x9f071070 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa3fc21a6 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0xa63b4e88 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xa86282fb ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xa92ff93f osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xaa34f169 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xaf476ea3 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb3cd5089 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xb4538978 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb665819d ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xb69a6746 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xb70dc28a ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xbac7bec4 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xc02d94bc ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xc0c35cba ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc8857cbf ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcdc58255 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xd122f393 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd2d93852 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xd4ae60fc ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0xd658c5ff osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd8b7f606 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xdff7fef1 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xe0eb55ca ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xe9b644b6 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xeaf93dc6 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xeea533a5 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0xeeecfe16 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0xf1471b41 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf701760b osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xf791944f ceph_osdc_start_request +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x36ab58aa dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xf15f1d00 dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0db28d67 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2da98b49 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3472b319 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4fe36185 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x59e0cfeb wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf6438f5e wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/fou 0x1ed903a0 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x64458510 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x02ef02b3 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8b4e9d81 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb113cb69 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xccf6ce72 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd08b0f1e ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe4ca183a ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x68541dd9 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf2bc1dfc arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf5ec8823 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb2ff8e76 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb38c20c6 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf375dcb1 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x2d48856c xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x6238981f xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x4e81bd7b udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x18703dad ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3b6e9f39 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb7e06b73 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc4a9e4ac ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x34d87ef3 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x40ee61f4 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xdc1ed1d2 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0xc7ae011f xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xec515953 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x67394cb6 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x67880007 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x07c6fd48 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x21697ae6 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x61bd00a4 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x647d2369 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6fc2939f ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xed359284 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xeda1ab4a ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf1ceb804 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x01590a8b irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x041570a9 irias_insert_object +EXPORT_SYMBOL net/irda/irda 0x050cbdac irda_device_set_media_busy +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 0x0ca8a7de irttp_dup +EXPORT_SYMBOL net/irda/irda 0x1a9f11b6 hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x1cf92076 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x2a17732a hashbin_insert +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x36af2ec3 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x38237f9d irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x3fe0d3a9 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46229cb1 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x4bffcdc4 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x4d55cd39 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x56b99f6a hashbin_new +EXPORT_SYMBOL net/irda/irda 0x66a36e9b irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b7f50b3 hashbin_find +EXPORT_SYMBOL net/irda/irda 0x6e79bfc8 irlap_close +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x7246445e irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x72adbddf irlmp_connect_response +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 0x818890f5 iriap_close +EXPORT_SYMBOL net/irda/irda 0x85268586 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 0x9516f690 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x99cefa6c irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0xaad2d90a irias_find_object +EXPORT_SYMBOL net/irda/irda 0xacc9f0f4 irlap_open +EXPORT_SYMBOL net/irda/irda 0xaec635e4 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xb1b766dd 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 0xc2a6a5ad iriap_open +EXPORT_SYMBOL net/irda/irda 0xcad06b4b irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0xd22e8861 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0xd520760b iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0xd7702e20 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xdb325f72 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xdc008229 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xdd988ce6 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe47fc2e2 irttp_flow_request +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 0xf0b0c448 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xf0f25ffe hashbin_remove +EXPORT_SYMBOL net/l2tp/l2tp_core 0x906497d2 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x72ef3b5c l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x3e36e0ba lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x4300b049 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x709bc725 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xa0e6fb73 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xac6317d4 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xb9971914 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xd8189b88 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xdf15e9bf lapb_disconnect_request +EXPORT_SYMBOL net/llc/llc 0x004e4366 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x0e72ccd3 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x23c55097 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x2d50617b llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x419e4b16 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x58cef6a4 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xf44d20ed llc_add_pack +EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x0d6aaf7e ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x110441d6 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1a64507d ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x1f171e9e ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x203a1836 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x244800a5 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x247bbeea ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x28e8ba54 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x2fa217c2 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x30ece49d ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x3494167c ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x3a4db99b ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x3bf73427 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3dd20148 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x3ecb484f ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x41ae355b ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x4220a126 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x431261ad ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x4512eb66 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x476cbcb1 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x48f88962 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x4cbca135 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x4e40d214 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x4f3bf5e4 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x50ba2515 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x5cbaee78 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x5fbcb656 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x60cc9f28 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x632a2ed1 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7274232f ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x72d51cdd ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x73448911 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x742b8f12 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x78276817 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x7d8ac662 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x7e05d428 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x80473593 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x869f0ba9 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x895fa49f __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x8bbc0464 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x8dd84bda wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x8e5eb1a9 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x961ee536 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x99aecb52 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x99f749b6 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x9ba6b2f1 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xa6ed936d ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xaad9b9ff ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xafd300e1 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xb0326edc ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xb6e4dbd3 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xba4853ba ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xbe36ceb1 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xbe895505 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xbf26471c ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xc1c4dca1 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xc1f28a69 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xc349bb7c ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xc793296e ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xca3b97fe ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xcbd8bbf0 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xcc7a2ac8 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xd017dc35 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xd496bff9 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xd64d6ff1 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xdb5e1831 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xdeb1bccf ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xe0d16b3d ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xe5d11620 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xe894280b ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xea25c40b ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xf09a1f87 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xf1125900 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xf25abfa1 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf4ebe67b ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xf6942a3e rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0xfc7c3aac ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xfcd39c87 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac802154/mac802154 0x0b3d3d19 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x4c322708 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x69a44f3c ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xac39fa3a ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xad78bd92 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xb5cb6b4a ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xbd40d1b6 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xf81759b2 ieee802154_xmit_complete +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x11e43e7c ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x36ec1e65 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x412650f0 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x42410f55 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4e1d1d3e ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5f7de4f7 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x71aef2c7 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9ebf129a register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa4a2185a unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa67c22ad register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xae66f2d5 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc5742972 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd63e3731 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf3ba7185 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xbadf40ad __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xbb5a63b5 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xe8c6bcd8 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x0d8711b6 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x7e60a7a1 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x8f001408 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x9a6ff339 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xab79b21b nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xbef9622a nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/x_tables 0x0cfef8c6 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x327ff7fd xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x57335e34 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x690ff586 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x7568caf7 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x8e8ab404 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 0xc092a325 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xcc7f5a7d xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xcf2e3d30 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xfc822ec8 xt_register_target +EXPORT_SYMBOL net/nfc/hci/hci 0x0d2a98a1 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x13ecfc62 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x186501d7 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x2398484b nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x36383cbe nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x397fb3a5 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x3c2ba52d nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x3e1825b0 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x3f74c178 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x3f85e88c nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x4f3eb4cb nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x6ae33479 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x7e188c04 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x9056e184 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x90fefa5b nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x937a5b38 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xa5045a2d nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xba956a1e nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xdd5c4542 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xf6b5713d nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xf8e33405 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x0b3cb1b1 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x0bd92ebb nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x0ee0ac18 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x1cd147cc nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x1dcf8ae5 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x20d9428d nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x2520849d nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x2a679d92 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x32c497da nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x34171495 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x46b6aa6f nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x49c6e0ed nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x49d8a733 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x61917f91 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x74a5a7c9 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x76d2b4cd nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7a0a00e1 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x7c4b8989 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7cbfbab3 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x869341b7 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x8890cdf8 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x8b6e9a13 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x99f673c8 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x9f677c5b nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc3c8f452 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xca1c7ef8 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xd1b9bc09 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xe8450041 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nfc 0x14a3296a nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x1bd52bbf nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x25397372 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x300854dd nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x348f7909 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x5cff74d2 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x6017d357 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x624c9e54 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x65d4d228 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x6a33a26d nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x77495644 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x7b78a144 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x81d5afb9 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x8eb94ebd nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x969b52f2 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x9d778bad nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xb6994fb6 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xce649498 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xd05260ad nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xd1f3985e nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xd2ff6f83 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xd3406b60 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xd6888219 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xfecd298b nfc_find_se +EXPORT_SYMBOL net/nfc/nfc_digital 0x6156a994 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x96699c52 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x9fc43296 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xe77bd00e nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x0e223f73 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x67de77d0 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x8b3052b0 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x9ca08636 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xc3618d0d phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xd6c1ba18 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xf4553a88 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xf5d3e688 pn_sock_hash +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0995c04d rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0fd36721 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x27027c5b rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3999f386 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x52a1a394 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5d6aa2bc rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6d4db840 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8ed4862f rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9affc895 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9b70f4e5 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xab18c570 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb8f08aa3 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xce693636 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe1fabc7c rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xedfb5304 rxrpc_get_null_key +EXPORT_SYMBOL net/sctp/sctp 0xb339a766 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x06eb92b0 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x15e93c56 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x637b4e41 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x3ed778b0 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x768261cc xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xeb66e852 svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0x3308a358 wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0x5096ef11 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x01c2f983 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x0231bb1e __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x0363aa96 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x093e4f8f cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0f9c6dad cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x115d09e5 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x11f11a46 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x13d5e5c2 cfg80211_cqm_pktloss_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 0x1babc1f9 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x1c70a631 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x1fc77ae3 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x21b1ccb9 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x2239dce9 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x268e8333 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x27196210 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x2d4dde6f cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x34d7f8e4 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x358786a7 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x3601f5fa cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x36750757 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x38369cec cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x3836db77 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x384e3a3a cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x3970bc1a cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x3b5dc263 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x405677b6 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x408b58ff wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x447ecd60 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x44eef3f2 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4979c15b cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4c0c0f17 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x58ef5279 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x5a0bfb09 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x5be23b16 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x6322de3e cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x655304ce cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x65e7ae9d cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x69bd1eca cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6a1f8064 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x6c4e33d1 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6f9a07b1 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x736545e8 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x74c7d875 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x754f0c7d wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x7b10b5dd cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x7bb72bed cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8002f937 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x857925fd cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x88fc3501 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8fc8f6fc cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x948d45a4 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x97b8bf6f wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x9822f6e4 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0xa037ced4 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xa10c3f63 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 0xa45a3413 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xafe7f8bb cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xafe86b43 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xb000ca5b ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xb1a1f976 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xb1d726ff cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xbd3fa08b cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xbdc83e41 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xbff412c4 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xc4793dd7 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xc5363560 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc7b29166 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xc8bf8d47 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xcf9efcdb cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xcffcd910 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xd5633cb2 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xd576b49a cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xd754d4ba ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd7e36304 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xd90f4783 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xd9509e66 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xda46b9c4 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xe7dc65b1 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf1480600 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xf3bad3f0 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf6157c66 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xfefa7cef cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/lib80211 0x15d30818 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x2a6395c8 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x803aa9e7 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x8c2141cb lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xf0cb4eee lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xf9cf8415 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL sound/ac97_bus 0xba8a7266 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x1ceeb50f 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 0x3666bfb2 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 0x71f7c0c0 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 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 0xd1738e70 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 0xf7228d65 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 0x21fdbd4b snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x045df6a4 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x19644b06 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x237c480c snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x46d509d4 snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x48501cc2 snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x57427cce snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x6e4581b3 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xfdab5ab4 snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xebc01935 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x001ec4fc snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x00bed732 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x0166210c snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x024ee768 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x13883b70 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x16de8368 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x187b143f snd_component_add +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x199e2aaa snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x1c361f8d snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x1cef871c snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x294510fa snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x2b29efcc snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x306a3f73 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x306a6486 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x356a918a snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x47d538b6 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4e0b8433 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x4e40e712 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x6beb680f snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x6e597e95 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x702b5b5e snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x7a27d9a4 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x7bd2c98f snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x7d6c2985 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x80a3f361 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x86e9f4c3 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x88001811 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x92e32f9d snd_info_register +EXPORT_SYMBOL sound/core/snd 0x95db05b2 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0x9fe8e117 snd_device_new +EXPORT_SYMBOL sound/core/snd 0xa0123512 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa201805b snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xa4e4c125 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0xa8baadc5 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xadaad140 snd_cards +EXPORT_SYMBOL sound/core/snd 0xb13e6f65 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb43b6aec snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xc2d42575 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xc615fa80 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xc853bd8a snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xd15a37d4 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xd7b3f01a snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xd8299cd4 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xdd3bb59c snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xe5f932bf snd_device_register +EXPORT_SYMBOL sound/core/snd 0xf6979dce snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xf6a00580 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xfa4cc991 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0x1866f553 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 0x053a10aa snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0710c2df snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x0ce9dcbf snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x0e4f4d90 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x12174210 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x15a61a2a snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x1630e0d2 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x19758a4c snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1f718937 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x2022df0a snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x213f6582 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x230b2d22 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x24772119 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x2dd5398f snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x31e1fcfc snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x38bf5001 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x38feb851 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3cd1694d snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x3dd80752 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x41522b62 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x42c95ed3 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x4912be85 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x4991e0a4 snd_dma_alloc_pages_fallback +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 0x5d169cfd snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x60985b4b snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x656195a6 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x67dcb4de snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6b612442 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x71414d66 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x721cdd48 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x82e8c4d6 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x96384a15 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x966a2874 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xa28d96c6 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0xa3dc2296 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa9e5a774 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xba6948a3 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xba7ab959 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xbac19f8e snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xbcbc6f9c snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xbe2ed9cb snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xc60a2286 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xc92ff3a9 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xcbde40bc snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xe3436f3c snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xf8de14e1 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x05951369 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0c95bbfe snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x120469e8 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1da98e6b snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1dcbd4b1 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x255aa9b8 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x33e036af snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3ca51e44 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3ecd679e snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x425b5259 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x69f43930 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7c5c3ef8 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7ce4de2e __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8f42d97a snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x96d79ccb snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x994ba6c9 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa442acf3 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc76ec10c snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xccb21208 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-timer 0x21b47e6f snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x55279f3d snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x5a7cda1f snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x9c5849cb snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xa8b0857a snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xc019768c snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xd3c13985 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xd506a9bb snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xd9e3af7a snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xe4c14a61 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xe8e857e1 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xeb2339b4 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xf1acde02 snd_timer_notify +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x2fa44a6f 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 0x5ae308fc snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x645a8acb snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6c62fd04 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7638c473 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb04e4441 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbb75bff6 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xde86cf93 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfb41f9e5 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfd49d846 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x12bb3ee3 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 0x284f6dd5 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2a0229c6 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x60020c1b snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6c5406b4 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8cbf7a0b snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xacf0d9c4 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc1ca6cf7 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xff4593a8 snd_vx_dsp_boot +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0eafe7b3 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x113f7bf1 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1f35d1cc amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x26d6e1a9 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x310dfb34 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x31591d33 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x31ac77cb fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x37adc514 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4ac46333 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53d865e4 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x56c44628 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6ef022d8 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x712416d2 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x732a57ab avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x756887b1 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x90d93f35 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9c15947d cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9c2f9edf cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9cd4b579 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa7551054 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbd9e91d8 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbdf7bae8 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcb26c757 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcb9148c1 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcd97d466 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd022af57 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd2cd0e34 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd42629ab snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd9f91b6d amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe6bd72b6 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xea1d43f2 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfae99e5e snd_fw_transaction +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x455641e0 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xb2378651 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2c46d928 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x41ea58ba snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4f35a19c snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5176c8a3 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x857a331d snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbae80cae snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbc4be744 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf48f30f8 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2f6e3aa0 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x3d4084c0 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x70f68842 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe46e07cf snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x234e2ca3 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xf46775f2 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x01de020c snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x3372b371 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x338af79d snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x98f09e2e snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa935346f snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xef464aa8 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x2efc68c1 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x6b3d66ad snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa4b1d2ce snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd80bca30 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xf2ee7a1d snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xfca36494 snd_i2c_readbytes +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x074eab9e snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x11239a40 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x54d607e0 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6828bc70 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6a2e4864 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7f16e4a7 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x81494f65 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x87199d26 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8a573a66 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8fdc1b0b snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x91acdb1a snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9c0f182b snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdb6a6050 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xde14c984 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdf6a2e4a snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe4726f1d snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xeb2b1c52 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0326e452 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0dffc74f snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x34aec9fb snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4a41b8ec snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5697713d snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x67ff05e6 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x80f1bc51 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x87ca4888 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xca1dd3a4 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xba1357e0 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xe8b87e2c snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xe9d2b08e snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0f2b3de6 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x21694d86 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2ed2425c oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3577fd26 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4cbe5792 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4e409871 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x54accfac oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x570b2171 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x60b8c452 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x856ac42b oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x891786b0 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x966a00b8 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9c114db4 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb2c9aeb6 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc81eb290 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcaf635d6 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd7174f31 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xea2eb584 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf103343f oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf5ba232d oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfe2edce7 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6696c529 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb4233fd1 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb4d89cfe snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xdcf46f69 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xea0b8ea4 snd_trident_alloc_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xaa524e93 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xc4b480c0 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/snd-soc-core 0x8702d8e0 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x198efb1b register_sound_special +EXPORT_SYMBOL sound/soundcore 0x2e2d0665 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x5b78737b register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xb628d741 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xe6da45f7 sound_class +EXPORT_SYMBOL sound/soundcore 0xf15bba9b register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0a03fccc snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x290078c4 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x367745ef 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 0x776d01b7 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbb7465e5 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc36570c7 snd_emux_register +EXPORT_SYMBOL sound/synth/snd-util-mem 0x1c04c8a1 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x3e4a88b6 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x584b01a2 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6f46ba00 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x89f4d26e snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9e18b55f snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xb718059d snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xce6a071c snd_util_memhdr_new +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbeada2c6 snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x0001eb68 generic_perform_write +EXPORT_SYMBOL vmlinux 0x000256d8 inet_accept +EXPORT_SYMBOL vmlinux 0x00317738 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x004418bc d_instantiate +EXPORT_SYMBOL vmlinux 0x006652ef ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x0078a46d register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x008c879b __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00ddb30a led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0x00e87883 rwsem_wake +EXPORT_SYMBOL vmlinux 0x00f568fd scsi_add_device +EXPORT_SYMBOL vmlinux 0x00fb5fac unlock_new_inode +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x01024b81 dev_get_stats +EXPORT_SYMBOL vmlinux 0x01299148 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x01435d80 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x014aa3f0 noop_qdisc +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x0171d14d tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x01790e94 csum_partial_copy +EXPORT_SYMBOL vmlinux 0x0182bfa3 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x019a2943 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x01a2df58 amba_request_regions +EXPORT_SYMBOL vmlinux 0x01ae5731 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x01d965a3 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x01dc34f0 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x01eb70af tcp_child_process +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x021f5e40 dput +EXPORT_SYMBOL vmlinux 0x0222b8b3 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x0247589e nf_log_set +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 0x028c262e scsi_register +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02b01894 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02fd7ce5 mapping_tagged +EXPORT_SYMBOL vmlinux 0x031039d7 follow_pfn +EXPORT_SYMBOL vmlinux 0x0322adbb xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x0329b5f7 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x0332cdbc cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x034943ad vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x035a8026 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x035f891b down_interruptible +EXPORT_SYMBOL vmlinux 0x0361f050 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03c21866 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x03c6055f inet6_release +EXPORT_SYMBOL vmlinux 0x03d7ea46 make_kgid +EXPORT_SYMBOL vmlinux 0x03e1f68c single_open +EXPORT_SYMBOL vmlinux 0x03e334a3 sock_no_getname +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0400e048 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x04202696 udp_del_offload +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x042c723e blk_end_request +EXPORT_SYMBOL vmlinux 0x04340bba set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x048bb976 dev_mc_add +EXPORT_SYMBOL vmlinux 0x04bc51d9 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x04ca94af dma_common_mmap +EXPORT_SYMBOL vmlinux 0x04d405ea __netif_schedule +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x050de7ec genphy_suspend +EXPORT_SYMBOL vmlinux 0x050fb7d1 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x0519cedf tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05283a0d vfs_symlink +EXPORT_SYMBOL vmlinux 0x054c1539 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x05721ebc blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x057af7f4 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x058eee98 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x059580c9 nvm_put_blk +EXPORT_SYMBOL vmlinux 0x05a67def pci_scan_bus +EXPORT_SYMBOL vmlinux 0x05b99c44 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x05dce43d register_console +EXPORT_SYMBOL vmlinux 0x05e27052 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x05f23f56 simple_rmdir +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061f4039 acpi_get_table_with_size +EXPORT_SYMBOL vmlinux 0x0630cfd8 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x063bdbf9 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x06490190 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x0649e9d3 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x064ba996 dump_truncate +EXPORT_SYMBOL vmlinux 0x065e7d11 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068179d8 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x06847856 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x06888d80 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x06a4304f inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x06aa2d52 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x06aac5e1 get_task_io_context +EXPORT_SYMBOL vmlinux 0x06abdf29 neigh_for_each +EXPORT_SYMBOL vmlinux 0x06b46d2d would_dump +EXPORT_SYMBOL vmlinux 0x06bccc18 get_gendisk +EXPORT_SYMBOL vmlinux 0x06c4496a bio_copy_data +EXPORT_SYMBOL vmlinux 0x06d4335e register_md_personality +EXPORT_SYMBOL vmlinux 0x06f51c1e param_ops_int +EXPORT_SYMBOL vmlinux 0x06f8ed3e __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x072b1027 security_inode_readlink +EXPORT_SYMBOL vmlinux 0x072f3896 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0742e9e7 tty_mutex +EXPORT_SYMBOL vmlinux 0x07534f45 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x07538b7d component_match_add +EXPORT_SYMBOL vmlinux 0x07659366 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x0780368a try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x078d848c devm_release_resource +EXPORT_SYMBOL vmlinux 0x0796a057 max8998_read_reg +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 0x07d32682 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x07e17659 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x080c1090 led_blink_set +EXPORT_SYMBOL vmlinux 0x081e03c1 pci_save_state +EXPORT_SYMBOL vmlinux 0x08296555 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x082be923 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082c650d elv_rb_find +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084199fa skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x0856841f skb_append +EXPORT_SYMBOL vmlinux 0x087c5a87 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x089e6961 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x08b0a250 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x08b5dd0d dev_crit +EXPORT_SYMBOL vmlinux 0x08bdf3f0 kill_fasync +EXPORT_SYMBOL vmlinux 0x08ca4a09 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08f2d1a4 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x090302e5 fb_blank +EXPORT_SYMBOL vmlinux 0x090c768a inet6_del_offload +EXPORT_SYMBOL vmlinux 0x090e5fa0 from_kuid +EXPORT_SYMBOL vmlinux 0x09118efc phy_drivers_register +EXPORT_SYMBOL vmlinux 0x0911a95c blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x0915ce38 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x091cb904 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x0920f142 fb_class +EXPORT_SYMBOL vmlinux 0x0923bf0e proto_unregister +EXPORT_SYMBOL vmlinux 0x093bfc3f proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x09696626 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x09731f1d i2c_release_client +EXPORT_SYMBOL vmlinux 0x097df4bb blk_init_queue +EXPORT_SYMBOL vmlinux 0x098431ba acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0998a419 sg_miter_start +EXPORT_SYMBOL vmlinux 0x09baea8f sk_wait_data +EXPORT_SYMBOL vmlinux 0x09bd3d10 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x09c503ee acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09dd9ffe amba_release_regions +EXPORT_SYMBOL vmlinux 0x09ee9058 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x09f0c79f blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x0a03df9e skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x0a11066e crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x0a11bac6 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x0a1308d7 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x0a1be44f pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x0a1ec858 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a344c4e devm_memremap +EXPORT_SYMBOL vmlinux 0x0a4054f4 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x0a4a8e2f iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x0a4fd965 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x0a6c3b4a pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x0a97dda8 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa63029 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x0ac5b63b is_bad_inode +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad99966 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x0aeff952 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x0af08c59 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x0b0319c9 inet_getname +EXPORT_SYMBOL vmlinux 0x0b05c8bc ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b1f7a77 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x0b38c054 sock_no_connect +EXPORT_SYMBOL vmlinux 0x0b50c323 netif_skb_features +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b868f1f of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x0b8b4ac7 inode_init_owner +EXPORT_SYMBOL vmlinux 0x0b8e6da1 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x0ba84e0a pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x0ba875d1 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x0bb3eac6 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x0bb64fe3 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bfabfe5 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x0c1d70b9 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c4b34c9 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c672390 mount_ns +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c88745b __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x0c9782a7 open_check_o_direct +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca6c717 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cbf8c40 dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0x0cc62817 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x0cde43be blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x0ce7919d mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x0ceeb4c6 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x0cfde3ea xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x0d155d3a dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d80efb5 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x0d864463 km_new_mapping +EXPORT_SYMBOL vmlinux 0x0d9a5f40 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0e02c70e save_mount_options +EXPORT_SYMBOL vmlinux 0x0e0a5a6c ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x0e28d9a0 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x0e34e184 pci_request_regions +EXPORT_SYMBOL vmlinux 0x0e4d7bee mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e767c9f __register_binfmt +EXPORT_SYMBOL vmlinux 0x0e77a781 lockref_put_return +EXPORT_SYMBOL vmlinux 0x0e7b06fd __destroy_inode +EXPORT_SYMBOL vmlinux 0x0e821fd0 mount_subtree +EXPORT_SYMBOL vmlinux 0x0e8c13b6 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x0e8ed799 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ecaae6c neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x0ed7928f tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0x0ed8cc7b acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x0ef455a9 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f2280d9 get_tz_trend +EXPORT_SYMBOL vmlinux 0x0f23985d filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x0f3189da skb_push +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f51debd dquot_initialize +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f7d812e inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x0f897236 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x0f8a3d64 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x0fa3274b __nd_driver_register +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd65f67 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x0fd7c782 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x0fe33f5f starget_for_each_device +EXPORT_SYMBOL vmlinux 0x0fee95a6 sock_no_bind +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ff2c759 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x0ff8afb2 tcp_close +EXPORT_SYMBOL vmlinux 0x1051f068 of_device_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 0x109a6701 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x10ad4c3f have_submounts +EXPORT_SYMBOL vmlinux 0x10c5476d serio_reconnect +EXPORT_SYMBOL vmlinux 0x10caa890 mount_bdev +EXPORT_SYMBOL vmlinux 0x10d7337e security_inode_init_security +EXPORT_SYMBOL vmlinux 0x10e11691 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10f72c45 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x10ff547f from_kgid +EXPORT_SYMBOL vmlinux 0x1107b8c5 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110ec5d2 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x11143868 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x1123bce7 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x11287ca8 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x114a4207 phy_init_hw +EXPORT_SYMBOL vmlinux 0x1153dd68 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11825bcb iommu_get_dma_cookie +EXPORT_SYMBOL vmlinux 0x1185ddb2 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11cbeb24 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x11d07795 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x11df0920 add_disk +EXPORT_SYMBOL vmlinux 0x11e871a2 __napi_complete +EXPORT_SYMBOL vmlinux 0x11ebbdeb generic_permission +EXPORT_SYMBOL vmlinux 0x11f6f647 loop_backing_file +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120e4626 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x121e5ecc netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x12306a90 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x1231dd69 vm_map_ram +EXPORT_SYMBOL vmlinux 0x12328959 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x12764c48 blk_rq_init +EXPORT_SYMBOL vmlinux 0x12a0d59d phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12a48f8d vfs_create +EXPORT_SYMBOL vmlinux 0x12ae5276 elv_rb_del +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12e7ce08 mutex_trylock +EXPORT_SYMBOL vmlinux 0x1305d532 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x13114e24 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x1313b556 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x131ae6ee jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x131e226e input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x1371341e vfs_iter_write +EXPORT_SYMBOL vmlinux 0x137bd716 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x13865d2c dev_activate +EXPORT_SYMBOL vmlinux 0x139d5ca8 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x13c44f6a cdev_add +EXPORT_SYMBOL vmlinux 0x13c62ba5 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13ebc612 md_write_start +EXPORT_SYMBOL vmlinux 0x14218bb8 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x142a7cad netif_rx_ni +EXPORT_SYMBOL vmlinux 0x145bf360 page_symlink +EXPORT_SYMBOL vmlinux 0x1461dbab put_filp +EXPORT_SYMBOL vmlinux 0x146862b7 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x14733362 prepare_binprm +EXPORT_SYMBOL vmlinux 0x14ace8e7 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x14cbee93 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x14cd339b kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d0f74c unregister_nls +EXPORT_SYMBOL vmlinux 0x14dddfcd of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x14e78f9f load_nls +EXPORT_SYMBOL vmlinux 0x14f55a1c scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x151d23e5 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x152d7c39 __module_get +EXPORT_SYMBOL vmlinux 0x15364b63 ida_remove +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x155c76de nonseekable_open +EXPORT_SYMBOL vmlinux 0x155cda13 iommu_put_dma_cookie +EXPORT_SYMBOL vmlinux 0x158f8a8d pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x15a6d9a7 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x15b630b3 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x15db8f43 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x15e774bf tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0x1619a8c3 try_module_get +EXPORT_SYMBOL vmlinux 0x161c3261 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x16257fc6 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x1628975b i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x162c737b iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x1638a32f udp6_csum_init +EXPORT_SYMBOL vmlinux 0x163cecc0 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x164c693d skb_find_text +EXPORT_SYMBOL vmlinux 0x16712025 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x16766435 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167cd6e6 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x1682ea05 proc_douintvec +EXPORT_SYMBOL vmlinux 0x16a6e9cf set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x16b92de3 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x16c61f46 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x16d5d2cd cpu_all_bits +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16fd025f current_in_userns +EXPORT_SYMBOL vmlinux 0x1709b4e5 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x170b8365 block_write_full_page +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x170e339f bdi_destroy +EXPORT_SYMBOL vmlinux 0x1718da9d nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x1725fad4 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x1743f390 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x175a7868 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x1770b1f7 input_unregister_device +EXPORT_SYMBOL vmlinux 0x177c398d netdev_change_features +EXPORT_SYMBOL vmlinux 0x17914958 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x1793ee72 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x17a142df __copy_from_user +EXPORT_SYMBOL vmlinux 0x17aa348a pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x17add8cf serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x17afa5e7 pci_get_device +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17dac6d3 param_set_charp +EXPORT_SYMBOL vmlinux 0x17db6c87 pci_disable_device +EXPORT_SYMBOL vmlinux 0x17e52ce2 ata_print_version +EXPORT_SYMBOL vmlinux 0x180f16d2 fsync_bdev +EXPORT_SYMBOL vmlinux 0x181a84a3 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x182616be __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x1831334e deactivate_super +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184aacd8 param_set_ushort +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184cb878 inet_shutdown +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188cd390 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x18908aab inode_init_once +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189b99b3 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x18aa728d bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x18ac301a thaw_bdev +EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io +EXPORT_SYMBOL vmlinux 0x18c69d0b scsi_unregister +EXPORT_SYMBOL vmlinux 0x18ca50e6 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18ec5992 lease_modify +EXPORT_SYMBOL vmlinux 0x18f02a4e address_space_init_once +EXPORT_SYMBOL vmlinux 0x18fef9cb xen_start_info +EXPORT_SYMBOL vmlinux 0x1918ec51 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x1946d1b0 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x1962c565 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x197d0a13 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x198f6a9a jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x1992d8dd tcf_hash_new_index +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 0x19d4abea wake_up_process +EXPORT_SYMBOL vmlinux 0x19ef8b4f tso_count_descs +EXPORT_SYMBOL vmlinux 0x19f3deec xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x19f90e59 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x1a1b6c56 blk_register_region +EXPORT_SYMBOL vmlinux 0x1a1da9b5 fs_bio_set +EXPORT_SYMBOL vmlinux 0x1a24865c dev_trans_start +EXPORT_SYMBOL vmlinux 0x1a261952 __lock_page +EXPORT_SYMBOL vmlinux 0x1a302afb xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x1a4445b5 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a61853f page_readlink +EXPORT_SYMBOL vmlinux 0x1a82ecd7 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x1ab06748 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x1ab13cb3 dst_discard_out +EXPORT_SYMBOL vmlinux 0x1abfc3fa napi_disable +EXPORT_SYMBOL vmlinux 0x1ac59b7e input_register_handle +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ae2ee52 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x1ae587fb iterate_mounts +EXPORT_SYMBOL vmlinux 0x1ae80231 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x1aeb07ff phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x1aebf32e seq_file_path +EXPORT_SYMBOL vmlinux 0x1aef747e mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b02c61c blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x1b103e5d memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b25e5a5 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x1b2d6d2c qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8febe9 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x1bb0b436 xen_dma_ops +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bbc0e4a of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x1bbf25df mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x1bc7588d dev_get_by_index +EXPORT_SYMBOL vmlinux 0x1bca2a90 prepare_to_wait +EXPORT_SYMBOL vmlinux 0x1bea9f56 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x1bf408f7 kobject_set_name +EXPORT_SYMBOL vmlinux 0x1c08719d scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x1c08dd76 seq_release +EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states +EXPORT_SYMBOL vmlinux 0x1c1ffe77 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x1c276867 dm_io +EXPORT_SYMBOL vmlinux 0x1c4c8a08 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x1c5404b3 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x1c5a6c59 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x1c65dc14 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x1c7f0dc8 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1c926629 da903x_query_status +EXPORT_SYMBOL vmlinux 0x1ca546e2 profile_pc +EXPORT_SYMBOL vmlinux 0x1cb5c8fb blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x1cbada0c mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x1cfd7104 misc_register +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d1ac30b skb_trim +EXPORT_SYMBOL vmlinux 0x1d31a4a2 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x1d4d70b0 sock_create +EXPORT_SYMBOL vmlinux 0x1d4ea54d generic_ro_fops +EXPORT_SYMBOL vmlinux 0x1d5f9d44 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x1d868455 __get_user_pages +EXPORT_SYMBOL vmlinux 0x1d89bdac neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x1d92d898 complete_and_exit +EXPORT_SYMBOL vmlinux 0x1da00498 security_path_unlink +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de036dc inode_add_bytes +EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0x1df40ab8 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e131713 proc_create_data +EXPORT_SYMBOL vmlinux 0x1e17c0ca kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e3c0a8e register_framebuffer +EXPORT_SYMBOL vmlinux 0x1e5a8c0e devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e841a40 dst_cow_metrics_generic +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 0x1eb213d9 block_read_full_page +EXPORT_SYMBOL vmlinux 0x1eb47725 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x1eb9489c vga_client_register +EXPORT_SYMBOL vmlinux 0x1ebb9c90 vfs_unlink +EXPORT_SYMBOL vmlinux 0x1ed88142 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x1ed9d63c call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x1ee2e392 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x1eef84ea pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x1ef0625f pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x1f08f407 default_llseek +EXPORT_SYMBOL vmlinux 0x1f203bca blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x1f366d70 register_qdisc +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f9bb3b1 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x1fb1c65c mmc_can_trim +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 0x1fdc7df2 _mcount +EXPORT_SYMBOL vmlinux 0x1fe29d67 tty_kref_put +EXPORT_SYMBOL vmlinux 0x1fe6c151 put_io_context +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x1ff3f398 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2019b727 key_link +EXPORT_SYMBOL vmlinux 0x202acc45 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x204346af proc_dostring +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x205fa318 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x2069f49e ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x20906cd5 idr_destroy +EXPORT_SYMBOL vmlinux 0x209c2321 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ab584f mmc_put_card +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 0x20f6513d dmam_pool_create +EXPORT_SYMBOL vmlinux 0x20ffa7f6 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x2105afa3 init_buffer +EXPORT_SYMBOL vmlinux 0x2112ae34 vfs_read +EXPORT_SYMBOL vmlinux 0x211b8859 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x211cc3c5 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x2130dcf1 get_phy_device +EXPORT_SYMBOL vmlinux 0x2132b94f genl_notify +EXPORT_SYMBOL vmlinux 0x215a92e6 netif_device_detach +EXPORT_SYMBOL vmlinux 0x2173b34f inet6_bind +EXPORT_SYMBOL vmlinux 0x2183ea27 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x218ec0d0 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x2192bfd0 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x219c8acb register_sysctl +EXPORT_SYMBOL vmlinux 0x21db405c tty_do_resize +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21ee6dc6 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x21fb5ba2 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x221f6a00 sync_blockdev +EXPORT_SYMBOL vmlinux 0x222a53cb xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x22442f60 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x224ff4ad wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x225db793 __vfs_read +EXPORT_SYMBOL vmlinux 0x2260c4e6 md_check_recovery +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2268c743 flush_signals +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x227e1874 genphy_read_status +EXPORT_SYMBOL vmlinux 0x22a6a3e6 seq_pad +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b83fbf unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x22baea3d proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x22c691c6 copy_to_iter +EXPORT_SYMBOL vmlinux 0x22c6db3b scsi_host_get +EXPORT_SYMBOL vmlinux 0x22d81e00 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x22daca4d pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x22e1bec6 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x22eb8c1c textsearch_prepare +EXPORT_SYMBOL vmlinux 0x2305503c dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x231c785f abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x23204052 skb_make_writable +EXPORT_SYMBOL vmlinux 0x232aa785 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x2333f441 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x233858c4 serio_open +EXPORT_SYMBOL vmlinux 0x235d5ab5 dummy_dma_ops +EXPORT_SYMBOL vmlinux 0x2364c326 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23a78e32 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x23aa6cc6 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bd46d3 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23cf9054 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x23e2e60b security_path_truncate +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242e1b0a proto_register +EXPORT_SYMBOL vmlinux 0x2431eba0 dev_uc_init +EXPORT_SYMBOL vmlinux 0x2431efce kern_path +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x24554b35 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x24565507 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2475e24d param_ops_byte +EXPORT_SYMBOL vmlinux 0x24808a93 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24a0ed37 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x24a366f8 fb_find_mode +EXPORT_SYMBOL vmlinux 0x24a8553a __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x24dea731 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x24eb756e ilookup +EXPORT_SYMBOL vmlinux 0x24ec7ba3 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x24f9df6a dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250b1d0a devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x25136b71 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x2517f2f7 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x25279768 simple_fill_super +EXPORT_SYMBOL vmlinux 0x253396cd single_release +EXPORT_SYMBOL vmlinux 0x253fd483 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x2541c5ab abx500_register_ops +EXPORT_SYMBOL vmlinux 0x254e5750 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x255bb072 change_bit +EXPORT_SYMBOL vmlinux 0x255c50e0 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x25704889 __getblk_slow +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x257bdaef __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25944b6e mmc_remove_host +EXPORT_SYMBOL vmlinux 0x2597fe3a pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x259d4b39 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x25af6f9a generic_setxattr +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25ef6cab blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x25f7a46b udp_seq_open +EXPORT_SYMBOL vmlinux 0x2603ea96 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x260e2124 mii_check_media +EXPORT_SYMBOL vmlinux 0x263268f8 devm_clk_put +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x2655445c pci_iomap +EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update +EXPORT_SYMBOL vmlinux 0x26785b64 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x268185e3 dump_page +EXPORT_SYMBOL vmlinux 0x2688896d simple_open +EXPORT_SYMBOL vmlinux 0x268c812e devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x26909039 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x269da18a msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x26bb9a85 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x26bf7b4b ihold +EXPORT_SYMBOL vmlinux 0x26df9d91 inode_change_ok +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x27103d37 framebuffer_release +EXPORT_SYMBOL vmlinux 0x2718502f vme_dma_request +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x272246ee __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x2724ba66 __ioremap +EXPORT_SYMBOL vmlinux 0x272787be mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x272e1c5c jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x273a82e1 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x2753bdd5 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x277d6b7e inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x278d718a max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x2792a18b ping_prot +EXPORT_SYMBOL vmlinux 0x2792e504 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27af4018 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x27ba7ec8 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27e22f42 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x27e7e893 scsi_host_put +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x282f741b __check_sticky +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x284ff245 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x28527b6f tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x285a17ab jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x28640fa2 blk_put_request +EXPORT_SYMBOL vmlinux 0x2867a840 dev_close +EXPORT_SYMBOL vmlinux 0x289e1d1d __frontswap_store +EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a497d7 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x28a8d2e2 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x28c5bfa5 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x28c7591a tcp_req_err +EXPORT_SYMBOL vmlinux 0x28d7ffea lg_local_unlock +EXPORT_SYMBOL vmlinux 0x28db3e0e sg_miter_stop +EXPORT_SYMBOL vmlinux 0x28e83210 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x29063817 ppp_input_error +EXPORT_SYMBOL vmlinux 0x2911302e seq_open_private +EXPORT_SYMBOL vmlinux 0x291ba05d udplite_table +EXPORT_SYMBOL vmlinux 0x292c8c99 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295e969c __invalidate_device +EXPORT_SYMBOL vmlinux 0x2982391b sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x2984d3e2 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x29a2add1 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x29b2279e __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x29c36a4e padata_do_parallel +EXPORT_SYMBOL vmlinux 0x2a1cac7a bio_advance +EXPORT_SYMBOL vmlinux 0x2a274bc9 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a67533f pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x2a71fa84 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x2a811fb0 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x2a84eaae vga_get +EXPORT_SYMBOL vmlinux 0x2a888a3f udp6_set_csum +EXPORT_SYMBOL vmlinux 0x2aa1ad41 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ac17f6c prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x2ac5cc49 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ada0898 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x2ae9b08a nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x2af9bb31 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x2b06aa46 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b48344d __i2c_transfer +EXPORT_SYMBOL vmlinux 0x2b6ef8d9 fget +EXPORT_SYMBOL vmlinux 0x2b8f2ad1 simple_dname +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bac1a04 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2bc0e1b2 __quota_error +EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c02a77c mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x2c0b2172 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x2c1fc3de skb_queue_head +EXPORT_SYMBOL vmlinux 0x2c2524aa blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c7426e0 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x2c91da65 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x2ca89eca complete_request_key +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2cf8b475 sock_wake_async +EXPORT_SYMBOL vmlinux 0x2cf9525c input_inject_event +EXPORT_SYMBOL vmlinux 0x2d037685 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d1567e3 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d63e749 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x2d666334 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x2d71e046 blk_start_request +EXPORT_SYMBOL vmlinux 0x2d7987eb nvm_register +EXPORT_SYMBOL vmlinux 0x2dad6cfe napi_gro_frags +EXPORT_SYMBOL vmlinux 0x2daf36ad call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x2db1e0c6 dql_init +EXPORT_SYMBOL vmlinux 0x2dbb6f6f neigh_parms_release +EXPORT_SYMBOL vmlinux 0x2dd051b5 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x2dd586fe pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2de1327b bit_waitqueue +EXPORT_SYMBOL vmlinux 0x2de87ad5 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2c3ecc input_flush_device +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e360ace xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x2e3cc190 open_exec +EXPORT_SYMBOL vmlinux 0x2e3d58a1 pcibus_to_node +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e5a52ca simple_release_fs +EXPORT_SYMBOL vmlinux 0x2e63fdb3 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x2e7be112 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x2e801c55 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x2e81e949 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x2ea20df2 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x2ea4c1c9 lg_global_unlock +EXPORT_SYMBOL vmlinux 0x2eae7fba alloc_file +EXPORT_SYMBOL vmlinux 0x2ed704f6 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x2ed907e0 jbd2_journal_start_reserved +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 0x2f1640b1 elevator_init +EXPORT_SYMBOL vmlinux 0x2f1cbd77 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x2f223c5a phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x2f294d9b bdget_disk +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f3857e2 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x2f42225e pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f4f6ea8 keyring_clear +EXPORT_SYMBOL vmlinux 0x2fa82c32 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x2fa9c112 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fdcacdb devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x2fe00e42 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2feea620 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x2ff063b5 acpi_get_name +EXPORT_SYMBOL vmlinux 0x3000755c module_refcount +EXPORT_SYMBOL vmlinux 0x30112a6a neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x30120804 ppp_input +EXPORT_SYMBOL vmlinux 0x301b81f4 ip_options_compile +EXPORT_SYMBOL vmlinux 0x301c74d6 iunique +EXPORT_SYMBOL vmlinux 0x3026c9a9 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x304ec729 to_nd_btt +EXPORT_SYMBOL vmlinux 0x304ec72b _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x3050586b blk_recount_segments +EXPORT_SYMBOL vmlinux 0x305c0a70 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x305cec12 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x30875c22 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309bb1b0 sock_i_ino +EXPORT_SYMBOL vmlinux 0x30a40d1e inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x30a5e712 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b2cf19 devm_memunmap +EXPORT_SYMBOL vmlinux 0x30c88a74 elv_register_queue +EXPORT_SYMBOL vmlinux 0x30d05d25 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x30e25733 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x30e5feb3 dma_pool_create +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30e7c573 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x311d500f mmc_release_host +EXPORT_SYMBOL vmlinux 0x311f90d0 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x313f744a nd_device_unregister +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x314a96de blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x319fc770 get_acl +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31df3906 consume_skb +EXPORT_SYMBOL vmlinux 0x31e67aaf netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x31ea4eb8 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x32177c7a register_gifconf +EXPORT_SYMBOL vmlinux 0x324b3877 up +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x3253cc3b inet6_offloads +EXPORT_SYMBOL vmlinux 0x3257ce0d tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x328048d0 ps2_command +EXPORT_SYMBOL vmlinux 0x328e5749 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x32ccff8d mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x32d3d5d2 poll_initwait +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32f227a0 __register_chrdev +EXPORT_SYMBOL vmlinux 0x3300842f dquot_file_open +EXPORT_SYMBOL vmlinux 0x331130de kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x33137b83 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x33719f50 param_get_string +EXPORT_SYMBOL vmlinux 0x3392add5 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x3392dd18 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x33b5e6b0 skb_copy +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33cadd54 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x33e69247 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x33e989e2 dst_alloc +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x340a93ff pci_write_vpd +EXPORT_SYMBOL vmlinux 0x340aff03 check_disk_change +EXPORT_SYMBOL vmlinux 0x34108fce netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x343c2fbc path_get +EXPORT_SYMBOL vmlinux 0x344ff073 phy_connect +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x3470fc8b buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x347f3b97 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x348915bd param_ops_short +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349d9fa2 load_nls_default +EXPORT_SYMBOL vmlinux 0x34d7ec56 kern_path_create +EXPORT_SYMBOL vmlinux 0x34de80f7 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x34dfd36f udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x34e8957a balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x350373db generic_update_time +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3518f099 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x352bd5bf bdi_register_owner +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x3542d320 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x356128ba jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3571fe78 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x357a74d0 find_lock_entry +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b58734 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x35c18a94 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x35cd1fc2 phy_device_free +EXPORT_SYMBOL vmlinux 0x35f17fd6 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x35f20166 of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0x36030edd compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x3604b064 param_ops_bint +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x360f8f8a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x360ff19f down +EXPORT_SYMBOL vmlinux 0x361bcf82 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x362f02e7 notify_change +EXPORT_SYMBOL vmlinux 0x3640a65e ps2_init +EXPORT_SYMBOL vmlinux 0x36469fd8 current_fs_time +EXPORT_SYMBOL vmlinux 0x366350d6 qdisc_reset +EXPORT_SYMBOL vmlinux 0x3663e24c input_open_device +EXPORT_SYMBOL vmlinux 0x3666a85e sk_mc_loop +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36b3b373 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36f6c221 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x370f9850 efi +EXPORT_SYMBOL vmlinux 0x37145277 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x373a30c9 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37591a87 cdev_del +EXPORT_SYMBOL vmlinux 0x375db3e5 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x37770d84 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x37813aaf dquot_commit +EXPORT_SYMBOL vmlinux 0x378e8572 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x379b15f5 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37baca2f scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e66367 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x380ee87a abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0x3810bcde nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x38135695 n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3830d0ff set_create_files_as +EXPORT_SYMBOL vmlinux 0x3836b733 nf_log_register +EXPORT_SYMBOL vmlinux 0x3844b38a generic_show_options +EXPORT_SYMBOL vmlinux 0x386ca5e1 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x38785fc1 to_ndd +EXPORT_SYMBOL vmlinux 0x388152f9 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x38961a19 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x3899dd1c elevator_alloc +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38af7ab9 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x38b1359b pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x38b62b2b md_reload_sb +EXPORT_SYMBOL vmlinux 0x38c10919 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x38d2bf9d write_cache_pages +EXPORT_SYMBOL vmlinux 0x38ede639 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x3902bef4 nvm_register_target +EXPORT_SYMBOL vmlinux 0x3905fa17 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x3912aed4 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x39225ee5 sk_free +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x39502c8f lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x3960ff3e tty_hangup +EXPORT_SYMBOL vmlinux 0x396c4171 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x399894e5 sk_alloc +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a00f4a wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39c2fc7b blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x39cbe972 param_set_short +EXPORT_SYMBOL vmlinux 0x39cdc566 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x39cf7ec2 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x39d5e8df input_event +EXPORT_SYMBOL vmlinux 0x39dba886 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x39e44af7 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x39f47733 dump_align +EXPORT_SYMBOL vmlinux 0x3a34c7c0 tcp_filter +EXPORT_SYMBOL vmlinux 0x3a3ca38d neigh_update +EXPORT_SYMBOL vmlinux 0x3a3cdb84 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x3a4e89bd bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x3a6b64e3 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x3a7fdee3 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x3a975923 up_write +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa341ea ppp_unit_number +EXPORT_SYMBOL vmlinux 0x3ab41b25 __copy_in_user +EXPORT_SYMBOL vmlinux 0x3ac475b5 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x3ac947be vfs_setpos +EXPORT_SYMBOL vmlinux 0x3ac980b7 dqget +EXPORT_SYMBOL vmlinux 0x3ad518a2 kern_unmount +EXPORT_SYMBOL vmlinux 0x3ad6a049 xen_biovec_phys_mergeable +EXPORT_SYMBOL vmlinux 0x3ade004c filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x3adfde8c build_skb +EXPORT_SYMBOL vmlinux 0x3af7dc98 tcp_check_req +EXPORT_SYMBOL vmlinux 0x3b0a9d54 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x3b0c2a2b skb_clone_sk +EXPORT_SYMBOL vmlinux 0x3b300948 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x3b602178 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x3b63a26d dup_iter +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6691bf __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x3b739bed setup_new_exec +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b87effe scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x3b8bd58e kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x3b970728 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x3baf39d3 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x3bf092c6 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x3bf26930 bio_put +EXPORT_SYMBOL vmlinux 0x3c0425f4 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x3c06451b ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x3c3936d8 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x3c3d4196 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c413f7a skb_insert +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c4c71d1 soft_cursor +EXPORT_SYMBOL vmlinux 0x3c68943d set_user_nice +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3ca01542 netif_napi_del +EXPORT_SYMBOL vmlinux 0x3cc09653 of_dev_get +EXPORT_SYMBOL vmlinux 0x3cdc6e21 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x3cdf5e60 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cfa7a2c freezing_slow_path +EXPORT_SYMBOL vmlinux 0x3cfae893 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x3d093081 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x3d3749db bio_copy_kern +EXPORT_SYMBOL vmlinux 0x3d448b9e tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x3d6617cb down_write_trylock +EXPORT_SYMBOL vmlinux 0x3d69df6c bio_phys_segments +EXPORT_SYMBOL vmlinux 0x3d6e8ed4 no_llseek +EXPORT_SYMBOL vmlinux 0x3d82ebeb inode_permission +EXPORT_SYMBOL vmlinux 0x3d8b9a60 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x3d8d86d5 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3da6bfd8 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dc263b5 mmc_free_host +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3de1b86f nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x3deb5984 dev_deactivate +EXPORT_SYMBOL vmlinux 0x3df61bd4 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e145410 __init_rwsem +EXPORT_SYMBOL vmlinux 0x3e174cb7 key_type_keyring +EXPORT_SYMBOL vmlinux 0x3e19695d __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x3e1d3345 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x3e4a7759 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x3e528e1d fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x3e5dff54 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x3e6a54be clocksource_unregister +EXPORT_SYMBOL vmlinux 0x3e7033f8 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x3e7e27db nvm_end_io +EXPORT_SYMBOL vmlinux 0x3e8d7bda netdev_info +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3ef1a3f3 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x3ef22019 migrate_page +EXPORT_SYMBOL vmlinux 0x3f22e686 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f6444b5 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x3f6e4380 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x3f7bf738 dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x3f9f1df1 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x3fa214ad tcp_poll +EXPORT_SYMBOL vmlinux 0x3faece59 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff3ea59 stop_tty +EXPORT_SYMBOL vmlinux 0x4025d9c9 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x404e5abc param_get_bool +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x405ff0a2 inet_addr_type +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 0x40aa9348 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x40bd07a6 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c55542 acpi_pm_device_run_wake +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d4e72e dev_add_offload +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40decd2b mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x40e6df69 __nla_reserve +EXPORT_SYMBOL vmlinux 0x410f4bb7 __irq_regs +EXPORT_SYMBOL vmlinux 0x411057c5 __devm_request_region +EXPORT_SYMBOL vmlinux 0x412493e0 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x4132b80d input_register_handler +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4151732b file_remove_privs +EXPORT_SYMBOL vmlinux 0x415a7d7a uart_register_driver +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418d6744 tso_start +EXPORT_SYMBOL vmlinux 0x41a18d8f iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41c22e99 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x41ce9fd1 tty_name +EXPORT_SYMBOL vmlinux 0x41db1635 security_mmap_file +EXPORT_SYMBOL vmlinux 0x4209ede2 d_find_alias +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x4223f855 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x422d8ec3 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen +EXPORT_SYMBOL vmlinux 0x423aba3e page_waitqueue +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x4266efe4 phy_attach +EXPORT_SYMBOL vmlinux 0x426a8ac5 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x426c4d05 acl_by_type +EXPORT_SYMBOL vmlinux 0x427c7c07 i2c_master_send +EXPORT_SYMBOL vmlinux 0x4282c070 blk_init_tags +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42ae5af0 dqstats +EXPORT_SYMBOL vmlinux 0x42b81279 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x42c4fd94 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x42e0cf9b xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x42e24ad3 sk_stream_error +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4320d508 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x43505ecb i2c_transfer +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x4393a88b devm_free_irq +EXPORT_SYMBOL vmlinux 0x4396ba96 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x439c39d4 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x43da4131 empty_zero_page +EXPORT_SYMBOL vmlinux 0x43e4761f get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43f27333 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x442655c5 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x44498ed5 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x444b834e mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x4463324c netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x4471a734 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x449d580f crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x449e23d5 napi_complete_done +EXPORT_SYMBOL vmlinux 0x44a81d5f acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44c1ca3d pnp_possible_config +EXPORT_SYMBOL vmlinux 0x44e72f73 netdev_printk +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x45138852 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x45191a46 invalidate_partition +EXPORT_SYMBOL vmlinux 0x4523926d of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x453f1733 fd_install +EXPORT_SYMBOL vmlinux 0x456866d2 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457c7f3b phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x457eaa9f of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45c3ea61 netlink_unicast +EXPORT_SYMBOL vmlinux 0x45e7a204 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x45f8ae5f netlink_net_capable +EXPORT_SYMBOL vmlinux 0x46061f82 dst_destroy +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x4620a362 try_to_release_page +EXPORT_SYMBOL vmlinux 0x462c660f proc_dointvec +EXPORT_SYMBOL vmlinux 0x462e9def eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x46324bdc read_cache_pages +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 0x466679dc devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x4683d9cf vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x4683f847 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x469aaea6 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x46ab2ab6 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x46b938d6 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46c48d85 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x46c98550 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x46d8f8e4 sock_efree +EXPORT_SYMBOL vmlinux 0x46dd654f dev_mc_sync +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x4742f533 tty_unlock +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x47626089 param_set_long +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47b99315 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x480d1f4b vc_resize +EXPORT_SYMBOL vmlinux 0x48133575 phy_driver_register +EXPORT_SYMBOL vmlinux 0x4815b893 kernel_accept +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x48236302 kernel_bind +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x482bad48 bdget +EXPORT_SYMBOL vmlinux 0x48315aa5 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x4859cd72 phy_resume +EXPORT_SYMBOL vmlinux 0x48708a93 node_data +EXPORT_SYMBOL vmlinux 0x488db123 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bf7b0a xfrm_register_type +EXPORT_SYMBOL vmlinux 0x48c28a1a netlink_broadcast +EXPORT_SYMBOL vmlinux 0x48d729db tty_register_device +EXPORT_SYMBOL vmlinux 0x48ebd538 vfs_mknod +EXPORT_SYMBOL vmlinux 0x48f51ca6 netdev_crit +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x491f5daf scsi_print_sense +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x4968ed5e xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x496de091 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x49930938 idr_replace +EXPORT_SYMBOL vmlinux 0x4999b0f5 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x499cb808 __breadahead +EXPORT_SYMBOL vmlinux 0x49a1ee63 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x49af09fd security_path_rmdir +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49d14462 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x49d81a81 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x49e5da14 freeze_super +EXPORT_SYMBOL vmlinux 0x49e8efb9 dev_add_pack +EXPORT_SYMBOL vmlinux 0x49ed8df2 mpage_writepage +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a1956db jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x4a21fc56 thaw_super +EXPORT_SYMBOL vmlinux 0x4a24318a filemap_fault +EXPORT_SYMBOL vmlinux 0x4a2ad781 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x4a2ec279 dcache_readdir +EXPORT_SYMBOL vmlinux 0x4a3ac5bd nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x4a559419 down_read_trylock +EXPORT_SYMBOL vmlinux 0x4a7be0d4 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4a896260 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x4a9196a2 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x4aa3017a xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x4aaf3436 lock_rename +EXPORT_SYMBOL vmlinux 0x4ab19662 blk_get_queue +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4abbe4c5 pci_find_bus +EXPORT_SYMBOL vmlinux 0x4abbeb5b scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ae1d285 dcb_setapp +EXPORT_SYMBOL vmlinux 0x4af1cbff xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b011e3a inet_csk_accept +EXPORT_SYMBOL vmlinux 0x4b070733 register_netdevice +EXPORT_SYMBOL vmlinux 0x4b1e9328 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x4b588511 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x4b5d1365 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b78772d sock_wmalloc +EXPORT_SYMBOL vmlinux 0x4ba42638 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x4ba7d2c5 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x4ba9b6d2 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bb5f2fd nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x4beaf5cd cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x4beb9197 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x4bee519a __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x4bfa4837 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c156403 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x4c1d2cee igrab +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c57b348 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x4c628d37 put_cmsg +EXPORT_SYMBOL vmlinux 0x4c6f9ef3 test_and_change_bit +EXPORT_SYMBOL vmlinux 0x4c7c90ac nf_setsockopt +EXPORT_SYMBOL vmlinux 0x4c7d2a61 flow_cache_fini +EXPORT_SYMBOL vmlinux 0x4c8dea53 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x4c9504ff fb_pan_display +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4cb2289e acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x4cb3c28a ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x4cb467bb __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x4cb5107b vme_irq_handler +EXPORT_SYMBOL vmlinux 0x4cba806a pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x4cd97b65 mntget +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cf2171e noop_llseek +EXPORT_SYMBOL vmlinux 0x4cfb2b7b padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d2d88a5 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x4d31d48b netdev_notice +EXPORT_SYMBOL vmlinux 0x4d3e66a1 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x4d3f4724 skb_unlink +EXPORT_SYMBOL vmlinux 0x4d5130a2 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x4d5c8b28 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x4d648100 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9beec6 wireless_send_event +EXPORT_SYMBOL vmlinux 0x4daa3fe8 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x4dac5a43 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x4dbbc1a7 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x4dbf3f97 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x4dc3aa6f __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x4dc9eaca __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x4dd0fcc8 of_find_property +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e12441c qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x4e2b0225 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3d6bb0 security_inode_permission +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e87e2b8 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x4e92c3c6 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x4e9a0350 param_get_ushort +EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum +EXPORT_SYMBOL vmlinux 0x4eb56159 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x4ec01562 bmap +EXPORT_SYMBOL vmlinux 0x4ee42d72 elevator_change +EXPORT_SYMBOL vmlinux 0x4ee44234 key_put +EXPORT_SYMBOL vmlinux 0x4ef7f4d8 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1dcd3e dm_register_target +EXPORT_SYMBOL vmlinux 0x4f223ded bdi_init +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2b474a of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x4f2e7cd3 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f4dccb2 clear_inode +EXPORT_SYMBOL vmlinux 0x4f518e76 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f694542 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x4f6a6857 padata_free +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f7a4827 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x4f929497 sk_dst_check +EXPORT_SYMBOL vmlinux 0x4f9adfe6 lro_flush_all +EXPORT_SYMBOL vmlinux 0x4ff16ad6 vme_slot_num +EXPORT_SYMBOL vmlinux 0x4ffa64db xfrm_lookup +EXPORT_SYMBOL vmlinux 0x4fff1c88 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x500a200f vme_bus_num +EXPORT_SYMBOL vmlinux 0x5025785d __bforget +EXPORT_SYMBOL vmlinux 0x5029c29c security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x5053b5d1 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x50542d11 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x5063f001 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x5065e9d5 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50ad3c59 pci_bus_type +EXPORT_SYMBOL vmlinux 0x50b939dc nf_register_hook +EXPORT_SYMBOL vmlinux 0x50ba6744 __free_pages +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50c4fb3f free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50df6183 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x50ffcfb5 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x5131c053 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x5154e849 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x515e209b crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x5160a689 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x516def63 blk_put_queue +EXPORT_SYMBOL vmlinux 0x5174026e bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x51749fc8 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x517bec31 do_truncate +EXPORT_SYMBOL vmlinux 0x517c6b14 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x51863d93 module_layout +EXPORT_SYMBOL vmlinux 0x5198e8c9 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x51af99d6 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x51b87c3b update_region +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51d2d916 mmc_cleanup_queue +EXPORT_SYMBOL vmlinux 0x51e17ada block_truncate_page +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +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 0x5217e666 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x521ccc16 clear_nlink +EXPORT_SYMBOL vmlinux 0x5239ce3b ___ratelimit +EXPORT_SYMBOL vmlinux 0x524ea7e9 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x525248c0 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x52573583 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x52589d2c __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x52834acd backlight_device_register +EXPORT_SYMBOL vmlinux 0x5294f006 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52bc7d34 input_get_keycode +EXPORT_SYMBOL vmlinux 0x52c26253 block_commit_write +EXPORT_SYMBOL vmlinux 0x52dafce7 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x52e54430 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x53027e1a xattr_full_name +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530e387b gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x532e7dd5 pci_select_bars +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x533d6bb7 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x5351355b filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x535d1d46 dump_skip +EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x5388be0d dev_remove_offload +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53cd29b1 input_register_device +EXPORT_SYMBOL vmlinux 0x5407fcf0 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x541304ab tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x541bde7c param_set_bool +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54406bb5 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x54688d44 bdi_register +EXPORT_SYMBOL vmlinux 0x54811921 netdev_err +EXPORT_SYMBOL vmlinux 0x54a2ff7a security_file_permission +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54a9f647 kill_pid +EXPORT_SYMBOL vmlinux 0x54b029ad nf_reinject +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54d1fc2c filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x54d4bded ida_init +EXPORT_SYMBOL vmlinux 0x54e3bc23 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5551c00b mii_link_ok +EXPORT_SYMBOL vmlinux 0x556112ae fence_signal_locked +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x558bdfb3 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x558ca069 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x55bffcbf clear_wb_congested +EXPORT_SYMBOL vmlinux 0x55c1f833 uart_resume_port +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55dceaed ata_port_printk +EXPORT_SYMBOL vmlinux 0x55e2deba eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node +EXPORT_SYMBOL vmlinux 0x560c341f sg_miter_next +EXPORT_SYMBOL vmlinux 0x561aab0b fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x561ac685 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x562e4395 __bread_gfp +EXPORT_SYMBOL vmlinux 0x562f0f22 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x563156a2 phy_print_status +EXPORT_SYMBOL vmlinux 0x56342ce1 down_timeout +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5647f28b swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x56721e90 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x5679a4dd inet_frags_fini +EXPORT_SYMBOL vmlinux 0x568b3ed1 path_put +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56989fe5 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x56a67baf __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x56ab91a3 pci_get_slot +EXPORT_SYMBOL vmlinux 0x56c4e5b6 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x56c6c681 tty_vhangup +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56ea3e73 lookup_bdev +EXPORT_SYMBOL vmlinux 0x56f83259 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x56fa2817 key_revoke +EXPORT_SYMBOL vmlinux 0x56fff573 fasync_helper +EXPORT_SYMBOL vmlinux 0x5701259c dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x571aa567 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x571abb08 seq_escape +EXPORT_SYMBOL vmlinux 0x571bacc0 vfs_writev +EXPORT_SYMBOL vmlinux 0x572d0104 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5737f823 simple_empty +EXPORT_SYMBOL vmlinux 0x57399144 km_is_alive +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57534cf2 filemap_flush +EXPORT_SYMBOL vmlinux 0x5754f7d6 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x577d5812 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57987397 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x57a8792d walk_stackframe +EXPORT_SYMBOL vmlinux 0x57bf2852 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x581bb64d lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5829d8bc phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x5834a755 __get_page_tail +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58820185 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x589087a9 iterate_dir +EXPORT_SYMBOL vmlinux 0x589c5891 pci_pme_active +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58cca6f0 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x58d1b643 padata_start +EXPORT_SYMBOL vmlinux 0x58d2d7bd ps2_end_command +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58eaf787 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x58ec5e2d devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x58f22679 __alloc_skb +EXPORT_SYMBOL vmlinux 0x590822ea __dquot_free_space +EXPORT_SYMBOL vmlinux 0x5909fb03 netif_rx +EXPORT_SYMBOL vmlinux 0x59337c8d jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x59416372 path_is_under +EXPORT_SYMBOL vmlinux 0x594d00f6 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x595e664b force_sig +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59af6b62 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x59c5aca8 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x59d38879 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x59dafb88 dev_emerg +EXPORT_SYMBOL vmlinux 0x59dc28af free_page_put_link +EXPORT_SYMBOL vmlinux 0x59f1dfa1 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0bb360 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x5a3829ba vm_insert_page +EXPORT_SYMBOL vmlinux 0x5a56291e gnttab_free_pages +EXPORT_SYMBOL vmlinux 0x5a6231f5 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9c9cf3 lg_lock_init +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5aa26576 d_tmpfile +EXPORT_SYMBOL vmlinux 0x5aae6a06 mpage_readpage +EXPORT_SYMBOL vmlinux 0x5ae6ffaa compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x5aedc216 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b2e2531 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x5b42a7f8 register_cdrom +EXPORT_SYMBOL vmlinux 0x5b440057 __kfree_skb +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b5fde82 tty_lock +EXPORT_SYMBOL vmlinux 0x5b8c115a kernel_param_lock +EXPORT_SYMBOL vmlinux 0x5b9c808a acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0x5ba4e43a genphy_config_init +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bde24ac nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x5be7ba28 md_flush_request +EXPORT_SYMBOL vmlinux 0x5bedff64 inet_offloads +EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x5c721523 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x5c819823 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x5cd36b0f of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x5cd66756 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x5cd885d5 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x5cdc107f from_kprojid +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d0a062f hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio +EXPORT_SYMBOL vmlinux 0x5d173d2c xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x5d3dab77 dev_uc_add +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d9c1151 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x5da5bcc4 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x5da95b90 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x5db22b45 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x5db64241 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x5dbfead5 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x5dc5aa86 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x5e198dfb iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x5e32177d pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x5e7a211a simple_setattr +EXPORT_SYMBOL vmlinux 0x5e8afa16 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea3bf19 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x5ea79efe fence_default_wait +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb3ab61 free_user_ns +EXPORT_SYMBOL vmlinux 0x5ebde918 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x5ecb32cc sock_kfree_s +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5eda26c5 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x5efc0e5c msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0fd144 udp_add_offload +EXPORT_SYMBOL vmlinux 0x5f24b221 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x5f2ed800 mdiobus_read +EXPORT_SYMBOL vmlinux 0x5f4f99e7 should_remove_suid +EXPORT_SYMBOL vmlinux 0x5f527396 sync_filesystem +EXPORT_SYMBOL vmlinux 0x5f55145f request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x5f79b9a4 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x5f9907f1 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x5fb236a2 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x5fc45022 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x5fc7397e mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fdb7824 udp_disconnect +EXPORT_SYMBOL vmlinux 0x5fea2ee1 unregister_netdev +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600b7c63 pci_dev_get +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x603047e7 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x603b0f01 key_unlink +EXPORT_SYMBOL vmlinux 0x60593254 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x6068dde2 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x606f069a xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x60861fb9 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x609f5b35 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x60a369ca seq_printf +EXPORT_SYMBOL vmlinux 0x60b71565 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x60ce20ac skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x60cf8f21 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x60dd0c3d dma_sync_wait +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60dfd4e4 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x60e6b9fb __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x60e8fc1f ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x610e862f ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61487fa4 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x61520529 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x615dd2fd blk_queue_split +EXPORT_SYMBOL vmlinux 0x615ea749 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x61693988 find_vma +EXPORT_SYMBOL vmlinux 0x6186b983 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61a102bb phy_stop +EXPORT_SYMBOL vmlinux 0x61ac57d5 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x61b51a19 input_allocate_device +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c86256 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x61da9c60 dev_notice +EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x61f8418a phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621f9ab9 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6238a5af md_finish_reshape +EXPORT_SYMBOL vmlinux 0x623b2e20 register_shrinker +EXPORT_SYMBOL vmlinux 0x6256ab4a xfrm_register_km +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62748e70 acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x627fc14f phy_disconnect +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62866457 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x629aa56b input_unregister_handle +EXPORT_SYMBOL vmlinux 0x62a58df9 mdiobus_write +EXPORT_SYMBOL vmlinux 0x62aa5c4c put_page +EXPORT_SYMBOL vmlinux 0x62aea72e bitmap_unplug +EXPORT_SYMBOL vmlinux 0x62b86189 inc_nlink +EXPORT_SYMBOL vmlinux 0x62bbb41c sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x62c29023 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x62d7f204 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x62ebc226 cap_mmap_file +EXPORT_SYMBOL vmlinux 0x62fe84a2 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x630b6bc4 pci_request_region +EXPORT_SYMBOL vmlinux 0x6318237d unlock_page +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x63227a6f genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x63312722 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x6337bc97 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x6344bd0c inet_register_protosw +EXPORT_SYMBOL vmlinux 0x63454e62 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x635b6e3d seq_read +EXPORT_SYMBOL vmlinux 0x636130b7 tty_write_room +EXPORT_SYMBOL vmlinux 0x6378889c sock_create_kern +EXPORT_SYMBOL vmlinux 0x637a654f blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x63834be6 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x6383a7cc of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63aa2271 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63c5aaf8 setattr_copy +EXPORT_SYMBOL vmlinux 0x63d3c294 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403c490 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x641c5878 touch_atime +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x64705aad scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x648f441e dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0x649849ad request_key_async +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a3a0a3 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x64af9e04 sock_no_poll +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64dcbca8 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x64e4f8fb xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x6500615a mark_page_accessed +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652b1af2 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x65345022 __wake_up +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6543c090 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x654a0637 mdiobus_free +EXPORT_SYMBOL vmlinux 0x6552a0ce d_drop +EXPORT_SYMBOL vmlinux 0x655457f5 brioctl_set +EXPORT_SYMBOL vmlinux 0x655b15ae sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x6578fee1 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x659462dd blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x659d11f8 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x65a78e24 posix_lock_file +EXPORT_SYMBOL vmlinux 0x65b15189 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x65b8535a __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x65ca429d __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x65d054df dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65df6d56 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x65df860a inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65ecc234 dev_mc_init +EXPORT_SYMBOL vmlinux 0x65f04cda ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x65f1da6c neigh_xmit +EXPORT_SYMBOL vmlinux 0x65f25a11 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x65f80362 simple_statfs +EXPORT_SYMBOL vmlinux 0x661a8904 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x661f4b8d tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x66296576 init_task +EXPORT_SYMBOL vmlinux 0x662e6db1 dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x6654b3b5 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x665dd8e9 __dst_free +EXPORT_SYMBOL vmlinux 0x668dfbec inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x669109ee d_delete +EXPORT_SYMBOL vmlinux 0x670dad2f submit_bio_wait +EXPORT_SYMBOL vmlinux 0x670e3b6d sock_release +EXPORT_SYMBOL vmlinux 0x670ee310 security_path_symlink +EXPORT_SYMBOL vmlinux 0x6722a922 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x672709a6 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x67276286 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x6777c598 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x6793e9ed devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x67964c83 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67ca88d7 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x67fc1fd4 pipe_lock +EXPORT_SYMBOL vmlinux 0x68006ff7 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680adbda gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x680c3952 set_anon_super +EXPORT_SYMBOL vmlinux 0x68443d2a sock_no_accept +EXPORT_SYMBOL vmlinux 0x684cf612 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x687db543 pci_dev_put +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68aaf7cc forget_cached_acl +EXPORT_SYMBOL vmlinux 0x68ae490a tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68c22163 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x68e1d5f1 nf_afinfo +EXPORT_SYMBOL vmlinux 0x6902bd42 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x69273bdd pci_restore_state +EXPORT_SYMBOL vmlinux 0x6931f56c abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x69678bc7 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697163a5 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x6979808b bioset_free +EXPORT_SYMBOL vmlinux 0x697a417b scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x69867882 gen_pool_create +EXPORT_SYMBOL vmlinux 0x698aa83c audit_log +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69d6927e ___pskb_trim +EXPORT_SYMBOL vmlinux 0x69e55fb6 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x69fbc0a2 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a06f75b __serio_register_driver +EXPORT_SYMBOL vmlinux 0x6a20d586 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x6a3a900b param_set_byte +EXPORT_SYMBOL vmlinux 0x6a53a860 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a60277d acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x6a6b284f tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x6a6bc496 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6aaf50d7 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x6ab22f47 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x6ac3966a write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x6ac4d42c vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x6ac7db86 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6ad8f667 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x6ad9c1f1 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af01d2e blk_complete_request +EXPORT_SYMBOL vmlinux 0x6af47eb7 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x6b02e519 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b0c04ff inode_init_always +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b1d3157 generic_writepages +EXPORT_SYMBOL vmlinux 0x6b1ea6ef dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x6b1fb3fb sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b3a056d md_register_thread +EXPORT_SYMBOL vmlinux 0x6b3efb1e d_add_ci +EXPORT_SYMBOL vmlinux 0x6b49ea59 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x6b540b35 netdev_warn +EXPORT_SYMBOL vmlinux 0x6b5743c1 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x6b60cfd1 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b6bee5b copy_from_iter +EXPORT_SYMBOL vmlinux 0x6b71b046 compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x6b7957e6 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcc4cff tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x6bdbd117 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6c02d7f5 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x6c04c92b blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c0a24db of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x6c23fb58 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x6c24210f vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x6c2cdc47 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c52483b mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c620cf0 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x6c6aa7e6 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x6c6e25ea dst_release +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c7b2819 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x6c7c3493 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x6c89c637 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x6ca361ac neigh_event_ns +EXPORT_SYMBOL vmlinux 0x6cf2e977 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x6cfb31d2 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x6cfbc22b mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d25a542 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d5fdd04 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x6d7b9e08 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x6d9748b2 udp_poll +EXPORT_SYMBOL vmlinux 0x6da52417 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x6db442d4 dev_warn +EXPORT_SYMBOL vmlinux 0x6dbb8f2a ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e0a407c kthread_bind +EXPORT_SYMBOL vmlinux 0x6e4b0e8e rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x6e5174bf devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x6e662a0f skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e805810 fence_init +EXPORT_SYMBOL vmlinux 0x6e96b95b __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea76843 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x6ebcdec3 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x6ed445de kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x6ef90ceb fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x6f0b3217 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f26cb7b idr_get_next +EXPORT_SYMBOL vmlinux 0x6f2f29ff revert_creds +EXPORT_SYMBOL vmlinux 0x6f320e05 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x6f55ddc0 bio_chain +EXPORT_SYMBOL vmlinux 0x6f5ec7ec idr_init +EXPORT_SYMBOL vmlinux 0x6f662ab7 set_disk_ro +EXPORT_SYMBOL vmlinux 0x6f84e37e __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f922286 processors +EXPORT_SYMBOL vmlinux 0x6f96945e __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x6f9980b6 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x6fae6eaf __frontswap_test +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd3ba15 mmc_add_host +EXPORT_SYMBOL vmlinux 0x6fd60c09 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x700567b2 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x70076e7c xfrm_state_update +EXPORT_SYMBOL vmlinux 0x700bedb1 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x70114f3f mmc_of_parse +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7045e574 sock_rfree +EXPORT_SYMBOL vmlinux 0x704d23c0 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x706bf352 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x708ba3be flow_cache_init +EXPORT_SYMBOL vmlinux 0x709a27a7 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x70aaab35 inet_listen +EXPORT_SYMBOL vmlinux 0x70ad473e jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x70d4bbaa clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x70d7bfa2 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x70ef16c9 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x70ff9605 get_fs_type +EXPORT_SYMBOL vmlinux 0x7105ba25 tty_port_init +EXPORT_SYMBOL vmlinux 0x712300be __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x716a94e7 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x718afc3c forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71d6f2c9 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x71e1a078 security_path_link +EXPORT_SYMBOL vmlinux 0x71ff9f60 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x723a4a7e led_set_brightness +EXPORT_SYMBOL vmlinux 0x723b9298 sync_inode +EXPORT_SYMBOL vmlinux 0x7252d7b3 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x727e43dd __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x72837f32 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x72883e45 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x72937cce mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x72b08ba0 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x72d37fbd param_set_ulong +EXPORT_SYMBOL vmlinux 0x72e055f0 vfs_statfs +EXPORT_SYMBOL vmlinux 0x72e40332 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x730638b3 read_dev_sector +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL vmlinux 0x7325d8ab simple_rename +EXPORT_SYMBOL vmlinux 0x73308d75 follow_down +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x733cc0c3 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x733da669 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x734fadea scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x7350f689 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x7367b904 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x7378723c pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x73ab5616 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x73b975df param_set_uint +EXPORT_SYMBOL vmlinux 0x73ca869f phy_detach +EXPORT_SYMBOL vmlinux 0x73e48aa6 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x741608c3 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x74411a3d iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x744160f5 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x7443ff9b ll_rw_block +EXPORT_SYMBOL vmlinux 0x7444dd30 alloc_disk +EXPORT_SYMBOL vmlinux 0x7456d2c3 dev_get_flags +EXPORT_SYMBOL vmlinux 0x74600365 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7478ecb8 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74967202 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x74a2fe8b key_validate +EXPORT_SYMBOL vmlinux 0x74bf5c82 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74ccd95d mount_single +EXPORT_SYMBOL vmlinux 0x74e1ab4b devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f552f5 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x750f8421 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x75146ac5 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x752be5c2 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x754db32d d_find_any_alias +EXPORT_SYMBOL vmlinux 0x7551afe6 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x75539110 commit_creds +EXPORT_SYMBOL vmlinux 0x7554c495 kobject_del +EXPORT_SYMBOL vmlinux 0x75850d01 __vmalloc +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75d01f05 textsearch_register +EXPORT_SYMBOL vmlinux 0x75e3da73 locks_free_lock +EXPORT_SYMBOL vmlinux 0x75f82463 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x75fc7525 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7620506c mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x7645a64c mmc_align_data_size +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 0x766128d6 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x7672602e __mutex_init +EXPORT_SYMBOL vmlinux 0x767dd8fd acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0x769220c4 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x769dc718 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x76a5b343 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x76ab4be1 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x76abed3e scsi_register_driver +EXPORT_SYMBOL vmlinux 0x76ae9aa5 md_integrity_register +EXPORT_SYMBOL vmlinux 0x76c0314f vfs_llseek +EXPORT_SYMBOL vmlinux 0x76c064e2 inet_del_offload +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76de6423 get_io_context +EXPORT_SYMBOL vmlinux 0x76df9fb9 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x76ea4576 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x76f22dcb devm_ioport_map +EXPORT_SYMBOL vmlinux 0x770a853d dquot_acquire +EXPORT_SYMBOL vmlinux 0x770ebbf7 param_set_int +EXPORT_SYMBOL vmlinux 0x771a979c blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x771d725d of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77409324 rtnl_notify +EXPORT_SYMBOL vmlinux 0x774318ae xfrm_init_state +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x7780e1bc mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779adccd jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77ce44cb pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x77e86af9 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x77f418cb fb_set_suspend +EXPORT_SYMBOL vmlinux 0x77f53abc acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x77f928bb dqput +EXPORT_SYMBOL vmlinux 0x7818ee14 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x781d7ebf __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x7822bdf6 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x7825738a set_binfmt +EXPORT_SYMBOL vmlinux 0x782e3435 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x7837f619 mii_nway_restart +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783cec17 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x78458f01 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x786d1cb2 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7890f40a i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78c19a6d mempool_resize +EXPORT_SYMBOL vmlinux 0x78c792ea pci_pme_capable +EXPORT_SYMBOL vmlinux 0x78cbb60f qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x78d95925 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e4d473 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x78f665b7 __pagevec_release +EXPORT_SYMBOL vmlinux 0x78fb867c blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x7911f42d mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x79208997 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x79361f98 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x794a6683 nobh_write_begin +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 0x7a191369 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x7a3604aa swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x7a36b6d7 clkdev_alloc +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a548a95 node_states +EXPORT_SYMBOL vmlinux 0x7a5b152e xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x7a5cd103 bd_set_size +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a6f8e9a __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa4b39b i2c_master_recv +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ae27f96 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x7af1fd51 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x7b142ebb mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b2a9aad dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b35c37b sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x7b6646bb _raw_read_lock +EXPORT_SYMBOL vmlinux 0x7b7f886f unregister_cdrom +EXPORT_SYMBOL vmlinux 0x7b809578 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x7b924e2e downgrade_write +EXPORT_SYMBOL vmlinux 0x7babf6d5 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x7bda3189 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x7be42ad1 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x7be75ffc acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x7becf2b9 dst_init +EXPORT_SYMBOL vmlinux 0x7bedc788 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x7bf56d2c remove_proc_entry +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c242e2c input_set_capability +EXPORT_SYMBOL vmlinux 0x7c28baac rt6_lookup +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c4bc16b of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c78f77e gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x7c88fd67 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x7c986220 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb9959d md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x7cde2935 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf87f84 sock_wfree +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d3f4e84 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x7d4ceaae blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x7d52a3d0 unregister_key_type +EXPORT_SYMBOL vmlinux 0x7d5b0f03 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x7d5b8428 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d7d63df cpumask_next_and +EXPORT_SYMBOL vmlinux 0x7d877669 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7dab18c1 mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x7dc146b5 of_get_parent +EXPORT_SYMBOL vmlinux 0x7dc3cb90 param_set_bint +EXPORT_SYMBOL vmlinux 0x7dd4a914 pci_release_regions +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e0282d2 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x7e13d3e3 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x7e259843 bdevname +EXPORT_SYMBOL vmlinux 0x7e509b8b d_prune_aliases +EXPORT_SYMBOL vmlinux 0x7e76c5e6 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x7e793dda pipe_unlock +EXPORT_SYMBOL vmlinux 0x7e81ffbf ip6_xmit +EXPORT_SYMBOL vmlinux 0x7e8a1a5d phy_device_remove +EXPORT_SYMBOL vmlinux 0x7e9a4825 pci_choose_state +EXPORT_SYMBOL vmlinux 0x7e9da777 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x7ea6e45e devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x7ebd4be4 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x7ee37e4f of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee9c58e __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x7ef81d99 nd_iostat_end +EXPORT_SYMBOL vmlinux 0x7efb93b6 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x7f00596d inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f1fbe09 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f29a955 __inode_permission +EXPORT_SYMBOL vmlinux 0x7f35ccdb blk_sync_queue +EXPORT_SYMBOL vmlinux 0x7f387ee8 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x7f419fb0 init_net +EXPORT_SYMBOL vmlinux 0x7f430bcb __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x7f56a01d qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f6d4a48 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x7f925d90 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x7faa8239 set_bh_page +EXPORT_SYMBOL vmlinux 0x7fb58bc3 netlink_kernel_release +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 0x7ffc2fc2 bh_submit_read +EXPORT_SYMBOL vmlinux 0x801c11f3 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x8028b028 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x802cb200 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x803d57cf skb_put +EXPORT_SYMBOL vmlinux 0x803e8bdf phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x8043335d lock_sock_nested +EXPORT_SYMBOL vmlinux 0x8045404e __page_symlink +EXPORT_SYMBOL vmlinux 0x804d1092 padata_do_serial +EXPORT_SYMBOL vmlinux 0x804ff5dc max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x8056048b inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x805fd845 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x806966e8 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x80a6da13 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x80b95e28 udp_proc_register +EXPORT_SYMBOL vmlinux 0x80c52290 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80ca6ec9 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x80d55207 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x80d6311a sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x80eebb06 dquot_destroy +EXPORT_SYMBOL vmlinux 0x80fcb600 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x81426c19 poll_freewait +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 0x81863188 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x819f0039 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x81a7685b generic_readlink +EXPORT_SYMBOL vmlinux 0x81b1b2a6 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x81baaf5f cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x81bfe640 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e1d81f nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81eed3cd tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x81f4715a mmc_erase +EXPORT_SYMBOL vmlinux 0x81fd565c seq_puts +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x8216af36 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x821e1bb5 of_get_property +EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x82595310 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x825b51b2 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x8267a10f blk_get_request +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x827ab98e sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x8289a8a0 eth_header +EXPORT_SYMBOL vmlinux 0x828d442f neigh_connected_output +EXPORT_SYMBOL vmlinux 0x828f9e18 napi_get_frags +EXPORT_SYMBOL vmlinux 0x82a1ec17 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x82a2d583 of_match_device +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82ba2c7f pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x82d0f2cb udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x82edddcb __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x82ef29de udp_set_csum +EXPORT_SYMBOL vmlinux 0x830c8103 phy_suspend +EXPORT_SYMBOL vmlinux 0x832a1b55 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x834cf3d5 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x835dbeb0 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x839afd6b truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x83a9be25 __block_write_begin +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83c6a6cf kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x83d6e17e ilookup5 +EXPORT_SYMBOL vmlinux 0x83d797f1 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x8430de97 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x8444fa07 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x8444fe43 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x844a2b41 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x84571b0d locks_init_lock +EXPORT_SYMBOL vmlinux 0x8480587f seq_lseek +EXPORT_SYMBOL vmlinux 0x84a3bf0c cdrom_open +EXPORT_SYMBOL vmlinux 0x84c1ace9 iput +EXPORT_SYMBOL vmlinux 0x84df617a ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x85061b76 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x8515aba5 sock_no_listen +EXPORT_SYMBOL vmlinux 0x851998e9 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x852b3e17 d_make_root +EXPORT_SYMBOL vmlinux 0x852d67d7 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x854dcb33 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85672655 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x8592a9f9 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x85af8186 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x85b21efb dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bc3022 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x85bd7498 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x85c9f59b of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f6fcd0 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x860134f9 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x8604bfcb i2c_register_driver +EXPORT_SYMBOL vmlinux 0x860e7df9 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x86294771 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x863d5e0a truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x864f209d lookup_one_len +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x8693df4c nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x869c7fc2 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86acde41 pci_release_region +EXPORT_SYMBOL vmlinux 0x86bff7dd xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x86c53a26 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x86ea4d38 complete_all +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fd5f6b kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x870e26ff inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x87188752 tcp_connect +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x87237f1e phy_device_register +EXPORT_SYMBOL vmlinux 0x873ee21f devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x877fd4b5 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x8784cf9c nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87af37d6 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x87b3fc7b key_invalidate +EXPORT_SYMBOL vmlinux 0x87dc2f92 register_key_type +EXPORT_SYMBOL vmlinux 0x87eb69f5 irq_stat +EXPORT_SYMBOL vmlinux 0x87ecb7f3 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x87ef04e9 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x88046cce blk_end_request_all +EXPORT_SYMBOL vmlinux 0x881ada3a abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x881f3689 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x884c4df8 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x885ff27d nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x8872faca fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x88961621 kill_block_super +EXPORT_SYMBOL vmlinux 0x8898953d serio_interrupt +EXPORT_SYMBOL vmlinux 0x88a8e645 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x88b3c7d9 simple_write_begin +EXPORT_SYMBOL vmlinux 0x88b4e83b down_trylock +EXPORT_SYMBOL vmlinux 0x88f43cc1 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x89041235 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x89088815 scsi_init_io +EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat +EXPORT_SYMBOL vmlinux 0x892de3fb __nla_put +EXPORT_SYMBOL vmlinux 0x892dfb5a tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x8935cc93 led_update_brightness +EXPORT_SYMBOL vmlinux 0x89419a92 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x89454a27 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89f426e1 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x8a02fb1d inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x8a0ab86f dev_remove_pack +EXPORT_SYMBOL vmlinux 0x8a0fd09d inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x8a15c9ac padata_alloc +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a277c5b unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x8a3a51db pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x8a3d8114 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x8a3d8fbf tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x8a41ea76 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a5c4842 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a6b996b vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x8a6c5456 eth_type_trans +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9b679a md_write_end +EXPORT_SYMBOL vmlinux 0x8aa57c4f udp_table +EXPORT_SYMBOL vmlinux 0x8ab902f2 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x8ad02295 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x8ade553e xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x8b0aa1ed blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x8b204f01 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x8b20c48d d_alloc +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b3c5638 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b484538 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x8b5f02d1 ata_link_printk +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8bc4d61f inode_get_bytes +EXPORT_SYMBOL vmlinux 0x8bc65db7 ip_defrag +EXPORT_SYMBOL vmlinux 0x8bc6e5ef kfree_put_link +EXPORT_SYMBOL vmlinux 0x8bd0a3fd _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x8c588698 skb_seq_read +EXPORT_SYMBOL vmlinux 0x8c5a4683 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x8c5e1853 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x8c5ec666 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c710d91 console_stop +EXPORT_SYMBOL vmlinux 0x8c7dc333 clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0x8c82d955 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x8cb170e5 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x8cb19759 redraw_screen +EXPORT_SYMBOL vmlinux 0x8cb429b6 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x8cc0db18 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x8ccfb64f alloc_disk_node +EXPORT_SYMBOL vmlinux 0x8cd45d5c devm_request_resource +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cdb2620 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x8ce2b802 bdev_read_only +EXPORT_SYMBOL vmlinux 0x8ceeea1f vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x8d053823 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x8d05d6fd xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x8d168b2d rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x8d1fe686 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x8d2dc506 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x8d362497 tcp_prot +EXPORT_SYMBOL vmlinux 0x8d385333 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d564e25 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x8d6c4d96 mount_nodev +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d7a8f6d arp_create +EXPORT_SYMBOL vmlinux 0x8d80885e param_get_charp +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8d99b80b vfs_link +EXPORT_SYMBOL vmlinux 0x8d9b0681 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8dc90ffc locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x8de8ab7b ns_capable +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8e52f95c netdev_emerg +EXPORT_SYMBOL vmlinux 0x8e58efb1 md_update_sb +EXPORT_SYMBOL vmlinux 0x8e58f3df rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x8e73684e pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e7d7f78 dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0x8e85a252 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x8ebaa876 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x8ebdd7f2 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x8ec48295 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x8ece9ee5 arp_send +EXPORT_SYMBOL vmlinux 0x8edbb366 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x8edd4cb6 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x8f1f15b9 drop_nlink +EXPORT_SYMBOL vmlinux 0x8f3787be panic_notifier_list +EXPORT_SYMBOL vmlinux 0x8f520c1f scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x8f529656 d_splice_alias +EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x8f80eaa9 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x8f9a882e free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x8f9cb02e gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x8fa63bbe bio_split +EXPORT_SYMBOL vmlinux 0x8fa997e8 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x8fac296b mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x8fbf316e dcache_dir_open +EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x902ced83 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x90453bf9 blkdev_put +EXPORT_SYMBOL vmlinux 0x90483b4a nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x904b1525 generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x90602036 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x9061dc4c skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x907379bb pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x908e73e7 sock_edemux +EXPORT_SYMBOL vmlinux 0x90ab2055 d_lookup +EXPORT_SYMBOL vmlinux 0x90ac3102 dev_base_lock +EXPORT_SYMBOL vmlinux 0x90b61dd6 param_ops_bool +EXPORT_SYMBOL vmlinux 0x90c6f5ff blk_free_tags +EXPORT_SYMBOL vmlinux 0x90cf3f09 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x90ee4635 generic_read_dir +EXPORT_SYMBOL vmlinux 0x90f08655 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x9118033d netif_napi_add +EXPORT_SYMBOL vmlinux 0x9128b7ef clk_add_alias +EXPORT_SYMBOL vmlinux 0x912a0f62 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x912e8123 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x9141ad77 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x918c6374 mempool_alloc +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91b43bcf blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x91c0402f release_firmware +EXPORT_SYMBOL vmlinux 0x91edd716 I_BDEV +EXPORT_SYMBOL vmlinux 0x91f428c4 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x91ff4343 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x921592ec kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x921c3d30 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x9223b916 set_page_dirty +EXPORT_SYMBOL vmlinux 0x9232c387 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x92394e12 __elv_add_request +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92622c74 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x92663ef4 __put_cred +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92a44a80 fence_add_callback +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92b55251 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x92b5cdc1 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x92b8e948 phy_find_first +EXPORT_SYMBOL vmlinux 0x92bfdef8 amba_driver_register +EXPORT_SYMBOL vmlinux 0x92ca30d8 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x92cd8079 iterate_fd +EXPORT_SYMBOL vmlinux 0x92e0125d dquot_commit_info +EXPORT_SYMBOL vmlinux 0x92f1c18f pci_platform_rom +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fca5a9 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9312f3a6 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x93134d9a request_key +EXPORT_SYMBOL vmlinux 0x931fe367 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x932c8db3 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x932fc9d1 km_state_notify +EXPORT_SYMBOL vmlinux 0x934846e7 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x9373a99d jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x937b45d0 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x9390f226 ida_destroy +EXPORT_SYMBOL vmlinux 0x939fb3d7 d_walk +EXPORT_SYMBOL vmlinux 0x93a7b976 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93f27ab2 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x93f3e52b acpi_extract_package +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x940c454e blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x940eb858 pci_set_master +EXPORT_SYMBOL vmlinux 0x94214b6f __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x943e27d1 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x944c0133 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x94532988 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x9459a5fa mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x94673409 of_device_register +EXPORT_SYMBOL vmlinux 0x947560a7 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x94798ea0 unload_nls +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94998cb5 put_tty_driver +EXPORT_SYMBOL vmlinux 0x949b754f mempool_destroy +EXPORT_SYMBOL vmlinux 0x949fc516 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x94a35124 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x94b4e0f3 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x94c633ea inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x94e12d86 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x94e8f014 softnet_data +EXPORT_SYMBOL vmlinux 0x94fc00e5 dq_data_lock +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x95140216 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x95300133 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception +EXPORT_SYMBOL vmlinux 0x95441add twl6040_power +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95783ebb netpoll_setup +EXPORT_SYMBOL vmlinux 0x958f9180 tty_port_close +EXPORT_SYMBOL vmlinux 0x959f5de0 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x95dac1be of_parse_phandle +EXPORT_SYMBOL vmlinux 0x95dc953a inode_dio_wait +EXPORT_SYMBOL vmlinux 0x95e741e8 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x95e9b9f8 vm_mmap +EXPORT_SYMBOL vmlinux 0x961fc238 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x96220280 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x96238e21 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x9632199d fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x966bccdf smp_call_function_many +EXPORT_SYMBOL vmlinux 0x967a93f4 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x9683ba3b sock_init_data +EXPORT_SYMBOL vmlinux 0x96a5dd81 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x96a982d7 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96bbe4a1 seq_putc +EXPORT_SYMBOL vmlinux 0x96be1107 may_umount_tree +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96ebaa97 of_device_is_available +EXPORT_SYMBOL vmlinux 0x9719c76c udp_ioctl +EXPORT_SYMBOL vmlinux 0x9720e111 of_get_min_tck +EXPORT_SYMBOL vmlinux 0x97231a8d blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x9727df03 __kernel_write +EXPORT_SYMBOL vmlinux 0x9732acc8 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x973ab7ea lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x974ceafe pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x976749bb bio_endio +EXPORT_SYMBOL vmlinux 0x976cc814 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x9783b5b2 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x979a889d nf_hook_slow +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97a907e5 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x97ab6f8e pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x97c5aa96 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x97d0a9d4 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x97fdbab9 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x98082790 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x98082893 __copy_to_user +EXPORT_SYMBOL vmlinux 0x9818c85c of_match_node +EXPORT_SYMBOL vmlinux 0x981a0a65 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x9850e851 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x98563c6e bdput +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x987aafd2 block_write_begin +EXPORT_SYMBOL vmlinux 0x988cc3de nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x9892128c devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x9894ed7c bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x98b62324 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x98b93a0a kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x98bb6348 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98edb633 dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99466f9e inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x9963162a iterate_supers_type +EXPORT_SYMBOL vmlinux 0x997d3748 param_ops_string +EXPORT_SYMBOL vmlinux 0x998a06c0 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x9996d0bf netlink_ack +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99b0c670 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99edb2f8 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x99fc5db2 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x9a0646ab xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x9a0a2342 vme_slave_request +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a38a63b devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x9a47a1ce cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x9a4a3511 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x9a5abf07 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x9a6e9b5c sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x9a7d9aeb nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x9a908b80 test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x9a9ccada input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x9aba27a8 blkdev_get +EXPORT_SYMBOL vmlinux 0x9ada237a fget_raw +EXPORT_SYMBOL vmlinux 0x9ae1daf3 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9aedf6a2 genphy_resume +EXPORT_SYMBOL vmlinux 0x9af11008 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x9af2c9bd tty_free_termios +EXPORT_SYMBOL vmlinux 0x9af7adce blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x9b03e7b5 mmc_can_reset +EXPORT_SYMBOL vmlinux 0x9b144b40 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x9b19111f nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x9b263f33 __serio_register_port +EXPORT_SYMBOL vmlinux 0x9b2f6d99 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b3a5843 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x9b4402f3 vfs_rename +EXPORT_SYMBOL vmlinux 0x9b44eb6d request_firmware +EXPORT_SYMBOL vmlinux 0x9b61a4ae cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x9b91b0f0 file_path +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bc6ef31 add_wait_queue +EXPORT_SYMBOL vmlinux 0x9bd3ef6d netif_receive_skb +EXPORT_SYMBOL vmlinux 0x9be78f49 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9c181833 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x9c1b4820 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x9c2093d9 sk_net_capable +EXPORT_SYMBOL vmlinux 0x9c2c122b tcp_read_sock +EXPORT_SYMBOL vmlinux 0x9c396a24 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x9c40f9b3 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c4a6467 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x9c5bc552 finish_wait +EXPORT_SYMBOL vmlinux 0x9c5de34a end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x9c6576fd phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x9c841870 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x9ca0b4ac kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb31eac d_genocide +EXPORT_SYMBOL vmlinux 0x9cc56ec2 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x9cdf8622 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x9ce1b11e tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x9ce37171 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x9cf231ba km_state_expired +EXPORT_SYMBOL vmlinux 0x9cf396f8 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d455ff3 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x9d472f77 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x9d633636 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x9d6c5d7c scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x9d7e14ff inet_sendpage +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9da0b063 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x9df4a575 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x9e063237 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e27a572 done_path_create +EXPORT_SYMBOL vmlinux 0x9e2b39fe of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e315bbf devm_iounmap +EXPORT_SYMBOL vmlinux 0x9e43a4c8 skb_dequeue +EXPORT_SYMBOL vmlinux 0x9e4425a0 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x9e4edb01 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e692ec6 scmd_printk +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e837df1 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x9e8503dc blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ee552ac mntput +EXPORT_SYMBOL vmlinux 0x9eeeb51d of_get_address +EXPORT_SYMBOL vmlinux 0x9efd8991 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x9efe9dfe find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x9f11be7e down_killable +EXPORT_SYMBOL vmlinux 0x9f122829 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x9f236e45 netlink_capable +EXPORT_SYMBOL vmlinux 0x9f277d14 neigh_lookup +EXPORT_SYMBOL vmlinux 0x9f33a021 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x9f3e05bd iov_iter_npages +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f626425 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa866f7 kobject_get +EXPORT_SYMBOL vmlinux 0x9fbdfce9 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x9fc9e50d __getblk_gfp +EXPORT_SYMBOL vmlinux 0x9fcc8edb flush_old_exec +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fea5f4f proc_remove +EXPORT_SYMBOL vmlinux 0x9fef467e inet_frag_find +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffa650f sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xa040e8f2 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa0510e64 up_read +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa07191b2 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xa0791e6a set_wb_congested +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa07f355f param_set_copystring +EXPORT_SYMBOL vmlinux 0xa080f93b inet6_add_offload +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0964816 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xa0987e2a pci_scan_slot +EXPORT_SYMBOL vmlinux 0xa0afa028 blk_stop_queue +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0ba3a5f qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xa0c1d014 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xa0c86528 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xa0da591e dma_async_device_register +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0de4ea5 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xa0e1865f blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0f03c5f mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0xa0f2b252 pnp_device_detach +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0fca1d5 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa110760d update_devfreq +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 0xa18782a4 kernel_read +EXPORT_SYMBOL vmlinux 0xa19cbf3f simple_nosetlease +EXPORT_SYMBOL vmlinux 0xa1ac9469 tty_throttle +EXPORT_SYMBOL vmlinux 0xa1b1aea4 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1cad8a1 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xa1d5158f dcache_dir_close +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1e5c4f2 mmc_get_card +EXPORT_SYMBOL vmlinux 0xa1ef6823 __scm_destroy +EXPORT_SYMBOL vmlinux 0xa1f03dd8 tcp_prequeue +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa20a185c pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xa2320c8d simple_link +EXPORT_SYMBOL vmlinux 0xa23a2e79 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xa25d6f3e read_code +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa295461e blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2b5b386 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0xa2ba7fba amba_device_register +EXPORT_SYMBOL vmlinux 0xa2db5586 km_policy_expired +EXPORT_SYMBOL vmlinux 0xa3171232 dev_load +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa339f489 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xa3441047 new_inode +EXPORT_SYMBOL vmlinux 0xa344db40 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xa3519068 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xa35739d4 fb_set_cmap +EXPORT_SYMBOL vmlinux 0xa359ae2d proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xa35c8bfd ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xa35d091e alloc_fcdev +EXPORT_SYMBOL vmlinux 0xa371a7b3 clkdev_add +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa38368fd scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xa383b276 elv_rb_add +EXPORT_SYMBOL vmlinux 0xa3880fc2 scsi_device_get +EXPORT_SYMBOL vmlinux 0xa3b74c61 set_posix_acl +EXPORT_SYMBOL vmlinux 0xa3bc98ee gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xa3c6ab53 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xa3cdd5cb dm_unregister_target +EXPORT_SYMBOL vmlinux 0xa3e17f56 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0xa3ea5b5b md_cluster_ops +EXPORT_SYMBOL vmlinux 0xa3eb8a0c nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xa3ed665b tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xa3f3685b d_set_fallthru +EXPORT_SYMBOL vmlinux 0xa3fb5a6b pci_find_capability +EXPORT_SYMBOL vmlinux 0xa4074008 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xa4127435 bio_init +EXPORT_SYMBOL vmlinux 0xa416e9c0 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xa4283963 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xa43a6671 sk_common_release +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa46156d6 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa472d311 make_kprojid +EXPORT_SYMBOL vmlinux 0xa47418d2 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xa47cd164 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xa484ef4c cont_write_begin +EXPORT_SYMBOL vmlinux 0xa4d45505 dev_addr_add +EXPORT_SYMBOL vmlinux 0xa4ecfb78 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0xa4f7f0c8 drop_super +EXPORT_SYMBOL vmlinux 0xa503eeb9 simple_unlink +EXPORT_SYMBOL vmlinux 0xa5325bb7 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xa5382efb compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa573f947 backlight_force_update +EXPORT_SYMBOL vmlinux 0xa58404af remove_arg_zero +EXPORT_SYMBOL vmlinux 0xa597490f skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa599609e abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xa59dc190 vme_master_request +EXPORT_SYMBOL vmlinux 0xa59f244a fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5b36af8 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xa5c7cd97 d_invalidate +EXPORT_SYMBOL vmlinux 0xa5ce5650 __brelse +EXPORT_SYMBOL vmlinux 0xa5cf4a2c pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xa628b13b bdgrab +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa63f6f7c vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xa65111fc mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xa65738f5 of_dev_put +EXPORT_SYMBOL vmlinux 0xa662eb6f vmap +EXPORT_SYMBOL vmlinux 0xa66437c9 of_clk_get +EXPORT_SYMBOL vmlinux 0xa66b3757 param_get_uint +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa67db584 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xa67eb908 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa694792d nf_log_trace +EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error +EXPORT_SYMBOL vmlinux 0xa6e3e50f phy_device_create +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa704234a __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa742a666 follow_down_one +EXPORT_SYMBOL vmlinux 0xa7506195 scsi_print_command +EXPORT_SYMBOL vmlinux 0xa770aec3 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xa77a9d73 of_node_put +EXPORT_SYMBOL vmlinux 0xa78df2bb simple_transaction_release +EXPORT_SYMBOL vmlinux 0xa79a6f67 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xa7ae4536 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xa7b23bc4 page_put_link +EXPORT_SYMBOL vmlinux 0xa7be526f _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xa7f36c98 touch_buffer +EXPORT_SYMBOL vmlinux 0xa7fa656c serio_close +EXPORT_SYMBOL vmlinux 0xa7fc8f59 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa859ddde tcf_register_action +EXPORT_SYMBOL vmlinux 0xa8649b4e sk_receive_skb +EXPORT_SYMBOL vmlinux 0xa86c800d sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa8724a5b blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xa87cf413 clear_bit +EXPORT_SYMBOL vmlinux 0xa89ddc05 ipv4_specific +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8b4b485 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xa8c23d8a mii_check_link +EXPORT_SYMBOL vmlinux 0xa8c33bf0 __vfs_write +EXPORT_SYMBOL vmlinux 0xa8db09b8 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9049767 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xa90ad6b7 inet_put_port +EXPORT_SYMBOL vmlinux 0xa91061df kill_bdev +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91d90d3 nla_put +EXPORT_SYMBOL vmlinux 0xa921d452 prepare_creds +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa92adc09 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xa935ef5c dev_get_iflink +EXPORT_SYMBOL vmlinux 0xa944646e nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa98d1b72 console_start +EXPORT_SYMBOL vmlinux 0xa98f83b7 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xa994c670 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa99fb7e6 tty_port_open +EXPORT_SYMBOL vmlinux 0xa9afc6b9 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xa9b248b6 idr_for_each +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9ce5189 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xa9d69774 __break_lease +EXPORT_SYMBOL vmlinux 0xaa14e961 __lock_buffer +EXPORT_SYMBOL vmlinux 0xaa2f50cd con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xaa6421ec vfs_mkdir +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa70ea80 dquot_enable +EXPORT_SYMBOL vmlinux 0xaa81c171 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xaa90a506 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xaa9b067f __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xaa9c60a1 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xaaa61f7a __secpath_destroy +EXPORT_SYMBOL vmlinux 0xaacc3134 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad5fb75 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaaeb3c22 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab07b06e fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0xab2739e0 dma_find_channel +EXPORT_SYMBOL vmlinux 0xab29df1e jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xab31b781 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0xab3c420a pcim_iomap +EXPORT_SYMBOL vmlinux 0xab40cca9 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xab4799bd __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xab51019c migrate_page_move_mapping +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 0xab71597b get_super +EXPORT_SYMBOL vmlinux 0xab719df5 keyring_search +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab79e885 scsi_execute +EXPORT_SYMBOL vmlinux 0xab7f3e48 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xab913645 alloc_pages_current +EXPORT_SYMBOL vmlinux 0xab9cbdac param_get_int +EXPORT_SYMBOL vmlinux 0xab9f0fbf free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xab9f20b7 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xaba25633 clk_get +EXPORT_SYMBOL vmlinux 0xabaaf1ce netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xabbbd444 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xabc2f778 vfs_readv +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabe27c0b cad_pid +EXPORT_SYMBOL vmlinux 0xabe2fcde ip_ct_attach +EXPORT_SYMBOL vmlinux 0xabedaf46 __d_drop +EXPORT_SYMBOL vmlinux 0xabfb78b1 netif_device_attach +EXPORT_SYMBOL vmlinux 0xac00aa71 dev_driver_string +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1b5dd4 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xac34904d tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac514c41 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xac5376b4 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xac632b25 __genl_register_family +EXPORT_SYMBOL vmlinux 0xac79765f find_get_pages_tag +EXPORT_SYMBOL vmlinux 0xac7b3787 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xac9d2d83 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xaca78409 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb38813 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xacbb69c5 mmc_request_done +EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacdf9371 padata_stop +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0809d8 user_path_at_empty +EXPORT_SYMBOL vmlinux 0xad0dbadf scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad1d8429 proc_set_size +EXPORT_SYMBOL vmlinux 0xad77c231 kdb_current_task +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad919707 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xad9c8b6a filp_close +EXPORT_SYMBOL vmlinux 0xadac1d4b nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xadcd3b09 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xadec48a8 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae01161c get_disk +EXPORT_SYMBOL vmlinux 0xae4a1bda csum_tcpudp_nofold +EXPORT_SYMBOL vmlinux 0xae4a40b6 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xae8c4d0c set_bit +EXPORT_SYMBOL vmlinux 0xae997e07 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xae9e22bb xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xaea48f2a netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xaec2bda7 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xaed8c948 skb_checksum +EXPORT_SYMBOL vmlinux 0xaede0e24 of_iomap +EXPORT_SYMBOL vmlinux 0xaee76d55 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xaf071e7e __find_get_block +EXPORT_SYMBOL vmlinux 0xaf109ec1 kill_litter_super +EXPORT_SYMBOL vmlinux 0xaf11803b sock_setsockopt +EXPORT_SYMBOL vmlinux 0xaf1941a0 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xaf2c2a80 proc_set_user +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf4316ba of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xaf53c601 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xaf5cb37a compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xaf60ccda mmc_start_bkops +EXPORT_SYMBOL vmlinux 0xaf6a7a07 netdev_alert +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf72142d udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xaf772cd6 max8998_update_reg +EXPORT_SYMBOL vmlinux 0xaf8a2797 bio_add_page +EXPORT_SYMBOL vmlinux 0xaf9a7ef1 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xaf9c5ef2 dquot_drop +EXPORT_SYMBOL vmlinux 0xafae2a09 vfs_readf +EXPORT_SYMBOL vmlinux 0xafd21e34 pci_clear_master +EXPORT_SYMBOL vmlinux 0xafda6bcc get_empty_filp +EXPORT_SYMBOL vmlinux 0xafefde72 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xaff02e69 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xb00f9679 vfs_fsync +EXPORT_SYMBOL vmlinux 0xb028afe5 amba_device_unregister +EXPORT_SYMBOL vmlinux 0xb047aa81 param_get_ullong +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0808e73 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xb08ecba3 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0bc9cff dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xb0bf4a02 simple_follow_link +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0fd67e2 vlan_vid_del +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb128f58d inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb138000d dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset +EXPORT_SYMBOL vmlinux 0xb1509931 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb15e017e icmpv6_send +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb1740f26 make_bad_inode +EXPORT_SYMBOL vmlinux 0xb174216d pci_reenable_device +EXPORT_SYMBOL vmlinux 0xb1762820 nobh_writepage +EXPORT_SYMBOL vmlinux 0xb18b00a4 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xb1b12505 vc_cons +EXPORT_SYMBOL vmlinux 0xb1c39fc9 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1d53aad eth_gro_complete +EXPORT_SYMBOL vmlinux 0xb1fc3690 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xb200b328 kill_pgrp +EXPORT_SYMBOL vmlinux 0xb20ecf88 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xb21d6aad dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0xb264b556 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb2980457 sk_capable +EXPORT_SYMBOL vmlinux 0xb29e0c9a posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xb2a9ee48 phy_init_eee +EXPORT_SYMBOL vmlinux 0xb2ba43e2 start_tty +EXPORT_SYMBOL vmlinux 0xb2bcd855 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2c52c15 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xb2cb133c vfs_writef +EXPORT_SYMBOL vmlinux 0xb307a013 unregister_console +EXPORT_SYMBOL vmlinux 0xb30b4b67 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb32ba50f set_security_override +EXPORT_SYMBOL vmlinux 0xb3334bae fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xb33ec895 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xb3658c93 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xb37bee52 rename_lock +EXPORT_SYMBOL vmlinux 0xb3819801 phy_start +EXPORT_SYMBOL vmlinux 0xb39be34f __register_nls +EXPORT_SYMBOL vmlinux 0xb3a0662a i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xb3af1866 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xb3b092f3 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xb3c832a9 dquot_transfer +EXPORT_SYMBOL vmlinux 0xb3cbe8f9 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3eca511 param_ops_charp +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3f80478 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb457d5b4 padata_add_cpu +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class +EXPORT_SYMBOL vmlinux 0xb479033f search_binary_handler +EXPORT_SYMBOL vmlinux 0xb4a4e025 truncate_setsize +EXPORT_SYMBOL vmlinux 0xb4bf5cef param_get_short +EXPORT_SYMBOL vmlinux 0xb4c384bf PDE_DATA +EXPORT_SYMBOL vmlinux 0xb4ca3c5e tty_check_change +EXPORT_SYMBOL vmlinux 0xb4d08e0a devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xb4d8f5f0 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xb4e0d8db tc_classify +EXPORT_SYMBOL vmlinux 0xb4fc735b idr_remove +EXPORT_SYMBOL vmlinux 0xb5146289 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xb516ec30 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xb55b4950 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5794c08 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5baa84c security_path_chown +EXPORT_SYMBOL vmlinux 0xb5c5d7d2 inet6_protos +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5ea419d acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xb5f1a05a pnp_disable_dev +EXPORT_SYMBOL vmlinux 0xb5f43639 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xb60a130c skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xb61e370b lwtunnel_output +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb63e115a loop_register_transfer +EXPORT_SYMBOL vmlinux 0xb64ade09 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xb6519409 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xb6670122 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6837123 __sb_end_write +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69f9b00 mempool_free +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6b8393c end_page_writeback +EXPORT_SYMBOL vmlinux 0xb6cea091 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xb6d3daf1 qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xb6ec5f7f xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xb6f3d8c2 flush_dcache_page +EXPORT_SYMBOL vmlinux 0xb71fb74f _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb74caff7 gen_pool_free +EXPORT_SYMBOL vmlinux 0xb75bd08b truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb77400de gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xb77833b3 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d4edc3 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xb7dd6ee2 del_gendisk +EXPORT_SYMBOL vmlinux 0xb7e63bed input_unregister_handler +EXPORT_SYMBOL vmlinux 0xb7f511da lockref_get +EXPORT_SYMBOL vmlinux 0xb7f7395a f_setown +EXPORT_SYMBOL vmlinux 0xb7f99cae scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xb8130096 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xb8161e25 __dax_fault +EXPORT_SYMBOL vmlinux 0xb830c8b8 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xb83c9662 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xb850a2da md_error +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb88a22fd ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xb88f3208 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xb896dd99 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xb8a25a88 dentry_unhash +EXPORT_SYMBOL vmlinux 0xb8ca711e md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xb8f70fa7 netlink_set_err +EXPORT_SYMBOL vmlinux 0xb905d060 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xb90b5142 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xb910ed11 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xb91ea040 tty_set_operations +EXPORT_SYMBOL vmlinux 0xb93c4e20 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xb9462868 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xb9610b3b disk_stack_limits +EXPORT_SYMBOL vmlinux 0xb98d0a56 fb_set_var +EXPORT_SYMBOL vmlinux 0xb9c983a7 cdev_init +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xba0e4490 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba2ffec2 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xba31feef tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba63f668 serio_rescan +EXPORT_SYMBOL vmlinux 0xba6773a9 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xba996ac5 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xbaa2c49f of_find_node_by_name +EXPORT_SYMBOL vmlinux 0xbaaec704 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xbab8b83d pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xbadda67e tso_build_data +EXPORT_SYMBOL vmlinux 0xbaf9ee19 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0bcecb blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xbb144751 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xbb24ce62 d_path +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb48a464 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb6c737e of_get_next_child +EXPORT_SYMBOL vmlinux 0xbb7b50b8 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xbb7c43db add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xbb7c5680 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xbb8c24cb vme_irq_free +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xbbd095b3 register_netdev +EXPORT_SYMBOL vmlinux 0xbbe7135e max8925_set_bits +EXPORT_SYMBOL vmlinux 0xbc171e61 km_policy_notify +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc35472a nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xbc51e322 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xbc9ccb4f writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xbc9df2c5 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xbcc12311 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbccc957c inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0xbce4c1fb tcp_parse_options +EXPORT_SYMBOL vmlinux 0xbceed278 of_node_to_nid +EXPORT_SYMBOL vmlinux 0xbd1abd9d sget_userns +EXPORT_SYMBOL vmlinux 0xbd1fcbb4 of_node_get +EXPORT_SYMBOL vmlinux 0xbd3ab7c9 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd4c45aa nf_log_packet +EXPORT_SYMBOL vmlinux 0xbd5e15c8 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0xbd7d5f21 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbda89c3f uart_add_one_port +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdb75377 netdev_features_change +EXPORT_SYMBOL vmlinux 0xbdbc13a1 complete +EXPORT_SYMBOL vmlinux 0xbdc8b894 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xbdcfa98b dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xbde805d4 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xbdf570ef mount_pseudo +EXPORT_SYMBOL vmlinux 0xbdfb9119 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xbe03f8d0 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xbe14d7e7 genlmsg_put +EXPORT_SYMBOL vmlinux 0xbe18e38e dm_get_device +EXPORT_SYMBOL vmlinux 0xbe1add73 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe27fc8a __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xbe2b1cf0 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xbe2e04e5 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xbe369bff get_cached_acl +EXPORT_SYMBOL vmlinux 0xbe4c36cf page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xbe804228 do_SAK +EXPORT_SYMBOL vmlinux 0xbe94d950 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xbea84de9 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xbee323eb xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa8400 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xbf0de27e skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xbf167a3f dev_mc_del +EXPORT_SYMBOL vmlinux 0xbf1cdb0b generic_fillattr +EXPORT_SYMBOL vmlinux 0xbf1fd9f4 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xbf210c6e dump_emit +EXPORT_SYMBOL vmlinux 0xbf7f0b9c scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf897aad pci_enable_device +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa3100d textsearch_unregister +EXPORT_SYMBOL vmlinux 0xbfa60731 kernel_listen +EXPORT_SYMBOL vmlinux 0xbfaa693a pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xbfae235f get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xbfc2d58c skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xbfcc5e5d request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xbfce0d90 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xbfd8e991 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xbfe30a3b km_query +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff43203 send_sig +EXPORT_SYMBOL vmlinux 0xbff8dee2 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xc00a2e88 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xc012d515 fence_remove_callback +EXPORT_SYMBOL vmlinux 0xc014d413 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xc01c5893 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xc02e94d7 netdev_state_change +EXPORT_SYMBOL vmlinux 0xc03eb13f tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xc043e4ae blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xc04cb52e pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xc06976b1 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07b1704 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0863e66 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xc09b283c i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0ad0d3e kmem_cache_size +EXPORT_SYMBOL vmlinux 0xc0cd49c2 init_special_inode +EXPORT_SYMBOL vmlinux 0xc0f1f7e1 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xc101980d __f_setown +EXPORT_SYMBOL vmlinux 0xc11e31d6 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xc1363fe2 md_done_sync +EXPORT_SYMBOL vmlinux 0xc13e5fd3 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc1899204 mpage_writepages +EXPORT_SYMBOL vmlinux 0xc19434d0 secpath_dup +EXPORT_SYMBOL vmlinux 0xc1b6708f crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xc1d5da95 finish_open +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1df415e pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1e5a53c crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xc1f78c4f unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xc236d77a vfs_getattr +EXPORT_SYMBOL vmlinux 0xc25e4f6e sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2ae2699 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xc2af3120 nla_append +EXPORT_SYMBOL vmlinux 0xc2d1cc9a of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xc2d3403f generic_write_checks +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e5df72 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xc2e78b6c __napi_schedule +EXPORT_SYMBOL vmlinux 0xc2eefdde dquot_operations +EXPORT_SYMBOL vmlinux 0xc2f445b9 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xc30ce038 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc31d17ff vga_put +EXPORT_SYMBOL vmlinux 0xc338b3f9 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xc3488704 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xc34d54f1 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xc39253f4 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xc39c3fa1 skb_pull +EXPORT_SYMBOL vmlinux 0xc39f50a0 cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xc3a23b9b generic_file_mmap +EXPORT_SYMBOL vmlinux 0xc3a2f2c3 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xc3a7be25 lg_global_lock +EXPORT_SYMBOL vmlinux 0xc3aef7cf mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xc3bdff27 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xc3beb941 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3c2c51b dquot_alloc +EXPORT_SYMBOL vmlinux 0xc3d5bde8 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xc3efbaeb dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xc3f4d35d nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xc4013b3d ether_setup +EXPORT_SYMBOL vmlinux 0xc427c6a6 generic_listxattr +EXPORT_SYMBOL vmlinux 0xc431bbba tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xc4486ca7 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xc450ea4f inet_add_protocol +EXPORT_SYMBOL vmlinux 0xc452d0d1 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xc45a477c scsi_register_interface +EXPORT_SYMBOL vmlinux 0xc481cff8 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc49f491f mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xc4bb42aa of_device_alloc +EXPORT_SYMBOL vmlinux 0xc4c5dfdc jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xc4cf7510 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xc4e9374f jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xc5053d82 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xc50d7088 generic_write_end +EXPORT_SYMBOL vmlinux 0xc519bc1d devm_ioremap +EXPORT_SYMBOL vmlinux 0xc51eaff1 vme_bus_type +EXPORT_SYMBOL vmlinux 0xc52fe50b neigh_destroy +EXPORT_SYMBOL vmlinux 0xc5589fdd alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xc55ab72f dev_addr_init +EXPORT_SYMBOL vmlinux 0xc55b8c5c netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0xc5662d7d first_ec +EXPORT_SYMBOL vmlinux 0xc57024e5 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xc58c0d1b dm_put_table_device +EXPORT_SYMBOL vmlinux 0xc58c56d2 blk_make_request +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5ad6e29 register_filesystem +EXPORT_SYMBOL vmlinux 0xc5fa6e3f tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc600e535 vfs_write +EXPORT_SYMBOL vmlinux 0xc6062089 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xc62d2a57 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc64d69b5 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xc655c2c9 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66c9d29 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xc680453f __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xc69ed767 noop_fsync +EXPORT_SYMBOL vmlinux 0xc6a2524b nd_btt_probe +EXPORT_SYMBOL vmlinux 0xc6a90df1 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xc6b55371 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xc6c3c010 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xc6caa8cc __blk_end_request +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6e46c70 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xc6ea2859 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xc7021e64 kobject_init +EXPORT_SYMBOL vmlinux 0xc71bf805 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72b4595 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xc74206e4 write_inode_now +EXPORT_SYMBOL vmlinux 0xc744d35d kernel_connect +EXPORT_SYMBOL vmlinux 0xc7483488 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xc749b4b5 get_super_thawed +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc757a28c kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xc769f005 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xc76b804c devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xc775f586 skb_split +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc783ed88 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7978af4 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xc799bdfd fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xc7ff98eb km_report +EXPORT_SYMBOL vmlinux 0xc823ed7b path_noexec +EXPORT_SYMBOL vmlinux 0xc82902b4 phy_mac_interrupt +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 0xc8596a07 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8963f0a ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc89e07a5 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xc89f79d4 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xc8a101e3 arp_tbl +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 0xc8b7188f give_up_console +EXPORT_SYMBOL vmlinux 0xc8c043b0 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xc90b6d62 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc933f5c0 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xc934836d page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xc94d7819 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96b03ca fence_wait_timeout +EXPORT_SYMBOL vmlinux 0xc96b6c4f vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc97ac86e __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xc98fdb05 nd_device_register +EXPORT_SYMBOL vmlinux 0xc998236d nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9b40e52 security_path_chmod +EXPORT_SYMBOL vmlinux 0xc9d8e663 input_release_device +EXPORT_SYMBOL vmlinux 0xc9def590 input_reset_device +EXPORT_SYMBOL vmlinux 0xc9f060b0 key_task_permission +EXPORT_SYMBOL vmlinux 0xca07d753 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca4a5d8d end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcabc7888 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcac09e44 pnp_register_driver +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf597ce find_get_entry +EXPORT_SYMBOL vmlinux 0xcafe4350 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb04ba90 ps2_drain +EXPORT_SYMBOL vmlinux 0xcb059685 elv_add_request +EXPORT_SYMBOL vmlinux 0xcb128141 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0xcb14f783 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xcb57ba90 dquot_resume +EXPORT_SYMBOL vmlinux 0xcb62703c inet6_getname +EXPORT_SYMBOL vmlinux 0xcb629696 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xcb672fae posix_test_lock +EXPORT_SYMBOL vmlinux 0xcb720c74 generic_getxattr +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb7f3d81 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbce0d78 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xcbdf2d76 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xcbef5529 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xcbfe0fb7 __skb_checksum +EXPORT_SYMBOL vmlinux 0xcbff5e68 mempool_create +EXPORT_SYMBOL vmlinux 0xcc0f3341 d_move +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc49d88b kernel_write +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc517471 __scm_send +EXPORT_SYMBOL vmlinux 0xcc51baa5 md_cluster_mod +EXPORT_SYMBOL vmlinux 0xcc5226aa tty_register_driver +EXPORT_SYMBOL vmlinux 0xcc542428 set_nlink +EXPORT_SYMBOL vmlinux 0xcc6881cd sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xcc743f42 misc_deregister +EXPORT_SYMBOL vmlinux 0xcc81f6f1 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute +EXPORT_SYMBOL vmlinux 0xccab0d04 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccf558a8 sock_update_memcg +EXPORT_SYMBOL vmlinux 0xccf72712 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xcd0b55c8 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd28a7a0 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xcd479073 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xcd4e15e2 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xcd735246 uart_match_port +EXPORT_SYMBOL vmlinux 0xcd7e731b swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xcd96a039 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xcdb0104b param_ops_long +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdd637fc serio_bus +EXPORT_SYMBOL vmlinux 0xcdf85935 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0xce0e2d66 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xce1fd640 param_array_ops +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2bd30b simple_transaction_get +EXPORT_SYMBOL vmlinux 0xce415209 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xce49d39f __neigh_event_send +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce55852d of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce68c1af neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xce72e572 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xce7945d3 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xce7efce8 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0xce966012 of_phy_connect +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xceb1717d completion_done +EXPORT_SYMBOL vmlinux 0xced1f7fe generic_file_open +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf0be9b4 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xcf1dc50e inet_stream_connect +EXPORT_SYMBOL vmlinux 0xcf30f412 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xcf649d04 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xcfa249cd dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xcfa64c23 mmc_start_req +EXPORT_SYMBOL vmlinux 0xcfb4a296 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xcfdea888 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xd0096da3 __devm_release_region +EXPORT_SYMBOL vmlinux 0xd00aa811 get_task_exe_file +EXPORT_SYMBOL vmlinux 0xd023faa6 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xd024cb2a xfrm_input +EXPORT_SYMBOL vmlinux 0xd03198d0 dev_addr_del +EXPORT_SYMBOL vmlinux 0xd03b9987 dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0xd03cb280 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xd050dcdd set_blocksize +EXPORT_SYMBOL vmlinux 0xd0651b5a d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xd0713dc6 user_revoke +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd09bde84 kfree_skb +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a7da85 inet_release +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0c08e02 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xd0e2c16f gro_find_receive_by_type +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 0xd0fd4c18 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xd0fea37a blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xd116baba uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xd130631c inet_bind +EXPORT_SYMBOL vmlinux 0xd13ad33a set_cached_acl +EXPORT_SYMBOL vmlinux 0xd14c5dcd simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xd14d0291 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xd1566a48 account_page_dirtied +EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info +EXPORT_SYMBOL vmlinux 0xd16669c6 input_set_keycode +EXPORT_SYMBOL vmlinux 0xd17fedf1 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd18ff827 cpu_present_mask +EXPORT_SYMBOL vmlinux 0xd1a307a4 audit_log_start +EXPORT_SYMBOL vmlinux 0xd1aeffb6 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xd1afbc34 pnp_start_dev +EXPORT_SYMBOL vmlinux 0xd1b016a2 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xd1c2f0ef __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xd1c78827 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1d93fb4 d_obtain_root +EXPORT_SYMBOL vmlinux 0xd1dc6c9c param_get_ulong +EXPORT_SYMBOL vmlinux 0xd20325f6 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xd2109067 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xd212edef compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xd2291156 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xd24ba4c1 fence_free +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 0xd26b02c7 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2956aee try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xd295ad84 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2c59515 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xd2d16da2 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2effd3b try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xd2ff2f50 vme_register_driver +EXPORT_SYMBOL vmlinux 0xd31808f5 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd3259d65 test_and_set_bit +EXPORT_SYMBOL vmlinux 0xd3444a46 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset +EXPORT_SYMBOL vmlinux 0xd35bc0cf tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xd36994dd iget_failed +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd3791f32 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xd37bb996 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xd3ad1a97 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xd3af5afc release_sock +EXPORT_SYMBOL vmlinux 0xd3b12742 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xd3b5d543 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3f60905 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xd3f7fcd0 skb_clone +EXPORT_SYMBOL vmlinux 0xd4100551 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xd41e43d6 seq_path +EXPORT_SYMBOL vmlinux 0xd41fe818 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd42dd721 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xd4524e94 vga_tryget +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd47630b6 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xd47ac575 elevator_exit +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd4991c45 read_cache_page +EXPORT_SYMBOL vmlinux 0xd49c1ffb unregister_qdisc +EXPORT_SYMBOL vmlinux 0xd4a35dab jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xd4afc050 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xd4df3007 generic_removexattr +EXPORT_SYMBOL vmlinux 0xd4e4f4cc dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xd4e7aa3d ioremap_cache +EXPORT_SYMBOL vmlinux 0xd4f58e88 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xd4f9e225 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xd4fed6aa dev_change_flags +EXPORT_SYMBOL vmlinux 0xd503e4e2 devm_gpio_request +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd542b44d override_creds +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd563424a unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xd56ff53a __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xd58bb4b1 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd595ea99 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xd5bb1517 seq_vprintf +EXPORT_SYMBOL vmlinux 0xd5ea5561 freeze_bdev +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd655f199 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xd662aa98 of_platform_device_create +EXPORT_SYMBOL vmlinux 0xd6729a8e udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xd6733eb7 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xd6821a47 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd6e078a5 mpage_readpages +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fc36ec scsi_scan_target +EXPORT_SYMBOL vmlinux 0xd7057f8e cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xd717b8b7 pnp_get_resource +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd765cb9f pcim_iounmap +EXPORT_SYMBOL vmlinux 0xd77364fb submit_bh +EXPORT_SYMBOL vmlinux 0xd77a4bed nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0xd77ba12b param_set_ullong +EXPORT_SYMBOL vmlinux 0xd792c52a tcp_release_cb +EXPORT_SYMBOL vmlinux 0xd7aea464 dentry_open +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7f4901e __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xd7fce9e6 tty_port_put +EXPORT_SYMBOL vmlinux 0xd835deaa vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0xd83759ce set_groups +EXPORT_SYMBOL vmlinux 0xd8391c17 eth_header_parse +EXPORT_SYMBOL vmlinux 0xd8470c71 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xd87858a6 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xd87cb0fb end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xd8879cf4 free_buffer_head +EXPORT_SYMBOL vmlinux 0xd88c9d47 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xd8980663 input_grab_device +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a1763a file_ns_capable +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8ba730e bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xd8be4f0a seq_dentry +EXPORT_SYMBOL vmlinux 0xd8d52460 dev_err +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 0xd912c58e genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xd91a7a25 keyring_alloc +EXPORT_SYMBOL vmlinux 0xd937598e pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd9468197 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xd95779dc __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xd95ab561 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xd95ac2d1 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xd97128d4 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xd9834f3e seq_write +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9c358c0 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xd9ce23e4 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9f27b06 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0xd9f52008 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xda01479c mempool_create_node +EXPORT_SYMBOL vmlinux 0xda08f05b mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda4eacee input_close_device +EXPORT_SYMBOL vmlinux 0xda563ffa tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xda6b7be7 make_kuid +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda881202 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8ea035 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdab0d12c fb_show_logo +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad023f7 bioset_create +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdaeb9fa3 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xdaf047fb pagecache_write_end +EXPORT_SYMBOL vmlinux 0xdb0ff025 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xdb1042c5 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xdb173e61 pci_map_rom +EXPORT_SYMBOL vmlinux 0xdb2101b9 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb64a053 iget_locked +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb9a5433 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xdbb551ce dev_alert +EXPORT_SYMBOL vmlinux 0xdbe805ee kill_anon_super +EXPORT_SYMBOL vmlinux 0xdbeb1aed tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xdbf58847 dev_open +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc10b9b8 follow_up +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc2bead3 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc7b1a31 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xdc84b714 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xdcafd041 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcb9b6e3 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0xdccb4295 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xdccd86cb get_user_pages +EXPORT_SYMBOL vmlinux 0xdcf3ea11 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xdcfbcce7 single_open_size +EXPORT_SYMBOL vmlinux 0xdcfdfe8b generic_make_request +EXPORT_SYMBOL vmlinux 0xdd14883c ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xdd1ea6ff lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xddc0d37b phy_attach_direct +EXPORT_SYMBOL vmlinux 0xddd64f91 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xdde2fef8 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xde1257cc neigh_app_ns +EXPORT_SYMBOL vmlinux 0xde20ec27 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xde434656 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0xde518e4f put_disk +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde6e0bfc redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xde7d13b6 sget +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde99b796 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xdeac5c93 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xded021b0 eth_header_cache +EXPORT_SYMBOL vmlinux 0xdeefff7d genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xdf02adfa phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xdf09fa37 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0xdf0cdc2c vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf11bfea tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdf166ff1 kobject_add +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf4ceb53 inet_add_offload +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf588b6f napi_consume_skb +EXPORT_SYMBOL vmlinux 0xdf5e3f3c netdev_update_features +EXPORT_SYMBOL vmlinux 0xdf5f06a3 nvm_get_blk +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf68c750 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xdf70d654 dm_put_device +EXPORT_SYMBOL vmlinux 0xdf7242f9 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xdf7b6180 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe01994de is_nd_btt +EXPORT_SYMBOL vmlinux 0xe02a6b5e xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xe04b325b dquot_free_inode +EXPORT_SYMBOL vmlinux 0xe04b753d unlock_buffer +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe058f3ee skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe07035d9 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe086f999 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe08a1fa6 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xe08acb38 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0b12465 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b6fa0a security_path_rename +EXPORT_SYMBOL vmlinux 0xe0c2357e blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xe0c5015e vme_irq_request +EXPORT_SYMBOL vmlinux 0xe0e53ef7 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xe0f061df alloc_fddidev +EXPORT_SYMBOL vmlinux 0xe0f77a78 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xe0fb7f70 proc_mkdir +EXPORT_SYMBOL vmlinux 0xe110189e ida_pre_get +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11dcf1e sock_i_uid +EXPORT_SYMBOL vmlinux 0xe11f3cbc _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe14251eb param_get_invbool +EXPORT_SYMBOL vmlinux 0xe14b875a xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xe158a1e2 skb_store_bits +EXPORT_SYMBOL vmlinux 0xe15e1557 fb_get_mode +EXPORT_SYMBOL vmlinux 0xe1647dc7 pid_task +EXPORT_SYMBOL vmlinux 0xe172115f mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe1b60f25 kobject_put +EXPORT_SYMBOL vmlinux 0xe1e5da88 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe2214135 free_netdev +EXPORT_SYMBOL vmlinux 0xe2357b16 scsi_device_put +EXPORT_SYMBOL vmlinux 0xe2366d4b dquot_release +EXPORT_SYMBOL vmlinux 0xe23ab64f irq_to_desc +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe2671e2e pci_match_id +EXPORT_SYMBOL vmlinux 0xe27cdffa sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xe286ea7f of_phy_attach +EXPORT_SYMBOL vmlinux 0xe2934237 kset_unregister +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2cd0954 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2da13b1 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xe2e4b90b send_sig_info +EXPORT_SYMBOL vmlinux 0xe2e5b683 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe31312d3 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe31e5866 finish_no_open +EXPORT_SYMBOL vmlinux 0xe33984da dev_printk_emit +EXPORT_SYMBOL vmlinux 0xe347c8b4 account_page_redirty +EXPORT_SYMBOL vmlinux 0xe36c97bb release_pages +EXPORT_SYMBOL vmlinux 0xe38a7e11 of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xe390c666 d_rehash +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3b9905e dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3e7cf92 iov_iter_init +EXPORT_SYMBOL vmlinux 0xe3f0ef87 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xe3fc4404 ab3100_event_register +EXPORT_SYMBOL vmlinux 0xe40da1bd ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xe4374f90 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xe452b1f3 irq_set_chip +EXPORT_SYMBOL vmlinux 0xe45f0796 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xe46ad672 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xe4725a32 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xe48ade46 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xe48c97d2 udplite_prot +EXPORT_SYMBOL vmlinux 0xe4c4fbf6 param_ops_uint +EXPORT_SYMBOL vmlinux 0xe4cde5ee sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4efc82d vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xe5036a18 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52415e8 inet_ioctl +EXPORT_SYMBOL vmlinux 0xe53d705e lwtunnel_input +EXPORT_SYMBOL vmlinux 0xe552d066 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xe55b5ecd may_umount +EXPORT_SYMBOL vmlinux 0xe562c7e0 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5ab9404 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xe5c126f4 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xe5c6c554 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d65dbd bio_reset +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5f9e3c0 param_get_byte +EXPORT_SYMBOL vmlinux 0xe5fe3f5c pci_bus_get +EXPORT_SYMBOL vmlinux 0xe62d005c jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xe631e2e0 down_write +EXPORT_SYMBOL vmlinux 0xe63971b3 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xe63a875c inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xe64e3e18 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xe6546d81 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe65fcef6 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xe66d4081 param_set_invbool +EXPORT_SYMBOL vmlinux 0xe680a026 dcb_getapp +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6a0683e dev_uc_del +EXPORT_SYMBOL vmlinux 0xe6abd28c ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xe6b3b9de tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0xe6bd347b pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xe6c189d0 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xe6cf4a2f copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe7107677 unlock_rename +EXPORT_SYMBOL vmlinux 0xe71516c0 blk_finish_request +EXPORT_SYMBOL vmlinux 0xe7347737 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xe74ba8d3 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe7575971 abort_creds +EXPORT_SYMBOL vmlinux 0xe76bce69 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xe79f6b85 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xe7a01566 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xe7a161a3 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7abda49 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7de6bf7 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xe7e57099 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xe7ed6be5 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xe801c637 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xe81a5384 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe81fdb73 from_kgid_munged +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe82581fa block_invalidatepage +EXPORT_SYMBOL vmlinux 0xe85218e9 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe8808c2d blk_fetch_request +EXPORT_SYMBOL vmlinux 0xe894aa90 sock_create_lite +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8a8e483 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xe8bb7cb5 write_one_page +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c2fbc2 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0xe8c8bf7a cdrom_release +EXPORT_SYMBOL vmlinux 0xe8e77ce9 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe8f4d216 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xe8f69adb security_path_mkdir +EXPORT_SYMBOL vmlinux 0xe8f75554 tcf_em_register +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91ae844 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xe9243882 nf_log_unset +EXPORT_SYMBOL vmlinux 0xe9351382 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xe94b73d8 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe984f4bb ip_do_fragment +EXPORT_SYMBOL vmlinux 0xe9922b93 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xe9aca479 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xe9b57457 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xe9c019a9 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xe9c2abb5 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xe9e78f91 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xe9eff092 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea50abce scsi_print_result +EXPORT_SYMBOL vmlinux 0xea5be39d kernel_getsockname +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xeac6415f __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xeacc06f7 fence_signal +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaeb003a blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xeaf322e0 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xeaf6ffe0 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xeafeb9f7 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xeb002019 module_put +EXPORT_SYMBOL vmlinux 0xeb1f2ddb d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3ee5ca nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb4a176e get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xeb6710b2 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xeb677463 of_get_pci_address +EXPORT_SYMBOL vmlinux 0xeb6db88f sock_from_file +EXPORT_SYMBOL vmlinux 0xebf5f5c7 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xebf718ec qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xec052b04 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xec20a616 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0xec287b21 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xec2fc9ed lock_sock_fast +EXPORT_SYMBOL vmlinux 0xec37069b set_device_ro +EXPORT_SYMBOL vmlinux 0xec407a4d pci_remove_bus +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec6c1307 nobh_write_end +EXPORT_SYMBOL vmlinux 0xec70c6a6 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xec72bf9d posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xecdfa1d8 empty_aops +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf48635 dquot_get_state +EXPORT_SYMBOL vmlinux 0xecf6cabb tso_build_hdr +EXPORT_SYMBOL vmlinux 0xecfa1c3c free_task +EXPORT_SYMBOL vmlinux 0xed0a01f1 simple_write_end +EXPORT_SYMBOL vmlinux 0xed11bc0a blk_start_queue +EXPORT_SYMBOL vmlinux 0xed16fba1 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xed171a27 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xed33cbe0 i2c_use_client +EXPORT_SYMBOL vmlinux 0xed433664 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xed485a0a nf_getsockopt +EXPORT_SYMBOL vmlinux 0xed4be7f5 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xed4cee36 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed693ead pci_get_class +EXPORT_SYMBOL vmlinux 0xed6d5d08 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0xed9d1eff blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xed9e574f tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedaa1924 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xedb9e0df tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc6a5b3 vme_lm_request +EXPORT_SYMBOL vmlinux 0xedd2e096 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee1de2f0 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xee224e54 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee359335 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0xee3e5e4e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xee43b816 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xee5f405b ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xee6dd8b2 __frontswap_load +EXPORT_SYMBOL vmlinux 0xee795b05 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee938bd8 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xeea3cd7a nla_reserve +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0xeecd17cf jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xeee16f15 skb_pad +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef046ee3 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xef09f226 skb_tx_error +EXPORT_SYMBOL vmlinux 0xef0d10de d_instantiate_unique +EXPORT_SYMBOL vmlinux 0xef169eab lock_fb_info +EXPORT_SYMBOL vmlinux 0xef2c92bf eth_validate_addr +EXPORT_SYMBOL vmlinux 0xef58f722 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xef5e9d19 seq_open +EXPORT_SYMBOL vmlinux 0xef66b70a bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xef7e0b9d phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xef7f16f9 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xef87a2ad xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xef87d119 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xef88543f mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0xef909be7 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xef93f4bb param_ops_ullong +EXPORT_SYMBOL vmlinux 0xefa59294 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xefba639d get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xefd0af53 inet_frags_init +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe9cdd6 d_set_d_op +EXPORT_SYMBOL vmlinux 0xefec740a con_is_bound +EXPORT_SYMBOL vmlinux 0xeffd7be5 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf01024f5 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf01a825e pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xf036085b simple_lookup +EXPORT_SYMBOL vmlinux 0xf04e832a nvm_submit_io +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size +EXPORT_SYMBOL vmlinux 0xf0671ac0 register_quota_format +EXPORT_SYMBOL vmlinux 0xf074df5e of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xf07a7521 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xf08a4a9a peernet2id_alloc +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 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0fe29a1 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xf0ffdee8 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf128bf54 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf1483479 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xf14b6072 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0xf159c425 genphy_update_link +EXPORT_SYMBOL vmlinux 0xf1627d38 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xf175814a inode_set_flags +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a1f872 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xf1a3913d clkdev_drop +EXPORT_SYMBOL vmlinux 0xf1b1bd0f do_splice_from +EXPORT_SYMBOL vmlinux 0xf1c81eb1 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xf1c9d2a4 dget_parent +EXPORT_SYMBOL vmlinux 0xf1cb6213 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1eea856 submit_bio +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf26de683 simple_readpage +EXPORT_SYMBOL vmlinux 0xf26f5871 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xf28a6f9c xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xf28c9f94 iget5_locked +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 0xf2b03883 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2dcc2fd dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xf2ee8d16 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xf2f0f08d udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf3148570 devm_clk_get +EXPORT_SYMBOL vmlinux 0xf31ef32b bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf357bdc0 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xf36c715a max8998_write_reg +EXPORT_SYMBOL vmlinux 0xf3715840 audit_log_task_info +EXPORT_SYMBOL vmlinux 0xf380fbb9 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xf388e5c0 generic_cont_expand_simple +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 0xf3adcf08 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xf3ae136e scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xf3e131b3 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf403fffa csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xf4281d49 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xf43d69be scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xf46003e3 _dev_info +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 0xf4a2a1d6 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4b7b9bb of_root +EXPORT_SYMBOL vmlinux 0xf4b91447 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xf4bb7255 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4d6acbc lro_receive_skb +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf50ce3f8 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf526ff77 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xf52b04a5 textsearch_destroy +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5971eb7 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a9df75 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xf5bc8704 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5cd220e replace_mount_options +EXPORT_SYMBOL vmlinux 0xf5e5fa2e security_path_mknod +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf62490fc scsi_dma_map +EXPORT_SYMBOL vmlinux 0xf62fb0ce block_write_end +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf64de798 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0xf6653548 __seq_open_private +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf6770514 __inet_hash +EXPORT_SYMBOL vmlinux 0xf6785984 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xf67b6128 input_free_device +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf6926583 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xf6a49cf3 __ps2_command +EXPORT_SYMBOL vmlinux 0xf6ad34be devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6e9c961 filp_open +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f0ffed _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf6fee6f5 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xf7189a41 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0xf7192216 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xf7234420 install_exec_creds +EXPORT_SYMBOL vmlinux 0xf728860a netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xf735b22a blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0xf73626e3 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xf74b6a28 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf75e69f7 path_nosuid +EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio +EXPORT_SYMBOL vmlinux 0xf78ca20f blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xf7901879 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0xf79fa7f5 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xf7b0695a mem_section +EXPORT_SYMBOL vmlinux 0xf7d9bea1 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xf7f3c5ea bio_map_kern +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf81caa65 user_path_create +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82e04fd kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf83098ef unregister_filesystem +EXPORT_SYMBOL vmlinux 0xf83f4898 blk_run_queue +EXPORT_SYMBOL vmlinux 0xf87ffcf2 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf8b00231 blk_peek_request +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8deea7d iommu_dma_init_domain +EXPORT_SYMBOL vmlinux 0xf8e398fc memstart_addr +EXPORT_SYMBOL vmlinux 0xf8e8ad06 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0xf8e9b882 sock_register +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf9000359 passthru_features_check +EXPORT_SYMBOL vmlinux 0xf919c290 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xf94405f3 pnp_is_active +EXPORT_SYMBOL vmlinux 0xf9465e1d tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xf956c339 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xf971b318 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xf973ca94 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xf97a31e2 datagram_poll +EXPORT_SYMBOL vmlinux 0xf99ef8e8 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xf99fa301 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xf9a3604f dev_printk +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9dde891 wait_for_completion +EXPORT_SYMBOL vmlinux 0xf9ec0e06 fput +EXPORT_SYMBOL vmlinux 0xf9f41fa5 dev_set_group +EXPORT_SYMBOL vmlinux 0xfa32cf1e acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0xfa3ff211 inet_select_addr +EXPORT_SYMBOL vmlinux 0xfa47465f ida_simple_get +EXPORT_SYMBOL vmlinux 0xfa4d9cb2 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa668fae twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xfa6feb06 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xfa8e92f4 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xfaab9ccf import_iovec +EXPORT_SYMBOL vmlinux 0xfac278b2 seq_release_private +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfad54c29 udp_prot +EXPORT_SYMBOL vmlinux 0xfadd64a6 proc_symlink +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfae8e13d security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xfaedec6a frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb33b074 of_translate_address +EXPORT_SYMBOL vmlinux 0xfb3d3a68 key_alloc +EXPORT_SYMBOL vmlinux 0xfb48ef14 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb71d0ec phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xfb7501b7 __sock_create +EXPORT_SYMBOL vmlinux 0xfb75422e do_splice_direct +EXPORT_SYMBOL vmlinux 0xfb7d640c generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfb8a5a20 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb9d5933 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xfb9e760b tcf_exts_change +EXPORT_SYMBOL vmlinux 0xfba0c8fc file_update_time +EXPORT_SYMBOL vmlinux 0xfba8bf22 revalidate_disk +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb0846f dquot_disable +EXPORT_SYMBOL vmlinux 0xfbbeb082 param_get_long +EXPORT_SYMBOL vmlinux 0xfbc0ff9d scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd36108 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xfbe7a00c bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xfbe8ff5e cpu_online_mask +EXPORT_SYMBOL vmlinux 0xfbeed27f __neigh_create +EXPORT_SYMBOL vmlinux 0xfbf5808d pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xfbfd90de dm_kobject_release +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc0a1848 cdev_alloc +EXPORT_SYMBOL vmlinux 0xfc3fec36 icmp_send +EXPORT_SYMBOL vmlinux 0xfc4b6d0a __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xfc52047f __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc59255b __sb_start_write +EXPORT_SYMBOL vmlinux 0xfc89d706 nvm_unregister_target +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 0xfcd1d4ef mutex_unlock +EXPORT_SYMBOL vmlinux 0xfcd2e3bf dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xfcda682d pci_bus_put +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfce9e03d __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd04a2dd registered_fb +EXPORT_SYMBOL vmlinux 0xfd1f3d26 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xfd5f8cde do_splice_to +EXPORT_SYMBOL vmlinux 0xfd89e13d netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdf704b7 d_hash_and_lookup +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 0xfe05b30e __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xfe25f5bd d_alloc_name +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe306332 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xfe31869b fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe64c774 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xfe6a5cc9 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe805a30 generic_setlease +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe970819 qdisc_destroy +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfea28dc2 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xfea918f0 neigh_table_init +EXPORT_SYMBOL vmlinux 0xfeb696b1 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xfed2e5d4 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee1f127 file_open_root +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfefbc367 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xfefd95b7 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xff0d085b blk_queue_make_request +EXPORT_SYMBOL vmlinux 0xff10b9f0 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xff161e0f of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff21a1e3 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xff26aa8c tty_devnum +EXPORT_SYMBOL vmlinux 0xff28f334 arp_xmit +EXPORT_SYMBOL vmlinux 0xff292d1c dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xff2b78a1 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0xff53b5a2 amba_find_device +EXPORT_SYMBOL vmlinux 0xff59ebfa simple_getattr +EXPORT_SYMBOL vmlinux 0xff65e870 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff777af1 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xff79a48e kthread_stop +EXPORT_SYMBOL vmlinux 0xff80fdd1 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffa384ed tty_port_destroy +EXPORT_SYMBOL vmlinux 0xffcb7f47 gnttab_alloc_pages +EXPORT_SYMBOL vmlinux 0xffd2407a dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffde331d mfd_cell_enable +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x21eb1352 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x514e2357 ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x85f9ccfe ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xc02544f8 ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xe80bf293 ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xe93adfde ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xf0c93fc1 __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/af_alg 0x2b09368b af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x36b85dcf af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x38a866a9 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x443b8d8e af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x623145c6 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x82853a15 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x89f42eb0 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xa2f463d0 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xa4e8a173 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xbba1e7a2 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xcb39de78 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xeaef2a8d async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x9127383d async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xecee4b11 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x448af9df async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x8dd3940c async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1a91d213 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x71729ee0 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xef1a9345 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xfeeae580 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x59477c99 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x701ec9df async_xor_val +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 0x13b7d7dc crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x2905180a crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x0c1d3057 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x428c9fae cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x507665bb cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x7e92ec98 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x983d478d cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xa4551d6c cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xaf2b2306 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xe2a48d79 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xea0b7df1 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xf15b842b 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 0x18adb12e 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 0x0136cae2 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0x02830855 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x924683e4 shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0xaa4f6862 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xdc478b43 mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0xeb88e1c5 shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0xef2f41ae shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0xf96b146a mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x0039ad0a crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xae114716 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xc0510e40 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xfa4db50e 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 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 0xea0db0dd xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x027943dd ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x07f345ef ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x107b00d3 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x10b99ef3 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x13293ff4 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x15c6d92f ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1e30ed00 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x44b0c4a0 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x58d05908 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5fc96c56 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x63c43027 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x64583c26 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x846a4392 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9799f0e9 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9ce4cc0e ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb0f5d096 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbbcc8418 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbd022186 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc59af339 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc6ab1cbc ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdc8c509e ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe41ec7bb ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xef3b9694 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2362d229 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6a1213e5 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6c70b27a ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x78a2a60d ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7f390ce6 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9d262e45 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa65ac1aa ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa7429b75 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb4178790 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc4211042 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcc631826 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd44420c0 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe87a61c5 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x3e21d8b8 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x9814a83f sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x11295627 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x2ac1c423 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb594fdf2 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe062e15c __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0abd6e7b bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0ace3c31 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x128cbdb0 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x18781a2b bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1f5ef875 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x27590044 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x44c8625e bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4abf7b9d bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5a27d2a5 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x72ebf41d bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7c4b5009 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x91aaf3fa __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9d23d7ec bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa4b58862 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa6b13838 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb01d41ce bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb0c905c2 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb13db053 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb40071c4 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb7870f7f bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe7f95e20 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe813d052 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf3b158d0 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfcb2ea74 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x006be4c6 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2d0217d1 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x38faba8a btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd0e9b2f3 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe6925fd9 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf643ca7b btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x297c5657 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x33f4a692 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4b24722e btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x623fdd02 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x67891796 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8bda8e0d btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8c1ab449 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9f43e511 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa23a530d btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa8de8bd4 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcc0bf758 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe7f4d49a btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0e96d993 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x209a001b btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x29e05c82 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3ce865c8 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3e5a6619 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5841d309 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x67c85e4f btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbaca77b1 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc225f35f btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf1193951 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf9dde50f btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x701e11f3 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xa76b4eaa qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x60036754 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x6f082017 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ad28e9c clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1e81b257 qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f4159b0 clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x24c5636f qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2d10c6b9 clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3b0b58e5 clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4f0e71f2 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 0x6ae53936 clk_is_enabled_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 0x9b65c20d devm_clk_register_regmap +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 0xb8e859a4 qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc1ed0001 clk_disable_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 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 0x13a3362b bL_cpufreq_unregister +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0xcc43a3ca bL_cpufreq_register +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd071af93 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0d99ae3f dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x103993ea dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5733594b dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x62569951 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xeb166f2a dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x20c3e89e hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xbe17ba2b hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xf0db8bec hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x127ee677 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x16870f33 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x192a9a26 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1bbb5feb edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x35e14856 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3732a424 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4a09c5f0 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4fcc733a edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7b9a812e find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x84cbdac7 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8a2eec83 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8b9592eb edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8c42a725 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa0b3b394 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbc085bc3 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbdea9381 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd00aac17 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd16aa886 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd5aa4995 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xda3464d0 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf0394317 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf6d01f2b edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfedfc093 edac_device_del_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 0x62d7b3d6 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x64ea7671 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7bd28ff2 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xde027a73 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe447e7fe of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf62d889a fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x66273153 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xeb91d7d4 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x006f362a of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0dcad82a drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x90e47cf2 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x973f5628 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa5008541 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf700f8a2 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x660b45fb 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 0xcbb1175f 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 0xe41324af ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0584b0fb hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0fc5a29f hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1335e5ba hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x34c61fb9 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3aa2cf2d hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f0e2e8c hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5800f5c3 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x591eefb7 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x63dbbe7d hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x63f49115 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6b300ae5 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x75d75f6b hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7f4dba82 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x859356b0 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b36d9f7 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8cbd5f53 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x91ebdc25 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x97d1929a hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x99c450be hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa19686b2 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa9c18ce0 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2600335 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb3a7f06f __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb7acfece hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbab346ba hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0b8a628 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc79719b9 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc8473b22 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc86b8300 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd0d7f69b hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd322683a hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd9592a37 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdde13feb hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xed044740 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf387aabc hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfeeefb9a hid_resolv_usage +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 0xd668e188 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x18a2d5e4 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x52d7f001 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xadbde63d roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb853e8d3 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xdb7ca955 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xeae73c45 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2b527151 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x41844ae7 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x45486603 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6abe26f2 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x85f33c45 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x93d85768 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x99e63f0f hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xda732aa3 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf16dab59 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x458afdfd hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x09ea404f hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x136a7236 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x24a41afe hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2caa2dae hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2f1cab19 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3dea5492 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5a37e1d1 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5bf63395 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5cebc9b6 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x80ebca67 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x85e60d15 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9b763e31 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9f5221c4 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb326b6a4 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb751953c hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd1b4eeeb hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf16cc0c4 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xff481e56 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x313004dd adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x96d6b19b adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x9dea4904 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x17996f71 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x20985c78 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x29796056 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4c9886ae pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x55472b08 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x60227d72 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x71135bfa pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7345cd50 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7aac6399 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7cdbd7d0 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xab042adc pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb94a926b pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd4414e6c pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xdcb2fbaa pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfa764cc4 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x0d98c1d3 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x37e1b91c hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x3e10d0fd hwspin_lock_free +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x422c5085 __hwspin_unlock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x68e0a91e hwspin_lock_request_specific +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x766ade2f hwspin_lock_request +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x89b379cf __hwspin_trylock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xad8da0dc hwspin_lock_register +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xd2c3de39 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xfe4f4718 hwspin_lock_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0647f4d4 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0a9fcad2 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x38cc2790 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3b96da22 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7b3ddbda intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9c8d3dfa intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbfaff0c0 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0c25808d stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3a30f558 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x59eae75c stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xbb9c812b stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe61cb6d1 stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x3ed16da4 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x63f80ab9 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xc4a6f90d i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xcf2ee6ea i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xf187a7b2 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x1548b5fb i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x3eb1cbf0 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xc20a47b0 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xeea7a0ae i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x4134c126 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x9da947ad bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xcb85239d bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x307e97ef ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3b52c6a6 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3ecf9519 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x49b2ecf9 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x68d426cc ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6deb1263 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x711575e1 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc8836cce ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd053d57e 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 0x374d9896 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 0xee2a1ac6 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x4ad9ab0f ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xd6dc575f ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x168388b5 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x580bf8ba bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x581282fb bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x171eda03 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x59070592 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x61819034 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x64faa168 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x66210cf2 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7702f5d7 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7fe9463b adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x95ee2168 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xaaec0fd0 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xaf180ecd adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe4e7c136 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xff851f27 adis_init +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x12a86f6f devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2b26cef6 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x379bb9ec iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4702837e iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x49453b1a iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x596f397f devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5d02cf50 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x81ec3f62 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8a54bf68 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x98578643 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9d407bdf iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9f4b7a22 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa8f15922 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb27955cf iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb6105b8a iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb77ea4de iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7b04b50 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca6fac5b iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca754ddd iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcc4709d5 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce9a5ec1 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdf5e5be6 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe1e420b5 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe2ca3c5e iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9823e73 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf40c0402 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf6b45af0 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf6d5edad iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf75e00e6 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf7837cbe devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfcbdb5f8 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x9c6b4fd4 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x7aa1ecf3 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 0x80b0f58f adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x1097178f cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x3f435119 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd227c025 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x17fef4fa cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x3dc917af cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x59834d35 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x6361daeb cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x65a78b8c cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0fc2c153 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x660ee833 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x910bae92 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe0b31102 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x04dfba8d wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x08d66b33 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0b8b454f wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x16355815 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x25689109 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2f1706aa wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x37e0dbfa wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x42a5a9a3 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8781c90a wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc405f263 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcab36ca8 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xda9f588b wm9713_codec +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x076c19e3 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1f480b52 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5a2a4fd1 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x731d5402 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x748f016c ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb27e8a1c ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc3b58ddd ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc514728f ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xeaca97e5 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 0x0041ea3b gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1d448860 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4e5e1399 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5a95de0c gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5ed153aa gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x86af0355 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x872c5c04 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8ac52b24 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9733a231 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x977513ee gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9dc1e61f gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa944865c gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xbd1eee77 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xbd42d052 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc76c9d0e gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcb224455 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdcb1bb3c gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x08a0c76a led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x239d2eb9 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2a147b69 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3dd8d17d led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4c820fa2 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6cbdafac led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1c71201c lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2fd577ae lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x363d999d lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x53934114 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5a8a21d6 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x91bba2cd lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb2eeacd9 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc2306223 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdb5de018 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdeee9b68 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf19eb263 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 0x0492e595 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x28710b90 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4071f5b0 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4b42203b mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5267de20 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x577b28e9 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6b0e49b5 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x785110b6 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8dd0c962 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa739b95e chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xad42ca16 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd8386ec6 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfcd1cb8a mcb_bus_get +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x021811cf __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f0677b8 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e6a889 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1154f7a1 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa8e40 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174c2a29 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2205bcf9 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fc7cb7f __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x469f38de __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ba51ecf __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2a89c7 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d950f2a __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e21030c __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed04550 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eef9654 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ab7b0f __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84efb763 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fe32879 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91f02667 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93f7fc02 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1de5277 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa81bf581 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d964de __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbace2cd __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6673631 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a2f711 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3de2ba2 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe902838d __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec919105 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeea27f46 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfad1ec73 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x07522889 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0a222c3e dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x26612c27 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 0x2f2f01a9 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x339db43e dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x67000ea1 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 0x8896706a dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb2200439 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 0xe2dee285 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 0x9b9f0fe6 dm_bufio_client_create +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 0x04159819 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7c25543a dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7fd09343 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xaf4c2d25 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb4762e33 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc1f74b3b dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe9de5f83 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x2d51debe dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xf02f9270 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 0x30d5e1a5 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 0x68f0c252 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x77379c16 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 0x9269bcdb 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 0xc4932980 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc5615aab 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 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 0x9ec37340 dm_block_manager_create +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 0x0a0cd3d4 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0e8e945f saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2a1dbceb saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3984c6e9 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4b1282ca saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x977884b3 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9f8eb06c saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xaa15eca2 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdf249295 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdfcf595f saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x49d9de8a saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7282fb78 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x86cd934d saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8c00dd53 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x9b1f210c saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd083eb3d saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf9bc82ce saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1087fbdb smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x12529cea smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1effa845 smscore_register_hotplug +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 0x529eaea0 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x536e16df sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x559cfd8f smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x59420950 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x68f1d3e7 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x69bb0239 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 0x8c76bb3c sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xba3cd3c8 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd11c69e0 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdba9027e smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdf084f47 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe3b589c5 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe9001728 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfd1eb5b3 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x8d7785bb as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x7f60ea18 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x77fd360f tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x001ba18a media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x007ba4eb __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x17ad704b media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x2822b6a1 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x2e5c2b7b media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x6a11dedf media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x6ee89797 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x73236398 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x90bb0c64 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x90e83307 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0xb4c8f258 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0xd71c54d5 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xdc23ecca media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xed43153f media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0xf1c6a68e media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0xf5650113 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xfcc2e92f media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0xfd9a4c63 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x1d6034a0 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0841a0cf mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x18c9ecb5 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x195bd2dc mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2372dd79 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x249c25a6 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x407ff6e0 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x40ab477f mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x47947b6b mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6d3dbb08 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7af499d3 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8f1703c1 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9549562e mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x99b5cce2 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xadbf832b mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb5d1b8c5 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc6c112fe mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc77a6555 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf3702a9c mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfb8f92ee mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x14181326 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x16e5b417 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1e43d89c saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3071d0a3 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3c7fcab0 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x530d11c4 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x534a493b saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x717192d7 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x747aad1e saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8430dba7 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x889d2c0a saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8fe69d08 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x90d8e746 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa6d0124a saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xacd653b2 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcc11d55c saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe355fb44 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe9d2411e saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf3809151 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1a0a7bde ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2ae3abd2 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3bc614ab ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb5b93daf ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xcccf9fd9 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe35b4679 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe7174d79 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0ad70d99 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 0x4719ad64 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x53db1287 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x87c071a8 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xcc6fc8da xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xce2cf7c9 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xce53b6d7 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 0xbfeb04e9 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x79ad7552 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xb4bda113 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x00c9c3fe ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x22dbfe3b ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x30697e80 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x39704d45 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x457fa5cb rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x794e4800 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x80d49561 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 0x9b0ce349 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9f112be3 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa7e3bc92 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbf420e6e rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc1b41c55 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd1efdfbb rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd263c7f9 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd32f9230 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd7d863ab ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf3657903 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xf2bfa144 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xe29f829f microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x968d7adf mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x6c4e0d68 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xe576f06c tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x46082a08 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x04fb7006 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x26cdfed4 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x70b37249 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc03677a0 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xd3399b85 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x29b8ddfe tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x81b81481 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x1ff534e2 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0a79d707 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1c9fde9f cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x30a69dab cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x326482f8 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x38606321 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x48d040ce cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5bb69f64 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5c3f748a cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x63285718 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6478f195 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x80c19f0e cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xac3c9194 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb34e91c6 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbaf9edd9 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbb4e7fc5 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc2db4e45 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd65bf2e7 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf7a8cf42 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf9da54df cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfea56b9f cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x153941eb mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x92653f4a mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x003c6231 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0a7162bd em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0cd50326 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x16e12d8d em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x26c715d6 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x321aeda2 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3e265697 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4a792e50 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4e77b82a em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4f9f7b58 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6748d8bb em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x75841b92 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7de8eb7b em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8927aafa em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa1a52eb0 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbd64ce08 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc4b9fc94 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xedd2825a em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2534e77f tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x4006fe98 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x699487d0 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xaf779e68 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 0x06cb6f44 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x57ef3b71 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x77b23b44 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7b687ed3 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 0x884798e0 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xea2acf7e 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 0x01c7dbfd v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x76c7ff0a v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x03fcfa65 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x055d335c v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1ca17132 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x25bce903 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2ae8bfc7 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x417459b1 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x42b19805 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4580c5b5 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4a611faa v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f695ce1 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x760947cf v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b558451 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x83d79993 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x90e3f00b v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x98ce6a00 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa79c48ff v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb3dfe31c v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb478b93a v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb95ee055 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbec773e0 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc181eda4 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6aa4399 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 0xcd1a050d v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd2ab1fcb v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe5cafff3 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfb1dde8b v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfcb52c32 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x07d0ba02 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0a09f045 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1cd1b839 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1d94ffe1 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2552bcde videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x27dd0c12 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x34c57241 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x37694cc8 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x45e12fc3 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4762f958 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x53133ee2 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x54b0b0bb videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x58d04b6c videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x626a2fbd videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6332a612 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6760533d videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8df97379 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb5f6c1b1 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc42fb3ac videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc8aa74b8 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcba72e46 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd2905348 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd9c29f90 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf1e3afa4 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x19d73649 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x43cfc0dd 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 0x5e159651 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xbbbe1ccb videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x1cba2772 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x8b52f766 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xd4552142 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x00e9cfe7 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0268b30b vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x13d353b3 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x19fd47bd vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x22e76ab5 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3293ace1 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x71c8b94f vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x76249c7d vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x93d6d36f vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x97e823e8 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa6797d14 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb60437df vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc4b193f9 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd31c022c vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd43dcf97 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xddd0cd2d vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe5cb1ffc vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xefb40c32 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x1569c310 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x1b5b1824 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 0x3aeb01e4 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 0xdbc2355e vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x29e15b5d vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x024e6b3f vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x28ff8b87 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2b217237 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x314b973e vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x36c4e1bd vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3ab57a36 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x442d4105 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4988c2e6 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4d69404a vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x66db4ce2 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x67be39d3 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6acb614a vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6f0a648c vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7fb85e65 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8010de0c vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x89d9fbb5 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8e522734 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x99d52bff vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa19b390f _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa233536f vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa74927fe vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa9b09de7 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xaf59e9a5 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb1580c90 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc7767458 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcbc87a95 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcd37b3cb vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd75d220a vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdc4e55b5 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdfd4e537 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe957861f vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf5d61aed vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0xde80b75d vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x06344caf v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09beca73 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0f0118a8 v4l2_fh_release +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 0x269f9978 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3eb335d2 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x467eb63b v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4b7749f7 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 0x4e870953 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x514153e1 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x514ee3f4 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55a57c4b v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5799dd07 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a578b21 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x68c2caea v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x70668828 v4l2_event_queue_fh +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 0x80ad038b v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x914d7764 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x94da7b90 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x961733a6 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e7d803b v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa202daec v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2f633db v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa689586e v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xacbc4bc7 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc5649a34 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcae8a246 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd638703e v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2d209ae v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3293ba6 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x523be7e2 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xbda4f824 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd328df17 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0ad10ab1 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2dc9b7fe da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4ea2f475 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x63a474d3 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x736b44ee da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa097f191 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa5344640 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2b0eef4f kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7c2cea8e kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9e9d4a41 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc463aae0 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd00be7b8 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd2c209b8 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf78d1bd8 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xfdd01efa kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x01d6ac4f lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4786cdfc lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xa54b39d3 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x022f2c55 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1fbb9954 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2274eb7f lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x6c616868 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7dab37ce lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb7047bb8 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd4176ba6 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x91aafcc9 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xbd995452 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xe4a8af31 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5439795c mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6846c9ba mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x81b5c613 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x93ba337b mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc6668a66 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd300785b mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x30e6d94c pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3313cab7 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3dc657e9 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x52a8f45c pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6e5f69a2 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x872d2efb pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9d7a88d9 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa41155ee pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa9e74a76 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdc9f6e06 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xefa5f817 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x8194ca4a pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xf7195d7d pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x201c387a pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x436a3000 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x90e83be2 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd16184f3 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xdbae5af5 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 0x0ecfe260 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x16002b8f rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1ac4495b rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x252f5354 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x288ad2dc rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x324ddf5a rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3abfbf72 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3fa37ea2 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4241e473 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4c83f79e rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4d237d27 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6015c5b3 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x65d38597 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x72f8f43e rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x756bd025 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x76c1bc8d rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x789f2fca rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x800cb4c4 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8a154197 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9ae537c0 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xaf0018e5 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdcbf0cbb rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe2e593a6 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xecdd0e9f rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x00bcf28c rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0557e04d rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x15622652 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x49e9f438 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x587cbaae rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5ee423f8 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x71085e23 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x78f46398 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x922b3826 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x99883b19 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc2008253 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf34c1cd7 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf97f379b rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x00078082 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x00353d1d si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0068505b si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0310f25e si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x096c9545 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d7f5031 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c4645df si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2a80cac4 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2c229dab si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3412374d si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x34f1e071 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x36801f0c si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x374b84d2 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x39d8147d si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3c148246 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3d3562c5 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x41300281 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4cfb8dae si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4d7219b7 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5fd4f7b8 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6c71b1fb si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x743ed63f si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7b64ede9 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa0504e12 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa48ec73e devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb603fe54 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb8cc468c si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbbb0250e si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc46e1e0c si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc7ba8c2a si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe36bdf5f si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe50420b0 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf4eb2f3f si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xffc518fe si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x02178145 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1b925273 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x33362202 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x417fe93e sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xfb7e8653 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x0f73542b am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2f933043 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x9b3d8b8e am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xce440fa9 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x2f8f41f0 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x54c2b856 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x5a10af01 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xad1aa7c1 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x1d428bd8 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x365a8f8d bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x4ac7c41b bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xf1712034 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xf37196d5 bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x19dec760 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9ceaa7fe cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd480ab9d cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe2aa3578 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 0x05cfb9cd enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x628cdded enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x70237a7d enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x84372482 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x863184e6 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8e96442b enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xddc8dade enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xeb526711 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x13ebbd7b lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x43ac4d41 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x523a05a5 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9430b776 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc2df45fc lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd0fca47d lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe552883d lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xffe808a3 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x95ea0797 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xbe92fb75 st_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x4a34d275 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x5aa47e6f dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x7a917e9a dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x013dd03a sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x023a9444 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1121fdb1 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x19b464cd sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1aaf6979 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x32a91e84 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7d95b3d4 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x80177738 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9b8b93b9 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc4567f76 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd8c53cac sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe3b6a957 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf4697869 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfbd8f8bf sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0f46c8f7 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x62eb963e sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x63a1ee11 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6f9e86e9 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7780514f sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9be0c451 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc3ef0b7e sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdd765f4b sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf17ac7f3 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x0c41612e cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x336844c6 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xce766150 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x73e99d44 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x801052c2 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xfe421912 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xbd3bb0b5 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x608fa62e cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x8afe091a cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf0d28682 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00800b7c mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x036615b3 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x064265ab mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0936c5cd mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x133f55ee deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a97de31 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2614a214 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3469cc1e mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x365f6b25 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3b3e44f2 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3eecf38f unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50e0a132 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x531e6c39 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5320be7a __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5dacde17 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5daefc4b mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5e3c0cb7 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5e4c2499 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x66807fdb mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x742b4b70 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a120dda mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7e75b60f mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8635461f mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x890798cf put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8b76d7eb kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x94c73a74 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa98d9f2a get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xade60641 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7fbbce3 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbcc52142 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd9b1297 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbee68ff2 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc0c00e32 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcb960430 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd701001a mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdf20094c mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe0bca478 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe1d9bace mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe39b58da mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe4a3753f register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe708ca33 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf0f33a00 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x0c8e6768 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9037c605 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa6bc9706 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe092e1d6 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe337f440 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x679bb3f4 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xcc6db37f brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xee7b65f2 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x14a193a9 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x36eb052a nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xc7cc9f6b sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x2d8f728e onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x305a1108 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xe660c924 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x201a9495 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x27315f53 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2fd03576 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x31601e4f 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 0x43653105 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x806c001e ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa044bbfe ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb375021d ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb90f213f ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbadda924 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd5ab520c ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe3c2d723 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe3e95609 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe50a1861 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x6925c657 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xe8e21ed8 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x09ed31fa c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x304503df register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5e1cf80f unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb6a8cebc alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe33ef235 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf679d194 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x11a1ef82 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x152e105a can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x220a2d52 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x271e75f2 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x27b3d7f3 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2d6107d7 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3696fc7e alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x542a4088 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5a967dd9 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x76f80c3c can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9529df98 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb4487727 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb6b43412 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbc56e5cd alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc2c510cc devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd24ebfe2 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdf8b9821 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfdeefd66 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x40d19b7e unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x81578d91 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf1055211 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xfea46576 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4f1adab8 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6228414c unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x62f5fde4 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x75b345c9 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x0c301d28 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xafe8af72 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02aba0a2 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0424ea06 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07d78668 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09668c1d mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a2f1c40 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c1af64a mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f9e9882 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1409adce mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1507d378 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16202694 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17680478 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x194dd8dd mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d736d24 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x233d594b mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24ad1fd0 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x277d8f7b mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28254fe2 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x297665da mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bb9e2f5 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bc4a73e mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32eff281 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33b15a5e mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3586a1a1 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x367058a2 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3730a2cd mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x385f15b0 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38fb6bf2 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b349bc7 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d05dda9 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f8d4ff6 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4847e553 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x489a0593 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e5a6f94 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e7c650a mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x502889e8 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x514ccc32 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5206637c mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53a19770 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x542e82a5 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56502dc4 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56547c4e mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57279762 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5970c632 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b958c44 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c290597 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c5e1a7c mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e51a55e mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5eb3eb4b mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f840438 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6160e1be mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61d5132e mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6494e953 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65755212 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67c74ec6 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6aa71c31 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b018eb3 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c171a80 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72561a47 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72f8a612 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x755a9472 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a213c5f mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7db8e898 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ef99c4a mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7efc9aa8 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f92a2e5 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80508b40 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83c2182d mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84508a62 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86c7be05 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x872b32af mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88db3a5d mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d1097a4 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d1a1d7b mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x915dfcfd mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91f298ea mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x924cc3b6 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x934ac5b8 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9502d764 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9580c9e2 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bf8012a mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9efa37cc mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f3a05e3 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa171c8f2 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa251a026 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2a720cd mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3065ae5 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9087d14 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5786e43 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb74223e4 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8bd2a99 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba012fff mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe1518d5 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8921d55 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce014619 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf4c03b5 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1ca0675 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2a616d6 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4b419c6 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6ddaada mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7b68657 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8cedca7 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd988f68b mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdba4a55a mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe118a192 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1521f42 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe17ad6d2 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe590e090 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe875cf1a mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8b3a79f mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9a54fb1 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee5a7099 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeee5380b mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef7212de mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef9c4a1b mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2968e34 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2d0294b mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf43095b7 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4a4af51 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5232abd mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6f58552 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6fbff13 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7f0c456 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9a2bf53 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfde0e05a mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06617cdb mlx5_core_destroy_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 0x099b1003 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f725176 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12726d6d mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16fd3e47 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1759d66a mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20029808 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2751dbc8 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a9c01e5 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b9793aa mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30025f57 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4321e492 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44780efe mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x482a88d1 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49240716 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fe48e39 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56035d46 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64f2f458 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77010586 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x792bd656 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bd6bfdb mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x814227ed mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89e69323 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93c4f9e3 mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ada298a mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa04c8c51 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa07b9dbf mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa781a479 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb42cf5f4 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbab70871 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd5d82b5 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0f7d82a mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4e36ddb mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7d015e5 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca1af60c mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb801171 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaf01543 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3d4438f mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5a7a4ff mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe87dd7e9 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea08e596 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee66af72 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef5178d9 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc7d69fc mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfeb98bcd mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x0fb5e17f 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 0x1f1b0dc5 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4d157c2b stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x89e8ac62 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xdc678334 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x06042bed stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x26f28ecd stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3c95f1c7 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd1cb2bc4 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x18a495eb cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1e0b734d cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1ee56a3b cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2976627c cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x33d8f521 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x537ee249 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6091e4ee cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x7556b9d7 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x76ae30d8 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x80f5d576 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8196aa28 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa0d0a66c cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb0dbf58a cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbd3f5a93 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xce1d25b6 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/geneve 0x70538fb0 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/geneve 0xc579c7d3 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x116353ef macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x1871a947 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x414d20a6 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6195afc5 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x61eefa98 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x10f64523 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1970a48b bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4ef24151 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6135a953 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6885ee89 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7723785b bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7814385d bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb9fddc67 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe241ae8b bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf6e8ad76 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0xeefd9b9c mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb700cff1 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xec4ad123 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf5e4a440 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfdb679df usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0790126f cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x17d4e0ca cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x730fd253 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7ead839e cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x80042194 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9b876ed8 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xae5589ff cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc334ea20 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xec125324 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x09f0fd14 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x664f6776 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb19db82f rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe32dfadd rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xeb79eaf3 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf62ba291 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0619846f usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0f713b7a usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x132ffcc8 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1eea6d7b usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x212df75c usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3d79aefd usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x42c9260f usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x499de841 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4a366133 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4c17117a usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4ca1acfc usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4e70adfd usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5f2f800d usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x60b50638 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x72d9b850 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7aebf789 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x82b0214b usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x83afa172 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x844431a3 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8d8249cf usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x928b3315 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9809df6b usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa8356527 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xac7e1865 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xadcacdbb usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb0e505e0 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbfcd91d6 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc80e2dc3 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xce431077 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd646a100 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf463bdc6 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xff12d077 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x46066968 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xdd7be168 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x027daf68 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1c8bed4c i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x404ed3cc i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x460b4ef6 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x56a490e5 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6fc81204 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x73b3e2b1 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x894d5cda i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x97acdece i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xba9a842d i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbbd79f2a i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xeb541c93 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf5d8653d i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf83a625e i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfb35afa9 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xffa9f1bd i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x00ad2161 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x08950712 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x38286006 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x6cb21a0c cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x9c7caa8e libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x398b6107 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x6fb69d04 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x9750f459 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x9e1da99c il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xae81cba0 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x13ba7f01 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1454ef98 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x216d960a iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x22f51efa iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x37b516fc iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3c6ea5df iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x41300afb iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x47e5051f iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x54569621 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x56845365 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x57ddd546 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5abeeafb iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x662ac108 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x77da9685 iwl_poll_bit +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 0x86a75054 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x89795aad __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8da16094 iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa322a0f8 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 0xae0601d9 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xba39dce2 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xba5f4dca iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc557a430 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc7b8c46c iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc8337ea6 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd009c925 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe009b5d6 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe3386ad5 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe5a8ccf1 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf2fc150c iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1bacb8f7 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3382c67d lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3a018fcb lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x43568f93 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x49e5b5fe lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x509a754f lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x520c1fde lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5a2e3843 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5be38091 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x68c5a8e8 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x78a358a5 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x803e6fa4 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x93e54c84 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb91b0296 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe0e8156b lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xefeff00f lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2be69df3 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x3b1f496e lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4072fd19 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4c535f41 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x5d038f81 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xadb360c2 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 0xcd7e6488 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xe87e75ca lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0b1b00b9 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2150a0fe mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x23035ddc mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x30ce8e7b 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 0x38101d5a _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3eed65a8 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5223fecd mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5a170ba2 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5a52969b mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x61ae28d2 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x654909b9 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x689ed49f mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x68adb6a8 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x734e7842 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7faf43bf mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x81e3186a mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa62c15fd mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xca8e3e20 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcf8e5c35 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x057b6c09 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x154f58ba p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x1e150ce2 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x2370539e p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x443dd1e9 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x560e7227 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xadddf1a9 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd20c6b32 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf92c41ec p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x02243fc8 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7cc47d1b rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xce571b69 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf9def8b0 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x03902b14 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0d56fb01 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0f354c7f rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x11e2e7ec rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1a42a3ef rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x29936323 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x392118fd rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x447c5a67 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x44ab5b30 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4fe5d051 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x50227c46 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5d4fab59 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x64275e6e 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 0x89635a96 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8b264112 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8bc614e7 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x93041f12 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x943954f9 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xac3470ab rtl8723_phy_txpwr_idx_to_dbm +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 0xb7ab8105 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbb31bcbb rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xca32c65d rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcfde10f7 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd66ac8d2 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe12e53b0 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe25cee93 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfded274d rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x024c796b rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x099571c2 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ff1b5b5 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 0x2c526b35 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a3c3b64 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b3d5e54 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 0x7139cba9 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7309885c rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8bbc4a50 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9462c772 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x99246c13 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa070240b rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8299cbd rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc5603a3 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc5d8b71a rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3f3dc43 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdada77a8 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe6c7618e rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf11f16f1 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6ce160e rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x2fd6c33d rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7a9ab496 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8a0ed396 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa2dbc1b0 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x00404e29 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x040f8acf rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x05d285be rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1409c6b0 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1cdf2fd7 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1f6a4b24 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1fb80a1a rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x22749910 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x275f4ad2 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3857bd95 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3f971909 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x42558310 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x514cf530 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x563a8922 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x568b3b61 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x62392462 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6843d02d rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7be5db60 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7ec10772 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x98c82bb3 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa3963e6a rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xabff72a5 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb1895126 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb6e3cb6b rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb8c160ff rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbab5a771 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc611b0d6 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc8283a3f rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc95fa812 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd4d244f6 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd6c97a89 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe66ece4d rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe97594c5 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xea5e5202 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xeec805df rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf1a30d78 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf3a8af94 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf63bc705 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x1eeafb6f rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x248013d1 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x32c7980a rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x41c11151 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4e6727bc rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x61508246 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7162e64e rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x78ffc1c4 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xafdeadf3 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xcc931839 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xeec9c2ab rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf013fd8c rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf4ac14fc rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0b0c5090 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x155e6970 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x19fefab0 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1dfde45b rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x20e05d0a rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x21cfb15d rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x231f6b53 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x276fbabd rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2a89248e rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2d619c77 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2d978540 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2de3cadf rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x30955f81 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3f13b04a rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3f7376b9 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x42b263ce rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x46fedccf rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x53f4cb01 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6653e538 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x698d46c2 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x700f3467 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7304b614 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7addfd3b rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8f0ac79f rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9caa5262 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa1db6c6f rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa2fb243a rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa7fd523e rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb531891d rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbb5aaed8 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbca982ca rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbd6ba38b rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbf008429 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc0b805a7 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc1ee9a46 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc3a62a8d rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc9243c8b rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc9e34220 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd377d612 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd3a59554 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe7ee6e05 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xece3d861 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xedb02fed rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf5c192f8 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf947cc50 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfb00a77d rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x0a93d3e8 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x1c143a5c rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x43bbe173 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xd73a524b rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe5730917 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x23f4c37e rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x4eb71488 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x5bd327f4 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xe12e6b56 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x35cf19e0 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x380788a4 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x392448fd rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3f2904f1 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4033d9ab rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x44d8624e rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5a0aab2e rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x677cae35 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6df8a1b9 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7010c028 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x70255560 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x75510ea2 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xbe61b498 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc2dd50bf rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd6103c0e rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xed2fdbdd rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x6f353d62 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd5806b7f wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xe3417c45 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0a90f36f wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20759bc7 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21c9d4ea wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x27a6779d wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x27cfa831 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x27f68a48 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2acd5c57 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2e45d8a7 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f7ada97 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3209add3 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x343dda7f wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x36aed299 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x38cdb345 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3a44b052 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3a8a646d wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3b2e9496 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3b3652b9 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3ec7b3d7 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3ee09c91 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3fd5a349 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x401496f7 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x42e9088f wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x44d05ec2 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x47e77b0b wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5deb77e0 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x644f106c wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x64fa5411 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x65867d31 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76ecd488 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 0x8ac7b1c0 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8f7086ad wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9007e262 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x916ded43 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x930d97dc wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa6007811 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaf5cd8d5 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb13aac59 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 0xbba851dd wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc359a527 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcb6c5549 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcf5d463f wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd363fbfd wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdab46c96 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf57eaed6 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2160ba12 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2ea0117a nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x61784350 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe145effd nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x00b71ce1 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x02122398 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5b91a945 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x681e685a st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8dfa90b8 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xaf0cec84 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbad1c34e st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdddd1848 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 0x327eff01 ntb_transport_unregister_client +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 0x9044ab1d ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xcc81822b ntb_transport_register_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 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x24819668 nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x37a60939 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 0x4ed3ef5e nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x7880fd6a 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 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc32b22af devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe8e25de3 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xf2f687d6 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xfe63cc99 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x11572a54 ufs_qcom_phy_enable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x34bef871 ufs_qcom_phy_generic_probe +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x51fa58ff ufs_qcom_phy_disable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x5cb1efbe ufs_qcom_phy_exit +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x6b57ab26 ufs_qcom_phy_start_serdes +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x80b73be3 ufs_qcom_phy_set_tx_lane_enable +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x860594f7 ufs_qcom_phy_init_clks +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x8d4dcc58 ufs_qcom_phy_enable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x9ff00458 ufs_qcom_phy_remove +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xaaeb515f get_ufs_qcom_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xb4560d4f ufs_qcom_phy_init_vregulators +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xbabe88ce ufs_qcom_phy_save_controller_version +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xbdeacf18 ufs_qcom_phy_enable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xce50b620 ufs_qcom_phy_calibrate +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xe215e391 ufs_qcom_phy_power_on +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xe8d9d484 ufs_qcom_phy_calibrate_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xebadad2a ufs_qcom_phy_power_off +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xf3e7a39e ufs_qcom_phy_disable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xfb6f7cfb ufs_qcom_phy_disable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xfde17ad2 ufs_qcom_phy_is_pcs_ready +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x53817c3c pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x604d51a2 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xa141f34e pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3be4102e mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x9887f88a mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa136aaa5 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xcb8fc40a mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd9daf450 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x32541959 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x59aa5142 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x70ef92e9 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x81487746 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa4922c68 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xcb1e3379 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xa68c2b58 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0b9b5a12 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x181eb55e cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x20832eb2 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x209a3309 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a1d4801 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a3812ea cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3c4b3223 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3ef77874 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f25c1a8 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4f5037e9 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4feba310 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c621dc8 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ec1e9bf cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60d807b9 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6eb7fefe cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7163de4c cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x73a21d2c cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x76ede57a cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ad2e672 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c854548 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7dc73308 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7dd266f2 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8bd1abe6 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8cc0296d cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8d9a31a4 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x91280f7e cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9311084b cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x94492e47 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x94df282d cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c3d86ca cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa05d094d cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4832e62 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaa93f745 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xae9b507e cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb9f4986a cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc2d92074 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc96f4d8e cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd687632a cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda79c910 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xde2a2519 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5769b08 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe878a566 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec9ac85c cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xecff3bfc cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfa3acb66 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfbbcf9d8 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x14349f91 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x253a9e29 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x318e8031 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3887dd64 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x59bc3841 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6207bfe6 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6322d560 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6b884f19 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7435e76d fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x818195f5 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa966dc93 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb142c269 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb9d2362b __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdf1bc95d fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe1702c6e fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe20e7349 fcoe_get_lesb +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 0x00e18a14 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0595bc88 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x126c9eb4 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a6b5337 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1f7e7ad3 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33a758f3 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33dd1f7a iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x35ccc380 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36f3e86c iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3c5c8fe0 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3dd4c4b6 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4942f75e iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4bbf71ad iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f884917 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6953c793 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x72d703a7 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x737f5f59 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75dba116 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x79cd0e7a iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c4ced33 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7f61d0be iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8611175e iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86d61fd5 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x873fcef2 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8740d2c6 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9b3aec76 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7693d45 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf71d1d3 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbb12c4e2 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc65b44aa __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb56387a iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd18bf462 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8ea28dd iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdb35d750 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf669501 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe5029480 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf072f725 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf21e232d iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf45c5952 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf98b1e64 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc038cd9 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfcdad56a __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x048653e4 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0683e298 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x09e0dbce iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0f56b7b3 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x155da5f3 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3315880d iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x46c9ab97 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x71811c24 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x71d28123 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7a2f754a iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7be4fcc9 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7db822d1 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9a280bb4 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa8d7289e iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd27d5db2 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf0766f22 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf4a63ac7 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x04c366d1 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1235e32d sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x253c4b89 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2798b26e sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x39a4e2e2 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3c7ba71d sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3d173f83 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4b4779e4 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x50436675 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x63082b2f sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6329b4d4 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x69d44544 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7ebf51c9 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8935254e sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8cad5c7d sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9de74eb1 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa004e26c sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb17d223e sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb2df3efb sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb3dd8cee sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd55f90a0 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe75a44ec sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe7e9205f sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf346964f sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17f31bc6 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x18ce0c26 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1d3460dd iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1dcb70df iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2025f666 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x22520209 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x315b12ef iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x34af9e38 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3dc9df05 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41762306 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x43ccefca iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47c11e83 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b638260 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x587acc38 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bf541f4 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6a813a92 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x811181c4 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 0x8aa230b8 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x91ef91ec iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x96c6412a iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4b6a148 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xacfd8716 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1ec8d31 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb36073bd iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5547a09 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc57e342f iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6a7d5ab iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc9b60759 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd344728a iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6a71d68 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd808d5c3 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe03c0d7a iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6e075fc iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea99cbdc iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf3fbda17 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf635098c iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb160719 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfca68959 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfe472e03 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfe61d4ea iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3b94ee66 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x854d2c79 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9ba062b9 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xbf50b162 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 0xe506914d spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x08028fc5 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2fc1efca srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3d1ec95d srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x764ee2c5 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa422d5da srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc2c5ec5a srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x440be03f ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x892e8533 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe12047fe ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe4883f09 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe72e3fda ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xee674e63 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xefa0cfca ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x000e84a7 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x0368c312 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb85aba05 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc701b15e ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xcba67db0 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe18b6883 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xfa641dfe ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0df589cc spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x13d83523 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x41bebcf5 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x8430b339 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf28b05ef spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x78f1a8ee dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x8050bb40 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc73300b5 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe1fef469 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x09768c6a spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1a59eb02 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x26eb98e9 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x71c14af4 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7e88629d spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x831795c7 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x856eba6e spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x89e2e3ad spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x95c70445 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9ebb0f6f spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa1c3a37e spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa693a919 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaad9b479 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xab53a29b spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb0d2ef1a spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc331c627 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xecc75c32 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf0889c12 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x0d77b903 ssb_pmu_spuravoid_pllupdate +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 0x21570f8f comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x24dc739b comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x266bce49 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x299b6eab comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2d0e4110 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x316bffd8 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x32f6d0cc comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x40a04fd3 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4a07084b comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4e7fc890 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x52ebf791 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x57112f77 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x580446e0 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x68965ee4 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6b627282 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7f6001df comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x82d503cb comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x910cc656 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9a4c7799 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9de0b09d comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa089e019 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa137719a comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa61942b8 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa84988fb comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa8e5fd00 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb1b05b16 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb5e7a01b __comedi_request_region +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 0xbd28534c comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc1b528a9 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcd07625d comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdbf54b2a comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xea7f35e2 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xeed6ca1e comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xff393545 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfff88438 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x57f06900 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x594e4b03 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5ea20ecf comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x692b66e8 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6cea7a70 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x99d7c3c1 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd7731cfa comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf547df08 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x033c112a comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0f277ddb comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3d748ce8 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xad9440e6 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd6c74dd7 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xe1bc8a45 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x5bd8c56d 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 0x00f7a94a amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x56244507 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xc2ccf094 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0dff7474 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0f1e2944 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3a659da3 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3cdc4d5a comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5ab2ecf8 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5aed1bf8 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa06bc895 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xacf0fafa comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xaf2da66c comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb6a037c7 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb6ce63a7 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xde4a78b9 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfe5bd75c comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x345be19c subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x6789f764 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xaf9f8c12 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x563c4d45 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x030ad914 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x07fef39f mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0cbf0613 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x16000475 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x17c98d9d mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1dda019a mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2dd651b9 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x630a5be2 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x691d97a3 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6a0c260e mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7d76bae5 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8e04eb25 mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x90650924 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa87cf20f mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb3439498 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xbe5f9c60 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcc3ac06b mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcca5d74f mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd1eac191 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd3210e79 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe13ebb5f mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x2708c841 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x298e11c2 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x1e017044 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2b735d34 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3a51a1f0 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x40f0afff ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x44d863bc ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5fb132e5 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5fc2e0e4 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xed4cccdb ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x0bfdd401 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x250ad460 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa3c59ed8 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd5f5062d ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd62d33f7 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xfe457d48 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x151424b0 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x3f60b3d9 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x47f0ccfe comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x68b8294f comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x6d41abf3 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa7b2b3a5 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe88ab61b comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x08cfb584 fsl_mc_io_unset_dpmcp +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x142d7fb1 fsl_mc_resource_free +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x1d4e2160 fsl_destroy_mc_io +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x22ce826b fsl_mc_io_set_dpmcp +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x2ce61015 fsl_mc_object_allocate +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x32e69887 fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x3dc60217 fsl_create_mc_io +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x405fc812 fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x4c2f5196 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 0x8cabe5f0 dprc_scan_objects +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x9349e11b fsl_mc_portal_free +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x9bc3ffa3 fsl_mc_portal_reset +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xa40a7d92 fsl_mc_device_remove +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xa75685f9 __fsl_mc_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xcca8ab14 fsl_mc_device_add +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xeef6658d fsl_mc_object_free +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xf9fb6a2f dprc_scan_container +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xfe9062b9 fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xf320f5ae adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x05c16958 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x06ab5c02 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1936ac16 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5830099b most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x60b044c2 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9cdc1f71 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa7115b05 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xbc792d0d most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xcc771003 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd5496725 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe936521a most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf4e5ee09 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ff48552 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1b8405aa speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2b997a10 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3047b510 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 0x47610716 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4a057414 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x56355aa9 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x64d6cce0 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x84504f18 spk_synth_is_alive_restart +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 0xa4ffda1c spk_var_show +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 0xbf2561a4 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbf3d992d spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x46685172 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x58c95dce uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x980192d6 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x0bc14975 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x813b1ba6 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x295a1254 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x3346b78e ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1c514b73 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x4c7a210d imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xfa07821a imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0ce1cff4 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x163f4588 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x68796df3 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xcc013b82 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe308c29e ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf0e05364 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x033b4ece gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0539b130 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1281a57e gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2a1eddaf gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x44d19356 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x719339c8 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8798e1e6 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 0x926ac281 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x93f5817c gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x95d04591 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa154e109 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb4748197 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb4fdc8e3 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb56bedc8 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcc311276 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xa39cec6e gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc912b598 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x4202838a ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x4a7561da ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xb9381c74 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x027f5cf6 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x05606859 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 0x1cb07dc5 fsg_show_ro +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 0x39b44e44 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3bc36c75 fsg_store_file +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 0x56b9a5c6 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5ea2bce2 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7cb84358 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 0x9c411289 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 0xa78f0909 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab084e8e fsg_common_set_cdev +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 0xebab90d0 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xecf7447f fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf1c0d481 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf5af7e86 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0679e810 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x095a9d2e rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x394e04d5 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3d6efcaf rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5f4840b7 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6ee8f72c rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x939ec220 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xab3cb082 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xae85454f rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbc9cd5fc rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbeb1140a rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc2da4557 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdba50f66 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdceb2b1c rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf2f139fb rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0626d4b6 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x09694502 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0f6cc742 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x22594de0 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3061a742 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x312856d5 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x349e3c16 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x54071d66 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x60f7328b usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x72040e3c usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x72ccfbf6 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x81131b37 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x81a7bade usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x87b72de5 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8b8213df config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x99290448 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9942289c usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xab1acfe8 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xae4e1a7e usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xae8fc747 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb30ba728 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb555e98b usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbf569bf7 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc56d3cdb usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc97c8139 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe6d8a2cb usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe983d104 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xee4c3833 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfd530928 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xff40d546 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x139f1309 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x242576a3 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4669dd3d usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x550c26e0 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5c0496c3 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x677666e5 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7353e1a5 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8acb33f1 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa22712d6 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 0xa48848ab usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb642bb36 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe07b8b37 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe9967785 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x235fe63f ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xadd8669c ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1e7d8397 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2c07132f usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x345f9781 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4ebd70ea usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5794e8d3 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6cce9d4a usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8835ab81 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9bce81da usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd065607e 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 0x94fe6439 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 0x68f72389 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xa5663f8b usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0a739694 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1bc95f25 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1cccc02b usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1d6f6f56 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2a1b0bf6 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2b2548f8 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x30f3baca usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x31baf07a usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3c9dcafe usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x41f2833c usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x47726cfa usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5483087a usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6d162cef usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x91c0afd5 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa2643c63 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa6950a8a usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb85ecf23 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcd4ad6a0 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe18e7413 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe27cba63 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe4c30dd3 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x04a4bd5f usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0a79c92f usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0eb99d00 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1163a9c7 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x116e2207 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x37c5a28d usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x37e515ed usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x451a5319 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x45b3c83b usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x509e91b6 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x52a9bdfb usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6b8cd719 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x79484ce9 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7a452cd1 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x821b2e37 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x906caf77 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb38520ca usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbd235361 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc68856e0 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd3e0e965 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xda363078 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdc1ff5b8 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe1654cc8 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe3420515 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x06ce6c2a usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0add071d usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0de85e1b usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x21e51d06 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3f0e9fda usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x400ce832 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7f3640a9 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xaa6c3d53 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc9ef156e usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd91492cd dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xef467eec usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf35a7286 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x1164dc8b wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x2a01c778 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x4a2c07dc wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc922cef3 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xeeb46e3e wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf789e119 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xfced0721 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x014da372 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x02a9500a __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 0x34bf374b wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x39989e93 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x41b20f4e wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4e6ebac3 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9a0b1403 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa87e1d0e wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbfcfcc19 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe10b58a3 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe81af0ca wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xea3c8bd6 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf0db7aae wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf237f9c5 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x806797b8 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x99bd010d i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xebea4db8 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x0bde960c __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x4f9557c1 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x62aeb100 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x81af5c49 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa056dfcc umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xaba02342 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc0a857ef umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf7b44f39 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x01a67fcd uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x03840c89 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x06d4a8e9 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x09ee945a uwb_rc_cmd_async +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 0x159ebf4f uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1f021a84 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x20a1d52d uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x257b82f6 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x267e6e1c uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x26cf0d18 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x31bf49b0 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3b588489 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x410170cc uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4763dd10 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x53e29f02 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x54ced883 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6ddcc64c uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6f287022 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6f7ea7f3 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6fc70291 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7002979f uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x750b7804 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7848d22c uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x80a7c609 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x84c8ade1 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9b974dc7 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xabaafc6c uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbc955bf9 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbde02a83 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbea30989 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc2fb85c8 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xce6bfaae uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd81c0d65 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd8793c04 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xde4711a7 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1bc6aec uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xffd009e1 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x490a90de whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x14b609af __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x79a6447b vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xe44a645b vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xfc4d7dd1 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x01b55279 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x22fded9c vfio_device_get_from_dev +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 0x9b49a8b6 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xaf49a83d vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbd326118 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 0xc6fb3fda vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfe0ff1e9 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x3233326b vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xea97851b vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1e52f6f9 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a3ee82b vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3147dae7 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x384ec00f vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x396d13e6 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a70d01a vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3cfac439 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5cfa2673 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x60aa1e57 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6dd2fffc vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6e998b00 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6fffd0a6 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x73898fa4 vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7bf80735 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8100a591 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x86a7b77a vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8ed7e5ec vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x94f65c07 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa2687d11 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbaa59835 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdd954f66 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xde66eeca vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe97759e5 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xef51cf56 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xefe19076 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf2077b1a vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf5e32817 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf71deffb vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfb017bb2 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfff9022f vhost_log_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x04106de8 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2f55df58 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5d659562 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6b6bd9df ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x79dc83c6 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x87842083 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd620792b ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1f4bb2d4 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x25683096 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x257d4a2f auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x2c2da9de auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3248fe0d auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7af912d8 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa8e57424 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb4024293 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xdeb453d5 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf1385cd7 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xac94c21d fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xd1b830dc fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xf180b66f fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x11d6f409 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc962742e sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x09f41723 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1df00155 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x218e081a w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x51e55e4e w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x72f6f3a4 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x781a698e w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb0b217be w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc4815ae3 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf84a8615 w1_read_8 +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x4fd476a3 xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4244a643 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x6fe6ac4f 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 0xc83fdd4a 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 0x0a2dfbdc lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2add4c32 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2bcef6f2 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x356a47d5 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x48d519d7 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x94186c03 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc13b8f75 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01407c53 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04f9b8a2 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05ae8491 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05c65aa3 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0aa32766 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c789ed5 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11ec56ae nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x128dcd1b nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13b2f968 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14bdd520 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15a77084 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17ae22f1 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18196666 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18adfedb nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x204f9b30 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2093f0f2 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24b9384c nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2629184f nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27e14407 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29eeea56 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bae54b2 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ddd14ea nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x312a4576 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32c9972f nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3308bb39 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35ecd609 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37fc0966 nfs_unlink +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 0x3d8d3e9b nfs_retry_commit +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 0x4869cba7 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4888d199 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dc878ab nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4df75df7 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fa06160 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50167bca nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52520c23 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52a48a58 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5490f1ed register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54b33321 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58034814 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59b7220c nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59d7266c nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c276567 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c5603b1 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c7cbba5 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cc31a2d nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5dbe3456 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5eb5f917 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x618ab7d8 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x632f9467 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x644df3b5 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x687fee06 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b92a293 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bc33c76 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c6f850f nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6df0b4e0 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f95d288 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71cb9f56 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x734ed478 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73bc2c39 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76ca993a nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7927399d nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a06282b nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a312ab7 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b3f472a nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7de2a620 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e26c43c nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ea28b90 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82ca9f40 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8342c114 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8631a84d nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x864e165d nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a2eae28 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8df8ee70 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e838ef0 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8eda2e46 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fee6d13 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9182c560 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9322a8e6 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x934bdcad nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x951d95c1 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x992d0c5b nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9944f2a9 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9964e0e5 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b28962e nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e38cb20 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ec58818 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fe2a9b8 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e0371f alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad1bf2ff nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad7d1af7 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9679690 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbcb8405 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcc284a8 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd8206eb nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe81cd76 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbebad074 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbebc7640 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbef4f6a3 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbef6a46d nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc231a95c nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc44908da nfs_file_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 0xceb975d4 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd10e3731 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4b049aa nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6141fa3 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda925ae8 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd860088 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde4e845e nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde70e3bd nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdeaa947b nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdee1661b nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0500a51 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6175ce8 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe94a05ab nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf429b1ee nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5cfcb01 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6c1011b nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6d177af nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6eafbcc nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa1d630d nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa8086bb nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbb888bf nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd762d30 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x76130acc nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x06d5c5da pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12b68869 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15a8df70 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1abc90d1 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ef0850b nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2327532f pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23b29383 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c303c53 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45d79d5b pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46c66cca nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x496f186b nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e00cf2d pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f22bbbc nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fb8cf04 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57395530 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57889ced pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a906943 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cc11d9e nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5eef52a1 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66a0c0c9 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b5f81d3 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6bf39ac9 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e5fef8b pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7364bc8d pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a21d4d3 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e819168 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81346528 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85fd4fa4 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87893304 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ab49205 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d126b28 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f7c4c98 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f9c6a5d nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94c914f1 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9720acde nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9881be1a pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9da99d64 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3688bf8 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3b73528 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad100cf5 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad5bd3b0 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae59d6a2 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1cd1a1e nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb3021c8 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc58c548 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc427df08 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xccf763c0 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd33d8bd2 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda6e3aab pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3a3bef8 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3c0de6d nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3e1c08a pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec1ba128 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf04b506a nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3c4df55 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb88dcce nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd67dea4 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfdbf9195 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x32d86253 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xbaba5aa9 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xf4f5da0d locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7d2f956e nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x8d44c778 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4aa830de o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5a94fb6a o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x78b1f55a o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xac6fc8db o2nm_get_node_by_num +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 0xd7309ad4 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdf0431d0 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf257529b o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0335a7f4 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x203e320a dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x490cd080 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x72cb2b7a 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 0xa2df6f75 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 0xe8396948 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x50f60fc3 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7d542424 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 0xadf163b0 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 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x2fa8b4c5 _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 0x9fad8e21 _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 0xf332d9a2 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xabe2badd notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xece9a9fe 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 0x5f9ca1a9 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xd7edd01a lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x0159666b garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x3f67e6d9 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x906105ca garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x99d47982 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xafc39410 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xb98f961b garp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x5d9bf946 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x60554e41 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x77bbada5 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x9517a2a5 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xa74369be mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xbdca342b mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x0633d453 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xf4677d3e stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x94aed42f p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xa19d62a2 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 0xc737bd8c ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x121e2e6a l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2511baae l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x30612368 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x36a48038 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6b4b7d0f l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7722fd81 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8ebfe0d3 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb678eb5d l2cap_chan_send +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x48b39494 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6f5140c8 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbc32c87d br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbef4f93e br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc65fed29 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xce137fdf br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf64aede2 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xffc327a5 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x6a0e658d nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xd0f5d18a nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x066fe871 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e605403 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2e991374 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x310092b4 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x38a1a3b4 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4358f5ec compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x45c770bf dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e7ab228 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x52bcdb66 dccp_feat_signal_nn_change +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 0x5d1a0505 dccp_done +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 0x653cd71f dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6f26ffdb dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x760526b3 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80cf9f46 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8199e665 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x81e18f63 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x820df306 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x82d7746c dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x87038678 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x88641b0c dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x90067d61 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x93d84808 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa23835fd dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa8754dd0 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb2ec9f87 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc7ed0adf dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd36339e4 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd8a669a4 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xddafc478 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe7ccaf50 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeb580be6 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf74bc74f dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfd83591c dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1248954b dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x38641c60 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3b21fff4 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x554ae862 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbdb5b9f6 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf9aaeeac dccp_invalid_packet +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x55b5518f ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x620b3ef8 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb87f1429 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xbff74300 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ipv4/gre 0x28436e37 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xa1dd5136 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x26458572 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x546a3fca inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5d469e5b inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x99916e25 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa2e8047c inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd518bbf2 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x2507ef43 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x10b79606 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x38ee78d9 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3f891fb5 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4671dc9a ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x590f0656 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6579349a ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x70884760 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x78da10ae ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa95e632f ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc7bc131a ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd00e43b8 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd574d806 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdf70e77a ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdfafc6b3 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe0aa08ca ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x045223e9 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x4acf35f3 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 0x815a4de0 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x0d4548bc nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x19c4bae1 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x34d76bc6 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x57442b47 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xc8b7888b 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 0x459c7eff 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 0x0594d80f nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1353372d nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x25e24d7a nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8648cf7a nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf33b1fee nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xcc30b422 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3d3643f2 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x74efdb0f tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa89ad5ac tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xaf36e7fb tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc776c227 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x26a92258 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x316274c5 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x71bcb205 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8c3c0173 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x07af7158 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1b39f38a ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x8b65803e ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb946c6b7 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc33cfbde ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd7d6c205 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xff18cf07 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x9c0f46ca udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xbd82f206 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x671b65f9 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x36164e45 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 0x8117a386 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xbe90fe5e nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x0610fa84 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1cbb5ec3 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1e9fb9a2 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x85d2c041 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xd1104dac 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 0x6a0af935 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x355a004d nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3cb0d1e5 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x49eb095d nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8f9c13de nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe5306f05 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x673c130b nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x198dc24c l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x30298ee7 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x570ab3bd l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5f20be59 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa434319c l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa58d9fbd l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa738aa34 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xac5d9b65 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb9eec7f9 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbdb35158 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd1bb8064 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd8837eb8 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdf5cf2a4 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xede95f1e l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xee307b23 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf43ccce1 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x2ea38f72 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x01270141 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0912e079 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 0x3ea35288 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x431821df ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4e8b1599 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fccee74 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x921b586a ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9a929965 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9ef7efa8 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9f601b81 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xae9deac7 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd488ab89 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd7726569 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe5eb9517 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeda81f14 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8d15bed8 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbcf1ac97 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xdad63c1d mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf3c49ed9 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x04c8d387 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x072c3811 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0cc524ee ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0e20b5e8 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0ef7b14b ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x11643efb ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x210fe4fe ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5603eb23 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x62d20a53 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 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 0xbcc6a7dc ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc1d95d87 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc4115480 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcb098b9b ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xda755529 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdd45029d ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xebb5c79a ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7314364b ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9e50640c register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa92db210 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe6e59e76 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01ad78b7 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0382ac3d __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0951d811 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bb8bc29 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c1b488e nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ec3bbfb nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1287d98c nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13087537 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15f610dd nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1610576b nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x180d649d nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19c652fa nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d4633c7 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25b3f7e3 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ffc6ff4 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31dfe4b2 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x370dbce3 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37e0e654 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3841ac78 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3914841b nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x398edeab nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3cac0e1b nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fcc314f nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45f752ae nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x468c4939 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b506f32 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x501e8c9b __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52132a6d __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58466450 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x585ef5fa nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58c45053 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5960dc0e nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ccf29bf nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60d255c0 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6342c550 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a72a3b3 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6edaa2e4 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fb1f09f nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x717196e9 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x730522cb nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73a9fdc8 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87f58787 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x885f139e nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a1d3a94 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c0cb664 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f782f68 nf_conntrack_in +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 0x92e08868 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x957f03e6 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x966111d9 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x976ad363 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9fe6a924 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1be2f80 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa35d636d nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa751e4ff nf_ct_expect_alloc +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 0xacf4d015 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb566adf2 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7e60ecb nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb1395a7 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb267f02 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbbfcc59d nf_ct_l3protos +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 0xc6ff23fa nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd22b33be nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3e9482a nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4c4afb5 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd848f072 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9261194 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0f11f62 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1887736 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe713dca7 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe90e6cc4 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebfaecfc nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xedcf9caa nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf07543b5 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf21df142 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf31a2702 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4c94178 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa7ea0c9 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb45d318 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd5b7511 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xad139409 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xc6773d39 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xfe1812fa nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x10592d1b set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1329817b set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x18466ae2 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x327e2ec6 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3bf36a9d get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x526e18da nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x932ae111 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9b940992 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa26ceff3 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb66475f7 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xc214080d nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0ae34c3f nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7c84a602 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x83fa210c nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc82cdefc nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x8f3facc1 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xc1be680f nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3cc73d37 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3dd0b14c ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4662a920 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6c792b8b ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9bb681b6 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf035d66f ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf086582d ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x2defea7c nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xd157f4e5 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x0623d7f5 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x2eaf00c3 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x8facdc26 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x9c579a22 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 0x248fbf15 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5ca25f9f nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8b496784 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa9d1de95 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xce15ba04 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd332c6a8 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd7dcd863 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe7ebb830 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf19fce31 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x379b3088 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x6419ce66 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 0xade98260 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd21f9c36 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0d7b4992 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1385f326 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x14fd8785 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2f9df3c1 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x30e700d5 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x344e3c73 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x35e0ef6f nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5585972f nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x57bcba3e nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x72a9fd37 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x74f450e9 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9a4b74eb nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9fd159fe nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc38b2f64 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc52f0c6a nft_set_elem_destroy +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 0xe7b4ba0d nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf9af53db nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x123e7f80 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x136d77ee nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4f9389fb nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x63036d3b nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x693f5b3a nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x696939e2 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd346a3dc nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x0ba40220 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5fc5fa78 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x6fb2569c nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xa7e807e3 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x0cbf7028 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x523fdbc8 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x8b46727d nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x16a5d2b6 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x482afc24 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x5643ec95 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x889a4661 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xe971235e nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xff12a462 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x1c7fba34 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x2fec3e31 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x35b5b8e2 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x5f2caee6 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6dab8759 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 0x11daf590 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x155bce85 xt_compat_target_from_user +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 0x30e7f04f xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4bee45d1 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x522d5246 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5e45a55e xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5e70e28b xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x66637786 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6d190527 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8f8fdf63 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8fdebebc xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaa848de6 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb8b89eb7 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xba8b24bd xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc1649c23 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc9c55925 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xebde1cdc xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf5a657ee xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfa7fb85e 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 0x25f78a73 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x4bf77d97 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x5818099f nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x48af28b7 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7db697bc nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd2f998a5 nci_uart_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x087fce3e ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0eb3376a ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1ba97d67 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x248cc7be ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7b94053d ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8d908ae9 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x900a8d4e ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xacb8059c ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc96331c4 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 0x099e3769 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x0a9ed417 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x0e3fc775 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x12cf3142 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x196dc615 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x1e7b2fe4 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x3b971053 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x49f62934 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x4bd20e0c rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x5c719a88 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x62f0e351 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x703a5689 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x797847de rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x80c1fb92 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x8f44ed78 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xa55f0a47 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xb318dd2d rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xbb15deed rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc76750e6 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xc7e7a4ef rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xe68316ad rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xeec852d5 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xf06d847e rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xf32baf59 rds_inc_put +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x62c65cd7 rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xe77d0206 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 0x2652808f 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 0x9c683788 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 0xcf9b3e75 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x012adb5b bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04123116 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x042a42b6 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0549c4a9 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05afb427 rpc_peeraddr +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 0x06aa9da4 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x072c598f put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0856cafb svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08fd51fb auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x091774e6 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a927ddd xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cda37a5 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f859704 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1036b069 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13786af8 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x152177a0 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15c940c7 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x165540a3 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x176950f6 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x190a7562 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19eb1923 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c1f09be rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d8a37fd csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x221a9ac1 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23925f19 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24c24cc5 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24e62e79 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2805ced3 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28e2a4c6 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eb574f0 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f5a65f0 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fc2a50f rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x301420df rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30916664 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30f848da svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33583f0b rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3533423d rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3612a0c6 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3667b0c9 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3824e2ed rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38d859cd rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39698753 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x398060ec rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39d86f3d svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3af079bc rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b1c4feb svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b6a0c27 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bd32481 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d23a0aa xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e008938 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ea37f5b xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f346dc8 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f8a0dba svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40c89ac1 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42627ef1 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43ca94c7 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x450efb82 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4555f93d cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x463e5cd3 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47ca2ef8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aea579d rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c3ff7f8 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c4ce595 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ce81416 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dd136b0 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e13cbcc xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e34f6e4 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e6da8f7 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4febee59 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x512a1fe6 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51b4a381 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5324ee44 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5482983b rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54957412 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54c53998 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56cb0d9e svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58307fdd rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58d4bdc0 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b654154 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b84a9b2 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bf817c8 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d7c7119 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f40c1a6 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f4ff847 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60c41ecd cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63dc1343 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x641bf414 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6631f6ff rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68527fed rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68e44d02 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b5aa651 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c4fe41e cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ce1b9ce rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70089ff6 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x704d5bca cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70d302b1 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71659e8a xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x718cb740 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72a9acb2 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x743eae58 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74f528d7 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77d09739 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79695a3a rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bb064d0 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c55b874 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ceb748a cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e045340 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x817687cc xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82ea58ad svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8440fa37 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8744fed1 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8806fd1e xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ab8d623 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e6505b7 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8edc17e3 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9023df53 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9303b393 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9434618c rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x957cde12 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x967c5d9a svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96d046bf rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x977e5e4a xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9787ee2e xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97f428ff rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98494804 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9980831a svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a5faac1 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a80cbfb svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e1b8a00 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0a5c0ac svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0cafdf2 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0cff060 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2fb4721 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4fb8351 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7210192 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7bbc067 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8844bca xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa3d7350 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad40b2ba xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae56ac08 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb05e58bc rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0f475a1 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb13a0001 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb18f4d25 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1aa5934 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb20a320b xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb250f45e svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2ffb1c7 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb45f77a2 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4c176cf sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5dacbd4 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9cd3877 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9d2dff9 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba36d169 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaa78f95 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb083b8f rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe26ff42 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe448bcb rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbee750e6 xprt_wait_for_buffer_space +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 0xc2f52595 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3684e5b cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc37512ce rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc41b6278 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc774a4af rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7aea112 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7edfdd7 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcadd03b5 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb52e428 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd380176 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0b3b7c3 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1fe33b9 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2bcebef xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3003222 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8d6032e svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd936f3a9 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda95b0e9 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb05108d rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb5f845d xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd8405e5 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0cb8184 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe33ce4a6 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3cf003c rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe480c820 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe78b51c5 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe90fa589 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97fbf44 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec012a4c _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec94d724 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xece85f33 svc_proc_unregister +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 0xef350a4a auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef6c0810 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef8c1554 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf67373a8 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7c2f8d6 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf97bb759 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdeceb68 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff7835d7 rpc_clone_client_set_auth +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 0x291435df vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3ccadacd vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x519b9d72 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x539f6433 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x602b7a2e vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x76f81945 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x83df14a3 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x978fd366 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc7454235 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe5127956 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xece6f9da vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf207b24c vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf6c54e39 vsock_insert_connected +EXPORT_SYMBOL_GPL net/wimax/wimax 0x3c5eb5d8 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4032b90f wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x44a95f48 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x57171ef1 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x57ea7530 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6b6659ab wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7152f075 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x76e980c2 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x86c485ea wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x890df18a wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x961f0450 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xae6233d2 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xfb4d9a2e wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0d60f074 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2e1e5f99 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x570f0a89 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x576f2196 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6ce423a9 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7264f660 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7bb0b570 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x96016e4a cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xba76892b cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcdae60f0 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf04ed1a8 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf210ac83 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf45836b7 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x4fb96bbc ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x518d9966 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x67bd3c35 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7c5e80d1 ipcomp_input +EXPORT_SYMBOL_GPL sound/ac97_bus 0xf67e4ee9 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x3ded5520 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xd0a3da9e __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x13f68599 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x318a2192 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x3f9568ca snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x768a4a31 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xab07b074 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xb7933da0 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xcf7f1a5d 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 0x10f2d8e9 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1455e3b5 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4623abde snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4796e631 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x526c4db2 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x63969887 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9b01de91 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa544cc95 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd092d11c _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1b3be143 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2b386857 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x32ec246d snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x59ac320c snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x62465313 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x72427f6e snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x87cf7804 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8d8f7bb9 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa8c004db snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb486ac35 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf2cb56d2 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x24b9709c amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2609aea5 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x48be2a17 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4e7ffa00 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa374a0fb amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdbe09022 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe6701eea amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0218ad3f snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0538ce36 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06f8a45e snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x086a9214 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13eba51c snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x144b1af5 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x148f3550 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19f66fcf snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2288c757 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26f2bc1b snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31e3978c snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34e603f1 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ebcc7a6 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x419aae60 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x429fe1f1 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43895fa5 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x467f3b37 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4965f1ac snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d031ea5 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e0e3528 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5850322e snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x59daf63a snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x674e4881 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c2e497c snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6decff9b snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x715966e4 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73bc8ff2 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74a34c31 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79fc4601 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f3b38b2 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x839d4bea snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83d9e07b snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x852d1ef1 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d25ecab snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8dec9d56 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90bb0926 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9367532c snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97b0d106 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a4972bc 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 0xa1ab12d6 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa8d5145 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad0004dd snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf22c3b0 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2be468c snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3f71c53 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb54f2e97 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb58a3b40 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb848d942 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb9fba12f snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd53564c snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc03c31cd snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0806c8b snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc212a789 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3ac3e66 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc408eab3 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc713a515 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc72ae52b _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd291bbb9 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd330b8b0 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7afc2bc snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8553736 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdcdc626d 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 0xddc3eee0 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0243f4e snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7eaa5ed snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xecc6e8af snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4561c15 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6bb9ac3 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf72965d3 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf808afcb snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff7867bd snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x150667ba snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x61c7006c snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc2d8df02 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcd9b6f3d snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd90eb7fb snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xdf47ec33 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05d39247 snd_hda_load_patch +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 0x0a6004c5 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e2c545d snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e6579c8 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e8a9d34 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1090e5d3 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12f23159 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1489c176 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15532bbf snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17c5569c azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x196651f2 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1df4d10f snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e40933b snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22de51dd snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24408555 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25948ae8 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x292d92be snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29c0468d snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b30f8f2 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cfd4477 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x307d60c5 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30888fce hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x336d5ae5 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33af74fc snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36bc500a snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3709d0a9 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37fa66e9 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38fdacfa snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c771130 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3eb8885e snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f2e7f74 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47743eeb snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49ccc3b9 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c8230fb snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dd76c19 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f4a9fb0 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5196d1b6 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5218c891 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52d9c155 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5593f51e snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55a35158 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x563f207b snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a41a1de snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c83f98e snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ef00c9f snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fe07dd0 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6064f4fa azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x662c19ec snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69b67a5a __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6aaa87dc is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c00fdcb snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d47f79d azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fe5d66b snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71900149 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7266c12c snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75393f74 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75a09a7a snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x762a91b4 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79d3a6e0 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b63978a snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b90eb39 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fdcbba1 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x828fe390 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84a53edc snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84f03cd8 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84fa80bc snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8651e591 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86610283 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a6ad66f snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8af21741 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90e97a86 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90ea6105 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x924d8657 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93fdb52e azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x942cd65d snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94962420 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x952fca83 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x965f6edc __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x974ced66 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97ca2a51 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ad9f88d snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f8e2b1b snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa033d6bc snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5d0fac6 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8bfd9c9 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8dd4bc7 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad92b22f snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb13a93f8 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4ce4f73 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4cfe5df azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4fd91a9 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb939e5d5 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba5a0065 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe1650fd snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc091e067 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc20b75fd snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc35b8656 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3d03849 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5b6e722 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc794ec71 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca012719 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd1be0d4 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd55a81c snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0ff0211 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd489b0d1 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7d533d2 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd81d53dd snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9dbcc9f query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdccceda2 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd837e05 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0f5779b snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe16ea084 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe512a93d snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5c9ed10 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe63ac5ad snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe875dea4 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb80bf20 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf08c930c snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4039249 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf69ff09c snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf70acb9d snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9499fd2 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfcb1eb1b snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffcdc259 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x09126c76 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x18ae4a16 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x57cbaf7a snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6372c953 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x685ce68f snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x68757f08 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6bb1f801 snd_hda_gen_spec_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 0x80eba15d 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 0x9dfec305 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa9559851 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbc6d13f6 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc25e7b67 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd0736272 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd75869df snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdd460a82 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdfae3404 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe0a09122 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe41ee2d3 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeab7f602 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xed12204b snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf69276be snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x0c855ba1 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x50aee2d7 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xcd176f2d cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xef3b23ee cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x3921bae5 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x53a9e4c1 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x73dc20fd 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-es8328 0xbca19db8 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xcfccb3b1 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x5441f004 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x0da24c80 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x27fa4c67 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6962602d pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9bd9d495 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 0x03efa6e6 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xed17c705 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x2c400977 rt5677_sel_asrc_clk_src +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-rt5677-spi 0xd8bf8ae6 rt5677_spi_write_firmware +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x35c3f694 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x48665c62 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x56380aad devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xbe79cc34 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd531fb6e sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x746faf4f devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x1bec7ed4 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xfc3c1b8f ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x3b9404a1 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xb8a4ab05 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x230e32e0 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x171b7003 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x3419dc75 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x8812078a wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xec580899 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xac5f8c2f wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xc8767b08 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x29310ad1 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xf85dcc3b 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 0x596592bd asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xdda4e066 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xe8610fc1 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xfc2106ae asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x739fbc8e asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00aba5e6 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00e08aaf snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05a2dd12 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09736191 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09743c84 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d4b92e1 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ebd26c0 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f0d6d33 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10cceb26 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16762a65 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1740ab5a snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a58c844 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a8f51f2 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21bdafbb snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21bef08d dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x230d317c snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x273e0dae snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28e64d6c snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29b2696c snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2afce725 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b84a709 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d081305 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e1f0479 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f36a457 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fa78914 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x338d5616 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3474424c snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34913119 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37cbe68d snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3886c1b9 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3887f6ad snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38bc6316 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c7c85e1 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x414266fc snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43c7df6a snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43fe4af1 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x448bb23e dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44ae1a72 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x464f1723 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x476a3ca0 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x481d281e snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x483e2b89 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x488f3f02 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48b1fcce snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49ab81aa snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ba1d113 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e5dc816 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f9caeef snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58cbf4ce snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59065ad0 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d804827 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5eac6651 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65eac6bf snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x666244d1 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6982a34a snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d0c214f snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e6c5a61 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7101fdf2 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71e59ff8 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x722436d9 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77ce5a9c snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x795f4939 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b835776 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d7b5c2d snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7dd337ca snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e8e5b54 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7eb1e948 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fea8373 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8089b1aa snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82f76bdc soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84d86da3 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x871fe9d6 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8752e2dc snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89a967e4 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a3ba936 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b2f32fa snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fca7253 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90d4686a snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92f664a3 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9324b599 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95c69e39 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x964399dd snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x970b82b8 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9791f629 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9854f3b1 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9eee1130 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ef1e8cf snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa16a658c snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1a03016 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1e5fd31 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa20c7d76 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa47a0429 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa481e92d snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4d1cc22 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9e698fe devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabb51ec6 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae544b5a snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaed6a9de snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb48a5de1 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7292086 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb73e529c snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba76502e snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcd01a39 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfb713d2 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0eacc13 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc27fcec6 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc48b24be snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5932e83 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc616118b snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6a91426 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6f39e1d snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc736e064 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca7eb5ce snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcabda551 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc95cb2b snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0d51343 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1cea3f9 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd53a0315 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6a3ba13 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd73bfe97 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd744e579 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7fd4871 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda50c19e snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda8fd851 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd963bf6 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdda78363 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddf49c6b snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf35f9c5 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe01dc7b2 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0f117ea snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe186bf86 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe34d0f2e snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5dbb2c5 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe63ce793 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea61ad3a snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea833656 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebd04232 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed43fdd8 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee1b9e54 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef81f422 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf04ca1d3 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1111e09 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf18a87b5 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf341c36c snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3dabd23 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4d28293 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf92b19ae snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa0ffee1 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x05fd8214 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1b44a880 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x45bf5fa3 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x48addb87 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6799b7fa line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x79941b7f 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 0x929d4e61 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xad6f8ea2 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb46e0278 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb6155bbf line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc44ca352 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd299e1df line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd919d436 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xeccd9d0f line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf16098e2 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 0x0020e648 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x002493f2 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x002ead65 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x003a4b60 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x00442500 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x004e18f3 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x008acaac sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00abc718 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x00dbe5e1 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x00e3e657 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x00eadd70 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00ed9ac4 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x00f3bca4 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x00fba5af ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x013de97e ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x018398a2 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x02020ae6 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x020960ef pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x0215f890 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x022a4048 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x022c37d4 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0x023a54ed ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0243ab8d pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x0277bb98 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x0279fa37 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x0283606d hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x02924f7e inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x02bf8772 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x02c49620 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x03034ff7 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x0303bd46 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x030963e5 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x031309b5 fat_setattr +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 0x033c683c of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x0342d2f7 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0345555a ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x03465277 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x036a9e41 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x036bb3b1 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x036d26a2 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x03712035 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x037a2f78 xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03be551a regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x03c8c274 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x03d0aa50 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03ef1039 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040c4236 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x04112d2e ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x042884fc pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x04386a56 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x04611668 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0467a4a9 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x049eafe8 sdio_writeb +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 0x0513b372 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x05248e1b i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x0543544a __pm_runtime_resume +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 0x057a4054 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x057db067 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05ab472d crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x05e03b99 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x05ff0a3d regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x060da5e4 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x064093bc fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x0647ab24 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x0647c25e fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0653eb56 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x0657f27a kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x068d0e3a ref_module +EXPORT_SYMBOL_GPL vmlinux 0x069bf026 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x06cab468 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06f08d26 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x06f36c57 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x0704c287 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x0728cf8b usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x072b819c tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x073ae4f1 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x075806ac rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x078b1288 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x079e3cc1 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x07a20d6b power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x07a78311 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x07b215f1 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52dba regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07d091f6 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x07d39fb2 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x07eb6652 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x07ed00ed __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x0810fe5a spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x082ee9b7 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x083a8183 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x0843773e tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x08453d95 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x0886e318 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x0887ab12 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08954889 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x0898942b simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x08998a0b devres_find +EXPORT_SYMBOL_GPL vmlinux 0x089fbb24 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x08a461f7 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08e16cd2 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x08ec7c4d syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x08fd174c regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09285ae5 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x092b5448 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x092f88d1 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x09459dc7 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x0951135f __of_genpd_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0952ee7c extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0988cef9 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x09a10d56 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x09b2ae85 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x09bc9a3b phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x09ca631c transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x09ee5c97 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x09fbb051 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x0a0b4477 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x0a231c16 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x0a234abf sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x0a4409a3 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x0a4b192b iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x0a50607a nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x0a578a18 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x0a67bd86 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x0a7c1ebc dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x0a935dac devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x0aa98c06 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x0ad08c46 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x0afa57bd watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b220e94 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x0b3e0048 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x0b3eff58 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x0b552033 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x0b58b9ee srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x0b6638a5 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x0b6d6334 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x0b8d45fa devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x0b98e1e6 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x0b9c4ac9 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x0bafc323 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x0be13fff smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c1175b8 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x0c25d2a1 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x0c296265 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c5df80e rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x0c5f31eb fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x0c77a5b6 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x0c7b547e user_update +EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x0c9a0f57 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x0c9ca82e skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x0ca94c5b debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cc9f450 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x0ce0f486 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0ce13c04 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x0cee2736 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x0cff5376 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x0d18c8fc crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d598fd1 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d88226e usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x0d8ee303 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x0db301ec pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e1d66b8 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x0e30e7f6 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x0e336bd7 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x0e382f89 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x0e3f8668 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x0e70ab38 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x0e9afbbf posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0ead16c3 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x0ebb7ec9 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x0ebe3bf7 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0ee90ac7 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x0ef2cdea usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x0ef87713 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x0ef9e3f9 crypto_destroy_tfm +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 0x0f61efad of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x0f749758 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f77582b spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x0f7e7d36 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x0f85676f crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x0f932ba8 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x0f99f6ff devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x0fa400d5 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x0fc4ce3d key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0fca2955 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x0fffc894 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x102d8ece xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0x10318d6a __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x1031de9b mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x1037daef power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x1040dd87 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x1088ef93 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x109040b1 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x10962e65 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x10b5bd3a gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x10c549f6 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x1120ab17 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x1123c023 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x1125334a skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x1179161a of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x1199aa20 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL vmlinux 0x11b7f4c0 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x11caddc7 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x11d326e6 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x121007a6 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1253e9db gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126bd44e tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12785148 of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x12b17889 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x12cd5cda gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x130de01d trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x13151e69 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x131dd905 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x132d1b03 xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1383d3d0 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13b017da dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x13b04188 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x13b87f36 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x141101ee __module_address +EXPORT_SYMBOL_GPL vmlinux 0x141b976f ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x144d9d18 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x146d4796 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x14735e32 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x14888f2f dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x14adcec3 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x14b987f6 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x14c8f018 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x14ce17d2 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x14e4ff8e efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x14ff827c dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x151bf2b0 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x151fea2f usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x152503af adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x153bf7c5 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x155ee3f6 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x15615b4c acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x157555be sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1593cfa8 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x15aec56c ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x15b3fb59 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x15b6610f xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15fd6b0a rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x15fec05b of_css +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x1601eff9 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x16467377 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x1655c7f7 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x167f10df page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x16b0d18a mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x16d3d2c6 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x16f9f3ff dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x17032f2f split_page +EXPORT_SYMBOL_GPL vmlinux 0x17099fd6 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x1729b6a9 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x173a5750 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x1742ec45 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x1764eeff gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1787943e perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x17ad1705 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x17b028b5 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x17d3e0df fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x17def171 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x17edcf13 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x17f5f678 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x1809afd2 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x1827570a bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x18353cf7 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x18357640 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x184aa06e event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x187b0cd2 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x187b7511 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x187b7a19 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x187c62eb inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x187eb52a debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x18891f00 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x188f37bc __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x18c46607 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x18ca0dbb virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x190c48b4 arch_pick_mmap_layout +EXPORT_SYMBOL_GPL vmlinux 0x19110745 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x191dcced blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x1924e604 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x19325775 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x193998b3 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1943781e driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x196fe786 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x1987cd86 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x1989ff10 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x199be44b usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19b7b8ae transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19b91afa led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x19e56ad4 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a05009d lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x1a116f3c ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x1a27e88b dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x1a347b17 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1a3afca9 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x1a41cf76 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x1a4a54c7 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x1a4ea836 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x1a7f3c15 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1aa80bc1 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x1ab3de41 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x1ab43a73 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1ac98f2e tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1b06db07 default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x1b09e85c gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x1b0c0574 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1befdd8b cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x1bfb1aaf ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x1c04f089 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x1c4514b2 crypto_blkcipher_type +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 0x1c91bb51 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1cc9bded __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x1cdb2ddf pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x1ce407f7 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x1cfbf9db pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x1cfc6bf8 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x1d0ef2f0 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1d189e4f ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d388072 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x1d389138 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x1d44fc1b phy_power_on +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 0x1d74ff17 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7c43f9 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x1d86a6b5 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x1d8aa6c4 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x1da1fd2b vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x1daabc1f usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x1db0f9dc bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x1dd19fb2 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x1dd90e74 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1defda1b usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x1e1e2bbb power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1e380465 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x1e4c34e5 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x1e5963c3 bitmap_resize +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 0x1e8112b2 nvdimm_pmem_region_create +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 0x1e9bf658 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x1eb1cb76 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x1ebf1093 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1ee4ad41 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x1eee46e9 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x1f1213fa PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x1f1a8809 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x1f1e675f wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x1f364f2c ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x1f44041c bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x1f4c901d crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x1f6a1c2a regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x1f6f8430 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x1f7ea41a kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x1f848f2c regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fad4a11 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x1fb4810c pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x1fb74807 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x1fc5a5f0 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1fc91a15 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x1fe404fb spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x1fef2190 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x2015b93d unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x2015c76a param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x20202fb5 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x2033d13a da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x203c34c5 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x20659acd napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x2070e457 extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x207c1e33 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x2086328a ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x2086d8b5 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x208a16ad ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20ab680c blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x20fbb2a8 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x211ca02e alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x2141f475 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x2162ac2e devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x217079ae ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x2176612a pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x21972e1b ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b08ec7 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x21b798f5 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d4a787 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x221eb471 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x223cf9d7 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x224f7c00 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x22620746 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22aaf80e gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x22b6c5c3 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x22c316e5 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x22c4ae8e gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x2301df61 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x231e991b crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x232d6b80 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x233cfce6 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x235de0b9 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata +EXPORT_SYMBOL_GPL vmlinux 0x23703e36 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x2376d126 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x2399c9f5 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x23b40c12 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x23b797db btree_last +EXPORT_SYMBOL_GPL vmlinux 0x23c5db93 device_create +EXPORT_SYMBOL_GPL vmlinux 0x23c9da55 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x23d401e9 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x23d97a6a ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x23f1b036 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x23f35c2d kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x240a4747 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x24171f75 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x2427b261 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x24297354 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x243bd9b3 gpiod_is_active_low +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 0x2471156f sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x2472e02f blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b3a44b i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x24b4cfbe irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x24bd75b3 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24cf6e38 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x24e234e4 inet6_lookup +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 0x25260e3b __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253ae4ab vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x255ded02 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x2584fe1f pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0x259900d5 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x25b50707 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x25cd94d8 xen_remap_domain_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x25e0599e device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x261b964d powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x26248e59 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x2625c0b3 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26418afd power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x264db0cb fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x264fe3b9 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2656e386 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x26663961 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x266c10b7 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x2688a786 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x268b2c5f netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x26b48b27 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c1d361 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x26c39377 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26c935d3 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x26d17312 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x26f7c911 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x27344ec5 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x274ab13a inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x275f42f3 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x275fac58 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x278b994a tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x27b5e49b tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x27beafc2 regulator_is_enabled +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 0x27f76b97 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27ff7205 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x28079b90 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x280fe86e of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x2815aabf power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x281f9dfb ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28354dc9 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x284582f0 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x2866412f gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x28719538 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x28981be4 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x28b88cb6 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x28c7549c blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x2901b338 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x2902abcd usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x290f237a phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x291abc26 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x2931ca11 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x2958f168 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x2999a2e8 of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x299cdb35 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x29a703bf xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x29b3af64 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x29d7dc61 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f01de6 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x29f2c396 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x2a0f414d bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x2a17a6a8 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x2a1aba70 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x2a24465e of_get_nand_on_flash_bbt +EXPORT_SYMBOL_GPL vmlinux 0x2a5189f4 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x2a633d8f serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x2a665bb4 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a8a6132 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x2ac047b6 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2ae9d460 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2b2152d1 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b5feb44 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x2b6f3a13 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x2b712cdc regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2b785a54 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x2b7a372a blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x2b823c35 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x2b8276a2 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x2b8f1bc3 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2bb595f0 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x2bbf1913 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x2bd6605c balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x2bd73fe2 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x2bd9423f tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2bf25a0d ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c160a2f sata_async_notification +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 0x2c4155cf serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2c5ee958 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x2c616a8a input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x2c732d63 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c94d2c0 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2ca61b59 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x2cb75af7 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0x2ccf5528 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x2ce9586a md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cecc1c3 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x2cedd0b7 device_register +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d38528f kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x2d3c4b66 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d5b9b0c arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x2d71cad7 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x2d931549 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x2daebfa6 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x2dba11d3 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x2dbfd612 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x2dd9f11a fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x2dda56d0 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e221173 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e41e935 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x2e513de6 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x2e5355a5 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x2e5d7b1f security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x2e6556d4 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x2e788138 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x2e806b4d regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x2e8136cc ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x2e8349fa sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x2e92e1a4 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e9670c0 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0x2ead4036 xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x2eb17e6c balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x2eb3a623 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x2eb61c3c of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x2eb90719 pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x2ebe2bce da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ebe5b0c usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x2ec15c4a thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2ec27b51 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ed02e47 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x2ed4c131 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x2ee840c4 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x2ef6f34f da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f102182 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x2f1f1882 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x2f2c899c __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f64b0bf virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f674e3a of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x2f86667d scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2fb3e0eb preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2fb8b17c regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x2fca7cf1 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2fced9c9 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x304bb919 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x306a2e45 pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x30b411f2 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x310297b3 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x310871e4 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312ba195 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x313d4e6c cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x315682c4 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x316fa44e pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x317c2aff usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x318a0458 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x31a5c903 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x31ac255b pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x31baa9e5 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31c9944c crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x31cf85f5 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x31d79776 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x31f2259b inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x31f5413c gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x31f54f9e clockevent_delta2ns +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 0x3224bbbf ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x32357079 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x324f8e2f crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3255a434 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x3255bc0b blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x3259c855 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x3270fdc8 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x328c7930 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x328c7c64 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x3295900e inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x32a6f8b5 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x32a8b600 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32dd78ab scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x32efb30c clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x330fbbbc of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x334c2208 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x334fdeac input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x335cba8f regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x3362370f tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x33831c26 cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x339ad9ba alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x33a5e69d serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x33b1d3c3 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x33f7c674 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x33fe0b95 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x340a0bb0 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x340a5c2b iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x3426167b bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x34331655 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x3434ee53 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x344ab2d7 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x34531890 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x345786ca iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x346bd700 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x34729631 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x3474a3ba init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x3481b148 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x3481f52c fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34a85383 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x34b8f24c acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x34ba8de9 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x34ce64e1 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x34d44230 user_read +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0x3526f00d wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x35278934 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x352947d5 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x352f0f87 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x3571af0c __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x357e3ba8 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x3594f0b9 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x35b43994 acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35eef458 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x3622062c da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x3639a05c __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x363f86bc xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x3656cd1c __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x366b95f1 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x367f6c58 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x36977b07 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36aed8ae con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x36b826d9 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36c82ed7 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36de9d16 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x3702d5c1 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x3706bfcf usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x370b5cda clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x370eb88e ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x372861aa irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x37290449 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x372a8ecf ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x372c05cc usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x3751d18c ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x37618570 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3767b8fb regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x37809539 device_del +EXPORT_SYMBOL_GPL vmlinux 0x378a2181 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x378a6cbe blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x379c866a efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x37a7902c kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x37b25951 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x37dcacfb ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x37f13db5 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x37f6685b vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x3802ee81 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x382e7f97 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x384427ec raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x3850766c of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3865acba ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x38686b8c __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x388cc018 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x389bf5b4 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x38a181d5 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x38b43f1a usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x38c31a0f edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x38cb470d clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ecb0b3 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x38f42586 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x39054d6f watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x392319c0 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x392f15ae pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x39429738 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x3954b2d0 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3989111e tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x3990bad0 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x399bbb2e irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39e1ce7a __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39f896f6 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x3a0325a4 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x3a265e06 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a3fcc83 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a550a6d platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x3a6670f8 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x3a707b40 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x3a74bd56 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x3a792245 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x3a7eb003 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x3a7ef550 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x3a8e3b7d __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3ac08fe3 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3ad329d1 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x3ae18109 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x3aeef8b5 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3b0d0372 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x3b1a7a62 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b8e2e8c regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3b971935 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x3ba3ffaa mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x3bd6d237 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x3bda03b0 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x3beda315 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3bf38e99 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3c28b2bf extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x3c2f0287 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x3c30a1ce device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x3c4dce97 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x3c6ac511 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c6b494a dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x3c71a660 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c831441 arm_check_condition +EXPORT_SYMBOL_GPL vmlinux 0x3c8bcb32 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c9e78f6 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x3ca09268 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x3cad6f83 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x3cc10e40 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd26459 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x3d0b02d2 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3d2389af acpi_dev_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x3d3273b1 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x3d37aa56 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3a15bf dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x3d41dbce serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x3d4276e4 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3d4d1b35 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x3d5f392d acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3d64abc6 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x3d67b0d6 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3d7f1864 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x3d8357ea usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x3d8e4607 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x3d909d85 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x3da2c57a mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3dbcc0d1 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc81712 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dddd9bf scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x3de6b322 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e0e6c99 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e31b6a7 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x3e446af0 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x3e4ec4bd wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e649b33 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e81ce6a ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x3e8ae5c6 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x3e8dfe0d spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x3e94179f __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3ea6f65d cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x3eb16e0d yield_to +EXPORT_SYMBOL_GPL vmlinux 0x3ec2c772 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x3ed690e8 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x3ed87677 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f0a1d70 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x3f1831a8 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3f1c617c i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x3f38372e debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x3f44877c led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x3f667fd9 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x3f82654c platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3f8ca7b6 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x3f973eff usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x3f9ba790 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3faf68aa usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x3fb0f8dc pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x3fbe2ad9 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x3fdb3794 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x3fe39738 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x3fe3c21e device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x40004e76 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4005c3c2 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x400d9068 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x400eaa45 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x400ee895 fat_attach +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 0x4099f653 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x409b9bab usb_altnum_to_altsetting +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 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40fbc1e2 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x40fe4dec __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x410539dc blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41a44b68 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x41bc3694 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x41cb4b07 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x41cf48a0 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x4203e4b4 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x42227b98 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x422324d0 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x423d3502 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x4250928e of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x425434db sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x425fdf62 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426aa8e1 max_gen_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0x427c544f serial8250_set_defaults +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 0x429aa011 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x42bfe21f of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x42c0f9c1 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x42f5be38 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x42f9b71b devres_get +EXPORT_SYMBOL_GPL vmlinux 0x4329b3e3 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x4374d8f5 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x438012b2 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43a80eb1 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x43adcc86 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x43c2a786 __cpu_clear_user_page +EXPORT_SYMBOL_GPL vmlinux 0x43c3e7d8 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x43c48eb3 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x43cf1a76 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43e24cc7 ata_link_next +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 0x442c6f67 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x446c23ea shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x446f2c26 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x44826008 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44883899 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c48d3b ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44f2d66a ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x44f50f23 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x44f59a8e crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x450d0feb nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x45124c58 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x4555071f nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x455c4388 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4576337f atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x45a42072 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x45abf7aa tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45d7a746 pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0x45dd9f6b tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x45eda4b1 of_clk_set_defaults +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 0x4620b7a2 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x464cad30 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x46703156 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468d3aa3 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x468dfeaf __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x46ae4a77 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x46b7d56f irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x46bf97af sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x46e59ab1 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x46fca94f input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x470074b2 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x471daf86 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x47209bcc bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47273e06 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x474e133b mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x4759f8d0 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4770bd8a of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x477c8d64 cpufreq_cooling_register +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 0x47fc17ec ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x481b0d85 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x483c43b5 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x483ed958 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x48697a6c ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x48787ecb cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x48f612e3 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x490e4719 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x4913d26d usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x491debd2 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x491f8878 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x493d0dbd of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x4972eff9 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x498e0595 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49973fc0 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49b000ce page_endio +EXPORT_SYMBOL_GPL vmlinux 0x49e0fd21 __cpu_copy_user_page +EXPORT_SYMBOL_GPL vmlinux 0x49e40c70 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f46f4d page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x49f593c1 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x49feb496 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x4a107572 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x4a35c1d8 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a436e80 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a4d368f ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x4a5d7238 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x4a66b3f5 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x4a6a97ef xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4a72aed1 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x4a80395a raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x4a8518c9 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x4a867c98 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4a91b140 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x4a953f41 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4aa756b3 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4aabcf71 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ae50e94 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x4aea0317 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x4af56a26 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x4b028d36 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x4b0adf8a of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0x4b1032aa ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4b3af233 set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4b580a27 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x4b5aca76 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x4bb79941 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x4bba4754 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x4bd7f393 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x4bd941ee dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x4bfc1d9a usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x4c2bd41e ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x4c340379 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x4c5e7eac class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4caa80ab mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d05dccf vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x4d318682 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x4d4e1b90 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x4d515f1d percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x4d699d2b of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4d6aa125 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x4d718e94 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x4d7f88c5 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x4dac7a21 xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x4dc1f5b1 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x4dc5d7f6 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x4dddce6f add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de87c04 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x4e0dc9c6 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e113519 elf_hwcap +EXPORT_SYMBOL_GPL vmlinux 0x4e13640d gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x4e1514cc acpi_dev_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x4e19e1cb platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x4e20ecf2 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e29afdd ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x4e3a18ec usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x4e513d13 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e6011e9 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x4e70cff1 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x4e84ceca gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x4e9851e5 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x4eb1e7b4 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x4eb7300a pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0x4eec5b8b blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f01155a regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f3b77d6 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x4f493409 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6a8adb usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x4f7b3358 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f80e48b kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fde4d64 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x4fe04c55 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe4951b devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x5005b69e btree_update +EXPORT_SYMBOL_GPL vmlinux 0x501b6ab1 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x502dcf1f ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x5051ddcc of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x505f796b irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x5099301d __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x50b71fcf __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x50b83556 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50e7a80a register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50ff8d0c crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x511bdbe0 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x5124202d input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x513c3ce1 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x51487767 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5157cc96 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x516248d0 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x51666b85 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x5172a81c virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x51742d78 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x517bfc8e sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x517fad7a __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x518089b7 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x51825776 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x519102be sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x5191bd3c efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x519e34f3 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x51e1eff2 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x51f70f2b tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x520a5267 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x521be988 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x522002a4 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x52225454 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x52537317 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x525521e0 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x52552ed7 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x525e1e5d kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x5265408e skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x526a8a79 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x52956fb6 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52a4b18d fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x52d22915 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x52f83d00 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5314d3ca led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x53453e13 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x535cdd6e invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x5380ec85 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x53b8806b kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x53caecdb pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x53cd2454 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x53e0cc47 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x53eb275b dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x54182e4b regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x5428183b dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x543c6b1f regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5450fd05 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x5469688f virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x5482cd54 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x54896fc0 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54cb5ace usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54cc842c transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x54cf754d iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54e35531 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x54ef6171 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x54f17990 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x54fcbaa1 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x551fabb9 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x5525b678 md_stop_writes +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 0x555a13d2 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x558705c1 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x55be28f5 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x55d8ec82 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x55e5845e regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x5601453f fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x5606adb5 atomic_notifier_chain_unregister +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 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x566374e8 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x5688d5a4 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x56bf6047 blk_mq_register_disk +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 0x570ac4dd alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x572b66c9 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x573bca44 pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x573f86bf pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x57745217 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0x577655e8 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x578f47a5 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x57932544 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x579cfbed device_property_read_string_array +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 0x57f8062c acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x5827d6b7 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5829aa13 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x582e16cf pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x583e341e da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x584337e7 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x5858cede xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x58687be2 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x5868806a ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x58755add devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x587ce31e tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x587ed011 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x58958b43 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x589abc62 kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x589ac514 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58b4f7f4 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x58b68c33 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x58bdfa5d dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op +EXPORT_SYMBOL_GPL vmlinux 0x59138058 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x592062ae component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x59540b24 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x59a97088 of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a12c070 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x5a25d02a irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a322201 cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x5a36d311 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x5a4ca224 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x5a51d5f3 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x5a6af77f irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5ab9cd1e debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x5abaf25a of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x5ac47d1b debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x5ae79466 percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x5aee534c skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5afef7cc amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x5b266a39 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x5b463a4f gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x5b7be794 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5beb4dd5 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x5bed7080 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x5bf7430d dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x5c0b6822 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c611fd6 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cae7bd9 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cfffcea devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x5d0ef15d ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x5d122264 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d547b30 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x5d6e1af6 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x5d723072 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x5d756130 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x5d776727 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x5d9295ab iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x5d99ec32 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x5da05559 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db184cc __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x5db36958 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x5dcd7160 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x5e1d738e tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e5d2b20 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x5e883860 xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0x5e92fc92 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e955147 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x5e972f47 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x5e9c489a devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x5ec3ddd6 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x5ec91f8c devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x5ece696a class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x5ed589df tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x5edb2dae sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5ee358c2 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x5efa61c9 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x5f0b9744 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x5f1185e3 acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f71bc61 regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0x5f77aebf dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x5f7a5b82 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x5f989c48 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x5fb1580c rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fdbd702 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x5ff0cf22 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x5ff52bbd inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +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 0x605de449 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x60a108b9 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60aafeef ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60f9d6cf filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x60fb731f param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x60fea51e pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x6117a680 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x6134e374 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x61550b79 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x6164f171 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x6182d133 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x619c5472 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x619d24ac of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0x619eac11 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x619ee3fe ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x61a05618 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x61bc83a6 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x61c46a6b pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x61d3aaf4 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x61db34d1 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x61db7629 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x61f01200 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x620bf64b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x6211bf4f pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x6225eaea devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x6229c1c9 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x626aae43 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x62967669 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x62cb2e21 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x62dac9fe __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x62eba623 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x62ff1512 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x63008809 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x63045fd3 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6326332e devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x636846db of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6368c6b6 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x638f88f8 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x63c857a1 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x63ca7dbe syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x63e0277f sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63e74c81 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x63ead51d crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x63f7dfcc extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x643579ad wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x644bb50d crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x6474062e wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x648d4d65 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x6499bb29 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x64b9093a regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64eecaa8 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x64f60c19 put_device +EXPORT_SYMBOL_GPL vmlinux 0x64fae8ef gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x64fc77cc invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x651d56c3 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x652a229b clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x6531c864 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x654ec9dc of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x655741b6 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x655ef189 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65be4dfe regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x65c40763 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65f20592 clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x65f3e429 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x65f924e6 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x65faf152 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x65fe1faa scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663f7020 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x6653a26b vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x6657c62f acpi_subsys_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x6662b8c5 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x66652996 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6688e3d4 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x668cdc9e rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0x66a1bf2b gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x66ab55c2 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0x66b4be11 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x66b8ef91 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66cbee48 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66fb6537 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x6710de53 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x671cc44d pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x67275626 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x674c794f fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x674e6c2f sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x675281ce __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x67618e15 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679f230a pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x67a1defd acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x67e226e2 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x67e4f57b mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x67f311ca regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68078de9 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x68168687 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x681ec810 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x682dd3f4 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x684c0474 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x687dda27 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x6884b547 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x688d8af0 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x68c20662 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x68c42ed5 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x68c90d3c component_del +EXPORT_SYMBOL_GPL vmlinux 0x691dd7ee flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x692fcd9f __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x694f967a rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x69610e5e dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x69675be3 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x6969fd80 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x696be13a pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x6970b083 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x69acbdc4 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x69b5ff24 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x69b60433 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x69d2d0c4 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x69f259da pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a39eb6a scsi_nl_sock +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 0x6a75a050 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x6a7c6bec __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a8b045a sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x6a93b6a8 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x6ab211bd attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x6abf2b50 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6ad786af debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x6adb9283 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6afb625c sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b0f5d81 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x6b1dda7e acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b4ec6a9 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x6b523d8b acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b8dbf41 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x6b96f73a __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x6ba1f501 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x6ba67a1d device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c28aa31 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x6c307d0f of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c50501d i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x6c5c9db3 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c65c3c9 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c89d37c dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x6c95b718 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cc726b9 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6ce55294 xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x6d08d6c1 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x6d0b02e9 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x6d167ea0 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d5a458d alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x6d7eb41a driver_find +EXPORT_SYMBOL_GPL vmlinux 0x6daafe3e gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x6dc93b48 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x6deb6118 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x6dfddf93 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e077393 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x6e0d332d blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e6069d2 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e920f10 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x6ef81ce7 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x6effaa4e pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x6f04a71c cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x6f144026 devfreq_cooling_register +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 0x6f405252 input_class +EXPORT_SYMBOL_GPL vmlinux 0x6f433ffd __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x6f7970f8 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x6f7b89a2 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f93d39e __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x6f9f655b inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x6faabc4b ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x6fac3679 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x704b36b7 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x704e9a07 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7064da8b btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70a57aae nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x70c0de26 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70cf4269 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x70f18ee8 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x71040d12 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x710b3009 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x710e77f5 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x712ae9c4 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x713987b9 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x715c2db8 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716621f5 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x7166d998 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x716b9e59 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x718d9666 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x7196a780 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71b09d73 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x71bf79cc regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x71bfd8ab scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x71d2275c rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x7205c686 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x7212d2fc __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x7236bcc1 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x7238b026 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x724df21e dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x729b6917 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x729f0229 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x72c26cef put_pid +EXPORT_SYMBOL_GPL vmlinux 0x72c501e7 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x72e0baa5 xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x7333045f extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x73753845 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x7376e448 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x737a6a65 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b590f4 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x73c026fb blk_mq_unfreeze_queue +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 0x73fa2112 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x7400a1fd of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0x740cd8f8 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7410352e irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x74115179 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x742c1660 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x742cf9bb ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743dec47 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x744b2dea nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x745afe50 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x747afbf5 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x7485a02f serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x748ceadb driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74903a33 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x749c22bc do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x74a9b1f6 of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0x74b544ee power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74cc4ab3 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x74e9977f ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x74f22cf3 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0x75064ec5 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75262949 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x75427b65 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x756d1f7a ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x7581f049 device_add +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 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75d46593 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x75e9494d fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x75faa651 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x75fc05ce disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x76021423 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x762fb47d mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x763f3e83 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x7647943e sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x765b207b adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x767b8d36 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76c7a071 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76df3d55 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x77401bdd class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x77490321 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x77561228 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775bfa7f sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x776c4bb7 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7773dbca pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x77755311 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x777be3f0 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77c72516 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x77c7c1d5 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x77f2308f pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x78154bd3 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x786c711e device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x786d38ae i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x787e730c usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x78905146 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7893b1c4 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x78956b21 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x78ac0a1d tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78c1b925 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78ccd9ce vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x78f9eaf0 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x78fed3d4 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x79159abd usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x792f9840 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x7957367d ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x796d474a debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x79707917 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x7978361e xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x7982e99c sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x798cbbc5 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x799eec8d pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x79ace8e1 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x79bc1aca regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x79c530b1 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x79ce122d ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x7a1a5c50 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x7a1d87d5 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x7a206b04 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x7a2b9958 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a378b9e devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x7a425b5e ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x7a92adb5 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x7ac495f0 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ad8b388 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7ada3274 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7add541d devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x7af6b285 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x7b011208 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b20b512 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x7b2163bd HYPERVISOR_tmem_op +EXPORT_SYMBOL_GPL vmlinux 0x7b2ef94e gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x7b4406dc unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x7b5868c8 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7b88f30c pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7bbed778 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x7bcd879e pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x7bd9a283 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x7be539c4 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7c0203dc crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7c08fc3d exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7c097e5a devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7c0ed30b da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x7c10c2a0 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x7c147be2 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x7c23347b regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x7c433df0 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x7c730339 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x7c741b7c of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x7c78b74c usb_hcd_poll_rh_status +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 0x7cacf204 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x7cad2923 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x7cb6ce97 amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd8c6e5 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x7cde0792 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x7ce6fc05 spi_master_resume +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 0x7d0331f2 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x7d157dd8 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x7d1eeece ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7d25fba4 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d65f8d3 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d6ddd33 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x7d774e3c ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x7d80dc36 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x7d8249ab usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7d9346de trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dbdd9e0 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7dbf0e07 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7dc0e356 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x7dca0518 HYPERVISOR_multicall +EXPORT_SYMBOL_GPL vmlinux 0x7dd9c7d3 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddbc87d gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x7de2279d ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7decfc94 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x7dfdf978 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x7e012a61 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x7e3c92ad unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x7e3d7d40 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7ec9e275 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x7ecebf28 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x7ef4ab6f dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x7efe9e96 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7f18f17f irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7f1e2686 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f601926 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7f6a24f8 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8afe90 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x7f9fa044 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x7fae7e16 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7fba80ca ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fcf4148 xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x7fd7b812 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7fde0847 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x7fe505d2 of_fixed_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x7feab443 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x7febe454 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x80079d26 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x8023a39f tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x8036b35f power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x805f4f3a blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x8061f186 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x8067f97e sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8076115d ping_err +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809f9024 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x80a42665 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x80b71041 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x80b9b5dd __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x80bfd6f0 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d539b9 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f426fb ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x80f69611 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x81000f3f acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dbc9b blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x812ac8b6 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x813eadf7 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x8140cb83 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x8143b386 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x81445117 md_find_rdev_nr_rcu +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 0x8159e277 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x81705bb1 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x818334f3 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x81b8322b kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x81c24671 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x81ce97b7 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x81d40b2f blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x81de09b1 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x81f711b7 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x81f72b7e da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x81fb3305 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x820825b0 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x82134700 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x821b536f sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x826a8f8e crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x827355fb tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x82c56865 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82ea2a07 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x82f53e0b cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x82f9d779 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x83237a9e tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x8331f7df of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x8346aac2 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x834a974c regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x8356e7de posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x8359b70e crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x8367d66d ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x839fe981 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x83b73e0a locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x83c8383f skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x83cd111a serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x83ec5311 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x841f51cd of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x8426ccde ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8442ad63 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x844c35e2 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x84618a37 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x8472c1ce tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x84a266d1 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x84a70d95 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x84a9f112 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84bd5fa4 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x84cba230 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x84d8d5c7 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x84d955ef usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x84e17a0c __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x84eb9ddf component_add +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x852a0bbc usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x85343993 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x8594dc8d device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x85c1f88f shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x85c5b2dc __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85fbc36c blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x86166ecf xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x86501e36 sdio_release_irq +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 0x8691c69a usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86a77089 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x86af1292 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x86b24abb usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x86c10d02 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x86eab353 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x86eaeebb blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x86ed0728 blkcg_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 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x873f27c1 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x8754fa5b crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x877a2ad4 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x8787392e sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x879e486b tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x87a9139f fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x87b79e9e of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x87c6438a xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x87d79002 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x87e0f18d tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x87e22986 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x87e75784 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x87ea243a ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x87f616f6 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x8806f5d2 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x88395d77 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8875b445 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x887a4ed8 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x8886b5cf sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x889c0462 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x88a65ac5 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88be3026 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x88c96a71 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x891a799f iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x89233095 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x8928afc4 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL_GPL vmlinux 0x8934fa88 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x895550a5 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x897b9f15 max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0x897e42a8 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x8982b1af xen_remap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x898d7604 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c78228 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x89df40b5 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8a037a5d cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x8a0608c9 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x8a16f707 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x8a2c249b virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x8a4914f9 __devm_regmap_init +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 0x8a574137 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a8183fc irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x8a863a5f virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x8a956dcb crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x8a9edfa2 get_device +EXPORT_SYMBOL_GPL vmlinux 0x8aa2ee8d usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x8ab08420 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x8aba7c52 of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ad34980 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x8adfa04b dma_release_channel +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 0x8b1769ad blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x8b1d4916 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x8b233033 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x8b3e727c tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x8b4c242d debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b8ce89e debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x8ba4cc5b blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op +EXPORT_SYMBOL_GPL vmlinux 0x8ba872d1 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x8bc0e297 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x8be006f6 ata_pci_bmdma_clear_simplex +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 0x8c3bc6c2 xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x8c3cf461 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x8c3d7d5c __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x8c537b81 __of_genpd_add_provider +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 0x8c76beb6 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8ca1e204 percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cb0ed70 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x8cb6c47f get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x8cbda8a2 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x8cc54446 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x8cd27dd8 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8d1cf2dc pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d39a27e pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x8d3d01ac of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x8d4fc873 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x8d6edfab __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x8d84f1eb usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x8d9fa235 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0x8da6431e irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x8dbb8040 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call +EXPORT_SYMBOL_GPL vmlinux 0x8dc1e4c1 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x8dda9755 skb_tstamp_tx +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 0x8e2f1f58 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x8e2f2acb mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x8e4e1ea3 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x8e4fc786 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x8e58d089 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x8e5ad7d1 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x8e5fdc08 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x8e7709c2 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x8e841fc9 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x8e92e231 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x8e963a6e crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x8ea37d81 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x8eab694e tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x8eac4c22 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x8edab204 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x8edda495 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x8eddcfb9 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x8ee40eb2 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x8ee84e9a regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x8eead118 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x8efb0884 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f1c0036 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x8f516283 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f54a5db do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x8f694ad1 pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x8f6a3984 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f775b59 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x8f799b1a mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8f823125 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x8f85d77f regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8faac947 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x8fdd2f18 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x9011db71 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x9012a213 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x902042d2 device_move +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0x903eb66c class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9048cb9e validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x9049bf4d fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x906acfd1 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x906fad13 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x9086e314 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x908dc113 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x90a09b52 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io +EXPORT_SYMBOL_GPL vmlinux 0x90d2ca41 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x90df482b phy_init +EXPORT_SYMBOL_GPL vmlinux 0x9106591f sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x9109250c skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x914dec8c fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x915b7a3c sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x916638af rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91de2fc1 devm_regmap_field_alloc +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 0x920d7089 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x9211bd24 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x92121f18 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x9222eae8 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x9231bfe1 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924f47ec device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x92672f58 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x926f3d00 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x927df400 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x929bb9e0 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x92a01dde crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x92c3829c seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x92c7ed5c tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92ec6a9b tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x932adcdf xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x93398e44 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x933e6692 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x933e9a0f fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x934574c1 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x9350dedd pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x93548b7e crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x93611fb3 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x9367118b spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x937d16f8 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x938d5fe9 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x93d0e24b mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x93f1705e extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x94156055 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x9448954a splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x944d45b5 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x945b09f3 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x945fcbb8 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x947ecd6b kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a5f1c0 srcu_init_notifier_head +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 0x94f249d4 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x95003e70 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9511cb00 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x95199caf pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x95382743 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x95444913 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x954a7467 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x955813e3 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x95749f66 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x957a05a2 bgpio_remove +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9597fa4c user_describe +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95cc7fb6 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x95ee831a regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x95f67761 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x95fb1430 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x95fc4ee6 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x961a24d1 usb_free_urb +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 0x9633f051 bsg_setup_queue +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 0x96832b54 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x9694319c hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x96ebf2ac pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x970111b5 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x973c3c5d pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x975034a0 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x976e6114 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x9778d0e1 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x97919e17 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x9799d78f regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x97cc5229 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97ee8e71 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x97f16745 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x9803cb44 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x981b342c mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x98259b95 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9847289b usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x9848e2de perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x984e0dbc xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985cf4cb blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98816878 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL_GPL vmlinux 0x98a37168 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x98a47794 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x98bb3c43 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x98c2389f gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x98d3bf89 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x98e246d7 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x98ef7558 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x98f18162 fwnode_get_named_gpiod +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 0x99165bd3 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x992ad0ca ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x993f74d6 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x994c6e7e crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x99522549 driver_attach +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 0x99892afc pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x999197df dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x99a3671c msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99d780c5 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x99d9662e unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x99fd4717 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a7c4bd0 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a923583 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9aaf5813 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x9ab40e80 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ace69ab spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x9ad7fca3 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x9adc00de bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x9ae226b5 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x9ae95a7b pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b002530 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x9b05c2d9 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x9b6b58c9 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x9b803f16 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x9b86bf26 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9ba464b9 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9bac320e acpi_dev_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x9bc43678 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9bda736f sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c00c7b3 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9c44037d ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x9c69ed1d mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x9c73cb49 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x9cac154d ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc9353f sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x9ce725c5 devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x9cfcefdd wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d1730f8 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x9d2bc06c perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d3b9a65 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x9d798879 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x9d8b079b devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9d925ad8 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x9da65f81 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dda0167 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x9de30cf0 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x9de63ade aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9df25c84 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9e2b8e89 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9e35127c fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e47833e gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x9e61ddc9 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x9e63c2b4 pci_fixup_irqs +EXPORT_SYMBOL_GPL vmlinux 0x9e6c180f sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x9e73b9cd pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x9e7a9d64 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x9e7e913f virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x9e900387 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x9e9e141c dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ef7dfda btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9f26fcdb fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x9f39dba7 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x9f4ee119 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op +EXPORT_SYMBOL_GPL vmlinux 0x9f7aa97e mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9f84f29a kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x9f8584b8 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x9f890f80 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x9fa3963f bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9fae35c9 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd43607 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x9fdbf584 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ff77223 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x9ffd569a devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xa00601a7 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xa014a6ac trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xa03c5c4d pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xa04ecbca pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xa056f262 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xa059fbe6 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xa0745b2b device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xa08588a5 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xa08a8552 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xa0abf0ad screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xa0b6496c dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xa0c1cad9 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xa0e16141 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xa0e53188 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xa0f95f8b irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa1566886 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa17961bd rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa18273de extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1b7d9eb led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xa1c980a4 find_iova +EXPORT_SYMBOL_GPL vmlinux 0xa1d83cf7 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1f2d690 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa1fc023d devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xa1fc7574 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xa1ffa92c of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xa2232b4d dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa23375cc acpi_dev_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa274c403 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa27ec8d8 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xa2813d38 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa2827766 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xa295b432 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xa2a867c3 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa2aae2f7 regulator_get_optional +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 0xa2d4ab0c extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0xa2e56c72 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xa2ff1281 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xa303894f of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xa3388946 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xa34f4f7c __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa35ec739 usb_create_shared_hcd +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 0xa3a08695 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xa3ad1cbf scsi_target_block +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 0xa3fc20df sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xa4029429 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xa40513df dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xa41f61a0 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xa42b62f4 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa4456abb rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48b77e5 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xa4960075 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xa4ac8d69 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xa4c05262 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xa4f8eef8 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa4fce317 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xa4fe8384 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xa5047974 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xa511b56c xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xa5133c53 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xa5187b6c dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xa543312f usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xa57e13be add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xa5cd9ed6 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa5d360f2 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xa5d7a643 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5faab8c regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xa604d690 tpm_get_timeouts +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 0xa636eef5 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xa65012c5 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0xa65e722d devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa66e24d3 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xa67c4cd2 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xa67e5920 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xa68361cd fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xa6affd69 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xa6b13515 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b8617d gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xa6cb52cd disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6f2b24e class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xa70a7451 clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xa70b60f3 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xa70cd501 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xa70fd41e gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa7217eca __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xa7236ff3 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xa72f7f07 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa734e633 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xa735cbd1 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xa757e058 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xa773b3dd da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa78a268c ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa7a856ba of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7f108f3 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xa7f844f8 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0xa8107653 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xa81437c3 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa826f96e ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xa82f4769 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xa848c647 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xa850dafc idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8560605 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xa873c914 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xa87444ba dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0xa877beca dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8d31422 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xa8fadc4a iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xa912b901 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xa917bc4c shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xa92b8802 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xa92f77f7 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93a0719 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0xa9440b13 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xa94729f2 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xa96dc6b9 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xa992a26c uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xa9af7714 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xa9be3526 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xa9c29c88 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e9ae12 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xa9f58a71 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0xaa07eaf2 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xaa167966 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xaa16eb6c blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xaa2aeeee vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xaa41a148 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xaa438254 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xaa5b21cf securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xaa6a376f of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0xaa6a6084 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xaa8203bf vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xaa8931df acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xaa8a6056 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0xaa96c05a wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xaaa1973d xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab64bff acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xaae13ff3 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xaae733d0 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab08ebd4 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xab252d69 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab33ec84 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xab4070b7 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xab437c8a key_type_user +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 0xab8ceced gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0xab8e26e7 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xab97b1ec fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xaba682d2 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xabab79ed usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabc87f0a fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xabd7a328 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xabdc6ab3 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xabf3dcc1 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xac16f958 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xac2a3cd5 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0xac7f7438 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0xac83fe40 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xac94a08a crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xac96a2ce tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xac9d78e7 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xaccd93b9 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xace03952 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xace6ffc7 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xaceb6859 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xad09adc1 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xad1264c9 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xad13a2ab pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0xad18a758 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xad1ea5a5 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xad4a03ae blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xad4ac166 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xad67d038 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xad8099f0 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xad83bce2 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xad8e06ac of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xade9d56a gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0xadf28009 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae37abf4 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0xae428d54 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xae60945a dma_buf_kunmap +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 0xae81feb6 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xae86c1c7 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0xae8bc7b9 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xaeba9226 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xaec5ff81 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xaed0791e dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xaf09ab16 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xaf175a27 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf38080f pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0xaf38a8e3 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xaf78fb58 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xaf7cd1e9 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xaf81602b sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xaf874fda ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xaf936177 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn +EXPORT_SYMBOL_GPL vmlinux 0xafb11c63 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xafdf7db2 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xb00ef9a4 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb03dbfda find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb043cef4 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xb051e037 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb05d5984 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0xb061e84b devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb06f7e59 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb0800d77 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xb0825f00 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xb0a33139 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xb0ad8343 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb0d01b26 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0e7b2d5 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xb0e812a4 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xb0e9c601 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0xb114728d ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xb1231de3 inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0xb12344f0 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xb124c1bb vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xb128bbfc ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb14e070e bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xb1702ce1 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb1796d12 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb188ed32 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xb19b3fd0 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xb1abd222 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xb1b6552f map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c02485 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1ccddc4 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1fb3520 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xb1fbb2ec ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xb204ec7b dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2275d68 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xb2514aac tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xb260bfa5 unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xb26de678 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xb2744348 kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall +EXPORT_SYMBOL_GPL vmlinux 0xb29f6743 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0xb2aba1df inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xb2b1cb19 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xb2b461f7 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xb2b7fd93 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb2c1e3f7 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xb2c323c0 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xb2d289e0 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f4d72b __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xb2fa5ac6 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb3691dd6 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0xb3695429 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xb3819db4 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xb38c999a usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0xb3977887 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xb3d53fc1 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb3e5794e usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xb3ecbba5 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xb3f2b61b __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xb3fdb0b2 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xb403f779 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xb40786fb blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xb425697c fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xb427a7c6 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xb436becb handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xb45a0a5a of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xb4642b43 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xb48f5812 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xb4938d15 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xb493f5b5 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xb494c197 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0xb496f987 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xb49e993f __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xb4a19da1 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c0202f sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xb4c5c96a ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xb4cac147 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4e69e33 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4f7ce7a tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xb4fc1442 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb522b8e2 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xb529cae4 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xb5349a7f ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb537bc09 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xb54e5fc1 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0xb557f1c0 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xb56e55f4 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xb5734c4e rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb58f6ebf devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xb599a8df ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5be45cd skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xb5bec433 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb611af4b gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb627c492 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb62e437c crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb66f92b0 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xb6965e7b platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xb69af7b5 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb7151efa devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb72ad652 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73b740a trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xb75547a8 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xb76234a0 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xb76b5694 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xb7773674 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7859bf9 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xb7b32026 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xb7b8fe71 max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xb7be0bd7 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xb7bf8fc8 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xb7e3e484 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb8013479 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xb839efe5 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xb85ca5ff sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xb8600d23 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xb876149e kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d1f25c dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb8d231a0 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xb8d99863 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xb8dffc93 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb8e9a708 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xb8fa6f37 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb90d13d2 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xb90dd967 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb95d9e6d get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xb96225bc pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xb96ad403 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb96be837 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb96cf8a2 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xb99c1d65 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb9b11a40 netlink_add_tap +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 0xb9e496e0 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba0922f0 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xba1916af sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xba1988d3 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba7539be usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xba78a783 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xba80771e usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xba8979db rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xba973f40 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xbaaaaa0b get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac70cfa ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xbad282ea srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xbade516c perf_event_disable +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 0xbb153d98 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xbb19a378 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xbb1bffd3 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xbb3618d1 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xbb3b013a edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0xbb52a47c ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb708d95 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbb904ce0 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xbbd7f06b dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0xbbef5d78 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xbbf598c9 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xbbf96d5b gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xbbfcb77d rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xbc1e8afb thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbc2c6f52 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xbc452b60 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xbc4cb2d1 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0xbc4f9669 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xbc537dfe pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xbc615734 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc92bf73 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0xbc9ef5f1 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcbcdd2f hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcee366c reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbcf0d2af dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0xbd070ee9 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbd37d379 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xbd3bc364 crypto_alloc_pcomp +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 0xbd8dd851 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xbdb602b7 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xbdc28389 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xbdcb9d9e regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdddf88f amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xbdf148e4 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xbe01e686 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe2f1d64 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xbe4b9cac inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xbe5bb825 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xbe5fb76e sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe89a5ee crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe9778bf wakeup_source_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 0xbec42a0d acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbee9783d reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbefb13dd pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xbefdca9d kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf349a2d crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xbf3b24f9 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xbf3f61bf irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xbf45b8c5 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xbf73ff5f vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xbf982730 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xbfa27e79 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xbfa3eb86 ata_wait_after_reset +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 0xc020bdcf regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc03b87a9 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xc03f4417 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0xc04b21bd acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc05b8143 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc06b1c09 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xc07b0c5b debugfs_remove +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 0xc0b21022 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0dd7537 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0ea8e03 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f46445 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xc0fdd91b pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc115e51a napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xc1478e85 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xc14b4b0c rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xc14c2824 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc1707fba wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1786f5e usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xc17cff4f pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xc17f4892 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xc19114c8 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xc1a42beb nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xc1bb4f8b hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc1ea24e0 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc20b5034 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc20b76a0 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0xc2214da4 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22f2907 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc25778cc ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xc25b645f register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc29bd0c2 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0xc2a5d4b2 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xc2bd7249 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xc2e449bb desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xc2eb3c6e tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xc2f48d6c crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xc30e32d3 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xc332ce67 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xc33a6123 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34682ea cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc352cb02 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc357bf91 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL_GPL vmlinux 0xc38bdc3a sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3ca9a38 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xc3eac09c rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xc409bf22 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xc41c967b pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42c5fcd ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xc4466d83 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xc44aa61e __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc459f454 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xc45df64b crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xc4652752 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xc46a4bc1 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xc46d077e class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc4735e4b wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4b4a072 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xc4ca05fd otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4d1fd05 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xc4e9e47b percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc4f3b1c2 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xc523ee8a blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc569735c crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc56c38e2 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc57dd30a blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5821ad8 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xc58238ca ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xc58b7172 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0xc5a92405 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc6100271 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc63a4f9e debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xc6426d63 bpf_prog_create_from_user +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 0xc69d0f7b console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6ac4b45 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xc6cb809a sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0xc6cc1fa3 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xc6ddd656 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc703e8aa pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc70a1376 dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xc70fbc22 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xc71acb4e rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xc7278816 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc73fe4be xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0xc742b69b raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xc7468fe7 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xc7966246 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a69628 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7d97e76 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc85322ed usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8d17fcc init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8fb4654 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc93cd56f cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95b30ec blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0xc962d138 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc9957bbe blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0xc999510c shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xc9b1c154 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc9b8e557 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xc9dc8d46 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xc9ebab1e disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fac161 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xca0270f3 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xca33c3e2 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xca54ca8a da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xca59035e crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xca5b1fd5 mnt_drop_write +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 0xcac1d482 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xcad5b4d1 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xcaecc69d crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcafca2d7 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xcafee77d __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb1d6016 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xcb1ef121 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xcb23fe88 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xcb3b6411 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb4d66a1 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xcb731f80 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xcb7a5dfd iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xcb80c744 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xcb864727 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xcb8798bf spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xcb8cbc39 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0xcb9c747b genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xcb9d84d9 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xcbaa3816 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xcbc08d19 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xcbd433c3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xcbde59cb rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcbde89cc tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xcbe4f9a2 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbf3f03b nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xcc203324 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xcc38c56b device_reset +EXPORT_SYMBOL_GPL vmlinux 0xcc411e33 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xcc58d866 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xcc6cf4cc gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xcc70ad65 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xcc7f0061 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcccccb5a pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xcd16bcca devres_release +EXPORT_SYMBOL_GPL vmlinux 0xcd4d0813 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xcd782391 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xcd791118 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xcd7f79ac evm_inode_init_security +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 0xcda1e1cd ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xcdb1d040 xen_swiotlb_set_dma_mask +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd11e14 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xcde72024 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xce0fde3d ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xce18df2b kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xce43db11 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce738aaf devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xcebeafbd ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xcf2166e3 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xcf2b53b4 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xcf384b3c wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcf3d11b2 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf57977d phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcf7eca60 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xcf9d3509 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xcfb55395 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfbbea06 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc6be1d devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xcfd251d7 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xd00334fa virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xd007e8b1 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xd010c2c4 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xd02482eb pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xd024db99 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op +EXPORT_SYMBOL_GPL vmlinux 0xd02b9734 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xd02e8170 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xd0303aa6 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0xd0383585 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xd038c5f3 pinctrl_utils_add_map_configs +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 0xd0675a6f trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0682bdd ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xd068437e unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xd083218e of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xd096b336 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d750c3 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xd0e0e46c irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xd0f022bc ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xd1040063 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xd11ddbae elv_register +EXPORT_SYMBOL_GPL vmlinux 0xd1224abf ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xd125abb7 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xd134081d rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd16f5164 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0xd1901e5c ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd1924035 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd1b2c8e3 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xd1edab78 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f9ee20 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xd1fd5c80 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xd2075ea1 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21cb08b sdio_get_host_pm_caps +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 0xd2562dec bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0xd2722a96 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd278de32 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xd28da56b devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd28dcb19 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xd2ab202f usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xd2af91f1 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xd2b3e255 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xd2b4c005 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xd2b64734 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xd2d38231 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e5153b fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd30c1937 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xd317371a usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xd32a46fe md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0xd330da5d ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd34a4717 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xd3a57532 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3bb23cc kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xd3ca0878 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd3e20cd2 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd3e2230e nl_table +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd40b3db9 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xd40f09cf regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xd40f0a7f wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd41ead1c devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd4229fc4 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xd42b7f0c preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd4511c73 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xd455030c usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xd4598487 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xd463caa0 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd46b1fe1 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xd489ba4a kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xd48f9d95 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xd49b8f81 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c25c61 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xd4f6ca25 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xd502a097 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xd52e3eb4 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd567a94a find_module +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd5927b5f device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xd5b22887 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xd5baf401 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5de8d88 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd5edb544 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xd5f565f7 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd60bc20b tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xd60bee0e extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd60ccce4 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xd647b34a usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd653f55e of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xd66924e1 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6769dbe rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xd6bb41cc pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xd6d64a6c tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xd6e8f3e6 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd707802e regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd7459b0f l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xd750a3f0 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xd7675ed6 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd778ed14 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd78556bf flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xd792294d klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xd7b294cd xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xd7c6b3ee clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7d80401 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xd7e5d2e2 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xd7f13c31 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xd7fedbba is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8975366 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd8acacdc devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xd8b8e235 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xd8e90a41 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xd8e9e582 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xd8eaa4ef call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xd929a726 xenbus_dev_error +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 0xd96f736d vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xd96fca6f xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0xd983ccc4 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xd9a01209 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xd9c29fc9 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd9c347c1 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f3ed0e regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd9f45347 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xda1b0ba8 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xda23b4b1 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xda3429fd regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xda378f1f __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xda39d850 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xda48b101 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xda8dc70b find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdac285f0 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xdac58c50 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xdadc7de9 copy_reserved_iova +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 0xdb128c86 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xdb2a3c3b devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xdb2cb9b0 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xdb43cc55 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb6cd374 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xdb723603 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xdb763a62 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb90f740 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xdb916fd0 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xdb946392 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xdbc03103 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xdbcc9135 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc0acc18 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc243025 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xdc3191a3 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xdc479234 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xdc47d1f9 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc6f82aa ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xdc741a6e input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc863812 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xdc965794 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcd6fc7c platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdcd7786c perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xdcec4333 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xdd0699fa get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd1da16e pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd41566c __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xdd4a69c8 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd5bda4b fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xddaadc25 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xddaf32f4 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd4d45d netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddd9dda8 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xddfdcf35 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xde19b45b driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xde1d70cb usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xde3fc2a3 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde4d59e1 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xde531f5a put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xde55363c amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xde7bf2f8 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdea3a4cc replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xdeae8e9a xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0xdeca9dc8 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf156a8f alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xdf389061 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xdf61927d fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xdf681b0b pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xdf80c774 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xdf876efc irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xdf901ec9 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xdfa5009f regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xdfaf6c04 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xdfc08170 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdfcc7a5d unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xdfdc7288 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xdfed76ea usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xdff46032 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xdff784e1 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xe0035f4a arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0xe00778b2 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe01435f9 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0319641 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xe06856bd wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0xe0702547 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe084d16a ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xe092942e sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xe0a0d224 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op +EXPORT_SYMBOL_GPL vmlinux 0xe1049a94 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xe10c3292 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe1181015 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xe13d5a78 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe145bc0f mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1620bfd phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xe169820b xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xe169fb91 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17d8de6 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xe1a079c6 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xe1a23f2e __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xe1c3adcc led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xe1d83b1a class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xe1e692a3 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xe1f1d7bc device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xe2002558 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xe208e439 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xe20941c2 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xe2114637 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xe22cb147 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xe25fdf9a dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0xe2642554 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xe26fb831 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe28ec3a6 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xe2a528be dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xe2b3d219 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xe2c14a05 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xe2c1792c __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe30a2fd7 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe313230f arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xe3149451 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xe327bf9b kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0xe3427a11 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xe354223c mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xe377b2a8 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe397d516 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0xe39ebb0d cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xe3c7d652 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe3f75a85 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0xe42cd976 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe45b89a1 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe47bb1b8 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xe4831d69 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xe490a213 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4fa4184 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xe500e455 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xe501f1bb usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xe530c08e efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0xe53d056d klist_next +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5933125 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xe59375cf debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xe595d987 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xe5a90474 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xe5c13452 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xe5c2f795 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xe5c3c609 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xe5ce00eb irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xe5eec5ca debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xe61314bc usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xe630d05a virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xe631b99d kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xe63f960b phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe65343dc arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0xe6959af8 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xe69bbb61 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xe6c48083 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6dab741 ata_sff_tf_load +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 0xe70b683b swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xe715d7a9 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe719824d tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe7216340 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe734514d of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xe73b7add of_genpd_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe75f9444 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe769aad7 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xe7788599 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xe77ecefe of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe7843cea scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xe78cf0bd rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe7c5c23e usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xe7cd9659 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0xe7edfb13 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe82a20d6 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xe83bd24b mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xe83c55bd acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe8500432 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xe855e2fc spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe85dcb5f device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xe86239d6 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe879c108 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xe886c293 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe8926b0e kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe8a6dfed sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xe8a96073 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe8ac3d8a ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe8b1969e pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xe8b380cb __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xe8caabf7 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xe8e65745 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xe90dfe99 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xe90f897a pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xe9104bba __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9470031 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xe9488f5b devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe969e1f5 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xe9aa1b0d swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xe9c851b0 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9f1c3c5 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe9f295e0 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea29d053 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xea3834e7 napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0xea3bd2cc bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea55daee subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea5aa8e7 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea74a3a1 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xeae62f15 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xeaed090f debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xeaf85c9d ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xeb2eb288 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xeb349618 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xeb3590c6 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xeb3b046d reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb3ceb65 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xeb600f46 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xeb94d14e handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xeba2366b max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xeba639d8 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xebaadd5e system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0xebb2b607 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xebc7ed57 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xebc982c2 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xebe67f53 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebfc6885 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xec145b36 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec24d6ce regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec2e2299 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xec3d8f86 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xec470040 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xec65c6d6 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xec680c04 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0xec7909dd ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xec7bbafd ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xececa9bf __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xed0c09f2 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xed5b3a91 kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0xed64fe11 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xed88c936 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xed8c0caa device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xed8fc5ae mmput +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedbe246a device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xedd26dec cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xeddc4bbc ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xedf524e1 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xee2029e8 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xee269b11 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xee585797 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xee58ccfb attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee83b25f fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xee8602cc acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xee87a30c gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xeea9e68b register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xeec34e4f inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xef19969b virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xef302581 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xef371ec3 of_thermal_get_trip_points +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 0xef822051 md_run +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef8f753b blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xef9d6877 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefb083f6 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xefc0616e power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xefd81193 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0xefe7d62b pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xeff6adfb of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf0598d74 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf08873ff tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xf08c1046 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xf0b3256f __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xf0bec495 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0ed20ab perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf0f7dda5 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xf1141d57 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xf12945b1 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xf140b6f2 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xf14d283d dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf1500156 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf15796db crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xf1790f16 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1a279e8 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xf1ad1ed4 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1c7f1bd queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf23a84db __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xf246c204 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf25c6c4f page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2871799 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2d237e2 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xf2d69c08 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xf2de0a4e xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0xf2e0c63f wm831x_set_bits +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 0xf36983b1 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xf36cd85e wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xf36da621 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3871a57 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xf3907c42 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xf3985179 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xf39aa769 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3cdf560 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xf3d16a69 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0xf3dfa52d unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xf3e91a8e ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3fc4654 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xf417fd30 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xf423c2aa pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xf43e417b handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xf4468185 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xf447fe2e rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xf4584704 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4a14f8c skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xf4b18fc4 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xf4c2d3fd ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xf4c5e060 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xf4d2d187 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xf4e1110d pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xf4f2023d blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf50caadf __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf51494c4 power_supply_register_no_ws +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 0xf555f614 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xf5813792 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf59bdfd5 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5ba0526 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xf5d18fac find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf5e55ba1 __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xf5eddbba crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xf5f8c240 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xf62bd0c7 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xf62cff28 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf6367856 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xf6516679 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xf654054e bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0xf65da431 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf66228bc pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0xf66da6b3 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf67613bd thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf67672d1 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xf6781d3a of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xf68a94f9 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6951266 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xf6c5184f ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6cb853f dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xf6d52447 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xf6e39df0 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf724f76c gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xf73d596e fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf73d6863 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xf73f1ece ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf76d23c1 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xf76f9428 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xf777acf0 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xf77d2709 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xf7959b77 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7a78560 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7f0649e __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xf7f48565 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xf7ff5895 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xf8227bb5 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf83226bc irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xf85a3aab dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xf85b063e of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xf862be29 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf893599e led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xf89cbf73 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xf8bd2a2b blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0xf8ed132f led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xf8f0ed58 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f99e2c platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf90d2f0b nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xf9285c87 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf9305f77 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf9365d6d firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf9365ede pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xf94354e6 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xf94e89cb of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf96436c4 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf964f8d2 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version +EXPORT_SYMBOL_GPL vmlinux 0xf968df3e spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf979d2a9 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xf990eba8 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xf991a750 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf99976b2 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9c47f70 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9e180b5 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xf9e864b7 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xf9fefd15 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xf9ff4a98 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xfa03ddc0 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xfa0a6544 reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa34da14 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xfa62449e trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfacbb73e usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xfadd29f3 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xfaffbd7b i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfb07b8f2 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xfb2372e6 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xfb2ba078 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xfb313bbc ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb53e652 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xfb5dfe3a rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb982e66 clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0xfbb086fb of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xfbb7448e cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbbdbec1 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc07fb1b noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xfc1b2ca7 of_get_dma_window +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 0xfc286e01 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc3de5d8 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xfc43706b ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xfc4dab0a disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xfc5051a4 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0xfc570415 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xfc682587 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xfc75d848 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0xfcc45348 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xfcf6c2de md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xfd06cb0a regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xfd281b1e inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xfd37a30d __of_genpd_xlate_simple +EXPORT_SYMBOL_GPL vmlinux 0xfd3e0504 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd6faa37 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd8a79f1 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xfd8ac5ed device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xfd8af492 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xfd920756 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xfd9cdb8c get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xfda4ddc8 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xfdac6c9e led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xfdb56eb8 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xfdbc99c1 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xfdbd2ced pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xfdc282eb regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xfe0160db gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xfe12c263 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xfe30c138 dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfe39818b regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfe44548a gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xfe7b7b62 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeb14cc5 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfee02f63 ata_qc_complete +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 0xff335ba5 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xff350a64 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xff46e83b xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff6dda88 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xff72cd2d pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0xff770ed7 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xff797e2f stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xff89336a regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xffa1b691 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xffa853af stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/arm64/generic.compiler +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/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-4.4.0.orig/debian.master/abi/4.4.0-97.120/arm64/generic.modules +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/arm64/generic.modules @@ -0,0 +1,4393 @@ +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_fintek +8250_mid +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ablk_helper +ac97_bus +acard-ahci +acecad +acenic +acpi-als +acpi_ipmi +acpi_power_meter +acpiphp_ibm +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-ce-blk +aes-ce-ccm +aes-ce-cipher +aes-neon-blk +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +ahci +ahci_ceva +ahci_platform +ahci_qoriq +ahci_xgene +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am53c974 +amba-pl010 +ambakmi +amc6821 +amd +amd-xgbe +amd5536udc +amd8111e +amdgpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm_big_little +arm_big_little_dt +arm_mhu +arm_scpi +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-keypad +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm63138_nand +bcm7038_wdt +bcm7xxx +bcm87xx +bcm_iproc_tsc +bcma +bcma-hcd +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +berlin2-adc +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmnand +brcmsmac +brcmstb_nand +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +ccp +ccp-crypto +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chipreg +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +clk-cdce706 +clk-cdce925 +clk-max77686 +clk-max77802 +clk-palmas +clk-pwm +clk-qcom +clk-rk808 +clk-s2mps11 +clk-scpi +clk-si514 +clk-si5351 +clk-si570 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_parport +comedi_pci +comedi_test +comedi_usb +configfs +contec_pci_dio +cordic +core +cp210x +cpia2 +cppc_cpufreq +cpsw_ale +cpu-notifier-error-inject +cramfs +crc-ccitt +crc-itu-t +crc32 +crc32-arm64 +crc7 +crc8 +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +csiostor +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +ddbridge +de2104x +decnet +deflate +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9601 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dp83848 +dp83867 +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_mmc +dw_mmc-exynos +dw_mmc-k3 +dw_mmc-pci +dw_mmc-pltfm +dw_wdt +dwc3 +dwc3-pci +dwc3-qcom +dwc_eth_qos +dwmac-generic +dwmac-ipq806x +dwmac-lpc18xx +dwmac-meson +dwmac-rk +dwmac-socfpga +dwmac-sti +dwmac-sunxi +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +ec_sys +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efi-pstore +efi_test +efs +egalax_ts +ehci-msm +ehci-platform +ehset +elan_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_usb +emu10k1-gp +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +ene_ir +eni +enic +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f71805f +f71882fg +f75375s +f81232 +fakelb +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdp +fdp_i2c +fealnx +ff-memless +fintek-cir +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fixed +fjes +fl512 +flexfb +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +fsa9480 +fscache +fsl-edma +fsl_lpuart +fsl_pq_mdio +ft6236 +ftdi-elan +ftdi_sio +ftl +fujitsu_ts +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcc-apq8084 +gcc-ipq806x +gcc-msm8660 +gcc-msm8916 +gcc-msm8960 +gcc-msm8974 +gcm +gdmtty +gdmulte +gdmwm +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +genwqe_card +gf128mul +gf2k +gfs2 +ghash-ce +ghash-generic +gianfar_driver +gianfar_ptp +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio-xgene-sb +gpio-zynq +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hip04_eth +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi-acpu-cpufreq +hisi504_nand +hisi_thermal +hix5hd2_gmac +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hnae +hns_dsaf +hns_enet_drv +hns_mdio +hopper +horus3a +hostap +hostap_pci +hostap_plx +hp100 +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hwspinlock_core +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-bcm-iproc +i2c-cadence +i2c-cbus-gpio +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mt65xx +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-nforce2 +i2c-nomadik +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-qup +i2c-rk3x +i2c-robotfuzz-osif +i2c-scmi +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-thunderx +i2c-tiny-usb +i2c-versatile +i2c-via +i2c-viapro +i2c-viperboard +i2c-xgene-slimpro +i2c-xiic +i40e +i40evf +i5k_amb +i6300esb +i740fb +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_qib +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +icp_multi +icplus +ics932s401 +idma64 +idmouse +idt77252 +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imon +ims-pcu +imx074 +imx2_wdt +imx6ul_tsc +imx_thermal +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +iproc-rng200 +iproc_nand +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irqbypass +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +ite-cir +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +kafs +kalmia +kaweth +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +kvaser_pci +kvaser_usb +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcc-ipq806x +lcc-msm8960 +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-aat1290 +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-ss4200 +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +liquidio +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +macb +macmodes +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mailbox-xgene-slimpro +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77686 +max77693 +max77693-haptic +max77693_charger +max77802 +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc-bus-driver +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdc800 +mdio +mdio-bcm-iproc +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-octeon +mdio-thunder +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +mf6x4 +mga +michael_mic +micrel +microchip +microread +microread_i2c +microtek +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_spi +mmcc-apq8084 +mmcc-msm8960 +mmcc-msm8974 +mmci_qcom_dml +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msm +msm-rng +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt8173-max98090 +mt8173-rt5650-rt5676 +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-afe-pcm +mtk-pmic-wrap +mtk-sd +mtk_wdt +mtouch +multipath +multiq3 +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_labpc +ni_labpc_common +ni_labpc_pci +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +ntb +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nuvoton-cir +nvidiafb +nvme +nvmem_core +nvmem_qfprom +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_mmc_spi +of_xilinx_wdt +ofpart +ohci-platform +old_belkin-sir +omap4-keypad +omfs +omninet +onenand +opencores-kbd +openvswitch +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +pandora_bl +panel +panel-lg-lg4573 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-simple +parade-ps8622 +parkbd +parport +parport_ax88796 +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pc300too +pc87360 +pc87427 +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-stub +pci200syn +pcie-iproc +pcie-iproc-platform +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcwd_pci +pcwd_usb +pda_power +pdc_adma +peak_pci +peak_usb +pegasus +penmount +percpu_test +pfuze100-regulator +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-berlin-sata +phy-berlin-usb +phy-exynos-usb2 +phy-gpio-vbus-usb +phy-isp1301 +phy-msm-usb +phy-mt65xx-usb3 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-8x16-usb +phy-qcom-apq8064-sata +phy-qcom-ipq806x-sata +phy-qcom-ufs +phy-qcom-ufs-qmp-14nm +phy-qcom-ufs-qmp-20nm +phy-tahvo +phy-tusb1210 +physmap +physmap_of +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-ipq8064 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8960 +pinctrl-msm8x74 +pinctrl-qdf2xxx +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl172 +pl2303 +pl330 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-pwrkey +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powr1220 +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +ps2mult +psmouse +psnap +ptp +pulsedlight-lidar-lite-v2 +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-beeper +pwm-berlin +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-mtk-disp +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa168_eth +pxa27x_udc +qcaspi +qcaux +qcom-coincell +qcom-spmi-iadc +qcom-spmi-pmic +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom-wdt +qcom_bam_dma +qcom_gsbi +qcom_hwspinlock +qcom_rpm +qcom_rpm-regulator +qcom_smbb +qcom_smd-regulator +qcom_spmi-regulator +qcrypto +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio500 +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max77686 +rtc-max77802 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-pl030 +rtc-pl031 +rtc-pm8xxx +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7706h +safe_serial +salsa20_generic +samsung-keypad +samsung-sxgbe +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sb1000 +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scpi-cpufreq +scpi-hwmon +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sdhci +sdhci-acpi +sdhci-iproc +sdhci-msm +sdhci-of-arasan +sdhci-of-at91 +sdhci-of-esdhc +sdhci-pci +sdhci-pltfm +sdhci-pxav3 +sdhci_f_sdh30 +sdio_uart +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh_veu +sha1-ce +sha2-ce +shark2 +shpchp +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sir-dev +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skd +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +slcan +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smd +smd-rpm +smem +smipcie +smm665 +smsc +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcm-oss +snd-pcxhr +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-apq8016-sbc +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-lpass-apq8016 +snd-soc-lpass-cpu +snd-soc-lpass-ipq806x +snd-soc-lpass-platform +snd-soc-max98090 +snd-soc-max98357a +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rl6231 +snd-soc-rt5631 +snd-soc-rt5645 +snd-soc-rt5677 +snd-soc-rt5677-spi +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-storm +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +solo6x10 +solos-pci +sony-btf-mpx +soundcore +sp2 +sp805_wdt +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-fsl-dspi +spi-gpio +spi-lm70llp +spi-mt65xx +spi-nor +spi-oc-tiny +spi-pl022 +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-qup +spi-rockchip +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spl +splat +spmi +spmi-pmic-arb +sprd_serial +sr9700 +sr9800 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +svgalib +sx8 +sx8654 +sx9500 +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teranetics +test-hexdump +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +thmc50 +thunder_bgx +thunderbolt +ti-adc081c +ti-adc128s052 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vcan +vcnl4000 +ves1820 +ves1x93 +veth +vexpress +vf610_adc +vfio +vfio-amba +vfio-pci +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +vfio_iommu_type1 +vfio_virqfd +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +viperboard +viperboard_adc +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83627ehf +w83627hf +w83781d +w83791d +w83792d +w83793 +w83795 +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wcn36xx +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +wire +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xen-blkback +xen-evtchn +xen-fbfront +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgene-dma +xgene-enet +xgene-rng +xgene_edac +xgifb +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_can +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yurex +zaurus +zavl +zcommon +zd1201 +zd1211rw +zforce_ts +zfs +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +znvpair +zpios +zr364xx +zram +zunicode +zynq-fpga only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/armhf/generic +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/armhf/generic @@ -0,0 +1,17616 @@ +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 0x6ec78d46 crypto_sha256_arm_update +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xcbc4594b 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 0x1061dff8 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x2af69fd9 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0x77293d08 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 0x25f066f6 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x303a60e9 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x30dbad3f pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x34ee60a7 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x3e8ad1be pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x5380789b pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x5e8a068c pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x9a4891d0 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xc7a9d4da pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xd7431b06 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xe97a3a89 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xf1eae669 pi_read_block +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xb256cc36 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 0x7c3bf9e1 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7cb1faee ipmi_get_smi_info +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 0xadd0e4c7 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xbde8a588 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xff02eae6 ipmi_smi_watcher_register +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 0x142771d5 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x206b9681 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x3cd61d4e st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x51bf263a st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x76744434 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd78e0497 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xdfe4301a xillybus_init_endpoint +EXPORT_SYMBOL drivers/crypto/caam/caam 0x1c758e97 caam_get_era +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x17d8aeeb gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x76d12780 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x8f713e80 caam_jr_strstatus +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xc3c07d0c split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xd07ea548 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xd194eaf7 caam_jr_enqueue +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x1264641b dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x260d8af4 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x6380f05e dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xa14b592b dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xea4d6818 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xef081e55 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/pl330 0x21edbb17 pl330_filter +EXPORT_SYMBOL drivers/edac/edac_core 0xd9f562a7 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x01fa8c8f fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0b00f94e fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0b80c2c7 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f4bc660 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f858554 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x17f7a7a0 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x18a93973 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1b8b006e fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x303617eb fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x391ee912 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3d62c830 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x44769b67 fw_core_handle_request +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 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8fb82585 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9627b086 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcaa7b553 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcb5017f6 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd0a101ca fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd76f1b9a fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd9bd12b5 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdc81a10f fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe2beae64 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xec936344 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xeee13f5e fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf0368dee fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf07865b3 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf42ae7f0 fw_bus_type +EXPORT_SYMBOL drivers/fmc/fmc 0x38d51cf3 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x64adc4de fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x88581fef fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xb5f5b24d fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0xbed3abb9 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xc04ef810 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0xcfa1cbc6 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0xddd6a89c fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0xde0aae24 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0xeac5f297 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xeb7b2c24 fmc_device_register_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01513dd2 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01d719b9 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0308d923 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03f2be68 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05156cab drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07357edd drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a0951dd drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a4c4565 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a95bd87 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ac16c1d drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b3f9d28 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b69d0b5 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cfb39ea drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d2c30a0 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d41f2df drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d464789 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9a2865 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e5d2775 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fcf4794 drm_mode_create_rotation_property +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 0x11b37519 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11ff024e drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x130560e1 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15141916 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15df7674 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15eb46eb drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x171a5fbd drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19975847 drm_universal_plane_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 0x1c6649b7 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d3d1f6d drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21fd2448 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x220b4ff1 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c1d7a0 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c8ae97 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22cb3e42 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23db1ea7 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24de41b4 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x255888e2 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x257b7bfa drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2616874b drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2793b5df drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27c11b6d drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d18abe drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27e6957e drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x283665cc drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2880fa6f drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28bddb0e drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28c7889b drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a3f77ae drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c63188c drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e136532 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f92f663 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fb46fdc drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a76c4b drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3419d9cb drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3516644c drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36d91008 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3787ba21 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x388c1fe6 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39461275 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3aaaf166 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b7a8f6b drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cafaf0d drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e36266b drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ffe3555 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4029f067 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x414d64b4 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4174d164 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4260dc05 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x437bb167 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a67110 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45495dce drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45fe02ce drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x464af306 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46882dd1 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46f044fc drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47ee8ca4 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47ffc39e drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490bd41c drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49a21cef drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a1a63b0 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a9d013d drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b19a9ba drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ad51d drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b9fb013 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c53230c drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c9efa59 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e822b56 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5058d91c drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50b42516 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51a040a0 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51a97f8e drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51cd69d9 drm_mode_create_dvi_i_properties +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 0x5495876d drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55f348e5 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x566f7cd4 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56a60886 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x570e214b drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5731cd0c drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57a268e5 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57f7a662 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5811d8c7 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5860a9da drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58ecccad drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5925a7ef drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x598a6c8c drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59bf297f drm_atomic_commit +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 0x5a5f88b8 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e9e3132 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f8cf3fa drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x621789b0 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x630070f9 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x638af221 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x654b783a drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6573b737 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66fe3cdc drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x675d6cd0 drm_i2c_encoder_restore +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 0x6957147a drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ab9ec4e drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d552b18 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef783e8 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f2f3f6e drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x731127a5 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73c53a59 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77a2dab6 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78b2ddb6 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ad0c079 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7afb7e2a drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b02115a drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9fbf85 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c03c24d drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c4ff2a7 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c7dc186 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ce7ccf4 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d79469b drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ed73879 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ee1c6ac drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f2d7a75 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fc81aa9 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fce5145 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84f5d8dc drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x863c11e5 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8655525d drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86ff4838 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x887eb590 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x889023c8 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x896bc2a8 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x899b4278 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a25f1d1 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c25fa92 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c444dbb drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c9d96db drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ce27591 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d2ff83b drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e7bba25 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f48da21 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f86a97b drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90b6b3eb drm_clflush_pages +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 0x9357e939 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x947840f1 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9492345c drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x956dde95 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96380018 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96534f73 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96c98b88 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96cc5e3f drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98bc9ca6 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b32b33a drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c3970c2 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c4955a8 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8ade3f drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ccd5f38 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa142614c drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa191259a drm_plane_index +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 0xa5e1bbe5 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa82ce340 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaaa4d650 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaae73dd4 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab104d47 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab9a31ca drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac0996d9 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac1cf56d drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad8d90df drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae518cca drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb366ebce drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb37e8c27 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4715989 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5559eb9 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb61622c7 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6a388d1 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8e18205 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9a52f24 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbc63f2c drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbc6e18a drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbfc0de2 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbce9b80e drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd2c3d1c drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdb09f50 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfd7085f drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfe55cf0 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfea5292 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc04f6814 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc084b7f7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2624f4f drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2d91359 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc556dd89 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc61700a1 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6372b37 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc63e9a0f drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6f08a74 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7342e24 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7388add drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc766c14c drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc93a8cef drm_connector_register +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 0xcae93ec9 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb18deed drm_panel_detach +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 0xcda9c7c6 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce2411db drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf542fb7 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05d42eb drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1e7bb58 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd23eff67 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2a1133a drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd313aad4 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3178166 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd35c56c8 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3aeaaed drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5af7ae4 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd64425f0 drm_mode_prune_invalid +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 0xd73bae50 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd82f46aa drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8803c3a drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8fe21c4 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd97aa3de drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda726858 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdaf98064 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb3efc1b drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbe6fc9c drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde69328b drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdecb43bd drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfa85963 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe068b4e7 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe19ad026 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1abba2a drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe256ce15 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2bf792a drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe309347a drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3a872f6 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe41d9cd1 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe48c3ac0 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5933eeb drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6c5602e drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe927a2c2 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe96e7efd drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9d91bb0 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea6023f0 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebd81255 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef2aa968 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf03560a4 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2a5c855 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf366cde9 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3f421b6 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf410007e drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4eee7fa drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6a02950 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6c50efd drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8e4ad68 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9043f63 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa278621 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa89d886 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb2292bc drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc05e556 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc3c6937 drm_vblank_put +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 0xfdfa6e0f drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff4fddb4 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0196018a drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0210ba08 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x033e33b2 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x073dc7d2 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07d23e15 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08345c94 drm_atomic_helper_cleanup_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 0x09d3e092 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a8f0562 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f4836f4 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13ed62f3 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1632c6da __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1808aeab drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19a94cc4 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a968c29 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b555784 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c11971e drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21858190 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21a64f62 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x224fb458 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22c9a803 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x243add51 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27a0bec5 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x297820e7 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2aba1d3d drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bed9e6f drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dabda53 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f44bde8 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x355350a1 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35e14c73 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38dace7f __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39c57801 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a1409de drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ab0f5ea drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ac17c61 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3badd5b4 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e2b7a9c drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x403bb093 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x416a9569 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42c848af drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4356426c drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x446eff10 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x458d58ae drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x466fcdb3 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a5b45ca drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b9f5429 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52141da6 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5287d196 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x559723a5 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5990b37c drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cda4193 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ebba7b8 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ef64806 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x617b337b drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61f89874 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x654a1263 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66a900e5 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cd8a040 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d7f2fa4 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ef5dbf9 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x701d8065 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72f3a969 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73402b0d drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74f8512c __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7583bdf2 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7747db7d drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79259315 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7da3088c drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dc5f999 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80c62690 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8106700d drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84731426 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x859cdf32 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86ad3fff drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87f5b869 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88d3a937 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88d79338 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a2b65bb drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d418074 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e0accf2 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e2c1178 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e98a492 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f2bfd53 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x901258e8 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94448438 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9510fbc6 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a1390d8 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9aa040f1 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e0c4565 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa398ae40 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5455ef5 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa640d72e drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa65d8702 drm_dp_update_payload_part2 +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 0xade47a5a drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae604748 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafaf5ed1 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1fc85a7 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb23a78a6 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb32d10b7 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb60d6765 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7f082bd drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb3aeb2d drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc082b94 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc66589c drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe4c769c drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf775fa6 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0b1d0c3 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc207912f drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5852eed __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7ea1f16 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc96ad06f drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcac8861b drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcba84c5e drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccdd70b8 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccef9054 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcffabbd2 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd12369c8 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4f3d2ec drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6d1c416 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd91288c1 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd0658d0 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf4974c1 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe17b7af6 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe50d24e3 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe52b24e1 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6c3940a drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe89282e4 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8aa2bfc drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebbe3acb drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec71b6fe drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec804efb drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef03d90e drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf29c8b44 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3632829 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf46ea566 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf77704c6 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8085077 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbb48806 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcac6133 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe190499 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfef66589 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff956600 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffcfa33c drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09289c47 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bd1e237 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0e99f5fe ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0fe58279 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x136ec7fa ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a5fd79d ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20739ca5 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2379849b ttm_bo_wait +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 0x347cae50 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x352dd05f ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x354d9f93 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3603dfd3 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ea19775 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4628b006 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x54992b99 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5879280c ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c334541 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6068e95d ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68335d6b ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68ca3afe ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b620c00 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c0ec969 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c1bc1f1 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x758b8cfe ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x777735ce ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79217c66 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7dedfb3c ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e271561 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 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 0x88cccf8e ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x88fda8f7 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b244b7b ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c51242c ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e8b6080 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9099e5f3 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9755bba7 ttm_bo_move_to_lru_tail +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 0x9b83867c ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ddbeee4 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa71f5d33 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa9b6169c ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3bd3bdd ttm_bo_move_ttm +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 0xce73626f ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd065f54a ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd142fa89 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd1c85a0f ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd25a918e ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd5782b7b ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe210c751 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe59a2588 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef0f7716 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefc4df0d ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf201858e ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3d764ea ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfc9ce4c3 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfcb1e6a8 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd7484d3 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfdba0cf3 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe410226 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe8cc064 ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff27eb67 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0c25c83f host1x_channel_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x10274c1c host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x10bba4ba host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1c9f1003 host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x214ff24a tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3089a12d host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x35b7f378 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3edb9870 host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x43799a4e tegra_mipi_calibrate +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5d9daa53 host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6a7de231 host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6a99302d host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x76c3b49a host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x83e02c9e host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x88c23bee host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8d3050f5 host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8e3751a3 host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x937bc77c host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x999ceb55 host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9f7c4053 host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa158b6e7 host1x_syncpt_base_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa7411bac host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb337a13b host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc07cf4ba host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc4827217 host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xce374ffa host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcfbd3609 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd90b53bf host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe57a90ec host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xec03b772 host1x_syncpt_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfbc64994 host1x_syncpt_incr_max +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 0xcafd5760 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 0x0446c3e8 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x19a44c4a i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc6def61d i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x0fa74281 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x267d95a0 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xff7400f7 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x034092dd mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x03e462a6 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0a220c54 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x29c250eb mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2d56e675 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41d18448 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x51b5186f mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x644d5c1c mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6b78f75d mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x704711db mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x84c3da90 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9a7e2831 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa568c2c1 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcf29edf2 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcfd8a25f mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfab228b0 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x8fb79cf8 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x924e406d st_accel_common_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1fcb3d39 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x2f8e8592 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x7a667a13 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x913dd710 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe2b82041 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf81ed1df iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x06e65737 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x2213491e hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x230dd913 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x508fb706 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc3220a87 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 0xefc60fc0 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x105e4130 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x3868e856 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x7159b123 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xb8536563 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x14931b48 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 0x49024f32 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x49a70dde ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x78619ca6 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7eeb71a4 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 0x8eee6fee ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x925f3f24 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xaa7abd19 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbcf5806b 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 0x27eb8d42 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x2fcbccff ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xcba3489a ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xcc81b29e ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xcf378cf2 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x1f57138d ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x5daaff75 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x646727f0 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x04cdfa13 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 0x09a40112 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x29ea8ab8 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3a877263 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3d5a630c st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4b3dc175 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x552c2e50 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x55c3a401 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x705b1232 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x77779090 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9bcb1e4d st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xacf22781 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbd37bcfe st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc640edf8 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcd469762 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdcf6453a st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf5634f66 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x34af0c21 st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x8e0b71f6 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xad490791 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x266ad00e st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x4f3a434b st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x2376fe2b hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x056883cc adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x741c4018 adis_enable_irq +EXPORT_SYMBOL drivers/iio/industrialio 0x0ef54586 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x1e711578 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x217594e7 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x247d2db6 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x6395631e iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x64021974 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x71015607 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x98e33f74 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xa48f4fc9 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xaae0f4de iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xb030b7b9 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xb4ddb1b9 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xc9132ef5 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xd51a650e iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe912aad9 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xe935446a iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xf32cda67 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x6e991b7e iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xf0eb0a31 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xcb235809 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xd1b39f60 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xc670d402 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x3818ebe6 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x80656513 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 0x3b193bd0 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x5347cc38 rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x7df81f32 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x95de7890 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xb3657e49 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xe1bed96b rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x019ffd0f ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0508e666 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0705a786 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0828fdc9 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x09181d77 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x229cafc0 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x301242e4 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3668f2a0 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3914eb05 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x56046d0e ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5c4a8f05 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x60b1f95b ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8c39da93 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9bc624e8 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd7c2f9c7 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe0ce512b ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeb205a51 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf2003710 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08353fb7 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0be47d6e ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f222dc9 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f58cffe ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16f39b1b ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23e44fe0 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24610506 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2620dda4 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x297a7425 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ee93b73 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3346e431 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36eafd56 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bc3688c ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d92a308 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ef9f88c ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fb2111a ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x411e5048 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45a51358 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c6efd30 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ff64a89 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x502d39af ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x518473cb ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55a23fb3 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x571d09d6 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a514a5b ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e28a09b ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5eb05d8b ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x653e8158 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x670f4162 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6940d917 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71b26e0a ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78fc7e04 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79d2200f ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80abe0b8 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88796197 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88ca0fc2 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89e38810 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ba1f91c ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c1fbae6 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8df9bdc6 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e67d0f1 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x932bde26 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95eb4ff2 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x969a4149 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d3be5ae ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e4b8742 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa91ae8fe ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac3aa7cf ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf92d115 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0b68806 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3653390 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4b27e7c ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9e628da ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbac8bfc7 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe6839ef ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf8814fe ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2cbfd93 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc437fb3f ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc514330e ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7725a1a ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca26c4df ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbd8d4b9 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd07d99b8 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd29d6399 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4f229cb ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda82bfa8 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdce70065 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe10368b3 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe259090e ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2f56b71 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe369bfe1 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe486a46b ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6cd2383 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe75c71d6 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe96b9a72 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb7c6db4 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeec4530e ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf97158d8 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfab97291 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfadf1c21 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfaedcc1c ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff4d30e4 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff8b8def ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2e4f1f44 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2e899729 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x3209fd55 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x562065b2 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5843184c ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5bd36721 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 0x7d7f52b0 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8dc4755a ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa6a4fc2e ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa7811a20 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xabc1efd6 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf7651140 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xfd4eb91c ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x097fc3ff ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x11363b5f ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x133cbfe3 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x55b3b475 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9441c0f3 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x963e6b8f ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9e7aad54 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa17d8d54 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc1a8d767 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xde9e1b2c ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf5e444e3 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 0xac812752 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbc844f6a 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 0x24fa4516 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x25b6164a iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x29c0482b iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x355af2a1 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x510e07c1 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x54df049e iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5bd9e01a iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6807a1f2 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x72db02eb iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7bbdf775 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x83cc5c4d iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x87f72f23 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 0xb9c1fa6f iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xccca88b9 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xeeca0323 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x02148b9c rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1230c7aa rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a6572e1 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x52622713 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x54730b43 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7627fc63 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x86a83753 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907031b7 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9fffb715 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa0e7730f rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa5085067 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbf0bb18d rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc5559e4d rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd12dac10 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe2624db9 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeb161784 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xebde7e5e rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xee5f82ac rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf2207e58 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfcc5084a rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfcf6f21a rdma_resolve_addr +EXPORT_SYMBOL drivers/input/gameport/gameport 0x785aa661 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7fcd3376 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x83186291 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x884b0738 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x962d65dc __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb1a3ba7c gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xbc9d05be gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd6f2b879 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfdaf7632 gameport_stop_polling +EXPORT_SYMBOL drivers/input/input-polldev 0x71c38c52 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xc56823ad input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xd8657bca input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xe221aa42 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xe97151c0 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x742af256 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x007aa4de ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x90ff06a6 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x99c28b52 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xdeaa2b65 cma3000_init +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0537c3f1 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0e5eea23 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x108af23e sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x1ba1d04c sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4cf4cb82 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x62f466a7 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x84953d80 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xa378bb61 ad7879_pm_ops +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x11e26c78 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 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 0x887864f0 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 0xa2bf25b4 capi20_register +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 0xc1663050 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xca3bddc1 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd724d3a6 capi_ctr_suspend_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 0xec005763 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xee4df452 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf7007cd5 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf76f9131 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2888d07d b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2f5fdf8c b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x367e326b b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x554f0adc b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5ba09de4 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6a22fd76 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x705dfce0 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8807cc90 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc1bf9987 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xcdec6610 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdb4ef5e4 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfabac4e b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe40ccf70 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf109feaa avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf14a5282 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x1bdfaace b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3199db5c b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3a2e7c94 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7169ff38 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa1ef7f5e b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xda8142ce b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xeb3b3530 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xfa158fa5 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xfef5eea4 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 0x4d1a2e13 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x942e0810 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb673757a mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe381af14 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xadb0b237 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xeb3a18b2 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 0xafb5586f 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 0x3576b365 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x86b3e084 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x9fd2a098 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xaa4124d9 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xfdf0405c isacsx_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x0b1b47c5 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x6775a7bf isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x758d6d49 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 0x06559cde recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0c1f4b5e create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x189e7ed8 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1bd7e0fc mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1d5c9458 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1e4eec9c recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2877c213 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x33346300 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3890c0ba recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4f66edfd get_next_dframe +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 0x5a06e88e recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5a5671e8 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5fabc40b dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7be60ea5 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7c018c3c mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7faf4ca7 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x86be2453 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9b61c084 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa6db7840 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xac6c4019 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc19132c6 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc827eb02 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf3f9d54c mISDN_initdchannel +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 0x12578b1f omap_mbox_save_ctx +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x496c5865 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x6afe6971 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xd82888a8 omap_mbox_restore_ctx +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xe35e7fec omap_mbox_request_channel +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 0x49e75860 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5818028c 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 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 0xf7e03db0 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf8fd4bac bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0xff86ba67 closure_wait +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 0x0655c588 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x57d11c44 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x60cb1593 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xba156178 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x138de1b2 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2e1495c3 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x49c7c9b9 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x914fae72 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc17f6067 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe9e198e4 dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0x75063927 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1ddd5bb0 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3b190117 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x594985ea flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fd83ed4 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8db1d4c6 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9d479ebd flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb3fbc57a flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb46e4390 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb613bee8 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbae1215b flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd5f07235 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdf6def42 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf59d10d6 flexcop_dump_reg +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 0x351933d1 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x381f4c43 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0xa2d042ce cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xa78a81f1 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 0x3a59f8c3 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0f92ae81 tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0x7fb0f1fd tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x00dc3f13 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x018e0e77 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x14b76a87 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x16944083 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1bcccd37 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x21274746 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x25073a3e dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x272f5185 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2edc78b7 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x327926bb 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 0x397c79c8 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x569c54b1 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5acd7a05 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5ad09897 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5bc4435f dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x629f9d31 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x68bcd75e dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72180695 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x73eadcca dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7e46d5b1 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 0x8633f37b dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x888507e4 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x912cfe0a dvb_frontend_detach +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 0x9cef68c1 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa6ba230b dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa9f2471b dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4d5c88 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb745f718 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcc42e3b9 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd7f2700e dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd91f35de dvb_net_init +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 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 0xc6fe79b5 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x1a739476 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x6f9a8616 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3546ed1e au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa560ad9c au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xaa8afb24 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc9bfada4 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd05eaeb4 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xda079ba4 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe4393c9f au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe878b350 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf8a946bf au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x22c50b58 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x767e2d31 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x53dc0d70 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xe4dea48a cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x6c09ea42 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x008f5f20 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x172a8e99 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xdd007e7d cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x2f78809b cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x3017d961 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xc5e358f1 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x31b0b91f cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x57a0189d cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x937622c6 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xf8939e0e cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6d5a4966 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x78707106 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x97f35886 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9eadb4a8 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xfc639451 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x058b974f dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x11629357 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x30827e13 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3acd7fca dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x517bb5a1 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5336593c dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x606b567c dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7664fc4f dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7d3f94fe dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8713446f dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9ff450bb dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaf14ac5c dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc43023ec dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe0d46b24 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe25762b4 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x256fd91f dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2b01d659 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3e05228b dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x76f83593 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x922e110f dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xaa22d9ba dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xadfa38d2 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x03f3f35f dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6b40b9c5 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x8a014095 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xcb1fac32 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x77129dc3 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xeb396da7 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x625edeac dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x65625baf dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6d931032 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xaa40ea7a dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3705d5 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x95816929 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x79408ab6 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xc22cea86 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xedc96306 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x95b49c72 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xcb726d9a ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xedc6502c horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x5e571f0f isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x690c1570 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x40cd041f isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xd81132b2 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x3326c73e ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xb494ba89 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xc8e997a2 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xd31d93fe lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xcd1ed35a lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x0c510e4f lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x3cdb9b2e lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xe2f06a9c lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x32b1d08b lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x49ab52a0 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xdb288ebb lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x1d96e111 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x30feccb6 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x20a002c0 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x16ee5ca3 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x78dd7e5a mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x9080b2d8 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x52add071 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x29c22c32 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x41891c7a nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x87d9dc4d or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x6d373de0 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x0aea2f0c s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xebb5e942 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x2b5429cd s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x418cebc4 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x6e76f099 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x1c43eb99 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x08ce180b si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x07c4ef23 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x26ef6e42 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x8e22a43b stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x5970ccb4 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x8a416b2f stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x3170906e stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xc651af05 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x0acca1eb stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x1da3f2f2 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xcb41f715 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x5acfd2ee stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x9f244ff6 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x3121cab8 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x4e1c3101 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x1469fbbf tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xee85bba0 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xd40011e4 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xe0654693 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xf29bd5d9 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xf0bc709c tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x120978c1 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x8adf0d27 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x71bc2c5d tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x22617318 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x5a6253f4 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x1116d061 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x8082a398 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xdf67cc2b ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xead86751 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xd44908ea zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x727380c3 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0d54f963 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x10f34265 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4da38f9f flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x63b68a9c flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7d8014f2 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xdd29b0c9 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf7c18710 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x15c3e48b bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x86f55179 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xc8e7efc7 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xfe099895 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x62144f11 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xaa7bb504 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xdb7241e2 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x03dfa4e3 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x424fa9e7 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6420a534 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6c0163d6 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x71b7366b dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7c008d2d dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x860475dc write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8fedea96 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe7a20ca3 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x98df9699 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x3111d9d1 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x69fad9b0 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xaf7b2efc cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xbed8ffd4 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe4001053 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xc2c84e07 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 0x21ab534d cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4c49a311 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9694f16e cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9ea73a73 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xafe09fbd cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbdb2e028 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xcd296937 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x61827966 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xf5e84ac9 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x156ca645 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x2fd98e9d cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x570e189c cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa2045d89 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0ee36680 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x52559abd cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xac28a461 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbfc0ede6 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc285de29 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd2f150ce cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe84954bb cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x029ae54f cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0aece90c cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2132f2d4 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x216021fb cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3195bbcc cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x379f4d9b cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x37cc559b cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4d906cb5 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x50d6f81a cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6b443545 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x78bba9c1 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8335faf3 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8878966d cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x90a78353 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9f0eba8e cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa9fe77ce cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb6ca3ff9 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe10f4b58 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe1172850 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf221be97 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x023bcdc6 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x12bf242f ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1c07b5f3 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1c6bab6c ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x206221e4 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2a213f9c ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2b40c0d6 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2ca874de ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x35b8aac6 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x80018181 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x85e0b811 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x92dfdb61 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb1c948da ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb36e0bc1 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcd10807a ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe334190c ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf27df61b ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0afbdcca saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0bdac19b saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0e6e525d saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1a125661 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2a4a829e saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x39b37efb saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4b836ff2 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x563eed87 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x740e5ab4 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7ed21374 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb175176c saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd2b44496 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x3f61ab10 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 0x0b633864 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x0e795241 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x4e8f91bc soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x54493ba8 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xacc42844 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xc21a00e7 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xd20bdbfe 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 0x208f71c6 soc_camera_client_scale +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x36d5431f soc_camera_client_g_rect +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x6161e222 soc_camera_calc_client_output +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x73624891 soc_camera_client_s_crop +EXPORT_SYMBOL drivers/media/radio/tea575x 0x4aca2840 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x664bb33b snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x682b383f snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7d4741cb snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x8b38452e snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc16e3e69 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xef4251ef snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x0652bdcd lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x1cfe9147 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3481fc21 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3a0034f8 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x66133a12 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8e626ba5 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x900f453c lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb15e5bae lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/rc-core 0x283cbbe1 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2a11c346 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xf51c0f54 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x1c69d4c3 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x014fec35 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x82a0c1c4 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb05c157f fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0xfff554f4 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x65d64be8 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x8697b80f mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x055fbefb mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xc276865c mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x4e07c8f1 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x77cbd174 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xc589339a 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 0x3a97cb36 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x08513ef7 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x508de0c8 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x773a2866 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xcbd1f1cd cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x04c5eefe dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x30103ec4 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x51f5b06c dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x55d74b6a dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7277ecb1 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa6070daf dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa9d38c9c dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xde3a66f5 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xee91ac93 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1457f304 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2c1d392e dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x35230cfd dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5fedf21f dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xbeaaea8c dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd15a9c01 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe41926f7 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 0x2351d569 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 0x05ed8269 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1fde3b40 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x22c109e2 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x295ef091 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2dc16dbb dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x61e5a6bc dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6be681d1 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x72471ab5 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x903290a9 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x985a65ce dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa6985ebe dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x59b5bec0 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xd502b691 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x051042d2 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x216f60ea go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2b6ebd28 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x635dd23c go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6d0ff3a2 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9fb1db0b go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd74aa4cc go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdd9a51dd go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfb64c61a go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x037412db gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x07a2266a gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x20f99595 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5310ee89 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa65a89f5 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb88b968c gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xdc05b2dc gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe2a76f8f gspca_suspend +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x7f4f8b51 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xbde0dddb tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xd7826f4b tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x59f4b9e0 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x7233b82a ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x3e089a0b 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 0x53f131c0 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xaccb4a72 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x276fc238 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x667d9aac videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x7d742f35 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x9bd05e6e videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa5b055ea videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xf04e42d3 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xdb7f3b8f vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xf8d811d4 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x13cb8eb6 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x2f9b111c vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xad031297 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xc2392a59 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xec0deb55 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xf29f150f 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 0x4b96e44f vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x003f0ad7 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00e2e6ac v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01d12bcd v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0202d9bc v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03a96369 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e31e8fb v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10b06481 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11dc40cf v4l2_ctrl_cluster +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 0x174d974d v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1ddb1f7d __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20371282 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x215b64de video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x233e6842 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25d2487c video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x26e28fe5 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2a5b614f v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2aa884d0 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c17341e v4l2_ctrl_find +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 0x38a83c81 v4l2_ctrl_log_status +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 0x3e0a3d35 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3f09b6fe v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x466f233f v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48804b62 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4964a3eb v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a3282eb v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b48f24a v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58763245 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b3d2591 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c899073 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61a4265e __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x658e4a20 v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6721e0e9 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a906477 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ae4c6f7 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6b592361 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e5e6fd3 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x701daf2e v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x70d47b4a v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a809582 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a86e0ee v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c682d85 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82130ef2 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x853fd0b5 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8542b15a v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x88015391 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a64566a video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ab7e825 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8afd900e v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c80ed03 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9e788b33 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa00607f1 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa57d28e2 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab0b4e22 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae8c484d __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3b26ac8 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4e3e9c1 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb840ed21 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba78cd0e v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbafa2163 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbbff8ec7 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc0859c1f v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb479497 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd08e5aa6 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6429d38 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe1e4ccdf v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeba0d75a __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeded471f v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7ab60f3 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf876d85f v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd949657 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/memstick/core/memstick 0x04a4d076 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x128edada memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1d5dd360 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2034a037 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x512af4d0 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5b5c17c8 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x66d1d85b memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x74a5a006 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8c9b5da4 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa7adfb90 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xaf2c76ff memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc7adbe8c memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe3e81fe9 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xecd02c24 memstick_free_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x058f365a mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x14947649 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1fc06abd mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x26750761 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x30d8d3a4 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x383bd657 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3daaf2ac mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x42b8d79f mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x49b867ba mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4b9b98a2 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5036e571 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x599190e4 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6cbe0878 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6f881459 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x78a1cd23 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7e2f0676 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x81ec23bf mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8987421d mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8dcec71c mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa437b2b8 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa965bedc mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc196e047 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc4ef3d11 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcf82b291 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdc0daaf1 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xea37d843 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xec43750f mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf9d42284 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfb84330f mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x00df9ccb mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x02235f8a mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x06ff9bb0 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x163b9d59 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1c3a487c mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2e9e4ff7 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x388536cc mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3a633427 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3cfcd861 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x48ff651f mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4c8381d8 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4e77fdd4 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x50827b12 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5db64db7 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x749581da mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8007bc35 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8f32130d mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x976e236b mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa66ede57 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa94f658c mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xca30dbc4 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdd2de49e mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdda058a0 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe443a9b2 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe62c90d1 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe8dde6d2 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf4504246 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/mfd/cros_ec 0x22497880 cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/cros_ec 0x29ae485d cros_ec_remove +EXPORT_SYMBOL drivers/mfd/cros_ec 0x54a50dbc cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0x7fea8b23 cros_ec_resume +EXPORT_SYMBOL drivers/mfd/dln2 0x43a9dc1d dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x7c90d61d dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xf2b574b5 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x5d0a2429 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xea68608a pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0968ad5c mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0e462b3a mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x33bba077 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3a40deef mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3f32087d mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x66615486 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x93672d77 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb147d249 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb67fd320 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbfb23093 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd6238f41 mc13xxx_reg_read +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 0xa2ac6d04 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xce4a336d wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x0b3e6dbc wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x3904d625 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x654ec7d7 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x945c6f91 wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x4b1e3c65 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xaf175b76 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x8a05ed90 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x9b7acd06 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xa0f79964 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0x04af0f27 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xeb17c57e ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x0dda96e5 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x1f8a63f2 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x24c68789 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x387ace33 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x55902741 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x55caaf57 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x5dd6ba47 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x7c6a97af tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xad4a5dcd tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xbae3cd42 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xcd5dab3a tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xe9b2f4cb tifm_map_sg +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x281098d9 dw_mci_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x707edb55 dw_mci_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x827b7a30 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x9d97242f dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x15dca5d8 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x24b59d45 tmio_mmc_host_free +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x4f2f2413 tmio_mmc_host_alloc +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x51e1038b 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 0x767c8ee5 tmio_mmc_host_remove +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x7a6fd700 tmio_mmc_sdio_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xad7bec46 tmio_mmc_host_probe +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xf02062dd tmio_mmc_card_detect_irq +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0839e512 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2f7b8765 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x37fdd1ef cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbc8c0d70 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcbed72a9 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe681dbe0 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf9c03547 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xeba6096b mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x682ec927 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/nand/denali 0x3222516b denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0xa4b1c09f denali_remove +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x1aaa2def onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x1de9eacc flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x4838655c onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd43d8789 onenand_scan_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0521b364 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1e08b59e arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1ed2d056 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x245f0680 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2a320025 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3494696e arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x402b0813 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5af557d8 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8851e08b arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd4b4328a arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7fef9c78 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x8784b8a2 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa8799750 com20020_check +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x003cf9a2 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x046e0681 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0fc69bf5 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1b3698b0 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2b4e5ed1 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4d1781b2 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6321e0b9 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9f53d3f6 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbf53b3f9 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc43b0e08 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xdbca30ba bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xeb1da934 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x027de5ad cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x045e75b0 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1857bb34 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x20a47ea3 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2a9cc776 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3fb48a5c t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4297c011 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x42dc24a6 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x43c7716a cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x956edc94 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9ef0a8d2 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa1f9d71e cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa951414b dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa9f540cd cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb7b7e475 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xff6c295e cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x049f916c cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ec3aa1a cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x10a922a1 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x11393f02 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1392b2bd cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x16b0716f cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1a931994 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ab83089 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2628b9aa cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x299d35bf cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2c971c3f cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f97dce2 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32d586b2 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3be61e85 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x41ac10d3 cxgb4_dcb_enabled +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 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x56d8aeae cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5eb60a72 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5fc4b912 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8275af8b cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c131b47 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab2a166f cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6206b5f cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6fd7c80 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc531fffc cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xca2b3bc8 cxgb4_create_server +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 0xe00f86a4 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe74f3899 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeb156e9e cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xebd5a8e8 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf5df44a6 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff94ce88 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0059e51b vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8fc9395c vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x91607caa vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x983336d0 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xadd92dc5 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xebb6e8ac vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x5671dfb8 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 0xe3596736 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/gianfar_driver 0x79f28897 gfar_phc_index +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x5bd21c4f hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x620ecd9a hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x65b88cf1 hnae_reinit_handle +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 0xed28367e hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xf8c98ac0 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x007450e1 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05924995 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05d838c9 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b0dfd28 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cfae4e6 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d460dc3 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e1ab15e mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e38ae9f mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1621f2af mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bda1e0a mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e1d461f mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30233193 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41cafa44 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x544c01a0 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5de40ee6 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75761b21 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78b206bc mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x816301ef mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x863d03aa mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d1f769a mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a53f27c mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4318842 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab781e1d mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5acf3e8 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7fcbe21 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbea715d9 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc09c3895 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc96ca6d1 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcedac74b mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf5860b7 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd41f0232 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd85679ed mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1c2dcf8 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed986deb mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef9a6282 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4318748 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6237d0c mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8a1b649 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x083a213c 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 0x0eb7287e mlx5_del_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x101b5b60 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x121731e7 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15ce34aa mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1864eb39 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1af2704c mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ee48553 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22d68b2f mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a8e51cc mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e0388b6 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a65fc75 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x519416d3 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54c349e0 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ce33814 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61a04feb mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6902e5ec mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c064dfe mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ee291bc mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x816fa146 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c0f925c mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d19fa27 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ebecc9d mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90b91211 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x936729d6 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9848db6c mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x992e72a9 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bd3206a mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa504812b mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabaab5d8 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0b4b310 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1634ee5 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcae9681b 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 0xe6b79f93 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea37b745 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedf67522 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2cfe4b2 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xface016b 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/mlx5/core/mlx5_core 0xfcc8ae8e mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d0eaa23 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x488ea3a6 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 0x76f1a036 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 0x86fcb163 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xabcd4748 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbecf9a71 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 0xdf7ddf42 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 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 0xb676dd9b qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0c84c23f hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x14a0596f hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x71f966aa hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x830a0af7 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x88acaef4 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x11bfcf46 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2189f49a sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x27aa3ce5 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2c94ba91 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2fb58b09 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5505ba47 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x693baf08 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8033ee4d sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9d0e58c5 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb489b662 sirdev_get_instance +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x096f9080 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x14d46519 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x274adf2d mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x50b39c8c mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x6c61e95f mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x9a81301c mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xbd2982ba mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xff2c4e06 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x8e5e1306 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x910cbd3d alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xaead984f xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xe5e2c0b3 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xea224973 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/vitesse 0xf21e1fa3 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x3bcd2270 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x9d22c6f4 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xbab4c22b pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xface299f sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x4d06fd39 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x9befdd6c team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xb61b5ae4 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xc5c9b095 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xc8873f60 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xdbdf54aa team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xecc6ab6d team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xfb1a7b96 team_mode_register +EXPORT_SYMBOL drivers/net/usb/usbnet 0x704840fe usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x9abc4f28 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xe2cf1e2b cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0xe340bc28 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1cf56701 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x25bc12f8 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x31b99cd3 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x360b9479 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3ad8cced unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x48054785 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5c52998e hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x78c2a7b5 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb0aef131 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xeb018476 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf79620ae hdlc_close +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x25d92c3a i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0825ff53 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2d5f82a7 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6299c982 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7641c78c dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x77284330 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7b1ffc1b ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x832205bf ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x961e7a4b ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xafc8b783 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc02b645c ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd169b71a ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfe8a0f1b ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d4bc8fc ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x256223d9 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2d569e99 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2e2aea16 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x332ee3cf ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4785dc2b ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x66017664 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8eb01136 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb0130535 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb2073dcb ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc4b352f8 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc7f87e64 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc9e8f6d8 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd9318f8a ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc7b38ac ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x22fa51de ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2cd23937 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x35904576 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3b066647 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x577c135b ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5c4adf32 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x74305b08 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 0x8b5a2c7d 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 0x9aa8ca9f 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 0xc34f96eb ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe3f68073 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0b933622 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0e247d70 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x14078315 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x174ca26a ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x175151f6 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2def1389 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x45f8d4d1 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x63dbd617 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6bdccbf3 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7369eebd ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x738220a7 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7cac52cf ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7cdcf8c5 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7db155f0 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x92fca977 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x99e312da ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa425d6cc ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb3c8a5a3 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb8a5afc9 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc672f780 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcab01ada 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 0xdca0d0c4 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf4eb4d32 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00782dd5 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0376cc92 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05193c40 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x054b2c5f ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05be56a7 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0671babf ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07238872 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08bc2448 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c2435b6 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14986bf0 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14ad9d9f ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15011278 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19697a3f ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1faa7ff2 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fc4c980 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x212b1850 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21309085 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22229e91 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x255be249 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a0405f6 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d536528 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fb17efe ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3471a31e ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3476236c ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36cb1bc4 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x389e9ff6 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39d9054d ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ed94d93 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40ef7fba ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4269534e ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42bf72f9 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x469e25b8 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x499cf92f ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x538a31b0 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54f11c59 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c97d89c ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fc20748 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fc2d8be ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60ba3602 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x626b764b ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62b41666 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62e699f5 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x630c337b ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65241bef ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c6bd81d ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6cd51a8b ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6def8cb0 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e12c38e ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6fca2c7a ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78b1e2d7 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a771be7 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e72719f ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f288e02 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80288382 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85511d05 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x862155b6 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8701883f ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89840c6e ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ae6f861 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8bcfc0c3 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d7e404e ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a6ed180 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9afd47f9 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b08b8b1 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ded95cf ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f3c45c9 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0b7cb5f ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2915250 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa51e9322 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8eaba09 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa957d008 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac23f4f5 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae7ac651 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf4a1476 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1e2b584 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6cdb40d ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7cc2885 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb99b0054 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9a3977f ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba2a5e57 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbaa5f751 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc79dac0 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf0266ae ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf721eb8 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6d228e4 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc76828c6 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc91f3cd2 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc77dbd6 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf3ee8e7 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3377a06 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd41efa7b ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4ed3abd ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6dafb37 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdacb7be8 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf6230f4 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0216fd3 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5040e45 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6e09242 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee4a78ac ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf10fbb80 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf475faee ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa2a0e1d ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfadbf2d8 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbc63cbd ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd34d616 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x9661c3c7 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xc16c6dd1 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xea34cada stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0076017a brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x098ff540 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x243faeee brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x46ffd4c1 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x48f0d813 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5825a50f brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x74baeb5c brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x95e0fb1f 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 0xb164cf41 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc05cf5fc brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xcda6db93 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd5535fca brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xea6c7180 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x028becc4 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x10590c2e prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x13c26deb hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x291b4123 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x441247d0 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4cb37182 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4cf6dc34 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x632e9c4a hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x651cc5e5 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x87072f86 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8de5cfd0 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x96b9d2a7 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9d8a8a7b hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa6201cb5 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa83e4fbf hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xad8e5d15 hostap_init_ap_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 0xb63e243a hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xba228a48 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbc6691bc hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbc6d18d1 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbf213315 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcbe01885 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xce535ac7 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd263b520 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd7e125a2 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x09365be4 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x14859ed0 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x14bbd1b0 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x23f50cc7 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x27070d4a libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2ece9faf libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2f943a29 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3c616ae7 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x498196a4 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6888e5a6 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x695a7ad2 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x78a77db2 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x799243ec libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa17c9fa9 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa316beed libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa8655905 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc2652f86 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd6ac8aba libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xed12bdff libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf9642f13 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf970844f free_libipw +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x001a7dcc il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x071bac52 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b0bd080 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0d95a734 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0e94e81f il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x108b6b04 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1231f2b5 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x12d165c8 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1496f93b il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x18a9cc38 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1a86f0db il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1c801b66 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1e481338 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1f659eea il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x286863d5 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x299a18f8 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x29d2ea35 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x312c4593 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3241f085 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x342b2bfd il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x35b9d78f il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x37be63a1 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3c720d0e il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x432cd5b5 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x472e9f41 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x477ff939 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa407e7 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4c3ac897 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x503dcd24 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5209f5ef il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x58c5257d il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x59c04699 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5c2047a4 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5e9403c7 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x60f0bd82 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x62930e60 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x64d2f675 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x665b97df il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x66c4c624 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x68c093eb il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x69590887 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6a112c1a il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6d6f193b il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x70c4ed9f il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x75d44f63 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7bc255c0 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7e6b652a il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7e8b163e il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x800ddad9 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8089a3af il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x80be38ba il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8255f0eb il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x842dc185 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84d81836 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x858b869e il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x89dac158 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8a39f11e il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8e5d35e0 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x90e67bfb il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9112330f il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x91f02806 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x92968b21 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x964ccc24 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa5dd9c80 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa6ef4dec il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa726272e il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xad29a7c8 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xadb8d255 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xadd703aa il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xae8fa902 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xafda7f8f il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb1441e4f il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb410aecc il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb65637bb il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7e055b2 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb88c261f il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbc432a0d il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc3a499d4 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc417f505 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc830b8f il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc902349 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcd04e120 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xceb44671 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcf433721 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcfc71a32 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd4f69f43 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd8991418 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdb1541d8 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xde5cb2f2 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdf1d8fbd il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdfb7bc0d il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe042a8b5 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe32d09d3 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xef714452 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf57e2bde il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf675aaa8 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf7f9a840 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf8300e9b il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf831c4a1 il_init_channel_map +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 0x141758cb orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x14e1f0fb orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2ea10c9c orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2fbd0c97 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x33ce59c6 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x43fa3968 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4da16413 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x544d1452 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5bfb0c47 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8614f96b free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd724204c orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd76ddce0 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe70dd051 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe71469a4 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf278b0c0 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfd20ac23 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffd4c376 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xa942a5e4 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x01886504 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0215559d rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x09e9dc5e rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f8dc094 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x11970cb7 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x124aed0f _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1258ec27 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x16de9ba4 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x16fe7178 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x17eb0c57 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x288862a5 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3514a7e2 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a0219fe rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3e7d9717 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44d28651 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x47b71f4e rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4918a207 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4cac005a rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x562f014a rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x61bd2b5f rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6c49df61 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82323bd2 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8235cfcb _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x844277f5 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa728a536 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa81cbe58 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf3304d4 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb8460193 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc2be6847 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc3a3cb29 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcc68e1c4 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcf05b125 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd12f1a1f rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd3a8bef5 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe312eec4 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe912a2f2 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb1c10e8 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf12932dc _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf18f79fe rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf9ea30d0 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfc069479 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x04eee7f5 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x0cb497e4 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x70183616 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd2c8a4bb rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x23e3d67d rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4516ffa5 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x58b8eac8 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8856eb64 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x120f2433 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ff473da 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 0x2d5694a8 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ba8d43d efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c843b4f rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x40156aa6 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x454bab9e rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46e2039e rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53d54ce0 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58cf340a rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58ea7d77 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63030427 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63ca10b2 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x670278a6 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x70ee3dbd rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x82e7fdef rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9dc4a8c1 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8890ae2 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac226c78 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac83d802 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad3b4b3e rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb9b746aa rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xccb48b56 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3ffe344 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd913fd87 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe129736a rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe530b350 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9e0de4f rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x1aa89c25 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x85c374dd wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8ec7e736 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa538fde4 wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x825c9893 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xc9de6dc0 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xeb23980a fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x1f0ea199 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xbc15d1e7 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x6cae4153 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x88879ae2 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xc85f30b5 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xc7666784 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xcb9b073d pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x71916ae8 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xa1e3a18a s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xbfad2a2c s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0e560da5 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x22e3b01e ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2a54ca68 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x446ff787 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x805a7456 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8881015f ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9aeb3cd0 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa1457464 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xafa1c94b ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdd673b70 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfc1494cc st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x01135cc9 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0728c127 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x11fe312c st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1e93192d st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x31f8c33d st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4754b4f4 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5e70218d st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6016b9cf st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x61c0f426 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x65bf7038 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6645d10d st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x81ef8ee5 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x903fa8f9 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbf1312de st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc15b9754 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcbd4e404 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xce982802 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe42b4fc4 st21nfca_se_init +EXPORT_SYMBOL drivers/ntb/ntb 0x2646a4a4 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x2b5de940 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x2c38e0fd ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x5a80d8a3 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x5b8a85b1 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x75aa0ff9 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x76714cda ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xb80a2ad8 ntb_clear_ctx +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x0e88acc0 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x05ee61d5 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x0aff8c96 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x1189036b parport_release +EXPORT_SYMBOL drivers/parport/parport 0x2e69eaa0 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x3784da98 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x37aaef18 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x389f87d2 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x3e1a4a00 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4f05d48d parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x56876d35 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x630d4483 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x673ffc26 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x69880f4f parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x6fc60cb2 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x7789f67c parport_write +EXPORT_SYMBOL drivers/parport/parport 0x7f4cb7c3 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x86171668 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x95a13af9 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x9a7538bf parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xa6dcb575 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xa98ee8de parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xaf58cc52 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xb268a8c3 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xb92513c6 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xbba12040 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xc62741ae parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xce97e2e9 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xced29324 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xd595eb63 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xdb592e77 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xefcf661a __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xfc0c0e40 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport_pc 0x235ee4e2 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x7677b5a6 parport_pc_unregister_port +EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x2f83c0e1 iproc_pcie_remove +EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0xc5938258 iproc_pcie_setup +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x16f9725e rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x22866db3 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3509f292 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3c4c1ec8 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x5eb3a851 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x665b5794 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x6bf026b2 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7a78385e rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7f7b9cb5 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x961eb821 rproc_del +EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0x1cec4245 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0x5b0fe59e rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0xa77e4018 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0xbaa51466 rpmsg_send_offchannel_raw +EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0xd0dd43ee register_rpmsg_driver +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x3e9a52db ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x3c5e1d0c scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9b45c0a4 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9f86b419 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf6e4a201 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3aca02a4 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4acf83b0 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8bd7374e fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x925ac060 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x93797455 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9f43a185 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9f83066e fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc836f429 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe039fc36 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe1fdc642 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf9053726 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfbcac4f7 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x02737c11 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06ca172d fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a9775dd fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ba4bb69 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0be1aec5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x141ebe82 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14718517 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1dde0e71 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b110724 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x340398bb fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36083767 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4db04dd5 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f502a54 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x525ba52a fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x549dde6a fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x57e78f9e fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5acc7fea fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x600c401f fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6568df87 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a24ca3c fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d756c7b fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78c91c07 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d9b4631 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7df51e90 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f003ebf fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8347484b fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x86ba5d39 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x882ada58 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a0d6b98 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b8821a2 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x92d310fd fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x97ce691f fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x997fd5f9 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4580cd2 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaecf0d3c libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xafd0bf20 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb5d90139 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb77e80e4 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcab8dfd1 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0a5964c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd1edc5e9 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd255444c fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3a03483 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd4bbd710 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb98b093 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe061c877 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe28a2538 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe46d822b fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeec7111b fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2c8433e fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x320c248a sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3c23d56d sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc037955d sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xcde43787 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 0x68a015cc mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0b531c9a osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c2ac08f osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x102e6be6 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x294d6afb osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2ab5dbdb osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2d684e2d osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2f290219 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x33a8b7ec osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3855d596 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4352486c osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x45b5033c osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x48c6647e osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5ebea2df osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x628efe08 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x75072df8 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x779d3fa4 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7c9ab81f osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x83823b23 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x843d3843 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8961448a osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8b4566fd osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9d775a7d osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa9a93127 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaee763f3 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb0c8557a osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb4f8f4f1 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xba9ea7ea osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbd55deca osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc3649c7e osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc9efc03a osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcec227c3 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd4c9ae2a osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdb25ced1 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe74a2aa0 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf38d67bd osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf706ff6c osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/osd 0x094a5ba3 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x2d0a3e55 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x61a3b3c9 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xa68696a1 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xd5f1f402 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xdf985981 osduld_device_same +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0348599f qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x22904ae8 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2e8401ee qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6822350f qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x75be9a30 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8bda82a2 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa00755c9 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa10283da qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc6320a1d qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc6e62bc5 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd53598b0 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xead49331 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/raid_class 0x5c28233b raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x69e733fa raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xb24c401d raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x044b03cc fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x214a2962 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3bd834ec fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3d85929b fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4647841f scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x497015ef fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6191d8e9 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x74cb8e60 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8497f781 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8dd7ee14 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaa4052a3 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb1cbcced fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd23cb22b fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0f1bb2d8 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x163c3e4a sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1cedd586 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1fce746b sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x202dbd28 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x20d576c2 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3f524fec sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4444ba6a sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4fb3b241 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6616307e sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6820041c sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fd588c9 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8aa2ed55 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x93d01493 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9ef758b0 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa3788c76 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa87ebc5f sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xacb232ef sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaf02f77a sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb5d7f713 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbea1a873 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc0df15af sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc4550a6c sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc833c03c sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd3d09419 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe13c954d scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe779709e scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfd926aae sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0073c9d4 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x555bf626 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x74eedbd6 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x975eb541 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd3013b0d spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x507d3cc9 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7b855db1 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb75814f4 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe0c3464b srp_rport_put +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x26ffaa27 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2a3d726d ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x47b882a8 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x4b358249 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x60dc98dc ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6d918a0e ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x99ea0ec6 ufshcd_shutdown +EXPORT_SYMBOL drivers/soc/qcom/smd 0x6449d144 qcom_smd_driver_register +EXPORT_SYMBOL drivers/soc/qcom/smd 0xeda44e54 qcom_smd_send +EXPORT_SYMBOL drivers/soc/qcom/smd 0xf933b04f qcom_smd_driver_unregister +EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x2f5501c0 qcom_rpm_smd_write +EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space +EXPORT_SYMBOL drivers/soc/qcom/smem 0x63ef36e3 qcom_smem_alloc +EXPORT_SYMBOL drivers/soc/qcom/smem 0x932eb0e3 qcom_smem_get +EXPORT_SYMBOL drivers/ssb/ssb 0x0410a26b ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x0be7d9e4 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x136366b6 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x13d30fd3 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x159ef4f5 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x261bc15c ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x27134c39 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x3e12a23b ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x57a82281 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x680846b6 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x6970863e ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x6a71ccd3 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x71c588e2 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x7da02a36 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x8e6183fb ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x95329f86 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xabf5650a __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xb2d300ff ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xbdb49f3b 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 0xf9d9a958 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0cdd84eb fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0dd8ebfc fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1f060bd9 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x252fc8e2 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2642cbb1 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x26eadc3b fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x35251b12 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x43b7e058 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x45a5cdc3 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x51fded7b fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x87b7e18b fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x908dc490 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x98f5cfdb fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaf549a3a fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb585df87 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb6997e3e fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc4b58947 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd5450da8 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd7dd71c0 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe5760c2a fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe5d4ea99 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe7ace943 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf4d0e961 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf5d73a5e fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x18c3d180 fwtty_port_get +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xffc7ff9b fwtty_port_put +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xc1099a17 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x57758f93 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x61f9d45b hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xce50496d hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xf83f1c7e hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x800cca02 ade7854_remove +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x83ad6d9b ade7854_probe +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x8002d4b9 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x26f83205 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x57f8c8c6 nvec_write_sync +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xbe3c84fd nvec_write_async +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x00789408 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x02fa6708 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06511fb3 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x073a74b5 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0a3c029c Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0b1eda73 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0b587c1d alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c721a83 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x120706b1 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b9e6d92 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1d96a21a rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1fb2646e rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d923939 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a07529c rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x410a7b7f rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47ddd487 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4960252f rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56d6c6f5 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5c2e76ad rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5d08465c rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x60079bd2 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x64f57cc9 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x76f3ef95 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b2add40 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e391aa2 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8dec8395 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f3ae42c rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9410039c rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9714f95f rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9f41adf5 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa0fe45c0 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa91fde12 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xab972993 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaf4dc607 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb3ca4cc9 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb807c256 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbebdf70b rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xccaacfe4 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcdbe0da2 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb0ef0de notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdc9f7b78 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdeff1ffe dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe006df7d rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe1456329 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe9b22c09 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef89f5dc rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xefd74dd9 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf10c5085 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf1f4db85 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf2cab5cd rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0085e9f3 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06b48b0c ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e43f9c6 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1020b5e6 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x121ffaf0 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1341bceb ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1371d454 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x14202ee0 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x14b05542 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x25460b1e ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2ba0b46a ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x34563e65 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x370fa929 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x373366f1 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38d34db3 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x412a20c1 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x48d678cf SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4ac4ca52 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x58506fbe ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x58c21397 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x592987c0 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x59f1d810 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ac9b852 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5be956d6 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5d292401 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5dc2550e ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e6fbbae ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x602b2b5f Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x697175a6 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74bec533 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7b7fe877 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x83549b4e ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x89144c72 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8fb43db1 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9061c8b5 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x949a63c7 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a059b6f ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f6125a4 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0537662 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa1d17520 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6a621e9 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8c932d7 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbde1239e ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbed745e1 ieee80211_wx_set_auth_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 0xd73584b4 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe17333d9 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1fbba24 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe4dc76a7 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7babd48 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf224542c notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf7e86985 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf821c981 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd8d7686 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x14b64daf iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24fd1104 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x294a8fb9 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x29760a53 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x29b4a8a1 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3677b150 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42b54d75 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x482d90f3 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x500e5982 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52c0e22a iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x74b1c0f6 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e90c9cb iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x85a1318d iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ab407e2 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x951cebf5 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x96aa4b04 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c5a80c9 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa472e657 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xace7f4e1 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb1802e2b iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb3f1b9c3 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb5241100 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbf3d5bba iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe8f64c11 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xee0ee076 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf190a472 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf9e7422c iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfe2dd87d iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0359541d core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x0615fb69 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x06f29372 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x07925022 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x11ac5046 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x1869fa6e sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x20f28190 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x2497197d transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x26ea91cd target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x2bcfd565 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c2e86bb target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e17c64d passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x352e889a core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d3ba47e target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4207254c target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x464891ca core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x4da0105a core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x570068bd transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x59a1aa0c transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5a681a1e target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5d05eb2f target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x6270d0a3 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x64c9067e target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x6519c489 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x6907e126 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6ddd52e7 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e4625ad target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ca82ba5 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e7de29a transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f259c01 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fc2fcb6 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x82db8bba transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x83810fb3 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x87398916 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x875b3417 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x88d259f2 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x89934140 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d72294c target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x91717b8d target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x91d88dfb core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a9054bb target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x9be83775 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d44cc6e spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xa378f6ca target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0xa412fc3a transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa468fdef target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4f05b5a target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xa7141db9 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xa72acd4c core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xaabbfe1b target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xabb06e0f target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0bbd170 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb35c992b target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xbbfc534f transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xc49089a4 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xc682a1f6 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xc886128c transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xcae7d482 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4a95ce1 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xdbf8ed0c target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xdc8b331d core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xddbadbeb transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe9bb6be2 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf4445767 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf46504f2 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xf5fce8ee transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf8891a32 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xfbc1adae core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd72bb54 target_submit_cmd +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x36a5e65f usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xd6a65929 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xb4f3020f sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x00b88a87 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0d7c0696 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x15ec9097 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1aa9a964 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2dc0d950 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x398f1f00 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3c3fe5c9 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4b1cd5b8 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x52b619fc usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9c979c54 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa98adb95 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfc6c4c83 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xb6adf6b3 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xf84b5dd6 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 0x058b4628 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x071b36e3 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xb227a725 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xb4b117c7 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 0x2fe15af2 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5e7536d0 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 0xa2167f56 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa3e82bc9 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa61edd8e svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcf158f03 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 0xfdd9a799 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x7e7cb290 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x777eee37 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xa3849693 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 0x70ab19d7 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 0x8d1ad8ff mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x059aca17 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x84840de5 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xb75e6543 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa9bfaba9 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb4e6c21d DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc79859c8 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf36e8c82 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xbe67e8ed matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xfdf249be matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x1810d593 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x1eb19c62 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb1cb2715 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbc7fcf3b matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xbaaaa4f1 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xff5975d3 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x371dc233 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x64600f55 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9ba25521 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9dc942cf matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb4d03db8 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x8ac17561 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 0x2346dc46 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xac649c15 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xc8150a36 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xdf1dc8fd w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x17be52bb w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa4fbfdc0 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xa73654d2 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xee0a15c7 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x82549462 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xa9c36fd5 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xe174ef0c w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xf58c1395 w1_unregister_family +EXPORT_SYMBOL fs/configfs/configfs 0x05ff8d88 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x1cadb62e configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x1e7b9a8a config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x2a702015 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x30cc25d5 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x34bea5d1 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x428804c1 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x4fdf250d config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x68e68da0 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x693134d1 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x74958d33 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xd2a7f61a config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0xe4132d8f config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xf5cdb856 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0xfede5146 configfs_unregister_default_group +EXPORT_SYMBOL fs/exofs/libore 0x15eae83c ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x3dd869c5 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x3eaaa795 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x4be8a4b9 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x6fcf24cb ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x902e5d68 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xae3be737 ore_write +EXPORT_SYMBOL fs/exofs/libore 0xdefe0797 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xf2d2a978 ore_read +EXPORT_SYMBOL fs/exofs/libore 0xfc33d516 extract_attr_from_ios +EXPORT_SYMBOL fs/fscache/fscache 0x00862b1c __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x0b504733 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x118da16c __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1f26fd75 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x2388aa63 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x25631afd fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x28c7c9e0 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x501ab530 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x55f34359 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x580fa5dc __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x5f8178dd fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x6139eb9a fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x6579ac99 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6e40200a __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x6f8fa6bb fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7b26eefe fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x7f7b96b3 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x7fa3d4bd __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x80078f4c __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x8e11ec6c fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x96768e17 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xab968c75 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xae67ecad __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb1a2f7d1 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xb2b9f613 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xb5939be4 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xb6f9830b fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xb847f8c5 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xbea82891 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xbf73cabc fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xc3d485c9 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xc8844385 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xcb17b7e2 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xd44e81fa __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd602de98 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xdb89cb6b __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xe8b43f70 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xebc07334 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xf355d723 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf9a5210a fscache_io_error +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x1b708e28 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x305ab4c1 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x3dbdc8c5 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc1ab07b1 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xcbc7ef53 qtree_write_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x0687bc57 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create +EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put +EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed +EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set +EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get +EXPORT_SYMBOL lib/lru_cache 0xe197daa9 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 0x553a0349 lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0x5d3cb62b lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc207781f lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x0f7cce55 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xb13d2d1b register_8022_client +EXPORT_SYMBOL net/802/p8023 0x5e163f53 make_8023_client +EXPORT_SYMBOL net/802/p8023 0xcc9fbe7d destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0xd8861d1f register_snap_client +EXPORT_SYMBOL net/802/psnap 0xede14d71 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x1132946e v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x11e45ddd p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x23b58c8a p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x24e1d0e4 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x2833e1a7 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x2abd8ead p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x2b4d97b2 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x2b7d20a6 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x2e38eec5 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3b6bd7f5 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x3d22dbec p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3df51392 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3e64babb p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x45946329 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x4fdfd6dc p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5a582277 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x5ab70728 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x668f9d70 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x6f4a209c p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x75b10578 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x79acf15d p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7c9fea03 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x80171629 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x808f84eb p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x84a81887 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x8a644d9d p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x9244f5c2 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9ce58e4f p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0xa3b31b02 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xac0a2e2f p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xbb972802 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbcfb0c63 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xc2ace164 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc9c6ac51 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xca291f1b p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd605f6ef p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xdbcf730e p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xdc71f6bb 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 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xf8b51e45 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xf95ad8a8 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xfd01194b p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x0d3f27b6 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x28967d01 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x3f1aecec aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x62a03b0e atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x13864723 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x1b0c9e2a atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x1fb34ea0 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x2a00fc97 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x2e8938e5 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x2f8a8b38 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x4495d38a vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x4a81a432 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x504df6cc atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x60987c54 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x979ccd8c 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 0xaa46a40c atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xb971f698 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xf1774b53 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x4c6dc62e ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x5ff2a11e ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x9dd740eb ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xbc671379 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc353256c ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xd2adc457 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xda84f374 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xf7ee95bc ax25_linkfail_release +EXPORT_SYMBOL net/bluetooth/bluetooth 0x085bfc99 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d4072fe __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1026ae72 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x13b36a94 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x217f9578 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x221e6395 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x30b9fb42 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4a5c09be bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x599546ec bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5c939599 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x61840317 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x69fb8d86 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7890b684 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7c3feca9 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8370a650 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8cb8934c bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8d341a58 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8f17c7ff 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 0x943ec72c hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x95067ae5 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x97fc15e7 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa38bc32e hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa9abb65c hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb334cd04 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbdd37db1 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc347a409 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcd635a13 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd05dee36 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd270e180 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xda7e2426 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdbaa755a bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xec8a0dd5 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf0848ef6 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf174304a hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf550141d l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf60afbe1 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf6754f43 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf686c65e hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf82e4ab2 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf8d4e96f hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfac44b95 hci_get_route +EXPORT_SYMBOL net/bridge/bridge 0x3091494c br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x04269884 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x24824a23 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xfaaddca7 ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x0dfa1f05 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x1bc0372e 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 0x4aff353c caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x84bc3554 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x926031bb 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 0x479c9454 can_rx_register +EXPORT_SYMBOL net/can/can 0x480e171b can_rx_unregister +EXPORT_SYMBOL net/can/can 0x5e69fca0 can_send +EXPORT_SYMBOL net/can/can 0xa31d7b11 can_ioctl +EXPORT_SYMBOL net/can/can 0xb6fb85db can_proto_register +EXPORT_SYMBOL net/can/can 0xf9b1acf3 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x0828fe4e ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x08702cfa ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0dcec677 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x0ee79359 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x1701877a ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x1c184262 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x1de3eb7f ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x2496212d ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x266a1ce8 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x2737b4ef ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x2e5d222f ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x30eb2c4b ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x31d0f910 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x32098123 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x3489978f ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x368dd802 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3ad57b9d ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x3bb3108e ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x3f48bd9f osd_req_op_extent_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 0x415ee18f ceph_auth_is_authenticated +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 0x45436725 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x473648ec ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x4b14efd0 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x50aeb7fc ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x53d8dd6f ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x56c6f734 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x59f4c3aa ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x6263101d ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x650c44f4 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x65423f79 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x66d8cd8a ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x72e7b343 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x73a51aa3 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x74d484ce ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x77d18f40 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x79d44292 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x7db08d35 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x82f5429c ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x83b66942 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x86a6257a ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x87179e8a osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x8b88b940 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x91e4de9c ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x94c7d433 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x9731cd92 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9a4febc0 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x9e085094 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa07f2439 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xa126424f ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0xa19c58fa __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa3c25729 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xa9db8cca ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xaa9c789d osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xab0e55fc ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xab393205 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xadebe641 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xae4cd1e1 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb0c10088 ceph_osdc_sync +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 0xbd822ad2 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xbf39f927 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xbfc3dabf ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xc0d7acab ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xc1aef01d ceph_destroy_client +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 0xd0d6220f ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd0dd3db5 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd40743b8 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xd4f96ea2 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd75bc422 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xd80c0ff8 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xd87afbeb ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xdb0b401d osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xeb121ee2 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xeb504395 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xef1ac50e osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xf0a29f7a osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xf0c033da osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xf42d0dd3 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xf56c1958 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xf82681c9 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xfa94ef98 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xff471588 ceph_auth_create_authorizer +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x1074f69a dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xc0e1d6dc dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3266b35c wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x378ba9b5 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x47b2a709 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xbc23811f wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe65a7b2b wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xeca8c776 wpan_phy_free +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x0e1d867d fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x72f9cca9 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x245c701f ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4d099f8d ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5050192b ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5406559f ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xae68d4e6 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb35501bc ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x26385be5 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x86bd9bf5 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xdf3cae73 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8e9c18b2 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xea31c1ec ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xecfcda82 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x86710499 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xab64e74e xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x9e305161 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x071ca64f ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x92f577e8 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb504b657 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xffb00474 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x16eb9759 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3106a9fc ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xddf4266e ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x8c58adac xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x8d08057c xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xd6f13544 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xef4633a4 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2326b8d5 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x283cbfee ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x47566815 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5168a482 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x78d58adb ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa32bfa73 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb3f21687 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd5d127ec ircomm_flow_request +EXPORT_SYMBOL net/irda/irda 0x0183f4bc 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 0x1520287b iriap_open +EXPORT_SYMBOL net/irda/irda 0x17a491c5 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0x1b4d2b75 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x1ff08d10 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x2784d7df irlmp_connect_response +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 0x37ef87d7 irlmp_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 0x46c92842 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x4bca45bd irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x538d374e irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x6492e28c hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x66e23a4b irttp_flow_request +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 0x791cdfa8 irttp_data_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 0x80e8176f irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x834a5f39 irlap_open +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 0x910258b7 irttp_dup +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x9357e221 iriap_close +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x9ffda243 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0xaaffb42c async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xb3c13d7f irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0xb3e77fd4 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0xb7f0aa34 irda_notify_init +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 0xcf067ed4 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0xd43ce283 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0xd692dd37 irlap_close +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe6eb09b4 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xe7afb45a irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xe8305cb5 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xee06807c irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0xf199cba4 irias_insert_object +EXPORT_SYMBOL net/l2tp/l2tp_core 0xf211b16c l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0xd01d3fb9 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x0051532b lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x288c08b9 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x43bb8485 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x468dd59b lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x91459a5a lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x93360399 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xb396a3ea lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xd89567cb lapb_getparms +EXPORT_SYMBOL net/llc/llc 0x21946e82 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 0x65f91227 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x765192ae llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x92dc6a5d llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xc59b4456 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xcb52e4ff llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xe028767f llc_sap_open +EXPORT_SYMBOL net/mac80211/mac80211 0x01534378 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x02a3824c ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x03eab588 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x051761dd ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x0683e852 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x07f8ed75 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x08c91eb6 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x08f78495 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x09226071 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x1752e624 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x1fa4d3c1 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x1faf7b5e ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x224116ef ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x2291e8c6 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x26e97545 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x296e8e3d ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x29b1e186 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x2a6d3272 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x2d0214d0 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x2e2fad90 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x31334572 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x326ab51f ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x3521d107 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x353fe56b ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x38ab8e42 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3a987297 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x42178d8a ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x45cd0f73 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x464bfa34 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x49a9b5f9 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x4b86e0e2 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4bb3f151 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x56376221 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5aa19201 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5f2a6723 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x639bbf38 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x69f54ceb __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x6a977f18 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x6babf865 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x6bd72844 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x6f62420d ieee80211_enable_rssi_reports +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 0x7bf76064 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7d04ee6c ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x7d1e0618 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x89d8ea41 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x8b091add ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x8b80572c ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x8ddc7795 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x934fc7fb rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x9629a995 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x975b4396 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x9b7b0533 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x9c674faf ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x9c6de050 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xa259c6f0 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xa7ae1a14 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xa8217747 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xaa14adfc ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xada4a051 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xae05d1ce ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xb7d7d0f2 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb811c094 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xb87409b4 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xbae4962e ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xbd53570e ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xbee9437e ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xce493107 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xdc573017 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0xdd475bb1 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xe69b6172 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xe7beb8f5 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe8e93647 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xee209a5d ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xf0b94342 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xf25a17a2 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xf34cf982 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xf7769cae ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xfed42959 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac802154/mac802154 0x0ed24894 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x53105e67 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x77bf1ebb ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xc51bd83b ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xc5d83771 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xdfcdfef3 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xf4628a83 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xf66cfd4f ieee802154_wake_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x38420462 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x59d7ab79 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5b2976cb ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6ab6e42b ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6ff3ca2a unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x78255940 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x973bcafb ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa9fbde64 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbcf4cf57 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc07b5b6e unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcd9f0d10 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcf8da064 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd2cddcef ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfc34aa49 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x01ea7002 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x5a3ca874 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6d76e583 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x014095d0 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x3a3ab862 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x46befb71 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x55765c0f nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x91461f86 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xcb261989 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/x_tables 0x0114a6d0 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x02ae85b9 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x4f8c17ee xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x56ddd8ef xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x57b248e0 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x5a9d2214 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x638ed0cf xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x837c661d xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xa521e1bb xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xf5510e81 xt_register_targets +EXPORT_SYMBOL net/nfc/hci/hci 0x042a6803 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x0bada49d nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x0c49bd8d nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x17d94a15 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x187f2ef0 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x28ebce60 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x34a4b694 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x4934dbbf nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x54053155 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x7a08c78b nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x88cc4216 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x9a7d690b nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xab6527ac nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xbe769482 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xcc8970ad nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xd03a5f4e nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xe45ed2a0 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xf046e4e3 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xf9230863 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xfa7ba5d0 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xfc15652a nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x04c691f4 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x075c3cc8 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x0c2b5a32 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x11e65e3f nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x2abb9e2d nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x36fc4e94 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x407a6b1a nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x51c861eb nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x65ceaf9c nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x6e31c502 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x6f7529c3 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x7102d3c5 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x73410e6e nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x78268ef6 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x86fd7305 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x8b26b4c9 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x8f2ba338 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x9d7e7fbc nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x9e305a51 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x9e520def nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xababda53 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xb8a0f2b6 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc0972575 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xca07de3f nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xcac440cd nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xd07a6ce5 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xf0b7b9a4 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xfbe9e834 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nfc 0x0194f8e3 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x023dd00e nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x054f704c nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x20842118 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x2687435e nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x2ac74696 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x311e8898 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x32d8278d nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x3cf2df54 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x56ed8f03 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x5a18f661 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x5d88355a nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x7b374a4e nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x96e70529 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x9fce8340 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xcaf3da91 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xcf3abf4e nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xd87affec nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xdfb3a89e nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xe8290e03 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xe8e3b890 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xf562a859 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xf6b13911 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xfafbf7b7 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc_digital 0x09750cca nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x33a05a56 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x4f2ec3e4 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xf158d7f6 nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x2d823b53 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x33642698 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x39c1b2eb phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x3b61ba26 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x453b58fe pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x45586173 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xb7aec6d7 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xdfbd2fc6 phonet_proto_register +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x080a218d rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x115c6a25 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x48ac68d1 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5bda38f4 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8af2db19 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa1ea4c4b rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb6faf173 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb87cef1f rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc13cf9f3 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc1d00bcc rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc407ea1d rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc44d6e0d rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc5dca908 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe4fd34b4 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf2b99829 rxrpc_kernel_send_data +EXPORT_SYMBOL net/sctp/sctp 0x4f0723b9 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x0de346ee gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x72632891 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7892bf49 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x1ed24a77 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xb015ca26 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xf3072a4e svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0xf8aeffad wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xfa57299e wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x08ad4532 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x08d3ebc0 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x08ef3187 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x094622f5 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x1163ec79 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x1241e779 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1f90f9d6 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x20d67772 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x2768c2dd cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x28a897de cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x2a6abc4d cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x2b22ffbe cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x2fde9945 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x3059331d ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x31e5820c cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x34d94e44 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x37372110 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3a0513a9 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x3c897458 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x40604703 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x451ba434 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x46c3a9bc cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4fa843b0 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x544e488d cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x54695eb5 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x56c5a07f cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x574cbeae cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x57f27eec ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x584b11fa cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x5af01cbb regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x5dcc6904 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x660e4125 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x665801a7 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x66dc9f78 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x681c954d wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x70c0ed32 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7431ac84 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x76b1457c cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7f95286e cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x80c7d02f cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x83b037c6 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x83f971ad cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x85df78dc cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8e3d7f54 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x8ff366b6 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x925877ae __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9477d067 wiphy_new_nm +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 0x9a6e9fbe cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x9d22aa33 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xa0bd3b06 cfg80211_ch_switch_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 0xa386accf regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xab5c486c ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xacc26c68 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xaf3b8980 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xafe89c66 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xb5c2511b cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xbf0abfdd cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xc03c7b69 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xc2d29ec6 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xc377bfb4 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xc5ced7d1 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc6eb8fad cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xcdad0964 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xd0383fbf cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xd345ef8d cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xd35829d3 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xd686d013 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xd806364a cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xda45a561 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xda5e9d87 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xdaad2403 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xdb347db1 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xe3c04aef cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xe7b8843b cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xe90d9fd2 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xe91a0591 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xecd2bd92 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xee594c16 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xee6a8c71 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf25edbc8 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xfb1d5b58 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xfc531c72 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x12c9cb57 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x4166c315 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x71bc6a55 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x89c631c0 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x998db08d lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xe89d787d lib80211_register_crypto_ops +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x3579f178 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x004ea891 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x0fdb106d 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 0x984997f7 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xa59dbb7e 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-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 0xf901d653 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 0x3ea50486 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd-hwdep 0x235b8828 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x10e13eeb __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2317092e snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4a55dafa snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x54c01099 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x54d07fba snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x577203b6 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5b065868 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x68107bd7 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6a0f80bb snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6baccdae snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x71becae0 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x768fe143 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x777332bd snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x784a8cbc snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb8b411dc snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcfb0c6b0 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdaf0331a snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf8af9a4e snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf92a6733 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 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xefff6169 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x25809195 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2d9dc6e1 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4a00797e snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4a46c653 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6a96a8f8 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9170e03d snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x93d1adbe snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbcf0d32a snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc5a55d3c snd_opl3_reset +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1b5c4202 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1b64f359 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 0x22eeb1db snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6954dc90 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8d332775 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa1105271 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb2405bf7 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xde5e37c5 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe8a2f2b1 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x048a558e snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x05e3b076 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0f96c44f cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x102bc852 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1258dd9e fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x22ebb7f4 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x26b69353 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2797cb79 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3996ac88 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3b933a80 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x43ea8f1e amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5035b93f avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5b52e5a0 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5d922be7 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7a7ed99a cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8e275c67 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x97ccd703 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98c9ec78 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9cdfe65c fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa1a134a8 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa88085e3 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaa07a15b amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xac538c41 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xad158639 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc78ebe9b cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcd088df3 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xce422266 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd2573839 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdbb7a524 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe05447eb amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe4fe7c3f fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xecf0630b snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x013a8d10 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x0560e214 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0c4a8d09 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3129de1f snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4e9e114b snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4f3d97af snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8d232c06 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x917fa126 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x980d0689 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xaff2ae46 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2db3f3c8 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x54c7e734 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x9b01839f snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa55fb84d snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x092e9961 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xadb8df84 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-i2c 0x01c5738d snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x2fcc3044 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x4148a297 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xadbc41d4 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc063829d snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd969821b snd_i2c_device_free +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x12d12cf3 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x27f2a1de snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3a254d7d snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x40618689 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x508232ea snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x65c187b0 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6da19d7b snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x858ffdf4 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa9485f96 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc55edc4a snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcb4a4737 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd43828a1 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd44d7b6f snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe084ba6d snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe51b0c11 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe71aa6c6 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf463a845 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x91ae4457 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x9275d3e8 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd6995892 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1434c1ff oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x165d0862 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x18ce2186 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x22b8f484 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2802033a oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x28589874 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x45eb7191 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4b0dd476 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6241cd60 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x877f040e oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x920ae0a2 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa4141a36 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb2f4db46 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb85bdd42 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb8b0bcc4 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb9506b5e oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbe8ab0bc oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xce007cfd oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xddb506aa oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xef71b8c9 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf5f5fa30 oxygen_write32_masked +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x626287d7 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xac95d7f5 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x74416310 fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x5ffbc134 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 0x001ee95a imx_ssi_fiq_base +EXPORT_SYMBOL vmlinux 0x001f5d3d blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x0028f5ac bdev_read_only +EXPORT_SYMBOL vmlinux 0x003ed69a __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x0045064f eth_header_parse +EXPORT_SYMBOL vmlinux 0x004732d1 security_path_chown +EXPORT_SYMBOL vmlinux 0x005b9627 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x008ddf94 dev_alert +EXPORT_SYMBOL vmlinux 0x00c172e2 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x00d6ba70 snd_timer_global_new +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00de9e40 snd_card_register +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x01033b9f blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x010f50d5 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 +EXPORT_SYMBOL vmlinux 0x0130123c of_device_alloc +EXPORT_SYMBOL vmlinux 0x01301506 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x01445a4d inc_nlink +EXPORT_SYMBOL vmlinux 0x0144d6e3 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x0181f1fd netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many +EXPORT_SYMBOL vmlinux 0x01919ea9 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x01980579 ether_setup +EXPORT_SYMBOL vmlinux 0x01985850 dst_alloc +EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode +EXPORT_SYMBOL vmlinux 0x01b7fd59 dispc_read_irqstatus +EXPORT_SYMBOL vmlinux 0x01bc546b tcp_disconnect +EXPORT_SYMBOL vmlinux 0x01d47789 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x01e7aca5 account_page_redirty +EXPORT_SYMBOL vmlinux 0x01e9022e mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x01ea132e dispc_runtime_put +EXPORT_SYMBOL vmlinux 0x01ef0cac jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x01f08f72 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x01f1e975 seq_open_private +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02179d2c __blk_end_request +EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv +EXPORT_SYMBOL vmlinux 0x0237a10d ip_route_me_harder +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 0x0281a9a7 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL vmlinux 0x028f03ab pcim_iounmap +EXPORT_SYMBOL vmlinux 0x029a2952 unlock_rename +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02c21339 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x02da4d51 iget5_locked +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 0x03335ba1 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +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 0x03725a43 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x03794809 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03816405 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL vmlinux 0x03828592 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x0391e4a6 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x03978a35 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x039a4214 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x03a43d4d mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all +EXPORT_SYMBOL vmlinux 0x03d2714c PDE_DATA +EXPORT_SYMBOL vmlinux 0x03dfb678 generic_setlease +EXPORT_SYMBOL vmlinux 0x03e7d948 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x04242654 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x042c60d0 dev_open +EXPORT_SYMBOL vmlinux 0x043128a8 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x04442e5f _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044c6510 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x04544538 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x04578fa7 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x0458b86c cdrom_open +EXPORT_SYMBOL vmlinux 0x045acedb pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x045e7c36 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x04621d7d pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x04651b0c inet_frags_init +EXPORT_SYMBOL vmlinux 0x0486557f d_instantiate +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x048a5fa2 simple_map_init +EXPORT_SYMBOL vmlinux 0x04975119 may_umount_tree +EXPORT_SYMBOL vmlinux 0x049deb58 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x04a75607 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x04ac682b swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04f5f3f1 mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0x04fa9df5 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x05004223 unload_nls +EXPORT_SYMBOL vmlinux 0x051a4aea xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x05226e89 processor +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052cf59f vfs_write +EXPORT_SYMBOL vmlinux 0x052d3833 skb_find_text +EXPORT_SYMBOL vmlinux 0x053123e5 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x0536b9aa param_get_byte +EXPORT_SYMBOL vmlinux 0x0538b9c0 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x05597482 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x055f77cb netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x056080bb snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL vmlinux 0x0569b9da do_map_probe +EXPORT_SYMBOL vmlinux 0x057289e2 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x057c99fc param_ops_byte +EXPORT_SYMBOL vmlinux 0x057dbe8c scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x05987be5 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x05cf1196 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x05ea1335 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x05fc2b40 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x0601dc2a dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0x061573c5 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x062e6714 dev_activate +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x065d26ee bio_integrity_free +EXPORT_SYMBOL vmlinux 0x06607f92 dss_feat_get_supported_outputs +EXPORT_SYMBOL vmlinux 0x06756577 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068c532f dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x06a4b220 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x06c34e45 dup_iter +EXPORT_SYMBOL vmlinux 0x06cf9aee mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x06e51a05 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x070c479e scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x07218b82 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x072a8f8d __set_fiq_regs +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x072fabd2 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x0744b1c3 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x075d5d02 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x078df343 netif_device_attach +EXPORT_SYMBOL vmlinux 0x07a07e98 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a7f2cb fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07ac0513 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07cf9099 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x07d79100 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL vmlinux 0x07dfb460 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x080b49d6 param_get_int +EXPORT_SYMBOL vmlinux 0x081f3afb complete_all +EXPORT_SYMBOL vmlinux 0x082a8e56 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083179c5 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x085d37c2 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x08bfbd01 irq_set_chip +EXPORT_SYMBOL vmlinux 0x08d8e419 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x08e03488 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x08e4767a vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08fd3757 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x091f8e84 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x093a6a28 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x093b6330 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x094adc2a scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x094c10d5 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x094ca77a of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x094edf06 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x09505d6b vme_register_driver +EXPORT_SYMBOL vmlinux 0x09561910 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x0967c460 security_path_unlink +EXPORT_SYMBOL vmlinux 0x096d3d9e dentry_open +EXPORT_SYMBOL vmlinux 0x097ec1ff _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x0982551c nla_put +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09960d54 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x09a93e53 vme_bus_num +EXPORT_SYMBOL vmlinux 0x09bab62c unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x09bfc995 serio_interrupt +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 0x09d67205 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x0a0786de udplite_table +EXPORT_SYMBOL vmlinux 0x0a14fa91 eth_header_cache +EXPORT_SYMBOL vmlinux 0x0a1768f9 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a463275 simple_open +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a58469a pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x0a5fec65 dquot_operations +EXPORT_SYMBOL vmlinux 0x0a6d57c4 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x0a9c9f19 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0acc2de6 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae88309 dss_mgr_connect +EXPORT_SYMBOL vmlinux 0x0ae92d49 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x0af455eb mmc_can_reset +EXPORT_SYMBOL vmlinux 0x0afc870e dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x0b048fc4 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b0dc291 padata_do_serial +EXPORT_SYMBOL vmlinux 0x0b19757c jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b2043d3 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x0b27cfe1 cdrom_release +EXPORT_SYMBOL vmlinux 0x0b2d425c of_node_put +EXPORT_SYMBOL vmlinux 0x0b402838 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b55cee5 padata_stop +EXPORT_SYMBOL vmlinux 0x0b57155e tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x0b5d5728 sock_no_bind +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b8dc9a9 param_get_uint +EXPORT_SYMBOL vmlinux 0x0baa8cf4 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bbec3aa tcp_shutdown +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bfc8844 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x0c064e20 audit_log_start +EXPORT_SYMBOL vmlinux 0x0c148316 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x0c160786 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x0c216767 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x0c39d949 arp_create +EXPORT_SYMBOL vmlinux 0x0c41e7a1 filemap_fault +EXPORT_SYMBOL vmlinux 0x0c434094 __sock_create +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c4d5e51 security_path_chmod +EXPORT_SYMBOL vmlinux 0x0c549551 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c593bad find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x0c5fcc36 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x0c75c3df dquot_destroy +EXPORT_SYMBOL vmlinux 0x0c82b01b swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x0c90b047 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x0ca01787 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0ca61ec0 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x0cabd005 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb6afc1 security_path_symlink +EXPORT_SYMBOL vmlinux 0x0cba8e61 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x0cce4941 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x0cfefe1e percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x0d149411 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x0d1a2ae7 snd_pcm_lib_ioctl +EXPORT_SYMBOL vmlinux 0x0d1de3ba qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x0d4d7a32 _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d620d29 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x0d71a8bd of_match_node +EXPORT_SYMBOL vmlinux 0x0d7206eb elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0db5c1a0 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x0db8a7d4 open_exec +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0df3ac30 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x0e3a88cd scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x0e57e4e6 snd_pcm_stop +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e778918 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x0e835b18 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x0e8777f2 genphy_read_status +EXPORT_SYMBOL vmlinux 0x0e9d0383 shdma_cleanup +EXPORT_SYMBOL vmlinux 0x0ea2a11f sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x0eaebd1d get_super +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0ebe3fdc ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ecd66dc rwsem_wake +EXPORT_SYMBOL vmlinux 0x0ed6a46b dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x0ee19a89 generic_update_time +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0eee58c7 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x0efc762c cpu_user +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f12a5c4 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x0f1c266e nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x0f2362a8 blk_rq_init +EXPORT_SYMBOL vmlinux 0x0f2530db max8925_set_bits +EXPORT_SYMBOL vmlinux 0x0f292caa elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x0f33e520 tty_port_close +EXPORT_SYMBOL vmlinux 0x0f4230e6 vfs_rename +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f51b162 nand_bch_correct_data +EXPORT_SYMBOL vmlinux 0x0f642cc1 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f789a75 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f7d7a8e tcp_parse_options +EXPORT_SYMBOL vmlinux 0x0f85e1a5 get_phy_device +EXPORT_SYMBOL vmlinux 0x0f94d596 __pagevec_release +EXPORT_SYMBOL vmlinux 0x0fa2a45e __memzero +EXPORT_SYMBOL vmlinux 0x0fa7b5da vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x0faa485a inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x0fab2f70 param_ops_charp +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0faf9c3a inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fba6218 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x0fbd1028 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x0fc4485f free_page_put_link +EXPORT_SYMBOL vmlinux 0x0fceba0d netpoll_print_options +EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ff551ef iov_iter_npages +EXPORT_SYMBOL vmlinux 0x0ff740a3 sock_no_listen +EXPORT_SYMBOL vmlinux 0x0ff9bfe7 param_set_copystring +EXPORT_SYMBOL vmlinux 0x0ffc7f98 key_link +EXPORT_SYMBOL vmlinux 0x100c0c41 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x1037ffc3 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x103bd1ab tty_mutex +EXPORT_SYMBOL vmlinux 0x1041a914 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x10479ea2 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x105fd37c sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x106eabac __genl_register_family +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 0x108c36c6 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x1098deeb ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x10a1ca3c __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x10aa86a2 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x10c6baa3 of_get_min_tck +EXPORT_SYMBOL vmlinux 0x10c7524e mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x10e4c925 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x10e94078 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10f32e9a dcache_dir_open +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1110374e neigh_seq_next +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x111e6e6f sock_create_lite +EXPORT_SYMBOL vmlinux 0x112748bd omap_vrfb_adjust_size +EXPORT_SYMBOL vmlinux 0x113c50d7 set_wb_congested +EXPORT_SYMBOL vmlinux 0x11460e73 devm_ioremap +EXPORT_SYMBOL vmlinux 0x115d8e4d inet_register_protosw +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11723b22 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x119800bb inet6_getname +EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11ae473c pci_reenable_device +EXPORT_SYMBOL vmlinux 0x11bfb302 lookup_bdev +EXPORT_SYMBOL vmlinux 0x11cdd93e blk_finish_request +EXPORT_SYMBOL vmlinux 0x11cf2515 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x11dca4d6 blk_peek_request +EXPORT_SYMBOL vmlinux 0x11dfce1d tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x11f028b2 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x12116d3f xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x1216e493 neigh_table_init +EXPORT_SYMBOL vmlinux 0x1218f3c2 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x122ca3e5 tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0x122e1bcc generic_fillattr +EXPORT_SYMBOL vmlinux 0x123120e2 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x12316c7a cont_write_begin +EXPORT_SYMBOL vmlinux 0x123bd64e blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x1258c649 unregister_key_type +EXPORT_SYMBOL vmlinux 0x125ab944 devm_free_irq +EXPORT_SYMBOL vmlinux 0x126d5e94 dump_page +EXPORT_SYMBOL vmlinux 0x1272eb6b kunmap_high +EXPORT_SYMBOL vmlinux 0x1285f892 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x128d1c1f ps2_drain +EXPORT_SYMBOL vmlinux 0x1293b0d9 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x129b1174 __get_page_tail +EXPORT_SYMBOL vmlinux 0x129c0c86 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12c036ef scm_detach_fds +EXPORT_SYMBOL vmlinux 0x12c3cb4e fb_set_cmap +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12f8bd2f devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x13052bf4 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x131b6493 register_console +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x13335268 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x1334f762 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x135a949b dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x13643239 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x13819f3b vfs_symlink +EXPORT_SYMBOL vmlinux 0x13865a49 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x13913552 omap_dss_get_device +EXPORT_SYMBOL vmlinux 0x13921e6c mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x13983719 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x13a6ca93 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x13cb4ff2 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d1146d vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x13d696f9 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x140144e4 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x1408642c ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x1408c38b fb_blank +EXPORT_SYMBOL vmlinux 0x1410f2ab blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x1417009d snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL vmlinux 0x1417f153 tty_throttle +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x14276b6c vga_client_register +EXPORT_SYMBOL vmlinux 0x144c126a blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x1470adf5 amba_driver_register +EXPORT_SYMBOL vmlinux 0x14788a1f netif_carrier_on +EXPORT_SYMBOL vmlinux 0x147c55f9 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x147e6143 omap_dss_find_device +EXPORT_SYMBOL vmlinux 0x149b3eee nf_hook_slow +EXPORT_SYMBOL vmlinux 0x14a18008 of_device_is_available +EXPORT_SYMBOL vmlinux 0x14a8293c inet_stream_connect +EXPORT_SYMBOL vmlinux 0x14a86b47 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x14b5677a abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x14bc6f7c tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x14bd2d3c ps2_begin_command +EXPORT_SYMBOL vmlinux 0x14be0a07 of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x14c32e4b ppp_dev_name +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d0fb3b inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x14e21577 vme_dma_request +EXPORT_SYMBOL vmlinux 0x14ef42f6 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x150d9a05 d_alloc_name +EXPORT_SYMBOL vmlinux 0x1527d84c ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x15288de4 serio_reconnect +EXPORT_SYMBOL vmlinux 0x154b6e86 omap_dss_find_output +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x155eeee7 __seq_open_private +EXPORT_SYMBOL vmlinux 0x1563bc26 block_write_begin +EXPORT_SYMBOL vmlinux 0x15848dec of_iomap +EXPORT_SYMBOL vmlinux 0x158cbd99 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x15955fca param_get_bool +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bcac3a devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x15d3d1b9 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x16260926 get_fs_type +EXPORT_SYMBOL vmlinux 0x162ccc0c lg_local_lock +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x1631ff59 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x165c1bcb dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete +EXPORT_SYMBOL vmlinux 0x168cf911 nla_reserve +EXPORT_SYMBOL vmlinux 0x169ccc78 follow_down +EXPORT_SYMBOL vmlinux 0x16a77878 put_io_context +EXPORT_SYMBOL vmlinux 0x16b7fe63 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e65118 phy_init_eee +EXPORT_SYMBOL vmlinux 0x16f4bd45 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x16f78a37 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x16f98209 security_path_mknod +EXPORT_SYMBOL vmlinux 0x170dcbd5 param_ops_bint +EXPORT_SYMBOL vmlinux 0x1717e058 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x1723bb84 omap_dss_find_output_by_port_node +EXPORT_SYMBOL vmlinux 0x17240b44 param_set_bool +EXPORT_SYMBOL vmlinux 0x17460af9 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x174afb1a __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x175654af i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x175b1916 request_firmware +EXPORT_SYMBOL vmlinux 0x1784f057 dispc_ovl_set_fifo_threshold +EXPORT_SYMBOL vmlinux 0x17875965 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x178cbebe abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17b32a30 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x17e98bb9 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x17ea4285 netdev_printk +EXPORT_SYMBOL vmlinux 0x17ed3ca6 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x182decaa netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x1832f95a nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x183af069 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184be196 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x1855b7f2 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189c5980 arm_copy_to_user +EXPORT_SYMBOL vmlinux 0x18a4a419 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x18bbd470 nobh_writepage +EXPORT_SYMBOL vmlinux 0x18bd76a4 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x18c2227f cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x18d02014 snd_pcm_release_substream +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x1903bea5 request_key +EXPORT_SYMBOL vmlinux 0x19114955 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x192947b3 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x193167c7 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits +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 0x19b0d092 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x19b0f424 fget_raw +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19ca07ce vm_event_states +EXPORT_SYMBOL vmlinux 0x19f5809b dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x1a05d990 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x1a20c540 omap_vrfb_supported +EXPORT_SYMBOL vmlinux 0x1a28d18a snd_component_add +EXPORT_SYMBOL vmlinux 0x1a45f627 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x1a550170 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a676d2a kmem_cache_size +EXPORT_SYMBOL vmlinux 0x1a6b1ed4 param_get_ullong +EXPORT_SYMBOL vmlinux 0x1a6d4754 seq_path +EXPORT_SYMBOL vmlinux 0x1a6fee2c pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x1a70b645 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x1a749b25 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x1a9f7959 fput +EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1ad2d45f down_write_trylock +EXPORT_SYMBOL vmlinux 0x1af21dd4 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x1af79eb9 snd_ctl_add +EXPORT_SYMBOL vmlinux 0x1afa701a vfs_unlink +EXPORT_SYMBOL vmlinux 0x1afae580 inet6_protos +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b161901 dma_supported +EXPORT_SYMBOL vmlinux 0x1b2d6d2c qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0x1b5b055e lease_get_mtime +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8354de mntput +EXPORT_SYMBOL vmlinux 0x1b92d53e vfs_setpos +EXPORT_SYMBOL vmlinux 0x1b962a53 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x1ba67f93 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x1bb0d5a1 elv_rb_del +EXPORT_SYMBOL vmlinux 0x1bb1a165 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bb3d885 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x1bbdb7d1 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x1bcf6c60 inet_offloads +EXPORT_SYMBOL vmlinux 0x1be1a74f blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x1bec58ec genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x1c10b283 read_dev_sector +EXPORT_SYMBOL vmlinux 0x1c2cd8ca dev_alloc_name +EXPORT_SYMBOL vmlinux 0x1c2f0d84 pci_request_region +EXPORT_SYMBOL vmlinux 0x1c441231 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x1c570f1a dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x1c586ba1 tegra_dfll_register +EXPORT_SYMBOL vmlinux 0x1c5d9045 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c62d459 setattr_copy +EXPORT_SYMBOL vmlinux 0x1c676801 netdev_crit +EXPORT_SYMBOL vmlinux 0x1c85ce96 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x1c87080f request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x1cef45c0 noop_fsync +EXPORT_SYMBOL vmlinux 0x1cf18499 devm_release_resource +EXPORT_SYMBOL vmlinux 0x1cfb04fa finish_wait +EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL vmlinux 0x1d1758fd __nla_put +EXPORT_SYMBOL vmlinux 0x1d46e6d8 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x1d52295e __devm_release_region +EXPORT_SYMBOL vmlinux 0x1d702fdb single_open_size +EXPORT_SYMBOL vmlinux 0x1d817d25 mmc_free_host +EXPORT_SYMBOL vmlinux 0x1d884163 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x1d89dba9 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x1da0573b __register_chrdev +EXPORT_SYMBOL vmlinux 0x1db7dc40 pgprot_kernel +EXPORT_SYMBOL vmlinux 0x1dbc7092 page_put_link +EXPORT_SYMBOL vmlinux 0x1dbdb0b2 dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dc782e0 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x1dcfb9b4 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e1136a5 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x1e25a3e6 eth_header +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e3023d5 security_path_rename +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e6f3426 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x1e7f3de3 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x1e8e4671 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x1e90bba6 param_get_long +EXPORT_SYMBOL vmlinux 0x1e924cee mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eaa702c pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x1eaed692 mmc_get_card +EXPORT_SYMBOL vmlinux 0x1edf2380 napi_disable +EXPORT_SYMBOL vmlinux 0x1ee9f039 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x1eeb848e __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x1f009ffb jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x1f06bd14 phy_print_status +EXPORT_SYMBOL vmlinux 0x1f0e07a6 up_write +EXPORT_SYMBOL vmlinux 0x1f1b62ee nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x1f2d17fc snd_jack_report +EXPORT_SYMBOL vmlinux 0x1f374bb1 dev_notice +EXPORT_SYMBOL vmlinux 0x1f3a40f8 down_read_trylock +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f8117a7 generic_show_options +EXPORT_SYMBOL vmlinux 0x1f89e7b4 finish_open +EXPORT_SYMBOL vmlinux 0x1f935c06 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x1f952689 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x1f97acfb pid_task +EXPORT_SYMBOL vmlinux 0x1f9c2828 proc_set_size +EXPORT_SYMBOL vmlinux 0x1fab5905 wait_for_completion +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fcae86e __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x1fcf1018 dev_uc_add +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd78a35 seq_release_private +EXPORT_SYMBOL vmlinux 0x1fdd37af ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x1fe43dba snd_cards +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fee07f8 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x1ff24513 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x1ffe70e1 empty_aops +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x201c6c67 sk_wait_data +EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x2026d20c posix_acl_valid +EXPORT_SYMBOL vmlinux 0x202dcf67 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x20390372 netdev_change_features +EXPORT_SYMBOL vmlinux 0x20421305 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2054cb70 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x205dbbc1 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x205ec8de omap_dispc_register_isr +EXPORT_SYMBOL vmlinux 0x206ac812 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x207068e6 omapdss_default_get_resolution +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x207c4f58 dev_deactivate +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b78987 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20d89d06 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x20e38d93 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20ef504f vme_irq_free +EXPORT_SYMBOL vmlinux 0x21110dbf mmioset +EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x211ebab6 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x211eecf0 filemap_flush +EXPORT_SYMBOL vmlinux 0x2157965d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x215faa1b md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x216063e9 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy +EXPORT_SYMBOL vmlinux 0x218a85cf qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x21a1695b kernel_connect +EXPORT_SYMBOL vmlinux 0x21a64040 dma_find_channel +EXPORT_SYMBOL vmlinux 0x21bb35eb inode_init_always +EXPORT_SYMBOL vmlinux 0x21c34d3b pci_set_power_state +EXPORT_SYMBOL vmlinux 0x21c4bbe1 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e85732 get_cached_acl +EXPORT_SYMBOL vmlinux 0x21f650c8 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x21f7eb8f claim_fiq +EXPORT_SYMBOL vmlinux 0x220ae669 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x221aa4f1 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222fa684 lg_global_lock +EXPORT_SYMBOL vmlinux 0x2232a8a5 mempool_free +EXPORT_SYMBOL vmlinux 0x223cc898 omap_vrfb_max_height +EXPORT_SYMBOL vmlinux 0x223db500 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x223e3930 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x224b942c clk_get +EXPORT_SYMBOL vmlinux 0x224ce0d6 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x2253972d xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x225934aa scsi_host_get +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x226dead9 done_path_create +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2277d558 mx53_revision +EXPORT_SYMBOL vmlinux 0x22791f22 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x227d6dcd pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x229086ec xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22cc9d8c skb_queue_head +EXPORT_SYMBOL vmlinux 0x22ccb00b omapdss_output_set_device +EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x22e52273 skb_trim +EXPORT_SYMBOL vmlinux 0x22e87d46 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x22e8bdd3 __frontswap_load +EXPORT_SYMBOL vmlinux 0x22f2b585 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x2313e382 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x231a4ee6 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x231ad079 snd_jack_set_parent +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x23348756 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x23418051 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x23752015 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x23902a69 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x23966647 dst_init +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23aa49d3 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x23b339fb init_net +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23ca87de amba_device_register +EXPORT_SYMBOL vmlinux 0x23f91138 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240cab23 filp_close +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24351baf clocksource_unregister +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2451e39d netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x24985732 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x24a74017 padata_alloc +EXPORT_SYMBOL vmlinux 0x24a7f607 dev_change_flags +EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL vmlinux 0x24b5e46c ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x24c72b2c mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x250cab23 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x251e4232 snd_jack_add_new_kctl +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2527a087 vme_slave_set +EXPORT_SYMBOL vmlinux 0x253277dd mpage_writepage +EXPORT_SYMBOL vmlinux 0x2545f785 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x255acb5f tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x25684c18 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x259c475a truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x25a68e67 snd_ctl_remove_id +EXPORT_SYMBOL vmlinux 0x25d7cfe3 shdma_reset +EXPORT_SYMBOL vmlinux 0x25e25a89 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25efaf5a skb_unlink +EXPORT_SYMBOL vmlinux 0x262eb388 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x2651115c pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x26538111 dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0x2664acc9 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x26750201 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x267c2338 dquot_release +EXPORT_SYMBOL vmlinux 0x268bf06b napi_complete_done +EXPORT_SYMBOL vmlinux 0x26933c9a ac97_bus_type +EXPORT_SYMBOL vmlinux 0x26989472 block_write_full_page +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26bdeba1 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x26c2128c lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x26ccc27d ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26f317fd md_register_thread +EXPORT_SYMBOL vmlinux 0x26fcec91 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x27028320 km_state_notify +EXPORT_SYMBOL vmlinux 0x2722d6e6 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x2725739b unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x2726f092 generic_readlink +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x2753b4e8 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x2753cdc7 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x275ef902 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x279d295c tcp_connect +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bef0fe dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x27d17ca3 tcf_em_register +EXPORT_SYMBOL vmlinux 0x27d70e7e zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27e89371 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x27ead38d ab3100_event_register +EXPORT_SYMBOL vmlinux 0x28006dd2 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x280a8897 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 +EXPORT_SYMBOL vmlinux 0x281760fe rtnl_notify +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28225e43 vfs_getattr +EXPORT_SYMBOL vmlinux 0x282ce161 elevator_init +EXPORT_SYMBOL vmlinux 0x282dfdde tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x2844dbd7 padata_add_cpu +EXPORT_SYMBOL vmlinux 0x284a8f4d get_unmapped_area +EXPORT_SYMBOL vmlinux 0x285c5bff key_unlink +EXPORT_SYMBOL vmlinux 0x285c9d08 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x285ca2db skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x286fb509 end_page_writeback +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28c4d1af tty_vhangup +EXPORT_SYMBOL vmlinux 0x28d6861d __vmalloc +EXPORT_SYMBOL vmlinux 0x28de8c08 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x28e5eb99 register_framebuffer +EXPORT_SYMBOL vmlinux 0x28e96ba9 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x28f1946e get_disk +EXPORT_SYMBOL vmlinux 0x28f5a4ae msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x2919bb1c ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x295131cc input_set_abs_params +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295ba2d0 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x2974eeca pci_disable_msi +EXPORT_SYMBOL vmlinux 0x29805f80 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x298b693f loop_register_transfer +EXPORT_SYMBOL vmlinux 0x298c12e5 nf_reinject +EXPORT_SYMBOL vmlinux 0x298f0743 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x299b012b remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x299ebb41 registered_fb +EXPORT_SYMBOL vmlinux 0x29cda212 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x29e1b020 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x29fc819c set_user_nice +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a036589 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x2a1b1224 nf_log_unset +EXPORT_SYMBOL vmlinux 0x2a23888b register_filesystem +EXPORT_SYMBOL vmlinux 0x2a294ac5 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x2a4094ce dump_align +EXPORT_SYMBOL vmlinux 0x2a7c5ae2 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x2a7cac99 pci_add_resource +EXPORT_SYMBOL vmlinux 0x2a87ff9e __get_user_pages +EXPORT_SYMBOL vmlinux 0x2a961c79 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x2a9c2405 dm_io +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aa17376 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2abc7639 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x2ac86656 blk_get_queue +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2adba0ed set_anon_super +EXPORT_SYMBOL vmlinux 0x2af04058 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x2af27503 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b12925d cpumask_next_and +EXPORT_SYMBOL vmlinux 0x2b169a7e arp_send +EXPORT_SYMBOL vmlinux 0x2b1a4b6d make_kuid +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b41347a snd_timer_stop +EXPORT_SYMBOL vmlinux 0x2b4e956e mempool_create +EXPORT_SYMBOL vmlinux 0x2b70c868 pipe_unlock +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2b9dd75f tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bbdb5ff lwtunnel_output +EXPORT_SYMBOL vmlinux 0x2bd8e56e bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x2bd9d7c4 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x2be0938c lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed +EXPORT_SYMBOL vmlinux 0x2bfdb36a nf_log_set +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c1cb392 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c6f1535 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x2c799ef4 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem +EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs +EXPORT_SYMBOL vmlinux 0x2c9148a1 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x2c930aca sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x2c988955 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x2cbedc03 wake_up_process +EXPORT_SYMBOL vmlinux 0x2ccc9ff1 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x2cd5fe89 icmpv6_send +EXPORT_SYMBOL vmlinux 0x2ce52acd of_get_pci_address +EXPORT_SYMBOL vmlinux 0x2d01347f touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d1b8396 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d31b227 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d3fc122 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x2d40373e devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x2d4f2cf1 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x2d5558d3 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x2d619c7f nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x2d63b38e mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x2d6507b5 _find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0x2d6857e6 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x2d71662f amba_find_device +EXPORT_SYMBOL vmlinux 0x2d770676 dispc_mgr_go +EXPORT_SYMBOL vmlinux 0x2d7b9fc5 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x2d7ca071 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x2da53d5b bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x2dccd6ff poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2dff5b35 kern_path +EXPORT_SYMBOL vmlinux 0x2e069700 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x2e10e616 tty_unlock +EXPORT_SYMBOL vmlinux 0x2e15191f sk_dst_check +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e235b26 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e5810c6 __aeabi_unwind_cpp_pr1 +EXPORT_SYMBOL vmlinux 0x2e791f1b inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x2e81636b scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x2e99d25d mmc_can_erase +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ecd441b fence_free +EXPORT_SYMBOL vmlinux 0x2ed828f6 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x2ee837f5 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2ef87cec dev_err +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f257dc1 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x2f286def vlan_vid_del +EXPORT_SYMBOL vmlinux 0x2f3a9fd1 snd_pcm_set_ops +EXPORT_SYMBOL vmlinux 0x2f3b8375 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f48b855 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x2f4d550d register_sound_midi +EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2f6e553b of_parse_phandle +EXPORT_SYMBOL vmlinux 0x2f926142 __check_sticky +EXPORT_SYMBOL vmlinux 0x2f97749b kobject_put +EXPORT_SYMBOL vmlinux 0x2faa5617 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x2faf185d max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fc3fac7 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x2fc57658 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x2fc59187 pci_iounmap +EXPORT_SYMBOL vmlinux 0x2fcbf495 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x2fe199a8 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fea3635 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x2fede08b zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x30003dd2 devm_memremap +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x3041098f dev_crit +EXPORT_SYMBOL vmlinux 0x30656045 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x3075c421 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3082a0b3 dss_feat_get_supported_color_modes +EXPORT_SYMBOL vmlinux 0x3087f59e __frontswap_store +EXPORT_SYMBOL vmlinux 0x308aad56 omap_vrfb_min_phys_size +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x3098dec6 snd_pci_quirk_lookup +EXPORT_SYMBOL vmlinux 0x309e7449 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x309fad86 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30da1577 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x30e48068 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f00b26 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x30f15850 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x311563b6 put_filp +EXPORT_SYMBOL vmlinux 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x31501ba1 truncate_setsize +EXPORT_SYMBOL vmlinux 0x3152e02d twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x315b8c4d xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x3168fdde skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x31693c46 km_report +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x317fe4fb skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x3188ac0c md_integrity_register +EXPORT_SYMBOL vmlinux 0x318ee2de scsi_remove_host +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x319ec072 serio_rescan +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31c6bffa poll_initwait +EXPORT_SYMBOL vmlinux 0x31dec394 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x31ec5add xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x31f23203 skb_checksum +EXPORT_SYMBOL vmlinux 0x321d9df6 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x32313fa3 snd_card_disconnect +EXPORT_SYMBOL vmlinux 0x32390ab3 pci_get_class +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x3268abd2 init_buffer +EXPORT_SYMBOL vmlinux 0x327278e5 input_inject_event +EXPORT_SYMBOL vmlinux 0x327aaa9f __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x32907b91 idr_remove +EXPORT_SYMBOL vmlinux 0x330f98b6 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x3316845e idr_get_next +EXPORT_SYMBOL vmlinux 0x33216094 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x33351b7a input_grab_device +EXPORT_SYMBOL vmlinux 0x33353a30 ps2_init +EXPORT_SYMBOL vmlinux 0x333a9d06 inet_select_addr +EXPORT_SYMBOL vmlinux 0x333c807f xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x337bbead take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33db7567 omapdss_find_output_from_display +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33e2fb7f xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x3418ca03 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x342a3a5e iov_iter_init +EXPORT_SYMBOL vmlinux 0x343f0c17 vfs_link +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 0x34822c6b dm_register_target +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34bc4077 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x3507a132 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x350db7a4 follow_up +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x352de32d datagram_poll +EXPORT_SYMBOL vmlinux 0x3535f9c3 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x353d0f12 scsi_dma_unmap +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 0x35671fd2 phy_attach +EXPORT_SYMBOL vmlinux 0x356cb847 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x3576da44 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x357a5f05 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x357e2ab1 inet6_offloads +EXPORT_SYMBOL vmlinux 0x35824a0c reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x35832e2e fget +EXPORT_SYMBOL vmlinux 0x358b1a6b elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x359d3364 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35e1cc45 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x35fbd6a1 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x35fd5e1f generic_delete_inode +EXPORT_SYMBOL vmlinux 0x36032d9c bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable +EXPORT_SYMBOL vmlinux 0x361ace16 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x36216bae gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x3653bbbc key_revoke +EXPORT_SYMBOL vmlinux 0x365a06b8 tso_count_descs +EXPORT_SYMBOL vmlinux 0x3676edff bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x3680dede snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0x368591d8 clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0x36a941ff ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x36bb7fc0 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36e87c8b vfs_create +EXPORT_SYMBOL vmlinux 0x36e87f62 sock_i_uid +EXPORT_SYMBOL vmlinux 0x36ea260d xfrm_register_type +EXPORT_SYMBOL vmlinux 0x36f51ac6 write_one_page +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x371bf412 blk_complete_request +EXPORT_SYMBOL vmlinux 0x374011c8 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x375ade41 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x37617c46 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x3764b735 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x376aee48 dcb_getapp +EXPORT_SYMBOL vmlinux 0x3772f56d ptp_clock_index +EXPORT_SYMBOL vmlinux 0x37730f01 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x3773fe72 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x37adcc4c skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c66dbb dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x37fbf510 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381f3894 key_put +EXPORT_SYMBOL vmlinux 0x382f7f6d of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x383009db iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x383b598a nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x384d7fbe tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x385aeaaf scsi_add_device +EXPORT_SYMBOL vmlinux 0x386c405b generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x386fecda key_alloc +EXPORT_SYMBOL vmlinux 0x38771293 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3894b2ad __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure +EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 +EXPORT_SYMBOL vmlinux 0x389fda7a __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38d8a905 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x38e3ca4f ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x38fdcd02 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x3914fdb2 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x39206598 km_new_mapping +EXPORT_SYMBOL vmlinux 0x3922e6ca devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x3924dd56 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x3926982f dev_trans_start +EXPORT_SYMBOL vmlinux 0x3934c80c locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393b9ee0 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x39545299 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x395df032 netpoll_poll_disable +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 0x39823567 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399c8fe3 ilookup5 +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39bc4bc1 find_get_entry +EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL vmlinux 0x3a06ac01 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a47b063 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x3a4ed35a release_pages +EXPORT_SYMBOL vmlinux 0x3a4f5c81 get_empty_filp +EXPORT_SYMBOL vmlinux 0x3a5173ce input_register_device +EXPORT_SYMBOL vmlinux 0x3a61e76f udp6_set_csum +EXPORT_SYMBOL vmlinux 0x3a6c4224 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa8bafd posix_test_lock +EXPORT_SYMBOL vmlinux 0x3ab24f31 snd_timer_notify +EXPORT_SYMBOL vmlinux 0x3abb26b0 ioremap_wc +EXPORT_SYMBOL vmlinux 0x3ac3bdd1 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x3ae0714c nand_scan_tail +EXPORT_SYMBOL vmlinux 0x3ae9f478 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x3b239bdb devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x3b2befe1 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x3b4499bd security_task_getsecid +EXPORT_SYMBOL vmlinux 0x3b575f84 file_update_time +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6761ac get_task_io_context +EXPORT_SYMBOL vmlinux 0x3b678119 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x3b6c7668 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x3b86c02a open_check_o_direct +EXPORT_SYMBOL vmlinux 0x3b91f3af snd_free_pages +EXPORT_SYMBOL vmlinux 0x3b9bfec0 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x3ba28303 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x3bbeb7e4 uart_match_port +EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base +EXPORT_SYMBOL vmlinux 0x3bc758dd register_netdevice +EXPORT_SYMBOL vmlinux 0x3bd5d503 tty_register_driver +EXPORT_SYMBOL vmlinux 0x3bdef40d kernel_bind +EXPORT_SYMBOL vmlinux 0x3be96b8d jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x3becc7fa dev_set_mtu +EXPORT_SYMBOL vmlinux 0x3c281ca2 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x3c3859a3 ip6_xmit +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c49141d rfkill_alloc +EXPORT_SYMBOL vmlinux 0x3c65e728 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c89a751 pci_dev_get +EXPORT_SYMBOL vmlinux 0x3c95b14f mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x3c9c41da snd_device_register +EXPORT_SYMBOL vmlinux 0x3cc2ab93 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL vmlinux 0x3cd144a1 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x3cd27886 neigh_xmit +EXPORT_SYMBOL vmlinux 0x3cd31172 vfs_llseek +EXPORT_SYMBOL vmlinux 0x3cd3bfd3 bmap +EXPORT_SYMBOL vmlinux 0x3ce3c9a4 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf1bfaf snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL vmlinux 0x3cfa969a proc_douintvec +EXPORT_SYMBOL vmlinux 0x3cfe61f9 kfree_skb +EXPORT_SYMBOL vmlinux 0x3d261a68 contig_page_data +EXPORT_SYMBOL vmlinux 0x3d30409d iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap +EXPORT_SYMBOL vmlinux 0x3d40019e gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x3d86e944 param_get_short +EXPORT_SYMBOL vmlinux 0x3d8ba4bf __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x3da7c688 lro_receive_skb +EXPORT_SYMBOL vmlinux 0x3db95987 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x3dbc95a4 tty_set_operations +EXPORT_SYMBOL vmlinux 0x3dc55250 module_put +EXPORT_SYMBOL vmlinux 0x3dc7870f jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd4693d simple_empty +EXPORT_SYMBOL vmlinux 0x3df49403 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e060308 vme_master_request +EXPORT_SYMBOL vmlinux 0x3e187bf2 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x3e4a3da2 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x3e4aa5ae pci_get_device +EXPORT_SYMBOL vmlinux 0x3e838a8d tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x3e884f4b vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3ea2874c current_fs_time +EXPORT_SYMBOL vmlinux 0x3eab5511 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x3ee15a5f update_devfreq +EXPORT_SYMBOL vmlinux 0x3ee42a56 snd_pcm_hw_rule_add +EXPORT_SYMBOL vmlinux 0x3eeaaaf2 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x3ef62a87 migrate_page +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4ca568 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x3f5b67d5 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3f60f1eb netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x3f6bb9c7 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x3f70f49c adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x3f7d9c47 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x3f7dbc5c textsearch_register +EXPORT_SYMBOL vmlinux 0x3fa94fa1 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x3fab3ca9 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x3fe92df4 proc_create_data +EXPORT_SYMBOL vmlinux 0x3fff0a4c bio_copy_kern +EXPORT_SYMBOL vmlinux 0x3fff2cc8 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x40312f5c ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x40464af5 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x4046dee4 cdev_add +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x40623796 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 +EXPORT_SYMBOL vmlinux 0x40729cf1 wireless_send_event +EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma +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 0x40a99d31 vm_insert_page +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 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40ce9e8d ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e46398 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x40ed524a _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 +EXPORT_SYMBOL vmlinux 0x40fc0c41 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x41043b72 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x4108bc11 cpu_tlb +EXPORT_SYMBOL vmlinux 0x4115ac6a tty_devnum +EXPORT_SYMBOL vmlinux 0x411acc07 make_bad_inode +EXPORT_SYMBOL vmlinux 0x4132b1d7 tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414a5a03 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x414ad9c2 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x414bce92 nvm_register_target +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x41923368 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x41b89127 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x41c0b62e xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x41e1017b tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x4220f594 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x4236b7d1 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x423d81ed ida_pre_get +EXPORT_SYMBOL vmlinux 0x42449254 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x424fed0c sock_no_getname +EXPORT_SYMBOL vmlinux 0x425c4ea9 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x426465ed ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x426bd3d4 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x42780511 register_quota_format +EXPORT_SYMBOL vmlinux 0x428c5b86 __register_nls +EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all +EXPORT_SYMBOL vmlinux 0x429984e8 icmp_send +EXPORT_SYMBOL vmlinux 0x429be6d3 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42b2a564 devm_gpio_request +EXPORT_SYMBOL vmlinux 0x42b85428 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x42dbb3e7 snd_pcm_new_internal +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43035fca phy_device_free +EXPORT_SYMBOL vmlinux 0x430ab305 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x43319716 mount_single +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x435a47a8 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x4368c8f0 d_add_ci +EXPORT_SYMBOL vmlinux 0x43709025 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x4370bbf6 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x4372a455 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x43738a7b sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x437827c0 __frontswap_test +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43a8bb38 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43fff929 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x44093fcb posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x440f5872 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x441163dc fb_pan_display +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x4417550a param_set_uint +EXPORT_SYMBOL vmlinux 0x441ed159 omap_get_dma_src_pos +EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x44289f72 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x443d399c xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul +EXPORT_SYMBOL vmlinux 0x4464e4c7 inet_accept +EXPORT_SYMBOL vmlinux 0x44991255 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44bed4eb uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x44c0c66b __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44dd3d8d completion_done +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44ec54e7 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x44fc850a blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x451b2b52 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x45304e75 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x45318661 snd_ctl_find_numid +EXPORT_SYMBOL vmlinux 0x4533a102 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x45389414 irq_to_desc +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4550f8f4 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457e9511 snd_ctl_make_virtual_master +EXPORT_SYMBOL vmlinux 0x4589074d blk_execute_rq +EXPORT_SYMBOL vmlinux 0x458d1313 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x459543a8 send_sig +EXPORT_SYMBOL vmlinux 0x4599dedc tcp_conn_request +EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low +EXPORT_SYMBOL vmlinux 0x4602f423 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x461c14a7 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x462ddf57 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x4640a62c xfrm_init_state +EXPORT_SYMBOL vmlinux 0x465757c3 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x465d3144 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466faed0 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x467f1cc0 sget_userns +EXPORT_SYMBOL vmlinux 0x4682e10d inet_addr_type +EXPORT_SYMBOL vmlinux 0x4695109b revert_creds +EXPORT_SYMBOL vmlinux 0x469514b3 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x46a76443 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x46c80e25 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 +EXPORT_SYMBOL vmlinux 0x46e4d677 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x46ea1918 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x46f5b4fb blk_register_region +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x46ff181c cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x47008c02 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x470a3303 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x4723ce2a pci_scan_bus +EXPORT_SYMBOL vmlinux 0x472be954 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x4732b204 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x477a58a1 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x477d2c78 snd_ctl_find_id +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x47acf829 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x47b3c3c9 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x47b5fbc2 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x47ce2a38 omapdss_unregister_display +EXPORT_SYMBOL vmlinux 0x47dcacea blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range +EXPORT_SYMBOL vmlinux 0x47f2f6bf mtd_concat_create +EXPORT_SYMBOL vmlinux 0x47f757de elf_platform +EXPORT_SYMBOL vmlinux 0x48012c99 from_kprojid +EXPORT_SYMBOL vmlinux 0x48192e0c generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x481a5838 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x481ce6ce cpu_active_mask +EXPORT_SYMBOL vmlinux 0x482b94c0 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x482d92fc snd_pcm_new +EXPORT_SYMBOL vmlinux 0x4832e7ab inet_add_offload +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485d354f sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x48742499 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x48801ff8 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x488fce9b __dquot_transfer +EXPORT_SYMBOL vmlinux 0x48a27da7 snd_pcm_hw_constraint_step +EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type +EXPORT_SYMBOL vmlinux 0x48b160a1 netlink_ack +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48be4f61 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x48e30c9e generic_perform_write +EXPORT_SYMBOL vmlinux 0x48f2a9d6 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49066ded fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x491da3cc skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x49213bee d_rehash +EXPORT_SYMBOL vmlinux 0x493303e8 bdget_disk +EXPORT_SYMBOL vmlinux 0x494fd266 mmc_add_host +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x495fb908 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x499cb58c prepare_to_wait +EXPORT_SYMBOL vmlinux 0x499eee19 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b6d725 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x49d8bfdc dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x49f75788 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x49fb004a bdi_init +EXPORT_SYMBOL vmlinux 0x4a068161 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x4a134dca blk_start_queue +EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params +EXPORT_SYMBOL vmlinux 0x4a3b77ff phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL vmlinux 0x4a57b339 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x4a683001 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x4a89aa26 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x4abb526a jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4ae93493 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b119a36 locks_free_lock +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b43d44d pci_set_mwi +EXPORT_SYMBOL vmlinux 0x4b5bf4bf tcp_proc_register +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b738d9e scsi_target_resume +EXPORT_SYMBOL vmlinux 0x4b78933c qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0x4b7d7a7f mmc_remove_host +EXPORT_SYMBOL vmlinux 0x4ba54dbd ___pskb_trim +EXPORT_SYMBOL vmlinux 0x4ba744a1 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x4babc7a1 shdma_chan_remove +EXPORT_SYMBOL vmlinux 0x4bae424f __kfree_skb +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bafd021 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat +EXPORT_SYMBOL vmlinux 0x4bb36acc eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x4bbff1d6 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x4bce0f36 gen_pool_create +EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x4be4bb69 dquot_enable +EXPORT_SYMBOL vmlinux 0x4be6b53a xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x4be7fb63 up +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4bf9401e kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x4c14b867 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x4c233a44 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c2e287d from_kuid +EXPORT_SYMBOL vmlinux 0x4c33081d omapdss_compat_uninit +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c5fc58c _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c7f5640 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x4c86184b remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4c93e8e3 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x4ca8d62e security_inode_readlink +EXPORT_SYMBOL vmlinux 0x4cb81f44 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x4cc2854d tegra114_clock_assert_dfll_dvco_reset +EXPORT_SYMBOL vmlinux 0x4cdadd0f udp_del_offload +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ce36bbe iterate_mounts +EXPORT_SYMBOL vmlinux 0x4cefb9c4 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x4cfc1c05 phy_stop +EXPORT_SYMBOL vmlinux 0x4d0ac7c5 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x4d0bff52 __lock_buffer +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d175c6e mutex_trylock +EXPORT_SYMBOL vmlinux 0x4d23ed74 drop_super +EXPORT_SYMBOL vmlinux 0x4d338daf blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x4d3ac3b6 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d7184df sock_init_data +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 0x4dc595c0 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x4dc9faf0 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x4dd6274a pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x4dd78317 snd_device_new +EXPORT_SYMBOL vmlinux 0x4dde000e genl_unregister_family +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4de453a0 vga_put +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4dedfed2 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e0171b7 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e37d85f vme_slot_num +EXPORT_SYMBOL vmlinux 0x4e506013 omap_dma_link_lch +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e72f0bd serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x4e7e48b0 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x4e8108a9 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x4e831676 neigh_lookup +EXPORT_SYMBOL vmlinux 0x4e9677fa xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x4e9f2ce8 snd_pcm_new_stream +EXPORT_SYMBOL vmlinux 0x4eb2e866 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x4efb073f pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x4f0b1a8a i2c_use_client +EXPORT_SYMBOL vmlinux 0x4f0c838d loop_backing_file +EXPORT_SYMBOL vmlinux 0x4f0e7149 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f20382c inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2e2b5a write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x4f36c10b __block_write_begin +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f4907d1 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f7805bf bio_clone_fast +EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4f98f806 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x4fa0948f skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x4fa1df35 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x4fc47d1c nlmsg_notify +EXPORT_SYMBOL vmlinux 0x4fd595a6 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x4ff24e74 locks_init_lock +EXPORT_SYMBOL vmlinux 0x4ff7e668 phy_find_first +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x50164329 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL vmlinux 0x504b1fe3 input_open_device +EXPORT_SYMBOL vmlinux 0x504c73b7 sock_register +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x507c3001 clear_inode +EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit +EXPORT_SYMBOL vmlinux 0x50a3bf75 tso_start +EXPORT_SYMBOL vmlinux 0x50a4663a dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x50a75f16 tty_lock +EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x50cc6d1b dentry_unhash +EXPORT_SYMBOL vmlinux 0x50d5612e dispc_mgr_get_sync_lost_irq +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50e691a5 pci_bus_get +EXPORT_SYMBOL vmlinux 0x50ebe8d2 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x51030c97 input_set_capability +EXPORT_SYMBOL vmlinux 0x511746c1 dump_fpu +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x51373763 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x513dba89 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x514cc273 arm_copy_from_user +EXPORT_SYMBOL vmlinux 0x517cd873 bio_put +EXPORT_SYMBOL vmlinux 0x517ddd51 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x51884eeb console_start +EXPORT_SYMBOL vmlinux 0x518e740b _dev_info +EXPORT_SYMBOL vmlinux 0x51a00dd5 write_cache_pages +EXPORT_SYMBOL vmlinux 0x51a3a016 set_blocksize +EXPORT_SYMBOL vmlinux 0x51b708e1 pci_restore_state +EXPORT_SYMBOL vmlinux 0x51c8415d elv_unregister_queue +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 0x51fb36ca ping_prot +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x5207a7b2 scsi_device_get +EXPORT_SYMBOL vmlinux 0x5215fde9 mpage_readpage +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x5244580b kmap_to_page +EXPORT_SYMBOL vmlinux 0x524bd747 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x52891570 kill_pgrp +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x528d0c14 idr_init +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52bb841c atomic_io_modify_relaxed +EXPORT_SYMBOL vmlinux 0x52df7eb6 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL vmlinux 0x52fb8dc2 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x53329cac mmc_request_done +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x53769b01 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x53922a57 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x53b914ea blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x53ca63b6 seq_puts +EXPORT_SYMBOL vmlinux 0x53eb9638 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x541081a9 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54666275 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x54701f9d bioset_free +EXPORT_SYMBOL vmlinux 0x547077ec __wake_up_bit +EXPORT_SYMBOL vmlinux 0x547ce898 dispc_read_irqenable +EXPORT_SYMBOL vmlinux 0x548f84a1 follow_pfn +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b5e7d0 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x54b8de4b elv_register_queue +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54e27efb devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f6830a omapdss_get_default_display_name +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x552f932b inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x55369ef9 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x553d680b pci_assign_resource +EXPORT_SYMBOL vmlinux 0x553f4443 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x554cdf54 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x55616669 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x556e29e2 misc_register +EXPORT_SYMBOL vmlinux 0x5573dc87 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x559071e4 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x5596f7d0 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x559c4476 __init_rwsem +EXPORT_SYMBOL vmlinux 0x55ad1f50 snd_info_create_module_entry +EXPORT_SYMBOL vmlinux 0x55ad3c42 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x55ad9b15 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x55c37510 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55e64170 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x55fdb6d5 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x5609cf7a call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x5625db40 param_get_string +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x564590ce dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0x564b1de3 downgrade_write +EXPORT_SYMBOL vmlinux 0x5662e31d __mutex_init +EXPORT_SYMBOL vmlinux 0x566d21f6 pci_find_bus +EXPORT_SYMBOL vmlinux 0x566eab77 seq_pad +EXPORT_SYMBOL vmlinux 0x5675754b path_is_under +EXPORT_SYMBOL vmlinux 0x5689afe7 dispc_ovl_enable +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56a0dd09 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x56b0d9d9 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x56b285c8 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x56b46151 snd_pcm_open_substream +EXPORT_SYMBOL vmlinux 0x56b696d7 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x56bc2f15 dispc_ovl_set_channel_out +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d57e64 pipe_lock +EXPORT_SYMBOL vmlinux 0x56e06328 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x56e2e17f led_blink_set +EXPORT_SYMBOL vmlinux 0x56eedab4 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x56f65266 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x57133391 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5778f9ee __getblk_slow +EXPORT_SYMBOL vmlinux 0x577f6ba2 blk_get_request +EXPORT_SYMBOL vmlinux 0x5799b992 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x57b0d821 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x57b157e0 of_node_get +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57dde933 ata_port_printk +EXPORT_SYMBOL vmlinux 0x57f440c3 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x57f5bf98 should_remove_suid +EXPORT_SYMBOL vmlinux 0x57fd455c ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x580698a3 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x581fdd14 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x58271adc of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x58273d09 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack +EXPORT_SYMBOL vmlinux 0x5862b2e7 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x5876c85e cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x58941bd1 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x58a0b2d6 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x58b0adb6 dev_mc_add +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c316e9 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x58d56576 install_exec_creds +EXPORT_SYMBOL vmlinux 0x58d633c7 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58ed0661 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x58eda5a5 snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0x59234b38 read_cache_pages +EXPORT_SYMBOL vmlinux 0x592c4104 vmap +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 +EXPORT_SYMBOL vmlinux 0x596a27da blk_start_request +EXPORT_SYMBOL vmlinux 0x596e9f45 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x59775084 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x597db85a dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x5980e85a pci_clear_master +EXPORT_SYMBOL vmlinux 0x598542b2 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x598cd828 udp_table +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x599f9fe5 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x59a17bfc tegra114_clock_tune_cpu_trimmers_high +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b9843c softnet_data +EXPORT_SYMBOL vmlinux 0x59bce9ff dquot_drop +EXPORT_SYMBOL vmlinux 0x59c9292e inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area +EXPORT_SYMBOL vmlinux 0x59d8223a ioport_resource +EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 +EXPORT_SYMBOL vmlinux 0x59fd9f14 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x5a07bee0 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0dc68d iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x5a0ebd47 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x5a4735c3 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x5a5051c6 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x5a52f9cd phy_connect +EXPORT_SYMBOL vmlinux 0x5a7c4a4d netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x5aca85f2 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x5ad9838d sock_sendmsg +EXPORT_SYMBOL vmlinux 0x5ae5be44 lg_lock_init +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b04be5a disable_fiq +EXPORT_SYMBOL vmlinux 0x5b100532 htc_egpio_get_wakeup_irq +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b279043 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x5b2d1633 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x5b340abd blk_delay_queue +EXPORT_SYMBOL vmlinux 0x5b3e3f91 release_firmware +EXPORT_SYMBOL vmlinux 0x5b500ca1 __vfs_write +EXPORT_SYMBOL vmlinux 0x5b52bec4 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x5b55a34b iov_iter_zero +EXPORT_SYMBOL vmlinux 0x5b5e05b5 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x5b761658 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x5b88a4f9 inet6_bind +EXPORT_SYMBOL vmlinux 0x5b8cc261 kdb_current_task +EXPORT_SYMBOL vmlinux 0x5ba4515c mount_bdev +EXPORT_SYMBOL vmlinux 0x5bb9daec __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x5bbc5487 clkdev_alloc +EXPORT_SYMBOL vmlinux 0x5bbcc03c dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x5bcf5766 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x5bd7dc34 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x5c03046d __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x5c0b5835 bdgrab +EXPORT_SYMBOL vmlinux 0x5c265cba sg_init_one +EXPORT_SYMBOL vmlinux 0x5c30241d inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x5c4d64c6 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x5c7a2575 qdisc_reset +EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id +EXPORT_SYMBOL vmlinux 0x5c96dc41 soft_cursor +EXPORT_SYMBOL vmlinux 0x5cb2a243 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5ce58e6f dquot_disable +EXPORT_SYMBOL vmlinux 0x5cea2b7a get_thermal_instance +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf68b21 md_write_start +EXPORT_SYMBOL vmlinux 0x5cfca274 tty_register_device +EXPORT_SYMBOL vmlinux 0x5d019d48 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x5d10052f jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d6571ef md_write_end +EXPORT_SYMBOL vmlinux 0x5d66dd29 skb_copy +EXPORT_SYMBOL vmlinux 0x5d81ca69 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x5dad512d tcp_poll +EXPORT_SYMBOL vmlinux 0x5dae1635 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x5db52c13 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x5dcbc2b2 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache +EXPORT_SYMBOL vmlinux 0x5dda352f bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x5deb3a1f km_policy_notify +EXPORT_SYMBOL vmlinux 0x5dfc8e7d omap_dss_put_device +EXPORT_SYMBOL vmlinux 0x5e099c28 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x5e0f0dc9 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x5e188bad abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x5e265064 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x5e3ba072 __f_setown +EXPORT_SYMBOL vmlinux 0x5e7a7e22 dquot_get_state +EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL vmlinux 0x5e818075 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x5e861795 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e9040c2 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x5e92dcbe genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb15bc6 blk_free_tags +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ebc2fd9 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x5ebd19ff generic_write_end +EXPORT_SYMBOL vmlinux 0x5ec50fb1 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x5ecf783b pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed3c108 dquot_initialize +EXPORT_SYMBOL vmlinux 0x5ed461f4 shdma_init +EXPORT_SYMBOL vmlinux 0x5eeac460 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x5ef6becf netif_device_detach +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f032dad __bforget +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f27323c _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x5f2aa087 xattr_full_name +EXPORT_SYMBOL vmlinux 0x5f316172 bio_add_page +EXPORT_SYMBOL vmlinux 0x5f40b6ef posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x5f5062db pci_release_region +EXPORT_SYMBOL vmlinux 0x5f6284bb xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x5f64f133 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x5f66fb97 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5fb91a23 snd_register_oss_device +EXPORT_SYMBOL vmlinux 0x5fbe9b6f _snd_ctl_add_slave +EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fded613 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io +EXPORT_SYMBOL vmlinux 0x5ff47c28 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x5ff5898e netif_skb_features +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 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL vmlinux 0x602f998c kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x6031f4e4 snd_register_device +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x606b9fec param_set_invbool +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x607bce49 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609c6427 free_buffer_head +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60b081bb eth_validate_addr +EXPORT_SYMBOL vmlinux 0x60b5e108 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x60baaba7 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60f25983 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x6100c3f7 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x61060e2c single_release +EXPORT_SYMBOL vmlinux 0x610ac0a2 seq_dentry +EXPORT_SYMBOL vmlinux 0x610c409d dispc_ovl_check +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61432c95 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x6165cb86 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x61709c4f scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x617a218d __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x619f788c get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x61ab9180 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b529c2 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x61b6d564 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61dd3b39 put_disk +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 0x622f00ad dget_parent +EXPORT_SYMBOL vmlinux 0x62318993 set_disk_ro +EXPORT_SYMBOL vmlinux 0x6263f1fa nand_unlock +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627ec9f4 vfs_readv +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62c45ab7 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x62c76064 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x62ce4d99 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x62ddbb5b __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x62df2187 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x63122973 __inet_hash +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6319f3f2 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x632b7b54 free_task +EXPORT_SYMBOL vmlinux 0x632fa960 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x6332b39e blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x635c8df9 update_region +EXPORT_SYMBOL vmlinux 0x636180dd __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x636b3461 omap_dss_get_num_overlays +EXPORT_SYMBOL vmlinux 0x63832625 sync_filesystem +EXPORT_SYMBOL vmlinux 0x63a3de2b follow_down_one +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d15e9c qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ede7bd kernel_write +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x640ade4e set_security_override +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6422b818 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x643c0d6e jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x6452019b fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x64558ea8 md_done_sync +EXPORT_SYMBOL vmlinux 0x647eec43 pci_bus_type +EXPORT_SYMBOL vmlinux 0x64874b8b cdev_del +EXPORT_SYMBOL vmlinux 0x64899822 bio_reset +EXPORT_SYMBOL vmlinux 0x648b1a31 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x648f0d0a mem_map +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x6499e8fd override_creds +EXPORT_SYMBOL vmlinux 0x64a22ff0 dispc_mgr_set_lcd_config +EXPORT_SYMBOL vmlinux 0x64a7646f km_is_alive +EXPORT_SYMBOL vmlinux 0x64af54e5 nand_scan_bbt +EXPORT_SYMBOL vmlinux 0x64b107be tcp_make_synack +EXPORT_SYMBOL vmlinux 0x64bf404d fb_set_suspend +EXPORT_SYMBOL vmlinux 0x64cf8294 vfs_readf +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 0x6522e450 netdev_notice +EXPORT_SYMBOL vmlinux 0x65249c09 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x6534b70c rtnl_create_link +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65466939 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x65508e6b pagecache_write_end +EXPORT_SYMBOL vmlinux 0x6550b153 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x656799db nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x6567c3cf __napi_schedule +EXPORT_SYMBOL vmlinux 0x658c457b bitmap_unplug +EXPORT_SYMBOL vmlinux 0x65c8eefb dqget +EXPORT_SYMBOL vmlinux 0x65d7cfc1 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65ddbd15 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x65eb2755 vc_resize +EXPORT_SYMBOL vmlinux 0x65f11809 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x660504d3 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x66227eae vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x66286130 __page_symlink +EXPORT_SYMBOL vmlinux 0x664b01d0 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x664ce859 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x66666225 page_address +EXPORT_SYMBOL vmlinux 0x66687959 dst_release +EXPORT_SYMBOL vmlinux 0x66704c0f pci_get_slot +EXPORT_SYMBOL vmlinux 0x6678c5f5 snd_pcm_lib_readv +EXPORT_SYMBOL vmlinux 0x66817a3e account_page_dirtied +EXPORT_SYMBOL vmlinux 0x668684a9 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x66a2770a vfs_writef +EXPORT_SYMBOL vmlinux 0x66a74ab0 sock_efree +EXPORT_SYMBOL vmlinux 0x66b1d5ea bioset_create +EXPORT_SYMBOL vmlinux 0x66dc0f06 proto_unregister +EXPORT_SYMBOL vmlinux 0x66e9dd5f snd_pcm_set_sync +EXPORT_SYMBOL vmlinux 0x66f35257 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x66fc9d3a page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x670b8baf inet_ioctl +EXPORT_SYMBOL vmlinux 0x67235dd6 input_register_handler +EXPORT_SYMBOL vmlinux 0x6725c932 mmc_put_card +EXPORT_SYMBOL vmlinux 0x67319cd4 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x673b9c7e tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x6752f990 fasync_helper +EXPORT_SYMBOL vmlinux 0x675afdaf bio_unmap_user +EXPORT_SYMBOL vmlinux 0x675e9b0d param_get_invbool +EXPORT_SYMBOL vmlinux 0x6762c391 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x676545bf seq_file_path +EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x677a0889 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x6782ce64 blkdev_put +EXPORT_SYMBOL vmlinux 0x679c6850 __elv_add_request +EXPORT_SYMBOL vmlinux 0x67b03816 genphy_resume +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c87a3a bio_split +EXPORT_SYMBOL vmlinux 0x67d50d4c generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x67dc5750 framebuffer_release +EXPORT_SYMBOL vmlinux 0x67df2de8 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x67e02294 kobject_set_name +EXPORT_SYMBOL vmlinux 0x67fda3db lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680f1310 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x684dcebd sk_stream_kill_queues +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 0x68b5d26e pci_claim_resource +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68bbdf33 do_splice_to +EXPORT_SYMBOL vmlinux 0x68dd62f6 dss_mgr_disable +EXPORT_SYMBOL vmlinux 0x68e89039 snd_pcm_hw_refine +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x68fd183d nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x69128c80 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x6915eb38 down_interruptible +EXPORT_SYMBOL vmlinux 0x691e5297 inet_release +EXPORT_SYMBOL vmlinux 0x69217df5 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x693a9713 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x693bbd3a blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x694def75 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697a0d72 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x697edbca fb_show_logo +EXPORT_SYMBOL vmlinux 0x69a66c55 fb_get_mode +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69af6f9f tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params +EXPORT_SYMBOL vmlinux 0x69c6767a unregister_quota_format +EXPORT_SYMBOL vmlinux 0x69e04a58 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x69e8d231 neigh_update +EXPORT_SYMBOL vmlinux 0x69eab82d brioctl_set +EXPORT_SYMBOL vmlinux 0x6a009224 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a06aa9a d_make_root +EXPORT_SYMBOL vmlinux 0x6a08a1cb dev_uc_flush +EXPORT_SYMBOL vmlinux 0x6a1fdbe7 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x6a206220 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x6a3d32ec nvm_end_io +EXPORT_SYMBOL vmlinux 0x6a3f8d2d bio_copy_data +EXPORT_SYMBOL vmlinux 0x6a404ab1 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x6a4cd10e scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a606cda qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6ab1189f scsi_device_put +EXPORT_SYMBOL vmlinux 0x6abc750b __sk_dst_check +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af7f2cd bd_set_size +EXPORT_SYMBOL vmlinux 0x6afae38c snd_pcm_create_iec958_consumer +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b19f83b vc_cons +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b1ddfc8 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x6b25d321 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x6b260ae3 netdev_warn +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b2f5409 release_sock +EXPORT_SYMBOL vmlinux 0x6b4b7047 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x6b5a3518 snd_ctl_remove +EXPORT_SYMBOL vmlinux 0x6b6919e3 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x6b7f12bb d_prune_aliases +EXPORT_SYMBOL vmlinux 0x6b948d23 kmap +EXPORT_SYMBOL vmlinux 0x6b9b65d4 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc4cc14 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x6bc53a2e sock_release +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6bf8d6bc pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c2102a8 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x6c2f198d netdev_update_features +EXPORT_SYMBOL vmlinux 0x6c439d10 nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0x6c518a1a xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c558262 finish_no_open +EXPORT_SYMBOL vmlinux 0x6c56b33e ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6a0c8c bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x6c6cdd4d wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c8105aa simple_write_begin +EXPORT_SYMBOL vmlinux 0x6c985aad netlink_capable +EXPORT_SYMBOL vmlinux 0x6c9f669d rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x6c9fa13c nand_scan_ident +EXPORT_SYMBOL vmlinux 0x6caf99b5 d_set_d_op +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6ce91dc3 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x6cf224ac sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x6d096d63 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d171145 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x6d19127f tcp_filter +EXPORT_SYMBOL vmlinux 0x6d1c44dd lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6d221eaf nand_correct_data +EXPORT_SYMBOL vmlinux 0x6d24ec93 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le +EXPORT_SYMBOL vmlinux 0x6d7538ec dump_emit +EXPORT_SYMBOL vmlinux 0x6d9f88a9 dcache_readdir +EXPORT_SYMBOL vmlinux 0x6da650a2 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x6dcdf43d iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x6ddf2589 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e015b47 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x6e3b819f sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x6e61ece7 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7cff47 __neigh_create +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ec33fac sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x6ec9ccdb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x6ece937d scsi_remove_target +EXPORT_SYMBOL vmlinux 0x6ee9d224 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f2ad3d3 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x6f32c9d6 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x6f3b2c94 inode_set_flags +EXPORT_SYMBOL vmlinux 0x6f3e1bce mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x6f4cb955 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f973330 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x6fb54481 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x6fbe70d2 mount_subtree +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6ff58fd8 arm_dma_ops +EXPORT_SYMBOL vmlinux 0x70097aa0 nand_bch_free +EXPORT_SYMBOL vmlinux 0x7028f471 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x7042abae neigh_event_ns +EXPORT_SYMBOL vmlinux 0x70436409 __breadahead +EXPORT_SYMBOL vmlinux 0x70469ff3 skb_append +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 0x7088be58 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x7088f23b inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x709b52b4 elm_config +EXPORT_SYMBOL vmlinux 0x70a05118 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x70ad7e74 amba_device_unregister +EXPORT_SYMBOL vmlinux 0x70c58d67 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x70e39dae dss_uninstall_mgr_ops +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x70fd3081 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0x70ff501a snd_pcm_hw_rule_noresample +EXPORT_SYMBOL vmlinux 0x7119db7f omap_dss_pal_timings +EXPORT_SYMBOL vmlinux 0x711c3ac5 dss_mgr_set_lcd_config +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x71355572 tcp_prequeue +EXPORT_SYMBOL vmlinux 0x7169102e omap_dss_ntsc_timings +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71ad9f9d __dst_free +EXPORT_SYMBOL vmlinux 0x71b04d67 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x71b97e93 of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71e284c7 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x71e30631 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x720974cd __put_cred +EXPORT_SYMBOL vmlinux 0x72350130 ___ratelimit +EXPORT_SYMBOL vmlinux 0x7247f690 bdget +EXPORT_SYMBOL vmlinux 0x72483e6f block_read_full_page +EXPORT_SYMBOL vmlinux 0x72585c21 param_array_ops +EXPORT_SYMBOL vmlinux 0x7262cdd3 kernel_read +EXPORT_SYMBOL vmlinux 0x7296d8a2 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x72a0e6f2 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x72b5279a register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x72b9492b textsearch_prepare +EXPORT_SYMBOL vmlinux 0x72c2375a of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0x72d135b8 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72db1a29 path_get +EXPORT_SYMBOL vmlinux 0x72e53781 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72eb6e16 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x72fd94dd jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x7321ce14 console_stop +EXPORT_SYMBOL vmlinux 0x7334201c pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x733d31bf netif_rx +EXPORT_SYMBOL vmlinux 0x735f5393 snd_mixer_oss_notify_callback +EXPORT_SYMBOL vmlinux 0x736dd88f snd_pcm_lib_free_pages +EXPORT_SYMBOL vmlinux 0x736eab4c dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x738320d3 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x7387db31 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x73ccfd66 elevator_exit +EXPORT_SYMBOL vmlinux 0x73d0a763 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73f4d0dc scsi_dma_map +EXPORT_SYMBOL vmlinux 0x7406d7ec pci_request_regions +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x74169391 arp_xmit +EXPORT_SYMBOL vmlinux 0x74417122 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x744d3254 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x7463c12c snd_timer_close +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x747c3b9f bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x748de708 arm_coherent_dma_ops +EXPORT_SYMBOL vmlinux 0x748dea1b lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x74ad9a77 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x74b359f4 ihold +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74dfee19 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x74e46dac imx_ssi_fiq_tx_buffer +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74ebcec3 make_kgid +EXPORT_SYMBOL vmlinux 0x74fd6a9b iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x750e4c69 tcp_prot +EXPORT_SYMBOL vmlinux 0x7561a5af load_nls_default +EXPORT_SYMBOL vmlinux 0x75627e9b jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs +EXPORT_SYMBOL vmlinux 0x75759649 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x757b7a92 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x7597c029 scsi_unregister +EXPORT_SYMBOL vmlinux 0x75b10144 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x75b75cb7 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75e4d6ef dev_close +EXPORT_SYMBOL vmlinux 0x75eb0a17 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760e8f6b fb_set_var +EXPORT_SYMBOL vmlinux 0x763175b0 snd_pcm_lib_write +EXPORT_SYMBOL vmlinux 0x7633dcaa __mdiobus_register +EXPORT_SYMBOL vmlinux 0x763bfc26 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x7658482d nvm_register +EXPORT_SYMBOL vmlinux 0x767f457e genlmsg_put +EXPORT_SYMBOL vmlinux 0x76a01bce tso_build_data +EXPORT_SYMBOL vmlinux 0x76a2766a skb_dequeue +EXPORT_SYMBOL vmlinux 0x76ae215a __nla_reserve +EXPORT_SYMBOL vmlinux 0x76b305ad of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x76c40f0f pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl +EXPORT_SYMBOL vmlinux 0x76cfbc75 generic_block_bmap +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 0x772519be gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x772c61cb pci_select_bars +EXPORT_SYMBOL vmlinux 0x774207e7 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x77442326 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x774b76d2 dev_set_group +EXPORT_SYMBOL vmlinux 0x77568181 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x775a130e __sg_free_table +EXPORT_SYMBOL vmlinux 0x776a4b57 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x776ba4a6 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x777f32e9 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x778442c1 dquot_resume +EXPORT_SYMBOL vmlinux 0x778727f7 give_up_console +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77a31758 devm_clk_get +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77dd78ef locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x77fa1a63 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x78021b09 fsync_bdev +EXPORT_SYMBOL vmlinux 0x780d5bc8 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x7810a88b fence_signal_locked +EXPORT_SYMBOL vmlinux 0x781a9a3c __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x7849eebd phy_resume +EXPORT_SYMBOL vmlinux 0x784d05e6 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x7860101b cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x786a13de dev_get_stats +EXPORT_SYMBOL vmlinux 0x78779c0b set_fiq_handler +EXPORT_SYMBOL vmlinux 0x787b41dd jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788fe103 iomem_resource +EXPORT_SYMBOL vmlinux 0x78990cdb param_get_ushort +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78ae20e5 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x78bdb6d6 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x78d36dac snd_info_free_entry +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x79140bbc shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x791b4ad7 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x79373179 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x793b04ca of_dev_put +EXPORT_SYMBOL vmlinux 0x79418c09 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x79471ff4 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x79480eda jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x794aef52 user_path_create +EXPORT_SYMBOL vmlinux 0x7964a4e9 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x797b799f iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79b98b39 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x79c5a9f0 ioremap +EXPORT_SYMBOL vmlinux 0x79d235b6 snd_jack_new +EXPORT_SYMBOL vmlinux 0x79df3036 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x79fa1deb imx_ssi_fiq_rx_buffer +EXPORT_SYMBOL vmlinux 0x7a0139bc alloc_disk +EXPORT_SYMBOL vmlinux 0x7a1bcb9a devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x7a1f2611 dispc_mgr_set_timings +EXPORT_SYMBOL vmlinux 0x7a27305e param_set_int +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a3177dc d_alloc +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a466173 load_nls +EXPORT_SYMBOL vmlinux 0x7a4b4b91 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x7a542ea3 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x7a7570e8 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a98ea9a tcp_check_req +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abd1903 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x7ac11124 up_read +EXPORT_SYMBOL vmlinux 0x7ac6fdb2 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x7ac7b5a0 snd_jack_set_key +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad414b6 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x7ad7217b empty_zero_page +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL vmlinux 0x7b0c9667 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x7b10a5be mmc_start_req +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b2505cb twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b48578e rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x7b4e5c60 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b829af7 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x7ba902a8 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x7be7f78b __scm_send +EXPORT_SYMBOL vmlinux 0x7c0d5935 sk_common_release +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c565a82 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x7c6354c0 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x7c6db8cd dev_get_iflink +EXPORT_SYMBOL vmlinux 0x7c7c6813 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x7c82461f tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x7c8bd57c tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x7cdbe6ac balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf6cb56 snd_info_create_card_entry +EXPORT_SYMBOL vmlinux 0x7d0b719d setup_new_exec +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d39ad95 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x7d3ab71a mutex_lock +EXPORT_SYMBOL vmlinux 0x7d4349d5 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x7d4f289a snd_timer_start +EXPORT_SYMBOL vmlinux 0x7d6f6695 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d78f3de snd_ctl_new1 +EXPORT_SYMBOL vmlinux 0x7d8c270c md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x7d904bd8 dev_addr_add +EXPORT_SYMBOL vmlinux 0x7da87624 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x7db0fdf3 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x7db2e05c omapdss_register_output +EXPORT_SYMBOL vmlinux 0x7dbd4b31 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x7dccc294 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x7dcdaa8a netlink_broadcast +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df01dcd of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x7e0b2a69 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x7e2f9e47 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x7e59fb6d devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x7e66bccb __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x7e6fa3ef tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x7e99d2eb flush_signals +EXPORT_SYMBOL vmlinux 0x7e9ae964 d_splice_alias +EXPORT_SYMBOL vmlinux 0x7e9c4192 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x7e9efe8e complete_and_exit +EXPORT_SYMBOL vmlinux 0x7eab3173 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x7eb70c5a __lock_page +EXPORT_SYMBOL vmlinux 0x7ecf1b57 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee7f093 dispc_ovl_compute_fifo_thresholds +EXPORT_SYMBOL vmlinux 0x7ef3b0d2 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x7ef5eda6 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x7efd4473 set_device_ro +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f0c4f88 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x7f0cc707 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x7f2158a1 add_disk +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f3b5590 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x7f3effe3 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x7f5fa488 param_set_ushort +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio +EXPORT_SYMBOL vmlinux 0x7f9a58a9 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x7f9b950a netdev_info +EXPORT_SYMBOL vmlinux 0x7fcfce80 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x7fd6fbf4 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fefe136 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 +EXPORT_SYMBOL vmlinux 0x802b6380 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x8035b1dc __bread_gfp +EXPORT_SYMBOL vmlinux 0x804aabdf idr_is_empty +EXPORT_SYMBOL vmlinux 0x8085b81a da903x_query_status +EXPORT_SYMBOL vmlinux 0x80a3bc36 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80cb42b9 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d81308 omap_vrfb_release_ctx +EXPORT_SYMBOL vmlinux 0x80d82b25 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x80f69048 netpoll_setup +EXPORT_SYMBOL vmlinux 0x80fbaed2 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x80fbe7de mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x810eccdf xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x812076b0 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81555408 set_bh_page +EXPORT_SYMBOL vmlinux 0x8159c856 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x815b2d2f tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x817bffb4 tcp_child_process +EXPORT_SYMBOL vmlinux 0x81847325 seq_read +EXPORT_SYMBOL vmlinux 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL vmlinux 0x81b6ea4b kmem_cache_free +EXPORT_SYMBOL vmlinux 0x81c2af9a noop_llseek +EXPORT_SYMBOL vmlinux 0x81ca4f96 d_path +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81ea998a invalidate_bdev +EXPORT_SYMBOL vmlinux 0x81fe0160 fd_install +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x820e4b5e inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x820ecf29 simple_rmdir +EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb +EXPORT_SYMBOL vmlinux 0x8223ef07 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x8224ad01 vfs_mknod +EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr +EXPORT_SYMBOL vmlinux 0x8257a902 __napi_complete +EXPORT_SYMBOL vmlinux 0x825d2d36 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x82705881 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x82738724 dss_mgr_disconnect +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x828caeae cfb_copyarea +EXPORT_SYMBOL vmlinux 0x8295086d mount_pseudo +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82eb1265 fb_class +EXPORT_SYMBOL vmlinux 0x82f34fb4 snd_pcm_notify +EXPORT_SYMBOL vmlinux 0x830b7ece skb_seq_read +EXPORT_SYMBOL vmlinux 0x830fc531 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x831396c3 fence_signal +EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 +EXPORT_SYMBOL vmlinux 0x834c6288 block_truncate_page +EXPORT_SYMBOL vmlinux 0x83570944 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x83738e75 lock_rename +EXPORT_SYMBOL vmlinux 0x8375d79d ida_destroy +EXPORT_SYMBOL vmlinux 0x838bc3b3 proc_set_user +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x839d5c00 consume_skb +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83c0c7a7 genphy_config_init +EXPORT_SYMBOL vmlinux 0x83c262ec seq_write +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83cd219d tcf_exts_change +EXPORT_SYMBOL vmlinux 0x83ed2747 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x840579bc blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x841b2426 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x84231194 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x8427daae put_cmsg +EXPORT_SYMBOL vmlinux 0x8437f24b get_io_context +EXPORT_SYMBOL vmlinux 0x84420355 dss_mgr_enable +EXPORT_SYMBOL vmlinux 0x84446687 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x84530890 __free_pages +EXPORT_SYMBOL vmlinux 0x84a69fdc vme_slave_get +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84ea653f have_submounts +EXPORT_SYMBOL vmlinux 0x84fa77cc sk_free +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x852fe0b6 nf_register_hook +EXPORT_SYMBOL vmlinux 0x854e1c0b sg_nents +EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85697aec pneigh_lookup +EXPORT_SYMBOL vmlinux 0x85765fee omap_enable_dma_irq +EXPORT_SYMBOL vmlinux 0x85a526b2 file_path +EXPORT_SYMBOL vmlinux 0x85b39224 of_get_next_child +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85d38337 param_get_charp +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e5f36b scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x85e8d7e4 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x861a9dcf snd_card_set_id +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865f4d9b tcp_read_sock +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x8666d83a dm_unregister_target +EXPORT_SYMBOL vmlinux 0x8675fa11 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x86763542 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x86860195 dss_feat_get_supported_displays +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x869bea0b inet_sendpage +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86aa0d2d __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x86b15aa3 vga_get +EXPORT_SYMBOL vmlinux 0x86be7067 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x86ca92b8 kmap_high +EXPORT_SYMBOL vmlinux 0x86d37422 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x86f50d7e pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87003790 fence_init +EXPORT_SYMBOL vmlinux 0x870924e3 backlight_force_update +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x87202341 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x8723a500 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x874c5550 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x876c59e2 __sb_end_write +EXPORT_SYMBOL vmlinux 0x87763d71 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x87864de1 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x878c4489 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x87a66740 generic_listxattr +EXPORT_SYMBOL vmlinux 0x87c384b0 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x87e50a6d blkdev_get +EXPORT_SYMBOL vmlinux 0x880f1031 mdiobus_write +EXPORT_SYMBOL vmlinux 0x88374131 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x884ea358 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x8856fa72 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x88618258 page_symlink +EXPORT_SYMBOL vmlinux 0x886bc76f mempool_resize +EXPORT_SYMBOL vmlinux 0x887e2e91 key_task_permission +EXPORT_SYMBOL vmlinux 0x88879639 mutex_unlock +EXPORT_SYMBOL vmlinux 0x889fdde4 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x88ac5dff igrab +EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial +EXPORT_SYMBOL vmlinux 0x88c478f4 set_groups +EXPORT_SYMBOL vmlinux 0x88ce9fdc param_ops_short +EXPORT_SYMBOL vmlinux 0x88e23d46 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x88ff1f15 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x890fde35 neigh_destroy +EXPORT_SYMBOL vmlinux 0x899f3e1a import_iovec +EXPORT_SYMBOL vmlinux 0x89a3d388 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x89b7aaa0 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x89bdb160 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x89d04832 ata_link_printk +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89d7b6d5 tcf_register_action +EXPORT_SYMBOL vmlinux 0x89f4ec0d keyring_alloc +EXPORT_SYMBOL vmlinux 0x8a0f4230 rename_lock +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a87c540 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x8a8a8702 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8ab01eac pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x8ab27a80 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x8ab27ba3 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x8ab43d12 rt6_lookup +EXPORT_SYMBOL vmlinux 0x8ab99da3 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x8adbb0b6 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x8ae3f8a6 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x8af6da93 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x8af9305a ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x8b106201 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b62104d gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x8b628de6 simple_unlink +EXPORT_SYMBOL vmlinux 0x8b796f0e sget +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b8ef209 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x8ba11e57 freeze_bdev +EXPORT_SYMBOL vmlinux 0x8bbccaa5 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x8bd16f80 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x8bdb7d3d phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x8be1383f skb_copy_expand +EXPORT_SYMBOL vmlinux 0x8be90ea1 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x8c260f1a pagecache_get_page +EXPORT_SYMBOL vmlinux 0x8c357530 dev_uc_init +EXPORT_SYMBOL vmlinux 0x8c51b420 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x8c55548f is_bad_inode +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c7d3848 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x8c881bc9 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x8c945237 down_read +EXPORT_SYMBOL vmlinux 0x8ca266b8 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x8ca79814 inet_shutdown +EXPORT_SYMBOL vmlinux 0x8cb48258 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x8cb97384 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x8cbcc8f5 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x8cd5a9df tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma +EXPORT_SYMBOL vmlinux 0x8cda92cc uart_get_divisor +EXPORT_SYMBOL vmlinux 0x8ce27ece netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x8ce60903 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x8cef17eb md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x8cf0bc4c pwmss_submodule_state_change +EXPORT_SYMBOL vmlinux 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL vmlinux 0x8d00167b scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x8d0aaf3a dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x8d0b40a8 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x8d134c39 idr_replace +EXPORT_SYMBOL vmlinux 0x8d1f5e37 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x8d209537 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x8d541ae9 current_in_userns +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d61a56a xfrm_state_update +EXPORT_SYMBOL vmlinux 0x8d62f6f5 key_payload_reserve +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 0x8d8a3e77 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x8d8b6353 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x8da7d330 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x8dcff6e2 __pv_offset +EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL vmlinux 0x8df5486d input_flush_device +EXPORT_SYMBOL vmlinux 0x8dfc6fdc devm_iounmap +EXPORT_SYMBOL vmlinux 0x8e1c8144 inet_listen +EXPORT_SYMBOL vmlinux 0x8e326da1 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x8e51bc34 sock_wfree +EXPORT_SYMBOL vmlinux 0x8e659674 lro_flush_all +EXPORT_SYMBOL vmlinux 0x8e6a5ed5 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops +EXPORT_SYMBOL vmlinux 0x8e91a0cf pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x8ea390e4 nand_lock +EXPORT_SYMBOL vmlinux 0x8ea4bae1 dss_mgr_register_framedone_handler +EXPORT_SYMBOL vmlinux 0x8eabe05c pci_dev_put +EXPORT_SYMBOL vmlinux 0x8ec99ded xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL vmlinux 0x8ecdbaa9 param_set_long +EXPORT_SYMBOL vmlinux 0x8eebf1e4 unregister_console +EXPORT_SYMBOL vmlinux 0x8f36f564 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major +EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x8f6aba8d cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x8f738ef0 build_skb +EXPORT_SYMBOL vmlinux 0x8f9f8886 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x8fa4130a omap_set_dma_callback +EXPORT_SYMBOL vmlinux 0x8fac5041 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x8fc7fd56 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fe9e50c snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0x8fef9d52 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x900298a5 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x900e3894 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x901f07cb __getblk_gfp +EXPORT_SYMBOL vmlinux 0x90206fed posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x902ff046 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x9036615a sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x903671b7 sk_alloc +EXPORT_SYMBOL vmlinux 0x903a291e nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x903f6255 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x90581714 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x90637b4e netlink_set_err +EXPORT_SYMBOL vmlinux 0x907dc917 put_tty_driver +EXPORT_SYMBOL vmlinux 0x90802eff kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x90868dc2 dquot_transfer +EXPORT_SYMBOL vmlinux 0x9099b434 devm_memunmap +EXPORT_SYMBOL vmlinux 0x909f3f05 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x90a4252a __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90c8f2c1 nand_bch_init +EXPORT_SYMBOL vmlinux 0x90cf3856 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x90d3de74 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x90d5bc52 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x90dd4ecc elv_add_request +EXPORT_SYMBOL vmlinux 0x90eeb5bb dquot_acquire +EXPORT_SYMBOL vmlinux 0x90f8d723 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0x90fc1ba1 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x9103af75 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x910b0129 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x914e1801 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x9151fe4b phy_device_create +EXPORT_SYMBOL vmlinux 0x91607384 omapdss_find_mgr_from_display +EXPORT_SYMBOL vmlinux 0x91610489 proc_symlink +EXPORT_SYMBOL vmlinux 0x91621d6a allocate_resource +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x9171d96f blk_integrity_register +EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug +EXPORT_SYMBOL vmlinux 0x9199cb4f may_umount +EXPORT_SYMBOL vmlinux 0x91a31c72 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91e8224b blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x91f0e5c5 skb_pull +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x921d4903 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x9222b07a module_layout +EXPORT_SYMBOL vmlinux 0x9226efe3 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x924e7f3e skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x925b2292 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x9262c13f blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x927410ba snd_pcm_lib_malloc_pages +EXPORT_SYMBOL vmlinux 0x92828af8 page_readlink +EXPORT_SYMBOL vmlinux 0x928800eb ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x929130c8 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92c3787f page_waitqueue +EXPORT_SYMBOL vmlinux 0x92ceabc7 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x92d9a4dd iget_locked +EXPORT_SYMBOL vmlinux 0x92ec5d1b dispc_mgr_enable +EXPORT_SYMBOL vmlinux 0x92ee9456 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9314c3f9 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x9314ead1 md_flush_request +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x9330cb9f sg_alloc_table +EXPORT_SYMBOL vmlinux 0x933227e7 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x933b0f88 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x933cf56e snd_ctl_boolean_mono_info +EXPORT_SYMBOL vmlinux 0x9352c49f omap_dss_get_output +EXPORT_SYMBOL vmlinux 0x93536d44 dev_add_pack +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x938d253f filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x93963a85 dss_feat_get_num_mgrs +EXPORT_SYMBOL vmlinux 0x93994439 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x93aad24c trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93cd7cd0 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x93d3f410 tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0x93ddecc2 mntget +EXPORT_SYMBOL vmlinux 0x93e3e54b inet_frag_kill +EXPORT_SYMBOL vmlinux 0x93e413ad tc_classify +EXPORT_SYMBOL vmlinux 0x93f26280 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x94021916 blk_init_tags +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 0x943ae5a9 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x94472f4f netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x9449adeb md_reload_sb +EXPORT_SYMBOL vmlinux 0x94522b6b mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x946999f2 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x946efbfa __wait_on_bit +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a92a78 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x94b2590f vme_free_consistent +EXPORT_SYMBOL vmlinux 0x94c96b6f sock_no_poll +EXPORT_SYMBOL vmlinux 0x94d3da68 rtc_lock +EXPORT_SYMBOL vmlinux 0x94e20e80 path_nosuid +EXPORT_SYMBOL vmlinux 0x94e2f138 seq_printf +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x95092794 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954e5ca9 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x95622f41 down_timeout +EXPORT_SYMBOL vmlinux 0x956e9f62 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x957a4f46 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x957b39ee pci_fixup_device +EXPORT_SYMBOL vmlinux 0x9589e494 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x95b0ddb2 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x95b97636 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x95c13605 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x95c3f3a1 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x95d75179 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 +EXPORT_SYMBOL vmlinux 0x95dff321 __brelse +EXPORT_SYMBOL vmlinux 0x95e7cdcd free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x95f5d124 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x96049df6 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x960ac195 flush_old_exec +EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x961a5932 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x96231b8d register_qdisc +EXPORT_SYMBOL vmlinux 0x962347d4 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x963f1902 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x9661a785 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x96707139 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x9670eab6 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x96a209c8 pps_register_source +EXPORT_SYMBOL vmlinux 0x96ab37b9 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x96b1cfc4 generic_make_request +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96dbace6 snd_timer_continue +EXPORT_SYMBOL vmlinux 0x96dce98c resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x97085b9b vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x97197383 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x973d3023 lock_fb_info +EXPORT_SYMBOL vmlinux 0x9742f166 thaw_super +EXPORT_SYMBOL vmlinux 0x974b066f dquot_file_open +EXPORT_SYMBOL vmlinux 0x974ba631 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x976e700f down_trylock +EXPORT_SYMBOL vmlinux 0x97785523 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x978e2dfe alloc_fddidev +EXPORT_SYMBOL vmlinux 0x9793c93a dispc_mgr_setup +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97ad079d security_path_rmdir +EXPORT_SYMBOL vmlinux 0x97ad1741 sg_miter_next +EXPORT_SYMBOL vmlinux 0x97b026e3 kthread_bind +EXPORT_SYMBOL vmlinux 0x97c570bc dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x97cf92f0 block_commit_write +EXPORT_SYMBOL vmlinux 0x97f6d538 snd_pcm_lib_writev +EXPORT_SYMBOL vmlinux 0x980301f8 passthru_features_check +EXPORT_SYMBOL vmlinux 0x980c2fa2 tty_write_room +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x982c0d1f sync_inode +EXPORT_SYMBOL vmlinux 0x9830b343 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x9836ce90 vme_slave_request +EXPORT_SYMBOL vmlinux 0x983b5041 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x984b725a snd_device_free +EXPORT_SYMBOL vmlinux 0x986c5b3e nla_append +EXPORT_SYMBOL vmlinux 0x986d2194 vfs_writev +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset +EXPORT_SYMBOL vmlinux 0x98ab41d2 iunique +EXPORT_SYMBOL vmlinux 0x98bb0e99 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x98c844c0 sync_blockdev +EXPORT_SYMBOL vmlinux 0x98c91215 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x98f8676e nf_log_register +EXPORT_SYMBOL vmlinux 0x99047671 kill_bdev +EXPORT_SYMBOL vmlinux 0x99285971 seq_open +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x99689a86 scsi_print_result +EXPORT_SYMBOL vmlinux 0x996c4d30 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99afd297 unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99cddc49 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x99d031f0 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x99f58330 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x9a1cd3de ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a2ff6cf scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x9a3bf789 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x9a623142 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x9a7c1e38 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range +EXPORT_SYMBOL vmlinux 0x9a851f86 scsi_print_command +EXPORT_SYMBOL vmlinux 0x9a8e2a40 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x9aa00c07 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x9aa1b716 kill_fasync +EXPORT_SYMBOL vmlinux 0x9ae13a3d padata_free +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9aff9139 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x9b0161dd phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b46133b down_write +EXPORT_SYMBOL vmlinux 0x9b4d968e tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x9b5f87f5 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b935b42 iput +EXPORT_SYMBOL vmlinux 0x9b9439ba __vfs_read +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba36a4e inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bce482f __release_region +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9be9c174 omap_dss_get_overlay_manager +EXPORT_SYMBOL vmlinux 0x9c0bd51f _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x9c274c92 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x9c50973f param_set_short +EXPORT_SYMBOL vmlinux 0x9c7f0db3 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0x9c847ec8 dm_get_device +EXPORT_SYMBOL vmlinux 0x9c8c503c cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x9c93513e dss_mgr_unregister_framedone_handler +EXPORT_SYMBOL vmlinux 0x9c973c6b jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x9c9d826d pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x9c9ec2a0 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x9caaaa0a __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cba3c37 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x9cc3ca32 pci_pme_active +EXPORT_SYMBOL vmlinux 0x9ccc8f76 arp_tbl +EXPORT_SYMBOL vmlinux 0x9cd01d33 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x9cd4cdfe cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x9d0808c1 vga_tryget +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1544eb tcp_release_cb +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9d7ff994 flush_kernel_dcache_page +EXPORT_SYMBOL vmlinux 0x9d93694d padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x9d9aad36 shdma_chan_filter +EXPORT_SYMBOL vmlinux 0x9dbfd48d iget_failed +EXPORT_SYMBOL vmlinux 0x9dc2ca28 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x9dcbf907 del_gendisk +EXPORT_SYMBOL vmlinux 0x9dd2a2d3 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9dfe9cb9 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x9e0bb2a3 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e22097a fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x9e319974 proto_register +EXPORT_SYMBOL vmlinux 0x9e36e7f0 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x9e3b47fd skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e6037ac try_to_writeback_inodes_sb_nr +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 0x9e7335d1 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea7b74b security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x9ecbccfd flow_cache_fini +EXPORT_SYMBOL vmlinux 0x9ee259c8 set_nlink +EXPORT_SYMBOL vmlinux 0x9eee251e end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x9ef8cd9d blk_put_request +EXPORT_SYMBOL vmlinux 0x9efc8dab pci_choose_state +EXPORT_SYMBOL vmlinux 0x9f269e7e simple_follow_link +EXPORT_SYMBOL vmlinux 0x9f2e6a5b jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x9f34e568 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f483045 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x9f53a94d kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x9f5bb78f dst_discard_out +EXPORT_SYMBOL vmlinux 0x9f823cea dispc_mgr_is_enabled +EXPORT_SYMBOL vmlinux 0x9f8ac727 path_put +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa57729 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x9fa61a41 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x9faa48c4 snd_timer_global_register +EXPORT_SYMBOL vmlinux 0x9fb47be8 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x9fbab572 udplite_prot +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feb8e16 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa002358d of_get_parent +EXPORT_SYMBOL vmlinux 0xa0044066 kset_register +EXPORT_SYMBOL vmlinux 0xa00eb15b ioremap_page +EXPORT_SYMBOL vmlinux 0xa020a750 snd_pcm_suspend +EXPORT_SYMBOL vmlinux 0xa03c69b2 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa04e4c92 __destroy_inode +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa060117b vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa075c3b2 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xa07b6d55 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa09f07b7 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xa0aae687 imx_ssi_fiq_end +EXPORT_SYMBOL vmlinux 0xa0ae8b60 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0c74cd5 inet_frag_maybe_warn_overflow +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 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa11b7523 dss_install_mgr_ops +EXPORT_SYMBOL vmlinux 0xa11df058 security_path_truncate +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa12cbcc1 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa141f7cf __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa1580eea skb_store_bits +EXPORT_SYMBOL vmlinux 0xa16c2352 snd_pcm_hw_param_last +EXPORT_SYMBOL vmlinux 0xa1922870 uart_resume_port +EXPORT_SYMBOL vmlinux 0xa1923154 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xa192813b idr_for_each +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 0xa1e635e5 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xa1e63b33 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xa1f0ebea bit_waitqueue +EXPORT_SYMBOL vmlinux 0xa1f9048a skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xa1fd3df6 amba_request_regions +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa20a35f8 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xa21b075a clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xa239ce3b __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2ad9c0c dev_emerg +EXPORT_SYMBOL vmlinux 0xa2c452d1 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xa2e04410 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL vmlinux 0xa3380d8f __invalidate_device +EXPORT_SYMBOL vmlinux 0xa342f773 input_get_keycode +EXPORT_SYMBOL vmlinux 0xa35444e4 dispc_write_irqenable +EXPORT_SYMBOL vmlinux 0xa357ba95 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xa3669f99 __register_binfmt +EXPORT_SYMBOL vmlinux 0xa374210c param_ops_string +EXPORT_SYMBOL vmlinux 0xa376d492 find_vma +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa38139a3 register_sound_special +EXPORT_SYMBOL vmlinux 0xa381944f dql_reset +EXPORT_SYMBOL vmlinux 0xa389d628 dump_skip +EXPORT_SYMBOL vmlinux 0xa39648e3 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xa39a123a fence_add_callback +EXPORT_SYMBOL vmlinux 0xa3a27e79 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xa3af6138 input_reset_device +EXPORT_SYMBOL vmlinux 0xa3b1333a ip_ct_attach +EXPORT_SYMBOL vmlinux 0xa3ecf764 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xa40cca02 flow_cache_init +EXPORT_SYMBOL vmlinux 0xa414882d add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xa417a227 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xa419a8a7 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xa4320486 d_tmpfile +EXPORT_SYMBOL vmlinux 0xa435cdac scsi_block_requests +EXPORT_SYMBOL vmlinux 0xa4377d13 neigh_for_each +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa44ef5cd tcf_action_exec +EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev +EXPORT_SYMBOL vmlinux 0xa467e088 kernel_listen +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa48f5b09 omap_dma_set_global_params +EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority +EXPORT_SYMBOL vmlinux 0xa4b82944 simple_getattr +EXPORT_SYMBOL vmlinux 0xa4bdbc89 module_refcount +EXPORT_SYMBOL vmlinux 0xa4d76f95 nand_scan +EXPORT_SYMBOL vmlinux 0xa4ec65f5 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xa509d1c4 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xa536209d find_lock_entry +EXPORT_SYMBOL vmlinux 0xa538fc9d __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa564192e nobh_write_end +EXPORT_SYMBOL vmlinux 0xa5684913 blk_end_request +EXPORT_SYMBOL vmlinux 0xa57ec83e i2c_master_send +EXPORT_SYMBOL vmlinux 0xa58fea9d mempool_destroy +EXPORT_SYMBOL vmlinux 0xa593d9e9 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa59e8837 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xa5a633b9 sg_last +EXPORT_SYMBOL vmlinux 0xa5ac3d94 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xa5c00d7f dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xa5cbe92f nf_getsockopt +EXPORT_SYMBOL vmlinux 0xa5cef8ad release_resource +EXPORT_SYMBOL vmlinux 0xa5ec8982 i2c_release_client +EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL vmlinux 0xa61b9ef7 dev_mc_del +EXPORT_SYMBOL vmlinux 0xa61e4362 omap_request_dma +EXPORT_SYMBOL vmlinux 0xa6259903 seq_escape +EXPORT_SYMBOL vmlinux 0xa628ee55 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xa629ca0a pcie_get_mps +EXPORT_SYMBOL vmlinux 0xa629d0c0 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa649eff7 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xa652c4ef __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xa65314b0 nf_afinfo +EXPORT_SYMBOL vmlinux 0xa655a709 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xa65dc4f9 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xa67374f0 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa67b88e8 I_BDEV +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68db127 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6a5b8d6 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xa6a73bb7 pci_enable_device +EXPORT_SYMBOL vmlinux 0xa6bab23d dqstats +EXPORT_SYMBOL vmlinux 0xa6cd13c5 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xa6d1c146 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xa6d1e925 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xa6d8e164 security_mmap_file +EXPORT_SYMBOL vmlinux 0xa6db648b kmalloc_caches +EXPORT_SYMBOL vmlinux 0xa6f70a2d __break_lease +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa706b337 omapdss_default_get_timings +EXPORT_SYMBOL vmlinux 0xa708e304 lookup_one_len +EXPORT_SYMBOL vmlinux 0xa70e3d1d nand_bch_calculate_ecc +EXPORT_SYMBOL vmlinux 0xa734a3e9 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa73661a0 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xa73e54ea d_walk +EXPORT_SYMBOL vmlinux 0xa7499ed4 bdi_register +EXPORT_SYMBOL vmlinux 0xa754c24d inode_change_ok +EXPORT_SYMBOL vmlinux 0xa759685f udp6_csum_init +EXPORT_SYMBOL vmlinux 0xa75bbd5c simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xa7647f67 file_ns_capable +EXPORT_SYMBOL vmlinux 0xa76d14af pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xa7748d90 save_mount_options +EXPORT_SYMBOL vmlinux 0xa7800f19 kobject_del +EXPORT_SYMBOL vmlinux 0xa7836b50 no_llseek +EXPORT_SYMBOL vmlinux 0xa78dd71c skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xa7a9a096 from_kgid +EXPORT_SYMBOL vmlinux 0xa7c4b0d7 fb_find_mode +EXPORT_SYMBOL vmlinux 0xa7dd3c81 notify_change +EXPORT_SYMBOL vmlinux 0xa7e65468 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xa819f67d mount_nodev +EXPORT_SYMBOL vmlinux 0xa81b5aa6 netdev_err +EXPORT_SYMBOL vmlinux 0xa8232ed9 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xa823aeb8 nf_log_packet +EXPORT_SYMBOL vmlinux 0xa82a583d register_shrinker +EXPORT_SYMBOL vmlinux 0xa83be003 elm_decode_bch_error_page +EXPORT_SYMBOL vmlinux 0xa83e2db9 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xa84174e4 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa860f9d6 phy_detach +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa8745722 tcf_hash_check +EXPORT_SYMBOL vmlinux 0xa8765cd9 i2c_master_recv +EXPORT_SYMBOL vmlinux 0xa8804109 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xa89661c2 d_obtain_root +EXPORT_SYMBOL vmlinux 0xa8967bf7 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xa89da8e2 register_sound_mixer +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8ae8d9a of_find_node_with_property +EXPORT_SYMBOL vmlinux 0xa8e98ffb md_update_sb +EXPORT_SYMBOL vmlinux 0xa8fa06df devm_clk_put +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa91c0ad1 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xa95f8e8a key_invalidate +EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL vmlinux 0xa9658cd3 kobject_add +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa99b924e devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xa9b20bc0 dev_mc_init +EXPORT_SYMBOL vmlinux 0xa9b91306 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9d2f3f7 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xa9dd5858 component_match_add +EXPORT_SYMBOL vmlinux 0xaa073be7 security_inode_permission +EXPORT_SYMBOL vmlinux 0xaa199b46 phy_init_hw +EXPORT_SYMBOL vmlinux 0xaa19d55b seq_lseek +EXPORT_SYMBOL vmlinux 0xaa4cb4c3 skb_push +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6bd393 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xaa6bf823 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa6fa78e proc_mkdir +EXPORT_SYMBOL vmlinux 0xaaa05f41 register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0xaabb153c inet_getname +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad803f6 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xaad89796 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xaae2e8d1 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab0c32f8 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xab1fb4e1 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xab3db2c2 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xab5d0fbb netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab6510bf bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab6f3898 free_netdev +EXPORT_SYMBOL vmlinux 0xab7560c3 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xab7603e7 imx_ssi_fiq_start +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab90687f mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xab9a8b1f __i2c_transfer +EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xabb7ea17 phy_suspend +EXPORT_SYMBOL vmlinux 0xabc4df46 phy_disconnect +EXPORT_SYMBOL vmlinux 0xabc9ab6b udp_prot +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabcc9c0a snd_power_wait +EXPORT_SYMBOL vmlinux 0xabdd6463 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xabf2599d dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac27a8e8 blk_sync_queue +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 0xac7c5fe5 drop_nlink +EXPORT_SYMBOL vmlinux 0xac8a7329 snd_card_free +EXPORT_SYMBOL vmlinux 0xac8c9e70 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xac8fb148 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb671be __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacd8e1b4 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xacdcb92f amba_release_regions +EXPORT_SYMBOL vmlinux 0xace042eb kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xace15c35 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xace3bc0f inet_frag_find +EXPORT_SYMBOL vmlinux 0xacf1ee47 inode_init_owner +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad16a3a4 d_move +EXPORT_SYMBOL vmlinux 0xad1b122d keyring_search +EXPORT_SYMBOL vmlinux 0xad1ea09f fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0xad2b4ff4 clear_nlink +EXPORT_SYMBOL vmlinux 0xad2d1fbb init_special_inode +EXPORT_SYMBOL vmlinux 0xad2d5c19 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xad357bb5 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad858e25 input_close_device +EXPORT_SYMBOL vmlinux 0xadb66b05 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL vmlinux 0xadf42bd5 __request_region +EXPORT_SYMBOL vmlinux 0xadf8a214 shdma_request_irq +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae03cd58 address_space_init_once +EXPORT_SYMBOL vmlinux 0xae14201a of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0xae1af1b8 snd_card_file_add +EXPORT_SYMBOL vmlinux 0xae1ccdbc snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0xae26adf7 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xae397aec elevator_alloc +EXPORT_SYMBOL vmlinux 0xae58791f commit_creds +EXPORT_SYMBOL vmlinux 0xae60279b bh_submit_read +EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xae7ce7f3 scsi_host_put +EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xae9ef346 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xaea31b48 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xaeb5d4cc skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xaeb8e6e6 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaec9a4ae devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xaed1e47c free_user_ns +EXPORT_SYMBOL vmlinux 0xaed2c7b3 blk_put_queue +EXPORT_SYMBOL vmlinux 0xaedec86d ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xaefab988 skb_pad +EXPORT_SYMBOL vmlinux 0xaefe40a6 new_inode +EXPORT_SYMBOL vmlinux 0xaf0e2181 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xaf11738d __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xaf2ea399 dma_pool_create +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf4ae561 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality +EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 +EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev +EXPORT_SYMBOL vmlinux 0xafb2dcac __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xafc0159e file_open_root +EXPORT_SYMBOL vmlinux 0xafc3f620 vfs_read +EXPORT_SYMBOL vmlinux 0xafe21b50 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xb008cfda __skb_checksum +EXPORT_SYMBOL vmlinux 0xb00ae831 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xb00d65a0 nvm_submit_io +EXPORT_SYMBOL vmlinux 0xb01eac88 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xb039d831 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xb043d34f jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xb0447414 blk_queue_invalidate_tags +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 0xb0768c66 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xb07754cb elevator_change +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb08a703f tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0ccfd25 shdma_chan_probe +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e1529e scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xb0e1fa16 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xb1075804 md_finish_reshape +EXPORT_SYMBOL vmlinux 0xb10946da serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xb1135939 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb154b68f snd_timer_global_free +EXPORT_SYMBOL vmlinux 0xb15bcb37 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb17dd180 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xb183c375 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xb19337af pci_find_capability +EXPORT_SYMBOL vmlinux 0xb19da10d thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc +EXPORT_SYMBOL vmlinux 0xb1bf6667 param_ops_bool +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c3de5e force_sig +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1d21b81 pci_set_master +EXPORT_SYMBOL vmlinux 0xb1d57f78 sock_from_file +EXPORT_SYMBOL vmlinux 0xb1d618ea ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xb1d9aabd lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xb207960c complete_request_key +EXPORT_SYMBOL vmlinux 0xb20cae79 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xb20d8124 devm_request_resource +EXPORT_SYMBOL vmlinux 0xb221537e eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xb24bf377 kill_litter_super +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb269fbc9 of_get_address +EXPORT_SYMBOL vmlinux 0xb26de502 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xb2751759 snd_dma_free_pages +EXPORT_SYMBOL vmlinux 0xb2830d2a neigh_app_ns +EXPORT_SYMBOL vmlinux 0xb28c511c dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xb2ac3ca2 sound_class +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 0xb2ff162f of_dev_get +EXPORT_SYMBOL vmlinux 0xb3015ef6 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xb30c020d posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xb3116834 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xb31cb080 pcim_iomap +EXPORT_SYMBOL vmlinux 0xb322f389 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0xb32400a1 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xb3312445 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xb334235b neigh_table_clear +EXPORT_SYMBOL vmlinux 0xb339c197 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xb367c984 mxc_set_irq_fiq +EXPORT_SYMBOL vmlinux 0xb39bccda __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xb3a3c2dd do_SAK +EXPORT_SYMBOL vmlinux 0xb3c9fec3 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xb3cda92b of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xb3d19894 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb41cd7b6 cap_mmap_file +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb442c7ac thaw_bdev +EXPORT_SYMBOL vmlinux 0xb44b1893 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb45ecbdd default_llseek +EXPORT_SYMBOL vmlinux 0xb46097a8 map_destroy +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb484bfce tcp_req_err +EXPORT_SYMBOL vmlinux 0xb4947aaf tty_port_destroy +EXPORT_SYMBOL vmlinux 0xb498158e skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xb4ac1468 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL vmlinux 0xb4d010a5 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xb4d38fee vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xb4d728cd md_error +EXPORT_SYMBOL vmlinux 0xb4d8c817 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xb4f528f7 inet_csk_accept +EXPORT_SYMBOL vmlinux 0xb4fc5e82 udp_set_csum +EXPORT_SYMBOL vmlinux 0xb5198b77 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xb559e079 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xb5684e29 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb57c3b2f simple_write_end +EXPORT_SYMBOL vmlinux 0xb581a961 kern_path_create +EXPORT_SYMBOL vmlinux 0xb5858def ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0xb5994b8b mapping_tagged +EXPORT_SYMBOL vmlinux 0xb5a3476e jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a51622 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xb5a5e8ca max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ae0c14 dev_driver_string +EXPORT_SYMBOL vmlinux 0xb5b52886 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xb5be0a7d kunmap +EXPORT_SYMBOL vmlinux 0xb5c00014 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0xb5c67418 padata_start +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5cc0550 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xb5d8e750 of_root +EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit +EXPORT_SYMBOL vmlinux 0xb5de7192 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0xb5e548be gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0xb61f15e8 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xb62ec531 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xb63aeb92 mount_ns +EXPORT_SYMBOL vmlinux 0xb656f36c eth_gro_complete +EXPORT_SYMBOL vmlinux 0xb65e8cd8 unregister_nls +EXPORT_SYMBOL vmlinux 0xb66915ba snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL vmlinux 0xb675c645 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb68a0d47 kill_pid +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6aee61d snd_ctl_notify +EXPORT_SYMBOL vmlinux 0xb6bd11be dev_get_flags +EXPORT_SYMBOL vmlinux 0xb6c5d233 vme_irq_request +EXPORT_SYMBOL vmlinux 0xb6ce7dc5 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xb6d3daf1 qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xb6ed1e67 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xb6f78efb gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0xb7121505 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xb718f005 do_splice_direct +EXPORT_SYMBOL vmlinux 0xb718f687 of_match_device +EXPORT_SYMBOL vmlinux 0xb7463a24 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb74dcbc0 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xb760afce iterate_fd +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb776af3c scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xb7823e2f dispc_ovl_setup +EXPORT_SYMBOL vmlinux 0xb79116ef sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xb79d80c7 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xb79e1073 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7aaf25d do_truncate +EXPORT_SYMBOL vmlinux 0xb7b5e6f5 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0xb7ba76c7 __aeabi_unwind_cpp_pr2 +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7e0c319 sock_no_connect +EXPORT_SYMBOL vmlinux 0xb803187e truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xb818f9af udp_sendmsg +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb832b1ee sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xb84e642a clk_add_alias +EXPORT_SYMBOL vmlinux 0xb84f6169 tty_port_put +EXPORT_SYMBOL vmlinux 0xb854d581 snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0xb86edadc vfs_statfs +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb87739b6 acl_by_type +EXPORT_SYMBOL vmlinux 0xb899855d seq_putc +EXPORT_SYMBOL vmlinux 0xb89abf1f xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xb8a0baf1 kthread_stop +EXPORT_SYMBOL vmlinux 0xb8aa639a generic_permission +EXPORT_SYMBOL vmlinux 0xb8b2a9ac unlock_new_inode +EXPORT_SYMBOL vmlinux 0xb8b3feec kern_unmount +EXPORT_SYMBOL vmlinux 0xb8cc9bf2 snd_timer_interrupt +EXPORT_SYMBOL vmlinux 0xb8d672bd vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8f34823 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xb9005442 dev_warn +EXPORT_SYMBOL vmlinux 0xb9162738 blk_init_queue +EXPORT_SYMBOL vmlinux 0xb93fc037 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xb9457129 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xb94c254a gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io +EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL vmlinux 0xb9949dd7 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xb994cbad generic_removexattr +EXPORT_SYMBOL vmlinux 0xb999d67f blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xb99fd6b1 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0xb9a02708 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xb9a496d1 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma +EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 +EXPORT_SYMBOL vmlinux 0xb9ace92b blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xb9c4eaea bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xb9d28ed8 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xb9d878c6 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xb9dddfbc __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xb9e3f695 km_query +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9e92fbd mpage_readpages +EXPORT_SYMBOL vmlinux 0xba03e46f udp_seq_open +EXPORT_SYMBOL vmlinux 0xba2e839d neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xba3be04d inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xba3d9799 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4ae097 enable_fiq +EXPORT_SYMBOL vmlinux 0xba5431db ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xba610c31 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xba6ea519 send_sig_info +EXPORT_SYMBOL vmlinux 0xba7d870a __mxc_cpu_type +EXPORT_SYMBOL vmlinux 0xba8d8239 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbac5ed0b __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xbac60909 simple_rename +EXPORT_SYMBOL vmlinux 0xbad7381c copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xbafeee36 dispc_runtime_get +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0c99e2 snd_timer_open +EXPORT_SYMBOL vmlinux 0xbb123505 netdev_emerg +EXPORT_SYMBOL vmlinux 0xbb17c4cb sg_miter_start +EXPORT_SYMBOL vmlinux 0xbb1d7589 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xbb272142 dev_add_offload +EXPORT_SYMBOL vmlinux 0xbb2d4d92 ptp_find_pin +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb4b78e7 pci_disable_msix +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 0xbb7a182a param_ops_int +EXPORT_SYMBOL vmlinux 0xbb84c132 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0xbb8dd5ac tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xbb8f93ca xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbbc55ce8 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xbbcaa9ed eth_type_trans +EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 +EXPORT_SYMBOL vmlinux 0xbc22f629 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xbc2cd5ec try_module_get +EXPORT_SYMBOL vmlinux 0xbc371f50 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xbc6329b0 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xbc75e7ff dev_addr_init +EXPORT_SYMBOL vmlinux 0xbc7f968d blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xbcb778e5 __devm_request_region +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcd031af blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xbcd20612 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xbce7d9d4 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xbcf01237 block_write_end +EXPORT_SYMBOL vmlinux 0xbcf35365 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xbd0c312e bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xbd17c6de gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xbd30def7 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL vmlinux 0xbd361f0b __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xbd81312b mfd_add_devices +EXPORT_SYMBOL vmlinux 0xbd8fd83f parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbda1a652 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xbdb2f903 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xbdec4d08 fence_remove_callback +EXPORT_SYMBOL vmlinux 0xbdedb6b2 irq_stat +EXPORT_SYMBOL vmlinux 0xbdefb82a scsi_execute +EXPORT_SYMBOL vmlinux 0xbdf13483 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe6028c8 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xbe63ee40 request_resource +EXPORT_SYMBOL vmlinux 0xbe689198 udp_proc_register +EXPORT_SYMBOL vmlinux 0xbe7545df kobject_init +EXPORT_SYMBOL vmlinux 0xbe758c38 dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0xbe8860a8 dispc_mgr_go_busy +EXPORT_SYMBOL vmlinux 0xbe8fb90c dispc_mgr_get_framedone_irq +EXPORT_SYMBOL vmlinux 0xbeaec56b swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xbec038aa __skb_get_hash +EXPORT_SYMBOL vmlinux 0xbecdd193 tcp_close +EXPORT_SYMBOL vmlinux 0xbed664e6 misc_deregister +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf003356 snd_ctl_unregister_ioctl +EXPORT_SYMBOL vmlinux 0xbf1cdc09 skb_tx_error +EXPORT_SYMBOL vmlinux 0xbf3b2a2b bio_init +EXPORT_SYMBOL vmlinux 0xbf486982 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xbf75ea6c tegra114_clock_tune_cpu_trimmers_low +EXPORT_SYMBOL vmlinux 0xbf78b13b sk_net_capable +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf810afe generic_write_checks +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf97e66f dev_uc_sync +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfae27c3 __blk_run_queue +EXPORT_SYMBOL vmlinux 0xbfb80381 keyring_clear +EXPORT_SYMBOL vmlinux 0xbfc34532 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xbfc60142 netif_receive_skb +EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block +EXPORT_SYMBOL vmlinux 0xbfd475bc read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xbfdee4b0 napi_get_frags +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc0056be5 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xc013c889 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0xc0161582 unlock_buffer +EXPORT_SYMBOL vmlinux 0xc0219765 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xc047875d scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xc05119fe sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc0685561 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xc06fa8bc linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc080819e netif_napi_del +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0972c12 netif_napi_add +EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode +EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc +EXPORT_SYMBOL vmlinux 0xc0cf95f9 omap_vrfb_request_ctx +EXPORT_SYMBOL vmlinux 0xc0ecdf0b udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xc0f92347 vme_lm_request +EXPORT_SYMBOL vmlinux 0xc107d12e mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xc10b1eef dev_addr_del +EXPORT_SYMBOL vmlinux 0xc1140044 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc15aee6d xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xc15b69e2 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xc170d1d1 netdev_alert +EXPORT_SYMBOL vmlinux 0xc1710597 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xc190dad5 put_page +EXPORT_SYMBOL vmlinux 0xc1956217 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xc19f9b4b mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xc1ca2a4b mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xc1cb02a1 snd_dma_alloc_pages +EXPORT_SYMBOL vmlinux 0xc1d2b751 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1e901a4 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xc1f45a5a jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xc1f4dc62 dquot_commit +EXPORT_SYMBOL vmlinux 0xc24b4c27 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xc274fb76 ps2_command +EXPORT_SYMBOL vmlinux 0xc2818c28 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2c8f45b uart_register_driver +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2fa0d86 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xc2ff5387 eth_change_mtu +EXPORT_SYMBOL vmlinux 0xc31753c3 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0xc31bb115 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xc321b3fb ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xc32d1952 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xc3362dd1 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xc339a39f led_set_brightness +EXPORT_SYMBOL vmlinux 0xc33e6160 make_kprojid +EXPORT_SYMBOL vmlinux 0xc3491e35 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xc359b14c end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xc359fb65 abort +EXPORT_SYMBOL vmlinux 0xc35ea89a ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xc3754373 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xc3756cd7 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xc38ee412 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xc39b7cc5 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xc3b8387b udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3f43eab mark_info_dirty +EXPORT_SYMBOL vmlinux 0xc3f526f1 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xc3f71265 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xc3fd633b search_binary_handler +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc422edbc unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xc4235de7 __netif_schedule +EXPORT_SYMBOL vmlinux 0xc425ec5f of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xc451fff9 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xc45c2487 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xc46dba0a would_dump +EXPORT_SYMBOL vmlinux 0xc48cd7f4 unlock_page +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4b5d865 set_page_dirty +EXPORT_SYMBOL vmlinux 0xc4c19231 get_gendisk +EXPORT_SYMBOL vmlinux 0xc50095ed netlink_unicast +EXPORT_SYMBOL vmlinux 0xc520c62b pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params +EXPORT_SYMBOL vmlinux 0xc5354d20 submit_bh +EXPORT_SYMBOL vmlinux 0xc546336d buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xc5718627 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0xc5796924 skb_insert +EXPORT_SYMBOL vmlinux 0xc58637dc pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xc5910692 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xc5932c9e dst_destroy +EXPORT_SYMBOL vmlinux 0xc59533c9 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5b7141f snd_timer_new +EXPORT_SYMBOL vmlinux 0xc5c3dd19 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xc5cd8047 param_ops_uint +EXPORT_SYMBOL vmlinux 0xc5dc51c1 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xc5e0de06 udp_disconnect +EXPORT_SYMBOL vmlinux 0xc5ec848d twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc5fe701f nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0xc607b791 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63c74c2 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xc64a26d9 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc65537d0 memremap +EXPORT_SYMBOL vmlinux 0xc661b126 deactivate_super +EXPORT_SYMBOL vmlinux 0xc66fa6a6 ida_remove +EXPORT_SYMBOL vmlinux 0xc672f6b8 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc6b0c332 ns_capable +EXPORT_SYMBOL vmlinux 0xc6b256e5 input_unregister_device +EXPORT_SYMBOL vmlinux 0xc6c3000b omapdss_register_display +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6de77b4 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7325817 register_gifconf +EXPORT_SYMBOL vmlinux 0xc738ad44 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xc73c432d __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xc73f026f user_revoke +EXPORT_SYMBOL vmlinux 0xc741318b pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xc74917d9 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xc751deb3 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xc7533df8 set_cached_acl +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc76eea02 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7963d5e vme_bus_type +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a06332 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7ab4086 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc7bcbc8d add_wait_queue +EXPORT_SYMBOL vmlinux 0xc7e3103d netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7f53bd4 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xc810979d __sock_tx_timestamp +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 0xc85a3f6c jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xc872868a amba_driver_unregister +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc885beb7 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xc88e5cff param_ops_invbool +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc89a9550 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xc89d4a69 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8c08299 tty_free_termios +EXPORT_SYMBOL vmlinux 0xc8c3560c vm_mmap +EXPORT_SYMBOL vmlinux 0xc8ce9415 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xc8d91374 d_genocide +EXPORT_SYMBOL vmlinux 0xc8e7806a elv_rb_add +EXPORT_SYMBOL vmlinux 0xc8f498df simple_lookup +EXPORT_SYMBOL vmlinux 0xc9043126 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xc9080f87 snd_pcm_period_elapsed +EXPORT_SYMBOL vmlinux 0xc9099db4 register_cdrom +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc91d184a get_user_pages +EXPORT_SYMBOL vmlinux 0xc942aec2 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xc942d2ee tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xc9493295 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xc953f8b7 omap_dss_get_next_device +EXPORT_SYMBOL vmlinux 0xc9590a2c generic_file_fsync +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc974a849 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xc97e55e4 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xc985dfce eth_gro_receive +EXPORT_SYMBOL vmlinux 0xc987eb50 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a2e359 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xc9b23847 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xc9b684ee ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xc9b8c308 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xc9c33ebd inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xc9f678b2 udp_poll +EXPORT_SYMBOL vmlinux 0xca048b5f netlink_net_capable +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca1df123 twl6040_power +EXPORT_SYMBOL vmlinux 0xca227c7c tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xca3b377f param_set_bint +EXPORT_SYMBOL vmlinux 0xca3c2dee snd_pcm_kernel_ioctl +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca42892e udp_ioctl +EXPORT_SYMBOL vmlinux 0xca55ea8e xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xca67dae0 backlight_device_register +EXPORT_SYMBOL vmlinux 0xca6ff1f0 msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0xca8776c4 set_create_files_as +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcab7efa4 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xcabb56f2 pcim_enable_device +EXPORT_SYMBOL vmlinux 0xcad574c7 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb178f49 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xcb201ee8 prepare_binprm +EXPORT_SYMBOL vmlinux 0xcb3d28b7 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xcb466063 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xcb51d1a7 ipv4_specific +EXPORT_SYMBOL vmlinux 0xcb5efbc8 generic_read_dir +EXPORT_SYMBOL vmlinux 0xcb6b9e8b genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xcb723dcb unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc6ae33 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbe84feb skb_vlan_push +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbee6439 ida_simple_get +EXPORT_SYMBOL vmlinux 0xcc1160c2 vfs_fsync +EXPORT_SYMBOL vmlinux 0xcc1fdf9d padata_do_parallel +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc27dd6e sock_wake_async +EXPORT_SYMBOL vmlinux 0xcc331715 __module_get +EXPORT_SYMBOL vmlinux 0xcc38e1e5 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xcc4018ee copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc651a3b of_phy_connect +EXPORT_SYMBOL vmlinux 0xcc9d08a4 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xcca5f9cd __quota_error +EXPORT_SYMBOL vmlinux 0xccabac5f ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xccb2f14a kobject_get +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc83c81 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xccf249bc proc_remove +EXPORT_SYMBOL vmlinux 0xccfa96ae do_splice_from +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xccff8446 elv_rb_find +EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL vmlinux 0xcd1688dd input_set_keycode +EXPORT_SYMBOL vmlinux 0xcd243669 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div +EXPORT_SYMBOL vmlinux 0xcd34406a bio_map_kern +EXPORT_SYMBOL vmlinux 0xcd4b4897 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr +EXPORT_SYMBOL vmlinux 0xcd7d265a snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL vmlinux 0xcdba81e7 generic_file_open +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc49e19 lockref_get +EXPORT_SYMBOL vmlinux 0xcdc6bffb inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xcddad2fc scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xce22edad generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2fcdc2 seq_release +EXPORT_SYMBOL vmlinux 0xce30f482 gen_pool_free +EXPORT_SYMBOL vmlinux 0xce332edf dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xce3955f4 dss_mgr_start_update +EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL vmlinux 0xce3f13bd unregister_netdev +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce8e1e88 omapdss_unregister_output +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcedb6c80 wait_iff_congested +EXPORT_SYMBOL vmlinux 0xcee98ef4 iov_iter_get_pages +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 0xcf08bb8c __sb_start_write +EXPORT_SYMBOL vmlinux 0xcf0ab84b xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xcf0d89bd kfree_put_link +EXPORT_SYMBOL vmlinux 0xcf169fea kset_unregister +EXPORT_SYMBOL vmlinux 0xcf3198f6 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xcf31f56d sk_stop_timer +EXPORT_SYMBOL vmlinux 0xcf3825a4 file_remove_privs +EXPORT_SYMBOL vmlinux 0xcf3e6524 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xcf42a902 d_delete +EXPORT_SYMBOL vmlinux 0xcf51f8a5 remove_arg_zero +EXPORT_SYMBOL vmlinux 0xcf52784d sk_ns_capable +EXPORT_SYMBOL vmlinux 0xcf573b80 simple_readpage +EXPORT_SYMBOL vmlinux 0xcf84a8dd blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xcf88625f mempool_create_node +EXPORT_SYMBOL vmlinux 0xcfa1a65e of_get_next_parent +EXPORT_SYMBOL vmlinux 0xcfcdd167 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xcff6b676 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0xd0138d52 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xd034105f lockref_put_return +EXPORT_SYMBOL vmlinux 0xd03bd2d7 genl_notify +EXPORT_SYMBOL vmlinux 0xd03dcda3 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xd0551d36 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xd06678da xfrm_input +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd07999c0 udp_add_offload +EXPORT_SYMBOL vmlinux 0xd07a1d04 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a5eb6e abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0bc0cd1 noop_qdisc +EXPORT_SYMBOL vmlinux 0xd0ec4f17 scmd_printk +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f16ea8 sock_alloc_file +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 0xd109bb6f pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xd1157735 release_and_free_resource +EXPORT_SYMBOL vmlinux 0xd149c2db i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xd151875f sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xd17d84ef __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd19d6c96 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xd1b11519 audit_log +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 0xd1ef3feb d_find_alias +EXPORT_SYMBOL vmlinux 0xd1f44778 touch_buffer +EXPORT_SYMBOL vmlinux 0xd1f73ae8 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xd200683c set_binfmt +EXPORT_SYMBOL vmlinux 0xd20826b8 omap_dss_get_overlay +EXPORT_SYMBOL vmlinux 0xd20e299b devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xd2338b50 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xd2415ea8 of_phy_attach +EXPORT_SYMBOL vmlinux 0xd24dca35 ppp_input_error +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd258e93f bio_chain +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd265cdf8 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xd275951e mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xd27a3187 kill_anon_super +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2841d02 of_device_unregister +EXPORT_SYMBOL vmlinux 0xd29c0017 dev_load +EXPORT_SYMBOL vmlinux 0xd2a941d4 sg_init_table +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2b4024e snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2ec2763 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0xd2f09cf2 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xd2f57b20 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xd30509ae posix_lock_file +EXPORT_SYMBOL vmlinux 0xd3150c74 inode_init_once +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd32e98fa tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xd36301f8 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xd372b6c4 serio_close +EXPORT_SYMBOL vmlinux 0xd381658f km_state_expired +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3ce9dd6 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xd3dbfbc4 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0xd3e6f60d cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xd3ea9541 get_super_thawed +EXPORT_SYMBOL vmlinux 0xd3edaccc register_key_type +EXPORT_SYMBOL vmlinux 0xd3f17f16 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xd412e030 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xd41895ac tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0xd418e1c0 adjust_resource +EXPORT_SYMBOL vmlinux 0xd42e773f rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xd42ff8b0 pci_iomap +EXPORT_SYMBOL vmlinux 0xd4669fad complete +EXPORT_SYMBOL vmlinux 0xd46fd33b skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xd48776da freeze_super +EXPORT_SYMBOL vmlinux 0xd4be510d dqput +EXPORT_SYMBOL vmlinux 0xd4c2244c jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xd501b508 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xd501f81c __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xd5203855 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xd5273931 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xd534999f d_drop +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd5816f1b of_clk_get +EXPORT_SYMBOL vmlinux 0xd585918d tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xd5931de4 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd59ae2ff param_ops_ullong +EXPORT_SYMBOL vmlinux 0xd5ab36e6 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xd5bc17ae simple_link +EXPORT_SYMBOL vmlinux 0xd5c4f89d pci_pme_capable +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd5ffe696 abort_creds +EXPORT_SYMBOL vmlinux 0xd603e4e3 of_device_register +EXPORT_SYMBOL vmlinux 0xd6079750 blk_fetch_request +EXPORT_SYMBOL vmlinux 0xd61347c6 register_sysctl +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd61a552d ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xd61b0611 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xd6250d5a fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd657b5e6 phy_start +EXPORT_SYMBOL vmlinux 0xd65e0ed5 tty_check_change +EXPORT_SYMBOL vmlinux 0xd6706606 inode_permission +EXPORT_SYMBOL vmlinux 0xd6815c55 snd_timer_pause +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd6c4658c jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xd6ec5384 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +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 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd75de652 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xd769705a tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xd769aaab simple_release_fs +EXPORT_SYMBOL vmlinux 0xd7765656 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xd77fd1f8 __alloc_skb +EXPORT_SYMBOL vmlinux 0xd7812437 pci_map_rom +EXPORT_SYMBOL vmlinux 0xd790d4a9 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd7afc010 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xd7dbfca9 skb_split +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7ee09fb of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xd81e9a53 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0xd828832b blk_queue_split +EXPORT_SYMBOL vmlinux 0xd843f117 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xd85cd67e __wake_up +EXPORT_SYMBOL vmlinux 0xd86fd666 pci_bus_put +EXPORT_SYMBOL vmlinux 0xd893a7cd mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b6aba3 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8fa1c52 seq_vprintf +EXPORT_SYMBOL vmlinux 0xd91a52a2 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xd9284c2c phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xd93f147f __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xd9477b7a blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0xd9514d62 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack +EXPORT_SYMBOL vmlinux 0xd95c07ec snd_info_register +EXPORT_SYMBOL vmlinux 0xd964f919 ata_print_version +EXPORT_SYMBOL vmlinux 0xd9718436 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xd976f491 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xd97edd47 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9c01079 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d6a1d5 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9dce432 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0xd9ef93d2 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xda034616 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xda38c552 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda3dce73 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xda417f80 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xda596e7c napi_gro_receive +EXPORT_SYMBOL vmlinux 0xda75e2a4 f_setown +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda80d162 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdaafc807 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xdab69eff sk_receive_skb +EXPORT_SYMBOL vmlinux 0xdac21e68 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdacd7c39 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xdace4fd2 key_validate +EXPORT_SYMBOL vmlinux 0xdad0d165 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0xdad5a179 cdev_init +EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw +EXPORT_SYMBOL vmlinux 0xdaf3867f led_update_brightness +EXPORT_SYMBOL vmlinux 0xdafcb802 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xdb2fcd27 clkdev_drop +EXPORT_SYMBOL vmlinux 0xdb425d6d mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0xdb4292e4 omap_set_dma_params +EXPORT_SYMBOL vmlinux 0xdb58c8f4 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xdb62e981 snd_ctl_replace +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb76b41a inet6_ioctl +EXPORT_SYMBOL vmlinux 0xdb93b838 dispc_free_irq +EXPORT_SYMBOL vmlinux 0xdbb510f7 scsi_register +EXPORT_SYMBOL vmlinux 0xdbc2b3a0 path_noexec +EXPORT_SYMBOL vmlinux 0xdbe63fae __find_get_block +EXPORT_SYMBOL vmlinux 0xdc034b38 input_allocate_device +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc16052f pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xdc20dfaa xfrm_register_km +EXPORT_SYMBOL vmlinux 0xdc28addc tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc454fd1 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc565911 ip_defrag +EXPORT_SYMBOL vmlinux 0xdc5c6297 videomode_to_omap_video_timings +EXPORT_SYMBOL vmlinux 0xdc644bcb fs_bio_set +EXPORT_SYMBOL vmlinux 0xdc942659 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb1f6e4 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xdcb3df5d dm_kobject_release +EXPORT_SYMBOL vmlinux 0xdcb7fe0c mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0xdcd30f2a mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xdcdc6ebb blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd10fff4 d_invalidate +EXPORT_SYMBOL vmlinux 0xdd181dc2 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd30b126 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xdd380a2d frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xdd3916ac _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xdd3ee611 secpath_dup +EXPORT_SYMBOL vmlinux 0xdd67dbaa copy_from_iter +EXPORT_SYMBOL vmlinux 0xdd725adc i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xdd88e20d sock_create_kern +EXPORT_SYMBOL vmlinux 0xdd934e1b flush_dcache_page +EXPORT_SYMBOL vmlinux 0xdd986c9e ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xddcb0d14 tty_port_open +EXPORT_SYMBOL vmlinux 0xdddf4d59 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xde189b8f dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xde29518b param_get_ulong +EXPORT_SYMBOL vmlinux 0xde31bd55 tty_name +EXPORT_SYMBOL vmlinux 0xde353f50 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xde385673 dm_put_table_device +EXPORT_SYMBOL vmlinux 0xde3d7ac8 of_translate_address +EXPORT_SYMBOL vmlinux 0xde4ffa25 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xde51fdf4 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xde5332e1 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xde8b7184 simple_statfs +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xdeb87293 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xdec030e5 arm_clear_user +EXPORT_SYMBOL vmlinux 0xded7a89d generic_setxattr +EXPORT_SYMBOL vmlinux 0xdedc7ea2 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xdf2b346f atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2dc092 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf588db6 pps_event +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf65db07 snd_timer_resolution +EXPORT_SYMBOL vmlinux 0xdf7044d2 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xdf8a8613 stop_tty +EXPORT_SYMBOL vmlinux 0xdf8db40f inet6_release +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfc4c187 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfcce1ec sock_setsockopt +EXPORT_SYMBOL vmlinux 0xdfce9e01 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type +EXPORT_SYMBOL vmlinux 0xdfe36251 mmc_cleanup_queue +EXPORT_SYMBOL vmlinux 0xdfe9c6e7 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xdff7ff85 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe00f6f5d sg_miter_skip +EXPORT_SYMBOL vmlinux 0xe0138890 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xe03e4a60 invalidate_partition +EXPORT_SYMBOL vmlinux 0xe0470742 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe05fa550 key_type_keyring +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe081653a __scm_destroy +EXPORT_SYMBOL vmlinux 0xe0818e56 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe094ef39 sg_next +EXPORT_SYMBOL vmlinux 0xe09788ee simple_fill_super +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b68300 bdevname +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0d07318 input_register_handle +EXPORT_SYMBOL vmlinux 0xe0d30b90 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe127fb18 down_killable +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe14cbb0e generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xe154e1ae max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xe1642359 dev_uc_del +EXPORT_SYMBOL vmlinux 0xe1717d61 ll_rw_block +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe182ffd7 dcb_setapp +EXPORT_SYMBOL vmlinux 0xe19e4a3d dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0xe1cc7107 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xe1e57213 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xe1ee5766 pci_disable_device +EXPORT_SYMBOL vmlinux 0xe1f0ab3a _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xe1f2d82d ip6_frag_init +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe21c0b5a invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24243c6 redraw_screen +EXPORT_SYMBOL vmlinux 0xe24c8c7e mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe2502879 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xe251b2cb jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xe25f742d iov_iter_advance +EXPORT_SYMBOL vmlinux 0xe2665819 blk_make_request +EXPORT_SYMBOL vmlinux 0xe272cc64 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xe2926006 of_find_property +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2a49efd phy_device_register +EXPORT_SYMBOL vmlinux 0xe2b18927 simple_dname +EXPORT_SYMBOL vmlinux 0xe2bc1f50 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xe2cc96f7 __do_once_done +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2f51f21 param_set_ulong +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe3146e4b blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xe316f345 sock_i_ino +EXPORT_SYMBOL vmlinux 0xe3194447 phy_driver_register +EXPORT_SYMBOL vmlinux 0xe33b45c0 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xe376e6e6 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xe37d10ae omap_dispc_unregister_isr +EXPORT_SYMBOL vmlinux 0xe38d16d8 tty_port_init +EXPORT_SYMBOL vmlinux 0xe38e2a1b pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xe39140e0 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xe3aa2010 serio_open +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3c3c875 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xe3ce2c7b vlan_vid_add +EXPORT_SYMBOL vmlinux 0xe3d14153 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3dc2661 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xe3de8717 read_code +EXPORT_SYMBOL vmlinux 0xe3e5070e nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xe3ec3ab8 snd_pcm_limit_hw_rates +EXPORT_SYMBOL vmlinux 0xe3f59a71 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xe4092786 kill_block_super +EXPORT_SYMBOL vmlinux 0xe413be4a memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xe43274bc proc_dointvec +EXPORT_SYMBOL vmlinux 0xe43836e4 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xe4390545 nf_log_trace +EXPORT_SYMBOL vmlinux 0xe43fb61b security_path_link +EXPORT_SYMBOL vmlinux 0xe488aa17 i2c_transfer +EXPORT_SYMBOL vmlinux 0xe4973c03 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xe49d124d xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid +EXPORT_SYMBOL vmlinux 0xe4d94a66 vm_map_ram +EXPORT_SYMBOL vmlinux 0xe4d9cc56 mdiobus_read +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe501e856 inet_bind +EXPORT_SYMBOL vmlinux 0xe5093d26 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xe5232fbf mmc_erase +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52f5128 revalidate_disk +EXPORT_SYMBOL vmlinux 0xe532465c serio_bus +EXPORT_SYMBOL vmlinux 0xe538202e tty_hangup +EXPORT_SYMBOL vmlinux 0xe5445af6 omap_get_dma_dst_pos +EXPORT_SYMBOL vmlinux 0xe559cfc3 dentry_update_name_case +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 0xe5875358 genphy_update_link +EXPORT_SYMBOL vmlinux 0xe5ad5820 __secpath_destroy +EXPORT_SYMBOL vmlinux 0xe5b596ef input_event +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5ef6074 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xe605fc65 nvm_put_blk +EXPORT_SYMBOL vmlinux 0xe623d9cf pagevec_lookup +EXPORT_SYMBOL vmlinux 0xe637207d bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xe63b1bab vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xe64a7aee cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xe662d10f cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xe66452ab dql_init +EXPORT_SYMBOL vmlinux 0xe67d6f79 sk_capable +EXPORT_SYMBOL vmlinux 0xe68301f5 bio_phys_segments +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69abb2c i2c_del_driver +EXPORT_SYMBOL vmlinux 0xe69feb2b sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xe6a99841 dump_truncate +EXPORT_SYMBOL vmlinux 0xe6b68a8a pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xe6b6d4ab tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xe6d2a767 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6f69783 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe7075b97 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv +EXPORT_SYMBOL vmlinux 0xe70cc6df generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xe72460ed skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xe74a63f6 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xe768c61e init_task +EXPORT_SYMBOL vmlinux 0xe76a8b6d d_find_any_alias +EXPORT_SYMBOL vmlinux 0xe775ea13 mpage_writepages +EXPORT_SYMBOL vmlinux 0xe7963d97 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xe7976fd7 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7adf403 security_file_permission +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 0xe7d64207 edma_filter_fn +EXPORT_SYMBOL vmlinux 0xe7e15910 dispc_clear_irqstatus +EXPORT_SYMBOL vmlinux 0xe7efbe70 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xe7f1deeb copy_to_iter +EXPORT_SYMBOL vmlinux 0xe80ce44c uart_add_one_port +EXPORT_SYMBOL vmlinux 0xe8137ce5 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xe81b6125 skb_make_writable +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe8286184 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL vmlinux 0xe8416e4c snd_pcm_mmap_data +EXPORT_SYMBOL vmlinux 0xe843f2d9 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xe848ee66 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xe84b0d07 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xe8561e00 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe88f7d04 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xe89888cd swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8a747cc check_disk_change +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 0xe8e64d23 bio_endio +EXPORT_SYMBOL vmlinux 0xe8f44c53 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xe9129fb4 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xe912da6b unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xe9131449 vfs_whiteout +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xe9426062 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xe94ac3f6 pci_release_regions +EXPORT_SYMBOL vmlinux 0xe94ccbf1 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe9620a81 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0xe975655c sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xe97f1dc1 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xe9956e70 pci_save_state +EXPORT_SYMBOL vmlinux 0xe99d221b __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xe9b3d460 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xe9be808d lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xe9c6e8e9 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xe9ccfcd3 ioremap_cache +EXPORT_SYMBOL vmlinux 0xe9d7ef1a nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xe9dc58a3 input_release_device +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea06855d netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xea0d6c7d d_lookup +EXPORT_SYMBOL vmlinux 0xea1f5b88 samsung_rev +EXPORT_SYMBOL vmlinux 0xea4351aa input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xea648867 register_netdev +EXPORT_SYMBOL vmlinux 0xea6e5c93 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea8d3f20 ilookup +EXPORT_SYMBOL vmlinux 0xeaa5a2e7 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xeaac69a1 genphy_suspend +EXPORT_SYMBOL vmlinux 0xeab9df3e set_posix_acl +EXPORT_SYMBOL vmlinux 0xeacf188e bdput +EXPORT_SYMBOL vmlinux 0xead2f499 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xead9c2a2 ptp_clock_register +EXPORT_SYMBOL vmlinux 0xeadcd8c8 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl +EXPORT_SYMBOL vmlinux 0xeb0565cf blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xeb181f51 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xeb1b120e omap_set_dma_write_mode +EXPORT_SYMBOL vmlinux 0xeb34b49c write_inode_now +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb658bbe mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xeb658c01 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xeb69df36 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xeba06799 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xebaac421 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xebabff1a generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xebb57428 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xebc7dfc6 skb_clone +EXPORT_SYMBOL vmlinux 0xebd18deb sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xebda1b9c wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xebda7ede xfrm_state_add +EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high +EXPORT_SYMBOL vmlinux 0xec04bf83 sock_edemux +EXPORT_SYMBOL vmlinux 0xec077a43 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec25a641 mmc_release_host +EXPORT_SYMBOL vmlinux 0xec3ad85f snd_ctl_rename_id +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec6adffb dss_mgr_set_timings +EXPORT_SYMBOL vmlinux 0xec7c869a snd_ctl_register_ioctl +EXPORT_SYMBOL vmlinux 0xecb30d99 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xecb96bfa param_ops_long +EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xecd41619 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf7db02 start_tty +EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl +EXPORT_SYMBOL vmlinux 0xed05b9d5 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xed0abbc3 cdev_alloc +EXPORT_SYMBOL vmlinux 0xed215bf7 kmap_atomic +EXPORT_SYMBOL vmlinux 0xed232d43 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed69d18c clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xed7205b1 dm_put_device +EXPORT_SYMBOL vmlinux 0xed8d43b1 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xeda5f21a __neigh_event_send +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc3a886 mdiobus_free +EXPORT_SYMBOL vmlinux 0xedc7f4ec dq_data_lock +EXPORT_SYMBOL vmlinux 0xedcd3bb5 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee11dc5f of_n_size_cells +EXPORT_SYMBOL vmlinux 0xee1480a6 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xee17349d blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xee2bc2d0 omapdss_is_initialized +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee325e76 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xee3496c3 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0xee4a8828 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xee532c5e vfs_iter_write +EXPORT_SYMBOL vmlinux 0xee59f5f7 alloc_file +EXPORT_SYMBOL vmlinux 0xee5d3798 read_cache_page +EXPORT_SYMBOL vmlinux 0xee65e4d5 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xee715ef8 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xee75f421 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xee76e35b netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xee78581e netdev_features_change +EXPORT_SYMBOL vmlinux 0xee78e4c5 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xee7e5952 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9a68a4 get_tz_trend +EXPORT_SYMBOL vmlinux 0xee9c3647 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeed3635b proc_dostring +EXPORT_SYMBOL vmlinux 0xeee950f6 lease_modify +EXPORT_SYMBOL vmlinux 0xeeead040 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xeef0f211 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeeffd7dc locks_copy_lock +EXPORT_SYMBOL vmlinux 0xef0d8e50 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xef0f3eb3 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xef1b1e44 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xef228a36 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xef2a734d phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xef2fdc4f __percpu_counter_init +EXPORT_SYMBOL vmlinux 0xef32ab33 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xef5cd495 blkdev_fsync +EXPORT_SYMBOL vmlinux 0xef64815d inet_del_offload +EXPORT_SYMBOL vmlinux 0xef79d038 dma_common_mmap +EXPORT_SYMBOL vmlinux 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL vmlinux 0xefce1a64 sk_stream_error +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 0xefd739f1 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xefd973a6 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe3c4be alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf01a6ea5 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0xf023092a __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xf0504ef1 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL vmlinux 0xf05f1526 register_sound_dsp +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf06c303c omap_video_timings_to_videomode +EXPORT_SYMBOL vmlinux 0xf08865d4 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0c9618c touch_atime +EXPORT_SYMBOL vmlinux 0xf0cb7c3c tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xf0d06f98 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xf0dfdf57 register_md_personality +EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0feed15 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf1089cc1 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xf1092373 poll_freewait +EXPORT_SYMBOL vmlinux 0xf10bb171 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xf11e609f tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0xf12a509a phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xf12d3e7c generic_ro_fops +EXPORT_SYMBOL vmlinux 0xf130a1d6 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xf13bfe29 __kernel_write +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf14b3cca inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xf158a1bb gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xf1591d5f md_check_recovery +EXPORT_SYMBOL vmlinux 0xf15b2981 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xf17e2b6c xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xf17fd5b6 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xf1831de2 ppp_input +EXPORT_SYMBOL vmlinux 0xf19518bc sock_create +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19d6aa8 snd_pcm_lib_read +EXPORT_SYMBOL vmlinux 0xf19e9355 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xf1ad32e2 bio_advance +EXPORT_SYMBOL vmlinux 0xf1b80bda inet6_del_protocol +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 0xf1f6a678 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xf1f86ea1 tty_kref_put +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf2186f6c phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xf2188018 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xf21a074e md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2445ac6 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0xf2481561 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xf25580fa scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xf25ea388 generic_getxattr +EXPORT_SYMBOL vmlinux 0xf263b1f9 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xf26610e1 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xf2832611 con_is_bound +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2997781 bdi_destroy +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2a21f95 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2cb0930 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xf2d59e72 nvm_get_blk +EXPORT_SYMBOL vmlinux 0xf2ef31db of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xf303b8ba nonseekable_open +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31513dd param_set_ullong +EXPORT_SYMBOL vmlinux 0xf31f5081 sock_no_accept +EXPORT_SYMBOL vmlinux 0xf31fd6b4 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xf3288cef device_get_mac_address +EXPORT_SYMBOL vmlinux 0xf32f67dc __ps2_command +EXPORT_SYMBOL vmlinux 0xf33a03d3 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf364db00 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xf37e93cb alloc_fcdev +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf38b4c26 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf3bf2d1e tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xf3bff2f3 try_to_release_page +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3ebee14 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xf40019c0 tegra114_clock_tune_cpu_trimmers_init +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf4214fdb devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xf435d38e blk_run_queue_async +EXPORT_SYMBOL vmlinux 0xf44cdd7e tcp_seq_open +EXPORT_SYMBOL vmlinux 0xf46d8acd blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xf4738240 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xf473ffaf down +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf485e4fc con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xf49c0bbd zpool_register_driver +EXPORT_SYMBOL vmlinux 0xf4a7fc6d omapdss_compat_init +EXPORT_SYMBOL vmlinux 0xf4aa294b iterate_dir +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4e22d9b omapdss_default_get_recommended_bpp +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf50e0056 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0xf52b55ba replace_mount_options +EXPORT_SYMBOL vmlinux 0xf52e011c mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54c51a2 dma_pool_free +EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp +EXPORT_SYMBOL vmlinux 0xf564b7e9 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xf58c1b0f crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xf5ad00aa input_free_device +EXPORT_SYMBOL vmlinux 0xf5bac1e7 inet_put_port +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5cd4451 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xf5dacadd km_policy_expired +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5ed8b3c inode_get_bytes +EXPORT_SYMBOL vmlinux 0xf5fad784 param_set_charp +EXPORT_SYMBOL vmlinux 0xf61d235e pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf6452485 __inode_permission +EXPORT_SYMBOL vmlinux 0xf64e739f neigh_seq_start +EXPORT_SYMBOL vmlinux 0xf6656736 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xf67673a8 submit_bio +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf67d2dcf dev_get_by_name +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6851d5f register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xf6a0cb28 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6c1877d dev_printk +EXPORT_SYMBOL vmlinux 0xf6db9fb0 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f3cef6 omap_vrfb_setup +EXPORT_SYMBOL vmlinux 0xf6f8e2d0 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf706b081 tty_do_resize +EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb +EXPORT_SYMBOL vmlinux 0xf72e6338 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xf745b476 skb_put +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf764ac2b dput +EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod +EXPORT_SYMBOL vmlinux 0xf7aaeddc ida_init +EXPORT_SYMBOL vmlinux 0xf7ad47c8 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xf7c5da34 clkdev_add +EXPORT_SYMBOL vmlinux 0xf7f2ab9d xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xf7f54bea set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xf7fcded5 omapdss_output_unset_device +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf81d125b cros_ec_query_all +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82d94ac kernel_accept +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf83a7744 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xf84784e2 scsi_init_io +EXPORT_SYMBOL vmlinux 0xf8482fb4 __d_drop +EXPORT_SYMBOL vmlinux 0xf84f950b bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xf853bbca omap_vrfb_map_angle +EXPORT_SYMBOL vmlinux 0xf85e9fee single_open +EXPORT_SYMBOL vmlinux 0xf87f3a18 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0xf88b081a from_kuid_munged +EXPORT_SYMBOL vmlinux 0xf8998807 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xf89bc915 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xf89efb58 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xf8a39a00 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xf8b8d34e inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8f13ae0 of_platform_device_create +EXPORT_SYMBOL vmlinux 0xf90a2c7a filp_open +EXPORT_SYMBOL vmlinux 0xf914946d blk_run_queue +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf9427374 dispc_request_irq +EXPORT_SYMBOL vmlinux 0xf95ad9c5 get_acl +EXPORT_SYMBOL vmlinux 0xf99d3ba8 generic_writepages +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9aee4b5 sock_rfree +EXPORT_SYMBOL vmlinux 0xf9cacd8d remove_proc_entry +EXPORT_SYMBOL vmlinux 0xf9e140f7 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9f75ce1 netdev_state_change +EXPORT_SYMBOL vmlinux 0xfa079a95 snd_pcm_hw_constraint_list +EXPORT_SYMBOL vmlinux 0xfa1c5463 snd_unregister_device +EXPORT_SYMBOL vmlinux 0xfa252cc7 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xfa3d4595 ps2_end_command +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5f0a58 cad_pid +EXPORT_SYMBOL vmlinux 0xfa7e1136 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xfa876bc2 pci_match_id +EXPORT_SYMBOL vmlinux 0xfac5374f blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xfac68eba arm_elf_read_implies_exec +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd2e14 pgprot_user +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfae17c9c tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfb040c59 snd_pcm_hw_param_first +EXPORT_SYMBOL vmlinux 0xfb0da2a5 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xfb12940a snd_card_new +EXPORT_SYMBOL vmlinux 0xfb2f8ce2 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xfb3a91bd bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfba4a710 max8998_update_reg +EXPORT_SYMBOL vmlinux 0xfba4d4d6 snd_card_file_remove +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb3da7b cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xfbbc23fa param_set_byte +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd9d4ab page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xfbf267ac simple_transaction_get +EXPORT_SYMBOL vmlinux 0xfbf6e798 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc0a26bf neigh_connected_output +EXPORT_SYMBOL vmlinux 0xfc1cc6bf blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xfc3908f5 fence_default_wait +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3a790f nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0xfc3d992a qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xfc49cab2 simple_setattr +EXPORT_SYMBOL vmlinux 0xfc64750a skb_free_datagram +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc710b00 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xfc737e14 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xfc77e66f snd_seq_root +EXPORT_SYMBOL vmlinux 0xfc79cd91 tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0xfc80e0cf of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfccb3584 prepare_creds +EXPORT_SYMBOL vmlinux 0xfcd7668b inode_set_bytes +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcef7d9d inetdev_by_index +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd001921 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd403cc4 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xfd5683b9 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0xfd6d59ac __serio_register_port +EXPORT_SYMBOL vmlinux 0xfd7f9387 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xfd8c5afc release_fiq +EXPORT_SYMBOL vmlinux 0xfd9332c4 xfrm_policy_hash_rebuild +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 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe2b6d0a __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xfe40bf95 dss_feat_get_num_ovls +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe77e187 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xfe783301 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe996690 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xfea0e99d dquot_alloc +EXPORT_SYMBOL vmlinux 0xfeab147d crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xfecdf51f simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee833c3 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0xff0fdde0 phy_device_remove +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff238b7d register_sound_special_device +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 0xff8cbb1f idr_destroy +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xff9d98b4 ip_options_compile +EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit +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 vmlinux 0xffdfb085 of_get_property +EXPORT_SYMBOL vmlinux 0xfff17867 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xfff824cc udp_lib_setsockopt +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xa05b43fa sha1_finup_arm +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xd5d0cd7e sha1_update_arm +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x48596d52 ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x5bcf839d ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x8d38ac86 ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x9becdd0c __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xeec20caa ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xf5b96cba ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xf64681f0 ablk_decrypt +EXPORT_SYMBOL_GPL crypto/af_alg 0x156d65af af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x1cbc09ca af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x247417a9 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x5104e60b af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x7e05d72d af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x8f6a6807 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x9ad0d80d af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xb67bbf41 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xc127fde1 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc8c43d3d af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xd954ef95 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x6244f4e5 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xb64f4359 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xf32bb46e async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x31125a4f async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb5a2b11f async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x027527fc __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4947a2d2 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa65b448f async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb1df9c82 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x176b770b async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x56b44c3f 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 0x5eb1903e crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x8ecd8a95 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x15bfbd8d cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x19e40cb4 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x225f463b cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x2345a37c cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x37ad6b19 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x75b9103b cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x959fbece cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xa7ffeb5d cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xb39423fd cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xe99335fd 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 0xa468d812 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x3cc4b1a8 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x4881fff4 shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x63e8df16 mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x7a0429b6 shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x865fb6b4 shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0xbceecdc7 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0xcbd65f27 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xf7bdbb19 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x02aaa724 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x54bfb62a crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x6915c88c crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xc70c2875 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 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 0x2e2cbe19 xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x82cde76b __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x8f56cafa 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 0x3154014f __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x820a5361 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x853e913c __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xbd1691c4 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x16a63862 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1c0e3fb6 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1e50ab8f bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1fb3edbd bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x24504c3c bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3a389cd0 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3f58ffe8 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4b0b9bf1 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x581f0691 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5f49197e bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x69fced27 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x75c2d3ad bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x797a4fb2 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x88751187 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8ec34132 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x955527c6 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9fdeb435 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa5027c07 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb31b7013 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb78186b4 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc92daa34 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd8821e64 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf9b43845 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfd23f34c bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0f3f4cb8 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5950b8f6 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x730fa40b btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xab602278 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd3fe6c91 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xded28aa1 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x042535d1 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x043c2468 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x39d17b91 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4b249720 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4fbae911 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x501545f9 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x83d621fc btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x916d52e1 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x995371dd btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb525d6a6 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbad6d739 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd05b7cc5 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0d1408fa btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x23dabaf5 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3e497be6 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x45bc8ef0 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x46c0df8f btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x93c2856a btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa3679ef4 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa9aa20da btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xac93a907 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf043ecf2 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf6e28f2f btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5c234c52 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xde57432e qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3c97d73c btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x4d201b3c 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 0x53f95e39 clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x612214bd clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x669bd1fd qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x67ae803a clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x709d9cf0 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73964fc2 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x77c457fa qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7c187086 qcom_find_src_index +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 0x99cecec8 clk_disable_regmap +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 0xab58171c clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc7994798 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb0c5248 clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcc37d14b clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcd0a83c6 clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xce4341a2 qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd25fd154 clk_rcg_lcc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe06cc7ee qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe703bcad clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf0211016 qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf1f136dc clk_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf2f68154 devm_clk_register_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 0xda1beb98 bL_cpufreq_unregister +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0xfd16e9fb bL_cpufreq_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4673d320 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x58b731eb dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x646ec07f dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9dffc4e0 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xabe2ebff dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x7eefa7b1 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x879e91f4 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xc24455c0 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0af8b947 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0da37651 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1638c131 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x19c0125a edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c73d5da find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x36118665 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3a71cb95 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x55a8b05c edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5bf9a8ad edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x62123105 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7545bfa1 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7b89d807 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7d6e140e edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x81ed9799 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x823c89d8 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x998c47de edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa0cc800a edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xadba84a1 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0a9e83d edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xca01d1ea edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd5beaa6f edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd74e4eb8 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe191d730 edac_mc_alloc +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 0x25730bf9 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4828a654 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7aab639f fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x86b3c61e fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa48407ba of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa58c31a6 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x4d16cc05 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xaaf1211e __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0x4b0400b6 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 0xc23947b2 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 0x0ad5b657 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x28449216 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x28bf3250 drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4128b134 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x41ce6c4c drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x43a6fd52 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4536bf65 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4cbe27fb drm_gem_cma_describe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4ea23914 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5afe9f34 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7109d6cd drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9266822d drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9db78c01 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa47c788d of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa80ce07f drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb1b38d8c drm_gem_cma_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb50def7c drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec6fd970 drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf1434b09 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1148b623 drm_fbdev_cma_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1db0f180 drm_fb_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2b532b0b 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 0xcc337fd5 drm_fbdev_cma_restore_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xeacdad82 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf0c2f70f drm_fbdev_cma_init +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 0x48a5deb2 imx_drm_set_bus_format +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x5f056ff0 imx_drm_crtc_vblank_put +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x95f9278a imx_drm_connector_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xa27219ed imx_drm_add_crtc +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xc81333e6 imx_drm_encoder_get_mux_id +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xcaf701d7 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 0xf118b0c1 imx_drm_encoder_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xfd77ee33 imx_drm_encoder_parse_of +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchip_drm_vop 0xe4fa3f92 rockchip_drm_crtc_mode_config +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x4205e1ef rockchip_drm_dma_attach_device +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x57d06c06 rockchip_drm_dma_detach_device +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x9095bca5 rockchip_fb_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x90f473cf rockchip_drm_encoder_get_mux_id +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xb7673021 rockchip_register_crtc_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xde75d964 rockchip_unregister_crtc_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x58eff7bb ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6357a5ba 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 0xb432e585 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +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 0x0cfd333e ipu_cpmem_set_image +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0d3cce05 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 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 0x12762569 ipu_cpmem_set_axi_id +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 0x13bb4178 ipu_cpmem_interlaced_scan +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 0x1ba497eb ipu_pixelformat_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e913d9f ipu_csi_get_window +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2424c9a6 ipu_csi_is_interlaced +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x274a5855 ipu_module_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f38953f ipu_cpmem_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f72bb6c ipu_idmac_select_buffer +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 0x361b0e09 ipu_dp_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3a91d346 ipu_idmac_set_double_buffer +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 0x3f34ab71 ipu_cpmem_set_format_passthrough +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x415694e5 ipu_idmac_disable_channel +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 0x4c8ce79a ipu_idmac_channel_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x513b026d ipu_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51475e87 ipu_dmfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51bbef00 ipu_srm_dp_sync_update +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51bf5e0b ipu_cpmem_set_rotation +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 0x543cd07c ipu_ic_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5b16ca84 ipu_csi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5cbbc34f ipu_idmac_wait_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5cfc35c8 ipu_dc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5f55da5c ipu_cpmem_set_format_rgb +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6036749f ipu_cpmem_set_stride +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 0x66f5fb35 ipu_cpmem_set_fmt +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6941d468 ipu_map_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6e5c03f1 ipu_idmac_get_current_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 0x7291e691 ipu_idmac_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7583ffbe ipu_cpmem_set_high_priority +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x761028bf ipu_idmac_channel_irq +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 0x773a4390 ipu_di_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x78ccc32e ipu_module_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7c8effbd ipu_cpmem_set_yuv_planar +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x83727f2a ipu_cpmem_set_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x848827d4 ipu_dp_disable +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 0x8a504e89 ipu_idmac_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8de8c1b5 ipu_cpmem_set_yuv_interleaved +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x91c23fcb ipu_dc_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9203b337 ipu_set_ic_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9224df54 ipu_dc_disable +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 0x9c335d85 ipu_pixelformat_is_planar +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9e7d168f ipu_cpmem_set_block_mode +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 0x9fb979ad ipu_dmfc_get +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 0xa96882d8 ipu_ic_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb0a9f9c7 ipu_idmac_lock_enable +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 0xb4d6d7c4 ipu_smfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb93914c5 ipu_ic_task_idma_init +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 0xbc2549b4 ipu_cpmem_zero +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc187d728 ipu_wait_interrupt +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc3c2cdb0 ipu_smfc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc6675aa9 ipu_csi_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc677177d ipu_smfc_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc848c5d7 ipu_dmfc_free_bandwidth +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc88d89a1 ipu_mbus_code_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc97e7a0f ipu_di_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd7c6998 ipu_ic_task_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcdb14e51 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 0xd5055dd9 ipu_dmfc_alloc_bandwidth +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd57343b7 ipu_idmac_clear_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdcf91bf1 ipu_dp_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe300a959 ipu_dp_setup_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe3b86336 ipu_csi_init_interface +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe6243c52 ipu_dc_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe9f45e9b ipu_idmac_buffer_is_ready +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeb283caf ipu_cpmem_set_resolution +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf69d6cb6 ipu_csi_set_test_generator +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf7d99d69 ipu_dc_init_sync +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf9ed222e ipu_dp_set_window_pos +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfa405d9b ipu_idmac_enable_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfc77ba9b ipu_cpmem_set_yuv_planar_full +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfd66d746 ipu_set_csi_src_mux +EXPORT_SYMBOL_GPL drivers/hid/hid 0x01edeb9e hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x04843700 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x04eb2c58 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x192fecf7 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x205cbc58 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x33d71040 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x36b00589 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x374b65c5 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5cb3c042 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6173e6c2 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x66cdadaa hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x672c9ba7 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6e82237d hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x70eaf282 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x719e5f89 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x77a8ec7e hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b1316a2 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d0ce87e hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8e4b531c hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9244b6db hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x95b247ae hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xacc2c772 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb5ad7b35 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb97a4b2d hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb9926f5e hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbabb1c08 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbdec443c hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbf782921 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc7483223 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcca57d7f hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd8e5df4b hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdbad8d43 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdfd4424b hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfaa29cc7 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd46dbd7 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe7a5b2b hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x0e437d07 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 0x1fc6a76a roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5b69262d roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7b70f0c8 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x88bf0e65 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa617dd53 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb876d963 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x14b8efff sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x197b56eb sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x52e644fc sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbd935cb4 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd3e2a522 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe98bfaac sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xeddb1a7e sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf1a29dfb sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf500fb17 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x920b4188 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x0ac6fac6 ssip_slave_start_tx +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x4b5b86b8 ssip_slave_stop_tx +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x5d615359 ssip_slave_running +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xc2489942 ssip_slave_get_master +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xc91f40e1 ssip_reset_event +EXPORT_SYMBOL_GPL drivers/hsi/controllers/omap_ssi 0xbdcaa8cb ssi_waketest +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x00f20814 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x11e1ca3e hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1c3be99e hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x29445a53 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2c80866c hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x329d78a1 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x37bdd72f hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3ff24574 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x48dbe677 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4ef50dc8 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6b89dbf1 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x80285f7b hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x990ad705 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb3b7991d hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xde8ac37c hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xec06a68c hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf78a4e2f hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf924e1fe hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x236a17a9 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x589f6200 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x7928d584 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x17aa1def pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x29d190b1 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x467ea461 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5c1d998f pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5e1c7833 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x64c5685f pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x652f15ea pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6bac1fda pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x73c0347c pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9ee67c93 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9fa23172 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa67dedd3 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd9c79360 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xec4a9d03 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf4488a8f pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x08cf9b29 hwspin_lock_request +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x0fc1860f __hwspin_lock_timeout +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x41031507 __hwspin_trylock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x42f42fae hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x4fc2a391 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x785cbda1 hwspin_lock_free +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x8e9e4633 hwspin_lock_register +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xb23754f1 hwspin_lock_unregister +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xd8db0cf6 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xe9b96fde __hwspin_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0d08a146 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4b20244f intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4f29a0b0 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6250bdb9 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6b87a2bf intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb6ca7968 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc22be947 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x031d8d6f stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4e2cc3bb stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x535c86d1 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8cf37764 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9022b4e2 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x09fbeb00 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x0c561e58 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x582beaed i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x786442e5 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xaca3339a i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x4f8479c1 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd3abf054 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x464682bc i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xcc506538 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x430ea8c6 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa2327413 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa8848fac bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x213b9ff5 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x339fb75f ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x478e3485 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8cc89c84 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x99601069 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa0e9dd20 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa36e2856 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdf1d2c9e ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xeef399a8 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 0x9b6c9d0c iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xa4cc9449 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x0def6fc3 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xc1553d82 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x018f1a3a bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x257e7889 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x3896b78b bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x29c4a4a1 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x462e1ecc adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x575ea93e adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x63168595 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x836028d7 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x90f552d2 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9877eafa adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa1c430b9 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa7e2853a adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe334608c adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xeeec311d adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfe0afd8e adis_reset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x01c169a2 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x02f7e121 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x11e15dbf iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x125d45ad iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1713f09c iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x173269ca iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x197c91b1 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x23b94f0a iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x24d8a184 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x29809250 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x31a99c51 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x36e6822e iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e396782 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x41e564e4 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f8aa3e7 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x750df735 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x86fe8f61 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x92a0827e iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x93c4da5c iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x983ed4ad devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa32199a7 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb202e067 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc152912b iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc9a431f1 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcaa516d1 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdaec1299 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdd85d0a2 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xde4d24d5 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe8b50301 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf74f672d iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xff591b3a iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xc2d530bc input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x3b4b1e45 matrix_keypad_parse_of_params +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x025e6dcc 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 0x333d941f cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x873b6216 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x95804a62 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x0fa8d886 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf5a43ce3 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xfe1c7437 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x01d0f197 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x1fb3f3f4 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x03699427 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x1da897fe tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x909dc666 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa24080a3 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x144015ae wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x343a86a8 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4a41abdb wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4f215a83 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x57014c5f wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7e946ce1 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8615519b wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8f09e81e wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x95400ffd wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9bab4cc1 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd0b457c1 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe4844bbe wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2f7f1921 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x58601eb3 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x675865c7 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7148b1fa ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7e344e37 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x83b8bc2a ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xba339a05 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xca370545 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd1e9d795 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 0x2291c9cd gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x28a42932 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x334998b6 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3599d2a7 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x47e85d67 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4f5dc5fc gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x585d1463 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x723b8e27 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x78895599 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7e7fd848 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9b755d4b gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa2ccec3b gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xacac036e gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xafa3181b gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd04452aa gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe259927a gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfff4c70d gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5917d529 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5a1ad78e led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x792c60d9 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x793e4c51 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x897eef3b led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa6fe7753 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x022c4378 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3f5a8807 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x487840c6 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x48eeb1d0 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x544c783e lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x72ce7fd0 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9ae0d335 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa49b6003 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xada91b35 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbb090cf4 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xeb7ccf0a 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 0x190edc94 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1d23c1f6 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2ff0a873 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5d454532 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7c5ec835 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x84b5c841 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa6c2b3c8 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa92628c4 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbabb5847 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbe4e8329 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc0eeafb7 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xca73cbd3 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe763f0c9 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf9cca8f3 mcb_release_mem +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 0x17a80c1f 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 0x1ec0242d dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x66750533 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 0x77a76c9e dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9d89471c dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa918a41a 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 0xcf9fa828 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd69a8bd3 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xece71d62 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 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 0xe9648754 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 0x352d830c dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4b9ffdae dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x50a12466 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5d3d5c79 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x76acb668 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xaebc417d dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb206e242 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x0a5c03c8 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xa35ef8b1 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 0x368e3235 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 0x4d5edb76 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 0x9da98b82 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 0xab53ed87 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 0xd2cb608f dm_rh_delay +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 0xfc546ed0 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 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 0x94c70097 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 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 0x0b15042c saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x20948f8a saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x40228dcd saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4522c520 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x575dfe8c saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x657efd52 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6cb73131 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x85ffc5e2 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9e90d9d4 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdd4731a3 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x14276659 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3db2ba54 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x58bd8804 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5c24ed9d saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x66b7d454 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7a6151ae saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xae4fb031 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1cde5ab8 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2fb71f85 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37b610ec 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 0x3ae0f6e3 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3d6dbba8 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4868be19 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x49b4c795 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x61f955a2 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6c8368dd 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 0x96fca9b6 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb8d6e730 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc0542403 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc20bd20a sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc4f0a1cd smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xee776156 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf58b0cf0 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf875455f smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x421dbf35 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x97148c0c cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x92fe5efb tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x0bee86be media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x13be6625 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x1baea003 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x25cc963c media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x288e7729 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x3f0e72bc media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x407c4b27 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x5292856d media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x61a4f0c7 media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x6e4e75a2 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x84a86ff0 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x9be5587f media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0xa3f406e5 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xa85898a1 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xc03611d1 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xdc4cfc2a __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0xf4573215 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xf748f832 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x64f33f22 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x038ce417 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x24a28920 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x25708656 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2ec2c399 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3f7ff41d mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x44332e88 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x64f8a7c9 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6ed2929b mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7290e67f mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x77286cdd mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7aa9a6bb mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8e7dc08e mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa228c136 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xacfc32f9 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xad219d7f mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc3eb0ce2 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd5d97055 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdb79b547 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf7588222 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x09097764 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x29573b93 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2a0ecb78 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x32803bd1 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3349fec0 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x35f996ef saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4ce4f5df saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6a1df6c2 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x722adc8a saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7ce14731 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x87ebf669 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8a1379a8 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9f7417f6 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc1d9e07e saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc9a8f140 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xca655063 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xce14137d saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd375543f saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd64b60fc saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x05aa872f ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x558e7ca9 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x75a66abb 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 0x8397d66d ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xcec3758f ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf386842f ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xfbe44f4e ttpci_budget_debiread +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 0x2dff819a 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 0x4611b8c9 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 0x7d9a11a6 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x8f4ba8ce xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xafc70ace xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xcf007073 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xde0ea854 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 0x5ce413cb xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x2c44d6dc radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xbc3c109b radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x36b3beda rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x45f1506b ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x47f4df90 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4a14f522 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7e7b2c5d rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7eccd9f9 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x81dc0f86 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8594976c rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x90ada067 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9b699908 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbc5efd0d ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbd163216 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 0xcb1f3f81 rc_keydown_notimeout +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 0xe52c6473 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xebcd8bba rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf31549a5 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x20f8fbf3 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x95536143 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xf242adc8 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x7dc4d5d4 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xb5381387 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xa80cc33f tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x15b7cd4d tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x5831f8bb tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xea4afa03 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x351d33f2 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x80b74a33 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x69787d90 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xc5f039c1 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x881bd6b5 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x04afadac cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x069c50e6 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x14905f07 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2ac5c7e4 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3748996e cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x38476780 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3bb4579a cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6adb39f9 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7572c7f6 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x76b7affd is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x77611be9 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x78fb4424 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9580d75d cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa5c71365 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xac499263 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb5c8af5a cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc5f310be cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xca366857 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd6d72746 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xea922232 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x9e7bb421 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x480acf14 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x04af034c em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x11796bb2 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x460b4513 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x71a9ff3f em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x74486185 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x753f83ea em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7e33de74 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8d87483d em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9178f524 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa70999af em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaa2dd5e6 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xae110eb3 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb0f7e2d2 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb7be3c86 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcdbae33c em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdb63a7fa em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xeefcd507 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xef162fac em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x1ae4b4d1 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x1b906c96 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7c248516 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xbe03fe1e 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 0x1702a0e9 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 0x92f34b96 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa2fcb021 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xb09fa8d9 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xd85fe2c3 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe6466767 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 0x7630aab8 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xe422cdbd 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 0x19689658 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1a606977 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x25a1d71b v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x25d321e8 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x28537736 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2b5ae4e2 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2ed3278f v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x30172ac1 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3eb64422 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x43c144e8 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x452708ed v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x61222b70 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6e9afc36 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x796ceba3 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7ecb7252 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x811e9a9c v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9555056d v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa519cb5a v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa8709636 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaac3345e v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaf7d069b v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbfbc6c7b v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc3f66904 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd938b171 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xda79599b v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe82362af v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf7d7c001 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x01ac8868 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x04dd8d1c videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0a99abaf videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x17293afc videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1c55e904 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x218869cc videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x27d83f8e videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x280e64e5 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x306ddfef videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x46a2fd14 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4cebe543 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6323fd04 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7b51758a videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x853ed153 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8ae5a8fd videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa28ca9ab videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa86a7bfa videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbc46963a videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc4b98e06 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc9162e16 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xce6bca7e videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd39ee8c2 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe39ea2c6 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf82db240 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x0492191d videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xc1d4490d videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xc82fe065 videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6bc30a9a videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x8b438a28 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 0xb6203c55 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xb6e80ffc videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x4b1e3fb1 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x98e0adca videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xd5df8dbd videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x14f93610 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1a3ddacc vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1bc831ae vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x237d41ff vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x291d5bab vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2e0c21e2 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x32069b76 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3f1b40f8 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x47d8410b vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x59fb6458 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x65aa14fa vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x81966737 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x93958fb9 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb5861497 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb78c9029 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbaccbf36 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xeb60790c vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf758e1c7 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x2d4817f2 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xb7eb05fe 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 0x06932d3d vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x343c0e35 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 0x91dc5fa6 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0c56d35e vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1e82691f vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2e580a38 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x35231a34 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3b76a8d8 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x46bef773 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4858317f vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x48c49183 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4b96450b vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4fc461f8 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6121279f vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x692a5c40 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6d0d9bfa vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x710896df vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x72d2630b _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7c21fdac vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7c5744a9 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x81595729 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x97dc7f97 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x98697acb vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9c337542 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9f422c4a vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa012bb7b vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xaf5423e9 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbaea4818 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbb295e10 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbc398dab vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc39c73cb vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdb83674c vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdd7176ac vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xeaf3f6df vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf2812485 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x21b3a501 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x023992ae __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x057b1d58 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0583dd74 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x12243e54 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x15f0e3e2 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x189a3a75 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x213551a2 v4l2_subdev_link_validate +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 0x4a48b612 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6671b642 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x75a04228 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x879ceff9 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x87fde65f v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9247030f v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9c59722f v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9cd69370 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa34c48ef v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab06e74e __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaebc5336 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb219ebee v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb9ffe7de v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbaa12a9f v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe932bef v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc4782335 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcaadcc80 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9d69cce __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde690a07 v4l2_fh_release +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 0xe94ef832 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xebd6245c v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf028e393 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf1e5e76a v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf6a445f2 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd099436 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x28356dab pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2ab64226 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf8a881e8 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x02818a43 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x07a34263 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1a3d01a7 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x20b09bab da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2193d8c6 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2e722e25 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8f3ce348 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1d1020a1 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x21c21787 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x38a610d0 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x64f9d1a3 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x79fef595 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x84932232 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbddcd684 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe7003570 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x985b8133 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x99326401 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xb4acd321 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x192e036e lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x29e0c9b1 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9048d023 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb37d2a13 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd31eb1f0 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe42a9994 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe9546537 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4e736b9e lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7ee923fb lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xdb00d30f lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2a496533 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x382d5bb7 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6a98e5ff mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x78971097 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa77a0ba2 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xee68286c mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x05495445 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x115fdf1a pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6d82928c pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6eccf154 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9791f17a pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x987bc670 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc0b2d4ec pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc3dad0ae pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd0a37dd4 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf326161f pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf6fefbd6 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x7334095f pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xb41f9644 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x82307239 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xcd064871 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xce931955 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe5641819 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf32b87a0 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 0x0113f12c rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x06fdf9ec rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0c4ca4cd rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2917a655 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x34f3d8af rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3726ab42 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x39130e60 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x49dd206c rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x52987a74 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5736e81e rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5801b2c1 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x703add19 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x74e58e41 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x792f6194 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x92bbc1e3 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa4aa7a1f rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xaebb9c72 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc4aad7cc rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc91c70f9 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcb061628 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe02681cc rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe4694826 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe50f0226 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf44d57dd rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2b2cd242 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x443e34fb rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4f54f9af rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x60a842cf rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7420f2be rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x797f809b rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7ab7603a rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7e857e7b rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x89221bbc rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa85c2d96 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc43be91c rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc8661a8c rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd100bd86 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x09ff5362 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1f82c0fa si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x21d17d48 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x23963e43 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x359b7fcc si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3bb3282f si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x43ccf405 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x455210bc si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x46cc3991 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4cdc2d13 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x57b9944e si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5b2b9c65 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5e8f7a52 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6a7b95cf si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7524cd22 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x75a92564 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7d844932 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7dce56aa si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x86ce0de0 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8b768f38 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8f457f7a si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x960345a3 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x961d4116 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa3e1d281 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb1512e4d si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb2099538 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbea11642 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd3b8f421 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd4725d65 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd979f113 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdd2fcfad si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeabe7e07 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf0a78930 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf2351a42 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xc116add8 ssbi_write +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xf9216e1f ssbi_read +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x0ae612e9 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x5e30fafc am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe0c260ff am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xf9855b6b am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x1c927120 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x36046aeb tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x9cfae763 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xdd5f44a4 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xba946bb0 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x1149733b bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xcad96276 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xd24aacae bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xfe284eb7 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x26d7e4f4 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x4bc3a1ce cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x50ae8e55 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xeb2581fc 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 0x13c630cb enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x264658a3 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x40bdd737 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x438326cc enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x85778067 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe36765fb enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe9421257 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xee9f0162 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2a3492ff lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x37aaecd4 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x444fbec0 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x94d1cb58 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb1e28e0d lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb7567e7d lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd16648ae lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf3d2c8e1 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x81df6421 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xcd6e377b st_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x532f3b0f dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x96dcb8a5 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xd4d5a489 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x54df6976 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x96e86908 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xa9c14ce0 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2526c2c4 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xa88d4692 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd6df0d42 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x2792b893 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x28916ef5 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x91eb65ab cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xb12b6836 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x49b50c74 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x82df3dec brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xa1a32796 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xfff73ad7 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x4ac80d74 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xffa75734 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x535a6a7d spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3578aea9 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 0x43f9fffc ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x465627f3 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6cd93326 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x781da07f ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x87450f43 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8864892b ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9b6dd220 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc6639c8d ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xce9195b3 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe93c9e87 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf2d0a212 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf8c1ff2a ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfd06f25a ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x230f7bff arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xf2761ab3 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1413f9f7 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x29804de9 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x43b1f893 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4934a7bb alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6fc7d03e free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9cd21801 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0f2a8e94 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x33174646 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x481c359a unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4e5795d8 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5e1de9aa free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6db82226 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7aa313f8 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7dee8025 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9ca107ea can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa7a32e30 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbc212b8a open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc0d7652d can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcc7434cf can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd16841a9 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd4d86fc5 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd754b31b close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe113d3bb alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xed2d3096 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x00470747 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0d6be5d5 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2a451b8d alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xea1e81ad register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3546f565 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x63619bec free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6e12fd0c unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xce582a26 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xac58a413 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xfddbbd6b arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01a9790e mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05952019 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bdebc19 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0be29a14 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x149ee085 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x173592b7 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17cd9e1b mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x190d9eb1 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1afc6b40 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b5a7072 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c86b54e mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ef8871d mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fa2da37 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ffa56d3 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24e30198 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25af101e mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x295de1da mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b4dedf6 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bc50bdc mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d745a48 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x333d3e5e mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33c0a5f0 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x350ad54c mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x360b14b7 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36642b0d mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36f9192b mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37c98b61 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b497fc4 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bc7b22a mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c3c04a3 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41b27499 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41b7a4b0 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x424aa803 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42597ea7 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x446dbd19 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46f12059 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53431940 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5990aff2 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d123541 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d2755ab mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f5a09ea mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5facafd6 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60d23a69 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61640c29 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64c3bcd0 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6731d506 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67e00429 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x691143c0 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69b390a5 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d2bcf09 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ee80571 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f16bfeb mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70bebe2d mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70d500ed mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7127d167 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7282a553 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x739286f9 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73ee1a02 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73f23afe mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76edfd01 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x772290e8 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x774cb720 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77bf804f __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79581953 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79623799 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a77e14b mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80b3e52b mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x822458e2 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x824f95c6 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82aa4893 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84cf55ee mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88294c47 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ac037f6 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b864794 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x918edeec mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91e727f0 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x944b0fd2 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x950c4df8 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x953dbb3c mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b72e36b __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9be20808 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa28c02ff __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9a6ca5b mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab21bcd2 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae46a6d6 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5b85ebc mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5dc710b mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb83961a5 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb89053ac mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbccd858b mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd4e1d36 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd9e414e mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf83f03b mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc66132a4 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc66a5ea8 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7a462e6 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc82ac438 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc98e1fad mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb50d2bf mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbe38af8 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcee4cf62 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf6ca109 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0125b96 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd10fac5c mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2067d57 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd27ca61b mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd46d4f04 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4da83af mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6bc376b mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd762e9de mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7a23958 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd82757f5 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb3a8ed4 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd4bb8e2 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfe6d679 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0ce0aa0 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6c1fc8c mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed82a0cf mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeed09dc7 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefcd015e mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf390cd0b mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf90b02aa mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa3d2bcb mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcb80acf mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01967cd1 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08877eaf mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c6ec01c mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1291ee0c mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1503c3fc mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17ed6d74 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x192fbcdb mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d91f9f2 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23e9da58 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2448f04c mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31958884 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32f9a355 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34784717 mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35320378 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x354f079b mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x412838a5 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47d3e58f mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a69e69a mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c7cafa6 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a4759c7 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6090c0b0 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64625997 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ff68c53 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77e6467d mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ef40af5 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x826d207e mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ae7cafc mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9090db56 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x985d32df mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a86c1d0 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9be0760c mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa26dbe42 mlx5_db_alloc +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 0xa9c357e6 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6e1ddc1 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbaca427e mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdb50bc0 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe1f0179 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc083c398 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc73b7581 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce141fb2 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7025a24 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7bc3b2c mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde172070 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3787893 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf93015a2 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 0xa342516e 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 0x0e0eb514 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7343790d stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7ad042ae stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7d698341 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x10a9afe2 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x10bb9708 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xaba8b904 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe2599f83 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0x777c1f8f geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/geneve 0xc79cb6b3 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x1b7884d8 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x1f6eb21a macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb8f62fa8 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xfab741c7 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xe544cadb macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x21661ae6 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x61d62788 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x705a9dbd bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x705e4aba bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x71f351fa bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x74dca534 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x84319343 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x88860b3b bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdd1b9bea bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe4a4e743 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0xd4a168e7 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x065ec265 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x09d05af1 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3636916b usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7d7c9536 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0c589117 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6f62181d cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7628923a cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x82762a43 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x829296a4 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9431fb68 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcb22b14a cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd4fc57bd cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xee0b6d88 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0db4a0f5 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x51b2a5ff rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5809107b rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x62206a80 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb27ce765 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xff3888ae rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00145f22 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x05ae92e2 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1376f51e usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1504bf84 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x155227bf usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x16364bd1 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1d3a8eb5 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2483920d usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x26e1fa0e usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3c726fa9 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x41ecb1df usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x61c98af8 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6772ba65 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6b8e18be usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6d58d74d usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x71c4c6a1 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x73ec4fc0 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x790afcec usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7c4c207c usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8585cc6b usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x87310bd8 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e4c67c1 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa1fe3ec4 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xacb27884 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb04670d6 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb51794cc usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbe8f0243 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd0aaab3f usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd897d861 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe0a65c49 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf6bc7237 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf73f803a usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x721bae5b vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xe47f37cb vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x14fe2003 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2552ba5c i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3903a050 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x436ac9e0 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x44ddbdf9 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x59b32b23 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x767c56eb i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x87c53bbc i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8cf35745 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x92139d20 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa557f454 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa670113e i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa6a04160 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe278ba14 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xefea8ca5 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf6d5646c i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x11c594b2 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x666b42fd cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xa754e994 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xc82c82ac cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xf68dcbd5 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xa946c3e5 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xb350af52 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xe4fe2ffd il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xfa937014 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xfd37d2ef il_remove_station +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 0x2ad535e3 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2cde8a4f iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3899759d iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3ee8b246 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3fcffa83 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x433d86f5 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 0x4a100456 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x582483fd iwl_phy_db_init +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 0x5e3d7f04 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5f01eb8b iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5f6beaf8 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x774cde39 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 0x94f837e2 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x95647e3a iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9781a943 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9bf16097 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9c5e4dd9 iwl_read_prph +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 0xb188d779 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb556753a iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc1be158c __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc45864d7 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc6d887ad iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc71c4468 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe67a1f9f __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xeb83d648 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xef60fbab iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0025bcb0 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0fbe2ea9 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x23d54c6b lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2af9db62 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x341fe36c lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x35a572cb lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x46d230ee lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4de4199a lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5f07fda7 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x84713d71 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8eab6ff8 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb18f50a5 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbf846dd7 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd049c0c4 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe9a4aec8 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xebe9eafd lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x3d1a0d29 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x49f43dd8 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4a821aca lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x5774e479 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6cca48ab lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x7b71dae6 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa35bd8d1 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 0xecee65d7 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x09e84571 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2013ba8d mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2e064e73 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 0x375ac73d mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x56860e53 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6b36e39f mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7499b983 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x93bdfb89 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9a1c2674 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9f8e7659 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb2b1aadc mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb707c4bf mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcd89c537 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd66a0dcd mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdc96bf13 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf61c7776 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf7060d62 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfe904bae mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xff0c1f23 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x1557197b p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x197e7f58 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x38294049 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x5364b0ca p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x64ede187 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x801893b0 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xdeb92750 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xe955133b p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xef4e515d p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0398c503 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x68992ff6 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x933fb5c4 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xea6163f3 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x04407faf rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1fac0c8f rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2f7aa3bb rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3b47116c rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x46bd93b0 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x48e6f561 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4b51d92f rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x617ad65e rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6c51dc6f 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 0x795c0372 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x79ef0887 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x84df03f4 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8c6d612d rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9af29b95 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa9ddba4f rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf41b702 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 0xb2a3ebe9 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb367602a rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdbec28b1 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdc9aa46d rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe2df7ea8 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5e74761 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf1697ed7 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf23fd587 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf358373a rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf7f7cce1 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfba9c9cc rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x09e10ffd rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0cf03559 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d468d8e rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x20cbd1fa 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 0x2d882d91 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x358f8b03 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x383fe2d2 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x504670a3 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6fa34e91 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7db9123b rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8245460e rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x866cf4fc rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8fe09167 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6e2961a rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba064f25 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd7d7f014 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe6d9044d rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf139a70d read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf2f4165e rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3c53c87 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f14ee36 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x232adbea rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x52b02eca rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x77ce0ded rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0b89434f rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1609edcb rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x163db490 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x208ef8d1 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2121a945 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x257769eb rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x25c5e129 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2c82b41e rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x31dd8a03 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x321f452e rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3681affb rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x391ad200 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3f9df0ec rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x410dab31 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4af06186 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4f57bdec rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5b9de1ef rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6145baf8 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6b0d248f rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x73f6a3c4 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7d8b78ac rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7e33acda rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7f91518a rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8ae3d499 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8da8e099 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa497b186 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa7f547c8 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xab6c03aa rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xae9fa9c8 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb3979655 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb6c8f089 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcc71e4e6 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd21c3f97 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd9c998b2 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe1d6bf8d rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xea7b69b3 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xeeafef16 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfcb2d196 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0293862d rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x04a0a13a rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x06638a0b rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0ed35260 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x1512c850 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2d785740 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x555c80b4 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x64106972 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9261d4b1 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9515f83b rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbaf34d40 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc1400578 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 0xfb32090f rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x01f3b886 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x02daadac rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1057ded7 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1252a080 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x16c4d449 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1f2ce42f rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x221dc219 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x226918bd rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2a925736 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2d4fcb19 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x37f52f2a rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3b75283f rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4384cc2c rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x46b33d98 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x46f89540 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x47c220b8 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4fe92efe rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5743e5be rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x58b51d3d rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5a2a37d9 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5c5ae9e2 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5c6f3963 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6f82d7aa rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x813d24a4 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x821cc5d8 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8ece24d4 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x94eb5e04 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9ab1b0e4 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9d881e79 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9ff34f06 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaadc1d62 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb4e2061f rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbae7e1e1 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbd4015bc rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc8853a52 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd01e1568 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd16ac6a3 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd4c6c3a4 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe1df6bd2 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe8f49fd5 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe9bff9de rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xea94d8d4 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xeb1f811e rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf6fb59cc rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf764b21e rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfd542d90 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x120efa5d rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x2f7104e4 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x57734a2e rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xd8e48d69 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xfde21203 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x16a558cb rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x33ddc700 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x4e77f07b rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xc5b5f37b rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x16410b51 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1f6fabbf rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x28d97e18 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x307c05ab rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x42c47913 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x63fa070a rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9a62997c rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa36671a8 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc3e4e01e rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdc1eaa36 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe29ba4e9 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe738b4cd rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe7646835 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf8cec381 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfdc0417e rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xff0e2f11 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x795e17a4 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xc7bcc1aa wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xde8a2803 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x092c0cd6 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0aedec04 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0e0b9720 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0fa2051e wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x135246b3 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1f75cff9 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2c291189 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x386a61be wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5a7f5493 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5d0299e9 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x669e66e3 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x67470382 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x75e6b1f6 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 0x7a98ea9c wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7c5aaf8c wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8925f6d8 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 0x93a7a125 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x94e9a70d wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9516d55d wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9585e0b7 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9bc328ca wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9c0cd7a9 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa0303a3a wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa05aa7bb wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa06d6eb3 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa2c4fcae wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa65f5606 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xac64ab02 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb1b3f4a7 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb61f4c4b wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbff4b2a7 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcd5b6d2f wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd13975d0 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd8867fb1 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe59e4451 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe5b516ba wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe90def4f wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xecd91c0d wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xed06c320 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee854b65 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf1dff398 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf2452f8c wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf2940d52 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfbf475c9 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x5d07aed2 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7b386cd0 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x99d2d7dd nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb9b866bf nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x21fd5a7e st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x47541412 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x83e37ac1 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa6298d65 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd725ffef st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdefeac88 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe502e693 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xfffeba9f st_nci_hci_cmd_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 0x7b2f3b1a 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 0xc069df4f 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 0xf634ad9b ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x155242a1 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x1a19b0af of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x44ac68e3 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x6703de0b devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x6968fd74 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x6e4d22b5 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x800a8f0f of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc45deec7 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/phy/phy-omap-control 0x1f24a5a1 omap_control_usb_set_mode +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x48c771a0 omap_control_phy_power +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x624a5e92 omap_control_pcie_pcs +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x09a3fe61 ufs_qcom_phy_calibrate +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x0a41ddfd ufs_qcom_phy_set_tx_lane_enable +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x0c788736 ufs_qcom_phy_power_on +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x15304794 ufs_qcom_phy_init_vregulators +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x250efd3a ufs_qcom_phy_disable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x34c96945 ufs_qcom_phy_disable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x4ab81f9e ufs_qcom_phy_generic_probe +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x5873932b ufs_qcom_phy_remove +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x622cdddb ufs_qcom_phy_calibrate_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x77ee5046 ufs_qcom_phy_is_pcs_ready +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x7f9c6a28 ufs_qcom_phy_init_clks +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x8e42e137 get_ufs_qcom_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x97943454 ufs_qcom_phy_start_serdes +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x9ff27464 ufs_qcom_phy_disable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xa2af5be3 ufs_qcom_phy_enable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xa96981d4 ufs_qcom_phy_exit +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xaf78a8ed ufs_qcom_phy_enable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xd00006c2 ufs_qcom_phy_power_off +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xe6116177 ufs_qcom_phy_enable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xf11817ee ufs_qcom_phy_save_controller_version +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x2c005606 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x5c216723 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x889a87c6 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x018b791b mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x64ed2b9c mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x85881260 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa5301cd2 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xed3bc2f2 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x179c23aa wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1fa3588a wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2eef0c0b wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x392c16f8 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x55e08153 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbd6d9701 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x85babd26 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x08de7172 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0db07b80 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e49a387 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x15ebf142 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x16ff87c9 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1b75c6db cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x204c58e8 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x261e2b06 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26488272 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x27a0da4f cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x28270bae cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x314b6936 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x31d8bba1 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e5f4cbc cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41944c9b cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41cd6243 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41ee8053 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x46009316 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4624c2e2 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4f2d22f3 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4f99cf92 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x533e849d cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f16d74a cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6023676a cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6a5226ae cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x71ac562d cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x71e017e2 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x743824e1 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x74d18184 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7bbfe856 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d5623d0 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x82e2a080 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b55b580 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97a017dc cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0770091 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb3d96a56 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbcb28507 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc1e06b99 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc8fb4e81 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcd626e0e cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd26611f1 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdce29b73 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe45e0542 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe8d0fdf0 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef1b4abd cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf1cc85ea cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1459d310 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3a1d7b56 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x43540a27 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x48d7091b fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x49170631 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x72c24b19 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x810c2873 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x86f00a81 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x890f151b fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8b1e73c9 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9338bbd1 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa7aed73c fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf268bbe2 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfb66890a fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfbc1c24d fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfda5ba01 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 0x010d898e iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x078aebad iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x08be25ec iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0bcb388a iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1703fdaf iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a2d55e0 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23dad9e1 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23f78fa2 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2bc8d731 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c260bc3 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36b913c1 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x38e5efe6 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x38fc108e iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4149cdf3 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x44629239 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x58b07e95 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x676f6e46 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x692f8a5b __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74aac73a iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x79d8c54d iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7f9ef308 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x83742d7e iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f756c83 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9b527666 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa43f18eb iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa553159d iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa8493ebd iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf5b0ac7 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb23f05c4 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb50d0bd5 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb6c59efe iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb92f8310 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf50848a iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7b146f6 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc97e3610 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb5c63cd iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf576845 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xea06f6b0 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeff08c2b iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf288624c iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf7d28249 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc888362 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0a787f56 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1351ea93 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1b8147fc iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1d623659 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2fb4bb2c iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2ff51fbf iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x32563c91 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3462e6c7 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3b704cbf iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x65d23107 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7373b3e3 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7e94dd34 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8748ce63 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaa1f6867 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd948daad iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf6ceb951 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xff0ac383 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x05dcdc71 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x096f137d sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x17184738 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x234e069b sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x328d4c88 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3f48212c sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4f0fcc8e sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x555ba87e sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5e86efdd sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5f3db5fb sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5f9709ce sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6987a7bd sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6b046447 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7079c8a9 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x79ca391a sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x87fb1f67 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x89d72991 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x912f241e sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x91f23f10 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ab6a32e sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xace65d86 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaffad70c sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe4e74d26 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfd60519d sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x02abf0f6 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0add4d62 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x155e8ffe iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e693677 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31f1741f iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x34a14ffc iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3920a4b6 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f92b3a2 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4dfc7502 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50e55fef iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x51b1cce4 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55297e57 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5c5f14a7 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60b73aea iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x687f4e49 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 0x701d1b9e iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x77034def iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x80736b19 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x86707d64 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ac5bc2c iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b8c88c4 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9588a19f iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c55a8ff iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e67c8bd iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae514b86 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb67d97bd iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe23e4ae iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd05b4f56 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd57ce0ae iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd59eafcd iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd96f87aa iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde0c2a28 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe379614f iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6d21f08 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe84a8c2a iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee3b3b8f iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef798d9d iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef9b547e iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xefef8e97 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9a884de iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x30f8d219 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x33dbd94b sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x376e424b sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa599de46 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xeb936ca9 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1a533f96 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x45349b6a srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xbdeaaeed srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd2e0594d srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd7fd6b50 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee72ff5c srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x5465b688 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x57490cdb ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x8f9d0a2a ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd61c482b ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xdb4906f3 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xf31dbb77 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xfdb1a1cb ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x3f2c826e ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x432355a6 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x528c26a1 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x9967925c ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x9afd3c31 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa7b6572a ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc6b3694f ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x78ae8dbb spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x91bc056c spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9c924a64 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdcd8787f spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe21142db spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0a508ba8 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x267f53fa dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x352658c4 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4afdcb0b dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0eb7f129 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x11a2c087 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1362c64b spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2d7fc1c7 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2db1b3db spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4cc7866d spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x54963e57 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x630be272 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x814da9fe spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9acabbd6 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaece5363 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb0580d05 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb21eb973 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbec786f5 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc26f4f91 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe0824317 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe3abf554 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf59fd0e4 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xba6033c5 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x03b8c169 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0d31cc71 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x212f7c86 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x23d649e2 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2533f32c comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x353da385 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x38a9253c comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3a883b98 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3bcb4698 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4e35654f comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x55362a05 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5aceaae9 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x69791c99 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6c88e7ba comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x730f9179 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x73e88efa comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x77ba5f58 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8319c45e comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8a2bba4f comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8a881966 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8e561c18 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8f07da50 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x955a96da comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x95790fac comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa0a93ab3 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa9ae1141 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb285978c comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc13e6681 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc65692c0 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcc785685 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcee2846c comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdc710f81 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe0630d24 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfacf1bbd comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfdb39aab comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2befc08b comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6ce4b724 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x7b0693fa comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x82c8ffb1 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x8487ee63 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xabc1a57c comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xec7f68d0 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xeee01c2e comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x48baf5c2 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x6faee89e comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x81f1db6c comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x9924bc86 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x9eaa9f05 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xa2929476 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 0xeb5b5c7b addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x3d7624a1 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xd4a86eae amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x2569b1a0 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x170b0e75 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1a51d744 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3b20852a comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4c16623a comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4f2e18d7 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x66be5930 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6ccb9258 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x73e19923 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbf091e8e comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc7fba53f comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe153775e comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xef79a4ad comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfd012a4e comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x588b2414 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xb68bf009 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xc1576294 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0xd52920f3 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0460f874 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x16659cad mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x21c6e2c6 mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2d587014 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x35b5c3d4 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3c7ee636 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3ee37297 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4c52e8a3 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6b172e2b mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7bd31b8c mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9e112778 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaed373cc mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb1ea6bec mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xbfab9964 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcce01409 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcd75450b mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd0c85e0b mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xec7614b6 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf4f37c06 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf5662d04 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfe3544c3 mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x1f836ca4 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xdfc54d0d labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5c5d2698 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6133a4c6 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x909c4f5a ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa01d74b2 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xced7de04 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xdf025324 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe003aaa5 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf369d3d7 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x18dee8f5 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x4ae82a29 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x517334d2 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x6ca0203d ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd5d78b36 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xdcb17159 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x508478f3 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9c3e578d comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa4cf7c0a comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xbf97493e comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xd6418c0c comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf67fee7c comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xfac4811c comedi_open +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x5caa1e8e adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x00dd7782 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x22e33c4c most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x396ce27e most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4668f7cd most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5dda7650 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5e5b2237 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x62467122 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6b165e8a most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6f610e60 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x83a31def most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb1556ff9 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xbf3b795e most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x5f88f3f3 nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x8f34b1c7 nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xd8dade8b nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0edf65e6 synth_remove +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 0x57258b88 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x627b7518 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7505e428 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x86442336 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x99e92e62 spk_var_show +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 0xb7784630 spk_var_store +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 0xc7bbb6f4 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcdb2dae6 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xdf299004 spk_synth_is_alive_nop +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 0xf359bd8f spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x45c56346 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x7be2e359 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xafaae457 uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x4f923f3b usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x9e6cd38f usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x081a8551 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x81284340 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x51ef0cca imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x740ecd95 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd4ce6657 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0699ca30 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3aa115ec ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3c48081c ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6e07cd90 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x87b9968c ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe952a773 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3dfad958 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x51d3fee5 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5382d196 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5446b498 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6785affe gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8494b550 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8a472d65 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8e49f565 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9123c98a gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa37f985f gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb212347c gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd68cdd5a gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdf3a937d gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xeb53fa44 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfe3241f1 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x120f1f2e 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 0x8cffcc57 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 0x3aaf7cf7 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x884e31f2 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xf34f12ea ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x097bb0a0 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 0x144c18d4 fsg_store_file +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 0x1932c48a fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1935c925 fsg_store_cdrom +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 0x2f089867 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x395d8cce fsg_show_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 0x3a3c545d 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 0x4aa02755 fsg_store_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 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x78ea0d6d fsg_common_set_cdev +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 0x866fcf8d 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 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 0xb8899500 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 0xd6fe8fee fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xecf51a3d fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xefd38540 fsg_store_nofua +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 0xfbc3e4ce fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x07e5bdea rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2f77ac74 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x38fac40d rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x53e4d217 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6ba38fab rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x79b51573 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x843ace8f rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa4b3e91c rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb0b25b3b rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb1d48dfc rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc2c3b83f rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf2740010 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf2e855dc rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfe9bebf9 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xffbb66d6 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cb476f6 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0d3fa1fc usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0e7dada6 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x17754c0d usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2187e69c usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x28ff1f6a usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x29ef4ea6 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2f763b70 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2fe77d9d usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x333e8067 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4c4c9cb0 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4c572bf0 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x58309c7b usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6a56a6eb usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6aed6e04 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6b780a52 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7bc109b4 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f856728 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9100b6ce usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9564e7f5 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9fd42c9d config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xac5044c6 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc6bdd740 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc9409cf7 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcfb44bf9 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3a52516 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeb31e475 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xed6e8d3b usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf1edfe47 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf66a9be0 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfaeb4097 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xff4eb465 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x50925a00 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x64373ff6 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x255f040e usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7f6dd802 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8a54919b usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xab6e4da0 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbd6e42bd usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xde355c37 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe643b959 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xed19caa4 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf3f44d78 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 0x44283bd5 am335x_get_phy_control +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x26fe575a isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x0570f3fc tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x5a4c74cf tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xa20e80ed tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xe343eb25 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xcd8009c9 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0d3eee97 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1a578f85 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x24e6dc77 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x27c970b3 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3dbbbfc4 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x45cd1198 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x52a6c513 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x60bd17e1 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7376a2af usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x88213891 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8a4b2232 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x945c6aeb usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x955b9832 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xae564de3 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xccd3144a usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xce3135ca usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd2a554bd usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdd8fd810 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdec17b1a usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe951fade usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xed61e522 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0186845a usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x14de07d5 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2c37d398 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x323a1ff6 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x376ec0cb usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x38b6dc17 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3cbf36d4 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4e63c234 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x58c9a6bd usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5b7c8487 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x62e52412 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x76fc8e43 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7c8c2e05 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x91859d73 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9462aaf3 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa1d67bb7 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa2c959d0 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa4edf3d8 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd11f493a usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xebd506d4 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfa1cba88 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfa29052e usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfd5e8f3f usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfd6e0122 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3d0dc678 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5dfc8397 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6deb7a66 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x735fbe57 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7d181002 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8852d6f4 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb304e222 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb8e6a141 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc8116461 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdeb4c76c 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 0xea7c859f usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf4514d56 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x05aff1ff wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x4c39ec42 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5fd2fe46 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7088ca91 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x98a4c3a7 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb7784335 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc8d7bc52 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 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0f821114 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2539f734 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2dac13b8 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4270b7ed wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4b020116 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4dd7e957 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4fedc231 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7ade0199 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9938f0d9 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9af8efcc wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa3d24a1d wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdcc4fb33 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe381109f wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfd898d5c wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x1633d175 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x3e087066 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x8a48ae98 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x0e57c9a2 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x6ee36173 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x7d79d9a6 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x81850de9 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x93a3c83c umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x994bcd08 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9db9e4dd umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xfabfcffe umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x08538ccd uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x24c07fd8 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x38c60d65 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x38fc1266 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x43f87115 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x46db14ef __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x51bda31d uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x54d3e705 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x55a68b7b uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x55ab6e77 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5908d35a uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x659af117 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x65fbfb0a uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6e0f2f50 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x80b988e9 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x898324ed uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x94f43229 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x95283fe5 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9ab1cc0c uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9c53b83d uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa761d75f uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xab957951 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb2a54eb7 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb3cd9d70 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb4fc93fb uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc23ce8bf uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc3b67f90 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xca47f861 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd66b116b uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe6afedd9 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe968d352 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeca5780d uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf21e4f85 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf2781a86 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf79ced72 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfae07e7f uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfc2acad1 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x77351193 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x42db1ad2 vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x78d1a7ff __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xad1cf985 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xb06f05fa vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0b3dfec0 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x34b47ff1 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x658e8f17 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6c114e6a vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x75d092de vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x765ee183 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x82e8b5c5 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x6def46f7 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x7cd5ea59 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0143d40a vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x04f35c64 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0c549e06 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x11ad3c2b vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x173830eb vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x17e159db vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x24f01a58 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2f9836b1 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32bcc5e8 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x341118d9 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x38b49df9 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x54168aec vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x812f394e vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x952e9da4 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x96b8307e vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa2c67e1d vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xadb5e93f vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xba16c972 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc0220c99 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc824cd5b vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8ce0eb3 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xccbf39f6 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda4b7d1f vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdc9ad7a8 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe2dfa3fc vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeeeb4a2a vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf0395b74 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf6696617 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf7dd9996 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfb96ca83 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x693349b8 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7e1a1776 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x93029595 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x95ec46ab ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb0440287 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc0180b09 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xda968d80 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x0039a5ed auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1048223d auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x116d6b15 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x22309c5a auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x4746439d auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x4cb507b6 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7d57f713 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa8dafccb auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb9e82ab7 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe2f893fa auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xe678a3de fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x3d9afd5c fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x9b549ede fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x4069813d sh_mobile_meram_cache_free +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x78d61d56 sh_mobile_meram_cache_update +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x797969c7 sh_mobile_meram_alloc +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xccb1d910 sh_mobile_meram_cache_alloc +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xf2b20186 sh_mobile_meram_free +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x16b2c366 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xf171cd79 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0cff67e5 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x64593c66 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7f8e70b9 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xaebe46e7 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb9eadab8 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc0cbca11 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xccff6de1 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xda458eb0 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xde5a617e w1_reset_resume_command +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x80185d11 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xa0af49dd 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 0xd82900eb dlm_posix_unlock +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 0x1c8cb3ae lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x36ded7a4 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x627d946e nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x79b7055b nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8e5c10e4 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcb6f1cd3 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf6746472 nlmclnt_done +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00b24b96 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04e23812 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b8c0638 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0be2c8d0 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f27bd11 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x100c74b6 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x122d7b41 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x139b9150 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1591da90 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b72d5df nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cc848c1 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ccd7a49 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x207961ae nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20983e55 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25a441dc nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x263fcc19 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26efe481 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2878bde6 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29cc9a2a nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c541ac0 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e1432d1 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32ba3a15 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34b82232 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34e8cdf0 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36ac8698 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36b621b4 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c2a845e nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44001458 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45e53772 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a95b1c3 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5158cfc8 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51b274f2 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51f5e8e3 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52279ae9 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5370bb50 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6385efe1 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65082423 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x684acf14 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x685e84ad nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70229aed nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74c375e2 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7654a7a9 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78b2f4a2 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x798a33b2 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c4c7f88 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e5bd056 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ff09d1e nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x838a7c5a nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83d9d764 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8488e8d0 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8574c26e nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b74c33d nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d5460e6 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d7e9c91 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8db81976 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fe50830 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x904583cb unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x912523d4 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91b46366 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9472527d nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x950e0da2 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a0af5b3 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a525fcc nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a52c521 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b4ede14 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c680752 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cc90d85 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e0253da nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05d1b33 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa266419b nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa28df48d nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa34e7eaf nfs_drop_inode +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 0xabd286c7 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf164474 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb046c1ad nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2e104e8 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb88b3e55 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8941efb nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8f5a05b nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb99efb03 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb8bdb91 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4b622b9 nfs_init_commit +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 0xc6841a8f nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca98f1a0 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc577501 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd3bb0a4 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd54be44 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce2dbb71 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcec1ec31 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf15276d nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd03c9c7f nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd04aad18 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd294e155 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd300e958 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd336d865 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3c5ce55 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd79295c2 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda86508e nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdadee4e9 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb40c7b8 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbb6a5a0 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc5d80e5 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde57fea1 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1b416ff nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe22193f3 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe45c2191 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe490e450 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe55085e5 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe554004d nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe733c367 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7dbc1f9 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe86ddf59 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed9b5407 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee30a02e nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf020bce5 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf047d833 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf138790a nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3e592fe nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4adb210 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf56f4398 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf59469f3 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf966663e nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf97bb4ff nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbc2367f nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd2fba92 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xa71331ce nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0182437e pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0412336a nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x070de5ac nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a7e7e24 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11aa4a51 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x132f3518 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13a85c11 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b5b25b2 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x249c466b nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26424e36 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26e09ecf pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x279e53f2 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c31610d pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d29546d pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2eaf073d pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38579e3a nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d389f7f pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c1fc3c5 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d88dcb2 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4dd9aa96 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4edb448d pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53260351 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5399146f nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ac7eb1c pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5dbaf0a5 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71c25a90 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x729e8cc6 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76233b18 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4538f9 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7da32337 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f5d4d38 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82b7de98 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x864f8e55 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96b8c44c pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9722dc9a nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b26c217 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f69df2c pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa43798e4 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa686b355 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadd8e976 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae8944c9 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5c036e1 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6a6fd0c pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc5d893a6 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca9e773f pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf9614c2 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd578c35e pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd60895ce nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6252694 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd91b6072 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe40fdc20 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6531cdc pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea66d3fd pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec980a0e pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xece9c1cd _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef7f1aa9 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9f1f458 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb4f6c17 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfbba5d41 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc4f3c9d nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfeab5473 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x3c2e198b opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x8300e0d7 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x88b60eaf locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6dc67ec2 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb7c29a52 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x09141c20 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 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 0x2a4adf06 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 0x4c22aeef o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5950903d o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x769d8e0f o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x82f935ca o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x98287530 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 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/dlm/ocfs2_dlm 0x14b82e94 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1e58fe5e dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x492f4753 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x50364d88 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xac4c2380 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xaccd98a9 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x52e8eaf3 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xad61fc93 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xef4682fd ocfs2_plock +EXPORT_SYMBOL_GPL kernel/torture 0x03088d2e _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 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 0x5cc658ab _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 0x96fc654b 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 0x6a6cad92 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xec0becc7 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/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 0x113f6f0e lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xdcd52b66 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x6062389f garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x6148fa3b garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x718c3f9b garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x923b712e garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xc712222f garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xfa453421 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x65c32d4f mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x6cb91993 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x83ca147d mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xa74d14c1 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xa7a3adf5 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xc3ad88d3 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0x0eb63b17 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x9befb6e9 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0xa4d55226 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xf7cee56e 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 0x919e3229 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 0x0bc2eaa6 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x25fe5d78 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4a25ac3d l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x71c4fe48 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xba22efcf l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc28247a5 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd61bddbc l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xffd1f8b3 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0bc3242b br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1c0c9148 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x738ba558 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x749bf070 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x78014886 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc32f1c8a br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe07e5a73 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe202648d br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x0037f494 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xb98da1d4 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x01be0161 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x08a6586e dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09a123b7 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e8a3540 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x10e4d01e dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x12daee98 dccp_poll +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 0x1f6891fb dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23c99392 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x37323a92 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x392d0977 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4c7d6b47 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 0x4f931d1c dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d239f1b dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6c295376 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x718a267a dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7281b583 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x72b0c456 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x779fe6c1 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fb7da2c dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x890bc183 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa33ef354 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0596156 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb333067e dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbb04f429 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc5223d74 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc94aedf1 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xccd9e4a0 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcdbfe8cf dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd36bd467 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd82739f2 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeae6e22d dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf98f12ed dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfcad9604 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1bd71f00 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x306f1fec dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3a7826f0 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4872bfca dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6047cecb dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd5f03be3 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4479c61d ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x538bd3da ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc7158aab ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xeda39c8e ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ipv4/gre 0x80a7f85a gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xf85fb871 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x05a07ebc inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x30beb17a inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xad4f5892 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc17965e1 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcb69fdbf inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd55971fd inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xd0244be4 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x039cadb3 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x09ad7c04 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x10358879 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1896e58f ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1c61a288 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1ea5544e ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3a01531f ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5682976f ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5715a085 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7096bb34 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x76d1cfe7 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb36a2720 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbad1722e ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc1758c1f ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd6b78e3b ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xe6a026fd arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x0d897f43 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 0x8de089af nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x00eba842 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x0dac4724 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x7987ba92 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xdbefc568 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xeea838a7 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 0x857d234b 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 0x13388793 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x19e7e9d2 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x82461548 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9e9b9927 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa3c33dc0 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x23b8ba31 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0273fbfc tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1cf5c843 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2953dba1 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8f9ca4da tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbe7364ec tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x21e95110 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x346d40c7 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x398d76c9 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5935d627 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0b3cc373 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1df50c56 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x35353c99 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x41f68119 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4d0e0087 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x771b4e90 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xdb174614 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x03efee6a udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x4aa78169 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x32b6cc4d ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x3e712d22 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x5b4dda62 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 0x24d3ee9f nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x15009595 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x26d38172 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x974e5b21 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x9d17703f nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xe7ef6a3c 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 0x741f64fa nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x306c04c0 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x504f9b40 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x70174db1 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x761fbf1b nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x965890d9 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x5ee0b00a nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x037cc80f l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x07b777b2 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0bdd85ba l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0d262593 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3fcc0ec9 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x59355da5 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5ce19152 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x669165db l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7903ffb5 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8368f80c l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9094851f l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9efd662b l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd003b44b __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd96a7bc0 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe921d328 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xef1cf9b1 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xe5a5435e l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x058b36da ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x07730ba8 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x195bdfd1 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dae0028 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x37b66eae ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x40ac0392 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59ef6d93 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x63bd7b7b ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x79e08877 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7b4a1ff9 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x97dbcbb2 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaf38a62d ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xca57c6a3 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd118ceac ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf7d9a1ba ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x17fe5f5d mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x53ed2797 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8a59c512 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf1af8133 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2e7d857b ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4057d7b8 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x430ff865 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x48d6fc3f ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x51e590e7 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x58fb4978 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5b01203d ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5e8fbcce ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x64ce0685 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6ad78c77 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x797c1dc5 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 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 0xaa2691ea ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbc28b7e2 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbd3ace79 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcfc0697b ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd3445f14 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x47cdb983 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x51b3aa1f ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x78194183 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa0399ab1 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x076cdde3 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07cfd8c0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x090011ad nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0dab4805 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x101ca3e4 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x133d5618 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x138a5432 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x145d7749 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x171ed428 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1816f105 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18bf15ef nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19484bbe nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20339209 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21915bf9 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x222ac166 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24079e7e nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a2a0da9 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b3db6c7 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fe9d061 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31d3e1a4 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34fb9479 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3561c0db nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x360bc588 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3bb1a245 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c911370 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 0x4776ae83 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b5e751e nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ee74dfd seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x500cc594 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55e0d7e5 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57597874 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58b673fa __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x594e7445 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x627a06c4 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65d42d52 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67f30fca nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x686ac77f nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ad71bc5 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6eab8ad6 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fe567fa nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a01ced2 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7acf4316 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ca695e4 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f5de2e2 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8617f929 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8cdb55f6 nf_ct_helper_expectfn_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 0x9190dca8 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92cdc0bf __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93bbfc61 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96a59ea0 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97df11b1 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e345159 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa01bd871 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3cc8596 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4a1c048 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5e97333 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa8f5408 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf682ab0 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1ce2f83 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2d66485 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb44cc6d9 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb72444c5 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8a6a77b nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbfad24f5 nf_ct_l3proto_pernet_unregister +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 0xcb54f71c nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6903fea nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf58df01 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1249d05 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe254d4ec nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe259683b nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6fba151 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe90018e5 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe97935fb nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb213f85 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed33d49a nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1619d10 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1dc5ddd nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6f605d8 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xffb0e26c nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x6fc934ef nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xc7dab7ce nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xacdd0ed1 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0e20e2c6 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x283b4e17 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3957b877 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x42160b24 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x47c7e500 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x91fcaa21 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9aac686a set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9e6ecd33 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa798f0f1 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd8de0214 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x881e2e28 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x5ee5716e nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x91f51014 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa4150087 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe47f8bc0 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x2c5294e5 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x56567e08 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2031b864 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2530501c ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x50e7a50c ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x79be435c ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8600b8f4 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc6a85abc ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xde9fea78 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x70df587f nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x0befcbbc nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x929f7ef3 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xd8848e62 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xf3bd5604 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xfd3bcbac 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 0x295f2fb8 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x338d652b nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x33f84e39 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x41f7a4c4 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5ea210ef nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x83010a9b nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8a883ded nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb8c82fc6 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcc4bd122 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x45151cce nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x4956c5ad 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 0x5af6134b synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8f2c3015 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 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x23715ea7 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x273b3123 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x50b1d05a nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x53435d21 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5db97cf1 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x62a9a88e nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x76ff04e6 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x837299b6 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x84f9b0fe nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x91f49386 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb25fcb67 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcac521ed nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcde57339 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdddd1670 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe37b1890 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeba73c7c nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xecce94ee nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x22e8a338 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x349e5f7c nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3c6bc702 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x539a68b8 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x78e11d96 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc6597de7 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd9a3a018 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x0bad3b98 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb1f9dc3f nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf9f32f10 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x8f137cbb nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x52faee04 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x96e3d36c nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xbc8ed401 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x2fec275e nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x68e465ff nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x6ebb655d nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb2ed6ecd nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xd143aca6 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xd52c9f53 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x22a5857c nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x4544653f nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x744486d7 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x690de439 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xaeb3a50f 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 0x1640c8be xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2389b016 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x49037536 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5555c720 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6370224f xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6e412a67 xt_table_unlock +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 0xa147370c xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa6223335 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc333c28f xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc9e725ad xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd6577e2e xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe580fff9 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe967f992 xt_register_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 0x614053c9 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x6bbcce80 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xaac52ee9 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7615ead3 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xaeca432e nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xcd44ba36 nci_uart_set_config +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x030005df ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1db10122 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x48bef709 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x53123d3e ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7923370e __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7d186ba6 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9c594a67 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd94bd422 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd9796aff 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 0x0acc4107 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x1d949697 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x267eee74 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x2baf2e78 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 0x32d44d88 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x3407e704 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x3eb893ff rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x4499eb48 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x4622b59b rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x468d68bd rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x589039fe rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x6202f5be rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x78a39c58 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x8d9c365e rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x9362e1d1 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xa5238240 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xa65468ee rds_conn_drop +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 0xcc2d44a6 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xd3ae4f1d rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xdc7f21b5 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0xe2ed4c03 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xe3dfb3d7 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xe8281425 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xf7a62ed3 rds_message_addref +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x8fd5da02 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xbeb0ba98 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 0x0a1f5b9d gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x217c2fc4 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4453f629 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 0x01a515fe xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04b47b5a xprt_reserve_xprt_cong +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 0x069249ac rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06c9654c svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07e705ec rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x082b55f3 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08b65380 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aaab5a8 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b1ecb4a svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d07952a xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d08918c xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d71af86 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e37a4a5 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ecee4ca svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fc2c180 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10acc031 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10b882f8 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15f7618d svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1674abb4 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1684be3e cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x179343aa cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19b2b40b xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c21c682 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1decab91 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e4e25aa unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ecabe50 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1efff520 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fe02cd2 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21122705 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2222149e svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x254e2baa rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x257eb0f2 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25adc4ae xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b0860c4 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b88d058 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c7206c6 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ce57243 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d91b323 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d943c31 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e76014b rpc_destroy_pipe_data +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 0x3061fc8b xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31642898 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x319b8832 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32247be0 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33f50bd3 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3422dc3b sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34fc3063 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x352d7a4f rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x377a9555 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39b3fbcb rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39eb0ceb xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aa67db8 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bd071f1 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be97fa1 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c48c7f0 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ece4010 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3edb6bb6 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fbb76b4 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fd63877 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4025fe7b xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42541358 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43871eb2 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44e9b262 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4856a443 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a4b5329 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b195678 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c1d6490 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c7e0281 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d4b595e rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dfb38a4 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4edc5d32 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51252281 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5225511f sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5246d358 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5268fce8 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5450b0ec xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5583e667 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x567b9d48 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x576633d5 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x577af7d2 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58821a78 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b5898be rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x632e5c2d svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x650805bb rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x654ab68e rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67591436 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67aeef83 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x689973d1 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a5ddb2b rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bded46a rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cb29696 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cc0595d rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d602b39 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e2f5d6c xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70e49855 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70eb6486 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7144f99a svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71c2bb6e rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x728fdb24 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77ca6ebf rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77e47e46 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7996763c xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d8df7e7 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d9ac653 rpc_net_ns +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 0x8103baf9 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x829db8cd xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84350b55 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86dcc155 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87f15516 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a7ea65b svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ca45bf7 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d6a07ed xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f63c9f3 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f88dbcf rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9145d29b rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x915600a1 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93d30ee3 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93e627ff rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93fe8b56 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9400cf3a xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x958b7ae5 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95e34a7d rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97952a4d rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98833eb7 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x988dbb92 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98a474fc cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99ff8069 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b2ec60e rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0f20728 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa277902e svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2ae7f9d write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4df08b1 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5315b87 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa641fced rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa75f3ee0 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e2d45b rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab3dad0b rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac9167c9 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaee1e616 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf822135 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb11424d8 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb11d38ce sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb28d8857 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb346aa95 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5eb32c8 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb643f548 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6b9aeac xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba935f69 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba9e8397 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbce8c6d rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbeec061 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe78db30 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfdf3163 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0671b78 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1dd07a3 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc22c548d svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3492e26 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3f402ef rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc475e708 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc47c9888 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc2bbe42 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc7f147b rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd5476c7 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0ab46e4 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5bc68ba rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9d7395a put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda484d95 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc4ba93e svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd296bd4 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde1e0252 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde21a247 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf0243dd rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe13a548e rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe13d9433 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2469d44 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2ec7bae rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe558e046 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5b7216b xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe61d9301 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7cabd7d rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe85fa26b rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9ae9980 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed602cf0 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee412cb3 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf009586d rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf12217b2 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1499a45 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2237a31 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2703d70 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5f3e111 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf78d5d92 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7c02e25 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7ecddde cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf981d942 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa1dadb6 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa60d19d svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb5be119 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfec6956f cache_seq_start +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x011f2c76 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 0x1aba21f7 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4277cebd vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x488f70b1 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x56a1e467 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5d456360 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x600a831b __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x65a95f31 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7293af02 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9c4df110 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9ea207b3 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbbdd2ca5 vsock_find_connected_socket +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 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfb836bad vsock_stream_has_space +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1e87df5b wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x23abcef0 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x33a98945 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x39d12bdd wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x54fc1fbc wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5e774ba7 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7cacf1d6 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x82a88bc8 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x9f26ace9 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb5069aec wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xba877ec6 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc42621b1 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf0da6825 wimax_state_get +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x15a2c182 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1c7b8aff cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3577c3e1 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x42c2c02c cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x50e596e5 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5ac193d8 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5fd09ae8 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6f15c264 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x79964807 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x838445fe cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc63b35f2 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcc5c6001 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfdda31c4 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 0x045b0066 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2683bc71 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb0b6966f ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xcaeb8b66 ipcomp_destroy +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x33ca9cea __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xcda6d155 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4504b482 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5bc2aaff amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5d1e61d1 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6821ef42 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8b222982 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xac9444cb amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe0229dbc amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0452e578 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05d3f514 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x09d7af97 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d319f59 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x125c60e6 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b19128c snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ce76bfa snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x209849b4 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20bdfdc5 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x211e6963 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21c40410 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x275cf718 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a2b43dc snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2de260d1 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b580ea2 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c09a25b snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3dc07b93 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x416a9e49 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e9caa9e snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4f8e0764 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6030f7b7 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x619812ae snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x651cda60 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ac79eb4 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e50e798 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72f3b857 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7938591e snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f907947 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x802f5091 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8225dddc snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82d248ec snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8aaf380d snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x921f1ef9 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x931cb8bf snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x93abdbfc snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94187bd6 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96615828 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9bf5fd17 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9cf1034a snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ecc5588 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9fed78a6 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa41f917b snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa46432c1 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xabf884b5 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xacec313e snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0c632f0 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb21c13ca snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7caf399 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4fb9dc0 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc70f440f snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc90a920c snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcbf17030 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcdc01e35 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0a75401 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0ce4d70 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2d23fb0 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd83afdc6 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc33e277 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde4ce6c2 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf0dee43 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe105f840 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe32c2d95 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee252ac7 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf18e6ab1 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2ac4ff4 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3f02d80 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4cdbf61 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf72ce72f snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9f0cfe4 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa16988c snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa255f1e hdac_get_device_id +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x19933b02 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x285cf358 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x511fcac4 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa20c4107 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbe553329 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xdb51bdfa snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x004b00da snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01717e7b snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04422471 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x047399a3 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x050add3b snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05a58524 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0641f799 snd_hda_register_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 0x0d70b652 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2015ee14 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21540722 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x219be827 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x285651f6 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29e300f7 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2afefe8f snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cccee3c snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f077559 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2faf566c snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x303b93cd snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x308c234a snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x320453ba hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32c727a0 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35c2117e azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35ee85be snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35f3d520 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3aa6867a snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ac50c01 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b5bbb54 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ff3d4aa azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43dfae46 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4976ebf0 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a535c5e snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x523baf2f snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5833b5db __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59c5684f snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cb5f332 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d62edba query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fca3502 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x600028cb snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64157df2 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67d62120 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a7c3529 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ada74f6 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ee1a5d2 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f462bd5 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7050b239 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7141b9e7 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76b1d0f5 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a1aeec2 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b503950 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cf9b21b snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7edce320 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fc4f8cd snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8089f718 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83d6da64 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x866f1097 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8732948f snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x885b99f2 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x895993fa snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b65bc75 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c17b46f snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ee94b80 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x927b84ea azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x940b85db snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95e21da3 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95e76e05 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x961fe5f7 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x974dacde snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9abc1a20 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b5aa552 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bc452f0 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e757f28 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9eb18e17 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0763166 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa264841a snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa498e4e4 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8933678 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa99c2d04 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb066e849 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0ecac31 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2509603 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb38da08a snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7ba3f4b snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9026fa6 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf7dc062 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc22a2726 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2c883ff hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3533092 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc36a8ddd snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc452d79f snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc45be76b snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5224775 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5e0cabd snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6389917 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6e7e507 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc84f6835 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca68db76 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcaf40996 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc6292ac snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc9bf8e5 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce989305 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0445d7e snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd25d659b azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5050419 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5cdecc1 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6774ec1 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdcc26b26 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdcfd230e snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe38967fb snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4a82548 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb9b6423 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee5a4b80 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeebd78dd snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1cd07ee snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf40ec818 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf55eb861 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7438360 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb244a40 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb280843 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc6a1eda snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfce707f1 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe08024f snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe4f2523 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff49f81f snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff9f63ff snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x028e0309 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x052870c5 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0696a1aa snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x13bb1f21 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x178339c4 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x18235840 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x35dfd3eb snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6b67934c snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x714f2d95 snd_hda_gen_spec_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 0x84476973 snd_hda_gen_line_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 0x8e597398 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8fecc6c7 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x90baaf82 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9e6619e2 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa30b39d9 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xba280d5e snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc93f554c snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcae6a020 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd20e8204 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdbc08027 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe22f9df1 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x683370ef cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x6c0248ee cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x324bfda0 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7aa118d2 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x62421e16 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 0xdafc7a5c cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xe8efdc23 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x0d9a7f82 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x98f2dd71 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xa5a99a18 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0xe4bffdd6 max98095_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x38afdc32 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x67994b55 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x75415469 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x904c3b98 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 0x605eed28 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xdcf6543c rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xea62e51d rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x613d3ada rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x859a09ea 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 0x0a103d35 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x33e9bdb5 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x80d76a5a sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd1d0427d sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf4eb1700 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xd5b9fc28 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x488786c5 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x80df820a ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xa0611a63 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xfd79c510 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x6d3532df ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x229d4dae twl6040_get_dl1_gain +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x2ec89f9f twl6040_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x484bbcf4 twl6040_get_trim_value +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xf8b7cf4e twl6040_get_clk_id +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xff3cc9a2 twl6040_get_hs_step_size +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x1b210fc4 wm_hubs_update_class_w +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 0x71bc3cb6 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x73f8fdbb wm_hubs_add_analogue_routes +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 0x7945a6dd wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xcb81913d wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xd7ea9436 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xe4923125 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf25df2d6 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x36d9ac02 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x40251ec3 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x661d43da wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xe3f9cb97 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x4ae33b35 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x4a98e277 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x2a8f1238 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xbad7ea53 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/davinci/snd-soc-edma 0xaf73d441 edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x0b93cbf3 fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x8e43f618 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/omap/snd-soc-omap-mcpdm 0x814eebc6 omap_mcpdm_configure_dn_offsets +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x13c7edfd asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x18247ad8 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x784046ad asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xdf2a391c asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xb046233b 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 0x440b1170 samsung_asoc_dma_platform_register +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0xaedd67a3 samsung_asoc_init_dma_data +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x33149f19 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xbbccabf4 tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xecaf6ea4 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x7be39a76 tegra_asoc_utils_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0xcc6110db tegra_asoc_utils_set_rate +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0xddf2fb51 tegra_asoc_utils_set_ac97_rate +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0xee1ff45f 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 0x0b107252 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1f0b87a1 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 0x3a199a92 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x401bc456 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x426ad759 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5a578bfb line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x814f1944 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 0x995da6c4 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb56bb4ca line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbdc3add4 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc6f68df1 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc7aa39c1 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xca68807d line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf746f122 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf81698f6 line6_pcm_acquire +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 0x0007bc2c noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x002b221b devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x0049a6f3 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x0052bd9b gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x00543de0 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x00647929 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x007f2de0 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x0087490b pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00953d06 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x00ad067f device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00d53170 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00efdf7c pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x0114cb13 soc_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x01156bee perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x01703fa7 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x017a6262 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x018710bc spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x018edcce cpdma_ctlr_dump +EXPORT_SYMBOL_GPL vmlinux 0x01a23194 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01cf0492 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x01cf5958 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x01d26e20 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e2a00c get_mtd_device_nm +EXPORT_SYMBOL_GPL vmlinux 0x01e571b4 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x01fc74ee snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL vmlinux 0x025fafab __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x028d90ad con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x02b413ac cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL vmlinux 0x02c4210b dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x02d7cfc9 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0312eff7 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x0319c769 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x032375b0 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0336cef0 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033acf40 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034d76a1 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x03547c8f zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x0364fca0 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x0374d29b swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x037b3fef spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x037c2409 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x038897cd usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03a257b0 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x03b3bd5c blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x03c582fd __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x03db0d31 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x0402b504 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x04176af2 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x04308f51 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x04617632 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x04743671 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048de0f8 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x048ee7a4 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x04eac6ed adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x04fa9550 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x05115cde dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x0520ca60 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x05295875 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x0532efe9 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05542702 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x05772a8f __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x0594d1ae da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x05a33644 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x05df5b35 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x05df997a dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x061c1c96 of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062f6aaf da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x06312354 reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x06337adc key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x06438115 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06586054 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x067a4086 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x069a1163 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x06a37661 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x06b8f588 snd_ac97_reset +EXPORT_SYMBOL_GPL vmlinux 0x06c0471c __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x06d36fe2 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06faceb6 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x073f3a10 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x074059ac power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x07684a40 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x076a87e3 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07703b26 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x07830a83 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07c5b178 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x07e1ba30 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x07ee5562 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x07ff8c08 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0858b673 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x08656b1e eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x087ab519 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL vmlinux 0x08aae001 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x08c57641 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x08e55303 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x090c2cf8 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x093610cb sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x093db1a2 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x09750336 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x09aae457 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x09e27e33 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x09e942a3 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x0a0d9c42 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x0a193e4b device_create +EXPORT_SYMBOL_GPL vmlinux 0x0a1c3174 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x0a40de9b usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL vmlinux 0x0a58e3f1 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x0a7d0127 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x0a8e36f7 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x0ab2537e irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0ac731ec devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x0ae0e62d get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1fa4e3 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x0b358887 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x0b391b4d skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x0b50bdef rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x0b82b77d spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x0b8bf922 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x0bbae511 return_address +EXPORT_SYMBOL_GPL vmlinux 0x0bc05e71 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x0bc177de phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bd0a4a0 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x0bd6e787 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x0bdb3f77 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x0bddedc0 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x0bf72281 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c04805d nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c149ef9 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x0c1c926a pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c4bf487 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x0c4f006e pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x0c685a48 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x0c6be11e amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x0c7b46b6 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x0c802e39 sm501_modify_reg +EXPORT_SYMBOL_GPL vmlinux 0x0c8b38d8 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x0ca9278c snd_soc_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0ce3712c trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x0cee12b1 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0cf19e38 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x0cf94df9 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x0d0ec99c gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x0d10aaea ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x0d2260e3 md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x0d2bf269 unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x0d4275d5 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL vmlinux 0x0d43e001 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d6170c9 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0dd8d1db clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0e046854 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0e103682 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL vmlinux 0x0e64d8b6 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x0e70cd9b devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0eb1bdb4 musb_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x0eb8caee regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x0ed55ba5 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x0edc03f3 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x0ee70cef extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x0ef178a4 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f5bb345 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f7c3d36 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x0f7e9ab5 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x0f85651d pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x0fa7ea92 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0fd0ed9a crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x0ff5005f cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x0ff64c26 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x0ff9af09 cpdma_ctlr_int_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x104d9093 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x106ac4b5 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x106f9c51 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0x1073f2d6 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x1089cd0f __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x109d54c7 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL vmlinux 0x109f2598 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x10a6d9e5 omap_dm_timer_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x10a71c94 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x10b4daa0 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x10bb8046 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x10d65385 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x10d6e177 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x11025677 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x1120924e sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x113a53c7 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x1177e3e9 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x117e3fc3 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x1183300d irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x118827dc ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x11cfe000 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11ec6a77 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x11ed48b7 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x11ed8535 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x11f69ebb of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x12040b54 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1226197c led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x12287e14 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x122a44fa pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x12493c65 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x125d38b4 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x125d89cb usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x12686d37 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1293d0dc fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x12aa80a9 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x12c377ac devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x12c47b14 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x12c65c19 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x12cac684 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x12d05d66 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x12f7fd70 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1331263c blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x13354608 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x1344ab2a aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x134bed8d gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x134de863 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x1357c056 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13661ca0 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x13756a4b ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x13984ba7 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x13b613f2 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13b9a94c __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x13bc2b7d crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x13c35b83 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x13c35c5c clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x13c5773c tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x13e18d00 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL vmlinux 0x13f65af9 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x1406def2 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x142710e8 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x14403e36 gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14b4120b securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x14bd0c4a cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14caaefd da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x14d07666 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x15083ec9 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x152eef7d pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x153c49a5 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x155e34d2 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x15696a48 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x1587bfa4 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1593de9e rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x159a1776 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x15cc82d9 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x15d2add0 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x15da3fe1 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x15e1780a dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x16075d30 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x16150e5e ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x16190e8c fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x1638631c usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x16391d39 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x16427d9e device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x1651772c pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x16596db6 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x16604fd4 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL vmlinux 0x167f6052 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x16989e8b sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x16ac48cf __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x16cd7478 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL vmlinux 0x16db4798 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x17041fee snd_soc_bytes_get +EXPORT_SYMBOL_GPL vmlinux 0x17141d34 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x1717a05d omap_get_plat_info +EXPORT_SYMBOL_GPL vmlinux 0x172f57fe wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x173ea563 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0x17405494 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0x174c1a14 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x174d5a74 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x17798a99 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x179b775b subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x17b992b9 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x17c5dda3 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x17c8448e cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL vmlinux 0x17cda7a7 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x17db111c relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x17f3bbe4 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x17fce2f8 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1806b648 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x18070a32 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x181434ba tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18156ddf iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x1818ada2 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x183e87a5 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x185a3e8e pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x18712d17 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x1881cf15 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x18b19255 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x18bd02f1 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x18c6f52e evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x18f6a788 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x18f97f81 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x18fc79a8 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x192441c6 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x19272164 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL vmlinux 0x1927a4c9 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x19741c5e snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x197c6c33 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x19800742 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL vmlinux 0x198a3bfd kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x19928635 mv_mbus_dram_info +EXPORT_SYMBOL_GPL vmlinux 0x1995831a devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a966de usb_add_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x19b33b0d extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19d0906b dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x19dc1f08 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x19f20ccb pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a02b8bd usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x1a02cc4d bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1a29ec6d metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1a2c4ae5 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x1a3975c6 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x1a5352bc fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x1a6137f7 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a71919b snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1aa33989 snd_soc_resume +EXPORT_SYMBOL_GPL vmlinux 0x1aaa10f9 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x1aabe552 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x1abab5f9 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1b09f3da pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x1b0aac21 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x1b0dcae3 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x1b1ffbc5 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x1b2da4af usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x1b3261e0 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x1b3d7e09 __of_genpd_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x1b45a76f verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b958b8c ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1ba446f5 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x1bb5fc26 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x1bbd4795 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1bbfd404 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1c00b427 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x1c0d749a task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x1c1902ad get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x1c2ffd28 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x1c36f71f __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c389a5a sk_clone_lock +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 0x1c615629 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x1c6616bb attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x1c6c3987 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1c716881 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x1c74293d invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x1c78a045 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1c7db97d ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c968c46 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x1ca2d960 omap_dm_timer_request_by_cap +EXPORT_SYMBOL_GPL vmlinux 0x1cc5edd4 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x1cd02348 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x1cee5215 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x1cf33128 snd_soc_register_platform +EXPORT_SYMBOL_GPL vmlinux 0x1d065e1f xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d417ee0 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x1d458263 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x1d53ae38 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d792b1f usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x1d7f6059 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x1d8e3ebd usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x1d928f71 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1da003bc regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x1dc5c218 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x1e008234 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x1e03c797 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x1e1c797e snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x1e42a049 __of_genpd_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e61e34e device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x1e66fb0d serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x1e70ccb3 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x1e76744d crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1e8679f4 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9a276b driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x1ea8c5b2 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebb4734 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x1ebb5170 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecd538b thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x1eddfdff kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x1f066fb5 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x1f15c898 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1f2e5d55 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x1f2ef94e crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x1f397a26 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x1f45065b ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x1f50889d spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x1f550f13 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1f7cbd16 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x1f7fe36b dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f8fcf25 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x1fa90e56 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x1fb275fe tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x1fdb5a9d sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x1fe50c94 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x1fe8b052 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1ff6c8b8 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1ff86609 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x200ce51a crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x203a02b8 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x2054239d __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x20648b67 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x206681f2 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x20811379 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x20869545 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x208be8db thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x209264f2 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x209707d0 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x20c880ae usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x20c8d758 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0x20d5627e device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x20f8ff9e crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x2106ef9e mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x2114c8f8 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x211d1e7f crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x21204eaf snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL vmlinux 0x21269cf5 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x213001fb kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x2138f49a bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x21481aed vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x218b4e4c power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21a6594c of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x21aa3940 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21cab000 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21cefec1 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x21e371d0 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x21f0fcfd ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x21febf58 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x2216b777 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x222286d2 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x223e2022 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x2241ec64 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x22427eb1 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x2243f657 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x226a674d atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x228c037c inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x228f6026 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22b54c5f raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x22b7073f blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x22cb01f1 mtd_write +EXPORT_SYMBOL_GPL vmlinux 0x22e6f575 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x22f2eb54 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x230356cd md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x230c1806 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL vmlinux 0x23392174 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x234eb8af sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x23537dc5 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x23557a73 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x235b1279 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x2373d9ad simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23927f4e bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x2395e003 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23c27a7c blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x23ece58f dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x23f26967 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23fe40c4 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x240b072a sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x240d8d9a ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x242ec6eb mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x2435f236 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x243bf561 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x2443339a ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x244c1899 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x2454268a gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x245868ce usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x248b378a wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24c47dbb clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x24ce5f12 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x24d7dde3 iommu_set_fault_handler +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 0x25368b9a ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x254687f1 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x255765dd ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x259eb1ac rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25a7d909 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x25e4fa8c btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x25e93cd1 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x25ff6d2a ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x2603abc3 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x26068149 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x261098a6 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0x2629cacb cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0x262c73af inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x264fba44 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26520c55 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x26641c7f of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x26665f1c pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x266a52c7 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x2673cc4e ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x268892b4 sm501_set_clock +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 0x26e741d8 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x26ef636f tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x26f34e63 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x26f3d0c3 sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x26ff0a1c ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x270e415a dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x2716dd6b subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x27314652 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x27409e66 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x2745c80f pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x274abf83 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x27525461 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x2752d752 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x276f1947 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x27a9510d cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27c6622d ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x27d7a788 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x27daf69c rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x27e7d7bc device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f66e1c mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x28257bfb nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x2837697a tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x283965fa snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL vmlinux 0x28818332 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x2898aa14 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x28a1e3fb gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x28aef184 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x291d1325 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x29234189 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x293aec20 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x29446af7 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x294f0702 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x29513f39 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x296330c2 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x298a3b7d pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29b69d68 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x29bb4b21 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x29d651a1 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29ebe9b3 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x29ed4da4 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x29f2081d regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x2a03b0eb regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x2a1959ed __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x2a1c0b4e dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x2a3e6b28 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x2a44760a debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x2a5de535 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a68a253 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x2a6cdf55 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x2a7a37cd snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x2a816a05 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x2a85e15c l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2a906969 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL vmlinux 0x2aa33904 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x2aa3cd48 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x2aa7c929 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x2aae43f7 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x2ab149e7 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x2ac67031 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x2ad9d326 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x2aeaf908 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x2b162206 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x2b1ceaef thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2b1f43ba pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b2fa706 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x2b343c39 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x2b4b705c xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x2b6fae4f inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x2b74f602 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x2b89f71b __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b9fc5eb unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x2ba196e3 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x2babe81f __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x2badf409 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x2bc5019b pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x2bd011f6 omap_iommu_save_ctx +EXPORT_SYMBOL_GPL vmlinux 0x2bea0f47 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x2bed5d35 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x2c00d336 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x2c11253b file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x2c16c49e ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c239a0d get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c467aa0 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x2c4dd374 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2c5348a0 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x2c66aa99 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x2c677389 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x2c7124c1 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x2c79ec62 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8c7901 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c8e4e84 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2cd7d86c mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x2cdaf6eb regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2d00d199 crypto_enqueue_request +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 0x2d5ca4f5 put_device +EXPORT_SYMBOL_GPL vmlinux 0x2d66946e blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x2d8cc353 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x2dad9b05 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x2dc64ef3 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x2dcc544a sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x2e02af82 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x2e05c734 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x2e0bb1ad rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e278f88 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x2e2ddc6b regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e7362f9 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x2e742b00 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x2e839fdd regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x2e8ff4ab gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x2e9670c0 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0x2ea3f89b xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x2ebce2c5 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ed2d8ed crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x2ed80a49 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x2edb02fc platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x2ef4d512 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x2ef6b5bf smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x2f0b0b95 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x2f0cc402 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f18b651 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x2f2bd8c6 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f580d8e crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x2f5b9f27 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x2f612d77 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x2f615176 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f6b5430 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2fac5006 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x2fc7b541 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x2fd05313 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x2fd331c7 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fde7473 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2fe3c017 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x2fef33e1 mtd_is_locked +EXPORT_SYMBOL_GPL vmlinux 0x300aa343 dapm_clock_event +EXPORT_SYMBOL_GPL vmlinux 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL vmlinux 0x30273a1a x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x30670500 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x308c8464 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30b9b9c6 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x30bbe6a3 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x30c85520 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30f5bf8a amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x31080ee0 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x310b905b __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x3119d886 napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x313aa7f5 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x3166fa65 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x316f86d0 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x31859334 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x3192a17d dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x32597854 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x3264f829 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3268dc65 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x328333aa fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x3296f812 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x329898ca pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x32babe65 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x32c2f185 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32cf3b3e ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x32e6c833 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x32f30c66 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x3301e4e9 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x33028506 __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x3302d9d1 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x330684f7 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x33125d94 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x33179eae regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x331c2892 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x33256a19 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x33347be0 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x3337700e __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x334484e6 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x335f5297 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x337f69d4 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x3386f6ec mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x339624f4 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x33982129 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x33a299d0 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x33a4359e pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x33d01f40 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x33d60be4 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x33e97502 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x33fc6ef4 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x34009102 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x3404cd08 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x341643ba omap_dm_timer_modify_idlect_mask +EXPORT_SYMBOL_GPL vmlinux 0x3435a197 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x34475a8f bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x344e7fe4 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x3475196f crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x347669ee virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x3484603f gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x3493635b inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34d4c282 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x34fad8ec bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x350ed44b snd_soc_info_volsw +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x353862ea iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x3563bf68 omapdss_of_get_next_port +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35b70f93 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35cb457f bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x35d5d426 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x3602124a snd_soc_remove_platform +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x360b1f56 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x361cd802 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x362f232d crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x36804625 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x36985a96 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36be736b of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36ec897e ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x37013368 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x3704b1cd snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x372e1b2c ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x373eda25 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x37488e83 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x3764b748 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x3770cc73 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x3779c5f5 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x37a48d63 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x37a7afea mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x37ae6eda virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x37afa0fe blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x37b0f615 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x37c0fc9a skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x37ffe1b4 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x3800b362 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x382629f0 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x3830198c dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x3843466a regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x38659b28 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x3866f0b3 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x386b6a44 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x38848e43 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL vmlinux 0x3884c920 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x389baaa7 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x389f9d46 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38da2e10 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x38df6330 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38f616e5 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x38f784e2 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x391ed7cb device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x392e6628 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x392ffc1e ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x395377f3 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x3973a702 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3978a44a snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x3981ae81 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x398661af sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0x399a3ba5 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x399d5598 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x39bc81a4 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39d0259b lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x39d0d11e stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x39d770dd snd_ctl_activate_id +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39f00d27 snd_soc_write +EXPORT_SYMBOL_GPL vmlinux 0x3a0846a9 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x3a26d33d snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a2cf0d0 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a52de9a ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a6a81b6 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a7673ea ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x3a854d5a hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3a925ffd usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x3a9aba80 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa9886a snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x3aafc1c5 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x3abc2a1b desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x3ac22374 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3b09e78c usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x3b14c123 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x3b20719c ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x3b23d797 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x3b2abd65 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x3b2c0e09 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x3b3c6dde snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL vmlinux 0x3b40dd6c usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b6f6465 regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x3b87394b __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x3b9c49ba sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x3bbd05d8 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x3bc6b0ac __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x3bc9902e fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3bd1f3a9 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x3bd7948f sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x3bfa6694 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x3c0177c6 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x3c1767ec i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x3c29a2f9 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x3c56fbe4 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x3c667a90 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x3c6ef7bd tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x3c704c5a snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x3c7397ce devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x3c7615cf fat_detach +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 0x3c9553ee gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x3c97f5c1 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x3ca0ef90 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x3ca8701c spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3cb68398 mmput +EXPORT_SYMBOL_GPL vmlinux 0x3cb96762 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x3cbca20a of_css +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd80b3a device_register +EXPORT_SYMBOL_GPL vmlinux 0x3ce90d35 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x3d114227 imx_pcm_dma_init +EXPORT_SYMBOL_GPL vmlinux 0x3d16f4d0 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x3d17048c devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x3d1bfd6a transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d429064 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3d509943 omap_dm_timer_set_load_start +EXPORT_SYMBOL_GPL vmlinux 0x3d79431c ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3d855f0b xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x3d86f513 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x3d88172c kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x3da0cc5d aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3db34eaa gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x3db51536 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dcc0192 securityfs_create_dentry +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 0x3de9d684 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x3df01025 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x3df3bd48 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3e3337de crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x3e39af85 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL vmlinux 0x3e410620 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3e5be7cc fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e6848ca ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3ea63cb7 dapm_regulator_event +EXPORT_SYMBOL_GPL vmlinux 0x3eab1e42 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x3ecbcdc7 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x3ed5d12a spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x3edbc307 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f1c7629 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x3f224df2 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x3f47a25f crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x3f4bccd7 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x3f566aa8 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x3f664fa5 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x3f804b08 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x3f92a8bb fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x3fa6413f ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3fb688f9 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x3fcfe4d4 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x3ff5f19d phy_pm_runtime_get +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 0x40801b94 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x409125f7 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x40a04fc4 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x40abfa54 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x40ae959a omap_dm_timer_set_match +EXPORT_SYMBOL_GPL vmlinux 0x40af0de9 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40c15adf trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40d87d70 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x40e65142 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x40e9dce6 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x413e4bab devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4141b3ee wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x414febf5 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x4171f8ad usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x419c4094 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x419f960a fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x41a4e838 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x41c5274c __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41ef6f87 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x4206b508 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4213e0f5 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x42297639 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x4243c045 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426d28fa tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x4270999e page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x42736777 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42991ea4 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x42b364ef scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x42db0370 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL vmlinux 0x430554fc usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x431e8539 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x4320e347 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x43323c03 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x4334b16b of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x433f128c sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x436024e1 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x43804cc8 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x4382410e raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43c93fd2 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43deea57 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43fa95ed mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x442c08b4 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x44517574 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x44637bd6 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44b8e607 find_module +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44db4dee tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x44e97b7b clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x44ef78d9 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x4500d0a3 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x450b2b1a relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x451fe3b2 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x45386db4 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x455be4eb clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45800dde regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x4588679d snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL vmlinux 0x45886af7 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x4597d4df ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x459ba141 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x45ba1367 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45cb8878 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x45d5e0dc usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x45d8cdcc rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x45e733da pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x467e7543 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468cc0d0 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x46a3c79f unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x46ab8209 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x46aff51d ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x46bf9850 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x46d8e263 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x46dbeb0a devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x46f3e5d8 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x4706bedc rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x47133a7a device_move +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4728dee1 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x47331e09 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x473fba89 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x475bdce9 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x479fcc44 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b0d809 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x47d18d60 mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47f2132d ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x47f5ae02 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x480c3d22 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x4811e5b5 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x48356517 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x4837bdca key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x483c199d spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x4859f8fd aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x485e5a5e ipv6_opt_accepted +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 0x48a085a7 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x48a53df6 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x48ab789d pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x48b1d380 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL vmlinux 0x48d4fa75 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x48daa830 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x48e9841c simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x48f0236a regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x4930684a usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x493961a3 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x49504fbc find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x496f0a90 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x498743bd of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49a54c76 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x49a670ac __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x49cf77f6 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4a2aee97 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a42110f subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x4a446d2d pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a4d6e2b spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x4a53196c __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x4a544623 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x4a55e4eb __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x4a57808b of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x4a63f3b2 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4a790daf devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a996ef8 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x4aa1bf01 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab1a16b usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x4ac10dc5 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x4aca0355 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x4adc2a86 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x4aeedd75 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x4af64cde skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x4b0cddaa transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x4b187ff2 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x4b1c5921 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4b2a71f0 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x4b41db21 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL vmlinux 0x4b42c2a7 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4b4b67c8 put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x4b5b9daa virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x4b780197 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x4b7c8e00 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x4b8c49d2 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x4ba6f60d perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x4bafcdd8 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4bb4dc0d pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x4bf17b45 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x4bf5bbd7 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4c1e6c22 max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0x4c24dc5a pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4c45f4e9 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x4c47ec15 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x4c5406d5 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c6a4988 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x4cb05183 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL vmlinux 0x4cb2f559 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb95db9 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x4cd5ffaf yield_to +EXPORT_SYMBOL_GPL vmlinux 0x4ce0a4b3 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4d3b4146 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x4d4afcaa __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0x4d5b2163 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x4d5fbc21 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x4d69cb72 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x4d7b4b12 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x4d8a9856 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x4d8b8764 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL vmlinux 0x4d9cf503 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x4da72d25 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x4db8a86a ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x4dc14687 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x4dc92f1e relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4df120c1 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x4e07f8ee vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x4e098242 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e22b48f omap_dm_timer_request_by_node +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x4e5766d0 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x4e61e840 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x4e887ba2 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x4e9828b6 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x4ea08a10 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x4ea3fac7 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x4ebd4d6a snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0x4ecc6aaf led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4ed00765 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4ee238da ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f00dcd0 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4f0d2af6 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x4f1a19d2 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f253441 arm_iommu_release_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f35767b each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x4f49b183 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4f57ebb1 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x4f6433fe pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6bd78a usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x4f7c4f9a do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f9e79d4 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x4f9f38d4 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x4fc71458 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x4fc8fc9d fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe30e75 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x5024387f regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x50322b4a __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x503400ae inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x50571d26 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL vmlinux 0x50587c5c fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x506f5160 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x507bede3 of_resolve_phandles +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 0x50abd9f2 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x50b6c538 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50d5c0a6 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x50db9808 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x50dcaa49 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50ea032a rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x50ec6f02 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x50edad49 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x50f561fd ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5117b78f bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5153c834 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x51855f81 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x51961593 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x51f37e85 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x51fe799c ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x51ffe20a free_vm_area +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 0x521ef2a1 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x522eb4f7 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x523b6a0c rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x524ac4a7 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x5257f875 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x52807f8e rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x5296e7b0 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x529f931c ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52c0d5d8 scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x52c89356 omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL vmlinux 0x52cd8b6f power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x52fcfbf8 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x530bc1e4 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5327ceba regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x534c1a97 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x53896d3e __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x53b5d4db snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL vmlinux 0x53bc4480 mtd_is_partition +EXPORT_SYMBOL_GPL vmlinux 0x53ec649d of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x540c77a6 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x54165a86 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x544aab61 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x545fec86 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x54644e95 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x546bb029 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x546dc25a device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x5477481c vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x5489da94 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54b83a7b snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x54c7970e tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x54de53b0 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x550f0690 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x553963ba crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x554267c1 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x5559a1a8 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x559162a2 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x55966e45 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x55975dec devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x55a66fa8 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x55b43567 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x55b50800 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x55c5e336 mtd_unpoint +EXPORT_SYMBOL_GPL vmlinux 0x55d3d5fc debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x55d54d90 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x55ec2217 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x55ee1dee usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f9ad76 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x55fc47c4 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x56128f3c crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x561b216f device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x56246283 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562db3bf mtd_device_parse_register +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x56578031 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL vmlinux 0x56593fb5 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x5663c1e5 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x567301e4 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x567590ec adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x5676aac9 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x56a94635 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x56a9f65d regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56c0b687 snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0x56c28a13 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56df3dfa omap_dm_timer_set_int_enable +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56f5fe33 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x57033cb8 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x570fd233 __cci_control_port_by_device +EXPORT_SYMBOL_GPL vmlinux 0x57191b2c ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x5732ecfb ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x5735a272 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x5755a20e usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x57725290 scsi_target_block +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 0x57f730c6 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58063ede srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x580dd1b6 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x584bd0a3 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x584e83c0 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x585b6385 omap_dm_timer_write_counter +EXPORT_SYMBOL_GPL vmlinux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x588329da power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x5897e539 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x589e9443 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x58c258f1 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x58d674f3 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x58da88f9 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x58ded8de regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x58fb4898 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x58fc2df5 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x591a6629 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x593af693 __of_genpd_xlate_simple +EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x5964c7b9 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x597dabed ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x59852ba2 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5986dae6 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x598cb553 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x59dc7c01 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59f1a168 tegra_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0x59fe1210 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5a0301a5 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x5a42da13 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x5a6ba280 spi_async_locked +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 0x5ab97ec7 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x5ab993a8 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL vmlinux 0x5acf6567 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x5adf8e10 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x5ae6a2c9 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x5af5a834 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x5af78807 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x5afa2ded percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x5afdf4e1 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x5b000aaa iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x5b1395f1 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x5b1745a6 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x5b3fcb7e wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5b409754 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x5b461213 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x5b4b56be unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x5b6362c0 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x5b6cdb4c fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x5b7d04ca blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x5b8d092c bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x5b9d7aa1 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x5bb84433 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x5bba5cd8 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bdd6234 omap_dm_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x5be1c17d dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x5be72264 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL vmlinux 0x5beb90ae of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x5bf6ec35 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x5c23140c pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x5c2fe4a5 cpdma_chan_stop +EXPORT_SYMBOL_GPL vmlinux 0x5c301ba2 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL vmlinux 0x5c399e8e fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x5c4187cc clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x5c45c617 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c6a469f device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x5c6d2660 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5c7ad972 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x5c8daaaf ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x5c93ae64 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x5c9f7580 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cb4e8b2 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x5cb70769 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cc66c9e elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5cd7b9dc of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x5ce25444 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x5ce3b3c2 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x5ced79c0 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d153a7a hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x5d193395 devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x5d1fff1b regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x5d47559a pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x5d51bcf7 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0x5d5251c4 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x5d5cfe8b sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x5d640864 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x5d6749a4 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0x5d6e30c0 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x5d87e45d get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x5d9f431b metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dd4811b ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5dd81033 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x5de62ee4 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x5de913ec devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x5def2778 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x5df24c20 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x5dfa4059 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e16d608 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x5e384160 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e5f3316 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x5e608e03 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x5e686336 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5e8cc01a amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5e9d5bf1 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x5eade418 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x5eb52989 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x5ed62662 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x5ed87d32 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x5ee1285d usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x5efe130c dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x5f38df8b of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x5f65165a blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x5f6dcaf4 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x5f95d647 snd_soc_bytes_info +EXPORT_SYMBOL_GPL vmlinux 0x5f9cc9c9 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5fa1ba13 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x5fa8ff00 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x5fc14c47 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x5fd29bfa ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60322b85 mtd_block_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x60329171 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x605fce24 omap_dm_timer_request +EXPORT_SYMBOL_GPL vmlinux 0x6061f122 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x606d21cf hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init +EXPORT_SYMBOL_GPL vmlinux 0x608a1603 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x60992c1d usb_gadget_set_state +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a7db0b power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x60c10fbc __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x60d30707 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x60d5b2cf single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x6103b2ba cpsw_ale_create +EXPORT_SYMBOL_GPL vmlinux 0x6105b33d usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x610df9b2 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x61388ca0 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x61693dbe pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x61780a40 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x617d077a wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x61815ff0 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x6195e562 cpsw_ale_control_set +EXPORT_SYMBOL_GPL vmlinux 0x61a40dc3 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x61a55a01 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x61b15151 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x61b1e122 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x61d3194c stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x61d55240 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x61e86ee7 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x6210299e scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x621f335b ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x62290d7a usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x624dd3ed regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x624fefe6 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x626d769f of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x62baa0ae devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x62ce1e8f regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x62d49109 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x62d572d6 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x63100d08 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x6310defd pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x631d45de filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x6327ce4c usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x6336f89e nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x633982b4 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6342ff63 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x634492a2 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x639b1166 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x63b9fff2 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x63d17cfa page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x640571b5 snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0x6405d9e6 sm501_misc_control +EXPORT_SYMBOL_GPL vmlinux 0x64067500 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x641445b7 default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x642bba6f bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x643401d8 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x6457d77d arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0x646f0fc3 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x647df91b tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x6492d746 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x64bd07b1 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x64cc1ac2 sm501_unit_power +EXPORT_SYMBOL_GPL vmlinux 0x65215304 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x652f6926 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x653063a0 replace_page_cache_page +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 0x65767854 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x657e73c6 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x65912f35 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x660e39fb __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x660fd2c4 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x6611afc1 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661968c8 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x6624f435 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x667ac567 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66c88c44 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66dd5a71 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x66e130fd extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x66e89ced snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL vmlinux 0x6713d94f tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6768248f of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0x67718e6b snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x6782bdbb split_page +EXPORT_SYMBOL_GPL vmlinux 0x6782fbf2 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x67885d4f crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x678f0c00 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x6790aa09 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679a029b clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x67a7645d tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x67b8f75d crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x67e89814 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x682f66cb rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6833ce7b perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x68367b86 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x6859b655 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x686e49eb genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x687c7608 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x6883225e pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x68b2156b virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x68c44150 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x68d3792c br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x68e47b2c cpdma_ctlr_destroy +EXPORT_SYMBOL_GPL vmlinux 0x68e8a946 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x68eadfe9 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x690ae841 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x6919d170 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x692f4d26 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x6935611e usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x6946a6ed wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x694be42a usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x6954aa7c inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x695d3f5b omap_dm_timer_enable +EXPORT_SYMBOL_GPL vmlinux 0x696413ad snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x696afeec usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x6974ae30 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698522a9 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x698aaeab vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x69907fe3 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x699fc352 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x69a305d9 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x69d71074 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x69f0a41b dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x6a0cd3eb user_read +EXPORT_SYMBOL_GPL vmlinux 0x6a12c9dc devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a19667d of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x6a19a60b pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a1d8df2 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x6a226bba nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x6a28b27d thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x6a343dac usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6e42fc bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x6a851346 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x6a8c8746 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6a90a347 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x6aa1a706 snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x6aa1dc00 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x6ab78720 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x6abfea5f pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x6aec688f phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6b0af61a led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x6b118c75 cpsw_ale_dump +EXPORT_SYMBOL_GPL vmlinux 0x6b15a5c6 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b51205f component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x6b5a8427 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL vmlinux 0x6b7e0b7c clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6ba2e46f tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x6ba65829 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x6ba9f8fb of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x6bc946da get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x6bd65e23 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x6bd8c06e fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6bdc1032 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x6bfb9f41 component_del +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c1a6ba9 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c4f060a class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6c67e930 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca76c29 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cba2d62 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cf0e3ee of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x6d211e60 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x6d2de234 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3ebb70 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x6d424356 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x6d57c012 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x6d57de24 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x6d63a533 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x6d7d3734 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x6d844126 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x6d8d0ada ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x6d8f8a8c irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x6d9a877b mtd_del_partition +EXPORT_SYMBOL_GPL vmlinux 0x6da082f4 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x6da08d71 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6dbff831 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x6dd046cc pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x6df29df6 arm_iommu_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e1714b4 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x6e3dbc02 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x6e44d79e dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x6e4f8a0d ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e630d23 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x6e71d850 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7dfb04 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e973fe6 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x6eb9bb72 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x6ed3c840 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x6eee078b reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f2b0634 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x6f3309ff crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x6f5c638f kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x6f6fca34 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL vmlinux 0x6fc95fde thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x6fda5035 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6fe32fad amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fe54617 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x700b057c snd_soc_read +EXPORT_SYMBOL_GPL vmlinux 0x701550d1 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x70332eba sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x703c1418 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x70506047 pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x7053d024 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x70684d3f omap_dm_timer_set_pwm +EXPORT_SYMBOL_GPL vmlinux 0x7068747b regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x707246a0 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x7092828d nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x70a07986 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x70b20568 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6d93c of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70cff588 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x70e93942 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x70f05bb7 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x70f428f5 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x70f4ece2 input_class +EXPORT_SYMBOL_GPL vmlinux 0x71008581 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x712499ab blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x7127df25 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x71317f9f of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x713be975 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716a4c25 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x717777c0 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x717b67da fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71b9adc1 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x71c695b8 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71f6a490 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL vmlinux 0x72097f4a __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL vmlinux 0x7228a2ff disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x72306f22 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x724b1f37 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x724d0125 regulator_allow_bypass +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 0x727a5c6f get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x727de5af pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0x72808b1d omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0x72882d7d gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7291019b __cci_control_port_by_index +EXPORT_SYMBOL_GPL vmlinux 0x72a7e952 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x72ab22ad snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL vmlinux 0x72b9772f pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x72ca7d5b sdhci_get_of_property +EXPORT_SYMBOL_GPL vmlinux 0x72d4a115 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x72dbffae ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x72e785ab phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x72ea338a snd_soc_unregister_component +EXPORT_SYMBOL_GPL vmlinux 0x72f62b1f dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x72f8344b dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0x730bd0c7 asic3_write_register +EXPORT_SYMBOL_GPL vmlinux 0x7334f06e crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x733cf341 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x733df24c tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x7347b35c snd_soc_component_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x734e57bf of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x734f26d2 of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x7372d5e7 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7392a0e2 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x739510e2 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73afcbbe irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x73b8d0e8 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73bda122 __devm_regmap_init_i2c +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 0x74562c52 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x747cd265 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x749f4f94 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bdf5af wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x74e856a8 pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0x74ee24b6 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x755d4edf ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x755ddafc mtd_point +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x7594b2e8 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL vmlinux 0x7596bbb4 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x75996b21 arm_iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x759aea93 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x75ab3dba ti_cm_get_macid +EXPORT_SYMBOL_GPL vmlinux 0x75c9f9b3 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x75ca3cb0 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75cdc05d extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x75e1a8f7 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x75ed173d register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x75fa96c8 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x761e0aca btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x763f2170 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x764928a2 cpdma_chan_create +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76882753 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL vmlinux 0x76a71455 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x76b38d11 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x76bd3278 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x76bedbde usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x76d3a18e mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76dd88be regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x76f4e837 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x77095d76 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7719c0d7 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x772882d5 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x77361c60 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x77417107 snd_soc_dapm_free +EXPORT_SYMBOL_GPL vmlinux 0x774b2907 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0x77529a82 device_add +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7777d256 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x779658d1 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77d80baa __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x77f8d683 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x78027ec8 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7822a050 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x78285b75 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x78493617 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x7849775c devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x785657e5 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785b4317 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x785b7ff8 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x78607252 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78633402 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x787b1c36 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x787efd87 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7881bed6 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x788c9e9e pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x788f8921 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x789e6c8d crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x78aac5b7 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78ba0154 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x78d7ecb8 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x78e32d2d ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x78e6e0b8 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x78f06b05 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x78ffb770 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x79190ce7 balloon_page_dequeue +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 0x794ee4c8 sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x79afcdaf ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e25b25 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x79f659ac __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x7a1f8b97 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a39b3b7 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x7a45ad2a driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x7a4de997 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x7a5b2243 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x7a67cc3f seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x7a70b601 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x7a817118 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x7a8600b5 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x7a8deeec devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a9dc994 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ac8340a regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7af5df14 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x7b0548da wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x7b0dde53 regulator_list_voltage_linear +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 0x7b574170 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x7b5f1906 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7b76087d class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7b7626f9 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x7b7f3a0f of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x7bb7e04e usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x7bc8dfbe put_pid +EXPORT_SYMBOL_GPL vmlinux 0x7bfffc51 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7c279be8 kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0x7c3bcc42 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x7c3df4cb regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x7c5013a6 md_run +EXPORT_SYMBOL_GPL vmlinux 0x7c6a49ce unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x7c7791d6 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7c7e12d7 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x7c7f0da0 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7c7f8c5f simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7caf9236 skcipher_geniv_alloc +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 0x7d289386 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7d303acf dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x7d3356a3 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x7d3dec27 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d723f9a __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x7d776e72 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x7d790677 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7d7c1549 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x7d8962dd scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x7da11926 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dabb7f1 omap_dm_timer_set_prescaler +EXPORT_SYMBOL_GPL vmlinux 0x7dad5dc6 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x7dd778d5 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddb11ec register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x7de2457d usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0x7df2d5da dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x7e042698 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e11bfab sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0x7e32d722 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e64c908 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x7e6e4b8e cpsw_ale_stop +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e996d4c power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7e99ec4e gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7ed68941 asic3_read_register +EXPORT_SYMBOL_GPL vmlinux 0x7ed81f23 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ee878e8 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x7eedab61 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x7efbca49 cpsw_ale_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f25eace pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x7f28bbf3 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x7f3a6816 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7f513492 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x7f5e42b1 sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0x7f61038a simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f9e4c9f tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x7fa7282a gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x7fb12fef pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7fb9a129 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x7fbb5711 probes_decode_arm_table +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fc3db88 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x7fcdcd64 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x7ffd8469 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x8010d2c6 percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x802803f6 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x803ed772 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x8042bb6b omap_dm_timer_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x80462a78 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL vmlinux 0x8056bb03 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x806ca9bd i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8076c503 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x808e1e82 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d0dd01 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80ddd323 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x80e92131 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x80eed54d clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x8105c0b5 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811a6df6 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x812d9b98 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x812e86ff debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815e347b dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x81780dce posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x819f1063 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x81a2fe7d ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x81ac9ff9 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x81bbef39 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x81c2d815 snd_soc_platform_write +EXPORT_SYMBOL_GPL vmlinux 0x81c9969a crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x81d9779d class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x82132aec of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x8225c601 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x822e826f pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x824466ec bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x825f0a5b bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x826869db component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x827aa9f2 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x82a4e426 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x82ad1e86 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x82b285fa srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x82b710dc serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dd2354 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x82dd6e42 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x82e02b04 omapdss_of_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x82e9fcb0 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x82f25f58 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x83189d19 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x833ade88 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x8357587d max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x83603c8c sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x837e0019 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x83814f0f of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x8388c114 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x839642e2 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x83b57c5e ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x83d55dc0 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0x83e29aa8 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x83e4f0f6 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x842b5b80 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x8454bd62 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x845821d9 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x84589e95 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x848bd0fb call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84b6e194 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x84cba07e led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x84e46781 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8505a7f3 device_del +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x85195c0c cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x85863f16 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x858bf37e scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x85a526d9 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x85aa7519 mtd_read +EXPORT_SYMBOL_GPL vmlinux 0x85bd7045 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x8603f1c9 imx_pcm_fiq_exit +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x862b9816 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x8631c5f9 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x863ace62 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL vmlinux 0x864a506d usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x866934cc ref_module +EXPORT_SYMBOL_GPL vmlinux 0x8670e046 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x867818fa __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86916741 cpdma_ctlr_create +EXPORT_SYMBOL_GPL vmlinux 0x8693153e blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x86a843fe ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x86c03f48 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL vmlinux 0x86d5ed4b unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x86deb84c tps65217_set_bits +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 0x870ee101 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8717df8b __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x87222320 cpsw_ale_start +EXPORT_SYMBOL_GPL vmlinux 0x8734b536 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x873e218a devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x874802a0 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x875c37a7 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x87679209 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x877c67f0 extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x87801315 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL vmlinux 0x87813099 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x87932b5f bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8793e4f1 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x87ea6ca2 mbox_controller_unregister +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 0x8868fcef snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0x8875a9eb ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x8898cdf2 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x88a1fb71 blk_end_request_err +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 0x88d1da9a tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x88d85c24 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x88ee65fa unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x890ab10d raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x89157656 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892b9281 ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0x8934ec5f locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x896c2c9c arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x8973ef73 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x89a9496a virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89e46183 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x89e5ddca pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x89f265e8 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x89f6f5b6 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x8a0becf2 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x8a1fe7e1 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x8a49d00b serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x8a4b6399 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL vmlinux 0x8a5080d2 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x8a54a807 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a578c27 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8a741ccb cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x8a8bd50e fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x8aab6ce4 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x8aad979b snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac5cf1f ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x8ae6933b xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x8afdcd0a regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b2f776c usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x8b3ae135 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x8b47229f attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x8b612f63 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x8b6c8621 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x8b71935a dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8b775d3a __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b8f4c69 anon_inode_getfd +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 0x8bcd2e2e ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x8becaab3 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x8befa8f3 mtd_erase_callback +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 0x8c16e10c mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x8c1c3760 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x8c286100 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x8c3926d7 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8c55d105 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x8c5e47d3 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7d0d04 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8c8a9c15 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x8c907578 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cf3dc55 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL vmlinux 0x8d0110cc debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x8d023228 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x8d060491 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x8d0d2a09 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x8d0d60a7 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8d226fb4 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d41ffaa omap_dm_timer_stop +EXPORT_SYMBOL_GPL vmlinux 0x8d7ba8f8 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x8d86fa00 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x8da17b42 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x8db0bcc3 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x8db29d00 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x8db6126b task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x8dc3c0e2 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x8dd72551 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8dde25de add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x8e13f128 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x8e248809 omap_dm_timer_start +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e3421d5 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x8e42e821 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x8e7894bd __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8e7f6644 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL vmlinux 0x8e96b545 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x8ea4f79f blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x8eadde38 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ed74449 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f7b9353 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8f8b6428 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8fa2c862 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x8fc48295 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x8fe9481c dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8ff8003e dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x903a25af mtd_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x904d7374 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x9079934f iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x909da28a adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90d5eaed tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x911805a2 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x91279a32 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x915b4135 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x91664fdf dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x91723114 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91a8b648 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91cc33ef shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x91da73fd sdhci_send_command +EXPORT_SYMBOL_GPL vmlinux 0x91ee6ed9 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x91f2dd0c device_attach +EXPORT_SYMBOL_GPL vmlinux 0x91f54669 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x9202207e phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x922289b9 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL vmlinux 0x923b64e9 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x9242b4e0 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x92652448 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x92731d40 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL vmlinux 0x92807780 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x9285c3b1 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x92864635 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x92accbf3 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x92b19353 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92b9dcac page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x92cdd338 usb_udc_attach_driver +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e5efff usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x930fe60a sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x93153284 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9321ba78 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x932a00d7 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x932ab531 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x936cbb70 irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x93afea81 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x93c60675 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x93cd588d regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x93cdb581 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x93d3b951 of_fixed_factor_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x94077f3a cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x941ae455 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x941e3bad attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9425bfe8 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x942d8aa4 snd_soc_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x94559529 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x94592459 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x948a2d26 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x949334db cpdma_ctlr_start +EXPORT_SYMBOL_GPL vmlinux 0x949575d2 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x949d3090 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94aeec1c unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x94bc01c7 of_get_nand_on_flash_bbt +EXPORT_SYMBOL_GPL vmlinux 0x94be04d8 snd_soc_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x94ce4058 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x94e5b22b of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x94e9fb24 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x9500dd2f deregister_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952beca8 snd_soc_dpcm_be_get_state +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 0x955be69d exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x95649cb4 snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0x957167da sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x957965b5 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x9581607b kobject_uevent_env +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 0x95c578a0 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x95e434e9 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x9612a23d shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9623d7c2 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9626e21f of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x963fb093 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x9640fdf7 snd_soc_limit_volume +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x964ca31a bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9669382d __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x966f8bad swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x96919667 musb_readl +EXPORT_SYMBOL_GPL vmlinux 0x96b7462b device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x96bea0a4 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x96bed056 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x96e572b6 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x9731da20 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x97428d78 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9799bd31 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x979de5c4 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x97aba9d8 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +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 0x98525b95 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x986c4794 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987c04a5 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x98862d96 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98c02d9f sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x98c9f584 klist_init +EXPORT_SYMBOL_GPL vmlinux 0x98f1d86f sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x99058bd2 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x9915d6b3 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x993a2bda extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x99571ed6 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99653469 tcp_unregister_congestion_control +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 0x99a0e17f powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x99a4d0fb iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x99afb9c0 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x99b8d1ed fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99c6e3b6 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x99dffa14 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x99ef9a84 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a5ce6e2 omap_dm_timer_trigger +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a8b2121 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x9a8ef35b __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x9a9b01b8 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9acb505e ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x9ad5646b platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af7cb1a ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x9aff15fb ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x9b15c99d usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x9b188b0d ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x9b277841 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x9b29b9da ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x9b36f191 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x9b3af836 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9b640c37 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x9ba6bca0 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x9bb0bf8d fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x9be1f7f2 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c07d7ad ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x9c093add pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x9c170083 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9c3e5b59 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9ca1e011 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x9ca6b6a7 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x9cbebd11 of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cd13960 mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x9cdc9867 cpdma_ctlr_stop +EXPORT_SYMBOL_GPL vmlinux 0x9ce63d06 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x9cedd3aa alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x9cf4119f set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x9cfa520c xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x9d31397c ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x9d397856 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x9d70ed93 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x9d746094 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d8e888f ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9da93f25 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9dac963a vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dc3dbaa virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0x9df4101f tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e2cb2b7 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL vmlinux 0x9e45e114 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4e89f8 user_update +EXPORT_SYMBOL_GPL vmlinux 0x9e8898fe pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x9ea556f8 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9eb3945c __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ee4b421 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x9eea1a1c ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x9ef3aa05 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x9efb2565 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f26f07a hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f275d18 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x9f327b47 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9f39064a sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x9f4b3e99 mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0x9f5f460f power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f7436cd omap_dm_timer_get_fclk +EXPORT_SYMBOL_GPL vmlinux 0x9f97b480 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x9fbe7308 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd67c84 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ff1c78b ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x9ff7221a transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xa000fdaf ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa004dc20 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa008ed7a tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xa00cf2ad regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa013a9cf init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xa033df40 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xa03e0302 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xa0410b5d pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xa0413ecb driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa0473bd5 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa06b1b47 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xa093f4be blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xa098f4e6 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0xa0cbd840 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa0ccd4e9 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xa0ce8746 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xa0d68f85 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0ec81e7 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xa10f3049 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL vmlinux 0xa11c5c79 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xa12cd99c rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xa147a2a9 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xa14b840b register_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0xa153297d blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0xa175b415 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa17bad41 snd_soc_add_platform +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1af08c2 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xa1b9477d device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xa1be029a trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xa1c8e375 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa1e319b4 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xa223f7ce sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xa26c7f6d wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2704bfe ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL vmlinux 0xa2af02c7 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xa2b64392 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2be12a6 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xa2c9dfa4 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xa2e0bc88 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xa2efab84 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xa2fb4da1 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xa330be24 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xa344a23e tegra_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xa35f5275 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xa385204e snd_soc_dapm_nc_pin +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 0xa3a48b66 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bdbf54 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xa3c3a2c3 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xa3da036a irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xa3daa76f of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xa3e5193b trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3f443f3 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa4059305 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xa406be61 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa44dd53c mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xa45a9bf4 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xa45f337d tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa463983d iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa46c2d88 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa485be28 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa4b41139 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xa509c6b5 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xa527082f fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xa52be40f mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xa53956e8 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xa55e1507 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0xa55e2fd6 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xa56ffc58 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xa57a8472 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xa57b5bf1 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xa580fc1a i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0xa5bf7238 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xa5dc558e ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xa5e6af13 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f31040 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xa5f8854a usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xa602b605 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xa602bd73 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xa61891ba snd_soc_debugfs_root +EXPORT_SYMBOL_GPL vmlinux 0xa61b74e6 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62a6efd phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xa64887be regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xa66c9f43 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa673fd20 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xa6b186ce pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b4c163 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xa6b81ddd udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa6c52df5 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6feab6e rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xa71e31e0 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xa7659d26 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xa7936873 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xa7c45b62 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xa7c68465 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xa7d8ea75 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xa7e1a818 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xa7f84094 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xa81a1009 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa8261438 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xa83083a7 mount_mtd +EXPORT_SYMBOL_GPL vmlinux 0xa84e63c1 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa86727dd phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8bc717e percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0xa8c95aa9 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xa8dd9c97 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xa8e0100a init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xa8e3ba59 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xa8e98132 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xa8ec1bb2 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0xa8f1f137 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xa90c1eda sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xa91bb096 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa94478d8 mv_mbus_dram_info_nooverlap +EXPORT_SYMBOL_GPL vmlinux 0xa953bec8 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xa95944f6 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xa95b7d8b device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xa95bc514 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xa960d2ad device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xa9654db4 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xa992c0c4 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xa99bfc04 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xa9ba6fea ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa9c6118d mddev_unlock +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 0xa9fda76a posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xa9fecc30 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xaa1b6ec7 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xaa243c72 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa2ac89a pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xaa2f525d shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xaa380703 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable +EXPORT_SYMBOL_GPL vmlinux 0xaa545376 of_genpd_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xaa7d9768 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xaa944fd3 __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaac55369 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xaadf5556 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xab0b101b __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xab22bc67 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xab238da1 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xab2e5675 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xab38de77 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xab50d703 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab71793c regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xab97301f of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xabaa49b0 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL vmlinux 0xabb62b05 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL vmlinux 0xac02252e snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0xac029796 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xac34eeb1 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xac53d667 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xac5576b9 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL vmlinux 0xac73a4f9 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xaca9ea7e inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xacab2aa5 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xacb8624e usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xacb94876 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xad0b4114 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xad35fc7a event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xad38c715 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xad4374ea i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xad7d596d cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xad9ba93e of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xada1cf67 of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0xadaae449 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xadb96287 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xade0c70c tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae4dd75c da903x_unregister_notifier +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 0xae94f6af fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xae9f9d59 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xaea50885 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xaed02512 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xaed4bb14 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xaed51a87 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xaedc8e9b __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xaee0e036 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xaee1a87b usb_gadget_unmap_request +EXPORT_SYMBOL_GPL vmlinux 0xaef3e50d pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xaf12bfb3 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0xaf1b4999 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xaf1e05ed napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xaf25a5e1 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf37fb67 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xaf42441b sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xaf43236e pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xaf5867a6 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xaf5a6849 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xaf6992f6 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf6fe252 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xaf7039d2 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xaf815b51 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xafac7ae1 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xafcc3cf8 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xafeef7f3 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xb001f19f ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xb00a4682 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xb0128a78 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xb0255a2c sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0xb03c69c4 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb050f329 init_rs +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb0cab18c wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0d06da5 of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0xb0d82ba9 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xb0e7b9e8 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xb10ddced tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb125ceb2 cpdma_control_set +EXPORT_SYMBOL_GPL vmlinux 0xb12d44ad kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xb1329e0a serial8250_set_defaults +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 0xb18c5ff8 ata_bmdma_port_start32 +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 0xb1c5c9ad snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0xb1e04d06 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1ff37d3 cci_ace_get_port +EXPORT_SYMBOL_GPL vmlinux 0xb2081320 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb224a870 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xb23c299e sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xb24ba945 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xb25de557 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26c6179 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xb2836d1d crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xb28f692d rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb2b551c6 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xb2e20078 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb31c3ce1 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL vmlinux 0xb359d4d1 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xb37d14b4 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xb38c09f3 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xb3dba7c1 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xb405ac6b unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xb406a1c2 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb4279c11 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL vmlinux 0xb43ca495 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xb44647b3 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0xb449c3a0 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xb45891c5 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL vmlinux 0xb4596508 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb47a26de pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0xb4a62e93 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c7b020 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xb4cf0322 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb4e571a8 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4f17fb9 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xb4f21efd regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xb4f572ab snd_soc_cnew +EXPORT_SYMBOL_GPL vmlinux 0xb4f919d5 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xb5060002 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb536bd3d snd_soc_platform_read +EXPORT_SYMBOL_GPL vmlinux 0xb574ff43 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xb578e107 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5b12e71 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xb5c112e8 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xb5c469a5 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xb5cba789 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xb5d6980e snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0xb5d6b05c usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xb5dda4b5 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5f1739a __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5f91f22 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xb61587b2 mtd_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb674fac2 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xb6a16a8a tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb6a76b55 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6b1531b regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0xb6b9cb45 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb71abec5 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xb72428e1 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xb725f2f2 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb7434e64 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xb7467135 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xb74bfae0 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb75106f7 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xb764f6ce netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb +EXPORT_SYMBOL_GPL vmlinux 0xb77392df snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL vmlinux 0xb77cb0a8 cpdma_chan_submit +EXPORT_SYMBOL_GPL vmlinux 0xb77fde03 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xb787440d crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xb79bbb2f validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xb79e49b7 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb79f4790 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xb7b7d002 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0xb7bfa62e debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xb7caa942 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb7ce56d4 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xb7d91fdf omap_dm_timer_set_source +EXPORT_SYMBOL_GPL vmlinux 0xb7df591c sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xb7e07fd6 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xb7e63557 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb7fcec46 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb80b06f4 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable +EXPORT_SYMBOL_GPL vmlinux 0xb82e96fe list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xb8322302 snd_device_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xb8346aeb percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8707f1c flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xb87fd242 of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0xb8867a27 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0xb888c5e8 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xb88dad0a mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89c4f3f dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb8a8f440 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xb8b1b4ee wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xb8c289f7 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0xb8c8849f usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d59db0 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xb8ff2a7c omap_dma_filter_fn +EXPORT_SYMBOL_GPL vmlinux 0xb90dd6bb devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xb9592327 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xb96f16d1 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb97db138 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0xb990dcea ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0xb9a74911 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xb9ab407f regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9ce44da security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d18a1c ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger +EXPORT_SYMBOL_GPL vmlinux 0xb9ed76ad register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb9f62384 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xba0c7bbd key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xba1b3bf5 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xba27c573 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba55b08a devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba8d32e2 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xba9cb4dc dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xbab291cc blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbab458ed arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac90166 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xbacfd4b6 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xbad22600 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xbad39205 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0xbadd7ef0 power_supply_powers +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 0xbb22c4c1 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0xbb2887a6 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xbb4b45ed extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xbb4b74f6 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbb65424f ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xbb779eb2 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xbb8628c5 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xbb9cf923 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xbb9e2ab5 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xbbb1f83e __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xbbbb6591 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0xbbc9e01c ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xbbcc10ec tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xbbe320c3 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL vmlinux 0xbbed4df4 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xbbf22a50 omap_dm_timer_write_status +EXPORT_SYMBOL_GPL vmlinux 0xbbfc5644 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xbc11f9d0 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xbc1c79d3 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0xbc261dbb dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xbc27a98a power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xbc2dd2f0 snd_soc_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xbc5a3591 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc76fc25 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xbc9dd36d usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcae3aa5 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xbcbaa80a __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0xbcc4e290 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xbccde43b cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd46c5e sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xbcdac828 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcddb8d4 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xbcdfbf06 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xbcef7e6b skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xbcf89ab6 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd4c7d8b pci_ioremap_io +EXPORT_SYMBOL_GPL vmlinux 0xbd4e442d uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd5eb01a __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xbda1faea regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbda54e37 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0xbda779f7 snd_pcm_stream_lock +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 0xbdf6794e sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe22469d skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xbe32ee43 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbe3bf462 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xbe45718f elv_register +EXPORT_SYMBOL_GPL vmlinux 0xbe4b8041 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xbe56b362 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbe5e670d power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe7c2b78 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0xbe95a425 gpiod_get_index_optional +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 0xbece6d03 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbefac12c ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xbf00331e blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xbf0307ae vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf3332f8 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xbf45cef0 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xbf822350 dev_pm_qos_remove_request +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 0xbfe43c3f wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe6b5e8 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc01381e9 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0xc0174eec use_mm +EXPORT_SYMBOL_GPL vmlinux 0xc01fe62a blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xc02ce7df sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xc02f41d4 bgpio_remove +EXPORT_SYMBOL_GPL vmlinux 0xc03a654b memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0xc0455c1d pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc081310f of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc09926fd iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xc0a35063 snd_soc_put_strobe +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b5cbe2 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xc0cc4f94 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xc0d031d2 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0dd379b device_add_property_set +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 0xc104b3ea rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xc111fb0a dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xc1381ea1 snd_soc_bytes_put +EXPORT_SYMBOL_GPL vmlinux 0xc1600131 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xc165dd8a dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc177af8d blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xc18323fa xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc1967e32 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc1b3ac03 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xc1bced6a cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xc1cb51dc evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xc1cb9a70 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xc211c6de snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0xc2180f0b pm_runtime_autosuspend_expiration +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 0xc23031a9 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xc23936fd regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc26a4e94 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xc27596a7 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2a9b6b1 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xc2b795ca devres_release +EXPORT_SYMBOL_GPL vmlinux 0xc2d56182 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xc2de3140 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc2ec8dd7 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xc306d817 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xc30b3a36 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0xc32e7129 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc364f429 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xc36a09d7 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL_GPL vmlinux 0xc3a9390d devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xc3b93bba klist_next +EXPORT_SYMBOL_GPL vmlinux 0xc3c2bb22 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xc3c5d1e9 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3e157a5 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xc4006b73 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xc4150634 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc41e0178 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc43a69a3 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xc43ce022 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xc4412203 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0xc4538313 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc4554d2f arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc47384e2 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc49585e9 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xc495d8b2 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xc4a3a14c snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL vmlinux 0xc4b87d11 mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0xc4cc9754 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc5063e7e thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xc518a054 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xc519b3ca tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xc51d16ee hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xc51dc003 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xc5266025 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xc539e052 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xc53be302 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc54d8fa7 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xc550dec8 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xc55fa1e1 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc57592d9 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xc575c142 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc58c4ecd smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xc596a054 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc5c23cd1 omap_dm_timer_set_load +EXPORT_SYMBOL_GPL vmlinux 0xc5d5513e cpdma_chan_process +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5dd53be devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xc5e0dd66 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xc5effa8d genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0xc5f1ca0c clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xc5f9a654 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0xc605ff33 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xc60797fe aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc6409c30 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xc649229a clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc6673d21 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66e971d sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0xc674f16b regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc67da97f __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xc6854a1b regulator_is_enabled +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 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6ae95e6 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xc6c06a75 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xc6c2e515 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xc6c71467 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xc6e5cdde gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xc6fdffd8 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xc7087515 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xc70c751c wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7352466 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xc742787d regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc7440eba snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0xc76089e4 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xc7666ae9 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xc7701636 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xc7835533 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a1c283 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xc7aa996e ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7eb296a crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xc80cfb12 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xc822cd43 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL vmlinux 0xc8285f4c sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xc82ef090 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xc858a7e4 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xc86176d6 omap_dm_timer_read_status +EXPORT_SYMBOL_GPL vmlinux 0xc8695fcc seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc88efbc9 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xc897bfb6 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b3016e devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc8ca5652 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8df8163 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xc8e35db5 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc9293142 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xc94f4cd5 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc956439e scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xc95654ab pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xc968081e __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xc975a0bb usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xc975f940 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc9870f37 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xc99401c3 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xc9b9f404 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xc9cee0ba gadget_find_ep_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc9d7a9e4 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca1c38d3 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xca2a9eb5 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xca415e38 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xca44430c pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xca5b2eeb rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca9ff201 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac0ca4e usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xcad3b789 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb2cd803 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xcb2e0c0e ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL vmlinux 0xcb457a21 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb4ce0bb rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xcb554d95 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xcb6f990a snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xcb7ac40e dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xcb86647f gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xcba03111 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xcbbd9a8f tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc04b953 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xcc19af86 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xcc4a9818 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xcc4f8cb6 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xcc68217f ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xcc6cf12c devres_get +EXPORT_SYMBOL_GPL vmlinux 0xcc712aa6 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xcc7570ab modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xcc7d14ec skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xcc7d619f sdhci_set_bus_width +EXPORT_SYMBOL_GPL vmlinux 0xcc85d939 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc88a8c2 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xccc25517 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xccc86d4d spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccf5b296 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xcd009ebf powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xcd199b6c snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0xcd243741 amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xcd2607b3 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xcd31b82b generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xcd49c9e8 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xcd52ae80 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xcd5c7b16 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xcd5e5c1c dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xcd71e18a blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0xcd7d262d tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xcd8ad530 ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd932a05 device_property_read_string_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 0xcdb9299f usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdf028a2 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xce074e06 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xce21ea62 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xce3015e4 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xce4ba037 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL vmlinux 0xce4c30be get_device +EXPORT_SYMBOL_GPL vmlinux 0xce50ba8f register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xce5706c2 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xce69802a fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce74ecdc snd_soc_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xceade4eb dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xcebc5e8a ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xcec01bbf device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee91c5e user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xceeb2b1c tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xcef0c117 omap_dm_timer_free +EXPORT_SYMBOL_GPL vmlinux 0xcef35e5d i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0xcf09a8dc add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0xcf0a7a80 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcf23e276 component_add +EXPORT_SYMBOL_GPL vmlinux 0xcf258bb1 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xcf262b34 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xcf352b26 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xcf3fd7cf register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xcf449ee5 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xcf54bf8b posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf552ed2 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL vmlinux 0xcf8f8d56 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xcfae6d27 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfba4d2b pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc7ad32 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xcfdb3363 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0xcfe96836 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0xcff41e96 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xd0061c1f fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xd0065e23 mtd_table_mutex +EXPORT_SYMBOL_GPL vmlinux 0xd01f357b ata_sas_port_suspend +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 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c80d18 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL vmlinux 0xd0d38fd2 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xd0efa287 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xd0f52b3b platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xd0f72938 sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0xd0fe4d2a ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xd11a470d sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xd11cdb35 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xd120b787 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xd12b23a4 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd17025a4 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xd1822f0b cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd1bffee0 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xd1df1d65 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd1e06baf sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0xd1f0a011 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xd1f25978 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd214db1d ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21e9fd5 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xd24e0804 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xd24e11d9 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd24ec79a regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd25b0817 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xd25e651f regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2742a8b task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xd297fb11 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd29d5e77 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2bdcbbb wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xd2c763c2 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xd2c90103 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0xd2de7533 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e71fd7 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd30e1c1d cpsw_ale_control_get +EXPORT_SYMBOL_GPL vmlinux 0xd30f4ae7 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL vmlinux 0xd32060e3 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd344f17b sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xd3985599 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xd3a421b9 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3bd4fe0 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xd3de9314 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xd3e52919 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL vmlinux 0xd3e6dfe4 uniphier_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xd3eb6da3 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xd401336e cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4062581 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xd40bac18 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd438cf86 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xd4413284 ehci_hub_control +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 0xd46b701c scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xd46fa7be clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0xd471104b device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xd4718806 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xd471e597 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xd4772491 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xd4a3200d devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd4a63192 omap_dm_timer_disable +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4cd36af snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd4ef83fd __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xd4f4ec62 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd53da4e3 omap_dm_timers_active +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd57663e6 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xd57d2b7b mtd_writev +EXPORT_SYMBOL_GPL vmlinux 0xd5a71980 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xd5b3e58f wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5bf7e5f ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xd5d96f11 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL vmlinux 0xd5ea9ac7 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xd6025f62 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd60dcb2a of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xd610a815 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xd61e791b device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xd62136b8 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xd6236a79 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xd63384a0 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xd63a7331 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xd653315f class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xd67047f1 mtd_read_oob +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd68bfaa8 omapdss_of_get_first_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xd695fc9f dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xd6e36c49 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xd6e85281 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xd6f6585d __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xd6fb0732 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xd6fc3776 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xd6fdcea3 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xd6ff7469 max_gen_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd70692a1 get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xd711cc7a edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd713922e snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL vmlinux 0xd715f99e kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xd724949d pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xd75597f2 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd7657f28 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd78be1f1 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xd79d160f inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd7b367f2 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xd7b75b45 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xd7c84e9b pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xd7d60e9a debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7f2c6da blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xd7f6928f crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xd81620b2 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8439ed8 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xd84c4557 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xd84e8e8c aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xd86b3ccb vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8902f97 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd8b9b5a5 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xd8bb23b8 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xd8c071c2 mtd_lock +EXPORT_SYMBOL_GPL vmlinux 0xd8d0b5d2 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xd914c558 sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0xd92679e8 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd964b15c clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd9a5b482 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xd9e2a8f0 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd9e8a526 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda6b42a3 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xda74489c policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xda785b5f crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xda8caf5b max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xdaab52a1 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xdaac46ce netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdae1a1d8 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaedacd7 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaff7976 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xdb09c8be pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xdb0d8a7b regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xdb0e6aa6 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xdb0fca9b inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdb141ef1 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xdb1e2f16 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xdb2cad9e inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xdb2d09f1 phy_get +EXPORT_SYMBOL_GPL vmlinux 0xdb36ed19 mtd_block_markbad +EXPORT_SYMBOL_GPL vmlinux 0xdb3aca71 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xdb43a415 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb6a7855 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xdb817830 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdbaa1ecc devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xdbb0412f device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xdbc72c51 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xdbdcb406 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xdbe199ef sm501_find_clock +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfd9f35 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xdc03e20b regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xdc089926 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xdc0aa6e9 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xdc4e0016 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xdc702783 ping_rcv +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 0xdce89548 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xdcf1db57 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xdd0368d6 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xdd06dc92 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +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 0xdd394f9f class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xdd43f709 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xdd8e3337 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xdd96270d i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xddbb3947 usb_hub_release_port +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 0xddd6d7c4 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xddda1842 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xdde44115 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xde0c42cc tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xde14092a crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde523594 snd_soc_get_strobe +EXPORT_SYMBOL_GPL vmlinux 0xde536566 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xde651f98 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xde7f57cf list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xde88e17e snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0xde8a2aad register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0xde8e934f class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xde9a08b5 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xdeb11885 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xdee12ed3 virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0xdee5dc91 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf129555 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xdf1bb033 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf3fed22 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xdf42fe95 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xdf4362b8 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xdf487638 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xdf6c0381 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xdf7015e2 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xdf9e493f cpsw_phy_sel +EXPORT_SYMBOL_GPL vmlinux 0xdf9eb046 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xdfb6ff31 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdfbc1fa1 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdfd5dcbd devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL vmlinux 0xdfe876c6 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xdff2e7b2 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0311527 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xe03a6e20 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe04cac29 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe04f31a3 page_endio +EXPORT_SYMBOL_GPL vmlinux 0xe04f676e debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xe06e4157 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe07796ad init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xe07ca631 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b4a7ba __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe0c17bc0 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xe0db78cf proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xe101c027 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xe11e7e45 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xe12a579e sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xe157c102 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xe17713ba ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe183c9cd debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xe187bd9f phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xe1a33084 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0xe1ac8da3 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL vmlinux 0xe1bae27b snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe1c02f50 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe1e84638 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL vmlinux 0xe213d43a list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xe222bccc platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xe2275392 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xe2327190 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xe24fe1db crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xe253eefe __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xe254e5f7 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe2aa7328 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xe2c31219 usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0xe2cd9b05 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xe2f1aef9 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xe2fbc359 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xe3030b9a fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe32f63b9 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe36d99d2 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xe37a7ff6 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0xe3bbce67 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xe3c03453 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xe3d0c748 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xe3e5fe32 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xe3ea1301 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xe3f953b1 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe3fa58d8 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xe3fd02f0 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xe41df142 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xe41fd1c0 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xe429a704 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xe42e1f70 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe4771c1d dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xe4779f1a spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4ab095a devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xe4b2c41a crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xe4c22565 cpdma_chan_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4d1288a rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xe4deb918 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xe4dec8c1 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xe4e5f3c9 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xe4f362a3 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xe4f70777 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xe50be50f sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe51e05ee devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xe53d5d69 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0xe544bab8 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0xe5545e0f wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe56c5352 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe59cff9c snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xe5a5db30 of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xe5ae780f ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xe5b06913 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe5b85a33 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xe5c77d62 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xe5cd49a6 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xe5e98949 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xe5f0f1c7 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xe5fb725d of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xe625b143 omap_dm_timer_set_int_disable +EXPORT_SYMBOL_GPL vmlinux 0xe633d0ce platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe63446ba percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xe645075d __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xe64a814b arm_iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xe64c9039 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe65fc55c mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xe66b5945 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6d51ef8 ata_qc_complete +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 0xe6f12a03 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xe7304c46 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe740a22a sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe74f90fb fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe77fa5ed ohci_setup +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 0xe7bae1f6 snd_soc_register_codec +EXPORT_SYMBOL_GPL vmlinux 0xe7c6fddb uniphier_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0xe7f392b3 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe80ae9ed cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xe8129a95 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +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 0xe8696125 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xe86c9797 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xe8719c2c pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xe8a44490 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xe8daa2d5 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0xe8e3b657 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xe8fb3ba7 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xe903bd02 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe942331e blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xe956088d unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe95fff3f console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xe9640d94 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe969d2e4 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe98b5bf9 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0xe9914bc0 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xe997a768 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xe9cabd75 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9e145c2 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xea0dd432 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xea25854a debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xea3b7deb tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea599009 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xea674c2c nand_release +EXPORT_SYMBOL_GPL vmlinux 0xea6c7bdb __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xea6f6ae8 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xea73c604 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xeaade2d3 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xead36b23 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xeadb57df crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xeb0b083f ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xeb26e1c1 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xeb3eb19b ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xeb4bd7c1 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0xeb5cff46 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeb9bcb8c raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebb7908d _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0xebb7e578 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xebd13ac4 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0xebd408c7 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xebe7685f ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebef024a inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec22897c register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec3f0e52 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xec441e93 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xec445929 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xec512022 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xec5e95bb stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xec79470b driver_register +EXPORT_SYMBOL_GPL vmlinux 0xec917b2b pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xeca2b15d gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xecba40d3 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xecc5ad2f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xecd36d86 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xecfd8761 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xed1edfd6 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xed65f10f sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xedbf6cad wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xedd5e736 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xededd269 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xee045fb4 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xee04a24a pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xee05e3cb device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xee0a9fc9 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xee3a79fa mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0xee3dd398 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xee441a8f imx_pcm_fiq_init +EXPORT_SYMBOL_GPL vmlinux 0xee5e9446 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee8d7539 cpdma_chan_start +EXPORT_SYMBOL_GPL vmlinux 0xeeab616e crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xeefec262 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0xef08e8d8 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xef09c632 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xef117322 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0xef19421e ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xef3d0107 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef536004 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xef66075c usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef78d074 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xef7c61e5 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xef7cf2e2 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xef8908ef phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xef8a52e1 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef9bc125 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xef9cc926 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xefa21819 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa6bc4d reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xefd1c841 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xf026754b gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xf039b102 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf04dfed0 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xf05859ce regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf083d653 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xf08e98b2 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xf08f6f56 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf0adf534 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0ef4d92 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf1038e8c sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf106b4c0 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xf1168541 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xf11db8a2 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xf1252e63 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xf12caf22 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xf12d58e9 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xf1528ee5 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xf15c20e0 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf1766b28 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xf177b2a5 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0xf1788b18 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xf180f05f debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1af68bf regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1ba6221 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xf1bb5a8d mtd_get_device_size +EXPORT_SYMBOL_GPL vmlinux 0xf1bc5994 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xf1cbb352 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xf1cc3f0d input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xf1de2f21 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xf1f16c9e unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xf20fba2a unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf22a3450 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xf248f299 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xf25937a1 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xf25e3fc0 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2ae8b03 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf2c7e693 mtd_panic_write +EXPORT_SYMBOL_GPL vmlinux 0xf2d8190d __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf3079f41 ata_sff_softreset +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 0xf3149dae ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf358a146 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xf3741bea blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3abfaab pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xf3adbb08 ahci_platform_get_resources +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 0xf3c94edb sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xf3eb2e9e pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf400752b bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xf4042d35 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf44d5403 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xf44e00c7 pci_fixup_irqs +EXPORT_SYMBOL_GPL vmlinux 0xf45a1a4d tps6586x_read +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 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf49f14f3 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xf4a5ee94 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xf4ae2d84 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xf4c6e581 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf524d321 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf550205c tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf556fcf2 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xf55c6bbf pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xf58e1426 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5ad9a57 snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0xf5c6828b spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xf5ceea6f xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xf5d531b2 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL vmlinux 0xf5d7ff8f mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xf5f8113b unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xf6081796 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xf612bae7 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xf614f721 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xf616f936 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf622dc68 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf634d718 omap_pcm_platform_register +EXPORT_SYMBOL_GPL vmlinux 0xf6583299 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xf65a9264 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xf6643555 omapdss_of_find_source_for_first_ep +EXPORT_SYMBOL_GPL vmlinux 0xf6990cda tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e3c83a ping_err +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f423cb snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL vmlinux 0xf7095a69 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xf70ba97f pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xf7119db5 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xf736add2 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0xf740e4ff pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xf7608b7a screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer +EXPORT_SYMBOL_GPL vmlinux 0xf76e2a1f component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xf79e532b crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xf7c5be68 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xf7dec8b1 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xf825a5c7 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xf82defc6 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8347179 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier +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 0xf89b008b clk_register +EXPORT_SYMBOL_GPL vmlinux 0xf8a12f1e gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xf8b631ee gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xf8b879b5 ata_do_eh +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 0xf910dcf4 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xf9132163 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf92d9632 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf93d3599 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xf944e8ba blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0xf94d9796 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a3ef6b ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xf9bce226 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xf9bf0194 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xf9c2e04c __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9f288de snd_soc_unregister_platform +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa26f622 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfa3829b3 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xfa413a01 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xfa47828b scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xfa59fa9c pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xfa98485b snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL vmlinux 0xfaa56975 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xfacde967 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0xfad46bbc driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xfb05c5bf tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xfb090d48 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xfb1555e7 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xfb2606a7 device_reset +EXPORT_SYMBOL_GPL vmlinux 0xfb30279f scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb35ed60 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xfb64072e dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7ea864 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xfb94f014 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xfba8f18d crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xfbb45341 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc10e2e mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xfbcdf588 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xfbd692da da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xfbd77859 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xfbf1a0e7 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc15dbbe of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0xfc2c02bc dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xfc36832e ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xfc3b0e03 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xfc3eb81e snd_soc_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0xfc493175 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xfc49e751 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xfc94aaff phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xfc95943a enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xfca69d68 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xfd2ce56c cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfd3da727 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xfd41c7ce btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xfd660c3e blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0xfd6ea860 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xfd6ecf39 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xfd73fae7 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd8dbf28 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xfd8e6196 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xfdb3ff95 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xfdb85781 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xfdcae422 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xfdccbeab device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xfde1a33e klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xfe009c06 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xfe19239a tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xfe1d1388 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xfe265563 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfe626138 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xfe63b858 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfe9110d5 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xfe92afde pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeb509c3 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xfeb7e933 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xfebfb348 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfee08b77 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff031743 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff3800d6 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xff4938f3 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xff53386d __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff6c1e0e of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xff7b5fd0 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xff873abd debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xff92accc __module_address +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffbef631 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xffeb4042 devm_regulator_get only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/armhf/generic-lpae +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/armhf/generic-lpae @@ -0,0 +1,17636 @@ +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 0x2b5e2529 crypto_sha256_arm_update +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x809544a2 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 0x627e51ba suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0xb1645525 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xd4c77e0d 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 0x21bf8402 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x29ac6859 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x309d603a pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x5a7c4378 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x5fe598e3 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x65d2fd57 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x6bf684d6 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x70ae9408 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x7b62baf7 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x8b975c27 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xe275a70f paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xf485ed0c pi_write_block +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xfa4d8f01 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x05f71937 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 0x3fd508fe ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 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 0xc39795ea ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd12e2107 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 0xefebc918 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/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 0x248bb451 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4cdcaf0c st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7a676fb7 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc895252b st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x029e0fb5 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x8052ab7b xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xab5ad65f xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x3c24034c dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x4083d807 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xd7b9f2cc dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xdd4cd64e dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe1a7a0cb dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xedf64a25 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/pl330 0x835ca064 pl330_filter +EXPORT_SYMBOL drivers/edac/edac_core 0x9003bf96 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x06671ca6 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x10e804be fw_core_handle_request +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 0x32b34c74 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x35ae73a6 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x401a3561 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4498b083 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x46444a54 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4a342706 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4ee1745c fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x613204d6 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x69257517 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x70aa32c8 fw_core_add_address_handler +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 0x92ad66c3 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa960bfb0 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb0cbd6e8 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc42992da fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcda87232 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd25d6397 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd4fb5b72 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd62a537b fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xda7cc39d fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3ee6a30 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf1545198 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf5098af2 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf68419bd fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfe87f295 fw_send_response +EXPORT_SYMBOL drivers/fmc/fmc 0x38d51cf3 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x64adc4de fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x88581fef fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xb5f5b24d fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0xbed3abb9 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xc04ef810 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0xcfa1cbc6 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0xddd6a89c fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0xde0aae24 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0xeac5f297 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xeb7b2c24 fmc_device_register_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0014dff6 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x007f290c drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0190e41c drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x026fa703 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x057ab67c drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06696b51 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06a2f372 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08d856aa drm_crtc_wait_one_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 0x0eeda761 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f32492d drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f6e01bf drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f81e7cc drm_crtc_vblank_reset +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 0x10d1554e drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1161302e drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12310453 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x131c5a4b drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1332d97d drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x151a21e7 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x166c3622 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16fd125f drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19eef4b9 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a31b8ab drm_vblank_post_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 0x1aad28a5 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b159581 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b1a2406 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ba5af4e drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1be8b245 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c95e304 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ce1e961 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1de96204 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e010f43 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e382580 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e57a40a drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2088eaab drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20a67038 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c1d7a0 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22cb3e42 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2311e13c drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x233750cf drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23ab188f drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23c08c58 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24205ff2 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24655109 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x246a0e11 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24de41b4 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x254312e4 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25a711fb drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27428c62 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28327865 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f715d0 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a873b85 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a87797c drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b5662b6 drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bfff944 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d393664 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d6b2cc0 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e9d286a drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31fdee5d drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x325bbc48 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3488fd58 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x348be69a drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34f0f149 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x366fe802 drm_bridge_post_disable +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 0x38c3caa9 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38eafcbd drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3aea61eb drm_pci_init +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 0x3c1a799c drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e648f9f drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f186f42 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f258a54 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fd10a66 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4022ffe8 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x437f9231 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x438523dc drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x452041b8 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x453678d3 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x482b3399 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x492aa590 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x497cbba9 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49e1796a drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a2ac34c drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7fcfa4 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ba31a57 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bb1ff19 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4be72cd0 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c040868 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e5e4ffd drm_pcie_get_speed_cap_mask +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 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x539836d8 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53c5c227 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54541cfc drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54cfe22d drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x580d16fc drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58609408 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a4775ff drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c01a874 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c3a920e drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c7cd5a3 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cbf2e66 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d69bf0d drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e7d1d57 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e97f527 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f29a00f drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60a848a8 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60caa4c2 drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61ef8eee drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62356197 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x656dc660 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x658eb5c9 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66f08fe6 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67461c58 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6753133c drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6870eaf1 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68feae45 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a1a0ecb drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b3b0330 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b8c617b drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c87312d drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d57d92d drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x701ba25e drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70ad89ea drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70ef0729 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x715a2287 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x715a2be2 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71e52b09 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x723385dd drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x745967cf drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7462dab0 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x757e0bbe drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78bccc3b drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79ece3c4 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a3cde5b drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9fbf85 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c2e2e38 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80c72d60 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81630772 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8230bde7 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84402132 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84bbb125 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x858c884a drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8613ea86 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87855843 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88e1b654 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ae9e92d drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b955858 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cfe0618 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d61d764 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8da0f747 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dd7e374 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e83de4e drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e9adf90 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e9eb284 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f2975aa drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f98fac1 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fe39b9c drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90486811 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90db0c81 drm_atomic_commit +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 0x92ba5783 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x969c8068 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97365303 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9890083d drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x990b1186 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a25f565 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c87a47d drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fa624ae drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa074ca20 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1194f63 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa142614c drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa14b4685 drm_property_create_blob +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 0xa3959c68 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3a367d6 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5acab37 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa78ea2ab drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa791c4df drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7a48574 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7bed457 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa81792a2 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8b5ef47 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8f12abe drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac0ec250 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac7c4946 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad04517a drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad26a9a2 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadfd1838 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafa7acd2 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafe51176 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb15523e3 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb156ea9a drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb25c2789 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2853c1f drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2a1941e drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb36b39a7 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb42e425a drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb43c597f drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4cee89d drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5ab49b1 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb829fe1b drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb83b17ea drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8535dec drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8f38238 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb89f71e drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbb9054e drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbf5e560 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc693695 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd1ed6f1 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe7b18d0 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe8fb57c drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf854f6e drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfcac888 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfea5292 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc012ea05 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc02fb6b1 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc084b7f7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0dbd4b1 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1723382 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc19466da drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1f717b5 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2895ba7 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc315213e drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3440834 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3c64ceb drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc46abb7e drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc82fb1fc drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8542429 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc869cb5a drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc86fa561 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9456c9c drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9b92ab9 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9e5e218 drm_crtc_vblank_count_and_time +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 0xcecea9ac drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf38110d drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf3d7c7d drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0cdfe3d drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1359b48 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2ddaf0f drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4159df5 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd56a140e drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5ceaa3f drm_property_add_enum +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 0xd7649bd2 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7d61ca8 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd80af830 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda2d9aa0 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdacc905f drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc15c88c drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdca8514a drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddf032e9 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde1b2f42 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe074a54d drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2a08de2 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3533690 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe419f87b drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4d444a9 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4e18a30 drm_gem_vm_open +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 0xe935fbef drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb07338d drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb74d88e drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebb9db9e drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0300024 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf19b605d drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf20c70d1 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf25c8add drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2643ee3 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf337fa51 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf628702f drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf73f4abe drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7414951 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf759440b drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8e64abc drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9cfea4c drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfba6e8fd drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd1cde1f drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb40abc drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff761c8e drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffeb46a9 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfffe3b74 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01fdfe5e drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03d0b4f4 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x060bae50 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06236fae drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x066aaef2 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b648ece drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c11d718 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cd4cfec drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1198c990 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13a1e744 drm_atomic_helper_crtc_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 0x167eb45f drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16adb806 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x172a6a92 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17765e45 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x182f1b34 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b689d07 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d7ce725 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e08144e drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x212e075f drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x232cd40a drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24c0845a drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x261b14de drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27bbd44d drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28349d9e drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28647bcb drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29e562d1 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bc3a899 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cf43c39 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e9da5be drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32d5ae85 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32e1dcd9 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 0x38cb0848 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cfd8ce2 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d160c9d drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dbf9e43 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ec31181 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x401626b1 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44332ab6 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45c8dc41 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49c3699f drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c67e20a drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c692539 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d42092a drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e333349 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f19a69c drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x514e4394 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51e5bc03 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51ef478b drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53797987 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5591cb61 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x565c9fb9 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a4427b drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b8671ac drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bb0c01c drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x616b1fe2 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63d45174 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64532d27 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66c1f632 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a144941 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ad81034 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bb89d95 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cf508a5 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e3b126a drm_crtc_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 0x711d3005 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71476af0 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x722cdb82 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75774bc1 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x771d00d5 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78e4637d drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x795a4bd2 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ca4ae7e drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ed26195 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82c02508 drm_fb_helper_remove_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 0x86d99409 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87579b0a drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88a810eb drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x898aca64 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d5ed2e1 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ecc7259 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f8ceff3 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93aba15c drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94485b55 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94a4c265 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x951a8e08 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9625c3d9 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98d63a55 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b8e0a55 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ddbb8f7 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2685948 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2aa0c27 __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 0xa50c3a22 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa753f164 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 0xa8188a38 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa5c16e8 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaf45c02 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab710378 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac54f89e drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb08d1e1e drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2268301 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3a9b066 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6cd2525 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb810cc50 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb83b4907 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba8efe08 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbd12521 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbd4cccb drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcff94eb drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd181229 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbefc15eb drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc00fcca3 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4bc5b41 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79410ba drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc81ab654 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca7e88c7 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcab99a18 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb26c7f2 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb7d5561 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd0a7488 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce92a44f drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf9d202d 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 0xd0c5f423 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd19d26d9 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2e6a93c drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd46cdcb3 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6daf8c7 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7dbea35 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbfeaa7d __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcf04f2f drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0a3a19e drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3e2335b __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe47c0b5f drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe81d0c96 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe898aa0f drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf08436cf drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf30e8872 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf34d99b6 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf433de58 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf534b976 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbbcc237 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc0d2d5a drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe533af6 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfecf436e drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01554df3 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x066622c0 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0adaaf3a ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bc7380f ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0cabc242 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0dcb0214 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0df2ae12 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0fb29628 ttm_mem_io_lock +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 0x17f8660a ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x19e31342 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1bb2d66d ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1eee694a ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d1477be ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e32935d ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33c445b3 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33c81f1a ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x36c056ac ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37a78951 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3d79a04b ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3eb50077 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4628b006 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4725cf42 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a2bb6af ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ac5a66e ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f0aaa9d ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x51995bf9 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x52321633 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a5bc2d0 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5dfba611 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5e16e475 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61e3d738 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69a7ec19 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c0ec969 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x700364b4 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x700ced89 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x729a10ae ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d11da6a ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e1d1e11 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x820e3742 ttm_dma_tt_fini +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 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95403b00 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ef9098e ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa7e55e4a ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae87b61d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae883a09 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0f9e1a0 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc968d68f ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcbf6c8b0 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd96e491c ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb2a3acf ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe54c9216 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5ec4d01 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe964316d ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb4df1df ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefc4df0d ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf33f26f5 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5ffcf25 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf93789e0 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb33ab9e ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd7484d3 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe8cc064 ttm_vt_unlock +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb1373334 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 0x1560692c i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x1d9e0cf0 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xe6527191 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x5d58ecbb i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x99d069f7 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xf2788144 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x02bbf75f mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x02c5e981 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0706bc31 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1e03ccb8 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3806c4ed mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x49611b52 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x68a1577b mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa66cb4b7 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xabb5abbc mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb03913a9 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb325cf57 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdbf20300 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe7ab1813 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe81d1db7 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xec6751aa mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfaf3c717 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x74c94242 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xd6030adc st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xc2838b61 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xdb61f94c iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x3337ff09 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x63912d6b devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x9cf30bb3 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xa7c8926f iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x320fe1a1 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7fd431fb hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x923318a4 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xba106c4b 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 0xe1b176b1 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xffdaa77f hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x08985c78 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x415a8e9a hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x7159b123 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd966488c 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 0x2c440202 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x35ba13ea ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3f2a5b2b ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x63191158 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 0x8b687fea ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa28af8a5 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xce42b49e ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd61ac956 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf01f69d5 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4498b2ef ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x71d70aa6 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x873885e2 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x97ebfcf8 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd3cf6e53 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x190fa948 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x8e69aa24 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xdbbf998d 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 0x254ed5c4 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x25d0ba40 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x459b841a st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5c7bb84b st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x69aea69f st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x71adf08b st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7829da4c st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x85d0a436 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8da64cc6 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9aadadd2 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9e022731 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xba8f62bc st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc0f8ad29 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc3345aa5 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd3fe9997 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe9148b18 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf7ea98f5 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x2eb69514 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x8f8cdd62 st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x53538e70 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xb80ceaeb st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xef96cf9f st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x2376fe2b hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x0c11acf0 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x21fa6993 adis_enable_irq +EXPORT_SYMBOL drivers/iio/industrialio 0x0fb44c77 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x247d2db6 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x6395631e iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x64021974 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x6b3d69be iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x71015607 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x88cfc927 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x9acc2f2c iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x9f3a8a41 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xa48f4fc9 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xac1acd9b iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xb030b7b9 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xb4ddb1b9 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xc3122dd4 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xc9132ef5 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xd51a650e iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe84f8448 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x6e991b7e iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xf0eb0a31 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xa5501897 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xb638ae7a st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xc670d402 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x4021ab2f st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xe534ffd0 st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x4e2b45be rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x5347cc38 rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x7df81f32 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xca4dbb01 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xd3ad6f44 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xfe171aca rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0161de08 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0bae3d5d ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x16f3aed4 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x190f026f ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x32b320ca ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x362236b5 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3a49eedf ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4ad2c9cf ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x56286138 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69c62dbd ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x77a59897 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7b01ea50 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x826ffd57 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8c5d7de2 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9901c618 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcd048252 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xce9a8f8c ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfb13aa1e ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02ceabfb ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05391db1 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06f848df ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07d9617d ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08005bbc ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08e4554d ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09f1f83b ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0af4f7e8 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15b252dd ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17c18b16 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18c224b5 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e22c5c ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bfbe8b0 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ea0ae91 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21c8a10a ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x228447ca ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23d70e00 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26a8d0f7 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26cf2453 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x283ae471 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a92464a ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bd080dd ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c87e213 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30ab8666 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39eadd33 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ae20af8 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42264907 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x432105ff ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4431d524 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x458c0586 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a7270bd ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b4dda33 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f72a699 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 0x50fa1d32 ib_fmr_pool_unmap +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 0x57c91715 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e806248 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64f04a02 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d24cc23 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x774cfc07 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dd6717d ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81e74e54 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x828c36d2 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8467c3eb ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8818303a ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88c72cb1 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89d1bceb ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f7f4971 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x918a5999 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x927e1e60 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97400cfc ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f641890 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1e4f9da ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa340303d ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa79603c8 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7cf7b83 ib_modify_qp +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 0xb397a797 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 0xbb1fcad9 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc9370a4 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdc0333b ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe69ef47 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf896208 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc064f433 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbf0e7c1 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd09249c1 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4a6173b ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd597561c ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5fba13d ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd741f480 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8dada00 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcf9dc71 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd413c75 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdde6c287 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde330d1d ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1bef711 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe79d8193 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9853387 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf07b1ec1 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2384ff5 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf487de23 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf60f002f ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb49ed35 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc81f314 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe1bc8cb ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1f2aacbe ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5531b0ba ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x583fc4d8 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x77f11b5f ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb6a5d6d5 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc3b15d39 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xcbf881fb ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd80f7b23 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xdee69897 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe8f1f6c7 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf16a470d ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf276508b ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xfab8a2a0 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1d605efa ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x340ea9f6 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x364f269b ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x41ea9a7f ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x54bf7443 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9e7aad54 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb777cdcf ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc066a409 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc3a8fc57 ib_sa_get_mcmember_rec +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 0xe763e6a9 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 0x623796af ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa6d31019 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 0x0a0d2707 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0f21a7ca iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x17d80b9f iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x25608531 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x41d9138f iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4eeb701a iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x66f6509d iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7bade9f4 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 0xa498d540 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb7c97d26 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd1532d4b iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd3c1503d iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd6c5e6c7 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd9fde951 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdb2d9e71 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x087573ed rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0d6d26be rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a542e00 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x28e289fb rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2b341b04 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3073ce84 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x31c9c015 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x340d69e3 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x35929ead rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x36e7974a rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4ad80255 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5053f485 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x553d4bd4 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x65247d57 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6a374583 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x822da437 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x939b92d2 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9d718ea9 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb523d9ed rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbc3bbae5 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd573adf7 rdma_create_qp +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2520246a gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x359a1ff6 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4e512e8f gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x91c44cbf gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xabc67790 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xcbf1269b __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd93fdd97 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xec566511 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf07eb306 gameport_start_polling +EXPORT_SYMBOL drivers/input/input-polldev 0x71c38c52 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xc56823ad input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xd8657bca input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xe221aa42 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xe97151c0 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x742af256 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x007aa4de ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x90ff06a6 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x99c28b52 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xdeaa2b65 cma3000_init +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0537c3f1 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0e5eea23 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x108af23e sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x1ba1d04c sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4cf4cb82 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x62f466a7 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x74d55db2 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xa08badd3 ad7879_pm_ops +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0995a621 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x143a7178 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x29249c35 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 0x370a04d6 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5f1442cb capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x60a5fce6 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6df40748 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x709eacd9 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 0x81b14d50 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 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf604e534 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0b657bb6 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2295ac55 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x36a9dde7 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5948136a b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7fe0ecf8 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x86fe0354 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x89b55d04 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb40c0857 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc5e6b1a3 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdc803371 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xde70fde2 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe0d89b6b b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe2c7c00b b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe9c991db b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xff1f3128 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x101f4ba2 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x1bd5005d b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x36d95406 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x50724a6c b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x58fc2597 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9ac76d30 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xad0c78d1 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd84ec1ce b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xfc484d25 b1dma_reset +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 0x47b36917 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x933cb69a mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9a776147 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd81bbe7f mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x2e0f1aca mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x82ee8e5b 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 0x20119de1 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 0x51835ab9 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x5430fb87 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x5f2f25e8 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x60632e19 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xad5fc3ab isacsx_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x3dbb855a isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x4ea3b7be isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x9888424d 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 0x02df792a dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x183a6cdf mISDN_initdchannel +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 0x283946a5 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2f26eb03 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3cb451b8 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 0x5ee5f1ae recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x72ac7a25 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x74df31eb create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7781c682 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fb80c22 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x845a80bf mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x84bbcd09 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x90889d5f mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x989473ef recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9d2c8317 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa04dd9db mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa6f76aff mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb6e55796 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc0ff9cbc mISDN_unregister_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 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdc691e4f get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdf2a7ba6 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe1a5b598 recv_Bchannel +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 0xfe232ce2 bchannel_get_rxbuf +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 0x05bad0c8 omap_mbox_save_ctx +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x5a42b187 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x9f3de201 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xc9c61632 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xcd0f7d60 omap_mbox_restore_ctx +EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x21c7828c bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3361c614 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x392e33af 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 0x92b7a0e8 closure_sub +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 0xbd5c8a58 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 0xd8ce9c07 closure_sync +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 0x024e29ea dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x6cd85825 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x7b82a8d5 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xd0393d37 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x270fb169 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2b66b8ee dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x37b40e4f dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x77ac4b47 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb1360e6d dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe17a60a8 dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0xf9625b06 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x01b18dde flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x109fd819 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x211b0b0e flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2a6fbd96 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x31c371bf flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5a3bd1fb flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5d3f2334 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7bb759b0 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9e673c36 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9ff5b540 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbb6a364f flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbbbce62f flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe84074fb flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/cx2341x 0x18326ec8 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 0x42e0560e cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x61fd5aa8 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x72456554 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 0xba9b9bbf cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x4b4ba61a tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xbec6e91c tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0997afea dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1069faa8 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x16944083 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1bcccd37 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x24b014ee dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x25073a3e dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2cb2b037 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2e51933e dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x327926bb 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 0x397c79c8 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x564a9302 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x566f8fc3 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x56bba85a 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 0x6fe02a6c 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 0x888507e4 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8fb7c0ca dvb_dmx_swfilter +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 0x9e4e0091 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4d5c88 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb517d46b dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc1ee3bb5 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd39b0515 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd3f42b66 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd858b6dc dvb_frontend_suspend +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 0xe287d729 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe31481c2 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe82e51c9 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf48116c6 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf616a791 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-core/dvb-core 0xfd7dfb60 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x8d5ce043 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x9e0398bc ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x4855cea7 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x05e57ac1 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2c5f8b30 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9d619218 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbc6c3f70 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdb090eb6 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xde974771 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe8600917 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe8f5c97d au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xecfc378d au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xef1cd358 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x4451a65c bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x977a3dd6 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x190322ac cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xa8afdae4 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x7327c502 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xdd411f8b cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x370a13f6 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xbbe10cd2 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x27f45221 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xd393c0f3 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x33f560d1 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x13748703 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x78913bcb cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xbc470190 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x584fd439 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x677973e6 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7a6ba9c3 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xda17e98d dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xda1da52f dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1f4c19d0 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2d0b2e06 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3276b51b dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x37b82e2d dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3a174ed7 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x46af310a dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4c0f1a3d dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x682f10ac dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7ac39c8f dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8797f607 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x923ead30 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc84ab485 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd5b80f57 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe33593a7 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xee3322ab dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x414cf496 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1e9d2270 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3f3c7b99 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x8b5d6c8c dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x96857a1e dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9ef1250e dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xebc9c9f0 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x25696e29 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x4769b12f dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x59f6dcac dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd55a1961 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x7abcc542 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xd7cb60cd dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x916c98f9 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x9ac093c7 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad857067 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc2e6f675 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xeac3fe5a dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xdbc80033 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x9db7cf66 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xdda22250 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x84fcdf9c ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xb83af81b dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xb528f63e ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x69b65ce6 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x6377b08d isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x5d4f42e8 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xf5c8f06f isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x676e6ea8 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x4badf512 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x1922f7f2 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x355e5a2b lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x29fb03f1 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xc5d520db lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x2f0fe764 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xc78e8619 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x0790b946 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xabb4af5e lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xca8b85ee lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x28fc7ee7 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x2cde8ea6 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x42c5cfe1 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xaa53643c m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x0f24ca4e mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xc5c582e7 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x75e06102 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x315956ce mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x618fed8a nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x8b52337e nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xcf941df5 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x828692c1 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x4148b6fa s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x63d3ba11 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x3cb7a28d s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xea410e7d s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x8759c25c s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xd2c6c54d si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xf5139e2d si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x821d9eb7 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xa3361fd6 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x9b1ce959 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x403136be stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x69cb9fe2 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xa7df8075 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x39a65ca2 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x6665aa1d stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x0469641f stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xd28b61f8 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x9edd7723 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x26d8ff91 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xc9b81d61 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x292d5fae stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xd36ca353 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x6476dd5c tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x96dd2671 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xce59be8f tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xdca72dc5 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x883742b0 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x194ba7ee tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x4e793d81 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x9fa43de9 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xb121bf25 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x45ec9b22 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x08572a6b tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x214f6505 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x627f3096 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xd35aa400 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xf985737c zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x901efa1e zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x14021ace flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x24c1bc08 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x31cdfb86 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x49b808ca flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x82194e44 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8619cf4a flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9036868d flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x17b8ce69 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x1968332d bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xcd757ff8 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd3661d62 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 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xa33485ba bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xf185fde5 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xfcd4cc09 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x06f47ea2 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x38854d95 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3ae82a5b read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4c08f0f6 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6b21ba21 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x83ae8a87 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x998dd007 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xadeb4c83 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd32e0271 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x5cef3b9f dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x03f1693e cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x094246d7 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5d08ba38 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd2144f0f cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe0add1e7 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xbe7f2c1e 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 0x1cf16966 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x33318c01 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x60b28013 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb6a09272 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc4559032 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe45c2751 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xea1cd277 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x81691813 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x8cb9c624 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x47457310 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7bea7c20 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x85420c66 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc789f86e cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4d86f222 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x592a57a8 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5c56a18e cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x67321905 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x75cf2a30 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x94395772 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd1978a27 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2cb8a958 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x350291a0 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3d2560f8 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x480a6633 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x563fd15e cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5789eead cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5a9519f4 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6c15eafe cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6c2aeb93 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6e33dd2a cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6f8b9944 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8a0d30c8 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8c3b8b55 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x908823d7 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xad3a5f8b cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbd8cbc41 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc5141aac cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdce227ea cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf60928ef cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfc36c973 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x179f777f ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1a51cda4 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x31e645fc ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x45d5f1ff ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x466d6a6f ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4b2825eb ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5b977910 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fc21bbb ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x857faed5 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x88e85066 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9cd3f88b ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc1f63c81 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd05dc020 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd9704386 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xeda9a04c ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xee5b8698 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf7cbd69e ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x15f67b98 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x29a3a64c saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3189bb65 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4ad33aee saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x552f0d2a saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb530af2a saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb93c590d saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc045487e saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd00d20b9 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd881ed3f saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe1eeb137 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xec89816a saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x59e88102 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 0x1d323cb6 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x30888e52 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x74dfdd01 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x802f51cb soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x87ae7fda soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xceb4ac59 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xda7e15c2 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 0x197d7941 soc_camera_client_scale +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x355ddd2e soc_camera_calc_client_output +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x5cc8b4c6 soc_camera_client_s_crop +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xb2eba61c soc_camera_client_g_rect +EXPORT_SYMBOL drivers/media/radio/tea575x 0x25e444ca snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5c38e64b snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x6c2f6f7e snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x71aec34d snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xac852df6 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xef103377 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xfca7e058 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x01f65653 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x27b2b182 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2b6a4d5b lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x301ada1a lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x74872704 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x85272947 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa48bb655 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc26c1a9a lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/rc-core 0x8aec82d6 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xc59adb52 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x5c67a45f fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x2f58e6ad fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x42df5f1f fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb677b97f fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xc476aca6 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x5afbf504 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xd0bb9c25 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xe12eff88 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x62e6f97c mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xf561f9f5 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x51890027 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x40dcaedd qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x3d10e443 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 0x85d1762a xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x80376da4 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xfb400571 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x0dd96c48 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xb38443a5 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0c94f9ba dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x15dce8a1 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2a8397b2 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3e00e238 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4a33af5a dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x792f33f4 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7be6b343 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8426d42a dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb8dfec55 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x028daa81 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0328a713 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1de7ec0b dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3d9aa623 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8782a80d dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe3a8b4a3 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xeb61b42f 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 0xd22eed8e 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 0x1c587753 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2ed8a261 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5facbd08 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x702990cb dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x82318284 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x98d61ef4 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc4dccf7c dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc9c85982 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe91155bb dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf978d71b dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfc51aca4 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x27c7b623 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xa90a30b6 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x043c79e4 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1f030b57 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4b49458b go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4f34e1a8 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x751154f2 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x77bb4a11 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc0a8e552 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf650e08b go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfb85d8bd go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x39662e10 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x53e2ea51 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x651ac2bd gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7fd1308d gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8b15aad3 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x93c856eb gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9698ab19 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xee8edf55 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x79d6ff8e tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x867bb8dc tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xc6fa793b tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x443ff828 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x6ff8f9e2 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 0x58887f23 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x6b219971 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf509b024 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x133dfc0f videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x31c40895 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x4528f2e4 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x7247406d videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xf736a7c0 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xf76e3393 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x8b7b3f1d vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xa259361a vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x040e0f1d vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x6ce3f934 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xab4e5ba5 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xc6f22f11 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xf9056eec vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xfdd48268 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 0x871c6290 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0352fea0 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0abee9ce v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0cfab0ec v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0dee79f2 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e9ac6f0 v4l2_ctrl_new_int_menu +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 0x19d6e946 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1fd4a22b v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2419fef4 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x283ac603 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ac0dac2 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f70637d v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x305e345e v4l2_ctrl_g_ctrl_int64 +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 0x383a4332 __v4l2_ctrl_s_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 0x3bf4b5dc v4l2_ctrl_handler_init_class +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 0x506d4d83 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51696b72 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5427672d v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56748e93 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b70486c v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x658e4a20 v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6da8ba3a video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f94fa88 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x71def0eb v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x77765b8d v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d31307a __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8693394f v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8acd41a8 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c80ed03 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f4dee33 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x914a042b v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9582d577 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a26eed6 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a33f7c3 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a45976a v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b2a3a83 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9e6574f8 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa092c28b v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa569e653 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa744e40d v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab8c92bf v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac48aeb7 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xafbee883 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4018ca4 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb438b6eb v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba030d81 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbdc66efe v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbf5ac27e v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc058619e v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc2098450 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc4ac576a v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc78c6b8b video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7a78b2a v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb8d9298 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce8c8529 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcec84632 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1e3f8ee v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd2643687 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd2f89f1a __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd5f4da17 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd687737f video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd7816e8d v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe28c3d39 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5199f49 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9669fde v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9b433e9 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeebafe6c v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf0848222 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfa1f78b3 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb6ce7c2 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfbd9c2e6 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/memstick/core/memstick 0x27e7ad9d memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2a12754b memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x437034ec memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4522b578 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x525457bb memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6b35040c memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7ad52fc2 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8d6bd0a4 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9d2d0988 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xad5e3ea3 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xcc39ed98 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc9956e2 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x00558dd8 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0cb7b2e1 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2403fc4d mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x25f0ff7b mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3b42eaed mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x46c259d2 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x48cde941 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4b1d2f4d mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4fe9673f mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x63c58f16 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7008e492 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x70539c1e mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x709e7f51 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x821b6811 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x837555fd mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8a135cf3 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8b083dbb mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa336f7a4 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa767c9ed mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa95dbb56 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa987c409 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb494a735 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbd7a2b4d mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbdfda475 mpt_halt_firmware +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 0xd21c7ae7 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 0xece8c7e4 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xede9291a mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfee3dba0 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xff536bf7 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0166d35a mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x04fc5927 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0748391f mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0df7f240 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x167973f3 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1cd3a138 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2b101486 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x44a6e1af mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6959fc35 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6a47df09 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6bba1717 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6fd92ac6 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x720771ae mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x722d4457 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x794debbb mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7e2a00a8 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7f5b7dae mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8280dedc mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8b2150ea mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9347aeb5 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa3b7a440 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa7e998ec mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa807f2f4 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcd2dad1d mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd2250739 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xea599695 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf0234b40 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/mfd/cros_ec 0x22497880 cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/cros_ec 0x29ae485d cros_ec_remove +EXPORT_SYMBOL drivers/mfd/cros_ec 0x54a50dbc cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0x7fea8b23 cros_ec_resume +EXPORT_SYMBOL drivers/mfd/dln2 0x022688ad dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x8065ec04 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xdb59475b dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x5d0a2429 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xea68608a pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0968ad5c mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0e462b3a mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x33bba077 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3a40deef mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3f32087d mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x66615486 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x93672d77 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb147d249 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb67fd320 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbfb23093 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd6238f41 mc13xxx_reg_read +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 0x88845b8b wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xa9e5e77b wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x0b3e6dbc wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x3904d625 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x654ec7d7 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x945c6f91 wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x4b1e3c65 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xaf175b76 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x8a05ed90 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x4201ce63 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x735e9d49 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0xba37c0fc ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xd9159575 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x02c7848f tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x09ff878e tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x2292af25 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x2452a71d tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x27250ccf tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x7d937bdc tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x884f53af tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x8b7461b4 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x90c1a615 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xdbf022f6 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xdeb9266f tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xeb865c58 tifm_register_driver +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x33a535a7 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x97b4fad2 dw_mci_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xc7f54d94 dw_mci_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xfd697c2e dw_mci_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 0x6e338898 tmio_mmc_host_alloc +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x7a6fd700 tmio_mmc_sdio_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x8ee1a4ac tmio_mmc_host_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xa2de9fdd tmio_mmc_host_free +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xe25a69b0 tmio_mmc_host_probe +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xeb122750 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 0xff5bcdcf tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0b51ce4f cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x95505ab2 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc365d64f cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd98b6a70 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe513f4a1 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xed082fe4 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf2453da6 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x6bf2dec0 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xf38fb583 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/nand/denali 0x87642f31 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0xf09e3c2b denali_init +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x383d5493 onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x578ebdc7 flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x83c64e4d onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd386f1c4 onenand_scan_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1016b5e2 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1c109223 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x621dabfd arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x902b87ae arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x96811cb9 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb88d7bda arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc05516b4 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc96ad89d arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe2470c96 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe3cdc9e8 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x2fc377ee com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x379b6923 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x8e8e9f2d com20020_found +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x070a5b66 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x20e9a598 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x331bbc7f NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5142f33f ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x75a40a68 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa0e9df46 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc1e68d32 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xccc09408 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcef2506d ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xeff3322b ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x84c646ae bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x2bad5912 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0195b3c8 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2a11cff5 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2fb3d2e7 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3f138e7f cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x51198f60 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5b18626e cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x632b9207 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9bae03e7 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa26c6764 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa7ba25c1 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb76d5beb t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd256e073 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd377174b cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd3d9af04 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xee156877 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf4076dad cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x033a71c1 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ec3aa1a cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x179eb96f cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2042c3e9 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31dff3d9 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3e8317ce cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x448f3b34 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x482faefd cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4de31aaf cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x53ad2cdf cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x551701cb cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5ccef183 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5ef880ea cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6af96b5a cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x73e77f43 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e630a60 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7efc6da2 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x88a00045 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8d47a100 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x970bc78f cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9792a372 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9e666b00 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaaf36fac cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab12386f cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6d1c6f7 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc1d085a1 cxgb4_select_ntuple +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 0xd344822b cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd3a1869 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe46fb858 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe74f3899 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf29b672b cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf4729dc5 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0943bcf5 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5801159f enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9d77c29a vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb6fdad4a vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe906e567 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf89f7f63 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x5386f52d be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x7195c6ab be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x55d16370 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7f3e6cd5 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x99a95386 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xbc4ce7e8 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xd217e3a1 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02e6a9e9 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a38038a mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ad545a8 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28eef648 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x293e1940 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ffd8b02 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a87feb5 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b510170 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d44aee5 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41d1fe22 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x525d8522 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x625dd621 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d3c089e mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fc37d31 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76ea4eea mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7729193b mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x792442fe mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95870f12 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x982b2ac8 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98c9e373 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f534c6c mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa04befdd mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb48df0db mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6cd1498 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf2c6aac set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc201d6ae mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7fd777d mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc87727e2 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcefc846c mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd42086a4 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf936b5a mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe174426f mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9cac6f5 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb59ae37 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed18c1f8 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeffbe9af mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf33c4dc9 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb22728c get_phv_bit +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 0x0bfbd6a4 mlx5_cmd_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 0x15978476 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cc6fdc9 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2231cdb2 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22c6468b mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b9a0c4b mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d8eeac0 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ea30795 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x394a448f mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x396b3fc0 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e690db4 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41c574c1 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45a3b957 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f9dfd50 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5589de3e mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69e43941 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x791b8e27 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8102643a mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x824571fa mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x824a52d3 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x909ed3d6 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa80ca1e8 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb116cc7f mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc255747 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd62b5e2 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0e16017 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1961639 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc677ba11 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7558ed7 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaff33b1 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdccb74a7 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdef579a9 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e67e6e mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe538dc3e mlx5_unregister_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 0xed976efb mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2726422 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5d0d81f mlx5_create_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 0xfd1128cc mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x252d097f mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x52f961b9 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 0x5b51c47a 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 0x8b45d57a mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9626966a mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac7e6c7e mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb567278f 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 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 0x1f9f5917 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 0x05686a17 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x2d5fa8e7 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x709bb894 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xeda637a5 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf830dcc8 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x06e17189 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x184e8309 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x330ea9f9 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4db7a332 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x50c61197 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x639a7478 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6a11e6e2 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6d4369ec sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc25b5253 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf1cda47d 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 0x076d86f6 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x12583934 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x16b1b69b mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x2e6c7661 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x7442d6d6 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xdec58dc9 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xe3c84fb4 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xe3ce1016 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x7d5a8e82 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xb66c15ec alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x14471451 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x1d986d85 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x4609dcbc xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/vitesse 0xc0787c77 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x64285195 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x6500b1bb register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xc3476692 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x296b735a sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x1d30a818 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x24a66434 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x3e23339a team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x4b77be56 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x975b57d8 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xab95e233 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xba926c27 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xd307029f team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x7fdf1ffa cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0x87bdf924 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xd3a3a284 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xdc03aa5f usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1073606f register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x234dbe77 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3d217602 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x59dca1e0 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8f0ee7cf unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x99c55f3d hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9c504fa7 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa356ce53 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbbb475a1 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xeb317750 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf2b0e8e3 hdlc_open +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xbbc57f25 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x510309c6 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x911dde43 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x96f7b56c ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa349bf62 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa4b385b5 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xab5de2af ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc8d59542 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc9551447 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd24ba027 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd2d58c72 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe17f567e ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfe76be00 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x04a377de ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x36689338 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x40a18d91 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x44122cea ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d603036 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5872d787 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a83eb83 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x835130d0 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x857414da ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x90ce279b ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1787eea ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcaf50633 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xce7a5a75 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd5a20ffb ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf6d5b003 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0e33e49e ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x34a6f9a2 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x39887c01 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x50c5dbf3 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7f21f649 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 0x8f148ff5 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91c8b981 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 0x9a5bf6e0 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc2d51f75 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc887d7d5 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc91ff8b7 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x072407fe ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x19b828cf ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2805ec57 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2ab28c34 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 0x3e9fc6d3 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x411b4911 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4e4f862c ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x542114ed ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x56d19fa9 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x59a74ae6 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5bc23cf9 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6635a191 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x967fa6f8 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9e1fe918 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb69e58ac ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc5ac5268 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc7d08ceb ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdc346802 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdec561cd ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe3de537c ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe87aa63d ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf885f23a ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfe54be46 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02d11d3e ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0df0944c ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f07be78 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f383d4c ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15b87465 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1759d057 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a30e661 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1cf51793 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f27d16e ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x217f64b2 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23c7a9ae ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2490c985 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x261e4b7b ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x275435df ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b8f35a1 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c648672 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d6b011b ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x328cd8bb ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3303e734 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3446719d ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3594c591 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c10c8a1 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3eaca148 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42b99364 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42c70301 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x441ed4fe ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45860564 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x488e9055 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c3c9a36 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ca9e7ee ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4eda7fd4 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f1e067b ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x515752c6 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53cb1f52 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x582d6551 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58bfd0a5 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x597fc9e3 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5afb586c ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cadbc69 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x603a0543 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x617f68d3 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x631bce99 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6683a323 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x678210a6 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67e08bfd ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x689a95f8 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x709bf77a ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72ef57aa ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73a8e1c8 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77e7aa46 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fc86fac ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8399d7b0 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84226ca6 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8798210b ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x886b16eb ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8989a8a1 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a9b8ce2 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92c20d5b ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92d44f6e ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a518462 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9baf8f2c ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e430342 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e57ef95 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa89c1726 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac8eeb80 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb34d3071 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb460e117 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba525781 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba9463c2 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbfbee601 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc05f834a ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc110ca39 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1fb7aa0 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc22bc76b ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5935236 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc62cc095 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc78d60e7 ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccbf5b8f ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce1c64d6 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce467ed2 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf8010a7 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2534f15 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3647cd7 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd57f9257 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5956741 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd99bdf2e ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda0cbfc4 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdaa30a5e ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd1bcf18 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe012672b ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0182281 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0e63725 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe22f3a00 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe63f8e06 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe658baa8 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe99dec18 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb56b560 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf092eb54 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf11550ae ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf426cc0c ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf57a62cc ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfaa7e314 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfdfa42d0 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe40e6ca ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfefd6912 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x0c0f6db3 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0x3bce72b0 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xdb9af8e1 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x14a8764e brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x38990235 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x411917a7 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x57acd044 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6eff0e8b brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8646c649 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8e5af5ee brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x97538048 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb5f30483 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xbbc6202c brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc8640ff3 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xcb26a27f brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xfdda41ab brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x05125e92 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x092549af hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1e481fc5 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x22f3a4dd hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x26c52dd4 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3c70d74a hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x451299f0 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x45c4d690 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4bb26d70 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x54ed60c2 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x65c24bdf hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6b55838e hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x71d33ff3 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x785c48b0 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7acae3c5 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa575b0be hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xaf81c7ae hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb319c10a hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc4118f88 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcc4a15b7 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd474aea2 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd5fd68e4 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdb1fc1cd prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf849e364 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf9af150b hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x046f61f6 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0a4106d5 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0c2622a4 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0e6fa7db alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x30845b0f libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x326b9fbf libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x56c6caa5 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5c398863 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5c93711e libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6400ccf8 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x646cf138 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x66fadf2c libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7906929e libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb3565c45 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc3ce1917 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd5e82f82 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xdae0dc2d libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xea88fd80 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf0467f91 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf32711f8 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf3b394aa libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0069a816 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x00dc8bab il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x022164e0 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x037a62a8 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05b25a05 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x077e9d9e il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x09d04ce9 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0cfbaf72 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0f3149b9 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x160f8f0d il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x19580292 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1e2703ed il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1ec0a119 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x23d4bd77 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x29c28137 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2ce4e1c5 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x34415d67 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x38ae023a il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a9ff6c2 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3e30f620 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4069400b il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x434522c3 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x439c0a72 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x46716143 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4820d4e5 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4865f500 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4b45bce3 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e07f02a il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4ea641e2 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4f4d3b24 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4fe32cf6 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x525b4cce _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x52b7b0ad il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x566ebbbb il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5a12a936 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5be184da il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d30e9d8 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x634bda2e il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x680a21d9 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x68782889 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6920f76c il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6b664804 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6df1de3d il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7264e702 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x72bd815f il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x730b26df il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x778df39a il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x79f81bbf il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7e8fcee0 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x82591dc6 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84eecfeb il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88071a97 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ac21239 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8fbfbc4c il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x91538693 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x931de897 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9dba5036 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3bfd265 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa60a2b8b il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa769d741 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xac469345 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb337c185 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb368d59b il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb37239dd il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb4b9e21e il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb6b81fe0 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba03f38a il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba2efdda il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbe0010c3 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc26d82cf il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc3e41d1f _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xca69b07f il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd305e68d il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd3498500 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd374f187 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd4aa469f il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd4e54cc9 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd64488be il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdad5b3dc il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdcc45283 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xde77cf38 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdef51b61 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdf91473a il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe00ed982 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe5c6edf4 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe80e06bc il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe8f58a25 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe98d9402 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb8f68e5 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xecdc8f1d il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf0d89d69 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf3c7ca2b il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf41bdb78 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf8e2dd4e il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfa31a7a3 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfb83e633 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfd043c62 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfe56ca75 il_mac_flush +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 0x14e1e0f6 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2945637b orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2987e1f5 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x32363c04 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5898d2b6 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5bfb0c47 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5f9be0e6 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x67e04bd4 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8824fbd1 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x884b6715 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9e23f551 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9f9870e6 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa5c817a5 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb1f2cc95 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdb603d18 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xea95e9fb orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf9dee5b8 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x526fba8c rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f4e2192 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x20986af4 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29ed8a90 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2cfe295b rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x36665436 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x40111434 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x46563404 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x51f19ab8 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x529768fc rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x59b398a0 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5e2c4ff5 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x62fa6577 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6492ebea rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x66119d81 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7412d489 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e0ca6eb rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e68072e _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x80bb62e7 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8cd97b56 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x93905f63 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9845fcd9 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9a70dfa9 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa827a6fd rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaa5307d8 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaab82369 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xadcfd72a 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 0xbcd54eb5 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc4be0206 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd1d2bc0b rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd2d7678a rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda402090 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdc457e29 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xde1c6107 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe5d43643 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6155428 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf16f9270 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf307a1d8 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf3cf7381 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf59198c3 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf5f4731a rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xff2603ea _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x61803cd2 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x65421b81 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x66f56527 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc9167779 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x03bd3acb rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x49e78b30 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x7d37bbdd rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd128aab4 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x03da779e rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x05de627e rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x17f129ff rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x18a57e01 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x18b53061 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x20292d94 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 0x267257ca rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33c4576c rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35ed7f53 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x41e825d0 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x422d0c29 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5599c273 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x64b101ef rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65424861 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6c8f6275 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6feeec88 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x73362106 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7663af3f rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x902bdaf2 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa5d77a55 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa979890a rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf1445f4 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc23bc48 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd4fd3ddf efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdca6cbd6 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe29ff910 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef5fe9af rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfa8fd559 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x3291ed61 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xcfc7829b wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe98a809f wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xef4cfc91 wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x497fe282 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x6b193e02 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x793fd014 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0xd82ca685 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xee1dfeb2 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x4cbaa9b5 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x716fbd8b nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb751861d nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x1e44450a pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x813389c3 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x151ebedd s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xa4188a25 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xa4905230 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1a373cac st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x24a4cb37 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3e7b597d ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4f253d30 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7a4489c5 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x96b5932f ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9b706cd4 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xaf5a58df st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xeaa41e85 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xee257965 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf065aa81 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0268b576 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x14571a47 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1d24a2f3 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x285167aa st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x30a472e4 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3136b9ce st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x38d4d0a0 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4df57855 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5842d5b6 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x58ab8b37 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7d405692 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8bdc6479 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8f882b55 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x91421693 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x92484aab st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9c3cb8d6 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc9a0f7bc st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf1a415bd st21nfca_hci_se_io +EXPORT_SYMBOL drivers/ntb/ntb 0x0009307c ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x00c4875c ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x08a5b14d ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x1f732d03 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x66e6bc18 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xadeec956 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xc947636a ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xce6df985 ntb_unregister_device +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x26264ce4 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x28cb1b84 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x0e88acc0 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x03d776d3 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x0f27c67a parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x1edda53a parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x20e1163b parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x2dc948f5 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x39669377 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x3a29899d parport_write +EXPORT_SYMBOL drivers/parport/parport 0x3b9ba10e parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x42a029b7 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x4a0ae6c6 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4e0cdd61 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x4ea3b818 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5f6f4025 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x6712a849 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x6d8bc54a parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x726ba52a parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x7e9dac4c parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x7f8b92c9 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x872849f5 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x8afa5335 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xa9fe2c22 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xb0a754f3 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xb744c376 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xcee58fe9 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xd27377ce parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xd74bb266 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xd951fa01 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xdeadd81d parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xe0f8990f parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xeba38bdd parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xf2268fb8 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xf40f00d1 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport_pc 0x4b4010dd parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x791f5f47 parport_pc_unregister_port +EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0xa0449ea0 iproc_pcie_setup +EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0xb0c7533b iproc_pcie_remove +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x02acd644 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1a1b6c03 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x26f78b1f rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x510de763 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x5417778f rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x840cf2d4 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xa630682f rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xa72bfeba rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd260d9f9 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xeecf24d9 rproc_vq_interrupt +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x5214777b ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5999d8a2 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa29809a1 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb476a9bf scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf940f11e scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0b5988f7 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1f160d08 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x209c5ecb fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x21b9fb06 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x24d813c5 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x61fa4fe6 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6818750d fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x85f7e48e fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbb5cba3b fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc78c09c6 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd8874aca fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfdf4d1d0 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0032a955 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06ca172d fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x09ea8cbd fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ae037ee fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0be1aec5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14718517 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18f8df8c libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1b1b27e3 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x23d307aa fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b110724 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f36cfb3 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x33077013 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x33e75c1e fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x486fb233 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48df5d59 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4adf1620 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e692ee8 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f217ed8 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x646296fc fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74b55477 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x808f80cf fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x881a553f fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a0d6b98 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d857e54 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9152eaa6 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x99db33fb fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c4887f5 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e67af14 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa2483413 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaa56659f fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xacae9ca9 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb07434ae fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb08c0efd fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb39f5443 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb492171 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc349f57e fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc96a045 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0a5964c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3a03483 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd9bb9e77 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe59cd64e fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe82c3832 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe88853da fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xec331379 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xef7e5b8d fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf17ac716 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf5387e7a fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa799062 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfcfb20ad fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd96fafa fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x17e06b1a sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5f7be8b5 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd65b7123 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf33c45f2 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 0xb44cd77d mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x07e947b6 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0afe585f osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1a1e5c76 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x28afeaf8 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x30e03cef osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x34d0ddf5 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x35cb7570 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x415e2ee5 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x42f378f6 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x455e13f9 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x46a271b1 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4b6676fa osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4bfc28f7 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x507a47ed osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6c78b2d6 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6db413e3 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6e344e18 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x74df4a93 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x79766b51 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9a882d89 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9abf699f osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa3c60da7 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa63ede68 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xab9b5e90 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaba76820 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd2e7553f osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd4a0f085 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdf8c7103 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe0036620 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe59db801 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe641d30b osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe6a8d505 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf095053b osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf15160c5 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfbca16e3 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xff5e339a osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/osd 0x034e93dd osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x4b9c01af osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x92173836 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x9d1f1357 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0xed530dbf osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xff97433f osduld_register_test +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x16c2ee2f qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1f5fcf4d qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x25dcb3fe qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x355be9cc qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6aa8fc6c qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x78ed6ee5 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9ade8c1e qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbddac4d9 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc3d588b6 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdde5f87c qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf6a896a1 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfd577e45 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/raid_class 0x8946f052 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xb07af1bd raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xb866d6c7 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0e6349d5 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3b41c308 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3e572ffd fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5d9b5c39 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x62e3e503 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6e73bd29 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9a2ffe93 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9d7ef3b8 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9f2f1fb7 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc65d3579 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcbacf8f9 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xed9e104b fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf93353e0 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x039f3d73 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x05185db2 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x07dcca38 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0a772adf sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2c2c4407 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2ecbc657 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2fba361e sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a55810a sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3ac648b7 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a759b0e sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5cdd8512 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x64052b6e sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6859c729 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6beb507b sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x729ee124 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7581102b sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x75c001d5 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x75d2e4cb sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7707326d sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7a0b3a94 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x82b79551 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x85267c6f scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x86cb82fe sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa1583056 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb4d5582b sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc66213f4 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdcaf8e86 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe6bb2853 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0d35ace7 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3c58a621 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7cbbef4a spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe3cf4edc spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xea986fd2 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x314fdc90 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa1f5c132 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xbc961e76 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe9434db8 srp_rport_put +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x39f242d0 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x3f6ce494 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x5dc9b588 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x780518e0 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x86fabe66 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xdc638758 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf6a7ced9 ufshcd_shutdown +EXPORT_SYMBOL drivers/soc/qcom/smd 0x1b6c541b qcom_smd_driver_register +EXPORT_SYMBOL drivers/soc/qcom/smd 0xcf2e0cb0 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 0x07c791dd ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x111f6d0f ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x1ccd7714 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x2dac97bb ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x32948037 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x3edb4c59 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x4468a44c ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x6346f9d3 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x699374c9 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x6dd4df73 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x7fc89adb ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x890fca58 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x8c6e3055 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x91156daf ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x9410ff96 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xa3b623ca ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xa8e9f023 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xad496cc8 __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 0xe04d971a ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xe83cb8b2 ssb_set_devtypedata +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0ab3dc52 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x23d9b789 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x261805e4 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4b8ad141 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x526c78ed fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5fc4c2c4 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x678987f3 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x827609b7 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x85cbf0b5 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8a5abdd2 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8f8636aa fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9af8f67f fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9cc2386f fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa629eb1c fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xafe95767 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb9a83066 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc95e9e7a fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcc5b56f5 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcf266d26 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd51a071e fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd58f9bdb fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xea371737 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf0a0fa12 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf61ffda5 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x115ac295 fwtty_port_get +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x4e973376 fwtty_port_put +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x583d992e adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x57758f93 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x61f9d45b hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xce50496d hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xf83f1c7e hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x800cca02 ade7854_remove +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x83ad6d9b ade7854_probe +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xfe179d13 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x3df6a05f most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x00603934 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x028ab1de rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x04d7255a rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0ef74d62 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x13ae9c31 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c65edd9 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22cb0faa rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x280b058b rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2afa8134 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x348f0643 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3662b40e rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a8d7957 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x46df30ff rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x528fdb04 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x59c2a315 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5a3b43a1 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x705533f6 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x79751e95 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b5ff175 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x92db7822 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x93f07f19 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9637e67b rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a80e20b rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa4e46d5f rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa5a70bde rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa91e94d4 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xab533273 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xae129c40 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xafb3828a rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb8364da4 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbb170c3c rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbc6436bd rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbfa07698 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc1dc02ba rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc31b90cb rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc36d1b9 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd7ff4b0 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd3b0a78f rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd4faad59 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdfb8360e rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe099d220 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe46a4e33 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe483c545 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe50fc45a rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf029be8c rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf0b43b1d rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf2cb2fa9 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf47bc8cf Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb0c4795 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff772788 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x02169702 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04e19430 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a7058a1 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0c43fe04 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x123d6ebf ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d58dcaf ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d80a945 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1df7e7af ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ff20b13 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x235a376b ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x24a35f98 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3593b8f6 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a8416e4 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3c7ea38d IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x41fc2b1b ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45e1c794 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46e985fb ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x54662a23 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b52789c ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69754ab3 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6c31270f ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7287644a ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7b0a30be ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7b541a7b ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7dfd338c ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88f67312 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8aae9387 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ec72e3b ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x990555f6 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99fc9b9c ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9bdc5096 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9bfacb9d ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9c674f3a ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa181d0c0 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6301359 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xae5cd9ee ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5c40ed2 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbb4b0272 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc2242a65 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc51b445d ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc52d62ed ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8df88b5 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd0886b13 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd0938dbf ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdde8ffa6 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe11d3b03 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe2e66c21 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeaba57bf Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xef4903f5 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xef8bad16 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3b2343b ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf84bec27 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd6c4138 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x03a48491 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x12940ec4 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1a8649e7 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1b21ba10 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x203da5bf iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2d5e5bfe iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4121051b iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x41fcaf98 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x48f05d92 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x500ca713 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x616e40ee iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x64b6215d iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e1ab391 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x85f65404 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ad96173 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x90aa5472 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x91e20b02 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x920f2474 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x95c69a61 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa9a21b29 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb25149f0 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb71db2d1 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc3402630 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea77c221 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea89194e iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xee006360 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf055baf5 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfee506b9 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x09f43046 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x0aee0aa6 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x137ad9c8 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x156aed2f transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1b7a9586 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x23606033 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x24357a4e transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x25ae6c94 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x27c3d147 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a2ccfbc transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c0cf839 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x38acb34c target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x3c328486 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x42dc9a6c core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x44ff598c target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x4906eed3 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a71c5ab target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x4cd4c6cd transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e74379c target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f2bdd8d transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x53e26542 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x54461c98 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x5ce654b9 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x5db0539d transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x65482aa4 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x693889d7 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x7216a3e1 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x736fa420 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x74215d1c transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x751ce2a0 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a33156c target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x80ae0a8e transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x839b68c0 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x84a280f5 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e06653e target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x907ab3bf target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9092e1bc transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x9601e05a transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x963dbe5a spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x9640b7e0 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x969bc8b8 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x99cf5e14 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xa2abaaf8 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3c4a36c target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xac416284 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xacc1bf7f transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xacfc5c51 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xaec34b27 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xb04a233a target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb9874577 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4d20a8f target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc68a9e4a sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf277cee transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf854a2f sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd05ecbab transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xd45d73c9 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xd594ed82 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0xdc179c40 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe01c6dcd core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xe18a590d target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xe48eae1c target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe573ac66 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb8c1397 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xeca68e5e target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xede2c330 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf0d162db __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf4d16b4d target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xf549c9de passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xf974c590 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xa0728704 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xc596ccd4 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x4de5fba3 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x061d3403 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1f4d385c usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2dc1925c usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x40be34bc usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6e87747d usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7bec5750 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9a197636 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa9e42fee usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xadf838aa usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xaf6658c4 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb2ea5ea0 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd12bbc08 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x2c0715f7 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x5cd173d5 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 0x13aae1a8 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x4cc58acf devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x4e732e8e lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xc65e5028 lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x04107c4c 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 0x4034463c svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6b39697f svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x70862561 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xbf970bb8 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 0xd86dda60 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe433fe01 svga_settile +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 0xfbfe9854 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xb1fcc797 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x2fca470d 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 0xb759e050 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x7f35846d mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x49c399ff matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xe9fa8416 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xf6462770 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x09f297a6 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1fd6fcd9 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x4deb4b1e matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x5005fef1 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x6693c46d matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xcbc151e8 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x78f902c6 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8555de80 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8584bc7d matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbb104280 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x49382e73 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xcf32e8ea matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2fd5b7e2 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x55a9bf16 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x865a493e matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x88c19b97 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xde8928f2 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xbab63c03 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 0x2346dc46 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xac649c15 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xc8150a36 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xdf1dc8fd w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x17be52bb w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa4fbfdc0 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xa73654d2 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xee0a15c7 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x13fc2b34 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x71dd34b9 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xe241a7ea w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xe82ea366 w1_unregister_family +EXPORT_SYMBOL fs/configfs/configfs 0x05ff8d88 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x1cadb62e configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x1e7b9a8a config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x2a702015 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x30cc25d5 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x34bea5d1 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x428804c1 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x4fdf250d config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x68e68da0 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x693134d1 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x74958d33 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xd2a7f61a config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0xe4132d8f config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xf5cdb856 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0xfede5146 configfs_unregister_default_group +EXPORT_SYMBOL fs/exofs/libore 0x114cc340 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x17b1f857 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x4258323c extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x58db2cbc ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x66a48b1c ore_read +EXPORT_SYMBOL fs/exofs/libore 0x77212f62 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x8a13f24d ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xc5988b72 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0xea229bf3 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xfed2b567 ore_put_io_state +EXPORT_SYMBOL fs/fscache/fscache 0x01e7a788 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x04fe6124 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x072e7fc3 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x07b30da9 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x094da348 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1241eee3 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2013cce0 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x20bd19d6 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x25631afd fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x39e71030 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x3b854824 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x453fda48 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x4746111a __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x47c9b6c4 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x49a0b1a3 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x61cf01fe fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x63c32f5c fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x64bd53c7 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x6d3212ae __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x757b06f3 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x7a9f9f7e __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7f155d92 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x8bfb6174 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x973d7b36 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x9ae6869d fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xb635d8fc __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb7e6b052 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xbc49b477 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xc705702a fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xd5a72fbf fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xd96145c7 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xdaf45129 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xdb0f11f9 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xe100788d __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xe3ba60fe __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xe6d03266 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xf0e999c2 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xf6e6f635 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xf8102631 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xfaf6ef92 fscache_put_operation +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x1b708e28 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x305ab4c1 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x3dbdc8c5 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc1ab07b1 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xcbc7ef53 qtree_write_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x0687bc57 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create +EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put +EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed +EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set +EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get +EXPORT_SYMBOL lib/lru_cache 0xe197daa9 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 0x6e4617ad lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x9a690c78 lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb666c180 lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x3dee5ce1 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xae8bfb3d register_8022_client +EXPORT_SYMBOL net/802/p8023 0x2409870c make_8023_client +EXPORT_SYMBOL net/802/p8023 0xa8136d49 destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x01afb08a register_snap_client +EXPORT_SYMBOL net/802/psnap 0x4dc7159e unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x101aae35 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x11e93b3c p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x1e10c483 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x336a9582 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x37d6184d p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3e3cb64a p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x45946329 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x4650239c p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x49598264 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x50d74c9f p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x519e0f80 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x55f3dfe1 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x59a1fd43 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x660a2ac5 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x689a6a16 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x6eb70262 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x7615c7e0 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x7b51e5e5 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x7e997780 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x81803966 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x829ef65c p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x853a4f84 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x8582b4b4 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9ce58e4f p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x9fee143a p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xa031d97b p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xa543c838 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xa54cffbe p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xad9d9093 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xbf5f5519 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xc4440d52 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xcc708be8 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xd2e73568 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xd605f6ef p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xd655efe6 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xe13c1404 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe7cb0d8a p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xecf36648 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xf2ca04b2 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfcb9eb9f p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/9p/9pnet 0xfe8264c0 p9_client_fsync +EXPORT_SYMBOL net/appletalk/appletalk 0x02eac14e atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x8b1bfe9f aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xbf6db8b5 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xdfe03640 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x190a518e atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x1bf0c6ae vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x1e9dcecb atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x20347041 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x273e0e60 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x2f5f8a9b atm_charge +EXPORT_SYMBOL net/atm/atm 0x3575f215 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x689986e0 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x85218786 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa01a9c07 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xad85c0ca atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xcd280e15 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xd2ec8520 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 0x0545d3b1 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x0793325b ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x1bf4ee20 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x42eb8253 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x5ca46397 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 0xad6fb0c9 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xddc19d74 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xf1f3e335 ax25_listen_release +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0096ba03 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x04f5ec63 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x10e0179c hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x12599e96 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x16a379cf hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c854d6c bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ec4879d __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4008b264 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4a2cc606 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4ad94de2 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b959b8e l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4dbbd908 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e815412 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x692de26e bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6a555f75 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6c494ae9 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6f23d888 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x755558b2 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7c84c4a8 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x800938db hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8280d55d l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a48dd0e hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8eec014e hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x980f8747 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x98ec309b bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa7623f9c hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa9cb537d l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb8a3a439 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbe802a76 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbef4d32d bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc6e17cad __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xce980106 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcea64033 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd70ebe40 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xda2cc90b hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdd393746 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0d28708 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe24771c5 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf6d592bb hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfab49b64 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfcb4911b hci_register_dev +EXPORT_SYMBOL net/bridge/bridge 0x96323ce9 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2bc47d7f ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x32ccf91f ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x61986157 ebt_register_table +EXPORT_SYMBOL net/caif/caif 0x04068b9c caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x131b6695 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 0x46761b5f caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x5b8d926f 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 0xaee93eaa cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/can/can 0x11e8ffea can_rx_register +EXPORT_SYMBOL net/can/can 0x80c9e58b can_send +EXPORT_SYMBOL net/can/can 0xdd9d0d37 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xf2c5069d can_ioctl +EXPORT_SYMBOL net/can/can 0xf98484ac can_proto_unregister +EXPORT_SYMBOL net/can/can 0xffb4a54d can_proto_register +EXPORT_SYMBOL net/ceph/libceph 0x01414bfc ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0d606b25 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x0e1efa73 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x15e2ae98 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x15f6ef46 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x16794e0c ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x1826b28e ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x199c9e54 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x1ca97812 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x1cb1b4ee ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x1d2c1c1a ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x23284e9a ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x23a3554c ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x255f1fb5 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x267ecdb2 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x2f60a540 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x3758e182 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3bf4c64d ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x3d2fa752 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 0x412d815d ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x4306d84a ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x43140fb3 ceph_osdc_set_request_linger +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 0x45d364ea ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x483aee61 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x487c2bcd ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x4914f16b ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x4c20d3f6 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x50e8f543 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x52ef1326 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x555b83bb ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x56f802a6 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x583db6a3 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x5974205b ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x5d801e9c osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x5ea380af osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x616bf155 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6521508d ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x6a4e1ea6 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6c7ad187 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x7a5fbd79 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x7ac208f3 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x7d472ec2 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x818f4121 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x82b077f8 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x83dca868 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x88c4eb99 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x91d3c3ae ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x926a6fe3 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x99d688a1 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9c514f0b osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x9cbcbe27 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa223987c ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa55f094f ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa577e55f ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xa60da514 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xaf8d6924 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xb1ce4664 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 0xb6e35007 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xb9dd1b4d ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xbb2d4cb8 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xbf52c45b ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xbff65b43 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc363510b osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc8d52dc4 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcd8febe8 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xceabe811 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd3c2a8be ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xd8e08dbe __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xdabb1bfb osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xde681383 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xdeddf680 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe1dc341e ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe5a8cfb3 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xe90ebb61 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0xeb87be3c ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xec2813a1 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xee8c14d9 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xf100ca60 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xf2033543 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xf2c2c2c1 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xfcd6631d ceph_osdc_start_request +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x6fc32a7c dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x718a3b19 dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2bbf99f6 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x68e8912f wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x75db033f wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x9ed0d400 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb4358e63 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb43b7dc0 wpan_phy_for_each +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x631d9876 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xeb0db7c7 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6222b0f4 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6772e0a4 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x87bc7bd7 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8a0a6e6f ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd293bf39 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe5fbd303 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x194df8b2 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x41a098aa arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4a6abacf arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3e1b64f8 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd5a080d7 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd8074c46 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x1e65e7a6 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x7e924090 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x6a3142f0 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8e72bd12 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa3c41027 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd410e656 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe4d709cc ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x546df30d ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x88ccdfeb ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xfdce8237 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x83cd1b20 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xae37dc37 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x2bb94ecd xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf6c9395a xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1ba8854c ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2dfab244 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xaae6cc66 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb683f0ce ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xba2be924 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xbfbd9256 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xdd55d093 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf832d90a ircomm_connect_request +EXPORT_SYMBOL net/irda/irda 0x03124e69 iriap_close +EXPORT_SYMBOL net/irda/irda 0x06553adb async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x13c7061d irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x16b69520 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x17a491c5 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0x2944ca64 irttp_dup +EXPORT_SYMBOL net/irda/irda 0x2b8d26bb irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x33c43f57 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x36cad55b hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0x37791344 hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x41dff561 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x426033a2 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x4498e658 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x558c76b5 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x572b894b irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x5b861bd7 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x5edf2dea async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x6492e28c hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x68139894 irttp_flow_request +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 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 0x912defcb 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 0x975281c5 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x9cf8f9a8 irlap_open +EXPORT_SYMBOL net/irda/irda 0x9ffda243 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0xa8994b32 irda_notify_init +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 0xccda74e6 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xcdb3c505 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xd225c06c iriap_open +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe5013fac alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf199cba4 irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xf6444b04 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0xf9552427 irlap_close +EXPORT_SYMBOL net/l2tp/l2tp_core 0xae0ef701 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0xed774a6b l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x0947e2eb lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x2459907c lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x649d3574 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x68d7b3e1 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x959224eb lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x9767b7be lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xb5dff738 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xd0809bd7 lapb_connect_request +EXPORT_SYMBOL net/llc/llc 0x0c719760 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x206a62cf llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3a132a9c llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x523c7ed1 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x5a5eebb5 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x6c49869c llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xe1f4489e llc_add_pack +EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x073ec418 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x0cd0a0d7 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x16737026 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x17c2f71e ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x1fc9487e ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x20c4dba8 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x26475fc7 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x27d015f1 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x2847613b ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x2e4909d9 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x2eee867d ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x31363ea5 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x35722749 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x3631383f ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x3a156813 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x40ab5e8b ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x42258048 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x44785aea ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x4a77dde2 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x4d253a46 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x536f9a72 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x5683b284 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x56d735ca ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x5f91490f ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x64035a1f ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x67abe22d ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x68248b5d ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6843b25b ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x71dd10a9 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x728ff8b8 ieee80211_csa_finish +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 0x7d4392eb __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x7e53b8e8 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x80cbc361 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x80fd30a6 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x85c63b65 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x881f4696 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x894c17be ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x8a20223e ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8a82ab13 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x956f2909 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x97a5fdf5 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xa41bcf36 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xa8f0ada7 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xaa0c400b ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xab5f87e5 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xac5dbce0 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xac701018 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xaedfc722 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xaf6c3a92 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb1572084 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xb21d4fe4 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb223b4ca __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xb9e4ec95 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xbb1e5af7 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xbb58a545 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xc03469fe ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xc63468c6 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xc77b3c08 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xc9128140 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xc9b746e9 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xce452e91 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd2b0bea3 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xd39c678d ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd4bc5f1c ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xd6773837 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd7e1019e ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xd861db79 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xd8b0aa34 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xd8d0164a ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xe1795ae2 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xeb15457b ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xeca68c68 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xf44952e1 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xf788ff30 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf7a89f26 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xfaa6660a ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xff84c94b ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xff9b1825 ieee80211_probereq_get +EXPORT_SYMBOL net/mac802154/mac802154 0x0bfc3ff2 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x18f50e51 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x4be3638a ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x9262d053 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x99e120ae ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xa05eb42a ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe9df3d47 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xeb4ca0c1 ieee802154_free_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1a825034 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5fc9a6b9 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x61a54cc7 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6b03be4b ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6c85500a unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6daecdba register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6e24871b ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6f3052d4 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x85c58f8d ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x98133c07 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbe5a4a55 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcfc11194 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xda4458b3 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdc7837fb unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x07c77780 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x50787867 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xcaf11a38 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x02f219d9 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x3af2dac3 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x5c238d71 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xb2e8f811 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xbefbc6d3 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xdb9137d5 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/x_tables 0x0b0adc9c xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x0e5f5695 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x2d3eadcd xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x3cecd698 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x83141eb4 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xa79f523f xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd805b59c xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe53681ec xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xf13715d3 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xf50e170f xt_find_match +EXPORT_SYMBOL net/nfc/hci/hci 0x082eebfa nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x083a8756 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x29745ca5 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x3242c600 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x3a9c5e94 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x48a633d9 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x512b4775 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x57eb0772 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x5c29e0e3 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x62ed0730 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x70f02d11 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x8614ac7e nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x96ea19c2 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x9be09e62 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xa2acaf61 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xc09dc346 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xc7d72ec5 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xd8b813ca nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xd94cebf1 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xecf544e7 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xf954bdf9 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x0cb01514 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x0fc85858 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x109a7e41 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x1c20234a nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x270049b1 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x3367190b nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x37b94fb3 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x3b48fcc3 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x445f9644 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x4e8a97da nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x55dc0143 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x5bd7482b nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x6af8a2d3 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x6b79ab0f nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x75b56c1c nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x8574e6e2 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x8ac48ce5 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x8ecaa523 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x9849db37 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x9bb0af68 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xa23c2365 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xcaf2f77c nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xceb840a5 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xda4d873c nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xe413a55e nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xec965dfd nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0xf6b1eeed nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xf894d315 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nfc 0x119be758 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x1e15a18d nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x1f97ea82 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x2319a0f3 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x2a442b57 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x2cabb862 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x2cbc794f nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x471f77b9 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x4b143180 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x5cb3830c __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x7451cf14 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x76bdb737 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x8817bae8 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x8903c4cc nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x96672eff nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x9eab95f3 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xb71de1cf nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xb8f76d97 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xb9800d91 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xba2220b5 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xc644770d nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xcd796569 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xdd02a145 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xff7e0b30 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x1dbe9f2d nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x2061ce5d nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x5dd8e30d nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xe2b76a44 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x03b3429b phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x160cdc9e pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x1fa558c1 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x41f2c7c7 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x487139d5 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x5fe734d7 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xa919bd84 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xef84826b phonet_proto_unregister +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x09abe051 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1ccad473 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x29f5b7cb rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2c89ef8e rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x71435db7 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8502eaa7 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x906b247e rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x993abb39 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9f8bc064 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb618c314 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xba4bb2e1 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc5beb586 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xcc75c1c8 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd1b53b49 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfe1447c5 key_type_rxrpc +EXPORT_SYMBOL net/sctp/sctp 0xfcb49fe2 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb46faeba gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd226c138 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe2783257 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x12e22ebf xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x563214ac xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x7665f5ab svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0x05afa6aa wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0x07b942db wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x041e629f cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x04c24146 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x09c2b035 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0c56b177 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x0f5f403d ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x0f87e12b cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x13f54d12 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1921a672 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x244ca9c9 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x2725e069 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x31502ee7 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3221d68b ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x33646ee8 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x360d3ef7 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3917d97a cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x4084b827 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x42ecb6f2 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x49b1d621 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x560a9c58 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x583a3c9a cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x5b8815f6 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x6605f652 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x686b90e8 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x68b0d3ca cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x6921dcc5 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a8781dc cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x6b685a41 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x6bfc128f cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x739bdf4d cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x76131fa3 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x784b90e1 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x7d884951 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7f70a88b cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x85b3e351 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8dee5a76 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x91112c46 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x921ebfa7 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x93dc02e0 cfg80211_reg_can_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 0x986338dc cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x99a2b90e cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x9d4394fc cfg80211_chandef_usable +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 0xa2069cfa cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xa27b382f cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xa2f51888 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xa3c62569 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xa8355814 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xaa585f67 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xb65bcef1 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xb7e2e6d7 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xb8ca4700 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb905ef0f cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xbb0a4c66 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xbd092b6b cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xbf7b4204 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xc0275104 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xc2197c37 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc3f76505 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc44c26fc cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xc44c517e cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc4ff17c4 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc6bf3809 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xca70a653 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xcb5c9a8c __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xcfc32867 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xd0e45d63 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xd1b4dfd3 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd36e746f regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xd4fa1bf7 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xdb6adec5 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdbf69a9a cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xdc993a95 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xdcb3920e cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xddaa9ea5 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xe232f033 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xe478feaf cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xec856bd8 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xecd07c68 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xedc07899 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf07d2178 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xfbb45c85 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xfdcb1e43 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xfe2c9d4e wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x5a6d2675 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x7b7ce033 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x7fd18a52 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x813a3503 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xd8434401 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xdd786213 lib80211_crypt_info_free +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x6ceaa180 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a2f7611 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 0x1eb1424e 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 0x67226621 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 0xaa383c5e 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 0x9e524013 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 0x751b5b50 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd-hwdep 0xf5350066 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x075a41be snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x12b14987 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x13742337 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2666adcb snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x637b57f2 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6f16ccd0 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7c2cd14f snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x85a14690 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9eb1b195 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa8b73856 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xaf52c77d snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbe409854 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc0e41d6e snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc56b2072 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcabfe749 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xceeb6578 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe6f3ba58 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xeb1a026e __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xebd21d31 snd_rawmidi_transmit +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x20507fb6 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 0x2a5027a6 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x40f13bde snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x41b0f750 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4adb44d6 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x725fed01 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa05079a7 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb999648a snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe8e68e36 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf9607b4c snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x07e37368 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0c4780ff snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x12882628 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2096ab1b 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 0x442e897f snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x51e6374c snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd064a2dd snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1bcdef8 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 0xfe22ab02 snd_vx_resume +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x04b657be iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x12824918 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x151f65e5 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x269445ba snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3e919110 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4337bb73 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x456f599d fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4a4ead64 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x514fe3d8 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5fd07d6a snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x628e82fe cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x654d0b0a amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x73aa6913 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x74a0f478 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8432bbe3 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x96aabb7b cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa76caa14 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xabebcf32 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaf42de2e fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb2693c2e amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb3c23726 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbf3e24e9 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcd80fd41 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd378d931 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd5250430 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd7ac7912 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdcea8445 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe04d633d avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe4b2fdcc amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf10f7312 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf349f78d cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfc1bf23f cmp_connection_break +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x67b45c06 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x91d6872c snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0f8cf503 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1762f6c5 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4ac461dd snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7b408dae snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x84e122fe snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9a6d1340 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9ebd3cd8 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbd734124 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x40a4db57 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x83302f62 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x90547275 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xb88b0b25 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x96d6e1e7 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x9a7c0fe0 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x179e2d4a snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x78ae7d16 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8713ba40 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xdc17e73f snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf229ef26 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf2bb3400 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x1c044ef3 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3a4d23be snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x43f085a4 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x6cc50ef8 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc3395a9c snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe2b04bfa snd_i2c_readbytes +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1c44cdd3 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x23d54a49 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2ec35f70 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2fc1a88c snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x45a31328 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4e518416 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x51f0d488 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x548e7371 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x71bcf96f snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x80e235d8 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x99cb7932 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9d4a17ea snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcd3d764e snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd2f4fb4a snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd419cc7d snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xec4db516 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfdabbd2b snd_ac97_suspend +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x166d0e13 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1a67e5e7 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x743f5e3a snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7a44cc09 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x831b6809 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc8b5b60b snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xcaccb233 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe3f35c6d snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe54b06a6 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xbfc541a2 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc2a92042 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xf54d9cf9 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x14dad564 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1ca84ce7 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2fd1c071 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3a1be7e1 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3c3c9696 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4d25bf37 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6f209d4e oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x70fc36ee oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7f13360b oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x924178e8 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x95ade8bc oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9a7621dd oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9b4a7a7b oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9ddc3966 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa112cc82 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xaafe8b52 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdc8a491d oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe4d833d9 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf2862bc5 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf94586a9 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfb3ccd20 oxygen_write_uart +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x18d19852 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x76223372 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9822a48b snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc02c32af snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd66909d3 snd_trident_free_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x3052bfa1 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x6ba1b0a6 tlv320aic23_probe +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0c6d191a snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x318cd847 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 0x89561109 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xccf1779b snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xdb60eaa9 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xec515951 snd_emux_register +EXPORT_SYMBOL sound/synth/snd-util-mem 0x3c38ab13 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x4351a719 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x5d4bdd85 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x90f5eedc snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9766d657 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xa4708080 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe2f5bb25 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xfe294f0c 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 0xeb9c9ef4 snd_usbmidi_create +EXPORT_SYMBOL vmlinux 0x00020392 generic_fillattr +EXPORT_SYMBOL vmlinux 0x001c879a trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x0046154b inet6_add_offload +EXPORT_SYMBOL vmlinux 0x00494084 dcache_readdir +EXPORT_SYMBOL vmlinux 0x00585f6f sock_register +EXPORT_SYMBOL vmlinux 0x007f6840 down_write +EXPORT_SYMBOL vmlinux 0x0094d237 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x00a43627 tcf_em_register +EXPORT_SYMBOL vmlinux 0x00c8210b ip6_frag_match +EXPORT_SYMBOL vmlinux 0x00caa09e qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x00cd9abd eth_type_trans +EXPORT_SYMBOL vmlinux 0x00cf142f mmc_start_req +EXPORT_SYMBOL vmlinux 0x00d378b4 skb_seq_read +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00ed49a1 generic_read_dir +EXPORT_SYMBOL vmlinux 0x00f2a3c8 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x00fe2481 __invalidate_device +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x010f50d5 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 +EXPORT_SYMBOL vmlinux 0x013e54b1 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x0144a1b5 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x014ef4b8 kfree_skb +EXPORT_SYMBOL vmlinux 0x015f714c inode_add_bytes +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x016fa396 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many +EXPORT_SYMBOL vmlinux 0x019574d0 iterate_dir +EXPORT_SYMBOL vmlinux 0x0197b15e pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x01a0c7b0 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode +EXPORT_SYMBOL vmlinux 0x01b6a9da fb_set_cmap +EXPORT_SYMBOL vmlinux 0x01b7fd59 dispc_read_irqstatus +EXPORT_SYMBOL vmlinux 0x01ba3772 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x01ea132e dispc_runtime_put +EXPORT_SYMBOL vmlinux 0x01eb204d wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x01ffda61 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02145338 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv +EXPORT_SYMBOL vmlinux 0x0243cd33 pm8606_osc_disable +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 0x027b3561 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02ce91eb dev_printk +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02ef742b percpu_counter_set +EXPORT_SYMBOL vmlinux 0x02f95a35 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x02f9a5c2 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x03005606 omapdss_get_version +EXPORT_SYMBOL vmlinux 0x03026722 mempool_alloc +EXPORT_SYMBOL vmlinux 0x030295c8 phy_attach +EXPORT_SYMBOL vmlinux 0x031158dc tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x0321ac05 snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0x03277846 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03374cc4 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x03391430 blk_end_request +EXPORT_SYMBOL vmlinux 0x033c0b6f snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL vmlinux 0x034c0e2a noop_llseek +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x03747857 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037bba3e devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x03a2a1c8 snd_unregister_device +EXPORT_SYMBOL vmlinux 0x03a43d4d mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x03b16201 udp_add_offload +EXPORT_SYMBOL vmlinux 0x03b2ff37 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all +EXPORT_SYMBOL vmlinux 0x03c49ddc amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x03d529b1 do_truncate +EXPORT_SYMBOL vmlinux 0x03d6739b may_umount +EXPORT_SYMBOL vmlinux 0x03ed1a93 seq_putc +EXPORT_SYMBOL vmlinux 0x03f0fbce __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x03f48c69 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x040fd218 snd_pcm_set_ops +EXPORT_SYMBOL vmlinux 0x04134b2f km_is_alive +EXPORT_SYMBOL vmlinux 0x04184267 pci_release_region +EXPORT_SYMBOL vmlinux 0x0420b6c2 netdev_features_change +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x04245493 nobh_write_end +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0449ded9 do_splice_to +EXPORT_SYMBOL vmlinux 0x048556af of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x04bf8441 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine +EXPORT_SYMBOL vmlinux 0x04ce3099 tso_count_descs +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x05004223 unload_nls +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x053123e5 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x0533e84f register_key_type +EXPORT_SYMBOL vmlinux 0x0536b9aa param_get_byte +EXPORT_SYMBOL vmlinux 0x053a1d53 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x054a11fc default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x055e538d proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x057c99fc param_ops_byte +EXPORT_SYMBOL vmlinux 0x058e23d3 _dev_info +EXPORT_SYMBOL vmlinux 0x05b3c18e jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x05be4eab page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x05d342e3 map_destroy +EXPORT_SYMBOL vmlinux 0x05eec76a dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0x0607569f dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0622589d page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x06254bf8 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0652a31b xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x0658e5de mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x06607f92 dss_feat_get_supported_outputs +EXPORT_SYMBOL vmlinux 0x066c48ab of_platform_device_create +EXPORT_SYMBOL vmlinux 0x067cbe24 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x06a674b9 ac97_bus_type +EXPORT_SYMBOL vmlinux 0x06b22757 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x06b566cd tc_classify +EXPORT_SYMBOL vmlinux 0x06c59fc6 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x06cf9aee mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x06f7a019 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0710d80e file_open_root +EXPORT_SYMBOL vmlinux 0x071c9e52 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x071cbf30 md_done_sync +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0759c6cc flow_cache_init +EXPORT_SYMBOL vmlinux 0x07802247 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x0793a5e4 snd_ctl_register_ioctl +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07b1bc7e sk_alloc +EXPORT_SYMBOL vmlinux 0x07b26ed3 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x07b4c9df simple_link +EXPORT_SYMBOL vmlinux 0x07b4da9a get_task_exe_file +EXPORT_SYMBOL vmlinux 0x07baff98 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x07bb11c4 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x07c6642d seq_release +EXPORT_SYMBOL vmlinux 0x07c9285f snd_pcm_new +EXPORT_SYMBOL vmlinux 0x07c9bda9 netif_rx +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07cf9099 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x07d9d47e file_remove_privs +EXPORT_SYMBOL vmlinux 0x07e42207 lock_fb_info +EXPORT_SYMBOL vmlinux 0x080b49d6 param_get_int +EXPORT_SYMBOL vmlinux 0x081d6845 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x081f3afb complete_all +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082e81d1 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x083b911e devm_iounmap +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084888a0 iunique +EXPORT_SYMBOL vmlinux 0x0856a892 __getblk_slow +EXPORT_SYMBOL vmlinux 0x08612493 serio_reconnect +EXPORT_SYMBOL vmlinux 0x088768af vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x0887c230 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x08b0da0e vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x08c16c92 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x08cb1e89 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x08d4df56 __f_setown +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x0928869c fifo_set_limit +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x0958c90b netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x096bdd84 poll_initwait +EXPORT_SYMBOL vmlinux 0x096c2f25 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x097ec1ff _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x0982551c nla_put +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099cb00f kernel_listen +EXPORT_SYMBOL vmlinux 0x09a6b54d snd_info_register +EXPORT_SYMBOL vmlinux 0x09b4dbd5 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x09bdb820 blk_queue_make_request +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 0x09f38e5e vme_master_request +EXPORT_SYMBOL vmlinux 0x09f7c546 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x0a06687c dev_get_iflink +EXPORT_SYMBOL vmlinux 0x0a0786de udplite_table +EXPORT_SYMBOL vmlinux 0x0a15d7c2 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x0a19e2c1 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x0a262859 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a3409b5 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a3d3bf5 make_kgid +EXPORT_SYMBOL vmlinux 0x0a3fe18e tcp_check_req +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a95f224 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa69177 genphy_read_status +EXPORT_SYMBOL vmlinux 0x0abed43c nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad0c319 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x0ad773aa posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x0ae88309 dss_mgr_connect +EXPORT_SYMBOL vmlinux 0x0af8c691 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x0af8fa59 noop_fsync +EXPORT_SYMBOL vmlinux 0x0afb8bb8 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b16ba31 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b2d425c of_node_put +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b6821e9 snd_pcm_suspend +EXPORT_SYMBOL vmlinux 0x0b706912 tcp_connect +EXPORT_SYMBOL vmlinux 0x0b7198d8 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b8dc9a9 param_get_uint +EXPORT_SYMBOL vmlinux 0x0b9da740 vfs_mknod +EXPORT_SYMBOL vmlinux 0x0ba2b71b is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bf71c27 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x0c175aa9 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x0c3087ee vme_irq_free +EXPORT_SYMBOL vmlinux 0x0c331535 genphy_config_init +EXPORT_SYMBOL vmlinux 0x0c3391c8 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x0c3b8e8f snd_timer_start +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c549551 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c792aea mmc_get_card +EXPORT_SYMBOL vmlinux 0x0c814224 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x0c917e65 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x0c92cd63 security_path_chmod +EXPORT_SYMBOL vmlinux 0x0c95537a csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0cacdfe6 scsi_host_get +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cba967f genl_unregister_family +EXPORT_SYMBOL vmlinux 0x0cca6d3d generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x0cf5707a dev_driver_string +EXPORT_SYMBOL vmlinux 0x0cf6ae89 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x0cfb2446 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x0cfee234 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x0cfefe1e percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x0d4d7a32 _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d60c10d inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d69d28e xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x0d71a8bd of_match_node +EXPORT_SYMBOL vmlinux 0x0d8390bb sockfd_lookup +EXPORT_SYMBOL vmlinux 0x0d85fa7f __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x0d9d09c4 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dbadada revert_creds +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dd14ca4 generic_writepages +EXPORT_SYMBOL vmlinux 0x0dd8a1bd send_sig +EXPORT_SYMBOL vmlinux 0x0ddd2a3f i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x0ddfcf5d vfs_iter_read +EXPORT_SYMBOL vmlinux 0x0de5e54c buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x0de67022 netdev_warn +EXPORT_SYMBOL vmlinux 0x0e2baa38 set_bh_page +EXPORT_SYMBOL vmlinux 0x0e31ccb6 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x0e35ca02 pci_request_region +EXPORT_SYMBOL vmlinux 0x0e36fde9 free_page_put_link +EXPORT_SYMBOL vmlinux 0x0e6c0990 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e778918 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0eb58835 d_invalidate +EXPORT_SYMBOL vmlinux 0x0ec0956f __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ede19de skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x0ee3017c d_make_root +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0eed125a pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f333c04 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f4db60a blk_end_request_all +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0fa2a45e __memzero +EXPORT_SYMBOL vmlinux 0x0fab2f70 param_ops_charp +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd17fe9 setattr_copy +EXPORT_SYMBOL vmlinux 0x0fd4aa7a sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ff9bfe7 param_set_copystring +EXPORT_SYMBOL vmlinux 0x0ffa9107 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x1004e32b arm_coherent_dma_ops +EXPORT_SYMBOL vmlinux 0x1018972e sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x102b1fbf ip_defrag +EXPORT_SYMBOL vmlinux 0x1031b29b put_tty_driver +EXPORT_SYMBOL vmlinux 0x10479a39 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x1053454b gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x1058922c nand_unlock +EXPORT_SYMBOL vmlinux 0x105fbc81 posix_test_lock +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x1072a1ee max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1097d207 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x10a52b82 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x10c6baa3 of_get_min_tck +EXPORT_SYMBOL vmlinux 0x10daf1f4 pci_get_slot +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110c96fd snd_pci_quirk_lookup +EXPORT_SYMBOL vmlinux 0x110cdf17 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x11231d81 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x113cd0a0 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x115d6951 mmc_free_host +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117d9414 pci_save_state +EXPORT_SYMBOL vmlinux 0x118057c7 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11a45166 __inet_hash +EXPORT_SYMBOL vmlinux 0x11ac0163 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x11d63279 mmc_put_card +EXPORT_SYMBOL vmlinux 0x11e7b077 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x11f6fe9f snd_timer_global_new +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 0x12262c9d xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x122bc4a8 of_match_device +EXPORT_SYMBOL vmlinux 0x123bdac2 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x124b89d1 generic_setlease +EXPORT_SYMBOL vmlinux 0x125ab944 devm_free_irq +EXPORT_SYMBOL vmlinux 0x126e194a tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x127a51a4 from_kuid +EXPORT_SYMBOL vmlinux 0x1285930f mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x12929513 framebuffer_release +EXPORT_SYMBOL vmlinux 0x1295bea2 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12a4f83c devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x12b2b815 ata_print_version +EXPORT_SYMBOL vmlinux 0x12b2d96d blk_make_request +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12ea8721 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x13027582 no_llseek +EXPORT_SYMBOL vmlinux 0x13125078 icmp_send +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x131de01e skb_tx_error +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x134213b6 kill_pid +EXPORT_SYMBOL vmlinux 0x13827589 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x1390bb25 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x13913552 omap_dss_get_device +EXPORT_SYMBOL vmlinux 0x13a5f2c1 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x13ab905d netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x13b17363 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x13b633c0 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d80eb0 blk_init_tags +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x140144e4 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x14138b3a dquot_resume +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x144f6c9d request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x1454774a do_splice_from +EXPORT_SYMBOL vmlinux 0x14561f6f __blk_run_queue +EXPORT_SYMBOL vmlinux 0x145e2bc5 security_inode_readlink +EXPORT_SYMBOL vmlinux 0x145fadcc user_path_create +EXPORT_SYMBOL vmlinux 0x14717c28 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x147e6143 omap_dss_find_device +EXPORT_SYMBOL vmlinux 0x148a57a1 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x14a18008 of_device_is_available +EXPORT_SYMBOL vmlinux 0x14aeefe7 snd_jack_set_parent +EXPORT_SYMBOL vmlinux 0x14be0a07 of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x14d7c2d3 snd_timer_new +EXPORT_SYMBOL vmlinux 0x15061a3d ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x1506cb71 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x151a165f snd_timer_open +EXPORT_SYMBOL vmlinux 0x153afec0 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x153db0d1 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x153e56f4 tty_check_change +EXPORT_SYMBOL vmlinux 0x153f9c2c skb_vlan_push +EXPORT_SYMBOL vmlinux 0x1540e5ce dev_change_flags +EXPORT_SYMBOL vmlinux 0x1542f667 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x154b6e86 omap_dss_find_output +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x155723cf generic_file_mmap +EXPORT_SYMBOL vmlinux 0x155cc8e6 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x157b2743 freeze_super +EXPORT_SYMBOL vmlinux 0x157c19f3 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x15848dec of_iomap +EXPORT_SYMBOL vmlinux 0x15955fca param_get_bool +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15ffecac mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x16053c7b d_path +EXPORT_SYMBOL vmlinux 0x160f4006 simple_statfs +EXPORT_SYMBOL vmlinux 0x162ccc0c lg_local_lock +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x1631ff59 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x1664ea49 is_nd_btt +EXPORT_SYMBOL vmlinux 0x16766435 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x167bf931 __blk_end_request +EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete +EXPORT_SYMBOL vmlinux 0x168cf911 nla_reserve +EXPORT_SYMBOL vmlinux 0x169484fd arp_create +EXPORT_SYMBOL vmlinux 0x169d499f neigh_seq_start +EXPORT_SYMBOL vmlinux 0x16a013fa devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x16a01aa9 sg_miter_next +EXPORT_SYMBOL vmlinux 0x16a48c11 pci_bus_get +EXPORT_SYMBOL vmlinux 0x16bbe281 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x16c567f5 set_nlink +EXPORT_SYMBOL vmlinux 0x16cc960c sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x16d45dc6 seq_file_path +EXPORT_SYMBOL vmlinux 0x16da9e5e bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x170dcbd5 param_ops_bint +EXPORT_SYMBOL vmlinux 0x171f4625 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x1723bb84 omap_dss_find_output_by_port_node +EXPORT_SYMBOL vmlinux 0x17240b44 param_set_bool +EXPORT_SYMBOL vmlinux 0x17246406 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x172ab937 block_truncate_page +EXPORT_SYMBOL vmlinux 0x17316feb pci_set_power_state +EXPORT_SYMBOL vmlinux 0x1745c1ee tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x17460af9 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x177700fd abx500_register_ops +EXPORT_SYMBOL vmlinux 0x1784f057 dispc_ovl_set_fifo_threshold +EXPORT_SYMBOL vmlinux 0x17a4be0b simple_transaction_read +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17c51077 __d_drop +EXPORT_SYMBOL vmlinux 0x180450e7 page_readlink +EXPORT_SYMBOL vmlinux 0x1807f28b inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x1808b7fa snd_pcm_hw_param_last +EXPORT_SYMBOL vmlinux 0x18150a8b snd_pcm_hw_rule_noresample +EXPORT_SYMBOL vmlinux 0x18208b9a pci_get_class +EXPORT_SYMBOL vmlinux 0x18298b61 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x182b2c52 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x185fbc86 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x186a49b1 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x186abbf0 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x1873b289 snd_device_new +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188b051a get_empty_filp +EXPORT_SYMBOL vmlinux 0x188d21ae dm_kcopyd_zero +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 0x18a706fb genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x18b29c49 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x18bd76a4 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x18c2227f cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x18cfa592 input_register_handler +EXPORT_SYMBOL vmlinux 0x18e3185d pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x18e398ec cfb_fillrect +EXPORT_SYMBOL vmlinux 0x18e47b4e phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18fa2e9c sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x1929dc5b i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x1931e6be seq_hex_dump +EXPORT_SYMBOL vmlinux 0x196029f6 simple_dname +EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits +EXPORT_SYMBOL vmlinux 0x196d5bf7 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x196f2657 udp_ioctl +EXPORT_SYMBOL vmlinux 0x19783587 inet6_offloads +EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode +EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL vmlinux 0x198f6b03 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x19957729 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x1995b02c fb_firmware_edid +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 0x19be2950 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x19c97ff7 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x19e4dfc0 scsi_device_get +EXPORT_SYMBOL vmlinux 0x19e5f5d6 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x19f4cc6a nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x19f5809b dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x1a15e938 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x1a246b15 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x1a3daebe bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x1a4d9040 input_reset_device +EXPORT_SYMBOL vmlinux 0x1a550170 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a6b1ed4 param_get_ullong +EXPORT_SYMBOL vmlinux 0x1a7b51fb truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x1a8394fb update_region +EXPORT_SYMBOL vmlinux 0x1a9c96fa lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x1abdaa89 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0aafe7 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x1b0e3fa4 __vfs_write +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b25f61f nf_hook_slow +EXPORT_SYMBOL vmlinux 0x1b2d6d2c qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0x1b3becfe mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b6459e2 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b92c483 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x1b9a5e68 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL vmlinux 0x1ba75631 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bc20ef8 fb_get_mode +EXPORT_SYMBOL vmlinux 0x1be501c6 kernel_write +EXPORT_SYMBOL vmlinux 0x1bf7aea9 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x1c0ce5a3 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states +EXPORT_SYMBOL vmlinux 0x1c1f411a kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x1c32a95c add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x1c4062f7 md_update_sb +EXPORT_SYMBOL vmlinux 0x1c4cec47 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x1c55789a sock_wake_async +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c5f73a0 km_state_notify +EXPORT_SYMBOL vmlinux 0x1c853c38 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x1cc2d299 md_integrity_register +EXPORT_SYMBOL vmlinux 0x1cf119db ppp_dev_name +EXPORT_SYMBOL vmlinux 0x1cfb04fa finish_wait +EXPORT_SYMBOL vmlinux 0x1d010f1b elevator_alloc +EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL vmlinux 0x1d109a32 km_report +EXPORT_SYMBOL vmlinux 0x1d1758fd __nla_put +EXPORT_SYMBOL vmlinux 0x1d34363f vfs_iter_write +EXPORT_SYMBOL vmlinux 0x1d3d6f62 downgrade_write +EXPORT_SYMBOL vmlinux 0x1d667497 pci_bus_put +EXPORT_SYMBOL vmlinux 0x1d67c90f blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x1d81281d mmc_detect_change +EXPORT_SYMBOL vmlinux 0x1d87c570 amba_release_regions +EXPORT_SYMBOL vmlinux 0x1d90ae89 secpath_dup +EXPORT_SYMBOL vmlinux 0x1d979e4a tty_port_close_end +EXPORT_SYMBOL vmlinux 0x1d9c6360 tso_build_data +EXPORT_SYMBOL vmlinux 0x1da5316d call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x1db978db mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dcd17fa consume_skb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e0a6888 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x1e162ec6 kill_anon_super +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e26c37f eth_gro_receive +EXPORT_SYMBOL vmlinux 0x1e2f4a1e dev_uc_add +EXPORT_SYMBOL vmlinux 0x1e30a0a2 set_binfmt +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e8f16bf i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x1e90bba6 param_get_long +EXPORT_SYMBOL vmlinux 0x1e938e7e bioset_free +EXPORT_SYMBOL vmlinux 0x1e93fffd security_path_truncate +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eca1c02 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x1eea6f89 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL vmlinux 0x1eeb848e __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x1f00e7af jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x1f0c30b0 iput +EXPORT_SYMBOL vmlinux 0x1f0e47dc scsi_target_resume +EXPORT_SYMBOL vmlinux 0x1f30ede2 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x1f339368 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x1f37211f snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL vmlinux 0x1f3c6f55 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x1f3d5c94 mpage_writepages +EXPORT_SYMBOL vmlinux 0x1f5fa3a2 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f92a808 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x1f96bed1 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x1f971d49 simple_rename +EXPORT_SYMBOL vmlinux 0x1faadfe4 lro_flush_all +EXPORT_SYMBOL vmlinux 0x1fab5905 wait_for_completion +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc48b94 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd73315 __get_user_pages +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe94e18 blk_start_queue +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x1ff6e059 shdma_cleanup +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x2031b0fd udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x20421305 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x20487ea0 kunmap +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x205ec8de omap_dispc_register_isr +EXPORT_SYMBOL vmlinux 0x205fab34 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x207068e6 omapdss_default_get_resolution +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x207526f1 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x209376f8 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x20a4157a generic_write_checks +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20a99960 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20dcb00c ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20e38d93 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x20e9f8cf revalidate_disk +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x2101cdf1 ppp_input +EXPORT_SYMBOL vmlinux 0x21110dbf mmioset +EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x21188b83 cpu_tlb +EXPORT_SYMBOL vmlinux 0x21326723 devm_memunmap +EXPORT_SYMBOL vmlinux 0x2138308f netif_device_attach +EXPORT_SYMBOL vmlinux 0x213a4768 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x2151420c __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x216457e0 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy +EXPORT_SYMBOL vmlinux 0x2175ce57 fd_install +EXPORT_SYMBOL vmlinux 0x218ae186 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x21b1523d __seq_open_private +EXPORT_SYMBOL vmlinux 0x21ccb4a0 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x21de15ec pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222fa684 lg_global_lock +EXPORT_SYMBOL vmlinux 0x2231e971 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x2232a8a5 mempool_free +EXPORT_SYMBOL vmlinux 0x223e308b kernel_connect +EXPORT_SYMBOL vmlinux 0x224b942c clk_get +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x225c4827 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2273888d vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x228e2c0a jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22c01bb4 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x22c5695e __breadahead +EXPORT_SYMBOL vmlinux 0x22c6c283 snd_ctl_new1 +EXPORT_SYMBOL vmlinux 0x22ccb00b omapdss_output_set_device +EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x233c3d66 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x235a7dce wake_up_process +EXPORT_SYMBOL vmlinux 0x23734326 serio_bus +EXPORT_SYMBOL vmlinux 0x237a7322 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x238549fc xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x23858375 tcp_seq_open +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 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24256b82 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x2435e244 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x24757857 __free_pages +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2487993e netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x248b2cdc flush_dcache_page +EXPORT_SYMBOL vmlinux 0x24a47161 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL vmlinux 0x24b43ae8 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x24b8f421 __brelse +EXPORT_SYMBOL vmlinux 0x24c29c07 elv_add_request +EXPORT_SYMBOL vmlinux 0x24c72b2c mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x24cb4a6c sock_no_bind +EXPORT_SYMBOL vmlinux 0x24cc6006 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x24dbadd4 vm_map_ram +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2543c129 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x2552a591 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x2554dc42 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x255f8923 tcp_filter +EXPORT_SYMBOL vmlinux 0x25706c80 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x2575f522 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x25791553 skb_find_text +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25d12f54 read_code +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25fa8236 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x2603321d ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x261e8a9e dev_uc_flush +EXPORT_SYMBOL vmlinux 0x2624b1a9 input_release_device +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x264cf3a5 register_cdrom +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x26750201 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x2679ebaa udp_prot +EXPORT_SYMBOL vmlinux 0x268ed7ca md_check_recovery +EXPORT_SYMBOL vmlinux 0x2690963f neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x26931f5b bdi_register_dev +EXPORT_SYMBOL vmlinux 0x269e72b4 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x26a32733 free_netdev +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26c2128c lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x26c582ca ether_setup +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x2722d6e6 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x272d8403 do_splice_direct +EXPORT_SYMBOL vmlinux 0x2731e09f dev_set_mtu +EXPORT_SYMBOL vmlinux 0x27420619 sock_wfree +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x275ef902 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x27728133 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x277931ad sk_ns_capable +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x279296fd scsi_print_sense +EXPORT_SYMBOL vmlinux 0x27a07193 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bd6e31 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x27c68fe6 vga_get +EXPORT_SYMBOL vmlinux 0x27cb8efa pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27e7cf80 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x27ef9895 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x27f36bc5 sk_common_release +EXPORT_SYMBOL vmlinux 0x28116ad7 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2828ef59 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x282c1dad blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x2834d721 register_shrinker +EXPORT_SYMBOL vmlinux 0x2854ed95 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x28625627 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x286e3c67 __init_rwsem +EXPORT_SYMBOL vmlinux 0x28720c05 key_type_keyring +EXPORT_SYMBOL vmlinux 0x288848eb inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28d50dd6 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x28df0e6b dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x28e27f81 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x28f36242 vga_put +EXPORT_SYMBOL vmlinux 0x28f4aedc tcp_release_cb +EXPORT_SYMBOL vmlinux 0x28fdfa21 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x2909ba72 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x2918da52 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295e682b tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x2982d7cb __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x29b81dd0 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x29c235ed rt6_lookup +EXPORT_SYMBOL vmlinux 0x29d32157 init_special_inode +EXPORT_SYMBOL vmlinux 0x29d6e7c1 invalidate_partition +EXPORT_SYMBOL vmlinux 0x29e1b020 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a08bf3f pagevec_lookup +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a38b606 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x2a3a0a29 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x2a3f1b6a set_create_files_as +EXPORT_SYMBOL vmlinux 0x2a63d805 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x2a648188 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x2a823209 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x2a89738d fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x2a98af05 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x2a9a5cf8 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ab5a10d irq_to_desc +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL vmlinux 0x2af27503 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x2af8ea79 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x2afd3dd5 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x2b053fce scsi_ioctl +EXPORT_SYMBOL vmlinux 0x2b09dff3 read_dev_sector +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b12925d cpumask_next_and +EXPORT_SYMBOL vmlinux 0x2b1446e7 simple_empty +EXPORT_SYMBOL vmlinux 0x2b176666 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x2b181a1a gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x2b22a24b dget_parent +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b4e956e mempool_create +EXPORT_SYMBOL vmlinux 0x2b52294d generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x2b54dd48 devm_request_resource +EXPORT_SYMBOL vmlinux 0x2b5b3695 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x2b64ef6b neigh_lookup +EXPORT_SYMBOL vmlinux 0x2b8c1d43 skb_append +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bcd4078 pps_register_source +EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed +EXPORT_SYMBOL vmlinux 0x2beba2b9 of_device_register +EXPORT_SYMBOL vmlinux 0x2bef3a6f nvm_register +EXPORT_SYMBOL vmlinux 0x2bfaa74e __dst_free +EXPORT_SYMBOL vmlinux 0x2c0dda2b xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x2c0e3725 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c18aed0 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x2c18b61e console_stop +EXPORT_SYMBOL vmlinux 0x2c1e3bea eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c3c8873 elv_rb_find +EXPORT_SYMBOL vmlinux 0x2c45ddd7 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x2c5b70dc dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x2c628b3c blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x2c7b8287 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem +EXPORT_SYMBOL vmlinux 0x2c812044 update_devfreq +EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs +EXPORT_SYMBOL vmlinux 0x2c949085 cont_write_begin +EXPORT_SYMBOL vmlinux 0x2c988955 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x2ca2a93a vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x2cab8f14 tso_start +EXPORT_SYMBOL vmlinux 0x2cb07e67 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x2ce52acd of_get_pci_address +EXPORT_SYMBOL vmlinux 0x2cfb7a9f follow_down_one +EXPORT_SYMBOL vmlinux 0x2d01347f touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d1c6a82 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b250 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x2d3d296a swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x2d4f2cf1 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x2d5abc15 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x2d62cb17 page_symlink +EXPORT_SYMBOL vmlinux 0x2d6507b5 _find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0x2d770676 dispc_mgr_go +EXPORT_SYMBOL vmlinux 0x2d868372 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x2d8a8ce5 dentry_unhash +EXPORT_SYMBOL vmlinux 0x2da0aed3 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x2da772a1 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x2db609b6 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2de3cc0a blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x2df5d51c scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e239002 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e3bc30f __nlmsg_put +EXPORT_SYMBOL vmlinux 0x2e4954f6 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x2e5075d8 filemap_flush +EXPORT_SYMBOL vmlinux 0x2e53ed55 nvm_register_target +EXPORT_SYMBOL vmlinux 0x2e5810c6 __aeabi_unwind_cpp_pr1 +EXPORT_SYMBOL vmlinux 0x2e5eee1f find_lock_entry +EXPORT_SYMBOL vmlinux 0x2ea4d882 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x2ebbe881 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ec6e9bd register_filesystem +EXPORT_SYMBOL vmlinux 0x2ecd441b fence_free +EXPORT_SYMBOL vmlinux 0x2ed43323 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x2ed828f6 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x2edbc296 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x2ee3b694 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x2ee609bf pci_reenable_device +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 0x2f43a9a1 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f51fa2a __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2f6e553b of_parse_phandle +EXPORT_SYMBOL vmlinux 0x2f7e1ad7 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x2f97749b kobject_put +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fd77df9 arp_xmit +EXPORT_SYMBOL vmlinux 0x2fddc95f sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x30040dd6 give_up_console +EXPORT_SYMBOL vmlinux 0x30137f9b devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x301a2ea1 tty_port_open +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x304c0db3 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x306b3b01 register_console +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x307eef25 generic_readlink +EXPORT_SYMBOL vmlinux 0x3082a0b3 dss_feat_get_supported_color_modes +EXPORT_SYMBOL vmlinux 0x3084b8fd skb_checksum_help +EXPORT_SYMBOL vmlinux 0x30947915 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30d943d1 md_register_thread +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f15850 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x311514d8 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x311d3cb7 mutex_unlock +EXPORT_SYMBOL vmlinux 0x31215b67 inet_bind +EXPORT_SYMBOL vmlinux 0x3121cfb7 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x316da89a security_path_symlink +EXPORT_SYMBOL vmlinux 0x316edb14 fb_find_mode +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x3175741e blk_init_queue +EXPORT_SYMBOL vmlinux 0x31800291 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x3181ce6e bio_split +EXPORT_SYMBOL vmlinux 0x3183bf14 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31ecff86 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x31f3447b kmalloc_caches +EXPORT_SYMBOL vmlinux 0x3204252d get_unmapped_area +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x3267c919 __break_lease +EXPORT_SYMBOL vmlinux 0x326c6cfd mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x3276afd4 ppp_input_error +EXPORT_SYMBOL vmlinux 0x327b2112 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x327daa5b pci_dev_driver +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x32907b91 idr_remove +EXPORT_SYMBOL vmlinux 0x329720bf block_commit_write +EXPORT_SYMBOL vmlinux 0x32a08d1b napi_gro_receive +EXPORT_SYMBOL vmlinux 0x32b7ccfe get_mem_type +EXPORT_SYMBOL vmlinux 0x32bcd460 dma_find_channel +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e94cbe unregister_quota_format +EXPORT_SYMBOL vmlinux 0x32fba056 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x3316845e idr_get_next +EXPORT_SYMBOL vmlinux 0x331eaaf3 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x33235e1e kmem_cache_size +EXPORT_SYMBOL vmlinux 0x33249133 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x3325f5a5 bio_init +EXPORT_SYMBOL vmlinux 0x336a3f78 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x3371b44e vfs_fsync +EXPORT_SYMBOL vmlinux 0x338cffc4 blk_run_queue +EXPORT_SYMBOL vmlinux 0x33b5e4c4 backlight_device_register +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33db7567 omapdss_find_output_from_display +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33e73b2c jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x340b84b9 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x341de65e __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x3422aa05 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x34317e5f uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x344b7739 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x3460c15a dev_mc_flush +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x34849483 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x348760dc mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x3491635a i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x3491a6bb jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x34934705 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34bdbd2f mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x34cb6e78 snd_card_register +EXPORT_SYMBOL vmlinux 0x34d160b2 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x34d2d05f jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x3507a132 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x350d1db7 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x351332b6 submit_bh +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 +EXPORT_SYMBOL vmlinux 0x354d2c6d bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3587f657 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x358fbeee genphy_update_link +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ad5d28 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x35d91d12 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x35dffbb2 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x35e28830 devm_memremap +EXPORT_SYMBOL vmlinux 0x35f002c0 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x35f1041c registered_fb +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable +EXPORT_SYMBOL vmlinux 0x361ace16 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x361dc67a sock_wmalloc +EXPORT_SYMBOL vmlinux 0x36257a05 blk_fetch_request +EXPORT_SYMBOL vmlinux 0x362ede16 ps2_end_command +EXPORT_SYMBOL vmlinux 0x36337a40 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0x36337ab7 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x36389282 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x36471994 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x36600722 vfs_llseek +EXPORT_SYMBOL vmlinux 0x366bb12c sget +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x368591d8 clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0x368d3961 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x36ba9052 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x36bb7fc0 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36cbbc54 of_dev_put +EXPORT_SYMBOL vmlinux 0x36d57ca9 ihold +EXPORT_SYMBOL vmlinux 0x36ec6761 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x36eefd4a devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x375ade41 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x375bebb5 snd_timer_interrupt +EXPORT_SYMBOL vmlinux 0x37617c46 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x377bff16 lock_rename +EXPORT_SYMBOL vmlinux 0x3785e4cc tty_write_room +EXPORT_SYMBOL vmlinux 0x3791e007 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x37a57eac blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x37a96028 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b3f31c ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37e2b7b9 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x38101323 inc_nlink +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x381f71a2 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x38222204 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x382627bb dquot_get_state +EXPORT_SYMBOL vmlinux 0x382f7f6d of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x3865d7fb devm_release_resource +EXPORT_SYMBOL vmlinux 0x387267d6 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x388380b2 dm_put_table_device +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 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38c61af3 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x3917ba17 register_quota_format +EXPORT_SYMBOL vmlinux 0x3924dd56 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x39298003 empty_zero_page +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL vmlinux 0x39730d06 atomic_io_modify +EXPORT_SYMBOL vmlinux 0x399812ae jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL vmlinux 0x39c0227a xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x39cd13a8 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x39d1ea2a blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x39dd689f blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x39e11086 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x39e20318 del_gendisk +EXPORT_SYMBOL vmlinux 0x39e8a016 generic_permission +EXPORT_SYMBOL vmlinux 0x39e9ff03 vmap +EXPORT_SYMBOL vmlinux 0x39f577d0 amba_find_device +EXPORT_SYMBOL vmlinux 0x3a081037 phy_device_remove +EXPORT_SYMBOL vmlinux 0x3a182073 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x3a18d794 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a1e0c5f udp_del_offload +EXPORT_SYMBOL vmlinux 0x3a528728 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x3a60ae3d fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x3a7723f7 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x3a7cd8b9 vga_tryget +EXPORT_SYMBOL vmlinux 0x3a85bdd2 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa56046 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x3abadeef inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x3aceb111 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x3ad78fff simple_release_fs +EXPORT_SYMBOL vmlinux 0x3b0bc8b1 unregister_netdev +EXPORT_SYMBOL vmlinux 0x3b110ec1 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x3b239bdb devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x3b338ee8 serio_open +EXPORT_SYMBOL vmlinux 0x3b380686 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x3b5bb5f3 elevator_change +EXPORT_SYMBOL vmlinux 0x3b601d0b netif_carrier_on +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b64d3a8 fb_class +EXPORT_SYMBOL vmlinux 0x3b7e9430 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x3b91f3af snd_free_pages +EXPORT_SYMBOL vmlinux 0x3b9cfa7a tty_set_operations +EXPORT_SYMBOL vmlinux 0x3bb4c990 netdev_printk +EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base +EXPORT_SYMBOL vmlinux 0x3bd25898 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x3bef975c iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x3bf3850b md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x3c065890 snd_mixer_oss_notify_callback +EXPORT_SYMBOL vmlinux 0x3c23dff1 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x3c3574a6 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c4b87cf simple_open +EXPORT_SYMBOL vmlinux 0x3c665756 udp_poll +EXPORT_SYMBOL vmlinux 0x3c6e978f gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c9552b4 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x3c973341 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x3caea046 dev_err +EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x3cc04886 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x3ccb6d47 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x3cdbfab0 do_map_probe +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cee839a input_unregister_device +EXPORT_SYMBOL vmlinux 0x3cfa969a proc_douintvec +EXPORT_SYMBOL vmlinux 0x3d2b0022 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x3d30409d iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap +EXPORT_SYMBOL vmlinux 0x3d3dd8fb sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x3d3f082b security_task_getsecid +EXPORT_SYMBOL vmlinux 0x3d7a08ff netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x3d86e944 param_get_short +EXPORT_SYMBOL vmlinux 0x3d8973bb kern_path +EXPORT_SYMBOL vmlinux 0x3d9850c0 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x3dae8736 build_skb +EXPORT_SYMBOL vmlinux 0x3dc5e6f3 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x3dca73af inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dcdc7a4 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x3df04a77 snd_pcm_hw_refine +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e36b067 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x3e492195 tcf_register_action +EXPORT_SYMBOL vmlinux 0x3e4f360b jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x3e5240fa blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x3e5e9273 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x3e770266 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x3e786d14 arp_tbl +EXPORT_SYMBOL vmlinux 0x3e866399 complete_request_key +EXPORT_SYMBOL vmlinux 0x3e86ba5e xfrm_spd_getinfo +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 0x3ea1ed71 pci_bus_type +EXPORT_SYMBOL vmlinux 0x3f0af219 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x3f23177d sock_kfree_s +EXPORT_SYMBOL vmlinux 0x3f25922e __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x3f37ca57 try_to_release_page +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f467f05 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x3f5b67d5 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x3f6211c1 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x3f7a9f2e pci_disable_msi +EXPORT_SYMBOL vmlinux 0x3f7dbc5c textsearch_register +EXPORT_SYMBOL vmlinux 0x3f8445d6 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x3f91b2b3 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x3fa0886d set_groups +EXPORT_SYMBOL vmlinux 0x3fa54162 sock_i_uid +EXPORT_SYMBOL vmlinux 0x3fab3ca9 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x3fc510d1 dev_get_flags +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x4017ba71 skb_push +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x402ddfad lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x40420676 mntput +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 +EXPORT_SYMBOL vmlinux 0x4078b963 key_task_permission +EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma +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 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c9a1b5 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x40cb89a9 scsi_vpd_lun_id +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 0x4101821b i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x411acc07 make_bad_inode +EXPORT_SYMBOL vmlinux 0x41241821 mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0x41262507 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x416be832 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x416c001c input_set_capability +EXPORT_SYMBOL vmlinux 0x417dc5bf dma_mark_declared_memory_occupied +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 0x41923368 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x4192b12b msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x41affe59 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x41bd9c61 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x41ce33a1 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x41d4dc59 icmpv6_send +EXPORT_SYMBOL vmlinux 0x41de13db unregister_qdisc +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421ae8e8 tty_port_init +EXPORT_SYMBOL vmlinux 0x422e4d62 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x423d81ed ida_pre_get +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424cbe34 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x4282c8c5 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x4286015b grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x428c5b86 __register_nls +EXPORT_SYMBOL vmlinux 0x428e74ec kill_pgrp +EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all +EXPORT_SYMBOL vmlinux 0x429d767b __find_get_block +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42af558a dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x42b2a564 devm_gpio_request +EXPORT_SYMBOL vmlinux 0x42b715a1 pci_get_device +EXPORT_SYMBOL vmlinux 0x42be375b elevator_init +EXPORT_SYMBOL vmlinux 0x42d8725b remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x42ecf546 ioremap +EXPORT_SYMBOL vmlinux 0x42f7ee61 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x42fcaf27 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x42fd7748 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x42fdd175 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43429528 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4357f1b8 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x4378e65d scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x437b6d0b bitmap_unplug +EXPORT_SYMBOL vmlinux 0x437c0c1b cdrom_check_events +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x439097c9 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x43bffd07 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x43c7d71f blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x43d17542 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x441386b2 snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0x4417550a param_set_uint +EXPORT_SYMBOL vmlinux 0x441c7bea neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x444a0a9f fb_set_var +EXPORT_SYMBOL vmlinux 0x44627bb8 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul +EXPORT_SYMBOL vmlinux 0x44690bfe __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x447b810e msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x4487f4ae blk_get_queue +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44d5e320 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x44d73f53 snd_dma_alloc_pages +EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44dd3d8d completion_done +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44ee6db5 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x4506207a remove_proc_entry +EXPORT_SYMBOL vmlinux 0x450fcad0 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x452974d8 poll_freewait +EXPORT_SYMBOL vmlinux 0x45304e75 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x4530ce39 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x45352b93 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45448738 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x4561bad5 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x456a9d94 dm_register_target +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45907fdb block_write_end +EXPORT_SYMBOL vmlinux 0x45a25d1b blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45b467b0 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low +EXPORT_SYMBOL vmlinux 0x45cc88e1 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x45d534ac contig_page_data +EXPORT_SYMBOL vmlinux 0x461b2f81 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x4634c68e pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x463b875f sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x464da823 tcp_getsockopt +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 0x46745f30 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x467d6361 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x4691f5b1 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x4693ae94 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x46a02b06 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x46be10df kfree_put_link +EXPORT_SYMBOL vmlinux 0x46ca246c omap_get_dma_src_pos +EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 +EXPORT_SYMBOL vmlinux 0x46db753f swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x46dcca9e nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x46dfbb9a tty_port_put +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x46ff181c cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x470f7760 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x4732bc81 dentry_open +EXPORT_SYMBOL vmlinux 0x47345ca0 cdev_add +EXPORT_SYMBOL vmlinux 0x473e6247 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x4748fbc5 inet_del_offload +EXPORT_SYMBOL vmlinux 0x4757cddf single_open_size +EXPORT_SYMBOL vmlinux 0x475835d7 ps2_init +EXPORT_SYMBOL vmlinux 0x4760535c fb_set_suspend +EXPORT_SYMBOL vmlinux 0x4792f3cf max8925_reg_read +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x47acf829 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x47ca8c67 mount_nodev +EXPORT_SYMBOL vmlinux 0x47ce2a38 omapdss_unregister_display +EXPORT_SYMBOL vmlinux 0x47d1fab4 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x47d28fd3 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range +EXPORT_SYMBOL vmlinux 0x47ed7f64 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x47f757de elf_platform +EXPORT_SYMBOL vmlinux 0x48188a7e phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x481ce6ce cpu_active_mask +EXPORT_SYMBOL vmlinux 0x482957dc lock_sock_nested +EXPORT_SYMBOL vmlinux 0x483bf394 get_tz_trend +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x4864c584 pci_iounmap +EXPORT_SYMBOL vmlinux 0x486c3ea5 inet_frags_init +EXPORT_SYMBOL vmlinux 0x48736490 sk_stream_error +EXPORT_SYMBOL vmlinux 0x489c46ae vme_master_mmap +EXPORT_SYMBOL vmlinux 0x48a26b32 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type +EXPORT_SYMBOL vmlinux 0x48ae6cb1 nand_bch_calculate_ecc +EXPORT_SYMBOL vmlinux 0x48b88b8f sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bb20cf _snd_ctl_add_slave +EXPORT_SYMBOL vmlinux 0x48c87301 snd_seq_root +EXPORT_SYMBOL vmlinux 0x48d01cb0 ptp_clock_register +EXPORT_SYMBOL vmlinux 0x48fadd58 kernel_read +EXPORT_SYMBOL vmlinux 0x48fc2cd9 snd_pcm_lib_read +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4926cd4d crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x492c3d4c get_user_pages +EXPORT_SYMBOL vmlinux 0x4946f28e put_filp +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x4976bdd5 security_path_rename +EXPORT_SYMBOL vmlinux 0x499397a3 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x499988d0 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x499cb58c prepare_to_wait +EXPORT_SYMBOL vmlinux 0x49a4f98d sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x49acc0d1 snd_ctl_add +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49e198bb dev_load +EXPORT_SYMBOL vmlinux 0x49ea242a __put_cred +EXPORT_SYMBOL vmlinux 0x49ead558 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit +EXPORT_SYMBOL vmlinux 0x49f002ec rtnl_unicast +EXPORT_SYMBOL vmlinux 0x49f0d362 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params +EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL vmlinux 0x4a49fba7 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x4a57b339 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x4a96e69a buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x4a9b5448 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x4a9db453 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x4aa4531d blk_queue_split +EXPORT_SYMBOL vmlinux 0x4aa5da0c ip_check_defrag +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4ac0c2dc udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x4ac15206 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ada1fbe get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x4ae09907 skb_make_writable +EXPORT_SYMBOL vmlinux 0x4afd2432 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b5101d3 dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b78933c qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0x4b9d09b4 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x4ba2bf1d __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x4ba43cd9 seq_puts +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bafd021 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat +EXPORT_SYMBOL vmlinux 0x4bb2c71b phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x4bbad259 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x4bbcfcde vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x4bbf23f9 blk_start_request +EXPORT_SYMBOL vmlinux 0x4bbff1d6 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x4bce0f36 gen_pool_create +EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x4be4034d mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x4be7fb63 up +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4bf8cb02 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x4c15614d scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x4c233a44 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c2ba95f tcp_disconnect +EXPORT_SYMBOL vmlinux 0x4c33081d omapdss_compat_uninit +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c509bb4 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x4c5fc58c _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c76ecd8 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL vmlinux 0x4c80bcc0 vc_resize +EXPORT_SYMBOL vmlinux 0x4c8311ea nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x4c86184b remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4c896147 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x4c979b1c open_check_o_direct +EXPORT_SYMBOL vmlinux 0x4cb82d7a of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x4cd994cd redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ce398c2 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x4ceaa737 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x4cfa873a bdi_register +EXPORT_SYMBOL vmlinux 0x4d0647bf pcim_iounmap +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d2f6771 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x4d387374 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x4d3ac3b6 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d49acf2 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x4d5b8f9a dquot_quota_on +EXPORT_SYMBOL vmlinux 0x4d7a4e54 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d97943b devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL vmlinux 0x4dd1fc7a module_put +EXPORT_SYMBOL vmlinux 0x4de0e583 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4de95370 __neigh_create +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df77b69 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x4e11c369 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x4e316e52 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e40e087 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x4e506013 omap_dma_link_lch +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e7f5647 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x4eb64dcf elm_config +EXPORT_SYMBOL vmlinux 0x4eb88e1c snd_pcm_lib_write +EXPORT_SYMBOL vmlinux 0x4ecf4b68 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x4ed23edd swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x4f0e7149 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2333b2 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x4f27cf4a read_cache_pages +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f5066d3 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x4f5328de bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f63b900 netif_stacked_transfer_operstate +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 0x4fa49642 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x4faca98e snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0x4fafb559 km_policy_expired +EXPORT_SYMBOL vmlinux 0x4fb595d5 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x4fbf5130 nf_reinject +EXPORT_SYMBOL vmlinux 0x4fc64e3d blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x4fd595a6 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x50164341 get_cached_acl +EXPORT_SYMBOL vmlinux 0x502a3ac6 path_nosuid +EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL vmlinux 0x5040b7f6 skb_trim +EXPORT_SYMBOL vmlinux 0x505a3e86 snd_ctl_remove +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x506c95ba __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x5090826c noop_qdisc +EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit +EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x50b74fd9 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x50b88bdd shdma_chan_filter +EXPORT_SYMBOL vmlinux 0x50be0452 blkdev_put +EXPORT_SYMBOL vmlinux 0x50d5612e dispc_mgr_get_sync_lost_irq +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50df8ccb fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x50ea7219 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x5108d87f ps2_drain +EXPORT_SYMBOL vmlinux 0x511746c1 dump_fpu +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x51445929 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x5146b72d insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x514cc273 arm_copy_from_user +EXPORT_SYMBOL vmlinux 0x518819a6 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x51d559d1 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x51dadf6f remap_pfn_range +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51e9de1c inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51f9d194 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x521929d1 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x5221deb9 release_sock +EXPORT_SYMBOL vmlinux 0x5230e7fc snd_pcm_lib_malloc_pages +EXPORT_SYMBOL vmlinux 0x523a91e2 snd_timer_global_free +EXPORT_SYMBOL vmlinux 0x523f975d pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x525cc233 edma_filter_fn +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x528d0c14 idr_init +EXPORT_SYMBOL vmlinux 0x5294346f seq_open +EXPORT_SYMBOL vmlinux 0x52a8a478 dst_destroy +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52bb841c atomic_io_modify_relaxed +EXPORT_SYMBOL vmlinux 0x52e1c72f cfb_copyarea +EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL vmlinux 0x52f5943b iov_iter_zero +EXPORT_SYMBOL vmlinux 0x52fc6d31 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x530063b3 dev_close +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x534bbfb6 dump_emit +EXPORT_SYMBOL vmlinux 0x534f8f80 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x53570a01 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x535e5fdb __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53b3207e snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL vmlinux 0x53bacb07 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x53bd8e25 pci_find_bus +EXPORT_SYMBOL vmlinux 0x53bdfb3d release_firmware +EXPORT_SYMBOL vmlinux 0x53c8d302 tty_register_driver +EXPORT_SYMBOL vmlinux 0x53ca8dc4 neigh_for_each +EXPORT_SYMBOL vmlinux 0x53d2b37a sk_free +EXPORT_SYMBOL vmlinux 0x53df7c70 of_device_alloc +EXPORT_SYMBOL vmlinux 0x53f90b1c current_fs_time +EXPORT_SYMBOL vmlinux 0x5406c716 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x5435443b scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x543842ba jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54439a09 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x5457ac01 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x5460322f iget5_locked +EXPORT_SYMBOL vmlinux 0x5464e49a uart_update_timeout +EXPORT_SYMBOL vmlinux 0x546a1243 dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0x547077ec __wake_up_bit +EXPORT_SYMBOL vmlinux 0x547ce898 dispc_read_irqenable +EXPORT_SYMBOL vmlinux 0x5481a43f rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x548283a3 tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0x548a1a57 snd_pcm_lib_readv +EXPORT_SYMBOL vmlinux 0x548d99c2 generic_perform_write +EXPORT_SYMBOL vmlinux 0x549211dc tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x549bcb83 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54d02089 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54e8f2f8 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x54edd7d3 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x54f6830a omapdss_get_default_display_name +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551f5902 tty_free_termios +EXPORT_SYMBOL vmlinux 0x552990a2 try_module_get +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x554314b6 done_path_create +EXPORT_SYMBOL vmlinux 0x55591b01 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x556e29e2 misc_register +EXPORT_SYMBOL vmlinux 0x55a3912e sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x55b25363 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55df3809 pci_pme_active +EXPORT_SYMBOL vmlinux 0x55efe3c2 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x5607992d kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x560dd934 shdma_chan_remove +EXPORT_SYMBOL vmlinux 0x56186c4e scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x5625db40 param_get_string +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x56429d7a tcp_prot +EXPORT_SYMBOL vmlinux 0x5689afe7 dispc_ovl_enable +EXPORT_SYMBOL vmlinux 0x568b00dc lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x568e7c83 sock_edemux +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56b5ad73 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x56bc2f15 dispc_ovl_set_channel_out +EXPORT_SYMBOL vmlinux 0x56c090b5 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x56c3cc46 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56e2e17f led_blink_set +EXPORT_SYMBOL vmlinux 0x570cdc53 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x572585ce pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x57381663 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x574138ec truncate_pagecache +EXPORT_SYMBOL vmlinux 0x574520a6 skb_clone +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57761852 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x57767ffc to_nd_btt +EXPORT_SYMBOL vmlinux 0x5777696b snd_ctl_rename_id +EXPORT_SYMBOL vmlinux 0x5789900c blk_complete_request +EXPORT_SYMBOL vmlinux 0x5799b992 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x57b157e0 of_node_get +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57cc5da7 import_iovec +EXPORT_SYMBOL vmlinux 0x57e3a652 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x57e9fb35 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x57eb67db eth_mac_addr +EXPORT_SYMBOL vmlinux 0x581d0268 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x581e0636 touch_buffer +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58271adc of_graph_get_port_by_id +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 0x5876c85e cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x587d41f5 lease_modify +EXPORT_SYMBOL vmlinux 0x58ad75ee single_open +EXPORT_SYMBOL vmlinux 0x58b4ee14 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c3c707 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x58ca4a99 fget +EXPORT_SYMBOL vmlinux 0x58d258eb xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x58d633c7 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x58da55ba put_cmsg +EXPORT_SYMBOL vmlinux 0x58dfdea3 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x5911f793 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x591c6cbc __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x5935cf43 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x593a9dcf phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x593dd97b xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x5946fa72 md_flush_request +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 +EXPORT_SYMBOL vmlinux 0x59528af1 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x596ca0d0 __genl_register_family +EXPORT_SYMBOL vmlinux 0x5981bc57 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x598542b2 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x598753e1 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x598cd828 udp_table +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59910cec inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59c66d49 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x59cb323d sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x59cfcc7e kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area +EXPORT_SYMBOL vmlinux 0x59d4cbf1 free_user_ns +EXPORT_SYMBOL vmlinux 0x59dabb7e tty_hangup +EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 +EXPORT_SYMBOL vmlinux 0x59e95209 dump_skip +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a271f4a phy_print_status +EXPORT_SYMBOL vmlinux 0x5abbe7e1 generic_listxattr +EXPORT_SYMBOL vmlinux 0x5ace5fc2 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x5ae20721 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x5ae5be44 lg_lock_init +EXPORT_SYMBOL vmlinux 0x5af9e032 pci_choose_state +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b0f7e89 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x5b100532 htc_egpio_get_wakeup_irq +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b38b62e skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x5b488220 cap_mmap_file +EXPORT_SYMBOL vmlinux 0x5b57a257 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x5b5bb3b8 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x5b5c5443 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x5b617ae7 proto_register +EXPORT_SYMBOL vmlinux 0x5b67470a xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x5b82e565 bio_copy_data +EXPORT_SYMBOL vmlinux 0x5b884483 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x5b8f0d95 snd_ctl_remove_id +EXPORT_SYMBOL vmlinux 0x5b94014b xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x5bbc5487 clkdev_alloc +EXPORT_SYMBOL vmlinux 0x5bf0264f ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x5bf27fb3 xfrm_input +EXPORT_SYMBOL vmlinux 0x5c4896ad nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x5c4bc902 dst_release +EXPORT_SYMBOL vmlinux 0x5c71834c phy_device_create +EXPORT_SYMBOL vmlinux 0x5c808b6c netlink_unicast +EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id +EXPORT_SYMBOL vmlinux 0x5c9aad1e blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x5c9d56be inet_release +EXPORT_SYMBOL vmlinux 0x5ca89887 netdev_info +EXPORT_SYMBOL vmlinux 0x5caca496 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x5cb7b1d1 elevator_exit +EXPORT_SYMBOL vmlinux 0x5cbf940f write_inode_now +EXPORT_SYMBOL vmlinux 0x5ccabb47 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x5cd03a67 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5cf4d16c ab3100_event_register +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d0d01e6 dev_warn +EXPORT_SYMBOL vmlinux 0x5d396944 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x5d4293e3 dquot_drop +EXPORT_SYMBOL vmlinux 0x5d524312 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d5c9fd6 snd_jack_new +EXPORT_SYMBOL vmlinux 0x5d670138 of_device_unregister +EXPORT_SYMBOL vmlinux 0x5d86e769 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x5dafa114 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x5dcbc2b2 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache +EXPORT_SYMBOL vmlinux 0x5ddb6464 migrate_page +EXPORT_SYMBOL vmlinux 0x5dfaa36c __block_write_begin +EXPORT_SYMBOL vmlinux 0x5dfc8e7d omap_dss_put_device +EXPORT_SYMBOL vmlinux 0x5e076c09 dump_page +EXPORT_SYMBOL vmlinux 0x5e08ee8e seq_printf +EXPORT_SYMBOL vmlinux 0x5e0be5fe neigh_xmit +EXPORT_SYMBOL vmlinux 0x5e0f0dc9 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x5e11a563 audit_log_start +EXPORT_SYMBOL vmlinux 0x5e7aa93a xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb1113c blk_rq_init +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec16846 kthread_bind +EXPORT_SYMBOL vmlinux 0x5ec2e9d1 force_sig +EXPORT_SYMBOL vmlinux 0x5ecded73 drop_nlink +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5eeb881a lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f111dc0 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x5f20c232 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x5f27323c _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x5f69db29 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f7b560f abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x5f908111 key_unlink +EXPORT_SYMBOL vmlinux 0x5faab957 tty_name +EXPORT_SYMBOL vmlinux 0x5fd1a490 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fdd8245 fsync_bdev +EXPORT_SYMBOL vmlinux 0x5fe41298 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x5fe7b72c snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io +EXPORT_SYMBOL vmlinux 0x5ff4d005 dev_remove_pack +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 0x60131a5b nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60230b32 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x606b4fe2 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x606b9fec param_set_invbool +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x607d7b2f key_put +EXPORT_SYMBOL vmlinux 0x608957d1 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x6099e93c scsi_remove_host +EXPORT_SYMBOL vmlinux 0x609b5fa1 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60b64c38 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x60c9f1da padata_start +EXPORT_SYMBOL vmlinux 0x60d7e23a skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60e06cd0 snd_timer_resolution +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6142d96c iterate_supers_type +EXPORT_SYMBOL vmlinux 0x614c9e95 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x6164acbd devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x6165c14a kernel_sendpage +EXPORT_SYMBOL vmlinux 0x616ec37a skb_free_datagram +EXPORT_SYMBOL vmlinux 0x617a218d __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x61a85f26 down_read_trylock +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61f173a7 dev_addr_del +EXPORT_SYMBOL vmlinux 0x62060b32 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x6207a824 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x620d2955 sync_inode +EXPORT_SYMBOL vmlinux 0x620ea6a7 dev_mc_init +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621b6522 __splice_from_pipe +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 0x622bff2e mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x6239028c snd_ctl_boolean_stereo_info +EXPORT_SYMBOL vmlinux 0x62492446 skb_pad +EXPORT_SYMBOL vmlinux 0x62618743 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x629dbd92 get_phy_device +EXPORT_SYMBOL vmlinux 0x62a835b0 vme_irq_request +EXPORT_SYMBOL vmlinux 0x62aa37d4 vm_mmap +EXPORT_SYMBOL vmlinux 0x62cd4ba6 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x62cec1e1 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x62e2df6f cfb_imageblit +EXPORT_SYMBOL vmlinux 0x630be57f snd_card_new +EXPORT_SYMBOL vmlinux 0x6312df8b vme_register_bridge +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6336aba2 finish_no_open +EXPORT_SYMBOL vmlinux 0x633bb100 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x635f7f5b input_close_device +EXPORT_SYMBOL vmlinux 0x63658ad2 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x636b3461 omap_dss_get_num_overlays +EXPORT_SYMBOL vmlinux 0x636bf593 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x6375b44a mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x639c8c87 phy_find_first +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63df4325 elv_rb_add +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ec1791 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x63f4a001 scsi_device_quiesce +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 0x641f773a ilookup5 +EXPORT_SYMBOL vmlinux 0x6421b5fe account_page_redirty +EXPORT_SYMBOL vmlinux 0x642866c1 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x642a83b7 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x6437f878 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x643b9923 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x645a6e86 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x6469c31f snd_device_free +EXPORT_SYMBOL vmlinux 0x646b6298 bd_set_size +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a22ff0 dispc_mgr_set_lcd_config +EXPORT_SYMBOL vmlinux 0x64a3ca32 key_alloc +EXPORT_SYMBOL vmlinux 0x64bda500 snd_pcm_limit_hw_rates +EXPORT_SYMBOL vmlinux 0x64dbe03b xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x64e12f63 d_drop +EXPORT_SYMBOL vmlinux 0x64ff77e3 pci_enable_msix +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 0x6534a396 nf_ip_checksum +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 0x65558c07 mpage_readpages +EXPORT_SYMBOL vmlinux 0x6559c3af neigh_table_clear +EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6565d56e take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x65693ed2 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x658ce4fd inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x65c3be1c get_io_context +EXPORT_SYMBOL vmlinux 0x65c7cfa7 get_disk +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65f1a2f5 scsi_print_result +EXPORT_SYMBOL vmlinux 0x65f2f7c1 __lock_page +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x661de79d blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x66308518 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x66457980 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x664a177d netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x664c21bf pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x664ca39c xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x6680645b skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x66996e95 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x66caa53e skb_insert +EXPORT_SYMBOL vmlinux 0x66cc092d tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x66d887ab blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x6717620f ip6_frag_init +EXPORT_SYMBOL vmlinux 0x6752301b sock_create +EXPORT_SYMBOL vmlinux 0x6753ee89 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x67561f34 soft_cursor +EXPORT_SYMBOL vmlinux 0x675e9b0d param_get_invbool +EXPORT_SYMBOL vmlinux 0x6762c391 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x677d7cce i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x67847f97 dm_io +EXPORT_SYMBOL vmlinux 0x6789d600 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c180e6 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x67dd9719 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x67e02294 kobject_set_name +EXPORT_SYMBOL vmlinux 0x67e96b2c __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x67f7f529 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x68070082 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680f9ee4 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x6822b655 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x6833a936 generic_file_open +EXPORT_SYMBOL vmlinux 0x6833ed9a nd_region_acquire_lane +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 0x68dd62f6 dss_mgr_disable +EXPORT_SYMBOL vmlinux 0x68e4ef16 md_error +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x6915eb38 down_interruptible +EXPORT_SYMBOL vmlinux 0x6930e902 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x6950d601 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x69535064 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x69814700 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69a35cba keyring_clear +EXPORT_SYMBOL vmlinux 0x69a5c651 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params +EXPORT_SYMBOL vmlinux 0x69bc1cc3 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x69cea05e from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x69cfc167 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x6a018d18 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a08ced4 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x6a1ad8db serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x6a206220 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x6a225fdf __check_sticky +EXPORT_SYMBOL vmlinux 0x6a2b9681 get_task_io_context +EXPORT_SYMBOL vmlinux 0x6a2fd23a user_revoke +EXPORT_SYMBOL vmlinux 0x6a499c85 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x6a4cf985 cad_pid +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a915c84 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x6a92238b dm_put_device +EXPORT_SYMBOL vmlinux 0x6a970bfa dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x6abb172a dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x6ac66930 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6ad6b277 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x6ae76044 i2c_use_client +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b03f3c0 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b079c57 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b1e48a6 path_put +EXPORT_SYMBOL vmlinux 0x6b25d321 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x6b2a4207 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b326add __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x6b4e4953 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x6b5e8b3d ata_link_printk +EXPORT_SYMBOL vmlinux 0x6b71b10d bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x6b749892 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x6b79e279 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x6b7e50d9 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x6ba76b62 md_reload_sb +EXPORT_SYMBOL vmlinux 0x6bad7c08 dqget +EXPORT_SYMBOL vmlinux 0x6bb49637 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x6bc07614 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be23ab3 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c1253ff i2c_release_client +EXPORT_SYMBOL vmlinux 0x6c15db94 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c2bab6f swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x6c2be6cc netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x6c3221d0 md_write_start +EXPORT_SYMBOL vmlinux 0x6c4f4ee4 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6cdd4d wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6ca07141 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x6cac513e blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x6cbf647a get_gendisk +EXPORT_SYMBOL vmlinux 0x6cd52c49 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6cdeb80d __secpath_destroy +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d195de8 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x6d1c44dd lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6d262262 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2b2a5d ppp_channel_index +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d589a92 vme_register_driver +EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le +EXPORT_SYMBOL vmlinux 0x6d6bac4b tcp_parse_options +EXPORT_SYMBOL vmlinux 0x6d6fef7b sound_class +EXPORT_SYMBOL vmlinux 0x6d816a16 snd_pcm_hw_rule_add +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e251349 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x6e33b154 scsi_print_command +EXPORT_SYMBOL vmlinux 0x6e3f1813 kthread_stop +EXPORT_SYMBOL vmlinux 0x6e4a0ea0 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x6e5d42bb inet_del_protocol +EXPORT_SYMBOL vmlinux 0x6e61ece7 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x6e624039 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6e6f62c5 md_write_end +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e789205 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x6e7b4d51 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x6e98fa18 blk_get_request +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ec5de70 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x6ec9ccdb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x6ed7dc81 mpage_readpage +EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL vmlinux 0x6efb00f5 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x6f102ef6 vfs_write +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f20bbf6 set_page_dirty +EXPORT_SYMBOL vmlinux 0x6f26326e redraw_screen +EXPORT_SYMBOL vmlinux 0x6f2d13ea __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x6f3e470a snd_ctl_make_virtual_master +EXPORT_SYMBOL vmlinux 0x6f43be39 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x6f4811ff devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x6f642e5d rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x6f82c1d3 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f9e54a4 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x6fa2051b tty_do_resize +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd59b28 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x70097aa0 nand_bch_free +EXPORT_SYMBOL vmlinux 0x70121445 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x701e31eb dev_uc_del +EXPORT_SYMBOL vmlinux 0x7030d17f fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7052515b tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x70530079 sk_wait_data +EXPORT_SYMBOL vmlinux 0x70573824 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x7057c340 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x707acf27 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x70864a4e inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x7098cafd iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x70ab43b8 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x70dab391 input_register_handle +EXPORT_SYMBOL vmlinux 0x70e39dae dss_uninstall_mgr_ops +EXPORT_SYMBOL vmlinux 0x70ec6041 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x7118850f get_super_thawed +EXPORT_SYMBOL vmlinux 0x7119db7f omap_dss_pal_timings +EXPORT_SYMBOL vmlinux 0x711c3ac5 dss_mgr_set_lcd_config +EXPORT_SYMBOL vmlinux 0x71233214 d_walk +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x714e0afc mmc_can_reset +EXPORT_SYMBOL vmlinux 0x7157efc4 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x7169102e omap_dss_ntsc_timings +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7178c53f abort_creds +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b013e3 dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0x71bfadc7 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71da1123 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x71e284c7 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x720bcb1f snd_soc_alloc_ac97_codec +EXPORT_SYMBOL vmlinux 0x720f8b96 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x72248694 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x72350130 ___ratelimit +EXPORT_SYMBOL vmlinux 0x7239872a proc_create_data +EXPORT_SYMBOL vmlinux 0x723b2dd1 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x72585c21 param_array_ops +EXPORT_SYMBOL vmlinux 0x727a43bc rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x727b8bd9 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x728274a0 vfs_statfs +EXPORT_SYMBOL vmlinux 0x7296d8a2 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x72b9492b textsearch_prepare +EXPORT_SYMBOL vmlinux 0x72c2375a of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731727f1 from_kgid +EXPORT_SYMBOL vmlinux 0x731905a8 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x731aaba4 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x7321dee5 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x734a8945 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x7362e9ca mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x73687981 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x738690ce xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x7386ed97 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x73893b36 set_security_override +EXPORT_SYMBOL vmlinux 0x738f134a __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x73ae4fa3 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x73c45675 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x73e176da qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73ed1a76 filp_open +EXPORT_SYMBOL vmlinux 0x73f5cecd copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x741f355f qdisc_list_del +EXPORT_SYMBOL vmlinux 0x742c9bfe d_find_any_alias +EXPORT_SYMBOL vmlinux 0x74361d47 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x7443cbf3 register_netdevice +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74941e76 dev_trans_start +EXPORT_SYMBOL vmlinux 0x74a51196 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x74a54394 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x74a75833 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x74a75a58 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c38aa5 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x74d09d0f dquot_initialize +EXPORT_SYMBOL vmlinux 0x74d40418 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x74d442bb unregister_console +EXPORT_SYMBOL vmlinux 0x74d7cca8 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74e8729f tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x74fb9530 udp_seq_open +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x75299a8b blk_recount_segments +EXPORT_SYMBOL vmlinux 0x752e2777 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x7532e434 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x755a7c08 ping_prot +EXPORT_SYMBOL vmlinux 0x7561a5af load_nls_default +EXPORT_SYMBOL vmlinux 0x75628d1f posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x7570e385 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x75850d01 __vmalloc +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75aa9c05 put_io_context +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 0x75dea575 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x75e05dd0 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x75e18242 filp_close +EXPORT_SYMBOL vmlinux 0x75f3ff70 key_invalidate +EXPORT_SYMBOL vmlinux 0x75fc8727 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x760531cc dev_remove_offload +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x765b62ed seq_release_private +EXPORT_SYMBOL vmlinux 0x7665d705 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x766a6a06 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x767e7790 commit_creds +EXPORT_SYMBOL vmlinux 0x76803060 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x768857a5 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x76a1f33b blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x76a5f695 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x76ae215a __nla_reserve +EXPORT_SYMBOL vmlinux 0x76c27764 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl +EXPORT_SYMBOL vmlinux 0x76d13d48 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d53878 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76e8fa37 netlink_set_err +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x76fe55eb km_state_expired +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x772519be gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x77403a5d skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x774bd80d inet_sendpage +EXPORT_SYMBOL vmlinux 0x774c625f pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x776297c7 da903x_query_status +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779b1746 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x779b8050 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x77a27fd5 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x77a31758 devm_clk_get +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77cdddb8 iov_iter_init +EXPORT_SYMBOL vmlinux 0x77dbe68b mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x77dd0654 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x77e6ecac security_path_link +EXPORT_SYMBOL vmlinux 0x77ec0bb2 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x77f8e124 pid_task +EXPORT_SYMBOL vmlinux 0x77fa1a63 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x780f4090 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x7810a88b fence_signal_locked +EXPORT_SYMBOL vmlinux 0x7833deb2 pgprot_user +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x783c96c8 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL vmlinux 0x783f5a3f input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x7848e47d uart_resume_port +EXPORT_SYMBOL vmlinux 0x784d63bb tty_port_close +EXPORT_SYMBOL vmlinux 0x78554d34 inet_listen +EXPORT_SYMBOL vmlinux 0x785accf5 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78990cdb param_get_ushort +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78b7886b phy_suspend +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78fe1647 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x790f5799 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x7926e53f fb_validate_mode +EXPORT_SYMBOL vmlinux 0x7961edef register_sound_dsp +EXPORT_SYMBOL vmlinux 0x79690d55 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x79891b73 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x79a145d8 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79ac1b7c scsi_device_put +EXPORT_SYMBOL vmlinux 0x79c19536 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x79c8f5fb snd_ctl_unregister_ioctl +EXPORT_SYMBOL vmlinux 0x79ddc32e padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x79e0a150 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x79e8746e mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x79eeb4fe netdev_notice +EXPORT_SYMBOL vmlinux 0x79f660f7 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x79fe2a90 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x7a1e162a dquot_operations +EXPORT_SYMBOL vmlinux 0x7a1f2611 dispc_mgr_set_timings +EXPORT_SYMBOL vmlinux 0x7a27305e param_set_int +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a34bf25 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x7a34c549 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x7a3b2e8b sk_receive_skb +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a466173 load_nls +EXPORT_SYMBOL vmlinux 0x7a4bbd8a netdev_alert +EXPORT_SYMBOL vmlinux 0x7a5f2ea0 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x7a877a1f mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x7a8d171e eth_header_cache +EXPORT_SYMBOL vmlinux 0x7a939054 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa03303 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aadb46a fb_show_logo +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abd8307 kmap_high +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7af13b5d devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL vmlinux 0x7b05056d vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b1ec518 locks_init_lock +EXPORT_SYMBOL vmlinux 0x7b23864a blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b3ad52c vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b7c6228 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x7b85824f pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x7b86f45b seq_read +EXPORT_SYMBOL vmlinux 0x7b9219f6 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x7bafe88a nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0x7bdb828c skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1cd638 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x7c40027d snd_ctl_boolean_mono_info +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c80d403 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7c9992a6 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x7ca8d0f2 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb7c1e6 inode_set_flags +EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x7cd0aebb pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x7cd2a4e9 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x7cd98fe4 __sb_start_write +EXPORT_SYMBOL vmlinux 0x7cdb870b __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ceaf750 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x7cf1444a block_invalidatepage +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d1fd638 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x7d4c9c74 tty_devnum +EXPORT_SYMBOL vmlinux 0x7d52f924 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d84d221 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x7d85c1db pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x7db2e05c omapdss_register_output +EXPORT_SYMBOL vmlinux 0x7dc49dc1 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x7dccc294 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df2fa82 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x7e0b2a69 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x7e30f2db __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x7e4078ee lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x7e4fde3f snd_timer_notify +EXPORT_SYMBOL vmlinux 0x7e6fa3ef tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x7e9efe8e complete_and_exit +EXPORT_SYMBOL vmlinux 0x7eab0b2b iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x7eb5429c dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee7f093 dispc_ovl_compute_fifo_thresholds +EXPORT_SYMBOL vmlinux 0x7efc388e bio_map_kern +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f092166 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f297589 dquot_disable +EXPORT_SYMBOL vmlinux 0x7f4db9a7 amba_device_register +EXPORT_SYMBOL vmlinux 0x7f5fa488 param_set_ushort +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio +EXPORT_SYMBOL vmlinux 0x7f6d1842 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x7f73364b inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x7fd2f51d address_space_init_once +EXPORT_SYMBOL vmlinux 0x7fd5a115 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe4be77 fasync_helper +EXPORT_SYMBOL vmlinux 0x7fefe136 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 +EXPORT_SYMBOL vmlinux 0x802b18ed pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x804aabdf idr_is_empty +EXPORT_SYMBOL vmlinux 0x80665f9a alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x80774e5f inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x8095cd26 freeze_bdev +EXPORT_SYMBOL vmlinux 0x80a454ed do_SAK +EXPORT_SYMBOL vmlinux 0x80a74124 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x80a7dd77 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x80bf4bee processor +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e13b9f inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x80fe7861 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x8125884d devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x8143a728 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815fbfa2 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x817d4c1b con_is_bound +EXPORT_SYMBOL vmlinux 0x819ed2af deactivate_super +EXPORT_SYMBOL vmlinux 0x81b4a398 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL vmlinux 0x81b805c5 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x81b9056a bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81dc6c83 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x81eb4f39 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x81ed0d6c dm_unregister_target +EXPORT_SYMBOL vmlinux 0x81f16fba nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x81fc42f4 mdiobus_read +EXPORT_SYMBOL vmlinux 0x81ff2723 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x820f4ba6 __kernel_write +EXPORT_SYMBOL vmlinux 0x821ea9c0 nand_scan_ident +EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb +EXPORT_SYMBOL vmlinux 0x8235bd51 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x823d98da scsi_host_put +EXPORT_SYMBOL vmlinux 0x8245038a __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x824924db genphy_resume +EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr +EXPORT_SYMBOL vmlinux 0x824a5455 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x82537e7b scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x8257ff22 dev_addr_add +EXPORT_SYMBOL vmlinux 0x825c854e pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x82738724 dss_mgr_disconnect +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82afbad3 sock_rfree +EXPORT_SYMBOL vmlinux 0x82cd666e mdiobus_free +EXPORT_SYMBOL vmlinux 0x82e3d1e5 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x82f66cec input_grab_device +EXPORT_SYMBOL vmlinux 0x82fe0834 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x831396c3 fence_signal +EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 +EXPORT_SYMBOL vmlinux 0x8328510a md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x833838c8 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x83472e94 skb_split +EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x8375d79d ida_destroy +EXPORT_SYMBOL vmlinux 0x837e7e39 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x838e05d9 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83a8f8c3 input_free_device +EXPORT_SYMBOL vmlinux 0x83a9aeea mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83e26d2f dquot_free_inode +EXPORT_SYMBOL vmlinux 0x84174580 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x84420355 dss_mgr_enable +EXPORT_SYMBOL vmlinux 0x84644534 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x848210a3 snd_ctl_find_numid +EXPORT_SYMBOL vmlinux 0x8488d920 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84b785b4 netdev_change_features +EXPORT_SYMBOL vmlinux 0x84bc08bc gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x84d15a20 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x850d9eda bdget +EXPORT_SYMBOL vmlinux 0x850e9a72 km_new_mapping +EXPORT_SYMBOL vmlinux 0x852a3e77 path_is_under +EXPORT_SYMBOL vmlinux 0x852a774e netdev_update_features +EXPORT_SYMBOL vmlinux 0x853a964c pci_find_capability +EXPORT_SYMBOL vmlinux 0x8554ad8f sk_net_capable +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85765fee omap_enable_dma_irq +EXPORT_SYMBOL vmlinux 0x85837367 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x858a0ec0 seq_lseek +EXPORT_SYMBOL vmlinux 0x85986f17 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x85a7a58c snd_card_file_add +EXPORT_SYMBOL vmlinux 0x85b39224 of_get_next_child +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85d38337 param_get_charp +EXPORT_SYMBOL vmlinux 0x85d6ba5c bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x85d6f848 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x85df27e3 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x8607ea0b mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x862db2a0 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x8636649e find_vma +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x866c0fef lro_receive_skb +EXPORT_SYMBOL vmlinux 0x867c2bd3 pci_release_regions +EXPORT_SYMBOL vmlinux 0x86860195 dss_feat_get_supported_displays +EXPORT_SYMBOL vmlinux 0x86866d78 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86b21737 __frontswap_load +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87003790 fence_init +EXPORT_SYMBOL vmlinux 0x871a4731 netdev_emerg +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x873e3c5f ioremap_wc +EXPORT_SYMBOL vmlinux 0x874c5550 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x8752457b udp_sendmsg +EXPORT_SYMBOL vmlinux 0x87561ec9 vfs_writef +EXPORT_SYMBOL vmlinux 0x876c18cc skb_store_bits +EXPORT_SYMBOL vmlinux 0x876eda79 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x87756d97 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x8777e2ed proc_remove +EXPORT_SYMBOL vmlinux 0x8788278b uart_match_port +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x878f137e twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x87c25858 empty_aops +EXPORT_SYMBOL vmlinux 0x87cca77a pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x87ebd2ca sock_no_connect +EXPORT_SYMBOL vmlinux 0x880b4ac7 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x8812628f xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x882ae9f4 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x885d728b iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x886bc76f mempool_resize +EXPORT_SYMBOL vmlinux 0x886c39b0 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x886dffd1 inet_getname +EXPORT_SYMBOL vmlinux 0x88714826 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x88735b48 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x8898062b neigh_destroy +EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial +EXPORT_SYMBOL vmlinux 0x88b8a5c9 snd_pcm_notify +EXPORT_SYMBOL vmlinux 0x88ce9fdc param_ops_short +EXPORT_SYMBOL vmlinux 0x88fafcdb proto_unregister +EXPORT_SYMBOL vmlinux 0x88fb9d2c genl_notify +EXPORT_SYMBOL vmlinux 0x88fcc243 phy_stop +EXPORT_SYMBOL vmlinux 0x890f360e cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x8923b91e pci_disable_device +EXPORT_SYMBOL vmlinux 0x89263bc7 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x8947f96c generic_block_bmap +EXPORT_SYMBOL vmlinux 0x8948e9ad phy_device_free +EXPORT_SYMBOL vmlinux 0x898f77a4 elm_decode_bch_error_page +EXPORT_SYMBOL vmlinux 0x8990ad48 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89b15695 fs_bio_set +EXPORT_SYMBOL vmlinux 0x89ce018c scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x89d36579 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89d733fd follow_up +EXPORT_SYMBOL vmlinux 0x89d9b94d pcie_get_mps +EXPORT_SYMBOL vmlinux 0x89f7dd50 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x8a0babd2 input_open_device +EXPORT_SYMBOL vmlinux 0x8a0f4230 rename_lock +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a2411af security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x8a2c3d35 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x8a3c0daa scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a570516 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x8a571407 register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x8a667842 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x8a7c729c ptp_find_pin +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a7eb3e1 nand_bch_init +EXPORT_SYMBOL vmlinux 0x8a8a8702 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x8a93e8d0 generic_write_end +EXPORT_SYMBOL vmlinux 0x8a95f26a rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa1a80e xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x8aa55a1d scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x8ab27a80 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x8ac2344d pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x8accffc7 netif_napi_add +EXPORT_SYMBOL vmlinux 0x8aedcb0a vlan_vid_add +EXPORT_SYMBOL vmlinux 0x8afcdcbe scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x8b138ee2 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x8b328241 proc_set_size +EXPORT_SYMBOL vmlinux 0x8b341ae4 file_update_time +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 0x8b8d20aa sock_no_accept +EXPORT_SYMBOL vmlinux 0x8b929597 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x8b9987ea blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x8baa953c shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x8bc37343 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x8bc6f4b6 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x8bcf28b0 submit_bio +EXPORT_SYMBOL vmlinux 0x8bd16f80 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x8c1f9729 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x8c26c905 fb_pan_display +EXPORT_SYMBOL vmlinux 0x8c3802bf max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x8c38b865 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x8c55548f is_bad_inode +EXPORT_SYMBOL vmlinux 0x8c57f7a8 nand_scan_tail +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c716fae flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x8c881bc9 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x8ca0f537 cdrom_open +EXPORT_SYMBOL vmlinux 0x8caa506c blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x8cbddbd8 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma +EXPORT_SYMBOL vmlinux 0x8ce3da32 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x8cf0bc4c pwmss_submodule_state_change +EXPORT_SYMBOL vmlinux 0x8cf94180 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL vmlinux 0x8cfe4b5a of_phy_attach +EXPORT_SYMBOL vmlinux 0x8d134c39 idr_replace +EXPORT_SYMBOL vmlinux 0x8d386c6a input_inject_event +EXPORT_SYMBOL vmlinux 0x8d3917db of_phy_connect +EXPORT_SYMBOL vmlinux 0x8d3d0390 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5a61a2 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x8d61c190 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x8d6970f5 security_file_permission +EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 +EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d8b6353 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x8da44ca7 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x8db6ecb8 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x8dbaa89a adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x8dca3e2d kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x8dcff6e2 __pv_offset +EXPORT_SYMBOL vmlinux 0x8dd8c91a dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL vmlinux 0x8e29a467 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x8e3f7289 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x8e692c51 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e854588 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops +EXPORT_SYMBOL vmlinux 0x8ea4bae1 dss_mgr_register_framedone_handler +EXPORT_SYMBOL vmlinux 0x8ec9e8f3 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x8ecb9bdb mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL vmlinux 0x8ecdbaa9 param_set_long +EXPORT_SYMBOL vmlinux 0x8ee54c0f locks_copy_lock +EXPORT_SYMBOL vmlinux 0x8f027383 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x8f2984cc __scm_destroy +EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major +EXPORT_SYMBOL vmlinux 0x8f59b6da twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x8f68ef94 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x8f6aba8d cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x8f84445f dev_mc_sync +EXPORT_SYMBOL vmlinux 0x8f8db845 unregister_key_type +EXPORT_SYMBOL vmlinux 0x8f94077d twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x8fa4130a omap_set_dma_callback +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fdd5243 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x8fe9b091 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x8feebc0d sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x900b69e9 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x907600ee input_set_abs_params +EXPORT_SYMBOL vmlinux 0x9076062a key_revoke +EXPORT_SYMBOL vmlinux 0x9077b3c1 page_put_link +EXPORT_SYMBOL vmlinux 0x9086f8b2 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x908b8ad2 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x90a4ab6b pci_clear_master +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90cf3856 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x90d064a9 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x90eaa9cc tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x90f2c146 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x90f8d723 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0x91056034 neigh_update +EXPORT_SYMBOL vmlinux 0x911459dc __register_binfmt +EXPORT_SYMBOL vmlinux 0x912fe1ce jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x915eb5d6 module_refcount +EXPORT_SYMBOL vmlinux 0x915fda41 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x91607384 omapdss_find_mgr_from_display +EXPORT_SYMBOL vmlinux 0x91610108 skb_pull +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91877b8b xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug +EXPORT_SYMBOL vmlinux 0x91b642b1 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x91bcfaba flush_old_exec +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x9204f83a sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x92054ce6 vm_insert_page +EXPORT_SYMBOL vmlinux 0x921c9310 nvm_put_blk +EXPORT_SYMBOL vmlinux 0x92364b8a __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x9239c951 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x928f9011 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x92a917e4 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92d47e8b nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x92ddc688 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x92de0cdb skb_dequeue +EXPORT_SYMBOL vmlinux 0x92ec5d1b dispc_mgr_enable +EXPORT_SYMBOL vmlinux 0x92f4ccf9 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x92f7f465 tcp_req_err +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9307bd32 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x93115289 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x93170f40 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x9318db4f nd_btt_probe +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x932780e9 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x93289d90 dput +EXPORT_SYMBOL vmlinux 0x933b0f88 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x93497262 simple_lookup +EXPORT_SYMBOL vmlinux 0x9352c49f omap_dss_get_output +EXPORT_SYMBOL vmlinux 0x936e12ca of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x937d07ef flush_kernel_dcache_page +EXPORT_SYMBOL vmlinux 0x938e8f1a scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x93963a85 dss_feat_get_num_mgrs +EXPORT_SYMBOL vmlinux 0x93ab328d mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93dbcd16 copy_to_iter +EXPORT_SYMBOL vmlinux 0x93e84005 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x93e93775 kunmap_high +EXPORT_SYMBOL vmlinux 0x93fac43f tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list +EXPORT_SYMBOL vmlinux 0x940ddfce neigh_connected_output +EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x9423879c mount_subtree +EXPORT_SYMBOL vmlinux 0x9427a834 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x942b721b unregister_binfmt +EXPORT_SYMBOL vmlinux 0x94371c8e __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x9437e599 d_tmpfile +EXPORT_SYMBOL vmlinux 0x94522b6b mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x946efbfa __wait_on_bit +EXPORT_SYMBOL vmlinux 0x9483ec92 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x94847940 nd_iostat_end +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b30167 single_release +EXPORT_SYMBOL vmlinux 0x94d3da68 rtc_lock +EXPORT_SYMBOL vmlinux 0x94ed447c __lock_buffer +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x94ffce11 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x9504eb72 backlight_force_update +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9519796a dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x9542578c ata_dev_printk +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95577a24 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x955c4036 tcp_child_process +EXPORT_SYMBOL vmlinux 0x95622f41 down_timeout +EXPORT_SYMBOL vmlinux 0x956e9f62 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x958d755e simple_write_end +EXPORT_SYMBOL vmlinux 0x95b97636 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x95c2cc25 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x95c773da blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 +EXPORT_SYMBOL vmlinux 0x95f7e6de write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x963fb3d3 dst_init +EXPORT_SYMBOL vmlinux 0x9656e4ec vfs_rename +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x96619b26 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x9667f991 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x96b4010f vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x96bbcc68 snd_pcm_hw_param_first +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96e8e308 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x96f16e6e dquot_transfer +EXPORT_SYMBOL vmlinux 0x96f4b441 flow_cache_fini +EXPORT_SYMBOL vmlinux 0x96f4cf62 filemap_fault +EXPORT_SYMBOL vmlinux 0x96fa209f dispc_ovl_check +EXPORT_SYMBOL vmlinux 0x96fac266 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x9710ce46 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x9720b264 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x9739427c blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x9739776b set_disk_ro +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x9758f59e ps2_handle_response +EXPORT_SYMBOL vmlinux 0x975c8ec6 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x976a4de4 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x976bc2c2 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x976e700f down_trylock +EXPORT_SYMBOL vmlinux 0x9793c93a dispc_mgr_setup +EXPORT_SYMBOL vmlinux 0x9793e032 tcf_hash_create +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97f99fd4 dispc_ovl_setup +EXPORT_SYMBOL vmlinux 0x9800d094 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x980fa57c mmc_add_host +EXPORT_SYMBOL vmlinux 0x9814be5b writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x98160e36 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x98247d24 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x9824a8c0 dump_align +EXPORT_SYMBOL vmlinux 0x9864951b inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x986c5b3e nla_append +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset +EXPORT_SYMBOL vmlinux 0x98925f30 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x98b6b702 __frontswap_test +EXPORT_SYMBOL vmlinux 0x98c65905 vme_slave_request +EXPORT_SYMBOL vmlinux 0x98cc4cc6 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x98e29d0d d_find_alias +EXPORT_SYMBOL vmlinux 0x98e313fc tty_lock +EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x9904832c ptp_clock_index +EXPORT_SYMBOL vmlinux 0x9915d5b5 file_path +EXPORT_SYMBOL vmlinux 0x9916ccc1 vme_slot_num +EXPORT_SYMBOL vmlinux 0x9918f9da get_fs_type +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x995128a7 would_dump +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 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x9998f979 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x999a2785 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99b8dc40 netif_skb_features +EXPORT_SYMBOL vmlinux 0x99b8f99a snd_pcm_new_internal +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d0aca3 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x99d306c1 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x99f58330 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x99fdd513 blk_put_request +EXPORT_SYMBOL vmlinux 0x9a085cf6 dev_get_stats +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a3a23eb scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x9a436485 mutex_lock +EXPORT_SYMBOL vmlinux 0x9a55bea7 arm_dma_ops +EXPORT_SYMBOL vmlinux 0x9a623142 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x9a7bb400 new_inode +EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range +EXPORT_SYMBOL vmlinux 0x9a8fe143 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x9a99e9f5 __inode_permission +EXPORT_SYMBOL vmlinux 0x9aab8d95 snd_timer_close +EXPORT_SYMBOL vmlinux 0x9acc315f jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x9ad5f359 key_validate +EXPORT_SYMBOL vmlinux 0x9ad7acc4 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x9adc3e81 snd_pcm_release_substream +EXPORT_SYMBOL vmlinux 0x9ae74444 simple_setattr +EXPORT_SYMBOL vmlinux 0x9ae8c41b security_d_instantiate +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9b0d8e50 snd_card_disconnect +EXPORT_SYMBOL vmlinux 0x9b1fff5c __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b3b6c35 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x9b612be3 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9baac979 sock_from_file +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bcd5b02 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x9bd64717 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x9be73831 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9be9c174 omap_dss_get_overlay_manager +EXPORT_SYMBOL vmlinux 0x9bece159 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x9bfc6564 nd_device_register +EXPORT_SYMBOL vmlinux 0x9c0bd51f _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x9c1e401d vga_client_register +EXPORT_SYMBOL vmlinux 0x9c274c92 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x9c3d1185 seq_open_private +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c50973f param_set_short +EXPORT_SYMBOL vmlinux 0x9c586ed6 udp_proc_register +EXPORT_SYMBOL vmlinux 0x9c66bf82 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x9c6bdf16 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x9c6be672 inet_add_offload +EXPORT_SYMBOL vmlinux 0x9c6fef49 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x9c7f0db3 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0x9c8c503c cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x9c8d0025 path_noexec +EXPORT_SYMBOL vmlinux 0x9c93513e dss_mgr_unregister_framedone_handler +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 0x9cbbd2e4 have_submounts +EXPORT_SYMBOL vmlinux 0x9cbe60d9 unlock_page +EXPORT_SYMBOL vmlinux 0x9ccb5bf0 register_md_personality +EXPORT_SYMBOL vmlinux 0x9ce8539c inet_addr_type +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1c5767 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d3d5013 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x9d5893bc register_framebuffer +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9da14c6d lwtunnel_output +EXPORT_SYMBOL vmlinux 0x9dbbc6a3 twl6040_power +EXPORT_SYMBOL vmlinux 0x9dbfd48d iget_failed +EXPORT_SYMBOL vmlinux 0x9dc792c6 skb_put +EXPORT_SYMBOL vmlinux 0x9dc7ad64 __scsi_iterate_devices +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 0x9e1cc65c backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x9e204a2f con_copy_unimap +EXPORT_SYMBOL vmlinux 0x9e22097a fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x9e41ba7e dev_alert +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5d5699 finish_open +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e9747a5 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea269d4 scmd_printk +EXPORT_SYMBOL vmlinux 0x9eadc922 __mutex_init +EXPORT_SYMBOL vmlinux 0x9eb452c3 snd_ctl_replace +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9f2dacf9 __netif_schedule +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f470070 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x9f6cceef scsi_init_io +EXPORT_SYMBOL vmlinux 0x9f7c4e3e pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x9f823cea dispc_mgr_is_enabled +EXPORT_SYMBOL vmlinux 0x9f951c99 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x9f979170 register_sound_special +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9facb6c7 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x9fb83d96 mmc_request_done +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ff20474 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffe7ebe kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa002358d of_get_parent +EXPORT_SYMBOL vmlinux 0xa0044066 kset_register +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa04bd76b phy_start +EXPORT_SYMBOL vmlinux 0xa051ef37 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa0651fa3 tty_throttle +EXPORT_SYMBOL vmlinux 0xa06c87d2 pci_dev_put +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa0706fd2 tcf_hash_search +EXPORT_SYMBOL vmlinux 0xa075c3b2 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa096ac06 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xa098eea4 unlock_buffer +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b7d311 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xa0caaffa free_buffer_head +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e169f4 dcb_ieee_delapp +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 0xa11b7523 dss_install_mgr_ops +EXPORT_SYMBOL vmlinux 0xa11c6b78 vme_dma_request +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa12ba49e blk_stop_queue +EXPORT_SYMBOL vmlinux 0xa12baba6 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xa133c8bc blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xa1341b18 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xa1352a1e softnet_data +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa14d42a5 md_finish_reshape +EXPORT_SYMBOL vmlinux 0xa192813b idr_for_each +EXPORT_SYMBOL vmlinux 0xa1b64d11 sock_create_lite +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1d55e90 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xa1d6456c dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1f0ebea bit_waitqueue +EXPORT_SYMBOL vmlinux 0xa1f13cb6 pci_restore_state +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa23b1c7f phy_connect +EXPORT_SYMBOL vmlinux 0xa24ff41e lease_get_mtime +EXPORT_SYMBOL vmlinux 0xa269d774 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa29fd560 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xa2c790ed iget_locked +EXPORT_SYMBOL vmlinux 0xa312ea8a dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa31c424d nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xa31e9d1a mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL vmlinux 0xa35444e4 dispc_write_irqenable +EXPORT_SYMBOL vmlinux 0xa3683d68 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xa36a781c tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xa374210c param_ops_string +EXPORT_SYMBOL vmlinux 0xa3753722 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa381944f dql_reset +EXPORT_SYMBOL vmlinux 0xa38a35c4 __nd_driver_register +EXPORT_SYMBOL vmlinux 0xa3915d66 generic_getxattr +EXPORT_SYMBOL vmlinux 0xa39a123a fence_add_callback +EXPORT_SYMBOL vmlinux 0xa39c5be8 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0xa3abea05 wait_iff_congested +EXPORT_SYMBOL vmlinux 0xa3c8c2a9 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xa3f7a626 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xa414882d add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xa4228249 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa43c90bb shdma_reset +EXPORT_SYMBOL vmlinux 0xa45871cf blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev +EXPORT_SYMBOL vmlinux 0xa46babcb kill_fasync +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa4769d99 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xa47c5add vme_lm_request +EXPORT_SYMBOL vmlinux 0xa48f5b09 omap_dma_set_global_params +EXPORT_SYMBOL vmlinux 0xa4b04fc2 security_mmap_file +EXPORT_SYMBOL vmlinux 0xa4b0917d proc_mkdir +EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority +EXPORT_SYMBOL vmlinux 0xa4d91039 iterate_fd +EXPORT_SYMBOL vmlinux 0xa4dfa7b5 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xa509d1c4 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xa5109778 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xa52fb5d5 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xa5483a28 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa56559a3 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xa57e75b4 nvm_end_io +EXPORT_SYMBOL vmlinux 0xa588b8c0 irq_set_chip +EXPORT_SYMBOL vmlinux 0xa58fea9d mempool_destroy +EXPORT_SYMBOL vmlinux 0xa5923b81 notify_change +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa59e2df5 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xa5c26de0 brioctl_set +EXPORT_SYMBOL vmlinux 0xa5d64152 snd_power_wait +EXPORT_SYMBOL vmlinux 0xa5e96af8 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xa609fd6f neigh_parms_release +EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL vmlinux 0xa61e4362 omap_request_dma +EXPORT_SYMBOL vmlinux 0xa637a0f4 padata_do_serial +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa649eff7 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xa65980f9 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xa66d9810 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xa67374f0 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa675a5b9 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xa676110c xfrm_lookup +EXPORT_SYMBOL vmlinux 0xa6769f33 snd_pcm_period_elapsed +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6bab23d dqstats +EXPORT_SYMBOL vmlinux 0xa6bc6293 block_write_begin +EXPORT_SYMBOL vmlinux 0xa6cbd3f0 kmap_to_page +EXPORT_SYMBOL vmlinux 0xa6d6c389 udplite_prot +EXPORT_SYMBOL vmlinux 0xa6e15f18 nf_log_set +EXPORT_SYMBOL vmlinux 0xa6f1eae6 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xa6f97739 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa706b337 omapdss_default_get_timings +EXPORT_SYMBOL vmlinux 0xa7130fae nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0xa72890d9 nobh_writepage +EXPORT_SYMBOL vmlinux 0xa72a054c init_net +EXPORT_SYMBOL vmlinux 0xa72c6082 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xa734a3e9 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa7468dfe tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xa7570bed input_set_keycode +EXPORT_SYMBOL vmlinux 0xa76f3cd2 drop_super +EXPORT_SYMBOL vmlinux 0xa7800f19 kobject_del +EXPORT_SYMBOL vmlinux 0xa78b084b netpoll_setup +EXPORT_SYMBOL vmlinux 0xa7bbb774 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xa7dd72d8 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xa7e75fde pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xa7f779f2 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xa7fc7dbf inet_frag_kill +EXPORT_SYMBOL vmlinux 0xa836defe dquot_acquire +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa847f568 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa878ac65 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xa87f6136 i2c_transfer +EXPORT_SYMBOL vmlinux 0xa88c00c1 end_page_writeback +EXPORT_SYMBOL vmlinux 0xa89c40b4 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xa89df82a ip_do_fragment +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8ae8d9a of_find_node_with_property +EXPORT_SYMBOL vmlinux 0xa8afd17d unregister_filesystem +EXPORT_SYMBOL vmlinux 0xa8bca2c9 __quota_error +EXPORT_SYMBOL vmlinux 0xa8d3e21e generic_show_options +EXPORT_SYMBOL vmlinux 0xa8d96290 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xa8edb019 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xa8f271ed security_path_unlink +EXPORT_SYMBOL vmlinux 0xa8f35184 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xa8fa06df devm_clk_put +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa913c229 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa928444f down_read +EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL vmlinux 0xa9658cd3 kobject_add +EXPORT_SYMBOL vmlinux 0xa96b0c12 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9776931 module_layout +EXPORT_SYMBOL vmlinux 0xa994c735 keyring_search +EXPORT_SYMBOL vmlinux 0xa99b47a5 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xa99b924e devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xa99bb275 console_start +EXPORT_SYMBOL vmlinux 0xa9a203c2 sock_no_listen +EXPORT_SYMBOL vmlinux 0xa9ace4e5 inet_select_addr +EXPORT_SYMBOL vmlinux 0xa9b91306 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0xa9bd0437 flush_signals +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9cc15ac bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xa9cd5959 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xa9d0d011 alloc_file +EXPORT_SYMBOL vmlinux 0xa9d2f3f7 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xa9dd5858 component_match_add +EXPORT_SYMBOL vmlinux 0xa9f36eba jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xaa12ae6f generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xaa2e401e ip_options_compile +EXPORT_SYMBOL vmlinux 0xaa6234bb pci_match_id +EXPORT_SYMBOL vmlinux 0xaa689f15 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa725a29 nvm_submit_io +EXPORT_SYMBOL vmlinux 0xaa7f5728 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xaa846519 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xaa864463 serio_interrupt +EXPORT_SYMBOL vmlinux 0xaaa3f8c7 put_page +EXPORT_SYMBOL vmlinux 0xaab2c1f9 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xaab2cf8f pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xaab7a41a dcb_getapp +EXPORT_SYMBOL vmlinux 0xaac43916 inet_ioctl +EXPORT_SYMBOL vmlinux 0xaacbc504 xattr_full_name +EXPORT_SYMBOL vmlinux 0xaacfb7bf tty_unlock +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 0xaae2f344 page_waitqueue +EXPORT_SYMBOL vmlinux 0xaae453ef udp_disconnect +EXPORT_SYMBOL vmlinux 0xaaf2fb1d end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xaaf849ab of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab22e6ab scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xab34d84c eth_header_parse +EXPORT_SYMBOL vmlinux 0xab4484f4 audit_log +EXPORT_SYMBOL vmlinux 0xab52fcf7 generic_setxattr +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab8f930c serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xab913a2b pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xabac32fe dev_uc_init +EXPORT_SYMBOL vmlinux 0xabaccf79 serio_close +EXPORT_SYMBOL vmlinux 0xabb38c00 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabcb5205 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xabdd6463 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xabe9a5f8 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xabf108f4 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xabfcea22 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac0cedfb tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xac140757 ipv6_select_ident +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 0xac595a88 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xac979805 seq_path +EXPORT_SYMBOL vmlinux 0xaca89344 pci_select_bars +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacc241e1 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd558e0 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad01d541 sock_efree +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad177228 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xad2982ed __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xad4578b3 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad977321 register_sound_special_device +EXPORT_SYMBOL vmlinux 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL vmlinux 0xadf71c82 set_posix_acl +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae0632de jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xae2b48e2 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xae2f911b dev_addr_init +EXPORT_SYMBOL vmlinux 0xae3210b4 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xae7b3e25 tty_vhangup +EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xaea31b48 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xaea8fae0 dma_pool_create +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaec9a4ae devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xaecc62af phy_init_hw +EXPORT_SYMBOL vmlinux 0xaf302a05 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf3e8cf0 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xaf3fa4c8 phy_disconnect +EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality +EXPORT_SYMBOL vmlinux 0xaf62cf12 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xaf7a8283 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 +EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev +EXPORT_SYMBOL vmlinux 0xaf953a82 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xaf9cdafc dm_get_device +EXPORT_SYMBOL vmlinux 0xafa65f0e elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xafce0573 snd_timer_continue +EXPORT_SYMBOL vmlinux 0xafe0d559 nand_lock +EXPORT_SYMBOL vmlinux 0xafe14e13 neigh_table_init +EXPORT_SYMBOL vmlinux 0xafe4ce8c generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xaffe15af scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0xb017a05d mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xb0185797 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xb01eac88 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xb04cf0fe lg_local_unlock +EXPORT_SYMBOL vmlinux 0xb04fe682 snd_pcm_stop +EXPORT_SYMBOL vmlinux 0xb057cd27 cpu_user +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb066b530 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb09082cf skb_copy +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a961ce tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xb0b39c1d blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0c61a16 __napi_complete +EXPORT_SYMBOL vmlinux 0xb0cbcf36 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xb0d549c3 audit_log_task_info +EXPORT_SYMBOL vmlinux 0xb0dc6a9a cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e81c11 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xb11c8299 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb13a2dd3 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xb1497523 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xb14fa0dd dma_common_mmap +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb1885d8d snd_timer_pause +EXPORT_SYMBOL vmlinux 0xb1a3523c napi_get_frags +EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc +EXPORT_SYMBOL vmlinux 0xb1b1b823 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xb1b2d458 netdev_state_change +EXPORT_SYMBOL vmlinux 0xb1bf6667 param_ops_bool +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1cf2db5 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1d9aabd lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xb1e38e5b blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xb1e95845 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xb2184a34 d_lookup +EXPORT_SYMBOL vmlinux 0xb23303bf mmc_erase +EXPORT_SYMBOL vmlinux 0xb2369175 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xb2383807 rwsem_wake +EXPORT_SYMBOL vmlinux 0xb253812f sock_no_getname +EXPORT_SYMBOL vmlinux 0xb25f59fe pci_remove_bus +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb2696bc9 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xb269fbc9 of_get_address +EXPORT_SYMBOL vmlinux 0xb282b666 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xb289158d page_address +EXPORT_SYMBOL vmlinux 0xb2910f39 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xb295cb3d path_get +EXPORT_SYMBOL vmlinux 0xb2a3fcdc simple_map_init +EXPORT_SYMBOL vmlinux 0xb2a8b51a sk_dst_check +EXPORT_SYMBOL vmlinux 0xb2b4586e register_sound_mixer +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2bf43d2 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xb2bff45b d_instantiate +EXPORT_SYMBOL vmlinux 0xb2d1d642 snd_jack_report +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2d4b1a8 arm_dma_zone_size +EXPORT_SYMBOL vmlinux 0xb2dd2b23 dev_mc_del +EXPORT_SYMBOL vmlinux 0xb2dd74f7 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xb33c351f ioremap_cache +EXPORT_SYMBOL vmlinux 0xb34b68e5 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xb3543284 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xb368762d __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xb372e397 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xb37dd1f9 truncate_setsize +EXPORT_SYMBOL vmlinux 0xb39ac487 dev_emerg +EXPORT_SYMBOL vmlinux 0xb3cda92b of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3ef6d56 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3ffbc50 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xb42254d2 inet6_getname +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb44e8633 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb458a97b inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xb4691373 input_allocate_device +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb48801da tcp_read_sock +EXPORT_SYMBOL vmlinux 0xb48f0de7 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xb4a021ef truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL vmlinux 0xb4c9ddd9 shdma_init +EXPORT_SYMBOL vmlinux 0xb4dfe413 seq_dentry +EXPORT_SYMBOL vmlinux 0xb4e5f9e8 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xb4e7c388 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xb4ea185f xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xb508728a bio_clone_fast +EXPORT_SYMBOL vmlinux 0xb5198b77 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xb51bd9c9 open_exec +EXPORT_SYMBOL vmlinux 0xb51ceca4 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xb5684e29 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5919bd1 security_path_chown +EXPORT_SYMBOL vmlinux 0xb592dcd1 i2c_master_send +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b59573 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xb5bf78ee clear_nlink +EXPORT_SYMBOL vmlinux 0xb5c00014 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0xb5c0557b kern_unmount +EXPORT_SYMBOL vmlinux 0xb5c68266 snd_pcm_hw_constraint_list +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5d8e750 of_root +EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit +EXPORT_SYMBOL vmlinux 0xb5dc5f6c tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0xb5de7192 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0xb5f5677a md_unregister_thread +EXPORT_SYMBOL vmlinux 0xb6133af9 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xb619e63d tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb633412b request_firmware +EXPORT_SYMBOL vmlinux 0xb65e8cd8 unregister_nls +EXPORT_SYMBOL vmlinux 0xb667ccf3 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xb675c645 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb683bb2e dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69c997b inet_put_port +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6a6ba22 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xb6b6936b __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xb6b6ddf0 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0xb6d3daf1 qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xb6da29d5 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xb6db61ff sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xb6ea139c dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xb6ea9ad0 __sb_end_write +EXPORT_SYMBOL vmlinux 0xb6eae7d4 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xb716e499 serio_rescan +EXPORT_SYMBOL vmlinux 0xb7212060 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xb73772a7 bio_unmap_user +EXPORT_SYMBOL vmlinux 0xb744d5c2 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xb7463a24 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb77c2be7 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xb79de426 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7ba76c7 __aeabi_unwind_cpp_pr2 +EXPORT_SYMBOL vmlinux 0xb7c050c2 snd_component_add +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d29a9f blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xb7d2c9f9 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xb7d367aa skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xb80e578b pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb82eb4a6 dquot_enable +EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xb844fd2c write_one_page +EXPORT_SYMBOL vmlinux 0xb847bff7 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xb84e642a clk_add_alias +EXPORT_SYMBOL vmlinux 0xb85dbba2 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xb868ec83 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xb86e9e04 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xb8748bb5 snd_ctl_notify +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xb89f3108 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xb8bc4752 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xb8d6add6 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xb8da495f set_anon_super +EXPORT_SYMBOL vmlinux 0xb8e3b21c fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8e8e351 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xb9001860 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xb91c7eb0 __alloc_skb +EXPORT_SYMBOL vmlinux 0xb930f5d3 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xb93642f7 d_splice_alias +EXPORT_SYMBOL vmlinux 0xb9448b44 from_kprojid +EXPORT_SYMBOL vmlinux 0xb95899d1 unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io +EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL vmlinux 0xb96dd835 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xb9817d67 check_disk_change +EXPORT_SYMBOL vmlinux 0xb983e8af ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xb995bdb4 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xb998d8ca loop_register_transfer +EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma +EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 +EXPORT_SYMBOL vmlinux 0xb9ae269b _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0xb9b54f06 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xb9bcf07a abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xb9c778af snd_device_register +EXPORT_SYMBOL vmlinux 0xb9d31906 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xb9d8c07c gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xb9e07ab7 register_gifconf +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f16922 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xb9f7a53d __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0xb9f8c347 account_page_dirtied +EXPORT_SYMBOL vmlinux 0xba0434fb xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xba09451b pci_request_regions +EXPORT_SYMBOL vmlinux 0xba1958eb dentry_path_raw +EXPORT_SYMBOL vmlinux 0xba265317 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4bd851 dev_set_group +EXPORT_SYMBOL vmlinux 0xba610c31 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xba66e683 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xba74f92e xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xba7ea568 amba_request_regions +EXPORT_SYMBOL vmlinux 0xba9c4684 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xbaa028b7 __pagevec_release +EXPORT_SYMBOL vmlinux 0xbaa95f48 mpage_writepage +EXPORT_SYMBOL vmlinux 0xbac16ace inode_init_always +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbad24306 block_read_full_page +EXPORT_SYMBOL vmlinux 0xbade254b netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xbaec69b4 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xbafed77f remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xbafeee36 dispc_runtime_get +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0a8ae5 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xbb162a88 input_flush_device +EXPORT_SYMBOL vmlinux 0xbb2d582c uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb707840 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 +EXPORT_SYMBOL vmlinux 0xbb7a182a param_ops_int +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbb9e30fb __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xbba13f23 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xbbb515ff dump_truncate +EXPORT_SYMBOL vmlinux 0xbbc673f2 __getblk_gfp +EXPORT_SYMBOL vmlinux 0xbbe5653b bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xbbf78c4e tcp_proc_register +EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 +EXPORT_SYMBOL vmlinux 0xbc148707 snd_pcm_lib_writev +EXPORT_SYMBOL vmlinux 0xbc324014 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0xbc329283 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xbc609f37 nand_bch_correct_data +EXPORT_SYMBOL vmlinux 0xbc6329b0 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xbc7eb27c netlink_capable +EXPORT_SYMBOL vmlinux 0xbc97b4fd fddi_change_mtu +EXPORT_SYMBOL vmlinux 0xbca378a0 __vfs_read +EXPORT_SYMBOL vmlinux 0xbca9ff3f inet_stream_connect +EXPORT_SYMBOL vmlinux 0xbcb443dd nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xbcb77d58 __get_page_tail +EXPORT_SYMBOL vmlinux 0xbcbd4201 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xbcbe54ff pci_iomap +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbce60636 generic_update_time +EXPORT_SYMBOL vmlinux 0xbceec88e snd_register_device +EXPORT_SYMBOL vmlinux 0xbcfb1bd5 nobh_write_begin +EXPORT_SYMBOL vmlinux 0xbd17c6de gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xbd8a7f5b tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd914201 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xbda1f9fd dev_activate +EXPORT_SYMBOL vmlinux 0xbdd6d8e5 free_task +EXPORT_SYMBOL vmlinux 0xbde399b8 tty_register_device +EXPORT_SYMBOL vmlinux 0xbde72998 inet_shutdown +EXPORT_SYMBOL vmlinux 0xbdea4898 nand_scan_bbt +EXPORT_SYMBOL vmlinux 0xbdec4d08 fence_remove_callback +EXPORT_SYMBOL vmlinux 0xbdedb6b2 irq_stat +EXPORT_SYMBOL vmlinux 0xbdf07e59 blk_put_queue +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe18e36a jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe1f9efc blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xbe28a731 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xbe290e46 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xbe746908 inode_newsize_ok +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 0xbeaca6d9 sock_create_kern +EXPORT_SYMBOL vmlinux 0xbeb0d0a9 get_super +EXPORT_SYMBOL vmlinux 0xbebcbd16 mount_single +EXPORT_SYMBOL vmlinux 0xbebfa943 ll_rw_block +EXPORT_SYMBOL vmlinux 0xbec5efc8 mount_pseudo +EXPORT_SYMBOL vmlinux 0xbed664e6 misc_deregister +EXPORT_SYMBOL vmlinux 0xbedec0c9 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xbee35b09 init_buffer +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef86e3a netdev_err +EXPORT_SYMBOL vmlinux 0xbf1b92fd stop_tty +EXPORT_SYMBOL vmlinux 0xbf287dbf inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xbf486982 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xbf587013 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xbf5bdca2 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xbf5ee03b dev_add_offload +EXPORT_SYMBOL vmlinux 0xbf675584 should_remove_suid +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf9393d4 inet6_release +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbf9feded ns_capable +EXPORT_SYMBOL vmlinux 0xbfe2ea1f devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xbfe72a17 seq_escape +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff57546 dma_supported +EXPORT_SYMBOL vmlinux 0xc0056be5 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xc006073e d_alloc_name +EXPORT_SYMBOL vmlinux 0xc013c889 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0xc0303e37 lookup_bdev +EXPORT_SYMBOL vmlinux 0xc03c693f snd_pcm_kernel_ioctl +EXPORT_SYMBOL vmlinux 0xc0500841 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc0690179 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0937f98 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode +EXPORT_SYMBOL vmlinux 0xc0a6c621 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc +EXPORT_SYMBOL vmlinux 0xc0bef3db padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xc0c59445 blk_register_region +EXPORT_SYMBOL vmlinux 0xc0d1134b block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xc107d12e mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xc1088ca0 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xc1112e45 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc12a0a6f pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xc13813f7 nf_log_register +EXPORT_SYMBOL vmlinux 0xc14547b3 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xc15381bc netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xc1819b78 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xc194d93f blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xc1972c09 dcb_setapp +EXPORT_SYMBOL vmlinux 0xc1acc037 ps2_command +EXPORT_SYMBOL vmlinux 0xc1b66fbd pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xc1c706d2 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1dece9b ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xc1dff01f udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1e901a4 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xc1f6022b amba_device_unregister +EXPORT_SYMBOL vmlinux 0xc1fcb67b gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xc20ac65c dquot_commit_info +EXPORT_SYMBOL vmlinux 0xc20b35ef scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xc241da9b mark_info_dirty +EXPORT_SYMBOL vmlinux 0xc2446ee9 make_kprojid +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 0xc2c3f6b8 blk_free_tags +EXPORT_SYMBOL vmlinux 0xc2cf93c0 phy_driver_register +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2dec341 read_cache_page +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e5d8aa vme_bus_type +EXPORT_SYMBOL vmlinux 0xc2ea188c tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xc2edbb8f ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xc3199a63 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xc31fcc9b simple_transaction_get +EXPORT_SYMBOL vmlinux 0xc32d0900 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xc339a39f led_set_brightness +EXPORT_SYMBOL vmlinux 0xc339dfd9 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xc343954e __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xc3442406 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xc34bbd4f snd_pcm_mmap_data +EXPORT_SYMBOL vmlinux 0xc357ede8 dst_discard_out +EXPORT_SYMBOL vmlinux 0xc359fb65 abort +EXPORT_SYMBOL vmlinux 0xc36f900b __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xc37066bd of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xc3751c13 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xc377d1fc inet_frag_find +EXPORT_SYMBOL vmlinux 0xc38fd0c8 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xc3c1e6ce ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3c96830 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xc405171c genlmsg_put +EXPORT_SYMBOL vmlinux 0xc407a02e mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xc410a6a6 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xc4139572 bdevname +EXPORT_SYMBOL vmlinux 0xc417cb1e blk_run_queue_async +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc425ec5f of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xc426dc9b bio_endio +EXPORT_SYMBOL vmlinux 0xc44ed1de inet_offloads +EXPORT_SYMBOL vmlinux 0xc46bb18f iterate_mounts +EXPORT_SYMBOL vmlinux 0xc46efdf4 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xc4730852 fget_raw +EXPORT_SYMBOL vmlinux 0xc4808581 simple_rmdir +EXPORT_SYMBOL vmlinux 0xc496a8b4 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4a38965 scsi_execute +EXPORT_SYMBOL vmlinux 0xc4b946d4 override_creds +EXPORT_SYMBOL vmlinux 0xc4d2295f padata_stop +EXPORT_SYMBOL vmlinux 0xc4f4dfec bio_add_page +EXPORT_SYMBOL vmlinux 0xc4f6a993 nf_log_trace +EXPORT_SYMBOL vmlinux 0xc4fc2d29 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0xc506c478 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params +EXPORT_SYMBOL vmlinux 0xc544238c inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xc57c4f47 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xc58520d6 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5b228ba udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xc5c0ee25 sync_blockdev +EXPORT_SYMBOL vmlinux 0xc5c32176 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xc5cd8047 param_ops_uint +EXPORT_SYMBOL vmlinux 0xc5de174c tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xc5deea71 send_sig_info +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc6081300 generic_make_request +EXPORT_SYMBOL vmlinux 0xc61386da vfs_symlink +EXPORT_SYMBOL vmlinux 0xc616814e nf_afinfo +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc637bb6f generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xc63af1dd generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xc63e2868 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xc63f43be tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xc64a26d9 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc65af7f8 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xc66fa6a6 ida_remove +EXPORT_SYMBOL vmlinux 0xc672f6b8 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc68969d6 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xc68a8be8 set_cached_acl +EXPORT_SYMBOL vmlinux 0xc69fb441 vfs_link +EXPORT_SYMBOL vmlinux 0xc6a33949 __register_chrdev +EXPORT_SYMBOL vmlinux 0xc6b5688c wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xc6c3000b omapdss_register_display +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cc199c snd_pcm_set_sync +EXPORT_SYMBOL vmlinux 0xc6de77b4 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xc6df4a1f xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xc6ec21bf ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xc7076dc8 dev_crit +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc738ad44 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xc743c0f3 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xc74e9106 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc760fb72 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xc77e7527 __elv_add_request +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc78df954 bmap +EXPORT_SYMBOL vmlinux 0xc78e76ef xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a06332 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7ab4086 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc7bcbc8d add_wait_queue +EXPORT_SYMBOL vmlinux 0xc7ce1972 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7f3c23b remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc83a88c8 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc83da216 d_alloc +EXPORT_SYMBOL vmlinux 0xc8405bb2 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xc84371c1 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc858994b sock_sendmsg +EXPORT_SYMBOL vmlinux 0xc8690516 blk_delay_queue +EXPORT_SYMBOL vmlinux 0xc8706928 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc88a48d8 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xc88e5cff param_ops_invbool +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc897db7a pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xc89af768 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xc8a45211 setup_new_exec +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8abf230 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8d3828c bdev_read_only +EXPORT_SYMBOL vmlinux 0xc8dd2bc3 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xc8eb9202 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xc8ee879f bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xc8fe6363 nand_scan +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc9234f3d snd_timer_global_register +EXPORT_SYMBOL vmlinux 0xc9300184 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xc953f8b7 omap_dss_get_next_device +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc964ede2 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xc97fa7b8 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xc985f14d del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xc98be9f9 sock_no_poll +EXPORT_SYMBOL vmlinux 0xc98d0f87 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xc99b2412 inode_change_ok +EXPORT_SYMBOL vmlinux 0xc99c83b9 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a22d8e mmc_release_host +EXPORT_SYMBOL vmlinux 0xc9de1951 snd_pcm_lib_free_pages +EXPORT_SYMBOL vmlinux 0xc9e97621 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xc9f128fc dquot_release +EXPORT_SYMBOL vmlinux 0xc9f9b990 snd_info_free_entry +EXPORT_SYMBOL vmlinux 0xca0eff24 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca3b377f param_set_bint +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca629f72 cdrom_release +EXPORT_SYMBOL vmlinux 0xca7548ac dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcab1aedb snd_dma_free_pages +EXPORT_SYMBOL vmlinux 0xcace4c7a skb_clone_sk +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcafb52e7 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xcb024297 skb_queue_head +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb3d090e end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xcb419d97 kmap +EXPORT_SYMBOL vmlinux 0xcb466063 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xcb55a9b6 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xcb69ffc6 touch_atime +EXPORT_SYMBOL vmlinux 0xcba1ad7f __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xcba70a27 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd2b7c3 pci_map_rom +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbee6439 ida_simple_get +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc38e1e5 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xcc409fb6 mapping_tagged +EXPORT_SYMBOL vmlinux 0xcc468d06 tty_kref_put +EXPORT_SYMBOL vmlinux 0xcc49971a generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xcc4ce8a0 may_umount_tree +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc6c7e0b dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xcc704928 up_read +EXPORT_SYMBOL vmlinux 0xcc750a9c fb_blank +EXPORT_SYMBOL vmlinux 0xcc7d7e47 default_llseek +EXPORT_SYMBOL vmlinux 0xcca0e0ad pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xcca92685 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xccac4efc sync_filesystem +EXPORT_SYMBOL vmlinux 0xccb2f14a kobject_get +EXPORT_SYMBOL vmlinux 0xccb8d289 pipe_unlock +EXPORT_SYMBOL vmlinux 0xccbc08df simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xccc02cdb dquot_destroy +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xcccc305d pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xcce910ba bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xcce9d327 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xccf1cf12 cdev_del +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xccfff79f kfree_skb_list +EXPORT_SYMBOL vmlinux 0xcd04c0b1 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xcd06c88a __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL vmlinux 0xcd1804ae sg_miter_start +EXPORT_SYMBOL vmlinux 0xcd1cf80b nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd27e4f6 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div +EXPORT_SYMBOL vmlinux 0xcd3a830d xfrm_state_update +EXPORT_SYMBOL vmlinux 0xcd423862 sget_userns +EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr +EXPORT_SYMBOL vmlinux 0xcd8b6139 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xcda415b6 pps_event +EXPORT_SYMBOL vmlinux 0xcda543ac mmc_can_trim +EXPORT_SYMBOL vmlinux 0xcdae8679 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xcdbe7983 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc49e19 lockref_get +EXPORT_SYMBOL vmlinux 0xcdcba539 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xcdde929b __kfree_skb +EXPORT_SYMBOL vmlinux 0xcde41602 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xcdfd7950 scsi_add_device +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce30f482 gen_pool_free +EXPORT_SYMBOL vmlinux 0xce3955f4 dss_mgr_start_update +EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce6b1837 shdma_request_irq +EXPORT_SYMBOL vmlinux 0xce72bc06 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xce7b60bb inet_accept +EXPORT_SYMBOL vmlinux 0xce8c6ce0 genphy_suspend +EXPORT_SYMBOL vmlinux 0xce8e1e88 omapdss_unregister_output +EXPORT_SYMBOL vmlinux 0xce9ba12f skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcec8a710 down_write_trylock +EXPORT_SYMBOL vmlinux 0xcecd68d0 netlink_ack +EXPORT_SYMBOL vmlinux 0xcee3cc6c sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xcee740f3 __dst_destroy_metrics_generic +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 0xcefe3aaf fput +EXPORT_SYMBOL vmlinux 0xcf05e92f vfs_readv +EXPORT_SYMBOL vmlinux 0xcf169fea kset_unregister +EXPORT_SYMBOL vmlinux 0xcf171917 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xcf2a3b59 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xcf306b84 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xcf3e6524 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xcf54d0a4 vfs_setpos +EXPORT_SYMBOL vmlinux 0xcf552d07 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xcf56a90a ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xcf59cf77 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xcf88625f mempool_create_node +EXPORT_SYMBOL vmlinux 0xcf8b7bf5 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0xcfa1a65e of_get_next_parent +EXPORT_SYMBOL vmlinux 0xcfafed19 snd_info_create_card_entry +EXPORT_SYMBOL vmlinux 0xcfbde776 elv_rb_del +EXPORT_SYMBOL vmlinux 0xcff34048 inode_get_bytes +EXPORT_SYMBOL vmlinux 0xcff6b676 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0xd034105f lockref_put_return +EXPORT_SYMBOL vmlinux 0xd03b2621 dqput +EXPORT_SYMBOL vmlinux 0xd067dedb inode_init_owner +EXPORT_SYMBOL vmlinux 0xd06d69c7 bio_chain +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd081f8eb tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xd093644b inet6_bind +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd09ffc18 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0c488e1 ata_port_printk +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 0xd1062a9e copy_from_iter +EXPORT_SYMBOL vmlinux 0xd1067ba7 dispc_ovl_enabled +EXPORT_SYMBOL vmlinux 0xd11db688 udp_set_csum +EXPORT_SYMBOL vmlinux 0xd12afd9f __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xd13d88f7 locks_free_lock +EXPORT_SYMBOL vmlinux 0xd152a4f1 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0xd1546467 datagram_poll +EXPORT_SYMBOL vmlinux 0xd166cb29 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xd17e1c13 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd19b4d0a i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xd1a041d7 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xd1a58c20 simple_nosetlease +EXPORT_SYMBOL vmlinux 0xd1a8eb34 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1dce64f I_BDEV +EXPORT_SYMBOL vmlinux 0xd1e48b14 dquot_file_open +EXPORT_SYMBOL vmlinux 0xd1e79cae fence_wait_timeout +EXPORT_SYMBOL vmlinux 0xd20e299b devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xd21a27b7 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xd2389e11 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xd24d9f16 inet_frags_exit_net +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 0xd2a3c4d9 bioset_create +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e285d8 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xd2eac503 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xd2ec2763 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0xd2ecf2c9 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xd2f09cf2 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xd3009381 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd33220e4 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xd3323501 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xd33f38c7 init_task +EXPORT_SYMBOL vmlinux 0xd351ca06 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xd38a2e71 ipv4_specific +EXPORT_SYMBOL vmlinux 0xd39fe0a3 block_write_full_page +EXPORT_SYMBOL vmlinux 0xd3a49675 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3cc3501 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xd3ccc4b6 up_write +EXPORT_SYMBOL vmlinux 0xd3d9fbb1 padata_alloc +EXPORT_SYMBOL vmlinux 0xd3dbfbc4 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0xd3e12fd7 vme_bus_num +EXPORT_SYMBOL vmlinux 0xd3e6f60d cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xd3ec8902 replace_mount_options +EXPORT_SYMBOL vmlinux 0xd3ef29dc pci_enable_device +EXPORT_SYMBOL vmlinux 0xd40b23b0 bdi_register_owner +EXPORT_SYMBOL vmlinux 0xd42a818a key_link +EXPORT_SYMBOL vmlinux 0xd4519f64 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xd457cdad napi_gro_frags +EXPORT_SYMBOL vmlinux 0xd4641ad9 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xd4669fad complete +EXPORT_SYMBOL vmlinux 0xd480351a uart_suspend_port +EXPORT_SYMBOL vmlinux 0xd4b7f5f1 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xd4d2a91a pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xd4def8e9 snd_card_file_remove +EXPORT_SYMBOL vmlinux 0xd5091ea1 netdev_crit +EXPORT_SYMBOL vmlinux 0xd519a1a0 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xd52a7999 sock_release +EXPORT_SYMBOL vmlinux 0xd52ada09 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xd54b911a blk_execute_rq +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd56ebfe8 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0xd5816f1b of_clk_get +EXPORT_SYMBOL vmlinux 0xd5897acd seq_pad +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd59ae2ff param_ops_ullong +EXPORT_SYMBOL vmlinux 0xd59af27a d_instantiate_unique +EXPORT_SYMBOL vmlinux 0xd59d737f ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xd5c0e53e vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xd5c4bbb8 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xd5cb072f jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xd5dada51 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd60a1a21 set_device_ro +EXPORT_SYMBOL vmlinux 0xd61347c6 register_sysctl +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd62ad6f6 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd6403e08 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd687d019 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd689d24b mntget +EXPORT_SYMBOL vmlinux 0xd69adf22 skb_checksum +EXPORT_SYMBOL vmlinux 0xd6d9b885 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xd6e2d8d6 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f0df11 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xd705af67 d_genocide +EXPORT_SYMBOL vmlinux 0xd7256fe4 simple_readpage +EXPORT_SYMBOL vmlinux 0xd73eddd1 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xd74289f9 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xd756711b km_query +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd7636a37 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd7a2e8f5 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xd7a94bbe pci_dev_get +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd816005c bdgrab +EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xd85cd67e __wake_up +EXPORT_SYMBOL vmlinux 0xd86f5fe5 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xd8776036 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xd87f3003 d_delete +EXPORT_SYMBOL vmlinux 0xd884bf20 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xd893a7cd mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xd894ebff kern_path_create +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8aa9223 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xd8ac8bd5 proc_set_user +EXPORT_SYMBOL vmlinux 0xd8b0f08d jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xd8d28b30 snd_cards +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e10ab8 passthru_features_check +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8ffc891 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xd92bc263 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xd93e4111 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xd94ba782 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xd9500c3b simple_fill_super +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 0xd9918ad6 snd_timer_stop +EXPORT_SYMBOL vmlinux 0xd9973467 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0xd9bacf38 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xd9c534fc __frontswap_store +EXPORT_SYMBOL vmlinux 0xd9c69bf3 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9e72018 __destroy_inode +EXPORT_SYMBOL vmlinux 0xd9fd82ce ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xda27cfca inode_permission +EXPORT_SYMBOL vmlinux 0xda38c552 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda46355c make_kuid +EXPORT_SYMBOL vmlinux 0xda55999f input_register_device +EXPORT_SYMBOL vmlinux 0xda5ca075 follow_pfn +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda7f80ae tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda9a294c snd_pcm_hw_constraint_step +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdaa99645 tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xdaafc807 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xdabb5333 snd_jack_add_new_kctl +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw +EXPORT_SYMBOL vmlinux 0xdaf3867f led_update_brightness +EXPORT_SYMBOL vmlinux 0xdafbc01e sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xdb10184f blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xdb13f76b blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xdb2ad970 tcp_close +EXPORT_SYMBOL vmlinux 0xdb2fcd27 clkdev_drop +EXPORT_SYMBOL vmlinux 0xdb312fcd thaw_bdev +EXPORT_SYMBOL vmlinux 0xdb4292e4 omap_set_dma_params +EXPORT_SYMBOL vmlinux 0xdb4a27bd security_path_rmdir +EXPORT_SYMBOL vmlinux 0xdb581cb7 vc_cons +EXPORT_SYMBOL vmlinux 0xdb6508fc inet6_del_offload +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb93b838 dispc_free_irq +EXPORT_SYMBOL vmlinux 0xdba8ad7c d_set_d_op +EXPORT_SYMBOL vmlinux 0xdba950ab swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xdbbd039c nand_correct_data +EXPORT_SYMBOL vmlinux 0xdbccd63b blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xdbde98d5 vfs_unlink +EXPORT_SYMBOL vmlinux 0xdbe6b51a dquot_commit +EXPORT_SYMBOL vmlinux 0xdbf0abad pci_pme_capable +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc15eaf4 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xdc1d2c49 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xdc256046 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5c6297 videomode_to_omap_video_timings +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdce868ea inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xdcec50d6 dev_mc_add +EXPORT_SYMBOL vmlinux 0xdcfd1c48 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd2b860c tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xdd389458 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xdd3916ac _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xdd3c3863 write_cache_pages +EXPORT_SYMBOL vmlinux 0xdd483830 mutex_trylock +EXPORT_SYMBOL vmlinux 0xdd4993c6 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xdd669c0c scsi_scan_host +EXPORT_SYMBOL vmlinux 0xdd826604 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xdd83f254 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xdd87a3b6 dup_iter +EXPORT_SYMBOL vmlinux 0xdd88aceb acl_by_type +EXPORT_SYMBOL vmlinux 0xdd9472f1 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xddb7bb6f gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xdde968ba fddi_type_trans +EXPORT_SYMBOL vmlinux 0xdde98e14 __serio_register_port +EXPORT_SYMBOL vmlinux 0xde049156 put_disk +EXPORT_SYMBOL vmlinux 0xde0bc307 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xde1708be sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xde1ef9d5 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0xde274a94 shdma_chan_probe +EXPORT_SYMBOL vmlinux 0xde29518b param_get_ulong +EXPORT_SYMBOL vmlinux 0xde2a7e74 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xde31754e locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xde3a271c phy_init_eee +EXPORT_SYMBOL vmlinux 0xde3d7ac8 of_translate_address +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9398a6 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xdea38f20 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0xdec030e5 arm_clear_user +EXPORT_SYMBOL vmlinux 0xdec1382b xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xdecc69bd neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xded27b79 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xded931f3 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xdeecb900 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xdf09ea41 set_wb_congested +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf3f1a6e kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf8092e4 phy_resume +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf92c2ea PDE_DATA +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfc4c187 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfc6b6a3 amba_driver_register +EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type +EXPORT_SYMBOL vmlinux 0xdfe979b2 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xdfe9c6e7 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xdfee7930 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xdff5bd8e pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xdff5dc71 arp_send +EXPORT_SYMBOL vmlinux 0xdff6fcaa mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe0285140 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xe02a19c5 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xe0470742 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe06e77a1 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xe070545d phy_device_register +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe077d28d simple_follow_link +EXPORT_SYMBOL vmlinux 0xe0825f19 vfs_readf +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe09a9107 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xe0a4cf61 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0d62ea1 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xe10469ca security_inode_permission +EXPORT_SYMBOL vmlinux 0xe111fa2b netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe127fb18 down_killable +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe147f405 proc_symlink +EXPORT_SYMBOL vmlinux 0xe153aa6d sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xe15cd337 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xe167651c pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xe168cb80 bio_phys_segments +EXPORT_SYMBOL vmlinux 0xe16cd35b sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe178041d inet6_protos +EXPORT_SYMBOL vmlinux 0xe1b62b2d d_obtain_root +EXPORT_SYMBOL vmlinux 0xe1d39a7c __devm_request_region +EXPORT_SYMBOL vmlinux 0xe1f0ab3a _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xe1f68cd7 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20a6dfd __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xe22d0d63 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe25554e5 f_setown +EXPORT_SYMBOL vmlinux 0xe261b485 __bforget +EXPORT_SYMBOL vmlinux 0xe281be69 mtd_concat_create +EXPORT_SYMBOL vmlinux 0xe290ef18 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xe2926006 of_find_property +EXPORT_SYMBOL vmlinux 0xe29b09aa pcim_iomap +EXPORT_SYMBOL vmlinux 0xe29c7b2e scsi_register +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2b406ca sk_stream_write_space +EXPORT_SYMBOL vmlinux 0xe2cc96f7 __do_once_done +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2de719e file_ns_capable +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2f51f21 param_set_ulong +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe327c4f8 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xe3330f5c scsi_unregister +EXPORT_SYMBOL vmlinux 0xe33b507f locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xe34cc131 __module_get +EXPORT_SYMBOL vmlinux 0xe350908d scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xe351dd62 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xe36c6ab2 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xe37d10ae omap_dispc_unregister_isr +EXPORT_SYMBOL vmlinux 0xe39070ff bh_submit_read +EXPORT_SYMBOL vmlinux 0xe39eb302 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3c3c875 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3db31f5 snd_register_oss_device +EXPORT_SYMBOL vmlinux 0xe3e7defb twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xe3ec9308 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xe40923ad blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0xe413be4a memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xe43274bc proc_dointvec +EXPORT_SYMBOL vmlinux 0xe459cf81 start_tty +EXPORT_SYMBOL vmlinux 0xe46e2842 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xe470efc9 snd_jack_set_key +EXPORT_SYMBOL vmlinux 0xe4924884 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xe49858d1 pipe_lock +EXPORT_SYMBOL vmlinux 0xe4ae051b phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xe4bd7ed0 input_event +EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe5093d26 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xe50a017c __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52a4f70 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xe5455d7f nf_register_hooks +EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe58dfe35 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xe594d761 simple_getattr +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5e92357 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xe5e99bcc snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5f022b8 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xe613f8f1 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xe63d094f unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xe63f6e17 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xe64d94f4 snd_pcm_lib_ioctl +EXPORT_SYMBOL vmlinux 0xe66452ab dql_init +EXPORT_SYMBOL vmlinux 0xe66f3ad2 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0xe682ed2e clear_inode +EXPORT_SYMBOL vmlinux 0xe689c80b install_exec_creds +EXPORT_SYMBOL vmlinux 0xe68c14e1 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6a8f0c7 ilookup +EXPORT_SYMBOL vmlinux 0xe6c759a3 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xe6cc1e2d alloc_disk_node +EXPORT_SYMBOL vmlinux 0xe6d8efdc blk_peek_request +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6f4391f snd_info_create_module_entry +EXPORT_SYMBOL vmlinux 0xe6f47c5e nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xe6fb0c43 ip6_xmit +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe7075b97 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv +EXPORT_SYMBOL vmlinux 0xe7225588 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xe7452bc4 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xe77a1855 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xe77bc386 __page_symlink +EXPORT_SYMBOL vmlinux 0xe790afc3 omap_get_dma_dst_pos +EXPORT_SYMBOL vmlinux 0xe7a15e4d netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7b08b97 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xe7b599a8 sk_capable +EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xe7bef0e8 kill_bdev +EXPORT_SYMBOL vmlinux 0xe7bf6a72 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xe7c5ac4d __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xe7ce88bc __sock_create +EXPORT_SYMBOL vmlinux 0xe7d1da56 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7dd14aa nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xe7dfe174 add_disk +EXPORT_SYMBOL vmlinux 0xe7e15910 dispc_clear_irqstatus +EXPORT_SYMBOL vmlinux 0xe7fe4799 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xe819dec1 kmap_atomic +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe826721b __skb_checksum +EXPORT_SYMBOL vmlinux 0xe82d41f5 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xe844fcbd d_move +EXPORT_SYMBOL vmlinux 0xe86887e7 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xe8738725 mmc_cleanup_queue +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer +EXPORT_SYMBOL vmlinux 0xe89cda2d netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8ace444 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xe8b47a1e cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c8829f simple_unlink +EXPORT_SYMBOL vmlinux 0xe8f05522 cdev_alloc +EXPORT_SYMBOL vmlinux 0xe8fe7053 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xe912da6b unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91f8b3d nvm_get_blk +EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xe94ccbf1 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe9963451 search_binary_handler +EXPORT_SYMBOL vmlinux 0xe9b2b55a genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xe9be808d lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xe9c775e4 __scm_send +EXPORT_SYMBOL vmlinux 0xe9de2216 pps_unregister_source +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fafab0 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xe9fb008e dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea1f5b88 samsung_rev +EXPORT_SYMBOL vmlinux 0xea2120ec dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0xea3929ac lookup_one_len +EXPORT_SYMBOL vmlinux 0xea3fbab2 snd_card_set_id +EXPORT_SYMBOL vmlinux 0xea4351aa input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xea48bd38 blk_sync_queue +EXPORT_SYMBOL vmlinux 0xea48d284 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xea4b4ef8 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xea74eab3 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xeaa01f54 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xeab99d9b blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl +EXPORT_SYMBOL vmlinux 0xeb1b120e omap_set_dma_write_mode +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3df6dd netif_device_detach +EXPORT_SYMBOL vmlinux 0xeb4829b5 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb658bbe mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xeb75d726 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xeb84c10d __dquot_transfer +EXPORT_SYMBOL vmlinux 0xeb89a6cd jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xeb8a577e elv_register_queue +EXPORT_SYMBOL vmlinux 0xeb96a4e9 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xeba18dde dev_deactivate +EXPORT_SYMBOL vmlinux 0xebb018c9 mdiobus_write +EXPORT_SYMBOL vmlinux 0xebba1dd2 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xebbdbf3c blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xebdb87a4 get_acl +EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high +EXPORT_SYMBOL vmlinux 0xebfe57a0 bio_reset +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec2191db alloc_disk +EXPORT_SYMBOL vmlinux 0xec2a7ec1 kernel_accept +EXPORT_SYMBOL vmlinux 0xec43c432 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xec48bb7a phy_register_fixup +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec5379de sock_alloc_file +EXPORT_SYMBOL vmlinux 0xec53c123 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xec5e0cf7 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xec6adffb dss_mgr_set_timings +EXPORT_SYMBOL vmlinux 0xeca1d9f9 wireless_send_event +EXPORT_SYMBOL vmlinux 0xeca7d698 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xecb8ce1b thaw_super +EXPORT_SYMBOL vmlinux 0xecb96bfa param_ops_long +EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xecc82ea2 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xecce6325 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xecd41619 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecec55b8 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl +EXPORT_SYMBOL vmlinux 0xed1b1a66 __bread_gfp +EXPORT_SYMBOL vmlinux 0xed25973c tty_port_close_start +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xeda5d076 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xedb5fe18 max8925_reg_write +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 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee0d76d6 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xee11dc5f of_n_size_cells +EXPORT_SYMBOL vmlinux 0xee2b22f0 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0xee2bc2d0 omapdss_is_initialized +EXPORT_SYMBOL vmlinux 0xee2c53ed nvm_dev_factory +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee33b399 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xee36ede9 register_qdisc +EXPORT_SYMBOL vmlinux 0xee50ff72 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0xee571f0e xfrm_init_state +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 0xeeb0d2bd simple_write_begin +EXPORT_SYMBOL vmlinux 0xeeb7f953 vfs_read +EXPORT_SYMBOL vmlinux 0xeec9372b input_get_keycode +EXPORT_SYMBOL vmlinux 0xeed3635b proc_dostring +EXPORT_SYMBOL vmlinux 0xeede9a92 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0xeeead040 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef47821 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xef0f3eb3 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xef16f4d1 napi_disable +EXPORT_SYMBOL vmlinux 0xef26cbac blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xef2fdc4f __percpu_counter_init +EXPORT_SYMBOL vmlinux 0xef4df874 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xef6bd8c0 d_rehash +EXPORT_SYMBOL vmlinux 0xef71f1ef dquot_alloc +EXPORT_SYMBOL vmlinux 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL vmlinux 0xefaa3411 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xefae7302 __ps2_command +EXPORT_SYMBOL vmlinux 0xefb5b9ab prepare_creds +EXPORT_SYMBOL vmlinux 0xefca239b find_get_entry +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 0xefd973a6 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe073b3 dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0xefe8f7cf snd_pcm_new_stream +EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status +EXPORT_SYMBOL vmlinux 0xeff92338 blkdev_get +EXPORT_SYMBOL vmlinux 0xeffcb999 lwtunnel_input +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0136ea7 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf02e124f mount_ns +EXPORT_SYMBOL vmlinux 0xf03616f2 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xf0379cd7 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xf041ab67 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0xf047fbf7 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xf04e06c2 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xf0527ed5 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xf05c71bc cdev_init +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf0651d74 mount_bdev +EXPORT_SYMBOL vmlinux 0xf06c303c omap_video_timings_to_videomode +EXPORT_SYMBOL vmlinux 0xf07000db simple_transaction_release +EXPORT_SYMBOL vmlinux 0xf07e7d17 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xf0867eb5 padata_add_cpu +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf09ea4a8 rtnl_notify +EXPORT_SYMBOL vmlinux 0xf0acb774 bio_advance +EXPORT_SYMBOL vmlinux 0xf0b52e21 igrab +EXPORT_SYMBOL vmlinux 0xf0d17250 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xf0dbeaf0 prepare_binprm +EXPORT_SYMBOL vmlinux 0xf0dcdc5c i2c_clients_command +EXPORT_SYMBOL vmlinux 0xf0dd358d blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xf0ded673 mem_map +EXPORT_SYMBOL vmlinux 0xf0e4081e security_path_mknod +EXPORT_SYMBOL vmlinux 0xf0e42d0b tcp_prequeue +EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f69fb1 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf1407332 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xf140d68a set_user_nice +EXPORT_SYMBOL vmlinux 0xf1467389 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf14d3fd7 tty_mutex +EXPORT_SYMBOL vmlinux 0xf16be4fb pagecache_get_page +EXPORT_SYMBOL vmlinux 0xf1796103 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0xf17f8e29 register_sound_midi +EXPORT_SYMBOL vmlinux 0xf186dae0 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19710cc ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xf197b349 set_blocksize +EXPORT_SYMBOL vmlinux 0xf19e9355 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xf1bd0da8 kmem_cache_alloc +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 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf2159f78 padata_free +EXPORT_SYMBOL vmlinux 0xf2351cf8 sock_init_data +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2481561 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xf2519210 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xf2600db8 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xf26610e1 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xf271457d keyring_alloc +EXPORT_SYMBOL vmlinux 0xf27d7f68 dev_notice +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2bae2b2 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xf2be7982 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d2e27a __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xf2d5ea69 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xf2e79dc1 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xf2e82a2e ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xf2e89b40 netif_napi_del +EXPORT_SYMBOL vmlinux 0xf312c4fd request_key +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31513dd param_set_ullong +EXPORT_SYMBOL vmlinux 0xf32b0939 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xf3372054 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xf33a03d3 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf348e43c mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf362414e tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf38a22ec snd_ctl_find_id +EXPORT_SYMBOL vmlinux 0xf39163f5 tcp_poll +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf3aa4d6d inode_init_once +EXPORT_SYMBOL vmlinux 0xf3b40eb6 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xf3b7fc78 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xf3c01fdb security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xf3ca3543 unlock_rename +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf4022863 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xf405710d __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf4101a8e sock_i_ino +EXPORT_SYMBOL vmlinux 0xf4214fdb devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xf431e745 to_ndd +EXPORT_SYMBOL vmlinux 0xf45531e6 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xf4692069 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xf473ffaf down +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf483ff51 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xf492f70d devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xf494f5bd scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xf4a7fc6d omapdss_compat_init +EXPORT_SYMBOL vmlinux 0xf4af5b0d bdi_destroy +EXPORT_SYMBOL vmlinux 0xf4b2bf75 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xf4b35714 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xf4b84de5 snd_card_free +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4e22d9b omapdss_default_get_recommended_bpp +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f164a6 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xf4f7c1bd kill_litter_super +EXPORT_SYMBOL vmlinux 0xf5052493 qdisc_reset +EXPORT_SYMBOL vmlinux 0xf508fe50 posix_lock_file +EXPORT_SYMBOL vmlinux 0xf516a528 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xf5355ad8 current_in_userns +EXPORT_SYMBOL vmlinux 0xf536ec66 kill_block_super +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54c2685 register_netdev +EXPORT_SYMBOL vmlinux 0xf5514ce0 ioremap_page +EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp +EXPORT_SYMBOL vmlinux 0xf5738145 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0xf578cd51 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xf595db5e blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5b7faad xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5e9f08e loop_backing_file +EXPORT_SYMBOL vmlinux 0xf5ea3f48 bdput +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5f40de8 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xf5fad784 param_set_charp +EXPORT_SYMBOL vmlinux 0xf606dec7 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xf61137ba snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf651e0b1 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xf6571c2a alloc_fddidev +EXPORT_SYMBOL vmlinux 0xf6706e3b ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +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 0xf6b02363 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6cd3b1e blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xf6e40421 eth_header +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6edf732 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf6fe7140 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xf6fe7df4 bdi_init +EXPORT_SYMBOL vmlinux 0xf70966dc iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb +EXPORT_SYMBOL vmlinux 0xf743d690 kernel_bind +EXPORT_SYMBOL vmlinux 0xf744ab99 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xf74e58e9 km_policy_notify +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf758e91d kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod +EXPORT_SYMBOL vmlinux 0xf796e15e devm_ioremap +EXPORT_SYMBOL vmlinux 0xf79cc0a6 generic_removexattr +EXPORT_SYMBOL vmlinux 0xf7aaeddc ida_init +EXPORT_SYMBOL vmlinux 0xf7be8ea4 __devm_release_region +EXPORT_SYMBOL vmlinux 0xf7c5da34 clkdev_add +EXPORT_SYMBOL vmlinux 0xf7deeb32 kdb_current_task +EXPORT_SYMBOL vmlinux 0xf7e74d86 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xf7ea8f73 skb_unlink +EXPORT_SYMBOL vmlinux 0xf7fcded5 omapdss_output_unset_device +EXPORT_SYMBOL vmlinux 0xf80bd257 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xf80e2c2e nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf81d125b cros_ec_query_all +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ae017 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf838766a pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xf83897b0 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xf873dd76 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xf87ba825 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xf88bd003 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xf8a1f310 phy_detach +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8f060fc xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0xf902e0db dev_add_pack +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf9427374 dispc_request_irq +EXPORT_SYMBOL vmlinux 0xf942a4fb snd_pcm_open_substream +EXPORT_SYMBOL vmlinux 0xf966a12f pci_scan_slot +EXPORT_SYMBOL vmlinux 0xf988e8dd uart_register_driver +EXPORT_SYMBOL vmlinux 0xf98bb5f7 omap_dss_get_overlay +EXPORT_SYMBOL vmlinux 0xf9932c9f bdget_disk +EXPORT_SYMBOL vmlinux 0xf99ed986 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a80e89 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xf9c202e6 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xf9c3458a bio_copy_kern +EXPORT_SYMBOL vmlinux 0xf9d7c0fb bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xf9deaec3 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9fec8ee __napi_schedule +EXPORT_SYMBOL vmlinux 0xfa17c935 of_dev_get +EXPORT_SYMBOL vmlinux 0xfa220019 snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0xfa32f8f7 snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0xfa3b08c2 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xfa41fdb5 pci_set_master +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa61452e inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xfab2d96c netif_tx_wake_queue +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 0xfade71ad __serio_register_driver +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfaf31c38 release_pages +EXPORT_SYMBOL vmlinux 0xfb266282 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xfb377a8b follow_down +EXPORT_SYMBOL vmlinux 0xfb5a9276 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xfb5db4ed d_add_ci +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb6ecda1 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 +EXPORT_SYMBOL vmlinux 0xfb8c7763 dev_open +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfba544a2 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb3da7b cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xfbbc23fa param_set_byte +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbcd53c2 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xfbd371a0 nf_register_hook +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc075907 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xfc150ff0 dst_alloc +EXPORT_SYMBOL vmlinux 0xfc278f68 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xfc2bb6d1 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xfc2ce956 page_follow_link_light +EXPORT_SYMBOL vmlinux 0xfc3908f5 fence_default_wait +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc5a5c9e cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc6ae846 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0xfc737e14 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xfc80e0cf of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xfc86f05e napi_complete_done +EXPORT_SYMBOL vmlinux 0xfc967d45 lock_sock_fast +EXPORT_SYMBOL vmlinux 0xfc9c5ca8 blk_finish_request +EXPORT_SYMBOL vmlinux 0xfca6cc1b nf_log_packet +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfce4fbb7 vfs_getattr +EXPORT_SYMBOL vmlinux 0xfce59890 vfs_create +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd18c818 i2c_master_recv +EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd3971ac xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xfd5683b9 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0xfd5ca91d starget_for_each_device +EXPORT_SYMBOL vmlinux 0xfd64c051 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xfd6eb828 tcp_timewait_state_process +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 0xfdbaa681 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfddfec9b nonseekable_open +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe110917 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xfe3dd921 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xfe40bf95 dss_feat_get_num_ovls +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe5ee75e seq_vprintf +EXPORT_SYMBOL vmlinux 0xfe674b08 nf_log_unset +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe978637 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xfeac8d21 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xfeb4f0bd md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xfece0bd5 save_mount_options +EXPORT_SYMBOL vmlinux 0xfed50a26 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0xfed8c22e seq_write +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfef3ba64 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xff1d7bc5 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff3fcd30 vfs_whiteout +EXPORT_SYMBOL vmlinux 0xff4dacde kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xff5ddcb1 of_mdiobus_register +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 0xff6d3e41 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff871de0 bio_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 0xffc75cba vfs_writev +EXPORT_SYMBOL vmlinux 0xffc89411 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL vmlinux 0xffce11bb rtnl_create_link +EXPORT_SYMBOL vmlinux 0xffd2cf99 omap_dss_get_num_overlay_managers +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffda87fa nf_getsockopt +EXPORT_SYMBOL vmlinux 0xffdfb085 of_get_property +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x906de683 sha1_update_arm +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xb4124b75 sha1_finup_arm +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x39fb91fc ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x5428fa54 ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x7d97bb34 ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x88a9589e ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x8e6833b6 ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xc25b1c99 ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xd04a6e5d __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/af_alg 0x2312573a af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x3e6d608b af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x4c7972e4 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x5ba5ff74 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x735c7e9a af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xa07e7739 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xaa3d97e0 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xc94f1b66 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xd7903cae af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xd954ef95 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0xdaf0b1e4 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x70ccbc46 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x2d24676a async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xf671dcca async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x35ee1970 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb810cf92 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1f66f8e9 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1f7371b3 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6fe038cc async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb19664a5 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x00b0285b async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8d54ad7d async_xor_val +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 0x6f651998 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xaaed6dcf crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x087b5c4e cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x10fa45be cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x4c830f23 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x65b1d56c cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x6e7b52ea cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x8f9d086a cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xa557fdf7 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xbad6c24f cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xe455038d cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xe858e48e 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 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/lrw 0xe291ec2f lrw_crypt +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x230c21ed shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x313bd25f mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x56d7e927 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x7a1c94d3 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8c0abc1c shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0xaf344c02 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xb5f9560a mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xfebd73ac shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x07ef3e91 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5ecaf508 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x6f30358e crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xe9900121 crypto_poly1305_init +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 0xf5f60cc1 xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xa440b295 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x062e8970 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 0x3154014f __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x820a5361 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x853e913c __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xbd1691c4 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x072126eb bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0d0a072e bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x10456332 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x10c7d8d1 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x203b23e0 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x312bcc1b __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x374b0711 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x417f46c0 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x432e1f8b bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x58912d5f bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5d80e4a5 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x64292877 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6c2cd5bf bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaeabcbaf bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbcac5af4 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbe301ff9 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc5910e3e bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc80275de bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd30b8463 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd36d20a3 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdbf09fb0 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe3e1621e bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf2e39cc1 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xff410a00 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x194d8676 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x60db5504 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6de6b4e6 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9fc21f76 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe6fac0f2 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xeb558c6a btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x095bf032 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0c02ac6c btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x593c8e86 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6573db09 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8e7f16c0 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbab98480 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbf4663d4 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xca35512b btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd1c36010 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd4cc68bb btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfc64fa79 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xffc0eeda btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x33a417a9 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x40fa3728 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4d3a9300 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x565e1e82 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x666e1615 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x68f7088a btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6ecd5a7b btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8fb79d33 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x92d99ec8 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdd0eeadb btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe106284c btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0502b4e1 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x3d03d7db qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3b69b93a btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xcc8ba459 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x02f57171 qcom_cc_really_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 0x53f95e39 clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x612214bd clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x669bd1fd qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x67ae803a clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x709d9cf0 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73964fc2 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x77c457fa qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7c187086 qcom_find_src_index +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 0x99cecec8 clk_disable_regmap +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 0xab092664 qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xab58171c clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc21497c8 qcom_cc_map +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 0xcc37d14b clk_is_enabled_regmap +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 0xf2f68154 devm_clk_register_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 0xda1beb98 bL_cpufreq_unregister +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0xfd16e9fb bL_cpufreq_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0ba8212b dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4000b4eb dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x89dff7f2 dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd8ff3747 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdb15bfa2 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x31458946 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x806a08a5 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xb3ea76ed hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x027af25f edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x171e3bd7 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1a937bf9 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2a087a65 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x33f15f98 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x384484fd edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x42bb45d3 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x50bd3bde edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x578bd208 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5cdd1535 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5d1cf0e8 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6bc68792 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 0x85e5427e edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9d49bd2b edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa12a6f08 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb68f9db8 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbfacc751 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd0b9c4a2 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd303cd15 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe02cde85 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xeb52a18e edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf13dfa99 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf380d8ad edac_mc_alloc +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 0x25730bf9 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4828a654 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7aab639f fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x86b3c61e fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa48407ba of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa58c31a6 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x4d16cc05 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xaaf1211e __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0x02964b6c dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0x50d6b41a 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 0x0144a8ab drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1430cb7e drm_gem_cma_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1dfb94f1 drm_gem_cma_describe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5943ddf8 drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x67d48c19 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6a306c4a drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x70ed409d drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x76913e2b drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8520846c drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8c7413fc of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8df6a7e3 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x97a856eb drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb22ee40c drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb25d8314 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbb412e94 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc4d9e5a7 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc99ca155 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xca2b4671 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf60b18c9 drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1148b623 drm_fbdev_cma_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x34054017 drm_fbdev_cma_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3cd0393f drm_fb_cma_debugfs_show +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x960d551b drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb2c912af drm_fbdev_cma_hotplug_event +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc337fd5 drm_fbdev_cma_restore_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe137c700 drm_fb_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x08ea31b3 imx_drm_connector_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x1cfe024a imx_drm_crtc_vblank_get +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x1f6c594c imx_drm_encoder_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x37707c0a imx_drm_crtc_id +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x419b08de imx_drm_handle_vblank +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x5f056ff0 imx_drm_crtc_vblank_put +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x636f9dfa imx_drm_set_bus_format +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x6e05e2dc imx_drm_add_crtc +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x815114d2 imx_drm_encoder_parse_of +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xb3c12036 imx_drm_encoder_get_mux_id +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xd094ba3d 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 0x9ef18ff9 rockchip_drm_crtc_mode_config +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x4a81b071 rockchip_fb_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x5f0f5b4f rockchip_unregister_crtc_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x6c2fb7f6 rockchip_drm_encoder_get_mux_id +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x830ab53a rockchip_register_crtc_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x87c4af7a rockchip_drm_dma_detach_device +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfde2350d rockchip_drm_dma_attach_device +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x1483471c 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 0x9d8c73ce 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 0xfdd74e1d ttm_dma_page_alloc_debugfs +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 0x0d93ac5f ipu_di_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0dfae829 ipu_idmac_enable_watermark +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 0x0e97039d ipu_module_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0ef9149b ipu_idmac_channel_irq +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 0x1aa024f6 ipu_cpmem_set_rotation +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 0x1ecae60b ipu_cpmem_set_yuv_interleaved +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 0x25251d71 ipu_cpmem_set_resolution +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x25d58cc4 ipu_cpmem_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x26c849b7 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 0x329f22e0 ipu_smfc_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 0x3dd94cda ipu_wait_interrupt +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 0x42d32e57 ipu_cpmem_set_high_priority +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x474414ec ipu_module_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x49d8ff23 ipu_set_ic_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4a900510 ipu_dmfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4cc7732e ipu_cpmem_set_fmt +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4f275b4f ipu_idmac_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 0x5415bcbd ipu_dp_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x58e41493 ipu_cpmem_set_format_passthrough +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5ad924d3 ipu_cpmem_set_yuv_planar_full +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5b5b9bb4 ipu_cpmem_interlaced_scan +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5b77f2da ipu_csi_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 0x6b93dd91 ipu_idmac_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6e7130bb ipu_idmac_lock_enable +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 0x788e3e4f ipu_idmac_set_double_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x79a4b61e ipu_ic_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7e3e4be8 ipu_dp_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x868fca01 ipu_dc_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 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 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 0xa380b5ae ipu_cpmem_zero +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa3cc3d89 ipu_dp_disable +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 0xa96882d8 ipu_ic_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xaa56c355 ipu_srm_dp_sync_update +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xadcb8b31 ipu_cpmem_set_stride +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb0349745 ipu_idmac_buffer_is_ready +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 0xb53dfd7e ipu_cpmem_set_format_rgb +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 0xb9cb7b65 ipu_idmac_channel_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbb5bdf2b ipu_idmac_select_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 0xc5032115 ipu_cpmem_set_burstsize +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 0xcd7c6998 ipu_ic_task_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd816fa4 ipu_map_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd009d458 ipu_idmac_get_current_buffer +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 0xd5055dd9 ipu_dmfc_alloc_bandwidth +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd8962b64 ipu_ic_task_idma_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe0392c77 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 0xe829094f ipu_idmac_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeb13b7c2 ipu_idmac_clear_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeb1a9948 ipu_idmac_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf12fe0cd ipu_cpmem_set_block_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf21a835f ipu_cpmem_set_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf41711ba ipu_cpmem_set_axi_id +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf54efdb7 ipu_dc_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf676ce39 ipu_dc_disable +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 0xf8ce23c2 ipu_idmac_wait_busy +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 0xfc3af305 ipu_set_csi_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xff400ddf ipu_dump +EXPORT_SYMBOL_GPL drivers/hid/hid 0x04843700 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x10b92702 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x16a8abcd hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x204b1592 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x205cbc58 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x27118bef hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b2b2f71 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x451ff239 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4b36d698 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f8d3ba2 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5e25852d hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6278c806 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x66cdadaa hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6740e8f8 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6b6fb134 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x72ee1b2b hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7553f7f4 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7e8dce9b hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8078956d hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x89636267 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8a33b463 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b1316a2 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8c490f44 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8f276d72 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x99158e23 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x99c5e870 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa69cce21 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb4fffbaa hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb5ad7b35 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbdec443c hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc20e4c03 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc447a928 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd24d9e5e hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd54c1238 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdee48090 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd46dbd7 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x079113c0 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 0x18677d88 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x61cbee99 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6e6441d9 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8bab0d82 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbfee2447 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc15b0902 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x14b8efff sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x197b56eb sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x49e6a926 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x52e644fc sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbd935cb4 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd3e2a522 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xeddb1a7e sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf1a29dfb sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf500fb17 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x4d684a7e hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0253b066 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x105d8619 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x165b2ac4 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1a46de14 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x20ebe278 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2cbffd5e hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x32658c06 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x33e898cb hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3ffca109 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x50ce1f1b hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x51333a23 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7e6b249d hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x93443303 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9487dc7a hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb3a89d44 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb5c416bc hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbcce92ed hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcf2acfeb hsi_async +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x236a17a9 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x589f6200 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x7928d584 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x01a025b7 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1ee9b8ce pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x39ae4b67 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x419feb85 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x535b7582 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5cc06db9 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x82e53ea1 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8c21f5f8 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb849f4aa pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc7af7654 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd92ac7d4 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe52e9c83 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xef004ed6 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf4b9f459 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf8310668 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x1228f9d5 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x5c4457d7 hwspin_lock_unregister +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x69f5fd8a __hwspin_unlock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x7b7e27d5 __hwspin_trylock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x8d3de3e4 hwspin_lock_register +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x943f1e7f of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xbc8f25bf hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xdb2c47f6 hwspin_lock_free +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xf2cfbc45 hwspin_lock_request +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xf8d299fa hwspin_lock_request_specific +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x05321145 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x348bea3a intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3f44dbfd intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x62be121b intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x920f5a71 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9bf217d8 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb97a0877 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x13733656 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x18741e0e stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x27f889ab stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x55d5aa59 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa5dcb820 stm_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x10cf82fb i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x126ff891 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x453c2b0d i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x79c9e606 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xb8e753df i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6540332e i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xce7fb07b i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x804b00ac i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd760d1b1 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x81fba949 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xb31d6e2a bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xc468a928 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x38d6a61c ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3a5ddc0c ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6bb381fe ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x741c077b ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xaf564b31 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcbf1fbdb ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdcfe8021 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe3437e22 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf35febab 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 0x9b6c9d0c iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xa4cc9449 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x0def6fc3 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xc1553d82 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0138ea15 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x4880d2f2 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x6735afee bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0cf77354 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1e173e68 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x342a4b0f adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4016f281 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6af16946 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x70638447 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7a14e5f0 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7dff7a4f adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x86167a85 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9ad8e002 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa2e14ef3 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbe42e41e adis_reset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x15a25f85 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1713f09c iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ffb31e4 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x24d8a184 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x25ee367b devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x29809250 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x36e6822e iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e396782 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x41e564e4 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5a081bca devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f8aa3e7 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6e753c2f iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x74630446 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x750df735 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8231d688 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x843901a3 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x86fe8f61 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x92a0827e iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x983ed4ad devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb202e067 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc3bcdb5a devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc9a431f1 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcc308acc iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcc4981ae iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcfe72b11 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xda42dd88 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdd85d0a2 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xde4d24d5 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf623ddc3 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf74f672d iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xff591b3a iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xc2d530bc input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x3b4b1e45 matrix_keypad_parse_of_params +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x025e6dcc 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 0x1272524b cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x38783065 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x503dacb6 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x0fa8d886 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf5a43ce3 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xfe1c7437 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x45fb6efe cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x8c6ea9ff cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x03699427 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x1da897fe tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x909dc666 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa24080a3 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0544215e wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x071c02e1 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0d2d5643 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x275ca32a wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2b03a8ac wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x36bdb5f6 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x43f2351a wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5abb6cd8 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x82da9cc2 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbf34e4d1 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe7a9a832 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf4e0337e wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0567b394 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1b689e95 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2cc6db12 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2f10f425 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4ce80afb ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x82aa7ddf ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa9a0169f ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe1876a79 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf797be44 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 0x0f259039 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0f9407e4 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1183ae59 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x12a43a74 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1bb33d10 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x38bffbb3 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3e64da44 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4137c8e5 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x49d05a97 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7c3ff9a4 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x92e6bab9 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xaf196e20 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb9352a3a gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe7710dbd gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xee11ff58 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfb9b8fb2 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfca6085b gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5917d529 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5a1ad78e led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x792c60d9 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x793e4c51 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x897eef3b led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa6fe7753 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0022ee3c lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x166683b2 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x255cd69c lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8968153a lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa3c7a2c6 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa795dcd9 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xaaee8c0e lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe232d2ef lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe4d1a85c lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf20b4062 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xff5fe1fc 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 0x3aa69ca8 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4406b036 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x592a94f4 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x74b97471 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8e42779a __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9192f863 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x92103ae1 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x93753e46 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xaf24731d mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb6009d99 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd584f00d mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xdb61b487 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf26ff4c6 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 0x0a5c5c00 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x18f4226b dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x20924f2d 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 0x6ab274fc 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 0x7a2b936c dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7c0c0266 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7ed092d0 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 0xf3949574 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf6d01b3b dm_cell_visit_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 0x2f149416 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 0x1df30052 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1e38c755 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6506364b dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x65c2f014 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9d7cf727 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xaa5d568d dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc3d7afad dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x37fe8175 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x9c1e4173 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 0x1304b485 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 0x4c88b7d3 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6c1b7fb3 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0xd2689f96 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 0xdf63a17e dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf1ef6039 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 0xef711fda 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 0x12ce8189 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1918ac77 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1a6c04e1 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x20d7c2eb saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3d5d2aa4 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4f92658a saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x76c8b8d7 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa21f275b saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb226c5b9 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3f3e517 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3f8e8834 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x4c88f542 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa2d2e86d saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa3dc36ef saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb0367742 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb59ee1ae saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcdec1090 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1ad79ce8 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2301d58f sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x247fc332 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x31506cb9 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 0x4f3c6889 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4faefc79 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5735eae8 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5999bb47 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x674631f3 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7932acb7 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x79516a4b 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 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb928ac6f smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xba425bd1 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc5bf2c6d sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe1bb6d5f smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe73cfd4c smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfb28bcfa smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xb4d1a34d as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x53b2bcaa cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xc8199e1d tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x0bee86be media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x13be6625 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x1baea003 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x25cc963c media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x288e7729 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x3f0e72bc media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x407c4b27 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x5292856d media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x61a4f0c7 media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x6e4e75a2 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x84a86ff0 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x9be5587f media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0xa3f406e5 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xa85898a1 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xc03611d1 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xdc4cfc2a __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0xf4573215 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xf748f832 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x89381b20 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1021930c mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x31efbffb mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3b545203 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3dcae61f mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4987b1d6 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x501f747b mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x507003d4 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x606eedb1 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7e263eae mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x84d1c444 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8ceb2b3e mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9a99175b mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa38ae806 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa9e12242 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc1a3a8e9 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc827201b mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd4f2d0fa mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xda6e09fd mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf880169f mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x037d9ff9 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x069511f8 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x14dbe2c4 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x230c92a1 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3daeaade saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x422bd7e4 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5365a3be saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5376bac2 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x63221c80 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7084e16d saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7c939610 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x818d630e saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc14e18ca saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xceffe67f saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd506c4eb saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd724c9ab saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdf484b3f saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdf5c4a43 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf5ec0d16 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0c9715db ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x456edb0b 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 0x8b5b420f ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xae107d99 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb5736a87 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd7956b77 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdc08c227 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2a7eea1f xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2a964ad4 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x31fb2dfd xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x41cddc51 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 0x496b275c xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x94496012 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xcb25a766 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 0xfec59ae6 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x06d60198 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x0df9b247 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0c9c4515 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x17d8ed88 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3aacd723 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x67c5722a rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6ab0ed8f rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6d94576f rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x84bfdd50 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8cb8c60c ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x93c402fd rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x992753e0 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9b6e1000 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc651be57 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xca9ea515 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd62dc9ad rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd62e9d66 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd7bc54cc 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 0xea5b677c rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x95952c3e mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x759fc9a7 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x56b160ad mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x10f3432c r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xa244565d tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xefd93824 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x6c60c1ca tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xef40d8e5 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xb6c99a87 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xad7b31a5 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xeca826b4 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x72cdc4eb tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xe83c4257 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x5d6948c7 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0177a6f5 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0715d466 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0912e399 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x17430693 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x26e27961 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x277a1edf cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2901c31f cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2b74416c cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x446f9eb4 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x67e7d926 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7b92ef83 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x814d9033 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x968b8b38 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa105e47c is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaf20a5f3 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbb465a0d cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xccf26b8a cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd5b1c340 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe2911c2a cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf424d0fd cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xaf7c647b mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x957446e8 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x25c7d283 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x348b854d em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5664c6cd em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5cf6cec9 em28xx_audio_setup +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 0x83a525bd em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x89ee993c em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8d521b0a em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x97381ea7 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9f3ae61c em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaa787865 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xab6daad8 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaef71ddd em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd6437584 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdc98b11c em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdfb706a3 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe20ac0af em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xeb17f200 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf116da9e em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x0ebe4a4a tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2a21696c tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x5d3cd08e 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 0xea82827d 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 0x0e33e4ce v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x2b3f741d 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 0x9e977a53 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xb3a1b0b6 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 0xf33a7462 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-common 0xfb71d986 v4l2_i2c_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 0x56b27be9 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x6f683681 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x056432e6 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15b71618 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x174edd97 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 0x2b2a30b8 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x484e0317 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x56b6d16a v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5f1e633e v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x66c2ff89 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x683600b4 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7cfa1bf4 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7e96c3c4 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7ed9a26a v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x800aa0ac v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x83719cf5 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8a6d7b81 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa1721d56 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa645eca0 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa8735c24 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc1470529 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xca3dd5aa v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcf203194 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xda0e6aec v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdb559abe v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdbc57e44 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdf99f1ba v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe06540b2 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf4f52eaf v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0d86b7dd videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x10a73e25 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x224549e2 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x420f1fc4 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4236629d videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5669acc4 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5ea9142c videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x682240cb videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x781bffa7 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7c7bc067 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8f54d7f3 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9883d2e6 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa0160c88 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa18ba97d videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa43f1c92 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa62d8276 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa8f4a209 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaa401aba videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb8d55f9a videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb8e1f38b videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbfa86030 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcb167780 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd249aa48 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf6f35dc8 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x123e1ea8 videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x67b2abd1 videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x7900fe8f videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x36279fec videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x42e1bc93 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x9a8ccee1 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 0xbecc3371 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x574afacf videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x749972a4 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xd7069007 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x09eb9982 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1694fbd4 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2efc76ff vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x322057dd vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4e5e6462 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6b624947 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x73b9960d vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x79aa4947 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x86c705d1 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x89f4d690 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8acd10dd vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9cb98aa4 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xaea27753 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xcccaba6c vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xce3b1f0f vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xde44da68 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xef926a0e vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf11834f0 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x97953d03 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xcc39ad16 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 0x3cb90562 vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x753523ca 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 0xcb10e92c vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x030c44b9 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0520e2d5 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1599bab9 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1948e381 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x19d9bbd6 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1d9e7f42 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1e1b6305 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x32aed7bd vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x34a6301c vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x40314895 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4d71f80c vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4e947b2a vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x52a05a53 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x54ac13c4 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x59b17776 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5e7c2e97 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x633162f4 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x98ecc51d vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xaae1c344 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb318382a vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb9443ab1 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xba47e66a vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbe0d857b vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbfc40094 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc348c4ee vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcf56c70d vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd321a38d vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd8eaa85d vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdb9c6852 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf0057c79 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf30e44c9 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfa8ee87e vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x021964b0 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x023992ae __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b2f7377 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x189a3a75 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1af19cc3 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1c0716f6 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1c848562 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f6fb333 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x279fc036 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f828290 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4086db91 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47c1260f __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x489f7df5 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5111ce2e v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x63a157eb v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65cb4bb0 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6c961b73 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x80f0a5d2 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8423c27a v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x87fde65f v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8819aace v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab06e74e __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbaa12a9f v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc4782335 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcaadcc80 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8313c8e v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9d69cce __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xda442419 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xda818b73 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde690a07 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf52baa9 v4l2_event_unsubscribe +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 0xeb9c3272 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xebd6245c v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf028e393 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5f1b39d v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x90d1bce5 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xaad7b17f pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xce931f5b pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0d57be4b da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x24c94825 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4f44555f da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5587c842 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x699671c4 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x89f338f5 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x91c1bce6 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1d1020a1 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x21c21787 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x38a610d0 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x64f9d1a3 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x79fef595 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x84932232 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbddcd684 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe7003570 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x6088f046 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x689f1062 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x8ef19ed7 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x192e036e lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x29e0c9b1 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9048d023 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb37d2a13 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd31eb1f0 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe42a9994 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe9546537 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x991a572c lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xb7ca6c45 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xeec76e80 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2a496533 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x382d5bb7 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6a98e5ff mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x78971097 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa77a0ba2 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xee68286c mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x064ff434 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3bb72d4a pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x47a43179 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x76014d59 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x97d30f60 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa1d2b219 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcbbc80ed pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd8f153a6 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xea225074 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf30a6f88 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xffe75cfe pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x0934249d pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x4148c0a4 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x213b60cf pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x27674944 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb665f51a pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe4c4f155 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe6440862 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 0x01c9a7bf rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x04c54f60 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x11832cee rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x14acb589 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2148288b rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2b59379d rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x30ee4c0b rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x39275546 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x41eed7d6 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x515c53ec rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x554249a5 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7d2033be rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x86a3bc5a rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8db05c05 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x941b9812 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa02da045 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa0432501 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc45f3932 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc8f5d9ba rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcdb554b6 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd941e969 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdf47e2e0 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe6ef6cec rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfef27288 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0425a7bd rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1092d919 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x520246f5 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x674f498a rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x76b14854 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x76c86d00 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x89928f37 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8b2d21c4 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa8eca2ef rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb3b94f09 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb7030d8f rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd313cbf4 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xeff637f5 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0b0853fd si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x118254ee si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3b93d16d si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x40d486ca si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x40e11d4d si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4234a5d9 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x43326861 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x47fbab31 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x54432274 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x642f9333 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x677455d1 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x67ea8133 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6c97b630 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6daae814 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6e6d43b5 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x75729887 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x79892c83 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7a69fc56 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7b4d333d si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7f3be492 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7f4e655e si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x953d4893 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x97d8c591 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x981e0558 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9dac143d si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbc5665d9 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbd4f4fed si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc6c53c54 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc940de9e si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc9c05007 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd57127b2 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe8d4dac8 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xea1d55af si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeabff87e si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xc116add8 ssbi_write +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xf9216e1f ssbi_read +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x9dd5f331 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb1204738 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc9674ed2 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xcc51d176 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x12328c97 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x1404d6a0 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x376b5fa2 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x6c25ee97 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x2c0d3b40 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x1149733b bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xcad96276 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xd24aacae bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xfe284eb7 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x7a7f0073 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9d0068af cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa8928540 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xbd7b141c 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 0x13c630cb enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x264658a3 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x40bdd737 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x438326cc enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x85778067 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe36765fb enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe9421257 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xee9f0162 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x04d2f0bf lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7e317194 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8741a92d lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8f428e70 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa3e68203 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc82af83b lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf05a7b74 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf6bcc999 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x81df6421 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xcd6e377b st_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x344ef2a5 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x71453794 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x727011f3 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x4222006d cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x7d0b2585 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x80150013 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x14bf2db8 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x9914a9ee cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xe746e23e cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xf358d1f6 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7e44ce5d cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xec5dd9f9 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xed3cf570 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x2674cb23 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x32ca83c6 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x63d03af6 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xfaaafa37 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x45e0eef0 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xe8b42c10 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x2424ae70 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2015dc39 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2f1a8aa3 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3be447cd ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3d819a40 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3f017e26 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x40dab470 ubi_leb_write +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 0x6c1dc04d ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x780ec39c ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x88892775 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9da90abb ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa27e0426 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc10ef8c4 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd1c1c798 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe127dffa ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x380454c7 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x7ba109cd arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x22936dc3 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x43022262 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa9a72bcc free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xab5618c3 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd7d5aea9 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf918b015 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x08fbcc09 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1e9ef5cb alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2ab2647e unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2d02fccb alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2e8d4063 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3e8622fa alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4dec3e0b free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x52db0cdf open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x58383cf5 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5b158280 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6ddb1f27 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8e68ee42 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xad8f72f0 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe02f4e8a can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe61c98e2 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe6f4fc4a can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xed032919 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xff4abc1a can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0f68f402 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x214b5d2f alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa47fa561 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xb6c03216 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x36c8c4a5 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xaa7592cb free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf6dc9bb3 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf8c960da unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x97a3ac2d arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x9b55e7b6 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05d217f1 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c3e4da4 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d877319 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f34279e mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f89b1eb mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x122e67c6 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12fb970c mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x132ea716 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x134b492d mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16638cfd mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x197ea769 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b7eb4d2 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c26c2a5 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c588eee mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d8cb296 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22a0d5e0 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2490aa5d mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24ad4224 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x259e4f82 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25ea72a7 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27ac3d48 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27bd9f95 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29316020 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29816b02 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b74dbe1 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2de6b2cf mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ec9f4d7 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f3c123c mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30df8310 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3271571a mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34810c87 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x390be626 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b35b9e1 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ef40ad1 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f110755 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f13ba45 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x406028f0 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4199e40f mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c023ae6 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c94361f mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e0ff15a mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x560d029b mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x562e66e1 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59107093 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x591fe264 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a2f4cf4 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b1e93c7 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c935a85 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c9fb243 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60f3f38e mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6abc2794 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6acd042b mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6aef61c0 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ba03c36 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d36866c mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d6ea5c8 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f8d0ed7 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71041a25 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74fc400e mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75ebddc6 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75ec4693 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7969626a mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d0012db mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f82303a mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x805d61e0 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80d6f194 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80f9fef0 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8195790a mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81e14fb0 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85fd8fed mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x888ad3ab mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89c14255 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cfcb1b1 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d6714e6 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x907d7add mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9192c594 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91fd3fdb mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92ec2dc3 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93429ce5 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x953e3844 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9554e9e8 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x966c8a1a mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96d895ce mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9931f48a mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99441f7e mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d3ce6cb mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8becb3d mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9601230 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa10af06 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaba3b89a mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xade082b4 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaec69ef8 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0fe749b mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb196b6d3 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb59a4a5a mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6f8d15f mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe0c18f7 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf1e5b37 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc22f4899 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8923528 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb2e3b02 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc551d5e mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd50f366 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd23d272e mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd29c7a7c mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd31d242f mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8721110 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde1f5d28 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde87e326 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe088c1c5 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1b10a73 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3ed863c mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4f2f7d6 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5109775 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8f8b365 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea072a9f mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef369824 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1cc6b67 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1eed7be mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf65d3a22 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7249526 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcdd9b9f mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcf89f36 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe9466e0 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x047a1133 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 0x0b0a5fac mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bab9577 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14b3e2e1 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1594d20a mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x220d7161 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27d09c2d mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2980eeb6 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e44dbeb mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35232411 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3584550f mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35cc0066 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x386ab0d8 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3912e79c mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41d25720 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42025b82 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4600da7e mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bb0b540 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ee44f20 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f7b0185 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x661b0087 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x675acdc5 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x813010f7 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8462041b mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88a90834 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a20ce97 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ffd6bbf mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa256e5d1 mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae807c96 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9877f9f mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb01a3b0 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbeaa6a4f mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf3d2895 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc29097f mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccc762f5 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcec4fc01 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc8fd3d4 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdeeb02de mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe28debb0 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2c013b3 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ffa0af mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe72d0f10 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7cce496 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe97c88de mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf24db835 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x25ca1ba4 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 0x0699d279 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x27f5f361 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9ce2b8a4 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb0b4ebb8 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x40eda863 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x502127c0 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6362c140 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x98dbe470 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0x046de7f5 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/geneve 0x73700321 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5b19de09 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7cc7e4c9 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa94bf683 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd9e1d007 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xfc5f2b2e macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x00b5d030 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x47711abb bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x67f29882 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x969e9238 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9d9cfce6 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa61fc366 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb506571e bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb6313fb2 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc751781d bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe218a80a bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x7f94be4d mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x63a4c78b usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7b5be849 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc0dcca71 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd41dc95e usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5700aca6 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x663a8746 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6660f95e cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7c461ab9 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7f90c233 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x96accef2 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa19249ed cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc11ae291 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd5e9b10d cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x12d19f36 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x31ae565c rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5c1ec1c3 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc61610fc rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xcd6bae93 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf83f584f rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x085d38af usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1c4b4881 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2712f914 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x279f83b2 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2df418fa usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x32a7adc1 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x45d3041f usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x49094014 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x599ef0fe usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a2cca19 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6c2b5783 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6d34e07e usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x73b1b805 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e2d6107 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9f9e6f13 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa28238f7 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa7bdf679 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb4a2a9b2 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb5c87e44 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc18fdffc usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc266890b usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc61ed9bf usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc79a8d95 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcf93c0ee usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd10f5119 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd2e6d516 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd7542f7b usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf0f508a6 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf15e7b50 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf66a508a usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf831606f usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfa05938b usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xe1710004 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xe37f6e29 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x01fa7bad i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0eb303f5 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x13094135 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1cd3a37a i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x483c93bb i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5b89fe53 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6e230221 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8d63529b i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x953cc0fe i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9d5a841e i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc9156023 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd4846bdc i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd59cbe2d i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd713c309 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe5e44802 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe73cee73 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x669b250c cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xa380c78a cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xa9e78b33 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xde7a29db cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xc1d16f2d libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x0a2327d8 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x8128b79a il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x8debe4f8 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xa27d5039 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xfb17410f _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x02f06739 __iwl_dbg +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 0x1f126010 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x29cc201b iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2e0863c5 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 0x3b6b0843 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3f91d662 iwl_read_eeprom +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 0x53f781a9 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5659975f iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x58d5e7c6 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 0x6d57c566 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x777c118a iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7b5bb2b4 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x858a7100 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8cd37c6d iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x90caf9cb iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9b184870 __iwl_err +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 0xa14964ab __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbb54f1d3 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbf25d5ed __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc0316d6b iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcbd649b3 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdf1d71cc iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe9bcc994 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf7d5be46 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf90339aa iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x00653104 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x03050660 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x170b3c20 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x61035a51 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6176ca95 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x701b59d3 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7d900e12 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7f0c4b24 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8a7ef676 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9e41fb6e lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xace62af6 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb5af3dfa lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc3c98b9f lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xda308eb2 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe2a43250 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfe7b1e6c __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x0403b816 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x41a7ab56 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x47370f68 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x63e4a40f lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x73422d9c lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x85fc2b69 __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 0xd6aec7c0 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xdbbaa5e2 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x01f71fce mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0bec5287 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x135335dc mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x21c7fae4 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 0x38695058 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4d058646 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5a227044 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x64f558d3 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x67a4cc5e mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7151b2ed mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x837ad744 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9c1ac024 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xaba57550 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xacee823c mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd0d3e27f mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe348cbd2 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe89eabf9 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xecde26e7 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xff7292bf mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0a54c8e5 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x2757fd31 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x43e292c3 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x4a8ba4b5 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x4d2ad140 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x891ae4df p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x95c05e24 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd9d197bb p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf3697d4c p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x011a44e6 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ce09537 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x940d341e dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfcf11266 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x17e1e045 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1a1acd86 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1ac66720 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2fb163e4 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x37c117d6 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f034582 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x46d205cc rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x51d6ff78 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x52f77116 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5f281f0f rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6bb814bf 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 0x741e7f72 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7d5ecfa7 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x84a2200c rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x91824eaa rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9689f98d rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x999f7188 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9a829052 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9dd31a0b 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 0xbca8a118 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbf8a01a2 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc56a93f0 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7030557 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7d1369d rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xda144f3f rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5075030 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf7765f0f rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0785be57 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b701383 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e7d3150 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 0x24d5d924 rtl_is_special_data +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 0x38c1c196 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e432550 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x527b017c rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f338fd6 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x85a67825 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x87c08c58 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9c030b0a rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9d4a0d4a rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9da4b32c read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb7690dee rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf559435 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe1b34cb4 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7c96c1d rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf593ad3a rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf92434f5 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x305d21f9 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x5bb56050 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x76bf0fae rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xadea43f5 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x07185b86 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1254f74f rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1ad91a4d rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1d8af4b5 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x20d1742a rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2444ef8e rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2f23c785 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x33c0af97 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3a2beca3 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4747202e rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4ca8348c rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4f73626f rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x54c69b16 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x577a520f rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6e9a6fca rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x73cb750c rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x773259d2 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8aa23058 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x93b7b219 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x944830d3 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x956b14aa rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9c3ab73c rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9fe4181c rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa4f6045f rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb1a6d9bb rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc727af16 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcb9cde79 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xccf4feb6 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xceeac8d5 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd8901d45 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd8f000c7 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe52f8f39 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe6d5cd65 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xec1895f8 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xed29ce67 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf035f835 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf07d9117 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xffabbcc2 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x124abb57 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x280aa531 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3274ec70 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3f6c3ee4 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x40c5fed9 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5a5e9d9d rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x826d60f6 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x8721772d rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x8c4fe442 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x8dff4a3f rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x952f7489 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9861e49f rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xad29e43b 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/rt2x00lib 0x010f9ae9 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x067d4dc9 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x083dccca rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0974d920 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x192e8887 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x23a94992 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x26c6b215 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x28e3b35b rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2a9e483f rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2c12c136 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2ccdcf6e rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x30f82743 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x39b8dfb9 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x42b5c8c1 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4d661ed0 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x56c0e2f6 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5acc1ecc rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x622a7428 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6ab3ed91 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x70afd746 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x77f8c7f7 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7ff84933 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x80e4d180 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x81f19ea3 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x88b54fbe rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x97070b35 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x979f253a rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9c59f7ae rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa30f9a9e rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa615407e rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb1917e68 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb2f17ff7 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb79e998c rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb8831177 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbbcb4d27 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd0f1a691 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd1224f00 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdf0914e0 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe0b74f6a rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe1432e85 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe54a9494 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe60bc848 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xebddc1bd rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf6cecffe rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfb864173 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfcddee0b rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x7929d58b rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xb652ad2c rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xc524d950 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xd12e89ad rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xd4c3c629 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x0b2e9947 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x15cfde88 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x3fac8713 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xd5a87ddd rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1c9fbc10 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2d1f7817 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3251d6cd rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x34068305 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5537b6db rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x842334a9 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x892d4e82 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9237927b rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x94bd8a42 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa63a69c5 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb8393a54 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xbae867d5 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc8d4374b rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe00793a9 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf05a8788 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfde37180 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x15b937a1 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x7cdab633 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb46d955f wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x05afa987 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0bf86344 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0e62a9f0 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x127ea6ff wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x15cd42c4 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x18222321 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1f3f3d72 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1f8952a5 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x216be9a3 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x289155a7 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2a63b7dd wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2c5a7a3d wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x32842558 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3470d97a wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x407efd1c wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4adb44d0 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x518983bf wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x524405f8 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x59987c41 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5fd22be0 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x63c29ec4 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x68895dc8 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x68d58d12 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6a79f877 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 0x86fbe825 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8898d9b7 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9123db7f 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 0x983e364f wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9c307839 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9d8b0aaa wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa66cb0e1 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb00a80c5 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb684f721 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbaa18a64 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbbc40246 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcf15f878 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdc5e65b1 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xddfca6d7 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdf23c0bb wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe00dffbb wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xea933efa wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf6378ef9 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf72ce769 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfdcb48a1 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x0ecd4953 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2e7ddb4e nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x5808422f nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8f0a5a41 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x37f15f2d st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5a3d3c98 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7de408de st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x837f8d4c st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x860f4da2 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb88ae8a7 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb88dc0d9 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xef26485c st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0974c6d3 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 0x5bea4b1a 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 0x9d034e0c 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 0x155242a1 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x1a19b0af of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x44ac68e3 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x6703de0b devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x6968fd74 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x6e4d22b5 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x800a8f0f of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc45deec7 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/phy/phy-omap-control 0x1f24a5a1 omap_control_usb_set_mode +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x48c771a0 omap_control_phy_power +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x624a5e92 omap_control_pcie_pcs +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x09a3fe61 ufs_qcom_phy_calibrate +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x0a41ddfd ufs_qcom_phy_set_tx_lane_enable +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x0c788736 ufs_qcom_phy_power_on +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x15304794 ufs_qcom_phy_init_vregulators +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x250efd3a ufs_qcom_phy_disable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x34c96945 ufs_qcom_phy_disable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x5873932b ufs_qcom_phy_remove +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x622cdddb ufs_qcom_phy_calibrate_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x77ee5046 ufs_qcom_phy_is_pcs_ready +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x7f9c6a28 ufs_qcom_phy_init_clks +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x8e42e137 get_ufs_qcom_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x97943454 ufs_qcom_phy_start_serdes +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x9ff27464 ufs_qcom_phy_disable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xa2af5be3 ufs_qcom_phy_enable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xa96981d4 ufs_qcom_phy_exit +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xaf78a8ed ufs_qcom_phy_enable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xcbdbca39 ufs_qcom_phy_generic_probe +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xd00006c2 ufs_qcom_phy_power_off +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xe6116177 ufs_qcom_phy_enable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xf11817ee ufs_qcom_phy_save_controller_version +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x66db7981 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x6adf6923 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xbc374385 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5abd8c35 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x6abb853f mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xbf54626c mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xdb9ce0c4 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xff668975 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x11b2f23f wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x333edd92 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x711c94f5 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8a99e47c wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa1d8f845 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd83e5ab1 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x6b5381bc wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00d4b979 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02fa6c4a cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x07e25ac5 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x13f1ee9b cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x16fea0f3 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x20d54e93 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a0ee0cf cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2ae907fa cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x300ac39a cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39e7ffc6 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3dcd5904 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x49a2340b cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4aceb848 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4cfa1d56 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x552e6216 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x594769cc cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c4d3092 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6827bde1 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6b27b78b cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x73af7b33 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7e508ab0 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x81ea4187 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86cf474a cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9012eaa5 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9364eb26 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x943d3609 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x94451489 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa3330dbc cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4055f6b cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa5ddd433 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa9b85a78 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaa52bd83 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbbc7aee3 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbe24fa39 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbee97003 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc558eb6 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2d9d170 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd8d29f73 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdc3256c2 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdcb4f40f cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe90ae360 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea176286 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf0bdc400 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf6be14dc cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf8e060b5 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfe39e008 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x14194416 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1ec64c2c fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x360fa19a fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x457dad54 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4725baeb fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5a0137c8 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5f9a0871 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x69b8da89 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7d10394f fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8383a5c6 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9c418b32 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9d0d26c3 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbf316243 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdb435ce9 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe52a4de4 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe9bac78f fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x15126736 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1c65ebf4 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7a9cc10a iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9d5c4988 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd46e858f iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfe9e54de iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0223295a iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x04cb8317 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x09646772 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0f856fc4 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x109e2469 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21cce0f9 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x24295199 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x257df069 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x273cd427 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a81dcf4 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32eae445 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39703311 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x474c7e8e iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4e2e856c iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x570f26e1 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60e6dd43 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x647837e1 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6762407d iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x68a28d61 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d662c3d __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70a7630b iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7276e8f9 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x751cd7ef iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8ba2dc88 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9759fc5b iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9bf8a2e9 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0d87c5d iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa57b50bf iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab143946 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb87e2610 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd209810 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0888aca iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc77a37af iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc3aede4 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd74f18ae __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda1ae86f iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd236f1e iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9bde02d iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeba048f0 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf945ac53 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf99ccb93 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff9733ff iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x000edf36 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x17715a21 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1cbfa35f iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2c6b4c8c iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3aec4dfc iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3ba93a50 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x52c0f42c iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x65abb508 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7364cee2 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7909d633 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x99a41c87 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9dc6a3b6 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa0ac300f iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa9eb2097 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbc8677dd iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbe32a03a iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd52364d1 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1907ba18 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x194b8f64 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x19d063c8 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x29cff631 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2afc2fbe sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x31427c9a sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x378b042e sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x396c0e83 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4f7e1bab sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b6cafe4 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5fdad722 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6b237ac5 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x909b1a10 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9db8a7a6 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa59001f9 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaf68ae3f sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xba9e6fe9 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbf6193f6 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcc7619ad sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xce0e50d3 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd78e059b sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeb6e9bd3 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf6cde959 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xff64464c sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x015ba4ef iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x03383704 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e871512 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0f591020 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15d80963 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1d7f975e iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ef96e36 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x311f7dac iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3664f431 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x37ece326 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3bdc5240 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e196b34 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3ed1b575 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4978e9ae iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49d76cef iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x519ed405 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6a253adf iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x74ba07ed iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8202f080 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x880afb06 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c60e29b iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f23af00 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x991e0839 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x99dd9bf5 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9db05c28 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa41f07ac iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7cca091 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb981d1c6 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 0xc5202dad iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcba5afa5 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd01b790f iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe043b224 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe7018b37 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeba8d0d0 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xefeb01f0 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4a2f6a3 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8e32201 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8e843ab iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc82019e iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc95ba86 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x52198aa1 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x57928f4c sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7c58fc9e sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x909ebc9a sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xd4775f76 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1c0eafda srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2231b313 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x464c7cde srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x65df0e98 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x96fe0625 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe83280ac srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0333959e ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x171ac069 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x5244c911 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x6d582608 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x747f8d2b ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd9af4c32 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xf0b8ba2a ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2e8be34b ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x910f1b75 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x926b467a ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xbd70ce54 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd4b36181 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd6f86761 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xec122ecb ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x159183c7 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x25395116 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x8640c955 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xba21bf58 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcf913a25 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2d792565 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3d370676 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x7b62e203 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa3b8d3c3 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x03005c12 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x066ac8a5 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x06e59acd __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0bcbdf25 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x238c5e11 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2405ffa1 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2516a5c7 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x65de4009 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6ca5f59f spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7ef9bba0 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x903765a2 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x92eb52a4 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa9c2e6d6 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaebbd66c spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd15fc162 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd897f4c9 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xea51331e spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf11f2b24 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x31ce155b ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0988b589 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0fafbcf2 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x13f89169 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x16b0edf6 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1ae681e9 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x205f3e91 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x280eb4d3 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x29cbe250 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f565423 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f59a1e0 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x30092a45 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x35651f71 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3708075b comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3af5a1a7 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x44a87eca comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x50474048 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x70bf4fae comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7d7db199 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x840fbc10 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8838d70e comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8e0e2ba7 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9062fa2d comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x91c21160 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9ee00dbf comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9f5022ad comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaaf31ca8 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb269906e 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 0xc94a4ef9 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcb4fffff comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcf867f13 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd795fcef comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xea4a67ff comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf05e374e comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf21c927c comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfec90e3d comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x04c129c6 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x27b8d578 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x45998f6d comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x4f697aa3 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5bb625f5 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9a954502 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xc7bc2156 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xdb8defec comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x1d69da6c comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x371825a5 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x9e46cb5c comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xab99ded5 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd0fe243b comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xe761a900 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 0xba6c67f1 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x8f4a278a amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xf658c18b amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x20ab8640 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x02c2a511 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0a186364 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x367db675 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x64262d5c comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7d1b7e73 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x88e6b5fb comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9453e476 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9699f04f comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9c5d56e9 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9ea9dc72 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb87bed10 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xdf396457 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf81bdf40 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x1565d5a1 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x91d05fd6 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xa137ca70 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0xe1115cce das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x12431787 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x12b13698 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x31ffff5b mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x35bf1039 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x35c2fc93 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x506df5ff mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x50d04148 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6da1d0f0 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x87428b55 mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9f4d7dce mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa5cdd851 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaa2764d5 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb0961c45 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc1694000 mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc9ab7653 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd1539216 mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd8fd3b7f mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe8461305 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xebac3be0 mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf4ef0e45 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf71663d3 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x2449cbea labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xfe91c5a8 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x15deaf22 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x34eddd95 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6f73375d ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7b3ece7d ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9f96c507 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb6d3940b ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd44832f1 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xdb3eccd4 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x3328f5bd ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x43085ce5 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x64b16ace ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x8f8cb8e6 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x98cbb3ac ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9aa69a01 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x03c3685e comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x2b08b161 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x51b09e2c comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x793c5b88 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x8bf479b1 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe37ff5a2 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf13d3ebc comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x385bd6d2 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x26e6818a most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6ccc6847 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6dac4ef3 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6ed8e105 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x7da1a5b8 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x82d647c4 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x939f0397 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa53f1f9d most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb4e9fdd6 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xbe119d58 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xbea0a9ee most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xde2c0813 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0f6f1a01 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x11e641ca synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x215364a6 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5d6d935b spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6401e50f spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6dc8b51e spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7ed3efdb spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x86442336 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb2978dbc speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbf2c65f5 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe5415d72 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf39b8451 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x690d54af uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xc1950ea6 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xc8d1cb62 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x4a718b73 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x5fa068d8 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x67786fbc ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd821ee27 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x51ef0cca imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x740ecd95 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd4ce6657 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x00a360b7 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0ed83305 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2044159d ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2271d3ac ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x5f8eaff5 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xcae69008 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x09a37ecc gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0f2f523b gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2d47be30 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3fe3b508 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x57745c86 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5819d1bd gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x72ac1776 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x87ef83c2 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc49988bb gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc5da3723 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcb2b4917 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdc0f0fc0 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xde076927 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe1836215 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf444ff86 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x0aac39aa gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4dca232c 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 0x3f1781a9 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x921551f8 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xb61babc2 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x07338a9a 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 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 0x22e5d84d fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2466216d 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 0x3240059a fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0x5d57d0a5 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 0x6e6209b5 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x803444d7 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 0x86ac8e5e 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 0x987bc0cf fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x98cee0e6 fsg_common_remove_lun +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 0x9e75e1ce fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9ef2ac98 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 0xa971c382 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab9a28ab fsg_lun_open +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 0xdea6b539 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe07db7f0 fsg_lun_fsync_sub +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 0x1fb73a61 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x28f64437 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x361f5907 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4c504ba1 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5e88a151 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x673cc667 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x72b3ddf4 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x77662ead rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7f9e41dd rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x80af14ba rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8b07eb34 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x97760ac5 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa3db1d3c rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb571662f rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfad5e5c6 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0088412e usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0774606d usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x18e70a60 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d86a92f usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2d8ff0cf usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x302cd58a usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3977c6d1 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x397dc0f1 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3ed1df7a config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x46679c7a usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a3bcb1c usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4cae5bed usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4e3e72c0 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5fa41190 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6305141e usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x72d549e0 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x756d5e83 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7b014753 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7f22324c usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7f2cd7c8 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x90cb0404 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9cf2d8e6 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa31537e4 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa7d69dce usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaaa88890 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbc1b2388 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcfa3b85c usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xddb270b9 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe2d2cd20 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe5a4f5e0 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x2a2b5845 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x6e201148 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x07ce19a0 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0d1f2d27 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5790a58f usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x60e8c825 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8e22e491 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8fb2bd13 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd9c25d38 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xeaa3aee2 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xead6608e 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 0x44283bd5 am335x_get_phy_control +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x3b2a2cb0 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xf767b1fb usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1804550e usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x21b9c69b usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2c0df16d usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3346a6f4 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x374fcf3a usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x44979b65 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4660289d usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5b1832a2 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x681e557f usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x81553292 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x81681a42 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x90520d33 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9eafe278 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa9eb8506 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xad2e83b8 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb66ecdf3 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc27605fc usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd22c5bab usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe63882bc usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf286f91b usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf37c0a98 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x04087d12 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x075bb080 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0a2d6329 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x145e1dfa usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1ad88857 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x31e298b8 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4a939341 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x567859b8 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7a143d28 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x837c72e5 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x881a3b5a usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8c4e8f3b usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8d5da26c fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8d9c7564 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x99605ef9 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb183cd38 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbb34d226 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbc2abd2f usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc4d91226 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xca4d208c usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xce088d1d usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf75f5fa0 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf998910f usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfe8f31d9 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7220211b usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7b66c17e usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x873a12ae usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9ea2f59d dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc255fe3e usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc9eeb2cb usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcb83f4cf usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd2b9a120 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd6aeb47c usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xddf8fd77 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfba6b1ca usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xff421fce usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x033b4e9d wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x034eb3d6 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x4330975f rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb77329b2 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xba8d7be7 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 0xd0225816 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd7ba31bf __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0af26ec5 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x11421d20 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x22749a17 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x40f2f672 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6190f114 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x68a9c62c __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x81b2ea26 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x89290e06 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8bea5d82 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x93816960 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa6f2efc8 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbd9604df wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe44158b6 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfbf8e143 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 0x786e14a7 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xac3f52f1 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xbc40c7d9 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x00f1a84a umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x0fb973b5 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x255cd6ae __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x4608e3cd umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x5021b44b umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb9b4048f umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xef6580dd umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xfac54aa6 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x09c21d9c uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0ce510fc uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1e8587aa uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1f2cfae0 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2df1c02f uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2febb880 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x38c04d84 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3af6b624 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3f3f0669 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x479f0e38 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x530eea7e uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5480159e uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x549c5901 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x57bc9d68 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x662ebc95 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x668241e1 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x669f1072 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x69fb86de uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x73fdf01f uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7ffcaa2d uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x82238614 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8a3c2bf2 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8a3cedb5 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8bc85a6f uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8fc2a978 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x936751dd uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9d5c3f3b uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbe73055a uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc3e4df82 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc4e1f7cd uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc85ff0d0 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcb9e0c5e uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd89be6e2 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xda69d848 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe8c9a099 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf41fd26a uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf8e30166 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x6c8fc93f whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x71160f51 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x8c6f6fed __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xe26d31cf vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xfd7c136a vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x05175999 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x236d6cf7 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x71bee94d vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8e7b249d vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x937cdd6d vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb3cc1d44 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 0xffd02ad8 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xc9b13d50 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xd2f2d905 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02e84dc8 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0cb30eaa vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e24032e vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1daa663f vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1fded71b vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x210bd237 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2428bceb vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x26cefa4d vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2b535474 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32bcc5e8 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3fbb0545 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x46e2e252 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x61604c14 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x635a06ee vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6ed480f7 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7d2242f3 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7db07573 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x883b2540 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8a649247 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8c58583b vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9e824073 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa7898419 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xae3918e9 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcc2ba101 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd16182cf vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdd60b6fc vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdec9c70f vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdf6ac3cb vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf072679e vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfcb605ad vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x007412d1 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0766ff5d ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0f5402f0 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2acefc5f ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5f16b004 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xdfa78d97 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xef7522e6 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x0cb06eeb auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x2176eef6 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x257f1878 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x2e646a3e auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x2f255765 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x49f135a9 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x55c7a2d9 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x64acd50e auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8b703848 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa43c0646 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x277869fe fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x23072120 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xada3c69d fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x41c14919 sh_mobile_meram_alloc +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x78d1a1e3 sh_mobile_meram_cache_free +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x88d76701 sh_mobile_meram_free +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x9f3dc7de sh_mobile_meram_cache_update +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xa7f5edd7 sh_mobile_meram_cache_alloc +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xb783e518 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xbdeaa3b6 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0cff67e5 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x64593c66 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7f8e70b9 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xaebe46e7 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb9eadab8 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc0cbca11 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xccff6de1 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xda458eb0 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xde5a617e w1_reset_resume_command +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x1edf6bfc dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b75f1d3 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 0xf0512a97 dlm_posix_get +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x298c57b2 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3079acef lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3b16b56f nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6b4a4861 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7622a9f3 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa4b3a176 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xad321af1 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0052930e nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x017d61d2 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01d71f78 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0280c3fa nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04b02d9c nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x055aec52 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x083d6482 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a4f54e6 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bd2e7b9 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c1e7033 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fae263e nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x124d9268 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16da2367 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x174fa103 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x180aa02a nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c644a66 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e173dc8 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21558c1a nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x217f6f4e nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21996c28 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22e8f28e nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22f2d5c5 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2631dd95 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26e441d2 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e99db39 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2eb069cf nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2eba9b46 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x308ebe16 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x333ea444 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33f3960d nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35121f0c nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36617159 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ab437bf nfs_kill_super +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 0x3f92c1cd nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41818220 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x439ba5a8 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4529ad7c nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45abf2f6 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46c0ca4d nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48c0c524 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a4852ad nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4af26c3c nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ca1986c nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e266bf0 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5064cf3c nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x517dbc86 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54f8aeec nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x577b63ac nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x578080c7 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fc297d7 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x614f6601 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x635f442c nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65f6baae nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x682d5dbb nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6878bdb0 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c8cb799 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dcec758 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dde9e51 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6eda2a60 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72f0f0e6 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73918243 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75d7f112 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76108f13 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c2323be nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e40efc3 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f3bc577 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f955a8e nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80f02310 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x886cf149 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b2ec678 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90fa853d register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93ce4e53 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93f6556c nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94e5a9df nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x992ac94c nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cca1d35 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5890951 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6230542 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa70a7412 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa836b30e nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e08b63 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa7429e9 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaccc95aa nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad4f0d6b nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad827c3e nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf1c1636 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb33dc565 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3b01672 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb459f626 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4a0a5b8 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7952889 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc03cdaf nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd4ae0fa nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd4e4f99 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc050be23 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3945ea8 nfs_pgio_current_mirror +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 0xce479272 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2c6a234 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd449e416 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd534e580 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7261075 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7d05ab5 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd83c0c65 nfs_access_zap_cache +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 0xdc00e52c nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc11a1f3 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc2e57f8 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc50f81a nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddb0c63b nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddb5b41e nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf7c9de3 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4608b20 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe66b6563 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6a2181a nfs_file_release +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 0xe98fa09a nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9aba133 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeaf1aee2 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf08d5022 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf20757e1 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf97fb3b5 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9dc4d47 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd300f5d nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe3ceda5 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff9f7a14 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x87dfe526 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00ef04fd pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x050a2538 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09f3061f pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a51bdd1 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ed5459d pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x169fb309 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16a515ba nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1716c699 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1bb0a10f pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e48aeee nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a0f2d70 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c2ca6ae pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41bc1ff8 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x462b4a0d pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46eac0cf pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b90213c _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d88dcb2 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x573af80b nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59232df7 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5bc34ac6 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5dc80268 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x635ed134 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ad62598 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71612a26 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71b74b1e pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x729e8cc6 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x735ec7c7 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7941f6b1 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8508683a pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8869655f nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8dbda4f5 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x949342a6 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97a899d0 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c3275fd nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c89b8da pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d60cbcb pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9efca1c0 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2096131 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3639a2a pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa464c9ee pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6375de7 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa358961 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1a9bd52 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4c315d1 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5c036e1 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7b6bcd5 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbce8188d pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7ccb05a nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc18f299 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcde0bcb8 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce4a4ad8 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf40fc63 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd35d7326 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6915498 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd785a10f nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde0e72a6 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8f61f0d pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee58983d nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf456b474 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfce69b65 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe705d43 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x19487a2e locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x8d2e52d9 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa30c6086 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x03260db8 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x443725c9 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x15fb23e4 o2hb_setup_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 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x47161317 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x94e4c334 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9fa33384 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd368306b 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 0xf1025f6d o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf7276e61 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x06f4d145 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x22bd6406 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9edd40b5 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb63e2d1d dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd20399c5 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 0xe65dbf94 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 0x52e8eaf3 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xad61fc93 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xef4682fd ocfs2_plock +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x1e906fb1 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 0x4e7ab039 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xa86f5fa9 _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 0x6a6cad92 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xec0becc7 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/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 0x6d99af4e lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x70025cad lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x22a4a1ca garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x4bacf9ec garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x9f1c592e garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xb4a8289d garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xbb41736a garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xd417c29a garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x09a8e968 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x37d8c5cc mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x42ab15f1 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xa8205aa2 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xd1e52cf4 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xecbd21ed mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0x15307ac6 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xa47053e6 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x69fc26ad p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xb7c3988b 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 0x7a8030f7 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 0x0a3359ef l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0f15f29f bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x36600b27 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5b8cecc4 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x71b43f5f l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9e09c715 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd0be5be1 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe79f31ec l2cap_chan_del +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x57ff7a1c br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x693b30d1 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x71384fd3 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x78a68c4b br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7ff2bb27 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdf310836 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf978617b br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfbf6f120 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x145fdcc5 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x91ad97dd nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x020022c5 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x08287b2e inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09a123b7 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x10ff362f dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x121a46da dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x14b80968 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1a5e7d8c dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x282bec88 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2f480ef6 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3472b4f4 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3fd2a88e dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec2fdf7 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5230c4bf dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x633cfbb0 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ff65bca dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x763fc9a4 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c5ae195 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80d045b7 dccp_connect +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 0x9a3fcf00 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f314edb dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0023e8f dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa164bc21 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa613030b dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa7bde646 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xad6df4ff dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xafa25213 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0596156 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd8588de dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc00ec876 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcb86a51a dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcdd8d498 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdb6e876e dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xef03a1db dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf0defa5f dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0cc414c3 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4c3e2b2f dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x610e36c6 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x63fdd5f9 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa182d1a7 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xde082eee dccp_v4_connect +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x425ef8bf ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x446e4ed4 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x65836f77 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8e8d0d53 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ipv4/gre 0x606b5053 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x674c687b gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x04c7b7f7 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x81cba930 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x86975dbb inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc4a1995f inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd628f9d6 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xedc66e06 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x27be1303 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1411079d ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1ee4f873 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2485b5f4 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x391db3f5 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x422f53a6 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5646b00c ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6a0843a1 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7eaacaaf ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x818c3e5e __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa53369f2 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xad7e1acc ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd26cf64a ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd8cef836 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe56a1674 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf62ee05a ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x58033a07 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xdf7a7048 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 0xc7660b3b nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x08acdad8 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x70088943 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x701b1989 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xa8a5a94a nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xba2eb541 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x1ce39d44 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 0x47253f7d nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x67ef3434 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x733b43bb nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x953472d1 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf7b89092 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x084b355c nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0d28c74e tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x663b35c8 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x67956d5e tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x761c267a tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfa45f110 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0969e94d udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1fba4df9 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x852afa1f setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa78b679f udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x476425c2 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4a669125 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6f01d96e ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x8705db6b ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc1aa88cd ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xebe38c7f ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfa44a6f2 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xb9d935a4 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xff58d9a6 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x2914a187 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x01c4f1aa nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x68bc872d 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 0xfc754dbd nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x29631178 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x5ab34a79 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x77f4e4a9 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb550be3a nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xbea5f5f8 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 0x2ea31d26 nf_nat_masquerade_ipv6 +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 0x03b5be69 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0b95842a nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x11fa6ccf nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x22ae7ecd nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x51e25bc5 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xeb0a6b4f nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x056c520c l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2bb6b929 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x333b544b l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x36ea3fef l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3e1a73a4 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4cbad90a l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4d64e446 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x508d2c3e l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x613c971f l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7c1c88e2 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xadf5dc23 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcc62341e l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xda6162bc l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xda8d3710 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe83cb714 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfba99bd9 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xc2192d8f l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x05dc52a6 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0b9b976a ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x24d4654c ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x387da617 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3e3b93e0 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6248d75a ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7dd4f359 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x901bcad7 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x94606566 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9a9d6558 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa09128c6 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa189f1d7 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbf0efb75 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf46b5a42 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf924853f ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3d8949b1 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4a1d9569 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x90b9cc09 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xced5566c mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x03afe739 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1546f977 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1b9ecc1e ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3787b7b2 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5dfc9fd3 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6ae17d06 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x75f84ad6 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x76fb3b53 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 0x8eff6694 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x934881a1 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9457a7f7 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 0x9e9d5d83 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa022df8d 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 0xb946c136 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe37b59ba ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf03510f9 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1c6a9d52 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4fed5d99 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x863e7f6e register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb2e8bcfe unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07033c48 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07cfd8c0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f6421a5 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12c8b7f8 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13c9e592 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14240f2a nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x164826c6 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1cc815f6 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e382720 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1feb3766 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20f61caf nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x214096d6 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21b8b4e7 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2247732d nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x251186f4 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25cf8042 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x268e9f0f nf_ct_helper_expectfn_register +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 0x3ccead02 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x428e8c59 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x462ee684 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4856586d __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c5685a6 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4cabfecd nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x571150e4 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a1a52fe nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c1d4a90 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c3f2eec nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x621d4888 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64209369 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64e3c0f9 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64f08553 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6673f0bd nf_conntrack_hash_check_insert +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 0x70937ca8 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73833590 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73a0d8d8 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74bc076f nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7daefa80 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80f5f7ee nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x813c544d nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87ee17f3 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f548747 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 0x943f0bb4 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x964d9f82 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x985a2858 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a4e63cf nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b03bde2 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9bd2baa6 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c3922bc nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9fe4f686 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0d2f42c nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa47bfd00 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa878014d nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8e851af nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xace49ad8 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad74be89 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae0eadd0 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae444868 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf803af6 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb144ddf0 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb589afa9 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc980e5b nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc199673e nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2abd2fd nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc36cf815 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc43799e7 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca6af3b3 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd39a9007 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd56db70a nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8f03e46 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdefe82c7 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe014687b nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4324c77 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe53e0e3c nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea74132d seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeaa5716a nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xedc2572e nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf371f3d8 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf62cd9c5 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa85d89d nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfdf84da7 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x98dca5ee nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x6e0008e3 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xcee76aaa nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x166b02a9 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x26b4e0f5 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x368bb700 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3e9ac17e set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x48baa512 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x715921e3 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x75f784a1 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8ef698d0 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd62b3d4b nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf82e8bf4 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x9d82a7e7 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x18fefb97 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1e8b12d5 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x9e7996e7 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xeefd0d4f nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x79d59ea4 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xa2f6f684 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x21122395 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x34dacd68 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x52839740 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8f4805ba ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa1339e4a nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xad39eb3c ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfc14d4f7 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x28c95c1e nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xfa489736 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x502d02a3 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x577716d2 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xa1f5e9fc nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xc4f4146d 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 0x2694fced nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5ea07645 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9bceec2a nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc5d2a736 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd1a389f3 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdd4e469f nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdfc09e6e nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe51ea4f2 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf011d1a8 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x50679c6b nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x9db69258 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 0x164e26e8 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6baa5c72 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 0x072394f1 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x141ce8d6 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1ba3b7c7 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x20ac9045 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x30557324 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3714b2e1 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4415f215 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x44c75858 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x48d48452 nft_register_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 0x8acdba32 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8e06f546 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9fe15a19 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa5fe42b9 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf8bc1af nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3e17851 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd6c36968 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe4fd5056 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x25ff6e6a nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6101b772 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6a5d9ece nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7d070bc3 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa126ee36 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb2322204 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe1ed0b48 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x02846f07 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x1f21bf45 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xfc882fc4 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x14ea7748 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x498845b0 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xa85053dd nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe4bca849 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x466f262c nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x54f70154 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x856dd4b2 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xd3349181 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xd3b42100 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xdc1b7959 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x028a7f9f nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa6acdd51 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xd4be322c nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x5ed95305 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x85d64696 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 0x007ffb21 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0d950384 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x18ddc8c8 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1c281b20 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4f37dd4a xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x776e02d3 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7a8d916d xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8f21d269 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c1bd30e xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb91bf1c6 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xce789de8 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf2da939c xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfb980211 xt_register_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 0x3b287acc nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xbe5af78a nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xed521956 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x45e7ca1c nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x66bb8f40 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xceaad1af nci_uart_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0e518e9c ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3da9c464 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5cccaa29 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x68b1e812 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7ffc71e1 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xaaa9c4b3 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbbe1ff47 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbd031b09 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xfa0ad830 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x28ff83be rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2d651ab3 rds_conn_destroy +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 0x479e3d68 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x57b04ff2 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x629a18a5 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x74f10282 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x7e82de79 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x8662f9f8 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x8be35630 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x96cd6fe2 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x9b74cc9d rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x9e2db2b4 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xa04f1694 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xa55012ef rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xaf6fb2c9 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0xb806878d rds_inc_init +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 0xcc6c368b rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xd3c3653a rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xd5fcbca0 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xd839bd94 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xe1913dd4 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xfcd24867 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xfde549ef rds_connect_complete +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x30b5cdef rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xd1308d27 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 0x1c707df2 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 0x94a2b077 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 0xc9e0d0bd svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x018c5e36 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x030b956b rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0350ffcb svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0355053e xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0355b67a svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x042be67c auth_domain_lookup +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 0x063c58be rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x069a6fd8 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0873ca19 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09e7ff45 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ac4ea4b svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b08fa97 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dfd666e svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f172f68 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f35c1df rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fc26a57 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10181b66 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11d01e82 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13380779 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13f21b1e rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19de30a3 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c6208aa _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c8d0a2d sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d5f608f rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d8dda4a cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24885267 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24b0822d rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26a2fe8e svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2730ce9e sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2731a142 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29a9784b xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c86726e xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d35f2b6 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ec2c871 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f023270 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x330b2d03 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33b17798 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34a8b392 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x361a6bb4 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x388bdff4 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x397aa40a rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bdf2aa1 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be97fa1 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d2b78c6 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d77e987 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e8820cb write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ecc2e48 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40a5e912 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44739c79 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x448e4757 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44ffdfef rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x477d5332 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4790a97e cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x489116ec xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a0875ec xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a4b5329 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4adb9c73 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bd4dd09 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f7df2b2 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fb7cb6c svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x502e854e rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5378d28c svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5465b534 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54937ae0 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x574c7b33 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58132d62 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58821a78 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5aa6e2e1 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5afeff3f svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b5898be rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fdd1efe xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6035ba55 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x616c6075 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x625d7ffb rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x646e4dc0 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64728a1d rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65b66990 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66a36bc2 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ae29df rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68eeb699 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69565b37 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a63670e svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b959f63 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c970eb3 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d97c53b rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d9865ab rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e28dba6 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f75b985 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x707efe0a rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70a9a054 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7126955d put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x715d19ba xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74b05210 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74ba1a13 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x751fce0d rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7681e35f rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77ca6ebf rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78d2a577 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b19153f xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c342d6d rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d3f9a00 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7df71cf4 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f504397 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f95f5b0 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x826cb8c5 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x832b9ec4 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83fe84a5 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x862006d4 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x887eb209 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ad71d16 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8af1bd49 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d0c7e07 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d0d5713 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ffb53ac xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x938a3510 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9453fceb svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95cb3be4 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97c21b7a rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9827c320 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x988bfd81 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9908e289 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e7a4ed7 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f211a84 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa10a058d xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6c54bd2 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa78c3420 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa790b245 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8d1570f xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e2d45b rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9faad24 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa468195 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad4ef916 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad80515a rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae340f6f svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae351b58 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae786ec6 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaef0dc66 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf727021 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf9c62dd svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafc1b6ff svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb072c006 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1d33439 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4b82a70 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6a98660 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7fd5a69 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9b91c94 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9baf174 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb800538 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc7485db rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe6fd3ef xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe9fbead xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf1e4549 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf54c9b7 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf7bc896 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfda46fd rpc_clone_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 0xc4ec022b read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5084669 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5e1e4f2 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc690d3d8 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6d4a150 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc407143 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc478a1f xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc97d36a rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1fce54a xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd44804c8 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd606f963 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd963d9c2 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda4d0c96 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda5845f4 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbaea90e xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc066bba xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc7dd4e5 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf987228 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1fcb7a6 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3cbc985 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe428c5e0 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe57f9187 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7e88ae5 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7ebb1e5 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe83f2410 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9d5fb25 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9ebf87a cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb90aef1 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecd63982 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedd8c0c5 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xede517d7 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee6b2045 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeea52849 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef4f989a svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf07b5d69 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3a6c207 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3c3e69b cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf748c059 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8d04d57 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8f29774 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcb75241 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe17e14e xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff71b4bd rpc_init_pipe_dir_head +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 0x16b19845 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x16d34bd4 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x18be7763 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x261e3adc vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x42937f00 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4a44a97c vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5c6634de vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6e54a010 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 0xa34698e5 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xad5f0d33 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb90363b3 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc89433fd vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xde10c281 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0e1f3d27 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4596cd7f wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4a5d694e wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4d36c2c3 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7449d45e wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x76245806 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x84b8292a wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0xaeefe092 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xaf609d4c wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb5f3520f wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xbeb5e012 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe98ca86d wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf360246b wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x32ccf8c6 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5582044e cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6a74193d cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6f65cdd8 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x79c273d2 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x86a17ce5 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x879214fa cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9e42ddcb cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa8af13e1 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc4adbf14 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe97d44d8 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xec28d348 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf1c71ab0 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x188198a0 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x444df59a ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7a975298 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xbad732f6 ipcomp_destroy +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xa4946e17 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xe819dc55 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x00bfc450 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0856d18c amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x71c01679 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8d67cf1a amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8efaa6d9 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbaa2b069 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf8353700 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x02c48846 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b8c43b5 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12206783 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x175afc58 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b5ce67b snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2183284f snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x230943ec snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x252187b5 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ced28c5 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2fc47d3f snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30badbb4 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33f657d8 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c30fb0c snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e60687d snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f8f93be snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x416e83d2 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42a4b00a snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42b49a64 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x436ea1b0 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x497d4008 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4eb1d356 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4fe9f216 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5232d054 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5261a222 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x578646ce snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b0d1c9d snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c93656e snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c9cddef snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5cba6a3a snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e0d8361 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e512106 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x696f11e9 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69cf8122 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6bcf2dc3 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7626bdc1 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x76d910a4 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x793d9461 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a06dd7a snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fb957ca snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x821bd514 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86898d5c snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8cf86b65 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e212480 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x976197db snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97a4f735 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d16a2c1 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa33446e2 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa468ee59 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6935a23 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa700702e snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa95dcb8a snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaabdd92f snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf2d10c1 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb61a219f snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8357278 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbbe3ff17 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc98bf52 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd8d6a04 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc14149b1 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc686e87d snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcacdc841 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc57172e snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf4994aa snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd850b001 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc50c212 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc807618 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe69bf048 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe96f9afa snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb239be3 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee1dd375 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfab69fc1 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2a507963 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x48256440 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x81db610a snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc062a20e snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcabffe12 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcb6966cf snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x004f50e4 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00ac6e93 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04c1fd38 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04e0125d snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05f15f05 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05f5cae3 snd_hda_mixer_bind_switch_get +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 0x06e2b13e snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07a74e6b snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0889c974 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x125a539e snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x130bb3e9 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1635cb7c snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17c712cf snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x199aef9b snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22b21c61 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2451137f snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x245ccef4 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2837f028 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28c42dc5 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28ff066e snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29268899 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a6c60d7 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e56d56d snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f7c747b snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31e73aa0 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3284fe8a snd_hda_pin_sense +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 0x39089e6b snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39b84519 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d430a7f snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f0c23b1 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f6bb4b8 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x428b1313 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a2f3487 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a5e2966 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b044082 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ea7a599 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x536bb062 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5526729d snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bac41d1 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bd76e5c snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d80adfa snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ddc0baa snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f2c4b4c is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61e3d7cc azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x632ed035 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x636b2515 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68882d72 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bd355c1 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d66986c snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ef544eb snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77babeda snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ac90111 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b0e4847 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d5717bd azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82165a73 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83322092 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x833cc94d snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83cf3a8c snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84464576 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87a98226 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88f5cdb8 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8993a215 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ab33dcf azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b4c059f __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d43ad7b snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e199eff snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f8bc873 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9115556e snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93f8c0e7 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98236efd snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c5e4b90 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1c0ea50 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa37e1b78 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa438d874 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4976432 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4cefc32 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa53eecdd snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa56dd239 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5c5b19c snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaca2ff4c snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaff017ac snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2ac1ded snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2dcdf4c snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb335a58b snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb71b9c58 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb82d31c2 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb83b36f6 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb84b866e snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9953f0d snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdc81014 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc213569b snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc346fc76 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5cbfc1c azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8e118d2 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca34a7e6 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca91b677 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc83e0e9 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce1687b0 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1252f03 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd552a8a8 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9b1b5dc snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb7cd974 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb8237bb snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdcf1faa9 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe32f4b00 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3f4cec2 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4a34bde azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6adc708 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7492758 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe818ae7f snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeaeff5ef azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec384fb7 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed4312d2 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 0xedb480f4 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefa8b439 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf000cd79 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf51c5d57 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf59ac05b snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf645edcc azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf75876a7 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa043b1a azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfcda993e snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd8fe132 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe5c312c snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0edd9fe6 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2a33feef snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x56b2335e snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5c3c857c snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6a24c9f5 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 0x827d06c1 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 0x92f4155b snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa33ec4a8 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa6b56a0a snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa7f2eaf2 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb20529ca snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbd3523bb snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc0cf6308 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc546007c snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd53c86de snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd8620cf3 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdb3e98a6 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdb99a9dd snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xde427a17 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xed994aec snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf898d864 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x146676ba cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x5da30ebf 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 0xb4d42044 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe6cdff6b cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x2b7eec6f 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 0xe1063e8f cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xfcad9bc4 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x054c308c es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xaa57f011 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x504bdc6c max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0x4215ffce max98095_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5e39030e pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xaf45db94 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xc6e0d161 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf8f02c83 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xb5c5205b rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xcdddf5e1 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x71416393 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x884499bd 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 0x2a5ddedc sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3f9e77a8 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x428c6664 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa9516a59 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xfb4a526d sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xc59be28a devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x434eb246 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x72c6f9a5 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xe67071c8 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xe79bd704 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x9d856215 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x3ebfdd88 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 0x76dff0ad wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x78f6aad2 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x90c27cf2 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc9a1beb1 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xeb22e49c wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf07ddd5a wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf8b36d88 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x21068d60 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x72e720d1 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xbe089832 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xdd9bf33e wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x2b61dd7f wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x486d4162 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x1f65761b wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x52daa1a8 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x1f46a45a fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x7121dd10 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 0x1ca50e2f asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x9583c2f6 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xc79d4bf2 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xcda0ad4c asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x4d982660 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 0x1daf2fc8 samsung_asoc_init_dma_data +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0xe6a5930a samsung_asoc_dma_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x07c729e9 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0ffe91d9 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x10b7655b 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 0x4e000f5b line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x53a0aff1 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x55bfa69a line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6804973d 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 0xb64147db line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcbd78bd8 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdfd5d429 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xeb64ad8b line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xecf8763d line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfa412696 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfa53d005 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfd30dfad line6_read_serial_number +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0x0008d80e __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x000960ca blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x00107d5a snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x002b221b devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x0031d4e7 mtd_read_oob +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x00645497 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x00855230 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x0087490b pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00c8329e usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00efdf7c pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x011a8daf fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x018edcce cpdma_ctlr_dump +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01cd8083 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x01d26e20 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01fa9381 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0224101a pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x02288470 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x023e8e77 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x028dc042 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x02b34788 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x02b5c677 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x02c4210b dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0319c769 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x032375b0 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x032f56a4 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x03394cbd sock_prot_inuse_get +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 0x034d00a6 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03bb2e6c wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x03c46f25 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x03c61c7c register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x03cc1dd8 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03febb78 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x0402b504 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0403dab7 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048de0f8 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +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 0x04fe885c raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x0503c736 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x051daa98 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x0532efe9 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x0549a7d5 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x054cefca __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05542702 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x056914b6 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x056ca8c3 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x05794704 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05910732 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x0594d1ae da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x05963b07 omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL vmlinux 0x05cf8b0c fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x05e96887 gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x05fc654e inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x061c1c96 of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x06228db2 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062f6aaf da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x06312354 reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x063d72e9 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x06438115 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06586054 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x067f6d8c dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x069a1163 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x069abe14 uniphier_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x06b98375 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x06d36fe2 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06df5381 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x06f6d9ac clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x07290eb0 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x0731089b pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x074059ac power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x07684a40 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x07ac5ddf fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x07ad1e3a devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07f24050 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x0813a036 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x081bae11 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x082f30e8 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x08415439 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x08620ea3 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL vmlinux 0x08a29856 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x08b38086 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x08d7b5c5 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x08e8e73f usb_add_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x090a4c3d bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x0914e762 of_dma_controller_register +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 0x095be072 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x09750336 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x09aac805 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x09aae457 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x09b112a9 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x09decb21 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x0a30c58d pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x0a3b0878 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x0a55c2e3 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x0a58e3f1 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x0a5be02a tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x0a6097cb get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x0a7d0127 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x0ac731ec devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x0af8cd97 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1032b5 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x0b10a136 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL vmlinux 0x0b335a4f sdhci_send_command +EXPORT_SYMBOL_GPL vmlinux 0x0b365075 snd_soc_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x0b7ae2c5 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x0b87780e ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x0b8ec8f1 sdhci_set_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x0bb00160 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0bbae511 return_address +EXPORT_SYMBOL_GPL vmlinux 0x0bc177de phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bda5614 snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x0be012fd ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x0be9b891 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x0bf72281 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bffb4ef event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c104b84 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x0c149ef9 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x0c252750 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c3ecbd4 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x0c3ff51c pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x0c50a3d3 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x0c5efe3a blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c675127 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x0c67fc71 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x0c685a48 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x0c6f62d2 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x0c7b46b6 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x0cb04d0d debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cca359b of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x0ccdfd08 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x0ccff085 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x0cee12b1 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0cf19e38 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x0d0ec99c gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x0d2260e3 md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x0d2f5eb1 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d651957 of_genpd_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x0d6e831f gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d7fb969 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x0d856c7b sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d8ace7b blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x0db78f99 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0ddc6fd5 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x0df1a9c5 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x0dfa242e debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x0e6570a0 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x0e6b270a ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x0e70cd9b devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x0e7d66ef snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0ea6267f irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0eb80afb gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x0ec6d778 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x0ee0b25f pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x0ee70cef extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x0eebc304 kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x0efe1d73 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f45eb5b raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x0f55d9f6 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x0f72f159 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f75d23e __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x0f7f0d2d bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x0f9f05bb tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x0fb7a798 mtd_point +EXPORT_SYMBOL_GPL vmlinux 0x0fb8f650 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x0fe6472d scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0ff9af09 cpdma_ctlr_int_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10561b95 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x106180db register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x106f9c51 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0x1073f2d6 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x108073e3 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x108c52c3 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x10964ef3 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x10d5303a dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x10e54198 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x10eb8697 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x11025677 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x11029de2 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x11069390 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL vmlinux 0x11189efb dapm_clock_event +EXPORT_SYMBOL_GPL vmlinux 0x113822cd usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x115f6459 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x1177e3e9 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x117e3fc3 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x118180f0 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x11b42783 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x11c31465 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x11c606ea ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11f359f1 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x11f69ebb of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x12088c1b virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x120c05e5 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x12112ab2 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x12120894 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x121e3508 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1226197c led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x123e63ad ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x124b913c add_mtd_blktrans_dev +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 0x128dfad6 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x12a8b4e8 mtd_erase_callback +EXPORT_SYMBOL_GPL vmlinux 0x12bab11d fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x12c377ac devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x12c38c53 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x12cdc14d usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x12d05d22 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1329b4c9 __of_genpd_xlate_simple +EXPORT_SYMBOL_GPL vmlinux 0x13347565 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x133618a7 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1377f9ca devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x13984ba7 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x13a4a020 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x13a5b6aa ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13d665ae of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x13ddbda1 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0x13feb4cc kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x141c564e omap_dm_timer_set_load_start +EXPORT_SYMBOL_GPL vmlinux 0x1420a333 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x1445ce60 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x14496e3c i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x1490f585 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14ae64b7 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x14af3e2c inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x14bd0c4a cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14caaefd da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x14f16063 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14f74bb6 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x150ea93d __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x152eef7d pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x15379e50 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL vmlinux 0x154a81ea snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL vmlinux 0x15548a06 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x156f1ce8 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x1575383c dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x15762f63 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x15801a2a snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15a4401e ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x15b8f3e8 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x15c598c9 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x15cd481b pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x16075d30 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x160779dd ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x1617155e i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x1619345c snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x1651772c pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x16591c75 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x16596db6 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x1659f8a7 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x167dbfd0 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x16958aa1 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x16a6b5d2 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x16b4f650 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x16f6e38a rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x170f8908 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1712c8e0 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1717a05d omap_get_plat_info +EXPORT_SYMBOL_GPL vmlinux 0x171d33ed regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x173f8a39 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x17400c5c tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x174aabeb snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL vmlinux 0x174c83c5 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x174d5a74 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x174f6b2c clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x1761d40a snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x17692176 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1783cf69 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x179b775b subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x17a66399 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x17aa8a2c regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x17cda7a7 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x17e9eb1c platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x17fe07a0 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x18070a32 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x180ceb9d __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x1818ada2 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x184301c5 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1859476f dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x188ef52d snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL vmlinux 0x191102e7 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x191f09d8 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x192441c6 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x1927a4c9 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x19351c02 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x195ac700 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x195e4eb1 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL vmlinux 0x197c6c33 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x19928635 mv_mbus_dram_info +EXPORT_SYMBOL_GPL vmlinux 0x1995831a devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x1997b4ff crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19b33b0d extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19dc1f08 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x19df8e7d platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19ebda2b xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a00b4f8 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x1a13e283 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1a2a5e49 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x1a2df965 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x1a34782b of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x1a61e302 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x1a7d16f6 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1a9d1ae1 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x1aabe552 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x1abab5f9 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x1ac1cc1c fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ae1d0b0 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x1af77cf8 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x1b0aac21 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x1b1edd96 snd_ctl_activate_id +EXPORT_SYMBOL_GPL vmlinux 0x1b2fd27f del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x1b3261e0 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x1b35bf94 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x1b383499 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x1b3f48d4 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x1b491565 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x1b4b5e0f of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b5c849a snd_soc_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x1b5cafcf fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x1b75c142 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x1b771e43 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1b7ba912 crypto_unregister_template +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 0x1bd75460 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x1be64330 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x1c013e83 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x1c100098 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x1c3af067 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x1c51f770 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x1c52272a usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5e21ac nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c6616bb attribute_container_register +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 0x1c8c8768 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x1cb1f182 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x1cdd6cb2 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x1cf1c077 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1cf4bb3b sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x1cfcebc5 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x1d0f9e7b rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x1d186ec3 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2f7ecc dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x1d360168 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x1d53ae38 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d60791e rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x1d61e1f6 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x1d6f35f9 smpboot_register_percpu_thread_cpumask +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 0x1d7f6059 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x1d914a14 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1d95d0b4 get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x1dbd2e89 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x1e0df4e1 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x1e101925 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x1e20a171 of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0x1e2eebaf x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x1e38208a usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e5b1487 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1e667b61 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x1e69339a snd_soc_component_test_bits +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 0x1e968f77 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x1e9a276b driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x1eb8027b irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebb4734 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x1ebd572c elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec1114b fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x1eca9253 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x1eddfdff kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x1ef63a1e usb_gadget_probe_driver +EXPORT_SYMBOL_GPL vmlinux 0x1f04e12c da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x1f0e8ac9 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x1f20a5e3 snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1f2e5d55 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x1f49e002 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8ad86a debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fa5b9de raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x1fcecfac snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0x1fd6cf4a pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x1ff15915 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL vmlinux 0x1ff6c8b8 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x20191ed7 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x202271b0 mtd_lock +EXPORT_SYMBOL_GPL vmlinux 0x204acd25 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x2081021c device_del +EXPORT_SYMBOL_GPL vmlinux 0x20ab49aa regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x20b0a759 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x20c1b0ba kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x20c486bd blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x20dc1ae7 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x20e1580d regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x210bedd7 amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2138f49a bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x2141e0f5 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x21463bdf regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x21473241 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x21784928 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x217f10fb platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x218661a3 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x218b4e4c power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21a6594c of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21c28b33 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21fbea33 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x21febf58 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x22058432 arm_iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x2210690b sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x2211eb53 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x22124ab5 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x221bde19 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL vmlinux 0x222286d2 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2226b9ab adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x223e2022 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x22556159 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x226a674d atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x228c98a2 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22aa78ce tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x22afa5b0 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x22e26419 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x22f2eb54 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x22f9d6cf cpsw_ale_control_set +EXPORT_SYMBOL_GPL vmlinux 0x22ff27a3 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL vmlinux 0x231dd796 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x232a0b3a kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x23392174 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x235a25ea snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x235cd677 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2390f2b7 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x23927f4e bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23979b9f ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x2398cd3c genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x23a48d49 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x23ab3469 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x23af27c9 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x23bfd15d uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x23c799f0 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x23eeefe5 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x240b072a sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x2438f698 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x24397d37 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x243d4ebd iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x244c1899 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x245c2cd6 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24827194 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x248983b7 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b0e61c put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x24b5e541 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x24bfb20a netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24c47dbb clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x24cff53f pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x24d8d0fd snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x24e7d155 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24edce5d __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x250cb992 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x251d683e regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x252cf153 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x2535fcd1 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x2551cd32 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x2588fb10 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x259eb1ac rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25a7d909 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x25bb8230 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x25bc0e74 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x25e4fa8c btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x2603abc3 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x260498c6 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x26068149 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x261098a6 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0x26168c8c ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x264f5a03 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26641c7f of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x266a52c7 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x266aecbb ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x26704290 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x26743a0e pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x269f7203 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x26a3ea83 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x26adb815 thread_notify_head +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26bd5ac6 crypto_attr_alg2 +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 0x26e741d8 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x26e93af8 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x26f34e63 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x270e415a dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x27135f69 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x2716dd6b subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2727239e nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x27409e66 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x2745c80f pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x276f1947 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x279625ba platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x27a62710 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x27a92bf0 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0x27b3aaca irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x27b95406 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x27bb923c gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27c313a4 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x27e86ff6 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f66e1c mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x281f019b xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x282cb9c3 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x2830d024 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x28479991 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x28b6acb6 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x28eac8b2 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x294f0702 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x295bbced sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x296faabb bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x2981097f scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29af3132 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x29e8fe69 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f2081d regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x29f6e37b rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x2a0c169e of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x2a182f0f crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x2a1959ed __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x2a1c0b4e dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x2a2a8ae9 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x2a39be3e unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a816a05 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x2a885976 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x2aa3cd48 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x2aa7b5d0 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL vmlinux 0x2aae43f7 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x2ab149e7 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x2acca630 snd_soc_platform_read +EXPORT_SYMBOL_GPL vmlinux 0x2ad9d326 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x2af74268 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x2b1b886c clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b403bf4 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x2b6154b4 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b95514e platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x2bab0ccf __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x2babe81f __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x2bcbe5b6 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x2bcc688d wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x2bd498fd pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x2bea0f47 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c01498a adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c3bd8b7 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x2c4cb485 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x2c62e10e blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x2c6831b8 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x2c7124c1 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c800959 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x2c92bf51 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2ca60b3b of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x2cb6e586 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x2ccda2ef kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x2cd3628b regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x2cd7d86c mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x2cdaf6eb regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2ce87326 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cfa3c23 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x2d014edf pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d24511f debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x2d3a7739 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x2d3c83fe usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x2d4014a7 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d4f2fbe wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d863aeb snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x2d8753ac pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x2dad9b05 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x2dc9d6ed ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x2dcc544a sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x2deacc17 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x2defa1db rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x2e19cf49 __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x2e21fe91 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e23f328 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x2e278f88 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x2e2ddc6b regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e31943d snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL vmlinux 0x2e4ba8c4 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x2e6e1b1d gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x2e742b00 hrtimer_start_range_ns +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 0x2ec89bbf mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x2ef4d512 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x2ef6b5bf smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x2efbcb79 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f2737d6 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x2f40688f scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f59fe6d handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x2f612d77 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x2f64c759 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f772e5d ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x2f788668 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2fc46e25 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2fc7b541 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x2fd05313 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x2fd69aa8 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fec392f __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x2ff1d4f1 snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0x2ffc2094 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL vmlinux 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL vmlinux 0x304f6609 input_class +EXPORT_SYMBOL_GPL vmlinux 0x305bb5fe usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x306b2240 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x307d6750 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x307e7e32 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x308c8464 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30a7a8f1 sdhci_get_of_property +EXPORT_SYMBOL_GPL vmlinux 0x30b9b9c6 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30d92352 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x310ed281 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x31149e21 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x311a0fa3 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31478045 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x3158bc22 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x3159abcf kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0x316519e2 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x3166fa65 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x31739456 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x319e4335 omap_dm_timer_set_source +EXPORT_SYMBOL_GPL vmlinux 0x31baa802 pci_assign_unassigned_bus_resources +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 0x31e32366 mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0x31f39572 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x321a5ad8 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x3249e55f cpsw_ale_destroy +EXPORT_SYMBOL_GPL vmlinux 0x32597854 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x326a44ae fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x329898ca pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x32a34aef udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c0cef0 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d772f4 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x32ece375 snd_device_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x330320f7 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x331152a1 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL vmlinux 0x33179eae regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x33637f5f snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x3363dcf8 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x336ca270 sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x3372acb2 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x33bd453f snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x33d60be4 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x33dbb25b ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x33ee3ab7 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x33f01852 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x33fa2303 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x33fc6ef4 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x34077ab3 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x341643ba omap_dm_timer_modify_idlect_mask +EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x34366132 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3437cce9 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x34475a8f bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34800af2 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x3496d386 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34b7b0a6 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x34c78ba5 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x34db76e4 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x34ed69ee crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x34fad8ec bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x350384c3 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x3521a885 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x3547691c wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x354afe7f of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x354c58ec snd_soc_register_codec +EXPORT_SYMBOL_GPL vmlinux 0x3563bf68 omapdss_of_get_next_port +EXPORT_SYMBOL_GPL vmlinux 0x356dd380 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x356fb7c1 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35be360f iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x35daf5ac arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x35e75ef7 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x35f8f780 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x360b1f56 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x363947ce snd_soc_debugfs_root +EXPORT_SYMBOL_GPL vmlinux 0x368d0faa blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x36985a96 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x369fedfb crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x36be736b of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x36c496ea thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x36d7f601 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36df3140 snd_soc_dapm_free +EXPORT_SYMBOL_GPL vmlinux 0x36e02bdb __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x36eeca9a platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x36fb0c2b sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x37302ea2 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x3779c5f5 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x37bfcce3 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL vmlinux 0x37ec8f04 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x380cacee __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3811ced8 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3811fb24 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x3860de25 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x386b6a44 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x38750606 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x3884e380 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x3886f27b dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x389d02a3 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x389f9d46 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38dec40e tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38f784e2 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x3909d2b7 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x390eeeef perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x397baa11 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x39bc4af9 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x39c86295 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39f66b63 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x3a0846a9 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a3d9b2f pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a3e2b4f nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a503176 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a6a81b6 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa1bd00 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x3ac22374 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3adc9686 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x3ae02bd7 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x3ae25ea1 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x3afa8a91 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x3b01b1f1 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x3b1dbd4c crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x3b284dc6 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x3b2c0e09 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x3b3a13f2 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b5653a8 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x3b5b6cbd __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x3b87394b __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x3bb00e3e tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x3bc6b0ac __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x3bd1f3a9 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x3bd7948f sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x3bfa6694 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x3bfff458 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x3c1361ad i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x3c2383f2 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3c29a2f9 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x3c46ee02 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x3c667a90 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x3c7397ce devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x3c75b1b1 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x3c831441 arm_check_condition +EXPORT_SYMBOL_GPL vmlinux 0x3c904a72 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x3c9553ee gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x3cabb4ab regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3d16b550 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x3d16f4d0 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x3d17048c devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x3d1bfd6a transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x3d2585d3 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d5f42e8 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x3d73df2c thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3d9dea46 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x3da7e3aa regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3db51536 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x3dbf2b41 gpiod_count +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 0x3ddbdbb7 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x3de8c32b da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e2a53ef dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3e3a0990 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x3e410620 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3e547ec3 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e845dd9 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x3e924e67 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x3e9a8818 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x3eedac1f skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x3ef08c2e of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f22013d regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3f224df2 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x3f333b0d usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x3f51501d pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x3f664fa5 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x3fa08845 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fb688f9 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x3fc7b4e5 sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0x3fcfe4d4 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x3fde8bf3 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x3ff5f19d phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x3ffbc64a snd_soc_resume +EXPORT_SYMBOL_GPL vmlinux 0x40088fc6 mtd_get_device_size +EXPORT_SYMBOL_GPL vmlinux 0x400c7301 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x405db1ed thermal_zone_device_update +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 0x409125f7 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x409299b3 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x40a04fc4 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x40abfa54 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40e9dce6 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40fa8e11 snd_soc_info_volsw +EXPORT_SYMBOL_GPL vmlinux 0x41203b7c fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x413e4bab devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4141b3ee wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x414febf5 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x415743cf usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x417bdf7a __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41819418 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x4181bfef virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x418e3bcb usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x41937d8e ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x41c5274c __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41dc9e68 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x41ef6f87 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x41f78277 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x422cabaa unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x4241fe3a devm_snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426d3b08 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428d1e60 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x42a36759 snd_ac97_reset +EXPORT_SYMBOL_GPL vmlinux 0x42aa0a2c crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x42b9fb8e pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x42cc672f pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x42d0ed98 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x42e15263 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x42f75fce scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x430ac48f snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL vmlinux 0x430d0d21 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x43164dbe crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x4320e347 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x43335f74 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x4334b16b of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x43585a04 of_css +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x436303c6 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x43799696 crypto_rng_reset +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 0x43c53cab crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x43cf5cc6 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43ea74de wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x43efdc55 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43fa95ed mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x440cd0d4 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x44538211 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44a39e1a vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x44aa8bb3 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44e48b92 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x44e97b7b clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x44ece5f0 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL vmlinux 0x450cd60b ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x4513d05e __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x4525ddab dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0x452be962 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4563838e wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x4564aa81 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4593a2eb tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x45af3afe gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x45b1cfe9 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x45b3f6f8 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x45b619f7 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x45ba1367 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45d580ed tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x45d872f2 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46a9044d mtd_is_locked +EXPORT_SYMBOL_GPL vmlinux 0x46ab8209 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x46cf4e11 register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x46dbeb0a devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x46e32dd5 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x46f3e5d8 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4728dee1 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x47292b27 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47749866 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x477b40cd simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x4781cab6 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x479c455f pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x47a6bf46 usb_get_maximum_speed +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 0x47f5ae02 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x47f62598 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x48065b9c usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x48077575 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x4859bb43 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x4862a04e __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x4863c856 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x486b6940 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x4871fb7c __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x488b08c4 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x488bf1ee pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x48ab789d pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x48d3fd42 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL vmlinux 0x48dba51d debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x49187d23 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x4960ed8b __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x496f0a90 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x49902502 deregister_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49a670ac __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x49b259f3 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x49c3b12e snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4a2373cd tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x4a42110f subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x4a443cbd sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x4a4aef54 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a63f3b2 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4a6e0d3c of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x4a6ebd4a ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x4a7a94a4 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x4a87081f iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x4aace44a fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4aadda1a regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab1a16b usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x4ac99092 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x4b08f538 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x4b0cddaa transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x4b558289 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x4b5c74f7 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x4b7c8e00 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x4b8928e8 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x4ba02e21 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x4bafcdd8 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4bb62a28 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x4bdb7cdd usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x4be57587 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x4c0abb78 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x4c0d32ba trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x4c115d47 of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0x4c1e6c22 max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0x4c20cae9 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x4c38a44a crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x4c45f4e9 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x4c47ec15 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x4c506f51 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4cb2f559 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb95db9 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x4cc6bca2 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x4ce7df2f dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL vmlinux 0x4cf7a49e snd_soc_lookup_platform +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d02734f of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x4d0925b5 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x4d12f7eb securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x4d166f7d serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x4d217dd4 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4d3ebdfe pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x4d6931ee list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x4d69cb72 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x4da1ec9b usb_udc_attach_driver +EXPORT_SYMBOL_GPL vmlinux 0x4dac8ebc virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x4dad1672 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x4db923fc sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4dd5b806 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4df89c2f snd_soc_bytes_info +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 0x4e40388f vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x4e63db50 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x4e80eb2a pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x4e887ba2 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x4e9828b6 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x4e98c406 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x4ecc6aaf led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4ed00765 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4ed514ce kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f1f740b snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL vmlinux 0x4f257bca crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f78ce7a of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x4f955851 snd_soc_unregister_component +EXPORT_SYMBOL_GPL vmlinux 0x4f96ee03 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fc85d7f ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x50094d7d blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x5036fc03 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x50419122 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x504bcac5 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x50546ad9 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x505e1315 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x5060b68c dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x507748b3 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x507bede3 of_resolve_phandles +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 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50997ac1 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x50b6c538 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x50be0da0 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50dd0d01 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f7989b input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5117b78f bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x512970fc cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL vmlinux 0x5132adb9 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5162cb73 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x51855f81 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x518dd98b crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x51975462 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x51976aa0 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x51cce4f3 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x51e996d6 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x51f37e85 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x5200c3b4 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x52066c78 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5208e43b sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x521c795c arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x521c9ea3 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x521f1795 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5241870f tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x52707269 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x52782b24 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x527c20e4 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x529986a7 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52cb6c0b gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x52cd8b6f power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x52f895a7 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x5302ae67 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x531a4023 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x532749f1 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL vmlinux 0x5327ceba regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x532abe14 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x5348b274 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x534f4b23 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x53836cba kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x539da2d1 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x53c689cf kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x53cc1234 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x53ec649d of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x54053c7f default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x542300dc unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x54251abd irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x544aab61 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x5455728e hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x545fec86 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546459b8 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x5468e442 snd_soc_write +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x5476b744 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x548a8de9 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x548b2bd3 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54982375 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x54b11ad9 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x54ca292e security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x54cb0e42 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x54ccf840 arm_iommu_release_mapping +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x54df1a04 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x54e14dbf omap_dm_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x54ff8d6b device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553d1e99 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55617f2f virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x556f8f88 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5581f222 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x5583535d dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x558bf8e4 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x55a66fa8 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x55e3bbf1 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x55e815e4 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55ee3860 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x5611e1b2 tpm2_calc_ordinal_duration +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 0x56496c38 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x56563127 nand_release +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x56af1e27 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x56b073d0 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x56b45b6c usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56d29f02 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56dec927 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56f5fe33 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x57201e2c ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x574b47a5 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x574e9c9e mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x57609ba3 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a5829f usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x57a5edcf user_update +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57ca984b usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x57f91a15 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x58063ede srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x58213425 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x5840df31 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x586f9c4d mtd_writev +EXPORT_SYMBOL_GPL vmlinux 0x587a8123 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5882a9ab __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x588329da power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x58874ff5 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58b540ec call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x58c87cf8 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x59280855 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x592c84b1 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x596788c6 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x5970fe5c usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x59778391 omap_dm_timer_request_by_cap +EXPORT_SYMBOL_GPL vmlinux 0x59827431 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x598cb553 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x59c2c8e6 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL vmlinux 0x59eaacc3 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59f38ef9 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x59f70b78 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x5a0a5def tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x5a13ac74 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x5a20747f crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x5a551aa6 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a8ded9e anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x5a8f213c cpdma_ctlr_eoi +EXPORT_SYMBOL_GPL vmlinux 0x5a9daeef crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5acb7c63 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x5acf6567 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x5ad6d04e of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x5ade3420 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x5af78807 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x5afbf9e4 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x5b1395f1 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x5b1745a6 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x5b1c79ff virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x5b3fcb7e wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5b409754 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x5b433531 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x5b491ebb __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x5b4b56be unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x5b6362c0 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x5b673226 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x5b6f46aa ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x5b7caf49 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x5b9896e6 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x5b9f328f spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x5baae6d5 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x5bbb9884 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5bc737a8 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5beb90ae of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x5bf2465c rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x5c11b660 cpsw_ale_control_get +EXPORT_SYMBOL_GPL vmlinux 0x5c23140c pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x5c2498c9 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x5c2fe4a5 cpdma_chan_stop +EXPORT_SYMBOL_GPL vmlinux 0x5c4187cc clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x5c5831c6 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c6bf5f8 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5c7ad972 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x5c8ed07a bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x5c8fc1e8 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x5c921094 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x5c93ae64 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x5c96bf8d pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x5c9bccbf usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x5c9d76b8 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x5ca8e9a5 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cb70769 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cc984c3 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x5cd7b9dc of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x5cde0cc0 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x5cde3cc4 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x5cdead5b ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x5d11f22d blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d141628 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x5d148cc6 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x5d153a7a hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x5d193395 devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x5d1d6af0 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x5d541097 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x5d587813 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x5d659504 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x5d6ada83 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x5d6d72b9 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x5d6e30c0 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5da9b224 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x5db12537 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x5dbfc705 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x5dc7bee6 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x5de913ec devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x5de92c9d pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x5df160b6 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e0071fd xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x5e20df5e devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5e400f7a __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e4d6d91 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e608e03 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x5e807f51 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x5e9d5bf1 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x5eb426a4 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5ee03476 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x5efd3ab8 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x5efe130c dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x5f267b9e omap_dm_timer_write_status +EXPORT_SYMBOL_GPL vmlinux 0x5f516b13 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x5f744197 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x5f82b875 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x5f8b91ce ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x5fc3c8c6 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x5ff09696 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x6006d5dd ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x605d9f75 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x605e10b7 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6062eda9 omap_dm_timer_set_int_disable +EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init +EXPORT_SYMBOL_GPL vmlinux 0x609d44b5 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a5139c snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL vmlinux 0x60a7db0b power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x60c933a3 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60ee8978 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x613cd482 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x614f34ef fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x61570672 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x615cf0cc pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x616b272c dapm_regulator_event +EXPORT_SYMBOL_GPL vmlinux 0x616cf5db evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x616f2f00 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x61a40dc3 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x61a55a01 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x61b1e122 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x61bdbc3b preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x61cce94e ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x61cdc415 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x61d1407a cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x61d5ac5f device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x61dec856 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x61df87b0 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x61f83689 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x620aeef6 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x620d7f5b rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x6218f9fb netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6231031e dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x624dd3ed regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x6298fb55 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x62b5650b pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x62baa0ae devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x62ce1e8f regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x62cec186 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x62e43e6d do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x62f495aa fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x631f6fe2 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x631fc656 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x634308da sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x63431b6b kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x634d77c9 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x6368b250 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x636f667b crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x63866310 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x639705a2 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x63a94394 sm501_misc_control +EXPORT_SYMBOL_GPL vmlinux 0x63cd94ad __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x63d0cb02 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63f554f5 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x640042e9 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x64067500 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x6450ea2f of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x64813200 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x64bd07b1 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x64caaeb4 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x64d831e2 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x64de26a5 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x64f54bc0 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x64fa570b of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0x6504ae0f skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x6505ca60 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x650b86c7 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x650c9f4b usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x65427d72 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x65431be6 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x654df577 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x65582c0a pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x655fcb8c icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x6568c2aa ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6573148c init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x657a1817 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x657e73c6 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x6589bcc4 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x658ffa2e nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65e1ffd9 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x65fa8635 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x66002e13 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x660ed539 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6638490d virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x6644bd16 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x666110d0 omap_dm_timer_enable +EXPORT_SYMBOL_GPL vmlinux 0x66667d86 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x6681d51c devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x6683b422 device_add +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0x669f5389 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x66a079e0 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x66a89db2 regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x66c309a1 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66c8b321 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x66cecb2d crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e130fd extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x66fc3e1c skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x673aac57 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x67781f75 snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0x678ac425 cpsw_ale_dump +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679a029b clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x679e94e3 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x67aab3ca regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x67d891b3 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL vmlinux 0x67dd2821 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x67f66531 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x6800d65a pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x6832d0f3 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x689ab3ab device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x68a654ee page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x68a9670f relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x68c44150 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x68d33166 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x68dedbb1 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x68e47b2c cpdma_ctlr_destroy +EXPORT_SYMBOL_GPL vmlinux 0x68e8a946 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x68ed43e0 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x68f815b6 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x68fe828e wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x68ffee15 mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x690a7270 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x690c9719 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x692c1010 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x693c28c4 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x694be42a usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x69d872c9 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x69dbafcb gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x69e25a97 omap_dm_timer_set_match +EXPORT_SYMBOL_GPL vmlinux 0x6a0601d8 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x6a06f9a6 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x6a12c9dc devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a47f810 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x6a4c1310 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6ddd6a sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x6a6e42fc bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x6a71770a pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x6a851346 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x6a8c8746 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6ab86b76 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x6abe523c sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0x6aec688f phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6af32f85 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x6b0af61a led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x6b1e8904 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b3a20be ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x6b3a471b device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x6b48076e usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x6b51205f component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x6b696a90 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x6b6d707f usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL vmlinux 0x6b7e0b7c clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6ba9f8fb of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x6bc0112e tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x6bd7dd4b virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x6bdd6942 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x6bfb9f41 component_del +EXPORT_SYMBOL_GPL vmlinux 0x6c02c8a4 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6c060cbc input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c08762b usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x6c0a509c snd_soc_read +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c2cd4ff raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x6c2d5226 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c4e27b6 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x6c4f060a class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6c5f656a crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6c7d4983 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca6103c reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6ca76c29 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6caef60e disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x6cb5611b unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x6cbff3b2 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x6cca7fec aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cf0e3ee of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x6cf7c8d1 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x6cf8d019 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x6d2a75d3 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d338757 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x6d424356 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x6d4ae6f5 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x6d6312ea stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x6d7aeafa virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x6d9536d0 omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0x6dbf59ff inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x6dc403e4 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x6dcbc0db snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x6dd0d133 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x6df09193 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e063316 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x6e1090eb iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x6e338820 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x6e3bbdc1 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x6e3bef1d trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x6e44d79e dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x6e50ee71 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e5b7656 cpsw_ale_stop +EXPORT_SYMBOL_GPL vmlinux 0x6e661b61 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x6e74de6b mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x6e790548 clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7fa2a3 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e928eb1 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x6eee078b reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ef3052f ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x6ef3aae4 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x6f087182 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x6f0ae10f kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x6f132924 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f273977 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x6f2764ca usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x6f5c638f kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x6f7c616f root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f801f59 put_device +EXPORT_SYMBOL_GPL vmlinux 0x6f8872e0 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x700494e5 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x700a777a key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x70151900 dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0x704de15a regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x70506047 pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x70535ea5 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x7060e8a7 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x70696bd6 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x70717906 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70b20568 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70bdad83 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c82044 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d1d9e1 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x70eacb13 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x70f05bb7 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x70feb3c8 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x71008581 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71317f9f of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x71376be7 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x71385bda snd_soc_bytes_put +EXPORT_SYMBOL_GPL vmlinux 0x715bd5a1 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0x715d3dbe unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x718e1ae0 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x719cd317 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71afe499 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x71c2f4cb inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x72079350 snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL vmlinux 0x72306f22 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x72368f25 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x724b1f37 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x726c4a7e shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727de5af pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0x7291019b __cci_control_port_by_index +EXPORT_SYMBOL_GPL vmlinux 0x72ae76a7 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x72d4a115 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x72d81766 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x72dd0e63 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x72e785ab phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x72f8344b dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0x72fab59e skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x730bd0c7 asic3_write_register +EXPORT_SYMBOL_GPL vmlinux 0x73396e8b ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x733f492f register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7342beba napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x734b1cac snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL vmlinux 0x7350b140 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x735412fd ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7362ec10 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL vmlinux 0x737bc468 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x7392a0e2 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x739510e2 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x73a1c800 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a6f495 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x73b18afc crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73cc6975 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73e397aa __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x73e7ef0f mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x747d8e68 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x74822f8b i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74a55a8a devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bdf5af wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x74eaec56 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x750e1933 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x75152b85 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x751c624d crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x753535ee usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x754017d9 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x7544b3f5 omap_dm_timer_request +EXPORT_SYMBOL_GPL vmlinux 0x7548999d pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75a014bf clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x75a5526a of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x75bee4b3 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75cdc05d extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x75e40ebb amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x75f90d86 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x76135b3c ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x761e0aca btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x761e756d tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x76251a8d ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x764928a2 cpdma_chan_create +EXPORT_SYMBOL_GPL vmlinux 0x765193f7 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x7664ef86 snd_soc_add_platform +EXPORT_SYMBOL_GPL vmlinux 0x766bc026 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7693ae9e snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0x76a7ed84 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x76a8679b pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x76b38d11 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x76bd0b51 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x76bd3278 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x76be065d usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x76d25d64 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76dad5aa pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x76e672c5 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x77075fe7 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL vmlinux 0x77095d76 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7723b262 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772ae923 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x773d05be to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77744e6a omap_dma_filter_fn +EXPORT_SYMBOL_GPL vmlinux 0x778a06b5 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7793f9ff wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x779658d1 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x77a83dea tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x77a98748 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x7809b969 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x7814ed35 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x782a701e pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x782d1058 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x78311e4e ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x78449b84 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x7849775c devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x787aa35c clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x787b1c36 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x787d0396 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x787efd87 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x789feafb snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0x78a3f5a4 cpsw_ale_start +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78b3c17d security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x78b892f9 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x78cd8f22 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x78d9b180 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x78ecffbc sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x7903490f ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x79114984 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x791211df sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x7924571d pm_complete_with_resume_check +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 0x795e72e8 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x79aff10d xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x79cbf741 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e28066 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x79f659ac __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x7a0651ff regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x7a22925b devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a4ad393 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x7a5b2243 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x7a6ada53 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x7a8deeec devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a8f2f1a snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a95954a __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7a97fd33 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x7aa14038 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ac0dae6 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x7ac469bc ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x7acc0dcf gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x7ad2ec9c trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x7adb3003 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7ae06a00 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x7ae0e713 unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x7b0dde53 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1a87d5 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b372ff2 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7b3bfebd tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7b4ef3e4 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x7b76087d class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7b7626f9 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x7b79089c devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x7b7f3a0f of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x7b84ac65 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x7b84e94c mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x7b92cd83 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7bbf7a51 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x7bcb6be2 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x7c6a49ce unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x7c78be36 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x7c90052b wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7c92561d usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7cabcd1a hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7cb54cfb snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL vmlinux 0x7cc82b58 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ce70431 rtc_update_irq +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 0x7d2097fe snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL vmlinux 0x7d2cbd40 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d72ab38 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x7d73f305 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x7d776e72 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x7d7d13b8 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x7d9e2080 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7da00df2 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dc032aa blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x7dd49935 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddb7c26 register_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x7dfaf39f cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL vmlinux 0x7e042698 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e73f984 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x7e76f724 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e996d4c power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7ebea5b3 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x7ed4edb2 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x7ed68941 asic3_read_register +EXPORT_SYMBOL_GPL vmlinux 0x7eeb39fb debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x7eff421a snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL vmlinux 0x7f1873d2 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f3a6816 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7f426708 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x7f445858 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x7f632a30 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7faa8da3 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x7fb48f8d nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x7fb9a129 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x7fbb5711 probes_decode_arm_table +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fcdcd64 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x7ff6c523 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x80021f46 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL vmlinux 0x800b6ed0 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x8010d2c6 percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x801c3a74 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0x803163d7 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x803de3d3 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x804c33a9 usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0x804d798e xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x804f6583 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x80698a68 pci_ioremap_io +EXPORT_SYMBOL_GPL vmlinux 0x8076c503 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80983f82 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x80a12e03 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x80a9966f gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x80bdc7e2 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d22b4c wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80eed54d clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x8105880b pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x810bc60e iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x810e91d4 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x8118a782 omap_dm_timer_start +EXPORT_SYMBOL_GPL vmlinux 0x811a6df6 class_interface_unregister +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 0x81688942 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x8168cddc tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x81ae5ec3 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x81b10733 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x81d9779d class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x81e20156 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x822f51c8 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x8233ed9d usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x82385f73 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x824a3c39 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x824bf8ae mtd_del_partition +EXPORT_SYMBOL_GPL vmlinux 0x82567f71 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x826869db component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x827dd021 omap_dm_timer_stop +EXPORT_SYMBOL_GPL vmlinux 0x829a9b55 snd_soc_limit_volume +EXPORT_SYMBOL_GPL vmlinux 0x82a4e426 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x82ad1e86 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x82b20172 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x82b285fa srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x82bc9d86 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x82bca891 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x82bec0d9 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL vmlinux 0x82c61b79 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x82cf6d24 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82db0c77 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x82dd2354 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x82dd6e42 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x82e02b04 omapdss_of_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x82ecafa5 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL vmlinux 0x83028298 cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0x83189d19 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x83208463 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x835b775a __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x8369051a ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x8395a418 device_create +EXPORT_SYMBOL_GPL vmlinux 0x8395d3f9 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x83a5433f of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x83aa8276 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x83b949e6 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x83bf0f25 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x83e19507 pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0x83e29aa8 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x83f07fa5 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x83fc56aa usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x841c1dad simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x8426d8eb device_attach +EXPORT_SYMBOL_GPL vmlinux 0x842da03f dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x8430d60a crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x84856a0d _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL vmlinux 0x848bd0fb call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84b6e194 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x84cba07e led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x84e46781 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x84ec7a33 ata_port_wait_eh +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 0x85144cf1 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x85195c0c cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x8533cefb dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x85393146 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x855d34ad ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x857299b8 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x858bdde7 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x8595084b sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0x85a526d9 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x85a67327 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x85bb9b92 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85c96c9c tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x85d5dc05 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x85d783d3 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x85de6975 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x85e1fba4 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x85ffe94b regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x86205a04 mmput +EXPORT_SYMBOL_GPL vmlinux 0x862b9816 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x8630035c sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x8670e046 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868831f6 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x869731a0 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x86981c66 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x86a82ad6 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x86bcd52a crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x86c34463 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x86d1d715 __ablkcipher_walk_complete +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 0x871018a9 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x87131450 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x8715a18c ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8716223e __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x8717df8b __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x871ebf8f inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x872078cc crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x872b0e0b crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x872e223f device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x8738e2c8 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x8740f50a device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x874a1059 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x87679209 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x87689bf6 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x877c67f0 extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x87932b5f bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8797cd3a cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x87b9e19c inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x87c417e4 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x87d4f71f snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL vmlinux 0x87d8b8f3 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x87ea6ca2 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x88256e32 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x882e2000 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x882f2d6d usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x8832f20d bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x88460a5e fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x886e35b8 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x886fb197 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x8876a6ba ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8898be40 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x889f71d3 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x88a19f55 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88b78ae7 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x88c8da9a inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x88f9c72c ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x8917bb55 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8966797e virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89d4a495 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x89e5ddca pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x89e8ab85 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x89f0f7dc regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8a0becf2 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x8a1a72cd of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x8a1fe7e1 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x8a275bd9 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a5d93e6 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8a741ccb cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x8a76d05d mtd_panic_write +EXPORT_SYMBOL_GPL vmlinux 0x8a826805 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8aa2a125 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x8aab8905 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x8ab5f3b5 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac0748f rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x8ad19a9d ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x8ad1decd usb_gadget_unmap_request +EXPORT_SYMBOL_GPL vmlinux 0x8ad3fd42 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x8ae02b8d amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x8ae30756 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8aec9745 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x8af1e879 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x8afdcd0a regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b2d75c8 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x8b3c866d pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x8b40c9e3 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x8b47229f attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x8b48d87b uniphier_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0x8b775d3a __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x8b7b623e ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x8b7bb4f8 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8b9262e9 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x8bab174e shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x8bafc40d __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x8bb33a0d ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x8bb3fab5 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x8becaab3 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x8bf51e71 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c02ce57 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c067309 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL vmlinux 0x8c16e10c mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x8c1e5072 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x8c2c2202 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x8c2caf00 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x8c3926d7 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8c3e5788 cpdma_ctlr_create +EXPORT_SYMBOL_GPL vmlinux 0x8c3e9ec4 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x8c5ae2cc digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7145a8 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7551c3 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x8c7d0d04 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8c7f30a5 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x8c873345 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x8c8a9c15 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x8c927efe ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x8cb40f4d debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x8cc9a3b9 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8ceb3db0 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x8cf29d2b spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8d226fb4 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d346da3 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x8d63d4c8 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0x8da4ee59 snd_soc_cnew +EXPORT_SYMBOL_GPL vmlinux 0x8db0c442 mtd_device_parse_register +EXPORT_SYMBOL_GPL vmlinux 0x8db1659e perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x8dd2077d blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x8dd47b63 sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x8dd72551 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8dfad0b5 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x8e07cfc9 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x8e209060 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x8e28fc31 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e3f17bd usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x8e42e821 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x8e497760 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x8e512b4a public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x8e751df8 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x8e7894bd __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8e8b13a5 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x8ef027d1 cpsw_ale_create +EXPORT_SYMBOL_GPL vmlinux 0x8ef64339 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f19c782 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f7be562 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8f7e94e0 omap_dm_timer_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x8f7f4b3b blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x8fb69a3a mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8fd6a1dd snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL vmlinux 0x8fe9481c dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8ff2ed6f __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x8ff65fef snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x9004224f modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x901dbca0 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x9033cf8d debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x90481946 omap_dm_timer_get_fclk +EXPORT_SYMBOL_GPL vmlinux 0x904d7374 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x904ef705 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x90515cb7 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x9057f7ab pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x907367f7 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90bd7e05 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x90dc2eb0 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x90eaccad vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x90f53807 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x910caf3c mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0x9115fdf2 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x911b47ca ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x911ecdc5 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x91361044 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x9139967e msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x913c1ee9 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x914978fe cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x916a346e cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL vmlinux 0x917e9588 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x91808b22 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x91822da0 sm501_unit_power +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x919b9d82 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91d10df7 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x91eb69b6 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x91f9f261 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x9202207e phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x92028e82 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x923fd6fc ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924c57ad srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x92592141 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x92652448 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x9285c3b1 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x9287c11c ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x929e0bd6 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x92accbf3 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x92b497f1 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92bbf95f omap_pcm_platform_register +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92f5135d usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x92f8407e fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x92fb04a2 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x93250d83 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL vmlinux 0x934cd3df snd_soc_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x935dd3a0 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x936cbb70 irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x93827167 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x938d6285 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x93c60675 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x93d3b951 of_fixed_factor_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x94077f3a cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x940ea9db __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x941e3bad attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x94388206 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x94592459 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x945ab16c spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x945b6497 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL vmlinux 0x947ff65e pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x94823d53 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x948a2d26 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x948ccf18 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x949334db cpdma_ctlr_start +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94b2e337 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x94b7724b usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x94dae380 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x94dde3cd serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x94e5b22b of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x94f2adec dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950d5df7 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x950df647 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x95472f92 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x954fee58 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x955af1eb synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x955d3b62 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x9560c969 omap_dm_timer_trigger +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 0x95908e6a shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x95a8b847 sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x95aaf085 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x95b00dcf sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x95b60be1 __of_genpd_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95e04566 get_device +EXPORT_SYMBOL_GPL vmlinux 0x95e95b2f pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9623d7c2 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9629f3d1 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x9632e76b vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x964ca31a bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x967a2ae8 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x96919667 musb_readl +EXPORT_SYMBOL_GPL vmlinux 0x96a44052 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x96bea04e register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x96bff426 omap_dm_timer_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x96cb54b8 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x97074cee ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x971d21fc thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x97230b9f crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x973fdcea ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9755a93d usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL vmlinux 0x975e2acb rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x97648a1f ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x9770b14f fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x977b04fa blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x979bbcb7 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x97a64e63 register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x97c4a248 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x980429ee of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x98198e14 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x981d7d83 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x982d84e3 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9836c883 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x9842fa64 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x9849a4be blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9866e2a5 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x986c4794 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98a383ac sm501_modify_reg +EXPORT_SYMBOL_GPL vmlinux 0x98b989d9 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x98bc6331 snd_soc_platform_write +EXPORT_SYMBOL_GPL vmlinux 0x98c9f584 klist_init +EXPORT_SYMBOL_GPL vmlinux 0x98d7603b __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x98da065b __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x9900f58b vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x993a2bda extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x99571ed6 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x995ab809 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x995c5365 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995f506b pm_runtime_autosuspend_expiration +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 0x99a0e17f powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x99b3f923 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99c9330d __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x99ca926b sm501_find_clock +EXPORT_SYMBOL_GPL vmlinux 0x99da32c0 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x99ef9a84 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x99efdc93 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x99fb7b67 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a65b39b snd_soc_jack_get_type +EXPORT_SYMBOL_GPL vmlinux 0x9a69732b snd_soc_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a9cef4b ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9acb7698 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b13cec1 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x9b3af836 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9b461b95 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x9b547672 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x9b550b88 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x9b77b886 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x9b86a1ca __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x9babe121 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9bb1b30d rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x9bdb5fdf pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9be1cbf3 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c183226 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9c1a47b1 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x9c262a68 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x9c37c555 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x9c3e5b59 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9ca31bca sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x9cb3e4b9 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cdc9867 cpdma_ctlr_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cdef131 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x9ce8f9d8 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x9d0dd534 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x9d5baf69 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x9d66f0eb list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x9d671f58 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x9d71b8e3 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x9d72c5b0 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9d746094 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x9d7b46a1 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x9d7f93ff apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9da5f29f usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9db59bda kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x9dc05b2e snd_soc_bytes_get +EXPORT_SYMBOL_GPL vmlinux 0x9dc2c9e6 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x9dc739fc handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x9dd3f9e4 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x9dd63749 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x9dd71860 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e036037 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x9e0ae29c ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x9e2667d5 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x9e2e034d device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e47f3e7 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9e504544 of_get_nand_on_flash_bbt +EXPORT_SYMBOL_GPL vmlinux 0x9e51fa27 sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0x9e5c215c gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x9e7bf71d get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x9e7c4fb7 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x9e8898fe pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x9e892fdf __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x9ea02faa rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ea556f8 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ef12dcb sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0x9efb2565 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f0fc4a1 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x9f327b47 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9f3e0395 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x9f419b68 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x9f4e9c28 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x9f5121f7 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x9f546fb4 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x9f54be86 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x9f5f460f power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f75e602 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x9f78544d find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x9f9c941c ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x9fa8273b of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0x9fb0ef6e ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x9fbed84f platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe81514 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fee9756 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x9ff7221a transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x9ff9bcee ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x9ffdac5c crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0xa006f606 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xa0105ca0 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa013a9cf init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xa01515e1 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa0231875 snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0xa02edab6 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xa033df40 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xa03b56b7 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xa0410b5d pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xa0413ecb driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa082a042 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0xa08cc02c blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xa08cdca6 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xa09ce076 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xa0dca95f pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa11ea0cd __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xa15a86fc devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xa175b415 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa176d5eb ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa1899467 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1baa2c3 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xa1c8e375 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa1ce1229 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa1d2661f usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xa1e319b4 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xa21c982d nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xa223f7ce sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xa25c4075 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa274015a rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xa2759d3c udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL vmlinux 0xa28aa5a6 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xa294e557 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xa29fc485 kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0xa2af02c7 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xa2b64392 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2c79046 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xa2dab67d adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa326d927 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xa3600bfe set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xa3631336 tps65217_reg_write +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 0xa3bdbf54 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xa3d55dd4 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xa3daa76f of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xa3dad24f device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3ef4606 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xa3f443f3 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa406be61 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa41bf636 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xa4230a58 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xa4552e07 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0xa45a9bf4 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xa45f337d tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa472a1b5 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL vmlinux 0xa47774d8 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa485be28 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa486a159 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xa4ce7ef4 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xa5087af8 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xa513628b ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xa52d632f snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL vmlinux 0xa5364dce driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xa53956e8 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xa5733ed9 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xa57e35f3 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xa57e7b1f noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xa580b07e fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xa5ef8c8c fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f8854a usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xa5fec0a3 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xa6193314 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xa61c9df1 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0xa61ca7ae tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xa624ce18 mtd_unpoint +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62a6efd phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xa63fb730 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xa66c9f43 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa67fba3c usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xa69f147c snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0xa6a4936f ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xa6af9615 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6f7d42e snd_soc_card_jack_new +EXPORT_SYMBOL_GPL vmlinux 0xa74bce7e usb_udc_vbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa7562388 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa77a67c4 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xa78f4611 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xa7ba5d49 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xa7c43f97 snd_soc_get_strobe +EXPORT_SYMBOL_GPL vmlinux 0xa7cb6447 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xa7d34813 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xa7d8ea75 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xa7e786cf rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa7ee70fc crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xa807ae54 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xa8261438 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa86727dd phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xa86dbfdc tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xa870d172 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xa8848233 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8bc717e percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0xa8e98132 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xa8f1f137 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xa8f4417f kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0xa8f8e2b7 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xa8fd355d serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xa9044359 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xa91bb096 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93e2b02 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xa94478d8 mv_mbus_dram_info_nooverlap +EXPORT_SYMBOL_GPL vmlinux 0xa95ae0ec blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xa96b96ff pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa975da7a tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xa977d3be device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0xa992c0c4 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xa9c66b1f pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xa9c96e07 omap_dm_timer_request_by_node +EXPORT_SYMBOL_GPL vmlinux 0xa9d0e99a i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e29c6f io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa9e59bf7 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xaa0feb20 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xaa2723ab nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa2ac89a pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xaa2e6e7f usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xaa35e4d8 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable +EXPORT_SYMBOL_GPL vmlinux 0xaa509094 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xaa686985 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xaa6cd76a crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xaa8f12c9 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0xaa9053f2 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xaaa85949 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaabb3567 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xaaeb99fb ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xaaf0f620 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xaaf4667d snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0xab0317c9 amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xab113be6 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xab17eff2 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xab22bc67 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xab238da1 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xab2e5675 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab5c7eea snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab6f1cf7 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xab73572a usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL vmlinux 0xab906eb4 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xab968baa ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xaba13038 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xabb62b05 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL vmlinux 0xac0113fd of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xac2b7ad1 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xac48e898 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xac565065 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL vmlinux 0xac650240 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xac6f8dd2 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xacab2aa5 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xace7b086 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xacf2b9de ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xad16cba9 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xad1cf09e snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0xad4be7f0 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xad4cc01e debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xad5ec235 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xad5edf13 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0xad6f6771 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xad7abbd4 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xad9ba93e of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xadaae449 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadf13b14 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae0999d8 find_module +EXPORT_SYMBOL_GPL vmlinux 0xae0defd3 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0xae16496c __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xae1ad338 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae7d862e hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xae813565 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xae99c32c regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xae9f9d59 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xaeb15fc5 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xaeb1c877 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xaeb6d492 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xaeb988d8 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaecb4e79 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xaecf0de6 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xaed02512 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xaee45dd9 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xaee4bfad skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xaeea0b4e unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xaeeba2be mount_mtd +EXPORT_SYMBOL_GPL vmlinux 0xaef3e50d pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xaf0d5264 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xaf0e405c ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0xaf11f330 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xaf12bfb3 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0xaf188747 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL vmlinux 0xaf25a5e1 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf38d9e6 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xaf40d7c8 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0xaf72256e serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xaf8464c0 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0xaf8b3542 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xafcc3cf8 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xafd35e52 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xafd72a2f snd_soc_register_platform +EXPORT_SYMBOL_GPL vmlinux 0xafde5fed virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xaff5ef28 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb00f8ac4 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xb0128a78 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xb01d5636 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xb0228116 usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0xb0238720 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb03c69c4 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb050f329 init_rs +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb0bea417 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xb0df27fb user_read +EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb1237d31 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xb125ce8c sdio_writel +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 0xb14c1195 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xb17841cd blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1976136 sk_set_memalloc +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 0xb1c7d322 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f28845 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xb2081320 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb20b6c34 omap_dm_timer_set_int_enable +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2364c14 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xb24770bb wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xb2577a2e sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb27adb50 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xb290c33d xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xb2c6a0db free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xb2d50049 snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb32dadd8 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xb33853ae fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xb353f0bb bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xb3568ee2 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb35af263 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xb36712c7 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0xb378c7fd tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xb38c09f3 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xb39af5dc debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xb39ba838 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xb3b84e8f ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xb3e3213a regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb3e745d9 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xb4009aa7 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb4168eb2 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xb4326d5e regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb45bafe7 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xb47ac534 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xb47edce8 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xb485135e add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xb48d8c9c inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bd7e0e sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0xb4cf0322 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb514b421 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb52b35c9 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb5573dc6 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0xb564d794 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xb574ff43 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xb5798899 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb59d587b ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5a4184d device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xb5ad6bbb serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xb5c8cb74 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xb5cba789 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xb5d1e313 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xb5da1920 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5f0cdd2 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb6035aed dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xb61acb8d sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL vmlinux 0xb61ca1a2 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb67788c8 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xb69a5fd7 of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6d2b6dd devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb736b594 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xb7434e64 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xb74bfae0 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb769d8ed register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb +EXPORT_SYMBOL_GPL vmlinux 0xb77cb0a8 cpdma_chan_submit +EXPORT_SYMBOL_GPL vmlinux 0xb77cd73d crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb7847de4 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xb78f12d5 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xb79c5066 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xb79e49b7 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb7cc6e2e debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xb7e07fd6 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb805ec65 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xb80b06f4 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb80e82a0 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL vmlinux 0xb81c2868 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8346aeb percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb85687ea inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xb8678475 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb86ec576 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89283ea vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xb89c4f3f dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb8a8f440 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xb8b1b4ee wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xb8b26f9b fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xb8b4f47c blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xb8bf8f43 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d1422d ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb8f76da5 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb90dd6bb devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb92066d8 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xb925f0ea register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xb96227d7 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xb963c993 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xb9865c10 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xb9983078 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xb99dd583 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xb9ad579e tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xb9b1d055 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c28ca9 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9c572a0 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger +EXPORT_SYMBOL_GPL vmlinux 0xb9fd278b pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xba141f3b mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xba1b3bf5 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba427ac2 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xba55b08a devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xba5f75c9 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba8d32e2 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xba927382 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xba9cb4dc dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbadd7ef0 power_supply_powers +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 0xbb144c24 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xbb17c1a7 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xbb1ba07d ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xbb1ce320 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbb4b45ed extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbb602bf3 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xbb6e27a4 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL vmlinux 0xbb8f077c max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xbb9cf923 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xbb9e2ab5 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xbbafe894 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xbbcdfe52 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xbbdb0a6c cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xbbee6804 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xbc017413 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbc27a98a power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xbc4ffc75 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xbc61e573 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc76fc25 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xbc7af7a5 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xbc8f324b omap_dm_timer_write_counter +EXPORT_SYMBOL_GPL vmlinux 0xbc91b947 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xbc9793c6 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xbcaa4c74 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcbaa80a __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd5f9eb __of_genpd_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xbcd83ea3 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xbcdac828 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcddb8d4 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xbcf7ba0d usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xbcf89ab6 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xbd0314ae blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xbd0c8c8e l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbd1f4156 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xbd20069f kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0xbd35b98f register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xbd37a32f device_register +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd4923c0 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xbd49ecfb scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd6e164e aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xbd73e6bf pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xbd756d57 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xbda1faea regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbdca6a20 __kvm_set_memory_region +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 0xbdf6794e sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xbdff5f34 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0xbe0a166a crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xbe0c3607 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xbe183d27 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe5e670d power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6ef90b __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xbe76c9ed lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xbe8744d9 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xbe8f883d pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbec5b1ad usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbece6d03 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf430f0e ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xbf531221 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL vmlinux 0xbf62f77d snd_soc_component_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xbfa2f9a6 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL vmlinux 0xbfafbacb snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfbcddf8 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbfc255dd snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0xbfd58105 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfeb39b4 mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0xbfff8ba4 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc00a0bc3 snd_soc_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xc00d32ba ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xc00eba1b ref_module +EXPORT_SYMBOL_GPL vmlinux 0xc02f41d4 bgpio_remove +EXPORT_SYMBOL_GPL vmlinux 0xc035144d mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0xc03a654b memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0xc0694631 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xc07c9dd4 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0895ffd regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc09c2a6c of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0d9c636 kernfs_notify +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 0xc14c7e19 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc15137df cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc162f74f bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xc165dd8a dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc197e0f4 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xc1a3e461 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc1bced6a cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xc1ccee9c omap_dm_timer_free +EXPORT_SYMBOL_GPL vmlinux 0xc1ce2796 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xc1df5358 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc1ee4d30 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xc1f01604 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xc1f2b893 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xc2185f64 ata_bmdma_status +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 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2879e68 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xc28d8f13 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xc2a6abe3 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xc2a78fcd bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0xc2ac801d ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xc2b795ca devres_release +EXPORT_SYMBOL_GPL vmlinux 0xc2c60deb clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc2d375e7 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xc2d56182 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc2fe177e ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc30d1c62 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xc3168fc0 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc32e7129 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc35a53b5 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc35a9261 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xc35d7db9 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc36756a0 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters +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 0xc3d28701 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xc3eae12b regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xc3f44441 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc4067c75 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xc4177185 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xc41e0178 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42a785e bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xc43a69a3 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc4585e5d security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0xc461acc2 snd_soc_remove_platform +EXPORT_SYMBOL_GPL vmlinux 0xc4631410 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xc470dcad arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc4765dc0 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4b6961b i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xc4ba2df5 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4e401a6 mtd_block_markbad +EXPORT_SYMBOL_GPL vmlinux 0xc5063e7e thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xc5358f70 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xc5371a2d vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xc539e052 of_phy_simple_xlate +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 0xc5749398 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc58108fe ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xc596a054 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc59adfbe __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xc59d683a locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xc5bd841c pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xc5d5513e cpdma_chan_process +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5dd53be devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xc5e0dd66 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xc5e5de6c scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xc5f01cec of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xc5f9a654 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0xc5ff35a2 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc63433d4 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc63fc17b crypto_alloc_pcomp +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 0xc6770c0a regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xc6835687 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xc685c037 cpdma_check_free_tx_desc +EXPORT_SYMBOL_GPL vmlinux 0xc685f1d6 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6c71467 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xc6cd5f0d kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0xc6ce7bc8 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xc6d77582 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xc6f33a7b dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL vmlinux 0xc70c751c wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc75ad954 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xc75d595d omap_dm_timer_read_status +EXPORT_SYMBOL_GPL vmlinux 0xc76fec97 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xc78eb19c crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xc795ba77 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xc79e67e0 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xc79f3101 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a21d95 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7e2f7b4 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7e42f45 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xc7e4f464 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xc7f49a35 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL vmlinux 0xc80011aa ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL vmlinux 0xc83e4e18 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xc84641d1 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xc84c7db2 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xc85ce22f shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xc87b5c13 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc88efbc9 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xc897bfb6 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xc8a3be3b cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b3016e devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc8b4f223 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8e35db5 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xc8e43b0c rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xc8ee9e03 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc92175d1 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xc93af09d inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xc9478c49 omap_dm_timer_set_pwm +EXPORT_SYMBOL_GPL vmlinux 0xc948d1b0 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xc94f4cd5 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95654ab pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xc95c983d usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xc95d2e2a of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0xc968081e __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc9a5a826 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xc9b25a50 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL vmlinux 0xc9b9f404 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xc9c01a17 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f85d50 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xca228857 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xca453e32 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xca49c0c7 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca92a9ad nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xcaac3224 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xcab3bd02 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL vmlinux 0xcab49846 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcabe0e53 __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xcad39d48 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xcad43ed6 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xcadb7636 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xcaeb141c pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xcb0f4fc0 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0xcb132fb2 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb28bb80 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL vmlinux 0xcb360860 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xcb457a21 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb48cfee pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xcb554d95 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xcb6c0df1 pci_fixup_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcb748947 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0xcb85255c sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0xcba0c419 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0xcbd09a53 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbf00c41 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc03ffc5 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xcc236d25 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xcc3f23aa gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xcc4f8cb6 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xcc5a1687 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xcc6250e4 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0xcc6cf12c devres_get +EXPORT_SYMBOL_GPL vmlinux 0xcc712c2a snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc8c0bfa pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xccaf0784 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xccb48acc ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xccc582d1 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xccc6e535 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd85bf9 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcceb1d08 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xcd009ebf powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xcd243df3 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xcd251a6d pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xcd2da830 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xcd4060ff devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0xcd5c7b16 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xcd6dc99f pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd993b9c screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda89601 ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc530fa kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdcb0f38 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xcddd3227 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xcdfe98d6 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xce046387 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xce107500 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xce4d813b inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6ab8a1 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce9dbb42 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xceade4eb dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xcec35591 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcf1b2b69 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0xcf23e276 component_add +EXPORT_SYMBOL_GPL vmlinux 0xcf40cd38 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xcf49e06a sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xcf4b490c uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xcf4bb200 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf7056c8 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xcf8f8d56 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xcf93cde0 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xcf972dbf pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcfa6f3e0 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfb5bf49 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xcfba29d3 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfd2f041 device_move +EXPORT_SYMBOL_GPL vmlinux 0xcfe97650 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xcfea9536 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xcfed77a4 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd05c3119 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd06858f4 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd07dfa29 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xd0a0cec4 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xd0a5213b blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xd0b41328 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d77102 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL vmlinux 0xd0e23d0c ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xd0e2cd2d usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xd0f1df53 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xd10a16da snd_soc_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xd11a470d sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xd11a5338 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xd11cdb35 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xd127ca6c device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd14d69e4 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd16ddd12 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xd1822f0b cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd1a06818 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xd1d6d4bd regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xd1ec2805 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xd1f0a011 usb_kill_anchored_urbs +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 0xd21e9fd5 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xd21f53ec tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xd24e11d9 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd25b0817 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xd25bbaff iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd281c872 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xd29a174f usb_gadget_set_state +EXPORT_SYMBOL_GPL vmlinux 0xd29d5e77 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2aeda40 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xd2bf40aa ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0xd2c90103 pinctrl_lookup_state +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 0xd318c441 snd_soc_put_strobe +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd33ffd90 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xd34efbca regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0xd35f6c6d blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xd372e2e5 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xd3a1f318 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3c73281 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd3e97c21 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd3eb6da3 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xd3f45db5 devm_snd_soc_register_platform +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 0xd43ee711 device_destroy +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 0xd452b2fc blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xd4552cf6 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xd471e597 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xd48cebdb of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xd4a7da04 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xd4a9d9a9 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c7c9a8 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xd51eb4ad crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xd539e092 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0xd53da4e3 omap_dm_timers_active +EXPORT_SYMBOL_GPL vmlinux 0xd551dcdc dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd59b6ade usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xd5b3e58f wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5c97b81 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd5eb3dd6 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xd5f01bc3 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xd5fca8d5 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd60dcb2a of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xd613b6ac pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xd623e8b0 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xd62a8ffc i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xd630599c snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xd653315f class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xd6618fdb dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xd671b0a9 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6840ddc ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd68bfaa8 omapdss_of_get_first_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xd691fc1c unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd6974b46 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xd6990475 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd6a1b1a7 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xd6b0f0b8 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xd6b5d4d9 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd6fb0732 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xd6fc3776 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd706cc7a mtd_read +EXPORT_SYMBOL_GPL vmlinux 0xd711cc7a edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd71f4875 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xd724949d pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xd73f6e54 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xd74b1775 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0xd75597f2 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd774f7c1 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd7807802 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0xd7b1b4e0 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xd7d5d46f blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7e1a2d1 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xd81620b2 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8475cd0 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xd84c4557 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xd85ee9f2 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd865f998 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88ab3b9 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd8902f97 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd8958e50 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xd8964adc alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd89960c7 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xd8a245f2 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL vmlinux 0xd8c2c4e6 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xd8e4b678 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xd8f42045 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xd8f5b0f8 ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0xd918e4b6 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL vmlinux 0xd92df50f ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xd932fab2 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd939d33a __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd95fa421 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xd9601528 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xd968ced5 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd9841cc9 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd98f9847 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd9a0d732 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xd9ac3349 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xd9af4672 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xd9b6cf34 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xd9d28623 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xd9e2a8f0 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda0f6445 mtd_write +EXPORT_SYMBOL_GPL vmlinux 0xda25c1bc vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xda2bbf6d mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0xda4a33cf virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xda5caff1 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xda6c22a2 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xda704ea7 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xda74489c policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xda81d55a pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xda94dd7e device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xda965401 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xdaaa91e9 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xdabe6a5d device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xdad24ed7 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xdae1a1d8 driver_find +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 0xdafe05fc ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xdb131e84 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xdb1a6d7f request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xdb2d09f1 phy_get +EXPORT_SYMBOL_GPL vmlinux 0xdb36658e mtd_table_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdb43a415 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb89fd34 __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb9a1e19 omap_dm_timer_disable +EXPORT_SYMBOL_GPL vmlinux 0xdba631a6 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdbb32bcc usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xdbc41420 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xdbca46f8 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0942 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xdbdcb406 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc0ac83b gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xdc2a981c ti_cm_get_macid +EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xdc5f2673 ata_sas_async_probe +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 0xdca3b2da regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xdcb3f90c tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xdce0548d usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xdce8338d mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xdcf7ff28 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xdd0368d6 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xdd1056d7 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd1efe63 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xdd28ca26 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd394f9f class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xdd5d31bb __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xdd862c95 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xdd91529f usb_get_descriptor +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 0xdde9f77d preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xddf9548c crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xddfa98ef gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xde02e755 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xde0607e8 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xde0c42cc tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xde0c9c93 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL vmlinux 0xde26e8d6 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde651f98 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xde7f57cf list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xde8e934f class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xde93d9e6 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xdeaf7f34 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xdeb08a22 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xdec8aef1 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdee25a70 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xdeeb4f23 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xdefa5452 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xdf07f042 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf129555 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xdf211aab max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf422ab3 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xdf682a1c vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xdf79a416 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL vmlinux 0xdf7db4c9 mtd_unlock +EXPORT_SYMBOL_GPL vmlinux 0xdf9ca96c dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0xdfab74c0 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xdfaf6735 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL vmlinux 0xdfb6ff31 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdfc94ffe spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xdfd09bd3 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xdfdc854e thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdfe857a9 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xdfee8890 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe0005d08 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe00d55d1 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xe02107e0 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xe029cefe snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +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 0xe0a26966 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0xe0a288f4 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xe0a37e17 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0xe0abcc2f usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b8e65f uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xe0b9dd1c nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xe0c17bc0 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xe11e7e45 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xe13f4e67 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xe141aa13 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1841060 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xe187bd9f phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xe194d3b1 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xe19c81a1 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xe1ab9531 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1b54c41 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xe1c4890f ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xe1e98b22 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe20e94e7 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xe20f91cb mtd_is_partition +EXPORT_SYMBOL_GPL vmlinux 0xe21138d9 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xe213d43a list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xe21a958a gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xe230e79b pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xe2395f95 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xe2537bea crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe294453c dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xe294ae77 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xe29d5b2e sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xe2b130ba gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xe2c4557c ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xe2cd9b05 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xe2d118df pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xe2f1aef9 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xe2fca8ea __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xe3036ba4 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe324f058 soc_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0xe334bef3 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xe352bce7 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xe3598210 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xe363d4b7 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe38d9d83 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe3904b50 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xe3ad000e device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xe3bbce67 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xe3cbe4ab nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xe3f953b1 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe41fd1c0 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xe427a2dc serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xe42e1f70 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4448aab blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0xe45b0385 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe4693cc8 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xe47766af blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xe48324d7 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xe4879025 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xe4969c0c skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4978ac2 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xe4ab095a devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xe4c22565 cpdma_chan_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4dec8c1 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xe4eeb617 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xe51e05ee devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xe552d4ec sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xe5545e0f wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe57dd705 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5a5db30 of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xe5c58809 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xe5d00532 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0xe5df6e45 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xe5e45663 sm501_set_clock +EXPORT_SYMBOL_GPL vmlinux 0xe5e55f8c mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL vmlinux 0xe5e98949 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xe5e996b6 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xe5f27310 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xe5fb725d of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xe603184d devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xe60b298e napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0xe60d4aac crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xe6295a9d ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xe642583d cpsw_phy_sel +EXPORT_SYMBOL_GPL vmlinux 0xe6434790 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xe645075d __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xe64c9039 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe66b5945 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe66dcb95 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xe678436f key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xe69c7e02 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xe69ef51b split_page +EXPORT_SYMBOL_GPL vmlinux 0xe6a98eed srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6e0054d __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6fd4927 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xe711aad6 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xe738b2db __cci_control_port_by_device +EXPORT_SYMBOL_GPL vmlinux 0xe740a22a sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76dc9f3 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xe7821e99 register_pernet_device +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 0xe7b4b445 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xe7dfcc74 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xe7fd51bf ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe83dd9fb tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe852eece usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xe85916da ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe85d0439 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe85f1fd4 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe863ae2b inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe86c9797 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xe8719c2c pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xe88d17c4 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xe897de1c pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xe8d632aa sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe8e0344a sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xe90c943a usb_string +EXPORT_SYMBOL_GPL vmlinux 0xe927e857 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe93cff77 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9517e27 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe9570d32 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xe9640d94 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe968e53e amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xe969d2e4 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe9733589 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xe97a059b ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xe9914bc0 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xe994392e usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe997a768 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xe999d2ae pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xe9a7604b snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d52753 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xe9d7882d fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xe9da127e devm_snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0xe9e145c2 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xe9feae74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea165c02 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xea1f6e0e hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea599009 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xea5e399a cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL vmlinux 0xea6aa2fb md_run +EXPORT_SYMBOL_GPL vmlinux 0xea7d4fbe snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea93ecd6 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xea94552c regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xea97426d usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0xeaa102bb unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xeac187b9 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xeacef634 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xead5befe __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xeae23cb8 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xeafb961f mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xeb0731e5 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xeb0ff0a8 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xeb11463c flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xeb3dfc71 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xeb45434e musb_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xeb52312c shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xeb5263cc usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL vmlinux 0xeb8d986d regmap_register_patch +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 0xebbe1622 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xebd408c7 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xebdb45ad sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xebdf7c71 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xebe5c294 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebfa90e1 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xec14b82e blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec3f0e52 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xec445929 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xec44e700 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xec4562a4 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xec512022 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xec66aa18 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xec7900aa sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xec79470b driver_register +EXPORT_SYMBOL_GPL vmlinux 0xec8ef3dc omap_dm_timer_set_load +EXPORT_SYMBOL_GPL vmlinux 0xec8f5d09 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0xec99b2af vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xec9a76ba __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xecba9829 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xecbe2160 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xecc5ad2f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xecd36d86 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xecfd8761 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xed0698ec iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xed0fbd0e scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xed21fe68 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xed378512 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xed691f2b fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xed80b0dd irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xed82eb8e pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xed8de12d fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xedbf6cad wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xedc5f939 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xedcc61e4 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0xedfde1ee arm_iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xee2b7e55 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee87f251 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xee8d7539 cpdma_chan_start +EXPORT_SYMBOL_GPL vmlinux 0xeeae1d5b device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xeec44e44 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xeee16ee0 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xeeebb06b mtd_block_isreserved +EXPORT_SYMBOL_GPL vmlinux 0xeeee56ed i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xef0eef8e usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xef205431 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xef22b3ac dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xef2d8f75 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0xef2fd956 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xef3e9e90 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef536004 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xef5421fa register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xef65329e snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL vmlinux 0xef66075c usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6ebb96 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xef7f9c36 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xef8908ef phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef97d629 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa6bc4d reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xefaa0bd7 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xefead024 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xf02e7be3 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xf039b102 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf04dfed0 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf08651e4 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0xf08f6f56 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf09051d3 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xf09cb301 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0ce200a regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xf0df4e9c omap_iommu_save_ctx +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf0fa4e5b crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xf0fee34f __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xf103139e __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xf1072687 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xf1113a0b usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xf117290c flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xf11db8a2 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xf1252e63 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xf12caf22 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xf130639a task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xf15c20e0 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf171e99a device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf1756474 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xf1840843 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1986b5b regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xf1add7dd gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b32277 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0xf1b8a701 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xf1c51b60 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xf1eea8ae __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xf1f16c9e unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf22a3450 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xf24a1ac7 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xf25f0892 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xf27728ec bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf289dfa4 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xf2a4def3 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2b55e8b iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf2cc6d99 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xf2f462b1 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf2fa44fd regulator_count_voltages +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 0xf32f2139 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33c83e8 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xf34d9d81 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0xf358a146 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xf3635489 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf384c15a snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0xf38aaa6b smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xf3a0543d crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf3abfaab pinctrl_get +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 0xf3eb2e9e pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf406265e thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xf407cdad ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf415c825 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xf418397f gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xf42345e3 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xf42eddd0 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xf43193f3 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xf457e12c rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf45ea482 of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0xf467ec23 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xf47327fa pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf49483f8 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4ae2d84 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xf4f3a8c4 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xf4f8bfcf crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf52f8b65 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xf530651e da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xf53c3337 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf53c8f44 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xf53ca1a7 max_gen_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0xf5411c80 nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf556fcf2 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xf56691a0 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL vmlinux 0xf58e1426 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xf5928943 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5ab12ea mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xf5afbd6c unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xf5c7ad95 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf5d081f0 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0xf5d7ff8f mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xf5f943a6 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xf608c6ce page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xf60a03ee gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xf616f936 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf63cca76 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xf65362a3 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xf6643555 omapdss_of_find_source_for_first_ep +EXPORT_SYMBOL_GPL vmlinux 0xf688b220 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e4eecf tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf73a160d percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer +EXPORT_SYMBOL_GPL vmlinux 0xf76e2a1f component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xf7932c58 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xf7ce9dd3 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xf7d30045 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf842b233 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf84e9f11 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xf859a6d1 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xf8697e60 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +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 0xf90e4a6b skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xf92b53c2 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf935dfed mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf94510d4 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf987adfd to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b834de irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xf9c89e7a rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d54976 get_mtd_device_nm +EXPORT_SYMBOL_GPL vmlinux 0xf9d76a90 usb_hcd_end_port_resume +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 0xfa26340b crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xfa26f622 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfa279d61 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xfa3770c4 arm_iommu_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xfa413a01 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xfa4e9197 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0xfa513451 of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0xfa59fa9c pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xfa60e80f crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xfa9601d1 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xfaa56975 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xfabb2780 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xfac18771 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xfad30d53 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfad46bbc driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xfaec2c29 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xfaef9e65 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xfafc9176 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xfafe0408 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xfb2606a7 device_reset +EXPORT_SYMBOL_GPL vmlinux 0xfb26eea9 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xfb2e550d snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb47331d ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb8eaca3 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xfb90875b handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xfb94f014 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xfb9d7939 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc10e2e mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xfbcc1cea device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xfbd692da da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xfbeceb1b omap_dm_timer_set_prescaler +EXPORT_SYMBOL_GPL vmlinux 0xfbf51599 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xfc01001f disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc22eae9 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xfc2c02bc dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xfc447274 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0xfc493175 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xfc5fbeca cci_ace_get_port +EXPORT_SYMBOL_GPL vmlinux 0xfc94aaff phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xfc95943a enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xfc9e19d8 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0xfca8c70d nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xfcd35789 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xfcd3d1f1 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xfcf51ae5 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xfcfd9169 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xfd185f63 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xfd3a8408 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xfd41c7ce btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xfd513cd3 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xfd538209 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xfd5cd32c regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xfd6ea860 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd83a55a platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xfdb85781 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xfdb97393 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xfdc1f0b3 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xfdcae422 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xfde1a33e klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xfdfa16a4 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xfe009c06 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xfe082e6a get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xfe11c17e snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL vmlinux 0xfe1d1388 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xfe36cc9d mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xfe45da00 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xfe64b6d7 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xfe659f5c snd_soc_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0xfe7a8ec6 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xfe7bb131 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9c43a7 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0xfeb8c106 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xfecb46c2 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfee57a2b ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xfee64ac8 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff2005f1 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2ec809 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff64c2b3 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xff69bdff ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xff6c1e0e of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xff943952 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xffa67385 snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffe279eb crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xffeb4042 devm_regulator_get only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/armhf/generic-lpae.compiler +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/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-4.4.0.orig/debian.master/abi/4.4.0-97.120/armhf/generic-lpae.modules +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/armhf/generic-lpae.modules @@ -0,0 +1,4539 @@ +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_mid +8250_omap +8250_uniphier +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ablk_helper +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-arm +aes-arm-bs +aes-arm-ce +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +afs +ah4 +ah6 +ahci +ahci_ceva +ahci_mvebu +ahci_qoriq +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am35x +am53c974 +amba-pl010 +ambakmi +amc6821 +amd +amd5536udc +amd8111e +amdgpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm_big_little +arm_big_little_dt +arm_mhu +arm_scpi +armada +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel-hlcdc-dc +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +ax88796 +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bL_switcher_dummy_if +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bcm-keypad +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm63138_nand +bcm63xx_uart +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +berlin2-adc +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpck6 +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmnand +brcmsmac +brcmstb_nand +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +clk-cdce706 +clk-cdce925 +clk-max77686 +clk-max77802 +clk-palmas +clk-pwm +clk-qcom +clk-rk808 +clk-s2mps11 +clk-scpi +clk-si514 +clk-si5351 +clk-si570 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmtp +cnic +cobalt +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_parport +comedi_pci +comedi_test +comedi_usb +comm +configfs +connector-analog-tv +connector-dvi +contec_pci_dio +cordic +core +cp210x +cpia2 +cppi41 +cpu-notifier-error-inject +cramfs +crc-ccitt +crc-itu-t +crc32 +crc7 +crc8 +cros_ec +cros_ec_devs +cros_ec_i2c +cros_ec_keyb +cros_ec_spi +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +cs89x0 +csiostor +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +decnet +deflate +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9000 +dm9601 +dme1737 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dove_thermal +dp83848 +dp83867 +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_hdmi +dw_hdmi-ahb-audio +dw_hdmi-imx +dw_hdmi-rockchip +dw_mmc +dw_mmc-exynos +dw_mmc-k3 +dw_mmc-pci +dw_mmc-pltfm +dw_mmc-rockchip +dw_wdt +dwc3 +dwc3-exynos +dwc3-omap +dwc3-pci +dwc3-qcom +dwc_eth_qos +dwmac-generic +dwmac-ipq806x +dwmac-lpc18xx +dwmac-meson +dwmac-rk +dwmac-socfpga +dwmac-sti +dwmac-sunxi +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +ehci-msm +ehci-omap +ehset +elan_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +emif +empeg +ems_pci +ems_usb +emu10k1-gp +enc28j60 +enclosure +encoder-opa362 +encoder-tfp410 +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +exynos-gsc +exynos-rng +exynos_adc +exynosdrm +ezusb +f2fs +f71805f +f71882fg +f75375s +f81232 +fakelb +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdp +fdp_i2c +fealnx +ff-memless +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fl512 +flexcan +flexfb +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fsl-dcu-drm +fsl-edma +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftgmac100 +ftl +ftmac100 +fujitsu_ts +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_multi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcc-apq8084 +gcc-ipq806x +gcc-msm8660 +gcc-msm8916 +gcc-msm8960 +gcc-msm8974 +gcm +gdmtty +gdmulte +gdmwm +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +gf128mul +gf2k +gfs2 +ghash-arm-ce +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-rcar +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tps65912 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +highbank-cpufreq +highbank_l2_edac +highbank_mc_edac +hih6130 +hip04_eth +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi-acpu-cpufreq +hisi504_nand +hisi_thermal +hix5hd2_gmac +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hnae +hns_dsaf +hns_enet_drv +hns_mdio +hopper +horus3a +hostap +hostap_pci +hostap_plx +hp100 +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hwspinlock_core +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-axxia +i2c-cbus-gpio +i2c-cros-ec-tunnel +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-exynos5 +i2c-gpio +i2c-hid +i2c-hix5hd2 +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-meson +i2c-mt65xx +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-mv64xxx +i2c-nforce2 +i2c-nomadik +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-qup +i2c-rcar +i2c-riic +i2c-rk3x +i2c-robotfuzz-osif +i2c-sh_mobile +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-slave-eeprom +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-uniphier +i2c-uniphier-f +i2c-versatile +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i40e +i40evf +i5k_amb +i6300esb +i740fb +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +icp_multi +icplus +ics932s401 +idma64 +idmouse +idt77252 +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +impa7 +ims-pcu +imx-ipu-v3 +imx-ipuv3-crtc +imx-ldb +imx-tve +imx074 +imx6ul_tsc +imx_thermal +imxdrm +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +iproc_nand +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irqbypass +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +k3dma +kafs +kalmia +kaweth +kbic +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvaser_usb +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcc-ipq806x +lcc-msm8960 +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-aat1290 +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-ns2 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr2_nvm +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +macb +macmodes +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_ram +map_rom +marvell +marvell-cesa +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77686 +max77693 +max77693-haptic +max77693_charger +max77802 +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +meson-ir +meson_uart +meson_wdt +metro-usb +metronomefb +mf6x4 +mg_disk +mga +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmcc-apq8084 +mmcc-msm8960 +mmcc-msm8974 +mmci_qcom_dml +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msm +msm-rng +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt8173-max98090 +mt8173-rt5650-rt5676 +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd_dataflash +mtdoops +mtdram +mtdswap +mtip32xx +mtk-afe-pcm +mtk-pmic-wrap +mtk-sd +mtk_wdt +mtouch +multipath +multiq3 +musb_am335x +musb_dsps +mv643xx_eth +mv_cesa +mv_u3d_core +mv_udc +mvmdio +mvneta +mvpp2 +mvsas +mvsdio +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nbpfaxi +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_labpc +ni_labpc_common +ni_labpc_pci +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicstar +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsp32 +ntb +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvidiafb +nvme +nvmem_core +nvmem_qfprom +nvmem_rockchip_efuse +nvram +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +old_belkin-sir +omap +omap-aes +omap-des +omap-mailbox +omap-ocp2scp +omap-rng +omap-sham +omap2430 +omap4-keypad +omap_hdq +omap_hwspinlock +omap_wdt +omapfb +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +orion_nand +orion_wdt +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +pandora_bl +panel +panel-dpi +panel-dsi-cm +panel-lg-lg4573 +panel-lgphilips-lb035q02 +panel-nec-nl8048hl11 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-sharp-ls037v7dw01 +panel-simple +panel-sony-acx565akm +panel-tpo-td028ttec1 +panel-tpo-td043mtea1 +parade-ps8622 +parallel-display +paride +parkbd +parport +parport_ax88796 +parport_pc +parport_serial +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pbias-regulator +pc300too +pc87360 +pc87427 +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-stub +pci200syn +pcie-iproc +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcwd_pci +pcwd_usb +pd +pda_power +pdc_adma +peak_pci +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-am335x +phy-am335x-control +phy-bcm-kona-usb2 +phy-berlin-sata +phy-berlin-usb +phy-dm816x-usb +phy-exynos-usb2 +phy-exynos5-usbdrd +phy-gpio-vbus-usb +phy-hix5hd2-sata +phy-isp1301 +phy-msm-usb +phy-mt65xx-usb3 +phy-omap-control +phy-omap-usb2 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-8x16-usb +phy-qcom-apq8064-sata +phy-qcom-ipq806x-sata +phy-qcom-ufs +phy-qcom-ufs-qmp-14nm +phy-qcom-ufs-qmp-20nm +phy-rcar-gen2 +phy-rcar-usb +phy-rockchip-usb +phy-tahvo +phy-ti-pipe3 +phy-tusb1210 +phy-twl4030-usb +phy-twl6030-usb +physmap +physmap_of +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-ipq8064 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8960 +pinctrl-msm8x74 +pinctrl-ph1-ld4 +pinctrl-ph1-ld6b +pinctrl-ph1-pro4 +pinctrl-ph1-pro5 +pinctrl-ph1-sld8 +pinctrl-proxstream2 +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl172 +pl2303 +pl330 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8921-core +pm8941-pwrkey +pm8941-wled +pm8xxx-vibrator +pmbus +pmbus_core +pmc551 +pmcraid +pmic8xxx-keypad +pmic8xxx-pwrkey +pn533 +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_parport +pptp +prism2_usb +ps2mult +psmouse +psnap +pt +pulsedlight-lidar-lite-v2 +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-beeper +pwm-berlin +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-mtk-disp +pwm-omap-dmtimer +pwm-pca9685 +pwm-rcar +pwm-regulator +pwm-renesas-tpu +pwm-rockchip +pwm-samsung +pwm-tiecap +pwm-tiehrpwm +pwm-twl +pwm-twl-led +pwm_bl +pxa168_eth +pxa27x_udc +pxa3xx_nand +qcaspi +qcaux +qcom-coincell +qcom-spmi-iadc +qcom-spmi-pmic +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom-wdt +qcom_bam_dma +qcom_gsbi +qcom_hwspinlock +qcom_rpm +qcom_rpm-regulator +qcom_smbb +qcom_smd-regulator +qcom_spmi-regulator +qcrypto +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qoriq-cpufreq +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ravb +raw +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rcar-dmac +rcar-du-drm +rcar-hpbdma +rcar_can +rcar_jpu +rcar_thermal +rcar_vin +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +regmap-spmi +regulator-haptic +reiserfs +remoteproc +renesas_usbhs +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio500 +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rmobile-reset +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rockchip-io-domain +rockchip_drm_vop +rockchip_saradc +rockchip_thermal +rockchipdrm +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-armada38x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max77686 +rtc-max77802 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-pl030 +rtc-pm8xxx +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3c-fb +s3c2410_wdt +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s5p-g2d +s5p-hdmi +s5p-hdmiphy +s5p-jpeg +s5p-mfc +s5p-mixer +s5p-sdo +s5p-sii9234 +s5p-sss +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7706h +safe_serial +salsa20_generic +samsung +samsung-keypad +samsung-sxgbe +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_rcar +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scpi-cpufreq +scpi-hwmon +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_probe +sdhci-dove +sdhci-msm +sdhci-of-arasan +sdhci-of-at91 +sdhci-pci +sdhci-pxav3 +sdhci-s3c +sdhci_f_sdh30 +sdio_uart +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh-sci +sh_eth +sh_flctl +sh_irda +sh_keysc +sh_mmcif +sh_mobile_ceu_camera +sh_mobile_csi2 +sh_mobile_hdmi +sh_mobile_lcdcfb +sh_mobile_meram +sh_mobile_sdhi +sh_veu +sh_vou +sha1-arm +sha1-arm-ce +sha1-arm-neon +sha2-arm-ce +sha256-arm +sha512-arm +shark2 +shdma +shmob-drm +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sir-dev +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +slcan +slip +slram +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc911x +smc91x +smd +smd-rpm +smem +smipcie +smm665 +smsc +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd-aaci +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm-oss +snd-pcxhr +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-apq8016-sbc +snd-soc-armada-370-db +snd-soc-arndale-rt5631 +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-davinci-mcasp +snd-soc-es8328 +snd-soc-fsi +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-i2s +snd-soc-idma +snd-soc-imx-audmux +snd-soc-kirkwood +snd-soc-lpass-apq8016 +snd-soc-lpass-cpu +snd-soc-lpass-ipq806x +snd-soc-lpass-platform +snd-soc-max98090 +snd-soc-max98095 +snd-soc-max98357a +snd-soc-odroidx2-max98090 +snd-soc-omap-hdmi-audio +snd-soc-pcm +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rcar +snd-soc-rl6231 +snd-soc-rockchip-i2s +snd-soc-rockchip-max98090 +snd-soc-rockchip-rt5645 +snd-soc-rockchip-spdif +snd-soc-rsrc-card +snd-soc-rt5631 +snd-soc-rt5645 +snd-soc-rt5677 +snd-soc-rt5677-spi +snd-soc-rx51 +snd-soc-s3c-dma +snd-soc-samsung-spdif +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-smdk-spdif +snd-soc-smdk-wm8994 +snd-soc-smdk-wm8994pcm +snd-soc-snow +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-storm +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm-hubs +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-wm8994 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +soc_scale_crop +softdog +softing +solo6x10 +solos-pci +sony-btf-mpx +sp2 +sp805_wdt +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-meson-spifc +spi-mt65xx +spi-nor +spi-oc-tiny +spi-orion +spi-pl022 +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-qup +spi-rockchip +spi-rspi +spi-s3c64xx +spi-sc18is602 +spi-sh-hspi +spi-sh-msiof +spi-ti-qspi +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +spmi-pmic-arb +sr9700 +sr9800 +ssb +ssbi +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-asc +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm32-usart +stm_console +stm_core +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sudmac +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +svgalib +sx8 +sx8654 +sx9500 +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teranetics +test-hexdump +test-kprobes +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +thmc50 +thunderbolt +ti-adc081c +ti-adc128s052 +ti-soc-thermal +ti-vpe +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_hecc +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +tilcdc +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmio_mmc +tmio_mmc_core +tmio_nand +tmiofb +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tusb6010 +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +us5182d +usb-dmac +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vcan +vcnl4000 +ves1820 +ves1x93 +veth +vexpress +vexpress-spc-cpufreq +vf610_adc +vfio +vfio-amba +vfio-pci +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +vfio_virqfd +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-contig +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +viperboard +viperboard_adc +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsp1 +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83627ehf +w83627hf +w83781d +w83791d +w83792d +w83793 +w83795 +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wcn36xx +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +wire +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xgmac +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xor +xor-neon +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yurex +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +zr364xx +zram +zynq-fpga only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/armhf/generic.compiler +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/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-4.4.0.orig/debian.master/abi/4.4.0-97.120/armhf/generic.modules +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/armhf/generic.modules @@ -0,0 +1,4631 @@ +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_mid +8250_omap +8250_uniphier +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ablk_helper +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-arm +aes-arm-bs +aes-arm-ce +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +afs +ah4 +ah6 +ahci +ahci_ceva +ahci_mvebu +ahci_qoriq +ahci_tegra +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am35x +am53c974 +amba-pl010 +ambakmi +amc6821 +amd +amd5536udc +amd8111e +amdgpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm_big_little +arm_big_little_dt +arm_mhu +arm_scpi +armada +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel-hlcdc-dc +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +ax88796 +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bL_switcher_dummy_if +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bcm-keypad +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm63138_nand +bcm63xx_uart +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +berlin2-adc +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpck6 +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmnand +brcmsmac +brcmstb_nand +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +caam +caam_jr +caamalg +caamhash +caamrng +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +clk-cdce706 +clk-cdce925 +clk-max77686 +clk-max77802 +clk-palmas +clk-pwm +clk-qcom +clk-rk808 +clk-s2mps11 +clk-scpi +clk-si514 +clk-si5351 +clk-si570 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmt_speech +cmtp +cnic +cobalt +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_parport +comedi_pci +comedi_test +comedi_usb +comm +configfs +connector-analog-tv +connector-dvi +contec_pci_dio +cordic +core +cp210x +cpia2 +cppi41 +cpu-notifier-error-inject +cramfs +crc-ccitt +crc-itu-t +crc32 +crc7 +crc8 +cros_ec +cros_ec_devs +cros_ec_i2c +cros_ec_keyb +cros_ec_spi +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +cs89x0 +csiostor +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da8xx-fb +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +davinci_emac +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +decnet +deflate +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9000 +dm9601 +dme1737 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dove_thermal +dp83848 +dp83867 +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_hdmi +dw_hdmi-ahb-audio +dw_hdmi-imx +dw_hdmi-rockchip +dw_mmc +dw_mmc-exynos +dw_mmc-k3 +dw_mmc-pci +dw_mmc-pltfm +dw_mmc-rockchip +dw_wdt +dwc3 +dwc3-exynos +dwc3-omap +dwc3-pci +dwc3-qcom +dwc_eth_qos +dwmac-generic +dwmac-ipq806x +dwmac-lpc18xx +dwmac-meson +dwmac-rk +dwmac-socfpga +dwmac-sti +dwmac-sunxi +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +ehci-msm +ehci-mxc +ehci-omap +ehci-tegra +ehset +elan_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +emif +empeg +ems_pci +ems_usb +emu10k1-gp +enc28j60 +enclosure +encoder-opa362 +encoder-tfp410 +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +exynos-gsc +exynos-rng +exynos_adc +exynosdrm +ezusb +f2fs +f71805f +f71882fg +f75375s +f81232 +fakelb +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdp +fdp_i2c +fealnx +ff-memless +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fl512 +flexcan +flexfb +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fsl-dcu-drm +fsl-edma +fsl-mph-dr-of +fsl-quadspi +fsl_lpuart +fsl_pq_mdio +fsl_usb2_udc +ft6236 +ftdi-elan +ftdi_sio +ftgmac100 +ftl +ftmac100 +fujitsu_ts +fusb300_udc +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_multi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcc-apq8084 +gcc-ipq806x +gcc-msm8660 +gcc-msm8916 +gcc-msm8960 +gcc-msm8974 +gcm +gdmtty +gdmulte +gdmwm +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +gf128mul +gf2k +gfs2 +ghash-arm-ce +ghash-generic +gianfar_driver +gianfar_ptp +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-rcar +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tps65912 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gpmi_nand +gr_udc +grace +grcan +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hifn_795x +highbank-cpufreq +highbank_l2_edac +highbank_mc_edac +hih6130 +hip04_eth +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi-acpu-cpufreq +hisi504_nand +hisi_thermal +hix5hd2_gmac +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hnae +hns_dsaf +hns_enet_drv +hns_mdio +hopper +horus3a +host1x +hostap +hostap_pci +hostap_plx +hp100 +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hwspinlock_core +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-cbus-gpio +i2c-cros-ec-tunnel +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-exynos5 +i2c-gpio +i2c-hid +i2c-hix5hd2 +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-meson +i2c-mt65xx +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-mv64xxx +i2c-nforce2 +i2c-nomadik +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-qup +i2c-rcar +i2c-riic +i2c-rk3x +i2c-robotfuzz-osif +i2c-sh_mobile +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-slave-eeprom +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tegra +i2c-tiny-usb +i2c-uniphier +i2c-uniphier-f +i2c-versatile +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i40e +i40evf +i5k_amb +i6300esb +i740fb +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +icp_multi +icplus +ics932s401 +idma64 +idmouse +idt77252 +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +impa7 +ims-pcu +imx-dma +imx-ipu-v3 +imx-ipuv3-crtc +imx-ldb +imx-sdma +imx-tve +imx074 +imx21-hcd +imx2_wdt +imx6q-cpufreq +imx6ul_tsc +imx_keypad +imx_thermal +imxdrm +imxfb +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +iproc_nand +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irqbypass +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +k3dma +kafs +kalmia +kaweth +kbic +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvaser_usb +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcc-ipq806x +lcc-msm8960 +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-aat1290 +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-ns2 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr2_nvm +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +macb +macmodes +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_ram +map_rom +marvell +marvell-cesa +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77686 +max77693 +max77693-haptic +max77693_charger +max77802 +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +meson-ir +meson_uart +meson_wdt +metro-usb +metronomefb +mf6x4 +mg_disk +mga +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmcc-apq8084 +mmcc-msm8960 +mmcc-msm8974 +mmci_qcom_dml +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msm +msm-rng +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt8173-max98090 +mt8173-rt5650-rt5676 +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd_dataflash +mtdoops +mtdram +mtdswap +mtip32xx +mtk-afe-pcm +mtk-pmic-wrap +mtk-sd +mtk_wdt +mtouch +multipath +multiq3 +musb_am335x +musb_dsps +mv643xx_eth +mv_cesa +mv_u3d_core +mv_udc +mvmdio +mvneta +mvpp2 +mvsas +mvsdio +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mx3_camera +mxb +mxc4005 +mxc_nand +mxc_w1 +mxcmmc +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxs-dcp +mxser +mxsfb +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nbpfaxi +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_labpc +ni_labpc_common +ni_labpc_pci +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicstar +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nokia-modem +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsp32 +ntb +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvec +nvec_kbd +nvec_paz00 +nvec_power +nvec_ps2 +nvidiafb +nvme +nvmem-imx-ocotp +nvmem-vf610-ocotp +nvmem_core +nvmem_qfprom +nvmem_rockchip_efuse +nvram +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +ohci-omap3 +old_belkin-sir +omap +omap-aes +omap-des +omap-mailbox +omap-ocp2scp +omap-rng +omap-sham +omap-vout +omap2 +omap2430 +omap3-isp +omap3-rom-rng +omap4-keypad +omap_hdq +omap_hwspinlock +omap_remoteproc +omap_ssi +omap_ssi_port +omap_wdt +omapfb +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +orion_nand +orion_wdt +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +pandora_bl +panel +panel-dpi +panel-dsi-cm +panel-lg-lg4573 +panel-lgphilips-lb035q02 +panel-nec-nl8048hl11 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-sharp-ls037v7dw01 +panel-simple +panel-sony-acx565akm +panel-tpo-td028ttec1 +panel-tpo-td043mtea1 +parade-ps8622 +parallel-display +paride +parkbd +parport +parport_ax88796 +parport_pc +parport_serial +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_imx +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pbias-regulator +pc300too +pc87360 +pc87427 +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-stub +pci200syn +pcie-iproc +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcwd_pci +pcwd_usb +pd +pda_power +pdc_adma +peak_pci +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-am335x +phy-am335x-control +phy-bcm-kona-usb2 +phy-berlin-sata +phy-berlin-usb +phy-dm816x-usb +phy-exynos-usb2 +phy-exynos5-usbdrd +phy-gpio-vbus-usb +phy-hix5hd2-sata +phy-isp1301 +phy-msm-usb +phy-mt65xx-usb3 +phy-omap-control +phy-omap-usb2 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-8x16-usb +phy-qcom-apq8064-sata +phy-qcom-ipq806x-sata +phy-qcom-ufs +phy-qcom-ufs-qmp-14nm +phy-qcom-ufs-qmp-20nm +phy-rcar-gen2 +phy-rcar-usb +phy-rockchip-usb +phy-tahvo +phy-tegra-usb +phy-ti-pipe3 +phy-tusb1210 +phy-twl4030-usb +phy-twl6030-usb +physmap +physmap_of +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-ipq8064 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8960 +pinctrl-msm8x74 +pinctrl-ph1-ld4 +pinctrl-ph1-ld6b +pinctrl-ph1-pro4 +pinctrl-ph1-pro5 +pinctrl-ph1-sld8 +pinctrl-proxstream2 +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl172 +pl2303 +pl330 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8921-core +pm8941-pwrkey +pm8941-wled +pm8xxx-vibrator +pmbus +pmbus_core +pmc551 +pmcraid +pmic8xxx-keypad +pmic8xxx-pwrkey +pn533 +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_parport +pptp +prism2_usb +ps2mult +psmouse +psnap +pt +pulsedlight-lidar-lite-v2 +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-beeper +pwm-berlin +pwm-fan +pwm-fsl-ftm +pwm-imx +pwm-lp3943 +pwm-mtk-disp +pwm-omap-dmtimer +pwm-pca9685 +pwm-rcar +pwm-regulator +pwm-renesas-tpu +pwm-rockchip +pwm-samsung +pwm-tegra +pwm-tiecap +pwm-tiehrpwm +pwm-twl +pwm-twl-led +pwm_bl +pxa168_eth +pxa27x_udc +pxa3xx_nand +qcaspi +qcaux +qcom-coincell +qcom-spmi-iadc +qcom-spmi-pmic +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom-wdt +qcom_bam_dma +qcom_gsbi +qcom_hwspinlock +qcom_rpm +qcom_rpm-regulator +qcom_smbb +qcom_smd-regulator +qcom_spmi-regulator +qcrypto +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qoriq-cpufreq +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ravb +raw +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rcar-dmac +rcar-du-drm +rcar-hpbdma +rcar_can +rcar_jpu +rcar_thermal +rcar_vin +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +regmap-spmi +regulator-haptic +reiserfs +remoteproc +renesas_usbhs +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio500 +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rmobile-reset +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rockchip-io-domain +rockchip_drm_vop +rockchip_saradc +rockchip_thermal +rockchipdrm +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-armada38x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-hid-sensor-time +rtc-hym8563 +rtc-imxdi +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max77686 +rtc-max77802 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-mxc +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8563 +rtc-pcf8583 +rtc-pl030 +rtc-pm8xxx +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +rtc-stk17ta8 +rtc-tegra +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3c-fb +s3c2410_wdt +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s5p-g2d +s5p-hdmi +s5p-hdmiphy +s5p-jpeg +s5p-mfc +s5p-mixer +s5p-sdo +s5p-sii9234 +s5p-sss +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7706h +safe_serial +sahara +salsa20_generic +samsung +samsung-keypad +samsung-sxgbe +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_rcar +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scpi-cpufreq +scpi-hwmon +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_probe +sdhci-dove +sdhci-msm +sdhci-of-arasan +sdhci-of-at91 +sdhci-of-esdhc +sdhci-pci +sdhci-pxav3 +sdhci-s3c +sdhci-tegra +sdhci_f_sdh30 +sdio_uart +seed +sensorhub +seqiv +ser_gigaset +serial-tegra +serial2002 +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh-sci +sh_eth +sh_flctl +sh_irda +sh_keysc +sh_mmcif +sh_mobile_ceu_camera +sh_mobile_csi2 +sh_mobile_hdmi +sh_mobile_lcdcfb +sh_mobile_meram +sh_mobile_sdhi +sh_veu +sh_vou +sha1-arm +sha1-arm-ce +sha1-arm-neon +sha2-arm-ce +sha256-arm +sha512-arm +shark2 +shdma +shmob-drm +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sir-dev +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +slcan +slip +slram +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc911x +smc91x +smd +smd-rpm +smem +smipcie +smm665 +smsc +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd-aaci +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4xxx-adda +snd-aloop +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-ens1370 +snd-ens1371 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hda-tegra +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm-oss +snd-pcxhr +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-alc5632 +snd-soc-apq8016-sbc +snd-soc-armada-370-db +snd-soc-arndale-rt5631 +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-davinci-mcasp +snd-soc-dmic +snd-soc-edma +snd-soc-es8328 +snd-soc-es8328-i2c +snd-soc-es8328-spi +snd-soc-eukrea-tlv320 +snd-soc-evm +snd-soc-fsi +snd-soc-fsl-asoc-card +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-utils +snd-soc-gtm601 +snd-soc-i2s +snd-soc-idma +snd-soc-imx-es8328 +snd-soc-imx-mc13783 +snd-soc-imx-spdif +snd-soc-imx-ssi +snd-soc-imx-wm8962 +snd-soc-kirkwood +snd-soc-lpass-apq8016 +snd-soc-lpass-cpu +snd-soc-lpass-ipq806x +snd-soc-lpass-platform +snd-soc-max98090 +snd-soc-max98095 +snd-soc-max98357a +snd-soc-mc13783 +snd-soc-odroidx2-max98090 +snd-soc-omap-abe-twl6040 +snd-soc-omap-dmic +snd-soc-omap-hdmi-audio +snd-soc-omap-mcpdm +snd-soc-omap3pandora +snd-soc-pcm +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rcar +snd-soc-rl6231 +snd-soc-rockchip-i2s +snd-soc-rockchip-max98090 +snd-soc-rockchip-rt5645 +snd-soc-rockchip-spdif +snd-soc-rsrc-card +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5677 +snd-soc-rt5677-spi +snd-soc-rx51 +snd-soc-s3c-dma +snd-soc-samsung-spdif +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-smdk-spdif +snd-soc-smdk-wm8994 +snd-soc-smdk-wm8994pcm +snd-soc-snow +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-storm +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tegra-alc5632 +snd-soc-tegra-max98090 +snd-soc-tegra-pcm +snd-soc-tegra-rt5640 +snd-soc-tegra-rt5677 +snd-soc-tegra-trimslice +snd-soc-tegra-utils +snd-soc-tegra-wm8753 +snd-soc-tegra-wm8903 +snd-soc-tegra-wm9712 +snd-soc-tegra20-ac97 +snd-soc-tegra20-das +snd-soc-tegra20-i2s +snd-soc-tegra20-spdif +snd-soc-tegra30-ahub +snd-soc-tegra30-i2s +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-twl6040 +snd-soc-wm-hubs +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-wm8994 +snd-soc-wm9712 +snd-soc-xtfpga-i2s +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-variax +snd-usbmidi-lib +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-ymfpci +snic +snvs_pwrkey +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +soc_scale_crop +softdog +softing +solo6x10 +solos-pci +sony-btf-mpx +sp2 +sp805_wdt +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-fsl-dspi +spi-gpio +spi-imx +spi-lm70llp +spi-meson-spifc +spi-mt65xx +spi-nor +spi-oc-tiny +spi-orion +spi-pl022 +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-qup +spi-rockchip +spi-rspi +spi-s3c64xx +spi-sc18is602 +spi-sh-hspi +spi-sh-msiof +spi-tegra114 +spi-tegra20-sflash +spi-tegra20-slink +spi-ti-qspi +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +spmi-pmic-arb +sr9700 +sr9800 +ssb +ssbi +ssd1307fb +ssfdc +ssi_protocol +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-asc +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm32-usart +stm_console +stm_core +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sudmac +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +svgalib +sx8 +sx8654 +sx9500 +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tegra-devfreq +tegra-drm +tegra-kbc +tegra124-cpufreq +tegra_wdt +tehuti +tekram-sir +teranetics +test-hexdump +test-kprobes +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +thmc50 +thunderbolt +ti-adc081c +ti-adc128s052 +ti-soc-thermal +ti-vpe +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_hecc +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +tilcdc +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmio_mmc +tmio_mmc_core +tmio_nand +tmiofb +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tusb6010 +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +us5182d +usb-dmac +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vcan +vcnl4000 +ves1820 +ves1x93 +veth +vexpress +vexpress-spc-cpufreq +vf610_adc +vf610_nfc +vfio +vfio-amba +vfio-pci +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +vfio_virqfd +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-contig +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +viperboard +viperboard_adc +virtio-gpu +virtio-rng +virtio_input +virtio_rpmsg_bus +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsp1 +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83627ehf +w83627hf +w83781d +w83791d +w83792d +w83793 +w83795 +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wcn36xx +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +wire +wishbone-serial +wkup_m3_rproc +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xgmac +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xor +xor-neon +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yurex +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +zr364xx +zram +zynq-fpga only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/fwinfo +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/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-4.4.0.orig/debian.master/abi/4.4.0-97.120/i386/generic +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/i386/generic @@ -0,0 +1,18861 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0x7fa11cbe 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 0x3e496f72 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 0x4ccdf93a suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x353fbd68 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x0b7b56d4 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0x3ebe8054 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 0x02079dc5 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x28a1dd13 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x299ba4d6 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x4c22ff90 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x5b017aca pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x60139616 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x71769bac paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x8630c9b3 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb5e60eaf pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xbb5ff388 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xc31f75e8 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xc32eec1a pi_read_block +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x5f530624 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 0x30dfa6e8 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x41646871 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x42ec93fa 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 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 0xa44c14e7 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd1f2f615 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 0x20efd8da nsc_gpio_write +EXPORT_SYMBOL drivers/char/nsc_gpio 0x6292b921 nsc_gpio_read +EXPORT_SYMBOL drivers/char/nsc_gpio 0x64b23047 nsc_gpio_dump +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x1427e5e6 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa336f381 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa3379242 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xe33f60db st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x2d25e6f2 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x660c15b3 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x8d9b56cf xillybus_init_endpoint +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x317009d0 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xa8313e24 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xb422d94b dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xd56baa74 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe95968e7 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xf01acd82 dw_dma_cyclic_start +EXPORT_SYMBOL drivers/edac/edac_core 0xfed92866 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x10e8146f fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x155d14ca fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x181962e1 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1b28579b fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2ee67fca fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3138242b fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x45d3f148 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4a5a1ab7 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4ba9f34b fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x603e856b fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x61e0dfff fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x64a1ab03 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6d9fbd21 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7f3b7524 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x84ab125f fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8f62d8c5 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9e7d9c0e fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa8ea858c fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa9e765ed fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb4a48e7 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xce84d216 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd091d0bf fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd1bbf868 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd4f25ed6 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd754aba0 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe58257c7 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/fmc/fmc 0x12cedf7a fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x131020b5 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x2335b48a fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x3611b94e fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x3cf2ecc2 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x7faa518d fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xb1a67659 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0xd33e2c8f fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xe60c1ade fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0xfc802124 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0xfde3e20d fmc_find_sdb_device +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00b04e4a drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00c3844f drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x011cd5af drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x017573f3 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0180bfe0 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05110c45 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x057a28da drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05fb7da5 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06343ce7 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0666b295 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06a03914 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06e1daa1 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a37f83a drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b06501f drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bb80fbf drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c902834 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0db33959 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dbb2b46 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e34c074 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f38ad74 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f604832 drm_clflush_pages +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 0x10807f2c drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1142c902 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1172d5bf drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1307e872 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x137e6fba drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x151607d8 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15e980ef drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16cd367a drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16f6916c drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19687698 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1981cebd drm_unplug_dev +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 0x1af637ac drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1afdf5a4 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bea7399 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bfcafe3 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d6f2fe9 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fa7cfc5 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fc0a0c3 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20d1a2b8 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21c2e5ab drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21f51da1 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x222562b3 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c99450 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25180e55 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26723e80 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d9f8a8 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2983d7a8 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2986fccd drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b0877bb drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b9aaf77 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ba5f8f6 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bd198cc drm_mm_dump_table +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 0x2f61ec7c drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f8027b3 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f9b15bf drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fc0a422 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fcd8004 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ffee1d4 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30be754c drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31d2083f drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3254bfc2 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3406fa91 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x345b7391 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346ba41b drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x347d2ea7 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34c077b4 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x356d2089 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3628eb75 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36f5d086 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38877b8a drm_pci_set_busid +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 0x3bb30d7c drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bcdbb45 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bdb9bf2 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c635d62 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c744dcc drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e977b0e drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x403bcb51 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4124d459 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x437c8ba8 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47fdaa2d drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x481517ea drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x495b7c61 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49949908 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a14d150 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a6b0843 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d246b84 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d62dcb0 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d884a40 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4de3b0eb drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f9815da drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50120973 drm_framebuffer_cleanup +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 0x53c0ea2a drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5508cbf1 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55addcdf drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x561ffd33 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56566d0e drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5736684f drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x578ce60d drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57a1a397 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57bbd947 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57fd581b drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58df9ef8 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cb24215 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cc7f718 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cfefe45 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f3a358f drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f77f763 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f88d3f1 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fe91527 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60468f89 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61168b07 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6177a4c1 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c1342 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6322ad5b drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64e4bc47 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64ec20a6 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65dd4524 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6757e866 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68b3b792 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e049c42 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e4057ad drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef0215e drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f8910cc drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70dce224 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71574f27 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71d2107f drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74b0f3e5 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x750e1804 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x771414f4 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x772256b3 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77c525d6 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79dfffc4 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a7178af drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b698e6e drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x800a25da drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80d6bf4a drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81ebc914 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82f89747 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83caeb1d drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86a0c1ae drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x890f17f6 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x894feb26 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8973aaa3 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a40af84 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b05a640 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c1e49f1 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c4f9599 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cab65e7 drm_calc_timestamping_constants +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 0x90b533d7 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91c20702 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x923a163b drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93cca294 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97c53b7c drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98112322 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x991b8e76 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9977ec2b drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99cdb98a drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b7f949a drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cd8a056 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce473b1 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0fdc71 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d6e5c6f drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ee001bb drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0c705a6 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa17b87b8 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa18a86d7 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1b537b9 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1dd44a3 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa39a3f1a drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3d5497d drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa40a8aa0 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5cb3625 drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa628eac3 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa637ede8 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6e3f8e0 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6f59db2 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa78d40cf drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7e6e91a drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7fbe783 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa82fb450 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8f34981 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac83d61 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab52e0af drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabe7df43 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac1f15ff drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac69f593 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacc13f97 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacf9f48c drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad3f8e89 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae237f4e drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae632e60 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae64f1af drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaef661be drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf4ade98 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b2d16f drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb223269b drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5dd0648 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb655ea82 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7c581a8 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb96af3b3 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb980aee1 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc306dfa drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbca18cbd drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe10450f drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe4a6ef0 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf9467e6 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc02c87c6 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0a7a547 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc15d6fca drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc18f66de drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25ba48a drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2f04f81 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc458c199 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4a2984b drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc50b5cb0 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8115f05 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8c07014 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc935e463 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9f0fe6c drm_legacy_idlelock_take +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 0xca8ab961 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb390560 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcce4971d drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd5fea0c drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcff61a73 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3b0bd8d drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4e4ed93 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52399d6 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd58dff89 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6837a09 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6b29a77 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6d880db drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6ff7e3c drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8253472 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd94ce63f drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd961dadc drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9b36caf drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9cf8991 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda03f35d drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5982a drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcd662d5 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcf7b13f drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd0d59aa drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddc42e25 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0cacc44 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe15468a7 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe22b07ce drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe25ceb68 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe291f55a drm_mode_create_suggested_offset_properties +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 0xe578f942 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe57fd5eb drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5a42983 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7e6400a drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe81ab3a7 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe843f03f drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe907b985 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe95190d9 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea789205 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb31d062 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebad9425 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec60b96f drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecefd6c2 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf184a4a0 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1f4e7e2 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf20aa318 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf405a074 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4836bd7 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6a39271 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf923b7c7 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9de45b6 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa11b175 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf660f2 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc355d26 drm_agp_bind_pages +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 0xfe87dbdc drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe9d66fd drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff188d0b drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffb9bd90 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x038f4a90 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07993349 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08c88796 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09a2b6be drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09a9cac2 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0af44f7d drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bc2687c drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d561794 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10107bda drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14d298b7 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15d7b583 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16d90bd5 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18180e88 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b27a06a drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bbc4447 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cfa48d2 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e88a6c2 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f8e4402 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2032f304 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x204519ca drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2229c9c2 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22ca7985 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22d1004d drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24898c2a drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x280a3af5 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a62276c drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32bcad17 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x332d7ecf drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x338330d7 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x344dcced drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x348054d0 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34f82bb2 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x355fdf70 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39665915 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a234b04 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bfaa9f9 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d03517f drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f3401aa drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fb64b0c drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41bccb6c drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41d949a4 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x464fc5d7 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x475f83eb drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4783a7dc drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x482af97e drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49b71e37 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a944108 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4beb76c9 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f6983b6 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fa68d66 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5020f7c9 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5040d5e3 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x505888ab drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50e52159 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x535f3d7c drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a2a985e drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ca68cda drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cb7a02e drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6089e34b drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63b16cec drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6447147c drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x646c7aa5 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x719173ea drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7260bab5 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x728379b5 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7449e600 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7792e597 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79d17472 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7af0d359 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cb23650 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dc06f32 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x800032a3 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80adf832 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81180359 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x812c8036 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x828c1e39 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83401b77 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x836bfbb2 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83e5c674 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85eab7de drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87bee419 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89cf9e43 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a7ffd2c drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8af12d9f drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cfa32ac drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8eb2ecb2 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92751235 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x966c2052 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x970aeff7 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c0f7bf7 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa087ef98 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0b3ce28 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1f44bf7 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2b0b00a drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8158e22 drm_atomic_helper_plane_duplicate_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 0xa9293ca4 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaa2f611 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 0xabe12f01 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac5e1b23 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaccfb0a0 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb19948e0 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb399df38 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4235429 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4ac4bd5 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb71e11be drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb82b4334 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb86c776d __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8f250b9 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbaabb23a drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc66e61e4 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc67b8c9d drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6f126e7 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb7b2a77 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfb8716f drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1132538 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd25db331 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2d4ed02 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2f24901 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd306e5d1 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd42e5244 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5695e00 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd738abfc drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda302f93 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbf3dd50 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc4564f9 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde249a21 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf153ed1 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf8b2aca drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe18dc077 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe32953ac drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe516740d drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe94f626e drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeabc89f2 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0d86cd1 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf29027e2 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf73160f1 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf835ba7c drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9496d4e drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb66d102 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb74c2ba drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb89a23b drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe9fe396 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0006fce4 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x022086f1 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0aa63d11 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bb0c163 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x117098f4 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20d5dcd9 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22a88535 ttm_page_alloc_debugfs +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 0x2576d6a2 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x257990c8 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x266d8a60 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28fa1ab7 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a98beb4 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e7063ed ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e9e6b40 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31b87c8f ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x354b042d ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x36f62528 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c85a077 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40161b3c ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42be5f1e ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x446ee2ca ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e323ab3 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5d507df7 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64989988 ttm_bo_device_init +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 0x6cd5c0fc ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e875de9 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x737f32c8 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7563af57 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f20848e ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8209fec7 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836d8fd0 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84c9a72c ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91d06008 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x931dc64d ttm_bo_clean_mm +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 0x94f1ecc5 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96656f68 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x978edbb9 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99853979 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 0x9bf69804 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c239737 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9de3887d ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f548c6b ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa1beffba ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa50e6270 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa811e44f ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb49dde02 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb82662dc ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd7f3053 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc74b3bb1 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc32d181 ttm_dma_tt_fini +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 0xd84bae2a ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdea61cca ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8b48322 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeab1bcc5 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf57da53e ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7b8b367 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfddc15f4 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe27b73c ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff14a604 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x036259a9 vmbus_sendpacket_ctl +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x30a9343c vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x5eff2cb3 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 0xcdab176e 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 0x1b83ddb9 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x943386ea i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfbca3e3b i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x2d91b9f2 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x58ba29aa i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x64698da3 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0fb9d83a mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2f07961b mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x394680b5 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4508b502 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x550690d5 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5b0bfb80 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x76816f62 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x78590a5b mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x823acc35 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x91efb2f9 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb1f4a58e mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb39eb989 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbadfdc0a mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xeaeb1475 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfb3d75bb mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfe59b5e7 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xbdabfee4 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xde8b4df3 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xa8a72144 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xb664141a iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x3e978895 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x633959d5 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xeef8a06a iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf33f6893 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x34606d5e hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x3972cee9 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7a455349 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x960afb37 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xae131bac 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 0xf58020c3 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x4e6f5f51 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xe3e2056b hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xe806e3ab hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xef5aef43 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x00afca26 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 0x2a03027f ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4371fd61 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x76c4c42d 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 0x9b90e0a5 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa4b7b406 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbb629e50 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbd422a68 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc5841a5f 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/ssp_sensors/sensorhub 0x2170c02b ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb6490604 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb84bcc90 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xbeb0f1d0 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd11e175e ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x4c7968fd ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x7b482302 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xd03403bb ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x06868a5e 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 0x08f83059 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0e6f702b st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x284ca223 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x532a849c st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8d904688 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x95eff264 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9ed29033 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa19bfe4f st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaa2f775f st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb46efd7f st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbc79dd65 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd90645cd st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xda2a2d11 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe250bc9a st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe651e981 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe8e90d05 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x4aa686fa st_sensors_match_acpi_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xc0b0d4b6 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x6a2492f7 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x2643c142 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x9461dee8 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x21ad3257 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x486498d7 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x99e1c7f7 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/industrialio 0x1d569b04 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x248780c2 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x269ea0ee iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x2df09ab1 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x36061630 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x48359b7a iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x5119f95f iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x5a1f4aff iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x5e9dc646 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x6c58b42e iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x6ff78b9c iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x868d6e9f iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x9cd1c605 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xbdf93dd5 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xc1bdb080 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xd4616627 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xf5a6b2db iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x4e47f06f iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xfa49e2f6 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x7c61e516 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x9eac0c05 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x178c1aca ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x4b2223aa st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xee705826 st_press_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x03c3ac46 rdma_translate_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 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 0x339ea891 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x61e00030 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9316623c rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d9cabc5 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x204ef830 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x41a1d7a6 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x49a8d27c ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5bed2e9b ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x623d5805 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6b7638ba ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x74138bdb ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7f535e92 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8aa3619d ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9b4bfe90 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa40f28d8 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa8a682ef ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaba3efdb ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd3ade79e ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd6c1afcc ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe9f6ef74 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeee99b02 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xef83dd97 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x006a5b99 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02ab0050 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02c87cd0 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x088a7248 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x094467ab ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bdfb028 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c49be1f ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c9a2a7a ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fe9a581 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11934858 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15ba280e ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1613f6db ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d84de8a ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dc6db17 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24e73bb5 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2690be55 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x281179e0 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2817b5e7 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2aa85685 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d51c106 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30a191ea ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3181893f ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33327f99 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x338355c1 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35150b9b ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a4cfba0 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c14c155 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c210de3 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4117dfd5 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41555278 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x453aace3 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45faf2e2 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4647d2ac ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x474ec880 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47f8c70c ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4af879ee ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d469a4d ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dd2990b ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ff89991 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51ec0cd5 ib_query_qp +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 0x579ec352 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5968a2fa ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66afa7bc ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6917dbf4 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69e478e6 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a0dcbec ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c8a5475 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f2057bc ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f2b4e0a ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x719a0ccd ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7366321a ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79c834c1 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b1f615b ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80235e4b ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80395e2b ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x815c9866 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81764386 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ebe505d ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9613694c ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d4beb6b ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0f7cbf8 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa7af483 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabfa51bd ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3b20bf1 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5cd03d5 ib_get_cached_gid +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 0xbd6b0e56 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdbb50a9 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2f3e1d5 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd20b1b72 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd99e12e0 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdccccfa6 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0613abd ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe277e6a0 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe61827b1 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xead6e54d ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebca3407 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee264213 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefb6ba1e ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4e1c8e1 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf63ebf8a ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfafa6f70 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb3b3a70 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb6d890f ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1a15ecc8 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6a7609e9 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6c0608f2 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 0x7b24d8fe ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7e4fe506 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x840c7569 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x97a25935 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x9b852483 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc3151590 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc98c2146 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xcdd17d7e ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe11549c5 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xedc5cf0c ib_post_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 0x6bcfd14c ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x719e1056 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8f1b5bee ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x97d3b39b ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa9e3e931 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb754672b ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xdd45b438 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xecf2a650 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4a28d4a 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 0x9ecc7f25 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 0xe596daee ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x14b6ff34 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x179aa3a6 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2e0e4ee8 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x316fd7ab iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4b219dec iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x60263533 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c69486f iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x86375ef7 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x912a1992 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x93559fd7 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa7cd8f92 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xaa81861b iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xde3a0d84 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdfeb458e iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xee119680 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x04de5503 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0f9ca8c5 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19ff4ae9 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41abeb5d rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x581b0065 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5a3d1e7c rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x61380649 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8366ad23 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8942b963 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x90507ec4 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x965e361a rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa8d27aa2 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xab6bdb42 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb00adb4e rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb8ec91a3 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb97424ee rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb9800c9c rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xec83fe8f rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xee1f4068 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf73cbe79 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfb233816 rdma_create_qp +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0a34bab1 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1e008531 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x22468dd0 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2713b8d6 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x5d2c0189 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6a1ccdcc gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc0eb9aac gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xdc27bf86 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf37605cd gameport_unregister_port +EXPORT_SYMBOL drivers/input/input-polldev 0x0d44dfb5 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x540ad7cb devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x6837f9cc input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xa7036dc8 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xb37003bf input_unregister_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x1c34dacb matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x646b8ebd ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xe15d8aec ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xfa1c4043 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x04dc06e4 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 0x19e10ea5 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x588ad89f sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x6ea6d410 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x774b53d7 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa5ed21b1 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfb085c03 sparse_keymap_free +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x06adae47 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x9b790ce7 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 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 0x35e3cb6a 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 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 0x8abe636f capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f735b08 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9af0595a capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa172aa80 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa3fd8e6b capi20_release +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 0xc59c8c76 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd18bf134 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe0c00c7c 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 0xef7d6e50 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x05ddeda4 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0bceabcd b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x134e7a03 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x250713af b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x34596a77 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x34ef3e4e b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3ed934e1 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x42415e3c b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4479ff3b b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7e32aff3 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x90fb6a32 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x94e94944 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa83bf9cc b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xafd792af b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf810b728 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x0368b6b4 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x283f483a b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2d0b8a96 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x5d3ae9ee b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7ad1d054 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc08cb500 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc670acdd b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf6d6c7b5 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xfc5f8be5 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 0x2306e55f mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x3758c88d mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x722ddc40 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xc63b5877 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xc9c8d647 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xcecc74a6 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 0xa44508be 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 0x0dad2a70 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x1b9b5dd4 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x48d5a1ca isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x961c3a1f isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xab721130 isac_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x21522646 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x5fdb2363 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xb8d78997 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 0x005b2ab4 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x02e78b01 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x05efb667 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x438db11e create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4949febc mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4a6cb39e 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 0x5d96f9de mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x615cd3f1 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x695de757 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x729f942a recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x78e3a076 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7bd53e57 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7f3a2923 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9ba40d2c mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9d80b30b recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9f58529a queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaec660c4 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xba9e7f95 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xceab18df mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd1843949 recv_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 0xdf0eda51 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8fe37a4 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf8690991 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 0x10dc0d06 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x380a003e 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 0x7f2a56c0 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa455c8d0 closure_sub +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 0xdcc129ac closure_sync +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 0xf3c9fc70 closure_put +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 0x3ea77bd3 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x46eb4c27 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x4f8fe861 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xef6305d5 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2b17290a dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x326806c2 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5c5e2546 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8619c6fe dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa7af45cf dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc3144303 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/raid456 0xbf11836b raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1420077a flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3e4b2e95 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x40409f04 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4fb339d8 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x577df891 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5dd07813 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6d25cf9c flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x711c7e03 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x74795a56 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x77b72e8a flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb3114743 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdded1e6e flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfd4214d9 flexcop_device_exit +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 0x90a001ff cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x93604756 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x982252c5 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 0xe6fc26d9 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x7ca5b336 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x9a0c5608 tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0xcfb2d089 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x15bd1e88 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1824037f dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e5f0bdd dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x236e2fb8 dvb_ca_en50221_camchange_irq +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 0x352db657 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x35e4b422 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ee8cfed dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f24f449 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x472ac667 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5325f9c9 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x550de61d dvb_generic_ioctl +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 0x5c47b112 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6090bba5 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ba2668d dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6f6f6464 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70de704a dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x755d7a9c dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x845bcd55 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x997a8208 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ab4d06a dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa0dec0bc dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa1c33c70 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb2e5dd75 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb8734af1 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc645fbc3 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdbf2740d dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebd38af9 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xee2b1a67 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeeb0a387 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xef694d74 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf00fab4e dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf3204ddb dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfd6b3cef dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfdc38a76 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x24638c1d af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x74e0349e ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x6d6b6b09 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5aa551be au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7baa55fd au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x83ee0d62 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x898524ac au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8f97e0b5 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9aaf33a4 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcd8e42b8 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd49b6dff au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe0ba70db au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x2c809123 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xbbdc7c7f bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x3c09b702 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x1f711df9 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xf3907bde cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x09646449 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x442c7a77 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xb4cea916 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x4a7b1ca5 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xc614c6e9 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xef53fd03 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xcc9f05b2 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x4df6d75d cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x5fa4e445 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xb5e78ef1 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x08ce0090 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x1a8f2ff0 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7b5bc950 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb19192d0 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xdf6472de dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x04e8909d dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0f8b7deb dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2771afe7 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3a543aba dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8b0e4ba3 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9279cea3 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9814589e dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x998867cf dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9cacd0e6 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9da18bcb dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb05620a2 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc2de793c dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc846866c dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdb80174f dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xec293db3 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x3bfd2076 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2ca7217c dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x33f78661 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6736c0f0 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc54df39f dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd5029814 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xfeaa7578 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x359caf9c dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x57fbff48 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6a7a3ae5 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x974c46d5 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x6ea8de60 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xbfa1040e dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6b1d6c1d dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7894f044 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x9a72c93f dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xcdc00b43 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd8185d28 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x6a3fa4e0 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x2b95e0e7 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x296dda0a drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x194223a8 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xe27a3284 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x2e72225d ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x4c721de7 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x9c51a724 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x126e5acc isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x78a14820 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xdb19a781 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x66ac73a0 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x886b872f l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xef41f721 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x3d98e0e1 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x0474b8a5 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x96b354f4 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x84e76e5f lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x140f7a59 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x2f3e8607 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xdeba979d lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xb8fc69aa lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x9ebfb7c1 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xabf34b6d m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x4cbf4ae6 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x2ece238a mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xa7b705fd mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x6a59d6e2 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x83cbe43e mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x2177aabd nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x897abb3c nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x9aa95a88 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x9c827394 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x9c0fc20f s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x819a3c17 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xe0033a08 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xf4100daf s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x316efb9a s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xc8782416 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xa0267f26 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xef5101d3 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xbce4c312 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xb5d3bf1b stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x1b650f30 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x8cc1c01f stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x44c6ad4f stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x78582279 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xbf4ae573 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x4d24fb28 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x4e7dc332 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xa6b24e0c stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x299275b4 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x099437c3 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x36a03142 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x5957c2e4 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x66df6d61 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xa710f13c tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x931c9765 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xa7093f0d tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xe84c1933 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x20116c6c tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x51b3b75e tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x4cbf0eb3 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x886c557d tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x2a968e49 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xd0af92f1 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xd9c3ffab ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xa64ec50a ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xb98fe332 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x4f3bcff8 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xaf000b73 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3fd67dc3 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5f1ca1a3 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x63829713 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xdbffdb3d flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xdf7fd494 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xea06e1e7 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf591a135 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x815c051a bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xc1c30cb9 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe50ed6a2 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe6000c6c bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x25859deb bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x98059c11 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xda0a1b46 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x327f2376 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3a8e8041 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4fb31e3e dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa8c16e40 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb0f0d496 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb2bbbb76 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcf4b967f write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe9ff45f0 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xef0f0ad7 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x3defb288 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x41363cfc cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6676a00b cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa4d58d45 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xdefad888 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf639f7a6 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x660b3e43 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 0x353cd27e cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5f440896 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x64c630dd cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x97223154 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd05f966d cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xdf216f7a cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe529ddf8 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x324581b9 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x9e140513 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x16c7a50e cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3de8bb7c cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5fe59287 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb12fcf92 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0b64befb cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1068ad48 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6bf18fff cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x72420e1f cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x997905af cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb68f2ddb cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc1a2c443 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x014d9727 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x01b3e306 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x03d6db52 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1003bd47 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x186cf47c cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1a7ad91d cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x32e15150 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x425e15b1 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5a835bcc cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6bf78b6f cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x77789308 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x87609f41 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x91d51f1d cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x98ea0833 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa30bbd7e cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa7d7ff87 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xac472563 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe0e98b9b cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe39e1fd8 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf4a3912f cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0577f09c ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x26c66486 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2d4fbb13 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5bcd4d71 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6a38b162 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa0424001 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xae199337 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb2e3c678 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb8234770 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc8d01b95 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd0cbb473 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd7b0a189 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdadb085c ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdd7b5859 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe532d056 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xeb44a1aa ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfaeff7a2 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0d070700 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1adb0982 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1bcab513 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x38eb41f0 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7d2278db saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8b6b4573 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa839ab54 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb0e15cf5 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbaabd281 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbf8b7399 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcb834539 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdbfeca9c saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x8533c18f ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x5654ba20 videocodec_register +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x863f2f4f videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x9d0deffe videocodec_unregister +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xb814616a videocodec_attach +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x27bf2d60 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x3a65d2c1 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x41f59d88 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xaaa7b11a soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xab8e9dd2 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe1a2b33b soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe37c3a9c soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x1f9b2af4 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x2db8b037 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x30731531 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x317aad71 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb99d499f snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xbd70d76c snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc38ece55 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x112e9aad lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x43159a52 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x4c0ac944 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa483c3fb lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xabd5f3ff lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xbb2efbb3 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xbeb6eff5 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xd15381df lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2b16c129 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x95de8b7c ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x2f851c30 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x756d0c4f fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x22f9e484 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xe2b012a6 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xf4ef2cd6 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0xa9641dbc max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x8db176c9 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xee853cc7 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xd6cd8be2 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x60d21a3a mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x1a9063a2 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x197d1910 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x98b12f5a 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 0x4ae8288c xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xbd206239 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x48e5e0d1 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x7c3a48b7 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xbebfb7fb cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0759c552 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x19eeb8af dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2368a2cb dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x63c37a37 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x77c6b558 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7f905db6 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9bf485f8 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xed96366b dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf22efde5 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0f648671 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2cb9c6be dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x37a3db6c dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x57e7e53b dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x67be8768 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x84f13513 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd86c938e dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x1367cd7f 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 0x1c8383c7 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x378a295b dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x717fad0c dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8c70ec29 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9411c8a1 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xad5e7f06 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 0xb71a4c47 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd9196383 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd9f3d107 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe40a18a9 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf6d2c7fb dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x0c313984 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x0eda2528 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x34baf154 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5126ed5d go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x97d81d35 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9be41198 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9d36c37b go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa7621c7e go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xace23191 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfdbe5236 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xffcb77fd go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3c80dd29 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x57cb9f8b gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x722cdc94 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x76630875 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9c3206a8 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9d5aa0ba gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc685a394 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcc71f6be gspca_resume +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x9c875ee2 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xd6dba97e tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xd8890249 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x18d7975f ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x33109695 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x06323a45 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 0x48d9ba9e v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5d45410c v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x2fa713d0 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x4a245710 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x4fb16a37 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x61aafeb0 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x78fe6e33 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xc6aafa66 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x57d763db vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xd2e3b590 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x17c76dfd vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x735407eb vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xadbdd1af vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xba32d55c vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xe27e7616 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xf9318507 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 0xb6d0d8c5 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x07288bb0 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09bf6a2f v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c67cc25 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e8daac3 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x108a3694 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1098a839 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15ae72c2 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x171b18ab v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d58f686 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e69f150 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e8a372a v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28f21843 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28f3b493 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x29d602ce v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c505dbe video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2dcc1bcd video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x38852e52 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x393a0d8b video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b20ee52 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ce3d152 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3f480509 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4017451a v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4067a29f v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45ddde25 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46434a9a __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4eef3008 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50e05ac9 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5234d20c v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52a50cba v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5609d898 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61b5e30f v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61d1040f video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a659949 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6eab6717 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74c24ba8 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7688be66 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7697e574 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83af234e v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x84907ada v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8cd8f60c v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ebe53a0 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x930cc20b v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x93230e53 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99eb6a28 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9e1688d4 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9e4a48b9 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6745d69 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb952a928 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba04b309 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba765864 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd32f643 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe4de935 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc3cfcc2e v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc4edbaa1 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc6b4a5e3 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc778caa0 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcbc34e70 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd471e524 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd83ebd16 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe0937900 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe84e7c2c __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xecf1f83c video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeda85f61 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf05e4912 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf0fab7c8 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3c0286b v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb06b643 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd92ff4c video_usercopy +EXPORT_SYMBOL drivers/memstick/core/memstick 0x021e84ac memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2d688b02 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x57f6ede9 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x59124b9d memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6dc10f5e memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xad713657 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xaf3d0f30 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc3a79f5a memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xcbe732c7 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xcd8ba33f memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xde2fd754 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfe1f74e8 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x02cae1ee mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x12b900f0 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x13db0cfb mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x183f736c mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1f55a896 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3af00432 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x40357d1c mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4f114e93 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5416a76d mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5b073299 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x63627324 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x69b273be mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6cd329c7 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x831de2be mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x854b73ec mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8d259362 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9dfd66cf mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9f94e831 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa17178b7 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa6c1d87a mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb6e7c950 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbdc1baed mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc41f5ca6 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc4ad913a mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd410a357 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xda36c6f0 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xef9d6958 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf683d96d mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfd4ed9c7 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x01cdca97 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x044053d3 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x09a1876c mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0d88dc2e mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x211f7b61 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x22b497bc mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x26cfb39a mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x348a58c0 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3c21a6a5 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x487d0398 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x489220d2 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5e38b5f9 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5fcf8289 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8214f36e mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x868b9d4d mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x870b9fe0 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8c128d10 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8ea0df4b mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x91b377a9 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaacf6fa2 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb184e507 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb5c1bd7f mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc372bae4 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc563d7a7 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc99bb948 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd40405a1 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf174ad2 mptscsih_suspend +EXPORT_SYMBOL drivers/mfd/cros_ec 0x180ce9ff cros_ec_resume +EXPORT_SYMBOL drivers/mfd/cros_ec 0x2cdbf83a cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0x538291b6 cros_ec_remove +EXPORT_SYMBOL drivers/mfd/cros_ec 0xbe9e5033 cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/dln2 0x434e0197 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x750eee2e dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xe6a1f89e dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x6ebdbfc4 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x9eab3086 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x24e571a6 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x55a7c455 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5e51d8bf mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6885789a mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x95c2d5e2 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x96921521 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9a40e92f mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb9e57306 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc8a5e77d mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe0acec29 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe3f3879d mc13xxx_get_flags +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 0x44cbd2ed wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xe38e4e29 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x552c4fbc wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x7a3d0d03 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xca4e4d91 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xf874f608 wm8994_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xc0f0bbea ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xf5e3c834 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x075983d1 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x51f4fcf1 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xf489bfaa c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0xb52a3bf2 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xc2578ff8 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 0x2ab10239 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x3e34d838 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x4be35135 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x5501924b tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x6af09834 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x84dad3e0 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xa40d0763 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xadf9f5af tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xb3f25173 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xc687086c tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xda01594e tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xefc0dbfb tifm_eject +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x9a6b33a4 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1196b1b3 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6705b369 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7f5d0c1c cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xab4f191b cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb626d97f cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc1c04141 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe71bdca0 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x4610cffb register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xc36f68f9 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xcd2bd34a map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xe94d2f5f do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x438d85e3 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xf09d4e41 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xf40e8482 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x01b9c04e mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0x40c54903 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0x12aaa3d6 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0x662a2436 denali_init +EXPORT_SYMBOL drivers/mtd/nand/nand 0x1e691878 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x4b743bda nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x6f6a19e1 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x7354c86b nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xb2bf66ab nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand 0xf6a9aa21 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x77c20b63 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x8d437f08 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x91b8b9a9 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 0xd84ff29c nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xfdc3adfe 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 0x357c5e0b onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x70955d87 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x730be314 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x9f893fd7 flexonenand_region +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0e0c94f6 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x317afb87 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3d0a2b9d arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x60be918b arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7e8a2b56 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbb13605e arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd4eca921 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe02b103c arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf1f838a1 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfb88a8c0 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3d083554 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x99c275c1 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xef27fe0f com20020_found +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1588adc6 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x21ee804f ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3873772c ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3d2de69b NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8d29ce92 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb283e469 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd007360d ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd9f1b902 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xee3f85e8 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf55ae41c ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x4c85fd6b eip_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x77105ba3 eip_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x85fbd87b eip_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x88121981 eip_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x99c03fd7 eip_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x9be8cc70 eip_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xbd3c0452 eip_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xc469ce8b NS8390p_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xd567b91b eip_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xe3d4a54e eip_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xf793ab3b __alloc_eip_netdev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x54bea913 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x159716f8 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x06f45351 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1c6ada53 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3572e6a1 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4041cb41 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x708a6fdb cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x78fda12b cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x87a3019b cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9ac42399 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xae1546b1 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb339a733 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbe667aca dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc1f11bc8 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe19839b8 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe978db44 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xef57ee25 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf693dce8 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0fd9d071 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x16ab292c cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x17c53354 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1e88aea9 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2079932b cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x21c2064d cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3273364c cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35baefb5 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35d51ca9 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3f967c24 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4753adf9 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 0x5144714c cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x515b4fa5 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57707dfc cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x59c619ba cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5b0c3444 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x609c8560 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7417f921 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x768fddc4 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x80ec703a cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x85dc6967 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x866f8183 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x876169c9 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c8aab61 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa2e94cc0 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbc7d9577 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7e08677 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc9307da2 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcc544f32 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 0xead61981 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedfec1b5 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x06d0eb37 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x22deaf0d vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3d64f004 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5c41a8e5 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7badbc7d vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd405011c vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x3817ac4d be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x8859b76c 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 0x08455259 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b740ab2 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f1d932e mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1744aa26 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x181e0a9c mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fd7a33a mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30c9ae38 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32bb1d65 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35a5f4be mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35bcc7b1 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x360df5df mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4557193c mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4832ff73 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53165781 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58a30a96 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cda7f51 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74e96b46 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x759beb49 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76ee2130 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ce52149 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ab2f868 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98d6abab mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99528118 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa33667dc set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa5a3253 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbba3663e mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc08d74cb mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcceee79f set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcef46ebd mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcffd1e5e mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0ce771a mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2b53b86 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd49d86ed mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7b5d49a mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0a52764 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2daa7aa mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7dc5a2d mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbca2702 mlx4_SET_PORT_qpn_calc +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 0x0d5adaa6 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 0x157207ed mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1681e55b mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c20cab8 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x283bef1c mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cf11090 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2df8db8b mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e6fb58d mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38a4de39 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cfa68b3 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x663c313d mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69e860e7 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71945fb1 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x719e966a mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82a6aaee mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8359eb25 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8aff3cc7 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9227d849 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x922c1772 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96a4ba36 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97271218 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa4af753 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa6de273 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaac50843 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaba4e4b1 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac565288 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0954288 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc883d3f mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0d79ce1 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc23d5179 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8868214 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcad5b4cd mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8c3caaf mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3e47a40 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 0xf03e35f6 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6ee3eeb mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc728a49 mlx5_add_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd49cae9 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdabcccd mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e1472ee mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x439c7eb6 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49fb8e14 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 0x7faff210 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 0xcb5c8545 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb7a595a mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1635c3a mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee8e0771 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf325b613 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 0x761ed32f 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 0x80fc3092 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9e6d743f hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xaa4f1b54 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc5ee230d hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfa98a04b hdlcdrv_register +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x063437a4 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0b9541ac sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3569d565 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x53e19f53 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6d798e7a irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7f06dc60 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x85f201d1 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8647b7eb sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8f017dfd sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb24ac5d4 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 0x124516cb mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x28e0f3f9 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x438dbbba mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x559b7ac2 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x7f1ece70 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x8e6ac972 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xc3ab1174 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xf1eede1f generic_mii_ioctl +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x498e8335 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x7c41bcd4 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x0f5740cd xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x68498ace xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x765597f1 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/vitesse 0xb024f23d vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x57e7213b register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x5a5b747c pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x97bc1fcc pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x325ec86b sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x066947bb team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x1694c93a team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x38222ae3 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x57fd694b team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xd3137cff team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xd7b56690 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xe0fef4d2 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xea72b7e3 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x27d3bc00 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x8009caba cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0xbf2c47f1 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xd86f3814 usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0a47617c hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1d999e6b hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x43485f94 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x435886a0 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x506d57f9 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9476386b alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x95360692 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9f7d6c7f hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbc5ec128 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd6abcd57 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfa09f11e register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/z85230 0x0606f97b z8530_init +EXPORT_SYMBOL drivers/net/wan/z85230 0x10c78988 z8530_dead_port +EXPORT_SYMBOL drivers/net/wan/z85230 0x1266fa5e z8530_sync_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x18a3e3d1 z8530_sync_dma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x342318b2 z8530_nop +EXPORT_SYMBOL drivers/net/wan/z85230 0x48b7b12f z8530_shutdown +EXPORT_SYMBOL drivers/net/wan/z85230 0x4bdf18fb z8530_sync_txdma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x59e1d6e0 z8530_queue_xmit +EXPORT_SYMBOL drivers/net/wan/z85230 0x5cd24d29 z8530_hdlc_kilostream +EXPORT_SYMBOL drivers/net/wan/z85230 0x60fcab44 z8530_channel_load +EXPORT_SYMBOL drivers/net/wan/z85230 0x628fd4e5 z8530_sync_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x73e354fc z8530_describe +EXPORT_SYMBOL drivers/net/wan/z85230 0xa7387c6b z8530_sync_dma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0xd4ffebf0 z8530_interrupt +EXPORT_SYMBOL drivers/net/wan/z85230 0xe3d80064 z8530_hdlc_kilostream_85230 +EXPORT_SYMBOL drivers/net/wan/z85230 0xe84097f1 z8530_sync_txdma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0xecd9f731 z8530_sync +EXPORT_SYMBOL drivers/net/wan/z85230 0xf967b4b9 z8530_null_rx +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xc3c5e56e i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x2ec10a3d stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x6fd43ff8 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xe8236d56 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108d083c ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x787ff81c ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7a935726 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x89b33696 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa11876f9 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa1d9161b ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb2a8c6b2 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb86b154f ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd0de8f22 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe71f7636 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe9a46bb1 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xee41eec3 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 0x124271e5 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4a597862 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4c727fe2 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5ae71266 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5c44626e ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7c249697 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8af4fa7e ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb9d256d6 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc6c27a97 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2273777 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd534b02d ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe783fa56 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8a795e2 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe992a047 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfe1893f9 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0155a120 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0f934d85 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1608f66f ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1b9fc1c0 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3b6b5cc7 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x49918105 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x49a5f939 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5ee7049d ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6c77d35f 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 0x83363dc6 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 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb5d540c ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x02950954 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x038059a6 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0bc9a945 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1ba66ba6 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1d220e23 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2c3903fe 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 0x6914548f ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6aae5e7f ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6c114af2 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6c52cb0b ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x863536ce ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa7722e2f ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaa961186 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xabb8e413 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xad21a252 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xae9ec755 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbe94699c ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcb7e53f5 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcfb9a02c ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2a47bf8 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe3173100 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xeeb7082a ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xff67285d ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x001d6489 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x005cdf6b ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01733c50 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02bce8d4 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d0f875c ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0df9daf9 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1577e400 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c15ce87 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c9cf136 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e93251d ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ee8e97d ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2221f22c ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x253e872b ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c77cf25 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2cab2f39 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2cc8bfe1 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2cdc6480 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30cf91d2 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32184329 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3493a16f ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x374c7696 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38ad2ac2 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38ea8d0e ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3bf671d1 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e2e532e ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e33f6db ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fd89a17 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42d02a23 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b16f4d7 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c8ca06d ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57560de9 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57bff7d3 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b7ff8f5 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d7ae7a2 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5da45997 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e3e9a8a ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e401a57 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fbbd935 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fe436d5 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63072784 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65ea5682 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68dad715 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x695a750a ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b7497f3 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e0259d1 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x716cdc9d ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7681e65c ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a599631 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a98b019 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ca9d6b1 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f1975fb ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8028c13e ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8197f7a5 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8424ad63 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85348794 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90185dd4 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90df7faf ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90f72582 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90fa73fe ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9106a909 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91cf7881 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92cf291f ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x931bcc6e ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95803a47 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9700bc0b ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97eb5bb7 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x981c7c60 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9952e508 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a1dd5c5 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fca7a3f ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3e50bd1 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7dae5ec ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7dfbe9a ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab01ed99 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaca48bbd ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xadd87393 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb092cbe1 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb43e4c7b ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4f757da ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd0f5b53 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf6e6d1e ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbfd34eb6 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc11826b0 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2ebca1f ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4dea63d ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4e748b3 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc58c322f ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce86207b ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcef9f53d ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf845318 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd092d5bf ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd09f0896 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9034ca3 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdad62166 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd085cea ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd599162 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe525d53d ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6f93567 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb8cf538 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed515fa7 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeebaec33 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeec14e79 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2d22f1d ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf33b01b7 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff82efaa 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 0x0403714c stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x5bf47e5a init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xd465b188 atmel_open +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x05a412c8 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x17765bcd brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x28540b39 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2fc17c4a brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x354ebe22 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x47046c10 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x694d974e brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x84c8941a brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa344b175 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xaeb92420 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb7a5d487 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc69208bc brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xf692773e brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1c7319d2 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x260f587a prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3211b064 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3cc827d7 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x43e61748 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x53fc39b6 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5bbb7639 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6ef3958a hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6fda6d83 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8b5d799e hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9215798b hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9617c949 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9c3443ae hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9d436668 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb1d2d0d5 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb416a21a hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb97a0844 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb9c9530b hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc3345968 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc4196f16 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc7c63d72 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd11cf682 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd92f4681 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd983070f hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe0646b0b hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x026af71c libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0b571d64 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x170c9e76 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x277a41a7 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x285137ca libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x29e037a9 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x388fda9d libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x570a1ead libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x58e2127d libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5a8453e2 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6b3f040a libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8142b607 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8ab0204f libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8f6c1878 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x92832713 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa86fd0b9 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa98a11d2 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc579abc7 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc8c81de9 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe36b4c5e libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf16b1d87 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x00909420 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x00d0cc65 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0141406d il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x04a423a0 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0686e4db il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x07fc4edc il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1090d3d4 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x126541b6 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x16ad1ed0 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x187b5d23 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x197e936c il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1d5933c3 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1e5623f7 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x200cbc86 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22f923a3 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x249b1168 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x25261614 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x291a0fe7 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2d6c8878 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2f2dbb59 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x316b86fd il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x327fc500 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x360d5838 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x367aca6c il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3ede9829 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3fdb517c il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x40c588b4 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x41cd963a il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x44576347 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4d0a6289 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4eae338b il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x53bc8bb3 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x54e35972 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x555f0a28 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5a18f7d6 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d32a1b8 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d4860d8 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x656251dd il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x66151f05 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x670fea7b il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6b9d1b57 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6c988878 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6cbb7dae il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x70011934 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x71d0c0b7 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7b2e044d il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7e20cb7b il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x80bf39cd il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x80f897aa _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8105f98f il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x86147dd6 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x877b7a04 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88af0194 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8a4955fa il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x94288ebd il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x97911a33 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x979d621f il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x98776704 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c7a5f59 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9e96cfcf il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa303b06a il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3ac0ca4 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa8759f56 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa8b114ea il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaa0ccf5b il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xabe7f14c il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xae7d2db5 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaf13dd20 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaf23cde1 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaf35b6a8 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xafd0e4cb il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb1f46701 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb693128c il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb723c11c il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbcb65a9c il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc035947b il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc1b95d02 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc3248752 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc365dd8b il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc4a09858 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc4cf7ee7 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc5d3eda0 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc636a3a3 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc8f2e5f0 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcb59a8e4 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd5b8ec39 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd6591f1d il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd96c79cf il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xda5155c9 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdc4f5b54 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe0625992 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe51084cc il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe74c5d23 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xec91c886 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf0b498c9 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf23dec8f il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf65ce188 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfc0f307f il_hdl_pm_sleep +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 0x01e67f6d orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x02cf7fcf hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x071401a2 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x14db2d25 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x396efca2 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4ba72302 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7786e83e __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x77891046 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7d524ecb orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x862928ea orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb1b08b55 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc6e4177b orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc7818978 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xcc41346d orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xccb485b8 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xcda4c3df orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfcf7a3ac __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xa09f2ca3 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x08eb01b0 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x090bfb6d rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x09684496 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0977e753 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0d3c8bdd rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x11eeed42 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1a8209f9 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1c964e7f rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x209123c1 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x57b830be rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d908c79 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f4a4fca rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x74787f91 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7903d997 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7d543cfa _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x85626c8e rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8bece105 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9118792b _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x91cb83f9 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x975860e4 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa267e596 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 0xbb042a46 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbc8bf598 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcb7b5669 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcc1541d3 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcf4866d9 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd0b6aef6 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd3b47f84 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd6c04a0c rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd70bba6f rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd99a1f7c _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe183501c rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe5962bf6 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6755c4d rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe7ae3ce8 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe907e6aa rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xec61191e rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf2b562ea rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfbd67bff rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfec3cf62 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xff271dfc rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3c680ed6 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x64c6e7ad rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x8ca8195d rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc41957c2 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x070438ef rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x22c584c1 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6601f602 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb53a0ecb rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0829d102 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0929e230 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x09d40f18 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10826b1d rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x252d2db0 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a94121e rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2b5f71ab rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d78cb52 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4ac3f467 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c99be19 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5dcb2ff9 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5fa6b265 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x64e9ccdb efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x728b6180 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7303376d rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x745b788a 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 0x86147cd3 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8937e7a2 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97ea3941 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 0xbf611c44 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc0f47e30 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd09ab3dc rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd33cfdea efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd60436c7 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdff5b8cc rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe666e8fd rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe99e9d3f rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeeb100e6 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4300c128 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc08089f7 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xcd0a54ec wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xde0e3e77 wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x2dcdfde2 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x80ad22b0 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x90bb351f fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xa3552771 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xe44b8ebc microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x3d67d57f nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x5600a2ae nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x9b24f55c nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x29bee096 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x5867ac39 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x0e413b4c s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x42d37fac s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf60abc85 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x12315110 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4710ad90 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5d59c628 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8a3d1a4f ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x95a0682c st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb10e4d09 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb7bab904 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbc29849d st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbd1f6485 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xeaa7feb7 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfe41c94a st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0599c066 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x09705dbf st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0a6207c5 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x20d9c1fa st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2555ae58 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x27df32e6 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3a7de6f1 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x48c2b6fb st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x515903c9 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7026fb8f st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x969f2f41 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xab8a9fa7 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xae90cd69 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb987c210 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc28b83a3 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe9bd0519 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeffcc8f9 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf24bb025 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/ntb/ntb 0x02a723eb ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x0cf4479c ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x16ec1a87 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x551f0c15 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x9d4a28d3 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xa194292c __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xb8bc096a ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xff759c89 ntb_db_event +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x6cf8722f nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xda51474a nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0xdbe2d0ce devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x0f2323a8 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x13e2114b parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x1c58101f parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x1f87739f parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x2b1593d6 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x370f9be3 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x40dc92dc parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x434f087c parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x4b20a929 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5099b8b9 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x5aac3888 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x5c8d56f7 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x65502156 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x6dfaf2ff parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x6f409bfc parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x72bd4299 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x72fdde88 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x95349e33 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x975ff2bf parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x987b87ac parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x9c11c55d parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xa0dbe639 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xb5624e19 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xc82cc5d8 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xd8853e84 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xe16cc202 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xe7448623 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xebfdc6db parport_release +EXPORT_SYMBOL drivers/parport/parport 0xf0f30438 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xf5b377d6 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xfbefd230 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xff341527 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport_pc 0x122a3a15 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x2b9ec584 parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x15486045 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x158e9004 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x195cbb47 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2967ca15 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2e170042 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3aed07d0 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4ac4924d pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x54d0a45e pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x57b7cf7c pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5b5fe3e4 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x78388ae8 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x928dd15f pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9c314d12 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9d193504 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa24bf17b __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa606076c pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb97e3dcf pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc78e1f13 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdfcc79e0 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x22ebda1e pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x315f6b61 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x381306e4 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5b186870 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7716c0b5 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x961fd08b pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbee7319b pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc7396190 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xdaee14ef pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf63c1cc7 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfeefb273 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x159804f4 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xea17ab47 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 0x60154287 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0x9a2d5f5e pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x9af18191 pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0xd935fcd5 pps_register_source +EXPORT_SYMBOL drivers/ptp/ptp 0x09a6d714 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0x3a89c685 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0x5f264f3d ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0xc04ecd0e ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0xf5013685 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x00ca6192 pch_tx_snap_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x521f171e pch_src_uuid_lo_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x61eb0fbe pch_ch_event_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x6da88535 pch_set_station_address +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x7b99568b pch_ch_event_write +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xb0722ffb pch_ch_control_write +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xd87452c7 pch_ch_control_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xdcd1c592 pch_src_uuid_hi_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xf7cb253f pch_rx_snap_read +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x09aaab1e rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1ec349c4 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x25e26c41 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3a86aaa9 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x415ecf08 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x5acb9ab9 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x63eebed7 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7f223932 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x843c0bf2 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xa33ea7cf rproc_shutdown +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x33e8df21 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/53c700 0x040b2fc1 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0x68fcec78 NCR_700_release +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x0b7f379a scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x3f39b91c scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x44cd4ba8 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x677416b6 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0b9faf7b fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0bf9d0e6 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1e21165d fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x308fc351 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x35c5e8fc fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5cffa388 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa28da97e fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb1fe6854 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb4772376 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd2e8f49f fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xee0b8233 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf8889a43 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06ca172d fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x094dbacc fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0be1aec5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f7e7cb4 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x138402dd fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14718517 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14bbf341 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1ee75e79 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2772820f fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x284f53fd fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b110724 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d9a3198 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3073a7fc fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a998002 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x439f22a3 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53632fd8 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x575d8772 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5db8941a fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5f03d3fc fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66e61e39 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6821ba31 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6adac939 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d01b27a fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6fafc382 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x82c43a73 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x839f22d3 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x84a94a3c fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a0d6b98 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c6236a7 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x95e3e4f1 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98d9e023 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c7c3fb4 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa182e651 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb97e0978 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbdfae0f3 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc4fc49f1 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc53917d9 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc574aae8 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6bb44ff fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc1436b5 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf1205c4 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0a5964c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd280a786 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2f3fe6b fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3a03483 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8545448 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdecdd195 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf50e41a0 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa523900 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfcaf9c33 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0ea1c68d sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4dbee554 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6af906fa sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf8871432 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 0x6f1b08db mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x021186ba osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1c87bfc1 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x29ea0b6a osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2acb9e64 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x30de9891 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3462f06b osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x37ec605f osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x39fd6982 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3d2074ca osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x568aec83 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5cf2e6b3 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5f690e33 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x62ca91ca osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x63087de0 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6905e28e osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6c064ce3 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x76d07481 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9217a51f osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x929b3628 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x93cd7bfc osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x93db8ce5 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x97024835 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x984d62ea osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xac1975b8 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb7b3119b osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xba28bf51 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbb0e91ea osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcb08942c osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd1e6e1f3 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd908ee7f osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd9de9fbb osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xda2b3f68 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xde1dfc66 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf81feecb osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xface228a osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfaf33916 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/osd 0x25bc8774 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x37d24b86 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x6499a5ef osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x7fa234f1 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x975bca78 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xb6e2c7df osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x05b00ae5 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x064dd0d1 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0c60a21f qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x10702523 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7af35615 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x81b1dc7c qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x999241eb qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd6610047 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe5f15027 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe6f34b0f qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe90ee9a4 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xed145be6 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x26ad05cd qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x67bf0968 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x87559016 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xc882f54f qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xccf08be7 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xebc7e5d4 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x54e5303f raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x9d0c1ec1 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xa0b53f5a raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1a0ca36a fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x438b7b0d fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x43d11760 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5176e4a9 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x81497f73 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9e27c881 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa0c07ea8 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xab0c074b fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xabff1818 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcce0d166 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd98c5ae5 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe39c3cc6 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xef306e13 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0351c77c sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x094adcc5 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1361a371 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x20572afd scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2d93de6f sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x39194191 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3d88919e scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3f9bd795 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4368ae6d sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x54989efa sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x589fd652 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x595b6e94 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69bed4f6 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6adbbc4e sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6c04ab10 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6d9da518 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7e6ea5f4 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7eba79e2 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8865bdb0 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc3960407 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd382ee8c sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd408d901 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd8c33d5e sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xda019afa sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0458e15 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe245861e sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf3d6bcd6 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfbfdba49 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x123e1226 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x50947fcc spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa22f8b4e spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb988e0f1 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe5ec8a3e spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3bc6ef85 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7f950632 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa68c8010 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb07a476d srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x34af7c00 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x702c0644 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x8ae3dbf2 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x9a7361f3 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xaef9a449 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xc8771f89 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xdccc5612 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/ssb/ssb 0x03294a1a ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x082f3bae ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x09fdd88d ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x0a9934a6 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x192974b9 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x455f7071 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x63e0207e ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x7d22d489 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x7d7d0a8c ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x850ad008 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x8becfb11 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x8ecb5127 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x9de2e15b ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xa5b73f2a ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xab6938af ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xbd359388 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc9320e9e ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe1feb74b ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xf07c4ed5 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xf6cbafc6 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x10203a19 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1206bd2c fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1e370217 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2cf90e65 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3287269b fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x331eee53 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x43b10aab fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x477c812a fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x49ab1fd5 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5d67b0ae fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x77440e02 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7d8021cc fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x81f9e20c fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x85078adf fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x95fd0289 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x996db9e0 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa5fdf751 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb87b8053 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb8cc363a fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe058bc15 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe99cc0b2 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe9af27d0 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfe1f7d9b fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfef79df7 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x23e5e5b6 fwtty_port_put +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x86422b3e fwtty_port_get +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xcb7a1b51 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x6a418f34 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x860a74fb hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xacd6089c hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xbe711e8f hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x036a90ac ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x18c88e3f ade7854_remove +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x63289cea cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xc01717f6 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x019fc047 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0e2d686e rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1026233e dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x196c6043 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x19f4b15d rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b2152d1 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b32db40 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1fc6db7c rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2152fbbf rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x23f8c81c rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x270db84e rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2a372e65 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2c686abe rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x356ed896 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x436324a4 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4388babf rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x45a90587 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x489393ac rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4b001f2e rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6007e1e9 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x641a0a17 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x698b72bf RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6fb76259 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x766a9abf rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x782a8611 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x817ab0e2 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x847daeb6 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9196d0de rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9540e651 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99b756f3 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ecb50ee rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa67f0822 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb0395897 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb3be4f54 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb948baa8 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbb1ce587 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbf4a0374 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc0a7f166 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc9905681 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcda3f067 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce8722d5 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xced96fde rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf11ad9d rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd68617f4 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd6d6914a rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd78014e7 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd7dc4b8c rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdfdd1e24 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe3f162dd rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf49db2f3 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x006943b8 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x05d09fa1 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x088474ed ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a61c5dc ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0bae8da4 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x126cb195 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x182d491c ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x190c90b6 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2223a768 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2379f430 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x28acbd83 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x41ceb984 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5222f6b9 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x52cd4197 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x660387e4 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69629948 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70a5e880 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70ef8ee6 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7359cf3c ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76cf2054 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77adcd60 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78fb41fe IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x793824df ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7cd33d27 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8051556d Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x81294205 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86ec01cc ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x893798cd ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8c0d3e08 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91e092e6 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x970d947a Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x98ead480 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa2c64315 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa9f8d295 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb4a37a21 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5160db5 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xba9fe6db ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc510b1b ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbcc2df60 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf77efab ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc49218b9 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7f60473 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcbd4efaa ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcfee9064 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd44c9801 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd96a7160 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe9cc4ee5 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec211bc6 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec89704e ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf1bbe1f0 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf654394e ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd095820 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xffa95e2c DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08528b45 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1a84989c iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1da1af95 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1de63af0 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22834d7c iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22d9639c iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2c8870a3 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x30c4a2a3 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x38734790 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3aa70842 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d90544c iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x495b86f2 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50b075af iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x55d09a06 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x55d190ae iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f0dc5c8 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x67d12c0f iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7350c09d iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x78cfb673 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x84bf9514 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8db2bb3d iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x97ec2b05 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa2b390a3 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc1607be0 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe1fda97c iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe7e225a0 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe93b1b06 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfd0035a3 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/target_core_mod 0x01099eba target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x09eb6480 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ba599a5 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x122b770c target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x12c07abc core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x134e1189 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x150331ed transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x18e1b333 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e83b73b transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x23a207de target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x31e13f1d sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x326b6e66 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x35277f38 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x36d9d293 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ff878dc sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x407ebf3d core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x4102d491 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x447c782d target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4bb94ee1 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ec732ba target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x509bb865 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x50f9af5e target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x53ad1542 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x57aa1095 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b71cb58 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c03f8b9 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x5cbcf29e core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x5e8827ae core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f24bcd9 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6650d5c9 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x66815fbc transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x725e4d49 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x72836d28 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x753e580c target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x75f91eb3 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x769d2b7d transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d88a2b7 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 0x7ebac7f3 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x853622fc target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8716ec92 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x90bb4fa0 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x9333051a target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9885d109 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x9aae72b3 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d9ef04f target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xab1fdf08 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xaeb65d40 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb039da5e transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb27a04a2 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xb3dd4bc7 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5c2438d spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5fc427a target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6718f7a target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7ff656e target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc23fdf3 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcda692a8 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd805f960 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9b4f30c transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb38e256 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xded6f24b transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xdfb0ac87 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xe132fc56 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe1d3457f target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xe8e0d57e transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xee71503d core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf5b56fb7 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf9ee3800 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa9e6ff7 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xfac9673e transport_backend_register +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 0xcb473600 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xdcf6bf45 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x67460cae sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1fc1cfde usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2e287cd8 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x32bf8ed0 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x51f1638b usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6bf02987 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x87dacffd usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8ba207b4 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9dcb1d7d usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb1f678a8 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe8ca0c9a usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xeb4520d2 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xffeebda1 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x5c3a5715 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xc6b513b1 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 0x3b0df92f lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x483b34b7 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xad7862d2 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xdf98e1fd 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 0x2ef47a51 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x483a2ef9 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6450ab11 svga_tilecursor +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 0x9318215d svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcc55db2c 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 0xf461171f svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf6f07db3 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xfbb9c8ce sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x3812fb96 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x9b473cb2 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 0xec16946a cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x724af9c1 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x0ed9cfb6 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xaca7fb83 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xc97b70e1 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0d47b62c DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x3e3b30ae matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xae7bb882 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb7a77d40 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x9fd3414d matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x5c6edc4e matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x15183edb matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x4a9998bd matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xc0de6604 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xde9d79f2 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x54c0fcad matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x8d82579b matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5c8d9c7d matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x67f84c15 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x81579eb0 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x99345837 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb41dad66 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x88a673e9 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 0x53afbebb w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x5e895c77 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x8efae847 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xc07f4858 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x82d0d9a4 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xd61160ca w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x283b8efe w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x5fd258d5 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x1ad75d0b w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x5db322f7 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xa3c49fdb w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xc848283a 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 0x0de2b3c0 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x1cafaaca configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x2d9a4f92 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x366c489d config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x39d1d8b8 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x3e312b15 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x52836844 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x63fccae0 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x6b23394b config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x7121ccbd configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x7ebcbb39 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x8c974535 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x9cf5adc1 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xa2d8a47d configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0xb7723c64 configfs_unregister_default_group +EXPORT_SYMBOL fs/exofs/libore 0x0518ac4e ore_write +EXPORT_SYMBOL fs/exofs/libore 0x14d04c85 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x2a6dfae6 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x43fb8345 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x69cbe835 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x7d4f199c extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xbe6789f2 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xc4a2c158 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xd0ded6c5 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xe298fcc5 ore_get_io_state +EXPORT_SYMBOL fs/fscache/fscache 0x05afa00b fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x12fc1e0a fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x2c000cb2 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3a2efd87 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x4047cb3b fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x4857d672 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4989ccba __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x4a06a699 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4cb4af72 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x5771f665 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x5c38f946 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x602aa40a __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x65dfe601 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6c4a90dc fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x75568113 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x78e258b6 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x7a4a9719 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x899816f3 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x92549485 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x9399cd3e __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x94b77a98 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x99b666c3 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x9a123629 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0xa21fd357 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xa72810bb __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa85d55bd fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xb0371b0c __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xb753557a fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xb8c83a87 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xbd11514e __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc2f89fe1 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xc2f90207 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xce519cda __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xd2fc3feb __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xd678addd __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xdd27f96e __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xe50f3ff3 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xea18ffef fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xfa7145d3 __fscache_uncache_page +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x084dd91a qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x4ba4b345 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7a1c6313 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x8d5379af qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xe02013d5 qtree_write_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f4d184 lc_seq_dump_details +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 0x7f73a206 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 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 0x0a9351d2 lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0x12f52f22 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x728983b7 lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x37c66748 register_8022_client +EXPORT_SYMBOL net/802/p8022 0x5eac4b4a unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0x2b8ffc3f make_8023_client +EXPORT_SYMBOL net/802/p8023 0x39cd2ff0 destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x71210887 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xa2a76fe5 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x011cf48a p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x069bba52 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x19468218 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x2649c2de p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x2d407939 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x31e5f823 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x39de84f5 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x3b7ff619 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x3c724648 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x4c708b45 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x4ccd5e09 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4fa79372 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x5326f5f1 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x561839ff v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x5aa7a114 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x62f847e4 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6635674b p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x67d7e509 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x6cb375ea p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x76eecb1d p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x7df53d4b v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x7f044146 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x99b2d71e p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x9a757fb8 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xaa9245ae p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xb428a4bc p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbcffb326 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbec9c782 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xc01431bc p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc8051412 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xca863839 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xd3d89db9 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xd70f1b4f p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xdb9d79a1 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xdfb90123 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe14e7a14 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xebcb866d p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xedc2790d p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xeedb72b4 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xef626511 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xf3175c74 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0xdd337dd4 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xdd5363e6 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xdfd5bf23 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xe65cd9f9 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x02614948 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x02c3ff25 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x122bd130 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x14a26c27 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x1c6e9399 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x23907eed vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x294345e5 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x482e3d25 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x5d4d751b vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x6ceafd19 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x6f79bb68 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 0xf3c7d512 atm_charge +EXPORT_SYMBOL net/atm/atm 0xf410972d atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x016bb141 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x0e448749 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 0x782b39c5 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x8361f2de 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 0xac76b8c0 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xbe574fb2 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xbf839314 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xc08d0f55 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/bluetooth/bluetooth 0x02839b6a __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x12d43fdf hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x14999c89 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x14d7857e bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x18353c5b hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1be856c1 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1da38b3b bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e284b9d hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x224f8367 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2cb1dff9 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2dc94144 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f266e76 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2fa66e82 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x361afb5e bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f357ad8 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x50393bc5 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5f595717 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x713ed64f hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x770d3e9b hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7823b86d hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a5ed727 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x843ade3c hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8cbca9f1 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8f881a1d 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 0x9c681212 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb8a4dc6d hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc6ef49aa l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcbaa44e4 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xccb52b4e hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd291ce51 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd33e6bff bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd390780e l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd591daa3 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc22a087 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe486fecd bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe5bdf817 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe818bf22 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeaa82ea3 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeb5a3d73 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xed4ad551 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf8c49d51 bt_sock_recvmsg +EXPORT_SYMBOL net/bridge/bridge 0x36f2173e br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x10c32e32 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9e7a6967 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf8e151c8 ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x07d4a8c4 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x203a375b 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 0x43a6e455 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x48c1aca2 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 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xda2c83e4 get_cfcnfg +EXPORT_SYMBOL net/can/can 0x1d472f1b can_proto_register +EXPORT_SYMBOL net/can/can 0x1e72dd5d can_send +EXPORT_SYMBOL net/can/can 0x78f3f1e6 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xeab275d4 can_ioctl +EXPORT_SYMBOL net/can/can 0xfb2887a5 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xfdcf4711 can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x009f2234 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x018815eb osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x018fb304 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x02a82e9f ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x033b0ff4 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x0340f316 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x07d6a589 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0ad2ac16 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x0d7143d6 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x0f453221 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x0f585698 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1074b41b ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x12166dbb ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x152aa77e ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x2452728d ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x260d38cd osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x28189fd3 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x2ba10730 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x2ba66497 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x2eede60d osd_req_op_cls_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 0x3fda158a ceph_monc_wait_osdmap +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 0x45a9c80d ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x46db18ea ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x4855c645 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x49c90017 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x4a4a243e osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x4bcb7a18 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x4c76d749 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x4e6e0f5a ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x51bbe26d ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x520ef719 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x55f34b2a ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x56ccabe3 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x57c4259f osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x581d90ca ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x5c41b52e ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x5d0171fb osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x5f055517 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x61feff98 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x620345e6 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x69af11da __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x743f5aac ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x787f010e ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x79feae46 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x82230b43 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x8375adfc ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x853cc71d ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x88818b3a osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x897e1cdb ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x8bc8a2f0 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x8fd63125 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x9003ec9c ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x935d6d4f ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x99fc5971 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x9a3bc957 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x9bf81a3d ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x9e7d567b osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa48b5b5f ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa5be1be1 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xa68fb629 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xa79a375c ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xad86bf78 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xb329d928 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb565da45 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb998d1fd ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xba88e68b ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xbf35eae8 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc0bef556 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xc17b0d4d ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xc34bb3a6 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc788e1b7 ceph_put_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 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 0xe1ef6677 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xe5397425 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe898c96c ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xf146b638 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xf1838efe osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xf24f06f0 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xf3e7992a ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf70c7062 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xfd58c042 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0xff9abc1f ceph_con_keepalive +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xbad24756 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xd178d74a dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1d5803b9 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x404f4fa4 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8c1d06f2 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xafc35629 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb51b1dce wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf2934025 wpan_phy_free +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x5184a316 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x613b1f49 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x370c7ea1 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7951de64 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x81862841 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x94d3711b ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa0b0bdc6 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe13b1cff ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9def1b3b arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9e7f0e42 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa8cfd315 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x1511d592 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5b4188e9 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xecf16ae7 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x4070f1b3 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x539c13cb xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x38944028 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x448d8f7b ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x47b02f39 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf21724da ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfeeed88e ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x13629744 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x13791e0f ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x89fcd97b ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x66fb1461 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x9c0f030e xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x723fbdc2 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf3a1b19e xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x25b5d19b ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x29b0f5d7 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x4f6d4a8e ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5dd028f0 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb81f4139 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd8fcd8aa ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xdbdb0bad ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xdc8deb15 ircomm_data_request +EXPORT_SYMBOL net/irda/irda 0x02f8171a 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 0x0963c24b irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x09939c11 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x0cfe1963 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x1176a9c3 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x1b260839 iriap_open +EXPORT_SYMBOL net/irda/irda 0x20655a94 irttp_open_tsap +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 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 0x52c45ec1 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x5b78f79d irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x5ff18655 iriap_close +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x70a3f20f hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7af7cefb irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x7d3167c9 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x928cade1 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x98a8b3b4 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x9a5d1e5e alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xa6549259 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xaceb8d01 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xb1efac09 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xcd4cd8a0 irlap_close +EXPORT_SYMBOL net/irda/irda 0xcfd17472 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xd42b591e irlap_open +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xdc0196c2 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0xdd2d93fc irda_device_set_media_busy +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 0xe37ac5ac irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0xe94dcf52 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xeb6f6f45 async_wrap_skb +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 0xef2d5dc7 irttp_dup +EXPORT_SYMBOL net/irda/irda 0xf5d752c6 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0xfff5f60d irttp_connect_request +EXPORT_SYMBOL net/l2tp/l2tp_core 0x82071f56 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x8f8c7d87 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x455e4505 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x607d2e5e lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x614903ce lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x782183b2 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x90b0ae5e lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x91392763 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x9b911a92 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xc3990b93 lapb_register +EXPORT_SYMBOL net/llc/llc 0x0abbc8d1 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x118d070f llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x2d76292b llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x468288d2 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x82bd8fae llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x8384646e llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x911a54f8 llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x02c45548 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x06f27705 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x0884bd8a ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x09bec48b ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x0f9afb02 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x10fd30ce ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x156c132a ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x1af0ef6c __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x20596d19 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x222ba69d ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x2350e3d7 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x2566dfff ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x2629645a ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x272047ca ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x2bb0d76c __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x2e9b2542 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x301075fb ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x37afb906 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x396aa348 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x40a4f7d1 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x40dd7ad1 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2e9401 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x4c7d6740 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x527d64ea ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x56365697 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x584f0142 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x5c003d77 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x5f4a5e23 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x6171948c ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x62aea77a ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x652f44b2 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6913950d ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x6b0c4184 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6b9034f6 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x6e417214 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x737ee19a ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x740f8f33 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x77b3d884 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7c658c97 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x81bec3b7 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x847d9029 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x858ec2bd ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x85a4874b ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x8b3e6e44 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x8c26b659 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x8cb452f0 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x8f86f916 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x92b4fe85 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x94dbf085 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x9640d174 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x966b7709 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x9980b573 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x9e293220 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x9f7924f3 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xa88db631 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xaa7ac68d ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xab121220 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xac116be4 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0xae54649c ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb0759e43 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xb09f0bf8 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xb306564a ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb38abecb ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xb72290ae ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xb7c043d9 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xc22fbe03 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xcf925c3a ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xd15348d9 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xd2004213 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd8104618 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd9594dcf ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xdcf5b867 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xe53b28aa ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe6eba838 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xe759d272 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0xe7be9631 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xe98a297b ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xed7e5c94 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xf5e271b9 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xf7745416 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf7d4acbc ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xfd5108de ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac802154/mac802154 0x3c0d421f ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x3ee55d23 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x503a9d57 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x51110c37 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x89fc3fd7 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x9ff4e9e5 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xcc4049bb ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xceeb78c7 ieee802154_xmit_complete +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x17e24260 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x26cd4657 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4aaed52e ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x75c3a18d ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x82f8f675 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9c894d70 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaf3dae8c ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc08e0e48 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xca12ef75 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd07aca6b register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdd8b3fd1 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf560cd00 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfe53491d register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfefcb9dc ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x2f77031f __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x57ed3ee7 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xa5f3d56d __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x1d180edd nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x5e0fe07f nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x6124179b nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x8534360b __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xab6feedc nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xb66c687f nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/x_tables 0x2c6eb0bb xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x51a69d53 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x54cbd7dd xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x622e79f7 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x68f2a19a xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x6c3c8b12 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x915c4a69 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x9b788e52 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xa57dfe60 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xb9bd9532 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/nfc/hci/hci 0x1a6c7858 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x2cf32c4d nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x471e4479 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x4cf8343a nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x4d21b266 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x4efeb9bf nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x51f884ee nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x5d5ad780 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x6f1631a5 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x74f1a31e nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x81fc4614 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x96dd0178 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x96f01a6d nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xab5f8eb6 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xb02a3b67 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xb1b11db2 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xc76d70df nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xcbfed0a8 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xd3b36fbe nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xe69bde91 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xe6def769 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/nci/nci 0x0071c984 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x02d2a1b3 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x28f14feb nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x28f4ec64 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x366ef614 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x4bf0245f nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x698d039a nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x6f82ab12 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x70647f7f nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x7638bd0c nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x8618e449 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x8e0d45be nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x91543a1d nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x921cd523 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x96c8b2d4 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x9f701142 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xa7cb7ba4 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xad6189b9 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xb45f3226 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xb5ad9761 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbb6e3779 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xc57e53b8 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xd8f520d6 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xd9f7eb2c nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xdf6e1549 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xe007223e nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xf42350a1 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xfa6bfeed nci_free_device +EXPORT_SYMBOL net/nfc/nfc 0x1077fe44 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x120c30ac nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x289c9cdf nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x2d258a9b nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x5a774158 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x5ec89c3d __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x6a6e285f nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x70ae24b7 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x72f0730c nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x7f7dea17 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x8826a7d0 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x8ed7c8ba nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x945334a9 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x9926fea0 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x9c8f8d27 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xb40cfde3 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xb8c2612a nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xb9dc3f15 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xbc742a9d nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xc4e6b206 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xd268735f nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xd6890ab7 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xd7339ae5 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xfed13b6f nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x2ef66b2b nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x960f8094 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xe690238d nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xf088fd9d nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x490f2e5c pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x4913b282 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x8e79e316 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xc55cbfe2 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xd9016173 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xdc80466d phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xe526d675 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xedcc2227 phonet_proto_register +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00083981 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0254782a rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x02718ca8 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x227cc4ea key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2360e6af rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x38d8d293 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x46207039 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x477981c5 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4c1f258b rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x58f65f60 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6d812b4b rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb670f2c9 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xcf5f9d0d rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd17f3abf rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf7ddbe00 rxrpc_get_server_data_key +EXPORT_SYMBOL net/sctp/sctp 0x43d9e96a sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x05afa8a9 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x0b52b04a gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x9b41b533 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x4c006bc5 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x77772e8e svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xa283516d xdr_restrict_buflen +EXPORT_SYMBOL net/wimax/wimax 0x9755aa17 wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0xda9d83a9 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x01cb4ade cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x0257b2e6 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x037aea18 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x04ab4a2e cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x04ce6665 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x068076e9 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x07cdc406 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0b821e15 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x0ea905b4 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x15f29b63 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x162205d7 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x18f59a80 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1b568ea7 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x23f8cb12 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x2864d7ff cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x2c0828ad cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x307a8f1d __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x36e9c3d4 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 0x40646cf3 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x419e6c17 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x42d94466 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x466cd885 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x46ddccb2 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4ea46fc1 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x4f0c212a cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x521009b8 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x52360b5f cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x52a5a933 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x52c463c8 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x60d6bd7b cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x6437a2eb __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6670e02c cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x671f832c cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6dcaaa42 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x716dbf65 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x7a85a796 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7b9fc9d9 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x7bccd31f cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x7ce94de8 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x7cf7f465 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 0x82a159b6 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x844f53f9 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x861466dd wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x876072f3 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x87fb2710 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x92e1a4a1 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x93894ce6 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x93e5ee02 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x94002ad5 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x9467e403 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x94b4039b cfg80211_radar_event +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 0x9ba0cd7c cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9ea9d9a6 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x9f7c9c82 wiphy_rfkill_start_polling +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 0xa6d50789 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xaa8f81ec cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xab61f4c7 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xabd1ce79 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xadca6be9 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xafa94956 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xb31fe8cf cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xbbeeca18 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xbee5ecfb ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xbf7387fb ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xc194c6b3 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xc2896990 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc7819ed5 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xc9227461 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xcb8af576 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xcbf93fd7 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xcecb2d68 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd52bcdaa cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xd804144d cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xe0e81af2 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xe1f4e9da cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xe223d3a8 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe55aff06 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xe5bfddab cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xe5e1d241 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xea20e3fd cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xeb81cac1 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xfcbc1f90 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x047b3b57 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x3e151771 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x6887ab3f lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x949425bd lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xaedb5b77 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xc927e3bf lib80211_get_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x3adf940c ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xed05ac5f 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 0x7cbb3c9d 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 0xcbac216d snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xdab9c071 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe7ebd9e5 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 0xe2fcaea0 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 0x4bb70954 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x00f691b9 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x01abb427 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x118dcae3 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x16d662c3 snd_unregister_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 0x19a8ee5c snd_card_new +EXPORT_SYMBOL sound/core/snd 0x1e299843 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x21635d0a snd_register_device +EXPORT_SYMBOL sound/core/snd 0x22413681 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x2356ea1e snd_device_free +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 0x2cd3a146 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x3007c985 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3e84f12f snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x44fab73d snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4bfa6b1b snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x4d733ecb snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x55f039b5 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x56e93476 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x582d7391 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x5e3789b0 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x62a1bf1d snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x672dbdd0 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x69e72279 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x71e51afa snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x72fc2ee1 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x76dc9538 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x7ad36691 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x7f01edce snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x873fbba8 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0x9f98c029 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa381e2f5 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xaab2641d snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xb1dbe0e9 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb38d5d4e _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0xb56f0113 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xb981ad40 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xc0b56da8 snd_cards +EXPORT_SYMBOL sound/core/snd 0xc929dec9 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xc9931f03 snd_device_new +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xd194d855 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xd59b4b3e snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xd8097dfb snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xd8223065 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xda3bdcae snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xdb93ed35 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xed541a69 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xf58a70e6 snd_card_set_id +EXPORT_SYMBOL sound/core/snd-hwdep 0x565ac2cb 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 0x0b751302 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x0ca0b5fd snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x1336742b snd_pcm_lib_preallocate_free_for_all +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 0x20b4df55 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x22d2e7bd snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x260ee16b snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x27148ca9 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x2c05224a snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x2f482391 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3023e869 snd_pcm_new_internal +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 0x39bfc5e3 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3b02acee snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x3b91f3af snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3cd07447 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3e448523 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x4063daab snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x4f62ea45 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x50def1ff snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x5467e9aa snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x56b1f0f2 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x5a37383b snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x625fecf1 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 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x7090889e snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x7129f330 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x74184697 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x77239d89 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x82e16fe7 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x89bca7d5 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x8da292f0 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x91e14384 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x921860d3 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9a59c296 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xa06b7118 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa9b8fce8 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xab8978ff snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb1adf974 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xb664c6ed snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xb9bde97c snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xcb9ae5ae snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xd06036cf snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xd9b7aaa5 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xd9be3f96 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xdbeda171 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe8bafd3c snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xea678fd2 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xf31a023a snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0xf6e96211 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0xf879efe4 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0xff55fd36 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x064b3193 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4e642702 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5bd8e675 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x67793f1b snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7b5ad2d1 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8f573315 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x932e9a79 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x95d2158c snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9c6ea8e4 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xad7d9c4e __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb21a132a snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb5d76d00 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb9cb905d snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbd8ebe44 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc70c619d snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcda8f2c8 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe09f8771 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xecebb564 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xefab3933 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-timer 0x131cbc37 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x17328f67 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x2e08e4b5 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x37b400f6 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x405d0591 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x4c8ec410 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x5a9fabb9 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x738bfd9d snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x889ac73a snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x8e821f86 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xbad0c0f5 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xe046584a snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xf8ceb4d0 snd_timer_start +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x4c9f58f9 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 0x11cdf47a snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2a1937f1 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x30bbfe9a snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4bacc567 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x50776aa9 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x53721839 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x67ed2369 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb45e74fb snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc9a9e522 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x7bf65a45 snd_opl4_read +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xd6d824eb snd_opl4_write_memory +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xd723eecc snd_opl4_read_memory +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xe03a5e58 snd_opl4_write +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xeaad889f snd_opl4_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x208dcdd3 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 0x49dc8e02 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x71541e68 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x98ae0956 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x99d00edc snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd3935937 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd999618e snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe82b7f82 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xea1c79be snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0dfb62e6 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0e2ab2fc amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x11444d0e amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x13612295 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x203b90cc cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x28cb266b amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x29da3781 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x363d888d amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3d56d1a1 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x400df7b9 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x431b3cf7 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4a459e7d amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4ce71f66 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x503e775a cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5f5c491f avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6eb2d945 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7a72e65d iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8713e68b avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9805fef7 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98dbab67 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa2b9f4c9 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xad6dfe9c amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb1d47314 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb2ab0d16 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb48623d5 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb7111271 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc49fd493 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd6489014 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe6730eb4 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xea2d3dd3 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf9b71228 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfa8a7f11 fw_iso_resources_allocate +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x14546cc5 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xf6bf98ae snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0f0c28c9 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2b1b936c snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2cf58c69 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2ec59ac9 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x488293c5 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x519b4740 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6c3a4ea2 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9f841961 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x4d26b999 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x806a2fa6 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x938b4f8b snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xba721490 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xdce94cd0 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xfe2f64c1 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x07f49a48 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x6cf06c52 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xbaea7032 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xcfa13fd0 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x6afcd39b snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x8127c239 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1bc870ed snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x87332829 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe344f6c6 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe97952bd snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf0c47dac snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xfc817fdf snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x372fd7bc snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3804ae14 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xae70b13c snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xb8c588de snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xcc59281c snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xde99be6d snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x12fa0bf9 snd_tea6330t_update_mixer +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x20f65849 snd_tea6330t_detect +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x17cc7059 snd_es1688_create +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x638eb200 snd_es1688_mixer_write +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x770e60de snd_es1688_pcm +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xc9a53ea9 snd_es1688_mixer +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xe89ee69c snd_es1688_reset +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x00de3c08 snd_gf1_rawmidi_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x0df5c724 snd_gf1_mem_free +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1c1ce117 snd_gus_interrupt +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x25bfc31d snd_gf1_i_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x2dcc6781 snd_gf1_pcm_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x32ecf10a snd_gf1_translate_freq +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x406cf95f snd_gf1_free_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x41b97057 snd_gus_dram_read +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x46db8d67 snd_gf1_lvol_to_gvol_raw +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x4eea6b11 snd_gf1_ctrl_stop +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x5d1a6b7a snd_gf1_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x5d264882 snd_gus_use_inc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x686eac10 snd_gf1_mem_lock +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x68f2dd15 snd_gus_dram_write +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x6a32ba8d snd_gf1_dram_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x83517fd3 snd_gf1_look16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x836b0ac4 snd_gf1_i_look16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x8486928e snd_gf1_alloc_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x870916fc snd_gf1_new_mixer +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x87b47273 snd_gf1_peek +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x949ec78e snd_gf1_i_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x95510c29 snd_gf1_write_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x971efcfe snd_gf1_mem_alloc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa6058ea1 snd_gf1_write16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa78a0807 snd_gus_initialize +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xaae2bab2 snd_gf1_poke +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xb1a48e75 snd_gus_use_dec +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc43a5527 snd_gf1_atten_table +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xd841ca91 snd_gf1_mem_xfree +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xda12c33a snd_gf1_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xe0981d54 snd_gf1_stop_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xe2f1497b snd_gf1_delay +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf5fc534d snd_gus_create +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x0e096be3 snd_msnd_init_queue +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x148b2bc2 snd_msnd_send_word +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x2f706dd3 snd_msnd_DARQ +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x34fdc617 snd_msnd_DAPQ +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x75026b24 snd_msndmidi_input_read +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x8ad54c02 snd_msnd_pcm +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x8c88fe26 snd_msnd_disable_irq +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x957f92a3 snd_msnd_dsp_halt +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xb53bbd63 snd_msnd_upload_host +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xcc755661 snd_msndmix_setup +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xdc449a74 snd_msnd_enable_irq +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xde419126 snd_msndmix_new +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xe77a2a85 snd_msndmix_force_recsrc +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xf2803c2b snd_msnd_send_dsp_cmd +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0x3b4bd3d7 snd_aci_get_aci +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0xe98a894b snd_aci_cmd +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x080a1037 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2d0bf052 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x42caecbb snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x50b30e88 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5c182ac2 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x739b1a74 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8b94c475 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa02493ed snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb2102582 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xedb1e6e9 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb16-csp 0x5dee288a snd_sb_csp_new +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x2d9c3b4b snd_sb16dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xa66bf945 snd_sb16dsp_get_pcm_ops +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xdd460662 snd_sb16dsp_configure +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe0b3f690 snd_sb16dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x0c59efdc snd_sb8dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x21807c30 snd_sb8dsp_midi +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x6d180b6e snd_sb8dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x8ce2a6d5 snd_sb8dsp_midi_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x213ddf82 snd_emu8000_load_reverb_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x2baef6ed snd_emu8000_poke +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x3399f98e snd_emu8000_load_chorus_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x405ea220 snd_emu8000_dma_chan +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x41d9f680 snd_emu8000_poke_dw +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x5001349a snd_emu8000_update_reverb_mode +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x5a1e5bce snd_emu8000_init_fm +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x607059c4 snd_emu8000_peek_dw +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x6ed676dc snd_emu8000_update_equalizer +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xd5b3ad79 snd_emu8000_update_chorus_mode +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xefc93028 snd_emu8000_peek +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x14bbe7b0 snd_wss_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x180df82b snd_wss_create +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x3335e151 snd_wss_mce_up +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x4340399d snd_cs4236_ext_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x4dc48726 snd_wss_timer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7714214e snd_wss_info_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7b202637 snd_wss_interrupt +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7efd01d3 snd_cs4236_ext_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x8b2b34c6 snd_wss_get_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x95fc82ed snd_wss_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x97644742 snd_wss_put_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xa4c2953f snd_wss_mce_down +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xb2a10d47 snd_wss_get_pcm_ops +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xcbace577 snd_wss_overrange +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xcc13f5ef snd_wss_get_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xd05c866b snd_wss_put_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xe23f2420 snd_wss_mixer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xe4ef5d18 snd_wss_pcm +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xfa7d8e62 snd_wss_chip_id +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xfd1a77a0 snd_wss_info_double +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x063e9c85 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0a41e09c snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0bef13a2 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0bf9ad08 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1d277bd5 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1e0796c4 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4c5f1e3b snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6dabb380 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6fff1a6f snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x853dad1d snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8dee2511 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x96ca7c0d snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9762e84f snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa6573216 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbe7b2223 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xebf5031f snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf9dc866e snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xb827d22d hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x448c20c2 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x65434974 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x89e0b140 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8f05449e snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9c2f113e snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xabd4f227 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb7e20a3c snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd92425f2 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xff7addd9 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2e47d48d snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xa11bca84 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xeaa7de56 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0f19b9be oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0f6c643d oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2ee7575e oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x340a90e7 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3c6b3daf oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4e771d10 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4fe54a30 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5728a5fe oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7e116749 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x813cce09 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8edd9fbd oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcb603d54 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd0e4c421 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd1246b4a oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd8358f79 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdeefb8bf oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf212a7e5 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf3de308e oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf9a3b3e5 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfb69486c oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfcfb19c3 oxygen_write_spi +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1fbbc5e9 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x24d58b28 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x55378751 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7138a0fa snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe9373835 snd_trident_free_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xaa373510 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xfb6b1620 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xa479b8a5 sst_dma_new +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xdc045797 sst_dma_free +EXPORT_SYMBOL sound/soc/snd-soc-core 0xadd22cd8 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x3bfc2b35 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xb93b5d7f register_sound_special +EXPORT_SYMBOL sound/soundcore 0xbb82aad0 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0xc2384006 sound_class +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xd1b1aafa register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xf46afa1e register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x23deff90 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x436900fd snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x4f263392 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5534b937 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5c49fa80 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 0xea948703 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/snd-util-mem 0x06002214 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x0c30a8bc snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x16681937 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x36424eff snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x40e4aa41 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xa29fc616 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xb522e42e snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc9429a3d __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 0xb217a04d 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 0x00ae61e0 ssd_register_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x2f3c7d14 ssd_unregister_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x3188f4df ssd_get_temperature +EXPORT_SYMBOL ubuntu/hio/hio 0x39b426a2 ssd_bm_status +EXPORT_SYMBOL ubuntu/hio/hio 0x448701ba ssd_get_version +EXPORT_SYMBOL ubuntu/hio/hio 0x5c20cc72 ssd_set_wmode +EXPORT_SYMBOL ubuntu/hio/hio 0x95ce6206 ssd_reset +EXPORT_SYMBOL ubuntu/hio/hio 0xab648884 ssd_submit_pbio +EXPORT_SYMBOL ubuntu/hio/hio 0xbe671403 ssd_get_pciaddr +EXPORT_SYMBOL ubuntu/hio/hio 0xd954a282 ssd_set_otprotect +EXPORT_SYMBOL ubuntu/hio/hio 0xf15283c3 ssd_get_label +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 0x00110097 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x001792b7 alloc_disk +EXPORT_SYMBOL vmlinux 0x003c9f88 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x004effc0 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x0052274b copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x0066651f gnttab_alloc_pages +EXPORT_SYMBOL vmlinux 0x006eeddd copy_from_iter +EXPORT_SYMBOL vmlinux 0x0098ba10 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x00b4061c vfs_getattr +EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc +EXPORT_SYMBOL vmlinux 0x00c55a00 seq_open_private +EXPORT_SYMBOL vmlinux 0x00cbac40 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00f544ed get_fs_type +EXPORT_SYMBOL vmlinux 0x00f5950b phy_device_create +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x0114d92d update_devfreq +EXPORT_SYMBOL vmlinux 0x01295faa skb_free_datagram +EXPORT_SYMBOL vmlinux 0x0135a220 phy_stop +EXPORT_SYMBOL vmlinux 0x0139b504 cpu_current_top_of_stack +EXPORT_SYMBOL vmlinux 0x01537edc netif_receive_skb +EXPORT_SYMBOL vmlinux 0x016df280 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x017a30fd nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x01b9e79f dump_truncate +EXPORT_SYMBOL vmlinux 0x01c8532c pnp_get_resource +EXPORT_SYMBOL vmlinux 0x01c8e9c2 pci_get_slot +EXPORT_SYMBOL vmlinux 0x01cd46fd blk_put_request +EXPORT_SYMBOL vmlinux 0x01ddd3d9 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x020300e6 path_nosuid +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02183808 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x02277ccb d_lookup +EXPORT_SYMBOL vmlinux 0x022e57f7 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x02342b98 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x0257b458 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x026219b3 eth_header +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x026b761a unregister_quota_format +EXPORT_SYMBOL vmlinux 0x02702627 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027f8310 napi_get_frags +EXPORT_SYMBOL vmlinux 0x028163e3 elv_register_queue +EXPORT_SYMBOL vmlinux 0x0286ac48 vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0x02893a37 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x02a0dc21 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02b260f4 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x02b70cc6 make_kprojid +EXPORT_SYMBOL vmlinux 0x02d00692 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x02d6e501 set_trace_device +EXPORT_SYMBOL vmlinux 0x02d8a03a lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x02e3d5ab skb_store_bits +EXPORT_SYMBOL vmlinux 0x02e9650e free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02f1e56d nd_iostat_end +EXPORT_SYMBOL vmlinux 0x02f91926 d_alloc_name +EXPORT_SYMBOL vmlinux 0x02ff130f cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x0307162f devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x0307f73b genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0337c9ec pci_enable_device +EXPORT_SYMBOL vmlinux 0x034d3def nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0364831d nvm_register +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03996ccd agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x03c22a04 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x03d19bd7 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x03de1e7c set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x03e57f2f unregister_console +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x04242dd5 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each +EXPORT_SYMBOL vmlinux 0x04278241 simple_statfs +EXPORT_SYMBOL vmlinux 0x0428b30b sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x0433afa6 proc_remove +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0450910d skb_push +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x049116e7 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x04a8994d km_query +EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x04b15924 kern_path +EXPORT_SYMBOL vmlinux 0x04b5253d get_thermal_instance +EXPORT_SYMBOL vmlinux 0x04d19c9d blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04dd6f88 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x04ded24b copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x04e9b663 __register_chrdev +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04fe8a98 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x05140d98 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x0514631d dev_alloc_name +EXPORT_SYMBOL vmlinux 0x051a088b jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x05217e3f nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x053e0f55 dquot_enable +EXPORT_SYMBOL vmlinux 0x055fb1c1 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x0588e9ca dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x05963a7e single_open_size +EXPORT_SYMBOL vmlinux 0x05c6576a scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x05cf13d9 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0640b097 irq_to_desc +EXPORT_SYMBOL vmlinux 0x06466720 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x067b5bb8 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache +EXPORT_SYMBOL vmlinux 0x069ddda5 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x06b49a57 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x06c8ef73 kernel_bind +EXPORT_SYMBOL vmlinux 0x06d31dde __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0710ef6a crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x0718d42e __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x071e4d6c sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x07244e1b __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x072612a7 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x072628b0 phy_device_free +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072a6202 param_ops_short +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x07566cbb generic_perform_write +EXPORT_SYMBOL vmlinux 0x075e3e9a param_get_ulong +EXPORT_SYMBOL vmlinux 0x07608604 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x078822e4 gen_pool_create +EXPORT_SYMBOL vmlinux 0x0795d225 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x079e5e8a init_buffer +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07cd07ed csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x07d50a24 csum_partial +EXPORT_SYMBOL vmlinux 0x07d878fa blk_put_queue +EXPORT_SYMBOL vmlinux 0x07e0eb31 misc_register +EXPORT_SYMBOL vmlinux 0x08014eb2 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x08097139 path_noexec +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x085488ac devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x087bca93 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x08907fed neigh_seq_start +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x089aa034 send_sig +EXPORT_SYMBOL vmlinux 0x089dae67 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x08d68589 kthread_bind +EXPORT_SYMBOL vmlinux 0x08e10b3e jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08f873a2 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x08f9030a napi_gro_flush +EXPORT_SYMBOL vmlinux 0x090cce80 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x090ef5ad nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x092f2af0 bdget +EXPORT_SYMBOL vmlinux 0x0935af5b scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x093e575f migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x094665ec __frontswap_load +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x09636448 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x096bb2a2 dquot_alloc +EXPORT_SYMBOL vmlinux 0x0982551c nla_put +EXPORT_SYMBOL vmlinux 0x0983f14a param_get_invbool +EXPORT_SYMBOL vmlinux 0x09852427 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x09876a90 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09b57591 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d84f4c nf_log_trace +EXPORT_SYMBOL vmlinux 0x09e849fb ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x0a18c9c7 serio_bus +EXPORT_SYMBOL vmlinux 0x0a21582e sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2e8380 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a4fad7e proto_unregister +EXPORT_SYMBOL vmlinux 0x0a5c0ed7 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x0a5da4ab phy_connect +EXPORT_SYMBOL vmlinux 0x0a65ae76 serio_rescan +EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock +EXPORT_SYMBOL vmlinux 0x0a6afa09 find_vma +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a84c2b2 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa4f660 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x0ab8faf6 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x0abd2bc5 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x0ac93b53 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad2d6f6 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x0ad56310 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x0af17925 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x0af9d713 inc_nlink +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b3bb61e agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b51a5da phy_device_register +EXPORT_SYMBOL vmlinux 0x0b5b262c fget_raw +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b6ae7db param_set_bint +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b7bd858 scsi_register +EXPORT_SYMBOL vmlinux 0x0b86eca9 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x0b8d3b0e prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x0bb16db1 brioctl_set +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0be7abd3 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x0c44d6af security_path_mkdir +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c4bc590 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x0c57a2d6 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb21c06 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x0cccd41c inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x0ccdf1bc dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0x0cde20f3 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x0d041a98 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x0d0f87f2 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x0d1b1528 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x0d311dbe tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5d250b sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x0d5e21d0 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6e4bcb key_validate +EXPORT_SYMBOL vmlinux 0x0d8e5cd8 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dbc7358 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x0de9a55a neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x0deb0ad3 pci_bus_type +EXPORT_SYMBOL vmlinux 0x0df7f267 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x0e139dcf end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x0e289cd3 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x0e56c64e register_xen_selfballooning +EXPORT_SYMBOL vmlinux 0x0e5adb5e led_update_brightness +EXPORT_SYMBOL vmlinux 0x0e5e55a2 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x0e5f9312 proto_register +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e731155 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x0e81565a memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x0e99a6ff lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x0ea2e3cc tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0eda9d75 inet6_getname +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0eef1ec8 iunique +EXPORT_SYMBOL vmlinux 0x0ef7373b sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f01e846 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x0f0d194b clkdev_alloc +EXPORT_SYMBOL vmlinux 0x0f343b6c dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x0f39b334 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x0f43356a pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f50811e seq_hex_dump +EXPORT_SYMBOL vmlinux 0x0f51fa8b md_finish_reshape +EXPORT_SYMBOL vmlinux 0x0f5dfcb4 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f77edbb input_unregister_handler +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f9bebb5 tty_mutex +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fbdc816 dup_iter +EXPORT_SYMBOL vmlinux 0x0fcce204 genlmsg_put +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0fe477e0 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x0fea505b ata_port_printk +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x100a4107 sock_i_uid +EXPORT_SYMBOL vmlinux 0x100e7867 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x102c56de irq_regs +EXPORT_SYMBOL vmlinux 0x105758c1 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x1078e284 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10a1c4c2 genphy_suspend +EXPORT_SYMBOL vmlinux 0x10ab60be blk_finish_request +EXPORT_SYMBOL vmlinux 0x10dafa53 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110f0108 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x11264916 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x11305269 ilookup +EXPORT_SYMBOL vmlinux 0x11423740 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x115499d3 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x11579387 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x115d1156 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x115d6df4 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x1163c4bd __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x1170549e agp_copy_info +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117d4e1c mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11a3af57 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x11d96970 bio_integrity_add_page +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 0x121b4e4b memremap +EXPORT_SYMBOL vmlinux 0x124e517e inet_shutdown +EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x1255208c jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x126632f9 scsi_host_put +EXPORT_SYMBOL vmlinux 0x12672aeb __scm_send +EXPORT_SYMBOL vmlinux 0x126b7e50 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x12988b87 bio_map_kern +EXPORT_SYMBOL vmlinux 0x12a19ca6 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x12a1dfa3 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12faa8c7 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x1305e56e locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13266e6a nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x1327c1a1 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x134b98cb blk_sync_queue +EXPORT_SYMBOL vmlinux 0x134bb000 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x135c7394 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x138c8e83 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x139e4cb1 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x13b65a68 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x13c1e900 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x13c22b35 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e68ce2 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f9de34 cpu_info +EXPORT_SYMBOL vmlinux 0x13fa8f5b dma_find_channel +EXPORT_SYMBOL vmlinux 0x140848d3 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x142224e0 md_update_sb +EXPORT_SYMBOL vmlinux 0x14362a7d filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x1439b52b param_ops_invbool +EXPORT_SYMBOL vmlinux 0x14590fa5 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x1476b4a0 do_SAK +EXPORT_SYMBOL vmlinux 0x14972952 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x14b421b2 __sb_end_write +EXPORT_SYMBOL vmlinux 0x14b5b1e0 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x14cae070 pid_task +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14eeeed5 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x14fd88f3 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x150389d6 acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0x1506d091 padata_add_cpu +EXPORT_SYMBOL vmlinux 0x150ee606 __lock_page +EXPORT_SYMBOL vmlinux 0x152ce631 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1550e45e pcie_set_mps +EXPORT_SYMBOL vmlinux 0x1554143b icmpv6_send +EXPORT_SYMBOL vmlinux 0x1554df37 km_report +EXPORT_SYMBOL vmlinux 0x1556be48 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock +EXPORT_SYMBOL vmlinux 0x15739238 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x15b5efb0 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bc43e6 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x15ccc565 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x15f5c7b3 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x1608999c uart_add_one_port +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x161409bd unregister_md_personality +EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x163616c0 finish_no_open +EXPORT_SYMBOL vmlinux 0x163b65f9 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x163bbbab netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x1648fe07 __kfree_skb +EXPORT_SYMBOL vmlinux 0x164d485a dquot_quota_off +EXPORT_SYMBOL vmlinux 0x16762a6a clkdev_add +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x1680111c rwsem_wake +EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete +EXPORT_SYMBOL vmlinux 0x168cf911 nla_reserve +EXPORT_SYMBOL vmlinux 0x169017b3 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x16aad26a __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x16ada623 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x16dc4d1f fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16f6a7ef scsi_dma_map +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x170dbbbd pcim_pin_device +EXPORT_SYMBOL vmlinux 0x171b0638 dcache_readdir +EXPORT_SYMBOL vmlinux 0x171bab83 dev_trans_start +EXPORT_SYMBOL vmlinux 0x171eb5e8 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x1735e2b1 vm_mmap +EXPORT_SYMBOL vmlinux 0x173f630e write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x17713a19 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock +EXPORT_SYMBOL vmlinux 0x1796613e ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17cb8627 unlock_buffer +EXPORT_SYMBOL vmlinux 0x17e45f25 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x180f4aa0 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x181e3a5a sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x1825cf9e sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x18642aec lock_sock_nested +EXPORT_SYMBOL vmlinux 0x187617d4 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18a998fd dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x18b214a0 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x18bf977a mmc_request_done +EXPORT_SYMBOL vmlinux 0x18d96501 atomic64_dec_if_positive_cx8 +EXPORT_SYMBOL vmlinux 0x18da71ab fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x1915967e eisa_bus_type +EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x19353778 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x19383f17 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x194ce15a led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0x196378d3 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x196fc541 __destroy_inode +EXPORT_SYMBOL vmlinux 0x198c48ca xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x198ccf97 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19b9f833 up_write +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c79035 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x19f712f0 nvm_register_target +EXPORT_SYMBOL vmlinux 0x1a125fd6 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a4f294f ppp_channel_index +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a67c5e5 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x1a720638 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x1a743e5f kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x1a807edf mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x1a8904fe blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x1a96adcc qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x1a977708 get_empty_filp +EXPORT_SYMBOL vmlinux 0x1a984867 i2c_transfer +EXPORT_SYMBOL vmlinux 0x1aa34f23 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x1ab2a0f0 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0x1ac42f25 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x1acc1237 get_tz_trend +EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b20b553 eth_type_trans +EXPORT_SYMBOL vmlinux 0x1b330776 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x1b53f92b acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning +EXPORT_SYMBOL vmlinux 0x1b58eda7 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x1b5b00be dst_release +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b7bdbd1 xattr_full_name +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b8ef9bb udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x1b985fab dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x1ba9dc63 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x1bad332e simple_transaction_get +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bb5bffd padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x1bbf99d1 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x1bc1dfb9 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock +EXPORT_SYMBOL vmlinux 0x1be8d30c vme_register_bridge +EXPORT_SYMBOL vmlinux 0x1bf786c4 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states +EXPORT_SYMBOL vmlinux 0x1c3741b1 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x1c3f067b netlink_ack +EXPORT_SYMBOL vmlinux 0x1c48f88a __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x1c6bda96 seq_puts +EXPORT_SYMBOL vmlinux 0x1c6c9885 sock_no_listen +EXPORT_SYMBOL vmlinux 0x1c6e4c27 kdb_current_task +EXPORT_SYMBOL vmlinux 0x1c841b13 tty_devnum +EXPORT_SYMBOL vmlinux 0x1c85c777 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1ca29f44 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x1cb14e41 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x1cc6e10e scsi_init_io +EXPORT_SYMBOL vmlinux 0x1ccca530 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x1d008f9f kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x1d13921c __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x1d1758fd __nla_put +EXPORT_SYMBOL vmlinux 0x1d4f5aff end_page_writeback +EXPORT_SYMBOL vmlinux 0x1d6225d7 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x1d6244f1 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x1d8f4a5a nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x1d9172ad iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x1da66deb __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x1dc12c04 sock_wake_async +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd97baa mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x1de4dde8 vfs_writef +EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0x1dffd26e pci_dev_driver +EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc +EXPORT_SYMBOL vmlinux 0x1e105621 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x1e1d5a15 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e3060e5 devm_gpio_request +EXPORT_SYMBOL vmlinux 0x1e361905 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x1e5613d0 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x1e594a1b twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x1e62e4ac scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e9bfe70 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ebe3f45 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x1ebe7825 pci_find_bus +EXPORT_SYMBOL vmlinux 0x1ec83cd4 give_up_console +EXPORT_SYMBOL vmlinux 0x1ecb5592 pci_bus_put +EXPORT_SYMBOL vmlinux 0x1ed0b72f remove_arg_zero +EXPORT_SYMBOL vmlinux 0x1ed12f01 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x1ed4f18e security_path_rename +EXPORT_SYMBOL vmlinux 0x1edca132 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x1f1b071f generic_file_fsync +EXPORT_SYMBOL vmlinux 0x1f2c049b param_set_uint +EXPORT_SYMBOL vmlinux 0x1f360f9b fb_class +EXPORT_SYMBOL vmlinux 0x1f4fa3a5 generic_update_time +EXPORT_SYMBOL vmlinux 0x1f57d75f pci_enable_msix +EXPORT_SYMBOL vmlinux 0x1f7008e9 key_revoke +EXPORT_SYMBOL vmlinux 0x1f74650f pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1fb6fa39 eth_header_cache +EXPORT_SYMBOL vmlinux 0x1fba7fc7 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe597bc simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x1ff30890 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x2006d9af inode_set_bytes +EXPORT_SYMBOL vmlinux 0x20092385 acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x2009620f submit_bio +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20116fe7 tcp_close +EXPORT_SYMBOL vmlinux 0x2012c5ee devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x2016ac5d nvm_unregister_target +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 0x2033dc77 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x2043d64d import_iovec +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x2075a9bf devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x207c9144 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x20903520 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x20b20c14 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20c6192f intel_scu_ipc_ioread32 +EXPORT_SYMBOL vmlinux 0x20c73770 elevator_exit +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20e1cc85 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20f9eb79 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x212a1a0c __seq_open_private +EXPORT_SYMBOL vmlinux 0x213ed381 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x2152d5e0 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x21596414 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x215f7a7a vga_client_register +EXPORT_SYMBOL vmlinux 0x217aeb4b udp_ioctl +EXPORT_SYMBOL vmlinux 0x21a701fe fence_signal +EXPORT_SYMBOL vmlinux 0x21ac9c94 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x21ad5356 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x21aea392 seq_vprintf +EXPORT_SYMBOL vmlinux 0x21c9072b request_key +EXPORT_SYMBOL vmlinux 0x21d4c06b bio_unmap_user +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get +EXPORT_SYMBOL vmlinux 0x21ec3076 wake_up_process +EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2240070a bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x22546d11 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x2254d5fa pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x225f25ec get_user_pages +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x226ef1b1 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b788a2 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x22ca6b86 do_truncate +EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x22e75129 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x22f4df78 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x2310ac07 thaw_super +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x231d6343 mem_map +EXPORT_SYMBOL vmlinux 0x232361c2 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x232e9240 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x23597d37 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x238c1f26 seq_lseek +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23a9775e nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x23af3b51 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x23b3beee i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x23b754a3 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23d19c3e mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x23e98d5e kfree_skb +EXPORT_SYMBOL vmlinux 0x23f0fd40 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x23f99bc8 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x241942bc __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x241c50ce request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242c37a9 blk_complete_request +EXPORT_SYMBOL vmlinux 0x242f20e1 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x24379d3f unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x243886a6 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x2440fe35 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x24537bb7 cpu_tss +EXPORT_SYMBOL vmlinux 0x2454b668 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x2458cd01 unload_nls +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x24703203 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x24909d70 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x249bb7df vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x249c8099 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x24f40ec6 page_symlink +EXPORT_SYMBOL vmlinux 0x24f587a8 skb_tx_error +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2528fca9 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x256e4dc7 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25780977 sock_release +EXPORT_SYMBOL vmlinux 0x257e05f6 get_io_context +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25928b35 x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0x25992043 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25fc884f nd_device_unregister +EXPORT_SYMBOL vmlinux 0x260f97fa pci_disable_msix +EXPORT_SYMBOL vmlinux 0x26274c6a xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x266bde04 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x266fdc2f __napi_schedule +EXPORT_SYMBOL vmlinux 0x268cc6a2 sys_close +EXPORT_SYMBOL vmlinux 0x268cf0ad security_inode_readlink +EXPORT_SYMBOL vmlinux 0x2693c77a get_phy_device +EXPORT_SYMBOL vmlinux 0x26a7b4a6 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26bcfa9c acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x26c660d4 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26f29a8f blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x26fb1ef2 dquot_commit +EXPORT_SYMBOL vmlinux 0x27197211 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x27381fdb inet_frag_find +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x27703011 __scm_destroy +EXPORT_SYMBOL vmlinux 0x27724189 make_kuid +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 0x27b3d558 d_tmpfile +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c32960 devm_request_resource +EXPORT_SYMBOL vmlinux 0x27c70a14 sock_edemux +EXPORT_SYMBOL vmlinux 0x27d5ccb4 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x27e13bc5 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x27e733be truncate_setsize +EXPORT_SYMBOL vmlinux 0x27fb0633 nobh_writepage +EXPORT_SYMBOL vmlinux 0x27fe97b6 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x28145523 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x283cbf74 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x283d852c devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x2847ca63 free_page_put_link +EXPORT_SYMBOL vmlinux 0x285e0617 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x287592b1 netdev_alert +EXPORT_SYMBOL vmlinux 0x287fb9df scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x288a216f bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x2892fd1b dquot_drop +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28b3eeab to_ndd +EXPORT_SYMBOL vmlinux 0x28b715a6 isapnp_cfg_end +EXPORT_SYMBOL vmlinux 0x28e07215 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28eae6ab check_disk_change +EXPORT_SYMBOL vmlinux 0x28f249e2 register_framebuffer +EXPORT_SYMBOL vmlinux 0x28f8d482 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x2927b206 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x2936e7ad mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295497cb vmap +EXPORT_SYMBOL vmlinux 0x29584ac8 bdput +EXPORT_SYMBOL vmlinux 0x2960c69c x86_hyper_xen +EXPORT_SYMBOL vmlinux 0x29685a49 find_lock_entry +EXPORT_SYMBOL vmlinux 0x2976e94a locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x298d253f inet_release +EXPORT_SYMBOL vmlinux 0x298dbdf1 ip_options_compile +EXPORT_SYMBOL vmlinux 0x29adf881 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x29cbb704 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x29d59a5c get_disk +EXPORT_SYMBOL vmlinux 0x29db0078 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x29f81258 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a0e4f80 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a5160ae inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x2a52e3b3 security_path_symlink +EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x2a5def2f intel_scu_ipc_iowrite32 +EXPORT_SYMBOL vmlinux 0x2a630a17 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x2a7af63f backlight_device_register +EXPORT_SYMBOL vmlinux 0x2a87c070 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x2a8ad21a kobject_set_name +EXPORT_SYMBOL vmlinux 0x2a9450af tcp_prot +EXPORT_SYMBOL vmlinux 0x2a963112 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x2a995416 register_key_type +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ac6b28a ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b2c3454 up_read +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b5c9c2b inet6_ioctl +EXPORT_SYMBOL vmlinux 0x2b7a78ba pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x2b913a8b seq_open +EXPORT_SYMBOL vmlinux 0x2b9370c3 mount_subtree +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba6d9cc security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2bf6c00a padata_stop +EXPORT_SYMBOL vmlinux 0x2bfa5f9a ip_do_fragment +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c10f102 con_is_bound +EXPORT_SYMBOL vmlinux 0x2c11a8bd pci_iomap_range +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c1622c5 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x2c172288 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c32a14b writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x2c42c84d mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x2c4efdbb vga_put +EXPORT_SYMBOL vmlinux 0x2c635971 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x2c66c4f4 generic_writepages +EXPORT_SYMBOL vmlinux 0x2c949fef i2c_clients_command +EXPORT_SYMBOL vmlinux 0x2ca05f33 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x2ca87fd8 pci_save_state +EXPORT_SYMBOL vmlinux 0x2ca938e0 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x2cc40ecf fence_remove_callback +EXPORT_SYMBOL vmlinux 0x2cd98fe2 bio_put +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x2d18bf7c dev_addr_flush +EXPORT_SYMBOL vmlinux 0x2d24dac5 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x2d255290 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x2d2d1984 cdev_add +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d37342e cpu_online_mask +EXPORT_SYMBOL vmlinux 0x2d4eedcb soft_cursor +EXPORT_SYMBOL vmlinux 0x2d69cb9d pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x2d88bc86 kill_block_super +EXPORT_SYMBOL vmlinux 0x2d92094f registered_fb +EXPORT_SYMBOL vmlinux 0x2dab968b agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x2dcf2ad6 __free_pages +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 0x2df19e57 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x2e17ef33 i2c_master_send +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2ad7b4 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e2dc3aa __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x2e49fa5d thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x2e5d51dc save_mount_options +EXPORT_SYMBOL vmlinux 0x2e73f73a pnp_is_active +EXPORT_SYMBOL vmlinux 0x2e847efa __blk_end_request +EXPORT_SYMBOL vmlinux 0x2eba7b15 devm_clk_put +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ec7ea30 netif_napi_del +EXPORT_SYMBOL vmlinux 0x2ed34304 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x2ef27543 twl6040_clear_bits +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 0x2f10374f blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x2f12bdb0 tcp_child_process +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f67be66 padata_start +EXPORT_SYMBOL vmlinux 0x2f693347 input_set_keycode +EXPORT_SYMBOL vmlinux 0x2f835516 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x2f8bd809 d_add_ci +EXPORT_SYMBOL vmlinux 0x2f9243d2 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x2f9b8af2 qdisc_reset +EXPORT_SYMBOL vmlinux 0x2f9da82e pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fdbe878 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x2fde1e51 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe746f1 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x2fff86b9 __elv_add_request +EXPORT_SYMBOL vmlinux 0x300b0332 param_get_int +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x30361377 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x303aad39 dev_uc_add +EXPORT_SYMBOL vmlinux 0x304a1e5f input_set_abs_params +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x307d3ca2 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x307dd067 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x308a952a pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b04526 ida_init +EXPORT_SYMBOL vmlinux 0x30bffd6a security_inode_init_security +EXPORT_SYMBOL vmlinux 0x30c3d516 lockref_put_return +EXPORT_SYMBOL vmlinux 0x30d03d7b nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x30dc47bb param_ops_bool +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f688a7 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x31127b0b down_write_trylock +EXPORT_SYMBOL vmlinux 0x31231893 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x312fee66 current_in_userns +EXPORT_SYMBOL vmlinux 0x31320a60 nf_log_set +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x313c956c simple_lookup +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x316193fb file_open_root +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x318c864c udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31b11772 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x31b37fad __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x31ee0132 bdevname +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x32127546 unregister_key_type +EXPORT_SYMBOL vmlinux 0x321663cd blk_requeue_request +EXPORT_SYMBOL vmlinux 0x324e87fc inet6_protos +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x325bae41 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x326ae53f inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x32815a1f vme_irq_generate +EXPORT_SYMBOL vmlinux 0x32999ebf tcp_ioctl +EXPORT_SYMBOL vmlinux 0x32b5fa2f mem_section +EXPORT_SYMBOL vmlinux 0x32b896ec dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0x32ccdfc7 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x32d07b35 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x32d6e83c dqput +EXPORT_SYMBOL vmlinux 0x32d73b8a twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e4cd39 __ht_create_irq +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x3300ebb4 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x3343f3cd handle_edge_irq +EXPORT_SYMBOL vmlinux 0x334438d8 skb_find_text +EXPORT_SYMBOL vmlinux 0x33728b02 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x337784f8 irq_set_chip +EXPORT_SYMBOL vmlinux 0x338076d3 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x3382f693 param_set_copystring +EXPORT_SYMBOL vmlinux 0x338e6a59 md_error +EXPORT_SYMBOL vmlinux 0x33902a11 genphy_config_init +EXPORT_SYMBOL vmlinux 0x3399f49a bdi_destroy +EXPORT_SYMBOL vmlinux 0x339b51f3 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x33c19d88 vc_cons +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 0x33fa9b4e netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x3406723e cdev_init +EXPORT_SYMBOL vmlinux 0x340de472 nf_afinfo +EXPORT_SYMBOL vmlinux 0x342f60fe apm_info +EXPORT_SYMBOL vmlinux 0x34488caa tty_unthrottle +EXPORT_SYMBOL vmlinux 0x345881ab vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x346d54e7 dentry_open +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x34795248 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x3488f8af bdgrab +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34e6601e vfs_write +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x35001458 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x35239327 tty_write_room +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x35467ef3 udp_poll +EXPORT_SYMBOL vmlinux 0x354a8c2f __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x3560c1f0 elv_add_request +EXPORT_SYMBOL vmlinux 0x3562e466 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35779fac kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x3596f0fe sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x359ec6dc netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35dfdfe8 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x35f36aff tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x35fb9c1e blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x360a9dd9 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x36480855 register_cdrom +EXPORT_SYMBOL vmlinux 0x3665caaf __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x3675d7f7 blk_start_queue +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x36886c36 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x36a91cf1 prepare_creds +EXPORT_SYMBOL vmlinux 0x36bc085c downgrade_write +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36c4eb92 blk_make_request +EXPORT_SYMBOL vmlinux 0x36c6af51 intel_scu_ipc_iowrite8 +EXPORT_SYMBOL vmlinux 0x36d93e1a udp6_set_csum +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x370f9850 efi +EXPORT_SYMBOL vmlinux 0x372a13da ns_capable +EXPORT_SYMBOL vmlinux 0x3744a9d8 padata_free +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37565a68 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x37602032 arp_send +EXPORT_SYMBOL vmlinux 0x3765ef35 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x3771841d security_file_permission +EXPORT_SYMBOL vmlinux 0x377dc186 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x378c2479 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x379ea63c nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b2dae9 kmap_high +EXPORT_SYMBOL vmlinux 0x37b7519c netdev_notice +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37bb8f7c ht_create_irq +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c80128 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x37d58d47 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x37d6808f pcie_get_mps +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e0fdb4 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x38101da8 ps2_drain +EXPORT_SYMBOL vmlinux 0x38182d81 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x38609089 path_get +EXPORT_SYMBOL vmlinux 0x38777459 bio_split +EXPORT_SYMBOL vmlinux 0x387f3f63 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388799f6 unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x389837d1 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x3898d5e0 console_stop +EXPORT_SYMBOL vmlinux 0x389c67a4 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38cc628d tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x38e38632 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x39108df7 uart_resume_port +EXPORT_SYMBOL vmlinux 0x3935beda insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x39634ca8 default_llseek +EXPORT_SYMBOL vmlinux 0x39716048 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x3980ff80 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x39949304 read_cache_pages +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x39a5d381 netif_skb_features +EXPORT_SYMBOL vmlinux 0x39a66d65 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x39add488 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39c24bee udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x39cff972 sync_blockdev +EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a138720 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a1bb392 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x3a28e138 audit_log +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a371a31 arp_xmit +EXPORT_SYMBOL vmlinux 0x3a470d56 dev_open +EXPORT_SYMBOL vmlinux 0x3a96a3fd sk_common_release +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3ac855fc skb_clone +EXPORT_SYMBOL vmlinux 0x3aedf1db mount_single +EXPORT_SYMBOL vmlinux 0x3aeec75e param_set_ulong +EXPORT_SYMBOL vmlinux 0x3b188e7d i2c_register_driver +EXPORT_SYMBOL vmlinux 0x3b201620 machine_real_restart +EXPORT_SYMBOL vmlinux 0x3b295590 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x3b58c7c4 sock_no_accept +EXPORT_SYMBOL vmlinux 0x3b5ed999 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6f6cd2 udp_table +EXPORT_SYMBOL vmlinux 0x3b938fd2 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x3b9ea45f uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait +EXPORT_SYMBOL vmlinux 0x3bd9ca2a udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x3c06fced ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x3c2cab7b current_fs_time +EXPORT_SYMBOL vmlinux 0x3c2e774c gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff699 seq_file_path +EXPORT_SYMBOL vmlinux 0x3c5d695d tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x3c680045 drop_nlink +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c891717 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x3c98450c inode_get_bytes +EXPORT_SYMBOL vmlinux 0x3c9e9020 clear_inode +EXPORT_SYMBOL vmlinux 0x3ca45edd phy_suspend +EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x3ce1f126 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d044bdc init_net +EXPORT_SYMBOL vmlinux 0x3d0f2972 iterate_dir +EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x3d1668b6 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x3d22227e mount_ns +EXPORT_SYMBOL vmlinux 0x3d4c196b block_write_begin +EXPORT_SYMBOL vmlinux 0x3d5438e8 nobh_write_end +EXPORT_SYMBOL vmlinux 0x3d579169 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x3d6c935e simple_rmdir +EXPORT_SYMBOL vmlinux 0x3d728756 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x3d73c903 console_start +EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc +EXPORT_SYMBOL vmlinux 0x3da0f913 input_unregister_device +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3da19c2c neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dfb4396 register_shrinker +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e201c45 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e4acce1 __check_sticky +EXPORT_SYMBOL vmlinux 0x3e654f49 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x3e7d11ea dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x3e8153c3 __put_cred +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e9158e8 keyring_clear +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3e9596fe netdev_change_features +EXPORT_SYMBOL vmlinux 0x3ed322fb parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x3ed89856 pnp_find_dev +EXPORT_SYMBOL vmlinux 0x3ef78d80 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x3eff5ac2 intel_scu_ipc_writev +EXPORT_SYMBOL vmlinux 0x3f02647c mntget +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f10009e gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock +EXPORT_SYMBOL vmlinux 0x3f2ce212 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f495efc unlock_page +EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x3f6aa99f from_kprojid +EXPORT_SYMBOL vmlinux 0x3f6e4fb3 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x3f8b80f3 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x3f970782 register_netdevice +EXPORT_SYMBOL vmlinux 0x3fc3c28c register_quota_format +EXPORT_SYMBOL vmlinux 0x3fc40734 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x3fccf01e tcp_splice_read +EXPORT_SYMBOL vmlinux 0x3fdbcef6 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x40020036 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x4064177b blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x40646bf0 nvm_put_blk +EXPORT_SYMBOL vmlinux 0x406f126d input_allocate_device +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 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 0x40d51b47 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40ead4dc dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x40f88862 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x410b37a1 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x411fc820 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x41246283 tty_free_termios +EXPORT_SYMBOL vmlinux 0x413b7e8e rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x415cc8d5 dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0x417cdada dput +EXPORT_SYMBOL vmlinux 0x41862ad4 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x41878e1a scm_detach_fds +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x41979cb5 keyring_alloc +EXPORT_SYMBOL vmlinux 0x41a84e78 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x41c9d293 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x41d27031 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x41e8008e down_read_trylock +EXPORT_SYMBOL vmlinux 0x41eea9bb pci_scan_bus +EXPORT_SYMBOL vmlinux 0x41ffad26 inet_select_addr +EXPORT_SYMBOL vmlinux 0x4201f8e2 free_netdev +EXPORT_SYMBOL vmlinux 0x420b7696 blkdev_get +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421e2bde proc_set_size +EXPORT_SYMBOL vmlinux 0x4228d437 arch_dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x422c8d3b genl_unregister_family +EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen +EXPORT_SYMBOL vmlinux 0x423ff289 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x425df824 install_exec_creds +EXPORT_SYMBOL vmlinux 0x4269b918 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x4269edf3 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x428c2c9b scsi_scan_host +EXPORT_SYMBOL vmlinux 0x4292364c schedule +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42a2b06e __skb_get_hash +EXPORT_SYMBOL vmlinux 0x42a3c0b7 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x42ac386a agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x42f34de9 genphy_resume +EXPORT_SYMBOL vmlinux 0x42fc6c87 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43216aed pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x4331888e agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x43484a4e vfs_rmdir +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x435ea01e __breadahead +EXPORT_SYMBOL vmlinux 0x436000f0 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438f7b76 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x43c021af vfs_symlink +EXPORT_SYMBOL vmlinux 0x43d25253 block_truncate_page +EXPORT_SYMBOL vmlinux 0x43e2cba7 skb_split +EXPORT_SYMBOL vmlinux 0x43e3b203 dev_mc_init +EXPORT_SYMBOL vmlinux 0x43e5ce91 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x4407ba85 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x44246368 netdev_printk +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x4449e957 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x4450d00f skb_queue_purge +EXPORT_SYMBOL vmlinux 0x445a868b __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x4464b058 mutex_lock +EXPORT_SYMBOL vmlinux 0x446bc90c dquot_destroy +EXPORT_SYMBOL vmlinux 0x4488e829 try_to_release_page +EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x449bcd58 pci_pme_active +EXPORT_SYMBOL vmlinux 0x449fe84b acpi_set_firmware_waking_vectors +EXPORT_SYMBOL vmlinux 0x44a39fab migrate_page +EXPORT_SYMBOL vmlinux 0x44a8b919 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44aea19b param_ops_uint +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44e7acc1 arp_tbl +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f6529b netdev_features_change +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450c2370 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x450db3fd sock_no_bind +EXPORT_SYMBOL vmlinux 0x452dfe11 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x45391ab9 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x453b0970 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x456f9f5e jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x457467f7 ppp_input +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45907e37 dma_common_mmap +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45be23bf pv_mmu_ops +EXPORT_SYMBOL vmlinux 0x45e19b44 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x45e33e55 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x45ea319b pci_read_vpd +EXPORT_SYMBOL vmlinux 0x45f5b5e2 clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0x45fb1527 agp_enable +EXPORT_SYMBOL vmlinux 0x46140959 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x4639e57c max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x46416cf9 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x4644ec3a __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467b8859 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x46972d65 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x46986abd pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x46d7fb4c jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x470e0173 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x471685df blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x47182537 input_set_capability +EXPORT_SYMBOL vmlinux 0x471dbfe2 set_pages_nx +EXPORT_SYMBOL vmlinux 0x4721ebd0 fb_set_var +EXPORT_SYMBOL vmlinux 0x472930bb cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x47347a72 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x4749733b __dax_fault +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x478bcdf0 input_register_handler +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 0x47a5bd91 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x47ccd84a mfd_add_devices +EXPORT_SYMBOL vmlinux 0x47d8ecdf __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x47f21564 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x47fef036 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x48068a49 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x48291db7 stop_tty +EXPORT_SYMBOL vmlinux 0x482b0add page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x482cf89d textsearch_unregister +EXPORT_SYMBOL vmlinux 0x482d5629 sock_create_lite +EXPORT_SYMBOL vmlinux 0x4839087e agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x4844acd0 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x4855264f vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485d3928 set_groups +EXPORT_SYMBOL vmlinux 0x48691a8d mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x487571ae mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x487dfc62 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x48b12f23 read_dev_sector +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48e41be9 udp_del_offload +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4919a883 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x491e2108 generic_show_options +EXPORT_SYMBOL vmlinux 0x492cee91 netdev_info +EXPORT_SYMBOL vmlinux 0x49310d6d rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x494c9749 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x496b5718 ipv4_specific +EXPORT_SYMBOL vmlinux 0x49793237 get_super +EXPORT_SYMBOL vmlinux 0x497f5d9b blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x4986e270 vme_master_request +EXPORT_SYMBOL vmlinux 0x4996efff of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49bf0f15 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x49d35fcb inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a217f3e sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x4a3769f1 md_register_thread +EXPORT_SYMBOL vmlinux 0x4a619f83 memcpy +EXPORT_SYMBOL vmlinux 0x4a63d687 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x4a767d4c rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x4a98d156 skb_seq_read +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4acbe3c1 security_path_unlink +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ad2c2d7 pnpbios_protocol +EXPORT_SYMBOL vmlinux 0x4afe2786 arp_create +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b131d1c eth_gro_complete +EXPORT_SYMBOL vmlinux 0x4b186379 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b56e3b5 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b61e601 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x4b771632 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x4b77846f iov_iter_npages +EXPORT_SYMBOL vmlinux 0x4b87021f devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x4ba53922 init_task +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat +EXPORT_SYMBOL vmlinux 0x4bc6ef67 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x4bd0d3bb xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x4be6cc63 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4bf253fa scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x4bf8e3de pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c0b7cea generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x4c29e56c inet_bind +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c2b8713 lro_flush_all +EXPORT_SYMBOL vmlinux 0x4c336aa7 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c3c224f vfs_readf +EXPORT_SYMBOL vmlinux 0x4c3d36e9 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x4c48fda0 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x4c57467d rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x4c7f2e5c tcp_req_err +EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x4c87cc2d ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x4c8bc09b elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x4cc71af9 lookup_bdev +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ce1a010 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x4ce3056d md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x4ce6eeef param_set_ushort +EXPORT_SYMBOL vmlinux 0x4d015dd0 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x4d0c7042 neigh_xmit +EXPORT_SYMBOL vmlinux 0x4d1910e3 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x4d1de01a tty_hangup +EXPORT_SYMBOL vmlinux 0x4d376f5e blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d59cf2f ata_print_version +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4dd0185c generic_block_bmap +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e142426 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x4e196112 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x4e2a2baa set_user_nice +EXPORT_SYMBOL vmlinux 0x4e33aa8e __vfs_write +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e37b35f no_llseek +EXPORT_SYMBOL vmlinux 0x4e44c190 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x4e4f8af3 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x4e52936e ab3100_event_register +EXPORT_SYMBOL vmlinux 0x4e564108 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e89a759 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ec6201d __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x4ed3455c empty_aops +EXPORT_SYMBOL vmlinux 0x4ed5ee6c pci_claim_resource +EXPORT_SYMBOL vmlinux 0x4efa9550 bd_set_size +EXPORT_SYMBOL vmlinux 0x4efdff9f inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x4f1bc404 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f247859 mmc_set_data_timeout +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 0x4f6b400b _copy_from_user +EXPORT_SYMBOL vmlinux 0x4f74ff45 vga_switcheroo_init_domain_pm_optimus_hdmi_audio +EXPORT_SYMBOL vmlinux 0x4f768781 ip6_xmit +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f842c52 pipe_lock +EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user +EXPORT_SYMBOL vmlinux 0x4f9745b5 ihold +EXPORT_SYMBOL vmlinux 0x4fae173f dev_remove_pack +EXPORT_SYMBOL vmlinux 0x4fce1078 iget_locked +EXPORT_SYMBOL vmlinux 0x4fd2d861 vme_slave_request +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe20921 pci_dev_get +EXPORT_SYMBOL vmlinux 0x4ffc9852 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x501c796b inet6_release +EXPORT_SYMBOL vmlinux 0x50203c59 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x504397a8 input_release_device +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 0x509b3d71 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a9d6b7 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x50bb3633 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x50bca3b9 input_inject_event +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50dc7018 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50eedeb8 printk +EXPORT_SYMBOL vmlinux 0x50fb8dbf fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x51017de5 kmap +EXPORT_SYMBOL vmlinux 0x510d26e4 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x511127ff __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x511cfd6a __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x5124f083 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x512960b2 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x513223e0 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x51357671 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x513d2072 elevator_init +EXPORT_SYMBOL vmlinux 0x513d5cce inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x5154a3d4 register_md_personality +EXPORT_SYMBOL vmlinux 0x5159855c pci_request_region +EXPORT_SYMBOL vmlinux 0x516b91cf udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x516f09c2 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x51701784 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock +EXPORT_SYMBOL vmlinux 0x5186518f profile_pc +EXPORT_SYMBOL vmlinux 0x518725bf mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x51ab6cf2 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x51b011dc bioset_free +EXPORT_SYMBOL vmlinux 0x51b58e5d unregister_filesystem +EXPORT_SYMBOL vmlinux 0x51c4a8c1 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +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 0x521c3abf __sb_start_write +EXPORT_SYMBOL vmlinux 0x521fc2cf __secpath_destroy +EXPORT_SYMBOL vmlinux 0x5230929f eth_gro_receive +EXPORT_SYMBOL vmlinux 0x523164b8 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x525a0850 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x52674067 put_filp +EXPORT_SYMBOL vmlinux 0x52857271 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52a2284e mdiobus_free +EXPORT_SYMBOL vmlinux 0x52abe12d kmem_cache_size +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52bbf08e scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x52caca6c blk_init_queue +EXPORT_SYMBOL vmlinux 0x52f80db4 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x52f9f3e8 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x530b1e4c rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x53219494 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x5327c785 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x53349969 padata_do_serial +EXPORT_SYMBOL vmlinux 0x5349595e tso_build_data +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x5362beb4 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x538426e2 rtnl_notify +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53cf725a __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x53f659ee unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x541252f0 get_gendisk +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x544dbf5b __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x545ad9e5 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x5464adc4 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0x547ef905 dev_close +EXPORT_SYMBOL vmlinux 0x54905a42 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54ba396e filp_open +EXPORT_SYMBOL vmlinux 0x54c035df rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54e84733 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x54e894a8 pcibios_set_irq_routing +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 0x553f2b20 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5567216f submit_bh +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x55788e5c posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x559fce34 kobject_put +EXPORT_SYMBOL vmlinux 0x55a87790 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x55b50b48 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x55c08494 done_path_create +EXPORT_SYMBOL vmlinux 0x55c3eef9 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x55d3f8d9 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55e04a73 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x55e5fb30 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x5600c54e down_read +EXPORT_SYMBOL vmlinux 0x5608f0af netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x560925a6 processors +EXPORT_SYMBOL vmlinux 0x562230ab noop_llseek +EXPORT_SYMBOL vmlinux 0x562ef495 dump_skip +EXPORT_SYMBOL vmlinux 0x5630e3c6 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x5631d7b4 vfs_read +EXPORT_SYMBOL vmlinux 0x56330237 __skb_checksum_complete_head +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 0x564ca7c1 to_nd_btt +EXPORT_SYMBOL vmlinux 0x565b523b ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x5668bf46 make_kgid +EXPORT_SYMBOL vmlinux 0x5676a3e5 intel_scu_ipc_ioread8 +EXPORT_SYMBOL vmlinux 0x5682ac56 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56e34c0a generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x56edb8e0 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x5705088a __vmalloc +EXPORT_SYMBOL vmlinux 0x5707f572 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x571af412 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x571d7d25 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x57285b13 override_creds +EXPORT_SYMBOL vmlinux 0x572aa86b in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57553d33 abort_creds +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x575de37c nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5768b865 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x577adbe2 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x577b2820 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x57929dc9 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x57ba72ab fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x57c47413 eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57d25b84 skb_pad +EXPORT_SYMBOL vmlinux 0x57dcd10a vc_resize +EXPORT_SYMBOL vmlinux 0x57e1f81e alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582dcff2 dm_put_device +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 0x5869c685 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58fef6f8 ist_info +EXPORT_SYMBOL vmlinux 0x590c81ba scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x59216bdb abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x595843df is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x595932ae blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x595e631d touch_atime +EXPORT_SYMBOL vmlinux 0x596d7684 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x598108bc send_sig_info +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59a16982 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x59d0b5d9 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x5a09de01 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0f867e nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x5a1fa4fa mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x5a262665 seq_path +EXPORT_SYMBOL vmlinux 0x5a2736b9 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x5a317adf tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x5a38bfc0 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a551a68 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x5a5a5788 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x5a5f87d4 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x5a5ff6b3 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x5a67e57d isapnp_protocol +EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit +EXPORT_SYMBOL vmlinux 0x5a88244e tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x5a914ae9 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x5a9404a8 __frontswap_test +EXPORT_SYMBOL vmlinux 0x5ab07b5d simple_dname +EXPORT_SYMBOL vmlinux 0x5aba77bb kernel_read +EXPORT_SYMBOL vmlinux 0x5abc1899 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5ac391e6 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x5ae1ea38 kern_unmount +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b048113 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x5b14d18e kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b7183f7 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x5b791236 seq_putc +EXPORT_SYMBOL vmlinux 0x5b943d0d padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x5ba4e738 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x5bbe79fe poll_freewait +EXPORT_SYMBOL vmlinux 0x5bc8d583 copy_from_user_overflow +EXPORT_SYMBOL vmlinux 0x5bdd60d3 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x5bfbcc30 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x5c2e03fe account_page_redirty +EXPORT_SYMBOL vmlinux 0x5c3e465a mutex_trylock +EXPORT_SYMBOL vmlinux 0x5c406e04 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x5c545234 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x5c5a63b7 __get_page_tail +EXPORT_SYMBOL vmlinux 0x5c71d30c pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x5c7b180e twl6040_power +EXPORT_SYMBOL vmlinux 0x5c7f9e94 skb_queue_head +EXPORT_SYMBOL vmlinux 0x5c8536fe __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x5c8710d0 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x5c89db3d devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x5c8f72ce ppp_register_compressor +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 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d626b1d __lock_buffer +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done +EXPORT_SYMBOL vmlinux 0x5d8f9a13 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x5d9aeca8 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x5da3d81f kill_litter_super +EXPORT_SYMBOL vmlinux 0x5da80f78 request_firmware +EXPORT_SYMBOL vmlinux 0x5dae0f21 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x5daec38b jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x5dc6e8ee tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x5df272db bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x5df69378 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x5df93a9a blk_peek_request +EXPORT_SYMBOL vmlinux 0x5dffb9b0 x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x5e0cce7d n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x5e1c3e68 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x5e1c5b3b pci_get_device +EXPORT_SYMBOL vmlinux 0x5e1fba16 generic_listxattr +EXPORT_SYMBOL vmlinux 0x5e4231ad sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x5e53e18a inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x5e53fd46 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x5e579391 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x5e58258b devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x5e61fbfb blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e886cc5 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x5e8c8999 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9d5d23 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec4a554 __dst_free +EXPORT_SYMBOL vmlinux 0x5ec89ab1 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ee3030b xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x5ef1a8ee proc_symlink +EXPORT_SYMBOL vmlinux 0x5efe298c kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f019b56 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f156703 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x5f16abcb xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x5f1a4ccf intel_scu_ipc_update_register +EXPORT_SYMBOL vmlinux 0x5f1a65cd __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x5f283753 md_done_sync +EXPORT_SYMBOL vmlinux 0x5f291ead proc_create_data +EXPORT_SYMBOL vmlinux 0x5f4995c7 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x5f5ae4fa ping_prot +EXPORT_SYMBOL vmlinux 0x5f62e74f netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x5f79687f tcf_exts_change +EXPORT_SYMBOL vmlinux 0x5f846148 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x5fa39172 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x5fafc34b devm_memremap +EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init +EXPORT_SYMBOL vmlinux 0x5fb8698b sock_no_getname +EXPORT_SYMBOL vmlinux 0x5fb9c441 __register_nls +EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5fd336c3 bh_submit_read +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5feba0ff mpage_readpage +EXPORT_SYMBOL vmlinux 0x5fec3082 bdi_register +EXPORT_SYMBOL vmlinux 0x5ff05682 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x5ff8c0cb cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x60165652 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6020566c neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x60360fe7 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x603a82d8 release_pages +EXPORT_SYMBOL vmlinux 0x603bd81b netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x604db843 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x605ea44e i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x6063ab82 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x60822eb8 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x608b263f set_pages_x +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x60924710 clk_get +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x60bb1b2c from_kgid_munged +EXPORT_SYMBOL vmlinux 0x60c0f7e5 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x60c2e479 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x60de8637 md_flush_request +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60e7e055 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x60ea322b vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x60ed1666 __devm_release_region +EXPORT_SYMBOL vmlinux 0x6100e26e gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy +EXPORT_SYMBOL vmlinux 0x61164040 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x614ad27a simple_transaction_release +EXPORT_SYMBOL vmlinux 0x6172a72c xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x61865189 vfs_link +EXPORT_SYMBOL vmlinux 0x61876902 dev_uc_init +EXPORT_SYMBOL vmlinux 0x61a76252 input_close_device +EXPORT_SYMBOL vmlinux 0x61b26f24 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c2d886 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x61d4c60c buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x61e6563f vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x61f734a9 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6216ba98 devm_gpiod_get +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 0x6234e56d __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event +EXPORT_SYMBOL vmlinux 0x6241a2ab __copy_from_user_ll_nocache +EXPORT_SYMBOL vmlinux 0x624726c8 netlink_unicast +EXPORT_SYMBOL vmlinux 0x626e4328 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x6286998d mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x62d663d7 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x62e17546 sync_inode +EXPORT_SYMBOL vmlinux 0x62f87cea may_umount_tree +EXPORT_SYMBOL vmlinux 0x62f91be8 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x62fa0358 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x63023885 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x6317190a netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6325e08e dma_supported +EXPORT_SYMBOL vmlinux 0x632e6b2e __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x632fafbf pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x63488a52 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x634bb395 nf_log_packet +EXPORT_SYMBOL vmlinux 0x6362491c skb_put +EXPORT_SYMBOL vmlinux 0x6368b5ae devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0x63721516 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x6373d735 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x637d68cd intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x637ffbac skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x6380f46f devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x63826408 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x6384dade dst_init +EXPORT_SYMBOL vmlinux 0x6388219d fs_bio_set +EXPORT_SYMBOL vmlinux 0x6388591c down_timeout +EXPORT_SYMBOL vmlinux 0x6390a002 d_move +EXPORT_SYMBOL vmlinux 0x63986cec neigh_ifdown +EXPORT_SYMBOL vmlinux 0x639da3e5 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63bf4353 revert_creds +EXPORT_SYMBOL vmlinux 0x63c35f64 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d02631 register_netdev +EXPORT_SYMBOL vmlinux 0x63d57a95 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x63db2b1b vga_tryget +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f5f6ce dev_uc_sync_multiple +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 0x641354f7 ll_rw_block +EXPORT_SYMBOL vmlinux 0x6418b22d pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x6431c88c put_disk +EXPORT_SYMBOL vmlinux 0x644901d9 napi_disable +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x646157d2 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x646fb502 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x64979fa8 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649a954d inet_offloads +EXPORT_SYMBOL vmlinux 0x64a21925 pci_iounmap +EXPORT_SYMBOL vmlinux 0x64a251e0 seq_dentry +EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion +EXPORT_SYMBOL vmlinux 0x64af502b kernel_getpeername +EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb +EXPORT_SYMBOL vmlinux 0x64ef5aec blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x64f700d5 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6519f4f9 md_reload_sb +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x65267ba5 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65526fac mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x655e094b scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x6564e9b4 param_get_ullong +EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x658407e6 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x658a5e1c d_make_root +EXPORT_SYMBOL vmlinux 0x65a295bb atomic64_xchg_cx8 +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65bcafa3 dev_crit +EXPORT_SYMBOL vmlinux 0x65d755ed ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65dcf306 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x65fb2eba reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x661c5692 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x66355efc vprintk +EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x664d09fe param_ops_int +EXPORT_SYMBOL vmlinux 0x6659d50c input_flush_device +EXPORT_SYMBOL vmlinux 0x6660a0a8 locks_init_lock +EXPORT_SYMBOL vmlinux 0x666d1e2b input_unregister_handle +EXPORT_SYMBOL vmlinux 0x667e4e80 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x66882671 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x6691e95e pci_release_region +EXPORT_SYMBOL vmlinux 0x669bf80b proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x66a4af1e dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0x66a7cea8 __inet_hash +EXPORT_SYMBOL vmlinux 0x66bb5dc7 dump_emit +EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x66d85d85 kmap_to_page +EXPORT_SYMBOL vmlinux 0x66e1b24e dquot_quota_on +EXPORT_SYMBOL vmlinux 0x66f8757f dev_load +EXPORT_SYMBOL vmlinux 0x66fbaa4c dget_parent +EXPORT_SYMBOL vmlinux 0x6715e775 inet_frags_init +EXPORT_SYMBOL vmlinux 0x67194d01 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x672cc954 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x6732eab1 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x673a4d5c uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67522b39 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x6759110f agp_free_memory +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x67899611 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x6793cc80 sock_wfree +EXPORT_SYMBOL vmlinux 0x67a609c0 bdi_init +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c33925 mmc_release_host +EXPORT_SYMBOL vmlinux 0x67c38055 noop_fsync +EXPORT_SYMBOL vmlinux 0x67c79d39 tty_port_init +EXPORT_SYMBOL vmlinux 0x67d0849e fb_get_mode +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x68210b57 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x682244da pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x6824359d ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x682afb67 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x68660853 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x68680e95 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x687468ab crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68995454 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x689d3e07 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68b33b34 bio_advance +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68ce016a I_BDEV +EXPORT_SYMBOL vmlinux 0x68ecb7bd mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x68ed2a02 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x6901e646 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x690cfbef netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x691a077b tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x692e75f3 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x6935bfb1 tty_unlock +EXPORT_SYMBOL vmlinux 0x6942b9de inode_change_ok +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x698531ad __get_user_pages +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69bf5832 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x69f8027f __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0eb80f pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x6a177f79 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x6a1ab9f7 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x6a1e8900 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x6a22374e mmc_detect_change +EXPORT_SYMBOL vmlinux 0x6a27bfce csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x6a31faf8 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x6a3682eb serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x6a4b642c rt6_lookup +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 0x6a8a69e3 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x6a8fe654 tcf_register_action +EXPORT_SYMBOL vmlinux 0x6a97bcff simple_write_end +EXPORT_SYMBOL vmlinux 0x6a9cb2a5 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x6a9d689f tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x6aa55ed0 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x6aac3c68 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x6aae5edb revalidate_disk +EXPORT_SYMBOL vmlinux 0x6ac61873 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6ad79653 get_super_thawed +EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aed1e35 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af02cf7 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b095e15 __bread_gfp +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b3736bd blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x6b5132af neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x6b6431fb find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x6b6a8d34 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue +EXPORT_SYMBOL vmlinux 0x6bbf034d mutex_lock_killable +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 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c244088 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x6c282ce2 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x6c2e3320 strncmp +EXPORT_SYMBOL vmlinux 0x6c2e9e26 make_bad_inode +EXPORT_SYMBOL vmlinux 0x6c479f08 devm_free_irq +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c6042f9 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c621158 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c7fad2a __devm_request_region +EXPORT_SYMBOL vmlinux 0x6c837aff inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x6c8e8bf4 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x6cc828b5 neigh_lookup +EXPORT_SYMBOL vmlinux 0x6ccf1b7f vfs_mkdir +EXPORT_SYMBOL vmlinux 0x6cd34443 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x6cd74238 register_filesystem +EXPORT_SYMBOL vmlinux 0x6cd8d227 ether_setup +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6d0419da tty_port_open +EXPORT_SYMBOL vmlinux 0x6d080aad xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x6d0a252b inet_csk_reqsk_queue_drop +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 0x6d2e9982 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d4fd291 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x6d5342f0 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x6d625067 dev_warn +EXPORT_SYMBOL vmlinux 0x6da16d1c eisa_driver_register +EXPORT_SYMBOL vmlinux 0x6db0f98d km_new_mapping +EXPORT_SYMBOL vmlinux 0x6db5dfc0 netdev_crit +EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible +EXPORT_SYMBOL vmlinux 0x6dc6dd56 down +EXPORT_SYMBOL vmlinux 0x6dd268aa nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x6dda4a26 param_ops_long +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e04bcff ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x6e07115c inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x6e13c2e1 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x6e27f1b9 uart_match_port +EXPORT_SYMBOL vmlinux 0x6e52a7d5 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e911fcf noop_qdisc +EXPORT_SYMBOL vmlinux 0x6e983a6d acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eb6a5fe serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x6eb95fd6 dquot_operations +EXPORT_SYMBOL vmlinux 0x6ebff7fa vfs_statfs +EXPORT_SYMBOL vmlinux 0x6ec9ffd7 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x6ee2e265 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f257ecb loop_register_transfer +EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x6f4ac6df blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6fbb8d57 register_qdisc +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fcdcc3b genl_notify +EXPORT_SYMBOL vmlinux 0x6fe0ba09 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x6ff3b1bd nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x700ee333 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x7012d853 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x701e944d fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x70290bc7 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x702e38c0 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x7043514b remap_pfn_range +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x70588120 kill_bdev +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x7088ce72 printk_emit +EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x709d8f0f tso_build_hdr +EXPORT_SYMBOL vmlinux 0x70bc3d2d dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0x70cc124f __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x70cc1fe8 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x70d1f8f3 strncat +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x70de233d inet6_offloads +EXPORT_SYMBOL vmlinux 0x70ed87f5 pci_dev_put +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x71068a02 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x710b8089 set_bh_page +EXPORT_SYMBOL vmlinux 0x7120bbf6 blk_queue_segment_boundary +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 0x71592295 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71afa8d0 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x71c925bf dquot_file_open +EXPORT_SYMBOL vmlinux 0x71e13767 lwtunnel_output +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x71fd8592 kern_path_create +EXPORT_SYMBOL vmlinux 0x720c4600 sk_free +EXPORT_SYMBOL vmlinux 0x7210ea7c pnp_possible_config +EXPORT_SYMBOL vmlinux 0x72330f57 dev_addr_init +EXPORT_SYMBOL vmlinux 0x723eddf1 dev_notice +EXPORT_SYMBOL vmlinux 0x724c4130 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x7257f312 set_anon_super +EXPORT_SYMBOL vmlinux 0x7266155c pci_get_subsys +EXPORT_SYMBOL vmlinux 0x7282eaaa elv_rb_del +EXPORT_SYMBOL vmlinux 0x729e039f sock_alloc_file +EXPORT_SYMBOL vmlinux 0x72a7b26d bio_add_page +EXPORT_SYMBOL vmlinux 0x72b15ef5 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72c3c2ba twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72d84ed7 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f31a8b sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x72f56059 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x7300700d xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x7302ce2b mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x730b75e7 tty_vhangup +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x7319043b __neigh_create +EXPORT_SYMBOL vmlinux 0x73266c56 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x733cabc7 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x734036b4 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x7359de63 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x735a251f i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x73726eca pci_reenable_device +EXPORT_SYMBOL vmlinux 0x737c3bdb dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x737ef51a nd_device_register +EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get +EXPORT_SYMBOL vmlinux 0x738803e6 strnlen +EXPORT_SYMBOL vmlinux 0x738dbcf3 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x7401d040 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x74121177 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x741a1b27 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x7421627e unregister_nls +EXPORT_SYMBOL vmlinux 0x742abfb9 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x743af220 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x743b4ae3 atomic64_inc_not_zero_cx8 +EXPORT_SYMBOL vmlinux 0x743cdff1 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x745a4e3d mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty +EXPORT_SYMBOL vmlinux 0x746cf16a xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7479af12 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c6011c tty_throttle +EXPORT_SYMBOL vmlinux 0x74c659a3 elevator_change +EXPORT_SYMBOL vmlinux 0x74d07f62 sock_rfree +EXPORT_SYMBOL vmlinux 0x74e5c98f ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74eeedc9 input_register_handle +EXPORT_SYMBOL vmlinux 0x74f8294f padata_do_parallel +EXPORT_SYMBOL vmlinux 0x74fabd46 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x75271716 save_processor_state +EXPORT_SYMBOL vmlinux 0x7531e3dc acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x7532b914 mntput +EXPORT_SYMBOL vmlinux 0x75330e10 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x755368e3 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x7588439d tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x7588a66b pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x7593637f arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75a17d9d __neigh_set_probe_once +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 0x75cba6ba xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x75d21809 vprintk_emit +EXPORT_SYMBOL vmlinux 0x75f264cb generic_fillattr +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x760415b4 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x76057a6a touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7629f65a elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x762add85 atomic64_inc_return_cx8 +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x76539609 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x765e74ab proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x767d28a8 seq_printf +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x76845f65 dma_ops +EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x769f9dd4 uart_register_driver +EXPORT_SYMBOL vmlinux 0x76ae215a __nla_reserve +EXPORT_SYMBOL vmlinux 0x76b03974 try_module_get +EXPORT_SYMBOL vmlinux 0x76b40708 dquot_get_state +EXPORT_SYMBOL vmlinux 0x76cb2811 neigh_connected_output +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 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x774a4331 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x7754bf72 da903x_query_status +EXPORT_SYMBOL vmlinux 0x776796c2 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x776f4051 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x77832b37 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x77933d4f scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779a7bb2 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x77a16b9c take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d842c0 set_pages_uc +EXPORT_SYMBOL vmlinux 0x77e30cf4 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x77ebec8c d_rehash +EXPORT_SYMBOL vmlinux 0x77f01e66 security_mmap_file +EXPORT_SYMBOL vmlinux 0x7807f2f7 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x7818ff00 proc_douintvec +EXPORT_SYMBOL vmlinux 0x782567ec memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x7831ddc9 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x784ab64b xfrm4_rcv_encap +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 0x78babeec vga_switcheroo_set_dynamic_switch +EXPORT_SYMBOL vmlinux 0x78bb2c5c vfs_rename +EXPORT_SYMBOL vmlinux 0x78c27c63 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x78c78ab1 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e739aa up +EXPORT_SYMBOL vmlinux 0x78faaa50 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x790613c0 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x790b769c phy_detach +EXPORT_SYMBOL vmlinux 0x790f5bc5 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x79116894 tcp_filter +EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock +EXPORT_SYMBOL vmlinux 0x79203320 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x793b73ba dm_register_target +EXPORT_SYMBOL vmlinux 0x793d60f9 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x794bfe9e pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x796f30c6 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x7981746b sg_miter_stop +EXPORT_SYMBOL vmlinux 0x798f8dd1 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79b09589 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x79b6dca2 skb_unlink +EXPORT_SYMBOL vmlinux 0x79c0d3ab devm_ioport_map +EXPORT_SYMBOL vmlinux 0x79c51e72 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x79cb92b7 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x79cdf6fa page_waitqueue +EXPORT_SYMBOL vmlinux 0x79eb3ee3 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x79f85d11 dev_uc_del +EXPORT_SYMBOL vmlinux 0x7a1a5834 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x7a1d7903 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x7a2043e3 tty_name +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a2e4bfe sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a786877 passthru_features_check +EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7a8c4e68 inode_init_once +EXPORT_SYMBOL vmlinux 0x7a91fd13 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa406c8 would_dump +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abf6cc8 scmd_printk +EXPORT_SYMBOL vmlinux 0x7acad670 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x7accce24 kobject_del +EXPORT_SYMBOL vmlinux 0x7acf44c1 udp_set_csum +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7aeca910 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b03eb2c tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x7b134ddf acpi_get_name +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1848d2 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b1caf47 devm_ioremap +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b497b44 dev_add_pack +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b7c708b ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x7b98cb31 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x7ba68ba8 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x7bae4c26 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x7bbdc10d blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x7bd59d71 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x7bf0c352 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x7bfffedd from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x7c089c81 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c3cc234 udp_proc_register +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c7634b0 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cba266f __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x7cbc3b79 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x7cd347bc locks_free_lock +EXPORT_SYMBOL vmlinux 0x7cdf5a0c input_open_device +EXPORT_SYMBOL vmlinux 0x7ce0691e netdev_warn +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 0x7d3bb7cf locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x7d5129ab elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x7d5e643c dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x7d972f33 add_disk +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7dcae8a9 inet_put_port +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df1836b param_set_invbool +EXPORT_SYMBOL vmlinux 0x7df4e17e tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x7df5813c __getblk_slow +EXPORT_SYMBOL vmlinux 0x7e1764c7 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x7e1e16fa d_obtain_alias +EXPORT_SYMBOL vmlinux 0x7e3af3f6 padata_alloc +EXPORT_SYMBOL vmlinux 0x7e3e8f19 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x7e5523f5 d_delete +EXPORT_SYMBOL vmlinux 0x7e5c35b1 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit +EXPORT_SYMBOL vmlinux 0x7ea200e8 agp_generic_enable +EXPORT_SYMBOL vmlinux 0x7ea9d0b1 open_exec +EXPORT_SYMBOL vmlinux 0x7eb79e98 tso_start +EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x7ed3c6af scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x7ed851db lock_fb_info +EXPORT_SYMBOL vmlinux 0x7eda9dcd pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x7ee671dc sock_register +EXPORT_SYMBOL vmlinux 0x7ee68ef4 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee73c0c memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0x7ef14d55 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x7ef3c0b7 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x7f018369 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f046dee xfrm_input +EXPORT_SYMBOL vmlinux 0x7f071902 get_task_io_context +EXPORT_SYMBOL vmlinux 0x7f18e16d pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f6aa0ae submit_bio_wait +EXPORT_SYMBOL vmlinux 0x7f901f5b user_path_at_empty +EXPORT_SYMBOL vmlinux 0x7f98c16b bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x7f9f6786 d_obtain_root +EXPORT_SYMBOL vmlinux 0x7fbb8d7f request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x7fbcc4bb phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x7fc39ec6 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x7fdbff27 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe32eac __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x7fe6b6fd free_user_ns +EXPORT_SYMBOL vmlinux 0x804fd2ae param_ops_charp +EXPORT_SYMBOL vmlinux 0x805e8221 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d9ca85 paravirt_ticketlocks_enabled +EXPORT_SYMBOL vmlinux 0x80da6088 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x80dcd967 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x80e29085 update_region +EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x810ce9ff phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x810cfa4d abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x812d75ce netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x813018bd skb_orphan_partial +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 0x81605536 vm_insert_page +EXPORT_SYMBOL vmlinux 0x8174b56e read_cache_page +EXPORT_SYMBOL vmlinux 0x8183db6c acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x818cfc4f fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x81a20766 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x81ac0e08 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x81ae208d __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x81c9be5b mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x81cf238b sock_efree +EXPORT_SYMBOL vmlinux 0x81d8a871 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x81db6508 dump_trace +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x82029b2a tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x82111031 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x8235805b memmove +EXPORT_SYMBOL vmlinux 0x823a8159 cad_pid +EXPORT_SYMBOL vmlinux 0x824a4c88 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x82746d2e sock_common_getsockopt +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 0x82b40005 skb_append +EXPORT_SYMBOL vmlinux 0x82b8dbcf security_task_getsecid +EXPORT_SYMBOL vmlinux 0x82bef6d0 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x82f0662b simple_unlink +EXPORT_SYMBOL vmlinux 0x830b8cb8 file_path +EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot +EXPORT_SYMBOL vmlinux 0x8329e6f0 memset +EXPORT_SYMBOL vmlinux 0x832d57c4 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +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 0x83989695 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83b1e8fe vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x83c2dc29 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83cde1fb param_get_bool +EXPORT_SYMBOL vmlinux 0x83d06fba netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x83ff73dd tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x841fb820 param_ops_byte +EXPORT_SYMBOL vmlinux 0x842b035a led_set_brightness +EXPORT_SYMBOL vmlinux 0x84679e70 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x84818271 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x84894cdc zpool_register_driver +EXPORT_SYMBOL vmlinux 0x84d41025 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x851395b8 ilookup5 +EXPORT_SYMBOL vmlinux 0x8514e66d i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x853f3661 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x8560d8fb pci_restore_state +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85675d3d iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0x85780219 skb_make_writable +EXPORT_SYMBOL vmlinux 0x8579cf4c page_address +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x859382a3 scsi_device_put +EXPORT_SYMBOL vmlinux 0x85b0458f skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f454a3 dquot_release +EXPORT_SYMBOL vmlinux 0x861784f2 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x8619a14a wireless_spy_update +EXPORT_SYMBOL vmlinux 0x861d7124 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x86386b19 __napi_complete +EXPORT_SYMBOL vmlinux 0x86437034 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x8661649a serio_interrupt +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x866badaa skb_insert +EXPORT_SYMBOL vmlinux 0x8671ad60 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x8673e3d6 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x867b2284 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x867c6071 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x8697c2c7 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86b78749 led_blink_set +EXPORT_SYMBOL vmlinux 0x86e1fbc8 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x86ebd64b blk_get_request +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x87379515 input_free_device +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x877249a5 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x877e0cb0 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x878cd015 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x878cdce1 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x878f384f fget +EXPORT_SYMBOL vmlinux 0x879c3b49 from_kgid +EXPORT_SYMBOL vmlinux 0x87a9debc __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x87d373ae inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x87d5e2f6 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x87dff9f9 deactivate_super +EXPORT_SYMBOL vmlinux 0x87e5426a cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x87efa0ab vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x87f1e7ac km_policy_expired +EXPORT_SYMBOL vmlinux 0x87f42b1c devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x88044ae4 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x88333aff dst_destroy +EXPORT_SYMBOL vmlinux 0x885e0dbb force_sig +EXPORT_SYMBOL vmlinux 0x8879b3e6 dev_printk +EXPORT_SYMBOL vmlinux 0x888c7cca unlock_new_inode +EXPORT_SYMBOL vmlinux 0x890ca359 set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x89181db8 i2c_use_client +EXPORT_SYMBOL vmlinux 0x8924a93b udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x894db02c nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x894f3a96 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x8952c9e6 mmc_erase +EXPORT_SYMBOL vmlinux 0x895ef678 simple_readpage +EXPORT_SYMBOL vmlinux 0x897454b1 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x89872d8e blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x89a00849 bdev_read_only +EXPORT_SYMBOL vmlinux 0x89a62ba7 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x89a6e130 dev_activate +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89aff121 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x89cf6726 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89e13256 devm_iounmap +EXPORT_SYMBOL vmlinux 0x89e55512 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x89f50c7e mpage_writepages +EXPORT_SYMBOL vmlinux 0x89f85e43 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x89fe1e39 search_binary_handler +EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all +EXPORT_SYMBOL vmlinux 0x8a0b4a72 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x8a1787d1 dcb_getapp +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a2bb2fd filemap_fault +EXPORT_SYMBOL vmlinux 0x8a30a038 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x8a37b4ba vme_bus_type +EXPORT_SYMBOL vmlinux 0x8a463149 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a564a18 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x8a5908f7 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x8a683530 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a801a08 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9da5f5 bioset_create +EXPORT_SYMBOL vmlinux 0x8ab0479f pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x8abb5e6a blk_start_request +EXPORT_SYMBOL vmlinux 0x8ac40497 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x8ad7c74e xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x8ae43578 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x8aeabbcd vfs_setpos +EXPORT_SYMBOL vmlinux 0x8aecf135 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x8af3093a dev_set_group +EXPORT_SYMBOL vmlinux 0x8b0e5bc4 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x8b18496f __copy_to_user_ll +EXPORT_SYMBOL vmlinux 0x8b22a535 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b7a41dd generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x8b7b64ad loop_backing_file +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8bbec25a key_link +EXPORT_SYMBOL vmlinux 0x8bc283e6 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x8bc2a041 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x8bccc740 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x8bd8ee0e dcache_dir_close +EXPORT_SYMBOL vmlinux 0x8be7b064 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x8bf08b7f __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x8bf1f300 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x8bf5848e __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x8bf91e04 invalidate_partition +EXPORT_SYMBOL vmlinux 0x8bfbf748 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x8c1138bb mount_pseudo +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c1e7719 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x8c409bc4 phy_disconnect +EXPORT_SYMBOL vmlinux 0x8c61f97f atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c949604 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x8cb8f8d1 devm_release_resource +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cc7d7c7 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x8cca5315 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x8cd2341c dma_pool_create +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8ceece78 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x8cf542d4 vga_con +EXPORT_SYMBOL vmlinux 0x8d0e109e dquot_initialize +EXPORT_SYMBOL vmlinux 0x8d252492 rtnl_unicast +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 0x8d776d35 pnp_find_card +EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8da064b8 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8dab10e7 inode_permission +EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init +EXPORT_SYMBOL vmlinux 0x8dc6e564 restore_processor_state +EXPORT_SYMBOL vmlinux 0x8dcf555e gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x8dd8743c dev_addr_add +EXPORT_SYMBOL vmlinux 0x8dde5aa8 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x8dfe5355 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e0d595a pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x8e23ffe9 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x8e257480 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x8e3267c5 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x8e3445de xfrm_state_add +EXPORT_SYMBOL vmlinux 0x8e4cc72d elv_rb_add +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x8e9f176b blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8eb0d7f2 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x8eb84ebd mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x8eb924d2 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x8ec255b3 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x8f0ad91b dev_get_iflink +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f415385 __alloc_skb +EXPORT_SYMBOL vmlinux 0x8f4fc689 cdev_del +EXPORT_SYMBOL vmlinux 0x8f649f74 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x8f6d54e9 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fb20201 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x8fdfadb1 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x8fe46e27 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x8ff4079b pv_irq_ops +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x9034316a scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x905e0fd8 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x90650971 fd_install +EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x908145e4 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0x909265de eth_mac_addr +EXPORT_SYMBOL vmlinux 0x90941853 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x909fa47c simple_getattr +EXPORT_SYMBOL vmlinux 0x90a15d4b dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x90b91c92 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x90be754c dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90ca2b3d tcp_sendpage +EXPORT_SYMBOL vmlinux 0x90f854f1 pci_release_regions +EXPORT_SYMBOL vmlinux 0x91101e83 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x9126aa1f vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x9144674d pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x915ae23c acpi_pm_device_run_wake +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91802305 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init +EXPORT_SYMBOL vmlinux 0x91e87a71 param_set_long +EXPORT_SYMBOL vmlinux 0x91ebfe31 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x920ab44b register_gifconf +EXPORT_SYMBOL vmlinux 0x920cd998 do_splice_from +EXPORT_SYMBOL vmlinux 0x92209d10 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x92256552 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x92257559 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x92328462 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x925ac40e write_inode_now +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fc7716 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x92fe019c kunmap_high +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93101547 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x932484c6 pci_set_master +EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x9331d360 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x933db7c4 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x934aaeb7 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x934c7193 pnp_device_detach +EXPORT_SYMBOL vmlinux 0x93560835 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x93571b6a dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x9357e663 scsi_add_device +EXPORT_SYMBOL vmlinux 0x936c1386 release_sock +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x938cb80c lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x938fba98 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x9396c3e5 inode_init_always +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93be6cd0 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x93d0220f tty_register_device +EXPORT_SYMBOL vmlinux 0x93e46338 block_read_full_page +EXPORT_SYMBOL vmlinux 0x93f667f5 mmc_can_reset +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9400cbda agp_create_memory +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x94082b13 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x942238e8 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x943ae09a iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x943e0c0b rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x94453585 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x945c47d6 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x946431ad dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x947aa4a6 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x948dc827 __page_symlink +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x94d9a96d scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x94dbe172 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x94ee8f13 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x94f3f1db tcp_check_req +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x95176838 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x952626dd phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x95300731 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954b2d39 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x9550e25a truncate_pagecache +EXPORT_SYMBOL vmlinux 0x9561d3ec skb_trim +EXPORT_SYMBOL vmlinux 0x957d259d dev_uc_sync +EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0x95c2c000 netlink_capable +EXPORT_SYMBOL vmlinux 0x95d40c26 param_get_charp +EXPORT_SYMBOL vmlinux 0x96092f57 netdev_state_change +EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x9656f006 __init_rwsem +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x966eea09 param_ops_bint +EXPORT_SYMBOL vmlinux 0x9675db20 md_write_start +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x969d7788 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x96b78ce5 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x96bcaea0 freeze_super +EXPORT_SYMBOL vmlinux 0x96cacdd2 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x9719d313 neigh_for_each +EXPORT_SYMBOL vmlinux 0x972271e8 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9745ab29 read_code +EXPORT_SYMBOL vmlinux 0x974f10d0 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x97661e83 have_submounts +EXPORT_SYMBOL vmlinux 0x977e03b9 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x9784237b swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x979588bd security_inode_permission +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x97c9c136 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x97cd5bd5 eth_header_parse +EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x97e77fb0 i2c_master_recv +EXPORT_SYMBOL vmlinux 0x97f3f42f block_write_full_page +EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x9845788f xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x985dcdc4 pci_bus_get +EXPORT_SYMBOL vmlinux 0x986c5b3e nla_append +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x98815019 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x988366a7 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x98861b09 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL vmlinux 0x98a18f64 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x98c82bbc blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x98d04ab5 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x98e52b4b pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x98fa1880 pci_match_id +EXPORT_SYMBOL vmlinux 0x9908336b fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x990cd6ce acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x99233c32 cpu_core_map +EXPORT_SYMBOL vmlinux 0x99283077 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x99312893 security_path_link +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993ef6da __ip_select_ident +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x997bb0f7 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x998fd227 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x9991b1df tty_check_change +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x999edc26 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x99adb961 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x99bc73bf build_skb +EXPORT_SYMBOL vmlinux 0x99c06f17 follow_down_one +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d125ef proc_set_user +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e1856e kobject_add +EXPORT_SYMBOL vmlinux 0x99e7d101 simple_open +EXPORT_SYMBOL vmlinux 0x99ea1843 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x99eb6fde create_empty_buffers +EXPORT_SYMBOL vmlinux 0x99f0e44a component_match_add +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a2c04ce mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x9a3d4d7a dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x9a6a83f9 cmos_lock +EXPORT_SYMBOL vmlinux 0x9a8d7fb7 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x9aabafb2 unlock_rename +EXPORT_SYMBOL vmlinux 0x9ab115ef __find_get_block +EXPORT_SYMBOL vmlinux 0x9ab5785e phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x9ababc93 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x9ac135a4 key_type_keyring +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9b0e0d24 generic_make_request +EXPORT_SYMBOL vmlinux 0x9b12bbd8 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x9b150c6d pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x9b1d86e3 pci_iomap +EXPORT_SYMBOL vmlinux 0x9b21fb25 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x9b250fe6 pci_request_regions +EXPORT_SYMBOL vmlinux 0x9b29e73c pci_choose_state +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b4b860b rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x9b5b6352 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b70ac16 simple_write_begin +EXPORT_SYMBOL vmlinux 0x9b8f90f5 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x9b96858a pcibios_bus_to_resource +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 0x9ba882e2 dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0x9bb8d90d phy_attach +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9c001096 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x9c00f6d9 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x9c025774 __break_lease +EXPORT_SYMBOL vmlinux 0x9c035f33 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x9c0c1d7d commit_creds +EXPORT_SYMBOL vmlinux 0x9c27ab78 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x9c2c944a __copy_from_user_ll_nocache_nozero +EXPORT_SYMBOL vmlinux 0x9c405fe4 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c5a61e2 security_path_chown +EXPORT_SYMBOL vmlinux 0x9c5cefd7 consume_skb +EXPORT_SYMBOL vmlinux 0x9c631846 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x9c6e139e jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x9c83f6c0 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x9c890ac9 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x9ca583e4 clkdev_drop +EXPORT_SYMBOL vmlinux 0x9ca7af6c skb_checksum_help +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cc6b069 may_umount +EXPORT_SYMBOL vmlinux 0x9ce169af neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d2c1e5d vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x9d335f14 param_get_long +EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d4862f6 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x9d53527f ata_link_printk +EXPORT_SYMBOL vmlinux 0x9da9b9bc blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x9dc208d4 scsi_execute +EXPORT_SYMBOL vmlinux 0x9ddd2ccc seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x9df3cea6 km_policy_notify +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e3c8de1 from_kuid +EXPORT_SYMBOL vmlinux 0x9e47268c filemap_flush +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e6f429e linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e8e09c9 padata_remove_cpu +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 0x9ec968ae __pagevec_release +EXPORT_SYMBOL vmlinux 0x9ed26fed trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x9edac8d2 pci_find_capability +EXPORT_SYMBOL vmlinux 0x9ee83eb7 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x9eefe57a mpage_readpages +EXPORT_SYMBOL vmlinux 0x9ef7d957 phy_resume +EXPORT_SYMBOL vmlinux 0x9f11ee60 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x9f452297 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f5f7bdc ps2_command +EXPORT_SYMBOL vmlinux 0x9f65260d __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x9f66ac16 dentry_unhash +EXPORT_SYMBOL vmlinux 0x9f699d16 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9faa43cc agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x9fb7a066 __kernel_write +EXPORT_SYMBOL vmlinux 0x9fcd43a3 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe8c92e kernel_accept +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa0234373 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xa034ee86 single_release +EXPORT_SYMBOL vmlinux 0xa03e9c0e crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa04f23c3 sk_wait_data +EXPORT_SYMBOL vmlinux 0xa054819a mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa07bf0c2 textsearch_register +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08a3231 wireless_send_event +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0ca9026 tty_port_lower_dtr_rts +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 0xa104a5cd __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1218bc3 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xa132bfe5 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa146b1b7 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa14bc8e3 dquot_resume +EXPORT_SYMBOL vmlinux 0xa16c762d netif_rx +EXPORT_SYMBOL vmlinux 0xa172ebe2 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xa183d3de nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xa19d275a ata_dev_printk +EXPORT_SYMBOL vmlinux 0xa19de3fd boot_cpu_data +EXPORT_SYMBOL vmlinux 0xa1a008ad netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xa1ad5fc5 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0xa1b3caaa dump_page +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1bc0cca address_space_init_once +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa20c98ea netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0xa21a031d neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xa21a9ef1 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0xa2296684 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xa232a70e sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xa24226eb mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xa27aabe0 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xa27d957f pagevec_lookup +EXPORT_SYMBOL vmlinux 0xa282bb0c lock_rename +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2a3b9fd neigh_direct_output +EXPORT_SYMBOL vmlinux 0xa2a4e924 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xa2d3df51 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xa2e0ff69 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa32315c5 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xa33437a8 dev_emerg +EXPORT_SYMBOL vmlinux 0xa3347416 input_grab_device +EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa36f513f nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa38be358 md_integrity_register +EXPORT_SYMBOL vmlinux 0xa39606c6 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xa3a2b5a7 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xa3bcf1d2 start_tty +EXPORT_SYMBOL vmlinux 0xa3bd1f5d softnet_data +EXPORT_SYMBOL vmlinux 0xa3dcbfd3 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xa3e12559 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xa3e823a0 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xa3ea445f ppp_dev_name +EXPORT_SYMBOL vmlinux 0xa4108252 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xa4218db8 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0xa42a2911 simple_empty +EXPORT_SYMBOL vmlinux 0xa42c7370 path_is_under +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa45444a2 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xa45f34a9 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xa46a492f kill_pgrp +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa487c7ee tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xa4a64da5 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xa4b472b0 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4bd364b param_get_string +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4f3e395 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xa4f4dfb5 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xa5144531 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xa51cdfe8 __FIXADDR_TOP +EXPORT_SYMBOL vmlinux 0xa52b8fde page_put_link +EXPORT_SYMBOL vmlinux 0xa542cf83 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa552807d __ps2_command +EXPORT_SYMBOL vmlinux 0xa56b7282 get_cached_acl +EXPORT_SYMBOL vmlinux 0xa56bebf5 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xa581e4f4 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5afaf8b dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xa5c03a4a _dev_info +EXPORT_SYMBOL vmlinux 0xa5cf97a8 dump_align +EXPORT_SYMBOL vmlinux 0xa5ec440d netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xa611e548 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xa6184c2e xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xa62e6e4f acpi_get_table_with_size +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa65122ec blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xa6558c7e tcp_poll +EXPORT_SYMBOL vmlinux 0xa6603970 rwsem_down_read_failed +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 0xa69db31e nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xa6ad64af blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xa6b3faa4 vme_slot_num +EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up +EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error +EXPORT_SYMBOL vmlinux 0xa6c3a3e0 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xa6c4aef1 dev_mc_add +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa70f22ea serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa730b7d6 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xa734b39b __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa7509d2b do_splice_direct +EXPORT_SYMBOL vmlinux 0xa7557e58 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xa76c9832 skb_copy +EXPORT_SYMBOL vmlinux 0xa77d59f0 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock +EXPORT_SYMBOL vmlinux 0xa78da3ab eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xa7973bf1 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xa7b71700 set_security_override +EXPORT_SYMBOL vmlinux 0xa7cf6c2f atomic64_dec_return_cx8 +EXPORT_SYMBOL vmlinux 0xa7ec8e64 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xa810777c blk_queue_split +EXPORT_SYMBOL vmlinux 0xa82c7b11 d_genocide +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa848885c udp6_csum_init +EXPORT_SYMBOL vmlinux 0xa860eb5f __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xa86c2b8a netif_rx_ni +EXPORT_SYMBOL vmlinux 0xa8707350 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa87f3c85 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xa88e31ac nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xa89186bc uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xa894fef7 PDE_DATA +EXPORT_SYMBOL vmlinux 0xa899166f generic_removexattr +EXPORT_SYMBOL vmlinux 0xa8ab5947 __d_drop +EXPORT_SYMBOL vmlinux 0xa8b7806e dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xa8c3b79a ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xa8c79f74 mount_nodev +EXPORT_SYMBOL vmlinux 0xa8dd59f0 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xa8e582d9 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa90c8abd param_set_bool +EXPORT_SYMBOL vmlinux 0xa90e640f udplite_prot +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa921bf75 blk_fetch_request +EXPORT_SYMBOL vmlinux 0xa93ab549 km_is_alive +EXPORT_SYMBOL vmlinux 0xa9505f76 scsi_host_get +EXPORT_SYMBOL vmlinux 0xa9538153 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xa96b5b41 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xa975cfa1 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa97df018 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xa99b62a2 set_blocksize +EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xa9af0579 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0xa9b7b578 pci_clear_master +EXPORT_SYMBOL vmlinux 0xa9c3cc0a tty_do_resize +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9cdd673 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xa9cfea6b x86_hyper +EXPORT_SYMBOL vmlinux 0xa9eb5a04 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xa9fcaa85 blk_free_tags +EXPORT_SYMBOL vmlinux 0xaa15add3 poll_initwait +EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xaa5e6999 blk_integrity_merge_rq +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 0xaaa2b803 set_disk_ro +EXPORT_SYMBOL vmlinux 0xaac84ef9 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaae16771 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab4b3f3f generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xab5166e0 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xab521a1a sk_dst_check +EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xab578506 __quota_error +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 0xab7c93a2 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0xaba3159c gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xabaf7047 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xabb39125 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xabbb9765 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xabc0b1e0 blk_run_queue +EXPORT_SYMBOL vmlinux 0xabc26928 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabdd6463 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xabe96c4d ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xabfa2b9b tty_port_close +EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xabff9fd7 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xac05e73e mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac10838f path_put +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac2751cc vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xac28d813 cdrom_open +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac3ffee3 dev_deactivate +EXPORT_SYMBOL vmlinux 0xac5b6eec pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xac6d816f inet_listen +EXPORT_SYMBOL vmlinux 0xac6dd1eb ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xac89d127 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xac9ea1a4 drop_super +EXPORT_SYMBOL vmlinux 0xaca0ef8a datagram_poll +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacae5213 seq_escape +EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy +EXPORT_SYMBOL vmlinux 0xacc1938a blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xacc93228 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xace17be6 seq_release +EXPORT_SYMBOL vmlinux 0xaceaa933 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf87afc freezing_slow_path +EXPORT_SYMBOL vmlinux 0xacffe61b security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad096e2e fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xad4403da mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xad698f77 dqstats +EXPORT_SYMBOL vmlinux 0xad6af6a0 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free +EXPORT_SYMBOL vmlinux 0xad771338 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xad7f25e0 cap_mmap_file +EXPORT_SYMBOL vmlinux 0xad815e92 xen_biovec_phys_mergeable +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad86a80c inet_getname +EXPORT_SYMBOL vmlinux 0xad8eea16 __block_write_begin +EXPORT_SYMBOL vmlinux 0xad934839 posix_lock_file +EXPORT_SYMBOL vmlinux 0xad9dcc02 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0xadebbdef input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list +EXPORT_SYMBOL vmlinux 0xae2050e4 del_gendisk +EXPORT_SYMBOL vmlinux 0xae2be565 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xae756ce0 load_nls_default +EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xae8d1417 serio_reconnect +EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xaeb1afa1 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaecb2dc5 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xaedb4042 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0xaedd57d1 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xaeec1d4c tty_register_driver +EXPORT_SYMBOL vmlinux 0xaf22ed4b keyring_search +EXPORT_SYMBOL vmlinux 0xaf36dd8b pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xaf3771bc __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xaf3d4657 vfs_mknod +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf4b1540 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xaf4ed494 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL vmlinux 0xaf6c2937 inet_ioctl +EXPORT_SYMBOL vmlinux 0xaf6c3c0c generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xaf76e20a tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xaf81d981 dquot_acquire +EXPORT_SYMBOL vmlinux 0xafaa0ecc d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xafb75fa0 follow_up +EXPORT_SYMBOL vmlinux 0xafc10b57 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xafd1510d vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xafef8a54 simple_release_fs +EXPORT_SYMBOL vmlinux 0xaffa7846 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xb00139ec inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xb029c5d3 d_alloc +EXPORT_SYMBOL vmlinux 0xb0334ca1 first_ec +EXPORT_SYMBOL vmlinux 0xb047ae07 bio_init +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb07b3a21 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb0995e11 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a13e18 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0bb366f vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xb0c08e55 kernel_write +EXPORT_SYMBOL vmlinux 0xb0c7791f jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xb0ca6773 param_get_byte +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e4f130 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xb0e4f324 textsearch_destroy +EXPORT_SYMBOL vmlinux 0xb0e5654a netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0xb0fc644d follow_down +EXPORT_SYMBOL vmlinux 0xb109266b tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xb10b6095 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12198be vme_lm_request +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb134cb23 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init +EXPORT_SYMBOL vmlinux 0xb1ac78c4 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0xb1baceea inet_del_offload +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c7a865 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xb1ce3a26 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xb1e5d2fa napi_complete_done +EXPORT_SYMBOL vmlinux 0xb1fd882f max8925_set_bits +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb22e738a pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xb242803c pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xb25e6de9 security_path_mknod +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb268aec2 posix_test_lock +EXPORT_SYMBOL vmlinux 0xb294bef6 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xb2b0d864 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2d5a552 complete +EXPORT_SYMBOL vmlinux 0xb2e71797 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xb2e7dddd blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xb2ea9844 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xb34b00a6 mmc_free_host +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb353b630 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xb37a6696 tty_lock +EXPORT_SYMBOL vmlinux 0xb37dc175 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xb3adea09 put_tty_driver +EXPORT_SYMBOL vmlinux 0xb3d0f926 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d7f957 d_walk +EXPORT_SYMBOL vmlinux 0xb3dca28e generic_getxattr +EXPORT_SYMBOL vmlinux 0xb3e0590d acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0xb3f4f019 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb412c4f8 tcp_prequeue +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4369889 inet_sendpage +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb4531be2 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xb45578b8 memscan +EXPORT_SYMBOL vmlinux 0xb4579ea1 follow_pfn +EXPORT_SYMBOL vmlinux 0xb46792a7 iget_failed +EXPORT_SYMBOL vmlinux 0xb46d754e mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47bb350 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xb47ef9d1 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xb483108f inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xb4893cef __serio_register_port +EXPORT_SYMBOL vmlinux 0xb49f0860 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xb4a926e2 agp_backend_release +EXPORT_SYMBOL vmlinux 0xb4ba6c9f find_get_entry +EXPORT_SYMBOL vmlinux 0xb4c707d9 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xb4cf18d3 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xb4d730b9 set_nlink +EXPORT_SYMBOL vmlinux 0xb4ef5914 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xb51aeb87 sget +EXPORT_SYMBOL vmlinux 0xb5229392 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xb529500e scsi_register_driver +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb565ae8c dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xb56fcf00 dm_put_table_device +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb57801d7 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xb587f654 nonseekable_open +EXPORT_SYMBOL vmlinux 0xb58d786b dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xb5993ec3 tcp_v4_conn_request +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 0xb5f0c279 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xb6099c36 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb668ee25 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb68068cf jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xb684fe81 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6c49607 iterate_fd +EXPORT_SYMBOL vmlinux 0xb6cacaf6 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xb6cf4b72 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xb6e41883 memcmp +EXPORT_SYMBOL vmlinux 0xb6ed1e53 strncpy +EXPORT_SYMBOL vmlinux 0xb6fdb0ab generic_permission +EXPORT_SYMBOL vmlinux 0xb72e447c d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xb7441efc dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb7578c48 page_readlink +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb779f614 prepare_binprm +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7b61da5 acpi_device_hid +EXPORT_SYMBOL vmlinux 0xb7bb2201 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xb7bf844a iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7edcf18 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xb7f55ecc atomic64_add_return_cx8 +EXPORT_SYMBOL vmlinux 0xb7f77a21 blk_recount_segments +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb83666bb cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xb87473d1 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb875a67f mmc_can_erase +EXPORT_SYMBOL vmlinux 0xb884ad7e mmc_of_parse +EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xb88cf73d bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xb893fde4 dev_addr_del +EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xb8c3b043 sock_create_kern +EXPORT_SYMBOL vmlinux 0xb8d43495 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8ec1ab3 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize +EXPORT_SYMBOL vmlinux 0xb90a3d39 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xb92ae91a cdrom_check_events +EXPORT_SYMBOL vmlinux 0xb931ba79 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xb935c65f phy_init_eee +EXPORT_SYMBOL vmlinux 0xb966af2a release_firmware +EXPORT_SYMBOL vmlinux 0xb968cacd xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xb96d0448 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xb977320d vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xb9bf586f kunmap +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xba0c0868 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xba119f88 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xba18e6c5 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0xba209a6a scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba346051 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba52a68a inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xba9a806a sock_no_poll +EXPORT_SYMBOL vmlinux 0xbab65281 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xbab80829 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbacb1ab5 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xbae6af6b __mutex_init +EXPORT_SYMBOL vmlinux 0xbae8d632 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xbaf7973e sock_kfree_s +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb44add1 vme_irq_request +EXPORT_SYMBOL vmlinux 0xbb47f719 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb604ffd security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xbb8730e3 register_console +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba07453 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xbba0b2bc fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt +EXPORT_SYMBOL vmlinux 0xbbf58516 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc36d35b pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xbc3a3f79 redraw_screen +EXPORT_SYMBOL vmlinux 0xbc435770 dump_stack +EXPORT_SYMBOL vmlinux 0xbc539627 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xbc574d2b fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0xbc791186 new_inode +EXPORT_SYMBOL vmlinux 0xbc7c3cf4 blk_register_region +EXPORT_SYMBOL vmlinux 0xbc7c78a7 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xbcbd89ac xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbccfdec9 devm_gpio_free +EXPORT_SYMBOL vmlinux 0xbcdba03c netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xbd36c3a1 user_path_create +EXPORT_SYMBOL vmlinux 0xbd75f941 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdb34022 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xbdc10cf2 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xbdcf5021 unregister_netdev +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe0fc648 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xbe1a5c02 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe4a8262 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xbe4d62be set_pages_wb +EXPORT_SYMBOL vmlinux 0xbe511367 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xbe5501eb generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xbe5ae518 simple_rename +EXPORT_SYMBOL vmlinux 0xbe5cbefa netlink_set_err +EXPORT_SYMBOL vmlinux 0xbe7dc990 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xbe8c37d9 intel_scu_ipc_simple_command +EXPORT_SYMBOL vmlinux 0xbe910ad6 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xbe9751c9 clear_wb_congested +EXPORT_SYMBOL vmlinux 0xbeb2fea0 pcim_iomap +EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu +EXPORT_SYMBOL vmlinux 0xbee8534f jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf0e2ae2 acl_by_type +EXPORT_SYMBOL vmlinux 0xbf150d7b blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xbf18802a netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xbf47155b fb_blank +EXPORT_SYMBOL vmlinux 0xbf486982 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xbf49fecc phy_init_hw +EXPORT_SYMBOL vmlinux 0xbf5364c8 filp_close +EXPORT_SYMBOL vmlinux 0xbf5ec1f1 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xbf7fb184 d_find_any_alias +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8b39e9 isapnp_present +EXPORT_SYMBOL vmlinux 0xbf959847 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa3cd3a __vfs_read +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfc63a57 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xbfca8a4c bdget_disk +EXPORT_SYMBOL vmlinux 0xbfe4bcc3 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff0f2ca set_create_files_as +EXPORT_SYMBOL vmlinux 0xc001dba0 complete_request_key +EXPORT_SYMBOL vmlinux 0xc01eed33 __copy_from_user_ll_nozero +EXPORT_SYMBOL vmlinux 0xc02546e2 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xc037e6bb simple_follow_link +EXPORT_SYMBOL vmlinux 0xc03b7b72 skb_checksum +EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xc063fecf tcp_connect +EXPORT_SYMBOL vmlinux 0xc0640830 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc09af9a4 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0cb12bb page_follow_link_light +EXPORT_SYMBOL vmlinux 0xc0cd3b13 ___ratelimit +EXPORT_SYMBOL vmlinux 0xc0e72f63 mapping_tagged +EXPORT_SYMBOL vmlinux 0xc0e9e5de notify_change +EXPORT_SYMBOL vmlinux 0xc10f5bf8 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc13887fa mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xc13ce417 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xc144f5d7 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xc146c77c inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xc1652f1a sock_no_connect +EXPORT_SYMBOL vmlinux 0xc16f276c netif_device_detach +EXPORT_SYMBOL vmlinux 0xc195cde7 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xc1afbb70 dqget +EXPORT_SYMBOL vmlinux 0xc1c502bf dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1db7db8 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xc1e461fd invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1eb052a abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xc229c913 blkdev_put +EXPORT_SYMBOL vmlinux 0xc23a2c03 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xc240e103 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc24c58ec xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xc24fbdce skb_dequeue +EXPORT_SYMBOL vmlinux 0xc25c0f9f file_ns_capable +EXPORT_SYMBOL vmlinux 0xc25d18cb should_remove_suid +EXPORT_SYMBOL vmlinux 0xc277eda3 phy_print_status +EXPORT_SYMBOL vmlinux 0xc280a525 __copy_from_user_ll +EXPORT_SYMBOL vmlinux 0xc2900ff0 is_bad_inode +EXPORT_SYMBOL vmlinux 0xc2903a22 param_ops_string +EXPORT_SYMBOL vmlinux 0xc296f8c4 pci_map_rom +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2bf4de4 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xc2cc9f9e fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc3254874 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xc361dece i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xc37360ba dev_remove_offload +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3bff524 pci_select_bars +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3d11c2b tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xc3e04a1f vfs_iter_read +EXPORT_SYMBOL vmlinux 0xc3e84dec inet6_bind +EXPORT_SYMBOL vmlinux 0xc3eb48b3 dev_get_stats +EXPORT_SYMBOL vmlinux 0xc3f27757 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xc3f6e838 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xc3fa6a59 memchr +EXPORT_SYMBOL vmlinux 0xc4014db6 free_buffer_head +EXPORT_SYMBOL vmlinux 0xc409c7a8 vfs_readv +EXPORT_SYMBOL vmlinux 0xc418fc35 abx500_register_ops +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc435ed50 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xc4501ac2 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xc45ca0ee inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xc4786fba sget_userns +EXPORT_SYMBOL vmlinux 0xc47dddbc input_event +EXPORT_SYMBOL vmlinux 0xc4928294 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4ae4883 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xc4ef8294 dev_driver_string +EXPORT_SYMBOL vmlinux 0xc4f0038b current_task +EXPORT_SYMBOL vmlinux 0xc50a9c04 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0xc5462085 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc556d9a9 serio_close +EXPORT_SYMBOL vmlinux 0xc57ddce4 key_alloc +EXPORT_SYMBOL vmlinux 0xc5826078 igrab +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59e5aba user_revoke +EXPORT_SYMBOL vmlinux 0xc5a759f4 cdev_alloc +EXPORT_SYMBOL vmlinux 0xc5a79266 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xc5cf836b vm_map_ram +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5ddec09 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xc5f1e782 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xc5f67a56 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc605f770 iput +EXPORT_SYMBOL vmlinux 0xc617b1c9 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xc623eaf7 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xc62c234b scsi_unregister +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc638740e locks_remove_posix +EXPORT_SYMBOL vmlinux 0xc63c23c6 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xc640542f xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xc64a26d9 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc662f813 netpoll_setup +EXPORT_SYMBOL vmlinux 0xc672f6b8 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc674869e sock_init_data +EXPORT_SYMBOL vmlinux 0xc67a09fe intel_gtt_get +EXPORT_SYMBOL vmlinux 0xc6887fce phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xc695f8fc sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xc698bf55 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xc6b23120 intel_scu_ipc_iowrite16 +EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xc6baf866 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xc6c02d09 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d5f799 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xc6f1a0e9 dst_discard_out +EXPORT_SYMBOL vmlinux 0xc6f53e6c cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xc6fc09b9 proc_mkdir +EXPORT_SYMBOL vmlinux 0xc704dedd mdiobus_write +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72cc5a7 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xc744c3fe input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xc74acff0 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xc7557d51 __bforget +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 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a75d7e request_key_async +EXPORT_SYMBOL vmlinux 0xc7adf4d9 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xc7df0f78 vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7f04bcc set_cached_acl +EXPORT_SYMBOL vmlinux 0xc7f84487 simple_fill_super +EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xc801aa65 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xc8044ece ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc8447270 max8925_reg_read +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8532114 kmap_atomic_prot +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc885a051 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8ac72b4 param_set_int +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8ca1ce0 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xc8d0f6b0 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xc8d5cb17 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xc8da6dbc cdrom_release +EXPORT_SYMBOL vmlinux 0xc8fcb44c jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc914dfdc xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xc9199858 mount_bdev +EXPORT_SYMBOL vmlinux 0xc924866c blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xc9296f21 d_drop +EXPORT_SYMBOL vmlinux 0xc92c8bea serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xc92ccd73 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xc932f2d7 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xc94faf70 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xc95901b9 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xc95b7bfc vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc964eb7e dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xc9791e2b tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xc988caae netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xc98a94dc tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xc98d704c dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock +EXPORT_SYMBOL vmlinux 0xc9b51134 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xc9b6b080 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xc9bff952 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xc9e24b44 kill_fasync +EXPORT_SYMBOL vmlinux 0xc9e961a7 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca3d82be scsi_register_interface +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca5bb0b6 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xca670243 __register_binfmt +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcacd2fd9 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xcad98280 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xcadb2ede netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xcadcc8e5 sock_update_memcg +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 0xcb04ead0 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xcb0a08b0 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xcb57cbc8 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb77e08c neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xcbab174f scsi_print_result +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbaee733 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbdc08ad __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbeb9433 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xcc06d753 mdiobus_read +EXPORT_SYMBOL vmlinux 0xcc0e5f1f blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xcc13e6b2 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc3954ca seq_read +EXPORT_SYMBOL vmlinux 0xcc48e9a8 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xcc4d1bfb atomic64_read_cx8 +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5c78c2 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xcc78aac4 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl +EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute +EXPORT_SYMBOL vmlinux 0xcc8ecf7f sk_mc_loop +EXPORT_SYMBOL vmlinux 0xccadfe1b fb_set_cmap +EXPORT_SYMBOL vmlinux 0xccaf30af seq_write +EXPORT_SYMBOL vmlinux 0xccbab284 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc281b5 kfree_put_link +EXPORT_SYMBOL vmlinux 0xccd1024c udp_add_offload +EXPORT_SYMBOL vmlinux 0xccde34bd xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xccff00fb dev_add_offload +EXPORT_SYMBOL vmlinux 0xcd03e6b9 i2c_release_client +EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xcd15ed93 block_commit_write +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd62e080 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0xcd747a8d cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xcd88b37d pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xcd8b8147 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdda5737 generic_setlease +EXPORT_SYMBOL vmlinux 0xce01a95a dquot_disable +EXPORT_SYMBOL vmlinux 0xce11415b eth_platform_get_mac_address +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 0xce563470 set_posix_acl +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce950b29 __brelse +EXPORT_SYMBOL vmlinux 0xce9e41e9 lockref_get +EXPORT_SYMBOL vmlinux 0xcea0de20 netif_napi_add +EXPORT_SYMBOL vmlinux 0xcea1091c blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xced48c15 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xced9b51b scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xceddfb7a ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xcedfc84d lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xcee14b46 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf104a3b blk_execute_rq +EXPORT_SYMBOL vmlinux 0xcf192f5e cfb_fillrect +EXPORT_SYMBOL vmlinux 0xcf6c769b put_io_context +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcf81dc96 bmap +EXPORT_SYMBOL vmlinux 0xcf89a3fb tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xcfa812be __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xcfc2b944 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0xcfc67053 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xcfd841ab free_task +EXPORT_SYMBOL vmlinux 0xcfe05d4d register_kmmio_probe +EXPORT_SYMBOL vmlinux 0xcfe582ca pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xd0353cb6 vme_bus_num +EXPORT_SYMBOL vmlinux 0xd035b8f3 write_cache_pages +EXPORT_SYMBOL vmlinux 0xd0562b22 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd08f94fe call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xd09161f9 tty_port_put +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 0xd0b37107 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xd0b4ad9e tcp_make_synack +EXPORT_SYMBOL vmlinux 0xd0c3c4a0 neigh_destroy +EXPORT_SYMBOL vmlinux 0xd0d27ed7 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xd0d75097 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xd0d8621b strlen +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 0xd1376feb pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info +EXPORT_SYMBOL vmlinux 0xd16e15ee tty_port_destroy +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1d36db2 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd1f7176c do_splice_to +EXPORT_SYMBOL vmlinux 0xd1fbb607 module_refcount +EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace +EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd2142dad setup_arg_pages +EXPORT_SYMBOL vmlinux 0xd229a087 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xd22d0924 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xd23ba32b clk_add_alias +EXPORT_SYMBOL vmlinux 0xd2403d44 blk_queue_max_segment_size +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 0xd263ecbb tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd282a332 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xd28e1ebe key_invalidate +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2bfa5a9 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2dd0f31 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xd2e6a582 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xd2f62313 d_set_d_op +EXPORT_SYMBOL vmlinux 0xd2f8026a dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xd2fc6f95 elevator_alloc +EXPORT_SYMBOL vmlinux 0xd31946bd sock_create +EXPORT_SYMBOL vmlinux 0xd3512c2c sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xd35e7811 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xd37fd090 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xd3aae9a8 lwtunnel_input +EXPORT_SYMBOL vmlinux 0xd3b4f514 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c26e72 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0xd3cbeed9 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xd3e50d2a amd_northbridges +EXPORT_SYMBOL vmlinux 0xd40c84be phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xd424d016 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xd42c1634 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xd43064a3 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xd43160f1 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xd443a00d ip_defrag +EXPORT_SYMBOL vmlinux 0xd4468ac0 __frontswap_store +EXPORT_SYMBOL vmlinux 0xd4544ac1 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xd456858b dm_io +EXPORT_SYMBOL vmlinux 0xd4639f1c seq_release_private +EXPORT_SYMBOL vmlinux 0xd466504a mmc_add_host +EXPORT_SYMBOL vmlinux 0xd48140cd neigh_table_init +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd491addc blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xd498d486 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xd4a71906 nobh_write_begin +EXPORT_SYMBOL vmlinux 0xd4e13d0e ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xd4f471fa agp_put_bridge +EXPORT_SYMBOL vmlinux 0xd4f4f17f xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xd4f9989b phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd5164ea5 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xd535c6e8 icmp_send +EXPORT_SYMBOL vmlinux 0xd53b950a d_find_alias +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd553a0ec add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xd5570584 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0xd55d2d1e nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xd57776fb xfrm_init_state +EXPORT_SYMBOL vmlinux 0xd57ad5c1 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0xd585e70e sock_from_file +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5964c58 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xd5a074ac mmc_start_req +EXPORT_SYMBOL vmlinux 0xd5b98a71 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xd5c7266b qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xd5d119cd __serio_register_driver +EXPORT_SYMBOL vmlinux 0xd5d9309d tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xd5e0be74 fput +EXPORT_SYMBOL vmlinux 0xd5f4de39 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd6156b70 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd61f0c83 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xd623ea52 nf_reinject +EXPORT_SYMBOL vmlinux 0xd627c0e2 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xd62c47dd block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd62d20d5 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xd63cd3da fb_validate_mode +EXPORT_SYMBOL vmlinux 0xd63fd6a5 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd650aa31 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xd6673bb4 flush_old_exec +EXPORT_SYMBOL vmlinux 0xd66ceb64 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68a837d inet_accept +EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6d90d80 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xd6db2e76 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xd6ed4e89 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd70c4227 set_wb_congested +EXPORT_SYMBOL vmlinux 0xd71ab400 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xd72dd4cb pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xd730959d seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xd74307f5 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xd745c45a genphy_read_status +EXPORT_SYMBOL vmlinux 0xd749ba76 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xd75462ed i8042_install_filter +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd76c8c35 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xd76fc3f8 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xd77d0eb5 agp_bridge +EXPORT_SYMBOL vmlinux 0xd78b0c1b pci_get_class +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd7a2a0a6 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xd7bfcf6a mutex_unlock +EXPORT_SYMBOL vmlinux 0xd7d956ea bio_chain +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e4bf06 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7ebfa58 backlight_force_update +EXPORT_SYMBOL vmlinux 0xd80ed697 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xd82419c2 sk_ns_capable +EXPORT_SYMBOL vmlinux 0xd83cdc3d xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xd84988ca blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xd84f9cc6 kernel_connect +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 0xd8d15f3e tcf_em_register +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8f297b7 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd90fcf04 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xd91290c6 scsi_device_get +EXPORT_SYMBOL vmlinux 0xd91ccf18 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xd91ceeeb rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xd92e2dca tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xd93642e2 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd95f83a6 d_invalidate +EXPORT_SYMBOL vmlinux 0xd9629794 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done +EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected +EXPORT_SYMBOL vmlinux 0xd96f6e11 udp_disconnect +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd99899b9 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xd9a74449 open_check_o_direct +EXPORT_SYMBOL vmlinux 0xd9ac7941 __netif_schedule +EXPORT_SYMBOL vmlinux 0xd9b11414 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xd9bdc2c6 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xd9c287df single_open +EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9e66972 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xda08c0d7 pcibios_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xda0b849d pneigh_lookup +EXPORT_SYMBOL vmlinux 0xda1964fa ps2_init +EXPORT_SYMBOL vmlinux 0xda20f4e7 elv_rb_find +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda55561f touch_buffer +EXPORT_SYMBOL vmlinux 0xda59955f blk_get_queue +EXPORT_SYMBOL vmlinux 0xda7128cf flow_cache_fini +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda7d30a9 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xda7e8931 __f_setown +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8fcc85 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xda8fd495 isapnp_write_byte +EXPORT_SYMBOL vmlinux 0xda95fd0b max8998_update_reg +EXPORT_SYMBOL vmlinux 0xda979445 dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0xda9cc5a4 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xdaa37912 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdaae07d7 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xdac1d821 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad2f151 vme_irq_free +EXPORT_SYMBOL vmlinux 0xdad9e0f4 generic_write_checks +EXPORT_SYMBOL vmlinux 0xdaecea00 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xdafbf2a7 fb_pan_display +EXPORT_SYMBOL vmlinux 0xdafcbe90 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xdb13e250 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb215c7f dev_change_flags +EXPORT_SYMBOL vmlinux 0xdb5b0e33 key_put +EXPORT_SYMBOL vmlinux 0xdb5f34f8 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb73c2c4 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb7b3f3c agp_find_bridge +EXPORT_SYMBOL vmlinux 0xdb826ed9 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xdb8c4025 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xdb9a3f48 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xdbbe2aae netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xdbdfbf14 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xdbec48ff scsi_device_resume +EXPORT_SYMBOL vmlinux 0xdc00d7bf vlan_vid_del +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc0e37fe __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xdc110f92 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc23f1c4 flow_cache_init +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc48047a thaw_bdev +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 0xdc5a23b4 sg_miter_next +EXPORT_SYMBOL vmlinux 0xdc5eeb54 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0xdc64e37b vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0xdc6d50d0 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xdc6ded13 d_splice_alias +EXPORT_SYMBOL vmlinux 0xdc880f3c secpath_dup +EXPORT_SYMBOL vmlinux 0xdca287c5 sk_alloc +EXPORT_SYMBOL vmlinux 0xdca7ba8d mmc_get_card +EXPORT_SYMBOL vmlinux 0xdd07d914 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd1783f3 ps2_end_command +EXPORT_SYMBOL vmlinux 0xdd3e4701 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xdd704103 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xdd7ca757 copy_to_iter +EXPORT_SYMBOL vmlinux 0xddb37d02 proc_dointvec +EXPORT_SYMBOL vmlinux 0xddd2fcac sync_filesystem +EXPORT_SYMBOL vmlinux 0xddf1317e __nd_driver_register +EXPORT_SYMBOL vmlinux 0xde16dc16 tboot +EXPORT_SYMBOL vmlinux 0xde2efdf5 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xde3444c9 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xde51cbc4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xde6128a7 alloc_disk_node +EXPORT_SYMBOL vmlinux 0xde628ad1 module_layout +EXPORT_SYMBOL vmlinux 0xde64e84d mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xde806647 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xde91cd08 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde96565a inet_register_protosw +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xde9dedd5 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xdea6409b padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0xdeb33a4a param_set_byte +EXPORT_SYMBOL vmlinux 0xded931f3 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xdef1a71b sg_miter_start +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 0xdf2d4481 generic_file_open +EXPORT_SYMBOL vmlinux 0xdf37c31b vfs_writev +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf44a2db scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xdf45827e ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xdf460e7f cont_write_begin +EXPORT_SYMBOL vmlinux 0xdf4ed896 phy_start +EXPORT_SYMBOL vmlinux 0xdf4fc797 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf60cd2e tty_set_operations +EXPORT_SYMBOL vmlinux 0xdf8422ce scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf950025 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xdf96ab22 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xdfa79d73 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xdfb92abd vfs_unlink +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfca7c1f init_special_inode +EXPORT_SYMBOL vmlinux 0xdfcd999f pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xdfe25da9 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xdfedafa4 lro_receive_skb +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe03d111e dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xe0434015 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe055a4d0 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe079118a md_write_end +EXPORT_SYMBOL vmlinux 0xe082e44a generic_setxattr +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe08f8a9e tcp_read_sock +EXPORT_SYMBOL vmlinux 0xe097b865 netdev_emerg +EXPORT_SYMBOL vmlinux 0xe0a10041 clocksource_change_rating +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 0xe0e1fecb inet_addr_type +EXPORT_SYMBOL vmlinux 0xe0e2c942 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xe0f3624b setattr_copy +EXPORT_SYMBOL vmlinux 0xe0f66e70 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xe0f78887 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xe10d832d jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xe1159651 qdisc_destroy +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe13d2873 phy_device_remove +EXPORT_SYMBOL vmlinux 0xe149a47a key_task_permission +EXPORT_SYMBOL vmlinux 0xe150b7d2 inet_add_offload +EXPORT_SYMBOL vmlinux 0xe1604b24 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe181e81b pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xe1ab8ad5 simple_nosetlease +EXPORT_SYMBOL vmlinux 0xe1b3dcb2 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xe1ca3c28 dm_get_device +EXPORT_SYMBOL vmlinux 0xe1e4f165 udp_prot +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20391cb proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xe22829f6 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xe22fdb46 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe2416331 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xe24481e0 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe2595420 qdisc_list_del +EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xe26116be inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xe29060c7 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xe29d279b gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2aeb784 skb_pull +EXPORT_SYMBOL vmlinux 0xe2c65c55 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xe2d2398c __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d93bb3 param_get_uint +EXPORT_SYMBOL vmlinux 0xe2dbbc1c alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2f6a0cf blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe3088558 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xe3197208 proc_dostring +EXPORT_SYMBOL vmlinux 0xe3198eb4 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe33c2cc8 vfs_fsync +EXPORT_SYMBOL vmlinux 0xe33d558a genphy_update_link +EXPORT_SYMBOL vmlinux 0xe3421ffe phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xe349295d vfs_llseek +EXPORT_SYMBOL vmlinux 0xe354b3d1 get_agp_version +EXPORT_SYMBOL vmlinux 0xe35b9b82 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xe374c09e seq_pad +EXPORT_SYMBOL vmlinux 0xe3863fb6 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3bb6264 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xe3d1b30c load_nls +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3eaa849 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xe3efa2ce mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xe3f9df3e __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xe404282f truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xe435410a dev_mc_flush +EXPORT_SYMBOL vmlinux 0xe445db4a acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe45154f1 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0xe45be787 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xe4693c54 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xe46f2d42 set_device_ro +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe4a62db8 down_write +EXPORT_SYMBOL vmlinux 0xe4bd43bf mmc_put_card +EXPORT_SYMBOL vmlinux 0xe4c0a7f3 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4f0811f elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xe4fed433 __genl_register_family +EXPORT_SYMBOL vmlinux 0xe5014da9 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xe50f904f intel_scu_ipc_ioread16 +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe558356a security_path_truncate +EXPORT_SYMBOL vmlinux 0xe56cf129 kset_unregister +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5a3431f bio_copy_data +EXPORT_SYMBOL vmlinux 0xe5b01972 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xe5b1d5ee lookup_one_len +EXPORT_SYMBOL vmlinux 0xe5b8c7c0 vga_get +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d92dce inet_frags_fini +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5f7c080 tty_kref_put +EXPORT_SYMBOL vmlinux 0xe6043d2f fasync_helper +EXPORT_SYMBOL vmlinux 0xe6162877 down_killable +EXPORT_SYMBOL vmlinux 0xe6259cd5 pipe_unlock +EXPORT_SYMBOL vmlinux 0xe6311026 dev_err +EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xe6607f5e balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xe669a262 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0xe68a99bd pci_disable_device +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6abbca5 kill_anon_super +EXPORT_SYMBOL vmlinux 0xe6ea609b mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe70cb6c3 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe73ed694 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xe76de5cf __module_get +EXPORT_SYMBOL vmlinux 0xe781b5f6 intel_scu_ipc_readv +EXPORT_SYMBOL vmlinux 0xe797acaf fsync_bdev +EXPORT_SYMBOL vmlinux 0xe79cb158 inode_init_owner +EXPORT_SYMBOL vmlinux 0xe79cd50b param_set_short +EXPORT_SYMBOL vmlinux 0xe7a229b2 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7ad445e blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d70a90 input_register_device +EXPORT_SYMBOL vmlinux 0xe7e4f77e i2c_verify_client +EXPORT_SYMBOL vmlinux 0xe805e641 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xe80a098a file_update_time +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe839c707 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xe83bb7c0 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xe857df6f mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0xe860595a __neigh_event_send +EXPORT_SYMBOL vmlinux 0xe87025f0 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer +EXPORT_SYMBOL vmlinux 0xe89dd57d tso_count_descs +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b68849 wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xe8bc3195 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe8f01eec kernel_listen +EXPORT_SYMBOL vmlinux 0xe901ac7d scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91ce3b3 is_nd_btt +EXPORT_SYMBOL vmlinux 0xe931b0f2 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xe94d6464 nf_register_hook +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe95e0d86 dev_get_flags +EXPORT_SYMBOL vmlinux 0xe990e40d bio_reset +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 0xea036bf7 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea169820 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xea1dc89f __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xea2b5d86 lease_modify +EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xea541103 __qdisc_calculate_pkt_len +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 0xeab488cf jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xeadd28d2 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeb05b6a5 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb43d9b9 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xeb44404e con_copy_unimap +EXPORT_SYMBOL vmlinux 0xeb444a79 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xeb49acb5 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb9d09c4 file_remove_privs +EXPORT_SYMBOL vmlinux 0xeba498b7 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xebb5433f blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0xebbccfb0 alloc_file +EXPORT_SYMBOL vmlinux 0xebe8a35c tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xebfcc352 param_set_ullong +EXPORT_SYMBOL vmlinux 0xebff5cf5 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec36a6d6 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xec4a3b12 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec58f42f register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xec70d464 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xec713cc4 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xec9dc5db __skb_checksum +EXPORT_SYMBOL vmlinux 0xecad1da0 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf0e252 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xed1e2aa4 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xed47f8b4 bio_copy_kern +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed59cccd devm_memunmap +EXPORT_SYMBOL vmlinux 0xed7528af blk_init_tags +EXPORT_SYMBOL vmlinux 0xed89357c km_state_notify +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xeda85cf9 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xedb79c0c vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbbe47e iget5_locked +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedcaa57c d_path +EXPORT_SYMBOL vmlinux 0xedde07f7 replace_mount_options +EXPORT_SYMBOL vmlinux 0xede7c9da fb_show_logo +EXPORT_SYMBOL vmlinux 0xedf17427 generic_readlink +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee02983f put_page +EXPORT_SYMBOL vmlinux 0xee0430bf sk_stream_error +EXPORT_SYMBOL vmlinux 0xee0c9409 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee47cf52 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xee5cc71a blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xee6c8614 blk_mq_delay_queue +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 0xeeb2d095 blk_rq_init +EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0xeec599d2 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef065ed9 dev_mc_del +EXPORT_SYMBOL vmlinux 0xef12067a udp_seq_open +EXPORT_SYMBOL vmlinux 0xef225c7c scsi_remove_device +EXPORT_SYMBOL vmlinux 0xef2373ce d_instantiate +EXPORT_SYMBOL vmlinux 0xef255e5b ip_getsockopt +EXPORT_SYMBOL vmlinux 0xef2f2367 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xef483afb set_page_dirty +EXPORT_SYMBOL vmlinux 0xef84515d tc_classify +EXPORT_SYMBOL vmlinux 0xef89117e gnttab_free_pages +EXPORT_SYMBOL vmlinux 0xef96b892 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefc7ffaa scsi_block_requests +EXPORT_SYMBOL vmlinux 0xefc90b31 nvm_end_io +EXPORT_SYMBOL vmlinux 0xefcee959 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefda8d99 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xefdd337b inode_needs_sync +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xefe89858 phy_driver_register +EXPORT_SYMBOL vmlinux 0xeffa1847 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf02967d2 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xf04eb504 kthread_stop +EXPORT_SYMBOL vmlinux 0xf05d3f1c blk_queue_update_dma_pad +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 0xf074c577 param_set_charp +EXPORT_SYMBOL vmlinux 0xf0793d73 input_get_keycode +EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09d4963 md_check_recovery +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0cbcf84 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xf0e37a0d dcb_setapp +EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10a8dcd remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf1367444 param_get_ushort +EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf1734a0f pcim_iounmap +EXPORT_SYMBOL vmlinux 0xf18242e1 atomic64_set_cx8 +EXPORT_SYMBOL vmlinux 0xf187132c freeze_bdev +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19c262e xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xf1a190cb ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xf1b56dd9 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xf1d79dc9 scsi_print_command +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e092c6 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f0a08c serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xf1f41c29 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xf2066229 generic_read_dir +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf2107815 simple_link +EXPORT_SYMBOL vmlinux 0xf21f4449 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xf22e8e83 framebuffer_release +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24d152a __pci_enable_wake +EXPORT_SYMBOL vmlinux 0xf271dbac flush_signals +EXPORT_SYMBOL vmlinux 0xf27cdf20 f_setown +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 0xf2aefc18 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xf2b33ca8 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xf2b61de5 bio_endio +EXPORT_SYMBOL vmlinux 0xf2c19b6d pskb_expand_head +EXPORT_SYMBOL vmlinux 0xf2c1e6cb mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2dd8767 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xf2de3ee8 vfs_whiteout +EXPORT_SYMBOL vmlinux 0xf2e0e44f kill_pid +EXPORT_SYMBOL vmlinux 0xf2e42006 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf3225025 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xf3302a75 __inode_permission +EXPORT_SYMBOL vmlinux 0xf3312bda i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf34348a0 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf378baa2 input_reset_device +EXPORT_SYMBOL vmlinux 0xf37e9897 netif_device_attach +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 0xf3a10305 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xf3be84a3 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xf3c4b05b vme_master_mmap +EXPORT_SYMBOL vmlinux 0xf3e08b77 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f00974 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xf3fe9662 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xf406410f textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf40e5021 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xf412b71c md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xf421c0cc security_path_chmod +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4a10b96 qdisc_list_add +EXPORT_SYMBOL vmlinux 0xf4a4ce07 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4b8ffc7 write_one_page +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4bfaff0 blk_end_request_all +EXPORT_SYMBOL vmlinux 0xf4c37cf3 generic_write_end +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf502d273 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0xf502f4be generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xf514e9dd mpage_writepage +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf5357d43 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xf53b9b5d finish_open +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf540de2a pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xf5429b5b inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xf577ef75 __sock_create +EXPORT_SYMBOL vmlinux 0xf581fa6b devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xf5919001 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xf59f6a85 sock_alloc_send_skb +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 0xf5c5d772 vme_dma_request +EXPORT_SYMBOL vmlinux 0xf5c7dbe7 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xf5dad531 contig_page_data +EXPORT_SYMBOL vmlinux 0xf5df5195 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5eb8d09 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xf5f5ce8b mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0xf5fe6e86 bio_clone_fast +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf63da4dd unregister_cdrom +EXPORT_SYMBOL vmlinux 0xf63e2790 misc_deregister +EXPORT_SYMBOL vmlinux 0xf645aae5 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xf64c6687 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xf6556ba3 __invalidate_device +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf67b7321 pv_cpu_ops +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 0xf69f1e61 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xf6a48b87 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xf6b26950 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6d60aed serio_open +EXPORT_SYMBOL vmlinux 0xf6e29778 netdev_err +EXPORT_SYMBOL vmlinux 0xf6e7d206 sk_capable +EXPORT_SYMBOL vmlinux 0xf6e8df91 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70f2cef ppp_input_error +EXPORT_SYMBOL vmlinux 0xf712cc65 bio_phys_segments +EXPORT_SYMBOL vmlinux 0xf72609ca iov_iter_advance +EXPORT_SYMBOL vmlinux 0xf726d02f atomic64_add_unless_cx8 +EXPORT_SYMBOL vmlinux 0xf745cb16 atomic64_sub_return_cx8 +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf75aa911 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xf764868a udplite_table +EXPORT_SYMBOL vmlinux 0xf788424d register_sysctl +EXPORT_SYMBOL vmlinux 0xf7891779 gen_pool_free +EXPORT_SYMBOL vmlinux 0xf789603b dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xf79b22fc netdev_update_features +EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0xf7bd8a7b inode_set_flags +EXPORT_SYMBOL vmlinux 0xf7ea8419 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xf7f702d6 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xf7f75cd2 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0xf7ffc9ae sk_net_capable +EXPORT_SYMBOL vmlinux 0xf8050fac acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xf807ff3a get_acl +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82822c1 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf866d278 nf_log_register +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf8e36f9d ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8f57ed4 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xf8ffa357 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0xf90b3d6b lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0xf9207d03 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf941247e clear_nlink +EXPORT_SYMBOL vmlinux 0xf9494aae skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xf963f874 neigh_update +EXPORT_SYMBOL vmlinux 0xf968670c udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xf969f916 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xf980d34e pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xf993fb04 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a65d67 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xf9ba24f6 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xf9d3a84a iov_iter_init +EXPORT_SYMBOL vmlinux 0xf9e212c6 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xfa1b1c6a sock_i_ino +EXPORT_SYMBOL vmlinux 0xfa1f7685 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xfa2be8c3 vfs_create +EXPORT_SYMBOL vmlinux 0xfa3f493b bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xfa4eb1aa iterate_mounts +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa527f41 set_binfmt +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa646351 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xfa7aee2b key_unlink +EXPORT_SYMBOL vmlinux 0xfa905da3 md_cluster_mod +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfacf145c input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xfad3e91e devm_clk_get +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb0ebbb5 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0xfb1667d2 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xfb28de91 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xfb2a797c fb_find_mode +EXPORT_SYMBOL vmlinux 0xfb420c84 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xfb448614 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb77ac6a simple_setattr +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfb8f8204 dev_alert +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbacb702 param_get_short +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd71298 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xfbdd7652 fddi_type_trans +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc456331 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xfc562165 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xfc58041a pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xfc5b8b26 mmc_stop_bkops +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 0xfc94a0b8 nf_log_unset +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcbc479d tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfccb0b8c dst_alloc +EXPORT_SYMBOL vmlinux 0xfcdb2e8d security_path_rmdir +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf63aed kmap_atomic +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd16b60d cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd396f72 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xfd3ccdfa blk_end_request +EXPORT_SYMBOL vmlinux 0xfd3d8d83 module_put +EXPORT_SYMBOL vmlinux 0xfd4e27da vme_register_driver +EXPORT_SYMBOL vmlinux 0xfd55b1af fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xfd8ee790 put_cmsg +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfdafd727 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbca1ff param_array_ops +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdc5057a skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xfdc774b9 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xfdc86b83 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfd6c90 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xfe0073cc __dev_get_by_index +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 0xfe43d90c proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xfe533c4a nd_integrity_init +EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfea4f262 block_write_end +EXPORT_SYMBOL vmlinux 0xfea929d3 phy_find_first +EXPORT_SYMBOL vmlinux 0xfeaf0df5 tcp_v4_do_rcv +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 0xfefefba9 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0xff0e1f67 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xff100f28 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff457434 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xff480992 dump_fpu +EXPORT_SYMBOL vmlinux 0xff4fdef0 dquot_transfer +EXPORT_SYMBOL vmlinux 0xff5db25f setup_new_exec +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff8a878b km_state_expired +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff983d2f tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xff9c6c58 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffa19f01 inet_csk_accept +EXPORT_SYMBOL vmlinux 0xffb9245e nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xffbe080f netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xffcb951d i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffe0f52d audit_log_start +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 0x0e09f69f glue_ctr_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x3791b6e9 glue_cbc_decrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x595e714e glue_ecb_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x82937162 glue_cbc_encrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8f02ac4d glue_xts_crypt_128bit_one +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xab3d471d glue_xts_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x28afd262 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x6f068d90 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01b11533 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07c67590 kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ab16bbe kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d54f7b9 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11db55b3 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x125c67e2 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x174a7037 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x175aea24 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x175e40d6 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ac158ab kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ba18279 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c32ba89 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c92e0f2 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cef94a9 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ee01528 kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f152709 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f4476db kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f981d66 kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x202045e0 kvm_debugfs_dir +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 0x21ee9456 kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x22e451b8 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26acc0d1 kvm_mmu_clear_dirty_pt_masked +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28659e7d kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29dc934a kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a37bd18 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2b56c1bb kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c40dfe6 gfn_to_pfn_atomic +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 0x307f4325 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33225797 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33fa63a5 kvm_requeue_exception_e +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 0x3b74265a kvm_arch_unregister_noncoherent_dma +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 0x3e32dd92 kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ea33f7d kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f833e28 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3fa78e36 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ff6fbd2 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x405b599e load_pdptrs +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 0x441c1cde kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a6b43d3 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5073a147 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51d8a570 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52eb8c98 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x537c6d3a kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53900bc7 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b15efbe kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b5d3871 reset_shadow_zero_bits_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c10a5ec kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5dc801a0 x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f49310d kvm_fast_pio_out +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6012fc5d kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x60959e3c kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6162aeeb kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61a83057 kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6278a626 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6312881c cpuid_query_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66040f3b kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67197b6d kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68138a79 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c36091f kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f5676aa kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x71e36fba kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7225e8ca kvm_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72e547dd kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75e13e4c kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x794c588f kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a1eb60b kvm_mmu_sync_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b628e89 kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b8870c9 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c59e22e __tracepoint_kvm_ple_window +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d9bf199 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e9139d9 kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f2b5a07 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80ecfb6b __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x812ec1b9 __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x819322b4 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x845afcba kvm_vcpu_reload_apic_access_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8503ad75 kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87990474 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8afc60df kvm_mmu_unprotect_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d28a68d kvm_set_apic_base +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 0x8f719a89 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f802fdd kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90044322 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91f9c7c5 kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92d713dd __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x951cd436 kvm_emulate_halt +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 0x98ca78d5 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ba64467 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c171a59 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d69521c kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d77766a kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e0a65d0 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e25874c kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9eacad85 handle_mmio_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f692696 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0ec3a0a gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa29cccfa mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3d14d7b kvm_mmu_slot_leaf_clear_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa41a5933 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4ae5439 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6f8be42 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xabb81d63 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xace7ed5b kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf7f97c gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad02b209 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad6020e6 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf022381 kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb3d8b13a kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb7214525 reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb88714e7 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe89dc16 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfd9a8d5 kvm_inject_realmode_interrupt +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 0xc946f56d kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb3de4cc gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcbd8fa0e kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd04c1146 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd079f5d1 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd10a58f7 reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd141b90b kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3319dc0 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5593e0d kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd674266b kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7eb738b __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd86bd50a x86_emulate_instruction +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 0xda7f3c5c kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdbcf6dad kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdbdd541c kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc234b88 kvm_mmu_slot_set_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde9c017c __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0ba0423 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0d70bda kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe10b9716 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe15b7850 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1602d7b kvm_mmu_slot_largepage_remove_write_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2061cc0 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4529b86 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeb6a5094 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec2f3f23 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecf3b42d kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xefa7c6d1 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2c8ee80 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf40c6471 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf528338a kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf80f78fe kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8540a8e kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf89c5260 kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb7aef87 kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd65a21e kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdb61c94 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdc68132 __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff391fe7 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff530858 kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff9da71f kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x3365a16d ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x453f1f1e ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x6ea60797 ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x7ffbaafa __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xadfb12c2 ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xb74564f9 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xc657fb74 ablk_init_common +EXPORT_SYMBOL_GPL crypto/af_alg 0x104d7425 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x3d7c06fd af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x41344be7 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x7f493461 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x929e22fd af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xccc85bbf af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xe1156a3e af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xe7946f9a af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xfa96e31b af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xfb52813f af_alg_release +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xf6925665 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x487e7919 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x81b4b11b async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x133051ec async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x57c2cb1f async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x56fe1ca4 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x8f6cdb66 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xab18690d async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb803f2b5 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9224d959 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9c5111f3 async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x7dfedf05 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 0xe8dc1b68 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 0x8c8712b5 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 0x10d44003 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x74e469c4 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x123938af cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x28cfdc15 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x2f532035 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x35652460 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x73c42464 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x74805242 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x85400711 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xac98406e cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xc61ecc6f cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xe6fe1044 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 0xa8aeecb2 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x62e09b24 shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0x74b28127 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0xa7170c81 mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0xb900ec04 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xbc02f8e2 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xbc8cdba2 shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0xe68f6442 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0xfd32362c shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x068ea2ea crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x68ba9440 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x6da78516 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x7ff55599 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x6897d81f serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xd6c7fc33 twofish_setkey +EXPORT_SYMBOL_GPL crypto/xts 0x8e7e187d xts_crypt +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0x5a5ed7c1 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0x7ddb7721 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 0x0c8aa893 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x17db9fd0 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x268f7ac4 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x27565410 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3220a2a7 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x46f6265a ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x59901cc9 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x690e85c3 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x88288300 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8d235a3a ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x918b9d00 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x981805ca ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9cab6cc8 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaba21976 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb0332708 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb2688f1c ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb2c9a1ff ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc48c8a2a ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc9edb653 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd65bd2db ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdac223e7 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xeae93b89 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfbf836fb ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2acffc41 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x310ffeac ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x48c7b64d ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5a918c4d ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5ddfa8f3 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5f83f9b2 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6088301f ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8a545597 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xaeefbfe6 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb680374f ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc91c0880 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcee83cac ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdcfada37 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xb1756dbe __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 0x2a2dc1de __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4abf055d __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x82f89102 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xbae81eec __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x000d520a __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0610b3df bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0ff22fd9 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x277d3dfa bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2b9e4e43 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x34413d6d bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4acf7afb bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x52d00ac3 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6fa03d34 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x78812c91 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x817a843f bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x923458e6 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa2c0e779 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa662b940 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb1d6f9ea bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb6fd22dc bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf664540 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc123efe3 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd0726da5 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdf75baf4 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe1f4f631 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf3abe9a0 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf7632f29 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf8d571c3 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1670bc8b btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1c8d6e90 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x729ecd02 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa134904f btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd38a83a6 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe276aaed btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x031bf6bf btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2d5163dc btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2e9902e6 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x60b940ae btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x651a6cd1 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7470be92 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7d20c6d5 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8ec36e58 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9c617268 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xec193061 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xec5ad5be btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf6f6de9c btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x32ee5bbb btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4116e87a btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x582bbf4a btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x81c150a9 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8f5b2819 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa6861e09 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb61e5d17 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc4c27c59 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd0883d30 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd19a218c btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf99379db btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x2b8e93fc qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe31b8e32 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3d113ee9 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x9726e7bf h4_recv_buf +EXPORT_SYMBOL_GPL drivers/char/scx200_gpio 0x06890e6e scx200_gpio_ops +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xce5cde03 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x01c688c8 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0d887284 adf_iov_putmsg +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x25ecd57e adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2b138dee adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x344206ae adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x34841b13 adf_service_unregister +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x392b7696 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3d2acbcf 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 0x4e3f3398 adf_update_ring_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5182ca9e adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5e7d0794 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x62fb30b6 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7d42edef adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7ff0d997 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8400e72e adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8b4d727e adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa891b654 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xaa978128 adf_enable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb1ec63b2 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb459fadd adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb8020535 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc0e34833 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcbd097c8 adf_exit_arb +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 0xcc5fdded adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc8f4ae4 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcd0e5864 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcd2c2c5f adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xce9c7cfe adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd01b702c adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd227b256 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd7d1a785 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe80cffbe adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe90e788d adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe9647134 adf_service_register +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf09439ba adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xff7fbc20 adf_disable_vf2pf_interrupts +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x02895ed6 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1830bb50 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1d23c82c dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5f6f198a dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x652b7dcd dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x3fa02528 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x5ceaa0a0 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x88bec692 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x2e5971df vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x373a84d4 vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x531d3083 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x96ff1627 vchan_find_desc +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0x82b59799 amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x14d15e46 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1d553340 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x20029cdc edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x246f312c edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x565ea6d9 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x59618d86 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x67287494 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7891f05e edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7c34a9a4 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x864c9be1 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8a126ba8 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8adb8f74 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8cd0e96a edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa3137426 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xadbab648 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb19df02d edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc71768e7 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xccd89f3a edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd188194d edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe736e495 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfa4b6b13 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfa9b517b edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfea8eb6d 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 0x14ecfafa fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1d6a5c19 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x32bdcdf0 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8e95f357 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd4068031 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xec76d0ac fpga_mgr_firmware_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 0x2392a05b bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xacf99553 bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x10e00ab8 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xa3b16bc6 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0ee34119 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2ea19d27 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4064fee7 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 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x751cb92e ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x89b0b389 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xaa286dbc 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 0x0233182a hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x032fdb2e hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x03c803c9 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b58cc87 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3bac3495 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e7b06a2 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4350a7bb hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x446a7f51 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x462e1a05 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x47711aac hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5b1bb295 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5ce598f0 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x67285cff hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6f902c14 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x708183c2 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x77b76e65 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x930a9883 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9468181b hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9aac8ee2 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa0477820 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa1780c1f hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb81d340c __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc51f564d hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd28244ee hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdb5d1252 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd172740 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xde7a535c hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe2ac0a7e hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe609bc6d hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe6eb43c9 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe9b6d2a6 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xed1fbe32 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xef55eb2c hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf2706b82 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf4f1eb9f hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfab3efb1 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x10e81885 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 0x106bd6ff roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1136f013 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x917a6ead roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9733dba6 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe7968116 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe93f2c92 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x164cd929 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x33f24eda sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4e3525cd sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x72dba696 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8b0cbe67 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x94cc9a9f sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9b2edc94 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa16ca1f6 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xda2a1524 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xa32bb436 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x065544d6 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x07eb27d7 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1486d131 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x27d570a3 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2bbc7a1c hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x31df3e99 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3fb9be75 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x45c93bd3 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x516e29fa hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7ad21b50 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7f523078 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9b9b50d1 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaef90060 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcd6ba4de hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdc7184f3 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe390d6a8 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xea0f5eb2 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0cdbdffd vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1288eb21 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x166a442c vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x18db25bb vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a25cd8a hv_do_hypercall +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1c7583f8 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25a0a3d2 vmbus_cpu_number_to_vp_number +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x282592c3 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31b803f9 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x358fafa5 vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3d992e2d vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x53472f8b vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5d78702c __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x62915673 vmbus_sendpacket_pagebuffer_ctl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7e59ce78 vmbus_get_outgoing_channel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86ff5fa6 hyperv_cs +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9ab53371 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xadfc7783 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb284fc9 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe0112ef2 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xecd29215 vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf320a393 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf711143a vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x79af43e0 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x8ae8d3aa adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xbec298df adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x092d3db7 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x12b7d0eb pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1663a6c5 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x37cc397d pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x393a85f6 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6ae1bba9 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9e9245c4 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xad244b35 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb0443284 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xdae16127 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xdea457ae pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe4848d13 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xeba48e0e pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xeebfb52e pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf2b64031 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3d45f765 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x77ddc23e intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x842bad56 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8ac18ef1 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xccd1eeb5 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd2ffb370 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe34fc819 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3a553d18 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9268ef80 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa5fe053b stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc6ca6003 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe7977326 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x1d3f6cb4 i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x2599432b i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x35233432 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xb650bf7c i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xb85baa12 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xd7efbb57 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x32e404ba i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xbfff3f70 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xdbb02595 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xfbe3ae4c i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x308afef8 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x73ac76c1 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xc3dffd2f bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x036dcff2 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2a23c66d ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4d26ceea ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x598cbdba ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6454c6e4 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x962cebfe ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcf164fb0 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdd32f6cd ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xeb6fb355 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xec41e9f7 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xf48aed27 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x92d923b7 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xb6e04814 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x50644747 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x8e0b23bc bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa7444192 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x36fbc21c adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x457a3109 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x57717ad4 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6e3c0c61 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x75eadc40 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7f59305a adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xaf7be872 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb4f89971 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb9329d71 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcf48aa09 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd016ad80 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe3e4a80c adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2395fc5b devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x277c7f26 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3894858c iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x48c658e3 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4a107a58 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d87789d iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dc592c5 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x54cdcd2e iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6792a119 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x680c2c22 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x788676f5 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79feb807 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7c0d723c iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7c4761c2 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x83b9a239 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x892bdbc8 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8fb5a577 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9726353d iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9d300324 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9e6cbd8f iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa58e73d5 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xab91a486 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbbd48b59 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7e41cae devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb68c905 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9a66c5c iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xecc479f9 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeeac44a0 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeeff9add iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf0ac06e1 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc9e37da iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x85940733 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 0x87227384 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x04baae99 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb5b390cb cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xbf267187 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x33b20858 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x699cfcb0 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xeda01267 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x57906566 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xa0e4f68b cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2fc5a2a5 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x603c240b tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x628bd756 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x686a2162 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4a2affba wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x695462c0 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6d4b6f5f wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6f3ef9b5 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x756a1e61 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa47e03a5 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa4f8e26f wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa64de2b2 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb9c01eff wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xec7cbad3 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xee6c99f1 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf0730979 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x54972802 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6bdbb64f ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x941964d1 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9d19003b ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa9a507c5 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xaac8d313 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbff12138 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc0c962b6 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfd3a1d19 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x23daa85e gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x26b39735 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3e1be078 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x44f56544 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x451d7239 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4784628a gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x50718e34 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x63085c6f gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x660dbac8 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7911b2f6 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x822a90d7 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa50852ef gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc1c2331f gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd27582fa gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe2fc5357 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xeee8a42b gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf28dba81 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1bfbb366 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x46875fa9 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x964108cf led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa65ef982 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc50b43bf led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd50a839e led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x11eef4ec lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2877b9de lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x29d0bb10 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2aec68f9 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x342cf3ea lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x380d71f8 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x494d2f9e lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4ba6e7da lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x589a1537 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe9f7dbd1 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xec465179 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 0x140c0c38 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x502fde99 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x55062cbf mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x780b378e mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7b8f42d2 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7f814baa mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x868e0a14 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb62815b5 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb755d5be __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc56afb6a mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xed6800d4 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xef63c813 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf2e5b676 mcb_bus_add_devices +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 0x27a57a86 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 0x58324a6f dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5a876ee9 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 0x6d02b5b1 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa787a7e1 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 0xc4138fdc dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd3863d1d dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd9fc057a dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfe8290a2 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xecfe2f22 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1296ed43 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x34e74dd1 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x38a10592 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x517ea911 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8952261a dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9a1c6b68 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc9584174 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x1a4ee9c8 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xe9ea608c 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 0x028bd1a0 dm_rh_inc_pending +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 0x4d41ef30 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5a1e27ba dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcb391c3e 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 0xe90515c6 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf068dab1 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/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 0xfaa5ff45 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 0x0180f608 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x130eae8b saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1ec09060 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x584252c2 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x638fc6aa saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x869dab38 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb7e6d7a1 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc28e4360 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd178eeb2 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd22e0b77 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0919eea5 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3ec4ea2c saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3ee94381 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x4c50d587 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5db5d113 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa884354f saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd61f0743 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1526fc09 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x266f81a0 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2fd2c478 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3a84c34b sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3b6fa27a smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3e2f5fa5 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x60923143 smscore_register_client +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 0x7781a3d9 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7b9ca31e smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7bbdca92 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7f0124fc sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7f81d9f8 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99849215 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb90cfebc smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd8c6988a sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xde52be75 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf58c0f43 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xa8fb20a6 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x37db5be0 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x8cb4638a tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x087fa189 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x205c39e2 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x20abba62 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x4ef6e4b7 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x55ba7897 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x6a7852dc media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x7cd374b7 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x938c4fbb media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x9ca0a4b5 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x9d0e241a media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xb547698a __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xc7fad01f media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0xc84527e0 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0xcc896581 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xdde71c8e media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0xe9810e83 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0xf156b44f media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xfe5b8046 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xa3f75a5d cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2b26b116 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2d21cec7 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x316396e9 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3764e938 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x517076eb mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x559b5efc mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6f39d5a4 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7453ce95 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x95bfdf7f mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa7ebe473 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa9b7f07a mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb0f75ef9 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb952ea6d mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbba9bc5d mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc199d380 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc7bc5473 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd1456a3b mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd6d74435 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf4721a1f mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0617a319 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x11373733 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1c513233 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2c16ee04 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x39050c42 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x469f9a82 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x62ceebff saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6c35f752 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x730b3314 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x77b8b81f saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7b425d94 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x930c5f34 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x999ad1cb saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb83b205b saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd55b8da5 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xda9839c5 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe858c3db saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfb73194b saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfb7ca4ab saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1802d075 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3812ba02 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x45088ddd ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x54ec2b6d 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 0x79a16b85 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc15c952a ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe413e0c8 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x399afd01 radio_isa_pnp_remove +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x91bb6485 radio_isa_probe +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0xbdf2cd82 radio_isa_match +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0xddb1b9ca radio_isa_pnp_probe +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0xfad8f093 radio_isa_remove +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xb22233c6 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xfe57c8c6 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x149eb577 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1916814a rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1cdb3cde rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2a25ee4b rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x37c163e3 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x458da96a 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 0x56eaf537 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8fc06c83 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x986875e6 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa4be05dc rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xadfb2f7b rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb356e2b3 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb70f11fe ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb9425563 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb99c1e67 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc2481ecd rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc28901b1 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd4f47584 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf22d98c1 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x37c399e1 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x14dc8b2f microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x47214b86 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x591bd94c r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x842bacf0 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x224566db tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x0c7926ff tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xcda351eb tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xb7f6e920 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xcc5b6844 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xe0e0c1be tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x096e6be0 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x94823abe tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x72c692ad simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x12df855f cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3f3efa72 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4454ea87 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x66e251f3 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x755d34a4 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x838904e6 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8e60ec56 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xac9518ce cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaea7713a cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb3be4258 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb5e7634a cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb63d2d78 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbd69e46f cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc171a097 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc7c0e1e1 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd034a290 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd2265320 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdc5a1400 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe51cfa00 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf6034842 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xe8fd151c mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xcdef2eab mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2daeb6b7 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3769d33a em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3914c7d3 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3c169ff2 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4b9a99a0 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5fe86530 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6f88dd35 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x759e3330 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7a5e70b4 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa062810a em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb0dd3be4 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb58f7b4b em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc3d88424 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd5401fae em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd83f0de2 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdb863623 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf63097b8 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfd502a5b em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2ace1b8c tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x5536b75f tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x66a3e124 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xc78708da 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 0x543bc387 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 0x8f3aad15 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xb08b5ac8 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xb72e7911 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xb86363fe v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe0baddfb 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 0x610bf97a v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xf43fc729 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0ef686d8 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1423fb09 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 0x1b267e2c v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x20456566 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x21f50d06 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x275be8a9 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3dad6f61 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x413e0a6f v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x50996b5c v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5a3a94ab v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x62e05945 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x633e488a v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6cd4a361 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6d5edf82 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x80684dfd v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8ff9640d v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x987982f3 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9dbf2a67 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa3bee5fd v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa5fc304a v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc73f9f2c v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd65fd79b v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd9df3332 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdf1c2d63 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe53088d8 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xef9d8499 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf40eb35a v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x021fd092 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x09f2456b videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x179331d8 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x19812701 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2bb6488b videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2defa4a9 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x31683ca0 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3fb8eb46 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x452fbc4e videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4a027e77 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5003b608 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x55afe428 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5660800a videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x56730e92 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x70454cd0 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7477a974 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7b8415cd videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x93d52efc videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc062e8b1 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xce5be10c videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd53f3b3a __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdb4fe2ed videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe9374c76 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeaefb76a videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xde359162 videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xebd75381 videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xf9ccad78 videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x21176df5 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x48ef22f5 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 0xa989726e videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xe0312d48 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x79e564bd videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x8d6c9821 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x97b8b909 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x038bc505 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x044bfe7b vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x04c3de42 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2384cc55 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x28d4ad2c 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 0x34921c8b vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4025a517 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6b04a08b vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x947fba8f vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x95a00ae5 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x962f4ee5 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa2f8536f vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xac9ea393 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb1c202bd vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc5bc73d7 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc929af2c vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xeec454d0 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf396f82c vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x0e0679b8 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x6ba092eb 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 0x314e42fd vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x4e2dbfaf 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 0x41eff79a vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x023706ca vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0c02a966 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x128faae2 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x142c7fe3 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x197dd53e vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1ca21601 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x212108fd vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x300b3f26 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x304189e8 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3ca21d3e vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x44342bee vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4a142165 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4cbcfa2c vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4f58f962 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x54af449b vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x56ada1c7 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x57b5d62c vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x63bcb819 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x767390a8 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x774dacf6 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x79c1a580 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7f06d24b vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x80883ed4 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x906e34ad vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xadc9c3b8 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbe272162 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc79e7dfd vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcf2c3ff7 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdf0975b2 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe00fc5d0 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xea155ab9 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfd42c832 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0xbae0bade vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0319b499 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x085c1c98 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0aaccdcb v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11ce91f4 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x121f7e6f v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1da20174 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f10a676 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20440886 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x212fff59 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x246569b1 v4l2_event_queue_fh +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 0x322adf65 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x36ce8058 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3740e82b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x42073954 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47996ddd v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55e19bd2 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a62af77 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x660dd35e v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ef4d306 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a85f5d7 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x898cc748 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8ef4acf7 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x90ae1014 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaeedb6ed v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb05b8630 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb404a4c5 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb4118b5d v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd7d2d682 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdd28c122 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xec612fc7 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd42a2b4 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5e7178b4 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x8a43f1d3 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xb6f7f250 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1804177a da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3e25c7a4 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x87efb673 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9d0a4010 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb7d966dc da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcc9fb221 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe0476b32 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x2b58faaf intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x411a9835 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x7f00d04d intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xe7647ac0 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xf6de7e5a intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0bf08f44 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x126a6bf5 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1bbca493 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x38a62d71 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa5569fbf kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xac32e616 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xafc85d5b kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb45818ca kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x434845f9 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x6ac779db lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xe6f2fbf5 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x21caa8ce lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3368212b lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x79cff8f5 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb4ec8c45 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb71affe9 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xbdb8f283 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd877f0ee lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x105f713f lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x23af6ba7 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa529b7f0 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x019d2568 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1392d000 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1a95e23d mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x53289b20 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x80840c11 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9560f747 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1fc8eb5d pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3d59cda5 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x56a3f747 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7150a24b pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x83a8c192 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x881eab80 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa7a667b0 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbdf0f63e pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc616793b pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd0a6531c pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xeb7f2dc4 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x14d83c43 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x1cf5437b pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x59a5c51e pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6bc5e52c pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe755812f pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf7f58fe7 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xfbcc123f 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 0x0d1ed4ef rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x253fc0f6 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x38350f4f rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3912f747 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3b0c013a rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4ac707ab rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x56227106 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x58384e9e rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x66fe9803 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6b229b97 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x75af14b2 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x813748c7 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x83764b5b rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x979dff06 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9b64f2dc rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9ddea7c1 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa686fd3e rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xaf11f1c6 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbcedf3de rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbf8bf7ce rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc45ff61c rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc59c2c0d rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe277bff9 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xff5d572b rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x07d5c8b4 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x44d18704 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x496b392e rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x67eab0ff rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x737d42d3 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x88a72d3a rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa537b7bb rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa6f9f5f4 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xcfc716dc rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xdb5d4b96 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe28278c4 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf0a2b582 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf5d3d18d rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0794ca69 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0f1f434f si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1caec2cb si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1cfa4b95 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24f867f2 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x286ffff7 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2bd02b54 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3b27e074 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x409fcbd6 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4f23d9c9 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5141ed5d si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x559e82c1 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5be2049f si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x67b298dc si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f45d7ed si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7455228e si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7c0ed4d6 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8457aeca si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x85b4623a si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x88b1c528 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8d88ef99 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8d924dcb si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9339040f si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9d33a9c9 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9fd7968e si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa483a514 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaff0b8c1 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb80633f4 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xba35b6c6 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbef55cc2 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc7289b69 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd3d47c92 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf2a4247c si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf6cf7ec6 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x209eda1d sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x21d92632 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x843519ab sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x85a5c07b sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8d7e9f6e sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x664f05ce am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc5e06263 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc74885c2 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xf58393c6 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x2117aa3c tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x4d1d7a92 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xa80d014c tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xc3ef95e6 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x81b9c5e4 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x369e4364 bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x40845d8c bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x7ec89eb9 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xb69dd949 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x84eb15ad cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x96c17c7a cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xbcc623b5 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe94aab87 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 0x148aad1b enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x266af239 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x682773f0 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7e46cd22 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x88009f1a enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa11923b9 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa4207a25 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb7e10c94 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4a69264d lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5b2d136c lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x941e5205 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa985c1ec lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd2909fb6 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe898c371 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xea5a66b0 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf5ebd26f lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x05260ece mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x055abff8 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x22a9e74a mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x26af86ef mei_cldev_register_event_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x44c92019 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x510bd534 __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5a1e1eef mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x72b01be9 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x737be8cf mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x77f9124e mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x79d132c9 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x80882d66 mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8dedfd45 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9c0eadaf mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc2d72a27 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc42e8250 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcbaabba9 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcc1cb613 mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcfab6a77 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xda27124f mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe66a9359 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe6f0261a mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe8c91a30 mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xefefa314 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf164ca78 mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf96aeda3 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xff598d31 mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/pti 0x19f09b98 pti_release_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x23bde487 pti_request_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x52a78e81 pti_writedata +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x81df6421 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xcd6e377b st_register +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x08e2adf9 vmci_qpair_dequev +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 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 0xb6ccce0d vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb813d878 vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xccbb53d1 vmci_doorbell_notify +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcf5ed7ef vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdac94780 vmci_qpair_get_consume_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe7e7c107 vmci_doorbell_destroy +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2ba07795 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x553f6230 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x66fd9d92 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7686ff42 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x976ecf29 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa2401367 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb72e983d sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc57236e7 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd955cd63 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd95ec0a2 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe452e91a sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe529555b sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf6897dcb sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfbedde6b sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x107d3491 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x13f8a8b8 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2093dd6d sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5187c807 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x770fe044 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8587cfdc sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb0e8de2b sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd96530a1 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe80fc8b1 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x5a89440c cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x65a061e4 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xa797619a cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x27f5bcf4 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xaa5e38a2 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd40c7372 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xd4dab07f cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x2cd06d12 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x60994f9b cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x696eb074 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x06a5aa27 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0a2d4ec8 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c98b579 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0cd271ff __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e5d9df6 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b31f137 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f730fcb mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x252fb4d0 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x273403b0 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ca8f041 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3301403d mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3ff3b95d mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x431f52ce mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x477256a4 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x49b249d9 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x522fc10e mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52afb112 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5cbda0fd register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x63714067 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x677da65f __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7018e976 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x715ec981 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7383b611 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7c6a3b28 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x84c8a296 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x929301b6 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9632a43a mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x97f9964f mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9eeb534c mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9fa45116 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa0b50ed mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xba479399 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc14b9d95 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc228af5f mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd14e866f mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd3ac94ae mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd68dc651 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd92879e3 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe5429526 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe8a723fc mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf72128cc mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfb768e27 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x42bbe67a deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x4404df51 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb288c454 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc9062393 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe2e78e6a mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x41e230b8 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x4ee67096 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xa0991b4e sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x6d5ae19b onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xbba212b6 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x1c87ae26 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1bd20fe0 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x21441104 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x374a73c6 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3da4cfa1 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x557a7ef4 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x67d0365a ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7975ee1c ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9fb2614c ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa25992a6 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbb627ea3 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcba35c8b ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xde13b649 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xeeb3fc0e ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfd2cf8f3 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x1b27b94d arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xbf9ce9e9 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1e39e30e unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x20a57b6c c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5abf4c91 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x971b0573 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9becb544 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xcc9504e5 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0e769e32 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x117bf198 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1d8ceefa can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x205b7360 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x21d8bc4a alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2a034424 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6075439b alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6767a8c9 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x71593174 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x88572704 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8e75ff7b can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9f4024e2 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb0f62cea safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb8eccdf6 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc3e01361 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcc35b34d alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcf4c11f5 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xde4da06d alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x32469562 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5712c414 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa2fc768b free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xbc2847f4 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3529aa9a free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x8396c147 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa966bc68 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe69f1b01 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0142f518 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01cb3337 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05269f64 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06e36bdb mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07401b18 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08d026c1 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09416daf mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09a1471a mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b9b6c80 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d73d898 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0de38295 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x107fa10e mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10ce989d mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11672f33 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1328e02f mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x159a7a35 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x170cd10c mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x174dff30 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a2e5fcd mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1eee6f74 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2001a2cf mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20b9b0bb mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x211bc30e mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21558345 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23a9e8a2 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x281492e3 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2858e996 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b46142d mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cbf4916 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d3778a9 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f40a157 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x306469a8 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30c0d863 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x328a093c mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32918d6e mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36a87514 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3769b998 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x392b5115 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ace7967 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b81d1f8 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4063d1e0 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40bdabb7 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40fac8c6 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x429defd3 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b9b5239 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bdbf30d mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fe096c2 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x564739ca mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56f36265 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5779c5cd mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58357fd7 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59c378aa mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d19f072 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60a94106 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62cb98ff mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x644603b3 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69160d56 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a828975 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6da7820f mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6db8e23d mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x703afbf8 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70a37da3 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73f5c49a mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x775291f9 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e1a30ff mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7eab72cb mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8155718f mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81c617cc mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81f6c854 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x820a4428 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84759ba9 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x863af9be mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8710bdf2 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x876f85d3 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c1042dd mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c6dd252 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c81f247 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d46a189 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dbb05cd mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90cc1340 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9168cb5b mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95073715 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x951f7875 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x973818aa mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99253774 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f87c24d __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa35fc486 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3735a9c mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa53870e9 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5e075ab mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7370bed mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa7d4814 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab871408 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac0467cd mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad163c9c mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf9f7676 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb27fdca6 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb299c0c6 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb45032c3 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9d92d01 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf376a6b mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf49d1a5 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc294b720 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7237d50 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8517e4c mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcff45b77 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd02f2a85 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5c99cd7 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd65ad81e mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7314ba7 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb5e5376 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbab858d mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbde439c mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde0903e9 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde1fa031 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0cbd6ee mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1e901ce mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5d49ec5 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6967e5e mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7079db8 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe85b1175 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa990f5a mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc24057c mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfce21172 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x019979a7 mlx5_query_hca_vport_pkey +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 0x09acb0a4 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09d0e0a6 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b96b1c2 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12ae0327 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x132ca498 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17f403f9 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1923cb1c mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x195a8307 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x281de447 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f6f7412 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b53babc mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41067b05 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41419b43 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46d86de1 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47d04afd mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47fb7910 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bbc5679 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e8d3ac5 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56320fbd mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61123503 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x643adc5e mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x755c69a5 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75664317 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75b400eb mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78d8d17f mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d5ac458 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99251c88 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c93b592 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa401761a mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa53a3bda mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa7a4306 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac0de35a mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac548b21 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc069e280 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2dfaa06 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd3252e5 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf6f8ad4 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd291d5e5 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd573e443 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1063bb8 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6a2366f mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe992fdf3 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeae22efa mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe636af6 mlx5_modify_nic_vport_promisc +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 0xf44dedab devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x096364e5 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x47a1448d stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x50bf2881 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa451ec93 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x18d21159 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2bfa5768 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbb8c8785 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf147672a stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x08179017 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0b7b25d0 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x17d45db8 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3ef7c53d cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5388a084 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5f50d98d cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x64da05a6 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x66b27134 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x731ccc2d cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x86a5cd3a cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa64ca536 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xaccc20d3 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbd86f7b8 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xcdd23752 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdad01ead cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/geneve 0x276964f7 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0xca80eeea geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x064533e6 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8c8ca7e5 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x9c96cfa8 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe9cde5cd macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x934b47ec macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1312b5f8 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1eb05c95 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x472e926a bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4dd05de6 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4fdf63e1 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5d2bff3b bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x73430d5f bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7a432fe1 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9321adef bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb9b5f6d1 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x56ba5eac usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x737fd362 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd83770be usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe0d54c5b usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x22ecb88f cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4e6e9e98 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x552ed736 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5a88dbbf cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5b84e326 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x853e536e cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x94cac8fb cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb464fc4b cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe4b0c4fd cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8b041dbc generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa032919c rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa1b65ad8 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbcaa4239 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbe08e274 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd0763579 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0024edbd usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x03d9f735 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0eaa230a usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x11ce1b63 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1284bdf1 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x193c75e9 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x241b4184 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x26662d63 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2907aa6a usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x29581eea usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4047cdb6 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x49f362d3 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4f334cbf usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x532ec438 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x56703ffc usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x615dc0b5 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x63deb98b usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x678a3f67 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x74bc4110 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x80a230f9 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x880c9313 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x95d9ceb2 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa2389065 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaee84fc3 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xafbd0ef8 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb16ab810 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb5195941 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbbfc1c84 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc1a5dcef usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe08110f8 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfabf9124 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfbc247b9 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x1166c1ba vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x1e7df0e8 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x07ca6e6d i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x24ea0019 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4e667ba0 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x70fe5beb i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x775af9d7 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7e06c111 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x89c17d01 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x93dd70ae i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9bcb88aa i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9dcbe92d i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb128aba7 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbf5d4d4e i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc9ee5a8a i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdb5fa284 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdc2c3322 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe04dd19e i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x17a8bced cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x46b6611b cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xa05715a4 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xca9af5a4 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x4ea5545c libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x239870c1 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x6db101ee _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xae4fd433 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xd7d2fbe2 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xdf59c53a il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0404f199 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0a3511c6 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1bc62ef2 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x220411d6 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x372d8de7 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3eaffc5d iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x421994f7 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4d93e301 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x512a2413 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x551dca19 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x575b48b5 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5ee5ab54 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x609c23b5 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7bde11ab iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7cc6d1f6 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7f2a7de6 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x848a6b59 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x87cc7b1f iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa1c7ce02 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa60dce0f iwl_opmode_register +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 0xba235540 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc32cbdaf iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd17a61b3 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdc5aa21c iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe8e21a06 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf17e8540 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf2401031 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x02ef12a6 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x077d06cd lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x15c49ba3 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1a343a37 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x21b8488a lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2549a7d5 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3842308b lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4760d6e6 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x61ee6c38 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7d00e561 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7ddd8cab lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbab6c9c2 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc03fedaf __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc4b231b9 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xccf88cdc lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdbe6c377 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x05a13a5f lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x0f69ddef lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x1cd93449 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2ccc3e0a lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x8390f372 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xb8cd220b lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc7c63df2 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 0xca52190e lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x072523fe mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0889a38a mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x17efd71e mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1928ed7a mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1a708ca8 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 0x34144443 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x37959085 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x689bf84b mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6c8282fb mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6ca5d70c mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x76305034 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7ec4e4a2 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xac284947 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb4e3106b mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc7761252 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdadf3923 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xde1bfc1a mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe37b79d9 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf40fb295 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x024a0ac6 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x32acd5e6 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6112eeef p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x9e24977b p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x9f15c39f p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xae269670 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xb64ee3a4 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xb94a87f4 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xe72dfa77 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x02f33caa dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x24e60d96 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x374b3e90 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6799a97d dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x08de27ff rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1008b197 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x19c42bd2 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x24ca8bd4 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x276e484b rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2bf4552c rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3a1061f8 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x459f667b rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4d98ada2 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x52feb377 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x53d5be54 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x626fdcb4 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x65282321 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x65f39c59 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 0x7462d7f4 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7b930563 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x84ebc922 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x889d3876 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x94930d70 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x98fa8b47 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9a983856 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa054803e 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 0xc2e97fea rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc86b12cd rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd3ac650a rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xedd651df rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf974d969 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2686f9f7 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x376bdd5e rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x49ab87c3 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x70f644e7 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a4b45f8 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7b857f34 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7c297f38 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ed2a447 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fb962a5 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x82941d30 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x861b3235 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad3561e9 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb7a8a01 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc6a7bdc9 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9998562 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcfaf6262 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed4f0379 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfbfdddc4 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd471951 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x776b35a5 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x95c24813 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd301491f 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 0xe421fa0a rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x00edb9ec rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x082ff5b8 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0933c652 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0b24a371 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x22f02c4d rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x39ae3733 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3f729b94 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x46e868d0 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x47d4aeae rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x50006ac6 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x50286208 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x534a2d18 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x596be8ad rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x60595658 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6dfe9d4a rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x703512fc rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x744318aa rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x76a98538 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7b6cf250 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7e8b9884 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7f089a94 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x91ba8ed9 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x934c40eb rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x95511fe1 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x969131f7 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9a8105cb rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa5f37489 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaa0efb83 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xae84b28a rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xafd6dd06 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb44ce3af rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbdb491cd rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc0b598c3 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd1b6b62b rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd9034919 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd9db002e rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe7682daf rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xec77ae46 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x03a1ce78 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x10738851 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2f617d15 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x33d2a95e rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4bef4e57 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x652d0aa7 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x8310af04 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb7c5081e rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbbcfe560 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc454de2c rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xceffa602 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xdb8aaf9c rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf767a6b9 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x00565d1e rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x03f51a22 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0633b182 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0cb74c41 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2e69a463 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x39072958 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x39e44d0c rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3f20c770 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x43299cea rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x491d278d rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4a891027 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4e03748a rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x57974d7b rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5e2dd7b7 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5f41cf2b rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x61c2c095 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6e92055e rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x76cd0d14 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x77500830 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x81916327 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8226f095 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x85b4d21d rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8d211cb4 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8d52671f rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x94bb02d4 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9978789d rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9c2e2f10 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa1525603 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb72590f6 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xba15cdbe rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbef64734 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc076c690 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc72a329c rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcfbd73bb rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xda16bd03 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe1d5572f rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe33b4ca0 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe526b80b rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe9fbb135 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xeac14dd6 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xee52ff15 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xefe308f6 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf0930052 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf268b6e1 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf755dab5 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfd1dd3c4 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x368d05a2 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x4679b1ed rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xa223c6c9 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe19c338a rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xfb191a6d rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x0ffe5c3f rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x9e4ff1da rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xb875b56f rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xd884279f rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0e0376f1 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1b9265fd rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2cdf75bd rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3a229f76 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4234b12a rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x668c3138 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x66902f73 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x687250e4 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x851ae014 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x99f70445 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa1b1bf9e rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb60e51b1 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc0556178 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd2662556 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf097a8e4 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf2f76126 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x2051e524 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x46b8c1c7 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x51b5ef29 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1257bb51 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x16a375d8 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ca69497 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x242dfe3c wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2bd9b31f wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x31b291d2 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x329f9f50 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x34d98cbe wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3ccb76aa wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d21f87a 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 0x56080be1 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5fa229d8 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x63474396 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x70ecdc41 wl1271_acx_pm_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 0x79b5541c wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x79f29454 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7c639a52 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x844aa85c wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86ea8451 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x87c75980 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8fb4c50d wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x90a132d7 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x95120b83 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9b38d771 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9e5bd22b wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa00eb32b wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa327fdd2 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaebcb359 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb271a037 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb30d5dc8 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc163d439 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc189ebe7 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc47539e9 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc933884a wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcf796bd3 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd4410a47 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd47dd510 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdd1d3cba wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe985e600 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xecefbc41 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf2346a42 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf2cacea5 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf5f25c74 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf9b82e9b wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x76b65bb3 mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xb0219cf8 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xfe6ee318 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1ad80114 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x907eec8c nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd6eee05f nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xec4f3c7a nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0fb52ea8 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x24290579 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x25721cd8 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x399f34ef st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa0849ff5 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa3f1da13 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbfd37c40 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcac8b230 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 0x3ff63e28 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x606ff391 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7fce69c9 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 0x34324489 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3bd65c7b 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 0x5a98d8aa 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 0xc6d67902 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc88c8e71 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xdf6b8726 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x1f0f6144 intel_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x21c161d2 intel_pinctrl_resume +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x2ec3cb8a intel_pinctrl_suspend +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xdb45ec0b intel_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x5aa36f9a asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x6767b55f 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 0x25fe41d8 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xbf9379b3 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xe11c4aeb pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x40ee9d44 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 0x2f427698 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x6f415190 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc9bf56cb mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3b990778 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x43b7bddb wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4b1906f9 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x606dfcf1 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8d7183f1 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc0938137 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x40c0a551 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00c7af5e cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00db6184 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04d940fc cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a5297b5 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1b07bddf cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x202211f0 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2646b554 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x27d99738 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x296c48a3 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x311e429a cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3170b182 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x36f2f9e1 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39bdb861 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f8c8d0e cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41fdceb7 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4210edaf cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4c746fc9 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4eeff052 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55e31f5c cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x591fb206 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x66366a83 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x78c83095 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7960f50b cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8179031a cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x860bf9b3 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x880a0fd6 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8e1f09a9 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9aafa7af cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9db6f35e cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa384d329 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa5b6a3be cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa7e86ba5 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac9a3ffc cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaeb4f3d0 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb01d6ca9 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb389ff27 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc4ccaf79 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xca57dd95 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcb232b73 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb875b2d cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdee97df9 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe2e365d1 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5b192e1 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe7cd25f8 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf28bd00b cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfc85da89 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x009eeaa1 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x15245309 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2270e7da fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x376896bc __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x465d3a63 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7124e4eb fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x75ef4a3d fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8e6d4069 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9ae4a22b fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa445be79 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xab376a37 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbb1fb1e4 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc88ebc22 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfbdf87fe fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfef8a718 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xffcde425 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x39fcbcb3 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3cd27bad iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb4a96cd2 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd27ea436 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd3b5fd73 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xdd92fe9c iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0038b1db iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x006baf91 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ae86ac9 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0f239495 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0fb204f8 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1348e946 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1802b64f iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1bb3bfdf iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c40dd12 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1e755760 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2e00ebc2 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2e59c389 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x30eefde7 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5046468e iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x785cf7b9 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x79ee470e iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ded513a iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x864299f2 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8db076df iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8fbb34e8 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9b6cc921 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa8379160 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab8ae596 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb7513646 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc01bcdc9 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd12adb09 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd28415f3 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdba28f1f iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf4d75ef __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0de9820 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe5d2bc85 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe786d5f0 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe7e48e7b iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xebabedf0 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf18aad72 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf295ced0 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf52c3b56 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc194051 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd28150e iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd7e54e4 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe463ff7 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfea6607d iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x215afdbf iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2189c9f7 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3093779a iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x33d253a9 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3e70f78e iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x540d38d1 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5887159f iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5df3f9e6 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x684103f0 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9e3e32d6 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbb0fb566 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbca2de9f iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc474e037 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd63651db iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xef4689ba iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf5df685a iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfb5d1dab iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x03b2c984 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0a80c304 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x170dff23 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x299ae8ca sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3408d59a sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x340ab690 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x51d7fff3 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52780aeb sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6bb7a337 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x867dab9b sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x912db4a2 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xab168482 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb4fe277d sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb8990fef sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbe9b7c03 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xce1ed098 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd1afe2f3 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd1ed237b sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd56c4e81 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xda47fa38 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe28b832f sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf25f4baf sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf4678034 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf649dafe sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x046158b8 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b2a6a0c iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d2b3fd8 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2fbdc456 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2fd9b657 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2fe88337 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39cbce47 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d24b6b6 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x476f5e53 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4809d610 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x492e9807 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a8e3015 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5aea50c3 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5fec868c iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6dc4e6ff iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71dffda9 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x77cdb652 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79bee490 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7acc24ad iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x819b0470 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b934bdf iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e2b985e iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb192afd0 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb660a27b iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb73e063f iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9d33f09 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 0xc61fbce3 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8f190d8 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd32e9f39 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd37ee674 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde5dc7a5 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe01b23e3 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2340c37 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2ffe7b0 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe5f95469 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee86b960 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf12c2071 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf1df3550 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf3aeb38e iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4acb030 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3479927a sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x745bc666 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa74e053f sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xba73aa1a sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x85853f60 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 0x5911f798 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x8200557d srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb5aa2eb7 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xecd596f8 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee2eada8 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfdea9207 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x00fc9e9f ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x26691404 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2a269f64 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2b6f4c0c ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x3e2d1625 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x79ddeb1b ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd3b062b8 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x0c448f1e ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x18e32adc ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1e999325 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5275afb8 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x722e196f ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8092bafd ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x96112919 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x075a6fbb spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6d097271 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x828d2128 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa45cc8fd spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf141fe3d spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x6c26d095 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x83cc936e dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x850dc07c dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe9a3f29f dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x049d3965 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x073cfe4e spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0df72a6d spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0f85bc89 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x171b0299 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x20e105a9 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x222f8210 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x59d0edf8 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6477d8f4 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6881933c spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6f1e4f93 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7257962c spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8b44472a spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa72396eb spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbd0cb8a5 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xde64d9d9 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdf3543b5 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfe5edb6a spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x26ea1818 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x04e41874 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0c87d60e comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cebb2cf comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0ee006ab comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x14730fc0 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x194303cf comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2e125bdc comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3033e746 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x40278b36 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x43c9a697 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x44430246 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x446f9288 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x45245f19 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4b9c6eb3 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5f33ec3f comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x60f04f7e comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x61f0d39f comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6ff7fa50 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x77c1e547 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8575774a comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x96724373 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x985f21b0 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9c862c8d comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa3509c0e comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa3dd306a comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb190dda3 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb2248f5d comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb7385652 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xce57dab2 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd06b59c2 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd118bd14 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd13750a3 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd762a84a comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf0233628 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf050e41c comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1ba2bc13 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x3a022bad comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x7da9db49 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x830f4542 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x91992b6e comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb91ec1ca comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xca8ad75f comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfb944a7b comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x03ab1ef2 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x074a2151 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x0d146c4f comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x4f8bd16d comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x51799a69 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x8cf1542d comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xebbc6a56 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x28e25cd3 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x44e12b9e comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x6ce3ba22 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xa6dafe04 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xb55a0c12 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xed3fa090 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 0x7eeb8dce addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x2dc15268 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x40ae0d79 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x52d55f0e amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0bed2c19 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2fe560b5 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x32df282a comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3ac1681e comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x570567ac comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x728da61d comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9cf3a5c4 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9d5f3d7f comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa665f44c comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb2329b68 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb8e6ddd5 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd649220b comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfe64bc49 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x53f3b03e subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xd7aa4091 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xddb8f90c 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 0xe21e6a51 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x9f8b0ff8 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x075567e6 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1e543fa0 mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x303314a4 mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x33a26c69 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x405eb52b mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x57ed425a mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x58d6c162 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5b6f1c9f mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x65e1f9ad mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7a129e2e mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7b041531 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x86ad97c8 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x881dd7eb mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x899d952d mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xac4824ca mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc8070af9 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd12254a1 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd2484b37 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdcaf00e3 mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xefb950d8 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf8fd2305 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x059ed176 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x7c211ba8 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x1b1b0900 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x51ca0d51 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x80dc2110 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xd753496b labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xdfea81f5 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2c4a89e9 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x35fa1f41 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6cb483a7 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa8763180 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb9ac343b ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xcafe7cc7 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd65c77cb ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd9f96359 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x1091c47e ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x2a47763e ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x386eabca ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x8e67d694 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xeff27839 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xf6721aaf ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x20aee8c5 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x53a971c9 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x552dde24 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x57cdc760 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x8b29e6b9 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xbd8bc9c8 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xfb113ba0 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xf51601a4 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0a969532 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4dcd1299 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5491a5ad most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x603507c7 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x761c09ac most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x86bc0fb5 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa07cc5c1 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb87c82b6 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc4541cce most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xcdf9d50c most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe88bc8d5 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf4382b1b most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ccd0e30 spk_var_store +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 0x34743e79 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 0x5f95b720 spk_do_catch_up +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 0x90dd09ce spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa4fad9e8 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xabfd2816 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb9cea4e2 synth_remove +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 0xe0fb0e3a synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7aeb796 spk_synth_is_alive_nop +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 0xfc0c2f75 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0xe768b739 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0xf302e0b0 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x6eaf06ca intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xacbc2f5e intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xb5dae596 intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xca27c3d8 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 0x3d7b1d07 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xc1ef4d87 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xc85f4f88 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x6920ed73 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xa0dd4a0c usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x8f07c597 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd1ef3cda ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1068dc69 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2a691016 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2fd75032 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6f615fc9 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb81b8a57 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc507d210 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x01c99629 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x19b32a1c gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x395c5b6d gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3c4c6214 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4f894432 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5ecd39fa gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5ef3b112 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6e3c6ff3 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x73d9563b gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8ebc114a gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xba74b054 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbfcb84e3 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc84c1fa1 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd5be75b3 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfcc85d47 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4b4deade gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x56daec90 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 0x3c92d588 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x5c425ead ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c1abc8f 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 0x1ddadeb1 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x24254163 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 0x36fe880e fsg_show_removable +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 0x3ceef30d fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x43746e9c 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 0x7792c525 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 0x84f5afea fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8c8d57d7 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 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 0xa53f747d 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 0xaf04bfb5 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb0f4258a fsg_common_set_cdev +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 0xc5d8c9d9 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd27d299a fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd5f2430b 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 0xf634a8ed fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x07bc6555 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x169f37e1 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x19cfb1f1 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1ca5d4ea rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2a2a6bdd rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x411fc092 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x43a474cf rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x46dde4b9 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x788ca23d rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7e02b5cf rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb67fc134 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbd098b79 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc71bed43 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc953f2ee rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd643b21f rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x09a8157f usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x17386c83 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x17eeba01 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2c3a3a28 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2fc4b9d7 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x345c3d62 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4c63ee2b usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5363a491 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x539c5ec2 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5813aaf0 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x58b0cb0a usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5c21dbe0 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x63625172 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x71a2f5a4 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x744b6ab9 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7b932615 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7c73707a usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7f0b1a20 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94063fbc usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9f3314d1 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaa34fe09 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbc1791af usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbcd208f3 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc8eeb7f7 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcd6d98fe usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd078facc usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe2d2a9a5 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xea1ee7d4 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xecff9d21 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xef183951 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 0x0ab1e665 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2139963e usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x30654daf usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3994a041 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x484b5d76 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x945d7253 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 0xa8dc7815 usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb72e412c usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3b7ad23 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcee9f900 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd36cc746 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd49644ce usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe6c102a9 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x8be1df58 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xb74bb4cd ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1a0eb593 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x317e1bc1 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3bd9d239 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x78253162 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x78473240 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8a53c2f2 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x98132c3a ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb18eecd5 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xed5108af 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 0xe21eefc1 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xc530754d isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x709ab5b9 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0f5005ee usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1647f310 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1a73c66d usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1b2b5c22 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1f0fb2f0 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3f018c32 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x46caf956 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4a7ff803 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4df33e49 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5660e0d4 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5d7db871 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x738b28d6 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaa16fa10 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xad7a1a04 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb19ba393 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb5385593 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbed7349e usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcd6e1aae usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd64ba011 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdc95f05e usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe1f52b33 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x055f4583 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0b3dc03b usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0cc1e337 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2bdb912a usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x301daaf3 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3221f429 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x37ce00a7 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3dfb51e6 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3ef4b7f2 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x48dbaf2a usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x534c93e6 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x57aa72fc usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5afb72ee usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x63592dd4 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x672b8498 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x70fa7879 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7ec50a31 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x95bee3fa usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb66c1916 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc0dafc56 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc8c1fcc6 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe8698d7f usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf3275ef8 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfbc2592e usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0622de33 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x172a0b37 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2a64112f usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2fdf83b1 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4d332012 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x58bee253 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5974572f usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x607ebd72 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7d499d59 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbbd8b485 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbbfb4367 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd940aadb usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x19ea0436 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x4663d560 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x4bb84334 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x582d41d1 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 0xeb6479b3 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf9fb3050 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xfd2bbaaa rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1e2b3d1b wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x29bc955b wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5b32e942 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5e1ff7b4 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x66b65302 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8d594c6c wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb5ac7b74 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc6e34bf0 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xcfa33015 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdd0920c8 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdd41c486 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe120b540 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe46e169e wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xff449da2 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x16fac2c8 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x450f44c4 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xfcd8e544 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x1cb04134 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x595df14c umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x96942219 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xac32610d umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb79e279c __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc8dc3f5a umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xd946b9d3 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf8cb03f3 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x034d10a0 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x13e2d850 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x18fa1c75 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1b6cba3d __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1d452992 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x33edb335 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x399aa92e uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3a422d3e uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x52e95682 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x52f3e6ca uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x54112ef4 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x58884a90 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x652ee3f7 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x65a340b5 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6b44ef20 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7740dc5e uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7c7a44cd uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7d80bcd0 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dc5b71b uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7deab8df uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8689ece3 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8a970ec3 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8cc78202 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x935eb33c uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa0febc13 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa179f18b uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xaaef7fd2 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb147f746 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb1bee826 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb44ab7b8 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb68e53ee uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbc950faf uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc2990031 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcfc25f6b uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd367325d uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe86fdda9 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf6946c5b uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x56134780 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x304932f2 vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x55f331f2 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x676a4732 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x81bf3901 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 0xaffafe8a 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 0xe4780b59 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xec57f556 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x46e33720 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xf0ca29b2 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x05c17b13 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0b3966b9 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1600357c vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2b27bbd9 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3af3fb5c vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x432c6f53 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb96f77 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57551bf3 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5d3dcb23 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5f3f7c34 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x68ff3b23 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6fbc1f4e vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x75132171 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8368c72a vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8dff25c1 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9982f4de vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9e09f1ce vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa772666e vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb2d13c01 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb8cc9262 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcfef9765 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd2f2c733 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd659099a vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6c9564c vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdc293f58 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdec21dd6 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe43daf07 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xee98cd97 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeeaa0795 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe20a972 vhost_poll_queue +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 0x0c49f621 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1ac0ec31 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3679f079 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa3e7d742 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xabda79b8 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xaf680f1f ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf13cf2a2 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x156f5f00 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x445a7cfe auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x615b718e auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x75bff341 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8af9bd27 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9b7aa2d4 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9d4fdedf auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa6813672 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xc9282cf7 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe698e9d4 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xbe72b91e fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x165ffac8 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xca8daa65 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc7f44512 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xef9927ef 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 0xc1129f73 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 0x02f7c7ed w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x22120819 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x33522353 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3d42b431 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x45db8b83 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5338e7a3 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x88d29cf3 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x89224020 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xaa317211 w1_touch_block +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xf2537533 xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x65fb65e8 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 0xca13b3c3 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xd034fcc4 dlm_posix_unlock +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 0x1c53a437 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x65e415d7 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8357af2f nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa84ea529 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xaca9cd48 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd153fe0e lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xde69b00f lockd_down +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0542fe18 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06e4a82e nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a736e3c nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a828035 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f2c454e nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fde5e4f nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x116924df nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11f8e48b nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11fc7396 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x125411ee nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x211adeb2 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24eba746 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29faeff1 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32cd3acd nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x374dcd10 nfs_access_add_cache +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 0x3fb2826a nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4259e577 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x445cc51a nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x449e3128 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45bf8c1d nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48e3689a nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x495441b2 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49dceacd nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b722a7a nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e53f69c nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x507682f9 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x514f9b2c nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51846c22 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51a3d50f nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x529b6f8a nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53c32d10 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5535a6f2 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57325a67 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a1aff1c nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b535bf5 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e63e38f nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5eed3866 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f1002d6 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60358aa3 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x609d5acf nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62209c88 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62634951 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63fdc926 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66d859d2 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c1de80b nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c642865 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c8f07ff nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d19acad nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e2aef15 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7000469a nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x700665d7 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x715015a5 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71575018 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72b620b9 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7353b348 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x745085ed nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75d35220 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c86bef7 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81d8e5f4 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8270e49e nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84893283 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84e1028c nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x880ff79d nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8810dda0 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8970b51d nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a3389f8 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b8f2893 nfs_fs_mount_common +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 0x92156dfb nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9286b691 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93694936 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98317801 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bfdb59f nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa18c3b23 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2ec2a18 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8c7d97e nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8c902a4 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9ffe330 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa73602 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadcbdfb1 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaffafe86 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1c3f60b nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5d96f28 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb81dec71 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8857460 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9a2da9e nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbce5cdbc nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd92ba2e nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe246a5d nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4cd65bb get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc50755aa nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7bc36ca nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb130320 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce4b9890 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce867229 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xced83891 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfcec347 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd13f3833 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd28bcdb4 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd66ded97 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7b827f0 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd903bb18 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb5b228f nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdce8c72c nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd046394 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0480ab5 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1848a0d nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3f6eca9 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe68d02f7 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8221353 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8b21250 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec28e200 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee55e76e nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0471bc7 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3488db8 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3e1b5df nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf499babc nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf60eb023 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7b643ce nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb14b7cf nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb699186 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb9757cd nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd502d23 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff302b56 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x2d6e3e74 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x012d194c pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x018b5477 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x095f3dc7 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09d7d857 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bcf34d7 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c94b793 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1bcfdc8d pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20c185ba pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26750f36 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2de613ad pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2eb4c5ae nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30071540 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30d9ce1d nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x387fd496 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x431709e0 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b96115a pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4bc1ef18 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e2688d8 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x578280bf nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x584b00b9 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a9e51ba pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b0ac841 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62163f89 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x670383a2 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67b08b17 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68e28fd9 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ab42e95 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f36f976 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x717fe032 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a118bd8 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a333652 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84b479b5 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x862d336b pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ad68a11 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c19caa3 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91e6e041 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96f19c56 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ffca4bc nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0a8bddc nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa238c816 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaad6e1a3 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6b4ca16 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb82d31f nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd761170 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe9175e1 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc33bfa59 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4d30c07 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7322c5d nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca673e1b nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcba84bef pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd01f08c3 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd42ac347 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdcf185fb pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xddd4ac52 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe2b4141b nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7906c2d nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9e195a6 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee135ce3 pnfs_ld_read_done +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 0x434c8f83 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x937687c0 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9557f271 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x40ac63b3 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x785ddf90 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0d49a99d 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 0x4f11444a o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9961f54d o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9c09bd7e 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 0xa3fe3b1a 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 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd53ea84b 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 0xeaf9cd5d o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1f5fa245 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x21633d32 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2ea1a005 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x394f3c95 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbe04d342 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd5ebc23e dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0de04ca6 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x43d65c58 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd61d2eb1 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x2b284236 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 0x86651593 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0x97659632 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x47c27d25 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xa9114922 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 0x3c57840b lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x8c401061 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x4b6c1f42 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x64e3be89 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x6aa71c71 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xc3ed6116 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xc9546f0f garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xf95f8af1 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x16770a88 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x2de702f0 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x3600e244 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x56e81ea8 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x9eec52bb mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xf56a2e5c mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x82b29ddd stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xf8711c00 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x6dc30296 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x78e33a86 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 0x9dadd465 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 0x0522a2a7 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x12dd4fce l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2fe055ed l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x433e5723 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4eb4fe12 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbf47b169 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf6ddf736 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf7d38d43 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x26b809f9 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2dd98b1e br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x362c089a br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6ba38b5d br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x86d1e337 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8af9b46c br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9e3d4b13 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf5156626 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x6919635b nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xfde267ce nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1c3c5b15 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1e519076 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x216fa346 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23672cd0 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x245b40a3 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x256d8d4e dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2848d265 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3a78b036 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x48d70aef dccp_destroy_sock +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 0x50c0827a dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d303e14 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6a5247e0 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x78a27629 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7db22faa 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 0x982e3713 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x994825fd dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9abe177a dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9c108d4e dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa5ac81c5 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa7d49ab1 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb162256b dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7c4a9db dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xba772296 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc17e672c dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc270ec44 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc7909a6a dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcb187c83 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd3190028 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda6908f8 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe07f9ee4 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3cc7016 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf7c525e0 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x423e9c66 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x72e09d33 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x91b504cc dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb320b69c dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe4ae3a60 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfb0a7f1d dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x0080b7d5 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87672248 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9ea76564 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc716f5f3 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ipv4/gre 0x12947e25 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xf9cb948b gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x150dfaff inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5192f13d inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x53b43467 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x65e52991 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7452ec27 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9bf17faa inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xba98a74d gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0c60f650 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1aba37af __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x21e75212 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x22c8cc47 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x24ce0de5 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x25421de9 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3d964ad1 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4348c9c2 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x574486e5 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x734919d6 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x861e4460 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa4291f81 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa6a9c3a5 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcad2f052 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd3d7b717 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x6f12857c arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x92268c73 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 0x4c92c222 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x2617055b nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x8c6bacec nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xe30ba1d1 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xe574a539 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xf79f7144 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 0xe2da347e 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 0x2e0cfd8f nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x75a50d06 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x914ae539 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9f05025e nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe0180846 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x368ef780 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2b81118f tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7e567da4 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8693b7b9 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcfc6cf77 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfd664eb4 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1c0773c7 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4030042f udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x447d86cd udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7e56aa2b udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0e456b96 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1ae2a4f2 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1ae7a1b5 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4ac0233a ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x594efa18 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6e0e5e20 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfbdffea7 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x189ac317 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x397de4aa udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x39c4a6cf 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 0xb3773b7c nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xec09df74 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x09ba7494 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1af55d7a nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x6184698f nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xd713d197 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xe59bd851 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xef1afeba 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 0xbe57f605 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x244d1544 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5482e8cf nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x69b985ce nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb286d28e nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xba55c268 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xaa9ea90e nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x00909d3d l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x02ddd5a0 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x04221813 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x12118539 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3d00b9c9 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x42fa7c4b l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x47547b45 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5cbea529 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7ce047a6 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9c17af22 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb51c45b5 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb6ba9395 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc5eb895d l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd59cd2e l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xce4d7c39 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe606a436 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x9a8609ef l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x05000cd9 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0570f84e ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x23e09b69 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2436f683 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2995f8c7 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x33afd28d ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7d85db37 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8ea67951 ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xac18320c ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb52c0ad1 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcfb0303e ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd656c6a8 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd69c73b6 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe0091442 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe53bfad7 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebdf8959 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf2b1745b ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfe8e04f3 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x061825ec mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc5978791 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xcd7dfde9 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf5b12a79 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x09925693 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0c101bed ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0e25a907 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22796fd8 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 0x58f91154 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x668f4956 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6f6eed8d 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 0x80793c8c ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x82d98965 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8508d83a ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9079a8ae ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x981499c6 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x98a84e49 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9c7494c0 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 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd8ce640c ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xebe16a49 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x16b36371 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x2160d995 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4d1ea576 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xfae876c5 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00c465a8 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x039679dc nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04792a6b nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04c54404 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07b388d6 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c6a0387 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0dc82a5f nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12a3a632 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x155cd2c6 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1596f263 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x167abad2 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18d33599 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x221f6edc nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22227830 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28432c53 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a313cfb nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fabe0fb nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3da7b0bd 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 0x406358ff nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4457c76e nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46e0d409 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47969acb seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a63d8f3 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5147e18c nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5792d6ed nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fec1e75 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60cacb77 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 0x63ab0d3c nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63e0f2dd nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65a92422 nf_conntrack_free +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 0x6c9b7390 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x741a9db6 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74b80707 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74d6b68b 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 0x8637de1d nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x874359d8 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b17a48e __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9100f552 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x938d4320 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98841a67 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a4e6226 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c4df7f2 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa33697d0 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa806f8cc nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9ff9b60 nf_ct_expect_register_notifier +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 0xb2f6c3ff nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb40094ea nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb48d3bb8 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb54f74cb nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb76517be __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb784edd8 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8bf96b1 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba92d91d nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdd7b055 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc591d252 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7de817a nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc1e80a7 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcffcfd2c nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0c1a84f nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1e9ddcd nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd207a7c0 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5c26ece nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd61eef4b nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd70396b8 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd921d676 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba41576 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc8ff295 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xddcb2b9a nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe05b31e9 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe627de9c __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe69d2521 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xead27b0e nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee7a2b02 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2b8ffdb nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf53c2fb2 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5c4c84f nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe3b42ad nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfecd20f2 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xec4f5d0c nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xc5e39f88 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x68473566 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0337adcd nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x244406d9 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3cbaa932 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x64057b3f set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x72469e8e nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7b68ae71 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x84f86f64 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x94489972 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa855b82f nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbe956f0c nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x4e9155eb nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x9a98b5ee nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb3058a62 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf35d5126 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xfacff5a4 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x0b4a3c3b nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x67458600 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0e1d43e2 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3513e8b8 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6cf73d39 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x835e81bf ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9ac803be ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xab2543d9 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd162d641 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xb8841520 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x920c0cdc nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x09c9f8db nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x4c0934a2 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x630faf71 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xb3f38a36 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x086a1aad 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 0x25cec810 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x51f24d88 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x56bb9dcd nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x577cf054 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb146757b nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xba2e588e nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf3b75000 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfdae1b0b nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x0eda8b8a nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x38900482 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x034347ea synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x677bd9c0 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x189a9480 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x22e53119 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x370801a4 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x44773f47 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x45cb94c9 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x46ee4b5c nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x55e7b83f nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x611c08f9 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x692ee6ca nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8a13a009 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa82c3170 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xad4e1f02 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb711ccfa nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc0670184 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe53b13ca nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeeb83862 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xef8d7229 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x05254cb3 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4ad70540 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x856992ba nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8aee9588 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x97fa6d89 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x98f96bde nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa1cb6fef nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x88d4ce13 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbd846fc1 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf600e60b nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xb47249d3 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x212ba2c4 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xf8f94bef nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xff7b22ee nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x06ce633f nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x2e3f8c33 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x66d4cd53 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7b0b3f8e nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x98a7fbfa nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xaf4f50b5 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x7fb55cfb nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x91c040a8 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xe3e96b1b nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x482292b0 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xbf48c7b3 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 0x0032931e xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2f19bdf8 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4af07dae xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x635424a4 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x85e02318 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x93f7b44d xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa577331e xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad572fff xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcdc3f26c xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdd2e5be4 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe5d1f06e xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xef42f9ea xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfd33771e xt_check_match +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 0x0c909f99 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1f485e33 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x4fe22d26 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x0dbe39f3 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x3f4471bf nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7b394839 nci_uart_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x28ba5894 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2dc65d5e ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x31ae022f ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x70f16f69 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7eb1287a ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7f1e58cb ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa34e2457 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb26cf3da ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf6d6b109 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x17ee29b0 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2d074581 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x32fe1b14 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x36afad5e rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x3b916b48 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x3ba60718 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x4e54abe6 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x5a67f7d2 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7e99f4b4 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x94181c3d rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xa095f591 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xa62a3f66 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xb2d3eb8c rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xb5775408 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xb6072f69 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xd5b26fff rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xd94ebcb3 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xd963f0ed rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xe0eb9de0 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xe2c10359 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xe419e9b7 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xfcf0e675 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xfe612d86 rds_conn_create +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x84978d00 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x9d442e3c 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 0x14553e58 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x25bfb513 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x63de1e5c 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 0x001f9ca0 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0112cede sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x052a71ee xdr_decode_array2 +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 0x075be7be xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x076e2cd0 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09a20b53 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfa2267 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10e9857f xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13d72198 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14681303 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x158c25f9 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x168aed79 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17e94f30 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1879cf34 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b0828d1 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b37d855 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f1cf2fd put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f3ddfd7 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20192b24 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20eee521 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2125b57d rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21ec27fd rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21ef6d36 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21fb9ef4 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x227c7d45 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x231e2cb1 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23289442 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23acddab rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23b46372 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2482847d svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24b77f99 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27f0ab48 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28258867 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c76a415 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cc7f172 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d2a010a svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2db1548f rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dc9ffb2 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e3556a5 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e3d51c6 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e4cc184 svc_authenticate +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 0x2f9ebb85 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fbc0f0a sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30d37ad3 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x331346dc xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33f1b1ed rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34dd12b4 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39974d2d rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39bd953e rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c46572e rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f58b9da auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41dabdb8 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42b00fbe rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42cbf99e svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x480ba510 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bb57f19 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ede0fb8 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50816b99 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50f5f9a4 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52b72619 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53637853 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54ecbca6 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55c50a43 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57380375 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5820dc99 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x589fe348 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58c2144a sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a8f7f37 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b3b3860 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c693210 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eaa30fe xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ef1a761 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f30b0d6 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f9c74c0 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61006d2e xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64293335 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64373714 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66473758 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c3b641e svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cdc28f2 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dcd6fa8 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e60e422 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fd7e9e7 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bd0272 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72a5a776 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73bed1ee rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x741147ea xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7549cf43 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x764532a0 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x766b9757 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x797dbdbe rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ab65d0d xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c98f6e9 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dfa52be rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ecae13a svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83a839b4 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84828c11 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84d5e051 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x851de170 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8820d173 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b10c8be xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8baadde9 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c51c6a2 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8caceeb1 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ccad86a rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d88c057 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e381ca3 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ec54107 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x903a1c3f svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90c85359 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91d7450a sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95b6d9b9 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9765c60d rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x977d0dfc xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x985f5a3f svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98822902 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b31f26e rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b842008 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c912a1d rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cd2e129 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e053e34 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4841584 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7c7d912 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa87edeab svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaebfe47 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaecf27b rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabb1f986 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabbaf1f8 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad41df17 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad6d5fcd rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae5116e7 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaff4bea3 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb01c5281 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2287ac3 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb28949f2 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3c97801 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb574111b rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5cec125 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb83f991e xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb914a0dd rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ff9cb3 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba17f326 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba5cc725 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba6375fb rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbafdab4f xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb5133a7 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb553391 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe7532e6 rpc_malloc +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 0xc2318a73 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc28404ae svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3c08b30 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5897535 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5f05c99 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6739a20 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc680867e sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbd617f6 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd12507c xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce0e83d6 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce6034ce svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1191336 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14c8eb9 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2c3eea0 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd300f9d7 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3eefe1e svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4a8c82b rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7c84c55 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd98fe4e7 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9c4b068 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc696594 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc9af800 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd7741fd rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0576da1 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe06b7152 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0c5d114 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3f78040 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe65f0dea rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe68c56bd xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8140871 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe81d71ce xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe907c646 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec452209 xdr_read_pages +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 0xeeaf4e4b svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef81c8e9 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0718d42 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf153d4ec xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2041034 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5f50ed6 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf63f3592 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf674a7c0 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf86b5f8b xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9665b87 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa85938f auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb266952 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe5f5a6b rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfeacd64c rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff28a63e rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff77de5d rpc_task_reset_client +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x154c9253 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1c420301 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1f83c0d9 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x31b4f8f6 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x516f2f00 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6b1948fb vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x82d326bc vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8e53d301 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9f0f9199 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb543b1d4 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdbdb903f vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdc67a890 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfe9e33b1 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/wimax/wimax 0x10cc068d wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1d1a73d6 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x64ca1dcf wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x84f800d9 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8e931bb0 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x95a0a847 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa9fb16ee wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb0cd7e1b wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb5cb55a1 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0xbbed417f wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc3866b50 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd2f18152 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe9e4f1c0 wimax_dev_add +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x09882df4 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0f2c6c8b cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1315b031 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4c59fa79 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x66854120 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x693ec8ce cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x70d72cac cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7c089697 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7ecdb9b9 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x97b8e6ff cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc8d0480f cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdf671c9b cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xffb4fc93 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 0x16e75b90 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x442ef723 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xcd3f8524 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfb5a968b ipcomp_init_state +EXPORT_SYMBOL_GPL sound/ac97_bus 0x8c85d6f7 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x690a421b __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x9154ce94 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd 0x0f584b12 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x8a4315a5 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x8e6a10ad snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x97f1eda2 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xcb9abf78 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xd93930b9 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xf2a1f002 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x11d76818 snd_compress_deregister +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x42779b92 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xae9a92f9 snd_compress_register +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0528e177 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0b84ed50 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x15f7a1dc _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x38495033 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4b92998f snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7ac5b5c1 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa5a35cee snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbc99f530 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf0746b18 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0d3c2e13 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x197e6bea snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3b666547 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4f33c467 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7db4d3d2 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9633dc52 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xab00ce3f snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbda1bcc8 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe35fdd59 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe6d74493 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf9391a8c snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x21773e6d amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3840c1d3 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa6624ddf amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xafc5a0b9 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc77e6450 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe041b8ca amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf66d35dc amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x04f7ea98 snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x06254cc3 snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x09cb3145 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0b2c2e5a snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1116c6e3 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1562aebc snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1668136a snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x27b5fb64 snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3466d254 snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x46ca30e8 snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4ad818b8 snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5626e51c snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x58937896 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5bd62acf snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x612691b4 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6569c0cc snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x67152a2d snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6ebaa4e3 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x798bae7c snd_hdac_ext_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7c4d0cf3 snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fe90188 snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x869606f9 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x89f32b0c snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa360e8e2 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xab0f9668 snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc4912629 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc74a4624 snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc892e1e9 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcafbacaf snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd8341349 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdf193d03 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf007af94 snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06bfea6e snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0735ab69 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x09ac841c snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0af476af snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b71d88c snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0edb8df4 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13647354 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16d9247f snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x206ced5e snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2812f1da snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b66bd0b snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e05a99a snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e0e8792 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3123b66f snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31849693 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x335d73b9 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x365b8b07 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ca6bc27 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ee2004b snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4793901e snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4915d78d snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a9b7065 snd_hdac_i915_init_bpo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x509fead0 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51315c13 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x530ff338 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5bc4d747 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60455887 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63216ca4 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x636c6490 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a4e4697 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c8cf3e5 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6facf611 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6fd88c92 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x712667ef snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72dc0d5c snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73187668 snd_hdac_i915_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x76d067a1 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79c7631d snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7deeba51 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e5a254a snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fb5118c snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fb5153f snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x826f4285 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x834528d9 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88d885bb hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e0c961d snd_hdac_get_display_clk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90edceb6 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94657dba snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e2d916a snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f1109a5 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa0230851 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1b421b6 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa540e1b3 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7ad55bc snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8a755c5 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xacb92c74 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xace59f16 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaece240b snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1d075aa snd_hdac_i915_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2cb9446 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb50a3dfe snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbbf25e43 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf6254af snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc04ba60f snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xccfd5c78 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce3f66e3 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd46a38e5 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd67edbec snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd93c32a1 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9765f00 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 0xde98a3d8 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf1e92e9 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe343a364 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8660422 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed2b3cb7 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xedc80e4c snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc8d9fe3 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xffcab73d snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x20886654 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9018089b snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa143794c snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa1da18d8 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe5164bd9 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf1c37116 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00a3cb58 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00f016dd snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0653e924 azx_get_pos_lpib +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 0x0a75831d __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d149533 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e4e6a61 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f0c027e snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f1fb442 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x109573e5 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14470e63 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14b20998 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x179abaf8 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19d56958 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ba2ad2a snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d3f9d73 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fd84c3f snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x216f335e snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x227ae9ae snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x227cc4fe snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2286151e snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2728c61d snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2999425b azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2edd98ca snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fbe5143 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31f2d614 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34a4f196 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35944531 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38343b5d snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3841c4cb azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3848765b snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3bbfb60c snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3da45061 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4064327d snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x420b49ba snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x425dc276 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4406e6ce snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x463c89ea snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x491c2419 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x518550fc snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52724ff8 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x553297de snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56082a97 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59b08065 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5aa18ee2 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b59f8a5 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ece14b7 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65a3a225 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65aed854 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69d7d262 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6af6edfe snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b9de5a5 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d14c85d azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d4c7600 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fbef0a4 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7757aad2 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77d18eb9 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b0424b1 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7dbdeb79 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e8d1d13 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ea65681 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81916108 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85d4b252 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86908676 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x876cdeb8 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8855cf41 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a36ac98 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ae985e9 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e91d705 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x918b812a snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x942f9b7a snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x972e715e azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x996c00be snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9987df8f hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b563f73 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d5686e5 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ea73678 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9efdd52a azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f2d2706 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa17ee418 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3d61745 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9f7bdb8 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xabb48a5e snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae8ba482 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb10baf63 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2c434c7 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2dd119b snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4b0b23d snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba573c2b snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb56b29f snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcbb848c snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe431595 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfa33008 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc095ce05 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc09b90f0 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1923cab _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3b86853 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc44d8d3c snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc53277b2 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5af547a snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0401fe3 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd200c0f3 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2c23a11 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4d740f6 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd53dec27 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdac381cd snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbc1e13e snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc2524eb snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe064c6e1 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe09e6b6b snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0f7324c snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe45db327 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6791659 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6e751ac snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe76f2aec snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe87e9da7 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb2a3d55 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeef3a5dd __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefed32fb snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0759379 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf575913a snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf744fce5 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9ffb8a1 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc2f9d6f snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdc2cd12 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x02e98261 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0937e6d9 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0a4c938d snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0d0d6b3c snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x12c9debc snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1f132552 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2586a01f snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2d534c6e snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3d6841fd snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x41960ed7 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4fa88e70 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5c081058 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6c566aed snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7bda0f84 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x83cc7237 snd_hda_gen_line_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 0x89885905 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9c6619b5 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9dd90ece snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa0f78051 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa5072cde snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xed0c0b2e snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x113ecd99 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x3244c76c 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 0x6eb3648f cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xd31ae160 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x13569dc4 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x5bb4c86b cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x919ef165 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xe2992f1c es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xf5ff5f2e es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xeb1c6d01 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6ea0d788 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x845e47c5 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x93594207 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xc4630491 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 0x5694a1dc rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x05599c54 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x18d01f50 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x55292452 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x32005910 rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x587d031e rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x9c60156b rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xb0697a4d rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x04bd9d79 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x238928e0 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x639aa6c1 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9aab0ed2 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xed11a9da sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xb6155655 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sn95031 0x2cb48ea6 sn95031_jack_detection +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x7b66c3ed ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x81f6a9c9 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x12585709 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x86808d11 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x9133847a ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2d289c9c wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x8c7b4401 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xc07d56d6 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xcb9dbdfc wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xa4eefdbb wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x8d752792 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x2c02523f fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xb75433e5 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 0x10bcd313 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x5b8f1de3 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x161e3c9a sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x4414d981 sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x6bd9aecb 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 0xca370a06 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xfe57cb68 sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x09021b0b sst_byt_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x162bd7a5 sst_byt_dsp_wait_for_ready +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x4513de99 sst_byt_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x7be9be56 sst_byt_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xd55928e4 sst_byt_dsp_suspend_late +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x01510899 sst_dsp_dma_copyto +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x025f3ea6 sst_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x069537ba sst_dsp_shim_update_bits64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x06ad1e11 sst_module_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x075b81a9 sst_module_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0b32de21 sst_fw_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0da2418f sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0df3ed7d sst_fw_reload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x18ad26db sst_dsp_outbox_write +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 0x1f6991aa sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2008a243 sst_mem_block_unregister_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x20a0fab4 sst_dsp_stall +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2e6a8f12 sst_block_alloc_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2f482066 sst_mem_block_register +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x36697f0f sst_dsp_dma_get_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3e3598c1 sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x41bf4ee4 sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4306eea7 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x449faa3e sst_module_runtime_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x451bfa40 sst_dsp_shim_update_bits_unlocked +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 0x4f53eac0 sst_dsp_shim_update_bits64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x518ce9b5 sst_memcpy_fromio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x55805fb9 sst_memcpy_toio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x586d10cd sst_module_runtime_save +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5d2c8775 sst_dsp_shim_read64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x669aa3a6 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x68757074 sst_fw_unload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6ab5e5fa sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6e4daed0 sst_dsp_get_offset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7196adae sst_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x769617f6 sst_dsp_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7953626a sst_module_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x813bd9f6 sst_dsp_shim_write64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x881e4a3f sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8ef4d1bf sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x926061d1 sst_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x944a0984 sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9dca94fe sst_dsp_shim_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa62532d4 sst_module_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa6c96c1a sst_module_runtime_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa76b6140 sst_fw_free_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa9687b7f sst_module_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xaca2dfad sst_module_runtime_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb8e242a7 sst_dsp_dma_put_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xba21f89f sst_dsp_ipc_msg_tx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbba028ec sst_dsp_reset +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 0xc2474249 sst_dsp_ipc_msg_rx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc3c68dfe sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc6b47c33 sst_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xce66db62 sst_fw_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd4ea9b73 sst_module_runtime_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd7cf4ac6 sst_dsp_dma_copyfrom +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd8ef139f 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 0xe285ea94 sst_block_free_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe82ff5f7 sst_module_runtime_restore +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe9783dea sst_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xedc40ac2 sst_module_runtime_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf24cac88 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf3dbb848 sst_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf9d8a471 sst_dsp_dump +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x6987891b sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x719ee8ab sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x73adff1e sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x82a831ef sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xae8ecad4 sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xf2b8047e sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xf749b5c3 sst_ipc_drop_all +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x180237ea sst_hsw_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x199c88c5 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 0x088cbc3a skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x2439cc8d skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x54a9b467 skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x579e2e65 skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x62a61ab0 skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x691826c2 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x73ed8322 skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x79423670 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x7a5116d6 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x7c2452f7 skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x8986064c skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xb88f2b2d skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xc85e52a5 skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xe1794a4d is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xfbce10b4 skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05538773 snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07b830b8 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x081acb62 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08b8d6ad snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d0ff4c6 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d70e9c0 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x100f2b68 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1077e10e snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x127ed732 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1290c3f0 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12a120c6 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13916c02 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14b08eba snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15a8dd8f snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15fc34d2 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19430167 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a55d882 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bbd3dc9 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28964328 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28bf9919 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b0d3d95 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c05350c snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d477f3b dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d4e60fe snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3056c484 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33f71b07 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x358f89c4 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35a19002 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36dccd9f snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3832c81b snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38ee6ce3 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cda86f1 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d0f9a8d snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d2782a7 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41947a07 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46df41c1 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47e503a5 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ab05eee snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c4d1a92 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d7c9c70 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e82b736 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f153f84 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51913b61 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5219ecfb snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55a02e19 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5719a092 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57c3cb67 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59b57ba4 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a9ad5b1 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bd896da snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f02d72d snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5faccf03 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x623d0f0b snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6329d3ef snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65b543f4 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65f78a3e snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x667953da snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x673a1ccc devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x690e941c snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69e17a05 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a180c97 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c329164 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f7e4d9a snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ffe483c snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71f3f160 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72bb32aa snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7408d7fe snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74ef9632 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76135e96 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78fbc8a8 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a6e83a9 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d6b3282 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 0x82c7387a snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85ba75f7 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x877505e2 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88509d41 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x886fef09 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89c2ed7d snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89e8c6b3 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8babb222 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e0b2d0d snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e3f9646 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f59904d snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fa6d009 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x901642bc snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x902f9b68 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95e2aee6 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97186f00 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x978f8c70 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c841c93 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cb1e850 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d92be6c snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ede3e62 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2450f5f snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa24e1c40 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3eead84 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa432e390 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6d40837 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7745212 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa81e42a7 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9922c66 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab5e64b7 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf210377 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb16cae10 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1e2f687 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5458f4c snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb61de19f snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb67da007 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8cc1b62 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba5c6f68 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba953913 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb50faef snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb6763f3 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc28c6b3 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc6efa20 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc78d17c snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdc54b45 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf30d301 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc00b1737 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0e52cff snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc12321d0 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc15b8a70 snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4ffe809 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc8a4574 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd4b3d19 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce1f4da6 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd01438ab snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4cab6fd snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6023b0a snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd90ba462 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb5f79c6 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbbdb677 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc4abc27 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc5ab17b snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde30581c snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1c0a1e6 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6f2ac4d snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7e71122 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb0c579a snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefd0e119 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf150acb8 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2e2d9a3 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3449c89 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3f888d3 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf479cf8d snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf553987b snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf654a065 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf769d3f0 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf78b391a snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8e2347b snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb669582 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc22aa30 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfcbb9280 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe7a2804 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x09ddead8 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0ef77700 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x186a5492 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 0x38cc353c line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3e4d42e7 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x421ce566 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x56d72c37 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8113367c line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x81153709 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8b89c6de line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8bdcfdc0 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x93c860ca line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9bcdc2e9 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa0ce4774 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xadf5cb34 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 0x1e678bb2 dot11_pkt_type +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x2745bf7b rsi_init_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x2ce8bb33 rsi_deregister_bt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x39e5b419 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 0x4f2e4779 rsi_hci_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x55e30351 ven_rsi_read_pkt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x58f735fb rsi_send_rx_filter_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x5a6eb273 ven_rsi_91x_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x5b13cfb8 rsi_remove_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x886cd354 rsi_config_wowlan +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x8a7e081f rsi_default_ps_params +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xa76e8b27 rsi_hal_device_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xb61740d6 ven_rsi_mac80211_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xb993e658 rsi_send_rfmode_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xd1f4b207 ven_rsi_91x_deinit +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xf35f8992 rsi_hci_attach +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x004dde9f alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0065a806 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x0073a7e8 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x008cf0f0 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x0096ec46 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x009a391f regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x00c3d87c sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x00dd510c mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x01059f8c ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x01068f2d pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x0157f739 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0170cb6c efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01f6b0a3 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x021bdee4 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x02282c04 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x0237e71b scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x02705efa usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x02b558f3 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x02bb4f58 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x02c763ca inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x02e21db8 put_device +EXPORT_SYMBOL_GPL vmlinux 0x02ee3cc5 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0301be85 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x031299a3 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x032f56ce devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x03379f13 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03446f9c gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x03489c63 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x038fd7cb pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03a86a8a blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x03b6c33c __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x03ca6c20 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03e6ec0d pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x03ee2819 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040a8d1c dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x040e0e53 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x04307b37 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048ded8a skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x049d23e4 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04b8a916 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x04bcb7ec mmc_app_cmd +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 0x04dd17cc crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x04fe7075 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x05017c35 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x05020d15 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x0529435c vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05564d79 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x05633843 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x0563478d device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x0582ac2d pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x058830f3 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05956f11 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x05dde007 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x05fad316 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x06038e27 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x060de511 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x0616dc26 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626cb58 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x0632095a sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065c23c9 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x065ff35b ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x06934163 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x06963c36 intel_msic_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x06b22378 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x06b23000 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x06bac1ce usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06f90040 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x06f90a25 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x0711d048 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x071ee624 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x073a338b fpstate_init +EXPORT_SYMBOL_GPL vmlinux 0x075f869c __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x0760f0d0 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x076b1895 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x078777db devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x07a24cb2 crypto_shash_finup +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 0x07cc32c5 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0835aff3 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x0857015f ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x0877f711 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x08868aaa dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0x088893e6 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x089d0cc3 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x08c11987 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x08c54776 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x08d03c3a pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x08dd84ad debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x08f10258 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x090baf79 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x090fb348 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x092097fd rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x093089ce xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0962d0e8 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0986e0da rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x098aa63d __put_net +EXPORT_SYMBOL_GPL vmlinux 0x09a19afa i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x09b09813 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x09b1bce3 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x09c607a0 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x09d1a90a blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x09e0a526 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x09e66e8e ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x0a145f52 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x0a2609ec unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x0a283a3c debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a558a39 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x0a619618 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x0a68e8d1 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x0a6cfa65 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x0a884812 xen_remap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x0a8d21ae list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x0a95418f regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x0a963e50 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0ab9531f genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x0ac5560b inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0ad72528 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b396004 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x0b4e4731 intel_svm_bind_mm +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b5b5de1 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x0b752bd7 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x0b80941f ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x0b87f1f1 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x0b94b110 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x0ba36e2d xen_swiotlb_set_dma_mask +EXPORT_SYMBOL_GPL vmlinux 0x0bb0fe9e vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x0bb94baf sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x0bbbf8a5 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x0bbc91fa relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x0bbe29f1 find_module +EXPORT_SYMBOL_GPL vmlinux 0x0bd07f84 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x0bf03a5f devres_release +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bfd9a7f attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c1dfa84 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c339169 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x0c5c8753 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x0c8793c2 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x0cb51465 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x0cbb5cc0 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0ce022a1 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0x0d1dcfdf blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x0d3382cc pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d56145a pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x0d5be166 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d989ca8 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de51d01 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x0df388ec bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0df925f6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e05d395 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0e0734f6 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e285939 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x0e6a2974 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0ef0c4b8 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0efe0a05 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x0eff1d50 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x0f0bb45e tcp_send_ack +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 0x0f4f8b7b class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x0f4f9497 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x0f5d6d2c locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x0f6e4206 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f81478f pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x0f96d357 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic +EXPORT_SYMBOL_GPL vmlinux 0x0fa5fe3a usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fdc6b69 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x0fe99db7 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0ff2ba6b wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x0ff45a6e securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x1007f984 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101c83ec pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x101db2c2 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x106538ce ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x1079398a pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x10b114b8 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x10bd480a set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x113c7c75 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x1142e01a uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x1168c30d devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x11789d9f ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x1190f01b regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x119555ee sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12275a63 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x12322437 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x12365e8c percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1290bf84 acpi_dev_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x12910a99 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x12bdb26b irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x12c99cba devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x12dabcb4 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x12e90e38 get_kernel_pages +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 0x1320b069 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x13453c5a virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x13a15ce3 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x13a4261e tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x13a9a822 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13df4bdc skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x13e18273 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x13f05723 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x13fff3b4 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x140c448e ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x142bdb56 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x14330c12 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x145784d1 gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x14579e22 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x14a3db6d desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x14a826b1 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x14b068a5 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x14ce6078 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x14f34538 device_move +EXPORT_SYMBOL_GPL vmlinux 0x14f9de80 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x150b598f __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x151e8e27 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x15234655 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x15469751 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x15492fda devres_add +EXPORT_SYMBOL_GPL vmlinux 0x15568631 lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x155f221f register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x1569b0dc blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15a593e0 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x15b25013 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x15d4da77 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x15e02372 xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x160350d0 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x1604338c blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x160ca535 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x1613fd2e pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x1618d49b xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x161fa4b8 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x164934f4 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x167b7335 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x16865b77 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x16944255 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x169ae90d pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x169e3203 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x169ec90f pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x16e018bd blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x16e215c6 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x1755203f trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x17598b3c gpiod_unexport +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 0x17b86dba ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x17bda822 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x17c56eaa lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x17ff8404 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1800ae5c crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x18119ccb rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18542c6d reservation_object_test_signaled_rcu +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 0x18a1d973 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x18a65620 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x18ae7508 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x18af4a9b led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x18f4ca1c wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x18fc9c2a ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x191f8573 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x194f81bd blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x197cfac9 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a7e182 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x19a90956 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x19b1fe8a clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x19ce4f41 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x19d22492 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x19eda9c3 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1a2c52f9 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x1a389393 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x1a3baaee fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x1a5639bf add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x1a6a1309 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1a9cb062 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x1aa849aa fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x1acdaba0 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ade8343 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x1adf1cf0 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x1b0329b4 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x1b1f2bda speedstep_get_freqs +EXPORT_SYMBOL_GPL vmlinux 0x1b2ebc48 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x1b309fc0 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x1b486759 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1b520208 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b617392 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1b6541cb pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1b856fd8 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8d7695 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x1b9204f8 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1ba72da8 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc7d2ad regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x1bd5202d inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x1bf1f9b0 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x1c104054 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x1c1bd7c6 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x1c3ab641 usb_get_dev +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 0x1c73b691 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c841069 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x1c84a746 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1cbcbc2d __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x1ce4900c ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x1ced33fe irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d33d3c4 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x1d3f59b9 unregister_wide_hw_breakpoint +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 0x1d864803 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x1d8e79cf device_rename +EXPORT_SYMBOL_GPL vmlinux 0x1daacfe9 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x1dcc03d0 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x1dd31a61 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x1dd5bc4a ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1ddd65f6 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1df9c0a5 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x1e3c733a pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x1e48ed9c unregister_pernet_subsys +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 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1efc43d3 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x1f0a2b0a fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x1f3042ed regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x1f4ade1b nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x1f65f789 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x1f7f6fac register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8cba77 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f92210d mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x1f971a7b dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x1f9aa380 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x1fe0993e usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x1fee9d34 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x20005789 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x200cc695 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x20239e24 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x203c54cf __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x204e66e6 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x205ac434 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x206ecbe9 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x2093ddba led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x2097838e irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x209b696b ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20be926c wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x20ef5755 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x20ffc8d9 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x2115f801 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x2140021f of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x215d0491 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x21608621 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x216e7d1c sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x217ad37b pin_is_valid +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 0x21dd2ca9 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x22734206 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x2277cd0f metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x22816d00 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x22b530c8 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x22b65634 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x22dc187e __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x22fdf5fa usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x23048011 __intel_mid_cpu_chip +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x23172166 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x2319656a regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x2320d0d9 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x2323c603 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x2351ace0 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x235367ba usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x2365b6a5 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata +EXPORT_SYMBOL_GPL vmlinux 0x237ed0ca tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a25577 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x23a55a39 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x23d2007c cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x23d613d7 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x240580a9 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0x2415c1b6 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x24741c29 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24935a70 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x24a9f6e8 sock_diag_register_inet_compat +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 0x24ef3b48 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x24fa8d75 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x2517566f regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0x2518b90c ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x252a46ab tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x252c09be injectm +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2544331d key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x254c4851 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x255ae40a usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x255bf2e8 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x2560f930 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x259ea9fd usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x25ae97d3 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x25c18726 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x25c8ed0a rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x25cc07ae kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x25d5284e skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x25d9f91b gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x260e8aaf netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x2611f47e ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26314290 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x2633cb38 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x2648a38b regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2664ae6d usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x26653c0c virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x266c330e gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x26739b0f extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x267a40e0 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x2687981e blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x269a4b9a sock_update_netprioidx +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 0x27037d9f md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x2706270c devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x2721a0f7 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x272af23b cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0x27339eee vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x27374a38 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x27410b63 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x275353cb acpi_dev_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2764890a pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x277e9e6c crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x278dd650 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27e70f99 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x27e87cd8 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x2804cc1f blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x28084a7d reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x2843ae61 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x2851a48e acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x2853165e ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x288ee3a2 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x29100153 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x2916e638 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x29368c85 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x293f073e vrtc_cmos_write +EXPORT_SYMBOL_GPL vmlinux 0x29740963 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x2980c3f2 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x2981006d debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29c0311a crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x29c60c83 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x29ced26f led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a21f88d sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x2a2e3c88 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x2a4544d7 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x2a5f755a page_endio +EXPORT_SYMBOL_GPL vmlinux 0x2a61b282 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a85546d regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x2a88ce0a crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x2a941a02 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x2ad8ebfa xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x2aedb435 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x2b0b80f9 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x2b1534ee regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x2b16065e usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x2b25e7b2 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b635a03 ata_ehi_clear_desc +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 0x2ba0caed pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x2bb2c900 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2bf17ac6 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c160acd ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x2c1a9e31 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2545b7 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c32734f disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x2c495a90 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x2c5b97f5 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x2c5e9ddc __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x2c630bd1 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x2c6a0410 xen_set_domain_pte +EXPORT_SYMBOL_GPL vmlinux 0x2c6dc95e reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c801a71 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c95c632 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x2c99fd7c scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x2cabe145 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x2cdcb29d dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x2ce01eae tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2d0e050c ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d22d47b pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d8f920b ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2dbe9e89 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x2dd24977 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x2de34e07 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x2defc48c serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x2e05eceb extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e30d106 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2e6891b2 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec18f52 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ecb258a elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2efe91e4 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2f04ff9b scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1c5bc7 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x2f27937f spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x2f37a073 device_wakeup_enable +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 0x2f769e8c bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2f93a2c1 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x2fd71fd9 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fda9d5b show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x2fdd9688 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x2febcd56 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x30068782 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x300cfdcc inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x300d4b4b scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x300e3e46 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x30242476 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x304a7915 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x305b99d8 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0x306b147d xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x30a0672b device_del +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30b4d6ce pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x30b5881d rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x30b873ec devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x30bfe156 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x30c4291e udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x30c4f21e virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30fa89ab gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x311ac71a regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31287fbd xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x31288f2b register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x313b458c virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x3159f656 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x31811d08 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x31a59b69 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x31ac2875 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x31bab052 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31dbc0fb lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x321dee5f da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x323ab4a6 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x323e06c8 register_mce_write_callback +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 0x32880c97 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x328e7ee7 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x329bf8c8 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c4ac80 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x32d3098c sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x330e4837 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3320a671 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x333228ec intel_msic_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x335a6ea3 kernfs_get +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 0x33b7fb6c regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33bd286d dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x33bdd4a4 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x33cdcfae mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x33ce5aad sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x33d370a7 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x33dc0f0d rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x33fcd436 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x340a4a95 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x34385a26 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x343bd14b spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x344ce21f ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x345d681c netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x345fb804 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x34750aa5 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x3482c01c crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34a7a4e3 xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34afd16e fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x34b5198f acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x34b7cbb8 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x34bdcf15 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x34d48e1c transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x34d629ff blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x350e2bb3 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x351dd383 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0x3527142e sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x35317bf7 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x354d6eb5 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x35504553 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x3558cec8 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x357b8940 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x3581f995 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x35847a5f usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x3594f8b1 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x35976a97 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x35986041 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x35af1352 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x3620eb17 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x3665bc4b cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x3687b16c xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x369503cf usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +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 0x36c4535e ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36dbbace da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x36e19170 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x36e65575 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x371f55a3 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x3750ac7b ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x37601e91 extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x37647f1b dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x37747261 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x37998947 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x379a2638 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x37a32ef5 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x37c329a4 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x37d2612b hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x37d46047 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x37f1e0b5 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x38077444 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x3837a776 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x38483e4e spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x3878e1d5 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x388c4687 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x388d31d1 of_css +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38aa7fe8 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x38dfc85a perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x38e1ce7c fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38eb3572 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x391cf2af pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x393a5e8e tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x39434ce6 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x3945ef72 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x395a6faa device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x395d2b1f spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x3988a7f0 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x39963855 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x39a0b4c1 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x39c6a90c dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39dcda93 acpi_dev_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x39de43e0 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x3a015347 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x3a0dc4aa pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x3a135ae7 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x3a2440d2 usb_hub_release_port +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 0x3a66aef6 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x3a7bcff0 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a7e4ca6 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x3a870648 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x3a88b47d crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x3a8b011f pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x3a9b07c9 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3a9db766 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad5dae1 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x3b0d94ca acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b5483cd da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x3b5ceebb root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3b65cd02 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3b7fc28e dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x3bc412de xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x3bc4f7d5 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x3bddb83f shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x3c03f4e3 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x3c0a9b66 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x3c3b87ba wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3c464213 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x3c49495a pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x3c6db9eb class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c8d0b32 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x3cad3b23 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x3cb866f9 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x3cc549a9 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cebac0c usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3cfa389c __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x3d369f57 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d39ca48 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x3d4d0f1e wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3d53a26e rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3d8a788f lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x3d98d94d __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x3da8dc57 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x3daccfd7 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x3dc8b73b dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd4480f pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dff4c4b ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3e0aa36c platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e57f148 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e720725 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x3e757637 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x3e79b52c dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x3e94718d regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x3e94bf53 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ea91b5f bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x3eb41a46 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x3eba4839 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x3ebdc11e dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f0f7df5 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f355d53 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x3f3c0271 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x3f3d0ab3 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x3f4dea66 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x3f64759d rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x3f720b94 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x3f8462bd tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3f94c6b4 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x3fa19ac2 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x3ffa69a0 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x400659cb pm_generic_resume_noirq +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 0x4029d0b2 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x40540bb4 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x405d06ad kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x4064e589 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x406fe904 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x408212ba hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x408630d0 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x40ae2f18 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x40ae98b8 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40b88b0a find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x40b8e4de iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x40c7995a phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40e899d6 xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f5c0c6 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x40f8c3ab regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x4117014a pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x412f3b9e usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x4137ad8e acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x413d361a shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x413ff83b rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x4149a69a x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x414b987a trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x414dd2e3 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x415218b1 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x4154e873 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x4157026e fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x41679cb7 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x4174d7d7 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418710e7 mce_inject_log +EXPORT_SYMBOL_GPL vmlinux 0x41921c5a ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x41a3d53f sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x41afc7d6 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x41b6745b xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x42245c69 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x424bc847 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x427130db preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42725847 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x427d1fd8 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428ce0c6 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x428db732 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x42c7d554 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x42c7fa35 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x42c989ff iomap_atomic_prot_pfn +EXPORT_SYMBOL_GPL vmlinux 0x42d5cb19 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x432bd75a kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x4339a694 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x436ee4e7 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x437b2287 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x4384c9e1 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4391878b raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x439a96de ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43b9df20 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x43c9beaf iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43ded7ee fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x43ee0c35 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x43f4ba13 tty_ldisc_ref +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 0x4424d071 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x442a13b3 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x44415fad pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x444e02d3 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x444e692c sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x4450b590 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x447464b5 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x447cfc7a pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c9ee2f mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x44d86048 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x450bb7d6 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x4512b086 intel_scu_devices_create +EXPORT_SYMBOL_GPL vmlinux 0x452213b3 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x45637a02 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x458bed10 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x459f4e82 fat_fill_super +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 0x45d69454 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x45fbfa7f usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x45fd3851 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x46117a04 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x4617ad98 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x4639bd79 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46436ea0 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x464d4fa9 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x4666c15b hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x466c496c max8997_bulk_write +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 0x4693273c devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x469cf941 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x46dabdb8 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x46f1611e posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x470ba393 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x474d9fd2 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x47517db8 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x4759f7c6 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x475c7080 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x475d45fb powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476bf6d9 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x479ce6b0 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x47a5b6b2 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47ab0a8f ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x47cba506 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x47cc9d58 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47d94874 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e10d99 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47ea37bf tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x47ec342d ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x47fd2eb3 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x481002bf ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x4820f8d9 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x48293a2c page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x482f854d pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x483a9200 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x484a02ff xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x484a07a4 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x48514711 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x4855c91e led_sysfs_disable +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 0x4888efad blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4890877c dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x4890b351 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x48cf8200 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x49031c3a balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x490a8df6 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x490ab92e crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x490f716f pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x49122dc3 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x49130c1a __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x4918526c irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x4919c734 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x4919ef46 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x4936b7d7 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x4936f934 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x4938e8a3 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x498ffb33 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x49903bed bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x499e46e0 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x49a30bab usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f92115 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x49fe9a10 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x4a011a10 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x4a1009dd usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x4a30e336 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x4a39270a wakeup_source_destroy +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 0x4a600832 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x4a619bce rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x4a8e6382 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4adb1a81 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x4ae0e444 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x4aee841c inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x4afb573b vrtc_cmos_read +EXPORT_SYMBOL_GPL vmlinux 0x4b44b08d kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x4b62d78d tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x4b74ff46 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x4b99428c pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0x4bd7566e tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x4be89f00 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x4bfe7ad3 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x4c05200a dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x4c1d2a1e crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x4c257399 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4c2a472b __static_cpu_has_safe +EXPORT_SYMBOL_GPL vmlinux 0x4c3a5b22 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x4c3ddd0a iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x4c4206c8 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4c5f0776 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c64020a balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4ca71031 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x4cbec5bd ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x4cc1b06a l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d067cdb usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x4d09e72c devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4d5ee5b3 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x4d62df79 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x4d6d472a dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x4d79c754 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x4d7b84a7 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x4dd0ff6b pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x4ddba867 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de3b694 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x4e077407 xen_swiotlb_dma_mapping_error +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 0x4e2c97e3 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x4e54e33f iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read +EXPORT_SYMBOL_GPL vmlinux 0x4e5da783 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4e6b79fc regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x4e6ffea7 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x4e755da1 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x4e94654d irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x4e97a832 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x4e9a65ce scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x4e9fd946 intel_svm_unbind_mm +EXPORT_SYMBOL_GPL vmlinux 0x4eb0a03d uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f1030a2 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f3a8334 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4f5c4381 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f89ff75 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x4f961fdd sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x4fb7b371 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x4fd5a81f component_master_add +EXPORT_SYMBOL_GPL vmlinux 0x4fd8e7da device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fdf7253 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe30c16 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x500d0db3 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x501316d9 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x502008b5 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x50347a9b device_add_property_set +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 0x5088ead2 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x508d6b07 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50993181 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x509b3861 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x50ad0e79 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x50c64000 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50cf9d59 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50ea2eda sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5127ad66 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x512c50ad devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x512d3e12 fuse_direct_io +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 0x519c46a9 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x51f72f6e dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x51ff6845 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x520eedba serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x523a6ab2 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x52464a92 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x5266f813 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x5267d329 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x527458e6 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x527bb1bd cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x52965c2e inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52bbbe26 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x52dcc005 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x52f102db __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x52f50496 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x5316dca4 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x5344621c nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x538bc3ad driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53af1b6e __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x53b9453e regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x53c5cf45 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x53e5cd9f handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x53f653ac regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x53fec555 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x5422d290 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x54520b1d regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x545e2271 blkdev_read_iter +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 0x54b7e7aa isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x54d094c7 sata_std_hardreset +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 0x55136fba ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x554483c6 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x554a334a virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x554da3ff skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x5562b874 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x558d3c9f pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x5598cb13 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x55c729e4 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x55e1e730 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x55ea2103 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x55edd53d unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x56076ef7 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x5613ba8f cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x56227983 debugfs_remove +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 0x56421424 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x567c1626 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x569c6196 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56bf3309 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x571e2794 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x571fe183 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x576c1b25 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x577c591a mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579bd231 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57c2e20d aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57d4dcb1 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x580f3522 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x581ad7f4 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x5820257a rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x58445b46 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0x587121e4 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58ad2d88 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x58f21a89 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x595285ae subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x59673968 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x597d10c0 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x599533d4 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x599d8dc2 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x59a444eb page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x59b48bb8 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x59d27c39 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59f0fcb4 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x5a061826 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x5a12e17f iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a3b2507 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x5a620ca6 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5a68d94d sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x5a699c6a fpu__save +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a84e46d iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x5a938b25 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x5aba1426 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x5abfbd57 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x5acb6e32 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x5acd7239 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x5ad6acb1 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x5ade69ee __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x5aecba7a __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5af12242 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x5af9fe60 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x5b060a71 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x5b1899f8 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x5b22a305 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x5b440456 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5b8469fd da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x5b8ddcc2 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x5b9f4557 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x5babf842 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x5bc75235 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x5bce8ca1 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdb0fdc __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bef6171 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5bfdcd29 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x5c1010a1 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x5c13e22f sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x5c1aa518 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x5c266f82 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x5c4169a9 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x5c504b4f sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5c50e93a rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x5c55fa17 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5bd964 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x5c66c6c3 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c6b78f3 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cb1a831 user_update +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cdc37fc __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x5cf246f0 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x5d041c55 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d4395b7 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d50b1bb irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5d80e0e6 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x5da1ce43 print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dbf0f93 napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x5dcff3ab dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e1bdcb0 wm8350_block_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 0x5e5cb7f6 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x5e68672b power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x5e6a129d blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x5e77ba35 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0x5e817007 x86_hyper_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5e820569 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x5e8c3a1a irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5e975737 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x5eb2fdb9 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x5eeeffa9 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x5f1cd903 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f2ba1d0 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f3d9f17 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x5f5481c5 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x5f7abfba ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5fb3fea2 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x6002ad33 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x601f3314 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x604cb6e7 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6051020f fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x6084287f dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x6084c8e3 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x60930d37 save_mc_for_early +EXPORT_SYMBOL_GPL vmlinux 0x609ed546 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x60a05976 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60b49a9c rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops +EXPORT_SYMBOL_GPL vmlinux 0x60cef609 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x60d723b1 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60fb7acd pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x6101bd39 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x61520a85 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x615512c2 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x61993658 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x61a6ff52 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x61a73611 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x61b0f0c9 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x61b9fc82 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x61d1b4c3 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x61f39097 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x62227b9c virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x62284d3e tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x622a75d3 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62348048 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable +EXPORT_SYMBOL_GPL vmlinux 0x623878fb single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x62594dfa udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x626a48d1 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x627e897b pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x62845888 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x6289fe05 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x62d4f0a3 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x62d5fe03 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x62dfa61f ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x62ea19f9 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x62f206cd extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x632be664 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x63581279 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x6362df06 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x637ed51d rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x63806cf4 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x639a082f mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x63bea93f spi_async +EXPORT_SYMBOL_GPL vmlinux 0x63cc3bba perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x63d37c0c tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x63d737da wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x63d8afad virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x6437d046 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x645cd39f wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x645d66e0 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x646edfa5 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x64896228 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x6494cde1 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x649c1d82 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x64a59a4c set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x64a60fb1 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64ac7ce4 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x64b5d2a4 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x64cab1d5 xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x64e4faf2 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x65146828 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x65252448 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last +EXPORT_SYMBOL_GPL vmlinux 0x653b45f6 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x653cb02d intel_msic_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x6541450d xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x654bb0fa dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x655b362d rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x65844e0e posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x658c35a4 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x6598711b arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x65a7322c sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x65b41553 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65bf459e led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x65c78461 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65f3ed1e usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x66026587 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x662b0a80 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x662e89eb pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0x6663c1ad gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x66696731 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x66757659 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668b8347 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x668e9007 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x66a446d9 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x66abb67e acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66c707e4 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x66cb063c flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x671180ba shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x67198864 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x671bfde8 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67b0df66 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x67b61b19 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x67bd4e43 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x67bda5d8 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x67d60fba register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x67d92696 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x67efa284 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x67fedc00 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x681b89c6 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x682d1733 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x682e6bb0 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x6830bd43 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x6834ac43 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x68389498 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x683e46d8 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x6855d0d5 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x685a9b40 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x68636d1e __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x6868dc37 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x68802cb3 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x68a0f3df transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68a4d7d4 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x68a68efc __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x68a82089 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x68c0ebb8 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x68c4e0dc rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x68e63674 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x68fca83b scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x69036e4a sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x690648af debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x693899e5 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x6953fcd3 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x695640bf platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x69681f1f pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6984dc4c input_class +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x6990e4fa pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x699535a3 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x6999f19c nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x69e87d0a usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x6a03c661 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6a0c2f29 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a2a6a19 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6a43aefb simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5b5aea usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a65f151 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x6a6b3f31 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a6bc769 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a85d0f9 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x6a8e14ee sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x6a8ff71f acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x6aaa8264 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x6ab9c3b9 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x6ac5abcb xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6acdcc23 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x6af0fadc wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b186839 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b32e393 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x6b6b3123 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b82f260 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x6bb6ae61 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6bbe2cf0 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6bd18c43 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x6bd75a5e crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x6c04fbc6 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x6c141a61 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x6c17a48f inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x6c1fc839 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c2f85a4 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c448556 pm_generic_freeze_noirq +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 0x6c83af86 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c9a62d2 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cc1a180 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6ce2897c default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x6cee6071 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d6c9c68 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x6d917428 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x6dac0acb hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6dc5985f trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x6df3cc4c wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x6dfcb30d dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e627545 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x6e64b90f sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x6e65dfec tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x6e768d0c param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x6e76cb14 debugfs_create_u32_array +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 0x6ea739e4 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x6ee0750f regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x6ef5c98f extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x6f1c908f bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x6f407d31 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x6f5bb426 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x6f5c8c70 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f857d29 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x6f935926 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x6f96c4c5 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x6f9f4fa3 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x6faaed26 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fea2197 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x6fea8c4c tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x6ff2c469 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x700ccdf3 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x701e45ee hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70201233 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x70435ca4 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x7044f45c gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x70506092 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x70568720 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x70759cf6 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70b18613 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x70b3b47e pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x70c46e25 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70dbf33d crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x70ec7ed9 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x710aa16c vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71125f97 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x711aae2b __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x71239626 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x712c83e2 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7174ff0d acpi_subsys_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x71779b52 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71ab1ebd inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x71aba52d pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x71dbf0f7 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71e6d950 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x721d0f00 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x723a71ec iommu_domain_set_attr +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 0x72790762 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x727eb6c0 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x7282ee18 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x72a8f9a2 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x72f08e6c ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x72f51ea3 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x731f9760 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x732e56bb ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x73375312 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7339c7c4 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x7349da61 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x734f0276 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x7357d95f power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x737c037d xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x738fd248 intel_msic_reg_update +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d2cf1b sysfs_create_file_ns +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 0x7455c871 eventfd_fget +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 0x74aaf62e class_create_file_ns +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 0x74c40930 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x74e122c2 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x74e501d1 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x74f84f81 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x75003039 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x750c0f41 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x750efd71 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x751636dd ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x751c5903 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x75216112 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7525095c sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x7533c950 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x7535da61 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x754d8bb3 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x7552467c list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x758a407b usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x758fb728 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x75adae73 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x75b72e2a debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x75bd2db9 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75ccdc3f acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x75fd0ff4 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76a85ea7 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x76b81659 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x76b8e147 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x76bacd87 irq_create_of_mapping +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 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x774cc345 xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0x7752021b device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7752cea8 arizona_clk32k_disable +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 0x77753f38 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x7790adc0 aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x77a6eea2 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77bf6a29 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x77d6b617 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x77dd07df cpu_tlbstate +EXPORT_SYMBOL_GPL vmlinux 0x77ff3181 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x780da757 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x78180309 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x78211cdd led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x78506fea inet_csk_bind_conflict +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 0x787be80e pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x789b1689 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78b16716 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x78c40955 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x78cbc9d9 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x78d0616b serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x78e75131 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x78e84890 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x79035473 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x7913bf8a usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x794bbaee devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x795d0daa pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x79702d86 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x79768f94 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x79824476 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x79979139 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x79a71c48 kernel_stack_pointer +EXPORT_SYMBOL_GPL vmlinux 0x79a98629 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x79b6c36f regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x79c2785a vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79effe3b sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x7a1043e0 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x7a1ab578 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x7a242756 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a648000 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7a78087e tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x7a84fdc1 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7a89f572 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a96e204 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x7aaa9bbb regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ab6ed4e xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ad0d970 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x7afaae4e bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b108fd8 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x7b156d5d ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x7b168ff7 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7b34d99b ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x7b3ffee4 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x7b605875 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7b66f1b2 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x7b6a98d1 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x7b9017df sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x7b9047cb pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b9a360f iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x7bf8edc7 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x7bfa5541 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x7bff4171 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7c0eca87 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7c2099a9 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x7c3566fa wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x7c5168fb power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9b21c4 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x7ca17d9c xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x7cbc5041 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x7cbc97a5 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x7ccf1927 clk_register +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 0x7d2f8d2f serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x7d49f424 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d644f24 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dac95f1 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x7db4140e __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x7db4968e arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x7dc13708 __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x7dc6d8bb __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x7dc7399c __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddecb30 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x7de1e029 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7de73169 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x7deadb00 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x7e0755db thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e2b5393 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x7e48e75e devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x7e5850a3 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x7e5ab10b xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e8b36e6 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea12d5f irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7ea27083 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7f0ba036 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x7f0d47f9 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f277df4 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x7f58fb63 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f80cf0c pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x7f83804c spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fc4ef31 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x7fcee46d usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fdbf6a6 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x800432b2 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x807f4b04 __cpufreq_driver_target +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 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80dcb29a cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x80e177bc da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f4aa74 syscon_node_to_regmap +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 0x812a994b ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x8131347b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x814a9c75 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x8151bdfb xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x81786342 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x817fe5c6 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x81801ada crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x8198a0d9 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x81bea3fa platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x81e7c74e find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x8206546d bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x82077c4b clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x82241444 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x827a6a56 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x827e2ea6 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x82894d17 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x82978442 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x829a7290 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x82b755ca swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x82b7ef57 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x82df626f debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x82e84099 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x8328c347 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x8328dc35 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x8332dbbd set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x8338f443 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x834949a3 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x8351a34c virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x8392a797 clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x8412bbb2 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x8421a4ef pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8445c0f1 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x8448830c alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x844b489a pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x8462bdcf btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x846a44bc perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x846ae3d9 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x8473b98f generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x8484b5a3 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x8487db72 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x84ac5070 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84d44d88 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x84e839a9 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x84f3ca19 regulator_bulk_unregister_supply_alias +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 0x851cb420 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x8522e0bb __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x852fdfa1 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x853cf1ff gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x856dd126 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x85727576 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x85a51139 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x85ae2bf6 ata_host_start +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 0x85d91034 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x85eea2f3 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x85faac23 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x85fdb554 mmput +EXPORT_SYMBOL_GPL vmlinux 0x85fe60b9 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8610e9b6 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x861e240f platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x862fbfe0 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x8638445f power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x863ab690 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x864c9aed raw_seq_open +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 0x866bb7a9 rio_request_inb_dbell +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 0x86a55d73 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x86aa6b08 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x86d0e01e usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x86dce237 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x86e6ce5d ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x86ebecb5 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f88dee watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x87016ff6 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x872915cd regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x87338d7d kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x875981e4 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x876fc88a xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x877400b7 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x87915316 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x87b8d771 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x87bbc543 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x87ea5293 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x87ef0fc0 acpi_match_device +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 0x88352624 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x883d3fff gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x88500df3 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x8854c83f skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x886a3c1f acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x8871ccf1 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x887c273d bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x888d87fe regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x888dab18 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x88a3c90e platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88d9a0e9 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x88dcedf3 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x8900fdf9 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x8902641c xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x890d099a pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x8913ed83 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x891d1b26 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89432a98 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0x896a67d9 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x89852ebf device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x898c2541 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x89a94bfc devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c4eb84 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x89f86bf7 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x8a4e2da8 reset_controller_register +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 0x8a60bdc8 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8a97004f filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac7e2d9 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x8acb8c0d percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x8acbeef1 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x8ad7a065 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b7afb62 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b8a1bb0 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x8b8a30ed clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8bc41382 fpu__restore +EXPORT_SYMBOL_GPL vmlinux 0x8be86c1d fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x8bedbb8d swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x8bf0ec13 skb_to_sgvec_nomark +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 0x8c177fa9 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x8c296ffc pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x8c2f93f0 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c337f2d ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c8e6024 ip6_route_lookup +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 0x8cff6a52 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x8d05ac39 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x8d07d2d6 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d452bcb adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8d48e3df device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x8d796fb3 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x8d7b00a1 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x8d9d652c ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x8dcf1da6 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x8dd12060 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x8e02218d pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x8e0423f1 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e734381 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x8e808a29 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x8ea5daf7 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x8ea99bd1 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x8ef33da8 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x8ef8502d watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8efe5336 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f52ee28 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8fabc96d transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x8fdc7cf2 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x8fdc965e inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x8ffbd14c irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x9026b6a5 led_sysfs_enable +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 0x9048ce2c ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x9050d4c9 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x906b90ee device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x90717bef split_page +EXPORT_SYMBOL_GPL vmlinux 0x908ca9da pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x908d2b21 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90b15cd5 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x90cc3d69 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x90d27580 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x90d2b4d3 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x91052a56 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0x91269a14 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x913a564b blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x917ffc4c phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91bc4982 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91ca8fc2 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x91cca43c bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x91de4dcd cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x91e673ea wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x91e8d94e crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924e10e1 clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x929795ea vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x929ac213 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x92acc7e4 sysfs_create_bin_file +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 0x92f643cb acpi_dev_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x9304aaff register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x931bc447 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9328ea43 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x932f304e gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x934fd736 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x93510e67 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x93598018 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x93671e5d __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x93dba568 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x93ec61f8 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x93eef687 isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x93fa495e efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x941b9ac1 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x941ce8e7 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942e150d __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x94329b05 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x943db130 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x9446b0db wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x946293c6 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x948bf8c6 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x94a6bf00 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94c0f5a0 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94c6a328 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x94d94396 ata_port_abort +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 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x957010c2 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95944be9 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x95ac6734 get_device +EXPORT_SYMBOL_GPL vmlinux 0x95ad44b1 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x95ada31c mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95cdaa10 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x95e81ba2 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x95ffd757 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x961dd337 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x96257bda event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x9629ab47 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x9629d9f8 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x964c34ad devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x964e816b sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x96518a42 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9665919c iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x968065e5 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x96984705 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x969ad4cc ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x969aece3 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x96d608b9 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x96d61e3b pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x971a50aa dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x9733788f crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9734fe51 user_read +EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x975990c6 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x97773a5a xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x977f841f devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x978932a6 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x9789a996 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x97d24af8 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97fc04d0 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x9806140a securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x9811ea63 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983a51f4 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x983f61a3 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x98403f60 xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9872dbe5 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x988dce9b modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x988e48a8 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x9895cd5a md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98c80bc0 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x98dbeeb3 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x98dcdc3d da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fb61c5 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x992987ef dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x9949ec1d restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x994f079b gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x99535f1b sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x99766ae4 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x99a19904 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99c9a709 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x99d55652 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x99fa4c43 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x9a00ad10 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x9a06d0e0 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x9a0df727 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x9a10da89 __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x9a110f3f anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a2332e3 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x9a3abd9d mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9a51019a da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x9a6d005e regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x9a725eb3 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x9a847302 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a91c5aa devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9a9ed8d0 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x9aa5fe9b __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9aaa3c2e pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x9ab6f3a9 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ab7d0d6 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x9abfa2b1 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9adabfa2 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b08ba01 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x9b25d947 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba31196 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x9bc559fc raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write +EXPORT_SYMBOL_GPL vmlinux 0x9bdc1fa4 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x9bdcd9a8 fixed_phy_set_link_update +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 0x9c10b6d2 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9c572830 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x9c6de56d acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x9c99da1f regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x9cb1501c pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cd646bb regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x9cdd66fc add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x9cde2019 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x9cf7078b securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x9d064344 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d101e96 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x9d1e897c blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d455a80 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x9d49affd input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x9d5a0ad6 set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x9d62c898 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9d7601bc devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x9d7dc7a9 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d8bb288 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x9d979b25 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x9d9c6cb8 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x9da0f73b devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9ddbb1f2 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x9de4d437 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x9dea3ea1 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x9dfd34e1 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e0ef985 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x9e186257 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e900f76 component_add +EXPORT_SYMBOL_GPL vmlinux 0x9eaae2cc ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x9ebff902 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9edb03a9 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9eddc5d6 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x9f194d44 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x9f22b94a dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x9f25d170 component_del +EXPORT_SYMBOL_GPL vmlinux 0x9f3dc0d8 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x9f47861b crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x9f54cd33 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x9f5e0cd7 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x9f61805f pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x9f89c0be __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x9fa48009 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x9fc12f44 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fea8a08 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x9ff77cbb pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xa01a7e8c bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xa01b2d43 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa042692f dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xa06c9ffa kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xa09465a5 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xa09490b8 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa0b366d3 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xa0c18dee tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xa0e02deb tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xa0e591ef acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xa0fe7178 clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0xa120abb5 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xa1469655 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xa14b1e90 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa167fd61 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xa17150b6 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xa17a25c6 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xa18c4c29 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1ba7a37 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa1c03f44 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xa1f3019c serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa2060d31 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa2114ad6 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa237ffbc dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xa23b3a42 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xa24cb2d3 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xa259f957 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xa2659ff5 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa291df4a agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xa2a6c8d1 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2d38b94 device_reset +EXPORT_SYMBOL_GPL vmlinux 0xa2dea42c __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa2e663cc crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xa2ec0a65 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xa2fb5947 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xa2fcacc2 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xa34dd2da unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa3561c66 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xa3582ae8 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xa360c834 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xa3682aaf pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xa36bf765 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa39119f8 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xa3959f1f dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3aa952c scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xa3b723c2 of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c3ba64 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xa3e4df0a blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa4353ed3 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xa44e083c da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa45a415e crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0xa47e6445 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48f0ae7 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xa49ee59b of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xa4a3a22a pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa4ccc016 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xa4d5de20 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xa4e7b03c register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xa5129bf3 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xa5278ea0 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xa56cd9c4 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa5824e06 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xa58570dd crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xa5999a8b rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xa59dccaf driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa5a6c8fa __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xa5bd7913 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xa5c5543c pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xa5e21f4c usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa6087dbe ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xa6144b29 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa63f8ea1 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa660915a acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xa66a0e3e crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xa68ea202 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6cab5c2 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa7281c66 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xa73e7d89 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xa7500c83 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0xa7704763 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xa78a53bb sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xa797ed05 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa7d0d45a efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0xa7de2481 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xa7ec957f cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0xa7ef5fb2 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa800e551 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0xa821c669 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa83d8386 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xa84396cc arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8540d62 xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa85a793e __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xa86b58b9 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xa8813973 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xa88a9acc ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xa88ded91 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa8936b95 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa89c1d00 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xa8a4b5d6 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8e6d69f dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xa902a3f0 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xa90b6373 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa9143342 find_iova +EXPORT_SYMBOL_GPL vmlinux 0xa91b9166 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9463c4f rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa979a04e gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xa9994161 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xa9b02d43 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xa9b074da pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xa9b729b0 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9de7de3 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xa9deced4 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e2f0d3 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xa9ee6c34 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xa9faa96b dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xaa15f525 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa80f14c get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xaa8492e9 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xaa89dee8 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xaa983fb0 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xaa9c24b8 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaadc2e9 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xaaaeccb7 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xaae23635 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xaaff6c8d crypto_drop_spawn +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 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xab99be0a usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0xab9a96b5 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xabadcfe5 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xabc25c52 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabe015c2 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabf0c061 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xac1f70af free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xac457028 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xac4ca599 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xac5511ff regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xac5f2f05 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xac826e59 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xac9bdb65 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xacadba05 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xad021b84 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xad1cdbc1 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xad219587 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xad2926de usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xad753859 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xad77bd4d __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xad830f78 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat +EXPORT_SYMBOL_GPL vmlinux 0xad8dd5e9 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xad9238a3 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xadb41337 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadc7c63b simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xadd824d7 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae2378d7 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xae53664d xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0xae5a79d4 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xae5ce9ad thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xae67d56e fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae73af0a ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae83e83c blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xae88dd61 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xaebe16d9 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xaec157c5 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xaed3c1c1 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0xaedd8942 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xaeee51ab __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0xaf41e7d0 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xaf4cd6d3 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xaf5e2b3c ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xaf6b316c blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xaf6b819c inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xaf9439db leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xafaa06e8 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xafada9db cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xafb92cea acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xafdb8051 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xafe02082 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xb0081387 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xb00d6957 __add_pages +EXPORT_SYMBOL_GPL vmlinux 0xb0150f3f ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xb0271f2b wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07f8e70 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xb0893e5b xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0xb09c0df5 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xb0aa9835 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb0cb611c xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0xb0d0fd50 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb0d53ff4 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb0dcdd3a power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xb0fcafcc ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xb104d4f6 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xb127eb8e regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0xb128435a regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb1710086 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb185104b devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xb186ec64 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xb18ef162 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xb1ac628f usb_interrupt_msg +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 0xb1c9898e sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xb1d9a28a adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb200862d device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb244a1be tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xb24586ba __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xb2496f47 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xb24d5d28 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xb252cb71 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xb2565781 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2738c23 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xb27a8ccf ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall +EXPORT_SYMBOL_GPL vmlinux 0xb2895a1f usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xb2cc97cc ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2ff4dd2 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xb30a10a7 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xb30e8963 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xb3238390 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb327d4ca usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xb34b5eb5 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xb3896777 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xb38d619f component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xb3920023 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xb3f2ace8 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xb3fe7546 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb411a73b md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xb425892d device_create +EXPORT_SYMBOL_GPL vmlinux 0xb4441878 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xb44f75bb ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xb470b64c ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xb488bb85 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xb490269d fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xb4910d85 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c4d67a ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xb4dd41c9 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eddbd3 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xb50282ed debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xb506a1c6 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb52962d8 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb53ff4d7 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb563cfd1 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xb57824c5 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xb57f32e8 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb59d6b4e extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5a29f9c console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xb5db609f tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb6030f70 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xb60a6bf4 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xb60afb25 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb60dd4bf ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6254fa6 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62f2390 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xb64e3d33 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xb65cb7dc irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb67e41cc __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xb6814f7a xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xb6a4099c sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6aed31c net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xb6b3eb7d uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xb6bc49a9 __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xb6c6b970 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xb6c76c0e led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xb6c891e0 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xb6cf21fe bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xb6d6b01e devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6ec6b86 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xb6f2ca7d ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb6f76893 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb71785c8 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0xb72538cc __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb7627564 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xb768ff66 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xb7753b13 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xb7886cee ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb7ae7159 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xb7af0597 acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xb7bfb2ac pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xb7cf1b34 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7d9f2e4 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb806f5a8 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb8106384 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xb810c8ee ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xb81df741 xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xb82611e7 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb857483a extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xb87aaf9b regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89d108b mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xb8af465e pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xb8b1b3f2 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8c1674b rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8dbc313 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xb8ece586 ip_route_output_flow +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 0xb9349bb8 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xb93a99ac evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xb93b65c5 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xb941be3d register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xb967457f relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xb983fed2 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xb98a7d7f usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xb996e20a devm_regulator_register_notifier +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 0xb9c4b8b8 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d30f01 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xb9ec87a0 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xb9ed03d3 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xba08948f bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xba0b2056 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba4803b8 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xba48a2b9 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba919ec4 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0xba9cb966 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac02ffb max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xbacf2d91 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xbae524c8 crypto_alloc_shash +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 0xbb1b1297 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xbb2eb37e pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xbb36a18c regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb38c68c device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xbb4858d5 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xbb534ee6 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xbb58b814 iomap_free +EXPORT_SYMBOL_GPL vmlinux 0xbb6ae944 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbb6fc60e dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xbb707f65 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xbb710962 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xbb76ba19 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xbb952b9d ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xbba93399 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xbbae33d9 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id +EXPORT_SYMBOL_GPL vmlinux 0xbc0d56f0 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xbc12f372 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xbc451e4a rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xbc5bea53 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xbc5c9f02 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc8687b6 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xbca0201a sfi_mrtc_array +EXPORT_SYMBOL_GPL vmlinux 0xbca08a99 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbcc6497c class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbcc79ad0 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd1388f devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbd04aa83 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xbd0dce8c usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd556980 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xbd5839d3 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd5ed922 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xbda8a76c spi_master_suspend +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 0xbdd9b08b netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xbdfb69a3 md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe253a88 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xbe2ba59c acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xbe347eae blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6dacc9 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbe7856bc __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0xbea29b00 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb3fff8 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xbeb695d5 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0xbed4c6eb trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0xbee1cb9c platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbefd1db1 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf06f837 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xbf10959a list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xbf1c2905 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xbf25c8fb cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xbf37018f power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xbf3cb29d devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xbf4bdddb perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0xbf534c09 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xbf599091 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xbf5a12b3 skb_gso_transport_seglen +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 0xbfd5a0df blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe8196d crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xbff10cbd ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc009d3b2 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xc03687fa pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xc04b609e device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xc060d488 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xc06671af usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc08985f9 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xc08cfab8 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc097c180 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xc0a8bbec nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0ac0a6e simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0dd4b04 serial8250_modem_status +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 0xc12e0ada srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xc1518c60 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc173f0cb regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17ee63d tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc18c9025 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc18d5bfd gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xc1ab207e driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xc1c25a49 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc214587f serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc23137d2 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xc23995ed virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xc247cf2b devres_find +EXPORT_SYMBOL_GPL vmlinux 0xc25a206e of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc270f7ea da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc2726069 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xc27272d7 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xc275a470 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc293bbca ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xc2bb2e32 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xc2e31bd3 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xc2e33b3e scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc2eceeef serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xc2f38235 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xc302fee2 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xc3053d72 xen_remap_domain_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xc32fb27a pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc345196e __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xc34d63c3 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xc352302c devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc3599f80 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc376db2d __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc37d68cb ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xc385f45f da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xc389648d xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xc38d7ae8 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xc38dcd9c bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xc3b99a06 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3d1bbdc sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xc4045494 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xc4224a14 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xc423a146 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc44d3023 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45ba4bd extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0xc4682c99 sk_clear_memalloc +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 0xc49b5ce0 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xc4b39417 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc532b6d9 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xc5387d66 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc549d45d device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0xc55289d8 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xc558b2da sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xc55e2879 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc57bbe5d xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0xc5b33351 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc616e65b wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6193d97 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc622d892 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc62427e2 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xc63163bc pci_enable_pri +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 0xc663df62 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xc66b5b2a cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc677c756 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xc677fcd4 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xc681f783 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xc684083f tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xc69014cb dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xc6959ea1 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69d115a pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6a7a83a kick_process +EXPORT_SYMBOL_GPL vmlinux 0xc6acc29b ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc6b7cfa0 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xc6ba3fb1 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xc6bbf407 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xc6c0c62f relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xc6c7d88a mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xc6e4c861 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc6ef8588 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc706bda2 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xc710161a ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xc72d7da2 device_register +EXPORT_SYMBOL_GPL vmlinux 0xc72da436 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7561f53 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xc75fe10a usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xc76176ee rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xc76659ef inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc7694e4c thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc785098d dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7aa4e13 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7c84ce1 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xc7db4cec raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc800ab22 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc8174085 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xc819eee9 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xc81b765d put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xc83e0873 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xc85c012d invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xc8667335 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87d5a6a unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc87f5fcc iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xc8aaf8e7 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8d7fb93 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc9419514 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xc951ce38 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc960d5d2 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xc9705eeb has_newer_microcode +EXPORT_SYMBOL_GPL vmlinux 0xc97cb603 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xc97e55ea da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xc9ab96c8 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9d1445c thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9efa5b4 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xc9fc88bc blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xca0ae7e7 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xca194d4d vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xca445d58 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xca789080 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca7f710c devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xcaa21988 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xcab32ac9 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcad0d98c pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xcb0d9f29 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xcb102b89 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb29865a __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xcb2d4f16 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcb326e3f shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb48ed17 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xcb4a5d0b sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xcb5066cb pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xcb599dd5 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xcb8be4eb __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xcb9dbc7d __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xcbbee1a5 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xcbc6fff9 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xcbc74a12 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xcbc97f82 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xcbd48c3f hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xcbd80818 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe8c01b dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc58df55 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xcc5af74e unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xcc5f5191 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xccae2566 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xcccd4ba8 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccdf562d device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xccefa6d1 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xccf16dbe pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0xcd1516df register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xcd2fffea do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xcd5c4cf5 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update +EXPORT_SYMBOL_GPL vmlinux 0xcd6a8183 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xcd75b27a blkcg_policy_register +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 0xcdb22394 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xcdb67580 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd33d31 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0xcdf09c15 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xce09fdd3 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0xce288f63 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xce2a2210 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xce4e2449 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce8b21d0 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xcec7b81a clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xced81855 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee2bbfd crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode +EXPORT_SYMBOL_GPL vmlinux 0xcf132d94 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xcf3a3fd7 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xcf3ca073 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xcf4057d9 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf63c92b uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xcf64c651 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xcf76ddb8 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcfa0805a cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xcfa53164 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xcfb4bd4a md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfcf77b0 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xcfd514ec hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcff11a91 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xcff6e66b regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xd01164a2 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xd01601a4 pm_runtime_no_callbacks +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 0xd074c573 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xd07fa89b gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xd0b14180 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0e09750 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd115f3f1 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd14c8ff8 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0xd1560ee7 dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd157fad9 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1730d80 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xd1753984 mm_kobj +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 0xd21d3ff5 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xd2438a2d get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xd24e974f devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd2673005 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27c393e i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xd27d091a key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd27dfc8c irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xd28285ef power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd28fd014 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xd28fef92 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0xd2922c08 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2b7b645 intel_scu_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xd2d8c986 fl6_merge_options +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 0xd30c97d6 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd3356378 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd336cd11 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xd35e8a77 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd37d80d7 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xd38c6ce3 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xd39f5163 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd3a6ade6 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd411b71f adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xd4187fcd power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd454081b pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd45ea32f hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xd4684f8c regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xd46eaa9f crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xd4716899 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xd4738987 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xd4bf9fe0 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c6a4ba __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xd4d0c65e inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xd5030f07 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xd53a016d usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xd544e902 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0xd5590f09 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56366eb cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd5804d4e fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0xd584efc5 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xd5875222 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd5a30055 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xd5a594b0 usb_add_phy +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 0xd5bfd837 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xd5c9cab3 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xd5ce0723 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xd5f66032 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xd6005b69 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xd60601d7 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd6109495 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xd61e4596 set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xd636a7b2 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xd65059bc tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xd6529015 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0xd6684cfe sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xd672806a find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6894401 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xd68b5f2a crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xd69872bf regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xd6ac5e73 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0xd6c52ffc fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xd6d2caf5 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xd6dec7f1 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd6e1cb94 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xd6e56a5f ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd703722c dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd71206ac xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7318651 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd742f295 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7452285 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xd758c94e pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xd764d265 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77b946f shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd7ab2c0c speedstep_detect_processor +EXPORT_SYMBOL_GPL vmlinux 0xd7b616d3 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7e08dc1 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd7f4f923 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xd7f687b0 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd8209741 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8250a5c iounmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd8269de5 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xd82dce0b trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xd839e74d regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xd843d86d pci_msi_set_desc +EXPORT_SYMBOL_GPL vmlinux 0xd85189bd fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xd8582aca inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xd85dc136 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xd86b7772 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88f81e3 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xd89372ef usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xd8ba3c17 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xd8c12f4c regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xd8c4c765 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xd8c6e7a1 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xd8c76c4b pv_info +EXPORT_SYMBOL_GPL vmlinux 0xd8eb3012 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xd8ee9ed0 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd90c2259 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd91bf252 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xd91d05ff extcon_unregister_interest +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 0xd9507379 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xd951e7c8 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xd95c141b inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd971bf22 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin +EXPORT_SYMBOL_GPL vmlinux 0xd98ea529 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xd9ab9332 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xd9b5bfb7 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xd9bd0768 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd9cb3037 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0xd9e2661e regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda38c171 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xda47fb26 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xda706058 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xda8cdc8c ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xdaa04a40 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaaa3e18 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xdacd9c94 dev_pm_disable_wake_irq +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 0xdb08e91d sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xdb15c068 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xdb2f9600 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb5169a6 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xdb51de5a da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xdb5ce228 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb675c62 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdbbf9d9f bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xdbce67fc tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xdbcf5d68 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc07cfc6 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc177571 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xdc1ba2d7 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xdc2585b4 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xdc34e66d subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xdc632b47 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc7934b0 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9ab5ac kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca5d1cc pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xdca83b6c devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdca8ad1d rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xdcf4ecd9 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xdd0c94c0 blk_queue_dma_drain +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 0xdd843004 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdd94e255 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xdd9d68d0 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddce650c crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xddd1e8bd pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddd78ea2 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xdde41eed bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xde041c23 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xde04cd88 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xde32ad98 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xde3aa8c2 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xde3de758 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde4dd1f7 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xde50b835 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xde521ad3 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xde568993 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xde6080af __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0xde631089 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xde747356 intel_msic_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xde7b1433 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xde847b8d skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xde85397c clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xde8cc64c inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xdeb6f1a8 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xdebefdd1 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xdec7e511 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdec7ec5c i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xdf0c0e2a tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf1a8911 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xdf29fecc __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xdf4571ec i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xdf46231b regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xdf466d83 scsi_queue_work +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 0xdf8010cc platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdf9da27c security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xdfbb45fe debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xdfc6666d pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xdfd1dd74 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xe0031a3e unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe00f1624 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xe011fa10 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xe020edf7 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xe02724c4 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe040b54d tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xe0443fac usb_driver_claim_interface +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 0xe08ccdb8 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xe0b0fa96 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0cc81f9 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xe0d323bd pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe0db6474 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xe0ea0ae5 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xe0f3415b tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xe0f9054b acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xe1093f39 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xe10a899f pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe10e2732 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0xe1222665 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xe14feff3 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xe152519c platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1bc56b3 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1e31069 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xe265a82c unregister_trace_event +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 0xe29d8adb usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xe2aae3a7 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xe2e076e7 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xe302d4f7 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe32c0508 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xe33308bb ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xe339edf2 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xe34bd003 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xe37046f9 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xe3781628 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xe3943bd1 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe397ad6a blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3bda663 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe3d10ea5 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xe3eb017b nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xe40494bc sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0xe418fde4 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe41963af nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xe41fe73e fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xe42ea07b fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe439815c erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xe4452435 md_run +EXPORT_SYMBOL_GPL vmlinux 0xe448b8b3 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xe449d188 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xe44b6bc9 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xe459c263 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe4687059 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe48f621a vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xe490cb22 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe498c92e sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xe4a0d7af __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xe4a816d6 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xe4ad3bb8 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe4bb0cb6 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xe4bc5929 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xe4bfecae agp_remove_bridge +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 0xe4ffa1ac percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe51134bd rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xe5133231 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xe5174517 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xe52073f0 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0xe55806f5 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58c5bfd get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5ae90e7 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xe5afb2e3 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe5b0cd05 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0xe5cfa855 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xe6073759 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xe623c2fe gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xe626807a xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0xe6494cb1 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe6569fa2 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xe6635854 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xe663b1dd devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xe669a79f blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6e38fd2 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xe6e5d04a skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xe6e869e0 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6f498bf __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xe6f792e8 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe70fb4d6 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe74a18ca tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe7561638 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xe75b42e6 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe75bba90 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xe7614a3f spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7806162 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe7c2b9e5 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xe7c4919a nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xe7caad8a rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xe7e6a442 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe8012ad4 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe82c1234 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xe845c499 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe84faf24 device_add +EXPORT_SYMBOL_GPL vmlinux 0xe8625698 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe86f51c3 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xe87419c2 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xe898832f policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xe8a0f841 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xe8b9f7b8 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xe8c1e7b3 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xe8c785ad tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe8dbc6c6 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe9123d77 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xe913d258 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xe916d453 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xe92302b1 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0xe93355cf xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe94d497f regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xe9654dfa sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xe96ab923 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xe9735e4a posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xe981c9db cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xe9be95bb power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9dd4eb8 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xea049e30 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea2b97d8 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xea2d2d13 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea49aea2 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xea8de3f8 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea99b795 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xea9bf694 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xeaad41cc request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xeab5b58c rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xeab8086b devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xead91dd9 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xeade13a2 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xeade7c01 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeb14d5bd register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xeb15a058 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xeb1e9222 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xeb301880 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xeb33ec21 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xeb3754bb pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xeb4d63f6 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb505a2b tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xeb5178af serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xeb77b000 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb8668e6 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeb9f572e usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xeba1f230 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebc9acc0 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xebcd0b70 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xebd2164b regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xebe55363 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xebe97bbd add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec1a6f35 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec1d0343 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec35073c platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xec4a363a ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xec522993 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xec58f164 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xecbaafe7 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xecf46c70 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0xed04da19 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xed0ab11a pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xed1e867c scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xed2a238e reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xed2ac980 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xed3d7b40 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xed7471e4 regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0xed8ae45d fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xedb2c74d devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedbda80d __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xedc04d6a usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xedea6f15 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xee04d566 print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0xee080771 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xee111adc wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xee23fe36 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xee48cf87 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xee6416f5 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee782dab posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xee96dce5 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xeea4f512 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xeecc2db6 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef3ce192 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef5e8a04 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef8639f7 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xef89e50c regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefc903c0 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xefcb8bf1 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xeffb8c35 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf010164e class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xf01bd046 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xf02f22ae spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xf0395a55 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf05179aa rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xf054ac97 intel_msic_irq_read +EXPORT_SYMBOL_GPL vmlinux 0xf05641fb regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0849887 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf0918b83 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xf0e2b784 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xf0e89351 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0xf0e9d572 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf1042aff ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xf1120342 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xf1131453 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xf149232d pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xf16b74aa crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf189b1ad rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xf18be9f8 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xf19e35dd security_inode_setattr +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 0xf1befbf0 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xf1c077ba pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xf1d4085f ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0xf2196393 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf244991f pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xf274b674 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf283edb4 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xf2964b80 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xf2977483 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xf29ada59 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xf2a37426 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2e1cfc4 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf30876dc find_symbol +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 0xf31d2202 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xf3284153 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf3424de9 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf3432f5c __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf36e01f1 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf37febc1 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b6aeb6 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xf3b96edf irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3c87590 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xf3dd3ec1 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3ebf4eb arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xf3f06bfe regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3fe0ab5 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xf406df0c crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xf41ca776 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xf438bf10 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xf4403f8c rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xf4435095 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xf45e5c69 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xf480194c blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xf48467c8 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4ede346 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf50035ba regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf53d19a8 rt_mutex_timed_lock +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 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf594b5fe bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5d6c594 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0xf606b894 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xf615386f percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf6319a2b clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xf6423cd8 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xf650b778 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xf67b77c9 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xf69234ac i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0xf6b3847b __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c84ce6 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d1c208 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xf6dced55 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xf6e7bef6 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f363e2 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xf6f591f3 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xf6fb6d46 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf713ba05 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xf724b9e8 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xf74861fb napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xf76401b6 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xf77d7908 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xf784e0ef efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xf7af9bd2 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7c47316 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xf7daadc3 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf7e15e68 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xf7e4d70e uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xf8024e80 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xf82d8edc virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8522808 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf8687e47 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xf868d408 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf877ed4f tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xf87bb0a5 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf8898c68 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf894ba00 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xf8dbf57e usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xf8e459f1 gov_queue_work +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 0xf905e0bb blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0xf911e546 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xf921de2e crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xf92678e6 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf94b5a8d usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf98dbf86 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf998722a blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xf99f8a6a ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a2c85d blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf9a8a152 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf9b7ba62 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d6a0cc wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0xf9d6db18 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xf9d877c6 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0xf9effc61 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xf9fc7f01 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xfa05dd74 platform_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 0xfa4d4888 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xfa587434 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xfa636dbd da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfa6b624b usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xfa6fc81a trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xfa74d5df sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xfa83e60a class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xfa84ec42 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xfab32361 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xfab8026a tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xfabe4b79 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xfb2f7f52 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb48f4cf blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb728c2a crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xfb83db03 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfb9810d6 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xfb9e2563 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xfb9f5ee9 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbf06ed8 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc104626 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xfc10d6a9 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc45ce56 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xfc635d5b scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xfc824fc1 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xfc871236 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfc9c40f8 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xfca6fba6 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xfcb0423a trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0xfcb9c333 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xfccf1aba msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xfce0d8dc devm_reset_control_get +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 0xfd914146 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xfda5728d hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xfda5a1ce mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xfda91bcd fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xfda9a1e3 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xfdfecf4e pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xfe206ac9 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfe46c1d2 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe8a7af7 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xfe9278a7 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xfe93b8c6 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9d8336 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xfeab5bd7 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0xfeb1a489 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed86ed4 file_ra_state_init +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 0xff0f4375 xen_swiotlb_sync_single_for_cpu +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 0xff80028d ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xff95f207 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffc1e426 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xffff4ac7 gpiod_put_array only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/i386/generic.compiler +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/i386/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/i386/generic.modules +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/i386/generic.modules @@ -0,0 +1,4757 @@ +3c509 +3c515 +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +53c700 +6lowpan +6pack +8021q +8139cp +8139too +8250_accent +8250_boca +8250_dw +8250_exar_st16c554 +8250_fintek +8250_fourport +8250_hub6 +8250_mid +8255 +8255_pci +8390 +8390p +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +BusLogic +DAC960 +NCR53c406a +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +abituguru +abituguru3 +ablk_helper +ac97_bus +acard-ahci +acecad +acenic +acer-wmi +acerhdf +acpi-als +acpi_extlog +acpi_ipmi +acpi_pad +acpi_power_meter +acpi_thermal_rel +acpiphp_ibm +acquirewdt +act2000 +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7180 +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +advantechwdt +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-i586 +aesni-intel +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +aha152x +aha152x_cs +aha1542 +aha1740 +ahci +ahci_platform +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-agp +ali-ircc +alienware-wmi +alim1535_wdt +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am53c974 +ambassador +amc6821 +amd +amd-rng +amd5536udc +amd64_edac_mod +amd76x_edac +amd76xrom +amd8111e +amd_freq_sensitivity +amdgpu +amilo-rfkill +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apanel +apds9300 +apds9802als +apds990x +apds9960 +apm +apple-gmux +apple_bl +appledisplay +applesmc +appletalk +appletouch +applicom +aquantia +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_ps2 +arc_uart +arcfb +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3935 +as5011 +asb100 +asc7621 +ascot2e +asix +ast +asus-laptop +asus-nb-wmi +asus-wmi +asus_atk0110 +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati-agp +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas_btns +atm +atmel +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1isa +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcma-hcd +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_aout +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpck6 +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c101 +c2port-duramar2150 +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +ccp +ccp-crypto +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfag12864b +cfag12864bfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipreg +chnl_net +chromeos_laptop +chromeos_pstore +ci_hdrc +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +ck804xrom +classmate-laptop +clip +clk-cdce706 +clk-palmas +clk-pwm +clk-s2mps11 +clk-si5351 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +com20020 +com20020-isa +com20020-pci +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_pcmcia +comedi_test +comedi_usb +comm +compal-laptop +configfs +contec_pci_dio +cops +cordic +core +coretemp +cosa +cp210x +cpcihp_generic +cpcihp_zt5550 +cpia2 +cpqphp +cpsw_ale +cpu-notifier-error-inject +cpu5wdt +cpuid +cr_bllcd +cramfs +crc-ccitt +crc-itu-t +crc32 +crc32-pclmul +crc7 +crc8 +cros_ec +cros_ec_devs +cros_ec_i2c +cros_ec_keyb +cros_ec_lpc +cros_ec_spi +crvml +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +cs5535-mfd +cs553x_nand +cs89x0 +csiostor +ct82c710 +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_cs +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +dcdbas +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +dell-laptop +dell-led +dell-rbtn +dell-smm-hwmon +dell-smo8800 +dell-wmi +dell-wmi-aio +dell_rbu +denali +denali_dt +denali_pci +des_generic +designware_i2s +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9601 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +donauboe +dp83848 +dp83867 +dpt_i2o +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtc +dtl1_cs +dtlk +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc3 +dwc3-pci +dwmac-generic +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +e752x_edac +e7xxx_edac +earth-pt1 +earth-pt3 +eata +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +ec_bhf +ec_sys +echainiv +echo +edac_core +edac_mce_amd +edt-ft5x06 +eeepc-laptop +eeepc-wmi +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efficeon-agp +efi-pstore +efi_test +efs +ehset +einj +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +ene_ir +eni +enic +epat +epia +epic100 +eql +esas2r +esb2rom +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +eurotechwdt +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81232 +fakelb +fam15h_power +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +fintek-cir +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fjes +fl512 +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +fnic +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fschmd +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +fujitsu-laptop +fujitsu-tablet +fujitsu_ts +g450_pll +g760a +g762 +g_NCR5380 +g_NCR5380_mmio +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcm +gdmtty +gdmulte +gdmwm +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +geode-aes +geode-rng +gf128mul +gf2k +gfs2 +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +glue_helper +gluebi +gma500_gfx +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-104-idio-16 +gpio-addr-flash +gpio-adp5520 +gpio-adp5588 +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-cs5535 +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-f7188x +gpio-fan +gpio-generic +gpio-ich +gpio-ir-recv +gpio-it87 +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-pch +gpio-rdc321x +gpio-regulator +gpio-sch +gpio-sch311x +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gr_udc +grace +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gx-suspmod +gx1fb +gxfb +gxt4500 +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdaps +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hecubafb +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hgafb +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-hyperv +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hio +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hostess_sv11 +hp-wireless +hp-wmi +hp100 +hp_accel +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +hsu_dma +hsu_dma_pci +htc-pasic3 +htcpen +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hv_balloon +hv_netvsc +hv_storvsc +hv_utils +hv_vmbus +hwa-hc +hwa-rc +hwmon-vid +hx8357 +hyperv-keyboard +hyperv_fb +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd756-s4882 +i2c-amd8111 +i2c-cbus-gpio +i2c-cros-ec-tunnel +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-eg20t +i2c-emev2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-ismt +i2c-kempld +i2c-matroxfb +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-nforce2 +i2c-nforce2-s4985 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-isa +i2c-pca-platform +i2c-piix4 +i2c-robotfuzz-osif +i2c-scmi +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i3000_edac +i3200_edac +i40e +i40evf +i5000_edac +i5100_edac +i5400_edac +i5500_temp +i5k_amb +i6300esb +i7300_edac +i740fb +i7core_edac +i810 +i810fb +i82092 +i82365 +i82860_edac +i82875p_edac +i82975x_edac +i915 +i915_bpo +iTCO_vendor_support +iTCO_wdt +ib700wdt +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibm_rtl +ibmaem +ibmasm +ibmasr +ibmpex +ibmphp +ichxrom +icn +icp_multi +icplus +ics932s401 +ideapad-laptop +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idtcps +ie31200_edac +ie6xx_wdt +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +ims-pcu +imx074 +in2000 +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int3400_thermal +int3402_thermal +int3403_thermal +int340x_thermal_zone +int51x1 +intel-hid +intel-lpss +intel-lpss-acpi +intel-lpss-pci +intel-mid-touch +intel-mid_wdt +intel-rng +intel-rst +intel-smartconnect +intel-vbtn +intel_ips +intel_menlow +intel_mid_battery +intel_mid_powerbtn +intel_mid_thermal +intel_oaktrail +intel_pch_thermal +intel_pmc_ipc +intel_powerclamp +intel_punit_ipc +intel_qat +intel_quark_i2c_gpio +intel_rapl +intel_scu_ipcutil +intel_soc_dts_iosf +intel_soc_dts_thermal +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +intelfb +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +iris +irlan +irnet +irqbypass +irtty-sir +isci +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it8712f_wdt +it87_wdt +it913x +itd1000 +ite-cir +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +k10temp +k8temp +kafs +kalmia +kaweth +kb3886_bl +kbic +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks0127 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvaser_usb +kvm +kvm-amd +kvm-intel +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l440gx +l4f00242t03 +l64781 +lan78xx +lanai +lance +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bd2802 +leds-blinkm +leds-clevo-mail +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-net48xx +leds-ot200 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-ss4200 +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +leds-wrap +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +logibm +longhaul +longrun +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltpc +ltr501 +ltv350qv +lv5207lp +lvstest +lxfb +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac_hid +macb +machzwd +macmodes +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77693 +max77693-haptic +max77693_charger +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mce-inject +mce_amd_inj +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdacon +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mei-me +mei-txe +mei_phy +memory-notifier-error-inject +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +meye +mf6x4 +mga +michael_mic +micrel +microchip +microread +microread_i2c +microread_mei +microtek +mii +minix +mip6 +mite +mixcomwd +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi-laptop +msi-wmi +msi001 +msi2500 +msp3400 +mspro_block +msr +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwave +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxm-wmi +mxser +mxuport +myri10ge +n2 +n411 +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +nettel +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfit +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni65 +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_common +ni_labpc_cs +ni_labpc_isadma +ni_labpc_pci +ni_mio_cs +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicstar +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +nosy +notifier-error-inject +nouveau +nozomi +ns558 +ns83820 +nsc-ircc +nsc_gpio +nsp32 +nsp_cs +ntb +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nuvoton-cir +nv_tco +nvidiafb +nvme +nvmem_core +nvram +nxp-nci +nxp-nci_i2c +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +old_belkin-sir +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p4-clockmod +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +padlock-aes +padlock-sha +palmas-pwrbutton +palmas-regulator +panasonic-laptop +pandora_bl +panel +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pas16 +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cs5520 +pata_cs5530 +pata_cs5535 +pata_cs5536 +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_isapnp +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sc1200 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc110pad +pc300too +pc87360 +pc8736x_gpio +pc87413_wdt +pc87427 +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcbit +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_can +pch_dma +pch_gbe +pch_phub +pch_uart +pch_udc +pci +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmcia +pcmcia_core +pcmcia_rsrc +pcmciamtd +pcmda12 +pcmmio +pcmuio +pcnet32 +pcnet_cs +pcrypt +pcspkr +pcwd +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +pinctrl-broxton +pinctrl-intel +pinctrl-sunrisepoint +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn544 +pn544_i2c +pn544_mei +pn_pep +poly1305_generic +port100 +powermate +powernow-k6 +powernow-k7 +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +processor_thermal_device +ps2mult +psmouse +psnap +pt +pti +ptp +ptp_pch +pulsedlight-lidar-lite-v2 +punit_atom_debug +pvpanic +pvrusb2 +pwc +pwm-beeper +pwm-lp3943 +pwm-lpss +pwm-lpss-pci +pwm-lpss-platform +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qat_dh895xcc +qat_dh895xccvf +qcaux +qcom-spmi-iadc +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r82600_edac +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-aimslab +radio-aztech +radio-bcm2048 +radio-cadet +radio-gemtek +radio-i2c-si470x +radio-isa +radio-keene +radio-ma901 +radio-maxiradio +radio-miropcm20 +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-rtrack2 +radio-sf16fmi +radio-sf16fmr2 +radio-shark +radio-si476x +radio-tea5764 +radio-terratec +radio-timb +radio-trust +radio-typhoon +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +radio-zoltrix +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rionet +rivafb +rj54n1cb0c +rmd128 +rmd160 +rmd256 +rmd320 +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-bq32k +rtc-bq4802 +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-hid-sensor-time +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-mrst +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20-i586 +salsa20_generic +samsung-keypad +samsung-laptop +samsung-q10 +samsung-sxgbe +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sb1000 +sbc60xxwdt +sbc7240_wdt +sbc8360 +sbc_epx_c3 +sbc_fitpc2_wdt +sbc_gxx +sbni +sbp_target +sbs +sbs-battery +sbshc +sc +sc1200wdt +sc16is7xx +sc92031 +sca3000 +scb2_flash +scc +sch311x_wdt +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_probe +scx200 +scx200_acb +scx200_docflash +scx200_gpio +scx200_hrt +scx200_wdt +sdhci +sdhci-acpi +sdhci-pci +sdhci-pltfm +sdio_uart +sdla +sdricoh_cs +sealevel +sedlbauer_cs +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent-sse2-i586 +serpent_generic +serport +ses +sfc +sfi-cpufreq +sh_veu +shark2 +shpchp +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sim710 +sir-dev +sis +sis-agp +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slicoss +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc-ultra +smc9194 +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1816a +snd-ad1848 +snd-ad1889 +snd-adlib +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als100 +snd-als300 +snd-als4000 +snd-asihpi +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt1605 +snd-azt2316 +snd-azt2320 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmi8328 +snd-cmi8330 +snd-cmipci +snd-compress +snd-cs4231 +snd-cs4236 +snd-cs4281 +snd-cs46xx +snd-cs5530 +snd-cs5535audio +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emu8000-synth +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1688 +snd-es1688-lib +snd-es18xx +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-gus-lib +snd-gusclassic +snd-gusextreme +snd-gusmax +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-ext-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel-sst-acpi +snd-intel-sst-core +snd-intel-sst-pci +snd-intel8x0 +snd-intel8x0m +snd-interwave +snd-interwave-stb +snd-isight +snd-jazz16 +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-miro +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-msnd-classic +snd-msnd-lib +snd-msnd-pinnacle +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-opl3sa2 +snd-opl4-lib +snd-opl4-synth +snd-opti92x-ad1848 +snd-opti92x-cs4231 +snd-opti93x +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcm-oss +snd-pcsp +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb-common +snd-sb16 +snd-sb16-csp +snd-sb16-dsp +snd-sb8 +snd-sb8-dsp +snd-sbawe +snd-sc6000 +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-sis7019 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-dmic +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-max98090 +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rl6231 +snd-soc-rl6347a +snd-soc-rt286 +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5660 +snd-soc-rt5670 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-skl +snd-soc-skl-ipc +snd-soc-skl_rt286 +snd-soc-sn95031 +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sst-acpi +snd-soc-sst-baytrail-pcm +snd-soc-sst-broadwell +snd-soc-sst-byt-max98090-mach +snd-soc-sst-byt-rt5640-mach +snd-soc-sst-bytcr-rt5640 +snd-soc-sst-bytcr-rt5660 +snd-soc-sst-cht-bsw-max98090_ti +snd-soc-sst-cht-bsw-rt5645 +snd-soc-sst-cht-bsw-rt5672 +snd-soc-sst-dsp +snd-soc-sst-haswell +snd-soc-sst-haswell-pcm +snd-soc-sst-ipc +snd-soc-sst-mfld-platform +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-sscape +snd-tea6330t +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-us122l +snd-usb-usx2y +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-vxpocket +snd-wavefront +snd-wss-lib +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +sony-laptop +sonypi +soundcore +sp2 +sp5100_tco +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntpc +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_decpc +speakup_dectlk +speakup_dtlk +speakup_dummy +speakup_keypc +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-nor +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-topcliff-pch +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +ssv_dnp +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stmmac +stmmac-platform +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surfacepro3_button +svgalib +sworks-agp +sx8 +sx8654 +sx9500 +sym53c416 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t128 +t1isa +t1pci +t5403 +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc1100-wmi +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcic +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-hexdump +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +thinkpad_acpi +thmc50 +thunderbolt +ti-adc081c +ti-adc128s052 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timb_dma +timberdale +timblogiw +timbuart +timeriomem-rng +tipc +tlan +tlclk +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmem +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +topstar-laptop +torture +toshiba-wmi +toshiba_acpi +toshiba_bluetooth +toshiba_haps +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_atmel +tpm_crb +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_nsc +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tscan1 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish-i586 +twofish_common +twofish_generic +typhoon +u132-hcd +u14-34f +uPD98402 +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +ultrastor +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +usnic_verbs +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vboxguest +vboxsf +vboxvideo +vcan +vcnl4000 +ven_rsi_91x +ven_rsi_sdio +ven_rsi_usb +ves1820 +ves1x93 +veth +vfio +vfio-pci +vfio_iommu_type1 +vfio_virqfd +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-camera +via-cputemp +via-ircc +via-rhine +via-rng +via-sdmmc +via-velocity +via686a +via_wdt +viafb +video +videobuf-core +videobuf-dma-contig +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocodec +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_ca91cx42 +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmlfb +vmw_balloon +vmw_pvscsi +vmw_vmci +vmw_vsock_vmci_transport +vmwgfx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vsock +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83627ehf +w83627hf +w83627hf_wdt +w83781d +w83791d +w83792d +w83793 +w83795 +w83877f_wdt +w83977af_ir +w83977f_wdt +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +wafer5823wdt +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd +wd7000 +wd719x +wdt +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +winbond-cir +wire +wishbone-serial +wistron_btns +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wl3501_cs +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wmi +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x38_edac +x86_pkg_temp_thermal +x_tables +xc4000 +xc5000 +xcbc +xen-blkback +xen-evtchn +xen-fbfront +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-pciback +xen-pcifront +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xillybus_core +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +z85230 +zatm +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zynq-fpga only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/i386/lowlatency +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/i386/lowlatency @@ -0,0 +1,18874 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0x8b4359c5 kvm_cpu_has_pending_timer +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x254e5667 scx200_gpio_base +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x35a3c008 scx200_gpio_configure +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x8cfa375c scx200_gpio_shadow +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x907665bd scx200_cb_base +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/mcryptd 0x2d7e229d mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit 0xa7e9a159 to_nfit_uuid +EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/acpi/video 0xeb3f0e09 acpi_video_get_edid +EXPORT_SYMBOL drivers/atm/suni 0xa1f57106 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x0e30c430 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x0b7b56d4 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0x3ebe8054 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 0x156424b8 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x1c870b24 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x24e984b5 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x2bb4c7a5 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x2d41bc39 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x3d180ee1 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x50f77ce6 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x5106838e pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x82fdda12 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x907cb5ea paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xde86d69d pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xf0a6eeb6 pi_init +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x333228ad 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 0x72bdf7c1 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xbc4aebbd ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xbff3e92f ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xdc210230 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 0xeaeb71e3 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/nsc_gpio 0x20efd8da nsc_gpio_write +EXPORT_SYMBOL drivers/char/nsc_gpio 0x6292b921 nsc_gpio_read +EXPORT_SYMBOL drivers/char/nsc_gpio 0x64b23047 nsc_gpio_dump +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4417bd69 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7531ac56 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xaf3aba78 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xe5fe6cde st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x867c49b0 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x9431e50d xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc5798daa xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x317009d0 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xa8313e24 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xb422d94b dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xd56baa74 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe95968e7 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xf01acd82 dw_dma_cyclic_start +EXPORT_SYMBOL drivers/edac/edac_core 0x6c12ab75 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x10e8146f fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x155d14ca fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x181962e1 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1b28579b fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2ee67fca fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3138242b fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x45d3f148 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4a5a1ab7 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4ba9f34b fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x603e856b fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x61e0dfff fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x64a1ab03 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6d9fbd21 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7f3b7524 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x84ab125f fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8f62d8c5 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9e7d9c0e fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa8ea858c fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa9e765ed fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb4a48e7 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xce84d216 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd091d0bf fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd1bbf868 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd4f25ed6 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd754aba0 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe58257c7 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/fmc/fmc 0x12cedf7a fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x131020b5 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x2335b48a fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x3611b94e fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x3cf2ecc2 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x7faa518d fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xb1a67659 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0xd33e2c8f fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xe60c1ade fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0xfc802124 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0xfde3e20d fmc_find_sdb_device +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00a0e414 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x010ad814 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01a2be05 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0338dbfe drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x060da0d0 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06240500 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x069116a6 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x073ac899 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07ce92ee drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08c1fd3e drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09e592d4 drm_mode_create_tv_properties +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 0x0b1bf93c drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c999e8a drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ce7a775 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e37dc24 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f333e76 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f76b251 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 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10883249 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1182d5db drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x126b528a drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x130286c6 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x159ad028 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x165e8333 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x166125b6 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x167e01d7 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16e3fdfb drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17168c25 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1717d2d1 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x180e3b22 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x185d870b drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1918f613 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19343384 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19768765 drm_crtc_vblank_get +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 0x1b6197cc drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bdabae6 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c620571 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1caf2bc6 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d25eaac drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d7ed9a3 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d84fd00 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e2bf5b2 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ec58c65 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fd49d3a drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x219347c1 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23293b3d drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2609381f drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27c4d306 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28b9294d drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28c01d6a drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c874480 drm_plane_cleanup +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 0x2fdd4b68 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2feccccf drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x313a031a drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x316e5f3b drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b5a53a drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x329b28b1 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32bded3e drm_atomic_get_crtc_state +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 0x3474800e drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3479b77a drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3530c520 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35d11c6c drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3721484d drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d77b7e drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x387bb8e7 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x393597cb drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39d0d73e drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39d98143 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0ea2ad drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c33f838 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c6df90f drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ccd2e60 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ce3ae16 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e52e0e2 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fea7e1e drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42e2f961 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x463f88af drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46774401 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x468bf514 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46c3065d drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47c8ea74 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x499b5fe7 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a59f3e9 drm_mode_destroy +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 0x50b8de70 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5139cb0d drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51ec8bda drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52f337d8 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x537fd9a8 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x569c8acb drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56a4b3ff drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5708191d drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5734f20b drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58241353 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x584bf790 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b7c90a7 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e377d80 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fdf96b1 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x615ab576 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6332e02e drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6364a30c drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63d23845 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64e4bc47 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6510b5ed drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x652dcf4f drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6635c769 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67c269ef drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x687b5f61 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6883db8c drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6912c213 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a0703e4 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a5bf668 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a8f94b8 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a93edab drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bc198bb drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6da7bcae drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f222250 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f892624 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f8ded93 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ff986b1 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7055413b drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70c63e39 drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70c74104 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71687bc1 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71a88ad0 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x726c2b62 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72efc0bd drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7324c05a drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x748fd477 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x749ce4cc drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74b77e5b drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75703804 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7667b4b6 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x774366bf drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7753d018 drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7828c82b drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79ca75ca drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79f17a53 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a7034b8 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b836d98 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bc7b7ae drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bf2bde1 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c169634 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fe21d77 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81f418e7 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82cf9419 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83b422e0 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x841274fa drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84b2eaaa drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84e6b942 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85cef2b9 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87b31424 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87dcfd76 drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88b77624 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89c72e92 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b8323b1 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c30efcf drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c495eed drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8da79b59 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e2b796e drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ef0b28c drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f51ad6f drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f67d1f8 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fddb694 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ada784 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93169170 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x943cfd4e drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x948ae13f drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96550922 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98ef41c6 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9992ac7f drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ae484d0 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0fdc71 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d7a5839 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e14c886 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1813433 drm_modeset_lock_crtc +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 0xa2f3718b drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3c384b3 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5ab6ccc drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5cc8fcc drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa656ad62 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7594b21 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9fb7662 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaae1b615 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaaea23a8 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae57a62c drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaeddcf4b drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb06c367d drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb099be32 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb09a9376 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb13dcfc6 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb36be239 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb46659fe drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb48fee08 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5dd0648 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6212cf1 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb74ac089 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9d27def drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba8c201f drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbab520b0 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbacc412d drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbae187b7 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbcb41f3 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbce1f8a3 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe42dfdd drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe63d3a5 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe7262a0 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfbebdca drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc05f240e drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc29194bb drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc31e34eb drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc332a4b2 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3f7cb07 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc479ccc9 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc71afb45 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc907ddbb drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9aac1da drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9c36562 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca8e38f4 drm_mode_set_name +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 0xcd223f77 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd4cd47d drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcee3fad4 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd023be4c drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0a1a150 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1ec7b11 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2a54982 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd33d32f9 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd61eefed drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6fcdacb drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8e408d3 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd907d93f drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbea718c drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc50d43d drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc677e91 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdca1b193 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd70a50c drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde801701 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdee77860 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf392a44 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe369b656 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe436905b drm_vma_node_revoke +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 0xe56cf5f4 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5d55bfd drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6342690 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8153c97 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8b11c1b drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea59f9e5 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb08ea46 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb4eeea8 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed0d01de drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed662b3f drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeeabac95 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeec6b592 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef3fed45 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef61eda9 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf01ab95b drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0ec5723 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1a6afb8 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1f4e7e2 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2985b03 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3c6f2af drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf60258e8 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7d80bbc drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7fde5e0 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf80c836c drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf812c6c8 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf89421d7 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a69f59 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9d6efb8 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa07df24 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa3b2819 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa617f20 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaf48b44 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb2d4ca3 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfca4a38d drm_connector_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 0xfe9d0c9c drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff0d3fe8 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff24cdd5 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01a5941a drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x049f364b drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x051e5a14 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x097054da drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bd99317 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c942a09 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cd5cdda drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x108afde9 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12ba3b31 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13f716e8 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1482541b drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17897619 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a2f95d1 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b304975 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ba22ee5 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c35e7e6 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dc3eec7 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fc16d07 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fe85d10 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20a1eb1c drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x234555e6 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2455575c drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24bbb16e drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x254871ef drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25f55f8b drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2637d0cd drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26d99b63 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2863ae4d drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28e20135 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b095eda drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b5df52a drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b863a48 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b96185c drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fe83bf0 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3253c8b3 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 0x34a4392d __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38631020 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38a5b447 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f2ee915 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47c48874 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb15b91 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c88562d drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d1e5b73 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d854b56 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e25fc23 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x515189c1 drm_plane_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 0x558824c7 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55f8df9f drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59ac1c68 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a23087a drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a3a1109 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5afff075 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b07c0e3 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c93bb87 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dd219d6 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x605e374b drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64117184 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66bf2484 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67c650de drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68ca02e7 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a76b237 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fce336f drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x708dc43d drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71c376c5 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x747f1262 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74d108be drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74d1ff66 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7548f37b drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75ad4aec drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7698aa72 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79793ffc drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a1a5c36 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7adad565 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b7b3671 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ea72b78 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f7846b1 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8091ac99 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81e72615 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8232242c drm_dp_dual_mode_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 0x880b6905 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x881bf61b __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8999bfa0 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89c35438 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a9a21e2 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b5fd243 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b88e824 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bef0f90 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95edeb45 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97589cb7 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x976d526a drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9863d6ba drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98b8f3f2 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a045d96 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a655b07 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c42ecf6 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d1ee65b drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e122740 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa03de6c8 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0710db3 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa433c28d drm_helper_crtc_enable_color_mgmt +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 0xa9a6f509 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0fbfcc2 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb14bfa56 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb304addb drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb333293d drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb400f32f drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb52b3696 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6c91d09 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7f5ee0b drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba6c07bf drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba863cb8 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb879855 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc7ec8c9 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1c2f446 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1d7eb2e drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1efbe25 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc41811eb drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc74402a9 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7496a32 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc99cfa1c drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb04613f __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb69baf3 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc28fca7 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce8379ed drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd00c21a9 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd04b9640 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0c405ba drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1f9605f drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd710c3a drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf8cc978 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdffdf31f drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2842b6a drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2d3979e drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe609ecae drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8cef991 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe95bc7ec drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb7855f3 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa1cf6ec drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfacdab33 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb9b4c12 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd8ae9bd drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe82caa6 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01579c8a ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x036e9b78 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0647fbbf ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b5bde68 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f6272e1 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x123d03fa ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x191610d9 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x19b55940 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1abf01f2 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ff09f75 ttm_dma_tt_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 0x28fd44a3 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ef27540 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30d7e8c3 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x35222801 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37d5c546 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x41b04b80 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42f3a8a9 ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x45e92f15 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4716fc6e ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x486fcd19 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4880b9aa ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48becdd3 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4dbc79bb ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x537d1981 ttm_bo_mem_space +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 0x6befa2b2 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c491377 ttm_bo_move_memcpy +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 0x6fd6138f ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7b32d7d3 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e340e39 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f1ab74e ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836d8fd0 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x88646d32 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 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99c358b9 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ac514c8 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b8792ae ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0837071 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa435eacb ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa905248d ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac22246b ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0d5502a ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb4c0f8ef ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3fc7e38 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc855c05d ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcd089d2e ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce9905ce ttm_fbdev_mmap +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 0xd6bfb8a9 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd72bc60c ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7592f01 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda107586 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe4390891 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe79d9c3c ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf39d69d1 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5149fb3 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8123945 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb92e115 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd735906 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfda91c0b ttm_bo_device_release +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x0a6098fd vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x0ac6c550 vmbus_sendpacket_ctl +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xedee4934 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 0x65889434 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 0x234c3151 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x27ac48d5 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x6fa22303 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x4f2a0a24 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x967896dc i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x4625f1a7 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x057e6540 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5fe3d251 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x692161d0 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6b36b41c mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6badf194 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x786c57db mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x793f91ab mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa776511f mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb922afa9 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc3b504c3 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc88dccf3 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xce69fb47 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdda48041 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe5df585e mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe7be8a51 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfed2c40b mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x250995ee st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xd7506a2d st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xa8a72144 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xb664141a iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x2b0777bc devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xbb643b05 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xef6148ee iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf31da52d devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x34606d5e hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x3972cee9 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7a455349 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x960afb37 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xae131bac 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 0xf58020c3 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x4e6f5f51 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xe3e2056b hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xe806e3ab hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xef5aef43 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x080ab815 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 0x7b77dcaa 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 0x880869f7 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x98f7fb0f ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa16f6bde ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb986640b ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbe4c31ad ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xca40d65d ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd4672d35 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x17de2735 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x1bba8d39 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x2a983394 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x806cdd34 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xc2e1cc2b ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x4c7968fd ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x7b482302 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xd03403bb 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 0x17593d33 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x395d8e7e st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4ad62ec3 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4db96653 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4dd95a2a st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x54fc6f49 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6ba47c02 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x76292c8d st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x78b174a2 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7ced8df9 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x848c41d9 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8dfcda30 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa63ed33e st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc12bcac0 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc26dc2ae st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe2beeb87 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfed80596 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x47715926 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xfa837558 st_sensors_match_acpi_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x227701d4 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x1d3655e7 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xfd010c9b st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x21ad3257 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xb00ee66c adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xb7ad82b6 adis_enable_irq +EXPORT_SYMBOL drivers/iio/industrialio 0x1d569b04 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x2df09ab1 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x45da2795 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x48359b7a iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x5119f95f iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x5e9dc646 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x6c58b42e iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x6ccbd9a9 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x802c7c62 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x9569405b iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x9a57e2b0 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x9cd1c605 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xc1bdb080 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xda987b55 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xf5a6b2db iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xfa31b419 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xfa5a4351 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x4e47f06f iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xfa49e2f6 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x4f7a0cab st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xd9ba7628 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x178c1aca ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x2aad87c1 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x7c8ef366 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 0x2298126d rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x26f3b861 rdma_addr_cancel +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 0xc27d83e9 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xdbe66ef5 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x183e8e62 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x24a5b8eb ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2eb33df0 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3727e2ba ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4d06ac6f ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x61d9565f ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x79517934 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7a6572cb ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7f820ddf ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9bc12b92 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9f346654 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xabdd0906 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc90c31e1 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcf101193 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xea004b48 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf15bc47f ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf8107eb7 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfd7befb7 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x061a538e ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07a61e8f ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0901a0ac rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17160edf ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a40fcb3 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d2f482d ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2180e1db ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26b70804 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cffb2a4 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305b07cb ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x362fd4f9 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x363d6524 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b3a1dc7 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c832b04 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cdbd6b1 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d7efd72 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e4a932b ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f0647a8 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41690857 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4297b48a ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42c07791 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44f796e7 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a8a6c8f ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d1d1355 ib_dealloc_mw +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 0x52ad4696 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x564c8dac ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x576941bc 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 0x593c13b7 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59713b9e ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a0b8603 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5feb0eed ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60581545 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x629392e9 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x644b7917 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64ab8843 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68b80d6c ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c8425ad ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6cf840b9 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f779383 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79c648f4 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e6ebf1c ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ea63577 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82bf089a ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83e9e316 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84b45ce7 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87bcb99a ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a679e7b ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bc514c4 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d3ccf91 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dd2be5c ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fa0576e ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x914b2eda ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91df2665 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x933bb9dd ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x950ca2ad ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95b4b595 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95cc2b51 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f91eeb6 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3cba887 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8917e85 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8e8fd97 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae17436d ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4e03dfe ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb853e0f2 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba82f08a ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcdbde4f ibnl_unicast +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 0xc7d7336d ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca0a9aa9 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb40694a ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbdf4ed1 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbff9b6c ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0f5cf4b ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd19652ea ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8f33dcb ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9bcb263 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdabf74a6 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddf20bf5 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfc0b2e1 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe225ec46 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf70e8a34 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf747cfd3 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc18d16d ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfde9ee82 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1a15ecc8 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6a7609e9 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6c0608f2 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 0x7b24d8fe ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7e4fe506 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x840c7569 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x97a25935 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x9b852483 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc3151590 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc98c2146 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xcdd17d7e ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe11549c5 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xedc5cf0c ib_post_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 0x4ee38efc ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5931bdb2 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x631541b7 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6d167933 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc088e846 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd8e76c83 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xdb2b7af9 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf393487d ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf73febda ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6cb6d601 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 0xfc626074 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0261a5e5 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x08fbf18a iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1e5c0370 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5a664407 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5ea79108 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 0x8847c4ad iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8add7e49 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 0x92507e22 iwpm_register_pid_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 0xbae0f5f2 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xca078755 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe25d62db iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe5716aca iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf199025d iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf4b68223 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfca3151d iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0fe42b7f rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x10bf8221 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1b35564c rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x27dc1a81 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2a4451b3 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x31e4bf0c rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x39223906 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x568f417b rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f2f8bf0 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x76459061 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x80fb9a77 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8750959f rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x96e691b6 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9dd06fd7 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc7323907 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xde27f311 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe14a66b5 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeac4504e rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xed9bb58b rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf05abec4 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfd8f52cb rdma_create_qp +EXPORT_SYMBOL drivers/input/gameport/gameport 0x222f9693 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x48bd541f gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x57b0ec42 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6c24a139 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6e5584d6 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6f8269c9 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x97f7c15f gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xbd595a6a gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe1d24a4a __gameport_register_port +EXPORT_SYMBOL drivers/input/input-polldev 0x0d44dfb5 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x540ad7cb devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x6837f9cc input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xa7036dc8 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xb37003bf input_unregister_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x1c34dacb matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x646b8ebd ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xe15d8aec ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xfa1c4043 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x04dc06e4 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 0x19e10ea5 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x588ad89f sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x6ea6d410 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x774b53d7 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa5ed21b1 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfb085c03 sparse_keymap_free +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x03023250 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xe69b2d3b 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 0x351b3ac9 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x48080b6d capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4cbef113 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x59f6d6b5 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x60e93075 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x64f27285 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6ba772f0 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x73c56404 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 0x838e740c capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x87a8b570 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 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x17d7968e b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1de62457 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x288319c8 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3308d297 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x424d58cb b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x43ade381 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x44b86e4f b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x469f82a6 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x613be5bd b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x63c6b922 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7d048d5b b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa5380bfc b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xccfba6c4 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe09b0136 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf306697a b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x1dd2b7b3 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x23f0a27f b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2e6e9d57 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x4019079a b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x60eee883 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6dde2f1d b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x95d73883 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9aedc591 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa878550b 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 0x344bfe90 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x36986ce4 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x5f70298e mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xca8d59cc mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x342052c7 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xbecd3181 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x0eb5d3d5 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 0x0de3f254 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x12b0ec7e isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x2077c89a isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x48709b39 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xdb0595df isac_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x2d004474 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x53b7e7f6 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xc4bd04e2 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 0x0f99cded mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1e4e3ce8 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x213c44ff mISDN_unregister_Bprotocol +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 0x35f2a899 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x44f229f0 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4db600a3 recv_Bchannel_skb +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 0x70e8e5be bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7da2f7b7 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8577a2a9 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9aa0d031 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb0ad9d5c recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb338e3a1 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb5c1875e bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc06ad1d5 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc5c64302 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc9b73f5d mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd11cec77 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd508947c recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd667f23e mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdf2f7ce8 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe32ddf4b get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe9e5a3b1 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfbb39461 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 0x10dc0d06 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6570e607 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7f2a56c0 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 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 0xbada1f62 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 0xd34f4226 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xecf7cef9 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf0a96850 closure_sync +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 0x163ddcfe dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x72c08278 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x77ea9bb2 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xf6dd64ae dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x0aabfed6 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x4c9923d2 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x79995ffe dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8e6365cf dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc40029ba dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xebbc489d dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0x57a66fab raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0673abd1 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0c4cd4b0 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x497d0696 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x51b685c5 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x78d30612 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x82eb2150 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8a623bee flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb630ab14 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe6c03129 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe70c1a01 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xeec42055 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf389a1a4 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf576fd9d flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/cx2341x 0x01ef22e8 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x0cc62d97 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 0x57eaf2cf cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x95c2eff1 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 0x52b29625 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x00280615 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xa573af92 tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0e189de3 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x121e21c1 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1824037f dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e5f0bdd dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2726e54d dvb_ca_en50221_release +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 0x30ad6e61 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x39146606 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ee8cfed dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f4b2bc1 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x509e8bce dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x50b3c0bd dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x550de61d dvb_generic_ioctl +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 0x5c47b112 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6346d016 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x63d8a7fd dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ba2668d dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6f18e587 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70de704a dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7c15257a dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x860fe300 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8bc6533e dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ab4d06a dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa1c33c70 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb2e5dd75 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc645fbc3 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcc4e5b1e dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcede37e3 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8ae2426 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdaf56483 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebd38af9 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xedf7af99 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf3204ddb dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb5edd15 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfca1bfdb dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xc9133beb af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xdfc9f9f1 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xcd6718f3 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x211c786f au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x34de5bf3 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7bbb2e64 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x82e9bce8 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x88f1ab87 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd180f0c8 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdc7d6209 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xedf62315 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf1ed1ad1 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xc6a2df31 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x7ed3b051 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x9e524e54 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x53a61710 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x51cb8288 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x168095e9 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x2813a52f cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x14429f8d cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xcccef434 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x6665071b cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x949a41d4 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x880bb614 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x2b5dbf02 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x390f8c1a cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xd34ce6ae cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6a42c0e4 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x82d5aa06 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xad734047 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xbc90e0af dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xff1063c6 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x28757bf9 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x29f3adaf dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x30acbd22 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x59e762de dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x72d33228 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7b1ef7bf dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x88d47cb3 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8d67fcac dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x94904277 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x959b637b dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xae0bcf3a dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb71d4453 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcbb1d151 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd345193c dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdefce68b dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x4c1503fb dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x06e15a9a dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x831e97fe dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa5fd368a dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xda90afb3 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe9ec9986 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xfc6755be dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x0dfa7b2a dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x4dce7415 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa1b64fbd dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xb2adeb1b dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xb8a617a3 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x93935ee3 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x600b8f00 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8803bc8b dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x95869a3e dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd5ad4ded dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd8a06184 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x50bb3ae7 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x1f150bb7 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xa4d17ea2 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xce0410d0 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x6bc10f87 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xd5c0c550 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xe75bd088 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x26c82b1b isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x8beeb04b isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x9f6eb533 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x650310a0 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x6343f02c ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x03ab750b l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x897bb2f1 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xf2de439b lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x787eb77d lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xaa3dd377 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xa39f9460 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x5d09ecba lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x3ff5cbe4 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x6684bcf3 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x1a72290a lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x6510bec7 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xf0aeb49c m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x9861c04e m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x047cb77b mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xc66e022b mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x235f4001 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x5feaa09c mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x7a31c039 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x23ad43e7 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xc1ef300c or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xc4a6ccd4 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x717f75f9 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xaaa04f83 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x8fd9b178 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x976fb916 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x9c3d6e40 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xffd2b952 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xecf175cf si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xc80e886e sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x9bbb4aaf sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xd6b25e6f stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xba22094f stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x1cea6bdc stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x217ce72c stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xe09cbbc6 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x46df70fc stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x64cf57c3 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x67966fd9 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x4b25226f stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x8ec2f72c stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x1f2d3481 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xe4f27ad0 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x363e2f88 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xb201e7c9 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x10752d90 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xcce06deb tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xf8f5c583 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xeda39abf tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x48c835eb tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xf3e84e08 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x1facec42 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x2321481a tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xa72a2ae1 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x71e8948e tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xd42bea0e ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xc797c2dc ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xa324b160 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xd9aece59 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x4a2ac579 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x14d373f5 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x18953663 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2674a2bb flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3c1f08d1 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6c6313cc flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x796a2d33 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc9c29932 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x1da71caf bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x328d1cbf bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xbdce9aa5 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xfe8c6bfc bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x12b7b4ad bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x64f5c5cb bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xb1ecb605 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3015d0b2 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x39e5a86b dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x428bf15e read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5c08c193 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x695f60bd write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6b8e7dbb dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9670c0ee dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa60f9a04 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc624af9e dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x285c5475 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x019c1367 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x3d44abcb cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xca41dd3f cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd5490bf1 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe24b87f7 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xa1976b17 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 0x08a1826b cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x27b058e1 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6191fdd7 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7820bc0d cx25821_dev_unregister +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 0xcfe43000 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe3a09111 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xef038233 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x4429b16e vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xd1f9a139 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x26018c76 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6538b9b3 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xeb8b93a6 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf861a9c3 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x148ab70a cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x39c30ed8 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x747ea7cc cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x94713d85 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xaade6e20 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xaaed87ef cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xafe7ebde cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0b5702f1 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x25638ce1 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x312ebb7d cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3649cc96 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x461cacdb cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4cfd244c cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5d3e39af cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5efeba75 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x605d47eb cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6bf990ec cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7477905d cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x83aaea7c cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x83b71bbd cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9be45c2b cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa33978bd cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaca56d4b cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaf2466eb cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaf24e3c9 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc2ab34df cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf2e5795b cx88_core_get +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0887db17 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x08a50d00 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x18a09170 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x27f54cdb ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x53e9203d ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x540b04a0 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5486b4eb ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5b931735 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x646bec05 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7ab3b884 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7c644ea3 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa4d35db7 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb1ad8246 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb9614230 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd7cd9d9c ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xda212143 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf8370fd2 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04311147 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x227787e4 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x239e7e7e saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5056b719 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7034542e saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7bfd6716 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x80bba1ab saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9154eae7 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbb2fac67 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdd6b14fb saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf28a41e8 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf31623e7 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x0a2cfb6a ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x5654ba20 videocodec_register +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x863f2f4f videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x9d0deffe videocodec_unregister +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xb814616a videocodec_attach +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x21186916 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x2d2eecdd soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x532306a9 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x5c4cdc11 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x7664e0c3 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x9bad5d58 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa996b338 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 0x005ad021 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x25ca2cb6 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5169c4c3 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x6cfa7311 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x98803f7d snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe4850204 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xeaaa42aa snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x07e8e2d2 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2fe9f7cb lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x510ceff5 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x653399f8 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x85ac5ba2 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x945036df lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb5ab5c88 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc93943c2 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2787febd ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x9da19dea ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x6bee58ae fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xa97e0e4c fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x10389ce9 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x8c6ff57c fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x9a92e881 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0x1b9c1862 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xe260d82f mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x8b59dade mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xb3116dfb mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xc6e834e1 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x972cc70a mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xbf4737cb qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x8e082c18 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 0x73875bc7 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x961a11ad xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x3f8963cf xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x5bbe46cd cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x62fe38d8 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0a06fb48 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1fe08157 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4878c59b dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x54a4c360 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7c717967 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x92288231 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xbbd751a4 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd41fcad4 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdac6691b dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x081ad6f5 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x308f8fb2 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5e3067e5 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x795b4b1b dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa5f21ef5 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xafa1209a dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe9d6a52d 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 0x6ae079c5 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 0x4fe76831 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5f689b50 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x749336ed dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9885dd92 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9e7aebf1 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa6283bf7 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 0xbeaa46fc dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe117326d dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe5baf9fb dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf76cead0 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfa8ed4b1 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x794673bb em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xa4565e61 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x17969b24 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x239c0c2d go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2669ac16 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2bbb788d go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6dda4a53 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8e2fcc83 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb0cbd708 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbdfca316 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc7d2a802 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x05d83a72 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x25005892 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x74df7cdf gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8d721e64 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9deb2e48 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc2b8d52e gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc6cddfd6 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe4c95282 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x6133f921 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xb7e7d966 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xfce86170 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xc38be38a ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xe84ce240 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x43095af9 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 0x61610a6e v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x984de28e v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x196b9770 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x4758a5a0 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x5d51cdaf videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x609782e2 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa9365e54 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xe0fb4f77 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x1456d9d6 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x14c96282 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x1c10bb81 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x494666fa vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x5dcd89b3 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x61d72307 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xc7af8083 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xfe876df2 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 0xaddad266 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x093ba399 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09ef2b5b v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0fe354f8 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x107242bd v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x125cabea v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1873564b video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a1304f0 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20b41f30 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x226de34b v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x24567a6b video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c407632 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ddb298f v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f44b645 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31cafeea v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x39e10ac0 __v4l2_ctrl_s_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 0x412034e4 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x418a0832 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4324bc29 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x469a3587 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x485836db v4l2_ctrl_new_std_menu_items +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 0x56d9edb9 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x596c5800 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59e14f35 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5e33bdec v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x65a5a6cd v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68007202 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69c489b3 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d24c98a v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x70e87aea __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73308019 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x736206a0 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e477d42 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8113dbb3 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x81455154 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8945fd26 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8daf6d9e v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8de46bd9 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x930cb147 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9727067f v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x975bb619 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f0b8211 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9fbbba82 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa30e152d __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac0b2d32 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad6a0713 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xafb75ab8 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb0244eaa v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4392e46 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb9d508d5 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb9fa7a43 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc0357b01 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc162b104 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc3bd2876 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5332d07 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc73afe1f v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc8c5fe08 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce1c78ee v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd75e12a5 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd7810722 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd820aa92 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde3a9e61 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe104ea3e v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3fee51d v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe89005c9 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xea5fff56 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee5ecdb8 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1f72af8 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf47bb046 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/memstick/core/memstick 0x021e84ac memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2d688b02 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x57f6ede9 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x59124b9d memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6dc10f5e memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xad713657 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xaf3d0f30 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc3a79f5a memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xcbe732c7 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xcd8ba33f memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xde2fd754 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfe1f74e8 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0495ecc6 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x05c7fa03 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1257869c mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1a17c120 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x283b424d mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x369b3eb6 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3fc09a13 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4b988f2b mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4fd59123 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4ff3ffdf mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5e885199 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x68b868b0 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6a310c04 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6f5dcafb mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8a5ba7ab mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8d67e456 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8d9a7a7c mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9b17115b mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xab2badff mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb1c8d82e mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbadc3209 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 0xd17dd1c7 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd361be90 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd4589f51 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd54c3ad6 mpt_HardResetHandler +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 0xea58f0dc mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf509d6b9 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf53d57c7 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf6eff228 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0230dded mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0c9697f0 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1bec6fe6 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x292da2c1 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5bc94da4 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5f25dd46 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x72a012d7 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x81750c0d mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x81ac7572 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x843e7db4 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8e885d12 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x947c58b7 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x99bf921c mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbc806bdd mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc67043bf mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc800b532 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xca10627b mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd4353e29 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd5201682 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd98bfddf mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdd0a307c mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf0d4fe3 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe3410336 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe362037c mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xed4aff54 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfe5c7191 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfecc139b mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/mfd/cros_ec 0x180ce9ff cros_ec_resume +EXPORT_SYMBOL drivers/mfd/cros_ec 0x2cdbf83a cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0x538291b6 cros_ec_remove +EXPORT_SYMBOL drivers/mfd/cros_ec 0xbe9e5033 cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/dln2 0x1bb0cca3 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xb24a44ce dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xc0ab1129 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x6ebdbfc4 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x9eab3086 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x24e571a6 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x55a7c455 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5e51d8bf mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6885789a mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x95c2d5e2 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x96921521 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9a40e92f mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb9e57306 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc8a5e77d mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe0acec29 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe3f3879d mc13xxx_get_flags +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 0x5a6cae7c wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xb4b646d5 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x552c4fbc wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x7a3d0d03 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xca4e4d91 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xf874f608 wm8994_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xc0f0bbea ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xf5e3c834 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x075983d1 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x27978351 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x41be0a24 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0xb52a3bf2 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xc2578ff8 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 0x2ab10239 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x3e34d838 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x4be35135 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x5501924b tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x6af09834 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x84dad3e0 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xa40d0763 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xadf9f5af tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xb3f25173 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xc687086c tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xda01594e tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xefc0dbfb tifm_eject +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x9df42d9b mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x087428c8 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x15e32042 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x82a6d072 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa048c8a2 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa0710272 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcd13e061 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xfba08261 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x4610cffb register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xc36f68f9 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xcd2bd34a map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xe94d2f5f do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x52efa419 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x36c74a34 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xf40e8482 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x8f3632bb mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xaa47d624 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/denali 0xe7c36617 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0xedc669c3 denali_init +EXPORT_SYMBOL drivers/mtd/nand/nand 0x36167d9a nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x86e52270 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xb7c08934 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xce12737b nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0xdf8bd58d nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand 0xf3bbfbf9 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x389036ce nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x8d86de76 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xc87bf1de nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x90c8dc8a nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x97eab8ec 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 0x305eecef flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x6c228920 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x8d677b36 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd3a7ef45 onenand_default_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x04440048 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0dea863a arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x10375d03 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1a729d7e alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x95e82a4d arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbee8b157 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xca5dab5c arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcdb87111 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe5953288 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf3ed6d24 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x63aff6af com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x8ea1553d com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xdada9f57 com20020_found +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0bf4ffee __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x18c10efd ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1f112952 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3229bcad ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x36674f8e ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x820b7aeb ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8a8b3173 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xadb1e682 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xde00ea1f ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf4d1df40 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x0d02808b eip_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x27d62a73 eip_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x63a36cb9 eip_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x84f6caa3 __alloc_eip_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x8e34d51f eip_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x99c03fd7 eip_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xa5d60d2c eip_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xb0adb84e eip_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xb89e2f34 NS8390p_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xe2e8392e eip_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xe3757aae eip_close +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x22733523 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x4a9219ef cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x093c5a87 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x191f25d2 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x30dfb127 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3aa3edb3 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5d89383d cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x62b3b151 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7d444538 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x983bada1 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9d9b5328 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9ed65136 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa9d115df cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaf1950d1 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb8538277 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfb7f9ff0 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfbdcea5e cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xffd713c1 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x01fe7bce cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x03bc202e cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0a543713 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x143bdf6f cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x15ca53df cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x20375f8a cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2d7c5ff8 cxgb4_pktgl_to_skb +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 0x3cc3e863 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x405d6e9d cxgb4_l2t_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 0x5d3e7e70 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x65d2d8dd 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 0x6fbe03c3 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6fd7e209 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8ad294d3 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x963652a4 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa434c44d cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa617aff cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaecd371e cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb379b2ae cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb564867d cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc6b2d92c cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xca372589 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcb49bc2f cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd273ac7e cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd6edda88 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8d6af4c cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf4a70b32 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf9db52db t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x58cfe806 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5b7ddf35 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa72e495e vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc65a7d8c vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xdd4d3171 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf6815acb vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x2b9a2eeb be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x3e4db131 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 0x10beeb07 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13565124 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1542787a mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a20d183 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23dd642e mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28830200 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2be0a852 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d15b3b0 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3eb776a5 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51eec313 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5681861d set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c9ea12f mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60c936f6 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6656a026 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68c5e460 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69a8c1d0 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c7f9210 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x720c0be1 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74718cc1 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7dfde287 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fc7cdcc mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99684c4f mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1810533 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2419f7b mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa627f8e7 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa722d246 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7f9b9eb mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb14e04d1 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3fdb10d mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4a2079a mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4e5bffa mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8700a52 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe20e5ef0 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe93fea3b mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb68a4b2 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee6da5a1 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf47923a7 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd3ceaa4 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x044394fb 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 0x102b76a8 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11b286fa mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12e1edb5 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1982a2ce mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20a126e4 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f861456 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f26ea90 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55a146fe mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5670a2b9 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59133f16 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60893663 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6439865f mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6eaf293e mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70cc9832 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72b1f823 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72d59344 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73ddd7ba mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76ded846 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76fd2460 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b318a8c mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7eb82b19 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x800faa02 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81987c18 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85adcea1 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8db171b7 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ff8b745 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9af6943e mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e8e891f mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5a7db95 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac904267 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb607663f mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba9060c2 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc226156 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd54c683 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6935989 mlx5_core_create_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 0xf1b251e6 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/mlx5/core/mlx5_core 0xff0127c0 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x13dd48b7 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x41d916f6 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b81b5f3 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x55b844d3 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x55e09c3a 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 0x5c874959 mlxsw_core_bus_device_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 0xeab23094 mlxsw_core_rx_listener_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 0x874ec41f 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 0x245fc1a0 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6d1dfe6d hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa5919dfe hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa8fc6f62 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xdc21052d hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x014266b7 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x09add1ca sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x09caab2c sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0d5d70c7 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x1f183252 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5993ca71 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7766b17e sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb2552973 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb3627843 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xbc0ad8c2 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 0x065ff95f mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x1d9badcb mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x359f9157 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x593e9058 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x7863ba48 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xa2391c3c mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xa2457de1 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xea3e47a8 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x25f4e9a0 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xc4f04dc6 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x5913031d xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xa0a0a007 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xeabb91ed xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/vitesse 0xa053d7ea vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x1c3a47ae pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x399563ce register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x78d3f60b pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x1484506c sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x01304935 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x853218e5 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x9c814d36 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xad4e5e01 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xd5e321e3 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xd6132a44 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xecfe76fb team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xf3f85c73 team_mode_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x2852d86f usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x67efea31 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x933d0a60 cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0xf2133f2e usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x15d4743b hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8662caa6 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x88825053 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x97d15e38 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x99460c92 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa0816e78 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb52a2855 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb6d9ef2d hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb7cd02f8 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbacdbe2d register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf72b5abc hdlc_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x0da6049f z8530_channel_load +EXPORT_SYMBOL drivers/net/wan/z85230 0x10c78988 z8530_dead_port +EXPORT_SYMBOL drivers/net/wan/z85230 0x24a601c5 z8530_sync_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x39bb251f z8530_sync_dma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x5021ed72 z8530_describe +EXPORT_SYMBOL drivers/net/wan/z85230 0x58679e9c z8530_shutdown +EXPORT_SYMBOL drivers/net/wan/z85230 0x5cd24d29 z8530_hdlc_kilostream +EXPORT_SYMBOL drivers/net/wan/z85230 0x7b33df72 z8530_sync_dma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x8f6482be z8530_queue_xmit +EXPORT_SYMBOL drivers/net/wan/z85230 0xa9ed9a26 z8530_sync_open +EXPORT_SYMBOL drivers/net/wan/z85230 0xb2d9b0b7 z8530_sync_txdma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0xd08c5889 z8530_init +EXPORT_SYMBOL drivers/net/wan/z85230 0xd4ffebf0 z8530_interrupt +EXPORT_SYMBOL drivers/net/wan/z85230 0xda5e8669 z8530_nop +EXPORT_SYMBOL drivers/net/wan/z85230 0xdff4666c z8530_sync_txdma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0xe3d80064 z8530_hdlc_kilostream_85230 +EXPORT_SYMBOL drivers/net/wan/z85230 0xefbc2986 z8530_null_rx +EXPORT_SYMBOL drivers/net/wan/z85230 0xfd3681f3 z8530_sync +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x9a66ff9a i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x0a6539da stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x7a619b8e reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x825b56a3 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x066f52e9 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3582f6ef ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x43219306 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4b87e8fb ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6f30cc9c ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x98741dcd ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xac7a795b ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc0e5016e ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe6ec4235 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xeb78458a ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf5840d72 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf5ab5767 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 0x1511e397 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x26c4729d ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x277fd3fe ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5559708f ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x56b5e60c ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5b939a5c ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7da6c9cf ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x844b7abc ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8933cc6b ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x963d6456 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x99a1a151 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa929771b ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb6dedc77 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd051c482 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe248d8f8 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1e3249ac ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4b4038a0 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4e5b65d2 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x500d7869 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x540d16ac ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8370f1ea 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 0x9343a294 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x93f0a31e ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9ee26747 ath6kl_cfg80211_resume +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 0xd2445534 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf518e69e ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x10fdb5f2 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x12375a67 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1948693a ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2cb1ae37 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3263ef3c ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x338327c6 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x42ce8782 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5bc811b8 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5c33cb60 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x641b1855 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x652603b0 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x66064ce4 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7a4ce191 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7dd4c3b0 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x821a8a74 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8483166a ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8a3ad481 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8ed6a010 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa4ca2c12 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc5eaccca 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 0xd92b04db ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xeec7bedb ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfa11810c ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02b5a31f ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06dc4f75 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b45f972 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x121c707f ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13e4bec5 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x144ee260 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1597d2ae ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17598e25 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18806a36 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c8ea044 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d380435 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fb02a49 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2518cecc ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25d904db ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bd526f7 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c5dcf84 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f559fec ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3327581e ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3620943f ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x366bb2ab ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x384e1e4c ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a2575ad ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3bfccd16 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cc386bf ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x410be430 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x432d5ac5 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x439c640b ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x440bcd20 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x441b9e39 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45080ad7 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48e4ed94 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49dd623e ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b0dddd7 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54ee9a20 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55d0fe25 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58217f18 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x596683bf ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bb0704c ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bfdcf39 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c854e04 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e35ddcf ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61fc4d77 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61fe86e2 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64181bb8 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x686926cf ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6885ee25 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6daec129 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7460db55 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x746f77a1 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x765ebe9d ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7770b8cf ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77a89d47 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77b1b403 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x833130e7 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84b4b218 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a798abc ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e241cfe ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x960da506 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9630dbbb ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96461c0b ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98247f84 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98384dfe ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98ef478b ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9adf4ed6 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3ff9f8c ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5e3fb8e ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7d764d1 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa80d1655 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa0f9215 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xadafdd88 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb59422dc ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb95c7d9d ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9a2a867 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9e3a5ca ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc043d27 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc240052a ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc29da2d0 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc46d0ac9 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4d88fdd ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc57eaea0 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca9de82d ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc8e1f84 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcde8bf19 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd441a552 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd54b3e99 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd88fde60 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9f70423 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe137e094 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe363f7c5 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe37ea0ea ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3e985d3 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe77927a6 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe933f5f4 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebc6cd45 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec8e644f ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec8ee1ec ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xedaca39c ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf041efea ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1930b94 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5240cac ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf67d873d ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfae04ef2 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd2876f9 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd2efdfa ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd1dcb3 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/atmel 0x10d9d2a4 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x9e7f376a init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xdd5b1790 atmel_open +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x01507890 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x02b885b1 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x041ef4bf brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2f21b6c9 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x58aea663 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5b1c1324 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x616267f3 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x96fcdee5 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa4ff0cff brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb9588dce brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc16515d5 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc3032f53 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xf6208a2a brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x014037b5 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x086ac16f hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0c080231 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0f3bc909 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1a8d3ce8 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x230300df hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2f837a62 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3c3c6290 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4284eb16 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4c928ad6 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5a4c4999 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x60d70a58 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x672f9576 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x99bd9638 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9c6390be hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9d57aa72 hostap_info_init +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 0xbb200a7d hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbcc8d3a2 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc48a0d7c hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd413aaf4 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd9746098 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdcc9dc4f hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe325cc2b hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf27efd59 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xffd96437 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x038da7a3 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x23d9cc58 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2521b9a6 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4052c5a5 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x53835707 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6676a696 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x71af74ce libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x720c0045 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7738f3a6 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8127c06a libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8ae749aa libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x96473483 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9f936809 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb2c26e8f libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbcf87cc7 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbdfe2dc3 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd72700f0 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd96fff91 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xebe2a0ed libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf5a33c84 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf97572fd libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x01587ce9 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x02c784ea il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05978a25 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08d4b004 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x09dbfed5 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b0a12c5 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1224fa0b il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x16bb15c7 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x193988fc il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1b22326e il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1baf5f91 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1be0d221 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1e8e8ee1 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1fbfe36c il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x25ddf589 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x29a4d2f8 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2a3d7fc9 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2ec7dbed il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x32be354d il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x33812fca il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x364da4c4 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x38f1880b il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3990b9de il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a28a31b il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3c2f29dc il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d969f97 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3dbd26d6 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3f0f3917 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3fbe4e63 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x404d63f2 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x40bcac3b il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4108406c il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x41a142f2 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x44c4441a il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x45c3cd85 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x47d11129 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4a4d33aa il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4b0a7fa6 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4b2b69fe il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4cc564cd il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x53d4b869 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5748ae1b il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5a859a9e il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5ab2220d il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5c6e487f il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x605d3dc0 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x670f402a il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6eebe1d1 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x74b3d2aa il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x74f6ed45 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7672674b il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x78341f60 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7ca4eff8 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7d919d25 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7dbbdd07 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7e43f018 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7f51fc18 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7fc24129 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x807c6e08 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x80bf7f4a il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x818fdf48 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x824bc288 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x831d9d14 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8a494dbc il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8d4c291c il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8f317137 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9264404b il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9dfa7bc3 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa18d6256 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa2c26bc6 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa66e4b73 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa8566ae6 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa9714dc0 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa976f0ea il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa9f1d33a il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xabf6bcb7 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaf05b9f5 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb129d537 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7c4f9de il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbb0c26e1 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbc501c0b il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc09ec9df il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc627069f il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc7ef7a98 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcafca5de il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcda6fd5b il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd9e893f4 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdd2d7364 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe03bd0f1 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe3b57b7d il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe75988c3 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xed7df7cc il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xedb76751 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf1246a23 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf742d5ff il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf9676ef0 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfbc37d3a il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfe304de8 il_tx_cmd_complete +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 0x068cde2f orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x093b0e5b orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x184ab282 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2293c83d orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3182f9ea orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x48a1c77d orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x59a71f78 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x68ace5d6 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x74730e29 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9e744117 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9f208895 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xaca12fe6 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb53645c9 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd393f797 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xef49e497 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xff1e239d alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xd1e9ed38 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0955d73d rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x12efc4f8 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2a6a193b _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x310841b1 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31b454cb rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x383bb591 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ec4679e rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4da2e1b7 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x53c23daa rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x54f0d504 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5d6c16e7 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5dbd2531 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6b374d1a rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6eb6a01e _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x716c826c _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x72c4e895 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x73969d8b _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x765e4a8d rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x78a50cc6 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7b8da893 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82162add rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x905cc993 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x91829c7f rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x97a9ce7c rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99978a67 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9a35401c rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9f9a3c65 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa0f3db35 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa15d3f2a rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa361fe9c rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa56d7eae rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xada998f2 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xae57906e rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb1e6272e 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 0xc70d50a5 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9651436 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd0b40da0 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd6934c10 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe2add076 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe500178b rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd8f9348 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x2ba552f2 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x351413ab rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x83ec4514 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x8e84fc66 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x21b75c86 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd6611bc9 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf1f59ad7 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xfeb4d3e8 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08c60b76 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0a134224 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ead441f rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x136c2e02 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x166024aa rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b4c4515 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1bb2c72c rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24142a7b rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2993dae1 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x31a59859 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33c01675 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3af53703 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3faf2c58 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5a8c1d10 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7c0240a4 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d79596f rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x929e1158 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x961af980 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 0x9a865ac4 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9faa0ebd efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa66cc079 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaae2facd rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd81b17e1 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda11183b rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb931087 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeaaa0ee9 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed0d1320 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfccf5003 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x47c0fc71 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4cfc2981 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x9265894d wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf02451a5 wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x67eb1e97 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xa3732d71 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xe94b280e fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0x10382d66 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x3dd2c21f microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x04ebe898 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x2c04cda2 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb90f117c nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x137d910c pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xbdaa1b9e pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8bd81439 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xb91857ae s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xe51a789f s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2f75b615 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4d275df4 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6a06f1a0 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x89927973 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x922cd418 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xaed3c332 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc05829b6 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcc4f4a80 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd61c9436 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xed099884 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf0d72ad0 ndlc_send +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0a50bae0 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0cf19137 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1e4719c4 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x212bcae7 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x391ff079 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3b5c89eb st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x541a6c66 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7712036d st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7dd40a74 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8b716f29 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8c4cd1fe st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8e863d31 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x97807620 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa2fff085 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb53fbf82 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc59534e8 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xefbc3e19 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfd0d0554 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/ntb/ntb 0x02a723eb ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x0cf4479c ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x16ec1a87 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x551f0c15 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x9d4a28d3 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xa194292c __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xb8bc096a ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xff759c89 ntb_db_event +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x4888724e nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xb3368bf6 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0xdbe2d0ce devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x0447b7e6 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x07b00fb6 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x123f8753 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x1898ef99 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x1b945c9e parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x1d55b7e7 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x25a5a543 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x2f17b073 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x37777d6b parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x4851b02d parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5d3a555e parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5f08179b parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x60a54de8 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x67ba80ee parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x79b24f81 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x87b49365 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x9364df6e parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x93f45424 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x94b3dc8d parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x99edf49e parport_release +EXPORT_SYMBOL drivers/parport/parport 0x9a346d36 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xba2b9a3f parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xc11a64f3 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xc1bff9c2 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xcc0c6ee0 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xd57c6933 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xd6b45fc5 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xd6cb7829 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xd7acd99b parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xe3ebf3cc parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xed2c491b parport_write +EXPORT_SYMBOL drivers/parport/parport 0xfa934626 parport_find_number +EXPORT_SYMBOL drivers/parport/parport_pc 0x034f434f parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x1bef6864 parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0ac4f8f8 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1ee23f9e pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1f9c4c3c pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x56991be2 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6615d6bd pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x669d17dd pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x698ba1fb pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x719e28f6 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7261db94 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x73032d57 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x75ea76e6 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7d1fe0a0 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x814e587a __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x84eb71a6 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa5a1cd7d pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb83f28ce pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcc96f80b pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd12b5e2e pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf8deed06 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1c568984 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x281f8a08 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x282200b7 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3156373e pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x62a1ff44 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6d746656 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x95da735e pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa0fc103b pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc7fe25d1 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd40f0a56 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfc185197 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xcc131528 pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xff0b8548 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 0x13114c4c pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x61901358 pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0xc19ff689 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0xf31aade6 pps_register_source +EXPORT_SYMBOL drivers/ptp/ptp 0x9eed57cf ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0xb0c1b63d ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0xd23a1108 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0xe1a7f034 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xfcc9379e ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x00ca6192 pch_tx_snap_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x521f171e pch_src_uuid_lo_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x61eb0fbe pch_ch_event_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x6da88535 pch_set_station_address +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x7b99568b pch_ch_event_write +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xb0722ffb pch_ch_control_write +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xd87452c7 pch_ch_control_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xdcd1c592 pch_src_uuid_hi_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xf7cb253f pch_rx_snap_read +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x09aaab1e rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1ec349c4 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x25e26c41 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3a86aaa9 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x415ecf08 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x5acb9ab9 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x63eebed7 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7f223932 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x843c0bf2 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xa33ea7cf rproc_shutdown +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x33e8df21 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0x45ee8fc8 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/53c700 0xb8ffee73 NCR_700_release +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7e555645 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa2d1701d scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xbdb3e7d6 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf591357c scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x019f4ec4 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x15c69d2e fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x25b0c6f2 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4d3a623b fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7078ecbc fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7f35e94c fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9a7ed44e fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb058661d fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb17475d5 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcc2843de fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcf8d032c fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd3898e24 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06ca172d fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0be1aec5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x100aa5f8 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1351c012 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14718517 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14eaaedd fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x184b5247 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x21486b90 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x239168e3 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b110724 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30efbc8a fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a352733 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x451f44b1 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x463b5855 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4aa5a05b fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x51b2c7d3 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x583b5ad9 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x642b5d5d fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x645b049f fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64d11b37 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a8293e3 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78e13396 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8635eabe fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x870dedd1 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x89f12242 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a0d6b98 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d1141f4 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9343a504 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a865c6d fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9fb24d18 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa131135a fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa2c2f8ca fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad136f09 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad636b69 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaf6d3714 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3ba925e fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb51311ab fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb251b7f fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf6d2227 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc55f9f82 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc89fdac5 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc8bce41a fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0a5964c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3a03483 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd68a8d86 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd6ac21f2 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7989e48 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf11ba2b2 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf779c362 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf95a5e82 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x32b7ed1a sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x559f7387 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x68cdb913 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd7afb5de 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 0xd3a287cc mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x015186b3 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0b354c62 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x13df0b7f osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1b5afad5 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1cbc208e osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1cc2bb95 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x240a3e13 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x26c91ff4 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x277c1ce1 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x305a43a2 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x33ab6494 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x370d5e52 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3c47b809 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x45011642 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x46ca6712 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5048042c osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5e915057 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x63c09c42 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x73413a61 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7854e31e osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7b2ffeb5 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x997ff780 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9c791a53 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9cab5ed5 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9e0ae4bb osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9ffc4233 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa7252c1a osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xae4a9b4e osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd63dbe2f osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xda666bf3 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdb02728c osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdb4a1095 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdebba128 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe0508b26 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe4412224 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeaa4797a osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x71fcba61 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x9b56ad8e osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xa5b44191 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0xbd72b0a0 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xbe7f6dd7 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xbf96df46 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x00ad8e23 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0844b1fe qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1afea79f qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x258ff756 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2ed04dc0 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3ca2207f qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4984039d qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5f1f0357 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6a47ca6c qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7bc13cfa qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9f66ac5e qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb4efba80 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3aaf57a2 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x85f4fa56 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x91ae88dc qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb9123995 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xca5fe6db qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe6f53b64 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 0x2abadd17 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x4bf1d969 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xb7eb660c raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x16e4f6fa fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2a1c786b scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x35211152 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4898f630 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4ffd48eb scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x704050d3 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x72844013 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8839d956 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x951196f9 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9e1b331c fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb50e2813 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcd176aa7 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xeca2c50f fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0681f1b3 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0808f831 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x15cf8948 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1a8a5adc sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1d1776f9 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2376a40d sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2b526a0b scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2dc06f84 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5936424b scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x623b83e2 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x67fd8595 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x687e6092 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7449624f sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x74cc30c7 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x81bc1764 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8445a41b sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8e30bbf6 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xad83d57f sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbaa9fec8 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbaf38292 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc550abd7 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcbba0fcf sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcc482404 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd827e7c6 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe34757a4 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf2f0c748 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf513a876 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf56dffac sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x19aeaa17 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5b7241a7 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb7dd6dd3 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf67bedc8 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfad27b7e spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb67814ec srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb811db2b srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xdf11acca srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xec191869 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x1be39bba ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x3c9a32a2 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x708253bc ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x73e1a361 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd0e2edbe ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xe988e320 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf2e51e0c ufshcd_runtime_idle +EXPORT_SYMBOL drivers/ssb/ssb 0x0a9934a6 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x192974b9 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x2d4a4eae ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x42dbb0af ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x54da2ada ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x62d7ddae ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x70527704 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x850ad008 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x8becfb11 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xac97fe7b ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xb393e075 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xd547ffe2 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xe1eff02a __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xe5324917 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xe56a121f ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xe91aecc1 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xebf3a505 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xf6cbafc6 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xfd63cf8c ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xfea0caee ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1d665c31 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2db3b170 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2f23ec46 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x38eaf477 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3b16bba5 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x456010f4 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4e6addcd fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x559629e5 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5a1885b4 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e10a14d fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5f97066e fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x676ae916 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x896542d1 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8e5a96b3 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa0027604 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa9fba030 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb4db5dd6 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc72ca326 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe2d9a4d5 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe62d16a2 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xec0f028a fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf047f362 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf3ec4670 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf69a7475 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xb14332bb fwtty_port_get +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xf8a4c9ad fwtty_port_put +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xe1de75d3 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x6a418f34 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x860a74fb hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xacd6089c hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xbe711e8f hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x036a90ac ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x18c88e3f ade7854_remove +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x5e483550 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x0bc64853 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x020da58f rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06a95916 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0cf4a8b9 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f1ab8f8 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x12a5fa50 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x12ba41cc rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x21f3bf19 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22d39627 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x26a5d8e6 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x26e789b6 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38338bfd rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4336ee4c rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x55cc84f0 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5ae472d5 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5db1f52a rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6328a427 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x665b4072 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66fc77b5 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67c18e9f rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a0cfc97 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6d01d4d0 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7059780f rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x745bddfe rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x75a749e6 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x78293113 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x79d39a68 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b486c5b rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e6e1587 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7f810b5e rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x845d2ea5 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x88d1626b rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x908f795f rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9223a29d rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9aa93be7 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ea610ea rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa100d882 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa140f02b rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaaa82c2c rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xad3db871 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc5bd3f30 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc6c6d7f3 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc9ae12ad rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf1f6e17 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcfb83190 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd4a454ad rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd4bdaf9f free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe160ce82 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe54b1f6a notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeae4ee0c rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef34f501 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x013b0db1 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0976d27f ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x10171b07 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x10d62dca ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x133aef7a notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ddde30c ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1fa263d5 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2464ceff ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x266a9e64 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x27476b7f ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x281d7726 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x289303b7 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x296c4bb8 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31e95ef7 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3bc1a6d5 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3f4ac180 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3fca61d1 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45adc049 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4fe55c04 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x55a1289d ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5966a421 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x59c81f5c ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e4499fe HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x62875cd4 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x634c2fa2 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x638e4b0c ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6a704ef3 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6c9ec08e ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70a367de ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71eb993f ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7b735c60 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x82ab7090 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87939891 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa3269e18 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4df034c ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xac9ff3a1 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb59a2d6f ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb743fa5a ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5a7fd2f ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5af89a4 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcad0dbdd Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xce77ba9a ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf7ddfb4 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcfe715e9 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd36071ea ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdd70d8b3 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe82da6e0 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe9c49eac ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf23827c2 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf500681e SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf8ac067c ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc810959 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfecfea8a ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x03be0b90 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ad8d05e iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ed9efc3 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x256bed30 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2ef1c213 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e459e5e iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5ca6de07 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x616aa97a iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6dc2b13a iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x74a6fe63 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x77b8dd94 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7a34cd4e iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d310199 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa38075a9 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa3c82057 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xab59e1ed iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac733a53 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb126f720 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc3246562 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcbf2e6bf iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd37a3431 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd3e4990c iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd85b550a iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeb48d8c7 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xedc28781 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf593eed4 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfaeeff37 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfc14ae99 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x03697c6f transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x043b9a8f sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x06291b25 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x090bc707 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c2ebdf8 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x153dd167 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x16721b3e transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x1cff0bdd transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x1dfea587 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e93f721 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x1ec34858 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x1ef5d526 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f4b35eb core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x25df9d12 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x329cbcf7 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x37cf648a target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3c9e36e7 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x437fa67e target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x44540e5d passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x45662d1f transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x45e90278 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x4948e33d target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x4969faaf target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x4dec48cb passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e363a80 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x563a6991 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x57365f8e transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x5d154cba target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x635f5dbd transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x640ada85 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x651fd71e spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x69cac58e core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x6b8a1928 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x6dfc34ac target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x71827e4e target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x71c188b8 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x73c1ae52 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x8259b447 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d821740 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x91c680c9 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x9aa08bca spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xa66b6ba0 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xabb04227 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb1ff39a1 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xba3375e3 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xbc82f09d transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xbfe5a7cf transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xc00437cf core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xc52e9194 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc953230a sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xcb3e62da core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc483510 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd17a0802 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd2b948c0 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xd432b185 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd54268bd core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7610332 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xd8b3c8f1 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xdc24bb39 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf4b367a core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xe2901071 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe65a8c79 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xeed9c92e target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf90cbcbb __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf998f03e target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa177f5d transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa6792ac spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xff1dd8ed target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xffe573bf 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 0x6e019341 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xdcf6bf45 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xc9817b2a sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0de27f2c usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x18283afc usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x321cfb88 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x46280d0c usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x51be8a26 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x639fb161 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x65aa2422 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x71d844e8 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x825a0174 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x92969503 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x98c65735 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdbdf207b usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x69269540 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x812e9264 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 0x7ec24e62 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x8429dac3 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x9b6b53c6 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xfe324fc2 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x15836665 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 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 0x890fa89c svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x935ee394 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xae22f223 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xbd9e9bc0 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 0xd6a27404 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef719c60 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/core/syscopyarea 0xce0d8299 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xfd654d94 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x968630d9 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 0x6d9b5692 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 0x580ea02f mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x21ce8db4 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x231ef954 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xbb58cde3 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x5da01d3d matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x77154048 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa83c62ff DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd20e1582 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x1da0ddc9 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xda781ff2 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x210fde5d matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x3ad62559 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8b52441f matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xed14b414 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x4e987a95 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xdc315886 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x56bdbe5b matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x67bdd5a0 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7edfbe21 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc36716cb matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xda0edb60 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x26226b50 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 0x53afbebb w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x5e895c77 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x8efae847 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xc07f4858 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x82d0d9a4 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xd61160ca w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x283b8efe w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x5fd258d5 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x0ce76c92 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x3768356c w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xd991cd7b w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xf169a411 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 0x0de2b3c0 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x1cafaaca configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x2d9a4f92 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x366c489d config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x39d1d8b8 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x3e312b15 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x52836844 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x63fccae0 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x6b23394b config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x7121ccbd configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x7ebcbb39 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x8c974535 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x9cf5adc1 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xa2d8a47d configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0xb7723c64 configfs_unregister_default_group +EXPORT_SYMBOL fs/exofs/libore 0x1788b8ee ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x32ae5f82 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x4aba3d4e ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x61bf31c1 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x626af31f extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x781b6d3e ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x941fa071 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xec3301f4 ore_write +EXPORT_SYMBOL fs/exofs/libore 0xf10e6f95 ore_create +EXPORT_SYMBOL fs/exofs/libore 0xfda8e650 ore_read +EXPORT_SYMBOL fs/fscache/fscache 0x0db396ad fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x16eadb2d __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x171a5d6d fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x1d5b0e7e fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x21a8b67c __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x24b39839 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x30ca4577 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x332bca7c fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x33f38e83 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x3930e833 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x39c7becd fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x3d3e4f87 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x4b807893 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x5555de6d fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x5cb7ce98 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x5df69cd0 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x6cbbbce8 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x832b2e28 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x837c658f __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x8ba1888e fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x92ffed94 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x94275a48 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x98aa1699 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x9b6004cd fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0xace16203 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb745a8f4 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb7f2ccd2 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xb95277b8 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xba74204f __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xd0066a56 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xdbb77f0d __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xdce54c2b __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xe871579f fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xea9797fd __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xed87a209 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xeed29c77 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xf50a4405 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xfb513192 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xfef15001 __fscache_update_cookie +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x084dd91a qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x4ba4b345 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7a1c6313 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x8d5379af qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xe02013d5 qtree_write_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f4d184 lc_seq_dump_details +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 0x7f73a206 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 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 0x0f6f2ce5 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6c688c0e lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x92d8a1fa lowpan_netdev_setup +EXPORT_SYMBOL net/802/p8022 0x352b01f6 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x4c41f50a register_8022_client +EXPORT_SYMBOL net/802/p8023 0x74c57c76 destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0x79cad31f make_8023_client +EXPORT_SYMBOL net/802/psnap 0x3cff38de register_snap_client +EXPORT_SYMBOL net/802/psnap 0x3e004ba6 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x05f45140 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x06fe3ab6 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x0e333471 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x13f4ba20 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x19468218 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x1aed2519 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2120f63a p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x224f6888 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x2378d2c0 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x34122934 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x4438bbaf v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x49bec5dc p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x5232ccbe p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x57bf3bb6 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x5fc31f7f p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x624586a3 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x636a3ed8 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x690e79db p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x6bf5d009 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6cb375ea p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x77aaaa4e p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x80865b96 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x85ae87ab p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x85ecb36a p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x9b15146a p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xa1573515 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa6c8401b p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xaa9245ae p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xacc99c4e p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xada9f09f p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xae7bfed0 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xb4830cb6 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xcb304a7e p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xcbc60a1f p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd1567cce p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xd50963fb p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe08900ff v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xea2428a6 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xef3d0333 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xf02c171f p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfc9a5011 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x0dfb2448 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x3b1bfb54 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x600e6fd4 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xcd2e90da atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x0f53ffde atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x283a9854 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x2e2fd80a atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x2f42c74b deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x3bbbfd8e atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x4c5e396e atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x4dcd3b24 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x53f390dc vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x6bae8ac1 atm_charge +EXPORT_SYMBOL net/atm/atm 0x7260aa57 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x899238b2 vcc_release_async +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 0xb5100272 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xc6836e3c vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x147e3c1c ax25_send_frame +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 0x6d93ad2a ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x6eef175f ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x79da383f ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x8a9bd1dd ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x8c8e68e0 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 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xcc105171 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xf8bc0de2 ax25_find_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x007abb09 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x01c2559d hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x03a27324 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x05bd16d2 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ec6b809 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0f82fda9 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x147ff5d9 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x15c98866 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1f19660e hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a130131 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2bbfbcdd hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x340dd47c hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3675c880 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x38680ddb bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x389e10ab bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3d8688a2 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e876826 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x71da3b1a bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x734e9049 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x789277b0 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7cfeac74 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x85a4fc33 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8f779676 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8f99cff9 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91037ece bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x934cfd7c bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9563f9c4 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa28cb420 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaa745c78 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb15b7faa hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb1cc313b l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf4cbce8 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf7cde5f bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcfb7a03c bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd19ecfd3 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1a630b3 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdbe236ab l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdde6d8aa l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe1aa8568 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeffb637d bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfc9fec6d hci_recv_diag +EXPORT_SYMBOL net/bridge/bridge 0x7ed8f8fa br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1d74ccaa ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xce9a374a ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe44f260a 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 0x2e37926b 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 0x453a21a3 get_cfcnfg +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 0x87a46aa4 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 0xa3b101e7 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xc9089824 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x078a5c43 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x1f42e089 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x35d2db9f can_proto_register +EXPORT_SYMBOL net/can/can 0x3fd7948b can_send +EXPORT_SYMBOL net/can/can 0x9a476ac0 can_ioctl +EXPORT_SYMBOL net/can/can 0xf2f2e6aa can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x0221ff95 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x02c5b547 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x05c8f472 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x07ae2d59 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x07cdda75 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0a79b66f ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x0d1c7a5f ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1533f3d5 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x1d80b575 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x24f7a4e1 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x2898d228 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x2b37e2a7 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x2e5ccc0a ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x2efd8e21 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x31d94f95 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x32612980 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x35084776 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x38cd6349 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3b082429 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x3bb6056e ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x3d162ac4 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 0x426e5dcb ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x5158a221 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x51eab86a ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x55df0a63 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x567078fe ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5be41487 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x5cc8cdb9 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x5e84fa8a ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x5f46dd0e ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x608ec3e9 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x615ee74a osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x62100864 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x624551b2 osd_req_op_extent_osd_data_pagelist +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 0x6c96b72b osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x6cf30b42 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x71978837 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x73572bf6 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x73cba172 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x7439e086 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x755665fb ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x7579513a ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7acd2014 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x7e45a259 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x80ecb75d ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x8186ed7d ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x83c0c6c4 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x919a92d5 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x9504c241 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x9741fe0d ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9ae16c9a osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x9d9fd238 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa01c6321 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xa1c12d49 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +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 0xb427891d ceph_create_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 0xb86f7426 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xbd0b2695 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xbf71fdf9 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xbf9309c0 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0xc0110d6a osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc1975c73 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc60a2139 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc8b1f297 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xd1a21c7f ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd2e6eeaa ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xd381048b ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd60a553e ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xda041a37 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xdd539278 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xddd801a5 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe735c2f0 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xe966a802 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0xea561fd3 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xf297c8f9 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xf37476e1 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xf4b2c473 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0xf4e1c799 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xf4fbf535 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0xf7c5f391 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xfa96becf osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xffb2bdf9 ceph_msg_new +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3214b468 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xa4304003 dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0dd1a304 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2cc672b3 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x44386d66 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x54139441 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6cf62e43 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xab0d02fd wpan_phy_new +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xc9814371 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xdaea50aa fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x340ea6a1 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5fb75aa2 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8f22dfde ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa96e8c5f ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc35d62f6 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xdce73c03 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3485a105 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa73b695f arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xde8384e4 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4ef608b9 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xad7f05c5 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc76bd764 ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x3ae44a37 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xdcfee642 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x168fc6ab udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x889c962d ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcbf6d327 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd3a94e2c ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xda29c921 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x27709ebc ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x550730ef ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9caa8ca5 ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x46b88ef4 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x92a19709 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xa82a41a7 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xc5547825 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x4a01ebf6 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5e2a44e9 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6380e0fc ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6e0da76a ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x74416320 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa6432abd ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xbd0ac917 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc9c4d889 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x0573ce5e irlap_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 0x13e53e5b irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x16473231 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x221471d7 irttp_connect_response +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 0x385847aa irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x397e253c irttp_connect_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 0x61e616a4 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x631b2b72 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6dde94c2 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x70a3f20f hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0x72b7c297 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7ba8fedb iriap_close +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x8f726fba irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x9032b570 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x90998d96 async_wrap_skb +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 0xab9580e4 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xb0ee7d1d async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xb4b855b9 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0xb90d2bcb irlmp_disconnect_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 0xbf34d7ac irttp_dup +EXPORT_SYMBOL net/irda/irda 0xc73092e2 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xd08b4c2c irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0xd38afa83 irlmp_open_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 0xe6dc8d84 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0xeb78333e hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xeb7a9b69 irlap_open +EXPORT_SYMBOL net/irda/irda 0xec242b93 hashbin_new +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf307d7f6 iriap_open +EXPORT_SYMBOL net/irda/irda 0xfa1aa084 irlmp_connect_response +EXPORT_SYMBOL net/l2tp/l2tp_core 0x6cd589bc l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x388bb4ba l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x1a8adea8 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x31612485 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x47b6d871 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x4c045ae7 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x9454720c lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xb210885c lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xb80c7168 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xf89396af lapb_register +EXPORT_SYMBOL net/llc/llc 0x13c107eb llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x28f36a62 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x31636711 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 0x6b366920 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x6e9b73a8 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x8bfbfdf3 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xcb4995eb llc_set_station_handler +EXPORT_SYMBOL net/mac80211/mac80211 0x00cd4b54 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x01bc75aa ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x07db408f ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x0ad1e634 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x0b52cbb6 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x0cf1b81c __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x0dc9b4cc ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x10fd30ce ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x1216aaa6 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x126fa421 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x15237050 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x160672bb ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x1d6d3b3a ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x23904318 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x28c7a95d ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x290168d2 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x2fa76745 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x301075fb ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x39812864 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x3a0732fb ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x3d74fc1b ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x407b18a1 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x4860e1f1 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x48f62672 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x492f5f00 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x51679abc ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x533df1f0 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x5af4aae3 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6109e987 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x6171948c ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x651b9809 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x69c53f7b ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x6aa1da88 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x6d093ca1 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x6d46d372 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x77da3e62 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7927cd29 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x799d0847 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x7a0fafd6 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x81d4da6d ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x83658ae8 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x854a483f __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x85e77bea ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x8a5a74d1 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x8c077529 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x9283e2ae ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x92ae7e15 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x97d17c1b ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x985ad0be ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9aa947bb ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xa4636388 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xa53ee08b ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xa7b544d5 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xaaa9b1d3 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xab1258b6 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xb2142ba3 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xb2c4c448 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xb364424f ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xb3846314 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xb5f445c8 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xba1a2c3b ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xbaa23305 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xbfb3305c ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xc1e011b3 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xc5cd7ce1 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xcb2bdde0 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xd68ce94b ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd75937c2 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xde67a44e ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe273d9ad ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe4ad447f ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xe4d9afc1 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xe759d272 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0xe88403ed ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xe94a087c ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xebb30e17 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xebf067e9 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xf39356c1 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xf4e43530 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xf5d45536 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xf700b7de ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xfb349a7d __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac802154/mac802154 0x03e16f5e ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x3b7dccc3 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x420712bd ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x47264193 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x6a50ba84 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x6b9a83df ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xc316dfce ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xc485cce1 ieee802154_stop_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x07a5abe8 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1332477c ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x166ef357 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4517e104 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6463dfd9 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7aa4fe4a unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9196094b register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9477e1f5 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9805d09a ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb6415bfb ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb9899019 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd5bf666e ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfcf87908 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfd5f7262 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x42d802a2 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x5414ce4d __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xc7fc0509 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x07253409 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x1716a3c1 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x720b4080 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x8ff555ad nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xb9ddc0d9 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xf0b32bba nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/x_tables 0x15354ad2 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x1f4d937a xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x32d8533c xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x3bc89978 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x530f2fa5 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x57806dd0 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x8245f33d xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xb3b325de xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xc4a6a5dc xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xdad12ecb xt_unregister_match +EXPORT_SYMBOL net/nfc/hci/hci 0x1fbc9bb1 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x2c849c51 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x2d24487a nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x45731814 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x55074352 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x6b2a731d nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x84d14886 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x8cf65cea nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x9e5358a7 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xb47942a5 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xbf22cf71 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xc0a7e007 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xcc3a4bb6 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xd486110f nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xd7b359cf nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xd85d973b nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xdb3d84d2 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xdd0a31a5 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xdf16148a nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xed20a806 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xf18594d9 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/nci/nci 0x03df575e nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x06f560a6 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x0d1f5dc4 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x160fdf81 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x1dbed302 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x22fdc229 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x23233c1d nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x23707823 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x405c3cf3 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x50799739 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x5082387a nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x561f9858 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x6a54222a nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x7e69b049 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x8c8ddf07 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x9c53b92c nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x9d2888ad nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x9ddd9837 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xad9546cf nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc098c27a nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xc140e4c2 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xd4058ab3 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xda6d19ba nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xef3e356b nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xf2f69baa nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xf88b6312 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xf927803f nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xfc134b1c nci_core_cmd +EXPORT_SYMBOL net/nfc/nfc 0x17b99fb7 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x38a3c4b4 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x39b37c21 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x40c41c2d nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x41b7dd5c nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x44e2a916 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x48c203f4 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x4c6748a3 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x4f622564 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x54bd00bd nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x5db7eeec nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x671ee46e nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x6fb38790 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x8815d6cb nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xa16b8e00 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xa1ac48fa nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xa1f00d09 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xb3c11b73 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xb625668a nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xbfb5976e nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xd59ab109 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xdbec0537 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xec8635ae nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xed60d927 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc_digital 0x3f97ef09 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x793b0501 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x955381ba nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xf5d5c67b nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x06e93982 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x0957140f pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x527fe5ac phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x70c82b52 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x9211856c phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x96fa03ca pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xb048c0c7 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xc3ed71e1 pn_sock_get_port +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0e57e210 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2468deae rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2b9959eb rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x383a357a rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3c85e9aa rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4984af63 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x59cc7fbc key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x66106ba4 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x872cacd6 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x95eb6e03 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x98bc93e2 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa04d04a4 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xdacb1a75 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xdd89a603 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xdec3ab14 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/sctp/sctp 0xe0590fdd sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x1f7723ed gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2581fda8 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf3b90737 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x55e04c61 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x7e2836c9 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc44c03ba svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0x5682a7aa wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xe3066330 wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x024cacb2 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x06132c4f cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x0718734b cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0c382c9f ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x0eda3501 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1a1be271 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x1a2d35a2 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x1dc37073 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x20d3cbf2 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x21a3fff3 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x26ea8f9d cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x2a7db4e2 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x2ab3eeac wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x2afb5b5d __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x2bde4533 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3006f260 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x31b97424 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x32715e85 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x3713d642 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x393efe3d wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x3b365a59 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x3b49ef27 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 0x40d1cc18 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x4655ead6 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x47dbf4ce cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x53a577de cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x5604c4c0 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x5620ca0e cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x5c4ac606 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x5ed4d413 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x609f0664 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x66f7fe1f cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x67628d4b wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a0fe8e9 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x6c3f5a4f ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7f83804e regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x88885de6 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x88f5c571 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8e97075d cfg80211_roamed_bss +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 0x9c4a0687 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x9e5e9608 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 0xa21a9428 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xa3262c69 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xa533a8e9 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xac8931b4 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xad4d9cef cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xadd9367f __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xb0a30787 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xb428d0c2 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xb5e43b41 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xba3c0663 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xba5058c0 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xbd440673 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xc0c5af50 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc15ef186 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xc3dffc86 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xc5e8f6ac cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc8cd19a0 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xce2b89b1 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xd1757511 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xd547d6cb wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xd5fa4cf6 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xd67d4617 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xd754a322 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xd761c343 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xda4067b3 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xdae9e3df cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdbbeedbb cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xdf704e54 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xe3a2b50c cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xe5d3ca07 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xeb5244cc freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xee7142d3 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf0bd19c3 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf21d79af cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xf4fc7a28 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xf910e1a1 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfa23ea77 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xfbe22076 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xfcf6749b cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xfd2dbfb4 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xfda2ecef cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x02363629 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x323a12fc lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x4d0a37bd lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x560fd21d lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x7c59c3ed lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x8a0bdb10 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL sound/ac97_bus 0x3ca9c9f1 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x26d622bd 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 0x1c93b105 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x31fad560 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 0x94eecbf7 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 0xfb9551c6 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xdc618355 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 0x29a6408e snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x12a1f134 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x176190cc snd_info_register +EXPORT_SYMBOL sound/core/snd 0x17d37d30 snd_power_wait +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 0x1ec33616 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x275f45ea snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x287d020f snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x376d96bb snd_card_free +EXPORT_SYMBOL sound/core/snd 0x380de65c snd_component_add +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3d3e8953 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x42592e74 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x4677dc63 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x52caf961 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x5b5ce7fd snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x63dc78c7 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x656ceea8 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x673eb2db snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x6d7ba834 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x6ed89e45 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x7b912d67 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x8a0181ed snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x8dbae7f0 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x8fa329c5 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x9231b0fc snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x92cfe29f snd_device_new +EXPORT_SYMBOL sound/core/snd 0x9894040d 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 0xa2881be4 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xa451878f snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb358b844 snd_register_device +EXPORT_SYMBOL sound/core/snd 0xb4de3bcd _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0xb881aeec snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xbab96470 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xbf3aaca8 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xc16dd297 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xc962ec76 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xcc2f8c8b snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xd3850a41 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xe07e5a4a snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xe2314c7d snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xe24ab88b snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xe5c94af5 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xe6ed9419 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xe6fdbfa7 snd_cards +EXPORT_SYMBOL sound/core/snd 0xe85efb13 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xf119cdf7 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xf8493fce snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xfa073d0f snd_device_register +EXPORT_SYMBOL sound/core/snd-hwdep 0xa157996f 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 0x092fe579 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x0dcb2c7f snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x12ba76b8 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x1970eaf0 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x1af77ca8 snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0x1b9c4547 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1e967649 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x20424e2a snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x231c7dac snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x233d002a snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x29098014 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x2c8c9432 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x2fe27d69 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x3744bcb5 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x375358a6 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x386a790e snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x39cce708 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x3b91f3af snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3cd07447 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3e5f9eb9 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x445905ed snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x45c65088 snd_pcm_hw_param_last +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 0x53cbbc5a snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x583d5639 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x5a63be96 snd_pcm_lib_preallocate_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 0x6538686a 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 0x703f7d99 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x7e9f91af snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x80434fc5 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x8da292f0 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x901d86c7 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x93cd3d2c snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x972d446c snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x9eb57c6a snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xa002038d snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xaac0f4bc snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xab8978ff snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb0c01e95 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0xb50cfbcb snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbae8f6b2 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xbcca3ba6 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xc09676a6 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xc1ce6fc3 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xc2db6bde snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xc32a5621 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xd8eee2d4 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xe3cc0cc6 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe73d6705 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xecc6e2d2 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xfc3769bd snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x003bdf88 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x391bcf53 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x49c80080 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4d340477 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x55be27da snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5e5b45ed snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7381b819 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7846d6bb snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa236819a snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbe75f257 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc1bdc10a snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xca210dc1 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xccd59dd6 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd8047d50 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe520cc51 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe9852fb8 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf20709da snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf413e82b snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf7efd53e snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-timer 0x0f5656be snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x448fda76 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x4d712a8f snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x5e5e7a19 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x814151cf snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xab26a43b snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xb4e677ac snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xc135f0c4 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xcec04292 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xd75d5a63 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xeaa48cf9 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xee74358e snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xfe784c17 snd_timer_resolution +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x470b12b0 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 0x07a35d38 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x207c9b09 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x214430e3 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x62288998 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa6b2a9f0 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcc911aa2 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe6b418a6 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xef69c5ed snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfa1a525f snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x035a5eec snd_opl4_read_memory +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x156f3d74 snd_opl4_write_memory +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x60759fad snd_opl4_write +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xd742cbe6 snd_opl4_create +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xdb9ecf32 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 0x2f346056 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x471fbf56 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x52e7cad8 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9a95863b snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xba47cedc snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc68a5da5 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xde8ed8a5 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 0xfcba33ed snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfe73d592 snd_vx_dsp_boot +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x05fd5d9d cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x06667fc1 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x08741659 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x111269ff amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x15bfc4ea cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1bba9a31 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1c24b808 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1d6b2b4a fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3ad75982 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3d1d03ce amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x549927f7 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x597b1c42 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6d359e1e avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6ddd5549 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6e275496 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x720fc812 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x78eab384 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7a72e65d iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x822b5031 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8af162c3 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8e31ebbc amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x995f48b7 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa592fdd9 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb4ff03cf fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbf13ef87 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc1b88561 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc767c00b cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd41f3b1e amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe09de4e7 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe1c54a96 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf9b71228 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfc091b88 fw_iso_resources_update +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x598b7e36 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x8be7b526 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x05fbd52f snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0bf8427a snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x50b3e620 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x66509065 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6db8f9bb snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9e681038 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd564500e snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd8350047 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x300ad44f snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x3497bb53 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x6104c580 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x6ed08cdb snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8eef9471 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x9000393d snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x0839cfc5 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x218a5758 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x32479316 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa2287981 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xac51c649 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xd38c4bfb snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x86444522 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xaf22a2fd snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb6806d63 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd577d743 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xecd750c2 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf26c8554 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-i2c 0x247c31fd snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9fdee172 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe20bd786 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xeb1a545f snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xf47a9394 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xfa0df099 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x6218ce90 snd_tea6330t_update_mixer +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0xfa3513a6 snd_tea6330t_detect +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x21572fb8 snd_es1688_reset +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x3e12f33a snd_es1688_mixer_write +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x4aae75e4 snd_es1688_create +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x9317f68d snd_es1688_mixer +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xd05e6782 snd_es1688_pcm +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x13c78b8a snd_gus_use_inc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x182d4702 snd_gf1_dram_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1c1ce117 snd_gus_interrupt +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x30da671c snd_gus_dram_read +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x35457083 snd_gf1_translate_freq +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x356367c5 snd_gf1_alloc_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x3bee089e snd_gf1_write16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x3d6e1014 snd_gf1_stop_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x3f3fce19 snd_gf1_mem_alloc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x46db8d67 snd_gf1_lvol_to_gvol_raw +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x552a55e4 snd_gf1_rawmidi_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x57f39933 snd_gf1_new_mixer +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x5a55ce30 snd_gus_dram_write +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x742376bf snd_gf1_i_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x74e259cf snd_gf1_mem_free +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x76d886f6 snd_gf1_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x8356591e snd_gf1_i_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x8e6bb3df snd_gf1_delay +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x90739d0a snd_gf1_ctrl_stop +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa5839717 snd_gf1_free_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa697d759 snd_gf1_peek +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xad2515f1 snd_gf1_look16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc43a5527 snd_gf1_atten_table +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc740cf1a snd_gf1_mem_lock +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xd92631e6 snd_gf1_write_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xda284634 snd_gf1_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xe16d5a52 snd_gus_use_dec +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xe665656d snd_gf1_pcm_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xe66b96dd snd_gus_initialize +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xe8cd83d6 snd_gf1_mem_xfree +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xebc8db8c snd_gus_create +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xeceedded snd_gf1_i_look16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf63475e6 snd_gf1_poke +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x0d70b5fd snd_msnd_send_dsp_cmd +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x0e096be3 snd_msnd_init_queue +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x24d41ee0 snd_msndmix_setup +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x28480b55 snd_msnd_upload_host +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x365fe06e snd_msnd_enable_irq +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x507596c4 snd_msnd_disable_irq +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x5dc34a56 snd_msnd_send_word +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x5fbbeeb3 snd_msndmix_force_recsrc +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x75026b24 snd_msndmidi_input_read +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x7ba00095 snd_msndmix_new +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xb09b6d4a snd_msnd_pcm +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xb6a6be35 snd_msnd_dsp_halt +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xcad91a23 snd_msnd_DARQ +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xf91ae890 snd_msnd_DAPQ +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0x01430d1a snd_aci_cmd +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0xa27f54e6 snd_aci_get_aci +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x34cf44ab snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6dd9a6c4 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7d3b066d snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x88f31171 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbd66db06 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc5e6f98e snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xcfcae363 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd2a10afa snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf2943707 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfa89e105 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb16-csp 0xe2e5063f snd_sb_csp_new +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x323731b0 snd_sb16dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x4a71e1a6 snd_sb16dsp_configure +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x6a8201d0 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 0x0e441ced snd_sb8dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x31672d72 snd_sb8dsp_midi_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x51987116 snd_sb8dsp_midi +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x6af4d01e snd_sb8dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x05c22848 snd_emu8000_poke_dw +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x20368133 snd_emu8000_update_reverb_mode +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x3e77edaa snd_emu8000_peek_dw +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x4264e40a snd_emu8000_poke +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x530ac9a1 snd_emu8000_dma_chan +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x60d088a6 snd_emu8000_init_fm +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x842b58e1 snd_emu8000_load_reverb_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x9911e210 snd_emu8000_peek +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xcb68aa64 snd_emu8000_update_chorus_mode +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xdac8c211 snd_emu8000_load_chorus_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xe8784de5 snd_emu8000_update_equalizer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x0cff535d snd_wss_mixer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x0e692656 snd_wss_overrange +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x1d9fc77a snd_wss_get_pcm_ops +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x2d9a606a snd_cs4236_ext_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x391d8d6d snd_wss_put_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x398e8ba8 snd_wss_info_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x4a459a89 snd_wss_mce_down +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x5031258e snd_cs4236_ext_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x6e85e465 snd_wss_chip_id +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7747fd42 snd_wss_info_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x798c4f7d snd_wss_put_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7ab65120 snd_wss_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7b202637 snd_wss_interrupt +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xa2d3aece snd_wss_get_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xa9666ccc snd_wss_timer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xd77cfcf3 snd_wss_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xd7ba1d8d snd_wss_create +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xdafd2cca snd_wss_pcm +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xe2426cde snd_wss_get_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xe6844aa8 snd_wss_mce_up +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x14dc33e2 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1584a842 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1aaf463f snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x22b088a7 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4bf2c671 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6455e13a snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x825e52c7 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x828b7f48 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x835ca644 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x91401b0b snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaa77ab74 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xadefe7a0 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc77a0a75 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcb179896 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcdc20cde snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdb2f4a9a snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdba5d677 snd_ac97_bus +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x501b9240 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1666316a snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3e556014 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6464e587 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x82720727 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8375a986 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x83c24668 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x89ec0ced snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xbfd936df snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe5160e0e snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7160763e snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd3040cff snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xe82afc08 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x07a7ea96 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x07daddb6 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x09df2816 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x136226cd oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4103225b oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4f8eead6 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x53ae8965 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7e2a24d8 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x82485aca oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8e8296fb oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8e99cc76 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xac6f5a68 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xac981a78 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb5f906bb oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbc88a162 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd485e913 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd868bc27 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdc36f177 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdd883978 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xedb0cf28 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfc764193 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x109b6f0c snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x380d5d6c snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb71c024e snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc9f5e544 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xfd459e98 snd_trident_stop_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x7d600ff7 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x914ec07f tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0x6600354b sst_dma_new +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xdc045797 sst_dma_free +EXPORT_SYMBOL sound/soc/snd-soc-core 0xb2dd197c snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x1246478d sound_class +EXPORT_SYMBOL sound/soundcore 0x238be85d register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x359460f7 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x62fbbabd register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xa617db11 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xbc2576ee register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2913db7d snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x42d81b95 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 0xb17e4065 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbd760aa8 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xcb9026de snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe787e45c snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/snd-util-mem 0x0e032537 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2328203a snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x366ceb08 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x4b347b9b __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6da505e1 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x77cfa397 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x8fa770d3 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe09f6aef snd_util_memhdr_new +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xc26cc7ba snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL ubuntu/hio/hio 0x17a9e50b ssd_get_version +EXPORT_SYMBOL ubuntu/hio/hio 0x1ce282f4 ssd_set_wmode +EXPORT_SYMBOL ubuntu/hio/hio 0x2776bb5c ssd_reset +EXPORT_SYMBOL ubuntu/hio/hio 0x31cb949f ssd_register_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x510e714e ssd_get_pciaddr +EXPORT_SYMBOL ubuntu/hio/hio 0xb65d696c ssd_set_otprotect +EXPORT_SYMBOL ubuntu/hio/hio 0xc2cbdb18 ssd_submit_pbio +EXPORT_SYMBOL ubuntu/hio/hio 0xc9df577b ssd_unregister_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0xd528ebf7 ssd_bm_status +EXPORT_SYMBOL ubuntu/hio/hio 0xd91874ee ssd_get_temperature +EXPORT_SYMBOL ubuntu/hio/hio 0xebaef1f7 ssd_get_label +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 0x000bafc5 set_pages_wb +EXPORT_SYMBOL vmlinux 0x00110097 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x00267d5b free_buffer_head +EXPORT_SYMBOL vmlinux 0x003d4be7 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x003e3f01 inet_add_offload +EXPORT_SYMBOL vmlinux 0x004c5e94 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x00529721 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x0066651f gnttab_alloc_pages +EXPORT_SYMBOL vmlinux 0x007c8d10 bio_advance +EXPORT_SYMBOL vmlinux 0x00898c53 elevator_init +EXPORT_SYMBOL vmlinux 0x00a66fc2 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x00a74569 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc +EXPORT_SYMBOL vmlinux 0x00c55a00 seq_open_private +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x0104d67e md_error +EXPORT_SYMBOL vmlinux 0x010f4153 pipe_lock +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x0131c66f eth_change_mtu +EXPORT_SYMBOL vmlinux 0x0135b49c tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x0139b504 cpu_current_top_of_stack +EXPORT_SYMBOL vmlinux 0x014d900d dev_warn +EXPORT_SYMBOL vmlinux 0x015077cd bdgrab +EXPORT_SYMBOL vmlinux 0x015b15c8 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x015faf7c sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x018a260d d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x018e1843 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x01ab1e29 bh_submit_read +EXPORT_SYMBOL vmlinux 0x01aba5bc remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x01b94495 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x01c8532c pnp_get_resource +EXPORT_SYMBOL vmlinux 0x01c8e9c2 pci_get_slot +EXPORT_SYMBOL vmlinux 0x01f26255 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x01f46f91 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x020ce2b4 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x02381a80 skb_unlink +EXPORT_SYMBOL vmlinux 0x02542014 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x026ad69f security_task_getsecid +EXPORT_SYMBOL vmlinux 0x0273dfe5 invalidate_bdev +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 0x02b7c9b3 backlight_device_register +EXPORT_SYMBOL vmlinux 0x02d60ffd __sk_dst_check +EXPORT_SYMBOL vmlinux 0x02dd9e99 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x0307162f devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x032d7671 input_close_device +EXPORT_SYMBOL vmlinux 0x032f3ccd simple_readpage +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x034ad67a devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036d3a59 netdev_warn +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x038ffef1 soft_cursor +EXPORT_SYMBOL vmlinux 0x0399a83e proto_unregister +EXPORT_SYMBOL vmlinux 0x03baca28 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x03be1abc sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x03c2e694 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x03cba2b9 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x03cce022 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x03d12df1 netif_skb_features +EXPORT_SYMBOL vmlinux 0x03d19bd7 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x03e9bfc4 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x03ee8087 elevator_alloc +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04160aac mmc_put_card +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x04268c79 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x045da3fb should_remove_suid +EXPORT_SYMBOL vmlinux 0x04644b37 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x04832998 padata_alloc +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04a7b720 vfs_create +EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x04ce8217 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x04cf61a3 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x04d5cad9 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04f4a8cb bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x050043bd tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x0515eade xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x051e5ee3 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05409961 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x056234ed blk_requeue_request +EXPORT_SYMBOL vmlinux 0x0576e59d dev_err +EXPORT_SYMBOL vmlinux 0x05876a0c __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x05898dc1 clear_inode +EXPORT_SYMBOL vmlinux 0x05963a7e single_open_size +EXPORT_SYMBOL vmlinux 0x05b0a1d1 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x05be7fa3 security_path_rename +EXPORT_SYMBOL vmlinux 0x05cd140a vfs_read +EXPORT_SYMBOL vmlinux 0x05e6c45e ihold +EXPORT_SYMBOL vmlinux 0x060e33ec dev_driver_string +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x063adfef neigh_lookup +EXPORT_SYMBOL vmlinux 0x064030bc request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x06407b78 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x0648f2c9 generic_show_options +EXPORT_SYMBOL vmlinux 0x06491b7f mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x0660827a inet_frag_kill +EXPORT_SYMBOL vmlinux 0x0669c2ba lock_sock_fast +EXPORT_SYMBOL vmlinux 0x06771d0d noop_fsync +EXPORT_SYMBOL vmlinux 0x06786f8d blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache +EXPORT_SYMBOL vmlinux 0x06a92852 __sb_end_write +EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x06d27701 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x06fd21fc copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x070f5c71 key_type_keyring +EXPORT_SYMBOL vmlinux 0x0712022a udp_del_offload +EXPORT_SYMBOL vmlinux 0x071ebaa0 netdev_notice +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072a6202 param_ops_short +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x074a33b0 vga_client_register +EXPORT_SYMBOL vmlinux 0x074d2a08 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x075e3e9a param_get_ulong +EXPORT_SYMBOL vmlinux 0x07608604 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x078473a6 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x0785d4db kern_path +EXPORT_SYMBOL vmlinux 0x078822e4 gen_pool_create +EXPORT_SYMBOL vmlinux 0x07974904 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07aa3ec5 inet_shutdown +EXPORT_SYMBOL vmlinux 0x07b256a4 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x07bfcf0f tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07cec2c6 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x07d50a24 csum_partial +EXPORT_SYMBOL vmlinux 0x07d55f75 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x07e0eb31 misc_register +EXPORT_SYMBOL vmlinux 0x07f9e14d remove_proc_entry +EXPORT_SYMBOL vmlinux 0x07fd534b xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x0838710e path_put +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0847fa54 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x086098f1 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x087bca93 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x088bd834 __bforget +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x08a24e4b __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x08aa50f4 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x08e83602 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x092b7441 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x093163de sock_no_bind +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x0982551c nla_put +EXPORT_SYMBOL vmlinux 0x0983f14a param_get_invbool +EXPORT_SYMBOL vmlinux 0x09852427 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09b57591 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x09ebb046 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x0a0e67cb get_user_pages +EXPORT_SYMBOL vmlinux 0x0a212e01 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2b8046 dev_uc_add +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a4948c7 truncate_setsize +EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock +EXPORT_SYMBOL vmlinux 0x0a6f0487 revert_creds +EXPORT_SYMBOL vmlinux 0x0a70f1b0 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x0a718a84 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a84c2b2 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x0a880b8b _dev_info +EXPORT_SYMBOL vmlinux 0x0a9bd3b5 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0acc0ffb swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad72101 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b191665 phy_attach +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b223fa8 inet6_protos +EXPORT_SYMBOL vmlinux 0x0b22aa9f nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x0b385785 release_pages +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b5f452f padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x0b6ae7db param_set_bint +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b80dd76 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x0b9bf59f phy_detach +EXPORT_SYMBOL vmlinux 0x0ba88247 inet_ioctl +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bbca0cf eth_gro_receive +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bca8caf invalidate_partition +EXPORT_SYMBOL vmlinux 0x0bcb3023 current_in_userns +EXPORT_SYMBOL vmlinux 0x0be44ad7 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x0beec064 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x0c06706f follow_down +EXPORT_SYMBOL vmlinux 0x0c124311 genphy_update_link +EXPORT_SYMBOL vmlinux 0x0c1dabb6 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x0c41709c posix_acl_valid +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c6599df __find_get_block +EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0c77c209 end_page_writeback +EXPORT_SYMBOL vmlinux 0x0c8fa0fc xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0ccdf1bc dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x0cd7fabc swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x0cd9dabf elv_rb_del +EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0x0d041a98 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x0d06bd72 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d42544c elv_rb_add +EXPORT_SYMBOL vmlinux 0x0d524b74 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d57bc26 send_sig_info +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d62edda check_disk_change +EXPORT_SYMBOL vmlinux 0x0d7c4b7c sk_alloc +EXPORT_SYMBOL vmlinux 0x0d80ad07 __mutex_init +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da30cca nd_device_register +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x0e064eae blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x0e08e21f xen_biovec_phys_mergeable +EXPORT_SYMBOL vmlinux 0x0e2a910f scsi_execute +EXPORT_SYMBOL vmlinux 0x0e5adb5e led_update_brightness +EXPORT_SYMBOL vmlinux 0x0e609e0b padata_free +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e99a6ff lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0ebe4f7d mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x0ec09feb dev_set_group +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ee779e9 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0eeab28d scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f0d194b clkdev_alloc +EXPORT_SYMBOL vmlinux 0x0f4b0eca nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f4f753e __init_rwsem +EXPORT_SYMBOL vmlinux 0x0f50811e seq_hex_dump +EXPORT_SYMBOL vmlinux 0x0f5b09f1 processors +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f6aa578 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x0f71abcc acpi_device_hid +EXPORT_SYMBOL vmlinux 0x0f74f55f xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f86cbbc kmap_atomic_prot +EXPORT_SYMBOL vmlinux 0x0f8bd307 down_read_trylock +EXPORT_SYMBOL vmlinux 0x0f93823b __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0fdd1063 ps2_end_command +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ffcaf0d pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x10138ac1 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x1018ba13 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x102c56de irq_regs +EXPORT_SYMBOL vmlinux 0x103fe278 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x104b1001 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x105b701d get_fs_type +EXPORT_SYMBOL vmlinux 0x105d0e77 i2c_master_send +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108c0b32 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x108f2422 uart_register_driver +EXPORT_SYMBOL vmlinux 0x10a078cf jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x10c8365f serio_bus +EXPORT_SYMBOL vmlinux 0x10dba3da input_unregister_device +EXPORT_SYMBOL vmlinux 0x10e76660 blk_queue_split +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x11066393 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x115d1156 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x1163c4bd __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x118d9704 iterate_mounts +EXPORT_SYMBOL vmlinux 0x118def31 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11a4594e sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x11afaba3 generic_removexattr +EXPORT_SYMBOL vmlinux 0x11b846f5 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x11dd01ad intel_scu_ipc_command +EXPORT_SYMBOL vmlinux 0x11e35d29 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x11e41686 km_policy_expired +EXPORT_SYMBOL vmlinux 0x11e8c274 dquot_initialize +EXPORT_SYMBOL vmlinux 0x11efe407 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120c6b44 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x12144efa netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x121b4e4b memremap +EXPORT_SYMBOL vmlinux 0x121e88e4 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x122a2943 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x122cf2c2 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x125b462c xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x129a3d1a pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x12a1dfa3 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x12a23835 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x132a4e7e inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x135ed69d rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x13712ead bio_put +EXPORT_SYMBOL vmlinux 0x138be6cd tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x138f5037 mntget +EXPORT_SYMBOL vmlinux 0x1392ff34 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x13b95270 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x13c1e900 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13f25789 netlink_set_err +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f9de34 cpu_info +EXPORT_SYMBOL vmlinux 0x13fd2885 cdrom_open +EXPORT_SYMBOL vmlinux 0x1413f87a backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x1431952a blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x1433a410 mdiobus_read +EXPORT_SYMBOL vmlinux 0x1439b52b param_ops_invbool +EXPORT_SYMBOL vmlinux 0x14aa17a8 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x14cdf3d3 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14db77cc fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x14f09623 key_alloc +EXPORT_SYMBOL vmlinux 0x150389d6 acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0x15214c4b phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x15229189 dump_skip +EXPORT_SYMBOL vmlinux 0x15305e07 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x1533b415 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x15600866 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x156414e3 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock +EXPORT_SYMBOL vmlinux 0x15712ebb tty_write_room +EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x157b199b tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x157f9df6 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x159d2e87 set_wb_congested +EXPORT_SYMBOL vmlinux 0x159fbdc0 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15d9b22c netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x15f0f56a __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x1612e2c9 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0x1617edb8 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x163a70c1 tty_register_device +EXPORT_SYMBOL vmlinux 0x1650098b xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x16762a6a clkdev_add +EXPORT_SYMBOL vmlinux 0x167b398f skb_seq_read +EXPORT_SYMBOL vmlinux 0x167d4684 __get_user_pages +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete +EXPORT_SYMBOL vmlinux 0x168cf911 nla_reserve +EXPORT_SYMBOL vmlinux 0x16921303 inode_change_ok +EXPORT_SYMBOL vmlinux 0x16958715 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x16ab8a1d __napi_schedule +EXPORT_SYMBOL vmlinux 0x16dc4d1f fence_init +EXPORT_SYMBOL vmlinux 0x16dcd699 get_gendisk +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16f2d99c ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x16f4e923 sock_register +EXPORT_SYMBOL vmlinux 0x16fd1e37 d_splice_alias +EXPORT_SYMBOL vmlinux 0x16fd66ba pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x172cce67 fget +EXPORT_SYMBOL vmlinux 0x1730bb84 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x173141d3 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x17411a75 neigh_for_each +EXPORT_SYMBOL vmlinux 0x17470b99 pci_bus_type +EXPORT_SYMBOL vmlinux 0x1761941d tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x1766ba09 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x176ae5ed sock_wmalloc +EXPORT_SYMBOL vmlinux 0x1778cf40 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x1791b0d3 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock +EXPORT_SYMBOL vmlinux 0x179da7c4 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x17a79376 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x17a9b6c3 dev_load +EXPORT_SYMBOL vmlinux 0x17abd76e dquot_destroy +EXPORT_SYMBOL vmlinux 0x17b00219 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f9e6bc xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x17fcb17a vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x1811898f mount_single +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183f18e2 phy_device_remove +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x1886e28e fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x18965c97 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18ad450f posix_test_lock +EXPORT_SYMBOL vmlinux 0x18b1e72a blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x18b955fb xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x18d5d095 fb_blank +EXPORT_SYMBOL vmlinux 0x18d96501 atomic64_dec_if_positive_cx8 +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x190862fd swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x1915967e eisa_bus_type +EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x193c8d77 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x194ce15a led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0x1957a17e uart_suspend_port +EXPORT_SYMBOL vmlinux 0x195b46d3 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x195ec3ba add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x196c5916 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x19908b57 simple_follow_link +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a1474c wireless_spy_update +EXPORT_SYMBOL vmlinux 0x19b200e8 dma_find_channel +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c9dfa6 user_revoke +EXPORT_SYMBOL vmlinux 0x19e1b29e dma_sync_wait +EXPORT_SYMBOL vmlinux 0x19eaa4eb alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x19fc1aff alloc_disk +EXPORT_SYMBOL vmlinux 0x19fcb69a netif_rx +EXPORT_SYMBOL vmlinux 0x1a0338e2 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x1a090f42 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x1a339622 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x1a3550d5 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x1a360a13 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a534b7c abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x1a5407d7 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1ac42f25 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x1ae09f75 _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x1ae59e8e kill_block_super +EXPORT_SYMBOL vmlinux 0x1ae6a845 tty_throttle +EXPORT_SYMBOL vmlinux 0x1ae84582 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x1ae96811 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x1ae9dec5 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x1aef0dbc blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0202da pipe_unlock +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b2b2ab1 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x1b53e7ab skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b7a805f ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8a1355 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x1b8b8179 input_set_keycode +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b94a18c dquot_acquire +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bbc1064 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x1bcaddd1 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock +EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states +EXPORT_SYMBOL vmlinux 0x1c18a76a blk_make_request +EXPORT_SYMBOL vmlinux 0x1c26607b lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x1c6bda96 seq_puts +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1c9351f7 phy_connect +EXPORT_SYMBOL vmlinux 0x1ca29f44 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x1caf106b skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x1cb59884 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x1cbe8c80 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x1ccf09b5 blk_start_queue +EXPORT_SYMBOL vmlinux 0x1cee0d05 d_instantiate +EXPORT_SYMBOL vmlinux 0x1d1758fd __nla_put +EXPORT_SYMBOL vmlinux 0x1d6209f0 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x1d7a72f2 tso_start +EXPORT_SYMBOL vmlinux 0x1d965bbe skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de66458 vfs_mknod +EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0x1ded99dd jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e3060e5 devm_gpio_request +EXPORT_SYMBOL vmlinux 0x1e45adb9 bioset_create +EXPORT_SYMBOL vmlinux 0x1e48150a mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x1e631c63 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e70cd42 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x1e9df5cf finish_open +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ebc36d7 acl_by_type +EXPORT_SYMBOL vmlinux 0x1ebe7825 pci_find_bus +EXPORT_SYMBOL vmlinux 0x1ec5dd3e wireless_send_event +EXPORT_SYMBOL vmlinux 0x1ecb5592 pci_bus_put +EXPORT_SYMBOL vmlinux 0x1ed12f01 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x1edca132 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x1ee63cd4 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x1ee9f261 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x1ef1aa58 register_gifconf +EXPORT_SYMBOL vmlinux 0x1efe0caf ppp_input_error +EXPORT_SYMBOL vmlinux 0x1efe95b0 dquot_commit +EXPORT_SYMBOL vmlinux 0x1f0a1db8 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x1f1a2f0c napi_disable +EXPORT_SYMBOL vmlinux 0x1f28ede1 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x1f2c049b param_set_uint +EXPORT_SYMBOL vmlinux 0x1f44fb0e rtnl_unicast +EXPORT_SYMBOL vmlinux 0x1f49b526 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x1f55263e sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x1f57d75f pci_enable_msix +EXPORT_SYMBOL vmlinux 0x1f5e5f2d padata_add_cpu +EXPORT_SYMBOL vmlinux 0x1f704280 iunique +EXPORT_SYMBOL vmlinux 0x1f77d4dc set_groups +EXPORT_SYMBOL vmlinux 0x1f7bea98 request_firmware +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f816b9f nf_log_register +EXPORT_SYMBOL vmlinux 0x1f97bc70 blk_rq_init +EXPORT_SYMBOL vmlinux 0x1fa4164a fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x1fb95e7e d_make_root +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07095 netdev_features_change +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 0x1ff8d585 i2c_transfer +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 0x202f4e92 acpi_extract_package +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x20561055 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x207315bf uart_resume_port +EXPORT_SYMBOL vmlinux 0x2075a9bf devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x2099841e pnpbios_protocol +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x20b83dac padata_do_serial +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20c6192f intel_scu_ipc_ioread32 +EXPORT_SYMBOL vmlinux 0x20cf90ac cdev_add +EXPORT_SYMBOL vmlinux 0x20dc1b8f serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20e14e86 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x20e970b8 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20f2a202 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x21112918 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x2124ad30 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x2125dd05 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x212a1a0c __seq_open_private +EXPORT_SYMBOL vmlinux 0x2134765a km_policy_notify +EXPORT_SYMBOL vmlinux 0x21514f2d eth_mac_addr +EXPORT_SYMBOL vmlinux 0x2161be9a deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x2168f1a1 vm_insert_page +EXPORT_SYMBOL vmlinux 0x216d756c xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x216dc0f3 follow_up +EXPORT_SYMBOL vmlinux 0x217fb6f6 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x21a701fe fence_signal +EXPORT_SYMBOL vmlinux 0x21a9c264 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x21aea392 seq_vprintf +EXPORT_SYMBOL vmlinux 0x21b251d3 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x21b995f7 pci_request_regions +EXPORT_SYMBOL vmlinux 0x21d8566a tso_build_data +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e57313 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get +EXPORT_SYMBOL vmlinux 0x22023f56 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x2202e6da generic_getxattr +EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x22159845 fs_bio_set +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222ea20e fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x2249950d kmap +EXPORT_SYMBOL vmlinux 0x224ed6b7 irq_to_desc +EXPORT_SYMBOL vmlinux 0x22516c07 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x225916d2 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x227477fd vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x22808e65 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x22921b24 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b5c8dc poll_initwait +EXPORT_SYMBOL vmlinux 0x22c51e8b posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x22dd53c7 iput +EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x2326f3e8 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2338cb90 register_qdisc +EXPORT_SYMBOL vmlinux 0x23450ead input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x23517db4 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x2366e96d set_posix_acl +EXPORT_SYMBOL vmlinux 0x2374d7c8 __free_pages +EXPORT_SYMBOL vmlinux 0x238c1f26 seq_lseek +EXPORT_SYMBOL vmlinux 0x238c4815 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23a7931d get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c04e57 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23df8b66 tty_do_resize +EXPORT_SYMBOL vmlinux 0x23dfea1b inet6_ioctl +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2417a97d xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x2423673a inet6_add_offload +EXPORT_SYMBOL vmlinux 0x24377590 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x244c979a max8998_write_reg +EXPORT_SYMBOL vmlinux 0x24537bb7 cpu_tss +EXPORT_SYMBOL vmlinux 0x2458cd01 unload_nls +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2477b542 netif_device_attach +EXPORT_SYMBOL vmlinux 0x2480d6e3 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2491bf6a locks_free_lock +EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x24a1eda3 bmap +EXPORT_SYMBOL vmlinux 0x24d28201 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x24f3285b mpage_writepage +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x2502972a jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x256e4dc7 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x257ad848 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25880d90 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x2594d29c dev_deactivate +EXPORT_SYMBOL vmlinux 0x25a7786d swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x25b9f3de may_umount +EXPORT_SYMBOL vmlinux 0x25c7dd52 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x25cec487 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x25d7f078 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x260f97fa pci_disable_msix +EXPORT_SYMBOL vmlinux 0x26205e2e blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x26255bc9 ether_setup +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x264a482d scsi_device_put +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x26510a4b phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x265d940f mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x2672fb5d generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x268cc6a2 sys_close +EXPORT_SYMBOL vmlinux 0x268fb0c0 vga_tryget +EXPORT_SYMBOL vmlinux 0x2698f7d7 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x26a4d828 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x26aa4f60 iov_iter_init +EXPORT_SYMBOL vmlinux 0x26ab46bd mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26bcfa9c acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create +EXPORT_SYMBOL vmlinux 0x26d6b633 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26ecc739 down_read +EXPORT_SYMBOL vmlinux 0x270d0e73 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x2717a359 kernel_accept +EXPORT_SYMBOL vmlinux 0x27189167 abort_creds +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 0x2772dc60 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x27761d3a sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x277a1629 pci_restore_state +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove +EXPORT_SYMBOL vmlinux 0x278ca4b0 udp_set_csum +EXPORT_SYMBOL vmlinux 0x27a0f55d skb_pad +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27af594c posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x27b7ae13 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27d69ed9 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x28042f95 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x2814dc43 inode_init_once +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x282b2801 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x282d6c32 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x283ad00d security_inode_permission +EXPORT_SYMBOL vmlinux 0x283d852c devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x284c02e5 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x28541490 d_obtain_root +EXPORT_SYMBOL vmlinux 0x285824a6 blk_run_queue +EXPORT_SYMBOL vmlinux 0x28678b55 tty_kref_put +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28b715a6 isapnp_cfg_end +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x2938be3f vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x294fb1c3 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x2952eee2 ata_link_printk +EXPORT_SYMBOL vmlinux 0x2952f678 pci_match_id +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x2960c69c x86_hyper_xen +EXPORT_SYMBOL vmlinux 0x296ee616 PDE_DATA +EXPORT_SYMBOL vmlinux 0x29a2cd9c ipv4_specific +EXPORT_SYMBOL vmlinux 0x29cad4f6 kmap_to_page +EXPORT_SYMBOL vmlinux 0x29ef045e scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x29f537ab netdev_printk +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a048183 sock_release +EXPORT_SYMBOL vmlinux 0x2a054fb6 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x2a19e892 do_splice_from +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a54ff98 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x2a5def2f intel_scu_ipc_iowrite32 +EXPORT_SYMBOL vmlinux 0x2a67aada vfs_link +EXPORT_SYMBOL vmlinux 0x2a8ad21a kobject_set_name +EXPORT_SYMBOL vmlinux 0x2a97c750 devm_release_resource +EXPORT_SYMBOL vmlinux 0x2a9925f0 input_inject_event +EXPORT_SYMBOL vmlinux 0x2a9c53c5 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aab6ca1 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ab87ac6 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x2aca6302 __serio_register_port +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b461f0f sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x2b4954c2 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x2b608b1e iget_locked +EXPORT_SYMBOL vmlinux 0x2b7593aa __dquot_free_space +EXPORT_SYMBOL vmlinux 0x2b79b1f3 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x2b7a78ba pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x2b913a8b seq_open +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2ba8a479 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c11a8bd pci_iomap_range +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2d9bc1 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x2c2f52ef pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x2c312130 mdiobus_write +EXPORT_SYMBOL vmlinux 0x2c37ecea tcp_connect +EXPORT_SYMBOL vmlinux 0x2c42c84d mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x2c948dbd get_super_thawed +EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x2ca9db5a elv_rb_find +EXPORT_SYMBOL vmlinux 0x2cc40ecf fence_remove_callback +EXPORT_SYMBOL vmlinux 0x2d06ed5c vga_switcheroo_set_dynamic_switch +EXPORT_SYMBOL vmlinux 0x2d130e1f pneigh_lookup +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x2d2d48af rtnl_notify +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d37342e cpu_online_mask +EXPORT_SYMBOL vmlinux 0x2d6044df swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x2d71dba7 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x2d7e8d32 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x2d955cd8 dev_addr_del +EXPORT_SYMBOL vmlinux 0x2db93ba3 new_inode +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2dd706cc nvm_put_blk +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2df01b40 cdrom_release +EXPORT_SYMBOL vmlinux 0x2dfb5087 bio_add_page +EXPORT_SYMBOL vmlinux 0x2e139cbd kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x2e19727d kill_anon_super +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e288ced acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x2e2c3a76 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e2dc3aa __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x2e73f73a pnp_is_active +EXPORT_SYMBOL vmlinux 0x2e76bcc0 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x2eb821c2 sock_init_data +EXPORT_SYMBOL vmlinux 0x2eba7b15 devm_clk_put +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ed1e566 set_pages_uc +EXPORT_SYMBOL vmlinux 0x2ed9cb83 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x2eea14bb pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x2eecabb4 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2efd0263 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x2f013419 dquot_alloc +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f0d78e0 con_is_bound +EXPORT_SYMBOL vmlinux 0x2f197a17 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x2f19fb2c __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x2f1ae8f9 bio_map_kern +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f4ea137 dst_init +EXPORT_SYMBOL vmlinux 0x2f509cab get_cached_acl +EXPORT_SYMBOL vmlinux 0x2f6a4d06 scsi_host_put +EXPORT_SYMBOL vmlinux 0x2f9243d2 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x2fa8e37c mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x2fb4b599 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fc75a20 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x2fd07494 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x3005edd2 __elv_add_request +EXPORT_SYMBOL vmlinux 0x30081e76 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x300b0332 param_get_int +EXPORT_SYMBOL vmlinux 0x300bc10d vm_map_ram +EXPORT_SYMBOL vmlinux 0x301b70a5 dump_align +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x3035f79c __quota_error +EXPORT_SYMBOL vmlinux 0x306b9e25 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x308a952a pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a22541 arp_send +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b04526 ida_init +EXPORT_SYMBOL vmlinux 0x30b35747 stop_tty +EXPORT_SYMBOL vmlinux 0x30c3d516 lockref_put_return +EXPORT_SYMBOL vmlinux 0x30d23640 vga_switcheroo_init_domain_pm_optimus_hdmi_audio +EXPORT_SYMBOL vmlinux 0x30d4cad1 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x30dadc2a kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x30dc47bb param_ops_bool +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f688a7 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x310f3a1c nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x31231893 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x31254e6f ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x3142349c dev_set_mtu +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x316da447 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31aaec24 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x31b11772 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x31b3b4d8 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x31b3cfc1 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x31bb075e mutex_lock +EXPORT_SYMBOL vmlinux 0x31d94085 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x31e36b30 dquot_quota_off +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 0x320ee43d serio_open +EXPORT_SYMBOL vmlinux 0x3226a2ef vme_slave_request +EXPORT_SYMBOL vmlinux 0x322e71b6 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x323b7020 agp_bridge +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x326b02d9 skb_pull +EXPORT_SYMBOL vmlinux 0x3292a61e i2c_del_driver +EXPORT_SYMBOL vmlinux 0x32b5fa2f mem_section +EXPORT_SYMBOL vmlinux 0x32b896ec dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0x32cb662c skb_dequeue +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e4cd39 __ht_create_irq +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32eb1a51 locks_init_lock +EXPORT_SYMBOL vmlinux 0x32eedf61 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x331cb492 ping_prot +EXPORT_SYMBOL vmlinux 0x33424103 vme_bus_num +EXPORT_SYMBOL vmlinux 0x3382f693 param_set_copystring +EXPORT_SYMBOL vmlinux 0x339ab919 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33ea0b19 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x33ec033b tcp_splice_read +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x3408ed56 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x340f78c5 generic_make_request +EXPORT_SYMBOL vmlinux 0x342f60fe apm_info +EXPORT_SYMBOL vmlinux 0x3439fc7e skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34c878e5 tcp_child_process +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f77121 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x34f87804 kunmap_high +EXPORT_SYMBOL vmlinux 0x35071cd4 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x352d87b6 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x352f5599 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x3530eb85 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x353c9cd9 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x3549a64d genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x358f563f kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x35a29de3 phy_disconnect +EXPORT_SYMBOL vmlinux 0x35a7cf5a tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ad1b0d remove_arg_zero +EXPORT_SYMBOL vmlinux 0x35b8b5a2 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x35c13644 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x35e10803 inet_getname +EXPORT_SYMBOL vmlinux 0x35fb5a4d unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x3609fb1c scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3610c814 vfs_setpos +EXPORT_SYMBOL vmlinux 0x363de83a sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x364500ac dm_kobject_release +EXPORT_SYMBOL vmlinux 0x36611ae6 dump_truncate +EXPORT_SYMBOL vmlinux 0x367a72ef tty_register_driver +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x36ba9137 try_to_release_page +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36c6af51 intel_scu_ipc_iowrite8 +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x3703c148 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x370f9850 efi +EXPORT_SYMBOL vmlinux 0x37176d50 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x372c4367 registered_fb +EXPORT_SYMBOL vmlinux 0x373160fd from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3769cf48 vfs_statfs +EXPORT_SYMBOL vmlinux 0x376b06cc rt6_lookup +EXPORT_SYMBOL vmlinux 0x37730ee8 tty_chars_in_buffer +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 0x37bb8f7c ht_create_irq +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37d916c0 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e41459 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37e8d134 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x37fe3d66 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x380d041e jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x3818d07b sock_wfree +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x383b2432 free_page_put_link +EXPORT_SYMBOL vmlinux 0x387d0807 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388799f6 unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x388b5abe bdi_register_owner +EXPORT_SYMBOL vmlinux 0x38957a37 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38c17381 udp_seq_open +EXPORT_SYMBOL vmlinux 0x38e5ed7e mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x38e705f1 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x3902ce23 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393b4083 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x396d58f1 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399cbde3 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x39ac19b2 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b8333e vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x39c910af update_region +EXPORT_SYMBOL vmlinux 0x39dc08d6 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x39ebe256 brioctl_set +EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a19dfc1 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a281ebf __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x3a2aedef xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a810c29 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3a9cdda5 current_task +EXPORT_SYMBOL vmlinux 0x3aa309b9 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x3aa908ba pci_pme_active +EXPORT_SYMBOL vmlinux 0x3aaf5ca9 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x3ab6cc58 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x3ac3a34f filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x3aeec75e param_set_ulong +EXPORT_SYMBOL vmlinux 0x3b0deea0 __sb_start_write +EXPORT_SYMBOL vmlinux 0x3b201620 machine_real_restart +EXPORT_SYMBOL vmlinux 0x3b45d54c __neigh_create +EXPORT_SYMBOL vmlinux 0x3b5ed999 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6f6cd2 udp_table +EXPORT_SYMBOL vmlinux 0x3b74f875 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x3b7ec545 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x3b826517 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x3b869179 __kernel_write +EXPORT_SYMBOL vmlinux 0x3b8acbb8 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x3b938c29 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait +EXPORT_SYMBOL vmlinux 0x3bbed137 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x3bc674da security_path_chmod +EXPORT_SYMBOL vmlinux 0x3bcae023 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x3bd4412f __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x3bdf4100 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x3bed1084 d_tmpfile +EXPORT_SYMBOL vmlinux 0x3bf26b31 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x3c005010 pv_mmu_ops +EXPORT_SYMBOL vmlinux 0x3c02f999 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x3c0ab9e2 rwsem_wake +EXPORT_SYMBOL vmlinux 0x3c1b8ac6 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x3c21b0ea netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x3c2e774c gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x3c3f221c generic_perform_write +EXPORT_SYMBOL vmlinux 0x3c3fb052 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff699 seq_file_path +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf7e3e8 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x3cfd51b9 inode_set_flags +EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x3d3f1572 blk_get_queue +EXPORT_SYMBOL vmlinux 0x3d7b63c1 dma_ops +EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc +EXPORT_SYMBOL vmlinux 0x3d99af09 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3da19c2c neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x3dafe65c crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x3dbeaaf9 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x3dc824f7 from_kprojid +EXPORT_SYMBOL vmlinux 0x3dcb3b8d ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3de1e88d pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x3df4402b elv_register_queue +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e13d07c inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e2db50a input_allocate_device +EXPORT_SYMBOL vmlinux 0x3e42dc15 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x3e5df3a7 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x3e654f49 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x3e657607 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x3e7d11ea dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3eb113f7 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x3ed6c7e8 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x3ed89856 pnp_find_dev +EXPORT_SYMBOL vmlinux 0x3eda9bde napi_consume_skb +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 0x3f13ae12 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock +EXPORT_SYMBOL vmlinux 0x3f312c36 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x3f3c23da locks_remove_posix +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f5ab5b4 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x3f8b80f3 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x3f8f60d2 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x3fd8360a find_get_entry +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ffc2692 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x3ffdbd25 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x400184da xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x4063faa1 lookup_one_len +EXPORT_SYMBOL vmlinux 0x4068402c pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x407b7ee6 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x408ea356 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x4096e108 dev_get_iflink +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 0x40a27c99 d_alloc_name +EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40adcec1 vfs_rename +EXPORT_SYMBOL vmlinux 0x40b59574 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c674da scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d0fe2a register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e7a9a1 dev_activate +EXPORT_SYMBOL vmlinux 0x40e85c5e inet_frags_fini +EXPORT_SYMBOL vmlinux 0x40ead4dc dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x4113ead7 to_ndd +EXPORT_SYMBOL vmlinux 0x411fc820 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x412768ff unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x412c46e1 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x413bf6c7 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x415cc8d5 dma_mark_declared_memory_occupied +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 0x41a117f5 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x41c29ab1 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x41d1c6c1 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x41dc51db follow_down_one +EXPORT_SYMBOL vmlinux 0x41fefff1 dev_trans_start +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x42217d77 bio_copy_data +EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen +EXPORT_SYMBOL vmlinux 0x423d8218 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x42458e48 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x42663db9 tty_mutex +EXPORT_SYMBOL vmlinux 0x4290f2a2 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x4292364c schedule +EXPORT_SYMBOL vmlinux 0x429e86d0 eth_header_cache +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42bf4534 kernel_read +EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x42ce8492 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x42e5fd37 __dax_fault +EXPORT_SYMBOL vmlinux 0x42e70a69 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x432699d8 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4354f216 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x4366e24b jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x43753044 sock_create +EXPORT_SYMBOL vmlinux 0x437dce68 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438e9798 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x439c7475 dentry_open +EXPORT_SYMBOL vmlinux 0x43ca0fc3 phy_init_hw +EXPORT_SYMBOL vmlinux 0x43d3ad31 __dst_free +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x442210e8 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x443c4afa init_special_inode +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x445dfae9 kernel_connect +EXPORT_SYMBOL vmlinux 0x4478d89f pagevec_lookup +EXPORT_SYMBOL vmlinux 0x447cf794 get_io_context +EXPORT_SYMBOL vmlinux 0x448176e1 netif_napi_add +EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x4490d942 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x44959dfc vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x449bb4fb scsi_print_command +EXPORT_SYMBOL vmlinux 0x449fe84b acpi_set_firmware_waking_vectors +EXPORT_SYMBOL vmlinux 0x44a361e5 __frontswap_store +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44ae397f dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x44aea19b param_ops_uint +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44c0e722 inet_select_addr +EXPORT_SYMBOL vmlinux 0x44d73d60 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44ffab48 blk_put_request +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450a1fc7 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x4513b6f0 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x45182c50 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454bc709 register_netdevice +EXPORT_SYMBOL vmlinux 0x455ba3d2 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45792b84 revalidate_disk +EXPORT_SYMBOL vmlinux 0x4583507c skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x45903fb9 sock_no_listen +EXPORT_SYMBOL vmlinux 0x45907e37 dma_common_mmap +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45b351c6 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x45dd973f netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x45f3a956 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x45f5b5e2 clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0x46071af0 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x462eb7ae phy_resume +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x4698a08b set_security_override +EXPORT_SYMBOL vmlinux 0x469dd30b pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x46bec89f clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x46c8e54e input_register_device +EXPORT_SYMBOL vmlinux 0x46d4f452 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x46f8a6e8 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x46fc0da9 mmc_can_reset +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x470f3ecd md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x471abe0d __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x473f1fe2 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x475b9cc3 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x478c2946 kernel_sock_ioctl +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 0x47b3bba9 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x47c4dd65 tcp_prot +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481a2e40 mmc_erase +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x48298e71 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x482cf89d textsearch_unregister +EXPORT_SYMBOL vmlinux 0x483489ec genphy_suspend +EXPORT_SYMBOL vmlinux 0x483ec728 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x48531803 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x48650653 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x48667ce0 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48be8e80 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x48ef0b92 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x48fdd86c napi_gro_receive +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x491fc7d3 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x4928cc93 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x493f06a8 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x49402f7c cdev_init +EXPORT_SYMBOL vmlinux 0x4944ca5f fb_pan_display +EXPORT_SYMBOL vmlinux 0x494e2650 ll_rw_block +EXPORT_SYMBOL vmlinux 0x4956a43d __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x497d1158 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x498c538f unregister_cdrom +EXPORT_SYMBOL vmlinux 0x4996efff of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49b4b637 notify_change +EXPORT_SYMBOL vmlinux 0x49babde5 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x49c41481 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x49d130bc abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x49e0d9a8 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a01133e blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x4a3f2ef0 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x4a619f83 memcpy +EXPORT_SYMBOL vmlinux 0x4a788c50 thaw_bdev +EXPORT_SYMBOL vmlinux 0x4a8b56d0 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x4a9da159 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4ac9e292 inet_del_offload +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4adbf204 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x4adcb484 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x4af31a2f lease_get_mtime +EXPORT_SYMBOL vmlinux 0x4af9bd5e d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b118b23 elevator_change +EXPORT_SYMBOL vmlinux 0x4b186379 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b263e8d eth_header +EXPORT_SYMBOL vmlinux 0x4b3ef693 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x4b48a671 proc_mkdir +EXPORT_SYMBOL vmlinux 0x4b55333b tcf_hash_create +EXPORT_SYMBOL vmlinux 0x4b56e034 dev_notice +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x4b6dcaff icmpv6_send +EXPORT_SYMBOL vmlinux 0x4b7e01b9 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x4b8e57bb devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x4b8eaa3d agp_generic_enable +EXPORT_SYMBOL vmlinux 0x4b956f61 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x4b997314 netdev_info +EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x4b9e92d0 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x4bae598f rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat +EXPORT_SYMBOL vmlinux 0x4bb4c348 fd_install +EXPORT_SYMBOL vmlinux 0x4bb9aae1 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x4bc834f3 mem_map +EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4bf52af0 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x4bf8e3de pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c115688 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x4c149d44 path_get +EXPORT_SYMBOL vmlinux 0x4c1a1cd5 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c6b334a km_query +EXPORT_SYMBOL vmlinux 0x4c6b3570 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x4c6d6b56 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x4c769bdb jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x4c818571 dcache_readdir +EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x4ca99f4b security_inode_readlink +EXPORT_SYMBOL vmlinux 0x4cb10327 get_super +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ce11b1f inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x4ce6eeef param_set_ushort +EXPORT_SYMBOL vmlinux 0x4cea8302 ___preempt_schedule_notrace +EXPORT_SYMBOL vmlinux 0x4d1fefdf nlmsg_notify +EXPORT_SYMBOL vmlinux 0x4d292e39 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x4d3671c9 generic_permission +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d3c983e dcache_dir_close +EXPORT_SYMBOL vmlinux 0x4d447b97 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d6b61a2 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x4d9578a8 put_disk +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4dadff02 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x4db34d53 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x4dc428db crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x4dd1237d phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4dfd6136 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x4e302b78 tcf_em_register +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3cc0f3 generic_setxattr +EXPORT_SYMBOL vmlinux 0x4e662043 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e71ba85 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x4e7d185e bdi_register_dev +EXPORT_SYMBOL vmlinux 0x4e7d87e0 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x4e8a3940 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ebc3ad6 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x4ed2d40c nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x4ed5ee6c pci_claim_resource +EXPORT_SYMBOL vmlinux 0x4f170d58 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x4f173c2a blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f390473 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f5eff04 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f656063 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f7b8587 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x4f7cdde8 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user +EXPORT_SYMBOL vmlinux 0x4f8c2474 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x4f957517 security_file_permission +EXPORT_SYMBOL vmlinux 0x4fc907e9 tty_unlock +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fef18f2 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x4ff6a0a9 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x501c8a17 get_disk +EXPORT_SYMBOL vmlinux 0x50203c59 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x502db4aa dma_async_device_register +EXPORT_SYMBOL vmlinux 0x503750c9 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x503cbeaf tc_classify +EXPORT_SYMBOL vmlinux 0x504dabfa kdb_current_task +EXPORT_SYMBOL vmlinux 0x5050ff98 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x50668f96 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x506eadd1 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x5082209a xfrm_input +EXPORT_SYMBOL vmlinux 0x508224e7 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x509b3d71 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x50cc712d console_stop +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50dda201 __get_page_tail +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50e1bc58 icmp_send +EXPORT_SYMBOL vmlinux 0x50e96747 pci_dev_put +EXPORT_SYMBOL vmlinux 0x50eedeb8 printk +EXPORT_SYMBOL vmlinux 0x50f5aed4 done_path_create +EXPORT_SYMBOL vmlinux 0x511127ff __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x511160a2 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x5115cf08 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x51172d81 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x511c6e04 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x5130bddb start_tty +EXPORT_SYMBOL vmlinux 0x51494f6c tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x514fe3a2 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x516b97af pci_release_region +EXPORT_SYMBOL vmlinux 0x51703208 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock +EXPORT_SYMBOL vmlinux 0x5182c8a9 pci_enable_device +EXPORT_SYMBOL vmlinux 0x5186518f profile_pc +EXPORT_SYMBOL vmlinux 0x518725bf mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x51956853 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x51a2b06b ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x51c5b478 mount_ns +EXPORT_SYMBOL vmlinux 0x51cea84a __scm_destroy +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51f16dfe simple_dir_operations +EXPORT_SYMBOL vmlinux 0x51f7c86a tcf_hash_search +EXPORT_SYMBOL vmlinux 0x51ff0932 inet_bind +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x520fb90a simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x521b512e alloc_fcdev +EXPORT_SYMBOL vmlinux 0x5226bdaf bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x523164b8 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x52660678 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x52680d4f tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x52703e76 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x527c94a0 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52a31bc0 unregister_netdev +EXPORT_SYMBOL vmlinux 0x52a53a69 block_truncate_page +EXPORT_SYMBOL vmlinux 0x52a6a72a agp_bind_memory +EXPORT_SYMBOL vmlinux 0x52a8d77b fb_find_mode +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52c208f7 tcf_register_action +EXPORT_SYMBOL vmlinux 0x52f420e8 agp_enable +EXPORT_SYMBOL vmlinux 0x52fff2b2 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x530ad760 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x530b1e4c rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x5328679f from_kgid_munged +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x53378d86 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x533dc7aa i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x5355b7f3 __invalidate_device +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x5362beb4 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x537c45ee write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x538684d5 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x5387f602 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53d8697e sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x53da9cdc dev_addr_add +EXPORT_SYMBOL vmlinux 0x53f00268 mount_pseudo +EXPORT_SYMBOL vmlinux 0x53f4c23c read_cache_pages +EXPORT_SYMBOL vmlinux 0x54087390 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5443e4b2 path_noexec +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x54600f5b i2c_release_client +EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0x54905a42 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b7b54c jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54d494c8 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x54d92f28 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54eb7cbf iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x54ec33e1 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x54ee18e2 xfrm_unregister_km +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 0x5523b6dd mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x553a9c8a put_io_context +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5569b4dd neigh_parms_release +EXPORT_SYMBOL vmlinux 0x559fce34 kobject_put +EXPORT_SYMBOL vmlinux 0x55a659db ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x560629ae qdisc_list_del +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 0x565899d4 del_gendisk +EXPORT_SYMBOL vmlinux 0x56720413 ip6_xmit +EXPORT_SYMBOL vmlinux 0x5676a3e5 intel_scu_ipc_ioread8 +EXPORT_SYMBOL vmlinux 0x56823479 genlmsg_put +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x569d7e47 register_framebuffer +EXPORT_SYMBOL vmlinux 0x56a1e96e nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x56a972c2 mount_nodev +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56cc525a bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x56dd8688 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x56e3e46c dup_iter +EXPORT_SYMBOL vmlinux 0x56f8d858 update_devfreq +EXPORT_SYMBOL vmlinux 0x5705088a __vmalloc +EXPORT_SYMBOL vmlinux 0x571cb420 redraw_screen +EXPORT_SYMBOL vmlinux 0x572b0275 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5741b839 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x574a9d21 simple_lookup +EXPORT_SYMBOL vmlinux 0x574ae4bb pci_choose_state +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x575d9d68 sk_net_capable +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5772e4ff netif_napi_del +EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x57a18306 clear_nlink +EXPORT_SYMBOL vmlinux 0x57ba72ab fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x57c47413 eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57c86c30 ppp_input +EXPORT_SYMBOL vmlinux 0x57cec43f neigh_table_clear +EXPORT_SYMBOL vmlinux 0x57de9107 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x57e15fb6 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x57e19c6c gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x57e91cf3 udp_disconnect +EXPORT_SYMBOL vmlinux 0x58188dc6 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582673c7 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x582b0f0b mpage_readpage +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584015d5 page_address +EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x58560f52 tcf_destroy_chain +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 0x5866c2c7 netdev_update_features +EXPORT_SYMBOL vmlinux 0x58694ae0 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x5893aebd add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x589b73c8 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58fef6f8 ist_info +EXPORT_SYMBOL vmlinux 0x590cdafb dquot_scan_active +EXPORT_SYMBOL vmlinux 0x59190a2b unlock_new_inode +EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594deaba sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x596eec78 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x597804a1 scsi_host_get +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x59be5a9d set_trace_device +EXPORT_SYMBOL vmlinux 0x59cb4602 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x59ea7a99 __bread_gfp +EXPORT_SYMBOL vmlinux 0x59f14b3a block_write_begin +EXPORT_SYMBOL vmlinux 0x59fa7997 udp_prot +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a135b28 bdput +EXPORT_SYMBOL vmlinux 0x5a153bf6 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x5a262665 seq_path +EXPORT_SYMBOL vmlinux 0x5a268e70 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x5a2736b9 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x5a28d7e2 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x5a2e0c49 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x5a47f061 sk_dst_check +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a629034 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x5a67e57d isapnp_protocol +EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit +EXPORT_SYMBOL vmlinux 0x5a926387 dquot_get_state +EXPORT_SYMBOL vmlinux 0x5a9b27b0 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x5a9ee422 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x5ab47974 kill_bdev +EXPORT_SYMBOL vmlinux 0x5abc1899 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5aeafb6a xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x5af806e8 freeze_bdev +EXPORT_SYMBOL vmlinux 0x5afacf4d __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x5afae886 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x5afd19b8 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b58b95a have_submounts +EXPORT_SYMBOL vmlinux 0x5b791236 seq_putc +EXPORT_SYMBOL vmlinux 0x5b7cb65f pcim_enable_device +EXPORT_SYMBOL vmlinux 0x5b96b9e6 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x5babe3ef vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x5bb109aa nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x5bb32d37 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x5bc3c237 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x5bc549e5 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x5bc8d583 copy_from_user_overflow +EXPORT_SYMBOL vmlinux 0x5bcb739c register_netdev +EXPORT_SYMBOL vmlinux 0x5bd7e169 down_write_trylock +EXPORT_SYMBOL vmlinux 0x5be72b40 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x5becc950 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x5bfb7e5f tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x5c4fd678 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x5c545234 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x5c6cda8b jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x5c85f835 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x5c89db3d devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x5caa8889 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x5cc9924c neigh_destroy +EXPORT_SYMBOL vmlinux 0x5cd45a7c rtnl_create_link +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5cec663c ata_print_version +EXPORT_SYMBOL vmlinux 0x5cf5308a touch_atime +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf6c911 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x5cffe037 register_xen_selfballooning +EXPORT_SYMBOL vmlinux 0x5d04406e mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x5d15aaa6 d_delete +EXPORT_SYMBOL vmlinux 0x5d1a93c8 dev_open +EXPORT_SYMBOL vmlinux 0x5d2e0057 x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0x5d514937 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d59f376 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x5d719c29 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d7ec085 vga_con +EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done +EXPORT_SYMBOL vmlinux 0x5d979579 kern_path_create +EXPORT_SYMBOL vmlinux 0x5d9aeca8 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x5dbbba37 blk_end_request +EXPORT_SYMBOL vmlinux 0x5dccc843 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x5defbfce migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x5dffb9b0 x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x5e053f13 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x5e1c5b3b pci_get_device +EXPORT_SYMBOL vmlinux 0x5e30878f __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x5e32f293 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x5e543039 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x5e58258b devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x5e630ca3 dump_emit +EXPORT_SYMBOL vmlinux 0x5e6b3d67 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x5e7309b5 udp_add_offload +EXPORT_SYMBOL vmlinux 0x5e748b06 __module_get +EXPORT_SYMBOL vmlinux 0x5e7556d8 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x5e7f8d87 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb0ed65 key_invalidate +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb7398d tso_count_descs +EXPORT_SYMBOL vmlinux 0x5eb9d2e8 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x5ebf6cc0 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x5ec9b5fe inet6_bind +EXPORT_SYMBOL vmlinux 0x5ecbd45d phy_print_status +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed494ad vme_irq_free +EXPORT_SYMBOL vmlinux 0x5ed98dbd pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x5ee7c26a nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x5eebfd5c mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x5ef21703 bdevname +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f052ace blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x5f091313 d_drop +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f1a4ccf intel_scu_ipc_update_register +EXPORT_SYMBOL vmlinux 0x5f90a9d8 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x5fa0eb1a generic_file_llseek +EXPORT_SYMBOL vmlinux 0x5fa39172 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x5fa6b565 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x5fafc34b devm_memremap +EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init +EXPORT_SYMBOL vmlinux 0x5fb9c441 __register_nls +EXPORT_SYMBOL vmlinux 0x5fd1f56e tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fe16179 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x5fff7c23 get_user_pages_unlocked +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 0x602de6dd inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x603221e7 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x6044e9bf scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x608b576d phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x60924710 clk_get +EXPORT_SYMBOL vmlinux 0x60963570 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60ab1980 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x60b1eae9 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x60ba219f netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x60c1608f ppp_register_channel +EXPORT_SYMBOL vmlinux 0x60d53a56 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60e2237d blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x60f4a361 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy +EXPORT_SYMBOL vmlinux 0x610e2476 padata_stop +EXPORT_SYMBOL vmlinux 0x6116b4a4 pci_save_state +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x613d625f grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x6140079d blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x61428cf2 udp_proc_register +EXPORT_SYMBOL vmlinux 0x616eb4d1 finish_no_open +EXPORT_SYMBOL vmlinux 0x617d22a5 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x618278dd sk_wait_data +EXPORT_SYMBOL vmlinux 0x61ab7bba agp_copy_info +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c8c9e2 cont_write_begin +EXPORT_SYMBOL vmlinux 0x61d2279d mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x61dca070 simple_rmdir +EXPORT_SYMBOL vmlinux 0x61debe5b inc_nlink +EXPORT_SYMBOL vmlinux 0x6201228f open_exec +EXPORT_SYMBOL vmlinux 0x6202eca8 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable +EXPORT_SYMBOL vmlinux 0x6205b9cb tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x62138af0 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6216ba98 devm_gpiod_get +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 0x62323c53 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event +EXPORT_SYMBOL vmlinux 0x6241a2ab __copy_from_user_ll_nocache +EXPORT_SYMBOL vmlinux 0x624d88da address_space_init_once +EXPORT_SYMBOL vmlinux 0x62619f85 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x626a72dc blk_execute_rq +EXPORT_SYMBOL vmlinux 0x6272ccec d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x6294c30a nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x62b176d1 sget +EXPORT_SYMBOL vmlinux 0x62beed4a ip_ct_attach +EXPORT_SYMBOL vmlinux 0x62c9db00 dev_get_stats +EXPORT_SYMBOL vmlinux 0x62de3105 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x62de9280 netdev_crit +EXPORT_SYMBOL vmlinux 0x62f91be8 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x633cfb40 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x6368b5ae devm_gpiod_get_index +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 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63ae259c vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63c7063b generic_cont_expand_simple +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 0x6428e4d5 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x644058de locks_copy_lock +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x646157d2 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x647c0b15 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x648a5640 bdget +EXPORT_SYMBOL vmlinux 0x648d1c84 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x6493d11d poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a21925 pci_iounmap +EXPORT_SYMBOL vmlinux 0x64a251e0 seq_dentry +EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion +EXPORT_SYMBOL vmlinux 0x64bd8fce iov_iter_zero +EXPORT_SYMBOL vmlinux 0x64cd5947 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x64d586a1 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x64e9b33c padata_start +EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb +EXPORT_SYMBOL vmlinux 0x64f85052 consume_skb +EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x64fb5474 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651f5b0d ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x652bfab9 skb_split +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65418092 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x6553edc4 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x6564e9b4 param_get_ullong +EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x657a9788 flush_old_exec +EXPORT_SYMBOL vmlinux 0x65a295bb atomic64_xchg_cx8 +EXPORT_SYMBOL vmlinux 0x65b529d6 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65ca7d81 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e371ad inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x65ebfdb9 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x6606102f ip_options_compile +EXPORT_SYMBOL vmlinux 0x660bb8b5 lookup_bdev +EXPORT_SYMBOL vmlinux 0x66139f81 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x662e368c serio_reconnect +EXPORT_SYMBOL vmlinux 0x66355efc vprintk +EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x664d09fe param_ops_int +EXPORT_SYMBOL vmlinux 0x665950f4 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x667e4e80 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x668a28bf __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x669bf80b proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x66a0b60e pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x66a4af1e dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0x66d1a0a9 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x66e636fc __page_symlink +EXPORT_SYMBOL vmlinux 0x67087a45 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x6716e426 key_task_permission +EXPORT_SYMBOL vmlinux 0x6717ab06 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x67216268 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x6726c0df pci_select_bars +EXPORT_SYMBOL vmlinux 0x6727577e set_pages_x +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67420462 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x675219d8 simple_write_end +EXPORT_SYMBOL vmlinux 0x675d2edd skb_push +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x67a95bf2 migrate_page +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c43941 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x67d41546 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x67d53ed3 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x67e7d981 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x681b46a9 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x68368160 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x6842de9d fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x6844264d ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x684f492a set_pages_nx +EXPORT_SYMBOL vmlinux 0x68748bd8 security_path_chown +EXPORT_SYMBOL vmlinux 0x6879cf9c sock_from_file +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x688431d8 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x68935564 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68ac635b is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x68b39255 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68bb2dd5 sock_no_accept +EXPORT_SYMBOL vmlinux 0x68c8aa9c bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x68e535ea ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x690fa23c sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x691e65b6 vme_register_driver +EXPORT_SYMBOL vmlinux 0x6928a246 inet_addr_type +EXPORT_SYMBOL vmlinux 0x6939614e first_ec +EXPORT_SYMBOL vmlinux 0x6945f329 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x6954b91e dev_get_by_name +EXPORT_SYMBOL vmlinux 0x6970599e twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x698c9efa tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x699a7d4b inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b097f6 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x69f3162f netdev_emerg +EXPORT_SYMBOL vmlinux 0x69f8027f __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0eb80f pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x6a253704 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x6a27bfce csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x6a35308c tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x6a502846 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x6a5a5010 blk_mq_start_stopped_hw_queues +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 0x6a78dac8 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x6a949205 unlock_page +EXPORT_SYMBOL vmlinux 0x6aba0d28 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6acd5d58 pci_release_regions +EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x6ad9482e put_filp +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae7cf0f pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b189e18 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b363a3b __serio_register_driver +EXPORT_SYMBOL vmlinux 0x6b4675ae open_check_o_direct +EXPORT_SYMBOL vmlinux 0x6b4c6e09 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x6b55fd6f mntput +EXPORT_SYMBOL vmlinux 0x6b6b3727 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue +EXPORT_SYMBOL vmlinux 0x6b83a82e pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x6b863cd9 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x6b916f0b bio_chain +EXPORT_SYMBOL vmlinux 0x6b9e0ba5 kmem_cache_alloc_bulk +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 0x6be3f36a ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x6be55f49 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops +EXPORT_SYMBOL vmlinux 0x6bfab5b9 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x6c0705b9 nf_reinject +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c2e3320 strncmp +EXPORT_SYMBOL vmlinux 0x6c2e9e26 make_bad_inode +EXPORT_SYMBOL vmlinux 0x6c36f023 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x6c388d57 set_nlink +EXPORT_SYMBOL vmlinux 0x6c479f08 devm_free_irq +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6c8a8a neigh_xmit +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c75c351 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x6c95ac35 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6ce57305 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d169970 cdrom_number_of_slots +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 0x6d33ac3e bdi_register +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d3c94ea xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x6d515602 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x6d51c518 netdev_state_change +EXPORT_SYMBOL vmlinux 0x6d5342f0 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x6d69ff2f dev_change_flags +EXPORT_SYMBOL vmlinux 0x6d6a0a3a elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x6d9e09cc agp_free_memory +EXPORT_SYMBOL vmlinux 0x6da16d1c eisa_driver_register +EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible +EXPORT_SYMBOL vmlinux 0x6dc22515 dev_uc_init +EXPORT_SYMBOL vmlinux 0x6dc6dd56 down +EXPORT_SYMBOL vmlinux 0x6dcad210 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x6dd05251 vme_dma_request +EXPORT_SYMBOL vmlinux 0x6dda4a26 param_ops_long +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df4dd33 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x6e08fb51 agp_backend_release +EXPORT_SYMBOL vmlinux 0x6e16a932 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x6e16ed1f inet6_release +EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e722a99 phy_suspend +EXPORT_SYMBOL vmlinux 0x6e8e96ee mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x6e966c45 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eb3cb72 d_lookup +EXPORT_SYMBOL vmlinux 0x6ecb1fc7 iterate_fd +EXPORT_SYMBOL vmlinux 0x6ed4baa9 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x6ef323f9 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x6f0fe4a5 sock_rfree +EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f20ba01 tcp_close +EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6f6773b7 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x6f80a523 key_revoke +EXPORT_SYMBOL vmlinux 0x6f84d2c1 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f94422a xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x6fa209e5 build_skb +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fe66024 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x6fef9088 vfs_llseek +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x7050cc44 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x7062eb8f dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x707f93dd preempt_schedule +EXPORT_SYMBOL vmlinux 0x7088ce72 printk_emit +EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x7094bbc6 write_one_page +EXPORT_SYMBOL vmlinux 0x70aeb159 blkdev_get +EXPORT_SYMBOL vmlinux 0x70b8514b max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x70bc3d2d dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0x70be4e86 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x70ce4c0e put_page +EXPORT_SYMBOL vmlinux 0x70d1f8f3 strncat +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x70da10ac uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x70e81dd5 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x70f1d478 alloc_file +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x71018e4a i2c_use_client +EXPORT_SYMBOL vmlinux 0x71035abd __napi_complete +EXPORT_SYMBOL vmlinux 0x711e4128 force_sig +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x7131d1ec uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x714886da kobject_init +EXPORT_SYMBOL vmlinux 0x715440fa poll_freewait +EXPORT_SYMBOL vmlinux 0x716a7f09 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71ae3c38 sock_no_connect +EXPORT_SYMBOL vmlinux 0x71c23c20 input_grab_device +EXPORT_SYMBOL vmlinux 0x71cd21e0 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x71ec7eea netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7202a479 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x7210ea7c pnp_possible_config +EXPORT_SYMBOL vmlinux 0x721ee3d4 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x724aa318 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x72638554 inet_release +EXPORT_SYMBOL vmlinux 0x7266155c pci_get_subsys +EXPORT_SYMBOL vmlinux 0x72666251 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x7277dc68 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x727e340b agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x729ff82b skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x72ac77aa simple_rename +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72c35a73 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x72cdad8d sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72d65f20 input_register_handle +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x7300c183 from_kgid +EXPORT_SYMBOL vmlinux 0x7302ce2b mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x730796fe sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x7336842e ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x7366062c bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x7374e949 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get +EXPORT_SYMBOL vmlinux 0x738803e6 strnlen +EXPORT_SYMBOL vmlinux 0x73bc3af3 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x73d5f57a phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x73daaebd elevator_exit +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x7407d574 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x741a1b27 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x7421627e unregister_nls +EXPORT_SYMBOL vmlinux 0x7423126e xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x742abfb9 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x743b4ae3 atomic64_inc_not_zero_cx8 +EXPORT_SYMBOL vmlinux 0x743c5273 skb_clone +EXPORT_SYMBOL vmlinux 0x745ee35b iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty +EXPORT_SYMBOL vmlinux 0x746733c0 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x74702f7c ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x749eb42f phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74e5c98f ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74e9747b ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x74ed3f19 ps2_drain +EXPORT_SYMBOL vmlinux 0x74efeda2 would_dump +EXPORT_SYMBOL vmlinux 0x74f62686 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x7500cdd3 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x75138658 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x751fd4d5 inode_permission +EXPORT_SYMBOL vmlinux 0x7521b486 simple_release_fs +EXPORT_SYMBOL vmlinux 0x75271716 save_processor_state +EXPORT_SYMBOL vmlinux 0x7531e3dc acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x75330e10 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x754c723c shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x7588a66b pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75b3416a scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x75b43e4c vfs_write +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 0x75db755b blk_get_request +EXPORT_SYMBOL vmlinux 0x75e6edc1 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x76057a6a touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7624add0 nvm_register_target +EXPORT_SYMBOL vmlinux 0x762add85 atomic64_inc_return_cx8 +EXPORT_SYMBOL vmlinux 0x76300f13 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x76378eda pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x76467ad9 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x76539609 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x76584e72 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x7678d116 unlock_buffer +EXPORT_SYMBOL vmlinux 0x767d28a8 seq_printf +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x7683e0c5 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x76ae215a __nla_reserve +EXPORT_SYMBOL vmlinux 0x76d18054 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76dae399 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x76fda67e d_find_alias +EXPORT_SYMBOL vmlinux 0x770a0036 isapnp_cfg_begin +EXPORT_SYMBOL vmlinux 0x770bcab8 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x77249836 __netif_schedule +EXPORT_SYMBOL vmlinux 0x7731fe9f md_integrity_register +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x774657a7 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x7753cdd8 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x775ea757 sk_free +EXPORT_SYMBOL vmlinux 0x775eadd7 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x7764ae44 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x776796c2 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x7769f116 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x776d9c95 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x77775081 framebuffer_release +EXPORT_SYMBOL vmlinux 0x778cf57b bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x778e4a2e blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x7818ff00 proc_douintvec +EXPORT_SYMBOL vmlinux 0x782567ec memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x7832e7b8 write_inode_now +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x78544a06 ps2_command +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x789f832d inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x78a5ff8a fence_add_callback +EXPORT_SYMBOL vmlinux 0x78d3d981 inet_put_port +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e739aa up +EXPORT_SYMBOL vmlinux 0x78e96ce1 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x78f43c60 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x791a5dc2 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock +EXPORT_SYMBOL vmlinux 0x7962b595 from_kuid +EXPORT_SYMBOL vmlinux 0x796cf1b6 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x797bcfd7 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x797bd838 dst_alloc +EXPORT_SYMBOL vmlinux 0x7992c729 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x799660f1 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x79a44473 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79ba91b0 acpi_pm_device_run_wake +EXPORT_SYMBOL vmlinux 0x79c0d3ab devm_ioport_map +EXPORT_SYMBOL vmlinux 0x79cb92b7 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x79f176ea sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a37981c dqput +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a4e95fa mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x7a4f9fc0 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x7a71600c vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7a8a115e nf_log_set +EXPORT_SYMBOL vmlinux 0x7a8c3180 dquot_operations +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a9ecc00 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa43380 pci_dev_get +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7accce24 kobject_del +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ae6d803 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7aeca910 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x7aecd8ad pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b103038 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x7b134ddf acpi_get_name +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1848d2 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b1b4dd3 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x7b1caf47 devm_ioremap +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b2ef742 scsi_device_get +EXPORT_SYMBOL vmlinux 0x7b327a6a lro_receive_skb +EXPORT_SYMBOL vmlinux 0x7b4eec1d secpath_dup +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b68711c skb_find_text +EXPORT_SYMBOL vmlinux 0x7b711eec ns_capable +EXPORT_SYMBOL vmlinux 0x7b9e47d1 set_cached_acl +EXPORT_SYMBOL vmlinux 0x7b9f2462 get_empty_filp +EXPORT_SYMBOL vmlinux 0x7b9f7bee skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x7bea7fa4 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x7bef73d0 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x7bf5b944 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x7c073df5 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c19a590 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7ca6d88d __ps2_command +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cda9b53 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce52203 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d0b85a5 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d0e2acd __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d1b28b8 tty_devnum +EXPORT_SYMBOL vmlinux 0x7d22521e sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x7d27a385 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x7d2fa56e gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x7d394678 dev_mc_add +EXPORT_SYMBOL vmlinux 0x7d4c760f vme_master_request +EXPORT_SYMBOL vmlinux 0x7d662843 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d7b133e jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x7d9a2acc qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7dcb135c blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x7dd9d5be __brelse +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df1836b param_set_invbool +EXPORT_SYMBOL vmlinux 0x7e021722 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x7e1df83c pci_dev_driver +EXPORT_SYMBOL vmlinux 0x7e49cc7a km_is_alive +EXPORT_SYMBOL vmlinux 0x7e59689d pid_task +EXPORT_SYMBOL vmlinux 0x7e5c35b1 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit +EXPORT_SYMBOL vmlinux 0x7e88932f __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x7e9595f3 blkdev_put +EXPORT_SYMBOL vmlinux 0x7ea88742 commit_creds +EXPORT_SYMBOL vmlinux 0x7eb03eae down_write +EXPORT_SYMBOL vmlinux 0x7eb92919 bdi_destroy +EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x7ed9b18d tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x7eda9dcd pnp_activate_dev +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 0x7f18e16d pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f7a0f35 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x7fa3a3e2 sget_userns +EXPORT_SYMBOL vmlinux 0x7fa3dd0e sk_ns_capable +EXPORT_SYMBOL vmlinux 0x7fc5c3c7 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe59e4a nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x800a7fef scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x8010a8f2 bdi_init +EXPORT_SYMBOL vmlinux 0x8010f331 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x801518e6 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x803e448a inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x804fd2ae param_ops_charp +EXPORT_SYMBOL vmlinux 0x80609796 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x806185f3 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy +EXPORT_SYMBOL vmlinux 0x80a9f1c9 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x80b7ad62 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x80c47a23 md_check_recovery +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 0x80eb85b4 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x810c4cc8 generic_setlease +EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath +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 0x81a6f47f netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x81a93ba6 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x81abf0c8 d_add_ci +EXPORT_SYMBOL vmlinux 0x81ae5b31 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x81c7fd4e submit_bio +EXPORT_SYMBOL vmlinux 0x81d11c18 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81fae616 security_path_link +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x820a1d05 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x8235805b memmove +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x82941ca2 submit_bh +EXPORT_SYMBOL vmlinux 0x829534b3 fence_free +EXPORT_SYMBOL vmlinux 0x82a28d8b __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82dd62ab cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x82ec2d2e lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x82ec5f0a pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot +EXPORT_SYMBOL vmlinux 0x8329e6f0 memset +EXPORT_SYMBOL vmlinux 0x832d57c4 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x832d7b40 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x833145f8 posix_lock_file +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x83477f9f free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x83779bc4 __register_binfmt +EXPORT_SYMBOL vmlinux 0x8382e59a acpi_walk_resource_buffer +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 0x83cde1fb param_get_bool +EXPORT_SYMBOL vmlinux 0x83cfad43 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x83d6c655 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x840733e6 tty_set_operations +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x841fb820 param_ops_byte +EXPORT_SYMBOL vmlinux 0x842b035a led_set_brightness +EXPORT_SYMBOL vmlinux 0x84343ba1 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x843fcd16 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x84456da6 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x84567afd __scsi_add_device +EXPORT_SYMBOL vmlinux 0x8460920f kmap_high +EXPORT_SYMBOL vmlinux 0x846bb95a redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x84775dfe pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x8485c49c blk_start_request +EXPORT_SYMBOL vmlinux 0x84894cdc zpool_register_driver +EXPORT_SYMBOL vmlinux 0x84c4eae5 softnet_data +EXPORT_SYMBOL vmlinux 0x84cc9f82 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x84edfd1d inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x85147d2c agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x8522348f agp_create_memory +EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x853977f5 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x853f3661 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x854d5261 i2c_master_recv +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x8568496b setattr_copy +EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0x857d83b0 kill_pid +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x859f26f9 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x85aa9fdb nf_getsockopt +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bdc417 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85dfd73c bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x85e1e262 nonseekable_open +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fa0f07 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x8609a9a5 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x861784f2 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x8631096e phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x86590a59 fasync_helper +EXPORT_SYMBOL vmlinux 0x865abd19 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x8666ae90 devm_request_resource +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868fe3a3 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86a5d2d6 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x86b78749 led_blink_set +EXPORT_SYMBOL vmlinux 0x86ba1a81 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x86cec3dd tcp_prequeue +EXPORT_SYMBOL vmlinux 0x86e2ef6b nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fe3f0a d_genocide +EXPORT_SYMBOL vmlinux 0x8706ab46 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x8718b0ba ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x8727c3b4 set_device_ro +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x8772651b mmc_detect_change +EXPORT_SYMBOL vmlinux 0x877da557 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x877e7cb6 find_vma +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 0x87b206fe dev_alloc_name +EXPORT_SYMBOL vmlinux 0x87b91527 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x87cbe148 dst_discard_out +EXPORT_SYMBOL vmlinux 0x87cd7036 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x87dc6dda sg_miter_next +EXPORT_SYMBOL vmlinux 0x87e50b68 serio_close +EXPORT_SYMBOL vmlinux 0x87e5426a cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x880ba4af inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x880bf351 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x881a4c4c ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x882af265 d_walk +EXPORT_SYMBOL vmlinux 0x884e6fc5 request_key +EXPORT_SYMBOL vmlinux 0x8857ba03 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x885af50f pci_request_region +EXPORT_SYMBOL vmlinux 0x88641583 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x8878faf4 mpage_readpages +EXPORT_SYMBOL vmlinux 0x887e579f tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0x88cf9e21 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x88f049d6 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x8901d0c0 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x8906497b rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x894978f6 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x897d6df1 vga_put +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89b0d3a2 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89dd12e7 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x89e13256 devm_iounmap +EXPORT_SYMBOL vmlinux 0x8a08299e dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all +EXPORT_SYMBOL vmlinux 0x8a1a029b security_path_truncate +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a30a038 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x8a6f9cca account_page_redirty +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9d68d8 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x8aaa5088 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x8ab90828 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x8b0e5bc4 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x8b18496f __copy_to_user_ll +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b3a40bb md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b4aaa5a i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b843844 passthru_features_check +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b9f4d1c __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x8babd71f pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x8bb9da9c scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x8bed2a41 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x8bf6248d dm_register_target +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c23767e serio_rescan +EXPORT_SYMBOL vmlinux 0x8c3359af call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x8c446bf7 kthread_stop +EXPORT_SYMBOL vmlinux 0x8c58f21c sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c66f440 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x8c67380d set_anon_super +EXPORT_SYMBOL vmlinux 0x8c69167a generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x8c6b9af7 read_dev_sector +EXPORT_SYMBOL vmlinux 0x8c7f0024 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x8c8595af mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x8c8b77da csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x8c8f7791 sock_edemux +EXPORT_SYMBOL vmlinux 0x8c91d3f5 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x8c964bd7 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x8c9f73e4 tty_lock +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cc7d7c7 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x8cd014ab nf_register_hook +EXPORT_SYMBOL vmlinux 0x8cd14df9 phy_stop +EXPORT_SYMBOL vmlinux 0x8cd8f724 set_binfmt +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8d04052c xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x8d29879d account_page_dirtied +EXPORT_SYMBOL vmlinux 0x8d303a85 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d566228 delete_from_page_cache +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 0x8d76e687 keyring_clear +EXPORT_SYMBOL vmlinux 0x8d776d35 pnp_find_card +EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove +EXPORT_SYMBOL vmlinux 0x8d892629 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8d97f89d __sock_create +EXPORT_SYMBOL vmlinux 0x8d9839be dev_printk_emit +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init +EXPORT_SYMBOL vmlinux 0x8db5f5fc alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x8dc6e564 restore_processor_state +EXPORT_SYMBOL vmlinux 0x8dd5e164 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x8dfe5355 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e0d595a pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x8e125775 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x8e1c802f jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x8e23ffe9 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x8e3267c5 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x8e3a0a2b copy_to_iter +EXPORT_SYMBOL vmlinux 0x8e3a1277 simple_empty +EXPORT_SYMBOL vmlinux 0x8e48619c fifo_set_limit +EXPORT_SYMBOL vmlinux 0x8e4bf446 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ef3545d phy_device_free +EXPORT_SYMBOL vmlinux 0x8ef5f583 skb_queue_head +EXPORT_SYMBOL vmlinux 0x8ef9854f atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x8f082a39 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x8f1d8000 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x8f262ed2 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f36c2fd acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x8f649f74 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x8f7664fa invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x8f8fece5 prepare_creds +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fba77c5 is_nd_btt +EXPORT_SYMBOL vmlinux 0x8fd1152e _raw_write_unlock +EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x8fe67fa1 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x8fe6a308 input_register_handler +EXPORT_SYMBOL vmlinux 0x8ff4079b pv_irq_ops +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x900c7476 give_up_console +EXPORT_SYMBOL vmlinux 0x900ef042 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x9021c8bd fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x9025d0cd mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x90303abb lock_sock_nested +EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x905ce3c1 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x907f3543 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0x90a22f97 register_filesystem +EXPORT_SYMBOL vmlinux 0x90b6aa96 __devm_request_region +EXPORT_SYMBOL vmlinux 0x90c104d5 sg_miter_start +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90d95951 blk_init_tags +EXPORT_SYMBOL vmlinux 0x90defcaa dev_crit +EXPORT_SYMBOL vmlinux 0x910eacb2 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x9144674d pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x915cd34a user_path_create +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x91670b16 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91797400 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x917f9215 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x91855f84 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x918cdc00 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x9191228e __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init +EXPORT_SYMBOL vmlinux 0x91e87a71 param_set_long +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x922799c9 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x923ae587 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x925aedb1 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x92844d72 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x92938f9d qdisc_list_add +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92dc5a9d xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x92e9bffe unregister_filesystem +EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931ac74b mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x93252d9d inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x933b7854 __alloc_skb +EXPORT_SYMBOL vmlinux 0x934175db dev_remove_pack +EXPORT_SYMBOL vmlinux 0x934c7193 pnp_device_detach +EXPORT_SYMBOL vmlinux 0x9354eae0 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x937defe2 file_update_time +EXPORT_SYMBOL vmlinux 0x938fba98 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x93a18ef2 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93cd3aa7 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9401668e genl_notify +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x94164d10 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x9428920c nf_log_unset +EXPORT_SYMBOL vmlinux 0x944757ee scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x945a27b7 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x946431ad dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x946b8202 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x946ecd2a scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x94744bf7 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x9477edd5 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x947895b3 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x947dfcf8 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x94b64e08 fb_get_mode +EXPORT_SYMBOL vmlinux 0x94d3e4ab ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x94dbe172 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x94fb006f __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x9502d558 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x9503ae40 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x951b37f1 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x9527326f vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x95300731 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x953902f4 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception +EXPORT_SYMBOL vmlinux 0x9539ea01 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x95432c8a insert_inode_locked +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954b2d39 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x957f4816 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x95a74537 scsi_register +EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0x95d40c26 param_get_charp +EXPORT_SYMBOL vmlinux 0x95e184ed set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x95e2bb39 __vfs_write +EXPORT_SYMBOL vmlinux 0x95ef88e7 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x960481ab security_path_mknod +EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x962277ee find_inode_nowait +EXPORT_SYMBOL vmlinux 0x962cf0f8 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x963ca181 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x964f4e36 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x96510d6e proc_set_size +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x96628876 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x966eea09 param_ops_bint +EXPORT_SYMBOL vmlinux 0x96706d1f __getblk_gfp +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x96948115 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x96959be3 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x9697dbf4 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x96c133f1 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d75186 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x96e1f00a pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x970eabd7 phy_device_create +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x975529b2 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x97771e5f inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x979d116c inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table +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 0x98315302 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x983e1a2c netlink_capable +EXPORT_SYMBOL vmlinux 0x98492884 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x985dcdc4 pci_bus_get +EXPORT_SYMBOL vmlinux 0x986c10d0 arp_xmit +EXPORT_SYMBOL vmlinux 0x986c5b3e nla_append +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL vmlinux 0x989def2f sock_no_getname +EXPORT_SYMBOL vmlinux 0x98d04ab5 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x98d8ed87 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x98e78d67 pci_find_capability +EXPORT_SYMBOL vmlinux 0x98f390c9 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x98fbdce6 page_waitqueue +EXPORT_SYMBOL vmlinux 0x99233c32 cpu_core_map +EXPORT_SYMBOL vmlinux 0x992e0df0 kunmap +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993b51b5 get_agp_version +EXPORT_SYMBOL vmlinux 0x994e9147 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x997b3a2d __pci_register_driver +EXPORT_SYMBOL vmlinux 0x998fca71 neigh_table_init +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99adb961 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x99b0748a dquot_transfer +EXPORT_SYMBOL vmlinux 0x99b79d1d md_cluster_mod +EXPORT_SYMBOL vmlinux 0x99c18db8 setup_new_exec +EXPORT_SYMBOL vmlinux 0x99c35272 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x99c5078b dma_pool_create +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e1856e kobject_add +EXPORT_SYMBOL vmlinux 0x99e26800 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x99eb9f8b ilookup +EXPORT_SYMBOL vmlinux 0x99f0e44a component_match_add +EXPORT_SYMBOL vmlinux 0x99f39e73 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x99f5953d kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x9a01d637 __d_drop +EXPORT_SYMBOL vmlinux 0x9a07401a inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x9a158bbe skb_queue_purge +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a2fadea mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x9a3d4d7a dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x9a4bed5a ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x9a6a83f9 cmos_lock +EXPORT_SYMBOL vmlinux 0x9a88639b linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x9a9171d4 blk_register_region +EXPORT_SYMBOL vmlinux 0x9ab8ec62 dev_mc_del +EXPORT_SYMBOL vmlinux 0x9ae46b90 do_truncate +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9affb955 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x9b03a637 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x9b1a3551 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x9b1d86e3 pci_iomap +EXPORT_SYMBOL vmlinux 0x9b33a4fc fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b544188 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b7a52e8 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x9b8065ea swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x9b8f67d7 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x9b96858a pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x9ba34a89 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9ba882e2 dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0x9bb2f10e pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bd47de6 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bea3189 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x9bf0aa14 make_kgid +EXPORT_SYMBOL vmlinux 0x9c001096 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x9c023bd1 skb_make_writable +EXPORT_SYMBOL vmlinux 0x9c27b6a2 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x9c2c944a __copy_from_user_ll_nocache_nozero +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c572b19 eth_header_parse +EXPORT_SYMBOL vmlinux 0x9c83f6c0 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x9c9ff9fa kfree_skb_list +EXPORT_SYMBOL vmlinux 0x9ca583e4 clkdev_drop +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cafacce alloc_disk_node +EXPORT_SYMBOL vmlinux 0x9cd96ca3 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x9ce169af neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x9d041a8a blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d335f14 param_get_long +EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d460320 input_set_capability +EXPORT_SYMBOL vmlinux 0x9d477e02 file_open_root +EXPORT_SYMBOL vmlinux 0x9d4ff887 arp_tbl +EXPORT_SYMBOL vmlinux 0x9d7a6df0 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x9d87b121 lease_modify +EXPORT_SYMBOL vmlinux 0x9ddd2ccc seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x9ddda982 nf_log_trace +EXPORT_SYMBOL vmlinux 0x9de809fa scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x9df2f73c blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e0584e3 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x9e0c709e jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e1bbd36 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x9e2c1bad devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x9e2dc3c7 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x9e35a0a8 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e4549b7 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x9e4870fd pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e523521 md_register_thread +EXPORT_SYMBOL vmlinux 0x9e55e14b __put_cred +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e622c76 km_report +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e6d96ba mmc_gpio_set_cd_isr +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 0x9ebc5707 inet6_getname +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ec2e277 nvm_end_io +EXPORT_SYMBOL vmlinux 0x9eefa108 deactivate_super +EXPORT_SYMBOL vmlinux 0x9efdd834 input_event +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f47dc65 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x9f4d6db2 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x9f6b09bb __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x9f7bf392 generic_update_time +EXPORT_SYMBOL vmlinux 0x9f8f53a2 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fd8a05f fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffc3ee8 get_acl +EXPORT_SYMBOL vmlinux 0x9ffe71db netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa0259b0d d_rehash +EXPORT_SYMBOL vmlinux 0xa034ee86 single_release +EXPORT_SYMBOL vmlinux 0xa03b48f5 __inode_permission +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa044673f fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xa0475bce dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa054819a mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xa0571289 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa07bf0c2 textsearch_register +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08c0e6a file_path +EXPORT_SYMBOL vmlinux 0xa08f0545 generic_writepages +EXPORT_SYMBOL vmlinux 0xa09d2b5a path_nosuid +EXPORT_SYMBOL vmlinux 0xa0a3b403 skb_put +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b3bd45 proc_create_data +EXPORT_SYMBOL vmlinux 0xa0cc86c6 set_create_files_as +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e4b9c4 get_tz_trend +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0f0a071 sk_stream_error +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1218bc3 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xa1257b90 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa19de3fd boot_cpu_data +EXPORT_SYMBOL vmlinux 0xa19f522d register_console +EXPORT_SYMBOL vmlinux 0xa1a84ddf may_umount_tree +EXPORT_SYMBOL vmlinux 0xa1a9aa89 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xa1afcc8a request_key_async +EXPORT_SYMBOL vmlinux 0xa1b20cc5 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1bd183e security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1ca94f0 netlink_ack +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa21354c3 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xa21eac95 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xa21ed594 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xa2673ec4 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xa27aabe0 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa28e5890 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xa2b04b79 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0xa2b6cb1c kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0xa2c5f971 udp_ioctl +EXPORT_SYMBOL vmlinux 0xa2cc38fc starget_for_each_device +EXPORT_SYMBOL vmlinux 0xa2d2e387 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xa2d32947 sync_inode +EXPORT_SYMBOL vmlinux 0xa2e0ff69 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xa2e1faf2 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xa30e7a89 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa34a6e5d __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa3560a29 file_ns_capable +EXPORT_SYMBOL vmlinux 0xa36f78ef nvm_submit_io +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa3dcbfd3 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xa3e12559 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xa3f19a45 get_phy_device +EXPORT_SYMBOL vmlinux 0xa3fa8341 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xa414a64b __skb_get_hash +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa4486f21 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xa452598e mmc_register_driver +EXPORT_SYMBOL vmlinux 0xa46dc9da tty_unregister_device +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa481764d i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xa484b854 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xa49daf6a bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xa4b01364 nvm_get_blk +EXPORT_SYMBOL vmlinux 0xa4b325f0 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xa4b50d25 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4bd364b param_get_string +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4db670f netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xa4eb964a dma_supported +EXPORT_SYMBOL vmlinux 0xa51cdfe8 __FIXADDR_TOP +EXPORT_SYMBOL vmlinux 0xa51ef3dd iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xa5463119 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xa5520ee4 block_read_full_page +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5732b9e writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xa5745f78 skb_trim +EXPORT_SYMBOL vmlinux 0xa575c658 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xa57b7601 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xa57fe3ce dev_emerg +EXPORT_SYMBOL vmlinux 0xa581e4f4 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a1753a __destroy_inode +EXPORT_SYMBOL vmlinux 0xa62e6e4f acpi_get_table_with_size +EXPORT_SYMBOL vmlinux 0xa631fedf tcp_req_err +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa65ebe31 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa678c11d vfs_writef +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6859e02 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xa68c7326 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa69ace82 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up +EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error +EXPORT_SYMBOL vmlinux 0xa6c5331f try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xa6d6136f proc_symlink +EXPORT_SYMBOL vmlinux 0xa6e53675 arp_create +EXPORT_SYMBOL vmlinux 0xa6eb89eb pci_fixup_device +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa7055e27 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xa7089aa3 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa720fce5 simple_unlink +EXPORT_SYMBOL vmlinux 0xa735a284 dev_addr_init +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa74661af pci_clear_master +EXPORT_SYMBOL vmlinux 0xa746a707 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xa74f5f99 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xa76d4d22 get_task_exe_file +EXPORT_SYMBOL vmlinux 0xa780e34b vfs_iter_write +EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock +EXPORT_SYMBOL vmlinux 0xa794b03d genphy_config_init +EXPORT_SYMBOL vmlinux 0xa7c7c434 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xa7ce22af always_delete_dentry +EXPORT_SYMBOL vmlinux 0xa7cf6c2f atomic64_dec_return_cx8 +EXPORT_SYMBOL vmlinux 0xa7e731e6 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xa7f88715 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xa803e787 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8464d19 __register_chrdev +EXPORT_SYMBOL vmlinux 0xa85c5ad7 console_start +EXPORT_SYMBOL vmlinux 0xa862d652 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa87f3c85 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xa8c2254f release_sock +EXPORT_SYMBOL vmlinux 0xa8d24133 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa90c7f7b blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0xa90c8abd param_set_bool +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa955a835 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xa95835a2 proto_register +EXPORT_SYMBOL vmlinux 0xa95ebd79 napi_get_frags +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa97c6b15 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xa9865fd8 find_lock_entry +EXPORT_SYMBOL vmlinux 0xa9a30338 kill_fasync +EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xa9b12009 dev_get_flags +EXPORT_SYMBOL vmlinux 0xa9c47aa6 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9cfea6b x86_hyper +EXPORT_SYMBOL vmlinux 0xa9e5d289 fb_set_var +EXPORT_SYMBOL vmlinux 0xaa18fcf7 bio_reset +EXPORT_SYMBOL vmlinux 0xaa377009 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0xaa423d57 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xaa4acbbd jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xaa4d1578 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xaa51e607 input_unregister_handle +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 0xaa8cd827 __inet_hash +EXPORT_SYMBOL vmlinux 0xaa8fea18 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xaab1d2f1 fget_raw +EXPORT_SYMBOL vmlinux 0xaac84ef9 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xaacc69d0 x86_dma_fallback_dev +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 0xaaea6d78 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xaaf86af7 inet_listen +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab3df0c6 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xab4430c0 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xab4d7a8e inet6_register_protosw +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 0xab73cddf put_tty_driver +EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab87a31d skb_tx_error +EXPORT_SYMBOL vmlinux 0xab9444aa create_empty_buffers +EXPORT_SYMBOL vmlinux 0xaba3159c gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xabacfb03 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xabb2e295 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xabb39125 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xabbf9808 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xabc88175 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabd35617 key_unlink +EXPORT_SYMBOL vmlinux 0xabd84561 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xabdd6463 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xabe40f1d kthread_bind +EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac2db3ae serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac3ad8d9 override_creds +EXPORT_SYMBOL vmlinux 0xac42a7d9 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xac4f369b audit_log_start +EXPORT_SYMBOL vmlinux 0xac566fd9 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0xac5b6eec pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xac5d693c xfrm_register_type +EXPORT_SYMBOL vmlinux 0xac6f22a9 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xac7bf0d0 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xac966a57 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xac97b5fa file_remove_privs +EXPORT_SYMBOL vmlinux 0xaca729d9 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacae5213 seq_escape +EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xaccdb1f0 kfree_skb +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xace17be6 seq_release +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf5fca1 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xad02f90d agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad04368f netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xad047f54 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xad285b4e tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xad35a03f reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xad4403da mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xad4e1ad4 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xad698f77 dqstats +EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free +EXPORT_SYMBOL vmlinux 0xad79bdaf sk_stop_timer +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad991b6f iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xadd6bb9d jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xadebbdef input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list +EXPORT_SYMBOL vmlinux 0xae04b8e9 bio_endio +EXPORT_SYMBOL vmlinux 0xae13e6a5 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xae2336bb blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xae756ce0 load_nls_default +EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xaeaa4c56 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xaeb1774e blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xaebe39c4 dm_get_device +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaecca032 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xaedc0bc0 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xaee39827 put_cmsg +EXPORT_SYMBOL vmlinux 0xaf0310b6 scsi_init_io +EXPORT_SYMBOL vmlinux 0xaf14f9ce tty_port_open +EXPORT_SYMBOL vmlinux 0xaf36dd8b pcie_port_service_unregister +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 0xaf65bf11 km_new_mapping +EXPORT_SYMBOL vmlinux 0xaf705f1c d_find_any_alias +EXPORT_SYMBOL vmlinux 0xaf79803f pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xaf80df39 generic_write_end +EXPORT_SYMBOL vmlinux 0xaf883ec0 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xaf9daae2 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xb02bd591 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xb0334c60 nd_iostat_end +EXPORT_SYMBOL vmlinux 0xb0336aea ip_setsockopt +EXPORT_SYMBOL vmlinux 0xb033ebc3 vfs_symlink +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb06662e0 dquot_file_open +EXPORT_SYMBOL vmlinux 0xb06eadc0 kill_litter_super +EXPORT_SYMBOL vmlinux 0xb07010ee blk_complete_request +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb08228a4 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a34b69 ata_port_printk +EXPORT_SYMBOL vmlinux 0xb0b3793f sock_create_lite +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0c9aeb1 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xb0ca6773 param_get_byte +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e4f324 textsearch_destroy +EXPORT_SYMBOL vmlinux 0xb0e7fa4d scsi_print_result +EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0xb10820e4 _raw_read_unlock +EXPORT_SYMBOL vmlinux 0xb114bf24 tcp_check_req +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1310e39 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xb137f0b5 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xb145a4c3 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xb147edd3 blk_delay_queue +EXPORT_SYMBOL vmlinux 0xb157a62a dm_put_device +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb176f4d1 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xb17fff71 bdev_read_only +EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init +EXPORT_SYMBOL vmlinux 0xb1935f3b generic_read_dir +EXPORT_SYMBOL vmlinux 0xb1990503 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xb1998501 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xb19c3e97 pci_request_selected_regions +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 0xb1dde62b kernel_write +EXPORT_SYMBOL vmlinux 0xb1e8336f __frontswap_test +EXPORT_SYMBOL vmlinux 0xb1fb10f3 sk_common_release +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb21bedb7 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xb24281de genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xb2534447 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb26bd304 scsi_add_device +EXPORT_SYMBOL vmlinux 0xb2792cbd empty_aops +EXPORT_SYMBOL vmlinux 0xb2a0632c ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xb2a9bb4c blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xb2b4f171 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xb2b71661 register_key_type +EXPORT_SYMBOL vmlinux 0xb2b91e52 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xb2be18dd init_task +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2d5a552 complete +EXPORT_SYMBOL vmlinux 0xb2d7f128 phy_device_register +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb3010cff security_mmap_file +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xb32e1ead mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xb336e61c __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3e0590d acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0xb3e18c05 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xb3f0f4ff downgrade_write +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb402b7ba ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xb4139d3f fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4245a04 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xb42be652 dump_trace +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb45578b8 memscan +EXPORT_SYMBOL vmlinux 0xb46792a7 iget_failed +EXPORT_SYMBOL vmlinux 0xb46df612 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47a07ed tty_port_put +EXPORT_SYMBOL vmlinux 0xb47ef9d1 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xb48bfc46 get_task_io_context +EXPORT_SYMBOL vmlinux 0xb4a0c3c3 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xb4abc52b inet_frags_init +EXPORT_SYMBOL vmlinux 0xb4ba1678 blk_finish_request +EXPORT_SYMBOL vmlinux 0xb4c90805 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0xb4e55721 phy_start +EXPORT_SYMBOL vmlinux 0xb4f7897c cap_mmap_file +EXPORT_SYMBOL vmlinux 0xb50869f6 uart_match_port +EXPORT_SYMBOL vmlinux 0xb5092e88 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xb5229392 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xb52b0f19 kernel_listen +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb5586863 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xb55fa67f mdio_bus_type +EXPORT_SYMBOL vmlinux 0xb5619f54 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb573b38c dentry_unhash +EXPORT_SYMBOL vmlinux 0xb5856c4b blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xb59d4440 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xb5a07b8c __ip_dev_find +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b6fa06 bio_clone_fast +EXPORT_SYMBOL vmlinux 0xb5bc31dc nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xb5c8baa3 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xb5c9dfff inet6_offloads +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xb5ed641f input_flush_device +EXPORT_SYMBOL vmlinux 0xb5f4fb94 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xb6078b4d __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb62638d8 bd_set_size +EXPORT_SYMBOL vmlinux 0xb626a3e0 noop_qdisc +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb6763e6a agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xb6768a18 km_state_expired +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb691ce0a pci_biosrom_size +EXPORT_SYMBOL vmlinux 0xb6924c36 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a5bcb1 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6ae42b4 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xb6d48041 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xb6e41883 memcmp +EXPORT_SYMBOL vmlinux 0xb6ed1e53 strncpy +EXPORT_SYMBOL vmlinux 0xb6f231df block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xb7162809 dev_add_offload +EXPORT_SYMBOL vmlinux 0xb72306f5 __lock_page +EXPORT_SYMBOL vmlinux 0xb726f906 vc_resize +EXPORT_SYMBOL vmlinux 0xb72fd891 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xb740b897 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xb74153d0 register_quota_format +EXPORT_SYMBOL vmlinux 0xb7460903 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb7757ec6 datagram_poll +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7a38784 register_cdrom +EXPORT_SYMBOL vmlinux 0xb7b6a131 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xb7ba4f34 nobh_writepage +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7cee2b5 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xb7f440ce skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xb7f55ecc atomic64_add_return_cx8 +EXPORT_SYMBOL vmlinux 0xb80493f8 ps2_init +EXPORT_SYMBOL vmlinux 0xb808535a lwtunnel_output +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb825c227 bio_phys_segments +EXPORT_SYMBOL vmlinux 0xb835a12a keyring_search +EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xb860016b netif_device_detach +EXPORT_SYMBOL vmlinux 0xb864e858 blk_init_queue +EXPORT_SYMBOL vmlinux 0xb8680ddc __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xb86f671c neigh_ifdown +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb8763510 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xb894d488 kfree_put_link +EXPORT_SYMBOL vmlinux 0xb8a3b28b jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xb8ac8d58 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xb8c6f8aa blk_put_queue +EXPORT_SYMBOL vmlinux 0xb8dc6eb1 tty_name +EXPORT_SYMBOL vmlinux 0xb8e297d2 __kfree_skb +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8fc3d0a tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize +EXPORT_SYMBOL vmlinux 0xb9124e5c sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xb91cd83f iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xb9290d77 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xb94104ad padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xb9417d36 abx500_register_ops +EXPORT_SYMBOL vmlinux 0xb942e2ff i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xb9596ae5 up_read +EXPORT_SYMBOL vmlinux 0xb9a96da2 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xb9c2cb26 skb_checksum +EXPORT_SYMBOL vmlinux 0xb9c8b748 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xb9dee0cf alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xb9e05bb9 __blk_end_request +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xba26ceab ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba351859 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xba45a61c vfs_fsync +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba5b6072 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xba6234fd blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xba7aced8 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xba8b5a5e sg_miter_stop +EXPORT_SYMBOL vmlinux 0xbab7ed29 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbae7518d page_symlink +EXPORT_SYMBOL vmlinux 0xbb019655 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb06ce0d jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xbb1a39f3 __break_lease +EXPORT_SYMBOL vmlinux 0xbb21991c __f_setown +EXPORT_SYMBOL vmlinux 0xbb250f82 dquot_disable +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3714ae security_path_symlink +EXPORT_SYMBOL vmlinux 0xbb4a387a eth_gro_complete +EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb669e5f agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xbba88064 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xbbb5bad6 mdiobus_free +EXPORT_SYMBOL vmlinux 0xbbcdd2ac nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xbbce6605 backlight_force_update +EXPORT_SYMBOL vmlinux 0xbbe0a18d vfs_rmdir +EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt +EXPORT_SYMBOL vmlinux 0xbbf17cca dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xbbffb86c mark_page_accessed +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc38a725 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xbc435770 dump_stack +EXPORT_SYMBOL vmlinux 0xbc43d24a tty_check_change +EXPORT_SYMBOL vmlinux 0xbc5260ae simple_open +EXPORT_SYMBOL vmlinux 0xbc5d68ed vfs_readf +EXPORT_SYMBOL vmlinux 0xbca9bfa3 replace_mount_options +EXPORT_SYMBOL vmlinux 0xbcb22426 mmc_add_host +EXPORT_SYMBOL vmlinux 0xbcb5b8ec mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcc77d93 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xbccee907 mpage_writepages +EXPORT_SYMBOL vmlinux 0xbccfdec9 devm_gpio_free +EXPORT_SYMBOL vmlinux 0xbce31ddc security_path_rmdir +EXPORT_SYMBOL vmlinux 0xbcecab6c vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xbcf3d341 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xbcfa2f3b fput +EXPORT_SYMBOL vmlinux 0xbd29b42a truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xbd2ecf78 install_exec_creds +EXPORT_SYMBOL vmlinux 0xbd2fc385 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xbd469c0e nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xbd470826 block_write_end +EXPORT_SYMBOL vmlinux 0xbd589507 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xbd63fadd skb_vlan_push +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdc94380 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe44ff9e posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xbe517795 dquot_enable +EXPORT_SYMBOL vmlinux 0xbe607102 set_page_dirty +EXPORT_SYMBOL vmlinux 0xbe88efe3 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xbe8c37d9 intel_scu_ipc_simple_command +EXPORT_SYMBOL vmlinux 0xbeaff993 d_move +EXPORT_SYMBOL vmlinux 0xbeb2fea0 pcim_iomap +EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu +EXPORT_SYMBOL vmlinux 0xbee53164 flow_cache_init +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf486982 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xbf4ff6e3 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xbf502d93 search_binary_handler +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8b39e9 isapnp_present +EXPORT_SYMBOL vmlinux 0xbf8de7e2 tty_hangup +EXPORT_SYMBOL vmlinux 0xbf959847 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa5e2c9 bioset_free +EXPORT_SYMBOL vmlinux 0xbfab29e4 set_user_nice +EXPORT_SYMBOL vmlinux 0xbfb0c37b ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfe6f427 _raw_spin_unlock_irq +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff2b3a7 cad_pid +EXPORT_SYMBOL vmlinux 0xbff90348 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0xbff9b07a scsi_register_interface +EXPORT_SYMBOL vmlinux 0xc0012904 page_readlink +EXPORT_SYMBOL vmlinux 0xc0132301 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xc01eed33 __copy_from_user_ll_nozero +EXPORT_SYMBOL vmlinux 0xc02546e2 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xc02d4f07 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0xc02e91f9 __genl_register_family +EXPORT_SYMBOL vmlinux 0xc03211f2 f_setown +EXPORT_SYMBOL vmlinux 0xc03db146 simple_fill_super +EXPORT_SYMBOL vmlinux 0xc04c6e37 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xc0506100 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc071d7a5 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc09f4a08 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0b12363 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0xc0cd3b13 ___ratelimit +EXPORT_SYMBOL vmlinux 0xc0e811bb scsi_device_resume +EXPORT_SYMBOL vmlinux 0xc0f0a4b6 module_put +EXPORT_SYMBOL vmlinux 0xc0fec4ea kernel_getsockname +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc13887fa mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xc13f83e2 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xc140a753 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xc158586d pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xc15c24a8 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xc15f1adf invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xc17a01e8 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0xc199e657 init_net +EXPORT_SYMBOL vmlinux 0xc1ad6208 scsi_unregister +EXPORT_SYMBOL vmlinux 0xc1b572e2 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc20f4702 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xc225f3f5 try_module_get +EXPORT_SYMBOL vmlinux 0xc233d4e5 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xc23f4410 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc245cc7c dqget +EXPORT_SYMBOL vmlinux 0xc25dc3ab blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xc280a525 __copy_from_user_ll +EXPORT_SYMBOL vmlinux 0xc2900ff0 is_bad_inode +EXPORT_SYMBOL vmlinux 0xc2903a22 param_ops_string +EXPORT_SYMBOL vmlinux 0xc296f8c4 pci_map_rom +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2c49f7c inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2d9150d uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xc2d980f3 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e809f9 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xc2f47833 sk_capable +EXPORT_SYMBOL vmlinux 0xc330dcf5 phy_driver_register +EXPORT_SYMBOL vmlinux 0xc3463075 tty_free_termios +EXPORT_SYMBOL vmlinux 0xc34c70fe xfrm_state_update +EXPORT_SYMBOL vmlinux 0xc35445c8 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xc35fd1b5 dcb_getapp +EXPORT_SYMBOL vmlinux 0xc36cb41a elv_add_request +EXPORT_SYMBOL vmlinux 0xc38145cf elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xc392c238 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xc39c09c1 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3da51b9 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xc3fa6a59 memchr +EXPORT_SYMBOL vmlinux 0xc40cda0c max8925_reg_write +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc435ed50 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xc46a7e34 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xc47ac4c7 fsync_bdev +EXPORT_SYMBOL vmlinux 0xc486ce60 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xc48cbea4 nf_log_packet +EXPORT_SYMBOL vmlinux 0xc4928294 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4aeae9a vme_master_mmap +EXPORT_SYMBOL vmlinux 0xc4d7f6eb kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xc4e25925 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0xc5161355 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xc5353bc9 sock_i_uid +EXPORT_SYMBOL vmlinux 0xc53d9938 dget_parent +EXPORT_SYMBOL vmlinux 0xc5462085 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xc5528a4f __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59e919f import_iovec +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e74b0a sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xc5e80746 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc60ccbe8 __breadahead +EXPORT_SYMBOL vmlinux 0xc6148af5 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xc62dfd90 clear_wb_congested +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc6388d21 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xc63932a2 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xc64a26d9 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc6610f31 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xc66379ed genl_unregister_family +EXPORT_SYMBOL vmlinux 0xc672f6b8 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc67a09fe intel_gtt_get +EXPORT_SYMBOL vmlinux 0xc689c06c thaw_super +EXPORT_SYMBOL vmlinux 0xc692ba5a gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xc6b23120 intel_scu_ipc_iowrite16 +EXPORT_SYMBOL vmlinux 0xc6b2a6d9 unlock_rename +EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d2366a set_pages_array_uc +EXPORT_SYMBOL vmlinux 0xc6dc4f18 current_fs_time +EXPORT_SYMBOL vmlinux 0xc6f14111 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xc6f85b3d dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xc6f8bd47 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xc709de3a dst_destroy +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc744c3fe input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xc748c15c phy_attach_direct +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 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7ab54a8 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xc7ac3288 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0xc7adf4d9 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xc7c83a78 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xc7d1e01a mutex_trylock +EXPORT_SYMBOL vmlinux 0xc7d9793e inet_accept +EXPORT_SYMBOL vmlinux 0xc7e18bad mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7fb24bf tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xc81753d8 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc84247ae xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84ae604 input_reset_device +EXPORT_SYMBOL vmlinux 0xc84dc146 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xc85277e3 vfs_getattr +EXPORT_SYMBOL vmlinux 0xc857e24e iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xc86d6799 ___preempt_schedule +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc883f712 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a84033 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8ac72b4 param_set_int +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8d9662e blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xc8f6d071 security_path_unlink +EXPORT_SYMBOL vmlinux 0xc8f900b8 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc918e275 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xc93bc34f i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xc95de9f5 inet_offloads +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9834ef5 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock +EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue +EXPORT_SYMBOL vmlinux 0xca00aef3 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca2ed9fe generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca5bb0b6 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xca6ed738 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xca7a0d57 wake_up_process +EXPORT_SYMBOL vmlinux 0xca7ac2f3 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaa2f19d take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xcab613b0 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xcab62af0 netpoll_setup +EXPORT_SYMBOL vmlinux 0xcabe1bcc iov_iter_npages +EXPORT_SYMBOL vmlinux 0xcace470a udplite_prot +EXPORT_SYMBOL vmlinux 0xcae0380a __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xcaed83b3 phy_read_mmd_indirect +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 0xcb126c78 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xcb668512 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xcb6ca99e dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb7d9029 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc0d0ef copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbdca98b __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbed1bbb read_cache_page +EXPORT_SYMBOL vmlinux 0xcbf1d447 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xcbfe95d8 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xcc00e2c1 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0xcc23ce1c scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc301edc netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xcc3954ca seq_read +EXPORT_SYMBOL vmlinux 0xcc451a5e lock_rename +EXPORT_SYMBOL vmlinux 0xcc4d1bfb atomic64_read_cx8 +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc56bec5 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xcc69fce4 inode_init_always +EXPORT_SYMBOL vmlinux 0xcc6eb25d lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0xcc7f5693 sync_blockdev +EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl +EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute +EXPORT_SYMBOL vmlinux 0xcc97a8cc acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xccaf30af seq_write +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccda107d pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xccdeab88 da903x_query_status +EXPORT_SYMBOL vmlinux 0xcce7c8f4 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xccffc3d7 inet_sendpage +EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd4a7f45 mmc_request_done +EXPORT_SYMBOL vmlinux 0xcd5410fe sg_miter_skip +EXPORT_SYMBOL vmlinux 0xcd62e080 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0xcd747a8d cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xcd833f63 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xcd88b37d pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xcd8a4b14 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0xcd9f8e0c mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xcdb3367b register_shrinker +EXPORT_SYMBOL vmlinux 0xcdbad5d0 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xcdbafb82 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xce0479da tty_port_close +EXPORT_SYMBOL vmlinux 0xce0e8e7d default_llseek +EXPORT_SYMBOL vmlinux 0xce2608ff netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xce438eae ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce5af200 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xce69f331 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xce817b8b devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xce855f37 cdev_alloc +EXPORT_SYMBOL vmlinux 0xce9e41e9 lockref_get +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceb96089 loop_backing_file +EXPORT_SYMBOL vmlinux 0xceba6acb kern_unmount +EXPORT_SYMBOL vmlinux 0xcedfc84d lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf278d9c simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xcf4bbbcf bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xcf4ca0b0 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xcf62cfa6 pcibios_set_irq_routing +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcf78e184 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xcf7fd70f blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xcf86d532 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xcf9d8976 nvm_register +EXPORT_SYMBOL vmlinux 0xcfa67452 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xcfe05d4d register_kmmio_probe +EXPORT_SYMBOL vmlinux 0xcfe7927c tcf_exts_change +EXPORT_SYMBOL vmlinux 0xcfe832f8 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xcfec0208 generic_file_open +EXPORT_SYMBOL vmlinux 0xcfed7dba xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xd0305a53 vga_get +EXPORT_SYMBOL vmlinux 0xd03789cb vc_cons +EXPORT_SYMBOL vmlinux 0xd05f7092 follow_pfn +EXPORT_SYMBOL vmlinux 0xd062a694 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xd070d4f6 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd07922be generic_delete_inode +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd09e9900 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a90e79 kset_register +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0aa6262 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0xd0c693ed eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xd0d8621b strlen +EXPORT_SYMBOL vmlinux 0xd0de1264 key_put +EXPORT_SYMBOL vmlinux 0xd0e94ac9 inet_proto_csum_replace16 +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 0xd101c9c4 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xd1078c76 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xd11a4b57 md_write_start +EXPORT_SYMBOL vmlinux 0xd1376feb pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xd13aae28 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xd15de841 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xd161d5cd vmap +EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info +EXPORT_SYMBOL vmlinux 0xd1713b12 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1948bff simple_transaction_release +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1cf2343 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1dcfd01 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xd1e057c4 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace +EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd211f18a nobh_write_end +EXPORT_SYMBOL vmlinux 0xd217c241 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xd226263f vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xd2326f94 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xd23ba32b clk_add_alias +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd254216c send_sig +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd2712803 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd29ac815 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xd29b34a0 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xd2aa589c kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2bdc96d max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xd2c350c7 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xd2d33bb7 km_state_notify +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e6a582 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xd3052d3a tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xd30bce1a scm_detach_fds +EXPORT_SYMBOL vmlinux 0xd31b0212 add_disk +EXPORT_SYMBOL vmlinux 0xd32caceb mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xd34113b3 audit_log +EXPORT_SYMBOL vmlinux 0xd3530503 simple_getattr +EXPORT_SYMBOL vmlinux 0xd35de254 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xd3807300 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xd3853620 inet_csk_accept +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c26e72 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0xd3e50d2a amd_northbridges +EXPORT_SYMBOL vmlinux 0xd3fc7500 filemap_fault +EXPORT_SYMBOL vmlinux 0xd410d670 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xd4180bd1 tty_vhangup +EXPORT_SYMBOL vmlinux 0xd4278d6c blk_stop_queue +EXPORT_SYMBOL vmlinux 0xd438fa43 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xd4639f1c seq_release_private +EXPORT_SYMBOL vmlinux 0xd46e369c mmc_get_card +EXPORT_SYMBOL vmlinux 0xd48247b3 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xd482cbfc md_done_sync +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd486d953 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xd4a73192 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xd4b06b64 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0xd4e87ea8 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xd50a334e pci_write_vpd +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd517ed13 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xd5334d3b dm_put_table_device +EXPORT_SYMBOL vmlinux 0xd53a3e4f skb_copy +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd56c43e6 bdget_disk +EXPORT_SYMBOL vmlinux 0xd57ef9dc release_firmware +EXPORT_SYMBOL vmlinux 0xd58bdc57 dev_add_pack +EXPORT_SYMBOL vmlinux 0xd58fbfed bio_split +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd598178c nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xd59f8ac9 dput +EXPORT_SYMBOL vmlinux 0xd5c172ae dump_page +EXPORT_SYMBOL vmlinux 0xd5c2f36b md_reload_sb +EXPORT_SYMBOL vmlinux 0xd5f15f14 set_pages_array_wb +EXPORT_SYMBOL vmlinux 0xd5f4de39 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd5faa3b3 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xd602ba22 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd627b296 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd631c101 set_disk_ro +EXPORT_SYMBOL vmlinux 0xd635cb9f get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd65a5049 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xd66daf81 arch_dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xd6802fd9 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd6896e3c mdiobus_scan +EXPORT_SYMBOL vmlinux 0xd68d67b5 __frontswap_load +EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xd69d0ed2 fb_class +EXPORT_SYMBOL vmlinux 0xd6a028b3 keyring_alloc +EXPORT_SYMBOL vmlinux 0xd6a2b7e8 free_user_ns +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6c08049 __getblk_slow +EXPORT_SYMBOL vmlinux 0xd6dc0308 tcp_seq_open +EXPORT_SYMBOL vmlinux 0xd6e4532c nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd730959d seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xd736ea2f call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xd7501a63 phy_find_first +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd7665bb7 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xd78b0c1b pci_get_class +EXPORT_SYMBOL vmlinux 0xd78d791c __skb_checksum +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e4bf06 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd84e3078 tcp_filter +EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xd85c9f5b inet_stream_ops +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8ac7860 mutex_unlock +EXPORT_SYMBOL vmlinux 0xd8db11c0 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8e5b4dd swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0xd8f8d9cf xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd916856e jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xd9242974 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xd92e2dca tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xd93268d8 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd94fbb08 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xd9546ba3 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xd95a6980 tcp_poll +EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done +EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected +EXPORT_SYMBOL vmlinux 0xd96aceb8 dst_release +EXPORT_SYMBOL vmlinux 0xd96d9ea5 phy_init_eee +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd998910f jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xd9bd6e9e genphy_resume +EXPORT_SYMBOL vmlinux 0xd9bdc2c6 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xd9c287df single_open +EXPORT_SYMBOL vmlinux 0xd9c9536d inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9e39510 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xd9ffe397 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xda08c0d7 pcibios_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xda0f35b5 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xda1e9894 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xda2941f1 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xda347b1d udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda3fc383 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xda511936 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda7d30a9 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xda7eabee drop_super +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8d13f4 module_layout +EXPORT_SYMBOL vmlinux 0xda8fd495 isapnp_write_byte +EXPORT_SYMBOL vmlinux 0xda93e950 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xda979445 dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0xda9d874d do_splice_direct +EXPORT_SYMBOL vmlinux 0xdaa1ce8e register_md_personality +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad0ddd6 sock_efree +EXPORT_SYMBOL vmlinux 0xdad60730 __vfs_read +EXPORT_SYMBOL vmlinux 0xdae80100 _raw_spin_unlock +EXPORT_SYMBOL vmlinux 0xdb049db2 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xdb13e250 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb21e18a pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xdb23214a nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xdb2f2a9b igrab +EXPORT_SYMBOL vmlinux 0xdb38e8da sync_filesystem +EXPORT_SYMBOL vmlinux 0xdb413a40 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xdb57e1e6 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6dd8e9 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb73c2c4 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb8a5f56 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xdb8c4025 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xdbb21bc0 d_path +EXPORT_SYMBOL vmlinux 0xdbdc4664 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc192278 pv_cpu_ops +EXPORT_SYMBOL vmlinux 0xdc1ec3e0 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xdc26fc92 copy_from_iter +EXPORT_SYMBOL vmlinux 0xdc2ff870 qdisc_reset +EXPORT_SYMBOL vmlinux 0xdc330e3d blk_free_tags +EXPORT_SYMBOL vmlinux 0xdc3b8315 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc47cee1 twl6040_power +EXPORT_SYMBOL vmlinux 0xdc48a93b register_sysctl_table +EXPORT_SYMBOL vmlinux 0xdc491e59 napi_complete_done +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc51aa3e fb_show_logo +EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xdc62cdd8 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xdc69e096 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xdc77c3f0 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xdc7ad134 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0xdc979206 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xdcbc782e netpoll_print_options +EXPORT_SYMBOL vmlinux 0xdcff468a blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xdd017994 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd2cc584 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xdd546a59 simple_setattr +EXPORT_SYMBOL vmlinux 0xdd5b2eef mapping_tagged +EXPORT_SYMBOL vmlinux 0xdd63621d simple_link +EXPORT_SYMBOL vmlinux 0xdd887f76 cdev_del +EXPORT_SYMBOL vmlinux 0xddb37d02 proc_dointvec +EXPORT_SYMBOL vmlinux 0xddb92260 tcp_make_synack +EXPORT_SYMBOL vmlinux 0xddda5c56 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xddf2c1f6 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xddf590e5 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xde05fd03 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xde16dc16 tboot +EXPORT_SYMBOL vmlinux 0xde1bf250 dcb_setapp +EXPORT_SYMBOL vmlinux 0xde2efdf5 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xde51cbc4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xde6b17d4 page_follow_link_light +EXPORT_SYMBOL vmlinux 0xde79492e filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xde827d37 blk_fetch_request +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdeb33a4a param_set_byte +EXPORT_SYMBOL vmlinux 0xdebe2c48 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xded0424f xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xded931f3 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xdee8a283 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xdeea5213 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xdefd1973 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xdefd842c pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xdefe7746 block_write_full_page +EXPORT_SYMBOL vmlinux 0xdf042cac blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xdf06a25a acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xdf092cfe udp_sendmsg +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 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf4fc797 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xdf5474ec mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf80678f dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfd21918 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xdfdfbbad __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe01d7ee8 generic_listxattr +EXPORT_SYMBOL vmlinux 0xe034f075 neigh_update +EXPORT_SYMBOL vmlinux 0xe03ff9e5 input_open_device +EXPORT_SYMBOL vmlinux 0xe0497fb1 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe0575998 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe0715d9e netpoll_cleanup +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 0xe0885aa2 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xe0890b1d call_usermodehelper_setup +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 0xe0b4c0ce padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xe0b61e77 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xe0c4a2e6 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xe0c6cff4 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xe0cac237 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xe0de0322 mmc_free_host +EXPORT_SYMBOL vmlinux 0xe0e2f8cb dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xe1011e1d rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xe10fd8f7 no_llseek +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe13d56a4 skb_store_bits +EXPORT_SYMBOL vmlinux 0xe147dfd3 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xe1528797 lwtunnel_input +EXPORT_SYMBOL vmlinux 0xe166393a cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xe16b39bb page_put_link +EXPORT_SYMBOL vmlinux 0xe170369b sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe18222df ab3100_event_register +EXPORT_SYMBOL vmlinux 0xe1843436 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xe1985f73 dquot_resume +EXPORT_SYMBOL vmlinux 0xe1a4328b xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xe1c7bf10 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xe1ce3202 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xe1d724c7 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xe1eb4a36 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xe1f8f123 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20391cb proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xe2299237 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xe237befb pci_map_biosrom +EXPORT_SYMBOL vmlinux 0xe239e750 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe2460f34 mount_subtree +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe24e47cf genphy_read_status +EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2c1c76d save_mount_options +EXPORT_SYMBOL vmlinux 0xe2cf0ecf tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xe2d4789e blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d93bb3 param_get_uint +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2ea89ee frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe3197208 proc_dostring +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe32f5982 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe33f910f bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xe3403f69 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xe34b0afb block_commit_write +EXPORT_SYMBOL vmlinux 0xe374c09e seq_pad +EXPORT_SYMBOL vmlinux 0xe3b56c6d serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3d1b30c load_nls +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe4052d2e pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xe445db4a acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe45154f1 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0xe4715f72 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe48e5494 init_buffer +EXPORT_SYMBOL vmlinux 0xe493cefb to_nd_btt +EXPORT_SYMBOL vmlinux 0xe49a1caa abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xe4befc89 inet_frag_find +EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe5005594 flow_cache_fini +EXPORT_SYMBOL vmlinux 0xe50f6c20 scmd_printk +EXPORT_SYMBOL vmlinux 0xe50f904f intel_scu_ipc_ioread16 +EXPORT_SYMBOL vmlinux 0xe5130169 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52b334c vme_bus_type +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe53b29a6 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xe552f387 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xe55b90da d_set_d_op +EXPORT_SYMBOL vmlinux 0xe56cf129 kset_unregister +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xe583b7bf kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5bf73a9 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5cd11e4 complete_request_key +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe604f2a9 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xe60d7bf3 vfs_unlink +EXPORT_SYMBOL vmlinux 0xe6162877 down_killable +EXPORT_SYMBOL vmlinux 0xe61a3f3c ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xe61b1f6c __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xe67e5aa6 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xe682fa13 kmap_atomic +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6bfafe9 dev_printk +EXPORT_SYMBOL vmlinux 0xe6c6c5ca scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xe6dff7df kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xe6ea609b mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6f27faf dev_mc_flush +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe70fb3aa inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe7195018 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xe72aa4f5 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xe72ff9e2 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xe743e040 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xe751cd5f pci_set_master +EXPORT_SYMBOL vmlinux 0xe75b2f2e agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xe7651c70 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xe779e162 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xe781b5f6 intel_scu_ipc_readv +EXPORT_SYMBOL vmlinux 0xe7973c0a scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xe79cd50b param_set_short +EXPORT_SYMBOL vmlinux 0xe79ec2c2 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xe7a2e891 inet_sk_rx_dst_set +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 0xe801167b ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xe811fba7 unregister_key_type +EXPORT_SYMBOL vmlinux 0xe815d87e tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xe8172b30 generic_fillattr +EXPORT_SYMBOL vmlinux 0xe81ad39f clocksource_unregister +EXPORT_SYMBOL vmlinux 0xe81c3542 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe8271e8e drop_nlink +EXPORT_SYMBOL vmlinux 0xe8490970 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xe8524e86 lro_flush_all +EXPORT_SYMBOL vmlinux 0xe862fa86 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xe869ac3a key_validate +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 0xe8b68849 wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xe8ba79fa nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c68923 set_bh_page +EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe8e6351e trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9227931 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xe94b91d2 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xe9520873 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe98ec016 nf_afinfo +EXPORT_SYMBOL vmlinux 0xe9929abb pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xe992a64e md_flush_request +EXPORT_SYMBOL vmlinux 0xe99468cd simple_dname +EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xe99e4b2c ip_defrag +EXPORT_SYMBOL vmlinux 0xe9acfac4 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xe9cd5c55 input_free_device +EXPORT_SYMBOL vmlinux 0xe9ed7b5f sock_setsockopt +EXPORT_SYMBOL vmlinux 0xe9ef4b1f twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea1d14f3 mount_bdev +EXPORT_SYMBOL vmlinux 0xea21e657 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xea2cce5e bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0xea301314 sock_create_kern +EXPORT_SYMBOL vmlinux 0xea368f90 vm_mmap +EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea851c28 tty_port_init +EXPORT_SYMBOL vmlinux 0xea854e95 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xea8bfb42 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xea95c4f5 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xea972c9a cfb_fillrect +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeb07a067 vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0xeb16dd82 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xeb1a1b3f intel_gmch_probe +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3d873d vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xeb44404e con_copy_unimap +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb8556b0 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xeb8763e6 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xeba8563c max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xeba957f2 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xebb3d6d4 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xebf01270 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xebfcc352 param_set_ullong +EXPORT_SYMBOL vmlinux 0xebff5cf5 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xec05b6a5 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xec091943 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xec0acda8 nobh_write_begin +EXPORT_SYMBOL vmlinux 0xec143de0 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec2b88b8 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec63a89d __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xeca55c9a sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xeca9190c xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0xecacead9 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xecaf21a7 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xecc50826 mfd_add_devices +EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xecd59912 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xece58b32 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf8ad63 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xed1983c6 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xed39d2ac module_refcount +EXPORT_SYMBOL vmlinux 0xed3f6fd6 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed59cccd devm_memunmap +EXPORT_SYMBOL vmlinux 0xed77218b __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xed79848c submit_bio_wait +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xeda95626 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xedaa2a5c dev_uc_del +EXPORT_SYMBOL vmlinux 0xedac16d2 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xedba7045 __scm_send +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc55e96 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xedd4a014 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xedea8508 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0xededb149 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xedf39c71 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee09eda5 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xee0aa31c neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3b4988 ip6_frag_match +EXPORT_SYMBOL vmlinux 0xee508190 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xee751739 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xee7a022b alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xee7b11a1 kobject_get +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee979b89 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xeea000e6 __block_write_begin +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeaca028 d_alloc +EXPORT_SYMBOL vmlinux 0xeebbd612 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef16fe6f free_netdev +EXPORT_SYMBOL vmlinux 0xef21ec7d eth_type_trans +EXPORT_SYMBOL vmlinux 0xef2c8485 sock_wake_async +EXPORT_SYMBOL vmlinux 0xef2f4c0e pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xef38edf7 proc_set_user +EXPORT_SYMBOL vmlinux 0xef6e7a82 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xef89117e gnttab_free_pages +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xef9da4bf blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefd50e8e fib_default_rule_add +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 0xefe9252e blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xefec921d netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xeffe44d5 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00a019c generic_readlink +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf02768b8 ilookup5 +EXPORT_SYMBOL vmlinux 0xf0292e07 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xf029fd1e key_link +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 0xf06d5a36 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xf074c577 param_set_charp +EXPORT_SYMBOL vmlinux 0xf076eb11 make_kprojid +EXPORT_SYMBOL vmlinux 0xf0799678 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xf07ddcfd dev_alert +EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf092b79f do_SAK +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0acbb8b netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xf0ddb33d filp_close +EXPORT_SYMBOL vmlinux 0xf0e7266b __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf1061cf5 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xf10bf659 serio_interrupt +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf11fe833 kill_pgrp +EXPORT_SYMBOL vmlinux 0xf125fc37 generic_write_checks +EXPORT_SYMBOL vmlinux 0xf1367444 param_get_ushort +EXPORT_SYMBOL vmlinux 0xf13893ff elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf14a15fc up_write +EXPORT_SYMBOL vmlinux 0xf1525404 vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0xf15bbeef noop_llseek +EXPORT_SYMBOL vmlinux 0xf15e1676 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xf163f0ea vme_lm_request +EXPORT_SYMBOL vmlinux 0xf1734a0f pcim_iounmap +EXPORT_SYMBOL vmlinux 0xf18242e1 atomic64_set_cx8 +EXPORT_SYMBOL vmlinux 0xf1955f14 simple_write_begin +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19cd4c7 filemap_flush +EXPORT_SYMBOL vmlinux 0xf1adc8cf mmc_start_req +EXPORT_SYMBOL vmlinux 0xf1b435e3 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1db38f8 touch_buffer +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e91e25 __secpath_destroy +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f7141c sock_update_memcg +EXPORT_SYMBOL vmlinux 0xf2086eda sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf2172be4 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xf21cde56 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xf2323fdb bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xf237144c xattr_full_name +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf241779d mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xf246a523 proc_remove +EXPORT_SYMBOL vmlinux 0xf249e305 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xf24a6d76 bio_init +EXPORT_SYMBOL vmlinux 0xf264b645 read_code +EXPORT_SYMBOL vmlinux 0xf268a882 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xf26fb40f tty_unthrottle +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 0xf2a2e7f8 __blk_run_queue +EXPORT_SYMBOL vmlinux 0xf2ba6b72 make_kuid +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2e7cfb2 sock_i_ino +EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize +EXPORT_SYMBOL vmlinux 0xf3131c84 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31d9d6d xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xf32536d4 netdev_err +EXPORT_SYMBOL vmlinux 0xf32628ed scm_fp_dup +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf337db96 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf3820d66 netdev_notify_peers +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 0xf398cf2e i8042_install_filter +EXPORT_SYMBOL vmlinux 0xf3b6e213 set_blocksize +EXPORT_SYMBOL vmlinux 0xf3e5fc7e agp_find_bridge +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf406410f textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf41694fa vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xf423735c lock_fb_info +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf452753c skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xf46821b5 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xf473d7a5 blk_end_request_all +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4839dab user_path_at_empty +EXPORT_SYMBOL vmlinux 0xf48cb48f phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0xf490eb8e __devm_release_region +EXPORT_SYMBOL vmlinux 0xf49cb274 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xf4a1b340 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xf4a3683a rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4ae33de tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c2cb31 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xf4e5a328 do_splice_to +EXPORT_SYMBOL vmlinux 0xf4ed03eb swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xf4edccd7 md_update_sb +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf502d273 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0xf51436f5 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf534b54d agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54e2cb0 sock_no_poll +EXPORT_SYMBOL vmlinux 0xf55a841d lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0xf5880823 iget5_locked +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a43b81 vfs_readv +EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler +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 0xf5eed681 d_invalidate +EXPORT_SYMBOL vmlinux 0xf6028c0d inode_init_owner +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf63e2790 misc_deregister +EXPORT_SYMBOL vmlinux 0xf64d94f7 dquot_release +EXPORT_SYMBOL vmlinux 0xf64eca88 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xf661c6bf phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf6899c5a acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xf693a145 irq_stat +EXPORT_SYMBOL vmlinux 0xf695a964 vfs_writev +EXPORT_SYMBOL vmlinux 0xf69ee19d input_get_keycode +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6c48e99 simple_statfs +EXPORT_SYMBOL vmlinux 0xf6d29e11 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xf6e70d32 iterate_dir +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf6ff7f1d acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xf7171614 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xf7189da7 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xf726d02f atomic64_add_unless_cx8 +EXPORT_SYMBOL vmlinux 0xf745cb16 atomic64_sub_return_cx8 +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf764868a udplite_table +EXPORT_SYMBOL vmlinux 0xf76cc088 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xf781cdc7 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xf788424d register_sysctl +EXPORT_SYMBOL vmlinux 0xf7888fe1 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xf7891779 gen_pool_free +EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0xf7af705e nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xf7b59509 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xf7b6b963 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xf7d5bb66 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xf7ea8419 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xf7f52eef tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xf80112be unregister_console +EXPORT_SYMBOL vmlinux 0xf8050fac acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xf80fdf5f scsi_remove_host +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf8198127 dquot_drop +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82918f5 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf84dca33 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xf84f42c7 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xf8637e5f I_BDEV +EXPORT_SYMBOL vmlinux 0xf868e206 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xf8751398 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0xf87aa21e free_task +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf8939926 md_write_end +EXPORT_SYMBOL vmlinux 0xf8b98adf netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xf8bd0941 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf9067d5d __check_sticky +EXPORT_SYMBOL vmlinux 0xf90bee9b blk_peek_request +EXPORT_SYMBOL vmlinux 0xf91a37b3 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xf923730e elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf977dcc4 prepare_binprm +EXPORT_SYMBOL vmlinux 0xf99a3662 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xf99bb278 kernel_bind +EXPORT_SYMBOL vmlinux 0xf9a1446e i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9ba24f6 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xf9d22890 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0xf9d3dabe blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9fc6713 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xfa1b56e3 tcp_release_cb +EXPORT_SYMBOL vmlinux 0xfa1f2d50 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xfa3c0891 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xfa402bc8 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xfa494ab7 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xfa4cf415 netlink_unicast +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa570a66 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xfa5854b8 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa622d27 skb_insert +EXPORT_SYMBOL vmlinux 0xfa816c06 input_release_device +EXPORT_SYMBOL vmlinux 0xfab8abeb __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacad0cc blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfacf145c input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xfad3e91e devm_clk_get +EXPORT_SYMBOL vmlinux 0xfadf13c7 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfaf40d73 irq_set_chip +EXPORT_SYMBOL vmlinux 0xfaf66faa i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb28de91 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xfb448614 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0xfb615c97 write_cache_pages +EXPORT_SYMBOL vmlinux 0xfb6186fb acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfba46311 pci_disable_device +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbacb702 param_get_short +EXPORT_SYMBOL vmlinux 0xfbbf8c42 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd71298 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xfbdf9f53 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc12185b xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +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 0xfc94681a find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xfc9f0207 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xfca41908 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcb7341a __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xfcb88700 path_is_under +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcce28f0 mmc_release_host +EXPORT_SYMBOL vmlinux 0xfcce5b15 vme_slot_num +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 0xfd0f6209 filp_open +EXPORT_SYMBOL vmlinux 0xfd16b60d cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xfd184bbd inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xfd1e7d00 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd57f431 vme_irq_request +EXPORT_SYMBOL vmlinux 0xfd85699f udp_poll +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfda5cd42 freeze_super +EXPORT_SYMBOL vmlinux 0xfdae836c netdev_alert +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbca1ff param_array_ops +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdd7cc6b cpufreq_get_policy +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 0xfe0c1c63 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xfe13c522 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0xfe27d81f netdev_change_features +EXPORT_SYMBOL vmlinux 0xfe2a37e6 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xfe2dbd40 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0xfe457ed5 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xfe498049 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe76b035 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe91d19d set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xfe97678e blk_queue_bounce +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfea23825 dev_close +EXPORT_SYMBOL vmlinux 0xfec1c2af __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xfec4a57b dev_mc_init +EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xfed8d7dc __pagevec_release +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee215e7 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xfee2b111 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next +EXPORT_SYMBOL vmlinux 0xff08b0a6 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff26da62 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xff480992 dump_fpu +EXPORT_SYMBOL vmlinux 0xff6015b5 skb_append +EXPORT_SYMBOL vmlinux 0xff67dbc0 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff79da05 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xff8ca729 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff953cfe blk_recount_segments +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffb564a3 flush_signals +EXPORT_SYMBOL vmlinux 0xffb7259d __lock_buffer +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffe09b52 dm_io +EXPORT_SYMBOL vmlinux 0xfffaf919 inode_needs_sync +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 0x6246314f 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 0xb11097b2 glue_cbc_decrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xb8b61a9a glue_ctr_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xdb864198 glue_cbc_encrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xe8dcedcc 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 0x000d581d gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06138f90 kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f6db573 kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10cf4b5c reset_shadow_zero_bits_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10daccae kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1120beed kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x165eb41f load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x175aea24 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19ef871c gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e2404a1 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e2f054c kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ec81d81 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x205d000d kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20943b12 kvm_vcpu_halt +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 0x2435eb0a kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x269f51cc kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x273823b9 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x275d5b0f kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27c0cbc8 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2850d1d9 kvm_mmu_unprotect_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29c37080 kvm_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c3d09eb kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c4fb0f3 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c78b8d4 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e835ec5 kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f636c31 kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31c54f35 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36ff21fc __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x381bb239 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3849ae3e __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x394ba020 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x398810e2 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3aaeb847 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bd220d2 kvm_requeue_exception_e +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 0x41a9e5b3 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43bdb777 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43f4230c __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x447950d6 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x458df10e kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46280dd1 kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x464f465d kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48fcb88b kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49b0439b kvm_mmu_slot_set_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b032b5c gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b53472d kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ceac715 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51f6f88b kvm_mmu_slot_largepage_remove_write_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53b8f423 kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x551b9d3a kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5764c14e kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58fee33a reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x591b98ac kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5925d0c0 kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a5d2fa4 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b5efb80 kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d6bdb73 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61d6e64c kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x620d3a7f kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63061155 kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x667f2248 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67653bfa kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68138a79 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68870861 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c571066 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f446c50 kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6fa129c3 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72e4377e kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x743b41cf kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75c63d47 cpuid_query_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7632aae0 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7883d1f7 kvm_mmu_slot_leaf_clear_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a3513e9 kvm_vcpu_init +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 0x7c98aaf5 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7db69b09 kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e63612f kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e7b86f7 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80ecfb6b __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x816fa265 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8280f40d kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x833017f4 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x870e3eee handle_mmio_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8806a28e kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8882b424 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8bd6a1ae kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c9c4d31 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d434fac kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d461d2f kvm_task_switch +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 0x93876dcd kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x958049aa __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96e564af kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x979e6c22 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x982a6df1 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x982cd932 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98535fa6 kvm_scale_tsc +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 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 0xa1d3cb36 x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3e91d33 kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa64caaeb kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa685c9db vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac9aada1 x86_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf7f97c gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad5cd931 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad826066 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xadf640ac kvm_mmu_sync_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb01693a9 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb33ebaa0 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb36427ec kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb38bed91 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb46c10ad reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb573b656 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6d1f048 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbba87670 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbbb60df3 kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbbc61fdb kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe9ad855 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf2e1bbe kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc05022ec kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc21c383f kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc23f3bc8 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2f9715e kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3572b0c kvm_cpu_get_interrupt +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 0xc59cb848 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc66393fe kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc702e0ec kvm_fast_pio_out +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7a12e47 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7fd8b45 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc93b3f44 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca71c61d kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd08d6b6e kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd168c18f gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1abeb41 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7eb738b __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8ea2274 kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd93bbd46 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd998ba37 kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda11af86 __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda666430 kvm_mmu_clear_dirty_pt_masked +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda8124df kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb24b753 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb5137ad kvm_vcpu_reload_apic_access_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdddbe05d kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde9c017c __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2b02365 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4f18e7f kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe62dc689 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe685dac7 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe92c3ed2 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe942109d kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9c19089 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xefdbdf24 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1187f9d gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1be32ff __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3065637 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4d19824 kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6501eea kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf659adb9 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbe74d70 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdc68132 __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x18467e8e __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x32752c68 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x65df6648 ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x76f3e141 ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x94081cff ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x9b610819 ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xde82b3ad ablk_set_key +EXPORT_SYMBOL_GPL crypto/af_alg 0x01ec481e af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x0614a7a7 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x1ec0e55b af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x95d84219 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xa76155fa af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xb406154e af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xc8721517 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xd674f8cd af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xdbfee047 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xf9a3cf35 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xb0d8e7ed async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x164897b6 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x8e69b9c4 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x1b4b0fd3 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xebdc1162 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x56fe1ca4 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x8f6cdb66 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xab18690d async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb803f2b5 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9224d959 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9c5111f3 async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xeda2a8ff blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x110d9ebf 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 0x76c054ac 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 0x4867b471 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xfe170917 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x1dc99b8d cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x2a14f91a cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x2d1bef6d cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x2d5bbd9e cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x31a5fae8 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x36a3e8b9 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x39c48c09 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x7b1d5eb9 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xa68a41da cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xdbaea6ad 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 0xe71fda68 lrw_crypt +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x2427b082 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x91e3665d shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x935ef4b4 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0xb32976b4 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xbf77cee8 mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0xdc5bd49c shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0xe87a203b shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0xf28fc959 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x15677979 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x1cca7e33 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x59a34f03 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xf3b9e1b0 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 0xecf74f81 serpent_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xa4bd43e7 twofish_setkey +EXPORT_SYMBOL_GPL crypto/xts 0x1cea0c1b xts_crypt +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0x65c8c8ad acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0xd6413b6d 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 0x01fd50f9 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x17cfdc7a ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2f812aee ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3a372ed8 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x439450ad ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4796575d ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x69436d85 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x86ae32dd ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8eab4035 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9dcdc1b0 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa388b67d ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb18ac969 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb4bdd5b4 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb7b82857 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc0591052 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcb60024c ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcdf34f83 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdb5ef583 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdb73d46d ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdc169ae5 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe9dbea42 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xee18d70c ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf902479b ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x08ae8223 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0f84b43b ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x16b1e737 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x292afa27 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3d514af9 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6cc3124d ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x784c0b7e ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x78ff7620 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x93612d02 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x96562448 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb6f6dd95 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xee6c518b ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfeb21337 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x4ee86015 __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 0x2a2dc1de __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4abf055d __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x82f89102 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xbae81eec __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x000d520a __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0610b3df bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0ff22fd9 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x277d3dfa bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2b9e4e43 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x34413d6d bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4acf7afb bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x52d00ac3 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6fa03d34 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x78812c91 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x817a843f bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x923458e6 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa2c0e779 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa662b940 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb1d6f9ea bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb6fd22dc bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf664540 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc123efe3 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd0726da5 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdf75baf4 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe1f4f631 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf3abe9a0 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf7632f29 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf8d571c3 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2b1dab12 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3dab3f04 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8ca76a7a btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc29e1066 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd6a15b99 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe4251485 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x054d3e37 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2d67951b btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3338749b btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3ea12219 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5c8ca69b btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x607eedd8 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa2fb48d6 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa49b9c95 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb8b3d011 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc0299ad2 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc2aee601 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe0fa1a8a btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x31265f55 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3bd46591 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x421152ae btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x430a3f88 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x525bc826 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5744ec91 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x599a7d02 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x72286b38 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7920873c btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc9bd416d btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd3c49109 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5225a39f qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd2fb453a qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3357867c btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x37c3abbb h4_recv_buf +EXPORT_SYMBOL_GPL drivers/char/scx200_gpio 0x06890e6e scx200_gpio_ops +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xf8f642e9 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x01c688c8 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0d887284 adf_iov_putmsg +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x25ecd57e adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2b138dee adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x344206ae adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x34841b13 adf_service_unregister +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x392b7696 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3d2acbcf 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 0x4e3f3398 adf_update_ring_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5182ca9e adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5e7d0794 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x62fb30b6 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7d42edef adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7ff0d997 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8400e72e adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8b4d727e adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa891b654 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xaa978128 adf_enable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb1ec63b2 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb459fadd adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb8020535 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc0e34833 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcbd097c8 adf_exit_arb +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 0xcc5fdded adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc8f4ae4 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcd0e5864 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcd2c2c5f adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xce9c7cfe adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd01b702c adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd227b256 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd7d1a785 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe80cffbe adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe90e788d adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe9647134 adf_service_register +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf09439ba adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xff7fbc20 adf_disable_vf2pf_interrupts +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x02895ed6 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1830bb50 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1d23c82c dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5f6f198a dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x652b7dcd dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x3fa02528 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x5ceaa0a0 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x88bec692 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x2e5971df vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x373a84d4 vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x531d3083 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x96ff1627 vchan_find_desc +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0xd2091905 amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x11d709b3 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x17d04074 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x17e77c3e edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x19ad6b1c edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x19d7f944 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1babec08 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c51ab73 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x44d2e1ec edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x597cdcc8 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5be48b06 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5fddceab edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x702f5009 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7fbea4d5 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8bcb882b edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8ceccb20 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x91a6d328 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9540cc9a edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa80f77cb edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbe8607f7 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0161071 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc539f82e edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe34f2ef9 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xffb58ddd edac_pci_handle_npe +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 0x14ecfafa fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1d6a5c19 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x32bdcdf0 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8e95f357 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd4068031 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xec76d0ac fpga_mgr_firmware_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 0x2392a05b bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xacf99553 bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x10e00ab8 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xa3b16bc6 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaea09602 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb885715b drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc3faa017 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 0x095db223 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 0x9e6a3e4e ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xc04c04aa ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/hid/hid 0x00d2f4e6 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0233182a hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x02bd0f4f hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x032fdb2e hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x057c4523 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x141d69ff hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x14d1cb0e hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2d287771 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x31e25956 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x36fd2e46 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e7b06a2 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x47711aac hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x553dc086 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5ce598f0 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5dadf127 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5e8b33d4 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6214105d hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x738284d5 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7eb88eb3 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x84caed76 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8e24c59d hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9468181b hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x99a1861a hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a7fa7fc hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b227b63 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa1780c1f hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa2d60e68 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa40dd639 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb7e0f527 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb937453f hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbceeb318 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd8a5e606 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdaf23dd8 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdf881085 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfacb0711 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe3a508c 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 0xc9bc1ab7 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0f84af47 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1de7429f roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x489c65c9 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x64e51cbe roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa8b5b725 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xdbf9a6eb roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x164cd929 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x33f24eda sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4e3525cd sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x72dba696 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8b0cbe67 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x94cc9a9f sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9b2edc94 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa16ca1f6 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xda2a1524 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xc9cd9760 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x065544d6 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x07eb27d7 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1486d131 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x27d570a3 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2bbc7a1c hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x31df3e99 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3fb9be75 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x45c93bd3 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x516e29fa hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7ad21b50 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7f523078 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9b9b50d1 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaef90060 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcd6ba4de hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdc7184f3 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe390d6a8 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xea0f5eb2 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x109e9fac vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a25cd8a hv_do_hypercall +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1e62d63d vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2174f64b vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25a0a3d2 vmbus_cpu_number_to_vp_number +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x28f43319 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x358fafa5 vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x36b31248 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5a31e3a0 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7dd4fe26 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7ecd20b1 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86ff5fa6 hyperv_cs +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8e2a88eb vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8f625eae vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x90e8808e vmbus_sendpacket_pagebuffer_ctl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9269e566 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb80e7a31 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc4dd6620 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc784beeb vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc9f08b36 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdfdad718 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe3d1405e vmbus_get_outgoing_channel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xed7403c4 vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x79af43e0 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x8ae8d3aa adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xbec298df adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x180c3a8b pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x19bd9939 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2ae74220 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3060f7f9 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3c4a4a4c pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x515d52fd pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5698117b pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5f32754e pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6bd4e5e5 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9088e213 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb0eab248 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb69eca04 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xca94463b pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe1f58b0c pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf3739536 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3d45f765 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x77ddc23e intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x842bad56 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8ac18ef1 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xccd1eeb5 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd2ffb370 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe34fc819 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x252899be stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x382cc90c stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x755cfa50 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc3de35d3 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe969956b stm_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x1784e435 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x449ea808 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x8ad1677e i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xa456e94d i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xdb6bc1f7 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x2c0628e8 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x10af04d2 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7d5697d5 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x6728464e i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7bc67f16 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x301c4d59 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x793c84e4 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xeba54f3d bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3be75217 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4a50eefd ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x53774273 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x582e3eaa ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x96898308 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb6668f57 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcdf74b95 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xeda97df0 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xef9336e9 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 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xec41e9f7 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xf48aed27 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x92d923b7 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xb6e04814 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x1bd96837 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x98575501 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe1a84991 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0b62dd1c adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x340daea6 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x34bda56c adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x46498504 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8af2288e adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8f0ae8c6 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x93bc55ca adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9993be98 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9d365034 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xab58c42b adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb61de149 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd2a1a7d4 adis_init +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x140f8860 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x15c547cf iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x277c7f26 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x35dd5737 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3894858c iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x40333f9d iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x48c658e3 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4a107a58 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d87789d iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5ff69182 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6792a119 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x680c2c22 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7c4761c2 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x83b9a239 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x892bdbc8 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8ac2bd60 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8fb5a577 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x96242426 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9726353d iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa58e73d5 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb08ef86e iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb458284e iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xba82405f iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd225a88a iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe745f01d devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9a66c5c iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xecc479f9 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeeff9add iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef0e5ec5 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc9e37da iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xff556482 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x85940733 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 0x87227384 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x532418df cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb6e177a1 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd5766605 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x33b20858 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x699cfcb0 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xeda01267 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x3502469a cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xdf410b96 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2fc5a2a5 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x603c240b tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x628bd756 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x686a2162 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x075ad68a wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2498eb1b wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x31f504d7 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5334d545 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5becdb74 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6a408c97 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6b444738 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x85040cdc wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8af8c6b0 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9746dbea wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd2490c4e wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe6790bbe wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x54972802 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6bdbb64f ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x941964d1 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9d19003b ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa9a507c5 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xaac8d313 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbff12138 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc0c962b6 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfd3a1d19 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x12fc58c2 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2846866f gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x37ad3f5c gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3a88a59a gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3ed05654 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x47727ca4 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4b170735 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4c7e9669 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4ffe75d4 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7f3be952 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x88ee4548 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9fc5b720 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb5054529 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd835894d gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe0b49079 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfa384b94 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfec080a9 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1bfbb366 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x46875fa9 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x964108cf led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa65ef982 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc50b43bf led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd50a839e led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0e26a919 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1525edb0 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3464addb lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3d2b0d61 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4a72c6ce lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x51cf8e6c lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6b4600c5 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6e879002 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x71531bd5 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7df097bb lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe19be787 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 0x140c0c38 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x502fde99 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x55062cbf mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x780b378e mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7b8f42d2 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7f814baa mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x868e0a14 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb62815b5 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb755d5be __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc56afb6a mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xed6800d4 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xef63c813 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf2e5b676 mcb_bus_add_devices +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 0x0f1b7d9e dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3f9a1139 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 0x80b0b2d6 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x84e917bc dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8cfd9330 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa216c8ca dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xaaeb905d 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 0xcdfb2a9d dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd6d93ada 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 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x5683f8c3 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 0x147ff751 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x18c11356 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x279bb657 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8eaffa97 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9649edab dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa40dcb28 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xfa313b99 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x3feed6a2 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xfd3a5a2d 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 0x24fb72cf 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 0x3bb9b6cc dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3c717e43 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x499e5c53 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 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 0xd76ed773 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 0xed28cbbb 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 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 0xaab57513 dm_block_manager_create +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 0x107ad026 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2c227442 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3173215f saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x552a0217 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x70f147fe saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x868fbc21 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb68236ba saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc92ff959 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xeaf42bce saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfc50cf19 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2c4af682 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x611b0ef0 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x700596b1 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x77497f7a saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8374fbe4 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xeb3c36ce saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf82edad3 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x01d4f7f1 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x10f24a82 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x151294db smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1bd6ec7f sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x315c4a7f sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x410ae63d smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x460a1d88 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4e724f3e smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5ae272a5 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5f965975 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6ac08fde sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x741ac4cc 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 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x85983005 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8bd8ecc4 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa076d436 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd0f648b6 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd88c1faf smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xbc6022ce as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x9580a2b6 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xa58ce54e tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x087fa189 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x205c39e2 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x20abba62 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x4ef6e4b7 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x55ba7897 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x6a7852dc media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x7cd374b7 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x938c4fbb media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x9ca0a4b5 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x9d0e241a media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xb547698a __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xc7fad01f media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0xc84527e0 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0xcc896581 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xdde71c8e media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0xe9810e83 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0xf156b44f media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xfe5b8046 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x7172f6db cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x03e87815 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2dc16a1a mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2ebc400b mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x38e5b07a mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4d95fed7 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x51704df3 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x835b78d4 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8719a07c mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8f3f9315 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9465490c mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9fbecbf0 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbf1c1491 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc036f1c3 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcdd0a169 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd211a75e mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd50eb3b4 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe1f4abee mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xee628f50 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf62b3679 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0e8aeb21 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x105e42d0 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2097c031 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x23bb70a0 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x42892227 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x56937279 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x600397df saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6cb9288d saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x83a8179d saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x91b318fd saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x91d1867d saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9a7398b4 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa021bc15 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb450e37d saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb792ef08 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb88eb2d2 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcc3fc8d7 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd62d97be saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xeb79e71c saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3c4ab81f ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x56dfca6f ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6c99e518 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x74fe8dab ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7e7e62c6 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x81026a8e ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb2360a73 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x0f424c77 radio_isa_pnp_probe +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x3bbc75a5 radio_isa_pnp_remove +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x758ff05e radio_isa_match +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x87fe1ec4 radio_isa_remove +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0xae2eb02f radio_isa_probe +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x8eba1528 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xed01ce9e radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0d1b6650 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x149eb577 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1916814a rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1cdb3cde rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2a25ee4b rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2e22f285 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 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x56eaf537 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x85275cb5 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8fc06c83 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa4be05dc rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xadfb2f7b rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb99c1e67 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc2481ecd rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc28901b1 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd4f47584 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdc0d0911 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeffd830e ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf22d98c1 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x58123707 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xd4c7a084 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xed055b01 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xb03f61ec r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xa37e8106 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xd4874b84 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xac9c9959 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xb3e67baa tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xfb852085 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x5febf281 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x7675c01f tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x3625a0b3 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x9ffb6a41 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xcaabbfbf simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x097e3ab7 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x09d0213f cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0c459aa0 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x118537f8 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1c561790 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x21d09400 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3a072c95 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x427caa53 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4a116cb1 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x52cdae4c cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5e09e27c cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x64c94cda cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x92e716b9 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9d12fa30 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa9a023b6 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaab0cf63 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb3c1445b cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd4e83633 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd7662c79 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xea4ef4e0 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xab76422e mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x974fbd40 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x10e80dbf em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1a0731ff em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2735c6ca em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4ef9a75d em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x563dada0 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x584b7939 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5fc4360a em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x61eef9ae em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x635818eb em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x69c3fd43 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x791ccbb8 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7b3441cc em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x877fe63b em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8f166a7d em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb7f16559 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xced1141a em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf68f6b9f em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfe485dee em28xx_init_usb_xfer +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 0x8e23061f tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x9e7f437c tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xbe09662a tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xc9464f42 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 0x238cf5ae v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x5cc41a97 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 0x950c12de v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa54e31a5 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xb04eb775 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xd94b4b78 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 0x1d0115f8 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x80765828 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x048542e9 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x088b7d68 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0acc0f93 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0fc23ec7 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x137c0f87 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15147f57 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 0x2d70c050 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x38aa3701 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3e07fd78 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5ff737bb v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x65447695 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6abbf417 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b011b71 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7ea813d9 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8491a617 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa65852b3 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa96063cd v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb49d8530 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xba28a725 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbc912a27 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc19c165f v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc1b5213e 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 0xdfa8c821 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe78bbf51 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe9ae3bab v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xee30ddfc v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xef13b8fd v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0aae0f97 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0f6e315f videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x17798f23 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2b64807b videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3234cfde videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x42fbd753 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4470a88b videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4e190748 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x66e46538 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6a7701f2 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6d9962ef videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x71e9edd1 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x80a8db24 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x817395d0 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8fa23fdf __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x91b6e07b videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa52c0786 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa546c37b videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa6df0a02 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb959d583 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd40c4f55 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf101abb9 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf3d76479 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfe6c91c0 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x1cc90dc3 videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x70ea3fb1 videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x9f24729d videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3903e64c videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x42f7148a videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x57dedd71 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 0xfa2ba85a videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x7f556dd7 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x849f8dd8 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xe5ea4972 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0732ad6a vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x26e303ea 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 0x2d3ef5eb vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x45b4fde3 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x541cce3e vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5694fdd0 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5e3ffaf5 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6fbfe012 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7c0268fb vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x969b0534 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xab9e5730 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xaea8d0b3 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb678538f vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd1aeb92f vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdbb3c1af vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe40d8c9c vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf24bdda1 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf9c132e5 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x1852ca09 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x579d77a0 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 0x8bc33014 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xb5be1f91 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 0xd7c6a822 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0d3be58d _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1ae8bbb9 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x251033fb vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x29d31340 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3105a20f vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3db70114 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x436d0908 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x511d3091 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x552c1b3b vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x55a3cc1e vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x55cf6625 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x576e268c vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x58ad9156 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6924278f vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x82fe280c vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8b9d7d4b vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8c5ebfbb vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa62f0966 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb0c35b1d vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb6c8bdfb vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb90e24d0 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc06e54b4 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc2af429c vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc541a4b0 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc7e58f5e vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcb5044ad vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcff0c98f vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd6456dfb vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf037c6e0 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf071cf03 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf650479a vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf93591a7 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x638c6d70 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 0x0a8ff890 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1da20174 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20440886 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2664dd2a v4l2_event_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 0x33b60d20 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3740e82b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x398dcaca v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x44a111df v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x49ff151d v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4dafa48d v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55e19bd2 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x56156a7a v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5de5841c v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ef4d306 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7229940c v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7449ec73 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a85f5d7 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7d7f0881 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ea9904c v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x97092114 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9c0be357 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4beb2b5 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb4118b5d v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbaa0affe v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc54f8861 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd7bf0e3d v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdd28c122 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5474247 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb043f2d v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd42a2b4 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x6214d88b pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x67915524 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x6ca3221d pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x37c43877 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3ca7ceec da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x492715b5 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x502dcec4 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9b7b1c31 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9c76dcff da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb008758b da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x2b58faaf intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x411a9835 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x7f00d04d intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xe7647ac0 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xf6de7e5a intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0bf08f44 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x126a6bf5 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1bbca493 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x38a62d71 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa5569fbf kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xac32e616 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xafc85d5b kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb45818ca kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x286f9205 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x5b846b8d lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd83a2b0d lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x21caa8ce lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3368212b lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x79cff8f5 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb4ec8c45 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb71affe9 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xbdb8f283 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd877f0ee lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x66956eb0 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xec4665c3 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xff89c6f1 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x019d2568 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1392d000 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1a95e23d mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x53289b20 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x80840c11 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9560f747 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2e6c1ac3 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x364102ba pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3c138ac6 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5bf219c0 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x77ca935e pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8daf951c pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9584c851 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd8dcb5c3 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdd55cdf7 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdd6fc74d pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf9a65554 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x58025c68 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x58d0e4b8 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x04e02a79 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2084a183 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x437d8688 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb4e08c5b pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf9d4f963 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 0x0626c882 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2683d9c9 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2951ad74 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2ad2db9a rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4136daaf rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x42a3b798 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x47676d3f rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4bcbeb7f rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4eca48e0 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6e3bc0db rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8444836b rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8b35e4d3 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8da04125 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x96321cea rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9d2288a7 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa0d36a98 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa84d3978 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb858c9c4 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb9c30a8d rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xba57efca rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcb93731f rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcf337995 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd146e036 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfbbe7cd4 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x061e7365 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2a0e8dd6 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3638ba82 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3a09685e rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x45afea43 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5ffb1cc4 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x76f22728 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8b6f6d26 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb87f8dd5 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd63a59bd rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe17d3ab1 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe5f64ade rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf91b4051 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x03e09d49 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x05d13d0d si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a270a66 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0e09a4cd si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x14e513ba si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2417b917 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26703109 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x40d1c3ce si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x494458cf si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4c79f209 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x577b780d devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5cad39c8 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5df37f7b si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6690d335 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f82ed9a si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7408dcbc si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x75053daa si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x79449cbe si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x80722bf6 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x88d1f36a si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x893dfc3f si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c0849e5 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x95b8ccf4 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa9218790 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb5652895 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb680982c si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc0130e2c si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc71eaed4 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xceadf58a si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe38ff175 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe6808552 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xec389db2 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xedc51983 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xee56b1b0 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x272409f9 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x63a180f0 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x74c02c7b sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x78e4f945 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x917340b5 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x37cf9b24 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x85bedd6b am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb3f6e8b3 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xf4ec405d am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x0a697753 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x1586abd4 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xa16d41a0 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xcf2de0dd tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x9996fdc1 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x369e4364 bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x40845d8c bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x7ec89eb9 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xb69dd949 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5f7f0c24 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x89665b5e cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xae6dc6fb cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc1d93c0a 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 0x148aad1b enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x266af239 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x682773f0 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7e46cd22 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x88009f1a enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa11923b9 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa4207a25 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb7e10c94 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x08b7c221 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x35c5d001 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x399c21dc lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4eb1f324 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x69cc98a4 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x980ba2a4 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe22a23f7 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xeb8bc803 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x01aea4e4 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x03da99b5 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x07cf082d mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1129630d mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x19a316e6 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x30fbe922 __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3a49d1f9 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x436c9c22 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5c9a0012 mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x60efe202 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x66fba5ec mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x69b09459 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6d6d6965 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6e600598 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x776aaef8 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x87866840 mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8cc3a8c6 mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x91638b2b mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x96f61644 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa5541041 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa563261c mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb60c7c93 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc708828f mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc808b9ef mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd74be9ec mei_cldev_register_event_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xda27124f mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe52c7190 mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/pti 0x19f09b98 pti_release_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x23bde487 pti_request_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x52a78e81 pti_writedata +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x81df6421 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xcd6e377b st_register +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0f6680ea vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1152e318 vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x13aa5a5d vmci_datagram_create_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1626cdb9 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 0x287479d6 vmci_qpair_peekv +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 0x724f11e5 vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7d540b50 vmci_qpair_consume_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x8b8ad67a vmci_qpair_enqueue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9624c58c vmci_datagram_send +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9973b9b2 vmci_qpair_consume_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9d16164a vmci_send_datagram +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xccbb53d1 vmci_doorbell_notify +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcf5ed7ef vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdac94780 vmci_qpair_get_consume_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe7e7c107 vmci_doorbell_destroy +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0a367372 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x18e70207 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x20949dcf sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2b38e318 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2ce5d698 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x384526f6 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6f9211dc sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8200692a sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x83115e2b sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc2bc1c8e sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdfa9066f sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe00beaef sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xea92d159 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfac3389c sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0574ce3a sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x06a2e329 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8098e716 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x85423a0d sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa35aea01 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbbf1d7c0 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc74d4429 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xcd443771 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd7bb0f9a sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x6ce217bc cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x91fc322a cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xaed517c2 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3611c2b2 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x48438962 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xbbba46e4 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x1fafc659 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x1cda9370 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x2b0b652a cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x2d416cc6 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0045be86 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c98b579 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0ea2d475 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1216f88c mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b31f137 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1e43ce98 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x20c1c203 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ca8f041 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3d004911 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4234675f mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x431f52ce mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x451bf3b2 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x477256a4 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c6567e1 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x540ff1e0 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x58c353f9 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6711ba8c mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x715ec981 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x74a77c91 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x75e70885 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x75f5304c mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7abac371 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7afba4be __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x89fd6245 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8a21be0f mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9b55bf4d get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9c1ee74f register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa0b50ed mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb6c231c3 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbb1891fa put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd5a60d9 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc78ed67a __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcdc0b5e7 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcf81000e mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd68dc651 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd92879e3 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdb9f6e99 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe247150c mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xea5928bd mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfa2a138d get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfa5e266d unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff2c5471 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x18d68692 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x23b7fb0b del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x24c5d51e register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x748cd073 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc28e7dd0 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x28febfbc nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x84cd378e nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x971fe17e sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x10278c0e onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x54db7a56 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xbe611b5d spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0433069f ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0f76dba9 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2073f1f5 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x27e034d0 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 0x51ea3b6b ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x547c3be3 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6dba99d8 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x86e3d88a ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa22abc0c ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xad0d6ddf ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb81a4aa1 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcb034044 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdfdbaa68 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfae58f79 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x6120ae0f arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xfa172143 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x38828efd unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4a6f4bac c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8a233b32 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc635cca3 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc76ac9dc free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd4e40be1 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x101992e3 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x153a6069 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x24a38118 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x304ad3fb free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x482e4227 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4db1e52d alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x699eae08 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7362bad0 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x792f99ee can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x991b00de alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa0543b5a alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa221b2ac open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb977bd5a unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc749fb9a can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd07221b1 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd9924582 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdc3d90e6 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xff153ba4 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0ad0dedc unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x26180ff8 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x769e199b alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xbcce017c free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x24382c7e free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9c53e9cc unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9c6fc6e0 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc7d07d45 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00f0b7d5 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04b3e50d mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06947ce5 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07c491da mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0959df9a mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a47ac92 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dbc53b9 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10fef9bf mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1400ef96 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18a19c64 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19e85db3 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a7e524a mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fd5f6bd mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2191041f mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22ed3456 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2450eb11 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24b6cc65 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27d59245 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x298d5f94 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a7a3059 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bd15403 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c30cea6 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c710d8f mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2de68f08 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f5903b5 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30f2d178 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31c9e60f mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35bd5806 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35c64290 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36220d45 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3775b815 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38ef11c3 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39d30e02 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39e7a704 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b45c75c mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e378f9e mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3eb75fd7 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45baf2b9 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ad47133 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ede371f mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x535e699b mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x546aa477 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x546b474e mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x563632f9 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x571166a7 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57ea8bfd mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a7dcccf mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bbd8368 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c6053c9 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c92edcc mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ecfbca5 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5efa98d1 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f0a74b8 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fbcd264 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6019f2df mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63bbf1bd mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x645d9bd3 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x675ef8f9 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x704a6599 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7069f6bb mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75bff758 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77657fc3 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x782624b6 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bcbcfff mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8086d998 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80a446b9 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80b8bf8f mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x862d0062 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x865784ee __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87e3ee57 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b67e1cf mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e7360a4 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ee5fd66 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96d9849b mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97ccc0d2 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97f681cb mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99795421 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99d80423 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c4f5f93 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0860d33 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3897998 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5c9b809 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8795bd5 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8dde33b mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaeac603d mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb539cbf6 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb609c93f mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6c11585 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba6a58f9 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb0ed13c mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd6afd83 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf2c068a mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1d10ed6 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc340a855 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc541eed8 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca0df3c5 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcee4ba12 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4c7bd01 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5cc0574 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9056b08 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda2a46e9 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdabe9d7d mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb2843a7 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd24dfbb mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde3e4698 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde5ed4d4 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde8caf46 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf6c0e84 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf84942f mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0060f4f mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5550f29 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9ee0df7 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea2b8382 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf020b19d mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2da1fb6 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9af4a83 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb3b2715 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb5716ad mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc686fad mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdf73ad0 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff2e82b3 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff5c01d5 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffb79acf mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfff5cf9f mlx4_set_vf_vlan +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 0x10183579 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x154a73ee mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18961b8d mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x219590a9 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24bf17b5 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2903e14c mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d5a3c18 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37c8b71d mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c24ee46 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x437ae26e mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a11c734 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d8584f5 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58bdb89b mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c3ec75b mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f8c952f mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x701d4144 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x751633b6 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ad61476 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f852168 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81ff150b mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x941b5649 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94577231 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9994896f mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c239eac mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0b58fee mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa85472a8 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa91a01d1 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad9133e7 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb15dd1d7 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2f6a6a1 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4c22cfc mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2185807 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5ff9eb2 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca8b24c1 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0b1e565 mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd39fae7e mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdad87478 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1231282 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe226dd3b mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7dbce83 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe82986b7 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec2eb519 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee67b7b6 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf92ecfca mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc871ee5 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x434bf2d4 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 0x0fd698cf stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1d82f7f8 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1e05dc19 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb16c277d stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4a2d1419 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x60081c1e stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9e7d57e8 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xab8d7f82 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x021b7766 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x05f09463 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x305695de cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x666a4be3 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x81e11b5a cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x86534b8a cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x93b66380 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa61248cf cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbec8ef15 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xcc7a51fb cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd2e57014 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdb941d02 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe964ae32 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xed6589d1 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf1447d10 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/geneve 0x49a68e19 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/geneve 0xfe94a8c3 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x28fd7fbd macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3cc3fe91 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4609bc57 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc5ffe9f2 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x5ab1af53 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x031c9b63 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x29ad66a9 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3e290e6e bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x435dc2cb bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x702baa37 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x72d6d03a bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x87218b71 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x95e4e624 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9b675b82 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd0532f5d bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5e1f0927 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x678a651f usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb0fb081b usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xcfd0287a usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x72f2bc44 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7f3a8a98 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x95efd3f1 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9b44c99a cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa3f7d34c cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xaba439ea cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xaf22c536 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb478af4a cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf3cb5be2 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x27619b50 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4b4737eb rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4b4c123c rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x83c801e4 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8f8cf1fd rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9cdde96e rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0884541c usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x093ab1f3 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0eff70ba usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x17ef9729 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1df50267 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x290197e7 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2a83fd7d usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2d7dae74 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x38ea0f35 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4e65828a usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x50aaf09c usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5baa2bfa usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x66071c1e usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6ec76aa5 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x72a0c343 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7a398379 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7b344807 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8bebc9ed usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9091c57f usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9324c457 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa3f3ec16 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xab12555a usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb6a64725 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc84a7ad1 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xccbae73d usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd200e6e2 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd350504f usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd9fa3f12 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe75f1289 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xece5a918 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xed5852f7 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf97e52fa usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x75fa7d87 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xefd4c90e vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x276272ad i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x46cb3112 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5b132443 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x60b8f8aa i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9517f406 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x97b2dd5d i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9b21673b i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9d76551b i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa24e3a42 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xaf3544da i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc0e98b8b i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc156c66c i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd0f3124d i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdfe2768a i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf2d5184a i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfe3035b6 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x2eccdd7b cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x58c135de cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x76bd57fd cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xf1db5ffb cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x2efdc10d libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x421d7793 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x46d8706b _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x5e56a7ee il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x79a384d0 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xe99a97a1 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1043e447 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1c30c33d __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x23454274 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x266be906 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x27f521c8 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3f22d09a iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x40ad4102 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x41128a25 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4a332d62 iwl_force_nmi +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 0x71bc9cea iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x88438589 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 0xb8979af3 iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbf1621e1 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc2fe8226 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd34f0d47 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd6f95e3b iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd71bced0 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd99d2d1a iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdebd35d6 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdf939855 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe1e01c2f iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe618eae5 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe740f3d7 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xee3bdda5 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf4587f53 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfab60a1f iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0105e184 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x04e833d9 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0b696fb2 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3b8b6236 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3ef4f75f lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4ad119c3 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x598378c4 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5e742491 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x62702a17 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6c1e835e lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6d507b74 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6fc3c84e lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8a00cd28 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb79f70a4 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc507b8ff lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdc6b04f9 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x05367b28 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6a9fe5a2 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x7160c565 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x833f21be lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x83af5095 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x8578435a lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa491afac 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 0xd84ef03a lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x08cb6217 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1c82bafa mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2efe5a67 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31a0cb6e 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 0x528b9cd8 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x77ed5010 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7971fa6e _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x848f825f mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x990e3c69 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa5b19e86 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa65b85a2 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb05bfbe5 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb1c1f840 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xba78f7fb mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbbb0ea71 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc2a8fce4 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc2aa4450 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd4c5a2a2 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xeb8a2518 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3b4df38a p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x4ce46e4b p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x8e29d580 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x95ca0d86 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xae65cf09 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc36b2950 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd62a9a28 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xedf07818 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xee0bfd80 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x408ff527 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5d2194e6 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa51e5c5f dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb1416b01 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1e10507d rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x24525dd6 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2634497f rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2a62180a rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x305d1615 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3e75b50e rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x41385f88 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x41adc04c rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x450185d8 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4709f83a rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5789dcbf rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6deb41b4 rtl8723ae_firmware_selfreset +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 0x78ebcdaa rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x80197930 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x831d2f1f rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8ba9d01b rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x954e8f73 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa38c9bb1 rtl8723_phy_reload_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 0xbff0402b rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc6909080 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xca09b594 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcefe2367 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcf723cbd rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdb8dd98b rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdc24197d rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe0e5dfec rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xff9fe23f rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x000df01b rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x04f9fcad rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x23014065 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 0x2b9ed8c3 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x57c9bad6 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x66283e4a rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x69f59afa read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a7c6b1e rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8a693213 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9700c86a rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa11caa8b rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3afeffa rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaba0615d rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad8792fe rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb24bf2d7 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc383bb7e rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb793065 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 0xf9ff8c96 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc58e877 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x1d5597de rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7b2e4865 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7bc3afa9 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 0xefcde388 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0aabaedf rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0ad7f418 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0bf4138c rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x17456005 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1c47ba94 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x256101ba rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2bc64041 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x396ef53c rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3e46b0cc rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x46950915 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5306df8b rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5d0332a0 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5d652ef1 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5fe1b2bf rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x67ffdc4f rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6db60ca2 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6f19e73a rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7bc11e9b rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7cf81088 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x827086cd rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x86ba9c8c rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8cf98234 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x91345534 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x961e5020 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa071ee55 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa15d3e83 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa504ef93 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa6819914 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xac211b65 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbdd283f4 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd5f8fa21 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xde80a0e4 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe084f022 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe31fe29e rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xed3d9782 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf0bd2858 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf2d12758 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfe893418 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x208581ae rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x215771ae rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2a0e3da7 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4d28ef7c rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x62c18370 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x8287130d rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x96875601 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xab36dfc4 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xac3e7178 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xac643c84 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb36848be rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd17c7d06 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf3a749e7 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x077c5647 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0dd6f014 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x13401b35 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1733456d rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1c313a25 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2504f84c rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2ce2b403 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3d86ccd9 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x40dafd2b rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x41874021 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x438aff0d rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5749526f rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x68f6a40a rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6ab9245e rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x76953207 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7cf3130f rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7e2d7a83 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7f5b7703 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8069ee53 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x830fba42 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x89e35301 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8ca90af0 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8f6f6692 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x919a5f69 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9dabb234 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9de392ea rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9e8df88f rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa328e4c4 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa5327e4e rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xac4816f3 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaee7ae73 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb1d0038c rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbbaa1210 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbe85bf4e rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbf2def24 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbf2ef8c2 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc341e95b rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd22930ba rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd3fc2eda rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd5a0cfa5 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xda9eb96e rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe3a08c04 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe5ac3c75 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf87624f7 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfb0655c8 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfe450aba rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x02a8a7db rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x151b19b1 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x984066d0 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xcf5f6310 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe72af4cb rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x145e6d91 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x8c1d9c66 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x970c2fe6 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x98174c43 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0b0f1f5c rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x368b94a3 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x397344f8 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x42ea7da3 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4935ebc8 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4b697d0d rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x554e26c6 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x773af38f rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x799d5279 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x880f655b rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x89060aac rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xac2d80d4 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xae6d30cc rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb2bc74a9 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc8fa8ae8 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xff5ca311 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x61eb475e wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb2b7a360 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd938ac08 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0041f036 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x016f0f1c wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0217515a wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x04770415 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0f026117 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1088fcef wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x14a5de25 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1aabb063 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1e8439d5 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x26a54403 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f6e4309 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x31fd0e55 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x346213dd wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3a104b65 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3a7556dd wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x499e9aa2 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 0x603a10d5 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x63f7d3cd wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6a0c3082 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x71a22405 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7295a52b wl1271_acx_pm_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 0x7a7f0fcb wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86bfc44f wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8872b875 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x910c51cb wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x96cb8ebb wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x994ca125 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9bf5fb84 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9faad4e1 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9fcd9e0f wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa04b40b4 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa1c6b61f wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa471965a wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb028f588 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb09ddbf1 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xce0c25f3 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd6c1c511 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd88daaf8 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xda3a9f2e wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe08298fd wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe131d934 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe55ff3e8 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe99640d1 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa4dda8d wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x1d2f6217 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x37f07d54 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x76b65bb3 mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x32c0bf95 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x4539b8c1 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x5ed87669 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xbe7a6ad2 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x22a3abe0 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x28e6d4a4 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x324f2376 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5641944a st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x96358750 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa86aeb00 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb5cf1322 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xba91fced 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 0x3b552593 ntb_transport_register_client +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 0x9ee21b33 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xbd4ed3ba 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 0x34324489 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3bd65c7b 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 0x5a98d8aa 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 0xc6d67902 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc88c8e71 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xdf6b8726 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x2e88d2f3 intel_pinctrl_resume +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x3a25a0b6 intel_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xcacbf469 intel_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xf376068d intel_pinctrl_suspend +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x0edf0578 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x3cd620d2 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 0x40d7204c pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x6c741784 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x7ca8c505 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x40ee9d44 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 0x475a59b0 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb2b88cad mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc63a2651 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x313e93ac wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x321c2ab2 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9b5fc93f wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xeaf5f8b3 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf427f72f wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf7b89c5d wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xb1df8716 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x06878f7b cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0aef24d7 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0b2d75a7 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a71cca4 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1c08f1be cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1c29e225 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x235216b0 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x23d86ddd cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x24f35778 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a70f81a cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3eba4257 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4d389a2a cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e3607bb cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5034c099 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c7211b1 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f18bc8b cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x636ba080 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6de28cf5 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6f0c3e4a cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70d7bf88 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7118e42b cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7265efd1 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d206589 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7e106fd0 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x80bc6a1a cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x81ab04cd cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9144aa81 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa2cb4c34 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4441c73 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8adad45 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xad302fe1 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xadcc55e7 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb508eca5 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xba2f9d8e cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbc83ffad cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbedd4039 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc1dc2945 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcd978ba0 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1fced4d cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2ac29fe cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4f5a2d0 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd95213b9 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf9a5a28 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe50cc92a cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2f47aa5 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfc98afc7 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x04947bc1 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x04ee1ff3 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x24bb2deb fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3f7fa9f1 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x57b1233f fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x58fb57d8 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6409f4ce fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7418dffc fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8749f461 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x87c38348 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x889fb786 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x88c862a8 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x893541ab fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc2260b03 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xee8eff1d fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf6091467 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x39fcbcb3 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3cd27bad iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb4a96cd2 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd27ea436 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd3b5fd73 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xdd92fe9c iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x05436093 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0571c8e8 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x06484938 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e36ff41 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1659e011 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1db6a426 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2174c96b iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x238b5312 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c7a9a3e iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3827580c iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3cb490a5 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x469f226b iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x47aee7f2 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x626b97cd iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x68db0748 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6cdfcf98 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e0c0ce3 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74ccf6d6 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x76a5e77e iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x76b23c7a __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b9033ea iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c36b88b iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x89601ec8 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8c098489 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8db526e7 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa349053b iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb29e57df iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbdd9867b iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc62ceec7 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce1a5a9d iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd0476eb3 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdca54cc9 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xea3d2dcb iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf0a98d19 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf1d26229 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf25d9a11 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf6b6258d iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf862f9e0 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf98a00f2 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa06f917 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfad6aab6 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe5c8f5a iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0064560f iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0fdfaf4d iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x23582561 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x23f4742b iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2482535a iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3175906e iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3a6c9914 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x46d659d2 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5ab79495 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x69751938 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x87084578 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xae76f599 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb3b524d5 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb3ed4d73 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc88e3cdd iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe48fa49c iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfa4d16b5 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x10f71d8f sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1beb67c2 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x27cca7bb sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2b4fb0da sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x392b0e66 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3eb99199 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x464c816e sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x537d844d sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x54321950 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5db48604 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6156d401 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x64f4d546 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7c50b578 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x873e4eba sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x935002fa sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcedaee77 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcf238dec sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd54dace0 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd99e9560 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdaa995a9 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdb36ecdb sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xedd2a75f sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeede8cc1 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf573554a sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0bb73e58 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15ee28e4 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x16f8e327 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x18952d59 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1da8bce6 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x266aa716 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e357ffd iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x46993bd6 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4aeb288e iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d9a8e5b iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ef60f01 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5078f8e4 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x516cc592 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57ccad87 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6eb3bd2b 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 0x9509f7b0 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x951729de iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98bdcdcf iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9aace391 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c842e4f iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa10ef458 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2d33b6e iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa94e608f iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaeee3b77 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf8b08b5 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc71fd932 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca758c25 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcaf3d9c0 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xccc68a04 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd1569f7 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd3928f2b iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e0772e iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdaa82116 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdd2f01d5 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4568a4c iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe711d8a3 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe7b988c7 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeeea8944 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf000c23f iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf038a3b2 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5864a171 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc1d652e5 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xcdf6271c sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xdfba5074 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xf73e764a spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x230a7858 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4ea3e9e7 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x62a07409 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6898d498 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x72b2fb89 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee1d57cb srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x4a519177 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x67a36a53 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x9b906c4b ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc5753948 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xcef30751 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xed12721b ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xf1bc0f8a ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x15f0db6a ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x3dd6548d ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x3f296e71 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x4450e0e6 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x650de322 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7212df50 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xcfe9e50e ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x33b52c97 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x683e87c8 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x805b6d08 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbb0a11fd spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xfb77f4c2 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x24e714ce dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x39f75c7a dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xd2055f49 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf1fb47ce dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x00d65264 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x01ce89b4 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0a27aef2 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1773efa2 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2253a462 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3e4d7fba spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4b503af6 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x55ea25fb spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6243f73d spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa1c57a9f spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xae47a527 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb02ba036 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb167f9bf spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb3850613 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbd3f19ee spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcbe2a8d7 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdd9f92ab spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf68806f0 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x26ea1818 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x04e41874 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cebb2cf comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x14730fc0 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x194303cf comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3033e746 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x40278b36 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x43c9a697 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x44430246 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x446f9288 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4b9c6eb3 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x554f4d24 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x56fe9fc4 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x60f04f7e comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x61f0d39f comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6bae9e18 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6ff7fa50 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x77c1e547 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8575774a comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x937fd6b6 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x96724373 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x985f21b0 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9c862c8d comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa3509c0e comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa3dd306a comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb190dda3 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb2248f5d comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb6f117fe comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb7385652 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xce57dab2 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd118bd14 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd762a84a comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe9f6f86a comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xef7fd686 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf0233628 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf050e41c comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1ba2bc13 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x3a022bad comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x7da9db49 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x830f4542 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x91992b6e comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb91ec1ca comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xca8ad75f comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfb944a7b comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x14246db3 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x65c312a0 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x66c15b6d comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x67a1bfc9 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x85cbc145 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb5e9b3f2 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xe82604cf comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x26f91dca comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x46a02502 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x6a1ecd17 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x7221e2a7 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xb5d59894 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc72708e6 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 0x7eeb8dce addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x2dc15268 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x40ae0d79 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x52d55f0e amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0bed2c19 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2fe560b5 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x32df282a comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3ac1681e comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x570567ac comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x728da61d comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9cf3a5c4 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9d5f3d7f comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa665f44c comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb2329b68 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb8e6ddd5 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd649220b comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfe64bc49 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x53f3b03e subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xd7aa4091 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xddb8f90c 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 0xe21e6a51 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x9f8b0ff8 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x075567e6 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1e543fa0 mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x303314a4 mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x33a26c69 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x405eb52b mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x57ed425a mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x58d6c162 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5b6f1c9f mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x65e1f9ad mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7a129e2e mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7b041531 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x86ad97c8 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x881dd7eb mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x899d952d mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xac4824ca mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc8070af9 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd12254a1 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd2484b37 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdcaf00e3 mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xefb950d8 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf8fd2305 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x059ed176 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x7c211ba8 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x1b1b0900 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x51ca0d51 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x80dc2110 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xd753496b labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xdfea81f5 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2c4a89e9 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x35fa1f41 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6cb483a7 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa8763180 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb9ac343b ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xcafe7cc7 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd65c77cb ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd9f96359 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x1091c47e ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x2a47763e ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x386eabca ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x8e67d694 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xeff27839 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xf6721aaf ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x0ad7b6a8 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x2d6b2a06 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x3327058b comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x46c599fd comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5e542ecf comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe207eea6 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf37035c9 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x9f4a74ed adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4de5bd86 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6e0e3afd most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9961330a most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9c7e8f9a most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa37aab1a most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb0e33c10 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xbb129c8e most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc39b0607 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd828d8d3 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf37e4474 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf46e236c most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xfab53c1b most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ccd0e30 spk_var_store +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 0x1b0f3aa0 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2ab8daa7 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3a7befbe 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 0x4462691a spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x50e2b56f synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x54ddd19d spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x813c45bd 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 0xabfd2816 spk_var_show +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 0xbecd06c8 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 0xd5887744 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/thermal/int340x_thermal/int340x_thermal_zone 0x1089b676 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0xc5a6434d int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x6eaf06ca intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xacbc2f5e intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xb5dae596 intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xca27c3d8 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 0x38733a4e __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xa159b7d5 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xf72c80c4 uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x50b0e491 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xadefefb1 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x00202baa ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xe73055df ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x16867cd1 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2e72d67c ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x8a80ebbc ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9eb360f6 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xab43f760 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xdd82c460 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1aa8abcf gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1ca367bd gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x71108edd gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x72a102d3 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x750d2652 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x892cfe97 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8c5c752d gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa223c2d9 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb3f0326a gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xba355879 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc29b67c0 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc63e2890 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe779bb54 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf078af7a gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfd036cc7 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33069079 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x422afab1 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 0x84d29382 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xb84b2fa5 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xc828f1f0 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x11112f7e 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 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2b69bd91 fsg_store_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 0x34ebcb47 fsg_lun_close +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 0x44cbbde4 fsg_common_set_cdev +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 0x5815c4c2 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x59338bc6 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 0x6b8e8d15 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 0x7eb6b262 fsg_store_ro +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 0xa2a997e1 fsg_store_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 0xa7aabbde fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xadf95edd fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xae14152d 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 0xc8e30bd1 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 0xd660415c fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe28f812b 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 0x0768eca0 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2ee02920 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x442607c7 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4438c180 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x44d22b48 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5683be31 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6d6689ab rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7963c195 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9aede18e rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa41419a7 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb6896efe rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc85bf9c2 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc94949bb rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdbf2d2ab rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf17c39a8 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c20e626 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1257d662 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x17386c83 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x23c9261b usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x271d1d8c usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e47ec7a usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3bec2ae2 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4b954c92 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x55483329 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x579eb4ff usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5813aaf0 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x58b0cb0a usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5c21dbe0 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x63625172 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x71a2f5a4 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7a178c51 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7b932615 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7d4f1e42 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7f0b1a20 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94063fbc usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9d045c7c usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9f3314d1 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9fecc670 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcf477372 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd27ac3be usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd48be33e usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe2335eab usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf4fea7f4 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfaf7facb usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfe8ff2a4 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x28820c98 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x32b49545 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x64051ca7 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x74ea58ee usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7e9ef184 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa2f632ae usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa5048376 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbe348042 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc395e304 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcef0abfd usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe0a6ed76 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xef94c6c5 usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfef4b76b usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x47178044 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x97341669 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0d748d5f usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0f76a9de usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2607298d usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x520af32f usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x578e1e18 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x580d5592 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa8c34b50 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc6c51434 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xecf27495 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 0x8b988cc7 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 0x2c8b222d isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x80f104b4 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0a64e168 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x133b6d6f usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x194c6f49 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1dd8aef9 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x40eca04a usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4401fe32 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x44e8cfd9 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x49e54425 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x63df7835 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x68b66e2c usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8c9e74e4 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x97bcdf15 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xace53536 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb8a7afac usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xce67b8e5 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcf076e0c usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd1a0ca22 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd2d76d59 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdf569d4c usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xea06926f usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf40dd451 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0343b25a usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x105917c3 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 0x37a595fa usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4030a55a usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4b3591fc usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5c86bff4 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6225c019 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x633b9e6a usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x651da620 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7ad8b1b4 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7d019527 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9d326c00 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa6c72913 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa99d2456 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb1b1b611 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbe270e3e usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc968e1b4 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd748bd41 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd97e93ec usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd9d30681 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe12cf2b0 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe3ad6bbc usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xecad5167 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf48505e2 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x05265e36 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0897259b usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x103f5d9e usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x17ad3793 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1861addb usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x238775b2 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x30544607 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x404e92b5 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbbd13129 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdb4d90b5 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe05cd593 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe8bd062f usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0cc836f9 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x236260ca wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x58a7575a rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x726e7c52 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x79a08a6a wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x91d8d8ae wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xe419f728 __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 0x262ab71f wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x28c4efe3 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3cfb4ee7 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4e449a93 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x54cee045 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5a864dc5 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x642f6361 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7e7540a9 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f49b334 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x944c1226 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xabe7f735 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb8765dea wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdbf12a68 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe4f70ede 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 0x8358ef3a i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xa0ec3038 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xf57c8c88 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x1cb04134 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x595df14c umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x96942219 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xac32610d umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb79e279c __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc8dc3f5a umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xd946b9d3 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf8cb03f3 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0660f99f uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x13720532 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x16ec203b uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x17f3b150 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1c911593 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2cce694d uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x31415528 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x35f8d011 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x38a6dc3e uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x455bd8d2 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x501e4237 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x560d11f6 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5dd9a652 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e33497f uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6921e2e5 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6ed213dd uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6ed507a8 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6fd8cdba uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x861a6e50 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x87997ac5 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8c6b2eec uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x96da1851 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x99d7d366 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa5ee0dc3 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb097dffa uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb242981e uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc253cd45 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcfa8c250 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd1583edb uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd6573005 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd768c29e uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd80d3274 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdda49692 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe94534fd uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xea4bc9bf uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf16b9545 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf844ccac uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x56134780 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0fb339d5 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4b220037 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x66130e81 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7b3fffe4 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8c0ac2cf 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 0x97fe3901 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbdcf4702 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x46e33720 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xf0ca29b2 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x013f52fe vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x01f44d36 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x03530d42 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0a615ba9 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1bc5af7f vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x22225096 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x39654a02 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a6271cb vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3c3c3468 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3fd7091e vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb96f77 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4dbfbaf2 vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e40eb68 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x569b0ff1 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7314abd6 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x73a46f01 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x788ea12b vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8659624e vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8df89110 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x97394f3e vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa37161d7 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa5c1523e vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb09a1263 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xba785014 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc513a817 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xea22c1d2 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf11957c3 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf7da9062 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfb2cb190 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfcc536af 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 0x17092378 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x58264dc4 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x73d6069b ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8a9dfdf9 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa34238d3 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe5519b81 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe9db65da ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x2c782ffe auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x391c3745 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3c58a845 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3db84456 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x52a29f87 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x59d049e1 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x888898c7 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9cc95dbd auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xce6adcac auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe9761b2e auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xb1305b0d fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x19abfb30 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x5db1dc9e fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x2a4520af sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc5586855 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 0xa6af18df 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 0x02f7c7ed w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x22120819 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x33522353 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3d42b431 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x45db8b83 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5338e7a3 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x88d29cf3 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x89224020 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xaa317211 w1_touch_block +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x6fade360 xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb134731e 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/dlm/dlm 0xe34492e9 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf9ba2278 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0fb71900 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x194b32bc lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2bed35f5 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x49158f11 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6ca1fac1 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa4b03575 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb3b29161 nlmclnt_done +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0003a80f nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0051cddd nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03a0d45d nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b2a088f nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e6d0b28 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1901457e nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x194c4f0f nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b86249c nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c140e81 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c5b3a9f nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x203b37d4 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21225152 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21420fad nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21b243e7 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23091adc nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23b01615 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25e62390 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26e8993d nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28e5f90c nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d0ecc19 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ed99f54 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3022118c nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34654546 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34a44dfa nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3568dc96 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38defe76 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x396f921a nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x398eb0d9 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bd0adcc nfs_wait_client_init_complete +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 0x4718b716 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47877817 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47dff29f nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4866b2e2 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x489a86d5 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b3a8da9 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c94399e nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d3aeb4f nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51516a24 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52279b78 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5439f88f nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x594cebb7 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59f53f9c nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5abbcd7d nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c78c849 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e94bbaf nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f6ece32 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f75583b nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x612acf01 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x635276e4 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bf68042 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e3c0f5a nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f35394e nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fa6d31f nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70468eaf nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71011f5f nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72b7c1d5 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74c77e83 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7587a7e3 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a5a02a9 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c6db20b nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e8a4c28 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x822861ba nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x822c72b8 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x834c34a3 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8540f21f nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86ef29a9 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa48f2e58 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5fcffba nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa82e5e8b nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa91e4d53 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac7cc4ad nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacd580b3 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad7aee28 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf93ba79 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb06e7d69 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4ef804e nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbac30951 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd365072 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbea0a110 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbec0c25c nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0647cc6 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3633d5e nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc405456f 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 0xc7af242d nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc84196a1 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc89d9caa nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd8514e9 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd8e6774 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdc0fc09 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd01adf04 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd04fe7cf nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0973488 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd43dc16b nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4f6f6b9 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6cef6c0 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7311be7 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7c72e04 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7df387c nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7f4f4d5 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcb6b51f nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdce749fb nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe050a5a8 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe500fd50 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5941752 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6a51204 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7e5416b nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea558af0 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec3241fa nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefb51847 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf01b6d41 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0cdc69f nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3ce1698 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4f6c248 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf55ef989 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf77f568c nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8157216 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8b5c595 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9fce4a2 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa677299 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb05792d nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbbeab33 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfca874d8 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd22f13b nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x8c30e59a nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05cb7322 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x173080bc nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c74cdc2 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x203f52c4 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27fa87c7 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x300c5d7c nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x307f095f nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30e26d06 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3532b1b3 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38f8a44d pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b4febc6 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c688b4f nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d6d12f7 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x456bab97 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x456ede6d pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48eedd67 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d9354e5 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50c0e031 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50d2d145 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d05eda0 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64a5b26d nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6fd7bdfa pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75f5adff pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7848fe0b nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ae96b1f nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b7ca58d nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e337a27 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e7d5f67 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80ad4110 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81b0b6af nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81e1edab nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85679501 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8afff6a8 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c50ab66 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97314b17 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9871fed2 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99d0f8ff pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9fe2f161 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa45a488f pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa545d3fe pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9ed42e1 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb02e27c0 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7a37e71 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb91414da pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb601057 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf1c84b7 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc609b86f pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc617a76d pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7afc6c7 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd34ffe5c nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe70c6f9b pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9ce5918 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed4bf737 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf102c8c7 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3da54e0 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf553ef54 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5fbae1b nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfcd1d0b8 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1cbe639a locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6f776b13 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xb837f655 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x40ac63b3 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x785ddf90 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00d82a4b 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 0x1f52b09d o2hb_setup_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 0x5f002a03 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7588b6e7 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x75b9bbea 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 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 0xda1ab3be o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xee71bb8e o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4c574fb6 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6901f673 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x74118abf dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa40d9232 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc6736ea5 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 0xe5b4c1da dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0de04ca6 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x43d65c58 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd61d2eb1 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x297074da 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 0x58d06257 _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 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6362ae1 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x47c27d25 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xa9114922 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 0x6a59c3de lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xa50d3db0 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x27d4e24d garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x49f0eca1 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x67e4062f garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x7732c0bd garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xa235a11b garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xc4158651 garp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x45696b66 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x5e59ee0c mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x83681083 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x8b8c529a mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xa53c855c mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xf3d4902d mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x655b141c stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x85979793 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x13271984 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xe7b2b084 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 0x27dccde8 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 0x3f89e279 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5e8070b0 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x64f8436a l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x68653b18 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x96f36a8f l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x99bd1758 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xcbb8d0b3 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe8bf4ffc l2cap_chan_send +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x26a02a9d br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x368550cd br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5791c3cc br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7156f14d br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbcc51f56 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe4c1c16f br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe69b7b89 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfaa6d025 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x0fb776f1 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xe87826e9 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x012f71e2 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0264e63e dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x03073a19 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x037d160c dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0ebe04df dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23672cd0 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x37582840 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x495c1f80 dccp_init_sock +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 0x530396f9 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x558b2f82 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x56625c23 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x616a180a dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x701c874e dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x75419635 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fed881e dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x93f2b20f dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f76f653 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0e6db00 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaf5e4a30 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb003d577 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb31b4005 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbbc1a65c dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbc92be22 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd5d5465 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbded8776 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc5f29df6 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7ca8a62 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe1e70363 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe6570261 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe65b6321 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeb10e19e dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xefa8b703 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x151497b3 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x35efa4a1 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6e12fd28 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6f5a4a9a dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x78debaf1 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xce1a5345 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x03055684 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x048a8392 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x44a17ef3 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa91f64c9 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ipv4/gre 0x08518662 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x1af58750 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3a836396 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3ecbeb7a inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8119ee28 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x84d509b3 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9ef38104 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbfdbac3b inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x26409193 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1d9f7c27 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x20f34690 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2d21cc80 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2dbfd87e ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x38a19387 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3a7a6272 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4d9db39e ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x76ad73a6 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9f5d2df7 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa182121f ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xada3e16c __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbb036825 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcc275756 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdadac3f5 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf0b9b51e ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xd842d525 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xab4dd908 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 0xeb085b7f nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x3d07cac3 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x61690808 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xa5d5163b nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xdd78db28 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xee2e4834 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x2fc033e7 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 0x105f3a1f nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x19f4c8b0 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5b22bbd0 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x85a5b774 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe1c27175 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x517b07f0 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x13fa8c37 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1703a3c0 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5b31e5a6 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x61bfade3 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x65bf851d tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x24ef59e9 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2d76d73c udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x481a5016 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4eef8938 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3439e854 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5e6ce7cf ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x786bb791 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x8fb96b83 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x951f542b ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xea1c06c9 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xffe3d28a ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x1e869a92 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xb8db42bc udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x01b3ded3 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x1739ff7c 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 0xa6fa4448 nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xe30de0df nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x61f17afc nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x7759f0b0 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x8e018e03 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x96c0459c nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xfb554210 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x0e35f56f 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 0x1d7880ce nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4e2c35e6 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x743e27bf nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7790e7a0 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe5b300b8 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x6b58f942 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0cf6f2f1 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1df6e16f l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x24e7958d l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2c65e43e l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x400bb1ae l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x40eadb52 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x47d1e97e l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4a7e4174 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x69ec76c1 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x817ee128 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x870fe791 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x88b7c89c l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa5bfeda1 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xafc65ad8 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb627ced3 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbe6255aa __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x2d1d1894 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x01f8f30e ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2c0309a7 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x33afd28d ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x33b3364f ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x34e45400 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x36886d57 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5f5f5b95 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7710da1a ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8dfbd932 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8ea67951 ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8f2e7058 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x98b449ab ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd0a92e7d ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd4ba12ea ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd9c3643d ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xda1ab6a1 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebdf8959 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf4b79020 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x280f3a97 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x54c12524 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe45ea56d mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xeff3b4d9 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x05117003 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x230f109c ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x27679f8b ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3df3265d ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4838fd9d ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5543a54e ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5c3701df ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6bf79b4d ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6e41c097 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 0x96c37f53 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa023ef20 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 0xa8f0652f ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd924465c ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdf5771f1 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe373ff7c ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xedf2563c ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x55c19c4e register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x59df95d8 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x8a9971c6 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb819f928 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00bf8fa4 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x017f28f5 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06961753 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a5a90d9 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10b96277 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10ffb6ba nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1bd75c7a __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1cc62d48 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1dbdca98 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e2cfe2d nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f4afc5f nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f8060ab nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2486cc50 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2606e33b nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26dab5fb nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x272fe8bb nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c1a9caf nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f8ba81a nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x303d7af8 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38a1a4f8 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x447b9205 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45f01ee7 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4866041d nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a09bff5 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4dcc5f3d nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56873a0f nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56d65304 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e1befe0 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61e3832a 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 0x6346bf98 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64d90a59 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a18dc58 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6cee89dd nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e9940e9 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x707db243 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7324bff8 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79366be0 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a1cf0b6 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88ec7fda nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d7dbb04 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d9a85b2 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x904ea55a nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x976968e5 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97b07fa6 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99abe9df nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cb0f8df nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9dde1f7b nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa02ece83 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2326b63 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2f74026 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa32ed02d nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3af5757 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8b96ddf nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9bf3772 __nf_conntrack_confirm +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 0xad3836f1 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadb6bcb8 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb03767f8 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb12ed88e nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb287f66a nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb980bf20 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbbaeedab nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbbdd771f nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc5862df nf_ct_iterate_cleanup +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 0xc458b7cf nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8b09e2a nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd0d5356 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2891e23 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd65ed1d4 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdab067b0 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf2b4f6e nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf3a62cd nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfc29b14 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe9bd527e nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeab1c591 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf14ede0a nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf80681b3 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf885a034 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9ab878a nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff7b78f5 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xfc4bb8ec nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x61549b6c nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x004e0fcd nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x42d9d64f nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x67493ad3 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6bc32cdf set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb205523e nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb677b9bf set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd0e2b437 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd5e25aa1 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe19fb12b set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xef7df430 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfac5d9dc get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xed403c7f nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x80ebcf0c nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xaebaff2f nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd023a2d3 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xdf54b674 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x03540896 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x3d8632b7 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0b6e34c6 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x16f7683f ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3fc1473f ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4f1c6359 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4f506939 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa075dcef nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xea20223c ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xef5ab66f nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x5026fe19 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x3e23c0da nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x684f01c5 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xc8d08566 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xf11ab88a nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x05244618 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0b8a01ae nf_nat_alloc_null_binding +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 0x137630f0 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x55bd49c3 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5869a51a nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x59ebf4f4 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x99d3dade nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xedba60a9 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfc4fcde2 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x58faa4b8 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xf93f5dc1 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 0x1fd96512 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 0xa4c1cb06 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 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x243f5f26 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x446d59da nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5ae79333 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c4c7c17 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x63059fa2 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d78075e nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e6586e9 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6f19c5ee nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7ef5bebe nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7f006da2 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x827f25d5 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaf0cb06d nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb61ce777 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb7f45291 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc4dfcb8f nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdaa1292d 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 0xf659f8fd nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x09000c8d nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2c760aae nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7366062c nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x89b6c6d9 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8cc36cbd nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa405dd61 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa76f5651 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x245cb19b nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2d0e3c73 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x304a9691 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xf590db51 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x660749a1 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xb964d7c3 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe476cfbc nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x008ae077 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x01b65aee nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x2260493a nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x73433508 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb3cf3bd9 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xe1f8491b nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x33c54273 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x9db8fc14 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xd379a803 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x27fde5cd nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x65aa25a5 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 0x0826cb6e xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1832be9a xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3c0efaee xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x64e34b37 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6ea80a1c xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x89d4429e xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x984b6289 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9cb6b530 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcc6fd5ce xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd66afb50 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe69e9d64 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf0bf6617 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfc6024c0 xt_request_find_match +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 0x1de60ade nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x9704444a nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xe0276607 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x56769156 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x6d48a949 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x85075951 nci_uart_set_config +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x24c6225a ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2baf55b3 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2dbdb726 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x49a8c1a0 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x91d4658f ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9f8f67b5 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcffa7f8b ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdd8de81a ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xeb8420bf __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x021845cd rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x025b03d5 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x07bb9144 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x090f080c rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x26688371 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x30e1f2f9 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x31fbf1f5 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x3a3c3866 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x4a2cc9ca rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x53cefbe6 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x5de2c37d rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x60485d92 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7f919862 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x8b7a382f rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x8e708f2f rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc03239d9 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc2f24619 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xc724754d rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xcaeb36c3 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xcb84af75 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xd9facd0e rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xef6a0c4e rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xf61b436c rds_trans_register +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x104e24c7 rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x82b977d7 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 0x0d8f3769 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 0xc4336174 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf9337d5c svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00f6535f rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02db62f2 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0317f01c xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x034dc382 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04833bf1 rpcauth_destroy_credcache +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 0x077a34c1 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07db8871 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x080b8062 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x092fd2b3 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfa2267 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cac1136 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d32d09e xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d3d6d67 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d772b6a svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e02266e xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11d95ccc svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x128aea62 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1304b72a rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x148c87f5 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x155a0b68 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1789ca4d sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18c00b97 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bab04a8 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20b03fcb rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22840f48 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24f0fffb rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25dba9e9 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26274f54 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x263c563a xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c0127e6 rpc_uaddr2sockaddr +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 0x305f6bf9 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x310b2fde rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3118270c xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x338b7fcf rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33b1d2c2 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33c5a42b xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34389cb4 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x344696b5 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35bbaa87 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35e61914 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x364743d1 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37a91034 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37ca7d96 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c46572e rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cfbaca2 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f34fc15 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4035a60a unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x432f542b gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x436b4624 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44c27a18 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x456fa0a2 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47a2fe82 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ad73171 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b2a649d xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b7845e1 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c23c4b0 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x507871a2 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53fe3ad0 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54a3d3db rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55454076 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5629ebc2 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56ae60f4 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57ddf97d rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cfe93c8 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ee7ebde rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60107ec4 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60a32af3 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61dcae3b rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61e1ed5d sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6450d6a2 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65af4241 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67a086ed xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67ac583a xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x689dcab3 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68fb285d svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68fc3c83 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cea70f9 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d0a0fda rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d97040c cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6db50444 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70e92d54 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72d9d6e2 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7422ae0c svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76ce1249 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7721aa4f rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7747ed03 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77f7c495 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c1acaeb svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d910183 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ed54b90 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fa4db9f rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81c9eef5 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x822086c1 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82bdf958 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83951f4a write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83ad4542 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84cd8556 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85be5e82 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x871bfd2e svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8723ab11 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87490e64 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ba57ad7 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ca85e5c rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e381ca3 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ee07615 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90d07c26 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x926a6fc3 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9584517e rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9755462d rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a95548e svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9af0441e xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b9c4fcf svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa03bb71d rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0d0b49d xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13fa4d1 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1ee5eec _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1fbdda7 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2b1f158 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa31943a0 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa34c4749 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa55c888b rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8414f5a xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa92e4e8c rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9ce1e37 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad45b369 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb060362c rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0b89bd2 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb107b78f svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb23e6ad5 xdr_buf_subsegment +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 0xb5ef8cf1 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5f1a782 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6610079 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9bb4448 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ff9cb3 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbae163ff xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb18df47 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb3d395a xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbdfedf6 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd9ab6bc sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0a81523 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1601f4f rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1ea8afa rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc283f45d rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc290f1c8 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2e7763e svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4eb155a xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5ce8469 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5f45a2f xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6a192e7 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc76b54b8 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9016b4a rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccb8e6f6 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcccea1f0 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd86a583 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf866cf9 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14c8eb9 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd231f35c svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2e5152d rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4a87463 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd54d2cd5 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7163877 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7eab90f rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8c21b23 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9e1b693 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdab2b309 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb3ced3d cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb5add94 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdff2cf29 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0f89c5c rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe20d696a svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe26a4f2b cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2901993 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2a9f1ba rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe40f7e55 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe524d3f1 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9003053 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe92cb699 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb35ea7a rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb5e7cd0 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed07549e rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed3f9b23 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedac00ce rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedc87067 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee3de786 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1e45a9d svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2eb6d5f svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4d4c548 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6ef6a1a svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7c14776 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf85b6210 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8a54c70 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8a58e98 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa3d09df xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa79035d svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc9fd981 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe1075d6 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff8d9ce8 rpc_release_client +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x08525e5c 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 0x147b58aa 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 0x2b22141a vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x330dc27a vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73861422 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x86fe8d59 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9d4a313b __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa3a9337b vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd4c159db __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe697b17c vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe8ac1f23 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xea23e525 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeb9feb18 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/wimax/wimax 0x066d1a69 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1091427f wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x3859b3dd wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4a0f52c0 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4c82804d wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4ff5e296 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x98466f72 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x9ccbf602 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xaa623d90 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc6342045 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc9e896ff wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe5e3ec11 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe76753ce wimax_state_get +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0a91ebd4 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2c0f685a cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2ed90f3a cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4a70b084 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5783b78f cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7f665d43 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8d259e7d cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8f42715a cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa5d4be8b cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbd7dbd58 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdb42ad29 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe95a6315 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf0a0232a 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 0x3ba235f0 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x64418f81 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xdfdaf1df ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfd9bb857 ipcomp_input +EXPORT_SYMBOL_GPL sound/ac97_bus 0x52f99ec1 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xa05cbb00 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xc296b9cd __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x15d603ce snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x61a7ebb4 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x858f332a snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x8d59eca4 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x92535b78 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xbd400a9e snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xe511c7b4 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x0b16196d snd_compress_register +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x17ee432b snd_compress_deregister +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x24486473 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1e71b3a6 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3fe75ee5 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4f7f9fab snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x53771715 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6042357f snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x81fcf58a snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8fad2705 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 0xc00859a1 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xffdd90dc _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x18f59b6d snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1a336646 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x26c070f9 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x324741b7 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4153d39d snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x42bc9d23 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x58fa286f snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x67f2c3a9 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7e183d47 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbd6711d0 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfbe61bd0 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2181e180 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x36c68b98 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7779c9e3 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x89172780 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbfb440ae amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc8188d70 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf185f59f amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x04045352 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x07e880ba snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0b720cae snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1db8286e snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x27aecda1 snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x28eb0137 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2b27e77f snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x426bb405 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4c467f6f snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x53509975 snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x56ac5dfa snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6a38014e snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6a75209a snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6d3d99d2 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7f8b08fe snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x85666184 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8ae76052 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9a5004a7 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9d80bf53 snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa24ccab6 snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb269ae78 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xba837ad7 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc1742e92 snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc2428973 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc5528858 snd_hdac_ext_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd08ef8f4 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd72f0b39 snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd7594f0f snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdcd0465e snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xece02a8e snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf7554bb7 snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfd9a9678 snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08425057 snd_hdac_i915_init_bpo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b1c1a54 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d2fc538 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13366f3c snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15c11dbe snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16f90109 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ab8b20b snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25e7f990 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2615bb1f snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x267f265b snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2db04db3 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x349e8f2a snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x360efb25 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x36d0483a snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x396b0bbd snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39a4af2b hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3dca975a snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x466ab636 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4992cd0d snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ad1a466 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4bb7e5ac snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ef9fd3a snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50cdfeaf snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x515d2a7e snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x525d97bb snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x572a4205 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57b82244 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d4746f4 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62882a9d snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64854d27 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x652adbe0 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ce98dbb snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6dd5fb0e snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ffc8b10 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7018ae3e snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73187668 snd_hdac_i915_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x754cc4af snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x771eeb94 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7af53806 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x801aaddb snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80fb6335 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85a9d502 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88b75c1b snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b26cad6 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9101be2a snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94c45258 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x968afff3 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ab65f77 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa17c4b88 snd_hdac_i915_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa23759c1 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6d44e4c snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8c9e8d4 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xabd84073 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad19ebcf snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaecf9dfe snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf18e878 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf40465a snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba0e2ef1 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc5e1637 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc33d95e6 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc39ac29e snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc83798b5 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8c2a318 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca676512 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb2659f3 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd11637c4 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd462ae98 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdba219b4 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 0xe3b9f7dd snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8c1368e snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8ea6b91 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xebd3311d snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec9d3694 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2fb4f9c snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf8e5b11c _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfba398c7 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfbc3ee7c snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfd6fba1b snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7e4c393a snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x896e2d15 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcd13d90c snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd68eb43f snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf34ca189 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfb040fbf snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01967f1c 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 0x075df42e snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e363fa6 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e450cad snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f7267ea snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f75aacf snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10b52568 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11a02f2e snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11ad5701 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14e1342f snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x184544f1 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18611bc0 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a321e8c query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e8d460c snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fa75cc4 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28afd8a2 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x301ee3a6 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3072da66 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32d5eda9 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x349e234a azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34afe6c6 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 0x3883e5c4 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e4e2a35 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41d29989 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49c566a4 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e7214ce snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ffaeb1a snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50be0486 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53c35304 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x545f7348 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5952f025 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bdb148b snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c1b8b68 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d880b77 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fe45486 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6055f4f5 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60685396 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x608d7781 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x685c5d31 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6957b11b snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c555607 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ccacc28 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f2dd6d5 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f46f9ac snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70bebc69 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x723bd877 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73d30ff5 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74a60217 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x791cf164 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79d00dd5 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79dd75fa snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a2c3542 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8047eadd azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86ec754c snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x870c5e64 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a48604b snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b7cf742 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ceb9080 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92144913 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x931b8133 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x936b1a7e snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x968c033e snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9aa55d31 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b48619d snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e7f323e snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ee6a3fa snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa056ad33 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3018669 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa38f0269 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa55c0c5b snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa79dd820 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8476098 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa969a4d9 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9f39c1a snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa8f19c1 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafc81f77 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb037990b __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0c5139a snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1b4550c snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb54c8e03 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5cf90c7 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb75d7a48 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb932b245 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbe26ee3 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc9da553 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe41082d snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfcf29dd snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc14b3d77 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2151ad2 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3a057c1 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3d8b3c0 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc42761bc snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc504652f snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc75761f5 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc935a69a snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9a9ead9 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb0a9af1 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd19a542 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcdd60535 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfc6ce97 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1a399e6 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3828638 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3f507a7 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd47b04dc snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd91d59f4 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdde5c341 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdeb5a07e snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdeeae4e0 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf250e0d snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf792f3f snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe49324d8 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5676c16 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8802159 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8c6a342 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb57f888 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebfa77f7 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 0xee920e6b snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeee58420 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf04a7617 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf17f7722 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7cca973 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfadeb3b8 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb1b3885 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd4f4e04 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x01b05d05 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x075dc8e5 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1918e40f snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1eca5700 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2b1a4ee4 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x303b6d06 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3d287b33 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4f8f124e snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x63c3a21b 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 0x8542f335 snd_hda_gen_line_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 0x985cdd74 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x98c49a05 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9edad61f snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc399fbff snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc7041852 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xce8023e9 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd3c3fce9 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd51c06fd snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe861bb38 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xed14fa88 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfdc44c4a snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x3110153e cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xf6cd4437 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x71b88076 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb18872ee cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x10cfcd82 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x3046a837 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xbb6b0e0c cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x47422ba8 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xda4d15ac es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x7bf6e882 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1d9c1357 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x54f3a9eb pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5b46975d pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9b55a33c 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 0xf2ce325c rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x8a3131ed rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xc21e63f4 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xdcf4daf3 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x136b3e2f rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x15a2d35a rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x3a05a3bd rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xca2d69df rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x266bc43b devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4b02d437 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7918427d sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc219271d sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf941c11c sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xc3f9df9d devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sn95031 0x8aac8787 sn95031_jack_detection +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x46c8e933 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x78ff93ab ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x45329ca0 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x5bba0854 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x5e9e8119 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x029ad61e wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1ed818d2 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x594cfe86 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf4bb24ca wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x85a0eeb4 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xe18e8d94 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x88d833de fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x99ffa71d 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 0x41b1e1ab sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x949a6195 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x3065b639 intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x9a021cac sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xa5e581da 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/atom/sst/snd-intel-sst-core 0xe3ee90f9 sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xff5a8aa8 sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x64b54426 sst_byt_dsp_wait_for_ready +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x8978f31e sst_byt_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x89a8e83b sst_byt_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xaf89c86c sst_byt_dsp_suspend_late +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xd60fea44 sst_byt_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0378ed9f sst_module_runtime_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x067bedc1 sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0753a21e sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x09ca577b sst_module_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0e9ffac1 sst_dsp_shim_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0fa2503f sst_module_runtime_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x11fd204d sst_memcpy_fromio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x159f11ce sst_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x162d82b5 sst_fw_unload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1658bb19 sst_dsp_reset +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 0x203a75b8 sst_module_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x22c029e9 sst_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x31c94fb9 sst_dsp_dma_copyfrom +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x32a66c3a sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3bd83186 sst_dsp_dma_get_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3d5d9c4e sst_module_runtime_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x445e2890 sst_block_free_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x47a6820e sst_module_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 0x4b1eb124 sst_dsp_shim_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4d808ea3 sst_module_runtime_save +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5308293a sst_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x534cc15f sst_module_runtime_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x552234e6 sst_mem_block_register +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x582f65f3 sst_dsp_shim_read64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5daeb12f sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6162e320 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7687f480 sst_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x79246ae2 sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7c7933ac sst_mem_block_unregister_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7e9fd491 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x85f733cc sst_dsp_ipc_msg_tx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x87297726 sst_module_runtime_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8b20321b sst_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8ecfe40f sst_fw_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x90001088 sst_module_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x910a2c55 sst_dsp_ipc_msg_rx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9135fdde sst_dsp_get_offset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9212dcdc sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x93cd76e8 sst_module_runtime_restore +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x94267bc6 sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9434a419 sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9722ad8e sst_dsp_dump +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x97296c94 sst_dsp_shim_update_bits64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9e09357a sst_memcpy_toio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9e959527 sst_fw_free_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa8a09028 sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa91a6fce sst_fw_reload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xad77ad54 sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xae58fa1e sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xafd99c98 sst_dsp_stall +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb227c72b sst_dsp_dma_put_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xba1297df sst_module_free +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 0xbfbd8a1c sst_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xced7740a sst_dsp_dma_copyto +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 0xdc659064 sst_block_alloc_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xef4b9c3b sst_dsp_shim_write64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf389e410 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf405e671 sst_fw_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf85d4cdd sst_dsp_shim_update_bits64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfd548036 sst_dsp_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x1a6de7a9 sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x4687f980 sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x7e85c7f3 sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x9da183c0 sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xa1715f52 sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xb1008e2a sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xb54d978c sst_ipc_drop_all +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x1c0a8c0b sst_hsw_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xaf17c6cd 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 0x0bb739e0 skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x1b7fa6f8 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x214d051b skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x2fb4ebfc skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x4bcf2526 skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x76c9335e is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x8f631805 skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x9338bf72 skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x936860b4 skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xad9375ff skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xbc4f533a skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xbdf34146 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xe359f131 skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xf23d4217 skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xfe9dc59b skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x019565f0 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x059a632f snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0766736d snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x081cf28b snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09c93eb7 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e692d1a snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x114c3b43 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x128e7ada snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x155b9646 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17f25117 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19d50fc3 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b20330b snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d4b9b98 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ddbd8ca snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x201621ff snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21b2c135 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2644ebc0 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x285d3e32 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2865aee1 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c25e997 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c2b988a snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3141c2cd snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31633bd3 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3169dbe4 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31dd47c7 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31f0aaac snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x352a9cf1 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37ecfc7f snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bb74984 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cf4328e snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3de0272c snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3dfe9dda snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e5980d3 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ec53a4d snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ee58c56 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x404523c6 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x414af72c devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4310f3c2 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x437f1e55 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44989fda snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44ba4761 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x457b125c snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x462c0deb snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x469cbf1e snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49313d5d snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a2659a4 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x517f129c snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5482bfd3 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5864487e snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59558c80 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59cfd704 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a79faef dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5adfc1d1 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5afff0cc snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b53a9d0 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c40f508 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e1b9926 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x607d6a39 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60afe871 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61ea7248 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62c13ea8 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63997866 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67fe8a68 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69e501a9 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a2b0129 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a819b40 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cf01dce snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70956e5a snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71b2485e snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73d3177e snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74863d63 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76d8eeb0 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x772b48e6 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x788d4459 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ac7ff92 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7caa3bd4 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f7575c0 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8196ffe6 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83f6a91c snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x853e62f4 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87baeb10 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x880692c1 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x899df06b snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89b9bb49 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c40c476 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e74e722 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f9505e8 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f9e6a7f snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x930c3e26 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93dfc3d1 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94ed3b89 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97e6a38c snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98da9ed0 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a1a5c23 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9dd68f2d snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e10083d snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f04528b soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa51db43c dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa64be2d3 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab8b5076 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacb24fcf snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb238e44f snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb24a5fc1 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5a9a119 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb753d02e snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb935db71 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb94d7711 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbae147b snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc541677 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbee765bf snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc00fe48d snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0610258 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1432965 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc31a1a15 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc42f43b8 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4ab90ef snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc54d77c2 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5a7d8be snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7920839 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc940ed74 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd8d8270 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdee24a5 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce9c7572 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd03e4cfe snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd05baef3 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda813cd1 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdabddf57 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf79554a snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe161db9c snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe179c3ef dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe314c30f snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4a3ee31 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6173de2 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe69092c8 devm_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 0xeb9c9740 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeda90d08 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee5aec4c snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefdec442 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf105b71a snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1d563e1 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2a6ba59 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2b34075 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3cb8d22 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4f05579 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6e59884 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6f148b1 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8321cea snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa94f341 snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfab18555 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb7a3984 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbeee621 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd905872 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfee01ff9 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff678875 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x00233165 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x12f73279 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 0x2794f265 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2aa6f355 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4628058e line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4988b86c line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x52c57d6f line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6b2bbfc8 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 0x8f8d53c1 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x931952b9 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb8beb462 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbecbbbe2 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd3eac578 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd5e6c9ae line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf6f44260 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 0x0007a419 rsi_hci_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x0bcea2d1 rsi_remove_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x0d15c794 ven_rsi_mac80211_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1e678bb2 dot11_pkt_type +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x2c7fb80b ven_rsi_read_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 0x6981fb32 rsi_send_rx_filter_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x7f10c22a rsi_hci_attach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x85e5f228 ven_rsi_91x_deinit +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x95c87b58 rsi_deregister_bt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xa4ab9333 rsi_config_wowlan +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xa5c9e294 rsi_hci_recv_pkt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xafdc7c8e rsi_hal_device_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xc564bbf6 rsi_init_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xc6bcc5c7 rsi_default_ps_params +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xd18f2098 rsi_send_rfmode_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xe6b5015e 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 0x0002020d inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x0025a1a6 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x002ac701 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x0035a5e4 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x00604c18 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x00730660 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x0073a7e8 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0082c192 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x008cf0f0 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x008f2182 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x009a391f regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x00cb6e05 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x00e7f3ca ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00f11d82 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x01068f2d pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x016829df device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x0170cb6c efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x01775f78 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x01ce86ca crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x02739971 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x027b22cc ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x02901ed1 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x02a26a0d device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x02a5302b regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02a6412e ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x02bb4f58 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x02dfe1d8 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x02ee3cc5 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x02f9fa39 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x02fd7397 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0303ed30 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x031299a3 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x03138474 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x032f56ce devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x035480db regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03ca2737 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x03da0ea8 device_move +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03e6ec0d pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x03f29c1e nl_table +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0408bd9d regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x040b69c2 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x040f4e3f __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x043b7db4 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0478ca4e file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048c1914 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04bf26af ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x04c08696 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04ccb4fe get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x04e7baef tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt +EXPORT_SYMBOL_GPL vmlinux 0x04f499e8 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x05017c35 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x05020d15 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x050ae69d pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x051b3827 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x054aca50 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05564d79 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x0563478d device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x056b3f0d usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x056c65e7 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x0582ac2d pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05c6d26d __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x05d7ece9 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x06038e37 fuse_do_ioctl +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 0x064f7603 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x0654d18a tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x0664098d acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x067ec450 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x06934163 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x06963c36 intel_msic_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x06a0a801 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x06c641b2 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06dd9b5a ehci_cf_port_reset_rwsem +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 0x07414815 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x07555165 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0760f0d0 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x077d8c06 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x0784d64f seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x078777db devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x07954909 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x079f0a79 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x07a09ca5 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x07a4f537 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0x07b03acc __clk_get_hw +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 0x07f85a96 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x0802ff00 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x08268156 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x0835aff3 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x085f9dd5 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x08908f39 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x08e7380e xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x08eb8781 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x08f10258 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x08fe074f sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x08fe8dab perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x09155797 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x092097fd rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x0931193d usb_string +EXPORT_SYMBOL_GPL vmlinux 0x0931ffc0 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x095f7385 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0962d0e8 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0986e0da rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x0991192a __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x09987b26 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x099df3a3 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x09b09813 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x09d33262 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x0a0d321c fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x0a2609ec unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x0a343308 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a602433 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x0a619618 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x0a6cfa65 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x0a8d21ae list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x0ab4e356 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x0abc4d20 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x0ad4e54f uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x0ad72528 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x0aef1097 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b256b01 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x0b3b5129 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x0b45ef73 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b60dbd6 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0b94b110 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x0ba36e2d xen_swiotlb_set_dma_mask +EXPORT_SYMBOL_GPL vmlinux 0x0bb9e30c device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x0be3c222 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x0be8f569 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x0becedac cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x0bf03a5f devres_release +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bfd9a7f attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x0c041e2d sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c0c727a regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x0c1a32d7 md_run +EXPORT_SYMBOL_GPL vmlinux 0x0c1dfa84 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c4bb2d9 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c5829d3 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x0c6e1982 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0ce066ff iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x0cffcfa3 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x0d00f6ef of_css +EXPORT_SYMBOL_GPL vmlinux 0x0d0286ab trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0x0d190c35 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d1ac9b5 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x0d2fad2e regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x0d3382cc pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x0d35986a crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x0d42d651 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d999ce2 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0da3b0c5 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0dc6113f blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0ddf3205 arizona_dev_init +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 0x0e483f5f usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x0e58a4c4 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x0e59cadd ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x0e5e5d98 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0e805157 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0e8496cc i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x0e85101e regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x0e89370d sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x0ea72e3e swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x0ec2bd54 adp5520_set_bits +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 0x0f4e5896 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x0f4f8b7b class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x0f591abf gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0f6e4206 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f81478f pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x0f8d0614 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x0f9b52f5 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic +EXPORT_SYMBOL_GPL vmlinux 0x0fa3c6b8 crypto_register_shash +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 0x101341c2 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1057ec83 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x106b1c63 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x107acf67 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x107ce06e udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x10b114b8 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x10d7da22 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10fb26c7 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x11168570 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x112e8fe3 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x1130999a __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x113c7c75 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x1149e94c inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x115a9003 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x1168c30d devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117a0ac9 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x11896a53 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x118b1957 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x1190f01b regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11edabac serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12228d35 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x1229f193 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x12365e8c percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x123ce408 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x128cfc61 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x12bcbbd4 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x12cbe015 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x1302c413 xfrm_audit_policy_delete +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 0x13453c5a virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0x13506098 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x1360bb9b register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x136121a2 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13623df5 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x13707756 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x13a9a822 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13b4ae7f fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13e705bb rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x13fff3b4 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x14148501 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x145784d1 gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x14579e22 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x145c70a4 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x1462ae9c usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x14725213 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x14ae8306 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x14bff48f regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x14ca6da4 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x14de856f trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x150b598f __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x15234655 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x1537a46d find_module +EXPORT_SYMBOL_GPL vmlinux 0x1537f9ef pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x153cf702 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x15492fda devres_add +EXPORT_SYMBOL_GPL vmlinux 0x15568631 lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x15b6065e hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x15b630e9 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x15e02372 xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x15e84e7e spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x160350d0 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x1603cb3e wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x164934f4 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x169e3203 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x16bf220b bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x16d40164 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x16d8ee01 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x16e215c6 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x16e276b1 cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0x16e7dd33 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x16e95c0d tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x16fcd0f5 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x17045454 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x170af79a acpi_subsys_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x171e21f2 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x17229529 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1726149c __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x1733695f xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x17598b3c gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x179159a0 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x17a3faf8 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x17ac8a1f rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x17acc083 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x17b5cb01 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x17f716e3 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x17ff8404 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1840b929 nd_cmd_out_size +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 0x18a07255 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x18a1d973 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x18a65620 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x18af4a9b led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x18de2f96 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x18e46681 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x18ed4463 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x18f4ca1c wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x19670703 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0x196b08de ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x196c2d3f clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x198d8706 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x199f172b nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19ce4f41 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19fca7af blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x1a1a05e4 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1a2805a7 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x1a3b9713 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x1a57ba90 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1a99d30d nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1a9cb062 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x1aa45346 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1aa751cc regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1abb6ccc blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x1ace7639 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1b1da2c1 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x1b1f2bda speedstep_get_freqs +EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x1b486759 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1b4a6c01 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b79a15a xhci_gen_setup +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 0x1bf1b2a7 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1c104054 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x1c10cc1c i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x1c1bd7c6 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x1c409f46 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x1c43fd2e fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x1c4b05b7 serial8250_tx_chars +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 0x1c6b2869 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1c76566f skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1cbcbc2d __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x1cd4b9e0 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x1d1c784c dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d234149 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x1d321358 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x1d459685 xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x1d51dc5c wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d6b72ad dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x1d741882 ata_noop_qc_prep +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 0x1d864803 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x1d87291f thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x1d941f05 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x1d9fba34 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x1daacfe9 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x1db605bd regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x1dd123d0 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x1dd31a61 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x1de8d36c pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x1dec906c rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1e2799d1 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x1e27b363 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e63f7dd __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e858bdb pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecd0334 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x1edd9da5 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x1eec435d fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x1efde5b9 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1f019247 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x1f1fb169 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x1f28cb01 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x1f3042ed regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x1f6aff4f device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x1f7f6fac register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8cba77 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fa5b19a preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0x1fdac616 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x1ffc66a8 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x20005789 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x200cc695 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x204e66e6 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x20548698 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x205ac434 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x206f0f83 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x20822453 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x2092e394 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x2093ddba led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x2097838e irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat +EXPORT_SYMBOL_GPL vmlinux 0x20a09075 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20af3a67 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x20b1ba15 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x20d3b13d dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x20d91a0f regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x20fca392 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x20fefc88 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x21066991 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x2140021f of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x21476877 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x215d0491 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x2163c58b ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x216e7d1c sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x217ad37b pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21bdff3e ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x21c9e695 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d008cb ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x21de992a __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x221c3cef acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x2276a19d __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x22a45914 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x22bcccd7 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x22d6baea vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x22db2d6a regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x23048011 __intel_mid_cpu_chip +EXPORT_SYMBOL_GPL vmlinux 0x230d8e42 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x2314be2e gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x233fa43c __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x238816ce to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a93632 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x23c04b8f set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x23c52e00 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x240580a9 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0x2427a99b usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x243a95c8 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x24559f3a __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x247dd780 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24823947 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24c1e4bf blkg_lookup_slowpath +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 0x24faebef xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x251cd54e usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x252527a2 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x252c09be injectm +EXPORT_SYMBOL_GPL vmlinux 0x253728c1 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253eab6c pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x256b5b19 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x2570ef4a sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x25ce8a73 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x25e29b25 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x25f5a0ee cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x2634baef is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bcdaf skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x266494e6 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x26653c0c virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x26739b0f extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x26ab4c13 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26bd2868 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26e1051e tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x2706270c devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x271114e8 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2721a0f7 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x272ae492 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x275a1b1e crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x278dd650 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x27adfc22 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x27bad9ce __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27c46595 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x27e33591 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x27e3faf3 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f81f2b queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x280194df __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x28084a7d reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28460723 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x284a0567 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x285a65fa iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x2875b1e6 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x2891de5b pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28b95557 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x28cc2306 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x28d0835d crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x28f36ac0 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x28fe284d da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x293f073e vrtc_cmos_write +EXPORT_SYMBOL_GPL vmlinux 0x29740963 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x2975392c i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x298fe32f sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x299154e3 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x299591e3 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29ab2106 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x29b2a467 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x29ced26f led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x29dc5a05 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f48db3 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x2a0d4765 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x2a15c468 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x2a3929fe udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x2a4c19fb skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x2a61b282 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a6c3009 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x2a70daae vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x2a85546d regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x2a91180f usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x2a941a02 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x2a949789 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x2a97e0c8 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x2aedb435 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x2af7418a crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x2b00e2f0 mmput +EXPORT_SYMBOL_GPL vmlinux 0x2b0b80f9 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x2b165527 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b370d70 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x2b450dd9 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x2b67f096 speedstep_get_frequency +EXPORT_SYMBOL_GPL vmlinux 0x2b6fe95f uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x2b8cc431 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2b9124d2 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b96316a efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0x2ba0caed pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x2babf44c xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x2bbfec39 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x2bdd7a2e device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x2bde12a1 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x2be01e34 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x2bf67228 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x2bf92bce pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x2bf9a67a pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c05ba0f bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2545b7 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x2c299e30 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c36acea crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x2c495a90 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x2c4e15ac sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x2c5e9ddc __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x2c630bd1 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x2c63b5e3 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x2c6a0410 xen_set_domain_pte +EXPORT_SYMBOL_GPL vmlinux 0x2c6dc95e reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x2c6e7887 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c801a71 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c876bbd ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2c9f9d35 acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x2cacdd67 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x2ce22963 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf49290 serial8250_request_dma +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 0x2d88a2e9 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x2d914641 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2dc6828a device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x2e05eceb extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x2e14775c ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x2e1e4da0 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2c51b0 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x2e2c778d platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e30d106 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2e3a2812 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x2e58bd78 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x2e6aa7b1 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x2e6fd34e ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec18f52 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f28288c dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x2f3c163b rhashtable_walk_init +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 0x2f90da7e trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2f93a2c1 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x2fd06711 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2fd71fd9 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fda9d5b show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x2ffa2b81 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x2ffe6bce arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x300cfdcc inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x3010e848 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x303672b3 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x30374f80 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x30491779 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x304a7915 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x305db4ad sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0x3099db15 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x309bab42 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30b0123a gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x30b4d6ce pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x30b873ec devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x30c4f21e virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x30c83cd5 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30ebe9fe fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x311ac71a regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31288f2b register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x313b458c virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x313d2833 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x315d7ccd nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x316209b1 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x31672f62 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x31bab052 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d42156 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x32336377 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x324bef79 set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x32557712 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x32565075 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x3263d968 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x327d11d7 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x32a378ed crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x32b9d320 pm_generic_runtime_suspend +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 0x32fef545 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x333228ec intel_msic_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size +EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync +EXPORT_SYMBOL_GPL vmlinux 0x336663b0 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x337c43e1 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33cc79e2 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x33cdcfae mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x33ee2b33 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x346214e5 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34a7a4e3 xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34ba54bb ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x34d48e1c transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x34e26d4b ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x34f5cf84 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35039a42 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0x3581f995 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x35976a97 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x35a84f01 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x35be2598 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x35c9a76d ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x35cb1b24 intel_scu_notifier +EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x35eb7461 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x35f25bc7 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x35ff27a0 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x36178395 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x3630d88f tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x363cf728 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x366d0a33 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x3677c6e8 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x3687b16c xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36b5f4c6 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x36ba2551 intel_scu_devices_destroy +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36cbad3b to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36eedd1b print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0x371c7c78 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x371f55a3 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x3735a981 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x374c7d68 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x375a6fd5 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x37601e91 extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x37696fa0 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x376f6c50 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x37747cc3 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x37907f46 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x37998947 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x379b7495 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x37d2612b hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x37e6c9ca cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x384609fc pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x3869f9b8 user_read +EXPORT_SYMBOL_GPL vmlinux 0x386e0ad2 register_mce_write_callback +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x387df804 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x388257f7 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x388e4e16 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38eb3572 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x38ec3c8c pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x38f60218 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x39175e37 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x39717591 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x39884780 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x3988a7f0 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x39963855 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x39afbf22 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x39c0732d tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39de43e0 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a2bec01 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x3a2cdc39 __sock_recv_ts_and_drops +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 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a8a37b1 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x3a8b011f pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa12557 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x3aaad838 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x3aab6ee9 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x3ab3708c blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x3ac96267 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ade2650 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x3ae16a91 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3aefdeca scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x3b0c1889 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3b3e30de spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b5483cd da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x3b65cd02 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3b757f72 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x3b9848e4 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x3b9dbd4e pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x3bc4f7d5 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x3be4a8c5 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x3c03f4e3 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x3c04a726 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x3c0a1aa9 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x3c0a9b66 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x3c5d8bc2 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x3c6cefff pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x3c6db9eb class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c7048d6 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x3c8d0b32 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x3ca45f0f pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3cab3b65 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x3cb14221 print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3d177317 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x3d369f57 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d4d0f1e wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3d4e9960 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x3d53a26e rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3d997f01 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3d99950e scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x3da0f7fd ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x3da2efa3 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x3da8dc57 virtio_config_changed +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 0x3dda05eb tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e4bb9a9 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e57f148 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e66b17f ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e757637 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x3e787679 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ea91b5f bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x3eb41a46 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f020eba fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x3f1dba8a wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f29a279 user_update +EXPORT_SYMBOL_GPL vmlinux 0x3f355d53 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x3f44d61e crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3f4dea66 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x3f5d3f47 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x3f64759d rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3f872655 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x3f94c6b4 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fc63b67 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x3ff5478b device_del +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 0x40248ebf dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x404a09b4 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x404d9ce5 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x4059726c perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x40814f15 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x408212ba hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x408571ab shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x408630d0 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x40948a6b sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x40a65598 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40b09ed9 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x40b8e4de iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x40c7995a phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x40d10cdb dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f553cd pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x40f88761 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x41083039 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4117014a pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x4123c903 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x412c5a07 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x413ff83b rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x4145f840 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x41568bd3 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x416ba987 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x4174d7d7 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4186d84a __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x418710e7 mce_inject_log +EXPORT_SYMBOL_GPL vmlinux 0x41935a92 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x41a3d53f sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x41afc7d6 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x41bdced4 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x41c6c4d7 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x420077c0 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x4207e434 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x42285b07 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x423eea6f task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x424fd675 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x425b7b89 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x425ebc7b srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x42725847 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x427d1fd8 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428687cf usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x428db732 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x429aba74 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x42a6e3d9 regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x42b06535 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x42b95a53 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x42bcd606 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x42c7d554 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x42c989ff iomap_atomic_prot_pfn +EXPORT_SYMBOL_GPL vmlinux 0x42e00bcb skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4313b808 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x43240c36 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x4334710a crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x435b1f1a trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x436df44e ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4370683f pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x43818a8d __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x438bb4df tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x4401c526 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x4409afec crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x440c0068 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x440c6c02 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x440c9912 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save +EXPORT_SYMBOL_GPL vmlinux 0x44233064 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x442e7f94 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x444e02d3 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x447cfc7a pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44966d40 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44cf6f52 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x44d7e4dc clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x44e1225d thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44fb4196 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x45115724 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x451185b1 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x4512b086 intel_scu_devices_create +EXPORT_SYMBOL_GPL vmlinux 0x452b668c regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x4538a507 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x453f625e sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x454cd909 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x455be3f2 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x459ccf63 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x45abf0d1 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x45bd51dc mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x45e5ebd9 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x46147944 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x4617ad98 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x46271d42 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x4639bd79 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46419d07 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x46436ea0 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x464d4fa9 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x464de38b perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x465265bb ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x4653aecb usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x4666c15b hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x466f70c4 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x46723903 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x4677e79a ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x4678157d pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x467ee2d6 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x46800d19 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x46875a63 apic +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4693273c devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x4699aadf usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x469c8ff5 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x46caedcb sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x46dad9a6 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x46f70315 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x470a9655 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x473f0eb4 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x474d9fd2 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x47514e0d crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x475d29c5 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x475d45fb powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476f609e __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47885022 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x47a2f34f srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x47a5b6b2 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47bfa254 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e10d99 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47e29c87 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x47ed21ec rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x47f3b615 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x4820f8d9 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x482f854d pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x4848b560 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x4855c91e led_sysfs_disable +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 0x4872ba10 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x4879456d __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x48bd0f3d inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x48d9802c thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x490a8df6 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x4918526c irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x4936f934 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x49544123 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49cacf3d noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x49d1a4b6 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4a011a10 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x4a066707 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x4a295efd __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x4a2cb760 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4a3c3cf9 microcode_sanity_check +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a47c35f mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a53d6d1 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x4a619bce rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x4a690884 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x4a7a701e vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x4a9e3a61 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4afb573b vrtc_cmos_read +EXPORT_SYMBOL_GPL vmlinux 0x4b011847 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x4b01f6f5 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x4b369bd7 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x4b3e4b28 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x4b5a8e00 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x4b63ad88 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4bab0d61 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x4be7c9e9 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x4c0d8477 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x4c0f2304 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x4c2a472b __static_cpu_has_safe +EXPORT_SYMBOL_GPL vmlinux 0x4c3ddd0a iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x4c4ad1d2 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c6408d3 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c947246 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x4cb3eeba xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x4cb5e55b usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x4cbf74cf xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x4cd44c3d kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x4ce2bfcd netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d05d3fc uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x4d10fdd8 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x4d2304ed ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x4d2b6ff6 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x4d39c1da dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x4d39ccab spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x4d3d8ca9 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x4d53a5c0 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x4d768ae4 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x4d7b84a7 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x4d8c12a7 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x4d8e7421 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x4da923b0 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x4db379f9 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x4dd0ff6b pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de59d19 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x4de860af max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x4e077407 xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e285b49 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x4e40b9d8 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x4e54e33f iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read +EXPORT_SYMBOL_GPL vmlinux 0x4e5cfb37 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x4e61c0bc inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x4e97a832 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x4e9ff4ff fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x4ea2003e ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x4eb43906 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x4ec5c2aa pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4ed80d36 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f1030a2 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x4f23a49c irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x4f2d6c87 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f3a8334 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x4f3c4d4c blocking_notifier_chain_register +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 0x4f6e5fc7 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x4fbb68e7 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x4fbf58e9 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x4fd36533 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x4fd5a81f component_master_add +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fdf7253 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe30c16 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x4ff2b1e2 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x50114c4e scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x501316d9 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x502008b5 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x502fd7d9 skcipher_geniv_exit +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 0x508c8b46 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50c402df pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50cf9d59 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5103fe4b gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x5107f46a acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x5127ad66 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x512c50ad devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x51347de9 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5156ae11 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x5163cddd proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x51719489 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5178fb4d devm_spi_register_master +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 0x51ba3887 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x51c3d5e4 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x51cba674 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x51d072d9 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x51f3dda3 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x520e223f dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x5212385f inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5224ed62 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x523b5724 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x5279c7d2 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x52e0e360 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x52f102db __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x530e8c9c sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x534f6de9 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x5360279a xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x538bc3ad driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53af1b6e __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x53b9453e regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x53c9acb7 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x53daa684 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x53e9b049 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x53ec9ef2 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x54086269 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x542e1cfb ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x544d14c5 i2c_lock_adapter +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 0x54993cdb crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x549d7e15 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x54b7e7aa isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x54c92b55 set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x54d5c6f3 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x54dd8df1 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x54e13c3e tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x54e900c4 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x54ff3b7e sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x554483c6 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x554a334a virtqueue_poll +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 0x5588d60a clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x55e0b613 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x55e1e730 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x55e96632 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x55edd53d unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x5613ba8f cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x56473b98 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x5668af06 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x5678a088 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x56942726 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x569c6196 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x56a680af rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56c46424 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x56d3e868 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x56d63ce9 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x570883a3 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x571fe183 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x575bdced inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x576c0177 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x577c591a mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x5784cd22 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579dd9d3 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57d51b8e dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x57e92513 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x580b2152 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x5818524b rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x582cf8a9 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x582f7a65 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x58445b46 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x584c4c88 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0x58668d74 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x58670986 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x58671e9e da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x587ef04a dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58bab30a da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x58d1ac19 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x58e91bf8 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x58f21a89 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x58f2de25 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x591d50e6 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x592f0435 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x595285ae subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x5959daff ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x595cdd07 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x595dc344 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x597d10c0 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x59b48bb8 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a109a16 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a12e17f iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x5a1bb791 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a3b2507 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x5a3eceac swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5a68d94d sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x5a699c6a fpu__save +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a750328 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a84e46d iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x5a85a6cc acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x5aba1426 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x5abfbd57 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x5ac9fdb1 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x5ade69ee __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x5aecc746 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5af12242 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x5b0f21cc usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x5b1597eb regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x5b1899f8 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x5b440456 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5b53b7c8 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x5b65b351 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x5b6e0389 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x5b772b95 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x5b8469fd da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x5babf842 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x5bbce206 register_ftrace_function +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 0x5bde6520 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x5bf42508 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x5c018d83 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5c01e585 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x5c3bb7ab md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x5c50e93a rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5f869b blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c7239d1 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x5c90d7ad find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x5c920e19 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cbb1906 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5ce7f678 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x5cf246f0 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x5cff16ca usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d2eb6fa dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d480e30 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5d6bd664 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x5da1633b crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dddc562 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x5dfb8f28 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e2720bb acpi_ec_remove_query_handler +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 0x5e5e5e16 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5e68672b power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x5e6fa533 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x5e77ba35 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0x5e817007 x86_hyper_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5e8c3a1a irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5e93ff88 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x5e975737 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x5ebf61f2 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x5eeeffa9 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x5f02428c pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5f0822ae thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x5f0e37cd __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x5f1cd903 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f31449c usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x5f3d9f17 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x5f783fda regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x5f86bc08 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x5f8c0773 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5fbeee78 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5ff08f0c put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x5fffa87f gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60220c4f fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x602299e0 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x6037750f ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x603ddf48 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x604cb6e7 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x60567b41 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x6061b278 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x60676918 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0x6069a71d devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x606fe974 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x6074fb50 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60930d37 save_mc_for_early +EXPORT_SYMBOL_GPL vmlinux 0x609b65b9 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60b49a9c rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x60c05a79 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops +EXPORT_SYMBOL_GPL vmlinux 0x60cef609 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x60d723b1 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60f9bc4b device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x6126bb4b inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x615512c2 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x619c7599 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x61a26986 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x61b0f0c9 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x61c245d4 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x61c6920e sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x61c70aa2 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x62227b9c virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x62291605 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x622d1c99 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable +EXPORT_SYMBOL_GPL vmlinux 0x624f7db1 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x626a48d1 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x627e897b pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x62eeb5b5 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x62f206cd extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x62fc8b17 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6336a3a7 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x633d5be7 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x637ed51d rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x63806cf4 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x6392bcda usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x63b4838f call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x63d8afad virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63e55a39 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x63e5e8ff ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63f42ebf wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x63f83a85 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x63fceb0b pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x6425af62 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x642ddfa2 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x6459c861 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x6490c705 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x649df6e4 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x64a60fb1 pci_sriov_set_totalvfs +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 0x64ba6dbf usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x64cab1d5 xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x64cc5d10 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x64d5590f platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x64dde065 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x64f0a712 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x652144ba xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x65252448 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x65336a3e rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last +EXPORT_SYMBOL_GPL vmlinux 0x653b45f6 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x653cb02d intel_msic_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x655b362d rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x655db65c ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x6567c319 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x6594a24f clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x659b30b3 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x659bd8aa alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x65a9946b sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x65aad563 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x65b41553 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65bf459e led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x662e89eb pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x665d1f20 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0x66696731 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x66757659 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668e9007 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x669473f8 __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x66a135d5 xen_remap_domain_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x671bfde8 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x672e7fac bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6785fa59 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67d60fba register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x6810f95f sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x6812b792 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x681fef5d blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x682e6bb0 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x6830bd43 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x68347716 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x6834ac43 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x68559237 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x685b87fd ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x6879f3b2 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x68a0f3df transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68a82089 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x68afa171 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x68c221cd serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x68c4e0dc rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x68d4205a metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x68e695a7 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69392eb6 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x69445094 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x698be4e9 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x69941c80 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x699e6a05 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x69ab5ce0 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x69b7029a generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x69b9aa99 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x69d390c5 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x69f53b15 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a2a6a19 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6a4926cd fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x6a4b144d ata_acpi_stm +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 0x6a6b3f31 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6aa852ca ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6acdcc23 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x6ae80a01 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x6af0fadc wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x6af343d5 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6af5325b skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x6afbcc4f pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x6afe1315 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b24846d trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b3b4c5d dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x6b4a0f4f agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x6b579048 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x6b6b3123 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6bb6ae61 regulator_is_enabled_regmap +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 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c23e59c regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x6c2f85a4 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c501717 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x6c5b7adb __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x6c5ba536 xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6c6538df init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c672782 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c9a62d2 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6ca1e726 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ca4b85b dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cc0a22d task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x6cd1d263 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6ce2897c default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x6d1aed43 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x6d256c17 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d591295 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x6d5949e3 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x6d5bcb1d sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x6d6c9c68 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x6d6f9cc2 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x6d9d49cf bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x6da3459b lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x6dab9d4f shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x6dac0acb hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6dc2bc34 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e61dfea pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x6e64b90f sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x6e6b3b98 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x6e768d0c param_ops_bool_enable_only +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 0x6ef5c98f extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x6f502e3c crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x6f5522f7 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x6f63f500 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6faac7b0 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x6faaed26 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x6fdc0221 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fea2197 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x6ff2c469 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffb993a security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x701e45ee hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x701f81d3 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x70201233 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x702088d5 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x7020980e fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x702fb3de gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x703c912f serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x70506092 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x70759cf6 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x707db262 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70a6cba5 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x70a6f3a0 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x70a71110 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x70af7d82 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x70b3b47e pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x70b98a65 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cd9b03 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70f04067 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x71083b6c xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71239626 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x713be919 acpi_dev_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x715ce9f0 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71749397 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x717e58fb ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71bcca4f usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x71c615dc spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x71dbf0f7 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71e3689d pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x71fb7f94 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x721d0f00 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x722d6dc8 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x723a71ec iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x723acf1b acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x7254284c inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x725b19a7 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7277d59f rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727eb6c0 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x7282ee18 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x72a8f9a2 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x72e96b91 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x72f788e3 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x7303a924 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x731dadc5 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x731f9760 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x734f0276 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x7357d95f power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x735b57f0 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x736d849c crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x737ef6ff da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x738fd248 intel_msic_reg_update +EXPORT_SYMBOL_GPL vmlinux 0x73a10fcd rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x73a34d4f device_property_read_u64_array +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 0x73d2cf1b sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x741427b2 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x74196f1d adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74418156 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x7445c8a0 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x7449f54c kick_process +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 0x746d8bfb ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x748b3fd5 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x748f6327 xen_remap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x74aaf62e class_create_file_ns +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 0x74bfb9ff spi_bus_type +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 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x74e501d1 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x74f135bd ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x74f42d4b unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x74f84f81 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x74fb845a blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x75003039 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x751b2603 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x751c5903 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x751db479 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7533c950 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x7535da61 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x7537f079 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x756a4a75 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x756df6de device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x756e475c rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x757bb7e5 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x75843d72 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x758a3cb7 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x75a284d2 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x75a4a6d4 intel_svm_unbind_mm +EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75de872c genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x75e892c0 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x75f5ec62 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x75fd0ff4 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x766ea354 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76a85ea7 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x76b59fb1 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x76b81659 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x76bacd87 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x76c33dd5 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x76ca7502 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e8dcd6 get_kernel_page +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 0x774cc345 xen_swiotlb_sync_single_for_device +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 0x7761d10d regmap_write_bits +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 0x77cabdcb raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x77ebdce8 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x780697bd sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x78180309 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x78211cdd led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78241c3e to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x7824dd2b inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x78433dda acpi_dma_simple_xlate +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 0x78623d50 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x786344b4 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x7865f594 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78b6bd8e scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x78c40955 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x78c96481 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x78cbc9d9 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x78e75131 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x78e84890 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x790a326b apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x790a3517 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x790bf007 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x791d77e5 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x7929454e __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x7936f429 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x7960c7e0 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x796a154f blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x798688a5 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x79935aaf pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x79a71c48 kernel_stack_pointer +EXPORT_SYMBOL_GPL vmlinux 0x79c2785a vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79effe3b sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x79f64344 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x7a19176b dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a587634 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x7a5bc514 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x7a6a71d3 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x7a745f42 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a96e204 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x7ab357df gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ab6ed4e xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7acf87a3 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x7adbeac9 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x7afdae91 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b108fd8 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x7b168ff7 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x7b1a2644 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x7b1bc599 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7b425437 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x7b9047cb pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b9a360f iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x7bc47a64 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x7be2b1eb spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x7bff4171 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7c0ec5e1 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x7c143768 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x7c3935e1 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x7c5168fb power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x7c5bacdb pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca17d9c xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x7ca5b378 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x7cadc823 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x7cbc97a5 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x7cd53147 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x7cd6303b ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cdfa019 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cfeb768 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d18f54d ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x7d27aa6e regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7d2aa6eb crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7d35e8a6 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x7d397f5e _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x7d40c933 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x7d49f424 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x7d5824bb __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d812149 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7db4140e __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x7db4968e arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddecb30 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7deadb00 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x7df9edd2 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x7e076b8a gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x7e2fe6ae usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x7e48e75e devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x7e5850a3 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e8b36e6 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e92b244 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x7ea27083 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7eb50943 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7eb8fe5a xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x7ebb2226 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x7ed13627 pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0x7ed96d9a xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7effadd7 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7f179932 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f272125 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x7f277df4 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x7f5847c7 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x7f6fbd7d devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fcce692 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x7fedba75 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x800432b2 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x800cd242 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x803078b1 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x803e7b9a list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x80736242 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809529fd alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x80babcc4 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80d837fb debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x80e177bc da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x80e39102 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f4aa74 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811d7adc smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x812a2138 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x814ad492 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x8151bdfb xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x816846b4 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x8198a0d9 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x819c46f4 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x81a02024 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x81c9a0d3 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x81d98321 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x81fca66d __put_net +EXPORT_SYMBOL_GPL vmlinux 0x8206546d bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x82077c4b clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x82241444 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x826a5265 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x82811785 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x82894d17 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x828d90fe usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x82978442 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x829a7290 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82daf9cc ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x82de51ea unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x82e6fd47 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x82eb3d96 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x8351a34c virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83a9aee3 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x83d741e4 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x8412bbb2 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x84356045 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8445c0f1 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x844b489a pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x8462bdcf btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x8475eeac vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x847963bc posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x8487db72 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x8490a748 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x84b38f7d sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84e839a9 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x84ea40ac xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x84f24a60 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x84f545a4 thermal_of_cooling_device_register +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 0x8522e0bb __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x853ee391 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x855fc07f cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x856707b9 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x85727576 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x85a51139 devm_pinctrl_put +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 0x85ebaadc tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x860da957 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x8610e9b6 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x862235ef invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x8638445f power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0x86597c3b wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x866bb7a9 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x867ed28d spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x8695324a fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x8697b9e0 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86ebecb5 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f62718 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f88dee watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x86f90c32 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x8709d6c4 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x870d42bc fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x87213b95 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x8723c0e5 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x87338d7d kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x874c6113 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x876fc88a xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x87c64583 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x87c724ef usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x87d0bc57 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x87d0e099 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x87ea29e3 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x87efebc2 od_register_powersave_bias_handler +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 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8871ccf1 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x887c273d bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88aee063 put_device +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88c19f71 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x88f36b5f usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x8902641c xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x890d099a pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x891d1b26 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89432a98 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0x896fa64f hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x8984f4d4 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x89a26e6a elv_register +EXPORT_SYMBOL_GPL vmlinux 0x89a94bfc devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x89b9210c usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89e35a5c ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8a162039 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8a311913 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x8a41a7ee acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x8a4a1781 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x8a4e2da8 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8a509b35 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a59c7bd regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8a726435 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8ab94d54 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac289ce debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x8ad79d68 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x8ae6cdea irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b0fdce7 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b37f5a4 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x8b77e4d4 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b8bfdb8 acpi_dev_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8bb3a0ac alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x8bc37923 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x8bc41382 fpu__restore +EXPORT_SYMBOL_GPL vmlinux 0x8bde85c1 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x8be8dcc6 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x8bf02163 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8bfa1da9 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c02d07c ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x8c26a666 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x8c2f93f0 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8cafd152 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x8cbca2a0 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x8cc63c31 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8ccf0deb __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x8cd2566f get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0x8cf5c288 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x8d165d46 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d392863 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d4f8647 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x8d50c198 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d72928b gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x8d796fb3 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x8db2d7ac elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8dc51935 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x8dd8c283 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x8de1f3fc debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e489dc5 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x8e531b3c preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x8e76ca2f blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8ea03e8c regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8ea9047b nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x8ea9b9d9 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8eab6f27 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x8eb6ba61 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x8ef8502d watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f52ee28 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x8f556431 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x8f6bbce0 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f746974 dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0x8fabc96d transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x8fb8dffd inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x8fbf9253 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8fd22293 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x8fe4b1ce trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x8fec9d9c scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x8ffbd14c irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x8ffe2bc1 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x9003c4e8 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x9003d96a register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x902582bf tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x9026b6a5 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x90337e3e device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0x90413d67 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x9084513c i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x90879ad0 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x908839e1 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x908ca9da pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x908d2b21 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90b15cd5 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x90b5307b ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90f29ed2 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x910175c4 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x910c4e40 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x911f2ef2 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x9125e461 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x912e93f7 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x91367b8e sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x914598cb debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x91654e58 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x91786436 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x917ffc4c phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91913ef9 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x91ac8be1 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x91bc4982 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x91bdea45 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91de4dcd cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x91e4ce2c regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x920250c4 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x92326758 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x923ea662 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x9274cfd3 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x92792a95 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x92a45670 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x92acc7e4 sysfs_create_bin_file +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 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x9313cfcc regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x93510e67 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x93b479fa __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x93cc5842 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x93eef687 isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x93fa495e efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x940408e5 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x9419753e perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x943db130 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x94468cc0 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949d2621 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94b7e488 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94ff8e0d rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x95331e82 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x9553cf27 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956c6926 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95a6c572 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x95ada31c mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x961dd337 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x9649df7a ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x964c34ad devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x965e86d1 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x9665919c iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x968065e5 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x968f2358 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x96984705 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x96c976ce usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x96e7b1bb __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x9702687f blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x97125bc7 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x9733cbd7 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0x9751be04 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9756364e do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x97773a5a xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x97a32d04 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x97b8f821 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97fec221 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x980dcba9 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98403f60 xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0x98489cdd inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9869f54a __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98b2b13e register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x98d856cb nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x98dcdc3d da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x98ece03d gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x98f20a27 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fb61c5 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x99140bc7 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x992313d0 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x9944980b tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x99535f1b sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x996105da gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x99766ae4 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x997fc154 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x99a19904 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99c9a709 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x99d55652 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x99fa4c43 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x9a10da89 __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x9a110f3f anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a170aab acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x9a2332e3 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x9a2ff11b blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x9a4ac578 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9a51019a da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x9a725eb3 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x9a8243d1 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x9a831b4a fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a91c5aa devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9aa20a6a dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x9aa5fe9b __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9aa950aa usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x9ab6f3a9 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9abfa2b1 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9adabfa2 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b23f0f6 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x9b4dca30 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x9b6e049e regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0x9b8db5e2 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write +EXPORT_SYMBOL_GPL vmlinux 0x9bdb3bce spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x9bdc1fa4 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x9be82b31 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x9c10b6d2 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9c39fcda acpi_dev_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9c4aa4d1 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x9c681431 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x9c8c2992 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x9cb1501c pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cfb41ce ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d101e96 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x9d311151 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d58fd9b swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x9d62c898 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9d6f5dc2 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x9d745458 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x9d7601bc devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9da0f73b devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9db7539e sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x9dce9b9a ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x9dea3ea1 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e153943 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x9e186257 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9e1a0feb spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x9e36d16d device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e688e96 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x9e696c94 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x9e73592d crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x9e818bc2 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x9e900f76 component_add +EXPORT_SYMBOL_GPL vmlinux 0x9ebff902 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x9ecd0d09 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9eed839e ref_module +EXPORT_SYMBOL_GPL vmlinux 0x9eef7432 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x9eef84f7 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x9f02b11d pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x9f0732aa __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x9f1bc7e0 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x9f25d170 component_del +EXPORT_SYMBOL_GPL vmlinux 0x9f3dc0d8 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x9f426de6 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x9f4c7eb3 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9f61805f pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x9f7e5442 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x9f99419b simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x9fa48009 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x9fc40d6f simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd6d693 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x9fd9a19c ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x9fda6d78 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa003b705 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xa00ea43b gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xa013e45d __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa02d46d0 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xa040783f usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xa067b4ba ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xa06c9ffa kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xa0702752 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xa087b038 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xa090042d dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xa0daf790 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa0ecb628 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xa0fb2afc crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xa0fe7178 clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xa1070274 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0xa120abb5 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xa12b8874 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa160ff0a input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xa1635f71 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa19adade crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xa1ba7a37 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa1c03f44 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xa1d52b91 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xa1dcd4a9 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xa1f31f70 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa200d594 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xa2060d31 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa21818a6 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa27a3654 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xa28fcdca aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xa297dcd3 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xa2a4c07c napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0xa2b5fd2d thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2b9d724 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2c2d999 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xa2c39782 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xa2d38b94 device_reset +EXPORT_SYMBOL_GPL vmlinux 0xa2deedc2 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xa301ed67 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa3582ae8 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xa3682aaf pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38e0ef0 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xa3a011db dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a7a7ea ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xa3b723c2 of_reset_control_get +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 0xa4075c4e __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xa42dd23c task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xa4353ed3 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xa4389c8b xhci_resume +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 0xa47e6445 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48f0ae7 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xa49a1aa9 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xa49ee59b of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xa4a3a22a pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xa4a85052 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa4ccc016 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xa4d6a92f blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xa4d797a7 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa4e7b03c register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xa4e7b886 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xa4ecab27 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa5278ea0 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xa5338cab sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xa5393127 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xa59dccaf driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa59f592f device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xa5bd7913 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xa5c5543c pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f0ac42 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xa6144b29 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa64a4acb tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa67710e6 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6bccecb regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xa6ceb1b5 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xa6d95d46 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6f81994 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xa7140e06 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa74076f7 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xa7500c83 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0xa752e112 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xa760a7b9 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa76233e2 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0xa766d782 acpi_dev_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xa78a53bb sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xa798b32a securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xa7bf4227 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xa7d0d45a efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0xa7d1f4a2 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xa7ec957f cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0xa7f5078f devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa7fff32e dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xa800e551 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0xa81787a1 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xa8331215 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xa84396cc arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8540d62 xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa86cf129 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8813973 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xa8816f2b ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xa88ded91 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa8936b95 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa89940f9 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xa899e3f6 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xa8a92212 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8c24fba __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xa8c368a3 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0xa90f15ed ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa9143342 find_iova +EXPORT_SYMBOL_GPL vmlinux 0xa92945db io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9463c4f rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa951eff7 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xa979a04e gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xa98214cb max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xa9994161 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xa9a0d364 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xa9b074da pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xa9b840e2 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xa9d0c556 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xa9deced4 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa15f525 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xaa1aba1c fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa529d1d dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xaa71fe71 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xaa7c3cd4 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xaa7c7714 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xaa8492e9 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xaa89dee8 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xaa915a00 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0xaa983fb0 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaabee3e1 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xaacb461c register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab0537ea pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xab1178b6 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab3a7530 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0xab422b11 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xab4ddd6b device_create +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab5b3af1 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab8778ef dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xaba5cd49 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xabb0a755 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xabb7265a gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xabc49092 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabdc3be0 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xabdcce0b ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xabf0c061 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xabfbc1e9 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0xac205bd9 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xac34b677 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xac5a170d usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0xac5c1d6b regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xac6ec1ac __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xac8a6933 __module_address +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xacd3d415 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xacde7300 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacf32771 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xacf715fb cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xacfad90c raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xad13d06c inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xad4713e0 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xad69e57d mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xad814bf7 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat +EXPORT_SYMBOL_GPL vmlinux 0xad94812b ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xada0f6f0 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xada2cb86 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xadab7e2e arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xadfdba51 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xae19c6d0 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xae2378d7 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xae554b87 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xaea01619 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xaecc961b get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xaed0b69d __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xaf08be7f exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xaf2e71e6 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xaf391c24 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xaf41e7d0 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xaf4cd6d3 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xaf7a93e6 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xaf9439db leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xafc6a89f tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xb0035629 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0xb018a168 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xb0271f2b wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xb029b189 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb0538dde skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07b97e4 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xb07f8e70 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xb0893e5b xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0xb09b9546 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb0cb611c xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0xb0cc92c5 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xb0d0d4d3 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0xb0d4ec38 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xb0d53ff4 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb0dcdd3a power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xb0df50d9 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xb102a2f8 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb135d03f blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb14294a4 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xb151d6c3 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b298c6 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1d15ed7 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f76edf dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb1ff1ac1 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xb2012197 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xb20363f0 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb24586ba __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xb246c36a scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xb2565781 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26ab5ad regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xb28b51ac digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xb296cffb l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2fd6dc6 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xb30e8963 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xb312e87f spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb33e4a2d ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xb36948c9 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xb38736ba __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xb38d619f component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xb3994be4 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0xb39d5fc9 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0xb3bc5fcd usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xb3f2ace8 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb417b96c raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xb420d587 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xb4425e47 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xb44e62e5 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xb4515750 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4cd39ed rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xb4d5b48f unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4e5d58f ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4f554d9 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xb4fdb64e acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xb5012e95 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xb50d7a28 usb_reset_endpoint +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 0xb563cfd1 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb59d6b4e extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5ab8d60 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xb5c9c421 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xb5da11eb console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb6225f0f pci_msi_set_desc +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb63b5ddd shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xb64e3d33 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xb65669db ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xb65cb7dc irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb66becbd __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xb66fda79 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xb6814f7a xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xb6ae31b0 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6badcc2 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xb6bc49a9 __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xb6c6b970 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xb6c76c0e led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb705c769 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb712cc69 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0xb720787a rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xb729c4e0 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xb72aeb28 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb75cdfa6 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xb777ae1a __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xb779957c nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xb77a0337 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xb7bfb2ac pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xb7cf1b34 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7e62b34 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xb7f08aeb kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xb7f37b39 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb8001b8b securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb8106384 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xb81df741 xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xb826e532 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb83c76c7 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xb857483a extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8af465e pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8e69700 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb90ca9ef yield_to +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xb92d328c l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xb92de953 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xb932e709 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xb97718ff regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xb996e20a devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb9afbdd4 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0xb9b88084 crypto_shash_setkey +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 0xb9d30f01 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xb9fb69eb cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xba08948f bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xba2aca9f pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba362647 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xba381b2a spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xba45326f pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xba48a2b9 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xba4b481f ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xba5516e9 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba919ec4 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba929501 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac393f1 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xbac5d1de unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xbad0188b input_ff_create +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 0xbb2eb37e pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xbb47d30c clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xbb4a53b6 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xbb58b814 iomap_free +EXPORT_SYMBOL_GPL vmlinux 0xbb59726b __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xbb6ae944 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbb6fc60e dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xbb76ba19 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xbb9878f7 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbcdfbab cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id +EXPORT_SYMBOL_GPL vmlinux 0xbc0c278c vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xbc0f347a __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xbc12f372 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xbc1bb01d page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xbc236f7d mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xbc451e4a rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xbc4a4912 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xbc5667c6 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbca0201a sfi_mrtc_array +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcaf3c30 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbcc6497c class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd1388f devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbd20abd5 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd4c04b3 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbd4ea32f fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd5ed922 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xbda34bdd fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd593b0 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0xbdfb69a3 md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0xbe0fffd7 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe664a76 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe9808e0 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb695d5 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0xbecadf1d pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xbede0293 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbef8057d xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf06172a spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xbf06f837 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xbf10959a list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xbf163603 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xbf1c2905 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xbf37018f power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xbf4a62f7 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xbf4bdddb perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0xbf4e1cae gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xbf5cb55f inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xbf80e612 ip6_sk_dst_lookup_flow +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 0xbfd82bca crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xbfe51fe1 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc00d24e2 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xc03687fa pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xc04bf670 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc04c5745 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xc0803d77 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc097c180 clk_fractional_divider_ops +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 0xc0e75cec visitor128 +EXPORT_SYMBOL_GPL vmlinux 0xc0e94d90 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc1132c63 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xc129e070 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xc12cc5ae input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xc12e0ada srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xc13e2657 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xc14649c8 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xc1475982 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc148e1c3 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xc1518c60 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xc157c901 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc173f0cb regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17e4f83 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc18c2b24 clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0xc1bd1249 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc1eff5ab xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc22a0c99 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22a65a4 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xc23995ed virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xc247cf2b devres_find +EXPORT_SYMBOL_GPL vmlinux 0xc25a206e of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc26e7fa8 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xc2726069 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xc275a470 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xc277bc93 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xc278e8a2 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2c8ab72 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc2cbd61e nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc2f47a00 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xc302fee2 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xc310d543 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xc316b473 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc316b5aa __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xc31b7044 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc352302c devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc35cc859 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc3833ddb fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc3898f68 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc3b896ae tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xc3bbbf63 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xc3beccfe crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3cb8a30 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xc3d1bbdc sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xc3f0beb6 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc4410f36 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45ba4bd extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0xc4621ed9 pm_runtime_get_if_in_use +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 0xc49b5ce0 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xc4cfa3b7 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc522bf9b gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xc527637a device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xc5387d66 devm_kstrdup +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 0xc5aa125c dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xc5ad0bd6 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xc5b33351 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xc5bb6462 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5f6608e device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc63163bc pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xc637cf34 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc63f741c tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xc64a7f31 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc66b5b2a cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66d7b19 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xc673e478 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xc677fcd4 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xc681f783 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69d115a pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6aa489d __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xc6c7d88a mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xc6dee77e acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xc6e4c861 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc703b363 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc71ad793 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc72afb98 dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xc72c7a29 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc73830b8 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc7410535 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xc7561f53 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xc785098d dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc78a9ddb usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7aa4e13 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xc7b74f00 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7d35825 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7f9c715 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc805b10e netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xc81b765d put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xc82b53ec crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xc8319f96 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xc839f35e nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xc83e0873 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xc84d3319 devm_usb_put_phy +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 0xc87f5fcc iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xc8a29883 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b88d2d usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xc8b99ea4 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xc8cd1f5d blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc9146abd bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xc92f3fd3 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc939ea4a ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xc94527db vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9705eeb has_newer_microcode +EXPORT_SYMBOL_GPL vmlinux 0xc97b2546 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc97e55ea da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xc97fa9d0 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc9ab96c8 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9d17aa3 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f5830b __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xca194d4d vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xca445d58 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xca4a7d2f tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xca5f73ca ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xca789080 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca7f710c devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac0d979 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xcae5f3f6 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xcaec9487 gpiod_get_raw_value_cansleep +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 0xcb5a0742 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xcb6a1d9a regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xcb8be4eb __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xcb9fd86f to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xcbbee1a5 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xcbc74a12 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xcbd48c3f hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xcbd80818 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xcbddd7ae cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xcbe42aa9 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe8c01b dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc0ae535 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xcc48288b usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xcc521bf8 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xcc683145 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc95f42f _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0xcca6bbad usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xccc367f5 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xcce9e391 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xccecfd6f usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xcced2548 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xccedf07d usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xccefa6d1 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xccf2144b usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xccfcb19c pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xcd1516df register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xcd50f6db debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xcd58e256 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update +EXPORT_SYMBOL_GPL vmlinux 0xcd727a00 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xcd7369c9 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xcd83a03e put_pid +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 0xcdb22394 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdbbe090 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde2abe7 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0xcdf09c15 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xcdf85b3a ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xce005a9f nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0xce1d1ec5 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xce1f5130 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xce4e2449 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce80d73b relay_close +EXPORT_SYMBOL_GPL vmlinux 0xce8b21d0 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xcec4e3d6 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xcec7b81a clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode +EXPORT_SYMBOL_GPL vmlinux 0xcf33d97a evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xcf432069 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0xcf51cbf6 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf64c651 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xcf6575ea __add_pages +EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcf9a16dc get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xcfa0805a cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xcfa53164 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfcf77b0 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xcfd514ec hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd068610c pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d6f943 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xd0e555f1 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd119e97a ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xd123d0db usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xd127b6f5 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0xd12e0789 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd13cd9d2 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0xd157fad9 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1735712 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xd17f39a8 acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xd1b308e6 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xd1b9123e irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd1bff1e7 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd1ed572b ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xd1f2caa0 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd20a465a wb_writeout_inc +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 0xd249a688 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xd26b2a42 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27dfc8c irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xd28285ef power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd28fef92 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0xd2922c08 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2bdbd3d wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e3cc1c md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xd2e88de5 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd2ef9106 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xd2fc8b94 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd30c1472 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xd30c97d6 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd31f90c3 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xd32a3ebf ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xd3732916 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd377fce0 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xd3b14335 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3b9ceef clk_register +EXPORT_SYMBOL_GPL vmlinux 0xd3be0c13 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xd3cb13f9 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xd3ffb952 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xd402470d gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4187fcd power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xd41db027 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd4205b1b desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xd434d472 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd454081b pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd45ea32f hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xd4677542 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xd46a7571 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd4716899 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xd4a2c60e ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xd4a50c96 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xd4bf9fe0 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d9d0c3 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xd4e0c765 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xd4fc8493 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd5030f07 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xd544e902 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd55fbd78 blk_mq_request_started +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 0xd5bfd837 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xd5ce05d9 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xd5ed145e dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xd60978c4 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd6186889 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xd636a7b2 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xd6414e17 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xd650d2a4 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xd6656262 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xd66eaaa0 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xd66f67fb bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6922a3d regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xd6a86fed ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd6ac5e73 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0xd6acbdd5 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xd6be2a29 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xd6dab6b9 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0xd6f0bd16 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xd6fddcbd regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd7236656 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd7452285 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xd749eaeb blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xd758c94e pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xd764d265 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd770d13a skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xd77a3246 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd793aae3 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xd798e6d6 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xd79f4077 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xd7ab2c0c speedstep_detect_processor +EXPORT_SYMBOL_GPL vmlinux 0xd7c679b7 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xd7d0ea7a add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7d9d1c2 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xd7db6067 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xd7f1f283 regulator_is_enabled +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 0xd85dc136 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xd87201f7 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87c7d1f proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd880cb4d dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xd88f81e3 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xd8b9e6cc usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xd8c39d44 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0xd8c76c4b pv_info +EXPORT_SYMBOL_GPL vmlinux 0xd8e06b96 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd90c2259 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xd918341e pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd91d05ff extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0xd923afae list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xd929d7dd tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xd92a7506 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xd9425852 bdev_read_page +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 0xd9507379 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xd9663648 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd971bf22 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xd979393a regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin +EXPORT_SYMBOL_GPL vmlinux 0xd9876c11 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xd98c80bc irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd98ea529 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xd9d7524d event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xd9e88d94 gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda221326 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xda3f6d9b regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xda4a8ecc register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xda51339d acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xda557b0c usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xda7f9ce9 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdab261d1 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xdab8f04f device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xdac9ab72 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xdacd9c94 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xdaeb4d52 sata_pmp_error_handler +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 0xdb1eceed dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0xdb3d7a10 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb490453 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb675c62 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdb6ea52c xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xdb817ff5 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb9f8db9 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xdbb60f3d thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xdbbf9d9f bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xdbc8d204 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbd7c7dc pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc07cfc6 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc2585b4 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xdc34e66d subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xdc375781 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc7934b0 efivars_register +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 0xdca83b6c devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdccea68c wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xdcf4ecd9 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xdcfa4870 handle_simple_irq +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 0xdd3b2f28 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0xdd71c531 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0xdd843004 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdd9541ee pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xdd95cd91 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xddae093a input_class +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddbfe46e regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xde0421f3 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xde096519 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xde308829 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0xde3aa8c2 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde726e1c sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xde747356 intel_msic_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xde85397c clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xde9091ed lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xdea1d175 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xdea20742 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xdee09838 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xdf090fca crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf3449ba is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xdf5c0cef ata_scsi_unlock_native_capacity +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 0xdfb7a27b simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xdfc6666d pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xdfce9b04 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xdfd89576 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xdff47f9e device_add +EXPORT_SYMBOL_GPL vmlinux 0xdffab234 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe0153c92 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xe0285210 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0367093 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xe039ef3a nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe04d59b6 fpu__activate_curr +EXPORT_SYMBOL_GPL vmlinux 0xe05e2ea7 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xe06f6ace sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0964dd9 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xe09f9fb5 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c11deb dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xe0c20836 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xe0c31e8b register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0d07a86 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xe0d323bd pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe0f5b525 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xe1093f39 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0xe1225f4b locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xe13d0782 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xe14feff3 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xe173bcfa screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe188c661 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xe1987778 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xe1b9279c rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c59030 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xe1daa532 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xe1ddcf76 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xe1e5583f ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xe1f03ad5 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xe1f5ec8f sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xe2053245 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xe205742d blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xe20f5dd4 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xe21548b0 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xe258142a __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xe2655336 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xe27cbfb2 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xe2824787 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe2926667 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xe29349dc copy_reserved_iova +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2a1e78c sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xe2aae3a7 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xe2c76039 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe2d542cc pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xe2de5c6e crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe31b01b2 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe3262b77 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe3318577 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xe339edf2 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xe33fcc07 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xe35dd260 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xe3781628 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xe38868b8 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe3907fe9 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe396bade ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe3a09570 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3bda663 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe3c34cd0 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xe3db64a6 device_register +EXPORT_SYMBOL_GPL vmlinux 0xe3fd89ba dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xe403b58a usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe40494bc sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe4055eab ehci_hub_control +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 0xe449d188 devm_kasprintf +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 0xe4a816d6 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xe4ad3bb8 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe4c331b6 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4e63457 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0xe4e7b945 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xe4eb2a05 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xe4fe9eaa regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xe4ffa1ac percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe51134bd rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xe5174517 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xe544b0eb clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0xe565623f pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xe56b58b5 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe59ef565 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xe5b02908 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0xe5d00dc9 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xe5d1f1cb tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xe5d39b69 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xe5f133f9 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xe603eaa6 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xe626807a xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe64cfed6 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe6608df3 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xe6618244 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xe6635854 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xe663b1dd devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xe6769afc anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xe67bbec9 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xe67c6e95 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xe6a005e0 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xe6be147c ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xe6c46a08 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6cbe3ae mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xe6d9e9f9 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xe6dfc824 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6eb1c53 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe7004d7e acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe748dc80 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe74d79a6 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xe7561638 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xe75ef1ee get_device_system_crosststamp +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 0xe78faed1 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0xe7caad8a rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xe7f7fc30 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe8012ad4 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0xe8081a60 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xe808bfb9 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe82a9fad debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85bc246 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe898832f policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xe8a00fab fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe8ae9fe8 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xe8c34613 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xe8dbc6c6 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe8ec659f trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xe9022225 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xe913d258 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xe91b23c1 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe92baa38 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xe9320ada tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe96171e8 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xe96cb6af device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xe97a8908 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xe981c9db cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xe9898358 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xe98a780b ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xe9be95bb power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe9c013be intel_svm_bind_mm +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9ebd779 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea307e3a blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xea3cab9c fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea6fd2f1 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xea8c5aa3 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea99b795 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xea9bf694 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xeab8086b devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xead47ccb xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xeade7c01 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeae19a8e __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xeae1e4f5 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xeae3a520 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb003b16 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xeb245dd3 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xeb314959 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xeb338a3e blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xeb505a2b tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xeb802aeb con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xeb82b61d crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb863c00 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xeb937743 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeba2b091 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xebac5aa5 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebb721c1 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0xebb96ae0 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xebbf1b92 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xebc54811 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xebdb4dfe regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec1a6f35 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec28e776 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xec40683d tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xec573f19 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xec58f164 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec652ba9 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xec7d3cc2 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xecc1e0f8 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xeccb0fe3 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xecdab819 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xecf00ffb tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xed258ba7 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xed28f2cf pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xed5d9029 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xed617458 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xed61ca9f sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xed73b9e8 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xed77f89a __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xed946343 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xedb2c74d devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedc733a6 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xedea6f15 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xee1dc347 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xee689152 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xee697ac9 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xee6aac0f fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee794cc9 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xee8db3a4 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xee9541f4 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeec44718 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xeeca531f rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xeedfec7f ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef3ed3d2 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef60e9ae blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d5efa ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xef703b55 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef920c93 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xef98777a fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefe6edba ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xeffb8c35 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf010164e class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xf025b5b2 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xf02dafb6 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xf0383ee6 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf05179aa rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xf054ac97 intel_msic_irq_read +EXPORT_SYMBOL_GPL vmlinux 0xf05641fb regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xf0599fba pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf09be63f regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xf0c8fa2b rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf0e2b784 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf1114b82 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf116d13f crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xf11e1288 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xf11e35cd user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf11ff71e crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xf16de118 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xf173221f ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xf17436a7 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xf17a24ea serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf18be9f8 xenbus_alloc_evtchn +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 0xf1befbf0 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xf1c5e45f bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0xf1e026ec ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xf1f06d08 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xf2196393 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf248a985 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xf26910dd tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf2733243 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf283edb4 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xf28662b6 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xf29546d9 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xf2964b80 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xf29ada59 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xf2a37426 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2e1cfc4 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30a5a1c pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xf30b7a2e usb_alloc_urb +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 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 0xf3bbb8e0 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3c87590 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xf3cab403 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xf3d7b961 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xf3dd3ec1 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3ebf4eb arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xf3f06bfe regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf413c354 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xf485a3af usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xf490499d blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4bac18e pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xf4ede346 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf50c4002 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf54403f7 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf55364ce blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf594b5fe bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xf594f225 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf6007aee regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf615386f percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf624404d posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf62bf98d rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xf65b06fa da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf6809f23 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xf6ab50fb device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c84ce6 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e1be83 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6fb5a84 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0xf6fca361 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf71183ac dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xf713ba05 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xf71f4b67 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xf724b9e8 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xf736737f __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xf74ebd26 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xf76401b6 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xf777c70d posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xf784e0ef efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7c46915 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xf7d992c7 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf7daadc3 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf7e2a0a3 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xf7f101c3 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xf8024e80 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xf80ce98a fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf82d8edc virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8348a06 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xf84b785b netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8522808 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf868d408 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf8898c68 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf894ba00 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xf89e5e42 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf8a37047 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xf8cddb36 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xf8d93c30 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xf8e38ba9 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe2f8d acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf90616af device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xf9167260 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xf92678e6 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf94a5c94 split_page +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf95916c6 cpu_tlbstate +EXPORT_SYMBOL_GPL vmlinux 0xf967bfe1 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xf97511d7 get_device +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf992a945 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d6db18 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0xf9effc61 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xfa085bd3 __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0xfa0a0972 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xfa188d7c device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa215ccd usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa55a8df rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xfa5832fd pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfa5e71d2 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xfa83e60a class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xfa9aea82 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xfaa241a1 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xfab32361 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xfabe4b79 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xfac99c99 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xfadf292d flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xfae22581 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xfae86e9b device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xfb0763a1 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb3e3fe0 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xfb42e3d5 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb837011 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xfb83db03 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfb90f85d crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xfb9ead6f gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbcb6582 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfbe73193 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xfbe742bd crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xfbf0ac5d dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc0f2289 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0xfc104626 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xfc2382bb platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc71c4c1 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xfc740410 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xfc824fc1 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xfc8d593e blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfc9c40f8 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xfccca542 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xfccf1aba msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xfce0d8dc devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xfd0c86f1 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0xfd161e91 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xfd3d23ee ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xfd42ff4c dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd6086c5 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfda9a1e3 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xfe17d7f6 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xfe206ac9 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfe6a1497 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xfe712339 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe791183 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xfe7ea15e xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xfe9278a7 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfea17d81 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfeab5bd7 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfedac3f1 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfee7a0e6 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0xfef5d5a9 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0f4375 xen_swiotlb_sync_single_for_cpu +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 0xff95f207 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xff9d7cb2 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xffb55c28 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffc54e4d ip_build_and_send_pkt only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/i386/lowlatency.compiler +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/i386/lowlatency.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/i386/lowlatency.modules +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/i386/lowlatency.modules @@ -0,0 +1,4756 @@ +3c509 +3c515 +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +53c700 +6lowpan +6pack +8021q +8139cp +8139too +8250_accent +8250_boca +8250_dw +8250_exar_st16c554 +8250_fintek +8250_fourport +8250_hub6 +8250_mid +8255 +8255_pci +8390 +8390p +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +BusLogic +DAC960 +NCR53c406a +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +abituguru +abituguru3 +ablk_helper +ac97_bus +acard-ahci +acecad +acenic +acer-wmi +acerhdf +acpi-als +acpi_extlog +acpi_ipmi +acpi_pad +acpi_power_meter +acpi_thermal_rel +acpiphp_ibm +acquirewdt +act2000 +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7180 +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +advantechwdt +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-i586 +aesni-intel +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +aha152x +aha152x_cs +aha1542 +aha1740 +ahci +ahci_platform +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-agp +ali-ircc +alienware-wmi +alim1535_wdt +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am53c974 +ambassador +amc6821 +amd +amd-rng +amd5536udc +amd64_edac_mod +amd76x_edac +amd76xrom +amd8111e +amd_freq_sensitivity +amdgpu +amilo-rfkill +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apanel +apds9300 +apds9802als +apds990x +apds9960 +apm +apple-gmux +apple_bl +appledisplay +applesmc +appletalk +appletouch +applicom +aquantia +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_ps2 +arc_uart +arcfb +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3935 +as5011 +asb100 +asc7621 +ascot2e +asix +ast +asus-laptop +asus-nb-wmi +asus-wmi +asus_atk0110 +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati-agp +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas_btns +atm +atmel +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1isa +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcma-hcd +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_aout +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpck6 +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c101 +c2port-duramar2150 +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +ccp +ccp-crypto +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfag12864b +cfag12864bfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipreg +chnl_net +chromeos_laptop +chromeos_pstore +ci_hdrc +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +ck804xrom +classmate-laptop +clip +clk-cdce706 +clk-palmas +clk-pwm +clk-s2mps11 +clk-si5351 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +com20020 +com20020-isa +com20020-pci +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_pcmcia +comedi_test +comedi_usb +comm +compal-laptop +configfs +contec_pci_dio +cops +cordic +core +coretemp +cosa +cp210x +cpcihp_generic +cpcihp_zt5550 +cpia2 +cpqphp +cpsw_ale +cpu-notifier-error-inject +cpu5wdt +cpuid +cr_bllcd +cramfs +crc-ccitt +crc-itu-t +crc32 +crc32-pclmul +crc7 +crc8 +cros_ec +cros_ec_devs +cros_ec_i2c +cros_ec_keyb +cros_ec_lpc +cros_ec_spi +crvml +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +cs5535-mfd +cs553x_nand +cs89x0 +csiostor +ct82c710 +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_cs +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +dcdbas +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +dell-laptop +dell-led +dell-rbtn +dell-smm-hwmon +dell-smo8800 +dell-wmi +dell-wmi-aio +dell_rbu +denali +denali_dt +denali_pci +des_generic +designware_i2s +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9601 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +donauboe +dp83848 +dp83867 +dpt_i2o +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtc +dtl1_cs +dtlk +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc3 +dwc3-pci +dwmac-generic +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +e752x_edac +e7xxx_edac +earth-pt1 +earth-pt3 +eata +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +ec_bhf +ec_sys +echainiv +echo +edac_core +edac_mce_amd +edt-ft5x06 +eeepc-laptop +eeepc-wmi +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efficeon-agp +efi-pstore +efi_test +efs +ehset +einj +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +ene_ir +eni +enic +epat +epia +epic100 +eql +esas2r +esb2rom +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +eurotechwdt +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81232 +fakelb +fam15h_power +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +fintek-cir +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fjes +fl512 +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +fnic +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fschmd +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +fujitsu-laptop +fujitsu-tablet +fujitsu_ts +g450_pll +g760a +g762 +g_NCR5380 +g_NCR5380_mmio +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcm +gdmtty +gdmulte +gdmwm +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +geode-aes +geode-rng +gf128mul +gf2k +gfs2 +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +glue_helper +gluebi +gma500_gfx +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-104-idio-16 +gpio-addr-flash +gpio-adp5520 +gpio-adp5588 +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-cs5535 +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-f7188x +gpio-fan +gpio-generic +gpio-ich +gpio-ir-recv +gpio-it87 +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-pch +gpio-rdc321x +gpio-regulator +gpio-sch +gpio-sch311x +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gr_udc +grace +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gx-suspmod +gx1fb +gxfb +gxt4500 +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdaps +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hecubafb +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hgafb +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-hyperv +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hio +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hostess_sv11 +hp-wireless +hp-wmi +hp100 +hp_accel +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +hsu_dma +hsu_dma_pci +htc-pasic3 +htcpen +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hv_balloon +hv_netvsc +hv_storvsc +hv_utils +hv_vmbus +hwa-hc +hwa-rc +hwmon-vid +hx8357 +hyperv-keyboard +hyperv_fb +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd756-s4882 +i2c-amd8111 +i2c-cbus-gpio +i2c-cros-ec-tunnel +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-eg20t +i2c-emev2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-ismt +i2c-kempld +i2c-matroxfb +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-nforce2 +i2c-nforce2-s4985 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-isa +i2c-pca-platform +i2c-piix4 +i2c-robotfuzz-osif +i2c-scmi +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i3000_edac +i3200_edac +i40e +i40evf +i5000_edac +i5100_edac +i5400_edac +i5500_temp +i5k_amb +i6300esb +i7300_edac +i740fb +i7core_edac +i810fb +i82092 +i82365 +i82860_edac +i82875p_edac +i82975x_edac +i915 +i915_bpo +iTCO_vendor_support +iTCO_wdt +ib700wdt +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibm_rtl +ibmaem +ibmasm +ibmasr +ibmpex +ibmphp +ichxrom +icn +icp_multi +icplus +ics932s401 +ideapad-laptop +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idtcps +ie31200_edac +ie6xx_wdt +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +ims-pcu +imx074 +in2000 +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int3400_thermal +int3402_thermal +int3403_thermal +int340x_thermal_zone +int51x1 +intel-hid +intel-lpss +intel-lpss-acpi +intel-lpss-pci +intel-mid-touch +intel-mid_wdt +intel-rng +intel-rst +intel-smartconnect +intel-vbtn +intel_ips +intel_menlow +intel_mid_battery +intel_mid_powerbtn +intel_mid_thermal +intel_oaktrail +intel_pch_thermal +intel_pmc_ipc +intel_powerclamp +intel_punit_ipc +intel_qat +intel_quark_i2c_gpio +intel_rapl +intel_scu_ipcutil +intel_soc_dts_iosf +intel_soc_dts_thermal +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +intelfb +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +iris +irlan +irnet +irqbypass +irtty-sir +isci +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it8712f_wdt +it87_wdt +it913x +itd1000 +ite-cir +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +k10temp +k8temp +kafs +kalmia +kaweth +kb3886_bl +kbic +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks0127 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvaser_usb +kvm +kvm-amd +kvm-intel +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l440gx +l4f00242t03 +l64781 +lan78xx +lanai +lance +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bd2802 +leds-blinkm +leds-clevo-mail +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-net48xx +leds-ot200 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-ss4200 +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +leds-wrap +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +logibm +longhaul +longrun +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltpc +ltr501 +ltv350qv +lv5207lp +lvstest +lxfb +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac_hid +macb +machzwd +macmodes +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77693 +max77693-haptic +max77693_charger +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mce-inject +mce_amd_inj +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdacon +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mei-me +mei-txe +mei_phy +memory-notifier-error-inject +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +meye +mf6x4 +mga +michael_mic +micrel +microchip +microread +microread_i2c +microread_mei +microtek +mii +minix +mip6 +mite +mixcomwd +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi-laptop +msi-wmi +msi001 +msi2500 +msp3400 +mspro_block +msr +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwave +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxm-wmi +mxser +mxuport +myri10ge +n2 +n411 +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +nettel +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfit +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni65 +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_common +ni_labpc_cs +ni_labpc_isadma +ni_labpc_pci +ni_mio_cs +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicstar +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +nosy +notifier-error-inject +nouveau +nozomi +ns558 +ns83820 +nsc-ircc +nsc_gpio +nsp32 +nsp_cs +ntb +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nuvoton-cir +nv_tco +nvidiafb +nvme +nvmem_core +nvram +nxp-nci +nxp-nci_i2c +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +old_belkin-sir +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p4-clockmod +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +padlock-aes +padlock-sha +palmas-pwrbutton +palmas-regulator +panasonic-laptop +pandora_bl +panel +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pas16 +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cs5520 +pata_cs5530 +pata_cs5535 +pata_cs5536 +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_isapnp +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sc1200 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc110pad +pc300too +pc87360 +pc8736x_gpio +pc87413_wdt +pc87427 +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcbit +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_can +pch_dma +pch_gbe +pch_phub +pch_uart +pch_udc +pci +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmcia +pcmcia_core +pcmcia_rsrc +pcmciamtd +pcmda12 +pcmmio +pcmuio +pcnet32 +pcnet_cs +pcrypt +pcspkr +pcwd +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +pinctrl-broxton +pinctrl-intel +pinctrl-sunrisepoint +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn544 +pn544_i2c +pn544_mei +pn_pep +poly1305_generic +port100 +powermate +powernow-k6 +powernow-k7 +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +processor_thermal_device +ps2mult +psmouse +psnap +pt +pti +ptp +ptp_pch +pulsedlight-lidar-lite-v2 +punit_atom_debug +pvpanic +pvrusb2 +pwc +pwm-beeper +pwm-lp3943 +pwm-lpss +pwm-lpss-pci +pwm-lpss-platform +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qat_dh895xcc +qat_dh895xccvf +qcaux +qcom-spmi-iadc +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r82600_edac +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-aimslab +radio-aztech +radio-bcm2048 +radio-cadet +radio-gemtek +radio-i2c-si470x +radio-isa +radio-keene +radio-ma901 +radio-maxiradio +radio-miropcm20 +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-rtrack2 +radio-sf16fmi +radio-sf16fmr2 +radio-shark +radio-si476x +radio-tea5764 +radio-terratec +radio-timb +radio-trust +radio-typhoon +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +radio-zoltrix +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rionet +rivafb +rj54n1cb0c +rmd128 +rmd160 +rmd256 +rmd320 +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-bq32k +rtc-bq4802 +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-hid-sensor-time +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-mrst +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20-i586 +salsa20_generic +samsung-keypad +samsung-laptop +samsung-q10 +samsung-sxgbe +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sb1000 +sbc60xxwdt +sbc7240_wdt +sbc8360 +sbc_epx_c3 +sbc_fitpc2_wdt +sbc_gxx +sbni +sbp_target +sbs +sbs-battery +sbshc +sc +sc1200wdt +sc16is7xx +sc92031 +sca3000 +scb2_flash +scc +sch311x_wdt +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_probe +scx200 +scx200_acb +scx200_docflash +scx200_gpio +scx200_hrt +scx200_wdt +sdhci +sdhci-acpi +sdhci-pci +sdhci-pltfm +sdio_uart +sdla +sdricoh_cs +sealevel +sedlbauer_cs +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent-sse2-i586 +serpent_generic +serport +ses +sfc +sfi-cpufreq +sh_veu +shark2 +shpchp +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sim710 +sir-dev +sis +sis-agp +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slicoss +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc-ultra +smc9194 +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1816a +snd-ad1848 +snd-ad1889 +snd-adlib +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als100 +snd-als300 +snd-als4000 +snd-asihpi +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt1605 +snd-azt2316 +snd-azt2320 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmi8328 +snd-cmi8330 +snd-cmipci +snd-compress +snd-cs4231 +snd-cs4236 +snd-cs4281 +snd-cs46xx +snd-cs5530 +snd-cs5535audio +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emu8000-synth +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1688 +snd-es1688-lib +snd-es18xx +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-gus-lib +snd-gusclassic +snd-gusextreme +snd-gusmax +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-ext-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel-sst-acpi +snd-intel-sst-core +snd-intel-sst-pci +snd-intel8x0 +snd-intel8x0m +snd-interwave +snd-interwave-stb +snd-isight +snd-jazz16 +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-miro +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-msnd-classic +snd-msnd-lib +snd-msnd-pinnacle +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-opl3sa2 +snd-opl4-lib +snd-opl4-synth +snd-opti92x-ad1848 +snd-opti92x-cs4231 +snd-opti93x +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcm-oss +snd-pcsp +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb-common +snd-sb16 +snd-sb16-csp +snd-sb16-dsp +snd-sb8 +snd-sb8-dsp +snd-sbawe +snd-sc6000 +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-sis7019 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-dmic +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-max98090 +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rl6231 +snd-soc-rl6347a +snd-soc-rt286 +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5660 +snd-soc-rt5670 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-skl +snd-soc-skl-ipc +snd-soc-skl_rt286 +snd-soc-sn95031 +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sst-acpi +snd-soc-sst-baytrail-pcm +snd-soc-sst-broadwell +snd-soc-sst-byt-max98090-mach +snd-soc-sst-byt-rt5640-mach +snd-soc-sst-bytcr-rt5640 +snd-soc-sst-bytcr-rt5660 +snd-soc-sst-cht-bsw-max98090_ti +snd-soc-sst-cht-bsw-rt5645 +snd-soc-sst-cht-bsw-rt5672 +snd-soc-sst-dsp +snd-soc-sst-haswell +snd-soc-sst-haswell-pcm +snd-soc-sst-ipc +snd-soc-sst-mfld-platform +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-sscape +snd-tea6330t +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-us122l +snd-usb-usx2y +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-vxpocket +snd-wavefront +snd-wss-lib +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +sony-laptop +sonypi +soundcore +sp2 +sp5100_tco +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntpc +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_decpc +speakup_dectlk +speakup_dtlk +speakup_dummy +speakup_keypc +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-nor +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-topcliff-pch +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +ssv_dnp +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stmmac +stmmac-platform +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surfacepro3_button +svgalib +sworks-agp +sx8 +sx8654 +sx9500 +sym53c416 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t128 +t1isa +t1pci +t5403 +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc1100-wmi +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcic +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-hexdump +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +thinkpad_acpi +thmc50 +thunderbolt +ti-adc081c +ti-adc128s052 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timb_dma +timberdale +timblogiw +timbuart +timeriomem-rng +tipc +tlan +tlclk +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmem +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +topstar-laptop +torture +toshiba-wmi +toshiba_acpi +toshiba_bluetooth +toshiba_haps +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_atmel +tpm_crb +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_nsc +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tscan1 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish-i586 +twofish_common +twofish_generic +typhoon +u132-hcd +u14-34f +uPD98402 +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +ultrastor +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +usnic_verbs +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vboxguest +vboxsf +vboxvideo +vcan +vcnl4000 +ven_rsi_91x +ven_rsi_sdio +ven_rsi_usb +ves1820 +ves1x93 +veth +vfio +vfio-pci +vfio_iommu_type1 +vfio_virqfd +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-camera +via-cputemp +via-ircc +via-rhine +via-rng +via-sdmmc +via-velocity +via686a +via_wdt +viafb +video +videobuf-core +videobuf-dma-contig +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocodec +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_ca91cx42 +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmlfb +vmw_balloon +vmw_pvscsi +vmw_vmci +vmw_vsock_vmci_transport +vmwgfx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vsock +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83627ehf +w83627hf +w83627hf_wdt +w83781d +w83791d +w83792d +w83793 +w83795 +w83877f_wdt +w83977af_ir +w83977f_wdt +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +wafer5823wdt +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd +wd7000 +wd719x +wdt +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +winbond-cir +wire +wishbone-serial +wistron_btns +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wl3501_cs +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wmi +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x38_edac +x86_pkg_temp_thermal +x_tables +xc4000 +xc5000 +xcbc +xen-blkback +xen-evtchn +xen-fbfront +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-pciback +xen-pcifront +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xillybus_core +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +z85230 +zatm +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zynq-fpga only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/powerpc/powerpc-e500mc +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/powerpc/powerpc-e500mc @@ -0,0 +1,17302 @@ +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 0x70a1cb63 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0xf549491a uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x447372d6 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xea79a490 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 0x0799b423 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x0f6bd7b2 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x3f0a9140 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x7128b35d pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x9737de4d pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x9c3d0826 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xa0f98ce9 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xa28cc4c5 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xb0b40054 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xcd537d18 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xcee43b2b pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xec475d8f pi_disconnect +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x778eb2e9 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0f5af63c 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 0x22714856 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 0x6ac28a57 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6bf4a0da ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa248e173 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/tpm/st33zp24/tpm_st33zp24 0x2d946183 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x522a7e2c st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa8fea572 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd2e7a62f st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x04ec8b08 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xa9f22c77 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xcbd7647f xillybus_init_endpoint +EXPORT_SYMBOL drivers/crypto/caam/caam 0x1c758e97 caam_get_era +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x0f9dfeb7 caam_jr_strstatus +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x23ebf773 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x2c90f165 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x550b4e19 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x68318785 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xec502510 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/talitos 0xf702e226 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 0x38dbff32 edac_mc_find +EXPORT_SYMBOL drivers/edac/mpc85xx_edac 0x4666e214 mpc85xx_pci_err_probe +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0269c11a fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0c86e8e3 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x24b42bf9 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x291e579e fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x34a0ef7f fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x35749c1d fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c2efd36 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x50813db5 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x509660fc fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x541271b5 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5484953c fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x60bbb4bd fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x772e509b fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7ed3949c fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x81828db7 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8d8d7876 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9e621290 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9f365171 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb4873fc4 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb65f85f8 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb7032f2c fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbd8e0d96 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbf50e417 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xddf98668 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xef170349 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf681cb56 fw_schedule_bus_reset +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 0x004f81f4 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01fb23ef drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02261c39 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x025d1694 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0388b1d0 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03bd80d8 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x044b2983 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x044efa95 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0509702a drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x063b0ef6 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06813697 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ab60b91 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b5b353e drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0da36ed8 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e88ea47 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f54cb84 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1091c9ae drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x114b8b41 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12a0fb7d drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12ab634e drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12ba4bfa drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c00756 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x147593a5 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1477542e drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1561d320 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1671be79 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x167f6562 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17090688 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x174fbc91 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e8c81b drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18532c25 drm_gem_put_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 0x1a769b80 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ae40dac drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c16b958 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c5bd545 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d1cc79f drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ed52ec8 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1eeb686a drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f2bb003 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21abe164 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x224350a5 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x225d0826 drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22d28519 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23d36302 drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2413c547 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25a46087 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2641d994 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26bc289a drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27243365 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27f71be3 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29eb22e0 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a92e466 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2beb3700 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d2d49b9 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2db8e1fe drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e78e15d drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ef15192 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31784bd9 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31969e8d drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31ed8d7b drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x320222dd drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x337bbf02 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35bdfabf drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36a81de9 drm_gem_create_mmap_offset_size +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 0x390cdc5a drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3abd6aa1 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b462019 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d8283c8 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d92eae8 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fbea8d8 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ffa3049 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x401053c6 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x402187d6 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x404fc47a drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40710cd2 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x408fdbec drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43ff61ed drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x446b90ab drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45574e5f drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45ca5d95 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x470449ee drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48a5fc07 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49c93205 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4af723ff drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bd1726b drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c283346 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cc3b424 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e07415e drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f1055d0 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f4c44e2 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fae5a1d drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50bfc5f4 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51125091 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521743d2 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5300226c drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53435a37 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5390caa0 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55cf3db6 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56291f59 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56d6a853 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x570e0c9e drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5914165a drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bac377f drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7701dd drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dc0fc35 drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5edbd6cd drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f1db047 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f76fbbb drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6496bf2b drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65e3c76b drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6770bf1b drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x680a5a73 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b791a86 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b858165 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c35a1dd drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6de22c29 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e11fa2c drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ee75214 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f5520d9 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f55b7e5 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71ed6941 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7259edc7 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x731691e6 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x731c4488 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73847f7d drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x746371e9 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x748b2afd drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x769bae3d of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x772921c4 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77c00d8c drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x789c419d drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a1994ab drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a1d6f30 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a5776fd drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bb8fb5b drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d21d6bd drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d4c54e7 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e732a24 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eac88b9 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f397575 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f964125 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ffcdaf9 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8143d90c drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81ecd575 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8286c0e8 drm_crtc_vblank_off +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 0x864a3808 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86b0c856 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8713ec6f drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x876c0be4 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87ab467b drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87d3843b drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87d4439f drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x891a5296 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aa7a93d drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e31387b drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e9f195a drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8efb6a84 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x905337b6 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90ecdff9 drm_mode_validate_size +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 0x93994379 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95a3d7c5 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96baa5e1 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99874b60 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99ba4f0a drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ad3870e drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b299009 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c235c5e drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c810ad7 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d95d5b5 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e0c7da3 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f652148 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0feaac7 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa18e7b10 drm_legacy_ioremap_wc +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 0xa2b856b5 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2f779cb drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa335d2d8 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3d5cdab drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4357d4f drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa45b0c28 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa589a614 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa592cfd4 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5b3d8fd drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7581f09 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8a88014 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa9bc328 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae6bc188 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaeacaade drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaec9c1ba drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafacc706 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafb26bde drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafcc3124 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafd2b0d1 drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb12cc618 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb18f62de drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1d222c6 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1d771b0 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb269ec96 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2b06b42 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb32631fd drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3b7ed30 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4ee73a3 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb57ee33f drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb58a37b4 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6918163 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba7297f3 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc65c676 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe291c8f drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbebbc7b9 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf89d717 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc003a367 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc13555f9 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc14a8dfd drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc293565f drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc29c625e drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2cfd7fc drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3094e43 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc31888c9 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5afc104 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 0xca691d3d drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcae44c94 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb4602ae of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbc7dfd3 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbce4921 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcccda177 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb713bb drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcde4aabb drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf160546 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf7db97e drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd050f895 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1c2c5a4 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd250f1df drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2ddb387 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2e9a689 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3251676 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5559202 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6126823 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6b00f26 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9fd71c7 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdab2cfba drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb293ad2 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb7aaf63 drm_i2c_encoder_restore +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 0xde59fa18 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdeaf0e07 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe19f0b8f drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1f1a5df drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe302952f drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe37d2903 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3f4c2ea drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4587211 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe465ff0b drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4c3ddd3 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe54b6c48 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe60e02d7 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe68d8e00 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6c8f6d4 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7410755 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8072da7 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb87c5ef drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb95bfef drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebafdd35 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec30ccf4 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec4c3a01 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedbdfa45 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedc75068 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee9f5cb3 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef5fc183 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefe167c3 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeffc0fbd drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3e4bb77 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf40c124f drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5f8d334 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8496781 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa20c20a drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbc0eda1 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc6a8bad drm_mode_set_config_internal +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 0xfde9c017 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdf5d460 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe4c49ab drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe92cba0 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff772172 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x035b88bf drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x054d124b drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x060ea60a drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x091fe26e drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x097cd373 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a00eab1 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ad8b567 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0caed070 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f38b100 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10ed8663 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1226cfbc drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12daff0c drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12e1531a drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15fcaf03 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16250625 drm_helper_hpd_irq_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 0x16a797eb drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18da2028 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18f480ed drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x199b7a1b drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ad07bf6 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ae2773e drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1da4144f drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f567ca4 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22020a30 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x221fe0c9 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23cbea51 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24fa7d64 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25a86730 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x284c98e9 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bcb5cc9 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cf6110e drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3140d61c drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x330c0c1e drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34ce2dc8 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3544f205 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36c6a363 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37eed77b drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3848220d drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e03ae26 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e95c7bc drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43df2105 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4420d67f drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x444cf6aa drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44889b8a drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44a1a944 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4508abe3 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46ae1a2c drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4733d9dd drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a97ec9d drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4add4c76 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d667978 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 0x592e7be1 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c4837e9 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61ec609e drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63b01a97 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6436bfac drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6446a26d drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65395bb3 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66039cc9 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x661d481b drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x674d3142 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x685b6ae1 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6980e28b drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6aa28700 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5fdaa9 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73ec9ad9 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x750bedac drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7aacf8e1 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7afe85ee __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bc2bc2b drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7de3ef35 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fc94b73 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82e2c69a drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83410296 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83b0468c drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x850f2168 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x859ad18b drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88627949 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88e2c95a drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89ecc09d drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89eed435 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ac7969c drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bacc7db drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c058006 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8eca1315 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8efcda6e drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x915aa77a drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91a2f8c8 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99f89452 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b7c91ce drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c1827af drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cecc1a3 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa350648d drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3bdc8b2 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4501160 __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 0xa4aa6277 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5e4791f __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 0xa9aba886 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabbfaec7 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac06eb8f drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf7c67dc drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3309767 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3ebc7dc drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4f7deb3 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb230a7a drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb80da51 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb8f9891 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc52b1ff drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd956733 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe15b6fe drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe85a5ed drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe8f01b4 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbef9dae1 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfc111d5 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfe60eca drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3fdea84 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4e0ffec drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6d9581b drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8e632f0 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc92cfd95 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2100a7 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbc3dbc2 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 0xd06e9dff drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7f9f777 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9166a3f __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda0dd900 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc3bdd19 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdefe2d1e drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf250d68 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfc9c055 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0435ec5 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe90a922a drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe91e6a7c __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebc3b163 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebe0c6fe drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecac3462 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0799c90 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3deb75f drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf42093c8 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc8c5534 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe6d04ba drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfea64b82 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00d601f8 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01671525 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01764c39 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06b7fd39 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x08ab1f85 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x143519b9 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1cea7b90 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x247fdf88 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24d0590c ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25963294 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d73360d ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33200069 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x343ec03e ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3be25ec8 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c77197a ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x428b27e1 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ab18926 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ad67112 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x600e2b3a ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66157933 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x76a9ad8c ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x78bca1a6 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e5919e0 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x82380425 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86563e0c ttm_tt_fini +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 0x8b2c964e ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ba365d0 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x958c41b3 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x98aa032b ttm_fbdev_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 0x9b3d5694 ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa66c9cfa ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa8a22b55 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab78b514 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb04ca605 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb111205d ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb32afd30 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb49f23ab ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb62fc391 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba72fdc5 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba926d38 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbde8c671 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe4d04dc ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3186dd5 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc523548b ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc7f347b0 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcdf3f644 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0240eb2 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd83139b9 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdcd6a15a ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe08b0eaa ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe3e89cef ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xed68109d ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeea4b891 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2b04e5c ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4f02260 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf56915fa ttm_bo_move_memcpy +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 0x1d8f4b2a 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 0x180daab8 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x405e9529 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x896980d6 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xa43fc771 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x1f74a7ae hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x47b831db hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4bc0ef8d hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x83d6542f hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8bb403d2 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 0xd314277b hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x1f4c34d6 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xb60cab7e hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xe6f5c3f9 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xfbf7b5c7 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 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 0x0035fdde iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x1d868f01 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x1e894cde iio_device_unregister +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 0x3d5e515d iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x6005f5dc iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x69eb4a5d iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x6c9ca452 iio_device_register +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 0xa08145bd iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xa5d26d24 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xa8999c3d iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xacffea77 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xcac367bf iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +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 0x14aa57a8 rdma_resolve_ip +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 0x4de3baf7 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x6bbe0f00 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xe6e7924e rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0400aec6 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0d8f2c45 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x111b19fb ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1442d1fd ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x14625aa3 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x15935bf1 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x16991f62 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x246fb818 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x270273c5 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x661f2ed5 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x662b7267 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x853cde57 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9924e58c ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xba28b366 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcf1ba260 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd084b5a5 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd380e4fb ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xffedc6b5 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00ec8558 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x054a660c ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0712a79a ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0efef367 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x188cb511 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f3cf54a ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25987da1 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29020d54 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b235fe8 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cbb63f5 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33ed514c ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x372b10d3 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x374e3f62 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38142c5b ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39aeebb8 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c2fa370 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d359f28 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3db4f602 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e501c05 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43214555 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47272be3 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c632d2f ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d9b8f50 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f2979c9 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 0x52e1c9ca ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5687b0e5 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d3fe43a ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5dc59955 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fb7a357 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66b0c20b ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a910ce9 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73ba1ead ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73ee5f36 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7515d9ae ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b36ecac ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8438f216 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x865d8aab ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x867ddc68 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88348e37 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b071ebc ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ccc2283 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d86de4b ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x929362cf ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97fe5299 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98a08a83 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99a7196c ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f05cca1 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f3ede7a ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa02b66ea ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa450694b ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa53975ca ib_close_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 0xab844534 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad1f53b5 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad4ec225 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaebc7e71 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3ff2083 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb52bb622 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb556ad26 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb558adbb ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5860f02 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb651b304 ib_unregister_event_handler +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 0xbe451a60 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2f333e1 ib_init_ah_from_wc +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 0xcb1b79f2 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc2b5f16 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccfe9d3b ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1318d64 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd175d35a ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3d320d3 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9a257b4 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda80b52b ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc3ad630 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdca43722 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdce1fbc3 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde8442bc ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0553e16 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebdab16f ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0cc112e ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2d35f01 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf79f60af ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9d1b348 ib_resize_cq +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 0x00597a4f ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x14f9c04f ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x272f3dc6 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x498896cf ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x92f99ab8 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 0xa68a5077 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf766c027 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xfeaaff56 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xff9ae25b ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x28690fac ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2c90c960 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 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0a524e79 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0d7e2417 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1e8f91ca iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x28f4e9cb iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x37c48094 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x469b4ff5 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 0x8e18a387 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8ea9c7f0 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 0x95a00515 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9fb19353 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb8d20900 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcda89105 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd40fc130 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd8fd1fca iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdc69f168 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 0x1be4db5c rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1d2581f2 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x39f4cec5 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3c9f14f6 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4865a57f rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4cdb7e0f rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x50fefad1 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x575b3c7f rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6a9ecb9e rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6facb669 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x849f59e5 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x90afd3cd rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x97786bb4 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa8093d1b rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa81f20ea rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb6868151 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc2a9b49a rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc4342165 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd307bc4c rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe1c1f16e rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf4012fe6 rdma_listen +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 0x1ba7ae1c input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x51694bed input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x7251611e input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x93c416cb input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xc5ad2a01 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xe476c91b matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x5d14788a ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x76696553 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xa0fd934a 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 0xb6de5623 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x16348c42 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x702e2ca8 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x77317f88 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x96fd1c69 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xcd33cff2 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xef690b8c sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x63828c19 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xd88d1b06 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 0x2cdbee8e capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x34f67c7c capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3e3d98c6 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3fac2c57 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5313b11a capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x707993bb detach_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 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa0381c30 capi_ctr_ready +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 0xd2e9d8e1 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd5cc33b1 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 0xf8a42771 capi20_release +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x136b7661 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3b39d319 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x72b310c2 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x72ca0066 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7fb929fc b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8e036041 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x95d86dd9 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa0e9d215 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb4d96154 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb94c634c b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbd0df874 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbdafcaae b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdabc2641 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf53fa5f7 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf96b65e5 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2995fecd b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2c5eb4ae t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x67b0a7c4 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x757b8155 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb2f7b4cb b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xcc0e2e3c b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xedcc303d b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf7b595e4 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xfe7f8d75 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 0x281607d2 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8977f79f mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd5b80b79 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe188f137 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x45015aec mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xfe177bdd 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 0xaf1e21ec 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 0x20bfd45d isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x4e96f493 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x7a8b8dc6 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x86aa63b4 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xa0324559 isacsx_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xbc04da4a isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xdf2eb5a2 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xe6483dea 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 0x15f00b39 get_next_bframe +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 0x33a13b2f recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5454834e mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x55e18537 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7226bbfe recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a8c3353 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7e01183b recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x85cd4e0c mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xacba348a bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb061e5cf mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb7929eaa mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb9227780 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc4dd125d mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc77f0615 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd09cd535 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd3bde16e dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xde5d5126 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdebaacc8 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xefc65dd1 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf36e9554 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf3844f84 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9b016b3 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfb2e3e95 create_l1 +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 0x19ba9b1e closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1dcad0f7 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 0x7a091431 closure_sync +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 0xbaa46e9f closure_put +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 0x17c8c34c dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x32345c62 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xcbb126df dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xd7bf4ef2 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x228e3cbc dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x4ce7289a dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x504e3e32 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6ccf0eae dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xad536d6e dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb4b61a80 dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0x1f366cdc raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x09202211 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x34c78de9 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x36347e53 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x69cf51f7 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x75a7b8a8 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x94bea988 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xaa5eb421 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xabc5a46d flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbb3fb4b3 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbc4b84b8 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc081cfb4 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd5c4859a flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe73f441a flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2ed96fde cx2341x_handler_set_50hz +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 0x5c071a95 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x9f229710 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb799972e 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 0xcac33e6d cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0c63e972 tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0x463ba3f4 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x00083b95 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0529a629 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1690b5f1 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x19591134 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x19ffb34f dvb_generic_open +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 0x2fde1305 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x34bb4649 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3cfb6ec5 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f7224d5 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x41f8fa5e dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d3b9a9c dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4fd0f575 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x520acb60 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5722752a dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x65886421 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6e53f955 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6e7cf9b0 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72a84ab7 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 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 0x818aaecf dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x83f16765 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x87309a04 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e47dce5 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9a021105 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa0d77ee5 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4b62d7b dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa9dbb9e6 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc200b2f7 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc61acc02 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc7cd02f3 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd843735a dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb576668 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe27c29a0 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeccddf9f 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 0xf923319f dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x99d088c9 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xca8e4050 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x59ec7798 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2cc03b37 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x60bd7785 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6a3760d2 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xaac4502f au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbae0846a au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdcea8965 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xeb5dd848 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xedeeeeae au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf22f806e au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x1068061e au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xfe6a5a93 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x5ca218c5 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x896ad9ef cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x933bd419 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x104fd151 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xd56ea202 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xb5a0d992 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x6da022bd cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x153eccc8 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x7a6ad0ee cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x964a8e1e cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x7eddcba5 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x86cc9209 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x949ea111 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x16700555 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x1bab590f dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x36d84a97 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x76b1f342 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd3765c5d dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1c5c927c dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2cefffd1 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x30001df4 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x36e30124 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4868c2d4 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4c132d56 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8331fa5c dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9b4ec4fb dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb978abb2 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc2c6b20d dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd112617d dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd7cadd54 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf0047557 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfabf1742 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfee34bb2 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xeb19c722 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x05f12273 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0eacb752 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x60cffbad dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x77ef2f3e dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7a0f0f08 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xed393bf9 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x44207520 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x520f61e2 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5fb873b3 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xae9cc529 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xdc1ec3bd dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x587c3d95 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 0x264248bf drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xf62211a6 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xa3082983 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xa6c092ba ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xc01cdce2 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x42bf8df5 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xf21c6929 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x011db651 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xb69df84f isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x5279dec5 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xc9753fcb itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xf9b1e089 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xa8dc637a l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x363e4550 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xb1e9c04a lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x3940db17 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xbf49450d lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x6ba64ccf lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x79dd9869 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x44608e38 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xb1585c82 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xb51c41f1 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x79df6394 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x7a393400 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x519a0b9c m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x5c40ca3f mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xa19524b4 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x078b34d2 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x29798368 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x6333229b nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x3cab18e0 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xd8edd2ae or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x01ba987a or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x21bcc6db s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x17365d20 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x0e7d3c64 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x1b037d90 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x6a98232a s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xa21a6e93 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x363dbb30 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x930ad240 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xc0bf1081 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x0fea92d8 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x0bf62a24 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x4557dc23 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xd697b35f stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x8e486850 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x62a72085 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x3cf32a87 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x3faa129d stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xfb2ca003 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x8e43bb65 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xa0f84516 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x1d0782dd stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xd9c6e781 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x7bfa2c1b tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x69e5fbfd tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x4d26f8b3 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x793350db tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x77518a1a tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x4c6e8ad9 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x31181899 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xd267e506 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xaad958be tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xa0f37dc0 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xc03cb7e5 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x84e530d7 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xa06ce443 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x69724dd0 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x06648162 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x25770f1e zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1807cb64 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1807da71 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1ab10cba flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2b5e5ce3 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4ea5811c flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5fcc61a5 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x914e0ce8 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x199e69cb bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5222272a bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x604fa367 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf9bc19c1 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x75dc3e0f bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x98db7627 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xed49f4e3 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x14f4c60f dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1ad28243 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x28bda563 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x466fb4e9 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5cf2c343 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x874ba71d dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb8d56abf dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf287c364 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf735ec5c dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xfff5f60d dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0304db01 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1430fe42 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xdfd2e3f8 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe198cded cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf2466a46 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x502df8d1 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 0x0584060d cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x083a907e cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0d62187f cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x82021d0d cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd470b1e4 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd6c276ef cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xddc9ae6e cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x2c953b73 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x931b8f5d vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x0e111983 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x565bf1bd cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x88a5a30b cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xed170e03 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x012baa02 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x028e72a7 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1d05822c cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x23106550 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3be1d49b cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbcdb4555 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd10145d5 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x00c15714 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0b778748 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0ef974a0 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x10afc20c cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x11cc42dd cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1a3606e8 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1c1a145d cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x296bad05 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x39502375 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4070791b cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x56a9aab0 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5b8a3cda cx88_shutdown +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 0x768b5401 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8c1f71d7 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8ef7a0c5 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd2ef0984 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe4752f8b cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe60c9db1 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xebbdae72 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf6ca0917 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x07adb14b ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x25f494e0 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x329e504a ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3456c148 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x60e069e1 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8529ca50 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x89e8d1d9 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x991c6894 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa96f77eb ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb8b7cf12 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbdcd7f18 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc1dcfec7 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdb784454 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xed932133 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf27dab1f ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf52e1839 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf665db47 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x05bff0f0 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1043f88b saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1c6f4cb2 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2b560895 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2cf78486 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4547263e saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4e03702b saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5cde53f6 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6bbd341c saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb5e52033 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb9856e87 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd58ac2c4 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x2a798bad ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x28924ee7 videocodec_attach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x9a24a3f0 videocodec_register +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x9aeaf401 videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xdc0353f8 videocodec_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x2638c7cc soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x433f7a24 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x688ecc4a soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x6be9f852 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x864e6849 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa0247131 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa0d66201 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x2a32ad21 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3be82a2e snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x584137ce snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x6e3ea16a snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x6e41f3f5 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7fefcac5 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb8a6304c snd_tea575x_init +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2b3a81da lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2d9f7389 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2e998c4f lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x39cdc36a lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x50602495 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x5794281d lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7d365153 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xaf305832 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x14453f18 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x1ade9ca0 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x12dd18c2 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xdc94143a fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xc20dd8d4 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xeab679f5 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xf1d421a7 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x3df04bf9 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x82b7addc mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xce7bfbac mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xf6334c89 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xaa019510 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x90f5902b mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xd3ae963a qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x31dd5d8f 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 0x4434505c xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x2b8c030e xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xb3e5a749 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x2b6346ab cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x4aead5c2 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0fc40c29 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4355f21a dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x447fae4a dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x46aa1ce6 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x899f5fd2 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x91e45ff0 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb35be464 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd2fdab93 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf0382011 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x17c35975 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2563f918 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x42fdeb1f dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4666cfd7 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa911b91d usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xdb162962 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe8621d2c 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 0xb1ff2135 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 0x0b601c5d dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2de464f4 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x526d4070 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5b6e462f dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x605cf716 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x646d2f79 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x853f522d dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa0850ada dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa38b603b 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 0xb9caed3d dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfe7d6c01 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xd8e651a5 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xdd5215c6 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x02611afa go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0e0b38d3 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1b8aefc6 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x39bb92bd go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x44d2cee3 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x59ec8b95 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7988ff46 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb3f30df9 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb772c7c6 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x47d86b59 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x523e414e gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x57ba421b gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6b74b94c gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb5b338e6 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc22d01e3 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc7d98cf3 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc9eaeb13 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x02f7d67f tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x48a894a4 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x62388142 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x4b414372 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x608642b8 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x37344f7a 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 0x5f977ae6 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xa2031c4a v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x02159ba1 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x40d6b9ae videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x6337f702 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x92ff88fa videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x93e9e13f videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa5a57930 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x3bb69076 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x9aa91e34 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x1477c469 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x8bb90d83 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x94ab813f vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x9c4f6dc3 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x9eae0b86 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xcd379946 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 0x7377f6ac vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09512b31 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a9c5794 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0cb13bdb v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0d7391ec v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x129be7b3 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12a0031c v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x141e78a2 v4l2_ctrl_cluster +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 0x1f3fee00 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x24354cbd video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2b0247f0 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2b820dd5 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x312c6791 v4l2_of_parse_endpoint +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 0x44374da1 v4l2_of_parse_link +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 0x4a2eeb01 v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c452ac1 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ced4fe9 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x545387ff v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c87c977 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5db526a0 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x604f5f7f v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7287afef v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75470229 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e49a146 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8b0d8bdb v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8bfd1d7b v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8d0d4789 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8db926ee v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e790572 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f2a1b03 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9c4bb6a7 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d924ae4 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9dc99cef v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9fb3b1a0 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa0d6b9c5 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa14bbe17 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa290c5e4 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa60e9228 v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa6cb14b8 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa7bc24e4 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa897c4ce v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa996cd0c v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab7c5072 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb07618c4 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb0bb4bad v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb5d64bdd v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb727edea v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba223efd v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbcaa7d89 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbcf5dc17 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe2ba901 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbeb42301 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc4148e40 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc47fbfc0 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc707e653 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc98967a1 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca82265f v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb34c3fb __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd95c780 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3155a6d video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd7f09970 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda317faa v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb987f4a video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc8cf5ea v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde65e0f0 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3440c27 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9fd6bd7 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed2af2f8 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf09a971d v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf516916f v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf61c9023 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7012de6 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfa93c3b9 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb1d14db v4l2_ctrl_activate +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1a0a9770 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x20fd6072 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2979a86a memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x36047080 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x40868e5f memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x47d46204 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4de01539 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4f16ebe8 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8da63acb memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb1863c71 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd018811d memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdd95d3e6 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x00260186 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x03dba1db mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x07f8feb1 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0f6ddaa3 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x15c0232a mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1846bae2 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1b4b1e77 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x33ed0ae8 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4d360b13 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x66df1449 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x68d22208 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d679170 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fd88945 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x889744ac mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8922fb7b mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x913ec160 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x97b02a38 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xad58f282 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb10d3ed1 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb25277bd mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb279d2b0 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb48efba0 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc429f3d3 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xca659812 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcc7886db mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xce4e291f mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcea0ae4c 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 0xeb48735f mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf716f892 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1d821071 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2daacd3b mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x34d3a759 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x400a0423 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4255e13d mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4aebec34 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7c22f3dd mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7da5e29e mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7e7df27c mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x87e1cf25 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8f5d97ea mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x98fd7d52 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9cba7be8 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa1635e6a mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa5aa18b1 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb0c2b3f1 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb0d6419a mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb669b358 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb7ad1508 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbc5a6d60 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbc871aa9 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc2eafd16 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc6d6657d mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcbb40048 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe7dd3ce1 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xea2484c4 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf0bb3533 mptscsih_qcmd +EXPORT_SYMBOL drivers/mfd/dln2 0x3e0b1115 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x7a6ca0c5 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xf2c47e21 dln2_unregister_event_cb +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 0x19fa0acd ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0x346dccde ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x03d4106b tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x0af0b16d tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x0e758648 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x2ab554e1 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x35a607d5 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x5e7bb92f tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x65c5cb6c tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x717a01ce tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa5964d92 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xadf0ac88 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xc842c7af tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xdd68d1ae tifm_register_driver +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x068e3575 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 0x0f8d49f8 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0x289f3c21 mtd_concat_destroy +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 0x09c7d101 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0e6df6b5 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x145d1474 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2153963d arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x517003fa arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5e3985d3 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8941bb14 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa41e5fc7 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdc34fa0a arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xff027b09 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3bb847f9 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3ca6c45a com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa70ea4fb com20020_check +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x246939b0 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x28e1b393 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x313ec1f8 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x401f5c8a ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x71ba5ce1 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8e535e6f __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa41b7cab ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc6541093 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xed41745f ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf61194f1 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x8caf2977 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x7bcca86b cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x02603920 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0abf1011 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0cb5fb91 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0ed862dd cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1920aa3b cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x25be6b7f cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x52dcca10 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x597b6bbd cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6619dc69 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x68660160 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9add7fe0 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xac615fe5 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb538239f t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbdef78ac t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc4b571b0 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf4680fb4 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00690ee5 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x03843d23 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c43a498 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x15c4a071 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x21308e26 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x22ea08f0 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x23379df8 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2a5d3ef2 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3ad729e7 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b880136 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x405d6b3c cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d8992cc cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x507d0825 cxgb4_clip_get +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 0x7b67e3d4 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fb805c0 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x807f9a2e cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x89c3b0eb cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8ba42532 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x907ed91c cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x923423b5 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99d6589e cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d64a35b cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa46621db cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaec474ae cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb144c147 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb58043c9 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc0bce95a 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 0xd77d3d54 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0c6cf8e cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe15aa136 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf048198e cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf52daf5e cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfebffae7 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3e4f012c vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x76423c69 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9b4e86d3 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc91a5d3c vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe9416037 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xfd157ddf vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x8493b3dc 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 0xd2741b7f 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 0x035dcc72 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08369426 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0999006b mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11906bd1 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x120359ad mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12daaae1 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f21ed4a mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x228b0b86 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32b29a77 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x548b5323 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d955a77 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60cc52e0 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67bc400f mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69149d38 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bf5789a mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7de07453 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8036db94 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8265344e mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x918e992f mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9641b731 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98b1e936 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a984753 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bb9adfc mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa350d8b0 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa437a38a mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab942862 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabf37697 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb413e0c2 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1f348b4 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca36afef mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca61c4e1 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc1070e9 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6aadccf mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6464b5c mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeaca072b mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb43c6e7 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec441d84 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf83558af mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02587f33 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04ad28b4 mlx5_core_query_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 0x0b4d7914 mlx5_cmd_exec +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 0x122d645e mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18f7e54c mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20c673d9 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cf77306 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c6ae73a mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5566e963 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x618a8c94 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x671bbbc7 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75fc8bbe mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8323a2fd mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x852cdde5 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93c9616f mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa76efcbe mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa830c71e mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8ee486b mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9f735ef mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2f96fd6 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4cd89da mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5456ba3 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb77acb5d mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7d1d0e8 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb830bef3 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcb65572 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd892d25 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1bdac4a mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd45a6a41 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5d29530 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6d30c72 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd968e486 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaca4329 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf278da5 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1e1bc7d mlx5_vector2eqn +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 0xee9c083b mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeef8fbbd mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2c629fa mlx5_register_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 0x26116d22 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 0x5dca9698 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7c0e95c5 mlxsw_core_bus_device_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 0xab313856 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbb89969f mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcacdf59c 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 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 0xef773f13 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 0xe58e94f5 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1572a4b0 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x369732fd hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x380f6d68 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe22aac39 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfdf4c111 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x03319b11 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0dba8ce9 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6d8c9f95 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x71ae0c82 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7c94aaa5 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa28c73a9 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xcbea9b50 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xda100107 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xdd4acf68 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xffdd6b9a sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x1bb8605e mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x62186798 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x6b033a09 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xacdb2cba mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xacec16bd generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xb705856a mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xc0748246 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xfc35f2f6 mii_check_media +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x589cff67 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x6a19b80c alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xb86aa787 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xdab36089 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xdbeaa18e xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/vitesse 0x8666f5dd vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x53fd6d34 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x7cf39396 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x7f021274 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xc0f614c9 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x157b34af team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x272c6899 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x357d18d5 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x3aac96b7 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x79f24bbc team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xa7020c94 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xd9588582 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xfd42bac2 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/usb/usbnet 0x1134fb25 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x6625111a usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x7f62f7be cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0xf30a44fe usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x15413e5c hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2facf5b1 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x32aff049 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x32b89c2e alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x360f2d10 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x42dee866 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x472286e1 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4f949bf0 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x731ebf33 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x985f3b1a register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcee35c15 hdlc_close +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xbee53e88 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x137b45cd reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x365672d7 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x97fafcc2 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x07929b59 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1f135561 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2f7a49ea ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3b0dcfa3 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x471a9b44 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4c1a0212 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x82ea4075 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc3587d3f ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xeb9c90ab ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf4a1e8ad ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfdb36ce2 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xff811d63 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ac422be ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ed17a5d ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2327d262 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x345d826b ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x44cb575f ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4f0db3ef ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x54c70810 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8329a29c ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x88d0c77f ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9bf3b039 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ce4ffa3 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa3d942ad ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd0b31d00 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe9e101ff ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf6d02a97 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x124ede29 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x18b33c2a ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x22144944 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2e88819d ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x344a6870 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5898e05d ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6772c837 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x76372de6 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 0xa6dfb478 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 0xb2516579 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbd434795 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x166f222f ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x242d3c3e ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x286d5a3a ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3b68c470 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3ccec777 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x44ee17cf ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x46ea9e3a ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x48038aeb ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x49a8ebfe ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x49c61723 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4e21aa39 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x698f893b ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x920bfd77 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa546c1f2 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaaa54a6f ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xab5a7971 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb4a7e835 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcfb0618c ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd0d2146e 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 0xd74d1555 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe05e15de ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf0b4a07f ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfd1eb65e ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0097a8de ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01dad362 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0bfca472 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f2d7fb6 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1147ab1e ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11eb61b8 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15974f49 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16d6c9bf ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x194bdf88 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1cac3500 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e75f2ef ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21735007 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2407b7cc ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2526e7c2 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2558722a ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25cf32ee ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2635783e ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27dd6404 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b8e1c84 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fd72638 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x302269a7 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36404e6f ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38e1798a ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42a692b9 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4682a6ea ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a44ab81 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a5ab371 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4eddf406 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x503b9910 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52dc05b5 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53b32065 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56c9d6ce ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58106543 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b82fbaf ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cc40330 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cf866eb ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d850583 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f0cf822 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x600ead12 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63bfcf56 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6652e4d1 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69c2b2e6 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7248c10b ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72e6bd3d ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x763a5dd7 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x822ea52e ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83c19d8a ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8675179a ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8737f0da ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87b2872e ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d1c64ca ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f75f33e ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x916da71e ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9345a12d ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c3c2caf ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d1afdbe ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fb8eaae ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fe245b0 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1a8e432 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2aa7aed ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa46d2160 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4aeba62 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa51be7ba ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8546ac4 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa863f17d ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa6a62f1 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaaff4f67 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabfdff63 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1a4e486 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8d9e3dc ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbdef7c5 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbe1e051 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf212348 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc10f9821 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc12b22ba ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1976eb2 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc41cbf8e ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6243d01 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca6f42a4 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc605941 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd15c377 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd652c74 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce32e013 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf0ee3ce ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd44e8056 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd528d5e4 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd758ee3f ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8068699 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9603cd7 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe252e817 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe255069f ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5707237 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7f20533 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe962437c ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb0ee984 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed3be4f7 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0ba0d57 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2edd575 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf34543c5 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3fbe001 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf68553c1 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfad9c451 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb498620 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe1fb5d5 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfeb2cd10 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 0xa30c9ffb init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xa86e7fb8 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xdb371679 atmel_open +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x08c23f5c brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0a5bd384 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x27804887 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x334f3958 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x355256e6 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x36ce13a3 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x54fd031a brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x60bb4ab9 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x684dead4 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6b87eefd brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x75a9794f brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe7b81fcd brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xecbe36e4 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0040f758 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x006b1c8a hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x037ccf90 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1040d93e hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x11ab2b80 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x188a2428 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1fdb8b5f hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x267122c0 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2f41d84f hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x40128a88 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x45bbeaa5 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x55312a3c hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x588787c9 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x63b38282 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6761a8da hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6aca4a51 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6cbe6d8b hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6dd9e14d hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x77ea2189 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x86e47dfb hostap_init_data +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 0xc451af7f hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcb070ccd prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe105d9d1 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe3ef6ab4 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfd43c1a9 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x03fe45e1 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1119e003 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3030ec05 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x305e578f libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3217dc49 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x35afd3f0 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3c582dbd libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x40f7fd3d libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4293dc7d libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5e03681b libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x64140ab6 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8224b3bf libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8ec1a0ab libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xaa9f9162 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xac0be491 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb3a49776 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbb78fedf free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xcb9ad4cf libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd3eeb329 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xefe583f0 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xfd619bb2 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x01202ecc il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0370ac86 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05683599 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08a6280a il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b8a5b42 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0d233cbb il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0f1395b0 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1551614c il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x17cb7c9e il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x188748f9 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1d53be14 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2468e750 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2a10f6c9 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2a1fd434 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2be10075 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x30770f4c il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x30d90c69 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3107aecd il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x35e74c19 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3833e013 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3904bd6f il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a3a4ff5 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x40055705 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x474555ce il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x47d8e21d il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x49205199 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x509bc255 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x52f54b91 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x572729eb il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5adf7d83 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5dd26665 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5dd4c6b1 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x61d7a5ae il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x63826fb2 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x641d83d2 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x66f7e480 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6927d46e il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6b1eb3ed il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6b6ef0da il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6b7be0d1 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x70b08b66 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x70ef65e9 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x758c00eb il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7a66f0f8 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7cf8cd95 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x82cbd408 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84ff482d il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x89fd1d74 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8a418d20 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x901c59c3 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x97a505cf il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c1f858c il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa27f276d il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa457e189 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaba4847f il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xabddbfe7 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xad1bbc16 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaeb8d5db il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0035325 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0854f3f il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb35fb161 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb3d69858 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb45a2815 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb4e9a950 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbb15028b il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbd155a74 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc0f45a13 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc2c266de il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc35d1bb1 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc7137199 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc7a8dd4a il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc7cfd340 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc8c7bb62 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc94cdde6 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc9eac31f il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc26054c il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xccd2a942 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xce9cbaa6 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcecc4b65 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd52b1a4e il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd5a524a5 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe0082a11 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe0690198 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe38d63e5 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe8af51bb il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb33a783 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xebacf5a5 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xec9033cf il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeddcc1f4 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf149d760 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf5375e28 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf5bcf04f il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf62c25ef il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf89f2e2c il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf9dc039e il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf9e0a65e il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfafc17fc il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfe52b7b9 il_tx_cmd_complete +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 0x0901f758 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0d729677 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x219f726b __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4594d178 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4ba312f5 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4e6977f5 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5159c5c0 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x549d5f5b orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x660a3f25 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6eecc47f orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9b4042ca orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd2e4bed5 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd695a838 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe426861b free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe9498ddc orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfe0644b0 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xeff992fe rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x049c6bf6 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x148bd8a6 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x155c893d _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x16fe6b41 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1acbde34 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f6a98bf rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2a731920 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2c8a7e00 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x321c8b8f rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42893da2 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c1d5523 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x51822839 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5343e6ca rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x59267f19 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x619e4233 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x66129459 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6b0846bd _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7bf4d293 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x859d384d _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x982e50cf rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9a9fdea2 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9b4148ad rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa2dda190 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa86b6e28 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa937247a rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad0d8924 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb10a8ca7 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3d0316d rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb4dacbb3 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb4fa774e rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb5cbf22c rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc1e06952 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc3aa334e rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcaad3df5 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd03fd2ce rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd88b7feb rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf03fe2c rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf820f16c rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfa1fb3b5 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfbf82901 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd2615af 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 0x1cd73204 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x46e937ef rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc5478a3c rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xeaef024c rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x22a2ca4c rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa12dd686 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb3559160 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xda5da0a3 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x00961905 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x04942bc4 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x071da19e rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10987c0e rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1371a874 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1fa59ef2 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 0x2f7c9bc6 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x39782240 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4325524e rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5238ff98 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54ecd64f rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x595877df rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5d6fd405 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ffecf15 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63a23fde 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 0x807ef062 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8cd583b2 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ef2ee76 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x979f5406 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6749869 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda44e63f efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdba767d1 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdbcb04f5 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdd8a3b0f efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe3c7ec9c rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xea73cc3c rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xea98559d rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5956aff rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6cfabb79 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x92a03e14 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa1fd8515 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb089c9f8 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x05441a24 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x38e9249a fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd9858d82 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x5a7eb04a microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x8b3fec18 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x295d7428 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x2f427a71 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x30b24b41 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x345c2c99 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xea63d525 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x35e57df9 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xe985c41f s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xfe763c29 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x16de3038 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2afb2a51 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x447581e6 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x46e10c21 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6a883c7c st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x778a0b69 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8a3ae89a ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x95f8065e st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x994dd857 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfcdeac58 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfd455f98 ndlc_open +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x018573d6 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x10b0b569 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4143e139 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4b402f0f st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x62edd0fa st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x62fbda5a st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x69d75000 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7669c9ca st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8df649aa st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x934707a8 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9df81e91 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xabee9cd3 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbd49d820 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcc636e2a st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe5231f10 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe7327917 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeebeb5ba st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfb332538 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/ntb/ntb 0x12c88d3c ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x202b1ef0 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x4a9c3ac9 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x835bb33c ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xab88880d ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xc40f6d84 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xed2aaf6e ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xf9b63b33 ntb_unregister_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x1f5206f4 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x39035e52 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x7a12bb9e devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x040f55be parport_read +EXPORT_SYMBOL drivers/parport/parport 0x0b153ea0 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x15c2783c parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x1bdd9a1d parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x1dc64837 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x1efb4639 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x20b49bec parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x35de934c parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x3971d4fa parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5142cc95 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x55ec886a parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x5bcc9fe1 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6e5d850c parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x76f7bf02 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x7b6b15b4 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x823dfdd1 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x8af30df3 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x9e4cfaee parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xac46e02a parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xae272de5 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xb4ecda24 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xb538d29d parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xb76fdd9d parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xbabfa1ea parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xc2b746ff parport_release +EXPORT_SYMBOL drivers/parport/parport 0xc34e72f4 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xc5066057 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xcfa64766 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xd63c2053 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xdf146c3c parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xe735a5b1 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xf9d8c0ea parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport_pc 0x351bf939 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x70b2cb72 parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x011200e2 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x20dbcf20 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2a7cf4dd pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x34213f5b pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x34fc1984 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3db5795a pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4761d26f pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4b376de9 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x51d1e21d pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x62c5b95f pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6d18f2b6 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa8a52d5d pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa9e4c1cd pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xad5998e9 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb5dfe783 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd4a83ed8 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdade914e pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe6f6bacd pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf4d63e94 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0b1aacec pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4d1c4eb2 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5a62ff7a pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x61001c22 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x71b56198 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x73921690 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7b9d3304 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9508c955 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xaf5e7478 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf56ba6a1 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf7cb4682 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xb4ab1fca pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xe4911170 pccard_static_ops +EXPORT_SYMBOL drivers/pps/pps_core 0x5a2c5961 pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0x6873b7d7 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0x9becfa67 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0xf8f89d48 pps_event +EXPORT_SYMBOL drivers/ptp/ptp 0x31d128a4 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x6b0167d1 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xa2383b71 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xa840daf4 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0xc8535dc1 ptp_clock_index +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2c3365b2 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2e161578 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3ddb1072 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x507b7310 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x67366d8e rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x6c780054 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x904be655 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc470b68a rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xceef87d7 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfbd56199 rproc_da_to_va +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x33b3bbce ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x063e73c1 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1ae6ae28 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x455b6950 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xddbaecfe scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2e7e18be fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4fe5b064 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x58debbdc fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x76426ad4 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa5fda607 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa61d1e4b fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbfcc9db5 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc52a894e fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd20e0d6f fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe0c8510c fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf1e74d12 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf83df6e4 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x015b758e fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06ca172d fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a73f1d5 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0be1aec5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0dd12b3f fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1156417e fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x119a6ecb fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1233fb1d fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14718517 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x173acf51 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x24bef0d1 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b110724 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d74f37c fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2dee4384 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31e2dffe fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3452e604 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34e6ee63 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40df5a0a fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4dfd0c12 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f4ee0d4 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x617ff203 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63e0e7e5 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ba08621 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ea8d4a7 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x71f106b9 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77e2ce51 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78d429e1 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x851991e0 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8660c6c2 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a0d6b98 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8bb39c8c fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8bd29533 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x90a9a0a8 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c00dbc8 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f224edb fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xab7d304e fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb08d86a0 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb6cc3ec4 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc791d9b fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca529d3f fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0a5964c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3a03483 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8332e0e fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe29b119a fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeaeb4689 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf21d0cc2 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf41f94ab fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf4f4b72e fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9463f69 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb125672 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7b03376c sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc27ee50b sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc2e7fd38 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd35e52cb 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 0xa85d9362 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x07e6eee6 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0fe8ea70 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x24e73011 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2ad13537 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x45317d38 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x46206110 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4cd2ef9e osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5ae87c0b osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5b87175d osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5edf22dd osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x68d9c9b9 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6ef2e132 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x74b91bc0 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x75fff1f1 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7b772e1e osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x85326b6d osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9025a31e osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9659193e osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaa3aeead osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xab54a9ca osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xad0c7db8 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaf0ae6fb osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc26ed3cb osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc6b830b7 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcf3def93 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd6c1338c osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd8858c5a osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe1d8c021 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe8c79205 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeac1ff32 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeb94a240 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xefdcdc97 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf7e7e4f8 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf98f9a24 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfbd37f3b osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfefe7335 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/osd 0x3fe6349e osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x710e8cbd osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x8a820fdc osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xb43d69ea osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xc59b8253 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0xe2213c40 osduld_register_test +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x18a27526 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6cd3685b qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8a612575 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8d1d409d qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x937132dc qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9ca47784 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xab37002b qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb8b6a4b7 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd1be13da qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd547fae4 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xebbc7222 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf1a3f63a qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x28f3b192 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x31201a64 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x40e6b070 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xaf0337e2 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb7ea630d qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xba87d6f4 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x7901c877 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x794993e6 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x8765ed83 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x110c6672 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2326df67 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2c9a12c5 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4103df6a fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6aa2a3a1 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x99f0fce1 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa0902928 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb640c257 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb7f8b0ce fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcc231569 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd660d188 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe834c4d9 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xecec688e fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x10f43aea sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x119928e1 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2bd6dc94 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32d803dc sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x46558ba6 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x56dec2a8 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5bb991e6 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x633837b0 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6a1feb0a sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x71431f62 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7415057e scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x744a92ce sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x839cbd07 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9d127fac sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa8444390 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae01991d sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae64af23 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc18fa14a sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc1f97a27 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc341945d sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcb6a2778 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcc597f99 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xce342051 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xda6de28d sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xefc65751 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf7ab45c6 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfacd2776 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfd2aefea sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0e1f8162 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2f05ac35 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x87092733 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xcdfc3d5a spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe83fe456 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x02e56a35 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x274d39dc srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9646529b srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xce9be3be srp_rport_put +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x19e99917 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x1a52ebc6 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x43f95238 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x736698c5 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x84d55b01 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x97ee21e5 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xde892fa3 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x0c1a7980 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x0f8bd479 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x2ad91de5 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x35257d97 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x4314a7d2 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x4fab6204 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x50eaaf2b __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x5beba2de ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x5f439eba ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x75eb0b8f ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x761b1dc0 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x8ced2777 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xa7ee9701 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc111fb78 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xc1623360 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xc544ae42 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xd88fc6b0 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xdc6d6fc4 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xdf40a62c ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xe75b1ebb ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x08243478 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0e57b70e fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x249a5631 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3da25db9 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4f490711 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x570bdf9f fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5aacd8ab fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5bd364c7 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x76f36067 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x79e976c2 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x809c3d93 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8c5d7a31 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8f6651ad fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb676789b fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb6e48cb4 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc43710e4 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc59b4b00 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcd4c108d fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd3e5d0c6 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdadedf79 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe3710391 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe59b7be3 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe95a8cf7 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf7fc6d81 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xb1bfddf5 fwtty_port_get +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xeedb7edc fwtty_port_put +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x8aa77fe4 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 0x681ed959 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x7b05e1b2 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f301027 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x158e6e2d rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18e2a484 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e8fd386 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x23739660 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x24e0d897 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ac21bd2 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d0b8851 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x313e4bc2 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32854535 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32b675ef rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x394259be rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f4666e3 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x45f70914 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54e735ec rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x59ca0aa4 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x601024a0 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73a4c165 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x75516c00 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ce8eb6d rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x825b4d08 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8bf58f3c rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x92799be8 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x957f4b7c rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x97c82d7b rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x98159f4b HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa624a067 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa67d6f30 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8ba623b rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb22f00cf rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb32690e6 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd34f3cf rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbdfe6cc3 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc012761a rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc12b92a9 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3c0e2ab rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc56e7c34 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc9fa47f1 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcda6da23 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf0fea94 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0ce9d3b rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd501f22c rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd9edefb3 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe40dcb40 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe4545a2c rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xebe44391 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef3aad5f rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf5a28979 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf6773a83 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfadc5608 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0118b7d7 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x02618168 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0c0af106 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ce790bd ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e600ae1 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x114e4196 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x11cc6bab ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x14a854fb ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1dd0b266 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x257a0d2a SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f28b3d3 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32cae1d1 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3416f1e4 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x34844dfc Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x39c8a6e3 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a15c67a ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4181dc86 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x446c4ab9 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47efd4b6 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4ed02fdc DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x52f9ebe8 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63d15cf5 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6881bb83 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68a88c58 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68ab806d ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7661bfd9 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x79f9c341 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x81a071da ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x82e148b8 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x899428a8 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8d8860a3 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9348f80d ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x96d0e90d ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9fecc08e IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa2002cfb ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa3a31eb6 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa7c26fb3 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xae190862 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb2219d32 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3979b77 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbd4b2b8b ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8e7e7dc ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc190533 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd0219063 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd2e49e6c ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdf8e8da4 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe5fe54ce ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeaf79053 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf5cb7f3f ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf5eb5062 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf6d979d4 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfe642005 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfeed20a6 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x121df623 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1859cfe6 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ac5ff67 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x219e64ad iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24f4cc56 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2e0681fc iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3c784bf1 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x426c1e09 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x55021d4b iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5aa4f070 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5c1682b7 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x635a4b32 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x75a7540c iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x78f63c9d iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x82a53dbb iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x89e700c2 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x94ba1009 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9dbdd152 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa17f7847 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa2b91501 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa716c2cd iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2d5d66d iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc59f8f3c iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc7bf8274 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe13352d1 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xee6fa879 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf2175dde iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf8bc8701 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x126e8171 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1387dd94 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x17704362 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x17e91db0 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x2252563f sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x2663ca7c transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x2928dc56 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x298c5151 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b3ece59 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x2bbbfcc7 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e8811b5 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x37e43b15 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x392107f9 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x3b30e526 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x3fe7aa90 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4beb9994 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x4c8bf87c transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x50561b76 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x55207e0a spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x56401e24 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x574802b7 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b5c15ee transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x63d29a14 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x66422668 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x671d6c5c target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x69829646 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c8d8e8c transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d394a09 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x702f3cfd target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x71156a76 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7995e91e transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7996bc41 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a0661b2 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x80e45e0a transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x845cd340 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x85a387b9 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x863bb78a spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x87dc39ce target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8825d909 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x8aa10df1 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x8fed4221 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9684c37b target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x96af3c96 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x9de2c633 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f01198f transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xa40634e6 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa97bc266 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xa9a5eb5e target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xb9e6cf68 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe003b55 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xbfaa94e1 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc057f02f passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc1468792 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xc3821d2c transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xc486e8a0 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4b7db8a core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xc59e9345 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc5ca32ca sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc600d26c core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xc93b53d0 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xcb2fd378 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4360d45 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd493ba30 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5ee118b transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xda544747 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf64899d target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xe27ae72a sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xe58e4291 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xe8a973a3 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xc85a2641 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 0xf84b12ae sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0f734e75 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x21d7f1ef usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x27f31d77 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2a427f27 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x30e98748 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x40207c44 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x73864e20 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7de99e80 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8127ef2d usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdc2109de usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe237ad30 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xff8e6a66 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x88d0f006 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xcd97ba58 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 0x7053015e devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x73594e29 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xca16948e lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xf93f98e5 lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x038929c0 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 0x42ebc1e9 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 0x7cfc3adc svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x85d361fe svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8ec9385b 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 0xd9ef3fdd svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xede5e7b1 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 0x5375f819 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x6bcdc8d5 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xa579947c g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xa8e8187a matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x36e19d8b matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7b30ad5a DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x9d3b8c1a matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf1f2467a DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x07ff86aa matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x6b10c610 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x3f2c2797 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x646e590f matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x74f14263 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8f03c20f matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x07608e5e matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xbf096f26 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1b6bc68c matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x346225ef matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4365c563 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb0fd6097 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf6dc35d3 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xd0116ed0 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 0x19793c20 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x430cc101 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xbbe8a9fb w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xd28f97b8 w1_add_master_device +EXPORT_SYMBOL fs/configfs/configfs 0x1c59a0cb configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x2aa50095 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x2eed866d config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x3c79f518 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x6cd33517 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x90ca925c configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xad83eb1f configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xad9ce194 configfs_register_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 0xd6b41b01 configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xe1156388 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xf6a61a62 config_group_init_type_name +EXPORT_SYMBOL fs/exofs/libore 0x15cb6406 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x1fa45dad ore_create +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x2f970bf0 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x31044498 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x3f15c30c ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x3f29bb26 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x463ca260 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x5935fdc3 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xcb22a095 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xd1419aae ore_put_io_state +EXPORT_SYMBOL fs/fscache/fscache 0x00f6da7f fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x03ce8597 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x1c1dfb6e fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x1c77b25f __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x3790e4ae __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x4027b171 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x4af27c1e __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x508eb839 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x5501279f __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x55826f78 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x5a8823e3 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x5a940090 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x5abec2ee __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x5cb02be1 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x6512078f fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x6dfc1760 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x70881c6e fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x7284bae7 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x75291978 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7d6d74e2 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x842b5bb5 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x88462fc9 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x8b964c98 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x8cd1b985 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x8f9fad38 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x91e991f6 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xa39afd4b __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xb25c24da __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xc2b33c15 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xcc1d5b5e __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xcc229fea fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xcf9f5a57 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xcfb0a0ac __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xd5eff95a fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xe39a8b3e __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xe8436874 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xe9449242 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xed002a27 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xeedbe1f2 fscache_object_mark_killed +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x117498cd qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x2b9bf362 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x3994cc7d qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x544d8bdb qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc4e511ae 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 0x10e06f20 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x493410ad lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create +EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put +EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed +EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set +EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get +EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del +EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of +EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find +EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0x7456cc61 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6bbe1328 lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0xa4934d37 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xafd0ced4 lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x5a53c2cc unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xc9356cbb register_8022_client +EXPORT_SYMBOL net/802/p8023 0x6c9d0654 destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0xd14de72d make_8023_client +EXPORT_SYMBOL net/802/psnap 0x3d350994 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xb546ad3d register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x041aacb5 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x04fa5a31 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x0f630f6f p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x1ec3c2f7 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2a0d9fd2 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x302d316e v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x34e3b585 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3b683df6 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3dc26c12 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x409a29ee p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x44a0ae11 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x4506c0d1 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4bf1d0e6 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x56dc8cb0 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x62b5d763 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x6d1d9c71 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x728228b1 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x7307956b p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x73378af8 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x7c5f3c09 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x82fbf52e p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x83b73080 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x840acfe6 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x843506d1 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8f58eefb p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x8f9d4ff1 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x982413ad p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xa730d23d p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xa8b98393 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xb2c1d3f3 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xba4d3905 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xc25d236c p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc81c7a24 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xcde71078 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xd9a552a9 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xeba332d7 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf2d2fc85 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xf2ec87c1 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf6566987 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xf99edf39 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xfb9e49f6 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x158e9dc1 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x1d5033f9 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x78c3c654 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xf4503efb alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x20727917 atm_charge +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x3d20fe03 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x401c9eae atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x4162782f atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x484c7551 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x4b4c59e5 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x5df90a61 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x8f8ba300 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x9372b944 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x95f3ead7 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 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xcc5a4313 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xe800f3ce vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xe864951e deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x0c48e790 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x19dc9de0 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x239fbef0 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x37f1ebee 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 0x723191d0 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 0xd72684c9 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xd9f82e6f ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xf59e303e ax25_find_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x068ce737 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x15b6296b bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x160fb901 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1d7f25d1 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x263999b5 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3a46bcac hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4ad7e2f1 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x52739f33 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x552a2357 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x58651b26 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x59a6613b __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b881114 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x68e90418 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6aa8f4fc hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b44c9e6 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6c170a12 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x765efa73 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7664640a hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x77dd3706 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a30ad6c hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7d3b4e86 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x806642b3 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x896244df hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ce38c2a bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9a06d2a3 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e7c6d67 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa49d0487 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xad0a4860 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb720d423 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9d65728 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc057b7e3 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc47adf23 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcba7488a bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf220b62 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xda96a73e hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc3ba999 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeaeaa2b5 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xedde6914 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xefea2996 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf074abfd l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf08ac845 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bridge/bridge 0x8f35230e br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x07b20684 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x591663fd ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7d5f1cc3 ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x04ad30f0 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x100860b3 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 0x461948e9 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 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 0xb63695b7 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xf1f32864 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x16242bca can_rx_unregister +EXPORT_SYMBOL net/can/can 0x49301e3c can_send +EXPORT_SYMBOL net/can/can 0x51737c06 can_rx_register +EXPORT_SYMBOL net/can/can 0xb76dcd9d can_ioctl +EXPORT_SYMBOL net/can/can 0xdf820e47 can_proto_register +EXPORT_SYMBOL net/can/can 0xefb80f45 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x00a65c04 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x01c21da3 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x02904843 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x030447c1 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x0503f098 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x056ab358 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0d75cf02 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x0fa56860 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x10834a8f ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x125bca2d ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x1319123c ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1406cb32 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x19732432 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x20bc9e0e __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x297ed29f ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x2b4f48d0 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x2c5cd029 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x2c8e2d2c ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x2ee34e50 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3246b660 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x3269b96a ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x33f77d21 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x3572ea00 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3b18f33d 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 0x43a6fa42 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x44768e39 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x473a98fe ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x4936b3c1 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x4f1e28cb osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x53ca21fc ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5cad7e49 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x628f8753 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x657b5193 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x67c986f2 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6cbdf0a7 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x6d8ce79c ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x6e9f707e ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x71b22aab ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x735c3c86 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x7fe7b764 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x914563f8 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x9222d87a osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x9228fe9e ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x926a1dc5 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x966e37ab ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x97a2c52a osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9b5fbf9e ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9f4d2c78 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa0af5cbc ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa345a83e ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xa582aa9c ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xaa6544df ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xaac366b5 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0xabae827a ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xac4ee785 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xae31dda9 ceph_get_direct_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 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 0xb99691b2 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xbc633471 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0xbfbccb7c ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc34f399f ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc8f4ac70 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xc96d6e84 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcd272e05 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0xcdb6c12d ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0xcec8389b ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xd033d290 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xd201a83d osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd2d84bdb ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd64dc5ac ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xde9605e3 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xdfc138cf ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xe087b140 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe7b75dd1 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0xe8660141 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xe979d0f7 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xeffd53a0 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xf14963bd ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xf2bbac3e ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0xf65be359 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xf7cca9bc ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0xfb57a548 ceph_osdc_put_request +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x1cb472c1 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x943fbb4a dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x11d19d3d wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2bd8e3b1 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x34f6efe1 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8f433848 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xcad78015 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf6ca9ebd wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x6f0e0d46 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x828cdd45 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x30ea178c ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4c613c9a ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6cc82fb1 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb332a4df ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe263c70a ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf64b8598 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xacb050da arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe078bd12 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe4995685 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6994b8fa ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x724b2de0 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xef471098 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x829e5c19 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xf7591525 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x1ac3f27a udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x25abafe1 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x547042e6 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc516a5bc ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc7ba9a85 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1c963174 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb35da6b4 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf1508a11 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x0afe6d7b xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x77bb842b xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x07737727 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x07bbf314 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x15920431 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x30bce225 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x3b523a38 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x638baca4 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x64d631e6 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x92639942 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xac127a74 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xdbb1269f ircomm_flow_request +EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x04108fd1 irlap_open +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x06e99ad3 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0c72d4ae irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x0e792833 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x229b4022 irlap_close +EXPORT_SYMBOL net/irda/irda 0x27ca322a irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x280ff575 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x298e6bdd iriap_open +EXPORT_SYMBOL net/irda/irda 0x2d89bc41 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x39600928 irttp_disconnect_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 0x601bda46 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x61426539 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x63739365 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x651ba06b 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 0x7c56f9f4 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x7cdd558e irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x8ab949c2 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x940fd396 iriap_close +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x9c9a359b irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xa157769c 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 0xaeff087a irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xb6e129d1 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc5d59c17 irda_device_set_media_busy +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 0xdf30a536 irttp_dup +EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xe4d530fb irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0xe6114b42 async_unwrap_char +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 0x21c27abb l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x5b37c4f3 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x129e180d lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x212961cf lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x2a8a7b1e lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x302ccee4 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x49d1a334 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xb2c0d6c7 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xc7f994d5 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xfa93abb9 lapb_register +EXPORT_SYMBOL net/llc/llc 0x00e2d278 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 0x5a0f869a llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x744637ed llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x9dba6d55 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xa3ff5b46 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xc2e3ac6e llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xe2f601a0 llc_sap_close +EXPORT_SYMBOL net/mac80211/mac80211 0x00b1a1ae ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x05d44361 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x087461d8 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x11718c3e ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x164b8b62 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x16db0956 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1749293d ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x1942c068 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x1c9896e8 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x1f131061 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x1fea8280 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x204b10d3 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x21162113 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x21d8f9c4 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x24ab552d ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2c00eba8 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x2e2568f9 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x31ea1269 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x329533aa ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x35065fb9 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x3728a687 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x3cee7c66 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x44bc70cd ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x47263887 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x57cb07e2 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x57f09545 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x5f8eada6 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x65e6f2f0 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x6d97f8e9 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x7008cb26 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x76f403eb ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7b0bcab4 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x7eaf62b8 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x83f7a3bb ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x85f1c2e6 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x86e32ff6 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x8872309f ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x88c7b991 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x8a020887 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x8b6679a0 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x8b8b0e6a ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x8e33303d ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x94300332 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x991ea28f ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xa08e52e0 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xa14a5d58 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa27d740f ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xaa341a1e ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xad6fa226 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xad7e1872 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xb377cf4a rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xb384e2ac ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xb3d08e50 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xb521611c ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb71c9105 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb7f09ace ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xbbec56ca ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xbc4c857e ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xc16a4d70 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xc52290df ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xc5b1c069 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xcea74b19 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xd61cc267 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd9b34cbb ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xe4bebf10 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xe5da4029 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xe942bdef ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xea3f6b41 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xed802c9c ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xede28d32 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf26ce93a ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf344c5d9 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xf3f0ae6a ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf426098f ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xf5035b2d ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfb7b61d3 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xfc584db7 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xfd7ea284 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x049f53ab ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x0cea0f24 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x1b1eec85 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x356fff35 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x6433d9b9 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x6e8e2726 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xb448a79e ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xd7531cb3 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x16cce436 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2886635c register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2b680add ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2c998861 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3227a5ee register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3e8bf3aa ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x630235c1 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7a8f6f74 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8ab4ef9c unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x915510ad ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa8e5c23e ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xea5f7bb4 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeed7c048 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf835433b ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x1f124abf nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6ddf6845 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xd988fc42 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x266e4cc1 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xa6284c78 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xb4cdc0bb nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xcf46b9ee nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0xe9d3586f nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xf9df43e7 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/x_tables 0x3ee68e8a xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x7be9c616 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x9fd03c41 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xa5986977 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xb095aa2e xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xc7e84b6c xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xcbd689cd xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd7cc01f6 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xda37ffdc xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xe4706362 xt_register_match +EXPORT_SYMBOL net/nfc/hci/hci 0x1cff389c nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x209b99c8 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x25ff0fbf nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x2cc78677 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x3180add1 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x48d71505 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x50dfbd30 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x6a5495ed nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x72f2907b nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x7d06894f nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x91c84d2b nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x9a24d286 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xa4cb4387 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xb0db229a nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xb911c174 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xbfaa7660 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xc006eaf7 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xc7991ad7 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xee0e2f2e nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xf8c38fd4 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xfed139a1 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x042bd545 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x06649b06 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x0be1e3c3 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x0ca9e059 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x101ebd6c nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x103ffbd8 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x12014608 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x1d2d4d0d nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x35c10422 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x40524bd4 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x421ad6c5 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x48cf4659 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x5a667e80 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x60495f73 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x84dcabc8 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x870e4f67 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x8bf1c36b nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x8d8fe7ab nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xa2f79eff nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xa400e6e5 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xb03eaf3e nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xb1067eca nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbfc2508e nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xc04e2b02 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xce53a7b8 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xd97f2fef nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xe006bbf2 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xf49dfe54 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nfc 0x141a8d69 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x23f55bf8 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x2ae1bda2 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x2f3b3312 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x38be9a9f nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x6c022266 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x6ebce7e8 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x84ee7915 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x8b759940 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x94074cc8 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x94878a0c nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x96b621d0 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xa2348e43 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xa3f4cad1 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xac409a2d nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xb0476f1f nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xb34b012f __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xbe5dd252 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xcc3a6b0b nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xdd11d3df nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xe04c295c nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xe2ec2697 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xf92cee69 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xfac0f9a5 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc_digital 0x1ede32f4 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x2f3b5bf7 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x83b3b724 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xab3e0a18 nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x0ac6f60b pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x4a38aeed pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x4dfef25b pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xa1606cb1 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xb8c7bf3c phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xc3839ad4 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xe0f89d75 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xe38b020f pn_sock_get_port +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0eba2be2 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x133e7e26 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x219a4f8b rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x258d6ee5 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x40dac9af rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x484b81c7 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x565aa550 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5cdda7f0 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x62fca5a6 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x852afa98 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa4bd4eb8 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xaa791596 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb4d128b8 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xcbc4b5ba rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe46e1442 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/sctp/sctp 0x64a94dfb sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x08e88aff gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x34d43ba2 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xa84a11b4 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0xcbc5ca80 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xdda0ea82 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xe7845c80 svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0x933ba2bc wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xdd793f66 wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x00528a0a cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x017d2dc8 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0c76d525 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x0e204106 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x0e9f5743 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x112c4aaf ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x114aecfd cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1b1cb647 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1cff7ff4 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x25e9a761 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x27692be9 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x297376a1 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x3059e983 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x3112227a wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x33f7d9e9 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x3910641f wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x39beda6a cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x39bef092 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x3afa0794 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x3fdb00e1 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x42de5f5f cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x47b5ad0c regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x48f9d9de wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x5bc165f7 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x6036bb4a cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x607e5cd5 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x615492e2 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x658dda1f cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6718f482 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6aefa24e __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6f7efd7f freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x708225a2 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x72324958 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x741d9685 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x7bb80281 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x7de3693c 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 0x7fe2460d cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x81518891 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x86d7ce15 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x8849bd65 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8e6a4ada cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x9047d6bc __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x90e86475 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x92940ba7 cfg80211_chandef_usable +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 0xa2553df6 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xa68b395d cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xa86de28a cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xa8d0f719 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xabce9a4e cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xb1885bb4 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb1d7ef43 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xb3d144f3 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xb498da3c ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xb668c38e cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xb93cd998 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xbb9f1e15 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xbd80144f cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xc09ae5b0 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xc52534e8 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc71084bb ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xd67eedb2 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xd6a49bbe cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd9f96afd wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xda0c1373 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0xda7d0337 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc6ee789 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xdf48ceba cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xdf56bd8d cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xe057fc1a cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xe239ebbe __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe5fe66ec cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xe84af49a cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xef12c95a cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xef8f9331 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf0af0fac cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf0ed1a75 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xf2416948 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xf2d14d68 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xf80c17d3 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf8fc8a19 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfb3a13e0 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xfb6c5377 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x13ebe816 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x4ca56725 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x9efef89c lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xb3c98804 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xbfe4b908 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xdc8f2ef8 lib80211_get_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0xc7ec36a0 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xbb118afb 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 0x25d47011 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 0x5a53b1ed snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x5fc7bee9 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 0x7194271c 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 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 0xb51847ec 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 0x0f460fd4 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x02680449 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x3586ffb4 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3b143dbc snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x3d93e4b6 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x3e2940b9 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x44a788a3 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x46fb6f42 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x4928e668 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x54060c12 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x56cfeca7 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x5f398183 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x61925b8b snd_card_new +EXPORT_SYMBOL sound/core/snd 0x627eae2d snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x7462012a snd_register_device +EXPORT_SYMBOL sound/core/snd 0x7535d28b snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x7efb2a26 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x8238e819 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x852b5672 snd_cards +EXPORT_SYMBOL sound/core/snd 0x87b481fc snd_card_register +EXPORT_SYMBOL sound/core/snd 0x895bab63 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 0x920cfd70 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x9466bc29 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x96f9ce4f snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x97441622 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x9aadbd1f snd_device_free +EXPORT_SYMBOL sound/core/snd 0x9ddb98af snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x9e1f877b snd_ctl_register_ioctl +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 0xa9888049 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xac54bc27 snd_ctl_free_one +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 0xbeb123fe snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xc09440b2 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xc32f58b7 snd_device_new +EXPORT_SYMBOL sound/core/snd 0xc5532152 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xc81fcd1c snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xce004826 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xd1a1076b snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xdc96f3a6 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xe41398f5 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xea53493f snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xec08f554 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xf3706e46 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xf38a1feb snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xf5c7772a snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xfb5a09f8 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xff34d3d3 snd_jack_new +EXPORT_SYMBOL sound/core/snd-hwdep 0xc4904b48 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x044fda0e snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x09b4dd03 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x0d803be2 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x110c9d67 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x113d7cc0 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x1556e68d _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1d8d6532 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x25734f90 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x30ea40aa snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x34e706fd snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x37509b6c snd_pcm_lib_preallocate_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 0x3b91f3af snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x41a3642c snd_pcm_new_internal +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 0x5164de71 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x51824dd4 snd_pcm_lib_free_pages +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 0x57105172 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x57aa70fa snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x5aba41e2 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x60118fc7 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x609d03cb snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x61d42bc5 snd_pcm_limit_hw_rates +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 0x71cb3693 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x7387a3ad snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x76faf7ab snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x7ec510c2 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x80a95781 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x89afc804 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x8a913c72 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x8db03a6c snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x8db91911 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x8eba94c7 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9cc680ca snd_pcm_hw_constraint_ranges +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 0xae147885 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 0xc3130b5a snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xc98a2819 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xccf0f604 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xcdaef3bf snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0xd38e485a snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xd4cc8b09 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0xe0e71add snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xe2a5db8a snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0xe477f713 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe8e20df0 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xf50cc4ea snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xf77c2b2d snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xfaaa794b snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1cb67235 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x20a75826 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x363d116f snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3f3edf0a snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x44502821 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x51abc652 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7222911d snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x79ac73aa snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7da2b3e3 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x86d9ea4c snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x945d1f93 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9602b7ba snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x98495012 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x99095aac snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa1918b0a snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa67f845a snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa8c7edb3 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa9c5676a __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdbfa4a35 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-timer 0x04c85697 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x14c6842d snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x23981a70 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x23b2d23f snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x58f5c385 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x6d6ac86e snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x7dde1309 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x92db6728 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x94027433 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xc024d169 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xd60de471 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xeffbbf72 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xfed791dc 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 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 0x33a7892a snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x392d1614 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4b95bdcc snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x67bcff2e snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x68b5359e snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8ec01ce8 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb9b45989 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xca19c96e snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xffd2d748 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1e9aa297 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 0x32a0c188 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4236e402 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x441b0ec1 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6f7298db snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7651f43d snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x90212abb snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbd808f78 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xffa37f81 snd_vx_check_reg_bit +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 0x1bb78d88 amdtp_stream_pcm_pointer +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 0x40a3dfd8 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x41a005c8 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x41ca8f0a amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x45afb808 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5cfdf893 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x62fd87ad amdtp_stream_get_max_payload +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 0x8d9c4e0f amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x908bc443 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98aa7aad avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9dd5f70a amdtp_stream_destroy +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 0xca41ca5c amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd9a7c262 cmp_connection_break +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 0x784015cd snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xf4a740ec snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x08d2da7b snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x17e2d9e4 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x31b7bfdf snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3d7b99fd snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4d7e7c23 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x506abe07 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x69daa626 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc003b66b snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x0a4f19d5 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x0f1a513d snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x16788eac snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x6985fb5b snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x80db4e4c snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xdca5fe21 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa180b2c2 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xb021b7f9 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc93da30a snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xcbc21d76 snd_akm4xxx_init +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 0x09ccab91 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x323c11d7 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x90980881 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa7125724 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xcabe68cd snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xeb3b5d7b snd_cs8427_iec958_active +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 0x081c4f8b snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0f3aa9d2 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x157c8935 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x23910779 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x27195ea5 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3ae364cd snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb02254f8 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb7585d03 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbb76d817 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xebb89c10 snd_sbdsp_create +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4669307d snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4a46007a snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4ae28489 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x580e39b1 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6aa11926 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6b4421fa snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x719251c6 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x747df926 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8f75df23 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa97042e6 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xad34a069 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xae40d48f snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaee9c284 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdd01c494 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xef177d98 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf4657997 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf76b152b snd_ac97_suspend +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0fa18fd7 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7394eea0 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7599b27a snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xbb55c85e snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xbd26cac3 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc569c05a snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xcb78ac49 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd3c523d0 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe929d98e snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xcf45a375 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xf5aaa7ac snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xf82c8680 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0a0e92c6 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x105e8f15 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1e20ea10 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x254b225c oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x266e2a57 oxygen_pci_probe +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 0x4f2ebb3b oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x522ba89e oxygen_pci_remove +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 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 0xc483dc0c oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe170828b oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x19a7efa1 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x245972ea snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xa5ef2b2d snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb09ba711 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb0b00e5c snd_trident_alloc_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x6e454614 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xc9f071d6 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/snd-soc-core 0xdd27a273 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 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 0xe5f79378 snd_usbmidi_create +EXPORT_SYMBOL vmlinux 0x00093486 flush_tlb_page +EXPORT_SYMBOL vmlinux 0x0056b6c6 netif_rx +EXPORT_SYMBOL vmlinux 0x005ebfca arp_create +EXPORT_SYMBOL vmlinux 0x0067533f request_firmware +EXPORT_SYMBOL vmlinux 0x007640e3 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x0083e6b8 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x00998900 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x00cbb38b phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x00d0ffc4 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x00d51e3e dcache_dir_close +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00ff98fb of_find_property +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x01075ee1 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x012b47bb dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x013010a1 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x0188a0ad qdisc_list_del +EXPORT_SYMBOL vmlinux 0x0196aee7 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x019d8440 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x01e03911 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x01e26c06 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x020a804a generic_permission +EXPORT_SYMBOL vmlinux 0x021712e1 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x022f3e5b pci_read_vpd +EXPORT_SYMBOL vmlinux 0x0232266d skb_free_datagram_locked +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 0x02a3cf9e is_bad_inode +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02d66f12 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x02e048b1 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x02e44e20 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x02e90b4f __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ebc2ac inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02fd2f0d pci_iounmap +EXPORT_SYMBOL vmlinux 0x03091ef4 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x0315561b cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x031849b6 igrab +EXPORT_SYMBOL vmlinux 0x031fb72c of_get_pci_address +EXPORT_SYMBOL vmlinux 0x032e17cf free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x03345456 param_ops_byte +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x034e9827 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x035b356e bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036fd127 of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037c632b skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x0380e64a skb_pull +EXPORT_SYMBOL vmlinux 0x0393029e sock_kfree_s +EXPORT_SYMBOL vmlinux 0x03a1e4ae rtnl_unicast +EXPORT_SYMBOL vmlinux 0x03a35d91 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x03d169b1 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x03d8c04f blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x03ec3d41 __register_chrdev +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0402833f netdev_lower_dev_get_private +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 0x042e656c padata_do_serial +EXPORT_SYMBOL vmlinux 0x0436d2f2 of_device_register +EXPORT_SYMBOL vmlinux 0x04397bc4 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x04441472 ps2_command +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x046035f2 vfs_mknod +EXPORT_SYMBOL vmlinux 0x0471f08f inet_release +EXPORT_SYMBOL vmlinux 0x0483bed0 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04997316 poll_initwait +EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x04c943df dev_addr_del +EXPORT_SYMBOL vmlinux 0x04cdc558 vfs_setpos +EXPORT_SYMBOL vmlinux 0x04e4d328 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04f1041d lockref_get +EXPORT_SYMBOL vmlinux 0x04fdad81 of_match_node +EXPORT_SYMBOL vmlinux 0x04ff918d inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x0505c181 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x0505e591 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x05065249 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x050e9205 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x0511a15b vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x05440e69 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x054d242d dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x054e8377 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x05540813 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x056240cc __dax_fault +EXPORT_SYMBOL vmlinux 0x058575e6 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x05859203 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x05a1ef52 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05b7303e __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x05bb51ae locks_copy_lock +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0618b081 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06380989 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x064e1201 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x065eb13b devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x066954d1 of_translate_address +EXPORT_SYMBOL vmlinux 0x066d9502 freeze_bdev +EXPORT_SYMBOL vmlinux 0x0675c7eb atomic64_cmpxchg +EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x0683e45b unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x0695403f mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x0695c4f7 force_sig +EXPORT_SYMBOL vmlinux 0x069a1a83 flow_cache_fini +EXPORT_SYMBOL vmlinux 0x06a07f25 dcache_readdir +EXPORT_SYMBOL vmlinux 0x06accbae dquot_release +EXPORT_SYMBOL vmlinux 0x06b39948 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x06b6f4dd bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x06c8683c passthru_features_check +EXPORT_SYMBOL vmlinux 0x06c9100f udp_proc_register +EXPORT_SYMBOL vmlinux 0x06dc3213 fget +EXPORT_SYMBOL vmlinux 0x06df2692 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x070e3183 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0741812a vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x07583a7e param_set_int +EXPORT_SYMBOL vmlinux 0x07609635 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x07626fa3 iget5_locked +EXPORT_SYMBOL vmlinux 0x0769a03c scsi_ioctl +EXPORT_SYMBOL vmlinux 0x076bc248 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x078306aa xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x078c7a91 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x078db21a get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x078e0e1e bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07e8c457 proc_mkdir +EXPORT_SYMBOL vmlinux 0x07ff3218 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x080dbf99 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x08163050 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x081f582e pcim_iomap +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x086ab93e pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x086d8cdd irq_stat +EXPORT_SYMBOL vmlinux 0x0870dc36 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x08b76983 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x08c038eb ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x08d48f9c put_io_context +EXPORT_SYMBOL vmlinux 0x08df9457 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08f4d452 __napi_complete +EXPORT_SYMBOL vmlinux 0x0915476f pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x093307f6 blk_init_tags +EXPORT_SYMBOL vmlinux 0x09532136 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x095df0af of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x095e56e5 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x0982551c nla_put +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09ac1d37 kernel_write +EXPORT_SYMBOL vmlinux 0x09bbbb91 trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x09be9de9 __scm_send +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c62190 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x09c67afb flex_array_get +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09cd20a1 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x0a04b61e devm_iounmap +EXPORT_SYMBOL vmlinux 0x0a13aa18 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x0a208579 clk_get +EXPORT_SYMBOL vmlinux 0x0a257252 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2e75fc xattr_full_name +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a384bd3 dquot_transfer +EXPORT_SYMBOL vmlinux 0x0a3f1c6b mpage_readpages +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a4a1ebd scsi_host_get +EXPORT_SYMBOL vmlinux 0x0a599232 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x0a601280 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x0a66ba01 set_posix_acl +EXPORT_SYMBOL vmlinux 0x0a6fdf96 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x0a7b3d8f sys_imageblit +EXPORT_SYMBOL vmlinux 0x0a9633fe local_flush_tlb_page +EXPORT_SYMBOL vmlinux 0x0a995fff __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae26025 arp_send +EXPORT_SYMBOL vmlinux 0x0afc29b9 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b100c16 default_llseek +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b3a1e8c filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b890366 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x0baea183 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bbdc0a8 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x0bc374ea __block_write_begin +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd8d60a dev_uc_flush +EXPORT_SYMBOL vmlinux 0x0be8caa3 sock_init_data +EXPORT_SYMBOL vmlinux 0x0bee3702 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x0bf5b886 vfs_rename +EXPORT_SYMBOL vmlinux 0x0c00725e qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x0c0c76af scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x0c12e626 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x0c135248 unregister_netdev +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c601e9f tcf_register_action +EXPORT_SYMBOL vmlinux 0x0c62997a call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x0c6ab5af key_invalidate +EXPORT_SYMBOL vmlinux 0x0c7223f3 d_find_alias +EXPORT_SYMBOL vmlinux 0x0c7545f3 scsi_register +EXPORT_SYMBOL vmlinux 0x0c7c81dc cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x0c9b6089 nvram_get_size +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca9eb46 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cc9bfc1 inode_init_once +EXPORT_SYMBOL vmlinux 0x0cdf47ba __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x0cec6c32 __get_user_pages +EXPORT_SYMBOL vmlinux 0x0d0484cc lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x0d219985 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x0d333d71 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5c4a0f mutex_unlock +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d678dff elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x0d8d1c56 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x0d980dbd __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dd3e9ab ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x0dd6c935 nvm_register +EXPORT_SYMBOL vmlinux 0x0dd848ff vfs_link +EXPORT_SYMBOL vmlinux 0x0de7785c km_policy_expired +EXPORT_SYMBOL vmlinux 0x0e2b9f9b __breadahead +EXPORT_SYMBOL vmlinux 0x0e3ce7e8 param_get_charp +EXPORT_SYMBOL vmlinux 0x0e426507 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e6de253 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x0e6e5271 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x0e70d39b nonseekable_open +EXPORT_SYMBOL vmlinux 0x0e7ced25 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x0e7ff8d0 km_new_mapping +EXPORT_SYMBOL vmlinux 0x0e8cd3d0 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0ead84da iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ec8a72c blk_make_request +EXPORT_SYMBOL vmlinux 0x0edb4681 irq_to_desc +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0ef8741a devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0efd4ea8 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x0f0b7a97 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x0f275ef2 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL vmlinux 0x0f28cfda sock_i_uid +EXPORT_SYMBOL vmlinux 0x0f2cfbe6 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x0f3fc12b pcie_get_readrq +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 0x0f7a1f8d sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x0f87e158 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x0fa3bcf7 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x0fabc234 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb76561 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x0fee16b0 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x0ff201c1 register_filesystem +EXPORT_SYMBOL vmlinux 0x1029e9d6 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x1031c324 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x104a88f1 d_add_ci +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x107216a9 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10933abd sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x109a0d00 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x109c8b91 dm_io +EXPORT_SYMBOL vmlinux 0x109da4fa fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x10a5f86a tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x10aacc95 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x10b3a4d2 input_release_device +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10f7fc3e mmc_get_card +EXPORT_SYMBOL vmlinux 0x10fa1549 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x11038dfa kernel_accept +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x1145067f param_ops_bint +EXPORT_SYMBOL vmlinux 0x114c86ed block_read_full_page +EXPORT_SYMBOL vmlinux 0x1152d265 tcp_connect +EXPORT_SYMBOL vmlinux 0x115c360b blk_run_queue +EXPORT_SYMBOL vmlinux 0x11627770 __lock_buffer +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x116c2d53 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x119863a8 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11a87a81 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x11ac6a97 complete_request_key +EXPORT_SYMBOL vmlinux 0x11c2c579 dev_close +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x12005ab4 netif_napi_del +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x12135f21 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x121b4e4b memremap +EXPORT_SYMBOL vmlinux 0x122b9daa tty_port_put +EXPORT_SYMBOL vmlinux 0x1249cd2a param_ops_string +EXPORT_SYMBOL vmlinux 0x125469ed __vfs_write +EXPORT_SYMBOL vmlinux 0x12577dad serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x127262ef blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12cce028 clear_user_page +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12e450d6 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x12e9c0eb xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x12f66604 vfs_statfs +EXPORT_SYMBOL vmlinux 0x1315893f xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x131a7da3 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13310c5f devm_ioremap +EXPORT_SYMBOL vmlinux 0x13426b7e tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x13515f17 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x135388dc fput +EXPORT_SYMBOL vmlinux 0x135e1821 blk_peek_request +EXPORT_SYMBOL vmlinux 0x1361f3c9 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x136ba067 seq_escape +EXPORT_SYMBOL vmlinux 0x13974e1c tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x13b1e9cd security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e38fd6 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f63fc7 set_binfmt +EXPORT_SYMBOL vmlinux 0x140745c2 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x1407c6e7 kmap_prot +EXPORT_SYMBOL vmlinux 0x1409ee66 phy_device_create +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x1424b777 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x142b94bb d_path +EXPORT_SYMBOL vmlinux 0x143c6c70 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x144b37fd dm_kobject_release +EXPORT_SYMBOL vmlinux 0x1457b592 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x146588ad inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x146a5568 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x14775a70 to_ndd +EXPORT_SYMBOL vmlinux 0x147e66eb dev_mc_init +EXPORT_SYMBOL vmlinux 0x14834822 __invalidate_device +EXPORT_SYMBOL vmlinux 0x14bd0021 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d3de54 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x14e1db30 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x15126dff copy_from_iter +EXPORT_SYMBOL vmlinux 0x1513f5c0 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x151a0ea2 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x152166b1 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x152864ec bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x152a1902 seq_printf +EXPORT_SYMBOL vmlinux 0x15381759 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x15399474 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x153d438e sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x15974dfc filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x159a0cb6 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x159af9c6 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x159f40bc d_lookup +EXPORT_SYMBOL vmlinux 0x15a96210 request_key +EXPORT_SYMBOL vmlinux 0x15b03844 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x15b44a57 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bb5eec scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x15d178af vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x15fd99ff drop_super +EXPORT_SYMBOL vmlinux 0x160e9157 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x1617f2de of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x161d0033 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x1634d340 param_get_ullong +EXPORT_SYMBOL vmlinux 0x164b3461 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x16540bbc __cmpdi2 +EXPORT_SYMBOL vmlinux 0x165410d9 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x16621e8b put_filp +EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete +EXPORT_SYMBOL vmlinux 0x168cf911 nla_reserve +EXPORT_SYMBOL vmlinux 0x169a29ab __i2c_transfer +EXPORT_SYMBOL vmlinux 0x16acc8e4 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x16cacf44 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x16cc3d84 vme_slot_num +EXPORT_SYMBOL vmlinux 0x16cc52c2 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x173e979c skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x1746b4c8 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x174f1613 powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0x17541f84 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x1755a34b __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x177403d1 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x178d396d generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x179b2fa1 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x179fb3aa pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x17a7e7a5 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x17aa156a __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17d48c74 bdget +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17e662dd security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x17f158c0 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17fa3a3d free_task +EXPORT_SYMBOL vmlinux 0x1809afa2 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x180bc1b8 write_one_page +EXPORT_SYMBOL vmlinux 0x1817eb36 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x1823ca14 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x18251459 read_cache_pages +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183f69dd dev_change_carrier +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 0x18583859 sock_create_kern +EXPORT_SYMBOL vmlinux 0x185ab5b1 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189e4702 sync_inode +EXPORT_SYMBOL vmlinux 0x189ec6a5 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x18c23597 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x18cf3a4e con_copy_unimap +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f726a7 __bread_gfp +EXPORT_SYMBOL vmlinux 0x18f84ca9 lock_rename +EXPORT_SYMBOL vmlinux 0x190bec03 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x194b1959 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x197c41d5 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x1989dec4 keyring_search +EXPORT_SYMBOL vmlinux 0x19973446 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19b5e6c9 simple_rename +EXPORT_SYMBOL vmlinux 0x19ba1dc7 fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c612c1 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x19e10373 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x19e83c42 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x19f9dd8a sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x1a31d706 update_region +EXPORT_SYMBOL vmlinux 0x1a32e4ee param_ops_invbool +EXPORT_SYMBOL vmlinux 0x1a3a6f12 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x1a4ab6d5 icmpv6_send +EXPORT_SYMBOL vmlinux 0x1a628082 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x1a8a9a7c md_check_recovery +EXPORT_SYMBOL vmlinux 0x1a8b400b pskb_expand_head +EXPORT_SYMBOL vmlinux 0x1aac5e0f ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x1ac68238 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x1ac93c1c user_path_create +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b166ff1 d_set_d_op +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b3b6278 switch_mmu_context +EXPORT_SYMBOL vmlinux 0x1b578bb0 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b745f61 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x1b7b5ab4 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b986a8c do_truncate +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bc6df0b ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x1bca2b59 load_fp_state +EXPORT_SYMBOL vmlinux 0x1bd824f6 setup_new_exec +EXPORT_SYMBOL vmlinux 0x1be945ba keyring_alloc +EXPORT_SYMBOL vmlinux 0x1bef31e7 sock_create_lite +EXPORT_SYMBOL vmlinux 0x1c1685da bio_chain +EXPORT_SYMBOL vmlinux 0x1c34cc25 flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0x1c612508 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x1c6eb430 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x1c79f153 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x1c79fdc9 ilookup5 +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1c9ed0dd of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x1cdc12d9 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x1cf3d720 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x1d1758fd __nla_put +EXPORT_SYMBOL vmlinux 0x1d22906e soft_cursor +EXPORT_SYMBOL vmlinux 0x1d23c3b6 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x1d329a34 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x1d42b93a phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x1d4a2280 udp_ioctl +EXPORT_SYMBOL vmlinux 0x1d4c9753 key_task_permission +EXPORT_SYMBOL vmlinux 0x1d4d5446 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x1d4d8c97 vfs_writef +EXPORT_SYMBOL vmlinux 0x1d54f07a blkdev_get +EXPORT_SYMBOL vmlinux 0x1d64a142 block_write_end +EXPORT_SYMBOL vmlinux 0x1d6771ee get_disk +EXPORT_SYMBOL vmlinux 0x1d6ea59f truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x1d760bfe dquot_alloc +EXPORT_SYMBOL vmlinux 0x1d89bc1e netdev_err +EXPORT_SYMBOL vmlinux 0x1da44037 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x1da74edb dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dcf4ea6 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1ddf281d of_phy_attach +EXPORT_SYMBOL vmlinux 0x1ddf7e6e find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x1de17680 nobh_write_end +EXPORT_SYMBOL vmlinux 0x1e25c493 inode_set_flags +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e3785d2 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x1e3b38d0 dev_uc_add +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e70d7c8 iterate_dir +EXPORT_SYMBOL vmlinux 0x1e8042e0 ns_capable +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea63ed9 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x1ea70aee scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x1eb27949 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x1ec8400d skb_queue_head +EXPORT_SYMBOL vmlinux 0x1ecb9cba skb_unlink +EXPORT_SYMBOL vmlinux 0x1f14b58e __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x1f2745fa jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x1f2f2e24 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x1f3ea267 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x1f55c095 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x1f5e6e04 of_create_pci_dev +EXPORT_SYMBOL vmlinux 0x1f770f1a pci_find_capability +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f956b90 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fdb05eb bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x1fe4d697 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x1fef4cd6 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x1ff421c1 register_netdev +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20157ea8 vme_irq_free +EXPORT_SYMBOL vmlinux 0x2023243f padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x2047096c page_readlink +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2056da10 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x206687ad cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x2068ee76 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x207a03fd blk_recount_segments +EXPORT_SYMBOL vmlinux 0x20883bde pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x2089b81e twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x208dcf3c netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x209adc22 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x20afcc58 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20cbb01a dev_deactivate +EXPORT_SYMBOL vmlinux 0x20d3be3e __bforget +EXPORT_SYMBOL vmlinux 0x20d5f387 load_nls +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20df8d67 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20fb90a6 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x21a3acd3 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e9f128 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x21ee46a2 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x21ee6a02 mem_map +EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x21f3dc15 cpm_command +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x225430af xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x226c41b4 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x226ccbd2 simple_statfs +EXPORT_SYMBOL vmlinux 0x226f82ee pci_release_region +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22bca441 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x22c393a5 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x2302fce6 of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x230fd5f5 of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0x231057c0 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x231428e2 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x2325a9b1 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x232d86a0 tty_name +EXPORT_SYMBOL vmlinux 0x2332b0d6 notify_change +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x23492b66 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x23835d57 deactivate_super +EXPORT_SYMBOL vmlinux 0x239c6afe __vfs_read +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c27b73 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x23d1bd7d jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x23d7416c truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240f7d88 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x2412059b qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24244088 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x24284cb4 tcp_v4_destroy_sock +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 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2464747f agp_copy_info +EXPORT_SYMBOL vmlinux 0x24808f97 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x248b5134 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x24a44ace __dquot_free_space +EXPORT_SYMBOL vmlinux 0x24ba4bd9 iterate_fd +EXPORT_SYMBOL vmlinux 0x24f00380 ida_init +EXPORT_SYMBOL vmlinux 0x24f36d92 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x24f6f7bf copy_from_iter_nocache +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 0x25220920 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x254a0825 mipi_dsi_dcs_soft_reset +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 0x25841b6c sock_from_file +EXPORT_SYMBOL vmlinux 0x258bb2b2 generic_update_time +EXPORT_SYMBOL vmlinux 0x2593973f iget_locked +EXPORT_SYMBOL vmlinux 0x259f3a11 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x25a40e70 phy_connect +EXPORT_SYMBOL vmlinux 0x25c05fd3 sys_copyarea +EXPORT_SYMBOL vmlinux 0x25dbaffe finish_open +EXPORT_SYMBOL vmlinux 0x25e60b77 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25ea0ea6 vm_map_ram +EXPORT_SYMBOL vmlinux 0x25ee75b5 proc_remove +EXPORT_SYMBOL vmlinux 0x25f3bd2e atomic64_xchg +EXPORT_SYMBOL vmlinux 0x26016659 bio_map_kern +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x2660d842 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x26691c61 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x266a3664 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x269c15b8 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26caaf0d devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26ee328a scsi_remove_host +EXPORT_SYMBOL vmlinux 0x27268edb i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x27394890 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x273d924a dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x27476429 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x276378c5 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x276f98c6 km_state_expired +EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above +EXPORT_SYMBOL vmlinux 0x27800995 input_allocate_device +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27a01805 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c06501 netif_device_detach +EXPORT_SYMBOL vmlinux 0x27d868ab i2c_clients_command +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27e6eda0 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x2803126d sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x281f74c6 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x282dfcf8 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x28373fee param_get_long +EXPORT_SYMBOL vmlinux 0x285eca7a request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x28670c49 dev_activate +EXPORT_SYMBOL vmlinux 0x28971032 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a5424d of_get_parent +EXPORT_SYMBOL vmlinux 0x28a7beba __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x28be43b1 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x28d1cae7 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x28f784f5 __debugger_break_match +EXPORT_SYMBOL vmlinux 0x28fa7e4d nobh_write_begin +EXPORT_SYMBOL vmlinux 0x28febfa7 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x290e5a1d tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x293ab7c7 write_cache_pages +EXPORT_SYMBOL vmlinux 0x293b04e1 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x2943c788 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x2949b297 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x294ffa6e update_devfreq +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295cc367 nf_register_hook +EXPORT_SYMBOL vmlinux 0x297d5768 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x29be0072 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x29bf3b75 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x29dd788d mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x29fa0d72 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a12a41c elv_register_queue +EXPORT_SYMBOL vmlinux 0x2a17db1b forget_cached_acl +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a3fadc3 pci_bus_get +EXPORT_SYMBOL vmlinux 0x2a4abc19 dev_get_stats +EXPORT_SYMBOL vmlinux 0x2a56eedf kernel_listen +EXPORT_SYMBOL vmlinux 0x2a5bccad pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x2a864e61 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x2a8653f8 padata_start +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aaa3f8a fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ad0f505 vga_put +EXPORT_SYMBOL vmlinux 0x2af1bed4 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x2af6b457 del_gendisk +EXPORT_SYMBOL vmlinux 0x2b07c0e7 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b0d6407 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x2b1ae4b2 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x2b2479c1 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x2b27e768 set_blocksize +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b31d8d9 param_set_uint +EXPORT_SYMBOL vmlinux 0x2b4b93e2 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba4453c proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2ba7f229 dev_warn +EXPORT_SYMBOL vmlinux 0x2bb5b1d5 validate_sp +EXPORT_SYMBOL vmlinux 0x2bd1da1c devm_memunmap +EXPORT_SYMBOL vmlinux 0x2bda517e mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed +EXPORT_SYMBOL vmlinux 0x2c12bc88 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c4297df tcp_filter +EXPORT_SYMBOL vmlinux 0x2c63984f page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x2c778fcb inode_needs_sync +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2cbc5728 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x2cce6404 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x2cf37f8f sock_rfree +EXPORT_SYMBOL vmlinux 0x2d0f1bed cookie_ecn_ok +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 0x2d979a97 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x2da2a6d4 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x2da749a1 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x2db79bee phy_attach_direct +EXPORT_SYMBOL vmlinux 0x2de4250f inode_newsize_ok +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 0x2e34715a tty_port_init +EXPORT_SYMBOL vmlinux 0x2e379f77 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x2ec2e512 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x2ec3ee38 fb_blank +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2ef6495d da903x_query_status +EXPORT_SYMBOL vmlinux 0x2ef98bb1 seq_write +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f15e6eb swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x2f195053 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x2f2cac51 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f465888 init_special_inode +EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2f62750e tcp_child_process +EXPORT_SYMBOL vmlinux 0x2f64d9ec d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x2f70dde2 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x2f83296a inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x2f880a64 mach_corenet_generic +EXPORT_SYMBOL vmlinux 0x2f8a51e8 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x2f9b72e7 __sb_start_write +EXPORT_SYMBOL vmlinux 0x2fa3cd12 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x2fa8fa97 skb_push +EXPORT_SYMBOL vmlinux 0x2fab2972 local_flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fd725a6 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fff508c ip6_frag_init +EXPORT_SYMBOL vmlinux 0x300f0ab2 kset_register +EXPORT_SYMBOL vmlinux 0x3011a738 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x302223c8 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x302bc1b6 sk_capable +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x303b3150 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x303f977d mount_subtree +EXPORT_SYMBOL vmlinux 0x3065fe4d i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x30704f2e unregister_quota_format +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x307e7928 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309a1bf1 page_symlink +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b38c5e neigh_seq_next +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30c9e524 ppp_input +EXPORT_SYMBOL vmlinux 0x30e4a8df open_check_o_direct +EXPORT_SYMBOL vmlinux 0x30ea9b2b vlan_vid_del +EXPORT_SYMBOL vmlinux 0x3101d7e9 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x31022db0 skb_trim +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x310beb83 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x31171fd1 bio_add_page +EXPORT_SYMBOL vmlinux 0x312694c2 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x313dce3d phy_init_hw +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x315119b4 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x31633132 inode_change_ok +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x3176ed71 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x317e7acd bh_submit_read +EXPORT_SYMBOL vmlinux 0x3181a57d PDE_DATA +EXPORT_SYMBOL vmlinux 0x318a5b14 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31ac069f swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x31cc35a5 d_instantiate +EXPORT_SYMBOL vmlinux 0x31ce5baa i2c_release_client +EXPORT_SYMBOL vmlinux 0x31dcb4bd sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x31de0a12 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x31f4ead5 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x31feface d_set_fallthru +EXPORT_SYMBOL vmlinux 0x3201616d tty_devnum +EXPORT_SYMBOL vmlinux 0x321a34ee hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x32242b7a copy_to_iter +EXPORT_SYMBOL vmlinux 0x323420d6 key_revoke +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x3260505b tty_set_operations +EXPORT_SYMBOL vmlinux 0x32635b7b key_unlink +EXPORT_SYMBOL vmlinux 0x3283d5e4 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x329995f4 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x3304808c fb_show_logo +EXPORT_SYMBOL vmlinux 0x3316dddd dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x3328361b generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x332e60ed netlink_broadcast +EXPORT_SYMBOL vmlinux 0x332f670e n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x33330167 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x333a37df mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x3349a5fd jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x336151f3 unlock_buffer +EXPORT_SYMBOL vmlinux 0x3364ba78 sys_fillrect +EXPORT_SYMBOL vmlinux 0x3365042c inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x337d2a16 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x338096dc ip6_xmit +EXPORT_SYMBOL vmlinux 0x3380f2d2 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x338f92fd inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x33aed494 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33bf2f9c i2c_use_client +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 0x33f5c8c3 bioset_free +EXPORT_SYMBOL vmlinux 0x33fefd10 touch_atime +EXPORT_SYMBOL vmlinux 0x341b43d8 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x342e553f posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x34301d33 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x343c6b13 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x343cbdd8 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x3460bb3e of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x3463f5eb param_get_uint +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x3477be5e jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34d35ffd nf_hook_slow +EXPORT_SYMBOL vmlinux 0x34e9e769 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x34f23171 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f8dd3e fb_validate_mode +EXPORT_SYMBOL vmlinux 0x34fac9b9 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x35080e38 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x3516300c vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x352b33e3 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x353636ab security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x3538f895 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x355352fe textsearch_prepare +EXPORT_SYMBOL vmlinux 0x355977a7 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x357da1ed flush_icache_user_range +EXPORT_SYMBOL vmlinux 0x35a3b538 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b140ee devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x35c6c086 simple_lookup +EXPORT_SYMBOL vmlinux 0x35d5465a cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x35dcb2fc dev_mc_del +EXPORT_SYMBOL vmlinux 0x35dd999a ps2_init +EXPORT_SYMBOL vmlinux 0x3615dca7 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy +EXPORT_SYMBOL vmlinux 0x364d76f7 init_buffer +EXPORT_SYMBOL vmlinux 0x364f42fa mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x365e7e62 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x36a9d40b neigh_direct_output +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36c53b47 udp_set_csum +EXPORT_SYMBOL vmlinux 0x36e2ea6d nvm_submit_io +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x370bcec9 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3745f940 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x3747ab59 dst_discard_out +EXPORT_SYMBOL vmlinux 0x37532a52 downgrade_write +EXPORT_SYMBOL vmlinux 0x3760bd4b ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x37622d25 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x376df401 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x376ee77b blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x37789f59 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b7d671 netif_carrier_off +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 0x37ed76d1 simple_dname +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x381094ec blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x3831b030 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x3841aec5 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x38432ca9 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x38473977 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x384a7341 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x384e9f9b dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3894c35f md_unregister_thread +EXPORT_SYMBOL vmlinux 0x3898259c __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38ada17c bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace +EXPORT_SYMBOL vmlinux 0x38d779d8 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x38ded1af __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x38f567a3 console_stop +EXPORT_SYMBOL vmlinux 0x38fa3ba1 sock_i_ino +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x38fe245c get_agp_version +EXPORT_SYMBOL vmlinux 0x39158a17 netdev_alert +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a6d1e mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x39529fd5 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x3960df39 kmap_high +EXPORT_SYMBOL vmlinux 0x3979b0df bdevname +EXPORT_SYMBOL vmlinux 0x3983ab18 wake_up_process +EXPORT_SYMBOL vmlinux 0x399299c0 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39a3b267 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x39aaf687 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x39ae2d4b param_ops_charp +EXPORT_SYMBOL vmlinux 0x39b31bda ata_link_printk +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b9d398 lro_flush_all +EXPORT_SYMBOL vmlinux 0x39c08721 kobject_set_name +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x39d96b1f blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x39f3e9cb sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x3a13651a pci_clear_master +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a216071 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x3a4534dc cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x3a66ee2b mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x3a6ded7b skb_insert +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa15d3e starget_for_each_device +EXPORT_SYMBOL vmlinux 0x3ab7bb12 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x3abeea98 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x3ac044dc dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x3ac3c213 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x3b0752c8 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x3b1f7084 flush_old_exec +EXPORT_SYMBOL vmlinux 0x3b3877be sk_ns_capable +EXPORT_SYMBOL vmlinux 0x3b4317a4 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x3b5bbb46 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b656c04 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x3b8097af blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x3b8c1746 kthread_stop +EXPORT_SYMBOL vmlinux 0x3ba296a8 simple_getattr +EXPORT_SYMBOL vmlinux 0x3bc18610 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x3bda5f84 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x3bdc0767 get_phy_device +EXPORT_SYMBOL vmlinux 0x3be84554 key_alloc +EXPORT_SYMBOL vmlinux 0x3bf04864 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x3c29e26d tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c4ae66c qdisc_destroy +EXPORT_SYMBOL vmlinux 0x3c51abd4 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x3c538cd9 try_to_release_page +EXPORT_SYMBOL vmlinux 0x3c652b24 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3c6877c2 skb_find_text +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c85b364 of_get_address +EXPORT_SYMBOL vmlinux 0x3c9b18b5 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x3cae9680 proc_symlink +EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x3cc19f58 sock_wake_async +EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init +EXPORT_SYMBOL vmlinux 0x3ccc964c of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x3cdfb6e9 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d0e8029 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x3d1bd9b2 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x3d2e9655 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x3d59dcb2 d_alloc_name +EXPORT_SYMBOL vmlinux 0x3d5ced25 tcp_check_req +EXPORT_SYMBOL vmlinux 0x3d65ed85 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3de25e68 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x3df08960 d_move +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dfd4d24 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x3e19d5ab register_shrinker +EXPORT_SYMBOL vmlinux 0x3e298e8b __blk_run_queue +EXPORT_SYMBOL vmlinux 0x3e2c7965 redraw_screen +EXPORT_SYMBOL vmlinux 0x3e2f1f07 icmp_send +EXPORT_SYMBOL vmlinux 0x3e332670 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3ea2d293 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x3ead84d4 nf_log_trace +EXPORT_SYMBOL vmlinux 0x3eafc69a ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x3ecaa4ea generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x3ecccbe7 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x3ed76159 proto_register +EXPORT_SYMBOL vmlinux 0x3ee68a81 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f2251cb posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x3f245cfb bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x3f30010c jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x3f3f409a kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x3f412286 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x3f42107e jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4c825d nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x3f55d74b netlink_capable +EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x3f73c52e ether_setup +EXPORT_SYMBOL vmlinux 0x3f915a27 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x3fb1cf71 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x3fce76be vfs_iter_write +EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3fec910a kernel_getpeername +EXPORT_SYMBOL vmlinux 0x3ff549f1 may_umount +EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x3fffbe8b cap_mmap_file +EXPORT_SYMBOL vmlinux 0x401c011e neigh_connected_output +EXPORT_SYMBOL vmlinux 0x40239d06 ata_port_printk +EXPORT_SYMBOL vmlinux 0x4025bd71 serio_close +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x40316cc4 key_link +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405a35c5 kdb_current_task +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x40638545 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x406388c4 __scm_destroy +EXPORT_SYMBOL vmlinux 0x407bb03a ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x407c0cde ppp_input_error +EXPORT_SYMBOL vmlinux 0x4086478b pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x4089ade5 nvm_put_blk +EXPORT_SYMBOL vmlinux 0x4093333d max8925_bulk_read +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 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 0x40efe1e3 uart_register_driver +EXPORT_SYMBOL vmlinux 0x40f1ad10 tb_ticks_per_jiffy +EXPORT_SYMBOL vmlinux 0x4105abe5 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x4120b658 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x413da6c9 register_cdrom +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414acc1e netlink_set_err +EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc +EXPORT_SYMBOL vmlinux 0x41625127 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x41773edd __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x4178e54c __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x4182e40e of_find_node_by_name +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 0x419a027b file_remove_privs +EXPORT_SYMBOL vmlinux 0x41a78275 dev_set_group +EXPORT_SYMBOL vmlinux 0x41cff925 drop_nlink +EXPORT_SYMBOL vmlinux 0x41d162da serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x42150673 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421ac7ad blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x42223c62 blk_rq_init +EXPORT_SYMBOL vmlinux 0x4229dbcd of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x424fdb2c simple_unlink +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x427492d3 secpath_dup +EXPORT_SYMBOL vmlinux 0x428db4cc __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x428ecabb pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42a1ed5d dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x42b0bdd4 nf_log_set +EXPORT_SYMBOL vmlinux 0x42d07a2a pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x42d5c670 blk_start_request +EXPORT_SYMBOL vmlinux 0x42da89e6 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x42ea80dd tty_unthrottle +EXPORT_SYMBOL vmlinux 0x42f60add mmc_erase +EXPORT_SYMBOL vmlinux 0x42fce228 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430f80e1 give_up_console +EXPORT_SYMBOL vmlinux 0x4315f1d5 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x435ec09c mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x4370e238 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x43722e65 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x43759072 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x4381d1c4 md_error +EXPORT_SYMBOL vmlinux 0x4382a659 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43893297 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x438e4a2a blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43bf6be5 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x43c7eb88 d_delete +EXPORT_SYMBOL vmlinux 0x43d7b776 of_dev_get +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43fb6649 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x44062d8f netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x44247eb6 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x442e9968 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x443af3ca vme_irq_request +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x4458dc63 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x445d5e1a param_array_ops +EXPORT_SYMBOL vmlinux 0x446af823 follow_pfn +EXPORT_SYMBOL vmlinux 0x448c8a2e ppp_dev_name +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44d63a11 dump_skip +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x4500e671 skb_append +EXPORT_SYMBOL vmlinux 0x4502ad6f param_ops_int +EXPORT_SYMBOL vmlinux 0x45211128 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x45246788 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x45345182 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45421a4b pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x454de104 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x456db7e5 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x4571ac81 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x4576d04b tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45813a06 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x45829f6b simple_transaction_read +EXPORT_SYMBOL vmlinux 0x4582d906 dev_err +EXPORT_SYMBOL vmlinux 0x459f7138 __register_nls +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45a8ece7 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x45b1ab18 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x45c1934e inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x45c4ae5b netdev_update_features +EXPORT_SYMBOL vmlinux 0x45e03c8d of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock +EXPORT_SYMBOL vmlinux 0x4616e806 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x462125c7 do_splice_to +EXPORT_SYMBOL vmlinux 0x462345e1 xmon +EXPORT_SYMBOL vmlinux 0x4629d33a param_set_short +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x463d605f skb_pad +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x466e6f3c of_node_put +EXPORT_SYMBOL vmlinux 0x4679c200 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x46a0dd95 dentry_unhash +EXPORT_SYMBOL vmlinux 0x46b7a432 param_set_bool +EXPORT_SYMBOL vmlinux 0x46c3e659 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x46cf9f99 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46f0e0d1 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x4709259b input_reset_device +EXPORT_SYMBOL vmlinux 0x470a22d2 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x4728ecfc lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x47608718 fence_init +EXPORT_SYMBOL vmlinux 0x476f0172 simple_setattr +EXPORT_SYMBOL vmlinux 0x4788ffaa dev_crit +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a9ced7 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x47b56e97 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x47bd041a security_inode_init_security +EXPORT_SYMBOL vmlinux 0x47d4f65b sock_no_bind +EXPORT_SYMBOL vmlinux 0x47d89bfe mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x47f02188 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x47f2c049 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x48231385 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x482ade83 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x482c4f1a security_path_rename +EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x488389ea of_device_alloc +EXPORT_SYMBOL vmlinux 0x48a771c5 cpu_core_map +EXPORT_SYMBOL vmlinux 0x48af2773 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48baf4bf devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x48c34b69 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x48d5ed92 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x48e22a3b page_waitqueue +EXPORT_SYMBOL vmlinux 0x48f07884 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x48f33382 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x4903a416 wireless_send_event +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4905d5b9 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x492183c5 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x49569282 dquot_resume +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x495f6252 inet_listen +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x497181a7 input_open_device +EXPORT_SYMBOL vmlinux 0x4974218c reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x497dad12 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49c077d3 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x49d3c37b param_set_bint +EXPORT_SYMBOL vmlinux 0x49de912b iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x49eddc9f vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x49f1d22f inet_sendpage +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x49ff6fb6 tty_port_close +EXPORT_SYMBOL vmlinux 0x4a198645 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x4a23a61c napi_consume_skb +EXPORT_SYMBOL vmlinux 0x4a7c8601 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4ac6cd99 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ad30bb2 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x4adef843 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4aff9310 bd_set_size +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b0d6af8 put_cmsg +EXPORT_SYMBOL vmlinux 0x4b12cdba file_update_time +EXPORT_SYMBOL vmlinux 0x4b1a8e09 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b2264c2 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x4b22ee96 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x4b2b8b75 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x4b3efc27 write_inode_now +EXPORT_SYMBOL vmlinux 0x4b3fef59 end_page_writeback +EXPORT_SYMBOL vmlinux 0x4b555396 mpage_writepages +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b771ddf uart_resume_port +EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove +EXPORT_SYMBOL vmlinux 0x4b86ebe4 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat +EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x4bd106b6 security_path_chmod +EXPORT_SYMBOL vmlinux 0x4bd6f019 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x4bf57069 bioset_create +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c13ea94 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c2bc9d2 _dev_info +EXPORT_SYMBOL vmlinux 0x4c2e9a8e genphy_resume +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c44e56a phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x4c45dcbb copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x4c4c6871 save_mount_options +EXPORT_SYMBOL vmlinux 0x4c6d65b5 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x4c944797 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x4c9ff025 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x4ca2e09b netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x4cc85d11 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x4cd0d2e4 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x4cd3018c simple_rmdir +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4d1f7960 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x4d203ce4 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d3d9cf1 set_anon_super +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d53811e cfb_imageblit +EXPORT_SYMBOL vmlinux 0x4d71004a __cpm2_setbrg +EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize +EXPORT_SYMBOL vmlinux 0x4d872831 misc_register +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9c6901 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x4da526ca iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x4db7bfdb neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x4dc1ab73 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x4dc22608 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e0a8352 d_alloc +EXPORT_SYMBOL vmlinux 0x4e1a6055 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x4e1b26c0 skb_checksum +EXPORT_SYMBOL vmlinux 0x4e24c953 phy_disconnect +EXPORT_SYMBOL vmlinux 0x4e3267ca find_vma +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e68a052 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e7102da get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum +EXPORT_SYMBOL vmlinux 0x4eabc760 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x4edab55b nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x4ef643ff eth_header_cache_update +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 0x4f5a8033 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f6393bb filemap_flush +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f881a8f mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x4f929fec phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x4f9b9393 scsi_print_command +EXPORT_SYMBOL vmlinux 0x4f9c6242 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x4fb11287 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x4fb20b1f sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x4fbcfbe7 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x4fbe1370 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe1e3fa tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x4fe5e83c udp_prot +EXPORT_SYMBOL vmlinux 0x4fe835a1 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x4fe99583 atomic64_dec_if_positive +EXPORT_SYMBOL vmlinux 0x4ffd0fc2 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x500e2586 __brelse +EXPORT_SYMBOL vmlinux 0x50268edf inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x50670490 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x506e33ca path_nosuid +EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit +EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x50bda3d2 kmap_atomic_prot +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50f4f4f6 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x50fa1920 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x50fc4dc1 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x513e4be8 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x515e24a7 flush_instruction_cache +EXPORT_SYMBOL vmlinux 0x517b7c80 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x517de35d fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x51b9972b inet6_release +EXPORT_SYMBOL vmlinux 0x51c94cce xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x51db877f tcp_read_sock +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51f64dce netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x527d91e0 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x529fc891 proc_set_size +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52bfe9db inode_get_bytes +EXPORT_SYMBOL vmlinux 0x52c212f3 sk_alloc +EXPORT_SYMBOL vmlinux 0x52d61d59 tty_register_device +EXPORT_SYMBOL vmlinux 0x52d9d932 inet_put_port +EXPORT_SYMBOL vmlinux 0x532a4adb locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x535c765e agp_find_bridge +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x5362feb7 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x53661c94 dquot_acquire +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53b12bb0 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x53c7cc46 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x53d2dcb8 get_task_io_context +EXPORT_SYMBOL vmlinux 0x53d38d14 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x53d3f092 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x53d5c966 phy_detach +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x540c5f8d jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x5427daf1 seq_release +EXPORT_SYMBOL vmlinux 0x542bf40b of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x542e7c41 input_close_device +EXPORT_SYMBOL vmlinux 0x543968ff pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5442f29c do_splice_from +EXPORT_SYMBOL vmlinux 0x54506420 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x545d93e6 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x54732131 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x549a4003 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54d2c8d6 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x54e508d3 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x54e59d07 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f579cb nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x54f92c49 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x551282eb make_bad_inode +EXPORT_SYMBOL vmlinux 0x5517c61c mach_twr_p1025 +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5521badb xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x5531a6cf sock_sendmsg +EXPORT_SYMBOL vmlinux 0x5532b88b nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x55411426 pci_request_regions +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 0x556a2ef2 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x5571e2e6 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table +EXPORT_SYMBOL vmlinux 0x557ec47f nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x5591e7e7 __page_symlink +EXPORT_SYMBOL vmlinux 0x5596d48d mount_nodev +EXPORT_SYMBOL vmlinux 0x55a20ab0 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x55c2774b clear_nlink +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55f28362 d_genocide +EXPORT_SYMBOL vmlinux 0x55fbca36 dma_direct_ops +EXPORT_SYMBOL vmlinux 0x561c3e51 security_path_mknod +EXPORT_SYMBOL vmlinux 0x562051bd posix_lock_file +EXPORT_SYMBOL vmlinux 0x5631d159 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x5631d6e0 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x5644dad6 scsi_init_io +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x569f3946 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x569f4254 mutex_trylock +EXPORT_SYMBOL vmlinux 0x56c2d94c dquot_drop +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56e30460 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x56e3e7c5 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x57158b53 scsi_execute +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57506de8 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x577b0c51 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x5784fc6d ata_print_version +EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x57ae095f decrementer_clockevent +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57d998d0 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x57dcb931 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x57ea66b8 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x57eaf286 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x57f21715 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x57f80563 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x58084828 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x5858ceb8 __f_setown +EXPORT_SYMBOL vmlinux 0x58623807 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58971763 pci_get_class +EXPORT_SYMBOL vmlinux 0x58a82504 __ps2_command +EXPORT_SYMBOL vmlinux 0x58ab069d kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f19e08 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x591241d0 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x591a17e1 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x592836d9 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x5932b12d clkdev_drop +EXPORT_SYMBOL vmlinux 0x593bd7b2 __init_rwsem +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x59666129 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x597f1e25 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x59862de0 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59a976ae mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59ab072d sync_blockdev +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59b8c8d4 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a1ab684 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x5a203947 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x5a571d9b dquot_operations +EXPORT_SYMBOL vmlinux 0x5a686d6f jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x5a8cd89b xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x5a9e0d85 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x5aa611bc unregister_binfmt +EXPORT_SYMBOL vmlinux 0x5ab7eb0b pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x5ac89c8b pagecache_write_end +EXPORT_SYMBOL vmlinux 0x5ad0e87f simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x5add96a6 is_nd_btt +EXPORT_SYMBOL vmlinux 0x5ae276ed nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x5ae49c31 flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x5af3ef74 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b1c7989 vme_bus_num +EXPORT_SYMBOL vmlinux 0x5b367392 padata_alloc +EXPORT_SYMBOL vmlinux 0x5b394291 led_update_brightness +EXPORT_SYMBOL vmlinux 0x5b3f2a40 invalidate_partition +EXPORT_SYMBOL vmlinux 0x5b49ab82 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x5b54d4ee ab3100_event_register +EXPORT_SYMBOL vmlinux 0x5b5c00f7 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x5b6c30ea pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x5b76f437 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5bb4a505 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x5be26596 udp_seq_open +EXPORT_SYMBOL vmlinux 0x5be99b0f xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x5bed14d4 param_get_short +EXPORT_SYMBOL vmlinux 0x5c0dfc00 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x5c0f7d88 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x5c2125cd blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c485178 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x5c5f4732 dma_pool_create +EXPORT_SYMBOL vmlinux 0x5c6e4d72 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x5c78e829 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x5c84b653 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x5caceb8b empty_aops +EXPORT_SYMBOL vmlinux 0x5cc01354 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d396087 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x5d3e6abc rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x5d4ece6a skb_store_bits +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d58efa0 convert_ifc_address +EXPORT_SYMBOL vmlinux 0x5d5f3a32 nobh_writepage +EXPORT_SYMBOL vmlinux 0x5d719c0e set_groups +EXPORT_SYMBOL vmlinux 0x5d71e209 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x5d7a0f4a skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x5db1812f bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x5dd0013b filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x5df7b689 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x5e0c51bc mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x5e0dfa35 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x5e17835e pci_set_power_state +EXPORT_SYMBOL vmlinux 0x5e27321b register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e75f998 neigh_table_init +EXPORT_SYMBOL vmlinux 0x5e7de0d2 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eabd04e lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x5eb0401e proc_dostring +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f56740a blk_queue_split +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f80e45d blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5ffdc9a5 devm_devfreq_add_device +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 0x60213edd phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x602f0db4 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6039939a xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x606fc5f7 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x6073732c cur_cpu_spec +EXPORT_SYMBOL vmlinux 0x608198cd write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x608c8086 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60b3ef6f sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x60b446ad noop_llseek +EXPORT_SYMBOL vmlinux 0x60b7aacd phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x60cb1f2b vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60e343ef phy_device_register +EXPORT_SYMBOL vmlinux 0x6100716c pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x61130ff4 finish_no_open +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61391bbd is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x61426112 netdev_change_features +EXPORT_SYMBOL vmlinux 0x614a5e9f d_splice_alias +EXPORT_SYMBOL vmlinux 0x6157cd0c devm_clk_put +EXPORT_SYMBOL vmlinux 0x61896f1a __frontswap_store +EXPORT_SYMBOL vmlinux 0x618ebb3d twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x6192b9bc vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x619aa0f8 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c88be1 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x61df34db contig_page_data +EXPORT_SYMBOL vmlinux 0x61e53f7b vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x61fcf7ea netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x62274a81 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622b1b2b phy_init_eee +EXPORT_SYMBOL vmlinux 0x622baa63 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x6232675f scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x623a82e5 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss +EXPORT_SYMBOL vmlinux 0x626995ad netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627ac4ef mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x62814cd7 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x62821ece zero_fill_bio +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62a28bf5 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x62a8ccb1 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x62d1b09b netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x62dfd15c release_sock +EXPORT_SYMBOL vmlinux 0x62fa79ab blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x6316f4d2 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631b7570 mach_bsc9132_qds +EXPORT_SYMBOL vmlinux 0x6329b0cc put_page +EXPORT_SYMBOL vmlinux 0x633afdd8 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x6341dea5 replace_mount_options +EXPORT_SYMBOL vmlinux 0x6381c383 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b87ad3 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x63bbb11b tcp_prequeue +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63cd0440 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x63d4cbc7 try_module_get +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x63ff2caf blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x6401a8a1 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x640a50aa get_cached_acl +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x641e085e netif_skb_features +EXPORT_SYMBOL vmlinux 0x64258532 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x642dc65c swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x6431b7a6 generic_listxattr +EXPORT_SYMBOL vmlinux 0x64565307 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x64651b44 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x64688bfe inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x64804da4 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649ea8cf seq_lseek +EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x64a70ed9 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x650d90fc sock_no_poll +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6519e72f crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651cb61d dqget +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 0x6568db8b scm_fp_dup +EXPORT_SYMBOL vmlinux 0x657d9603 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x658d210e free_page_put_link +EXPORT_SYMBOL vmlinux 0x659d4f58 d_drop +EXPORT_SYMBOL vmlinux 0x659ff45b pcim_pin_device +EXPORT_SYMBOL vmlinux 0x65a81664 free_user_ns +EXPORT_SYMBOL vmlinux 0x65ad4b6d have_submounts +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65c4cb1c key_payload_reserve +EXPORT_SYMBOL vmlinux 0x65d8a0de call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e1833b jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x65e4637b jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x65ec3aa5 get_fs_type +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x65f559b8 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x6603c65a copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x66165f21 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x6625019d tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x6629eb10 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x663cf688 __genl_register_family +EXPORT_SYMBOL vmlinux 0x6640def3 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x665c4e69 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x6667c9e7 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x66691a5d inet_stream_connect +EXPORT_SYMBOL vmlinux 0x668baa8a __dquot_transfer +EXPORT_SYMBOL vmlinux 0x66944144 down_write_trylock +EXPORT_SYMBOL vmlinux 0x66958fd7 md_register_thread +EXPORT_SYMBOL vmlinux 0x66a99ce9 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x66b4fe0f bdi_register +EXPORT_SYMBOL vmlinux 0x66edd77d serio_reconnect +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6757deda scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x6758a0b9 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x67614855 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x679da38a ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x67ad3042 thaw_super +EXPORT_SYMBOL vmlinux 0x67b6ac9c xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67b80bc8 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x67f2b1f3 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x67f2cafe tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x6816ab4d kernel_connect +EXPORT_SYMBOL vmlinux 0x68360713 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x684aace3 down_read_trylock +EXPORT_SYMBOL vmlinux 0x68593c9b dev_driver_string +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x6866a0e0 agp_free_memory +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x687df362 prepare_binprm +EXPORT_SYMBOL vmlinux 0x688dd6d9 override_creds +EXPORT_SYMBOL vmlinux 0x689474c0 __free_pages +EXPORT_SYMBOL vmlinux 0x6898ce06 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68c233bb nf_log_unregister +EXPORT_SYMBOL vmlinux 0x68c906a3 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x68ef45f4 dcb_getapp +EXPORT_SYMBOL vmlinux 0x690c08b1 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x690c48da kmap_to_page +EXPORT_SYMBOL vmlinux 0x691e7994 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x6935dab7 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x69418ba2 devm_free_irq +EXPORT_SYMBOL vmlinux 0x69498328 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x694fe5c8 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x695ca897 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x695d5e0d tty_hangup +EXPORT_SYMBOL vmlinux 0x696d3e18 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6994b2d7 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69bde77e blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x69d2285c nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x69d7e5b8 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x69db2a10 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x69e69dcd udp6_set_csum +EXPORT_SYMBOL vmlinux 0x69eb5251 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x69eb9a34 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x69f6e841 kill_block_super +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0521f1 make_kgid +EXPORT_SYMBOL vmlinux 0x6a08ccbb inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x6a0e6803 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x6a0e7c6f blk_get_request +EXPORT_SYMBOL vmlinux 0x6a0e97e8 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x6a1448b5 vfs_fsync +EXPORT_SYMBOL vmlinux 0x6a1e5fa2 tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0x6a1ec5db of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x6a27c272 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x6a46e7ec neigh_seq_start +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a7c8321 devm_request_resource +EXPORT_SYMBOL vmlinux 0x6a80a3f5 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x6a983c4a jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x6aae28d7 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x6ab465fb bio_split +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6ae878f3 vm_insert_page +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af205b3 open_exec +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b0bf748 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b244a76 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b350b7f km_policy_notify +EXPORT_SYMBOL vmlinux 0x6b367e6b input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x6b4a3c7c twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free +EXPORT_SYMBOL vmlinux 0x6b774d19 mount_pseudo +EXPORT_SYMBOL vmlinux 0x6b8074dd jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x6b99fcab genphy_update_link +EXPORT_SYMBOL vmlinux 0x6ba498c4 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x6ba652c1 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x6bb383e9 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x6bb852eb mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x6bbe55c8 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc6348a unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x6bd4f8e3 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x6bdcd6ce genphy_config_init +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be34d4f pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x6c08c562 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c5f67e2 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c710b37 skb_dequeue +EXPORT_SYMBOL vmlinux 0x6ca1d1a4 atomic64_read +EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear +EXPORT_SYMBOL vmlinux 0x6cd9d51c trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6d083b52 registered_fb +EXPORT_SYMBOL vmlinux 0x6d0eac9d blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2c7c30 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x6d4d9c45 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put +EXPORT_SYMBOL vmlinux 0x6d7b1447 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x6d844db6 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x6d86b9f4 bmap +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6dcdf90f vfs_getattr +EXPORT_SYMBOL vmlinux 0x6ddd5ca9 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x6de9b35c sk_dst_check +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df78444 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x6dfe2cf8 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x6e0a9e45 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x6e250238 __devm_release_region +EXPORT_SYMBOL vmlinux 0x6e379526 kernstart_addr +EXPORT_SYMBOL vmlinux 0x6e39cbcb filp_close +EXPORT_SYMBOL vmlinux 0x6e3ca995 __lock_page +EXPORT_SYMBOL vmlinux 0x6e5807dc fb_set_cmap +EXPORT_SYMBOL vmlinux 0x6e5e15d6 pipe_unlock +EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6e6911f3 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e89c498 nvm_end_io +EXPORT_SYMBOL vmlinux 0x6e8ed231 param_get_string +EXPORT_SYMBOL vmlinux 0x6e9b067d padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea1ab25 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x6ea8c8e6 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x6eb3e00a inet_select_addr +EXPORT_SYMBOL vmlinux 0x6eb74dff proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x6ec751ba eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x6ed55331 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x6ee43338 key_put +EXPORT_SYMBOL vmlinux 0x6f1acb2a dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f30ba5d flush_signals +EXPORT_SYMBOL vmlinux 0x6f3b04d7 param_set_ullong +EXPORT_SYMBOL vmlinux 0x6f3d3202 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x6f6ebc76 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x6f71ec5d thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6fa91d57 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fde606e of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x6fece7c9 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x6ff6ff8b inode_init_owner +EXPORT_SYMBOL vmlinux 0x6ff8f4cb lookup_bdev +EXPORT_SYMBOL vmlinux 0x7002293b vc_cons +EXPORT_SYMBOL vmlinux 0x7021bc81 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x703cc419 fs_bio_set +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x705300cc agp_bridge +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x7070aa2e fb_set_var +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x708d996b param_get_invbool +EXPORT_SYMBOL vmlinux 0x70b4b3d1 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x70d888b7 __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x70ec9433 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x70f2d79e sock_no_accept +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x71115ef3 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x712047b8 proc_set_user +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x71354430 km_report +EXPORT_SYMBOL vmlinux 0x7158771a sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x715b8aa1 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x715cfd7c elevator_exit +EXPORT_SYMBOL vmlinux 0x7168d313 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x71693446 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71839ae0 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x718e6599 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x7195e5c9 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71d053de get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0x71e9d7ca vm_mmap +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x71ff3213 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x720e645d setattr_copy +EXPORT_SYMBOL vmlinux 0x7234bc7c inet_csk_accept +EXPORT_SYMBOL vmlinux 0x7238744c __neigh_create +EXPORT_SYMBOL vmlinux 0x723c476d mmc_can_reset +EXPORT_SYMBOL vmlinux 0x725b7f34 of_match_device +EXPORT_SYMBOL vmlinux 0x7270cc2a d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x72862567 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x7291b4d1 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x72d4c23c fsl_get_sys_freq +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72e76cb6 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72eb7f10 dev_change_flags +EXPORT_SYMBOL vmlinux 0x72f6819e wireless_spy_update +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x732d1f72 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x733b2383 next_tlbcam_idx +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x734562b4 blk_put_request +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x7365d571 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x73710a3e dqstats +EXPORT_SYMBOL vmlinux 0x7378c049 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x7380565d pci_domain_nr +EXPORT_SYMBOL vmlinux 0x73979de6 atomic64_or +EXPORT_SYMBOL vmlinux 0x73a97ae9 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x73aa04a3 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x73b0e712 generic_readlink +EXPORT_SYMBOL vmlinux 0x73ba1926 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x73c5e8cc devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73e32036 dm_register_target +EXPORT_SYMBOL vmlinux 0x7406e2c7 fb_find_mode +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7422990b agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x74262ba0 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x74398a67 generic_removexattr +EXPORT_SYMBOL vmlinux 0x744e56b7 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x744f2639 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x7450221f inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x745e149f ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74d60259 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x74dace0b free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x74e4e3dd install_exec_creds +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74fd2c62 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x750c99da input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x75105142 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x751c79c5 led_set_brightness +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x7567a537 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x756dd160 start_thread +EXPORT_SYMBOL vmlinux 0x757658b6 nf_afinfo +EXPORT_SYMBOL vmlinux 0x757ee5dd xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x757f088f cpm_muram_offset +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 0x75c876a9 phy_driver_register +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x761a1815 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x762b78f5 __sb_end_write +EXPORT_SYMBOL vmlinux 0x763108d3 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x76702609 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x7694759a remove_arg_zero +EXPORT_SYMBOL vmlinux 0x769d835e md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x76ae215a __nla_reserve +EXPORT_SYMBOL vmlinux 0x76b6d6da handle_edge_irq +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d6fc35 nf_reinject +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x77136d74 tty_throttle +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x7727e6e8 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x77595d92 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x775a8d6c elv_rb_add +EXPORT_SYMBOL vmlinux 0x7784a0c1 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c85bcd cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x77fd4dc0 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x78045ed5 mipi_dsi_dcs_write +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 0x78445182 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x784c0f6f nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x784d6e1e pci_get_slot +EXPORT_SYMBOL vmlinux 0x78772223 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7890d536 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x789371f9 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78c53aa1 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x78d982ea tty_check_change +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78f5c378 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x79068e2c blkdev_fsync +EXPORT_SYMBOL vmlinux 0x7930115a pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x793c99f0 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x7963238b vfs_readv +EXPORT_SYMBOL vmlinux 0x796d6dd6 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x7987cae9 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x79931742 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x7999f8db poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x799e2ec3 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x79a4549b blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79c2d006 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x79c351a8 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x79d58e43 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x79d7ce2f fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x79f293fe sock_create +EXPORT_SYMBOL vmlinux 0x7a12d763 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x7a28bdf1 security_path_rmdir +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a3399cf touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x7a3d17c7 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a5269c3 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x7a709446 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x7a84e934 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x7a8c48df tcp_req_err +EXPORT_SYMBOL vmlinux 0x7a8c72de __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab2393b of_root +EXPORT_SYMBOL vmlinux 0x7ab544e8 phy_find_first +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ab88ef2 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x7abd6f96 pci_restore_state +EXPORT_SYMBOL vmlinux 0x7acb5703 seq_pad +EXPORT_SYMBOL vmlinux 0x7acd425b dquot_quota_off +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b02159f blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x7b13f730 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b2601ee agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b39a1bd tcp_splice_read +EXPORT_SYMBOL vmlinux 0x7b44b4d9 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x7b52780e tty_free_termios +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b9f3c36 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x7baf22ae get_gendisk +EXPORT_SYMBOL vmlinux 0x7bc1a3cb devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x7bc7cf12 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x7be44b51 sock_wfree +EXPORT_SYMBOL vmlinux 0x7be4827c pci_dram_offset +EXPORT_SYMBOL vmlinux 0x7be6e4e0 sk_common_release +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1935f9 proto_unregister +EXPORT_SYMBOL vmlinux 0x7c210bca vme_irq_handler +EXPORT_SYMBOL vmlinux 0x7c36a162 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x7c3769b6 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x7c410126 security_path_truncate +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c482be8 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x7c4b1857 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c616aae device_get_mac_address +EXPORT_SYMBOL vmlinux 0x7c71c47d inode_permission +EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7cafcdb8 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb80622 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x7cdbaf54 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cefc33b phy_resume +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf9f158 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x7d099381 skb_tx_error +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d1e3a7d __napi_schedule +EXPORT_SYMBOL vmlinux 0x7d208a5d __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x7d27934e iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x7d6621ec i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d957c52 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x7de7eca5 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x7de814dd tcp_ioctl +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df3a2f2 dev_get_flags +EXPORT_SYMBOL vmlinux 0x7dffc529 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x7e0bf5dc csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x7e27d1a8 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x7e288b23 dev_addr_init +EXPORT_SYMBOL vmlinux 0x7e29ab91 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x7e30fd0a __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x7e38aecf tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x7e3b060e __devm_request_region +EXPORT_SYMBOL vmlinux 0x7e4f0782 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x7e5707ef up_write +EXPORT_SYMBOL vmlinux 0x7e5d7034 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x7e675ed1 dquot_destroy +EXPORT_SYMBOL vmlinux 0x7e6efa54 input_register_device +EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress +EXPORT_SYMBOL vmlinux 0x7e915046 mpage_readpage +EXPORT_SYMBOL vmlinux 0x7e9a4df3 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x7ea07003 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x7eb9d61f kunmap_high +EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x7ed4e30f jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x7ee11372 md_done_sync +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee73c0c memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0x7eee380a pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x7eef39dd tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x7efdfc77 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f34db98 phy_suspend +EXPORT_SYMBOL vmlinux 0x7f3d0f5c netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x7f49a7b0 down_read +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f966d78 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x7f98e816 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x7f9bf1cc dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x7fa92a64 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x7fb41692 search_binary_handler +EXPORT_SYMBOL vmlinux 0x7fd124ff set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff6c28a file_ns_capable +EXPORT_SYMBOL vmlinux 0x8006c52a path_get +EXPORT_SYMBOL vmlinux 0x80121d3c dev_emerg +EXPORT_SYMBOL vmlinux 0x80629fe5 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x808d5f40 would_dump +EXPORT_SYMBOL vmlinux 0x808da247 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x80ae7d32 scsi_add_device +EXPORT_SYMBOL vmlinux 0x80c126b1 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e65a42 simple_write_end +EXPORT_SYMBOL vmlinux 0x80e66950 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x81052837 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x81122967 module_put +EXPORT_SYMBOL vmlinux 0x811934a9 find_get_entry +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815c56d0 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x8181ce25 iunique +EXPORT_SYMBOL vmlinux 0x81847bf3 tty_register_driver +EXPORT_SYMBOL vmlinux 0x818c6300 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81a3eeb5 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x81a61626 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x81c1ef88 simple_open +EXPORT_SYMBOL vmlinux 0x81c48397 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x81cc1ad7 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x81d24572 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x81d58f4a make_kuid +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81ef4f0b mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x8223258a __get_page_tail +EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback +EXPORT_SYMBOL vmlinux 0x82458049 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x82513a90 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x82568851 mach_p1023_rdb +EXPORT_SYMBOL vmlinux 0x826953ae swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x827b1e60 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x8289ce3c devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82bb2566 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x82cc44e7 kill_bdev +EXPORT_SYMBOL vmlinux 0x82cd540a atomic64_and +EXPORT_SYMBOL vmlinux 0x82d97df1 poll_freewait +EXPORT_SYMBOL vmlinux 0x82dcc3f6 clear_inode +EXPORT_SYMBOL vmlinux 0x82dd3633 blk_put_queue +EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x83132d19 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x832b5e3d dma_set_mask +EXPORT_SYMBOL vmlinux 0x832d8bfa blkdev_put +EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x833938ff dev_open +EXPORT_SYMBOL vmlinux 0x836f5468 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x83749fb7 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x838cc53e tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x839d792f __kernel_write +EXPORT_SYMBOL vmlinux 0x83a8b314 scsi_host_put +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83b528f8 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83f045f9 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x8412fd69 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x841cef89 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x841f5158 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x84297dec netif_receive_skb +EXPORT_SYMBOL vmlinux 0x844404cf ISA_DMA_THRESHOLD +EXPORT_SYMBOL vmlinux 0x8448537a cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x8455fc42 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x845acd67 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x845eb785 init_net +EXPORT_SYMBOL vmlinux 0x84665f33 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x846a5b78 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x84748b60 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x84b009ad netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84b9bf70 phy_print_status +EXPORT_SYMBOL vmlinux 0x84bc7ece nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84d332e4 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x84f30fdf iput +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x8518a1d7 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x851c30fe blk_start_queue +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x857ebcf8 I_BDEV +EXPORT_SYMBOL vmlinux 0x8586ac58 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x858b00c7 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bdfa81 param_get_ulong +EXPORT_SYMBOL vmlinux 0x85bf6aee tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x85c87bd6 inet_addr_type +EXPORT_SYMBOL vmlinux 0x85d5cbe6 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x864134c2 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x864de2d8 param_get_ushort +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x86504e1f unlock_new_inode +EXPORT_SYMBOL vmlinux 0x86583216 ppc_md +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x867f2182 get_user_pages +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86af9ab8 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x86c67be2 up_read +EXPORT_SYMBOL vmlinux 0x86ce56e1 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x86d798ce __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x86f3f596 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x8735b1a1 mach_ppa8548 +EXPORT_SYMBOL vmlinux 0x87810501 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87a4e4df led_blink_set +EXPORT_SYMBOL vmlinux 0x87d122c8 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x87e2541e pci_pme_capable +EXPORT_SYMBOL vmlinux 0x87eb60c7 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x8817739f md_flush_request +EXPORT_SYMBOL vmlinux 0x88279f25 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x8836eb1d ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x883dfe21 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x885a28c1 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x8886891d devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x889257c7 __register_binfmt +EXPORT_SYMBOL vmlinux 0x88a7b8e8 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x88e2b3d1 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x88f469ef __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x890554e6 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x890a7bf1 param_set_long +EXPORT_SYMBOL vmlinux 0x8912e121 param_set_byte +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x893da2bb scsi_print_result +EXPORT_SYMBOL vmlinux 0x89442847 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x89477c57 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x8970c396 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x89807eed elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x899d10b8 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89ceb855 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89ef6c09 filemap_fault +EXPORT_SYMBOL vmlinux 0x8a0afb7d iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a294738 inet_bind +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a57ab95 inet_getname +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a86ed60 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x8a9731b4 sg_miter_next +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aac11f1 kobject_add +EXPORT_SYMBOL vmlinux 0x8ab4079e atomic64_add +EXPORT_SYMBOL vmlinux 0x8ab4650c submit_bio_wait +EXPORT_SYMBOL vmlinux 0x8abf88b1 kfree_put_link +EXPORT_SYMBOL vmlinux 0x8acb5143 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x8ad5d5e1 kill_pid +EXPORT_SYMBOL vmlinux 0x8ada764e audit_log_start +EXPORT_SYMBOL vmlinux 0x8add162d tty_unlock +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b4c676e address_space_init_once +EXPORT_SYMBOL vmlinux 0x8b5e9aa8 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b881646 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x8b8ee7ef pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x8bbf3692 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c317a73 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x8c38cb74 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x8c3eaec1 fget_raw +EXPORT_SYMBOL vmlinux 0x8c5d9657 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x8c60b68d fb_get_mode +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c7d630c shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x8ca26291 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x8caa65de pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8ce46029 register_gifconf +EXPORT_SYMBOL vmlinux 0x8cfb058b bdi_destroy +EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x8d0ede5e dqput +EXPORT_SYMBOL vmlinux 0x8d224032 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5e0a42 unregister_console +EXPORT_SYMBOL vmlinux 0x8d68c66c dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d7cd88e sock_edemux +EXPORT_SYMBOL vmlinux 0x8d858461 blk_init_queue +EXPORT_SYMBOL vmlinux 0x8d94dd98 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x8dab1586 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8de23b70 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e770854 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x8e8485df jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x8e8d58da diu_ops +EXPORT_SYMBOL vmlinux 0x8e9619bb ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x8ead1432 d_invalidate +EXPORT_SYMBOL vmlinux 0x8ebd1c8d netdev_warn +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ef181aa pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x8ef98991 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x8f0a05bf generic_make_request +EXPORT_SYMBOL vmlinux 0x8f373614 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x8f48b560 freeze_super +EXPORT_SYMBOL vmlinux 0x8f4d5c07 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x8f5aa354 get_acl +EXPORT_SYMBOL vmlinux 0x8f606e07 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x8f78a784 dev_alert +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8f89b91a blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x8fa2a269 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x8fab51d7 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x8fb098a2 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x8fbf37e0 profile_pc +EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x8fc8d77c blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x8ff54b95 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x8ffed9a6 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x901fb1fc build_skb +EXPORT_SYMBOL vmlinux 0x902bf503 do_SAK +EXPORT_SYMBOL vmlinux 0x9040274d bio_unmap_user +EXPORT_SYMBOL vmlinux 0x904bc3b5 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x905eda17 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x905fc739 netdev_info +EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x906b5e34 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x9070acb2 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x9094af8a i2c_master_send +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90cf0917 bdi_init +EXPORT_SYMBOL vmlinux 0x90e0d68a i2c_verify_client +EXPORT_SYMBOL vmlinux 0x91170e7c blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x91284739 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x912cb03c dev_uc_del +EXPORT_SYMBOL vmlinux 0x914297fc thaw_bdev +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x914feae1 dst_init +EXPORT_SYMBOL vmlinux 0x915322b7 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x9166c9d7 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x9173b57d scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x91774e8c vmap +EXPORT_SYMBOL vmlinux 0x917bd140 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x917e5cfd tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x9186e5a8 set_create_files_as +EXPORT_SYMBOL vmlinux 0x918cc207 set_cached_acl +EXPORT_SYMBOL vmlinux 0x91972d94 tty_mutex +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91af2b1a ip_options_compile +EXPORT_SYMBOL vmlinux 0x91bd9d2d vme_bus_type +EXPORT_SYMBOL vmlinux 0x91d3cf1d of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x91dc00bb pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x9202a620 kernel_read +EXPORT_SYMBOL vmlinux 0x9234d756 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x924d7dc3 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x92698145 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x926b626a tty_port_destroy +EXPORT_SYMBOL vmlinux 0x926c7bea dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x92704e00 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x9286e17c alloc_disk +EXPORT_SYMBOL vmlinux 0x92a1ccf8 __inode_permission +EXPORT_SYMBOL vmlinux 0x92a41caa tso_count_descs +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x930582f6 of_get_min_tck +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93167416 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x932d98c1 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x933db4f4 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x93619df6 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x9365ebe3 mntput +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x939481e3 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x93a14d5b pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x93ace146 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93c55e29 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x93e1e625 phy_stop +EXPORT_SYMBOL vmlinux 0x93ebc165 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x940c91d4 filp_open +EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x94109b14 bdev_read_only +EXPORT_SYMBOL vmlinux 0x9425c340 inc_nlink +EXPORT_SYMBOL vmlinux 0x943a47c1 generic_setxattr +EXPORT_SYMBOL vmlinux 0x943d4bb7 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x945ab06b fd_install +EXPORT_SYMBOL vmlinux 0x948d974a ppp_channel_index +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94ae2ad1 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x94b4927a max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x94d531c3 set_user_nice +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x9508b85a dev_uc_init +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x9524fc3b cad_pid +EXPORT_SYMBOL vmlinux 0x952e0c2e __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x95350bd4 mdiobus_free +EXPORT_SYMBOL vmlinux 0x953b68ef md_integrity_register +EXPORT_SYMBOL vmlinux 0x95449a2f tso_start +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95642f26 alloc_file +EXPORT_SYMBOL vmlinux 0x9569e693 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x95775313 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x9584ef6a agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x95b9d604 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x9600dae2 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x9603b234 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x962cc278 sock_register +EXPORT_SYMBOL vmlinux 0x964712dc inode_init_always +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x9661ecf6 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x9666d653 page_put_link +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x968d20c7 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x9698923b skb_put +EXPORT_SYMBOL vmlinux 0x969c9fae tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x96a17fa9 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x96a566bd vfs_writev +EXPORT_SYMBOL vmlinux 0x96b1c3b3 register_netdevice +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96de796d phy_device_remove +EXPORT_SYMBOL vmlinux 0x9710a35a __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x971afe3f abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x97275045 __break_lease +EXPORT_SYMBOL vmlinux 0x9733e906 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x973d515f mach_qemu_e500 +EXPORT_SYMBOL vmlinux 0x9742f3be netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x975a7d59 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x975e6547 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x97634dba mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x978418cc iterate_supers_type +EXPORT_SYMBOL vmlinux 0x9792ce88 __inet_hash +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x9799b00c netdev_notice +EXPORT_SYMBOL vmlinux 0x979dd50a jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x979fac5e bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x97abef07 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x97b0f08b pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x97c9d666 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x97e42f72 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x97fcf52f devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x9801a0a0 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x98024c72 backlight_device_register +EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x98302933 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x986c5b3e nla_append +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x9896ebaf end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x98a02287 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x98a08ea1 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x98efd4f8 seq_path +EXPORT_SYMBOL vmlinux 0x98fe7882 DMA_MODE_READ +EXPORT_SYMBOL vmlinux 0x991aa702 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x992c46fc sock_efree +EXPORT_SYMBOL vmlinux 0x992c7a23 generic_fillattr +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x994eb8e8 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x996283fe d_obtain_alias +EXPORT_SYMBOL vmlinux 0x9988a352 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x9989ba8d ps2_end_command +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999b5db9 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99acff32 genlmsg_put +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99b16ce9 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x99b61a38 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x99b6be85 dcb_setapp +EXPORT_SYMBOL vmlinux 0x99b70755 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x99b8e36d input_register_handle +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99de222e sget_userns +EXPORT_SYMBOL vmlinux 0x99e9b9ac cfb_fillrect +EXPORT_SYMBOL vmlinux 0x9a0be66b km_is_alive +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a260722 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x9a2b745a iov_iter_advance +EXPORT_SYMBOL vmlinux 0x9a3aa4be sk_stream_error +EXPORT_SYMBOL vmlinux 0x9a3dc540 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x9a3fe2c0 lookup_one_len +EXPORT_SYMBOL vmlinux 0x9a4447e8 msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x9a4def53 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x9a50dc9c free_netdev +EXPORT_SYMBOL vmlinux 0x9a685a4c serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x9a6bd698 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x9a8734f3 iget_failed +EXPORT_SYMBOL vmlinux 0x9adb9e41 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9afc182d keyring_clear +EXPORT_SYMBOL vmlinux 0x9b1cf503 lease_modify +EXPORT_SYMBOL vmlinux 0x9b201e30 follow_down +EXPORT_SYMBOL vmlinux 0x9b27f2f5 prepare_creds +EXPORT_SYMBOL vmlinux 0x9b331904 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b38e01f iov_iter_npages +EXPORT_SYMBOL vmlinux 0x9b3dc235 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b7099b1 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x9b9240df twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba0d427 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x9ba5a615 set_page_dirty +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bbf764e dev_addr_flush +EXPORT_SYMBOL vmlinux 0x9bd343d2 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bf4e1f0 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x9c1724c6 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x9c1d93f4 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x9c22e9ab ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x9c3be129 kill_litter_super +EXPORT_SYMBOL vmlinux 0x9c3f8cab peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x9c41528c security_path_link +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c61ff07 pci_pme_active +EXPORT_SYMBOL vmlinux 0x9ca63c81 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x9caa2d16 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cadd26a pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x9cafa815 elv_rb_find +EXPORT_SYMBOL vmlinux 0x9cc2a5dc mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d2079be rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d50d717 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x9d72229b fsl_ifc_find +EXPORT_SYMBOL vmlinux 0x9d73732c __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x9d7b6e89 mpage_writepage +EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x9d8c9588 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x9dcf42f5 skb_make_writable +EXPORT_SYMBOL vmlinux 0x9dd8a704 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x9de1b82b inet_accept +EXPORT_SYMBOL vmlinux 0x9dee9a84 cpm2_immr +EXPORT_SYMBOL vmlinux 0x9df8125d current_fs_time +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e19031a pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x9e1fbe85 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x9e2ac761 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x9e36df9c blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x9e45a0b1 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x9e4842bc blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5650f9 flow_cache_init +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7a6ffc load_nls_default +EXPORT_SYMBOL vmlinux 0x9e990f74 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eb2e85a generic_setlease +EXPORT_SYMBOL vmlinux 0x9eb344c7 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ecc2c90 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x9eda73ca pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x9ee335ab proc_create_data +EXPORT_SYMBOL vmlinux 0x9efa4a9b vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x9f3cca3e __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f661b42 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x9f8a9f11 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x9f94eb74 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ff28047 single_open +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffc5113 sock_no_getname +EXPORT_SYMBOL vmlinux 0x9ffd1be9 security_path_chown +EXPORT_SYMBOL vmlinux 0xa033ab3d pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xa0376a30 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa04b6e65 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xa0539397 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa05dfb42 kill_fasync +EXPORT_SYMBOL vmlinux 0xa06d4705 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa075318c devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xa07a3683 cont_write_begin +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0a6b55a block_write_begin +EXPORT_SYMBOL vmlinux 0xa0aab618 release_firmware +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b2fb0c __sock_create +EXPORT_SYMBOL vmlinux 0xa0d3d0cb ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0dbeae9 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0f1bfcd read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa10e6574 f_setown +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa1652c76 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xa1786e1a pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xa17a1743 blk_end_request +EXPORT_SYMBOL vmlinux 0xa1a8381c scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xa1b50c15 free_buffer_head +EXPORT_SYMBOL vmlinux 0xa1b6b976 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1bbfa66 path_is_under +EXPORT_SYMBOL vmlinux 0xa1c1fbb2 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xa1c2f2be arp_xmit +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c98164 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xa1d18679 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xa1d51417 input_set_capability +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1e0c453 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xa1f32e4b sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xa1f8a2de filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa20611db uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa20ca6c9 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0xa20fd9d5 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xa22a9e56 nd_device_register +EXPORT_SYMBOL vmlinux 0xa2503fc3 vme_dma_request +EXPORT_SYMBOL vmlinux 0xa2718d26 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0xa2737124 dev_add_pack +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa297cf1c inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xa2b0b76a ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xa2b84292 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2c4f7da mdiobus_write +EXPORT_SYMBOL vmlinux 0xa2c50be1 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xa2d8c72f balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xa2e1ceda skb_clone_sk +EXPORT_SYMBOL vmlinux 0xa2e808a1 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait +EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xa309a911 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa36065ad agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xa381944f dql_reset +EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3a0154a release_pages +EXPORT_SYMBOL vmlinux 0xa3a213bf pci_get_device +EXPORT_SYMBOL vmlinux 0xa3abb542 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3ae15a8 __quota_error +EXPORT_SYMBOL vmlinux 0xa3bc1eb7 param_get_byte +EXPORT_SYMBOL vmlinux 0xa3e75545 flush_tlb_kernel_range +EXPORT_SYMBOL vmlinux 0xa3e92c6d pci_reenable_device +EXPORT_SYMBOL vmlinux 0xa3ea977e blk_execute_rq +EXPORT_SYMBOL vmlinux 0xa3ecdb0b generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xa418e11c rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xa4385229 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa4413db4 vga_get +EXPORT_SYMBOL vmlinux 0xa44a0da3 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xa4666829 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa4883131 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xa488ba01 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xa4924684 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0xa49901d0 single_open_size +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4aa7103 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4e0798c __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xa4e2bb2c xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xa4f96259 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xa514d272 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xa521f859 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xa549a687 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa553ca35 serio_bus +EXPORT_SYMBOL vmlinux 0xa5650847 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free +EXPORT_SYMBOL vmlinux 0xa58224ed sk_net_capable +EXPORT_SYMBOL vmlinux 0xa58e5c4f pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5b6e562 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xa5ba8f0e xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xa5c45afa jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xa5d75d5e scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xa5eb5a6b blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xa5ed8750 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xa5fadaa3 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xa6136e23 elevator_change +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa65db3d9 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0xa6672054 fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +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 0xa6f484fb __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa70d902a pci_enable_device +EXPORT_SYMBOL vmlinux 0xa70ee964 import_iovec +EXPORT_SYMBOL vmlinux 0xa70fcc00 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xa7131fec __alloc_skb +EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get +EXPORT_SYMBOL vmlinux 0xa7621cfc __scsi_add_device +EXPORT_SYMBOL vmlinux 0xa76b1a0b neigh_xmit +EXPORT_SYMBOL vmlinux 0xa76ea1f1 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xa770ae6c scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xa7923f86 pci_dev_get +EXPORT_SYMBOL vmlinux 0xa7b5a955 nd_iostat_end +EXPORT_SYMBOL vmlinux 0xa7e94902 kmap_pte +EXPORT_SYMBOL vmlinux 0xa7eb8e3b seq_read +EXPORT_SYMBOL vmlinux 0xa7ef1370 __destroy_inode +EXPORT_SYMBOL vmlinux 0xa8042fe8 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0xa82456d8 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xa831ed67 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa858b9ac mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0xa85e8574 current_in_userns +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa8802545 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xa88e69aa blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xa89464b7 __ashldi3 +EXPORT_SYMBOL vmlinux 0xa8e609ed rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xa8f8cab9 unregister_nls +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa906a045 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0xa908ba71 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xa913a1c9 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0xa9464cc1 serio_open +EXPORT_SYMBOL vmlinux 0xa9480d2e gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xa9571d6d DMA_MODE_WRITE +EXPORT_SYMBOL vmlinux 0xa967bff3 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xa9740cf1 lock_fb_info +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa985a642 dev_add_offload +EXPORT_SYMBOL vmlinux 0xa98b5110 blk_free_tags +EXPORT_SYMBOL vmlinux 0xa99d5198 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xa9a36de6 dump_align +EXPORT_SYMBOL vmlinux 0xa9a67a03 mdiobus_read +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9cd4941 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xa9d11021 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xa9d31b86 nf_log_packet +EXPORT_SYMBOL vmlinux 0xa9e2ea21 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock +EXPORT_SYMBOL vmlinux 0xaa519401 simple_transaction_get +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 0xaa80ac7b consume_skb +EXPORT_SYMBOL vmlinux 0xaa9d6d9c tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xaaab8067 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xaab6d623 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad42a4b phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaadaa3c7 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0xaae0910a neigh_destroy +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab0d046c no_llseek +EXPORT_SYMBOL vmlinux 0xab228e31 csum_tcpudp_magic +EXPORT_SYMBOL vmlinux 0xab252963 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xab2f9496 arp_tbl +EXPORT_SYMBOL vmlinux 0xab5277c6 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab918a7e done_path_create +EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabd79d38 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xabdd6463 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xabe8568d of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1ebe80 pm_vt_switch_unregister +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 0xac55b322 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xac7c705b remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xac7f0189 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xac8cc5b7 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb4127a blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xacca626f inet_stream_ops +EXPORT_SYMBOL vmlinux 0xaccab55e mmc_put_card +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xaccfe332 end_buffer_async_write +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 0xad0c9054 tc_classify +EXPORT_SYMBOL vmlinux 0xad0dd24d kern_path +EXPORT_SYMBOL vmlinux 0xad1a3e49 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xad1da9d8 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xad329f1a textsearch_register +EXPORT_SYMBOL vmlinux 0xad352ae5 fb_class +EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xad657b66 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xad70bef1 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xad71df30 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad9155b2 sg_miter_start +EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xad976066 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xadada18b skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xadbf2bf7 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xadc64206 __blk_end_request +EXPORT_SYMBOL vmlinux 0xadd62877 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xaddd4770 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xadeea52d of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xadf0811d get_baudrate +EXPORT_SYMBOL vmlinux 0xadf7aa9a tty_unregister_device +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae07e9a8 datagram_poll +EXPORT_SYMBOL vmlinux 0xae12797e sync_filesystem +EXPORT_SYMBOL vmlinux 0xae1afcbf generic_perform_write +EXPORT_SYMBOL vmlinux 0xae2998e4 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xae358236 fence_signal +EXPORT_SYMBOL vmlinux 0xae39c8ec ll_rw_block +EXPORT_SYMBOL vmlinux 0xae3d99e8 udplite_prot +EXPORT_SYMBOL vmlinux 0xae3ebf85 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xae49a9ee dup_iter +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae61e308 migrate_page +EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xae945e52 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xae9ff289 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xaeab1009 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xaeb89887 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xaeba8c08 mac_find_mode +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaec7cafa pci_dev_put +EXPORT_SYMBOL vmlinux 0xaee97060 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf0b81c2 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xaf183601 bdput +EXPORT_SYMBOL vmlinux 0xaf2bf061 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf2ed742 vfs_unlink +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf4e5fae locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xaf4fd47b add_disk +EXPORT_SYMBOL vmlinux 0xaf7456d0 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xaf7dec40 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xaf87dde7 console_start +EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xaf9b2160 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create +EXPORT_SYMBOL vmlinux 0xafb3be39 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xafb61783 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xafdf3db6 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xafec8fe8 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xafecbe4a security_inode_permission +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb013b1fb setup_arg_pages +EXPORT_SYMBOL vmlinux 0xb01ae136 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xb0434081 rt6_lookup +EXPORT_SYMBOL vmlinux 0xb0540edd km_state_notify +EXPORT_SYMBOL vmlinux 0xb058317d neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb069ebf6 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a9dfab elevator_init +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0da108b netif_napi_add +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e570ce cdrom_open +EXPORT_SYMBOL vmlinux 0xb0ea395a __serio_register_port +EXPORT_SYMBOL vmlinux 0xb0f29264 clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0xb10d2df2 inet6_offloads +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1343295 vga_client_register +EXPORT_SYMBOL vmlinux 0xb1369751 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0xb159ae08 mmc_free_host +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 0xb1711344 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xb19e29bf mount_bdev +EXPORT_SYMBOL vmlinux 0xb1b08f96 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xb1bc5f5d tcp_proto_cgroup +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 0xb1d8e887 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xb1f131fd pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xb203b6e1 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xb20556ad serio_interrupt +EXPORT_SYMBOL vmlinux 0xb2159d33 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0xb2334a3e of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xb233762c atomic64_set +EXPORT_SYMBOL vmlinux 0xb245efed wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xb2530b16 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xb25bc18d blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb26ca90a mmc_can_discard +EXPORT_SYMBOL vmlinux 0xb2b16c9f mutex_lock +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2d318a5 revalidate_disk +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2e275b7 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xb2ea84c5 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xb2ef3319 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xb31b739b netdev_emerg +EXPORT_SYMBOL vmlinux 0xb3200770 neigh_lookup +EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xb341d3ae seq_open_private +EXPORT_SYMBOL vmlinux 0xb344d0e3 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xb349b14d jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xb368fcf0 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xb36f0e5a read_dev_sector +EXPORT_SYMBOL vmlinux 0xb371bb2b xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xb3941836 dst_release +EXPORT_SYMBOL vmlinux 0xb3c5f9a5 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3ddb527 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0xb3ec82f9 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb4a46b3c dev_trans_start +EXPORT_SYMBOL vmlinux 0xb4abd6e8 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0xb4bd66f6 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xb4c0bbe1 dma_common_mmap +EXPORT_SYMBOL vmlinux 0xb4c0c514 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xb4e1c75f pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xb4fdecc5 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xb4ffa3cb set_wb_congested +EXPORT_SYMBOL vmlinux 0xb50e1905 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xb543c2bd skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xb554d1a9 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xb5686b58 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xb5718034 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb57a357f netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5adcc3e swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xb5b075e2 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xb5cc5537 iov_iter_init +EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit +EXPORT_SYMBOL vmlinux 0xb5db81ec of_dev_put +EXPORT_SYMBOL vmlinux 0xb5fff1aa neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xb618995a mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb62565e8 mach_c293_pcie +EXPORT_SYMBOL vmlinux 0xb6335426 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xb6349705 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xb6574966 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb697b7e5 d_tmpfile +EXPORT_SYMBOL vmlinux 0xb6a2dbfc __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6b6a729 get_io_context +EXPORT_SYMBOL vmlinux 0xb6c79b4a sock_setsockopt +EXPORT_SYMBOL vmlinux 0xb7016ec2 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xb707af09 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xb72499fb touch_buffer +EXPORT_SYMBOL vmlinux 0xb72c6582 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xb7377f42 page_follow_link_light +EXPORT_SYMBOL vmlinux 0xb73f23ce dev_mc_flush +EXPORT_SYMBOL vmlinux 0xb7440845 of_node_get +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb753bcc8 __ashrdi3 +EXPORT_SYMBOL vmlinux 0xb76043a3 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb79a4e1a store_fp_state +EXPORT_SYMBOL vmlinux 0xb79c19e1 __module_get +EXPORT_SYMBOL vmlinux 0xb79d9bd9 md_write_start +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7a50369 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xb7a99781 __irq_regs +EXPORT_SYMBOL vmlinux 0xb7b4853a alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xb7bb7df9 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d63659 elv_rb_del +EXPORT_SYMBOL vmlinux 0xb7f7abcd param_ops_bool +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb82048f0 tty_vhangup +EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xb8366234 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xb83cd27a pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xb83d9e01 netdev_features_change +EXPORT_SYMBOL vmlinux 0xb846d938 udp_add_offload +EXPORT_SYMBOL vmlinux 0xb86811bf generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb883cfe0 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xb8854c17 twl6040_power +EXPORT_SYMBOL vmlinux 0xb8955d2a follow_down_one +EXPORT_SYMBOL vmlinux 0xb8b26d51 uart_match_port +EXPORT_SYMBOL vmlinux 0xb8ba4a4d gen_new_estimator +EXPORT_SYMBOL vmlinux 0xb8cc91c8 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xb8da124b kthread_bind +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8ff02ae pci_release_regions +EXPORT_SYMBOL vmlinux 0xb90077cb unlock_page +EXPORT_SYMBOL vmlinux 0xb91d7aad block_write_full_page +EXPORT_SYMBOL vmlinux 0xb924a005 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xb937aa0d mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xb93c388a msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0xb946e5a7 phy_device_free +EXPORT_SYMBOL vmlinux 0xb952450c skb_vlan_push +EXPORT_SYMBOL vmlinux 0xb9779b3d key_validate +EXPORT_SYMBOL vmlinux 0xb98fd42c vme_lm_request +EXPORT_SYMBOL vmlinux 0xb9993a3f unlock_rename +EXPORT_SYMBOL vmlinux 0xb99ce845 dm_put_device +EXPORT_SYMBOL vmlinux 0xb9a1804b blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0xb9a7c163 single_release +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f4261f dma_find_channel +EXPORT_SYMBOL vmlinux 0xb9fac3e3 bdget_disk +EXPORT_SYMBOL vmlinux 0xba3b4bd0 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xba425d6c irq_set_chip +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba74d55a mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0xba9a75d7 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbacb3a10 dev_mc_add +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb1a4ebb __find_get_block +EXPORT_SYMBOL vmlinux 0xbb276488 d_obtain_root +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xbb541672 udp_poll +EXPORT_SYMBOL vmlinux 0xbb598f6f find_inode_nowait +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb61caaf inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xbb6301ed generic_ro_fops +EXPORT_SYMBOL vmlinux 0xbb669f19 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xbb81a6ca tcp_close +EXPORT_SYMBOL vmlinux 0xbb81b452 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xbb881fdf vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbbc4047c dev_printk +EXPORT_SYMBOL vmlinux 0xbbc9987b alloc_fddidev +EXPORT_SYMBOL vmlinux 0xbbf55f98 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xbbf79835 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xbc023d0f __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xbc0a703a machine_id +EXPORT_SYMBOL vmlinux 0xbc0c30f1 elv_add_request +EXPORT_SYMBOL vmlinux 0xbc0f4c76 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xbc1286dc tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xbc22d57e pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xbc262303 should_remove_suid +EXPORT_SYMBOL vmlinux 0xbc2b62db pci_bus_type +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc78c084 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0xbc804193 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xbc905a96 __put_cred +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcc9407e ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xbcd2de19 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0xbcde4094 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xbd402ec5 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xbd435344 sk_free +EXPORT_SYMBOL vmlinux 0xbd69d463 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xbd6fff87 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xbd81589c scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xbd9000f3 sock_no_connect +EXPORT_SYMBOL vmlinux 0xbd904c42 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd9e5d49 __lshrdi3 +EXPORT_SYMBOL vmlinux 0xbdacae65 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xbdb72fb7 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xbdd25ecf inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xbdf9cb86 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0xbdff4234 km_query +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe2f9dfe dump_emit +EXPORT_SYMBOL vmlinux 0xbe40b8a8 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xbe524612 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xbe82b3d6 i2c_master_recv +EXPORT_SYMBOL vmlinux 0xbe8766e2 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xbeb9122b __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xbecb9de7 param_ops_short +EXPORT_SYMBOL vmlinux 0xbed3d371 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xbedaf06d locks_free_lock +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef5791c register_console +EXPORT_SYMBOL vmlinux 0xbf146162 vm_event_states +EXPORT_SYMBOL vmlinux 0xbf353aee agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xbf3dac54 napi_get_frags +EXPORT_SYMBOL vmlinux 0xbf3e6630 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xbf47802d set_security_override +EXPORT_SYMBOL vmlinux 0xbf486982 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xbf667522 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xbf6d1ddb pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xbf7529ec stop_tty +EXPORT_SYMBOL vmlinux 0xbf77ecfb seq_puts +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init +EXPORT_SYMBOL vmlinux 0xbf9a4226 devm_release_resource +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa23780 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xbfa250c5 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xbfb21cb5 dget_parent +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc02ca7a8 ilookup +EXPORT_SYMBOL vmlinux 0xc04a2950 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc084403e skb_copy_expand +EXPORT_SYMBOL vmlinux 0xc0885f11 generic_show_options +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0ad15b0 input_set_keycode +EXPORT_SYMBOL vmlinux 0xc0b84a35 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xc0c06b10 eth_header_cache +EXPORT_SYMBOL vmlinux 0xc0e61f0a clkdev_alloc +EXPORT_SYMBOL vmlinux 0xc0e7c705 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xc0f07c9c dst_alloc +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc +EXPORT_SYMBOL vmlinux 0xc13a93a9 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xc15074fd eth_header +EXPORT_SYMBOL vmlinux 0xc15cd64d tcp_init_sock +EXPORT_SYMBOL vmlinux 0xc166be4a generic_file_open +EXPORT_SYMBOL vmlinux 0xc184b863 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xc1942458 param_set_ulong +EXPORT_SYMBOL vmlinux 0xc1a27521 submit_bh +EXPORT_SYMBOL vmlinux 0xc1a56647 blk_complete_request +EXPORT_SYMBOL vmlinux 0xc1ac4605 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xc1b735f4 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xc1c25b62 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xc1c5f3ae padata_add_cpu +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1f917ee account_page_redirty +EXPORT_SYMBOL vmlinux 0xc1fa5425 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xc1ff2290 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xc2115f1b xfrm_state_update +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc242b495 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xc2433c08 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xc267f698 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xc288776a blk_finish_request +EXPORT_SYMBOL vmlinux 0xc2a63a7e blkdev_issue_flush +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 0xc2ede5f7 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xc2ee29a9 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xc2f3459d dcache_dir_open +EXPORT_SYMBOL vmlinux 0xc3081e36 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xc33caad6 dev_addr_add +EXPORT_SYMBOL vmlinux 0xc368849f nvram_sync +EXPORT_SYMBOL vmlinux 0xc38327c8 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xc3853dd5 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xc3854ded param_ops_uint +EXPORT_SYMBOL vmlinux 0xc385bfa9 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xc3a4fa04 tcf_em_register +EXPORT_SYMBOL vmlinux 0xc3a72c8c blk_sync_queue +EXPORT_SYMBOL vmlinux 0xc3a812bc __skb_checksum +EXPORT_SYMBOL vmlinux 0xc3a9b75d pci_claim_resource +EXPORT_SYMBOL vmlinux 0xc3b3d1f2 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xc3bcd43a blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xc3be727d netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3c7787a skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xc3c8a512 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xc3eb9305 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xc3f06cfa get_super_thawed +EXPORT_SYMBOL vmlinux 0xc3f4bf3b get_empty_filp +EXPORT_SYMBOL vmlinux 0xc40f5dc2 genphy_suspend +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc42fe619 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xc4566c30 request_key_async +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc469352b vlan_vid_add +EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc479b670 __frontswap_load +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc4978880 netif_device_attach +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc49e2216 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xc49e2297 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xc4beca24 seq_dentry +EXPORT_SYMBOL vmlinux 0xc4db2724 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xc51fc7ad iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xc52f0e3f fsync_bdev +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set +EXPORT_SYMBOL vmlinux 0xc57e22ae sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a7c2b2 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0xc5b8b0a3 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5dcce07 dm_get_device +EXPORT_SYMBOL vmlinux 0xc5f03946 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xc5fd24af security_d_instantiate +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc6050c2e skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xc60df598 security_path_symlink +EXPORT_SYMBOL vmlinux 0xc61e9769 kobject_put +EXPORT_SYMBOL vmlinux 0xc621dfd9 udp_del_offload +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc64a26d9 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc64e3d98 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xc651294b mmc_start_req +EXPORT_SYMBOL vmlinux 0xc6549118 giveup_fpu +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap +EXPORT_SYMBOL vmlinux 0xc66abd14 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xc672f6b8 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc68002b9 input_inject_event +EXPORT_SYMBOL vmlinux 0xc68fac08 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0xc6a8ccdb sg_miter_skip +EXPORT_SYMBOL vmlinux 0xc6ab8534 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6ef9951 __seq_open_private +EXPORT_SYMBOL vmlinux 0xc6fd5af1 fasync_helper +EXPORT_SYMBOL vmlinux 0xc7170970 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc73fff3e netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xc749e425 unmap_mapping_range +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 0xc792d489 tcp_release_cb +EXPORT_SYMBOL vmlinux 0xc796f841 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a27dd0 put_disk +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7ab04d7 input_event +EXPORT_SYMBOL vmlinux 0xc7c19b10 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc801b361 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xc803eb8e xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xc8299836 netdev_printk +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc839462d clk_add_alias +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc8448a39 vme_bus_error_handler +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 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc89d5495 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xc89f983c i8042_install_filter +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8c9bb8a sock_release +EXPORT_SYMBOL vmlinux 0xc8f98138 commit_creds +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc9189be7 register_qdisc +EXPORT_SYMBOL vmlinux 0xc91a798d lro_receive_skb +EXPORT_SYMBOL vmlinux 0xc91afa5c mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xc929c28a netpoll_setup +EXPORT_SYMBOL vmlinux 0xc92f0444 pci_map_rom +EXPORT_SYMBOL vmlinux 0xc932c267 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xc959fc32 of_device_is_available +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc964d2af skb_copy +EXPORT_SYMBOL vmlinux 0xc967d571 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xc9773734 key_type_keyring +EXPORT_SYMBOL vmlinux 0xc97a9210 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xc9809af1 xfrm_input +EXPORT_SYMBOL vmlinux 0xc98cd1a8 send_sig_info +EXPORT_SYMBOL vmlinux 0xc98dc675 inet_add_offload +EXPORT_SYMBOL vmlinux 0xc990657b __dst_free +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a21a34 truncate_setsize +EXPORT_SYMBOL vmlinux 0xc9a97931 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xc9ae8a98 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xc9b9fb0f get_super +EXPORT_SYMBOL vmlinux 0xc9bed666 of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0xc9d280cb input_unregister_handle +EXPORT_SYMBOL vmlinux 0xc9d5a452 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xc9dae36a gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xc9ea3bf7 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xca0c48df seq_vprintf +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca162f14 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get +EXPORT_SYMBOL vmlinux 0xca3bc5c2 simple_follow_link +EXPORT_SYMBOL vmlinux 0xca3eeee3 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca86c3d1 mntget +EXPORT_SYMBOL vmlinux 0xca891c97 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca98bc39 vfs_llseek +EXPORT_SYMBOL vmlinux 0xcaa82b11 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xcaa944c4 inet_frag_find +EXPORT_SYMBOL vmlinux 0xcacd272d atomic64_sub_return +EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcae342b4 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb117e22 dput +EXPORT_SYMBOL vmlinux 0xcb3dd4da cdrom_check_events +EXPORT_SYMBOL vmlinux 0xcb3eccf3 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xcb80802d max8998_read_reg +EXPORT_SYMBOL vmlinux 0xcba5e673 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd84884 bio_advance +EXPORT_SYMBOL vmlinux 0xcbe68434 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xcbe83978 skb_split +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcc010676 register_framebuffer +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc3352e7 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xcc3f316a __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xcc4bebd5 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc554618 netlink_unicast +EXPORT_SYMBOL vmlinux 0xcc58d485 of_get_next_child +EXPORT_SYMBOL vmlinux 0xcc5dafec tcf_hash_check +EXPORT_SYMBOL vmlinux 0xcc671efb of_iomap +EXPORT_SYMBOL vmlinux 0xcc9992f6 scsi_device_get +EXPORT_SYMBOL vmlinux 0xcc9a7bb4 read_cache_page +EXPORT_SYMBOL vmlinux 0xcca65842 from_kgid +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccd5889d pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xccfaf5e5 dump_truncate +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 0xcd2ec714 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xcd354a3c skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xcd35dede blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xcd38bd47 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0xcd5298fc jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xcd68a424 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xcd7f4419 tty_port_open +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcd89d471 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xcdb2898a seq_putc +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdd16e83 from_kgid_munged +EXPORT_SYMBOL vmlinux 0xcdd26e10 genl_notify +EXPORT_SYMBOL vmlinux 0xcde47cbe nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0xce0ab251 napi_disable +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce38d200 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xce495451 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce65a446 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xce751508 blk_delay_queue +EXPORT_SYMBOL vmlinux 0xce7d82e7 may_umount_tree +EXPORT_SYMBOL vmlinux 0xce870c51 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xce9a0cc6 param_set_charp +EXPORT_SYMBOL vmlinux 0xcea1cac1 file_open_root +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcee0e8b4 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xcee106b2 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xcee7c460 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xceede6bc clear_wb_congested +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf04b62b ipv4_specific +EXPORT_SYMBOL vmlinux 0xcf1d7646 isa_mem_base +EXPORT_SYMBOL vmlinux 0xcf236b75 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0xcf49a61a send_sig +EXPORT_SYMBOL vmlinux 0xcf6c6276 bio_put +EXPORT_SYMBOL vmlinux 0xcf88dd60 revert_creds +EXPORT_SYMBOL vmlinux 0xcf9f1144 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xcfa3a79f blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xcfbfb665 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xcfcfe057 unregister_key_type +EXPORT_SYMBOL vmlinux 0xd0064dfe path_put +EXPORT_SYMBOL vmlinux 0xd034e044 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xd03cd8bc elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xd04c224e xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xd0504619 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xd05ecaa1 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +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 0xd0ab6975 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xd0abcba8 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xd0ad6eef vfs_create +EXPORT_SYMBOL vmlinux 0xd0b02ab6 put_tty_driver +EXPORT_SYMBOL vmlinux 0xd0b69969 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xd0b7dafc jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xd0bceb46 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xd0becaf7 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f10bf1 simple_empty +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 0xd0ff5222 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xd0ffec00 bitmap_unplug +EXPORT_SYMBOL vmlinux 0xd118c261 audit_log_task_info +EXPORT_SYMBOL vmlinux 0xd11be0be inet_ioctl +EXPORT_SYMBOL vmlinux 0xd11e8831 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xd17d4613 mmc_release_host +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1a1eb9b tcf_hash_create +EXPORT_SYMBOL vmlinux 0xd1acc1d7 flush_dcache_page +EXPORT_SYMBOL vmlinux 0xd1b5ee96 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xd1b93259 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xd1bd57bd blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1d97a25 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xd1e3f3c4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd1ef4937 generic_writepages +EXPORT_SYMBOL vmlinux 0xd1f47284 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xd1fceb82 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xd1ff3852 dentry_open +EXPORT_SYMBOL vmlinux 0xd2047887 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xd22e6b3d nf_log_unset +EXPORT_SYMBOL vmlinux 0xd23c8541 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xd23f4e54 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xd24c4f56 kfree_skb +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 0xd27536c0 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xd278b2d5 scmd_printk +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2894243 tso_build_data +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2bd17d6 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xd2be342a devm_gpiod_put +EXPORT_SYMBOL vmlinux 0xd2d4ca19 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2dfcb23 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xd2fc19bd proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xd30d352c file_path +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd338713d sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xd35480c4 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0xd35a6eb9 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xd35b1208 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xd35db9b6 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c71d32 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xd40d466c always_delete_dentry +EXPORT_SYMBOL vmlinux 0xd41c8724 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xd42de227 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xd4418f2a lwtunnel_input +EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm +EXPORT_SYMBOL vmlinux 0xd4583ec3 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xd46ed8a8 start_tty +EXPORT_SYMBOL vmlinux 0xd4dfc6cd __pagevec_release +EXPORT_SYMBOL vmlinux 0xd4e317ff bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0xd4f21f85 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xd506445a proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xd51e276c xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xd53d56f7 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd56cf27a xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xd5785b8c vme_master_request +EXPORT_SYMBOL vmlinux 0xd5890c4c mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xd5943d2d tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd595cf73 noop_qdisc +EXPORT_SYMBOL vmlinux 0xd5960344 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xd5a0c137 module_layout +EXPORT_SYMBOL vmlinux 0xd5b8a2af nvm_get_blk +EXPORT_SYMBOL vmlinux 0xd5da2de9 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0xd5e65157 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xd5e6ca01 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xd5e8444a __div64_32 +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd5fece0b tty_lock +EXPORT_SYMBOL vmlinux 0xd6027a2f kern_path_create +EXPORT_SYMBOL vmlinux 0xd6064aea simple_nosetlease +EXPORT_SYMBOL vmlinux 0xd606503d register_sysctl +EXPORT_SYMBOL vmlinux 0xd60be1b9 of_device_unregister +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd67107ab softnet_data +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd689f173 inet_offloads +EXPORT_SYMBOL vmlinux 0xd68c5778 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xd68dea42 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xd69ad0cd abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xd69b30e0 atomic64_add_unless +EXPORT_SYMBOL vmlinux 0xd6b4c14e lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f20bb7 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xd6fc7897 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xd7099db2 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xd7227e60 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xd72c4986 mmc_add_host +EXPORT_SYMBOL vmlinux 0xd72c5eb1 bio_init +EXPORT_SYMBOL vmlinux 0xd7313269 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xd74194af __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot +EXPORT_SYMBOL vmlinux 0xd77b6a5d generic_file_llseek +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd79c897b of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0xd7a0fa8f __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xd7b6b5a2 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd8005fb8 read_code +EXPORT_SYMBOL vmlinux 0xd8138e1f dquot_file_open +EXPORT_SYMBOL vmlinux 0xd8202752 devm_gpio_free +EXPORT_SYMBOL vmlinux 0xd8459cf4 iterate_mounts +EXPORT_SYMBOL vmlinux 0xd848307c __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0xd84c43a6 lockref_put_return +EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xd85e5862 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xd87d444b swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xd87e6ef9 neigh_update +EXPORT_SYMBOL vmlinux 0xd897fc23 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8ae31f0 md_reload_sb +EXPORT_SYMBOL vmlinux 0xd8daf38b sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd90241fd pci_find_bus +EXPORT_SYMBOL vmlinux 0xd9036f91 blk_end_request_all +EXPORT_SYMBOL vmlinux 0xd9210016 vga_tryget +EXPORT_SYMBOL vmlinux 0xd9263b48 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xd92c90a9 security_file_permission +EXPORT_SYMBOL vmlinux 0xd92edc81 param_get_int +EXPORT_SYMBOL vmlinux 0xd933277c iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xd933fba8 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xd938177e tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xd9498b22 proc_dointvec +EXPORT_SYMBOL vmlinux 0xd963831e bdi_register_dev +EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done +EXPORT_SYMBOL vmlinux 0xd97431e6 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98e57f7 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xd9919385 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xd9a7eef5 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xd9b179c9 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9bd1c48 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d1d575 bio_reset +EXPORT_SYMBOL vmlinux 0xd9d349bf path_noexec +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xda0c746d pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xda18a86f kobject_del +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda415cc6 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xda508d62 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xda52fee7 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xda71a365 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xda747cb7 do_splice_direct +EXPORT_SYMBOL vmlinux 0xda77d7eb bdi_register_owner +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda895708 genphy_read_status +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda975092 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xda996e9d sock_no_listen +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdabb8d5a napi_complete_done +EXPORT_SYMBOL vmlinux 0xdabc1ea8 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdacc31d8 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xdad6dcfa dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xdadcd597 brioctl_set +EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find +EXPORT_SYMBOL vmlinux 0xdb3a58d2 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xdb3ac36e phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0xdb3df711 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xdb5a13cc xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xdb603101 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdba2ab6e eth_header_parse +EXPORT_SYMBOL vmlinux 0xdbbbc076 elevator_alloc +EXPORT_SYMBOL vmlinux 0xdbdc593b dev_get_by_index +EXPORT_SYMBOL vmlinux 0xdbff411d inet6_getname +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc12e664 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xdc2904ac dev_alloc_name +EXPORT_SYMBOL vmlinux 0xdc2fa204 register_quota_format +EXPORT_SYMBOL vmlinux 0xdc323402 phy_start +EXPORT_SYMBOL vmlinux 0xdc3795f9 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc40a678 blk_register_region +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5db69e generic_delete_inode +EXPORT_SYMBOL vmlinux 0xdc68c171 of_clk_get +EXPORT_SYMBOL vmlinux 0xdc6feca2 vfs_read +EXPORT_SYMBOL vmlinux 0xdc91f9b5 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcdee616 __mutex_init +EXPORT_SYMBOL vmlinux 0xdcfc7fb6 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xdcfead7b blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd11fcbe nf_log_register +EXPORT_SYMBOL vmlinux 0xdd1c2ee4 nvm_register_target +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd319a23 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xdd7c6138 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0xdd81cac3 posix_acl_fix_xattr_userns +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 0xdda148b2 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xdda1c812 abort_creds +EXPORT_SYMBOL vmlinux 0xddac977d security_mmap_file +EXPORT_SYMBOL vmlinux 0xddb17f25 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xde41138e gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xde47693a input_register_handler +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde4a3e90 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xde590ee0 bdgrab +EXPORT_SYMBOL vmlinux 0xde85dd9b xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xde8ae8a5 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdeb380b7 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xdeb9823c register_key_type +EXPORT_SYMBOL vmlinux 0xdecf6132 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0xded931f3 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xded983fe kern_unmount +EXPORT_SYMBOL vmlinux 0xdefaac22 con_is_bound +EXPORT_SYMBOL vmlinux 0xdf0dbedc md_write_end +EXPORT_SYMBOL vmlinux 0xdf1ebbd4 input_get_keycode +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf3c4e6c __d_drop +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf7a5b37 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xdf838ded module_refcount +EXPORT_SYMBOL vmlinux 0xdf8a6b09 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9ece3f phy_attach +EXPORT_SYMBOL vmlinux 0xdfa35767 blk_get_queue +EXPORT_SYMBOL vmlinux 0xdfd51701 pci_iomap +EXPORT_SYMBOL vmlinux 0xdff43ed4 __debugger +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe00fc384 simple_readpage +EXPORT_SYMBOL vmlinux 0xe0151e0e seq_release_private +EXPORT_SYMBOL vmlinux 0xe01a5690 ihold +EXPORT_SYMBOL vmlinux 0xe01c4380 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xe0402e8a sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xe0430604 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xe043fffc mmc_fixup_device +EXPORT_SYMBOL vmlinux 0xe0452dce tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe06be09d xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe07d9bf4 ping_prot +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe089733f netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xe0b12b92 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bcd260 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xe0cfe10b input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xe0f65fa1 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe1164305 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xe12d4dd9 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe135dd86 scsi_unregister +EXPORT_SYMBOL vmlinux 0xe1474839 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xe16fbfd4 pci_set_master +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe1798953 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xe1842607 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xe1a02c1f seq_open +EXPORT_SYMBOL vmlinux 0xe1d5affc locks_init_lock +EXPORT_SYMBOL vmlinux 0xe1dc0f6c phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe2084a3c set_disk_ro +EXPORT_SYMBOL vmlinux 0xe20c5471 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xe215a430 page_address +EXPORT_SYMBOL vmlinux 0xe2193ec4 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xe227c931 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xe22e431b framebuffer_release +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe266f7b2 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xe2752092 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xe278d3a4 neigh_for_each +EXPORT_SYMBOL vmlinux 0xe2845cdf proc_douintvec +EXPORT_SYMBOL vmlinux 0xe29286bc posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xe2979438 audit_log +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2af0eb4 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xe2c6b113 pcim_enable_device +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2e93e43 block_commit_write +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe305787f d_walk +EXPORT_SYMBOL vmlinux 0xe31c8e13 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xe34889d3 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xe34c5595 kset_unregister +EXPORT_SYMBOL vmlinux 0xe36591f1 pci_platform_rom +EXPORT_SYMBOL vmlinux 0xe385026c dev_load +EXPORT_SYMBOL vmlinux 0xe38e0ae1 to_nd_btt +EXPORT_SYMBOL vmlinux 0xe396945e tty_write_room +EXPORT_SYMBOL vmlinux 0xe3ad5800 ps2_drain +EXPORT_SYMBOL vmlinux 0xe3af48ef ip_defrag +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3c01dce agp_put_bridge +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3db616c i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xe3ee4161 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xe40d3660 inet_shutdown +EXPORT_SYMBOL vmlinux 0xe43ae5c4 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xe4588028 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe4a4e9d3 user_revoke +EXPORT_SYMBOL vmlinux 0xe4bd1857 generic_write_end +EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xe4d70571 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4f41193 mmc_request_done +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe507816d mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xe50a6b05 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xe50fb589 pci_match_id +EXPORT_SYMBOL vmlinux 0xe5164a3c skb_seq_read +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe535826a vfs_symlink +EXPORT_SYMBOL vmlinux 0xe53f0379 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe59da963 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xe5b23c4e fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0xe5b741e3 inet6_protos +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d019e4 new_inode +EXPORT_SYMBOL vmlinux 0xe5e04399 rtnl_notify +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5f1feda cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xe6313229 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xe6363aba bio_endio +EXPORT_SYMBOL vmlinux 0xe640371f generic_read_dir +EXPORT_SYMBOL vmlinux 0xe65869f4 dquot_get_state +EXPORT_SYMBOL vmlinux 0xe66452ab dql_init +EXPORT_SYMBOL vmlinux 0xe66d1318 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xe66ea286 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0xe6762afa writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xe68e251a bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xe6924040 vme_slave_request +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69bc764 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xe6a3ffe1 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xe6ae4045 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xe6bad8ad dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xe6bcb58e alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xe6c2c445 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xe6dd236d clear_pages +EXPORT_SYMBOL vmlinux 0xe6df5b67 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xe6e76c88 find_lock_entry +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe768367a loop_backing_file +EXPORT_SYMBOL vmlinux 0xe79c2b90 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7af592a pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xe7bc3721 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xe7c80140 simple_write_begin +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe80b5e74 __frontswap_test +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe82411cc inet6_del_offload +EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe830fb17 from_kuid +EXPORT_SYMBOL vmlinux 0xe835b751 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xe838c0de check_disk_change +EXPORT_SYMBOL vmlinux 0xe83b0287 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xe83e1df5 sget +EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer +EXPORT_SYMBOL vmlinux 0xe888522f __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xe896fe83 inet6_bind +EXPORT_SYMBOL vmlinux 0xe89a0a20 input_flush_device +EXPORT_SYMBOL vmlinux 0xe89fc019 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xe8a2109d phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8aba5b6 padata_stop +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c44245 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xe8ef57e5 get_tz_trend +EXPORT_SYMBOL vmlinux 0xe8f4bb59 input_free_device +EXPORT_SYMBOL vmlinux 0xe901aed5 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91ed9f2 pci_choose_state +EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next +EXPORT_SYMBOL vmlinux 0xe94424bc pci_enable_msix +EXPORT_SYMBOL vmlinux 0xe94f4d7b mapping_tagged +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe96b5629 param_set_ushort +EXPORT_SYMBOL vmlinux 0xe9746580 dquot_initialize +EXPORT_SYMBOL vmlinux 0xe9753313 simple_fill_super +EXPORT_SYMBOL vmlinux 0xe9829850 __netif_schedule +EXPORT_SYMBOL vmlinux 0xe9877364 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xe98ba906 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xe98e2d0e rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0xe9c1c3bc param_ops_ulong +EXPORT_SYMBOL vmlinux 0xe9c23b6f inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xe9c41480 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xe9d69d7e mark_info_dirty +EXPORT_SYMBOL vmlinux 0xe9f63447 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea103ba9 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xea2046f7 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xea2d02cf acl_by_type +EXPORT_SYMBOL vmlinux 0xea34a8c0 devm_clk_get +EXPORT_SYMBOL vmlinux 0xea36ad40 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xea3cd48d __check_sticky +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea799b3c debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7fc9f4 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xea9eee7d elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xeab45f64 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xeab787ff ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xeac3d8cc __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xead63ff6 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xeadb63a1 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0xeaf1a650 param_ops_long +EXPORT_SYMBOL vmlinux 0xeb0016e1 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xeb21c866 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xeb29a1f6 pci_device_from_OF_node +EXPORT_SYMBOL vmlinux 0xeb29c551 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb4559d4 set_bh_page +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb65dc29 bio_integrity_free +EXPORT_SYMBOL vmlinux 0xeb6fee80 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xeb7f9db8 vfs_readf +EXPORT_SYMBOL vmlinux 0xeb8374f7 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xeb8d93b5 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xeb941906 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xeba202f6 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xeba91120 block_truncate_page +EXPORT_SYMBOL vmlinux 0xebb32bc8 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xebb97789 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xebbfecfe of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xebc32a21 input_grab_device +EXPORT_SYMBOL vmlinux 0xebdc9025 lwtunnel_output +EXPORT_SYMBOL vmlinux 0xebdd3060 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xec0038bf mmc_register_driver +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec23a052 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xec3e8227 follow_up +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec71fea1 __kfree_skb +EXPORT_SYMBOL vmlinux 0xeca77afa tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xecacdc0e scsi_remove_target +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 0xed0ffa54 seq_file_path +EXPORT_SYMBOL vmlinux 0xed1d0d60 bio_copy_data +EXPORT_SYMBOL vmlinux 0xed3b59f0 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xed3e0466 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed64f2e7 agp_create_memory +EXPORT_SYMBOL vmlinux 0xed8ec399 backlight_force_update +EXPORT_SYMBOL vmlinux 0xed9228c3 kill_pgrp +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedb39313 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table +EXPORT_SYMBOL vmlinux 0xedcd49ed tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee25b4f7 from_kprojid +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee31b8d5 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xee742341 pid_task +EXPORT_SYMBOL vmlinux 0xee7aec43 cdrom_release +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeee8986d inode_dio_wait +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef98212 tcp_prot +EXPORT_SYMBOL vmlinux 0xef07eacd tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xef22cdfd pci_disable_msix +EXPORT_SYMBOL vmlinux 0xef593197 vfs_write +EXPORT_SYMBOL vmlinux 0xef78efa9 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xef92bf92 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xefa9cd39 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xefb248b1 sk_wait_data +EXPORT_SYMBOL vmlinux 0xefc1a934 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xefc67a76 tcp_v4_send_check +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 0xefdf068c tty_port_close_start +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf01d8cc8 netlink_ack +EXPORT_SYMBOL vmlinux 0xf0372c34 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xf0406ff8 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf086f193 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf08d282a ip_setsockopt +EXPORT_SYMBOL vmlinux 0xf096cd7c devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xf09858f1 wait_iff_congested +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0b6b175 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xf0be539f posix_test_lock +EXPORT_SYMBOL vmlinux 0xf0beea44 eth_type_trans +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 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf14b5a0f netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xf165d555 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xf184165c mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1b6a3d9 vc_resize +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1dc58f9 alloc_disk_node +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e8d55b ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf211b32f user_path_at_empty +EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock +EXPORT_SYMBOL vmlinux 0xf23b55b2 submit_bio +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf25778a7 tcp_poll +EXPORT_SYMBOL vmlinux 0xf26e8992 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xf28f9e52 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xf29f87e0 agp_backend_release +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2a112dd input_unregister_handler +EXPORT_SYMBOL vmlinux 0xf2a11f59 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xf2acce4c dev_notice +EXPORT_SYMBOL vmlinux 0xf2aee37f pci_disable_device +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2cb4c11 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xf2d8abb2 fb_pan_display +EXPORT_SYMBOL vmlinux 0xf2da98d1 check_disk_size_change +EXPORT_SYMBOL vmlinux 0xf306b25b of_phy_connect +EXPORT_SYMBOL vmlinux 0xf30b7655 init_task +EXPORT_SYMBOL vmlinux 0xf30bd3f0 blk_mq_abort_requeue_list +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 0xf346ac61 dquot_enable +EXPORT_SYMBOL vmlinux 0xf348dcb4 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf38d33f7 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3a331e4 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0xf3ac2f51 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xf3b09e91 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xf3c3e42d tso_build_hdr +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3fab646 udp_disconnect +EXPORT_SYMBOL vmlinux 0xf3ffcb8b kernel_bind +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf421f80b scsi_block_requests +EXPORT_SYMBOL vmlinux 0xf4251973 cdev_alloc +EXPORT_SYMBOL vmlinux 0xf42cc8af devm_memremap +EXPORT_SYMBOL vmlinux 0xf43c31d2 security_path_unlink +EXPORT_SYMBOL vmlinux 0xf43e2221 pipe_lock +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4449388 timer_interrupt +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf481c804 pci_request_region +EXPORT_SYMBOL vmlinux 0xf48e5e77 input_unregister_device +EXPORT_SYMBOL vmlinux 0xf49ba7e8 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xf4b47437 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xf4b86182 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4eef396 gen_pool_free +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f90f21 inet_frags_init +EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0xf52321e0 atomic64_sub +EXPORT_SYMBOL vmlinux 0xf5362eda md_update_sb +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf55313a0 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0xf56c10bd qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xf56c8b91 vga_con +EXPORT_SYMBOL vmlinux 0xf56ef64e elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xf588688b dev_printk_emit +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5d0e78b gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xf5d8c7f6 __getblk_slow +EXPORT_SYMBOL vmlinux 0xf5dc7253 blk_fetch_request +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5e92bf5 set_device_ro +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5f5d5c3 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xf603376c mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf64345f4 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xf643b02b phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xf6481ab6 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf6789a40 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xf67cca8d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf6935308 dm_put_table_device +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f44a10 security_inode_readlink +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70384d7 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xf70b0ea9 generic_write_checks +EXPORT_SYMBOL vmlinux 0xf71521ba atomic64_add_return +EXPORT_SYMBOL vmlinux 0xf7203ec8 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xf720556a netif_carrier_on +EXPORT_SYMBOL vmlinux 0xf7243dfb inet_del_offload +EXPORT_SYMBOL vmlinux 0xf732348e qdisc_reset +EXPORT_SYMBOL vmlinux 0xf7536bea tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf782a821 dst_destroy +EXPORT_SYMBOL vmlinux 0xf79b8e9d ip_do_fragment +EXPORT_SYMBOL vmlinux 0xf7a171ac dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xf7a1d03b ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xf7a2fe8a add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xf7ac178b register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xf7b85bfb param_set_copystring +EXPORT_SYMBOL vmlinux 0xf7c5f812 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xf7cdc736 clkdev_add +EXPORT_SYMBOL vmlinux 0xf7cf156e nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xf7d74af3 netdev_crit +EXPORT_SYMBOL vmlinux 0xf7feeb56 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xf8087506 netdev_state_change +EXPORT_SYMBOL vmlinux 0xf80f271d gnet_stats_copy_rate_est +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 0xf82db0b1 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf845e2e5 __nd_driver_register +EXPORT_SYMBOL vmlinux 0xf8831670 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xf8874956 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xf88c4d88 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xf8acbdd6 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xf8d4524e of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xf8dc1a35 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xf8e398fc memstart_addr +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8f69ec6 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xf91ef914 simple_release_fs +EXPORT_SYMBOL vmlinux 0xf9228003 get_immrbase +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf93601b1 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a5ae4d mount_ns +EXPORT_SYMBOL vmlinux 0xf9a91c7b cdev_init +EXPORT_SYMBOL vmlinux 0xf9ab9d52 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xf9c859de agp_enable +EXPORT_SYMBOL vmlinux 0xf9df9d76 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xf9e18417 rwsem_wake +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9ed4d47 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xf9ff290c unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xfa0387be jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xfa04130b simple_link +EXPORT_SYMBOL vmlinux 0xfa3989bb phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa6035ca agp_generic_enable +EXPORT_SYMBOL vmlinux 0xfa667bf5 d_make_root +EXPORT_SYMBOL vmlinux 0xfa837db8 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xfaa47eb4 mem_cgroup_begin_page_stat +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 0xfaebb418 scsi_device_put +EXPORT_SYMBOL vmlinux 0xfaffed01 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xfb00ab9e __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0xfb097463 generic_getxattr +EXPORT_SYMBOL vmlinux 0xfb15ceca __elv_add_request +EXPORT_SYMBOL vmlinux 0xfb37f157 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb96242c agp_generic_destroy_page +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 0xfbce8882 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc171f99 dquot_commit +EXPORT_SYMBOL vmlinux 0xfc20bdca generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xfc2c90c2 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node +EXPORT_SYMBOL vmlinux 0xfc4583c7 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xfc590846 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xfc5f57bc tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xfc632ea5 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc7489fa tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xfc93d847 set_nlink +EXPORT_SYMBOL vmlinux 0xfcb5f882 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcc2eeaf filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xfcd1fde1 ip_check_defrag +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 0xfcfc26b0 d_rehash +EXPORT_SYMBOL vmlinux 0xfd0ce366 unload_nls +EXPORT_SYMBOL vmlinux 0xfd101c59 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xfd26c7c9 max8998_update_reg +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd3bbb69 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xfd5e0dc7 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xfd63fc2c dquot_disable +EXPORT_SYMBOL vmlinux 0xfd77b9e1 kill_anon_super +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd9d5c22 serio_rescan +EXPORT_SYMBOL vmlinux 0xfdae5347 noop_fsync +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 0xfdbec5e8 tty_do_resize +EXPORT_SYMBOL vmlinux 0xfdca6c99 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xfdcd21f8 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xfddc7cf4 of_get_property +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe00d83a xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe0721f2 skb_clone +EXPORT_SYMBOL vmlinux 0xfe0c173b cdev_del +EXPORT_SYMBOL vmlinux 0xfe18b343 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xfe2056ad swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xfe23808b jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xfe420800 i2c_transfer +EXPORT_SYMBOL vmlinux 0xfe4a392b __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xfe5c1f40 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe674355 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xfe716b94 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0xfe71ea28 mount_single +EXPORT_SYMBOL vmlinux 0xfe7b609d pci_select_bars +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe822d55 get_brgfreq +EXPORT_SYMBOL vmlinux 0xfe8258b6 ata_dev_printk +EXPORT_SYMBOL vmlinux 0xfe920c61 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xfe9dd48f vme_register_driver +EXPORT_SYMBOL vmlinux 0xfec6e4cf blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xff0415c4 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xff090eee pci_bus_put +EXPORT_SYMBOL vmlinux 0xff0af452 dump_page +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff2cf67a kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xff316ab8 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xff378c75 pci_save_state +EXPORT_SYMBOL vmlinux 0xff48fce4 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xff51bc7e misc_deregister +EXPORT_SYMBOL vmlinux 0xff532ec9 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6dea25 smp_hw_index +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff79df7e flush_tlb_range +EXPORT_SYMBOL vmlinux 0xff84c814 tty_kref_put +EXPORT_SYMBOL vmlinux 0xff8a9e6a cdev_add +EXPORT_SYMBOL vmlinux 0xff8c7850 register_md_personality +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xff9d4cdf pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xffc43c0f skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xffd1da2c xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffdef44c blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xfff212a9 make_kprojid +EXPORT_SYMBOL_GPL crypto/af_alg 0x17d0b8de af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x3572adfe af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x375cf7aa af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x6eb3f714 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x88356863 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x8873737b af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc0263f7d af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xcdd8d95e af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xdd40716c af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xea9f1963 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x314d980a async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x5c94796c async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xad870908 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xa73513c5 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb76507f3 async_raid6_2data_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 0xa8a812ac crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xf78d7418 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x0970c398 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x09dd8689 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x0b5d0883 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x0dfb65fb cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x8ccfd3c4 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x9135b70e cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xbc554fc8 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xc5ce2efc cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xe232e232 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xee676add 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 0xc6abfe59 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x04dc5486 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x09886209 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x1fd77da3 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0x2d484072 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x329d0b1a shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x97f76990 shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0xa5086516 shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0xf53d119d mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x355d845b crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x561d516b crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5d9150a5 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x7101d275 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 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 0xa0b1db6f xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0dab35f7 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x17508b1a ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x251b44f7 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2bb6c01d ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4e77413c ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5056aa6f ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x524a8109 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x65580bb2 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x73126064 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x738209de ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7a979dbd ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7b81cb70 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8748e92b ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x906cdca8 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9a0b5e86 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9f668eb8 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa7d1d402 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb606e150 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbdbc770f ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd1ef2aa7 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe3206be2 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf483484e ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf9f653fa ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x07033407 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1172ae77 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x21c4a618 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x26280032 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x27ced6ca ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x346fb626 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x39b4b8b0 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7384dce5 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa368070b ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa6d5f583 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb7c04625 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xccf7c366 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe154b8a7 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x84761f1b __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xbbff56b4 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 0x065486ea bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0fdeb628 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1447d384 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1d835f43 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x204cc564 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x24c56246 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2668bac1 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x27c617c2 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2b7d8752 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6b34644a bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7d3ffb88 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x85d4cf88 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8c9476f6 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9ddb933b bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa01b9371 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa98cf00b bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb31f0b9b bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb88ce945 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbc4deece bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcea682ef bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe34881ce bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe5a50a5f bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf296fc60 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf35e7c94 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3354b7d1 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6c50c0a7 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x885fcfb0 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9ffb44a7 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf05e3b45 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xfbbaa892 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x054c3db7 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1f6a3e91 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x43770fb8 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6001c4fa btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6e116be6 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7717f0a5 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x86fa3fb1 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9120314b btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb8c28624 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc60c0aa3 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd7c63fa6 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf3417898 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x04403c5e btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x13a70299 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3641975b btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x47fe03b5 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4ddd6a09 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x52d28bc5 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x70637763 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x86b7cae9 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9d75a765 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa1e26782 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf2035e0f btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x63ab7c1b qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x91609677 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8ff9fda2 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x8353df2b 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 0x9d0511ed 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 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x278ca04b edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x283b5c80 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x48290b78 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4e3ea0d3 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5ebb3c6e edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x61bb85c5 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6b15cb76 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 0x7a7bfea6 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7dd0d23a edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7eec00fc edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x88339708 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9c294a74 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb5831cb4 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xba05464c edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbdab7e80 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc1638656 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc33d9b85 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc507b2cb edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd1c77559 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdd82afb2 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe034cfac edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf0679e16 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfbf3b8d2 edac_device_handle_ue +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 0x5875ef4c of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8320c34a drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x936fd6e3 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa00b98a4 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd9797028 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe782a9b6 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x82ccf775 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xaa994e78 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xc96152c1 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 0x1188e27e hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c3128ec __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x287d01fd hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x302a53b7 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x30dfeb2b hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x37dd42ed hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x39ed946a hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a15e08f hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a72dece hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b45d030 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x430f9d6b hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x432f5f54 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x446e8527 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x474336eb hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x530f5317 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x635b20f3 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x719dbd6e hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x72969cb4 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7a26d554 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x84b0f7e1 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8bd8f58e hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8c24ad80 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8cfe608f hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x900837b9 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x95c27fcd hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa55c88b6 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb5c3f29f hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbcb2db24 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc5084add hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc77de2eb hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc9a8ebb2 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xddde63a0 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe18e6f57 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe34affb0 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xef090e2d hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe248a94 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x6c57c9bb roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0ad3b783 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3da15aa1 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x537d9fba roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x687198f9 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x79737635 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf022359a roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0fd46b4b sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1b79fac0 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1d87f7b8 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7c1a1c23 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9ea0efdc hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa5d57566 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe3413450 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe9a17174 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xef3f1c7d sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x20143aad 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 0x2648003d pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2a8ff93d pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3f225d65 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x48d2fb47 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x572a4712 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x59bdf1f9 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x785f0552 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7f26de77 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x811be6af pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8dd5f57f pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x90687358 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9fc182cc pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa7146c38 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc4602d32 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd553b1eb pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2c1beebd intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x42e8409b intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x430d3859 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x47324ddd intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6e53f67c intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa5d8af09 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd56fce24 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8adbb429 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x97195660 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9c0d02b9 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9e18c580 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcf2f2273 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 0x0db10968 iio_scan_mask_query +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 0x17e07dd4 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1b2ffddf devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x22edcccd iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x25c8afaa iio_validate_scan_mask_onehot +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 0x462702eb iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x58dfdfc1 iio_push_to_buffers +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 0x88a90538 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x89eb4fd7 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9cdd6920 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9febc35b devm_iio_device_unregister +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 0xb9fcc262 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbd3fb3db iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbeba73e3 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc51dd107 iio_enum_available_read +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 0xd71dd7db iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xefdb5353 iio_update_demux +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x067c5c11 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x13829392 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 0xd63fb058 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x1d001ad9 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x418a9643 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xdcd3a5e4 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x0461cd3d cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xe4011b72 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xfcbeecac cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x0bd5f17c cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x5a4aaaa6 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0630b0bc tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2e1bd5e5 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x832398b4 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xdfaa807c tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0a03efec wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0e61decb wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x17bdf2b6 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1e030e40 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1faaf4bd wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x706d93fc wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x88efbaed wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x95cc3e87 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9aed0a40 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc6a9ef72 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe226fb2a wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfad615bb wm97xx_reg_read +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 0x1308aabd gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x15b35548 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x16f8cf2b gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4d3a1635 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4f21dcb4 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x52191a4d gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x576298ae gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5e445d41 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7eb6e489 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x909da03c gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa2989598 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xadb69f37 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb5eb434b gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xbd5aadad gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc7df0a1b gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd01623ab gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfea51b65 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 0x1460f663 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x31ac0c38 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x53903d00 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x54386f9c 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 0xad26df75 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb10ff13d dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb234b0d2 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 0xd1f72b0e dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdc670179 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 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 0x8c24c0b3 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 0x097fef4f dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x19a82046 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x24653a60 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x37090b7b dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x49ffc6ff dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6999e4e8 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2997e16 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x05342b8b dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x7935ba70 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 0x5dc15090 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 0x819f3a30 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x89219b8a 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 0xd2b5edb7 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 0xd9ec6fa3 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 0xf4d2306b dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2d6dcbbe dm_block_manager_create +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 0x036adb98 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x20328345 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x47f71568 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x49b716e4 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4f5cd97f saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6f851572 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7b4c05e8 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x86e15eff saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xed1d5537 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfcebf482 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0e85da42 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x163cbc1d saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3368137b saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x485a5db6 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8b0d8a03 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd49f9045 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe2d5c1e6 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x061d54cf smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0b371c3a sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x211a7d75 smscore_putbuffer +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 0x435eabba 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 0x4ac440ed smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x64e71e92 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6ac914a4 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7a8d5c8b smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaa89abb0 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb514a398 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbc475bfc sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc28d2572 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc39e2a94 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc5cead6a smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xecb652ca smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf2b4b97c smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfee0f710 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x34b83677 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x5770f427 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x2a92eef4 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x0161c32c media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x0ae33b4f media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x0e8c5bc6 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x181ae090 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x31da01c1 media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x424b1d11 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x4c319267 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x5de1e4e8 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x7255a7f0 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x75aa351f media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0xa4497a7f media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xa8f2d358 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xac150f1e media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xb5058f9f media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0xb94aeb35 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xcb72a086 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xd074c292 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0xf792c699 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xd6f0c28d cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0268ce4e mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x12a4ea8c mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1c97ff71 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3876f928 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3b7d1b51 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4674ca36 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4692d01f mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x48b33bd5 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x491af05a mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6a8af051 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6ca6d992 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x76309fab mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9a1ca2ac mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb5c0c97e mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc07e947d mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc1184104 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe110e9c4 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe2779030 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xee79f6f5 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0620b8ec saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0fb0e2a0 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1f3c2c10 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x25a99208 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x26a1854d saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x35dfe599 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x45db40b6 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x48d55ebc saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4b1d6fce saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x553659cd saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x82b41680 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x90e8972d saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9c30e31c saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc06eeecb saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdb71b397 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdca753fc saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf1f5dc04 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf7fa37c6 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfdf5aaa6 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x01fdb401 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x02305578 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x203a8144 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x21cda2a6 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x70821abd ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa97a8f43 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdebee105 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 0x28e6b663 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 0x3d532b6e 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 0x5b184fa2 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x5da30326 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x93e72245 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa8da6474 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfa8712a0 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x12fe255b 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 0x20990309 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x25b21039 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x028b3cd1 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x19a5cc4b ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x236d456b rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2a44b590 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2c68dd4c ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x323b92e9 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3a191706 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3d04b50b rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6e387b52 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7308a38d rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7bf5a6ae rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc1ebc1e5 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc6d44ea6 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd9eba6ed ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe495f59a ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf288a747 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x38c542f4 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x0e16cc77 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x0dd04661 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x4e63a16f r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xe5aece31 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xb4dd631f tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xb3c78fbd tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xddee886e tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x2b90d60d tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xa6890329 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xa9bf8f24 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x2b8daf90 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x4031257a tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x794051ca simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x155fd544 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1f47b777 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x318973ea cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x36a6d09b cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3a39f3f5 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x488346f9 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x49f7a8eb cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4af87a1d cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x646dfd34 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x64fc0fdd cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6cea275c cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x731bfdf2 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x96d39ff3 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbc121fe2 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc5018f39 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xca5c1aa6 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdb89bad4 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe82517a8 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe8440b4e cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfb97db1d cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xea6ba7e5 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x7ad916ae mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0d15e7d8 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2517be00 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3e4edb59 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5357e3b5 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5bfebd02 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5ed5158f em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5f4d4213 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x64516701 em28xx_write_regs +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 0x9e83a58b em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb2f45b59 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbe77ec19 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc0d15062 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd4ad58ec em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd7271100 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd94a8d1e em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe3f34dd0 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf89bc3ed em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfdb152da em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x5e2052c1 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x78173084 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xb85b46f0 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xee755793 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 0x16b3ba18 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x1ee1e186 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7cae025c 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 0xab9e79f7 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xbfd941cc 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 0xfa9cf487 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 0x26cf2c81 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xf4eb6fc3 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x11d81e60 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1dedd172 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x231b3f14 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x26a84819 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x28d14aaf v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2b42e235 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5598ee80 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5cbf0221 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6aa2b40d v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c332316 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x714d21f8 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7471f3bd v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8a08dda0 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9161e401 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x952bddef v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x960bd57c v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9ca1d76b v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaaa40d2a v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb2033d39 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc150abc2 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 0xcb9e79fe v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd16d6316 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdd1358d0 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdebdc70d v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe5f7349d v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfa6893c6 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfebaeb57 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1cf4472e videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x219df1a6 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x34382263 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x34fff241 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x36cfd084 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4b9122ea videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4f94739e videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x505ce7aa videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x56c72257 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x56e676de videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x61693706 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6cc4db5a videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x764a5662 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8a9bbe6a videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x97e4cc60 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9b9fea3a videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa3e544ad videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xafa391d1 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb30bd361 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb410fb62 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc98853a1 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcd14fb9f videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd6476746 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe853dc84 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1e5b5789 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2a3c9657 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x400c8cde 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 0xbb2ca6f6 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x512b23e0 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x9fc4e80c videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xce4ecfc6 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0ec32c69 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x13095ae2 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x15719876 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x29734979 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2dbdbae0 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2ffa1399 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x58867b9b vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x664d9648 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6ec77618 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x74cec2ac vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7dec18f6 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8403799e vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xaec02d17 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb0470a6d vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb0e63c5b vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe12b9ec2 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xee371d40 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf68df6d3 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x95987560 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 0xe6318a48 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x9b13f117 vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xc4ee41be 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 0x5ca9d9dd vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x08c5521f vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0b6b628b vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x10bc15de vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x13ea244f vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x14126ad0 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x16d98e8a vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1d8a802e vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1ecaf998 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2ac40676 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2ccd3e9f vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2f404fa1 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x32a5551c vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3404afe8 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3af0d6ff vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3f72ab77 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x50ec894e vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x66377f9b vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x698fc061 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x70a449fb vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7f0488ca vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x88e84f1f vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x899316ef vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x97647f43 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xabc1b212 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xaca006cd vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb0501fb0 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb74c7c81 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc74d502a _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcefb4e05 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd957a9ce vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe3bd2bdf vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf176355e vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x55c00af7 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x026d361c v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x04f34a72 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x05392c4d v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x05ceb837 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x085c1c98 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0a7c1f7a v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x14e976f9 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28d20b15 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31e3d76e __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3740e82b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3c5d91d4 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x49940079 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d2a48e5 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5244b11f v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5fd4766f v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x63205e1a v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x64c48eda 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 0x84d35f83 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9495c21d v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x958a28e3 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1eb9897 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa61c205b v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa7b7411f v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa8c4203a v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae7340aa v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb757c1df v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbd8bd6e6 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3f899ed v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe099049c v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe35ec95e v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xee9e226a v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf8062760 v4l2_device_put +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 0x5308cffe lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd012a520 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xf1037623 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 0x0f89a0d0 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x194e60e1 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x201fdfb2 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2a5f90bc pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2cd26200 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x67a0f747 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x727cb424 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x83f75b38 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8f6f6306 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe515ae62 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfae76360 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x0d00ddaf pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x17ea1687 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1170995a pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5aa4fa53 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa556bcc8 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb13be83d pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe6293c0f 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 0x0a42dc55 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1288c96f rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1b98e258 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x20e9b57b rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x28973b7d rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2cfaeb92 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3ead7a4c rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x418395f1 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4b961e6d rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x53502d20 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x59a44c6a rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x61ff60fb rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x683a9335 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x73f2e344 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7682a890 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7bf70b9a rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x813d35b1 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8a77dd8e rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8dcfdbe0 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9ba253ac rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xab8c2963 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb0cdd4dc rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd321ed86 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd6124c07 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0899561d rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3b281d7e rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x443e4e6c rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4d5106ab rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x641353d2 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x6f6fd090 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7c0376c2 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x99428c0d rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb545f760 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc34784fb rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe09ad037 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe1b3392f rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf88b2173 rtsx_usb_send_cmd +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 0x0e479fab sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6e6628bc sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7d20ca7a sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x91099948 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb55bb956 sm501_unit_power +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 0x15e39c18 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x805c8927 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb21159d0 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xff336275 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x047c92bc 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 0x455cd6f6 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8a2fe62f cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x97dd1cc8 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xcc89c1ce 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 0x41bf28a3 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x594e26eb lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x60473606 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7a2ed108 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7a8b65d6 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x99fcb62a lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbc56bcfd lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xddb05552 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x81df6421 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xcd6e377b st_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x084f8c9d sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x08a1e169 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0ee0b266 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x13d96b23 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x155aec05 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x304a6d05 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5f095941 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x76684659 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x88b63440 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc4d7a9b8 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdec031dd sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe7f8078e sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeedc8e61 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfe4edc6b sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2332b97f sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x54200912 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x64e00a5c sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x68378434 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6b525c0c sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7878c6e6 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc028612a sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xcae0c96b sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe49b7a45 sdhci_pltfm_clk_get_max_clock +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 0x02cb50a5 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0319f104 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x07405fc2 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0ba4a5d0 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1756f7c9 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x17c58955 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1de40167 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f5cb342 mtd_is_locked +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 0x3071be67 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x498d8197 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4a796362 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4b1c1f0d mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4cac112b mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4d6288b7 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x524c5bcb mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53c62ad8 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x585d90c1 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5ca6a32a mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6313b51b mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x637d7da1 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x656837f0 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6f5bb272 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x754a4a53 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x813f12e7 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x85f03262 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8d6ab298 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x93f5b3b7 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x963bf13a mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa9f23be9 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xad193eb7 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb2784dae get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb65533e2 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb6c80df3 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbfdf4d30 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc455bb83 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd36ea488 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xec918df9 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xede8c209 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf51a761f mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf58fee40 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x25b11c82 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x7f3a0e28 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb74359f1 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd5043de7 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xed8f0be9 mtd_blktrans_cease_background +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 0x0cb03268 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x20ba701f ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3a60eb9e ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x427932fb ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x58604d22 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5c48f6dd ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x648988ab ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xabe4294f ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc71bc0a5 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd5db88c5 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe163c845 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xeb1d8966 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf7cd2645 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfeeec765 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x5328d9c1 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x559df938 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x48b26260 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x671f7e38 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb27bceb9 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb346b924 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbb8fae39 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc82b8c24 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0d4e8009 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1a61bb51 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3a5bc796 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x446ddaf4 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x518e8bdf can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5376e752 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5867a64f can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x608e151f free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x77713dab alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x905e741f safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x90fba4e0 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9e584466 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa4f9f862 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbce9ca31 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc104b51a can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc80602da can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcb04ecea open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe3a141d5 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x31db810d free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x41f83dbf register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x6fe991a2 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf0b7e58b alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1f4b768d unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x2b6398fd free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3919570a alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3f47db43 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x0dc7131b arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x236b7167 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01694a22 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x061fc9b6 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a965524 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c441129 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0de99820 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fc6bc06 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1035929c mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11f8b1b0 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13e89f71 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14a25bdc mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17cead84 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2204001a mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23c0111e mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x253e8c72 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x271aa59c mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f67102a mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3473e383 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38e8995c mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a72e639 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e09ec53 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e995b13 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3efbee82 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40a623c7 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43dc93c5 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4738f219 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x497e2705 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a9c8ba4 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b2a00ac mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cf8f5ed mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d2f1a5c mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fcdac65 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51012348 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x522155ee mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5270d5bd mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54eed57a mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x594f09e5 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60493f5e mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60bb61a1 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6223a759 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63f186f6 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63fdb812 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x694a1089 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6aaf74a5 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b942466 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ee45c66 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74f5da1a mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x750c3dd7 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79060eb9 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b9dce96 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e26271e mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ef6bdc9 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80ee6910 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81473899 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82c441e1 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82f4656b mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83eec1a4 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84dcc8ae mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85a2ef31 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x874aee05 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8845766e mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8924a856 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89830235 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ac1422c mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ccb955c __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d17b792 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dba3f1b mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x906befa3 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91fd2e8b mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9465d045 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x976f18be mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x986f3d96 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99b339b2 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b80fd31 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d5c95a4 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d6cc780 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dadf4c8 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e7e0c1e mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ea5c87a mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa23177b0 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2da99e0 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4404460 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6f44c4e mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf84e522 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5945f59 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6a21310 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6ff6e72 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9e71b3b mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd87b5f2 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe6cdb5a mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfc34cb8 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc05541e1 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0e1d807 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc14ac345 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc15e283c mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9b20a26 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd4c9e9b mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xceadc40f mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf92f641 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd058a637 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0b44105 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd353f950 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3b88788 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd690d406 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8944966 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8d7146f mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9774c79 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb4b5f11 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf87108c mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf91fedb mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0402a6e mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe091b3c6 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe687a2e5 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe90247aa mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb279022 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed014257 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeec98e4d mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1536fdf mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf293d0d5 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf31089d1 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf38219ba mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5843828 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8a11389 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa527eed mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe8a18ff mlx4_config_vxlan_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 0x20f7b725 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22502b58 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x240cc07e mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x274e0978 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x276dbc5b mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27ff99db mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29ccfce4 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e623b87 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3065d3fc mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b023cdb mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c04831a mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fa335ed mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4179e5dc mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41b8be2e mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43123cd5 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43a59a89 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x469791d0 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4927fc94 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a310cb7 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e4c2707 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5929914f mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bb2daec mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63a2f509 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78a912e3 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x806db54b mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82d35e9e mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f9e7bf7 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90142f8d mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9430a632 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ab4d5f6 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9aec9906 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0a7ec0d mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7176cd0 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb436f483 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4fdb9eb mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb87a7baa mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb92c4a4b mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9a2493c mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1b1466a mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc688dde2 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd9d022a mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce705de2 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe216f895 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa91b557 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfad1fd31 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x372cd2f5 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 0x654a08e0 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb0d03aba stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd474d9ce stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe340cbc0 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x60acf789 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x63514b51 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x70bac9b8 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xeaafe512 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0a7b173e cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4f9d571b cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5e3eaf91 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6405a255 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x7455b9f0 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x7e9d2704 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8b526dd3 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x951bb535 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x98dc5545 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xab9415cf cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xce7b7157 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xce7c83c1 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd4d32d15 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xed4c74ae cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xfdde3577 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/geneve 0x341d041d geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/geneve 0x81e24c7b geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x09ae4e92 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x161dbb7b macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4c7254fe macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xcef5809a macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xa00d1b75 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x35b9bc60 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x45159a1c bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4f54d6c9 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6e0e13db bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x715f7b0a bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa7005c5c bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xad61a211 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc43ab5d1 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf11898e3 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf9bd6454 bcm_phy_write_exp +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 0x0699d068 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x54861d4e usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xcf4a94a1 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf2d86f9b usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x062c0a7e cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x27efc803 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2bce7743 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x706247f6 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa04889b8 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd04e6ec0 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf018725b cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf3333b6c cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf6067e23 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x28501e3a rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5b7f5213 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6d4050ef generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc557ffe9 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd1d05ea5 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xecb77228 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00f8b270 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0f57e986 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1534f0c9 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x291ab18a usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x32a56732 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4d747ee0 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x534e9758 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x59df45bf usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5d8995b6 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x705a01b6 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x729bda48 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x72da2e3c usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x75d9e22f usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x78d3b514 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7a66bd41 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x847d8642 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8c5e7249 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9fc27244 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa40f6adb usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa8edd299 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb2fe5472 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb8a932eb usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb93eaa25 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc4379729 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcdb6ce48 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdebcf751 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe0816824 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe6488df1 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeda033da usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xef7ae9cf usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf509824f usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xffe7622b usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x505fbf70 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x52aeddfd vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x06ee1da3 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0a803a29 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0ddf4c3e i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x171bc4b0 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1e7bd12d i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1fa9c1cc i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x23b60780 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2a7d423e i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x578ce5fe i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8e67cb72 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa78655e1 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcc7555da i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd507122f i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf4bf1af5 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf60f382b i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xffb2932e i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x167adbc6 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xa249c075 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xaaf17f77 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xdbd7e0e9 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x50cee3d8 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x0ac865f4 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x10d51953 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x12c8a4f5 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x4f158bb8 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x65bb0d1a 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 0x05c934c6 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0799797f 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 0x18ecbf28 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1a5839df iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x204acd05 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3ef92b8b iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x58bde417 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c08e114 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x61735e51 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6a2e240c iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x72f60c4d __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7a31ec10 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8080a312 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x836f44e9 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8caa40fe iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x989e43a0 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa149440c iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xac2fe2ef iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc5238e1c __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc5d28e24 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcd117d4b iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd3e86d0a iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe196e3c7 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe3bc3480 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xec98837c iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x253506f9 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x31725aef lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x54af92f2 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6f8e7c80 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x72844719 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x99691e5f lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9a28cc56 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa62b3e5d lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb8873691 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb9d95461 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd14c0af0 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe06eb96a lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe4285fcb lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf4471441 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf6cf1479 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfaf94603 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x0e42f5b7 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x1bdde1e0 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x1e3b097c lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x83e4ba92 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x8f4c56de lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x91bb0c22 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x9e541927 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 0xf4202040 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x165a4bf2 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2c8d4008 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 0x53dc0c68 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x578022dc mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6101ce9c mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6146afde mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x76d50b41 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7e0435ad mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x811b1a64 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x84070e62 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x87a5b6b2 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8ff52022 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x952c6436 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x968289bb _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa567b2aa mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa682bf85 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa7905038 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xca6751e5 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xce5a73c0 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x2f026bee p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x82e5ee3e p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x98334c43 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xaa51350a p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xb68282eb p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xda36038b p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xde9ca9a0 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf47036a8 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xfa5cf915 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1ed0da4a rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43e38cb7 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9399c719 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xecca568f dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1516a22a rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x155c68a8 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x16be3c0e rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2c6bb356 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x34dd0539 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3b67b27e rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4085090e rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4b577e6c rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x58827afb rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x627e9414 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x66804c76 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6a6ef7cc 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 0x7a7e5371 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x865fe6dd rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8ac7b637 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x92e2ea13 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x95d2912a rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9d29a996 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9e4ea88a rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xab40032e 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 0xb7a5fcc8 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc6bdfd48 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc6fa952a rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcba77864 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcbeb44ea rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xded03119 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xee7fc55f rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0525a8b9 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b230882 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x138c468e 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 0x274fab1f rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2ce5a661 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ac65fbc rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x544824cf rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58011b71 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6af6d83a rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7168dac2 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7393136d rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x77b01c41 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7c209978 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92e78194 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9ec5e56a rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa833228c rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa9e754c5 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa5f59f1 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbec46538 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x2d5f3f75 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x75df25f1 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa0e7e206 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 0xe17ad7e6 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0187758e rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x066db0fc rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x077055a7 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x11192fba rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1d88cbd0 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1edf3055 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x22aaceba rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2441affc rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3288cc36 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x38632bdf rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3fb83dcd rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4d648daf rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x60c0833e rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x65d5793c rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6a1451cd rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7015c1a0 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x710c2f0e rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x77b9bee4 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8119ccad rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x88764e4e rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x95f21679 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9633680c rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa0b12fa7 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xae1165a1 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb56528a4 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb603e6f1 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc9cdcbd4 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcf693d5d rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd00c307d rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd34450e8 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd6905b21 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdb4645a1 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdc27b3ce rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdfa55598 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe2ead302 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf1be56d4 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf54e8d46 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfbb1d4d6 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x035d5d24 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x13f49ac4 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x315fea4d rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x46cae782 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4ee0ae82 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x776bc847 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9b641557 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9bf7a3da rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa17d52b2 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc5a110e6 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc874e18b rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xde10c2e9 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xfc25d091 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x01e8ac6c rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x028ab7dd rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0ece08c9 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x125802e7 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x13f0fe15 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x17c384db rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x199d82f3 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1dca7da4 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x216099b8 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x21ff410a rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x257eef8e rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2972d99b rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2daa9c9e rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3ed9faaf rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x439b5402 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x45970302 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4dc5a1f7 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5935585d rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6712a5b9 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x711f328c rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x77c8c33b rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8c3e0465 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x90b8cf8e rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x95ce0cba rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9733af8a rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x986c3df0 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa261b6bd rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa4643d98 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa57dca93 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa8c25362 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa94a6bf2 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaa13654c rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaa385271 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb072d623 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb1dcdc97 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb3b7e46a rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb7996c16 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbc3b7aa7 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcb6ff865 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd2ff3f33 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd5adb453 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xddb26307 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe3812f17 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe6a8c56c rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe75f18f7 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf8b68d6f rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x3c69c33d rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x3f67875a rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x43f817a4 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x72ed1278 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xdeb0e361 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x1130946a rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xc6ff85f6 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xcbb2de0e rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xe6967867 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x01ffa1f3 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0841a88c rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x24c5307b rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5b4f9866 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x67b38ffa rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7aef2f1c rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x89dc4ace rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x95caabff rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa2be2a5d rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa5d1a7b4 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc4c14245 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xcd08250f rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xcf30d580 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd91a4fdb rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdd05e970 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe7bb6c5b rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x126c94bb wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xc84fff66 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xcc35ab16 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00c437b4 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0e47e0ad wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x207b1403 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x241c8a87 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x300a2aa2 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x40388fd6 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x406eddbc wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x42adb74f wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x495f8e1f wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x51cd94a9 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53131228 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 0x53eb4665 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x574b807e wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5a4883c6 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5ec08d48 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6a0b0af2 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6b065515 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6bcd7a0a wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x765d619a 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 0x79a1668c wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7b8677cb wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8225383c wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85721fa6 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8fc72821 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x909ad0c9 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa49d4db4 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa8b28e15 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xafe38c03 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0c67c40 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb6ca4101 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb77dfca7 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb932d975 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc12f248a wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcf781dc0 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd19d1e18 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd28ec08b wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd7a497cd wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdc5b041d wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdd128c39 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe57ddc89 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe89ad3bb wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xebf5732a wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfdc5ad15 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xffe17e37 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x124c3bf1 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x64c3da24 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x6a2433ac nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd4cf5a76 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x00015026 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x180649b1 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1cfc269c st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x38606020 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x643baf4a st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x70bad103 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa013ecf6 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe9828d8c 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 0x5b639faa 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 0x9e30e305 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 0xdaf41d8d 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 0x04f48240 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x1218141c of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x5bf4fa54 of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x61b5b959 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x707faacb 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 0xc169dbe5 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xcf604d9a nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe3b4164f devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x750c3d59 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xa84eb6d8 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xbf01876f pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x33662e3c mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4d08ee7f mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x6c1de873 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xce2a0c60 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe1b06593 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2e5f8bb6 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2e8f521e wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x57ac63d1 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb015a607 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb1873a03 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf6e2e31d wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x4fad75a0 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x06a41b01 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0dad7f9f cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e046916 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x277a25b3 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a75ffb7 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e27dc70 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2f829299 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3783b890 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x37b73e64 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3ada87cf cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b57429f cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3ea0fe80 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f38f087 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x51516109 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x558acff3 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x71c32a61 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x72e73fbf cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x72fda1e4 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7788f169 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7798576f cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d9de798 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x833ec083 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x885cb8ea cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x91673c12 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x96826b48 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c31a7d5 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ccc8908 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e484835 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa25f6be3 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa484758e cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa5baa695 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa82a3670 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb1442aa9 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb3bcd8a0 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbba70196 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd0936712 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd3dba5d9 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd8ae6e80 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdaaf0d2f cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe6bc9a22 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xee938b59 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 0xf1233890 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf71fe1df cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf79d5943 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf7ef1c05 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfbb50ecd cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x09b0395f fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0e8ab3d9 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2d75333f fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x62535300 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x62f26fdd fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6327c3a9 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x79c2254d fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x898d2dcf fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9068b4e8 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa044867b __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xab9818c7 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb94ff900 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd2f0c041 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdff94f0f fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe0a19637 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe54061f6 fcoe_ctlr_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 0x03536956 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x14bc4c8f iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x165bfc10 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x183d703d iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x18910a5f iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1bc71c8d iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1f3e23b4 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x30ec220f iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x35dab6c1 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3a282de7 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x416f99f8 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d2df820 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4eddf406 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54405571 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x574ac9d5 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64b6f0e7 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b4c9689 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7637a6af iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e3e1e65 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8caad5b3 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d09ceba iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e73b13b iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x92b6a589 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa1e7a3a1 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa28c4686 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4756694 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7c85585 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae75226d iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xafe73adf iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb57fa47b iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5a16f01 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc85995ba iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc86ce337 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcba8b397 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce2fc6d7 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe200880a iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe2f91a93 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe5332b15 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf742ff95 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf7bb9a69 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfbd1dd5f iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe7feb10 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x04432bce iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x08d0b1e3 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x233ca42f iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2b7bc774 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4c154670 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4d753559 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x51d028c3 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x668ccffe iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x83be1a32 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8c16fc32 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x96300c46 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb1cc55e7 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb27fbbf4 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb9351967 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd09eefd2 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd6bb6ffe iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe795db07 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0d82d6d1 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1f5dc0eb sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x21a4e58b sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x29f21382 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2b1515cd sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3bcb1965 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3c436f9e sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4b969c83 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c14e7f4 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x75d246a3 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x75f5e7eb sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x76576025 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7e173cbc sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8875b721 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa43f7bf8 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa6c42fbc sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb32ee999 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbfa88b88 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcb1f27bd sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe8c5f4b4 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe9355783 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf5a355a4 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf8f84d80 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfe35e97d sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0060d661 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04193327 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x041dd9cf iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04d9260a iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e6d91c1 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x101356f2 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19f272e5 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1bd6f08c iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x28d4cc36 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x305c00fe iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x32087821 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a188ee1 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x43064e0c iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5550bf18 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5854b717 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b3d1696 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6220adcc 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 0x6df11777 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70a71bcb iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7bdacc82 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d5a16c5 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7e557c74 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 0x89057a94 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90643d53 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x941a657f iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98ad2378 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a09f4a6 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a53e3de iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e93a758 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac5db9ba iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba007faf iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb4eec95 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbd3236a2 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbde01b64 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcedd881a iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcf4c7737 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd02de1e5 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8929e8e iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef7c8871 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf69592f9 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x09189797 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1b67fba6 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x82173dde sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xb8831fb5 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 0xee3535b7 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x08e10f8c srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x63f531bb srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x89b24191 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xaeae8292 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf5754d03 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfc67d88e srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x22ef6b91 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x31003e44 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x363f0670 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x37b92ff5 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xcbddaf2a ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xf2b6e917 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xf4d7b25a ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x351fab6e ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x3d985a40 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x839a92d3 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa13a711c ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd3f906a7 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe22181f6 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe5f35db0 ufshcd_pltfrm_runtime_resume +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 0x1c8db4da dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2a34a8e8 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x36d9173a dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5c0f4159 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1006a866 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x124ded6b spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1c485fa0 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x22b40a86 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3579615a spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x47e84ac9 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5577f9c6 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5aaf9c67 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5f37dc08 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x66c48310 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x69f94948 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb29e6f48 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb5d71d73 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbe8ea399 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc58225d2 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcb538e42 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xde0ea4d0 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xef5ebf7d spmi_register_read +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xac98e800 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 0x2f0ad9d3 range_bipolar5 +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 0x48111cae comedi_dev_get_from_minor +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 0x5fdbd5eb comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6ec32bd5 comedi_dio_insn_config +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 0x94d3f5db comedi_event +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 0xaf7489f0 comedi_set_spriv_auto_free +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 0xc7f1b881 comedi_alloc_spriv +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 0xd43013a8 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd89b75b7 comedi_request_region +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 0x086a24ed comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1e5d825b comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x549c89e1 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6da7ed99 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xc9d623dd comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd65b9b51 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf795cb73 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfad42401 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x4ddf8371 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x561d0e63 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x5a0322ec comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x75895572 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x7c1b5bf2 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x8da3f379 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xebac8d91 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0f412ba9 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x35b7514b comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x6aa5df62 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x7fd96def comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x81fb6da2 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xbf4f6aa0 comedi_usb_driver_unregister +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 0x05bd95e8 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x15e48492 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x277c894a mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2e87dcb5 mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x333ac7dd mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x463ace42 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5d678ff6 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x61db2188 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x696529b5 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x840bb2b1 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x98b78276 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xadde32d7 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb42a5186 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xbd0062aa mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xbe385401 mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc3837afc mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc40b6681 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc82c566e mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc98af209 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf78b2cd9 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfdf10a5e mite_setup2 +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 0xaae76394 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x09cfe8fb most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1bb13580 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x3f711c71 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5f3e652a most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6c00064c most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6fae1d34 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8997a99e most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9cbe74b2 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe18aa610 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe43f6fc1 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xed126e64 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xef49203a most_resume_enqueue +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 0x1340b12d spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x153d56bc spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1b4917bb synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1b52c974 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1c454fac spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x35f0b26c spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x43b5ff49 spk_do_catch_up +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 0x6654aa8e spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x83bf5af8 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 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd7d1dc35 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 0x8bc5aa49 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x9869fad0 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x9bb9d182 __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x11fd0553 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xbc0e78a3 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa9e2df2e ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xbc9ca376 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 0x0114d749 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x223532bd gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x31e37569 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x40d2e744 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4a30aeb1 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x62a9e41f gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x82281453 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x863bf4e6 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9f86d051 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xac168465 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbaf8e961 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbd21290d gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc0ffec48 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcb888998 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xef7f9267 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x649c3a3d 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 0xd1802948 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x1fe7d9f1 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x46e20f2c ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xcea48a6a 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 0x2b9640cf fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0x42657976 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x44e3b7d9 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 0x57db5f04 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5b2b772d fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6475bbbc 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 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 0xa6ef4417 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb9f57884 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc8eaad93 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 0xe0aa53c7 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf241a568 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4aaa904 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 0xf5eb2f49 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfb1c67b2 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfda38274 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x02a2bb9c rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x07ec8624 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2a2af55d rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3e59a2a7 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7c0b2501 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa1283e51 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa9cd8974 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbf1aa703 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc50ec8c6 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcd9529c3 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd9912f1d rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdde8c273 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdded244d rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf9a43014 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfe36a832 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0b146549 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x185baea0 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3f4f9ed9 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3ffab5b8 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4951814e usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5d78b4fd usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5e3e4a73 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5fa39f8a usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x608e9543 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x60ac61dd usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x64d2c6d4 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +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 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x98846ecc usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9fc56a70 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa6670224 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa94cd962 usb_ep_autoconfig +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 0xc38c44ae usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd0cc4468 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdcfa555f usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3e5395f config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3eb65af usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xea72f310 usb_add_function +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/libcomposite 0xf809c8cb usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfa7e7c13 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x247cc27a gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2be23efb usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x45411045 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4bea0cb5 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4c9d6ed9 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 0xaea02a5c usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xafea3fa8 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xba6585c1 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd0906552 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe9c95711 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf82da12c usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf9068637 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfcbd88a5 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x0344dc12 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x3221c230 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x08a8ce22 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x220eb51e usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x22bcbf12 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x517f387c usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x52bc5d57 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x57ee2a96 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x706b8474 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa5e7adce usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb2d7419f 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 0x6513a086 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 0xb0ffd499 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x10b8770e usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x044d0cb5 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x06c4bd8c usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0f6f16ed usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x131011f9 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x15e96e35 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x21b93d94 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x364309ed usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5d2a235f usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6f198e5c usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x793a42e8 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8e4365b6 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9c34b344 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9eae46d1 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc2e4f4da usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xce966213 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcf622b0d usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd6a5edd2 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf1e1aea3 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf407e76c usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf6e0bde3 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfc7496de usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x02271efa usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x03a7f16e usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x06915a5c fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x12ac8cad usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x13fa8560 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1427937a usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x167bfb44 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 0x3fb31a38 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x49c60281 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5e2f76cb usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5fd43047 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7093ad3f usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x779a6d21 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x787c7bac usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x78e5bc71 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x89ca5ff1 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x93e06499 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9d1c4607 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa3d11f5d usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb3c9d7d7 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc08b037a usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xce1594ec usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd1b621b4 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xef234b61 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0335513a usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x34404885 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7910b8c8 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7a8ff4bc usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x849c799a dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9f3b5414 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa8cc37ff 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 0xd18a9d8c usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd63f43c4 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd88b58ff usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xde3f8c07 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xff78dec9 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0fcf9a58 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x3cbd5d0a wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5049030f wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5caf7a42 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x76aaaf7b wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x90134fa2 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x999b64f7 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 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x16c277e4 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2bdeb9d3 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x33860c47 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x35b59960 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5da8ce1b wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6aa221ac wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6dea69da wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7aa4c9d9 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x88b83529 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9a0ef92a wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa16ebaab wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xadd1a5a9 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd7861b68 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf2cf4da7 wusbhc_reset_all +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 0x55c4dada i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x7db59364 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xf6768cad i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x217ce225 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x54c936b3 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x7e7e65c3 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa41b2e67 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa9fddff6 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xaf4eeab8 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xed794ecc umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xfe1a982e umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x00dee5aa uwb_rc_put +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 0x0d7c8388 uwb_rc_dev_addr_get +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 0x1bf1f4e1 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1e1d45e8 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x201fadd0 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x22ff7ca8 uwb_pal_register +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 0x2efbd4cb uwb_rc_init +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 0x4d57ae3c uwb_rsv_type_str +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 0x629a6e32 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x660dedd4 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x67d069f7 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6b161ad5 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x75204b90 uwb_rc_get_by_grandpa +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 0x9dc48a5b uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb123c62d uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc02179a8 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc39c8e97 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd836850f uwb_pal_init +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 0xfbf5f4b9 uwb_rc_mac_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/whci 0x3a962cca whci_wait_for +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x074f7369 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x08c4db03 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x16bc0c0b vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x19555f3b vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x284b1cc1 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3289d825 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x43806bc8 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x452e3814 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cdf49b0 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e8275c9 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x577e72ec vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ab566fc vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5e700392 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x61b711b9 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x671cc806 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7d84e671 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8233b663 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8a138c4f vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x98cdbc8d vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa9619323 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xadae8c99 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb30cb799 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc89a5d3b vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd5483065 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd5b9b938 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd99adacf vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdf3e36f2 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe700c1f3 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xed4a7899 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1e4d1d5e ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2256238d ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa1a2e149 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb8419157 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc8b52b08 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe0bdc4d8 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf5e762c3 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x25a33aea auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x2acc75b6 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x34fe7123 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3794ab56 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x711f8b64 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8957fab5 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa19bc300 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xaf3ba3f0 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe7cbe38c auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf3b1693a auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xccac73e2 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x97542110 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xea51f8ad 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 0x07b00bc6 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x774050d5 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 0xed57df25 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0a790da3 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4e9b9334 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x734f1e81 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x94e39882 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9a99dbaf nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc32ce57b nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd76954ca nlmclnt_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0126d403 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x021874c4 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x030a3e28 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x030f73a2 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03aeb7ed nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04620d6d nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x075fbfe5 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0848a4ea nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0acdec03 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0da2c0eb register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e157562 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1031cf0f nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x112ec20e nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x131f188f nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1526a07a nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a3a3e7d nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a54250e nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a5f7006 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ee3c77a nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fe6a3a5 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x223cadfe nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x247c0ca8 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28c961f1 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d24eb73 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32a84605 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32fb2c2a unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b20252f nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e258a8a nfs_close_context +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 0x40fc034d nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44e3dbca nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45f9ce71 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4887cd4a nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4928d561 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a65cec1 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ac72281 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b9040b4 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bb0472b nfs_server_remove_lists +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 0x520390d7 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52a5ea47 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52f06de0 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5674908a nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5877410f nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e31a01b nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f306dce nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f3a8696 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6181129a nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68e164ae nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69f93cb5 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6af9e62e nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bd26889 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f4d7ad5 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71d3fe55 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7236f97c nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7407e08f nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74208fd9 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7481558c nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74eaf173 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77543f7a nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x782f028c alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fc17a51 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81e4e30e nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84202cee nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85f6faa6 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b54236e nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c8488b3 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e86ba1b nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e9e1ce4 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f6fc7f2 nfs_access_zap_cache +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 0x961436d2 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98a7f997 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9901167f nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cae7a24 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa266df34 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2ab4f08 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa1c71a6 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac6898ef nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xada36853 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xada8262d nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0de3538 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb72e2ff7 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9647773 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba9551e9 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb934b2f nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcac6701 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdb55175 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf61430d nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc02b5939 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0a9a333 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0d9e5a5 nfs_file_splice_read +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 0xc8d5086a nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc977c884 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca917c90 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcad650f2 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbab1bbb nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf28b48b nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf7455dd nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3caa3e5 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd53adcc4 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd69187bd nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd780e073 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8516b07 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd85dafc7 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcb53f74 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf27337f nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf5c5a4c nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe14302f5 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1b9fabd nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe38743af nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6feab27 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7c6dc7d get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe904f266 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb33181c nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec02df56 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef2e53b0 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef40a2fe nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef45af8b nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf28795ff nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5048ba8 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf71dbab6 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf837cd85 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9b6aa16 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa48e018 nfs_submount +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 0xfefff4c3 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xd989b969 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x002af0e7 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x035cea43 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0501f6ef pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0758a86f pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f04179c pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d16647b nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26fc6ccd pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b68c89e pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2cc5dab0 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d0e41d6 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x308dfb0b nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34c759bd nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x353a6133 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4446ac42 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x47c3fd1d nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53f03b15 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x556548e5 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5921f83c nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d30e314 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68f28e1d pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a69564f pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d0c3abb nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77705918 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x839836f9 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e0044b9 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e31f8b5 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95d898af nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99af754b nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a738097 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c6f38b5 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa25f17f7 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4e4f140 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa67cf27c nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8f9c2a5 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaab8a07d pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab95d1fe nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4ad4768 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9fec0d6 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba8eee9a pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbae35873 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbaec66fd pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc09e4f32 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0e7bf1e nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc2ee3b72 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc55adaae nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc74cb567 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb4bd5e4 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xccd16eb3 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd3b15f5 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb72e0f4 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdbb7733e pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe97d64a7 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeab4865a nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf076bbc1 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf325a406 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa11934d pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa9e870b pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfff07328 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x39aec247 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x964b5d4a locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xb7e323cd opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x07078720 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xfe052e3b nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1fe96fbc o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2baf961a o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x40e2f180 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x44865d1e o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x96de4933 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 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 0xe1115d86 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf801d44e o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x15369a14 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2e518cbf dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4abcd382 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x631d9ca6 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x88b4fa2a dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb5a3b0ab 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 0x129da9d0 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 0x669b63c6 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 0xfbfed6a7 ocfs2_stack_glue_register +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 0x06afef55 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x6180201f 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 0x57b542f1 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xa925f0cc lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x53253bc3 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x689bece2 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x73a0dad5 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x74ae230a garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xf9f3271b garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xfef4a17a garp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x784adbfb mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xb6db6142 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xd616f745 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xde2763e6 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xf67a5863 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xfa443876 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x3301afd2 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xd18921db stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0xb40cbe85 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xca8c7115 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 0x0ca6d3ae 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 0x1b30acfc l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x83bb5bd8 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x89a2a30a l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb115d000 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb8a341c0 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb9ea37d5 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xcb539ccf l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe3bf233b bt_debugfs +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x04500e97 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2e214bb6 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x719cdee0 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x766a2b7e br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9a0d940e br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9f4906d1 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb825ded0 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc055f753 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x1df7368a nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x35c24e1b nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d91244b dccp_recvmsg +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 0x222f67e8 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2fd49576 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x34c4abe4 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3a47f5ab dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x42936fef dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x458e7819 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4748c35e dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4814ee93 dccp_sendmsg +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 0x545e920c dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5ddbe4b2 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x614c0296 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x666da76a dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x68b6ee75 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7cc37246 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7d9f77b2 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x820789f5 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x820dd887 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8acb7619 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9046009c dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x95465cb0 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x95e1a980 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x974ea44d dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f51b179 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa8b14dee dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xae32135a dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc65a7374 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd07a6972 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe2037046 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4909c48 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf13dcf8f dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf4dd5660 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x120c68a6 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x323f1ab6 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x82a3ffdc dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9b56ed3d dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc1e30306 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe1183014 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5ba52dff ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x90c83bbb ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x994ae337 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xbd1de285 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ipv4/gre 0x2c573f0b gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x4e656db3 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1d00ea79 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x295ed165 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3846e040 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa0419126 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc46412d6 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd0030734 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xd8c55ce4 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0ed71e4c ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2895e928 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4045e52d ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4cfae562 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x594f401e ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x61c88e41 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x736fb5e9 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7f1271f7 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x806922f9 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x88c86b0f ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x92cd71e0 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x95bbfeda ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc9a0a987 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcb098ef5 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xecfcca41 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x61bdcba9 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x3236790c 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 0x52eb2bda nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x0ca79dd4 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x21d8cfcb nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x6581f316 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x8bbef4dc nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xb45a16ea nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x21882a48 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 0x153ae7ec nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x30eb1c7e nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x95f7041c nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9d663121 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf1baddb0 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xf1c351c9 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x54a10d3b tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6e57f924 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8d053c58 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9bbba01d tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbee3fedc tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8cb3beb4 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xecae29d5 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf2683147 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf885b17a udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3cbbd4ba ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x59a00856 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6a20ad86 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa4787bf0 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc8f7dcd4 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf5100bf2 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfc810aad ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x0999d8bc udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xc2222d94 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x0b42efd6 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 0x8884f800 nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x92932ba0 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xddbe601f nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x04275fc8 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x6fea52d4 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x9fb04716 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xa6920a40 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xd7d371f3 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 0x6334dbb2 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1dff844d nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x355ffcdd nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x40f457f6 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7a03b99b nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xafde96fa nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x2d4ba7cf nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x00cda1c3 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x01eb6459 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x024ce91e l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x328205f4 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3da14224 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4e7d228c l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5acb9616 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6b5a126c l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8b8f423f l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8f107b35 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb701c5d8 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc72f9709 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc8b9fd85 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca25edd1 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd8663403 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfb8f73ca l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x70ae4061 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x077be331 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x08d542b4 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x318a7775 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x34a045f5 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x36a56d41 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x39cd75d7 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6e38e05a ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7a53f6ea wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9440e8ff ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9d011528 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xab022702 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc558d75d ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd1cf49a2 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd742c80b ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfb0485a2 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0208ed60 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x22e831b3 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x32476d98 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc90a9406 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x13c78b9c ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1d791e3a ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2873cfcb ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2d7e24df ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x337dfde3 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x44f4b0e5 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x56117556 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5d7682df ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x666a1cc8 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x72b18047 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 0x8640d512 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 0xa33e04cc ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb9da9dd5 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcd06d92f ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd63b471b ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xffe31dde ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x04feaede ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa7e7aded register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xabfb06a1 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd426602c unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x008b93db nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0236abd4 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04d66aee nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0965f7e4 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bdf2193 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ff6ecab nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x126fcde6 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12f6ba8d nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15f1bbf8 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x184e2bc3 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a3abc5a nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2255a511 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x245a545b nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25b78ffe nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26fef877 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2707a961 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2717e7cc nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d2f44e1 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30da50e9 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31ea30c4 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34d4b3bd __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35acb04d __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3dc08e29 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 0x44d430a9 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44e6aadc nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x493af559 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e9b653b nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5366506c nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5798bfee nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5bde29d1 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d0a4666 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x669a436b nf_ct_helper_log +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 0x709a3630 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76d0c85e 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 0x7a0585d7 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7aa9e0ad nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b100940 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7be8b6b8 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x846b3649 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x854834bf nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c9992c2 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8cf6f471 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 0x9109de15 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x940b8833 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x978becf1 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99670de8 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c489f43 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e9e6839 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa055e93f __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7061984 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7d5a600 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaac94062 nf_connlabels_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 0xafb4a747 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2bf2d83 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3ce80da nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6ecbfb8 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba486f7f nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc7001b5 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc221d933 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2ae336a nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc58d0d42 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce7e0dd1 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd243db8f nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4e2e022 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd78e95f4 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd953380f nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd97fd4fe nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda752efb nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf5583fd nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2209cdd nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe57edbf0 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6d60b17 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xede0f672 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee5383ce __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8eee5b3 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa3df43a __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfecaafbc nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfed43d4b nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xacc8d05d nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xe3c7fb02 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x69f358c2 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0c2befec nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x11097b31 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x21751029 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x260b2d58 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x41af9460 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x53395db8 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x682a41c3 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x81465d7d set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbe0ba65f nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf06cdbe0 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xedafad21 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x11bb187b nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x144291ad nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x24f3838a nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x85d31851 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x71b6fb8a nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xcc14567b nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0d03adf0 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x476a009a ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x65fa212a ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x73cf5ea8 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8e5f7dd6 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf05cbea3 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfc5fae56 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x1c11095e nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x2103bfb7 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x0cbd5271 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x43eb17d7 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xb4714af7 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xc4fad379 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x06ac1759 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x07194e2d 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 0x1de8af6f nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7359fa3e nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7d56148e nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fdbd14b __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8ea42a2d nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9d6dff8d nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd4673484 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x09d15d9d nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x455365a8 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 0xb6031aa9 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf169eb4c synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x005cce13 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2f546791 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x33439f8c nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5be55da1 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x649be643 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6724b2d1 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x687e624c nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x747b364f nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x919fb5eb nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa6c53a96 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xafd37c9a nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc71123fe nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd0d95f9c nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdaa19543 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd8031e8 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde46622c 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 0xfcdb9605 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x02d080f2 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4c3bb986 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x80904660 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x97636737 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa69f3201 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd8042565 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe0695e7e nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x4d72d9c9 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5c01af2a nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa170cd3b nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xfe06d487 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x3855d3df nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x6ce88b5b nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xfad8f81a nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x2daf65db nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x5d60a6f0 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x93b7e389 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xc6d36b2e nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xd5aa4382 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xff2d0bb0 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x3d758eba nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x5d94949c nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x96eaa372 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x36ded7ee nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xd3c78ecb 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 0x1763fb7c xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1f10e076 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x28d2883b xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3104b578 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3e602ee0 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x48affe36 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x773230e1 xt_replace_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 0x97d1375b xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbcca69fa xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfa17683 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfefc9af xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc64823fe xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1c3cddf xt_hook_link +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 0x035cd1c6 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xbb251766 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xe387702f nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x5a084d52 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x9d91ed4b nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xc21b40e6 nci_uart_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1357711a ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x345add51 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x92a3ee25 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9bad5794 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc2c89f20 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc6a88ce5 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf3065ce0 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xfe455fb2 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xffae9f4c ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x01352822 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x03e0271c rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x04ea39ea rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x169e6c19 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2881eeea 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 0x32119aa6 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x3d8b840a rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x496d1f44 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x54520688 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x65ad9132 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x72c33178 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x84ed236e rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x978395be rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x9e4f82e0 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xaf206bba rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0xbe44c23d rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xbe698b71 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xbf91ad62 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xca562225 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xe6938ac4 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xef7935db rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xf03b3d84 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xf6ea341e rds_message_put +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xbf6a5b37 rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xeedd88b3 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 0x1b6c54e7 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7428a03f 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 0xa62280e4 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0020f9b5 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00c55e7f xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03235768 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03a237cb svc_recv +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 0x065e6961 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08307097 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08357b64 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x092b0e3b rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09472304 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b214ff3 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b98e76a rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bee48ba rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d22e104 svc_rqst_free +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 0x0f850bc4 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f9edf0f svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1565ba94 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15b75fb9 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15d6a518 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16a22cfc rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16d2b932 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x173590db rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1750840f rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1798f1b4 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18aff970 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b9a99fe rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e2b509a rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ebee3f4 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20b13638 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x231c6bfd xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x259db867 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x261d1b37 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2655f4a3 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2747c412 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2afa3f98 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2afd5506 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b840bd6 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bb73290 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c201224 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c62fa9c svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dcf6326 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3209413d rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x331601a2 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34266b1d xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x346797e8 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x355d5e35 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x370543a9 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37a9061f xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37fa35db rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38753be3 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x389cd663 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39ba13fb rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ac6f8e7 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b476715 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b703fe3 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be474a7 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dd8395d xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e58c335 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3eba1501 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43deac98 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46ef78d9 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x470c94e3 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49df75d6 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4af36d9c xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b554d6d bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d8e07e6 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8fb072 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5006501e xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x500a1771 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51160e86 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x521ad6e2 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x529df532 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52d934ce svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x550af26a svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5587dc5c svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56a51cb2 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56ae2a71 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57250d88 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59e002ef xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eb55db0 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fc087fb xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61fa8efe read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6333a61d rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6350b0a6 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63dccd80 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x650d0a6d xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67c72363 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67efd0a0 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70902737 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x711ca7ba rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71ea1ca9 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72f396f5 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7495d995 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78f27fc3 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x799d35b1 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a5852d2 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bcb1654 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fc9cd8e xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8016b95d svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80bae308 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80bf9948 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x823d7429 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8291d290 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x894f0f24 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89d544be svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91f8c556 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9448a3ca xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x946b6305 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9580bd44 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9661f4e7 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x975ebafc cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x987c2f55 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98f85d9e sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98fc023b sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c11ffd1 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d2c142a xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f0208fd svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f6e8a9d rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa05907f2 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0d00f65 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa163568f rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2de925f xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa312858b rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa58ef017 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa63c1fb9 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa77f187e xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa910969f svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa6a1496 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabd69b17 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacae2ea8 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfab685 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaea23307 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1598c2b xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb237091d rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb408e69c xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb54bba76 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb63f9b6a sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb854021a auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8f657a6 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba4e6282 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbae824dc xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe3e6eb2 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe599774 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc041a7d2 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc045dbca rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0f0b0f6 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1b0d02f cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1bc39eb xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2526396 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc38d37aa __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3addc48 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4fe7dc8 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5f4122f cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8039160 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc97bbc76 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca57160e svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcabb3a62 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc782d92 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd86673d unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd9da9be rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd9f932f rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcda5b1ed rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce779394 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xceb0efb1 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd16b1e29 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1ba03e2 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd20ec4d8 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6887b17 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6e8cb8f svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7482f74 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8cf848d xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda8155d5 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb20da9f xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc08cedb rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcd0ea8e svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd882d5d rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde5cd246 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1a0c48f xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe75c8c84 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe98b994f xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9c4b8aa rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9ef4460 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xead267ae svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeba87d1e rpc_find_or_alloc_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 0xef0c21e4 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1b64d84 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf554c900 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5a28b17 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6587fc9 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6f34e0d csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf708c6f3 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf756dabe svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa273138 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe8bfba7 cache_unregister_net +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 0x3952ca12 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x39ad80a2 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x53f94270 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73683fbb vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x76df4d28 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8dbec892 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8e955a86 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9647e671 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9b4e62f7 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xab9fd571 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd913baf9 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdbe4e5c5 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeccbbba6 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2e6937ed wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x471f2b26 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4a103d91 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x59d559e9 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x78eab33c wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x80208c51 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x90083509 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa238b4e1 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa254cd95 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc1c2dad9 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc5207a98 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xcd16f576 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xce3b346b wimax_dev_add +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1fb90767 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3ac67c9f cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x41cdade2 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4ab1b80e cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x562c60eb cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x58ed8dc0 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x62abff52 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x68530650 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6aee73fd cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7c10229a cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9200ac62 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9f07f097 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfe55ef41 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 0x09729724 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2da18a7c ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6873c92c ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb2c9933a ipcomp_destroy +EXPORT_SYMBOL_GPL sound/ac97_bus 0x359cf4e7 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x321f5781 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x9b89bd53 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x2416c1a8 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x31a315d4 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x66a8aa97 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x6c2eca9c snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x9c5d7e8b snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xe335b338 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xeb65ac4e 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 0x18f87866 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3334e38e snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3a4931f7 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5fb9cf58 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8144a87c 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 0xba350bd7 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe118c704 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe56a6207 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf54f3f20 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1397bab0 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x13fcad7c snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x456de6a5 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x50c372f0 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x56fade8d snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6ab1facc snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6d4a0ce9 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8e6c3221 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa165cee7 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe2ecc59f snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf2724ae5 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0a2879c0 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0d21b895 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x805e3290 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8802efb7 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa8d8e814 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa9c11fb9 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe1c932d8 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x007cae0f snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0305787e 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 0x042ea25b snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06a7e9aa snd_hdac_stream_cleanup +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 0x0f751df5 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14bad15d snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21ea6d71 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2214d105 snd_hdac_power_down +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 0x26d72181 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27bc3a7c snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c61896b snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2edf1aeb snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3028f589 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30c062de snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31c18905 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3333e4fa snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35782e89 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38059c9b snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e772453 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x41ae3afd snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x458afd80 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4afae05c snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4caff27e snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55151833 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55834dcb snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58f0d0aa snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5bbc062a snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ea11969 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x620464ef snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x68bf01f6 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c2dc58b snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f7ecba0 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73f12a37 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c5c0d0f snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c6dff84 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7da6f2d5 snd_hdac_check_power_state +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 0x865daea1 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8daf0f53 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f159f5a snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fe999bf snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x943fb09d snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9da172e6 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9dace35e _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9dffab60 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa65c168e snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8ef91e4 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xada2d9c8 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xadb1ccba snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaeaefba3 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb09460f1 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb382bc5b snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4c7d811 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb9828248 snd_hdac_refresh_widgets +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 0xc663dcac snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd11c8d6f snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1486a45 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4427563 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd510b657 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda203c09 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd42c838 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde24303a snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0168715 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2e64b74 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x23d306a8 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x382f24b8 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x47d18435 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x82bc0586 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9423692a snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9afbafc9 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02026d23 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0445512f azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0667aba9 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 0x086b9ca9 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08b85ae0 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08bc0b51 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08f81d3c snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b07002f azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ca391d1 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d45bdde snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fef7781 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10699f6c snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17f63b29 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a0daa7d snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1be2dbc6 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c97e686 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d69f8e5 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2893fec8 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29c302a3 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c595440 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30499794 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3049feab snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3476a640 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36ced337 is_jack_detectable +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 0x3985aeb6 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39f25175 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b3a2d07 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d6c0772 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d9e1d28 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ee0e511 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x413af2f3 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x417e8b8d snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41a2894b snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44c73597 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47dd3de0 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a97f4b9 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e358688 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fabf419 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50bb9ffc snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x517a0751 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5338ffe5 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53ce2500 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a516ba6 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f913c81 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6321bbcb snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6362d02e snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x686db108 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70ca79ef snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72487332 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7354aa85 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7510a879 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7627a5ea snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x770e3b4d azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78bb3f03 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78f57c20 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d523cc1 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x839cb17e snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84352ec8 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8be3e52a snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c075e68 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d1566d3 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d2e7ef5 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e535cb5 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ef8da24 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90510224 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x927a8751 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x939b7fa7 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x969e397d snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96f374e3 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97078138 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a73c4cf snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ad4aad2 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e883c12 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e8eb1e5 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ecc5457 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f0b501b snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0228189 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa78ae5a1 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa152379 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaad86281 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xace1e570 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb10f17f3 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1b8c300 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4528b5e snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7605dd2 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9a0cb80 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbb61635 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd978964 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe3a7186 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc023ff1f snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc06bb2bf snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc38ba81b __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc76b6bba snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb174988 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc70fe94 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccb33ec4 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd15128c3 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1b06d01 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3019199 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd59e1a3f snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5d8512b snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda2cd07c query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0e30fa1 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 0xe30b5990 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5e1f6fb snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8888701 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9864dc4 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea914337 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeae3e2f8 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeae65555 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebac6bab _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 0xee4e5c4e snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf03bc612 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf162f579 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf17d0e3c hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf186f254 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf420ac7f snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4fd1a50 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf51c52d7 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8ed60d4 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb8c7ddc __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfcb45585 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd3aa240 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd3ec091 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x09786cb1 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3fa102db snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x43acba85 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x46bb8561 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x483c0bc4 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x56c7632b snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x57869735 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5c4c16c2 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 0x787cf06a snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7cf5109e snd_hda_gen_line_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 0x8cbd4c15 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8ee11981 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbb82e17f snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbecee8b8 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc48bfe69 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd0d05b46 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xde690682 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdf29c43f snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe9fff089 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf77b32d0 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfbb2b08c snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x88ec3fcc cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xd2984391 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x18632e38 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x537066bb cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x11de0bcd cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xae460ff9 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xd0f602c5 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x589f7ede es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xa4cbed45 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x08d0c4fe pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9c5292eb pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xb99d45f1 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe423a072 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x437964c8 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x93c126a5 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa5e21719 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb87d0b48 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf279858e sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x6d7be122 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x4b1172e3 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xc67651d0 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x770d231d tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xa041dfc3 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x1592f665 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x56f4fa02 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x751bb1b2 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x8048bd6c wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa29a0798 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xc05d4ae3 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x4b6e9d0d wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xaf4d37c2 fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xde0f728a 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 0x002b15e0 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00c0d0ec snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x016a4931 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01e6e6f3 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06e8272e snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x080e17ae snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b06b7d8 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cb5e50f snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cc5b95f snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f451224 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x132b07ad snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19e52e2e snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b9dc938 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bf3c576 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bf88d3b dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c1b27b1 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d569506 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e944986 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f9da7f7 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x219091f0 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23c42dbc 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 0x25ec6486 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26ef5c0a snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x278a90d4 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x279706cc snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27c008bf snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27e5d76c snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28069d09 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28ecfefe devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ce9eaab snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3196c23a snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31ab3bcf snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x334c6100 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36910144 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36b30688 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x385e0f1a snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x399baa8f snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3de02965 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4028d381 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41e64c7e snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x475e323b snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a796c1f snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b738471 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d84b42b snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d8aff77 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f87f76f snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fc4ab78 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x557cac00 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56cb614b snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x583e2896 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58927804 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a250768 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a7bbd3e snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b9b3a45 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61cda0a2 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6400ee7e snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x667bdca8 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x681ec81a snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x692ece17 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c7d8125 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e12e1d1 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x720e4586 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x728bdcfc snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x741bb655 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74d995c2 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x752809a2 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x788cb6c0 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a1644f0 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e033b1f 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 0x803ac643 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x806ca031 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x809c0aa0 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8201a9e3 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x859aa80e snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x869c52d2 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x879fd5d0 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x892dc8c2 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c42997f snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cc00f51 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8db1014a snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8df45812 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94ac51b2 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96397959 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97ee260e snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x983b2cfd snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9871bc8b snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b734ece snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c033b3e snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d86e9a6 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9de57734 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e07a1ab snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e70f075 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0acba03 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa413ea4e snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa531159d snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad38f24c snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae339377 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae79aeba snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaeac08ba snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaecd372c snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1d53010 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb20a0a49 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4daf717 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb629045b snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7902323 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb90cd323 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb93273cf snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd07e62c snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdefe983 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbecc4ae0 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc58d4917 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5f9a7f8 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc86b2ec0 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc65f27f snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcca546ce dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd00f582 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf00b24e snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6b97275 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd763237a snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7883c0c snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8362f1e snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8f4d451 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9c6d775 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb603fd4 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe11a10c6 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2917270 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2ffd8ae snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe32f494e snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4f55790 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe799ea64 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7f0d48f dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe88f64b2 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe94d4b71 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9a771de snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec8976fb snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecd11e67 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefbf7ca5 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0e7c79b snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3404e6f snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf40f2ca3 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf576d0d9 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf69f2045 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7820551 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9068826 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9f775eb dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfcfd9c4f snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff93c287 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffe9f73a snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x02537b35 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x04841df8 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1e059270 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 0x450913e4 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4da7f81f line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8720f618 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 0xa04b1b5a line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa9c002b5 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xacca4eca line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb40ce186 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb7ffa6f1 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc5d49b01 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd3fb90dc line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdafc6247 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xffb7f08b line6_resume +EXPORT_SYMBOL_GPL vmlinux 0x0028fc2c inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x00442c52 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x004f08e7 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x006147f6 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x00670018 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x0069658f regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x006f7027 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x008eba76 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x00906cf0 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00a60844 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x00a801fd xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x00b22ea0 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x00e90775 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00ec776b kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x00f4e768 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x010b2c07 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x01127a4e dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x011edee7 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x01238442 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x013c7287 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x016b4931 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x0195fba9 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x01a339eb device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x01d04d1d device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x01d71094 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x02075015 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x0216714f wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update +EXPORT_SYMBOL_GPL vmlinux 0x024b28db ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x024b4631 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x0259951e console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x025d2892 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x0290a0f8 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x029b4a07 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x02a34eba irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x02d4cd43 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x02dfbf16 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +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 0x033c2f8f netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03446d0d powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x03585cdb ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x0364b391 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0380d341 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03b6b28a securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x03c8df0f dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x03d041a7 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x03d7d163 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03e4ad41 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0439be85 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x043bcf1e led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0441b048 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x04475e0a ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x04817e67 of_css +EXPORT_SYMBOL_GPL vmlinux 0x0484cdb3 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x048a6c33 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x049b23f8 pm_generic_freeze_noirq +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 0x04b4ad4e blk_insert_cloned_request +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 0x04c7b864 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x04c97d50 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x04f21853 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +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 0x05469feb ref_module +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x057299c6 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x057a2f72 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x057c8df5 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05903215 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x05c878a7 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x05e472b0 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x060f26a2 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x061f27db class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x0627fa50 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x062ed95f regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0652a1c7 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x06730515 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x067937a1 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x06a30271 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x06c07a71 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x06cb3282 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x06dda173 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x06de4d88 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x06f21c55 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x06fdbf27 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x07569f98 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x07762d41 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x07800a05 mpc8xxx_spi_rx_buf_u32 +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 0x07c37d87 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x08031b93 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0815e762 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x0821c407 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x08296436 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x0829e413 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x0842aa74 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x087c502e kvmppc_handle_load +EXPORT_SYMBOL_GPL vmlinux 0x088d65a6 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x08aa88cf srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x08bbb11e register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x08eb06b9 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x08f48693 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x090d5efb usb_hcd_pci_remove +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 0x096007ff ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x0962d0e8 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x096e7dbc pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x09b71cc3 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x09b8935b regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x09f4ad32 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x0a05598c cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x0a0ba4da dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x0a162ba1 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x0a181a75 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x0a1e808b pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x0a2e858f security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x0a32fb81 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x0a3c1c3c ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a5a1824 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x0a625f57 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x0a646cb3 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x0a92150c powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x0aa7d4cb pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x0aa8eb3e devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x0ab43823 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x0ab8ed38 cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x0acf3aba trace_event_buffer_lock_reserve +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 0x0b136bc6 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x0b167eed __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x0b359888 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x0b64bf01 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0b6ca76c of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x0b92cf42 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c053d83 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c0e4192 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x0c183d90 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c2ff505 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x0c4ba2cf regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x0c4dc937 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x0c588ed9 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x0c5e7199 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x0c5fcb4b arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c610ceb posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x0c6a2da3 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x0c6e6c46 user_update +EXPORT_SYMBOL_GPL vmlinux 0x0c765583 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0c8e4d36 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x0c94254f vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x0cbdcd9f pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cc326e4 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x0cee1166 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x0cf646c2 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x0cfcaa7a devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cfdcc55 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0x0d136a03 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x0d422f7b platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d529eac __mnt_drop_write +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 0x0d864123 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x0d9f1c26 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x0da6f2af rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x0da776a5 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x0da969fd dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0df10997 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x0e18ab56 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x0e2c29b8 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x0e2d9421 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x0e41c7a5 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x0e41e8b8 virtio_device_freeze +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 0x0ed6784f wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x0edca99f ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x0efbcf68 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f362734 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x0f46661e class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x0f47c6b7 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f8711ec thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x0f9de8ab regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x0fc394f4 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x0fd85d23 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x0fdf5b66 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x0ffb2129 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0ffe4e2a crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x102a345a inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x1031be65 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x10726dc4 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1082093e rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x108db949 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x10a5816e page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x10b62fd8 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x10bdc517 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x10d854aa regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f0094c debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x11080ca3 max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x110a1564 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x11200b37 of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x11261d4a ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x11779d44 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x117a3af9 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x118dc176 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x118e64a9 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x1193a3fe skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x119b625e ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x11a1e8fc uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11a4fd87 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x11a5457d regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x11d5becc pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11d80965 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x11e350a8 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x11ebd211 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x11f87fce sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1236a7c8 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x1247054d transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1268ecd9 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12973027 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x1299fb64 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x12b7fe25 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x12d6d702 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x12f9dd42 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x13019bba ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x13046e6b devm_usb_get_phy_by_node +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 0x1317a725 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1319b61a dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13374264 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x134f9933 usb_gen_phy_init +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 0x13acf8de nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13c4bf32 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x13d7b6eb of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x141c0686 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x142e0bfd device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x144053e0 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x147893f4 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x14bb700e power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x14f96d7e devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x150fe4fd sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x152cccb5 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x15310696 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x154007d9 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x1542f2b3 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x1556cd82 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x15806507 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15975f85 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x15d9f96a user_describe +EXPORT_SYMBOL_GPL vmlinux 0x15dfe992 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x15e788a8 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x15ea2629 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x161695f2 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x161909ed driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x161a250c tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x1637ea44 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x164c3bdb phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x165fa794 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x16951c11 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x169b2382 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x16a0156b netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x16b23c28 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16bda462 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x1707dc12 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x170a0397 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x170bd74d system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x17109107 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x1727db7b ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x172e54e7 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x1749bbfc of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x1768a183 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x177688bb inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17b70041 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x17b96292 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x17c0f21c devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x17cf6580 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x17e1a49e nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x18044bf8 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x181f6c8e pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x1823cc4e kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x184192c8 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x1849a1f3 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x18528fa8 of_device_get_modalias +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 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x18911e30 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x189c5b14 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x18a869cb device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x18bcd1fc ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x18d82a10 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x18dbe5e7 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x18f61c59 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x18fbf0a4 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x1902dfa7 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x1925e4c3 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x192ac447 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x1969bfcc regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x198bf276 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1990fd97 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x199f0a89 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a6cb1f rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x19a6e25f ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x19aaa342 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x19b1bef1 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x19eb846c gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x19f05e73 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19f5519b unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1a5e4802 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x1a6450e2 ata_pci_sff_init_one +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 0x1a9ef2c5 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1ab51da6 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x1ac0a00c inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x1acd710e irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ae44e8a pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x1b127b68 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x1b28ca0a __find_linux_pte_or_hugepte +EXPORT_SYMBOL_GPL vmlinux 0x1b3815d3 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x1b49bb45 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b796934 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x1b83e50f i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1ba2277e pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0x1bd2a4b3 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x1c16be63 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x1c242733 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1c36af75 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x1c3b94eb ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x1c3de9d4 desc_to_gpio +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 0x1c8af965 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x1c9f129a pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x1cbb7364 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x1d03fef4 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x1d0dfcfa sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x1d151e3d sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x1d15e2ea crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x1d1f70f7 of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d3035af __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1d39120e adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1d4966c3 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d62189b usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x1d6303c4 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x1d65c725 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1ddcef63 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x1df585c2 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable +EXPORT_SYMBOL_GPL vmlinux 0x1e1d7941 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x1e490281 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e72f062 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x1e74ea6d usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8670b8 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1ea03077 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x1ea95e86 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1eee289e rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x1f323120 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1f32cab1 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x1f481c7a usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x1f4955ba regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0x1f6dbfcd pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x1f796acc crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fa03edf spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x1fd7c743 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x1fdd7aa0 fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0x1fe037f9 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x1fe5d8ab perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x2033a1c3 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x203ca4dd cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x2046a580 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x204ab9ad rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x20568305 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x20593830 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0x206e594d stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x209145db dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x20a5e4b7 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20befb51 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x20c1c821 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x20d20b66 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x20d21865 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x20d97e36 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x20e70daa class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2130c053 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x21323839 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x215aafe1 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x2169fac6 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x21808915 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x218b48a9 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x218fa11c led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x218ff159 flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21f66708 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x220b23fb pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x220fbb6c page_endio +EXPORT_SYMBOL_GPL vmlinux 0x221d5f66 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x223672a9 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x22898fad cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x228c87d9 input_class +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22979393 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x22a53fc5 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x22c540c7 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x22e58612 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x22e6343d debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x2311f8b7 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x231967a9 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x23214d1a ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x233981ff irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x233bc933 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x23431cf5 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x2366e6ae component_master_add +EXPORT_SYMBOL_GPL vmlinux 0x236777fa inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2371d501 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x23781606 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23cfa2a4 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x23eac46f pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x23f19ead rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x23f263ca kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x241e6a30 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2449678c ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x24763edd blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x249a1aed ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24ab24d9 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x24b290fa ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x24c1dff4 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x24c673fc serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x24d34297 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x24dc20f7 pid_vnr +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 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x258d7f06 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x25b62532 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x25b98f79 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x25c753c7 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2604fb18 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x260f2879 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x261253d2 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2621166f usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x262694cf thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x2642b492 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265cf605 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x2663e55b l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x266e7f09 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x2670240c skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x268efd43 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x2691412e boot_cpuid_phys +EXPORT_SYMBOL_GPL vmlinux 0x26a89592 mbox_chan_received_data +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 0x27004d9d dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x2712fbe6 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x27153e91 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x272254d9 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x272e468a virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x274de19d get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x275117c3 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x2775012b virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x2791323d regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x27981f3f gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x279b6fc7 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27f0fbe7 usb_gen_phy_shutdown +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 0x27fb3072 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x2803160c pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x28138728 crypto_alloc_instance2 +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 0x285a93fb crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x28797248 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x288b71be rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x2895aff5 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x2896d692 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x28a3d8ff irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x28e2576a bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x28e34b26 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x28fe5154 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x2916b874 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x291881b1 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x2937502a sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x29544e4b usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x297ecc76 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x29806434 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x299154bb ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x299883ff fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x299a06c3 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x29b341da msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a3e52f6 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a6d1b1b dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x2a89808d blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x2a8d0cc9 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x2a923e9b shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x2aa401dc ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x2aac1414 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x2aaeb5ae led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x2af8f113 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2b218813 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x2b26e711 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b31c4c8 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x2b386054 device_del +EXPORT_SYMBOL_GPL vmlinux 0x2b394452 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b60f6d9 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2b762178 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x2b7a574f md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x2b90410a usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2bb47cd5 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x2bc1c729 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2bc9ee93 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x2bceb662 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x2bfa3a7b ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c0a1763 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x2c19276e pci_ioremap_bar +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 0x2c3468b3 ata_pci_bmdma_clear_simplex +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 0x2cbec910 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x2cc020b2 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x2cc5e926 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x2cc8367b of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x2cd27b07 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x2ce7630d pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cfa6db9 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x2d0c7a8b bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d27d963 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x2d36c57b rh_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d4daeac blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d5f514a fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x2d6dc1ec cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x2d86046e of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x2e0703f1 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x2e0f3769 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x2e1b832b netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x2e1e2e24 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2c15be ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e50000d ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x2e863316 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x2e89e182 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x2ea5ab53 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ecf171e locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x2eda779b handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f0f31f0 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x2f13167f devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f6ba7cc blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x2f879876 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x2fb4e938 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x2fc47e58 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x2fc966f2 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2fe70ea4 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x3004e944 device_create +EXPORT_SYMBOL_GPL vmlinux 0x30118d7c crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x303ac24d irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x306fd304 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x3085fad5 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x309b511d exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30b01a89 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x30b67326 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x30c5220f regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30cf3c71 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x30ee4ebd arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x30fc7d3e __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3101c703 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x310b6da9 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x311918a5 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312b3c13 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x312c6d9f skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x313cc39c inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x314013a3 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x3182e224 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x31b7256e devres_destroy +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 0x3208586b usb_string +EXPORT_SYMBOL_GPL vmlinux 0x320c142b elv_register +EXPORT_SYMBOL_GPL vmlinux 0x3213545d kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL vmlinux 0x322c5b06 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x322dbb05 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x3230e4a6 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x32499268 fsl_spi_cpm_bufs +EXPORT_SYMBOL_GPL vmlinux 0x325211af nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x32614143 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x326af1ee regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x3279e52b device_dma_supported +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 0x32db2ec8 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x32df7fe2 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x32eceb92 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x32f018ae udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3317c773 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x3323aa4c skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x33248318 debugfs_create_u64 +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 0x3367161a tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x336dd062 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x3371d24e usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x3373e8cc usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x3383c51c platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x33908d39 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x33a0aac7 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x33a59a57 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x33ad807e rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x33b14c4d usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x33eb660f devm_regulator_unregister +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 0x34331d5e nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x343a0240 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x344085fa trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x345753ea rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x346826fd tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x3473ef52 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34c22b0e replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x34d76c92 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x3518dabf __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x3521372d platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3522c085 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x35798169 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x357a6af9 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35908550 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x3596cc62 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x35b1944c platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x35c9b2ec clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x35d783a6 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x36067974 of_get_fb_videomode +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 0x3631df22 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x363fc673 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x36498a50 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x364e2bd4 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x365a06ed extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x366748d3 swiotlb_tbl_map_single +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 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36c3f57c pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x36d09d5c sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36f83b10 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x37089dd7 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x37120b5c exportfs_encode_inode_fh +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 0x37437c5d usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x3746e66d wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3750ec92 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x3761b808 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x3771972c cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x37d2c2c5 rh_dump_blk +EXPORT_SYMBOL_GPL vmlinux 0x37e545d3 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x37fb1f49 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x37fc86a7 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x381426f0 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x3818c229 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x381a137f ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x383109bd bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x38364f79 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x384548f1 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x3847f935 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x3856ac0e __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x38746595 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38ba78d8 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x38be844a crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x38cbcb4d usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x38d1540e i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38e5fdc5 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x39366aa8 __tracepoint_kvm_ppc_instr +EXPORT_SYMBOL_GPL vmlinux 0x393dbe5a regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x39778284 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x3978832b gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x39822268 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x39986896 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x39b21fca of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x39c232f0 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39d033de gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39ea84a6 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x3a1ab58c mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a35b927 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x3a35c58f dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3a362a2e ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3a397629 pci_disable_sriov +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 0x3a64e0f3 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x3a6b4de8 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x3a8afabf devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x3a974e9f regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa02850 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x3ac2f105 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3afe448a of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x3b0a11a4 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x3b2bf8ec fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x3b3fcef5 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x3b49fddb rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x3b501bcc device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x3b56924b get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x3b70b541 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x3b82f471 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x3bbc453f platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x3bbebf06 kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x3bbee61e regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x3c1b20ef max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x3c376021 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x3c39134b dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c9b00e7 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x3ca9324b scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x3cabfc50 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cddc2d1 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3ce25405 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x3d0cbb74 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x3d2c67af __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3b7685 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3d4bc4ec irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x3d5f00ce fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x3d9cb3e4 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x3d9e7caa xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x3da70dd9 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x3daccfd7 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x3dc090a5 nvdimm_name +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 0x3deb62a0 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x3e104f96 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x3e150236 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x3e1eaab8 device_destroy +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 0x3e6d8207 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e757637 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x3e7e4a7d __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x3e8dbffa bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x3ed2ea8f pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x3ee6a0e1 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x3ee8136b simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f003f7e ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x3f187a8b dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x3f1d9db2 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x3f20b9f3 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3f21ffad wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x3f323334 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x3f460499 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x3f58c5b6 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x3f653a47 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x3f77c170 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x3f915c4a devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fa9c24b cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3fca687a hvc_alloc +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 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406777f8 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x40866248 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x40877e0f blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40b7e738 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x412aea1e sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x41341bae wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x4137dc8f ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418fbc13 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x41a14b17 of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x41b7bd17 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x41b7f562 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x41babb0d extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41d7d672 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x41ea9d5a regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x41f72382 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x423c8432 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x425ba1a8 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x426b2c92 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x427a066b trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428a92fc handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x428ad808 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x429bf862 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x42d24254 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x42fc24e0 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4313f6a0 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x43291fc2 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x43424249 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x435323da device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x436dd767 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x437f4959 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x43963707 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x43969dbe rh_alloc_fixed +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43a5f06e blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43de2477 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x43e5b8ad devres_release +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x4404c156 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x4410f63e of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x444ca8f8 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x445b4704 user_read +EXPORT_SYMBOL_GPL vmlinux 0x448288fb find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448f9648 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4494d27f pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44de796f __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x44f46d5e swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x45359c5e get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x455b060f mmput +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457d5819 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x457fd0fd cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x4586a89a irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x45947d3e crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45cb8ce1 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x45e86395 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x45f2915d pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46117128 rio_release_dma +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 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x464eb441 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x46661bda trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x467984d4 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x467b17c3 tcp_reno_ssthresh +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 0x4698c6c4 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x46b7a7d5 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x46d6f17c key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x46ebb24a inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x4713b9aa of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x473b9a72 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x4752439c ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478a9937 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b65daa __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x47d9f982 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47fb418f dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x482bacb8 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x48441357 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x48482a15 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x48568d61 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x485a0e46 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x485a9119 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x48b09d4a blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x48cd33a7 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x48cfb31c unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x48e369b6 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x48e7edc2 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x48e9d474 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x48f0f73a crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x4916863b ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x492219a6 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x49379837 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x494e69c8 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x4975e91b regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49907c03 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x499d630a vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x49a92237 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x49bc7f0f ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x49dc12e2 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ecc45d skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x49fa4029 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x4a036714 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x4a07ab78 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x4a0f6958 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a360e58 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x4a39126b device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a96d077 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4b1e37bb rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x4b4b5059 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x4b51b375 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x4b61f785 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x4b7fda72 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x4b823ebf tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x4b89bb5c clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x4b92b087 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x4b94cdc9 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x4b98827c rh_init +EXPORT_SYMBOL_GPL vmlinux 0x4ba55ee1 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x4bcdbd7b bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x4bf083da devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x4c265936 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x4c320b39 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x4c36a66c phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x4c4c0831 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x4c59fc3e relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x4c5d3452 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c734501 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c7a8ab2 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x4ccac639 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x4cd43dbb arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d028525 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x4d24fca8 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x4d27ba28 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x4d3a88f6 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x4d430973 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x4d45e006 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x4d73e0f4 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4daa17fe usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de4a870 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x4de8eab1 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e151faf pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x4e2fcdfd dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x4e49b425 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x4e87e167 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x4e95ba7f ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x4e9ac72f inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x4ee00ffb of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f2ef5c6 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f3ecb31 splice_to_pipe +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 0x4f78a816 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x4f7da00d devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x4fadc72d put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x4fcfafc1 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fdff74f __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ffd3bbc led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x50115291 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x5029056e subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x503f61b2 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x5050754e dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x50791005 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5088475a usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50968476 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x50a1cf2a usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x50a3009e regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50da35f3 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f2c0cb ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5118f4d4 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x5145d6dd kvm_vcpu_block +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 0x5190c4e2 irq_domain_get_irq_data +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 0x51c2822a debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x52070838 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x525f7f57 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x52d6ab04 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x532d164f usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x534d15a1 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x536ae2d2 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x53741ce5 of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0x5379a637 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x5382b98d sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x53c92e87 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x53e9dcb3 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x53f4bcb0 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x5405fc29 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x5406804b blk_mq_request_started +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 0x54401778 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x544906e6 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x5461a80b uart_insert_char +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 0x54760ba1 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a056e8 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x54b5e679 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x54cd7af2 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x54ceaa76 irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x54f820f9 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x550a67fd rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x5519d409 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x552a3dd1 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x552b3305 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x552da7ed kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x55328de0 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x55342531 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5567838b kvm_release_page_clean +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 0x557b5a35 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x55a0af24 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x55a592dc exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x55a8d0df of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x55c9d20c __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x55dac2a5 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x55de1966 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x55fdd63d __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x56022f42 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x563d936b device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x56499187 i2c_new_probed_device +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 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56d06a72 regmap_parse_val +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 0x56fcf2ac ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x570745b0 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x5712544d usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x57158f40 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x571f0c76 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x572b6328 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x574f9940 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x5799dbd3 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a204c0 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57d548ac kvmppc_ld +EXPORT_SYMBOL_GPL vmlinux 0x57e42ee2 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x57e62460 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x58062b71 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x580bde1e perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x585151cb dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x58595b3c blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x58659460 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x58765cbf tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x587c4b92 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x587f561a usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x58838d45 ata_sas_slave_configure +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 0x58b28fd4 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x58bbde0c napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x58d6974e devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x58f8e986 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x591d15f9 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x592ba166 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x593b0a50 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x593daabd debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x596f79f7 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x598741ff dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x59b574e0 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x59bec5b4 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x59e03e38 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59f0c9dc rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5a056ec6 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5a2506a7 cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x5a2cbf95 kvmppc_kvm_pv +EXPORT_SYMBOL_GPL vmlinux 0x5a360abb crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x5a414340 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x5a47278c xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5a6efe54 kallsyms_on_each_symbol +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 0x5a8fa6b0 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x5a95d0cd ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x5aaaedac scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x5ad294eb ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5ae71d43 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x5aec0abb irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x5b0badd9 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5b3d1ca9 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x5b3e20c2 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x5b5a0987 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x5b66d6e4 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5beb1b71 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x5bf9aec4 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x5c1b327f bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x5c34e41d ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x5c4f07fc usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c6c2d74 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x5c71d669 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5d0e7f53 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d55858f nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x5d61a89c uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x5d7648bd pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x5d832d9a unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dbd9a3f __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x5dd397c6 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x5df5c5a0 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x5dfe1a89 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e051acc __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x5e3a8e9a component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x5e4bb456 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x5e4f57e0 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e997a79 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5ebf5071 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x5ec9d0ae crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5f06f82d pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x5f455428 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x5f522d8b kvmppc_hv_ops +EXPORT_SYMBOL_GPL vmlinux 0x5f551e55 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x5f645824 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x5f7a8477 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x5f88aa97 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x5f9b7c48 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x5f9da3f0 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x5ff47b09 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x5ffc1077 arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x601abaf7 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x6039784d thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x603d078d dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x603d3b9e tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6051dea8 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x605d3f26 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x6062e98c regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x6072a8e5 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x607b46ab pm_generic_freeze +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 0x60df9f0e __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60f2c832 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6102ca3c regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x610941e5 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x61119576 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x6122b4fc bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x61828b0e usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x61893393 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x618baf9d bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x618d3bcd da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x619968e7 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x61a8dd95 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61b8d962 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x61cf136b debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x61f6dcc1 i2c_new_device +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 0x621a1d5f vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x621b5d19 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x622cd6c7 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x62434556 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x6250238b ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x627b69de ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x62bc5130 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x62ca9bfe rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x62d471ac bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x62d59c9e trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x62e9a866 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x632781b6 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x633eabb8 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x6342f6df fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x63772259 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6389df5c get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x63ac6c58 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x63b090c5 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x63c79a38 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63e81326 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x63faac20 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x640fe11f scsi_dh_attached_handler_name +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 0x6442596c isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0x645986cc ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x647cd339 of_fixed_factor_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64de8d73 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x64eabe19 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x650bc489 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x65156fce security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x6528842d securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x654d33a7 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x657a941f security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x658cf1d5 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x65ab1c7c vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x65b26639 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x65b56149 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65c68720 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cee38c __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x65d908ac ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x660f9beb ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6617a743 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x661ebedd gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x662432e6 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6625068d debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x6635119a gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663ab21a mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x66688b54 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x667d393e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x669cdb0c extcon_register_notifier +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 0x66e8b243 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x67380a6f rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6768b62d usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679628a6 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x6796b028 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x67ca8e5e power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x67d3a276 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x67d86834 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x67ea83c9 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x682dbe1f relay_close +EXPORT_SYMBOL_GPL vmlinux 0x682e6bb0 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x68422861 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x684df9b5 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x6854ca77 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x6857dc42 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x685bb113 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x686c1973 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x6873a90d __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x687530e6 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x68d7eeca security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x68e1c29f crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x6937caa5 tpm2_gen_interrupt +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 0x696ca985 kvm_write_guest +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 0x699b3081 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x69a31d1d tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x69ab121d __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x69b111d1 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x69c0a8d7 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x69c0e734 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x69cc569a pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x69cdcc64 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x69ddb0ca pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x69e543b1 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x69ef75fe crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x69fc3084 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x6a014c11 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x6a0239da get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x6a09fe17 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x6a0d8309 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x6a0dee1f tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x6a0fdd39 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x6a343445 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5853bc ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a89e35a pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x6ab3781f trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x6adf89f3 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x6ae5e23f tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x6af8bf06 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x6b0b23e9 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x6b17c7d6 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b2fd473 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x6b42ea7c sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x6b48a910 switch_booke_debug_regs +EXPORT_SYMBOL_GPL vmlinux 0x6b6449c4 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b7ce644 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6bbeef41 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c17e431 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c36b938 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x6c3a1588 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c511a3b kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x6c5a2d65 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x6c667164 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x6c74a1e4 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x6c782110 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c96eeb8 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cac0e0d usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x6cb1bc31 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cfa8286 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x6d06b69d udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6d1fd1a5 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d49e609 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x6d51aa79 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6d7fc7f1 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x6d8941b5 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x6d9789ec pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6dac0acb hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6df0a6a4 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e14c41c watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x6e158af9 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x6e281811 xfrm_inner_extract_output +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 0x6e914549 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x6ea5b056 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x6ec4fb04 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6ecb22cc serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x6ece1c92 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x6efe2708 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f63861c relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x6f651175 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f868f47 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x6fa5121d crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6fae22dc regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fee4efc ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x6ff17d75 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x701a3111 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x7021f49d blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x70278244 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x703987af kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x7049f3c8 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x704c30ad fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x7059da73 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x708d231c ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x708f7e7c fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x709572b1 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7097c30a blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x70afeefd aead_geniv_alloc +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 0x70dbedf7 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x70dd6f70 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x710686ea tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x710d9ed4 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x71186be6 of_fixed_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x712c87b5 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x71302878 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x715c8262 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x71615ee7 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71676b5f devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x717cd456 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x718efd1b ata_scsi_slave_destroy +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 0x71c05907 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x71c16c83 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x71d4060e vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x71d95a5f spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71dea3e8 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x71e1a89e platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x72518eb5 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x72560337 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x725f60cf event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x7262034d to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727dd401 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x728829ad ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x72a4e9c1 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x72ae0090 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x72bd0145 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x72e82c43 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x730232a4 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x730c6237 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x731a2454 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x731b7ab9 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x731bc579 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x731dea4e pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x734d18b8 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x73673791 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x73693bba free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x7378eda0 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x737fe595 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73ad2b5e irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d090f1 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x73d4d45e da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73e4c68a pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x741dcc59 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x74254a27 bsg_register_queue +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 0x74472ee2 ata_pio_need_iordy +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 0x746d7051 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x747e2721 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x747e3fae raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x749868d9 devfreq_event_set_event +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 0x74dc60a2 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x75054d6c reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7529218a ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x7545071b usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x755994ce cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x756f61d1 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x7581a95e devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x758c81f6 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75972bcb devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x75993ee1 scsi_unregister_device_handler +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 0x75dcbb0e devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x75e3cb2f edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x75eaf137 regcache_drop_region +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 0x764b93d5 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x76517d60 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x766bd6e6 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x767d326c __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +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 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x7707f0d3 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x77214067 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x7722e272 fuse_abort_conn +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 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7766a7eb sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x77801eef smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x779ff461 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77bdd205 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x77e028e7 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x77e58dd9 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x77e618b4 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x77f2859b power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x780d3d86 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7823e9e9 regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x78459300 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x784ac61c scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x7854b01c tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x78559445 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x78743538 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x78a2f0ab led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78bb9878 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x78f0c751 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x78f2c086 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x78fa8a43 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x790152ea fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x794d8565 split_page +EXPORT_SYMBOL_GPL vmlinux 0x794f44ac pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x79628119 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x79677f62 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x79ab945b __blk_end_request_err +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 0x79d13779 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x79d200d1 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x7a0c993a screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x7a19ba34 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x7a1acef2 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x7a29e5f0 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a31a076 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x7a3e0c65 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7a3f5a8e locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x7a45058f regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7aa41d4c xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x7ab16977 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ab5bde3 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x7ab92030 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x7abb6b9f rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x7b055033 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7b076940 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b223af6 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x7b3fc555 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x7b8d0405 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x7babb389 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x7baf6cd5 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x7bc20459 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x7bcc7234 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x7bd5875d unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x7bd8fad0 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x7c1c23d4 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x7c5e07a6 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ce7642a ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ceb75fe regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d0430ae device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x7d05d8cb platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x7d2e3cc9 kvmppc_st +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d7afda2 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x7d814491 fsnotify +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 0x7dc33b8d register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x7dd12fac register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7dd3c690 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7e0c4d1a ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x7e0c57a7 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +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 0x7e91443b scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e99bb07 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x7ec2255e virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f2b14bf crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x7f339222 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x7f3d55b3 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x7f5c7b96 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fcda0b9 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x7fedd9bb ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x7ff3ec11 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x80233f7f perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x8034b554 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x80537087 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x805d90c0 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x805e1931 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809fdd1f __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x80b3a985 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c94311 fib_table_lookup +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 0x811a9a3d kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x812b6cc0 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x813286e4 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x814595a6 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x814c58c2 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x81827852 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x819316fe mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x81eff63f of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x81f0306f noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x81f367d9 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x81fb6098 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x8229515c regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x823228d9 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x824f9b57 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x8256e345 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x8257c795 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x826c7927 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x827ad009 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x829e9f4c usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x82c372d0 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82fa2c6a ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x8306fe72 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x83133588 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x834011f2 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x8341523c usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x83561cb0 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +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 0x838fcce8 extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x83d2377c fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x83eba8d4 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x83f36d85 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x841da239 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x84275716 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x844025d2 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x844f9424 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x845ad242 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x845cecda crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x8490116d regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x84928644 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x849a534d ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x84a9097d clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84b5f86e swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x84c9cf5a sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x84f318ec irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850be6a5 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x8554a068 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x8555ddcc __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x855dfae6 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x855f87a4 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x857dc34c adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x8592c2da input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x8599c700 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x85b34725 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x85c1a88a ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85e477e7 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x85fc9fc8 mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0x861250b0 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x86183c44 __put_net +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 0x865799ae ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x86656b8f dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x86717b48 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x86754e1c rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x867fbd97 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x869dc749 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x86a2cc68 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x86d18296 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x86d35c1d ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x86ef9800 skb_to_sgvec_nomark +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 0x8732c718 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x873c2a13 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87447e1e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x8751bf3c rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x875a71c3 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x8760c2b4 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x876f5301 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x8775abd9 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x87b3515e sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x87be3a8e regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x87c232fd xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x87d8b5dc tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x880d6990 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x880f8b6e find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x881b9767 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x88535ec0 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x8878d0a6 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b3dd36 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88b94757 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x88bae99c devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x88bdad03 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x88d1aef7 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x8920c841 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892ccb2c pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x892d731c wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x893339df task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x894642fa scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x8952d8a9 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x895d96cd securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x89761b51 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x899e5d06 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89f138bc tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x89ffaeb2 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x8a0021ab pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x8a1f37a7 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x8a23a1f2 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x8a2508d4 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x8a45642f blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a558174 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8a76e26b crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x8a804a2e __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x8a93f476 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x8aa94a63 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac2acc3 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8ad5cb42 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x8ad99bd7 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b445343 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8b77680b fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b878164 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x8b8e9224 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8b945132 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x8b9da861 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x8bb1197b pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8bb45027 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8be2597b usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c110b67 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x8c19881a sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x8c23a897 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x8c403e1c regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x8c56a1b3 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x8c5fd0bb ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c738bcc debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c78d4de max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x8c7b9692 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x8c83d5df ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8c865b9d wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x8c89a783 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x8ca6588b generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cee704f tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8cff3107 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x8d087bec driver_register +EXPORT_SYMBOL_GPL vmlinux 0x8d20f1c4 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x8d6294d7 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x8d6d7b61 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x8d916bfe crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x8d991ab0 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x8d9daa2a device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0x8da5031b devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8da7cf5b nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x8dc675da __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x8dcc68e3 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x8ddd6452 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x8de053df pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence +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 0x8e2c2b0a blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e4e1813 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x8e507f4d ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x8e79f1b1 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x8eb40938 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x8eb50846 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x8ed41312 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x8ee84aa8 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f7d7c62 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8f7f7de1 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x8f956ae8 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x8fae422d sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x8faf7b3c gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x8fce7889 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x8fd47b87 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x8fe36745 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x8fe6cb62 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x8fef3b6c sdio_writel +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 0x9041b764 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x9052e07f rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x906e9761 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9090f0c2 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90a60338 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x90b42576 blockdev_superblock +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 0x90f2bd34 kvmppc_pr_ops +EXPORT_SYMBOL_GPL vmlinux 0x90ff163a unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x910353c1 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x91085a05 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x91103b9e mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x91135b5a spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x911fbdb3 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x9124380b register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x91310982 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x914ca340 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x9162df90 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x91690406 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x9175fea5 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x917e8e42 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91901bd3 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x91935247 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x91b53dbc disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91e0585b clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x91e3b929 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x91ffb954 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x920b679d ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x921c5461 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x92251be4 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x92382044 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x92535aba cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x926c32fa gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x927ca7bc ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x9282c8d4 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x92866f83 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x929ab031 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92da4999 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e84753 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x92ec59a2 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x92f17a53 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x932a9184 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x93530b33 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x9365d415 of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x93937f99 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x93a2cb47 reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x93b9f058 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x93bbd323 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x93e5871a of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x93eca6d3 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x93eeaafa usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x940f9711 usb_put_hcd +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 0x946bec7b da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x9470426a ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94e4a577 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94fb6076 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9512a4fa pci_common_swizzle +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 0x955c7873 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x956633d3 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x956c6d15 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95a57a75 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x95b7ee00 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x95b98ece do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95bff45b cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x9607985e fsl_spi_cpm_reinit_txrx +EXPORT_SYMBOL_GPL vmlinux 0x9609470f gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9625eb64 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x962a51b8 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x96308e7a input_ff_event +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 0x969521ff pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x969b0e62 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x969e5336 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x96b69fd2 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x96d853f6 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x96f0ce5e vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x96f6cdb3 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9717138b of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x971884f9 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x977542b2 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x97ba5c67 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x97dd7173 eventfd_fget +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 0x982cfa1f rtnl_af_register +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 0x983c7494 rh_detach_region +EXPORT_SYMBOL_GPL vmlinux 0x984412ba device_property_read_u32_array +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 0x987c19cd usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x987f4abe __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x989c4c79 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98a5dc34 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x98ae1509 of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0x98ee92ab kvmppc_emulate_instruction +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 0x99075ab5 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x990adafa rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x99139d01 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x991e16df regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +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 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 0x99c62705 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x99d90b90 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x99e9d0e6 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x99f439fe __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x99f8bbc3 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a2a6fe0 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x9a3c3546 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x9a451096 pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a572719 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x9a78b074 crypto_drop_spawn +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 0x9ab13f3a fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x9abe2ca6 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x9abf1aa5 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x9ac55d47 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9aebd25d of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x9b177573 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b23535c dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x9b59eb36 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9b7ed3fc blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x9b98397e regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x9b9b1cc2 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x9b9cd75b extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x9babfb05 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x9bb13cd6 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x9bcdc5c2 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x9bdf520f of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c1168a2 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9c1a01a3 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x9c62874d dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x9c775e3e crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x9c9d7e5e early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x9cbc2270 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x9cbc40c0 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cecdab6 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x9d0479a1 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x9d1c2b25 inet_csk_listen_start +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 0x9db3e6bc trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x9dcbfb38 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x9dd0ab2b thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9dd5713d serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x9df26c5d sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e09b4ff ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x9e0e3025 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x9e148c40 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x9e26f2b3 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4b1978 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x9e52d406 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x9e5381b3 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x9e72f18f bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x9e80f7ee spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x9e93d422 of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x9e9ffc44 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x9ea7f9c9 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x9ec2d528 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed6bf63 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9ee99903 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x9ef11f87 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f07cbde fsl_rio_mcheck_exception +EXPORT_SYMBOL_GPL vmlinux 0x9f08a35c pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x9f2e43d5 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x9f3d07df spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x9f44b1f7 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x9f926415 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x9fb925a8 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x9fbe018d task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x9fc18c39 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd5006a inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9fe90948 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9feb5585 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xa01a755a extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0xa01f237a usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa03fd502 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa0484766 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xa04a0ca4 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xa058474a devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xa071e996 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xa08c2a88 clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0xa0b053dc blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xa0cb41e4 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xa0e83d93 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa0efed1c flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xa100dcfa aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xa10814a4 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xa15feda8 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1969e87 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xa1d986ac crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xa1dad13a netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1e3ccfd nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xa1e47274 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xa1f72af9 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xa20aa96b srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xa2258a18 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xa2617f0e dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa28aaf29 rh_create +EXPORT_SYMBOL_GPL vmlinux 0xa29dec07 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xa2a5379f fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xa2b08fca ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xa2b5cebe crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2dbe778 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa2e80f05 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0xa2fab796 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xa30c0193 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xa30d5773 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xa33a6f24 power_supply_set_property +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 0xa39024e3 regulator_get_bypass_regmap +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 0xa3c09257 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa3d4a60f usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xa3e2c592 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3f602b4 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xa40fc1aa skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xa41827f0 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xa42b5ca7 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xa42cebab __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xa449a544 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xa45de544 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4922064 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa4f4132c ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xa5122a9a skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xa51573ad rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xa532b9a2 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xa5434f27 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xa565adcf tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xa575b7e5 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xa5833897 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa5a6e7fc blkcg_policy_unregister +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 0xa5fb3ec1 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xa6105dec __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xa6139cd6 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa633f40c da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xa6390e14 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xa6542fbd gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xa65bda6f trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0xa6820664 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0xa6942a37 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6bb7603 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xa6ce8449 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6cf771a cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xa6e0a1d0 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6eb4c37 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xa6f58cb0 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xa709301c led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xa76704f1 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xa76be66f kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xa787ad00 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xa7ad85cb sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xa7d857ed sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xa7d9de11 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xa7fa47d7 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xa80aaab1 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xa81a50fb clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0xa83d34b0 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa877244a ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xa881ad18 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8d17ded usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xa8d5114e regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xa8e844c8 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa8ee5efe __blkdev_driver_ioctl +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 0xa925db70 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xa92b1e52 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa934bd3f ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xa93ec698 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xa94e03a9 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa9756607 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xa980053b ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xa992ebd0 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa99403b8 crypto_register_shash +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 0xa9b65028 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xa9bab4b0 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xa9d1cb31 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa073254 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xaa0cd2bc regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xaa13455b xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xaa17a2e2 rh_alloc_align +EXPORT_SYMBOL_GPL vmlinux 0xaa2296cb crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa872fc9 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xaa8b84be __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xaa9a1014 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xaa9a2558 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xaa9b3698 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xaa9b704c rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaac8fbd io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xaaba8374 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xaac4f357 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xaad1326a devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab354e0a crypto_grab_aead +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 0xab778547 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xab7a8a76 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xabaea657 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd3d40c list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xabf41d0c trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xac01f8d2 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xac1c4ddf usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xac33dd8e usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xac6a882a dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xac6edc94 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xac718341 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xac7e6151 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0xac96eaf7 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xac9c7798 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xaca28c19 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xaca5d075 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xacb40e6d crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xacdf5ab5 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacfaeddd spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xad070fec mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0xad07641e phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xad51b62a get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xad52fa11 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xad5a36c0 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xad62e780 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xad73b1b0 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xad8c0775 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xadb61090 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xadc4d751 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadd11b13 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae225c63 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0xae270ab8 kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL vmlinux 0xae3bdfee fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xae3ce084 raw_hash_sk +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 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xae8e0c3a bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xae928d21 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xaea6bf56 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xaebcd4f6 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xaec6e5ca extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xaed0fd8c wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xaf0a2429 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xaf1a6f9c crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xaf26f8aa of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xaf2c54bd nl_table +EXPORT_SYMBOL_GPL vmlinux 0xaf5192b2 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xaf599537 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xaf6df42c platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xaf7c82f9 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xafa0fc44 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xafa70198 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xafc7382b trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xafdab19d debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xaff0d822 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb016a7b4 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb048d046 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xb055da08 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xb06251fa stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07beec0 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xb07ecfbd blk_mq_tags_cpumask +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 0xb0ccd2a8 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xb110cfa8 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xb119adf0 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xb12ef99c pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xb137d236 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb15342c0 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xb17aafbe ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1a64079 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b77f49 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xb1beb0dd usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1c5dead of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xb1d9ae6a blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xb1e00368 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1ea264d sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xb1eb0258 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xb1f9f204 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2256567 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb27bdcc1 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0xb2897713 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0xb28cc379 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xb295b3cd kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xb2c1554b of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0xb3042ec6 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xb318c683 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xb34016d6 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xb3506f61 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xb373f4a9 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xb388a86a balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xb3a8b7cf regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xb3b60dd4 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xb3c79439 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xb3da241d kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xb4031206 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb425ad49 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xb42c0f32 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xb44d81b9 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb4913355 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xb4aae35d unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bc1cff of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb4d10a54 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xb4e65399 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4faf7ac tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xb502e31a dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb511c350 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb533544d thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xb535b2e8 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb5390aaa irq_domain_associate +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 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 0xb5b6056a component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xb5b99c3e usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xb5cdcc30 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xb5e61bb3 irq_domain_xlate_onetwocell +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 0xb5ff01cc sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb618240a rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xb6232933 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xb623a454 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb65c0a92 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xb671173c serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb67d9e48 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb691037f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0xb69bc2a5 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6c22d10 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xb6d052d4 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xb6e02d0f pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6efb65a balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xb708918a __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb712110d device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xb720e16f find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73665f7 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xb77dd9fe ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xb78131f3 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xb7845d49 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xb786e77d percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb78cbd03 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xb79614e7 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xb79fb656 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xb7be2014 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xb7c1a147 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xb7d5ef94 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb804f78f __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xb8073188 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xb809b9ee md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xb80cad85 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xb80f02e5 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb82c4bf2 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xb82f9666 kvmppc_handle_store +EXPORT_SYMBOL_GPL vmlinux 0xb84b1240 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xb84b5f0d cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xb866ee5e posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb869c777 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xb8745cc1 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xb87e2449 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xb883206b hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8ad1fc9 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8e3c121 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xb8ffb65f kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb910045b dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xb96a63df put_device +EXPORT_SYMBOL_GPL vmlinux 0xb96b3bc6 of_get_display_timings +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 0xb9f4f95d power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xba2a2270 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba64cb32 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xba873a8e pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba8b6e55 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xba983d20 swiotlb_tbl_unmap_single +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 0xbb2dd46a gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xbb675feb dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xbb6d7af5 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xbb875361 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xbb884e42 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb96ce9c of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xbb9ef7e1 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xbbc38356 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xbbe13508 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xbbeb5913 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xbbeeacb8 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xbbfce585 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xbc02f278 ehci_cf_port_reset_rwsem +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 0xbc962b8a powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xbc9745e2 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcd746e5 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xbd0cae10 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xbd2408b9 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd46d2a5 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xbd52cd87 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd73411b xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xbd73e659 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xbd80072a regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbd8b78fd sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbda14424 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xbdab78fc stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xbdb82366 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xbdcee1c7 ata_host_resume +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 0xbde9856e rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe06bbb1 __inet_twsk_schedule +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 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 0xbea40112 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbea62925 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbee71e43 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xbeefef50 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xbef46ea2 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xbefe0a14 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf0511ac usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xbf056f18 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf0f70eb regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf1e8df3 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xbf25c3e2 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xbf4c5e30 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xbf663bf1 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xbf69c88e __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xbf6cd0db of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0xbf6d1d4a udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xbf7585d1 __kvm_set_memory_region +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 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc51829 kvmppc_sanity_check +EXPORT_SYMBOL_GPL vmlinux 0xbfdb36db rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc00208af regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc004abba single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xc0089dac crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xc00f719a spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xc0144536 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xc0224a2f of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc031dbaf part_round_stats +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 0xc06e8f48 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc08a70b0 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xc09d2997 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xc09dfeb2 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc0a2d699 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0c076d0 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xc0cc5850 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xc0cca53a dma_buf_attach +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 0xc0f33d0b usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xc1180b00 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xc14a7b5d scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xc14e6717 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xc15cc798 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc176f9d9 device_register +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc18db86f regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xc1a1b3aa skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xc1a74607 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xc1ab46cb clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc1ad8f10 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xc1b18274 component_add +EXPORT_SYMBOL_GPL vmlinux 0xc1bace4d devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xc1d3c27e irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xc1d9cf84 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc1e9a9e7 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xc2047fd7 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2455879 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc26a7632 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xc26bc77e device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc282ec82 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xc290c858 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc2a533fd ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc2f9baf8 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xc30d423f pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xc328ce13 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xc32982ea __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xc33c5c94 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34abda6 __module_address +EXPORT_SYMBOL_GPL vmlinux 0xc368686d gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xc36a61a3 device_move +EXPORT_SYMBOL_GPL vmlinux 0xc371eaa3 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc38a80a6 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xc3966f4e dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc3972393 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xc3b0e615 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3de0a97 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xc4220282 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45ba4c3 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc463c111 usb_get_hcd +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 0xc4a20df5 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0xc4a6f4bf fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xc4c212bc fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xc4c94ad5 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4e0f3c3 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xc4eb87b1 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xc507f06a of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0xc525d5e7 max_gen_clk_probe +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 0xc5849075 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5be5715 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5ea9654 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc60b1376 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc63c044d __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc640b945 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc64631cd vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +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 0xc6b65261 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xc6be3d21 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xc6f90d6b virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xc70e4b59 kvmppc_claim_lpid +EXPORT_SYMBOL_GPL vmlinux 0xc70fc771 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc7263ec4 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc741cde3 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xc74ec55a cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xc76e885e pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xc7732e1f devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc7832fcd shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xc7850b75 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7c75490 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7fd6fdb irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xc831b53d ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xc83ffedb pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xc859dc45 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xc86df43e skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc89e9ec0 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xc89f3d41 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xc8a97256 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8bdca53 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8c15b64 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xc8d599c8 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8e8657f module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xc9076430 regmap_multi_reg_write_bypassed +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 0xc9322ac6 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc946f754 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9642617 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc97e9bff register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xc9a94116 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f578a9 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xca096efc usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xca15b250 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xca2b0076 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xca2f5d05 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xca6fa331 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca89beb2 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcaf6c656 ata_scsi_slave_config +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 0xcb5635d5 device_create_bin_file +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 0xcb7b0513 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xcb900bb2 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xcb9aa4f4 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xcbbab9ea inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xcbbcfb32 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xcbd77e09 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe5fd3f blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbee7068 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xcc0942c2 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc35f2ea sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcc38fe15 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcc44961f kvmppc_alloc_lpid +EXPORT_SYMBOL_GPL vmlinux 0xcc5c2d69 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xcc68b4a9 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc6978a0 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc9788ad usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xccb9e867 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xcd0e7f07 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xcd1645c2 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xcd493bd2 usb_phy_generic_unregister +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 0xcda6feae __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc01f08 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xce04d50e devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xce2705c4 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xce35c952 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xce44216d of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce93d348 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcf175674 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xcf36147c devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf5be66d trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcf8ce7ad crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xcfaba83b dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfbc9575 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfd3221a clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xcfde45a9 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xcfe43f18 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcfee618a crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xd00771cc dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xd010666e blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xd0153d08 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xd037f432 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0546a01 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd06011f3 nd_cmd_out_size +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 0xd090629a ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xd09ecb09 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd0ab2423 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xd0abac40 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0cfc1b1 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xd0ef903b device_add +EXPORT_SYMBOL_GPL vmlinux 0xd0f50841 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xd10ebc84 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xd114db57 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xd122a721 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd130d484 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd176da33 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xd18577a6 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd211844d virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd22f247d usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xd23301ba ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd274bd5f regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xd28d1159 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd29c2266 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2b48c72 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xd2cf3170 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e6c237 ping_unhash +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 0xd3512d37 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd3544e4c rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xd3615e8e tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3cde847 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xd3cfa546 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xd3ee6f4a usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xd3fece5a blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4184d9f ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xd41fa336 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd43eb38d scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd45291f0 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0xd46340bb sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xd479a0cf regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d735da crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xd4e63730 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xd51a45f2 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xd528a83c __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xd52ed29a tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xd5409ef1 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xd56767b8 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xd572be6c dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0xd59fe323 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xd5b14bdb regulator_get_mode +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 0xd5c21272 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xd5e7237c device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd61038c8 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xd619bb44 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xd620900c crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd62ac9ba lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xd641046d ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xd648561b tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xd64a6264 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xd6555562 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xd655a436 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xd66c2ecb of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xd66d31f4 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6a43a5f ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xd6d7a0c7 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xd6ddad9b input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd6f29d3a find_module +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd7247da2 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xd745ea07 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xd751a98f of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd779241c pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd77e3620 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL vmlinux 0xd78f63c9 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xd7a09805 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd7a58ff4 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0xd7b03d7d ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xd7c9ec84 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7ec547a bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xd7f3a66d crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xd805d4e7 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd81effe3 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8426b2c clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0xd86887c6 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8ba613c usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xd8c55f64 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xd8e570e2 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xd8e9337a kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xd8eec5e5 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd8eeebeb device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xd9206d7f pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd95227d2 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd95b0fcc crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xd96b2f43 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd983e71e of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0xd988891a dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd9a51bea yield_to +EXPORT_SYMBOL_GPL vmlinux 0xd9b5d062 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xd9be388f led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xd9c13552 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f01c19 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xd9f3f85d pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xd9f81993 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable +EXPORT_SYMBOL_GPL vmlinux 0xda11264d of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xda27878e bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xda291b65 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xda33ff4c blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xda540f72 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xda783266 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xda8cb2e5 threads_core_mask +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 0xdb088cb1 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xdb169ece virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xdb1fb26b pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xdb2da71d cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xdb32f547 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb677915 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xdb7431f4 inode_sb_list_add +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 0xdb9ea501 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xdbdfe20f __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xdbf7555e __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfa9f38 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xdc291819 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xdc2a06f8 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xdc42d44e fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xdc4fcb4c devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xdc5ecbfc ip6_local_out +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 0xdcaa6c35 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xdcb30dd9 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xdcc7df4a rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xdcd1414e dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xdcd71192 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xdcdbab08 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xdcde52d5 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xdcdf6096 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xdcf2553c ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xdcfbf0b2 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd270923 request_firmware_direct +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 0xdd7deb94 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xdd9fb252 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xdda85918 pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xddaa2df0 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xddbb687f tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc2074a scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xddcdff95 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddda0473 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xddf43473 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xddfd07db get_device +EXPORT_SYMBOL_GPL vmlinux 0xde314eac uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xde38bfce disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde4b7c8e virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xde4e62a7 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xde84fcf9 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xde91be25 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xdeb5cbe8 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xdeb7e8fa posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xdebd1991 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdf0c3252 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf19b8cf regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xdf1c74ab unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xdf29786c tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xdf38220c rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xdf3a331a shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xdf4796dd devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xdf6144ad ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xdf8bb8d6 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xdf9244b1 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xdf9c58d7 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xdfb8f493 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xdfd83d61 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xdfee1efa seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe00fa4c6 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xe0199957 i2c_generic_gpio_recovery +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 0xe06e13da eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0ada846 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b4ed3d gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xe0b70927 fsl_spi_cpm_free +EXPORT_SYMBOL_GPL vmlinux 0xe0cc7037 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xe0d4c650 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xe0d78c89 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xe105e1f4 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xe117e3aa of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0xe12e33c8 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xe134f2ac tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xe15da232 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xe16db2e3 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xe171ba0b usb_set_device_state +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 0xe19eb1c4 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe1afb539 get_user_pages_fast +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 0xe1d76e53 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xe1d8f8ac pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xe1d9b81c wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0xe1f12179 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xe1ffa686 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0xe20f062a kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0xe225328b dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe242e189 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xe2600e9d ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xe26c0a2c rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xe27f5c87 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe299132b usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xe2ab67ee extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0xe2ad7bf8 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xe2b382b9 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe2bb3899 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe2d624dc perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xe2dc3d32 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xe2dd84df regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xe2e45311 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xe2e8c1f3 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xe2ed9657 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0xe2f5dcd4 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe310dcb5 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xe32dfaf3 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xe33702d4 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xe35a0048 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xe362b409 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe3669204 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xe3eb5945 max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe44eb7ef gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe48bba83 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4a0d7af __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xe4b64061 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4d0a1c0 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe4e59b13 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xe4ed5410 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xe4f69d80 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xe537080a tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xe55d9d78 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xe570589f usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xe57407ca kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0xe576dd75 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58a39a5 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5c67d93 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xe5f5b4df extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0xe60a50fc tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xe63518df ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xe636f326 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe67c7048 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe68a1f53 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0xe69c270f led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xe6a1f0d3 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6d52f78 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xe6de5e78 ahash_free_instance +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 0xe7000941 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xe7084bc2 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xe7145917 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xe719eaed device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xe743828d cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xe74906e2 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe74e911f kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0xe753f346 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe776a89f thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe785466d crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xe79fc3c2 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0xe7a19ef1 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xe7ae30ec rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xe7bd688e ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xe7cf5008 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7f2378c cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81c1308 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xe81e1430 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xe8240ec2 dev_pm_qos_add_request +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 0xe85e6ea9 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe86c5864 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xe8734d2a usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0xe8b28fc7 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe94142d0 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe94a6f0b crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xe964084a virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xe9794358 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xe97bbd5f ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe9922ffb bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xe9a55f71 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xe9be5a96 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9ea2892 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xe9ff5dd2 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1953cc of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0xea38ff49 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea4c53cd device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xea4fd739 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xea6d0675 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xea8bce13 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea994951 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xead138c7 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xead8d34f devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xeaeea2b1 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xeafadf7b usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xeb0580a3 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xeb35029f mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xeb56d294 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xeb7a864c blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeba443c0 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebd33c15 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0xebdb31d4 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec24633f fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xec247dc5 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec4787d0 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xec7b9620 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xece2273a mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xed04aee9 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xed21dfa5 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xed2200d9 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xed23fbb3 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xed425506 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xed502811 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xed935da2 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xeda5cf1f gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xeda6880a wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xeda6f41b pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xedb3f4d6 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xedb699aa __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xedc249f1 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xeddef46a pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xee02fbaf gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xee0419a6 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xee084463 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xee0ac1e2 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xee15e35a dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xee26fb2e cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xee3b8fac kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xee3c40d0 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xee52e420 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee7d0a16 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xeeb2946e gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xeeb378e1 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xeec245e5 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xeeddb31c __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xeee06038 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xeee9b08d blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xeeee37c0 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef51e216 blk_end_request_err +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 0xef818ba5 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xefa053ae gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefbfca94 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xefe6e5cd ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xefeed4a4 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xeff537c3 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xf00d6044 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xf014d7cd device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0xf0269af5 ata_noop_qc_prep +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 0xf0754ea8 md_run +EXPORT_SYMBOL_GPL vmlinux 0xf099d155 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xf0a06d7c __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xf0ae5910 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf11d8eae crypto_ablkcipher_type +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 0xf164070f usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xf16d6344 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf186ee62 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xf18daf8f reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xf1983f4f xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1a74faf irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xf1a93486 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1cf60dd usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xf1efb5e3 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xf1fae4fe regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf20ed4ba usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xf2196393 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xf21bf21b dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf221a632 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xf226a313 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xf22d257a ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf254b86d wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2af0c9f kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xf2c1bb0b fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xf2ce07c6 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xf2cfa4c3 phy_pm_runtime_get +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 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf345fbb8 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xf36c589d devm_hwrng_register +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 0xf3be3616 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xf3db4c18 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xf3e035ad crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xf3e3ee22 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf3eee60d ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf40d5b12 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0xf413c9d1 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xf4318d36 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xf493a2ed inet_csk_update_pmtu +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 0xf4bcef2b ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf4da3546 kvmppc_init_lpid +EXPORT_SYMBOL_GPL vmlinux 0xf4dd991e pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xf4e5c837 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xf4e85a3d nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xf4f480b1 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf5082fb8 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +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 0xf5604504 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xf5678227 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf57bd830 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xf580c585 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xf58d1895 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xf59e3a62 dev_coredumpm +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 0xf5f323b0 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xf624f8d8 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xf683e6d3 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xf68bbb47 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xf68f0654 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xf6900188 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf6a92dc1 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xf6bbd7d5 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xf6be85c3 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6dea7e5 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xf6dfa766 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6fb6b32 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xf7278fa1 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf7447597 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf75a5d55 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xf773215c driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf77a8bb0 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xf77cff44 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xf78b5550 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xf799aa79 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xf7a849fe devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xf7af4df5 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7d3c78f find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xf7d88843 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf7e86ea8 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf8139c4d kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8307631 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xf84063f7 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xf84c6a8b pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xf866eb88 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf869a57c posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf890a2d4 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf90782ed __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xf911053a of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xf91eac65 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf92f62a9 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xf9316cf8 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf9335de6 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xf952493f ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf95dde91 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xf95e0b1a xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xf97fa27f regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xf97fd67e ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf99fa9b5 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a2d35b tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xf9ae9adf rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf9b95071 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xf9c2471f rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9e0e7fe of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xf9e812d0 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xf9f877a8 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xfa17b79c disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa3c2aef sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xfa6590b9 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa70756b dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xfa7bd497 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xfa8c04ed __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfaaffc57 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xfab5b8d1 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfad8f8a8 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xfb01e2ce i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb44fa3d usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xfb478227 wm8350_reg_read +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 0xfb84bb13 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xfbab0ec2 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc7fe6c bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xfbd02813 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc15a97e kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0xfc2fcfa1 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xfc59c0f6 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xfc63cacd do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xfc9d6b31 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xfca37152 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfca970fc dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xfcafb16e inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xfcf15e03 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xfd364fe0 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xfd3adca1 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfdbe8d4e elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfdcc8137 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0xfdd9e083 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xfdf865a2 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xfdfb2510 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfdfc5a78 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfe2fac43 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xfe3c2e81 cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0xfe3fccc4 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xfe5c924a devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xfe7d3b69 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xfe92bedb driver_find +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9c6229 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xfea4d414 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xfebfeddd __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +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 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff5a6c7c of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff5c55bd crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xff6229b6 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff6a7cb3 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xff6c45d2 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xff7e043f ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xff84bcbd mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xff8862d7 rh_get_stats +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 0xffc174c3 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xffd17d6d usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xffd3ac92 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xffd9dad0 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xffdc8cb6 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xffe4d1c2 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xffe66730 wm831x_bulk_read only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/powerpc/powerpc-e500mc.compiler +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/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-4.4.0.orig/debian.master/abi/4.4.0-97.120/powerpc/powerpc-e500mc.modules +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/powerpc/powerpc-e500mc.modules @@ -0,0 +1,4333 @@ +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_mid +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +BusLogic +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ac97_bus +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +aha152x_cs +ahci +ahci_ceva +ahci_platform +ahci_qoriq +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-ircc +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am53c974 +ambassador +amc6821 +amd +amd5536udc +amd8111e +amdgpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-keypad +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcma-hcd +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpck6 +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +caam +caam_jr +caamalg +caamhash +caamrng +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chipreg +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +clk-cdce706 +clk-cdce925 +clk-max77686 +clk-max77802 +clk-palmas +clk-pwm +clk-rk808 +clk-s2mps11 +clk-si514 +clk-si5351 +clk-si570 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_pcmcia +comedi_test +comedi_usb +comm +configfs +contec_pci_dio +cordic +core +cp210x +cpia2 +cpm_uart +cpsw_ale +cpu-notifier-error-inject +cramfs +crc-ccitt +crc-itu-t +crc32 +crc7 +crc8 +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +csiostor +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_cs +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9601 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +donauboe +dp83848 +dp83867 +dpt_i2o +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtl1_cs +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc3 +dwc3-pci +dwc_eth_qos +dwmac-generic +dwmac-ipq806x +dwmac-lpc18xx +dwmac-meson +dwmac-rk +dwmac-socfpga +dwmac-sti +dwmac-sunxi +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +eata +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +ehset +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f75375s +f81232 +fakelb +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fl512 +flexcan +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fs_enet +fsa9480 +fscache +fsl-corenet-cf +fsl-diu-fb +fsl-edma +fsl_elbc_nand +fsl_hypervisor +fsl_ifc_nand +fsl_lpuart +fsl_pq_mdio +fsl_qe_udc +fsl_upm +fsl_usb2_udc +fsldma +ft6236 +ftdi-elan +ftdi_sio +ftl +fujitsu_ts +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcm +gdmtty +gdmulte +gdmwm +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +gf128mul +gf2k +gfs2 +ghash-generic +gianfar_driver +gianfar_ptp +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-generic +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp100 +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-cbus-gpio +i2c-cpm +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mpc +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-reg +i2c-nforce2 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-rk3x +i2c-robotfuzz-osif +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i40e +i40evf +i5k_amb +i6300esb +i740fb +i82092 +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +icp_multi +icplus +ics932s401 +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +ims-pcu +imx074 +imx6ul_tsc +imx_thermal +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +kafs +kalmia +kaweth +kbic +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks0127 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvaser_usb +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +ll_temac +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac_hid +macb +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77686 +max77693 +max77693-haptic +max77693_charger +max77802 +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +md5-ppc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +mf6x4 +mga +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +mii-bitbang +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpc85xx_edac +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mv643xx_eth +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_common +ni_labpc_cs +ni_labpc_isadma +ni_labpc_pci +ni_mio_cs +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicstar +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsc-ircc +nsp32 +nsp_cs +ntb +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvidiafb +nvme +nvmem_core +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +ofpart +old_belkin-sir +omap4-keypad +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +pandora_bl +panel +panel-lg-lg4573 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-simple +parade-ps8622 +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pc300too +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmcia +pcmcia_core +pcmcia_rsrc +pcmciamtd +pcmda12 +pcmmio +pcmuio +pcnet32 +pcnet_cs +pcrypt +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +physmap_of +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +ps2mult +psmouse +psnap +pt +ptp +pulsedlight-lidar-lite-v2 +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-beeper +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qcaspi +qcaux +qcom-spmi-iadc +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qoriq-cpufreq +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rionet +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-generic +rtc-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max77686 +rtc-max77802 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtc_cmos_setup +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20_generic +samsung-keypad +samsung-sxgbe +sata_fsl +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_probe +sdhci +sdhci-of-arasan +sdhci-of-at91 +sdhci-of-esdhc +sdhci-of-hlwd +sdhci-pci +sdhci-pltfm +sdhci_f_sdh30 +sdio_uart +sdricoh_cs +sedlbauer_cs +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sgy_cts1000 +sh_veu +sha1-powerpc +shark2 +shpchp +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sir-dev +sis +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcm-oss +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb-common +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-usx2y +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-vxpocket +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +soundcore +sp2 +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-nor +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +svgalib +sx8 +sx8654 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +sysv +t1pci +t5403 +talitos +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-hexdump +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +thmc50 +thunderbolt +ti-adc081c +ti-adc128s052 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +uPD98402 +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udc-xilinx +udf +udl +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_fsl_elbc_gpcm +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vcan +vcnl4000 +ves1820 +ves1x93 +veth +vf610_adc +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-ircc +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocodec +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_ca91cx42 +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vsock +vsxxxaa +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83781d +w83791d +w83792d +w83793 +w83795 +w83977af_ir +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +windfarm_core +wire +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wl3501_cs +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_emaclite +xilinx_ps2 +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +zatm +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zynq-fpga only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/powerpc/powerpc-smp +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/powerpc/powerpc-smp @@ -0,0 +1,17112 @@ +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 0x4eaa8874 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x3ca70401 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x1125b0b3 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xc720bfca 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 0x3599571e pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x3c7b6f35 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x4a5c32d3 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x4bf0e882 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x78dbdb9f paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xae97cef8 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb436deff pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xbb4b0017 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xc8887360 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xdaec4596 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xdb00f24f pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xee537b94 pi_read_regr +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x12e7a2f6 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 0x313015c7 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4228ea0c 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 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x88cd3487 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 0xcfbe2cfa 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 0xed98f539 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 0x511d38ef st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xae1b666a st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xefb48a07 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf9de080a st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x63449a3b xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd52792c0 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xf2e039f1 xillybus_endpoint_discovery +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 0x51f01037 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0ff769b2 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16deac86 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x18c45a92 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1f411c41 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x28fbfbbc fw_core_handle_bus_reset +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 0x5a688257 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5b59f690 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6f538424 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7aef2193 fw_iso_context_queue +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 0x8987e200 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8aa2e5f1 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8b5ca8fd fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90f8b7e1 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x91657724 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa06ec732 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb7a9a5fd fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbd7c2960 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc55e0096 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xce1e9cec fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd503084e fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe98830c3 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xed88a5dc fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf8989f85 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfd986d7c fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xffaa3c71 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xffff7019 fw_send_request +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 0x0080a7c2 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x010d6983 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x022563e0 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02415782 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0273d8b0 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x028478e5 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0445464f drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x045022c8 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x060edec4 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070c25f5 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x084bcdf1 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08730dc5 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x091e2e36 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x099108a3 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a4d5672 drm_mode_crtc_set_gamma_size +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 0x0bc52472 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0db8d43e drm_debugfs_remove_files +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 0x113ba96e drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11d516d2 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13ffb72d drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14b787e0 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14e3cb8e drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14f80d4f drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15b208a4 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d9ca80 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1763ebf1 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1819b571 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18724e70 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a404b71 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a649f35 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d2e964c drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f8b2cf2 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x207f34ed drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2214db2e drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x224350a5 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22688db9 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22a34475 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x235c7dac drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24db18e5 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26088c20 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26ccfebf drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27756cd1 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27f20d46 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28a25618 drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x295bb7aa drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b1e9462 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b5e1728 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b7ce355 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c1e8239 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c25e801 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ce050b3 drm_gem_handle_delete +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 0x2ec89ddc drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30147724 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30b3d599 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30d5f11a drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30fb93da drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x339ddb11 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3482a5ae drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3633599a drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3797f484 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37c57777 drm_agp_bind +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 0x3906279f drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x392148c8 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39c6a4ed drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a10905e drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a9c43db drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3aef14e7 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3afb2013 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cac5c9e drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d6d318b drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d8283c8 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e1dd560 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40a8f81d drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40b6c39a drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x411c52f9 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4211b7c6 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4248ba81 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4369f458 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x453bc171 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45e154d2 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45ee7cfb drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4838bb99 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4883644b drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49ece1f4 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a6df386 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ab3a177 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d055dbc drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d3038d2 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d646351 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e13401f drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e20a207 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2a35a5 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fb699d2 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50f24f23 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52682d5e drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53b8dd51 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54076701 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x564e5dc9 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57d1b7e1 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58c80250 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59dc2b1b drm_plane_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 0x5a9647cf drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5be037b5 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c5d35ba drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c5fa815 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c7fff05 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c845293 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cf50d3a drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dde90de drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e36b5ea drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60fb56d2 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61fe673a drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6224f06b drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62aeadb6 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6427b37a drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6434733e drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6479b047 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x653678b6 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65419409 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65f453f7 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66177cf7 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66c314ed drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66c6bda4 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6827b4fe drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6971e683 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a5a5902 drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b35f5e7 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c06c9ed drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ea3459e drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f8d1e97 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f9beec1 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x702ef7fa drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70ada4ea drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70f781cf drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71046d98 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71a3227b drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7356bb25 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73f820ba drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74723790 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74cd6cbb drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75012ab7 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x752f9b95 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x760856f1 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76ce53d0 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x773c2d19 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77f7ae50 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x782a4ccc drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a4c8118 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b002e75 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d144342 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d3de731 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d56227f drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dc5a537 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x800342b1 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80e467c5 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x810e76c6 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8170b740 drm_panel_attach +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 0x83f1dfa8 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86335d7e drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86df4e91 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x872fb5e0 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87a02b36 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87d643f8 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x886b5b03 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8920989f drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c18f365 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c45ff3c drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d49d8ce drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dd27309 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ed3602e drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f4a20d2 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f83c6a3 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91ecd7c1 drm_mode_connector_update_edid_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 0x96338b3f drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x978930e3 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9807a3e7 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x988c3433 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98cd7848 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9977a051 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99c5831d drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a7b57ae drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bb0ad63 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bfccf61 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c05b2cf drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c81de88 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d4b54bd drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e5d981b drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ecaa072 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f1b670a drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0fbabe9 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1e2069f drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1ff28ba drm_atomic_state_default_release +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 0xa3e5b401 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3f04e88 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5004695 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa572e00a drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa86c2b43 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa97af4cc drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabea8d81 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac720169 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae2503e2 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae2a58ac drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf400479 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11b1bd4 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1dcc8d6 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1ec6d8b drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb27d4295 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6ce1301 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb712840a drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7221d25 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8e7853e drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8eb8533 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb972f549 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba427b84 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbac4c0d4 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd439d33 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe0cefac drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe34db0f drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe43a3e1 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe97a7f3 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf3f6235 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1ffe9be drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc43f6cc0 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4d2dd0f drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc568e6e8 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc801501b drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8eeb8cc drm_master_put +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 0xcbbed217 drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc79aae9 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf0c0df4 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf52f92a drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf6a412e drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd21ac113 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd36d6472 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5ac23e4 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6242bf9 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd714a3fc drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd74550b6 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8a89c0b drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9c4a3e8 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9ea4adf drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda535ab6 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb222279 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb8d660c drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc48d151 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd77d92d drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdef179d9 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe02b8d2e drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe18d3ebd drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3de91e1 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe64990e4 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6eaac45 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7012375 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8435b9c drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8c49751 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9bcbaef drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea829f77 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb59e12c drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb75ccac drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb87c5ef drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf055773f drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0cb494f drm_connector_init +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 0xf21d8853 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf306b401 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3372d40 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3eee9bf drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf46adef4 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf542b912 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf67a750a drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6f0948a drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf73d1d5d drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7840f41 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8813947 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf951d8c2 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfafecdd4 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbc22b11 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc734ac5 drm_modeset_lock_all +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 0xfed4812e drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffa5e43b drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01aa66ff drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02468151 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x027902f5 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x043297ce drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05812393 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05b3db49 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05f740d5 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a0c64a drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07db318d drm_dp_mst_reset_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 0x0c7ac6bc drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x110839db drm_dp_mst_get_edid +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 0x1b867d74 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e69d664 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1edbf57f drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20701472 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x250eb271 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2568326c drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25851f28 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c59d893 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ccb54e6 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e9b3d96 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x304699fd drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3078ad75 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33628c9e 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 0x37089891 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x378b18f2 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38ee8d41 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39957b03 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39e996a7 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b2af917 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d5a51a0 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3da2de6a drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4095d278 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x411c6e3e drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x432ae289 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x442bfb55 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44ce1688 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x457c7e9c drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4711172a drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b957ba2 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4df1b6eb drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e4469d2 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ec0176a drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51103ecb drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x539bf86e drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55ebd5b1 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56d56f24 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5944edc1 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ae80bf5 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ca269ff drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d5d5ab2 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e004518 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65458e0f drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x678a16ab drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68cce050 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68f8227f drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x694943aa drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a0ab25d drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a570d99 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x715ea1b6 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71a4f1c8 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71f305af drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x730004cb drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73de7ebd drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74331e78 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77232289 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7afbeba7 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c711a21 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d01a92f drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d38d884 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ee3b18d drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8005211e drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8097b28d drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8575cef6 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8807caff drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x884cf6a9 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88ef4a20 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8965e032 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c1123f0 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d08abc1 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f8e3320 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91de70f3 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92aa3d1c drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x934d8e90 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95205430 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9601e249 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x973fef1b drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9832addf drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x986d28ef drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x992095ab drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bbee45a __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c954ce4 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dfa84e8 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e5abcca drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e90dd58 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa06d720b drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa221b0a6 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa36bc4cc drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47770ac drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4b49698 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa64e6e06 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 0xa79b70d3 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa702d54 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac26eec2 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae417896 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf5dae40 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb03e06b0 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0985ec5 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2348101 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3d34f09 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6637591 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb88a17ad drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9386fae drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9d8c8c6 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0c18f0b drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1ca1db8 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2b8a57d drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc34da76b drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc48d9a5d drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc962f6b6 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc96d1c4a drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9c290ba drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb49b3d0 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbe7d1bf drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd690c95 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd62f860f drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb0659bc drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc1329ed drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdea12f73 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf4a368c __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1f9a48c drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe66e150e drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8986468 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb477507 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec60bfa9 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed01a1e5 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1dc46c9 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf247b00a drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf79bc4ab drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8163833 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb75bc06 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb8db6e6 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0126ef38 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0413a0e0 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0cc59aba ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0df73285 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x163429ad ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18112f4b ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18b0ad94 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x345de1e9 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x372a87b5 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37b7acf8 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3caa3fdc ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3fd19606 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42b5ec11 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x469ea6ad ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4760395e ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49301183 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56892d75 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56cf2c73 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5744b4f8 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5786cee5 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5868b9b2 ttm_agp_tt_unpopulate +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 0x60ad3532 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62b96091 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64aaf5a9 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x656345f8 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66308871 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d84c312 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x76fac3d5 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x778ebf17 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7791724f ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e135aa5 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x816db7af ttm_bo_del_sub_from_lru +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 0x8caab4d5 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90bebbe1 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x97e12c8b 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 0x9a1fc614 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa42093b9 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa549eadf ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5958ddd ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab3326d4 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae1a5f8f ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb66e0e7f ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb11c145 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0553659 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2d76a8d ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcabbf7f9 ttm_tt_fini +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 0xdcee9ecc ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf4e3eef ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5b83b05 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5ed2c13 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe62c6da7 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe72fd41a ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef867213 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf44bf0f0 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8956d16 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe3db2b2 ttm_tt_bind +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 0x249bd47a 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 0x40d0bbcb devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5db40de4 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x742395aa iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc83f4a9a devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x02fd0662 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x1879c0f0 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4c11a0eb hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4f529a48 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x79a4c95e hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x949ea0c6 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 0x371828c7 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x773362db hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xa7c4dec4 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xbb88dca3 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 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 0x6d5daf52 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x789e48e2 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x80073daf iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x8d0e5b2c iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x942bdf67 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x95d36ea3 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xa7bcb103 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xb7887461 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xc9bb6cb4 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xdb018c97 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xde63d244 iio_read_const_attr +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-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 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 0x3f3c34d8 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xb149a314 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xbd14854a rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xcabcca45 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0fe35d1a ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x10b8924f ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1d6f827c ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x257a770d ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3486431d ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x39498c91 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x633143e7 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x696d4559 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7c6f81d4 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x944db0f8 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9a6f747c ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9aa18bed cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9cee7256 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaa8774dc ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbfcce30e ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc96f3eb7 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe0a49314 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe81385fc ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09e0338e ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x118050fd ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1328ebab ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x190cb61d ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ccea524 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1db7f808 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dbee5b1 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ed721c4 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f42d309 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24456fab ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24b4504f ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25cd4304 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b0e4770 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e2b555e ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e66e29b ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3298bc57 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x395e3bfb ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ab5c1a7 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d742e4e ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d8e751d ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dce711f ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ff44101 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x419a78cf ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x433c95c4 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f4e5879 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x518c5a8d ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x524c9380 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54225e17 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x543b1376 ib_query_qp +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 0x587385b4 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d527c6a ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d8531ba ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e0489f1 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64b1a0bf ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f5ce4a5 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71126947 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73afea67 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73c174af ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x758b0171 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77fa810d ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7aa5a29c ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b84a2c5 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b880f45 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8072f03d ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8243a7b5 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x829bafcf ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82d1afb4 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8313629b ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x853b5aa4 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d0380db ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d95523f ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92cf4bd4 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93b6aafd ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x968ecaf1 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa46841a4 ib_dispatch_event +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 0xac4bd80a ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadea8cd1 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb01c8c4e ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0a62ab4 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4cc99cb ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb763031e ib_register_device +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 0xba480756 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbaa2d785 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbf165a2 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe545fad ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc10f2f16 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2586a3c ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc36cff77 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6f8fbaf ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8a41213 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd02e597e ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0ab71b4 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4e60d34 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2e17674 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3f22b33 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe77b3f72 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea5426bc ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xededf494 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf386a779 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9485f01 ib_dereg_mr +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_core 0xfcad238e ib_register_client +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 0x0a683edb ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x129623f7 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1f8712af ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1fedb8c6 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x3c06f2b5 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x4c8081e0 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa3fdc3a9 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc33fc34b ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf0c1f394 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2df1e67c 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 0xb7974324 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 0x03c3f692 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0592a09f iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x15618a26 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x19bee6db iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x32d9cfa4 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x386fc98e iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5b358615 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5c318d7f iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5c6e1b1b 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 0x710f176b iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x814307ea iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8b4213ae iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99c4c39a iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb394e40e iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc13a4c3b iwpm_add_and_query_mapping_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 0x160e205b rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x17749287 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x385b1be4 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x44a15588 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x499557de rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x613ed36e rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x615ecbdb rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6693db8e rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6e03c236 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f7b3095 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8a81396c rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x93b1096b rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa71c8fca rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa971608b rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa7fc055 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xac63d045 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xac934ba8 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb76df186 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb9187136 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc1c58c27 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc7b86e04 rdma_reject +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 0x12c9b627 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x67f2adf8 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xa38ec9d5 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xc2637be9 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xc89a1083 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x77dd7d14 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x10d0d493 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x4ffbe567 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xf33c9dbb 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 0xc2bc8fe8 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x220a2015 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x345e69da sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x533222d9 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x57a5b707 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x85c2116a sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xbf24ea6b sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x558d43de ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xa9410156 ad7879_pm_ops +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0d712336 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1a2892f4 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x68d2271e capi_ctr_suspend_output +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 0x933ae874 capi_ctr_ready +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 0xb4e5b78e capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbab08673 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 0xd038ec5d capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd722efc7 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd948bbaa detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe1732ffe capi_ctr_down +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 0x045d597f b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x11717d20 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1bd3ba8b b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3503da9f b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x540b197e b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x54699cd5 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5b18c93b b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x611b923e b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x83be4377 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x88753152 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd66bc06d b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe25bf1e2 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xed336657 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf25f4cad b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf8c444a4 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x1bdf631d b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2c03199b b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x5405b148 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x5ea53663 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x5f1283ff b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa0c3cb0e b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xae746d52 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc1ae964d b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf0fe903b 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 0x1bb78b70 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x6f3f6c18 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x96232018 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf56d8f23 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x05385184 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xff2d6893 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 0xe11db247 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 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x4007f424 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x7e2f1d6c isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x8af8f9b0 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xa4226e51 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xe3e34611 isac_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x7ed2c9cc isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x8928c868 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xe925f447 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 0x104746c8 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 0x25c79596 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x289d09ea mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2be955c4 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2ca0ac46 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x32b5528d recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3df840b3 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x42b416f8 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x444530bf mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x48295827 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x548a0bad mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x552377ed mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x65064bd9 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x68b73449 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6ba42822 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x75d86835 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9854b237 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9cca8707 mISDN_clear_bchannel +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 0xd422a6e7 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd87eebac get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe2301009 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe9225bf3 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xef781b59 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 0x0c4d0956 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x370cc152 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x53687257 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x65d6655b closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc0b9ef00 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc689d83c closure_wait +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 0x18ca2b2a dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x38863934 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x3adbd3d9 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xf881d63d dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x13ca3e11 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7d34f6a3 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa9dddc4b dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xaadf08d1 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb96d9bc4 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf85f7c1c dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0xefc7a38b raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0040c1c3 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x034ca832 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x27b1507f flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x480a816e flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4c8658e1 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x61f58fa2 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6b264191 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb19f8d91 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb96d354b flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcdfa4835 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd17ef41d flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xeb9ced1c flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xff1d772a flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/cx2341x 0x13492a42 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 0x37a200a3 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8e47ad72 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 0xea50ec1e cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x0c6517c7 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x43a4ee0c tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0xe48fc00d tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x19591134 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x22b68f85 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x22d6ce4a dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x25e2b45c dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28ee2ae8 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x329d9866 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32cbf895 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x332ec980 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ad12a04 dvb_dmx_swfilter_raw +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 0x567bee37 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x56bac91f dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x57064a04 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x64f14787 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x65886421 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x66e800b8 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6aa0d58f dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6f5eb0f8 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7052d43f dvb_net_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 0x7b9de4dd dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7ba5d8bd dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8a809f0f dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e47dce5 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x936af6f4 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa276ef61 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa3b06ff4 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa449073f dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xafffd5e2 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbecb97d8 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc05c6e8b dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3cd8c1a dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf137a53 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd2fed67a dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb576668 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdd9546d6 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf4e34986 dvb_dmx_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 0x98730074 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xb3506774 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xd94a75a6 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1f89cf27 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2404fc03 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x36126f7e au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7385beec au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x84ec94dc au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x87ea5223 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x922c70e4 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb06eac34 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf8439dd6 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xe0553e65 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xf8ff9920 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x2b6a3562 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xe7f53b56 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xe4f3f9be cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x7e55f267 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xcc917560 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x845fc338 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x943f7a6e cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xe7d28ae9 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xfcabd208 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x85231bbd cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x1a931e1c cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xe28247b0 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xf0d074a8 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2b225331 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x39686f9c dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x430a6bab dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7c237bab dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x956f3f19 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x05d2ffd3 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x10e27398 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1c14376f dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x34be9760 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4878269a dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5e37d0d8 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x756a7b20 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8b0e9f52 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8e7ac3be dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x93f7b3ef dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc81482ea dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd9657a5d dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdf5d2043 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xed22f160 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfc1d887a dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x9c1e6f58 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x066f0095 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3c54dc0d dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6d7eb66a dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x708cbe40 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb75a34c0 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xdb2158a5 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x2a735a18 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x53da59e2 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe7ebfc8c dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xef7f2d62 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x273d844b dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x794b22ff 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 0xbd847224 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x9d12fb82 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x0260fdc7 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x8ce7a250 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x40c35cc6 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xf066c808 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x8bc24e0d horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xc250dd82 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x8a1ec31e isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x0b65f13b isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x3d91615c itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xbdd81f2c ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x0f78fb4c l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x10b9f9cc lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x33474e3d lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xa6896c67 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x02458090 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xbc761a76 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x913193e4 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xda85a3a7 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xf0bd2e7f lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x37a9fb99 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x752bbd94 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xd8a0fb39 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xec386eea m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xff49f699 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xa07c4a42 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xef673f5f mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xf759ede8 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x920ae527 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xab1f0fe8 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x29d41512 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x1cf423e4 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x201f4e66 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x83b100e0 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x6b2d34e9 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xfc917a45 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x4fe55a33 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x6ab8a1d7 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x58a25989 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x3cc128b7 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x6f74ea76 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xebc8f538 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x9789e161 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x38bee4db stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xc900d9af stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x636d9681 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xc37b6e36 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x9ca32e3b stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x9ffa1621 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x55b9930f stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xcb12d19c stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x3d85b496 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x69162c8d stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xa2c51fbb tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xc658496d tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x7c4ec659 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x5ecf8b66 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x6ada230e tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x333875bf tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xca96f393 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x46d0353e tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x9b886349 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xacdcebf5 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x019ba984 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x5c437ca0 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x03eeba29 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xa1858ab5 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xf6bcd052 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x70a96da6 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x5539cbd8 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x13d3df97 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x29ec46a9 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5b468914 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x66e131b2 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa3ab86a6 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xdcbd149d flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe78f295b flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0c44b5a1 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x37f4f1fe bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x6de808f2 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xae513c35 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x066dde81 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x3a965940 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 0xccf3a9cd bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x34c646bf dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x354a986e dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7b415721 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8781f409 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x964b4eed write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa3ebccba dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc1955b48 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xca1044e8 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe34be068 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xca8319c3 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0ab39d40 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4e3134f4 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x61f58f05 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x81d8b376 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x94aa4b10 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 0xc57f0097 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 0x06e4be62 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x18de9fea cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3388a444 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4b3fcd3e cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x79ac1fe2 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x93616f75 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xaf33a524 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x93056b30 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xf2b8e762 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1d85705f cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3a85227c cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8d59d062 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb62cb176 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2b7f6a2f cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5479ca4c cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6295464a cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x82e422a7 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xacb8ebb1 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd26f75c9 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe8a2d7a1 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x03e30ea2 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x070423e7 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0827692f cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1a24cc3d cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4dbe16bb cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5ed03335 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6322cc49 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x63d1290f cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6a85fd12 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7462974c cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x82803e27 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x864b4f3b cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x89fab4dd cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8b479b5e cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x93ee99a1 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa35d49b7 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaf47791b cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd8f38ae6 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xda5611a7 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdbeffd70 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0fc948cf ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x115e1c8b ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x183eaf0b ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1b19d96f ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x29ee7734 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2fb12e24 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x58ff1567 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6cb0bbd0 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa21cd226 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xacea0dae ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb23189c3 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb3ef4e68 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb5401c45 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe55263ed ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe80150b9 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe9759f8e ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xff0352e2 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x00c42816 saa7134_pgtable_alloc +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 0x12f26528 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x29548ce3 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x32a236a3 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3303da18 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x77e5e5b8 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f61f87e saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa7c66a42 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaa35dcf6 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb1714648 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbaaf31b7 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf483ec08 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xced50871 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x1cde186a videocodec_attach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xb2e29a28 videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xb6b7bc40 videocodec_unregister +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xb9b1b3b5 videocodec_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x2b820826 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x6c6d7e51 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x718cac18 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x7584641d soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xaf799a73 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xcde21238 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xd523830b 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 0x21cc724e snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5077231e snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x8a275ee2 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb6a051db snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xbcc014a0 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xbf8ade1b snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc5582eea snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x1bca5752 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3c2b3437 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x43daaf80 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x76c9aa35 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8f996350 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb659ea31 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xbb07073d lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xee852f49 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/rc-core 0x5abb3a32 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xfc6a2af2 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xd4aac288 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x8efa63cf fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x1767cbd6 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x5efdca01 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x8f7d9f4a fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x0fefbbb8 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xd668139b mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x6dde040f mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x5596b32a mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xf4386aff mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x319d446f mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x8d9769d5 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xaca0ac0f 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 0x66905456 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xbf0b5ece xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xc3cbee30 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x659b283c cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x957990f0 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x017956b0 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0d792b99 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x12bde0f7 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x75fa5ea4 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7bc5e9bd dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7fd81e7a dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8c36a7f7 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x970f8826 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9c85748e dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x27e2c35e dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x46853602 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa5a78039 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa9ea1e90 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xacdf3611 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd6f2b341 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf0bcd1a5 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 0x5c1511cf 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 0x0bf515d2 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x31b86152 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x38791b74 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x47259189 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x98a80d82 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9a88f34e dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9fb7e3bb dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa50746f8 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb09b9d99 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 0xbbaedbd3 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe0603305 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x3a490354 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xee93553c em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0484bf35 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0d9a7d9c go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3275f3fc go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x59e825ff go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5fd555c6 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x67b2d9bc go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb30929dc go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcbc4bb0d go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfcd4dae0 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x042f5755 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x18871f15 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x33003f4e gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5307c81f gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x676a5563 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x85f35fe5 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb410c5dd gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf51938dd gspca_resume +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x550c520f tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xad696dc8 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xb44ffabb tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xd03b9f84 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xfbfc9e4e 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 0x53df1621 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5a380136 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xd349d73c v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x22a8c296 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x6d0c22ba videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x6e3d7560 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x813de059 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xda9a517c videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xe9da6434 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x2495f0ab vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xf9e8bc48 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x1f06c02b vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x3012213a vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x350ff892 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x5fe2c51d vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xba8801ae vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xf0e58331 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 0x41ee8be1 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x018756ee v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0d68ff5f v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1231d22a v4l2_s_ctrl +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 0x14965e1c __v4l2_ctrl_s_ctrl_int64 +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 0x1fb5a125 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x21d28fe9 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x245e0510 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x250dbee7 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2b78bcb6 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ce2969e v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e3ec238 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30b493ff __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31bd7044 v4l2_of_parse_endpoint +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 0x3bd74284 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3d1f929a v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ffb9541 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4569539f v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4597e370 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4623f1e8 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4775f473 v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48acc96b video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ae1da75 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b93da6d v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c5fa008 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52afcb17 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52fe4229 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b0e1f7d __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ba74125 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d068113 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60b3284f v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6203f9ea v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x64f4615b v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x67b5ac46 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6885528d v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6fd8228b v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7174ef1d v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7694a6c2 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x797eecd7 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b17f91b video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7de6bec7 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80ec9f7c v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x857f13c2 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8b662167 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f941b2a v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9852ca1d v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa1b37e55 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5636d39 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb119fc25 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb2d75a5e v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6bb1134 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb9f28216 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba4b1d17 v4l2_ctrl_activate +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 0xc5b960ce v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5f229c1 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc70786df v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc9e7d928 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb4b8039 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xccdd1e64 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce24754b v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd45d4caa v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb36a543 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdcb42698 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5625049 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf59e3aa7 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6e31a2e v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7359679 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7ffb2bc v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfa79259a v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb479bb6 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb93fd06 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe7ae7cb v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1620ff99 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2167f609 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x25738eb6 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x28855d15 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5b5c17c8 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7bae83dc memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x84aee9e4 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8c9b5da4 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb1c8a285 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb6fa294a memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb9306bb7 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb952809a memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd066f5d9 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe9b35cda memstick_free_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x254d5bf0 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2e33aa43 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3277be61 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x369d343b mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x46fd9194 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4802a1f2 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5cfc4fb5 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5eb5ad2f mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x651814a7 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x68b64b64 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6dc8b3c8 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6e48780f mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x78718939 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x882388be mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x939b3962 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x940f32a7 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981dc6b3 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa539264c mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa5baa62b mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb6ebea79 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb82c7f58 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbf34798f mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc3e09af9 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +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 0xde973e2d mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeaf49a72 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeb7c3e99 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xefc07f02 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf466389f mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfca307b3 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x29b9b89e mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2a78d5cc mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3c0e3b75 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4b47d700 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5a7c95f8 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x689d189f mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7e191d51 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x81140b1e mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x84219696 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8cb1c3cb mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x905a9803 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x943a5549 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9d475cbb mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9d68d40c mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9e7df002 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa1dec8a5 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa2c5557a mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa5de8ce8 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xad7cafdc mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb8d77f0e mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbe16c336 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbed4a472 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc853aaef mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcecf7d2d mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd3376c3d mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdd0350f8 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf94816c1 mptscsih_show_info +EXPORT_SYMBOL drivers/mfd/dln2 0x04d8b3e2 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x096326fd dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x71c81059 dln2_transfer +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 0x13da6893 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0x1cc905a2 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x06e79cd3 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x0e1baee0 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x14b74def tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x25cf16a8 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x42edb4cf tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x54176ecc tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x5ddcf85b tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x98ce777a tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x9b05f9f0 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x9c736f9c tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa11001d5 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xacd2576b tifm_unregister_driver +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xa1095ef8 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 0x96870e9c mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xddbed1cc mtd_concat_destroy +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 0x11a401b8 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x26ddd1b3 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4d5a8c9e arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5121e72e arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x69ddad9c arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x724d3c7f arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x82c9f404 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9329428d arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa09b1a5b alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc8e8c235 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x80d7601a com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x9a08173a com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc0bea029 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x075f9691 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x546a9dd5 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5fc9b6fc ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8983ab1c ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8f1308ca ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x93baafe3 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x99860e4b ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9a486813 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa48dd7c0 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xae692b1f ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xe59fe15a bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x77732526 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0735ed6b cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1cb8c08e t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x39128a46 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x422f3469 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x423c8f40 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x434db55f cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4dd3c9be cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x660879d6 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7128deec cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x794e1983 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7dcf578f cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x849903e4 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x883a5b54 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcf108ff2 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xeae30221 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf3a3ba10 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x03a8ee7d cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0a959a39 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d505ec6 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1e360889 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x28524ca4 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2d376e50 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3e271399 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3ec1b82a cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47209331 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b768fbf cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57eb0146 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5db5e2e0 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ce3ad3b cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86dddf6c cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8e7604e7 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8fd56690 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x975fd6f8 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9874d089 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9cbd93f8 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d305c59 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa7263281 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa80ea99a t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaafbf9f7 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb8deb474 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcce13d55 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd3aff6e7 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd5990cb6 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda2d3126 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe2e49e13 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe4990a05 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe84c7692 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe89b1ce6 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeccd02d0 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf5346df5 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0db75d73 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x51edbbfe vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x556eb196 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8c344acf vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa9fcb78c vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xedb66eb2 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x2b0ab4bb 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 0xc002dc46 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x046fc5bb mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e46e7cb mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b47bd30 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x226ae93b mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22f49aec mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3399fe58 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ea4416e mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f47601d mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49f2dab0 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b56e5a0 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c660aeb mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e9aa67b mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61c29e9a mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x677355ce mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77ee7bc0 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85348162 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87cce9b8 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94033691 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97a337a2 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3afad49 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa63a1bae mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa949768a mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9b65fde mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9ea5cfa mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6b8d4a1 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8287c5e set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdba2959 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc21401ba mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3ec6dc6 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcac5f93c get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb969c7a mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb3b15e1 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7f68987 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb1d3d8d mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeccc96a7 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9fbe06f set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb4ce17b mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfded3d70 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x023551d5 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x081dbc60 mlx5_core_alloc_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 0x0a4665f1 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0abe6e71 mlx5_modify_nic_vport_mac_address +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 0x1a6a29c8 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f6931f3 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39198f5f mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4403ce9e mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x448f25f2 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46ff235d mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48358ce4 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d9b308c mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c23981a mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6223875f mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x653ffb6b mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69a257f6 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7797e612 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cbef80a mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d1953b6 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f21b3c7 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x904d3125 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa016c85c mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4c36811 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5bc7a10 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa790e722 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacec1b95 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0a1bb57 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4d04954 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb51c46e9 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb581dc07 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcf02a88 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd413b39 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd06832b4 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8a3d990 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 0xe7a75ef9 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf93c38d7 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa1897bc 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 0xff9a374f mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1fb917a9 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x56410d01 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 0x7c219b5d 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 0x8ed672ca mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x92b6a728 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7966f5c 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 0xea114e64 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 0x273592a1 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 0x250a892c hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5be4222c hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x754dda3e hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa9ae7cd2 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xda40c7bc hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x86ee5449 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa46070f7 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc22bd88b sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xca8da5d8 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xce2cf790 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd4cb2cff sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xdaecbeb5 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xddba834e sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe028ec9f irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe20d1f86 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 0x47616237 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x4825f234 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x4bd613f6 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x8a22736c generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xc330ae64 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xcd2226d0 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xe8e2dcca mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xf42e625d mii_check_media +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x459f1920 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x661797b7 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x082d63cd xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x0b4d6ec5 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xa963ffbe xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/vitesse 0xab92dbfc vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x1c8cd4d8 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x908246d2 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xaa7bea06 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xc10203cf sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x20155885 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x34ef63a5 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x59c3e5ba team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x75989939 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xa540a34a team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xa95dbb0d team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xd8ce83b1 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xdee5b6c2 team_mode_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x4c83a536 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x721d07d6 cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0x8338189a usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x92966e97 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1cffdda0 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x27a3f903 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3caee300 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4bf550d5 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x74cfb62e alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x90a0114d hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x95b45c17 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xadaf5eba detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xddfc7f31 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xed57a4aa unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfc5b4878 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x096a26fb i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x74d7047c reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xc513f798 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xdfa51a9d stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1716829d ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x21c233c4 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2c5a1010 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3c2d7583 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x51a437d5 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5cf48c60 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6197ad74 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x838b895f ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9027132f ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb8a3d495 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc30fef70 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc833a4bd 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 0x19fc3278 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x28de3236 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2b9d1c01 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x360d992a ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3df04fb0 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6155d316 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x740e37a4 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x80586852 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x95f98a7f ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa954abb0 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbb53e365 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf2497540 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf5daf132 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf99e398b ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xff64f40e ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x04f66a94 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x16275a9d ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4082a8af ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7821e746 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8de957e4 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa893609c ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xaff2401b ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc80ae7a7 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xeebf6184 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xeee8a64c ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfb99fe97 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0113fbd4 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x01dba122 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a390b25 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1ca1ea7e ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x27c651a5 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 0x44972f58 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4806f8ed ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x489f190e ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x580a7891 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5844cf68 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x82793436 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x85db9b3f ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x86d300c7 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8ac87f5b ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9a53f889 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9f81ded4 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa2866caa ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa596bf32 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb50154e2 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbb1b4700 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc59d39ec ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcfc4ddf8 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 0xfb2ca76b ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0139e7eb ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0166cef3 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05aa2b67 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x082aa9f2 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08586b54 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0aa3c24c ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b3c40f5 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x100e99e1 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19fe1948 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e274535 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2004f6c5 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2227f865 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x223ba57b ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c1dcd3b ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e750ca7 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31cc0a0f ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35ecc3df ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36952fd7 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36fd38af ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3dc76c8d ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e130942 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e439bb1 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ef2f0e2 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4141cc53 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4702eab6 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4724219c ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x474c399e ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4904cb11 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49206f67 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x497d0207 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4cce7068 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d11ec05 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57705535 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x582fc9e1 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x588cfc9d ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59d04591 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b531dde ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d360c35 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f3ac20b ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fbc853c ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x603ae86d ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60d29dae ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6368dcdb ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63d6ed16 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x644eb7e2 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a7eb9e4 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c3cf811 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ec3b23c ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7352f807 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x762578cd ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x780a51d0 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7911c419 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79551cd9 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a76c7ae ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a7a9568 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e4f3fcc ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f55deb1 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83421a99 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83a2777e ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d17a811 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x936bfe3b ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9372776a ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93945b6d ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94586953 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x951e4ea1 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x961da0de ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fb58425 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0584d01 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa30f1560 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3173baa ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa40eece6 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa72e7f91 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac8d0083 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaccbbc20 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb24625dc ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb547b8e0 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7419bd4 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb74e23fe ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9a88334 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb0281f5 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbb4d54a ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc789e0c ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0a9d6e2 ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc26f4fbc ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4e0c2c8 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc24d789 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc74192d ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd2db3b7 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd39d9e1c ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7821dde ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd979eb4b ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdaa52530 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb90646a ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcb059da ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcf06cac ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1d7f846 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe94ab3f7 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec954cf3 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef8a9a5f ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef8d61b9 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf64a9435 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6ef1c50 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7160112 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf81fc9c8 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfec8ad8c 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 0x0b681244 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x40716751 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xdb7487ef atmel_open +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x185934a4 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1bcebcde brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x63c1cce1 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x701f5efb brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa6091176 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb8c186e2 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb99d15c0 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc4e6753f brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xcb7909f6 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd06fd831 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd1f0a31b brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd5d2503f brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xfbc683ed brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0c13d3de hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x17310868 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1dfcfc26 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x207b782f hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x281ff1e6 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2dc060b1 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x40e54c99 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4bafa060 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4d85c89b hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x53849adf hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5b7fb00f hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x70316553 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7a086c80 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8983389a hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8bf3ea99 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xaf69cd61 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb0e492d1 hostap_master_start_xmit +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 0xb5176cb4 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbcd155c9 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd4f734b5 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd9474f92 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdc657dc8 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xed69466b hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf820d265 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfa5973fd hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x00c4e362 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x01764a4e libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x06298391 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x10a27a11 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x213cfd59 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3a4e59a6 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3c2a2959 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5674d9f4 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6067eba8 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x774a6667 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x802faffb libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8bed3cdc libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9003e08a libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa1eb5338 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa2af8110 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa66dc2df libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbf9e7129 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xce01fbda libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd05a3578 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe742133d libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf8223022 free_libipw +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x00098005 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x015979dc il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x07689dc7 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x085a94bc il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0c83cf9f il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0d239472 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0e77819d il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0f0b0a2e il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1123cd15 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x13051d17 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1306b181 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1755c5ff il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1ae0ef6c il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1c752dfa il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2671607d _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x29fd2dad il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2a7eb82a il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2b75768f il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2d163e30 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2e5d28a9 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x318a2b4b il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x320076b1 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x342b009c il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x37e8da21 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3f753fba il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x40300793 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x42436991 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4397a4d2 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x446f1a7d il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4471b6f1 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x44ff97c4 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x45875594 il_mac_hw_scan +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 0x4d0b5eb8 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4f02107a il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5070fa39 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x585bede8 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d99cc94 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5e101928 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5e8fe644 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5eb701ff il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6230532a il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x684453f9 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6c1683d0 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6cf69888 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6d31eb35 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x72d864be il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x735b2482 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x752f7215 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x76d33a06 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x79ab0fb3 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7abce4b8 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7bfacc94 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7c6a018d il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x80bd165e il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x82e7017e il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x85800139 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x85d1a784 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8d429b3e il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x91981860 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x91fd2909 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x92c8d4a7 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x93dd0c63 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x98f54b2f il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x99044df0 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9bcf558a il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9e2f0736 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9f1c6c75 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9f4990dc il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9f75ddc2 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3315e73 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa6b674ef _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7b84a2b il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba98be08 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbb20d8a2 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc44250c4 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc74095fe il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc84439c il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd3a739d4 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd8283268 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdf75f005 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdf934366 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe4f050d0 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe893e2c5 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb72b84f il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xed129cbc il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xee970686 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeedeba29 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf0dda2db il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf181bc50 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf1a35140 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf22feaac il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf284aee1 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf36c2b62 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf54a57ce il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf597766c il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf6e7d30b il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf86f9492 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xff0cf329 il_hdl_pm_debug_stats +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 0x25dbd1e1 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2d5ec1c2 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4524114c __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4aa55f77 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4cbac258 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6667702a orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x76eadfbc orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x78c4c17a orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xaf016801 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb47ed0d7 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xcb5a0d33 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xcdfaf5ca orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdd23dfbc orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xddb9411e orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfa47d626 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfb2c8fd2 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x0825bf68 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x090f9304 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x09220368 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1a40f63f _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1dcb37f7 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2da147be rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2dbaa364 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34bbe45b _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x37fe7dcf rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4fa3e956 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x52da5635 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x57346859 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5acccdf6 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5db0071c _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x61e68793 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x65b3fe3a rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x699f08a8 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69be5245 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6c8dced0 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x714195fd rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7d82b61b rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82010cf2 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x84a50ccb rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x85572a4e rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x89908b2f rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ce6e688 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x964b8140 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9b4dde07 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9d5a437b rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa1c31ec7 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaa7f5e6c rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xacaf4333 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad2c7419 rtl92c_phy_sw_chnl +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 0xb499d828 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb828cbd5 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbb2dde67 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc1b79624 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd5356425 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7edb435 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdc88a94c _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf7db7de _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe869d266 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa63e743d rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc205ea64 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc748a597 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xfd57e2d5 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1de59e21 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb35d62cc rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb44a5784 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc9c2ce03 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x013ff29c rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07782d36 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ae13367 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0cbca487 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x108d7f66 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x16070e5d rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1abcd099 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29f6317b rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30cede0d rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x340f9a6c efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x36b29677 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d365503 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3dfb02a1 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3f215812 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4138a57e rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52ce72af rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x64baf8f1 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x67400be1 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7160d45c efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7c4f2c1e rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa7d47c37 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab8349a9 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb06e0b9f rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb16e3aac rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xca4c47e0 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc63227b rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe27a6faa rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9b7ee66 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x06750f7c wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4293a68f wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x47418ec5 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xbc344675 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x17ae8b9b fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xb44f0696 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xbe3759cb fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0x25990155 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xe1b0efa9 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x04db1001 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x94942528 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xdd6899c7 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x9b7edf07 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x9d33f278 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x79189729 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xbd77016a s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xe7ec6b35 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x197097d1 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1c1d29b4 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x20603eeb st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x21ce1ecc ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x644390ef ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6fc208fc ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7665ad24 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8c66edc0 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x94ad3acd st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa50fb0a8 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa9b8d8dd st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x082d931c st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x09b108db st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0bdad261 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x11939bc9 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1922a940 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x352069b4 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3f84ebb7 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4e95ae62 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x695a66d9 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x72d31037 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x80d9f6bc st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x84faa3f4 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8b6c1dd6 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x908f2d79 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe2f3f9bc st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeb173af9 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xef31b972 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf9e4fd00 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/ntb/ntb 0x2043ca9e ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x344b04b2 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x6e495693 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x923acdfc ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x96b21460 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x9cc62df6 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xca272692 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xff68c692 ntb_register_device +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x92f5d286 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x03da82c9 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x04419d9e parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x066a8602 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x07fba31d parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x1185f870 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x1aa8f2ee parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x1c676c5d parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x254cff5b parport_read +EXPORT_SYMBOL drivers/parport/parport 0x2d372df1 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x37f9743f parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x414622ec parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x46061d43 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x48eb34f8 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5078462e parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x593ea68e parport_release +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5ec5d720 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x60d4fa7d parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x6f96d2df parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x727ae697 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x821dab31 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x8658fef1 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x88914066 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x91ca20d9 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x9d04d66e parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xa69ef36e parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xae888fbb __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xc124865c parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xc3b3a688 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xcc17222a parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xce2b912f parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xd573b68f parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xf0b39de4 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x6a00510f parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xba68e27e parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0b0b7809 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x135389fe pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x19cbb689 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x25681430 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x27c71fcb __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x340d6d61 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3c4345c4 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x448a7e7a pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x506251cb pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x589d1ea9 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x591395d9 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6e10cdbd pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8fda2a82 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa5d3bedb pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa8793d95 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb09e18ee pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb85853e8 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcc69e382 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe84d4e1c pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0641ba7a pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x18f70026 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3929133c pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x45748272 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa27e13c2 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xad0bb761 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd319f950 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe4f4734a pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe538f1a6 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf3e9fdef pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfd46d779 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x74703144 pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xd540a45a pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pps/pps_core 0x2a01f4a8 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x617ec0c9 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0xb046807a pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0xca569e72 pps_register_source +EXPORT_SYMBOL drivers/ptp/ptp 0x3cd78201 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x5b3102cc ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0x678e0d0c ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0x827f9267 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xc05ea5d8 ptp_clock_unregister +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0c6005f0 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1b7e79ac rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3dcfa303 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4d008969 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x5d8824c6 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x934ab512 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xce2b8676 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd3a78288 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd5fffa64 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xea80e473 rproc_add +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xd93874e5 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1daab458 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x2dc73c8b scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xbb740ba9 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe7c5f39a scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x31fa0020 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x39aaa135 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x458260b9 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4d93f03e fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x576618ad fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8a1ce567 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8c995026 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9152de8e fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa46fac89 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa9e9dcd3 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc0b60be6 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd6aff64d fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00b0698d fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x01ce6e9c fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06ca172d fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x070ad1b7 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0be1aec5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c1e75bd fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14718517 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1575a4f0 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16a9fb93 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x19cd2f92 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b110724 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2bb250b0 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x347cb1fc fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f2b4b24 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x43d790f4 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46658d56 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x47e26a9f fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c4f12a8 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x518a9799 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55a2fe9b fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x57f3f9c0 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x73b9cb31 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8287979d fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87f716cd fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a0d6b98 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c65e8c5 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x94c57ffe fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98414f2d fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x99064a28 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9ca78190 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4426fd9 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa5c083c2 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaf481b2a fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb63a8dc4 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb83bb115 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5e64e87 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce57c915 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0a5964c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3a03483 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8d826a9 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd9e070cc fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb5c4d6c fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdc262fb8 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd85634d fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdfff29f3 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe7f59485 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8d29ec8 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeeecf445 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfcad1c62 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfec6e0f1 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5029461f sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x716d8cce sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xea42bb29 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xeab09a7c 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 0x7cccd494 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x01af1b33 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x063538ba 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 0x12f08c17 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1fe13fd3 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x26215714 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x34557b8b osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4049d09f osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4558fb99 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x496c9543 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4e9559b3 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5569b473 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x57fb30ce osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5831f51b osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x733b03ee osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x74a5ff67 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x75a64560 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x86ecac1b osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8b633a08 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8c408ebf osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8cd2fef3 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x93d80626 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9a2a0300 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa6877ffd osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa7e6f187 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xac7ca8ef osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb356428f osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb4a3fc73 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb9a5aa1d osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc3de9dcd osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcd7e8bb7 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd6582381 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdad8b8e8 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdae62d35 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe47df664 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe4847250 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfca3c33b osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/osd 0x01942c1a osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x1dc3a9ae osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x559847b2 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x6f41f68a osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x79089cca osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xd5e21ad3 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0bce3322 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0e152633 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1729ffc5 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x624fd165 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x73a7e284 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8b2b0b7d qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9c35b28d qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa9616546 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb67e1fa1 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbce00915 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc9be9139 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd30d46be qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fc62076 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x6c70531f qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x9b8b52d3 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb342fd7c qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xdabbff93 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe96b06e8 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x23e770bd raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x8814f531 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xf1fb9074 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0c6f0fe5 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2572545a fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x52cf0804 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x53a19d1d fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x53c122f4 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5a64e6eb scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6babfa5a fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x89891c5d fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa0dc8869 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xac398f90 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbe398444 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xca9548fb fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xce03d4b2 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x02e1b0cf sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0a5a2541 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x10a8c669 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x11f0d414 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x12969152 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x19335a66 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1a4815e7 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x236819f1 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x441e79f3 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x45fd3f1e sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x550ed17a sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5cb3536c sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6658ea1c sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x78934428 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x797796ef sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7f49350d sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x850cef7a scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8af22fa6 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8fd6f590 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x96832e65 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x969a5719 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x973ea6d4 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9eadfa64 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa8c8ac3f sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xad110cf2 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb1b2a35e scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc17eb1b1 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcc2e0eed sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4be08dad spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4edd0609 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa68be529 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa6d1dce5 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc7f939ed spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x67ec3979 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xdab890d2 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe38d8c1d srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe3f8880e srp_rport_get +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x0867ae82 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x256ca192 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x52c3f933 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x5a4e5e11 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x98deeb14 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd2729172 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd42a967d ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x08ea86e3 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x193ba69e ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x3822416c ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x39549458 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x48948163 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x672ea357 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x7ca96d8b ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x7d506f10 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x8086974a ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x82fc1b10 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x85205e16 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x9d522eed ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x9db23835 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xaeadce0b ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xaf5a3703 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xde36971f ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xe449f9af ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xefa77641 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xf151f530 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xfde48047 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0185f57b fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0c9ef6cb fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0cad8050 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0e0a636a fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1a578b6a fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1f4bc768 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2cabac8a fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2f27c3da fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x33968a39 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3ed1cfdd fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4556d2eb fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x46cf7228 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x471f7a8f fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x50d07fa2 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5710ffad fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e94efff fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6701c5eb fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x819940fb fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa9f36655 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb76304e7 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb82d6098 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbc13590f fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd28fd761 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe8a95a24 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x3b7ac0e6 fwtty_port_get +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xb234edfb fwtty_port_put +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x071c3944 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 0x311e0e4a cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xbec91dc1 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x078860b2 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08edf5cf rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x090b55fa RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x160a815c rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1983b8d2 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1fdeef2e rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x20283125 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2a8ca145 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ee6336d rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f312e8f rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3014290c rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x348f9a64 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x354292c6 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x44744190 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x45ab4cb0 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x48644a0f rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4a12d32b rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4c9f4e16 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54b1924c rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56cf3f81 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6cc1741c notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73e260b9 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x741b2648 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x75248c28 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x78640b55 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e050151 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x85fea9f0 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x863c71fb rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c655a98 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c7793e5 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x92e9c28b rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x93668c0e rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x98185370 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xae024484 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb1283a1e rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2da833f rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb34c3fad rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb654cb18 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbf14e9bc free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc6c975bc rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc3346fb rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd8e73c8 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf5b9af1 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd325ea63 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdc555cde rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe56d39e6 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf6e24610 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf76abf1e rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf9b8e1a5 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfd4a5934 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07c84bbf ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a4f3057 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d99b633 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x16f3d248 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c5e655c ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1caaaaa3 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1f38bed8 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1f79ee75 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x21854d73 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26aea35c ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x29a1712a ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2cf7dbb7 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31a47ffe ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32379ac8 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x334bf826 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x376f715e SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x39f658d2 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3c4a0a7a ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x461985df ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4785771a ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4be05457 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d6fddb2 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5baf42ff ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5c31195e notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x690c580d DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ef8c040 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7783e2be ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8277e8cf HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88ea811b ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94cd0eae Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xae4cca08 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb07c98c6 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb217c750 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7207076 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbe06a722 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc187b62d ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc78384b8 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd7844021 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdab96727 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdea78185 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6cd34db ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7fe5fbd ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecf9f83b ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee52f91f ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeee0e208 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeefaf091 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf0f58dad ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf1dac739 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf36a5b20 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3ee7c4d ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf40a6b04 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf4d098b3 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb62bbba ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0e5e5100 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x17a9f0f6 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22d97660 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x421350f1 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4f32cd0c iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x532c8bcb iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6937614c iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7487c69a iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x748dad22 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c85435e iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7cd555cd iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fbd4eb4 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x821ed01f iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8c4eddd7 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x96591d4f iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c6d1f84 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa9b6064d iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb320da9b iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb360f908 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb8d1d7df iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc651f62a iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc82466f0 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd80ef63a iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb76e2a8 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe16ea927 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe26cb7a9 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe6a48663 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xed4f9e44 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x03c4f4c2 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x062d3e07 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x06888e52 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x086ab1f7 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x08faf46f target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x0bc80fc7 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ed76e08 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x13aeb6fa target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1985bc44 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x1fedaae3 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2041b7c5 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x355db53f target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x388c681f transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x3cf8a697 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x4039c8bb transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x456d41b8 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x47c5816c transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x48be6988 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x4904fb2b target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x54515a39 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x556b7369 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x6046e3d9 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x66b1faf7 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x67beeaf0 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x67d16ea4 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x68e66721 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x697b652b core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x69d8915c sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x6b309ae8 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e5fd825 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x711dd0b9 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x730eaa7a target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7638d158 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7717264d transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c806702 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e8f6eab target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x850ddf94 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x89534e0f target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x8df5dd13 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e3807fb target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x91000513 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c9198ab transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x9ef97a7c transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1539ade transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6106510 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa976ad63 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xae582a19 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb61e12d5 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xbb717512 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xbc37ae25 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xbde31745 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc90f23dd transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xca78f4a2 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf6a1748 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xd65d6c82 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xd6d0edb3 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xd71ecfec sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xdd6512df transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xe019efaf transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xe164bd84 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xe8b671ff spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xeae30b3c target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xebd0e1c4 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xeca767fe target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf5917696 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf840ffd4 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xfadf35ce target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc0cb7ff core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xff7b1fc3 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xb97a978a 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 0x9158dbe8 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x469d4d04 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x78341dfe usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9b75745c usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa72d78e7 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb360ed8e usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xba35b13f usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc55c1b25 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcf8373fa usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd5115e29 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe5a2c359 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xec6b711b usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf382cec1 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x2e727e4e usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xc423f6d8 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 0x45bea881 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x56347923 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xdc67683e devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xe80a8393 lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x12f4bdcd 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 0x4a2d68ba svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x55d45e6c svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x72b485fb svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7843c86d svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x877b059a svga_tilecopy +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 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf552f675 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xa09da30c sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xb994ba20 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x00693407 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 0x8e20611b cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x6cd228d8 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xbda8ed6b matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xdbe9c7df matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x397edfee DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd0cee9ea matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xdf43a4ca matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe5d65f3a DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x2e9bbf35 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xdc2130de matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x1ba49e21 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x6c5dbf1c matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbfe3f86b matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xeca307c1 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x8c79d623 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xe109e7e9 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0318f75e matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x959227fc matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcfec986d matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe0535b18 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe6b8aa5e matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x35eca1bc 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 0x0f82f1e9 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x68f6f73d w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x91c10d14 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xb53faa6c w1_unregister_family +EXPORT_SYMBOL fs/configfs/configfs 0x3455a66f config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x3cfc99ea config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x52ef747a configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x532c23af configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x556bab73 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x639ed4ec configfs_unregister_default_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 0x8709440b config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0xa4315cdf configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xaab8fa20 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xc894a0b2 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0xd4d87690 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xd606ba9e configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0xdc7c4aa1 config_group_init +EXPORT_SYMBOL fs/exofs/libore 0x0cfa599a ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x1c79cf1a ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x43ce0351 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x6c59912c extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x8c887c70 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x9c4bfb27 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xb00bd689 ore_read +EXPORT_SYMBOL fs/exofs/libore 0xb784b7ba ore_create +EXPORT_SYMBOL fs/exofs/libore 0xdadea0f8 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xeddb3fb8 ore_truncate +EXPORT_SYMBOL fs/fscache/fscache 0x028fde64 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x0fde82e5 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x105972cf fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x15db423d __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x164f7c46 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x1bb04e25 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x20f61563 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2d6c7b03 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x39a1a666 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x45407480 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x462abd6a fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x4ff02663 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x5199268c __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x53ab4e19 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x57e347b0 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x6583cedd __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x69da1d0a __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x6a233a7e fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x6acf6421 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x715a9e70 fscache_operation_init +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 0x7e29f42b __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x8ba81128 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x99da1ec3 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xa1024e56 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa6938c75 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xa767c13b __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xa8d41dd4 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xb50c0d0c fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xb75d15a4 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xc25528a8 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xc52bcfda fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xdd3e043c fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xdf6ff61f fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xe1a52618 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xe2ae79a7 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xf3819aa3 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xf7d01537 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xf967686d fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xfa7d6e5b __fscache_register_netfs +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x15752af4 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x5d91a1f3 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x8b4571e3 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x8e3b70aa qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x9797fad7 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 0xb69bed78 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 0xeb71df90 lc_seq_dump_details +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 0x10ceac6a lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xba159da9 lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd2adfed7 lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x07df7821 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x70a405d6 register_8022_client +EXPORT_SYMBOL net/802/p8023 0x8302ce10 make_8023_client +EXPORT_SYMBOL net/802/p8023 0xfd9292a1 destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x2b6bbee2 register_snap_client +EXPORT_SYMBOL net/802/psnap 0x70cd42ac unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x041aacb5 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x072a8f99 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x0f630f6f p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x10669bbf p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x16fa6b8c p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x17008312 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x1f7fbbca p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1faefb7b p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x28ac15cb v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x34fcd857 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x36b86a72 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x3acc61e3 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3dc26c12 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x439993f4 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x483e5543 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x4a351135 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5a860d37 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5ceb40e6 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x656b3c5e p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x6941cc67 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x7c757810 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8eb7ffbd p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x8f5886ba p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x9220a33b p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x9bded331 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9c3e080c p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x9d757e46 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xa721f67b v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xb2e45411 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb8c58a65 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xbcb1b008 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc8b46374 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xd1d13725 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xd58b8970 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xdf303077 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xdf9de053 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xe1ae09da p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe891cd01 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xec4f124b p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xf1c00369 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf532882c p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x07d59389 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x0fe9839d atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xbd163422 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xc3a90881 alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x0a202a9c atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x14dbc575 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x52671d9b register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x6141ce22 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x6f0c6a61 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x7f4085d4 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x82aa9140 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x8b226163 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x984e976f 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 0xacf67944 atm_charge +EXPORT_SYMBOL net/atm/atm 0xbff8ffe3 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xc095141b atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xf3547a7f vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x02418509 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x07838a11 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x383c0dfd 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 0x74775e6f ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x7a9edc85 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x980956d8 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xac0d3871 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xaff3b96e ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/bluetooth/bluetooth 0x00de3c8b bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0cb82a3d l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x13038511 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x16b7b60f bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x170cd505 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x25f68c4a hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2dc6b611 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3b251d93 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3feda2bc hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x52e6a2c7 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x53acc556 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5eb4d4c5 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ff98632 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x65781967 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x664b0b92 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x69b01126 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x80efbb70 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x89b6c831 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8b310675 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8d2b00ba __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 0x9879f8dc bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa2788030 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa296d1b0 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa6bbf65e hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf030985 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb924fc36 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc33e1e2f hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc79dfd6f bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd0b11189 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd21fc093 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd526a684 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0597f9b bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe3c015c5 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe41573dd hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xea48ee19 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xee2575c0 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf2afff08 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf65cdb5a hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf92ccbb8 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf94374ef bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf992e002 l2cap_unregister_user +EXPORT_SYMBOL net/bridge/bridge 0xe33e6fc0 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xba22d53d ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xdc22289c ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf68fa07b 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 0x500d311c caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x78398afe cfcnfg_add_phy_layer +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 0xb14326dc get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xd4136781 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0xd858ac32 caif_connect_client +EXPORT_SYMBOL net/can/can 0x00208d26 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x01b30741 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x5b8a6d6c can_rx_register +EXPORT_SYMBOL net/can/can 0x70f17abd can_ioctl +EXPORT_SYMBOL net/can/can 0x70f9c68a can_proto_register +EXPORT_SYMBOL net/can/can 0xe49eed68 can_send +EXPORT_SYMBOL net/ceph/libceph 0x020c263d ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x033cccb2 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x05c5cddf osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x076a7f8e ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x095f41d2 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x09a788d8 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x0c435b39 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x0d1e55a2 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x0dd87a3d ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x135f9253 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x14600e28 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x1a9b1e24 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x24432971 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x2937db8d ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x2ae432a7 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x2df6f346 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x309ac723 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x35422dd7 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x3813e5c6 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3c6a7c88 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x3e161418 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x3e639ab8 ceph_osdc_wait_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 0x40f106c1 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x41b8f62f osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x43494fc6 ceph_osdc_put_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 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x537fea5f osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x55379de6 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5cb9de23 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x622ff7c3 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6953b258 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x7115d023 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x71a8f367 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x731e9a49 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x73511f40 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x738488ed osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x74beb1d0 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x74d98df1 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x76796b72 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7a4de5c3 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x7ac6bb76 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x7c1e8701 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x7c598053 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7df28c0d ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x81dc851f ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x85b97069 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x85d8af2d ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x8699779c osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x8d3cadaf ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x8dc34bbb ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x8f879c69 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x9006f2f9 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x90f1914f ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x928d7879 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9a2077d3 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x9c441a30 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x9e6cb3df ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa1dff3f7 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa2eb3966 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xa6fe6ade ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xa921d32a osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xac0ff708 ceph_open_session +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 0xb63739cd ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xc2c9c243 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xc329e518 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0xc467f35a ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc4c5ffd6 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xc5f3f2c8 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc78826a3 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcaade5a0 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xd0b04a2e ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd329b342 ceph_copy_to_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 0xd8ee1de9 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xdc10b15b ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe3dd2f1a ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xe49fd138 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xeb9e0999 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xf10c3c71 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0xf1ff9a4d ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xf21940ba ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xf977d25a ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xf9d8e12d ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x1ea9abf1 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xbd962b5c dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0fb0c926 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x124eead9 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6ab3519f wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa39f5f9c wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xaaa5c6cd wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xfaf60255 wpan_phy_free +EXPORT_SYMBOL net/ipv4/fou 0x027bd29d fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x3430a099 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1cc6106d ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x39d314bd ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x438f431f ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7490f04e ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xaa202f17 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc2763472 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x29c92d33 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x94cb4465 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xcd9678ec arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x42611213 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5c5bfabc ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x9c8ffa3a ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x00e46c80 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xdfc75984 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x3451bfbe udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0172066b ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5c5985fe ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc9eb86fb ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf4a8feda ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x59553128 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xa0f3d4cc ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xadfdac32 ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x6eab4b2a xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xcd3046a8 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x9159c413 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf47b0b8a xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x107e1399 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6db0d0aa ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x70cd0058 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x7f8b014b ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb0c07001 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xbbce748e ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xcb8c7a65 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd516911f ircomm_control_request +EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x02aaa23e irlap_close +EXPORT_SYMBOL net/irda/irda 0x032ef42d 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 0x091a9682 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x1a21a633 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x1a32009a irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x2640f674 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x2d4217ac irttp_dup +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x383528d0 irlap_open +EXPORT_SYMBOL net/irda/irda 0x38a22507 iriap_open +EXPORT_SYMBOL net/irda/irda 0x38f54d3d irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new +EXPORT_SYMBOL net/irda/irda 0x3ea8e807 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46a76e10 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x4dda9906 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x5763e688 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x5a73266a irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x5cefa1f4 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x76906d58 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x7f7a8e5b irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xb5df9d99 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0xb8053a0f irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbb13c959 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc041374d irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xccef51cd iriap_close +EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find +EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xd8034ce0 irlmp_connect_response +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 0xf5876b95 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xf6052e23 irttp_connect_request +EXPORT_SYMBOL net/l2tp/l2tp_core 0xfd84d484 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x75de6bb0 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x032803a6 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x042dc423 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x7e721efe lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xa2a39586 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xb02fe164 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xb846eef7 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xbff27ba1 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xc0034b38 lapb_data_request +EXPORT_SYMBOL net/llc/llc 0x072279bf llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x153d6dd4 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 0x638fdf8c llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xd54099ab llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xd54f9126 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xddede422 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xe18f3bb0 llc_sap_find +EXPORT_SYMBOL net/mac80211/mac80211 0x001a4686 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x04085f6f ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x086a8110 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x08ac22ba ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x0924d50a ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x10f52ce6 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x18b14380 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x21d240a0 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x244bfa22 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x24ce89a0 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x267781a8 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x2a366705 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x32aee532 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x35a7bea7 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x392a905e ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3b2ccc63 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x3f338264 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x404c65b7 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x40a94154 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x40bcc59a ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x41347dee ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x429865f3 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x4697d1fe ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4d51d4e4 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x523bb022 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x57312c22 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x5dd887ad ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x6012ac73 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x60ac8c02 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x6be12c91 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x6c762de5 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x6fde98d8 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x73052af1 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x75b0097c ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x75fcac07 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x76f5472d ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x789cebec ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x7945eb74 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x82f2cd3e __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x83cd4d5d rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x83d3fb6d ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x8464ae8a ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x8bd0bf5b ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x8bdb977c ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x8d32af75 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x91509ca8 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x91b3d0ce ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x94b84169 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x99543df0 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x9c3a9e1c ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x9d990fc4 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x9ea5f9f1 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xa69a3596 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xa80dd146 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xaae631e4 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xaba23348 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xaf093f74 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xaf38ef03 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xb0eaf065 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xb68efa2a ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xc2cc1657 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc3136504 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc5117a23 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xc6bee5b4 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xd0c2716e ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xd31cfc78 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xd51a42bf ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd9934f50 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xda14da9a ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xde117133 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xde71585e ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xe7cda9ea ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe7cf55b0 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xecaa74cc ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xee86cfdb ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf7e036e6 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xf866b2ce ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xffc46064 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac802154/mac802154 0x159ff00a ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x2ca68651 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x31ae6ec3 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x4363b27c ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x452e8406 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x6646021b ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xafc75859 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xd307d65a ieee802154_wake_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2314bba8 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x34591403 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4c9b3bf7 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4fec15f1 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x59b5f841 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7a695f8a ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x88815919 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8ef5b9ca ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x98e02a17 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9939d584 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9b62a61d ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa3eda927 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc7691854 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe86a04d4 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x66734e89 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x94a8830f __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xa0327cbc nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x0d44dbe9 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x17a505dd nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x36f80968 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x3900b2a7 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x9ff26eac nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xef85dd86 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/x_tables 0x30bcb5cd xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x3d4c2914 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x436bf7fd xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x4be90f65 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x4f34e033 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x5ec1d224 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x62b588c7 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x62b8f83f xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x806ae67d xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa3ec17de xt_unregister_targets +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/nfc/hci/hci 0x0cb30ff2 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x104c8a20 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x1666bd20 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x1ff3cf4c nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x231c8204 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x27868e3f nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x2aacbb6b nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x3f95085f nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x7c5d3b01 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x7f96b422 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x9751e613 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x9ba41624 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xa6046be6 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xc06ab8eb nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xc3a20d59 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xde61793e nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xe4251cc8 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xea5097fa nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xee2f2107 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xee658ebb nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xf2170282 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/nci/nci 0x06f95d65 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x073e3808 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x287fe068 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x2dc4da74 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x30329ab6 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x4a9ab4a7 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x52d3458a nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x576bb4f5 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x59e76fd1 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x67abd6b4 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x6b9990ec nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x836e4f45 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x8458eb8d nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x88aa4be9 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x8a81f27f nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x8db8d974 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x90459002 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x9b86e8d3 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x9ed5b4a5 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x9ef1f3a9 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xa257e79c nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xb25c4ffe nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xced9fb4d nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xe6dcf9fb nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xe94aa7ee nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xeb6433ef nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xf5c0119a nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xf71670a6 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nfc 0x0a8872ff nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x0c725f39 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x0d8e002d nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x1a7ddf5d nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x22f5025f nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x2c946a7d __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x4a8cee77 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x5cdf0fe7 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x63389f66 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x663c5199 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x6afe4135 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x8979bf3f nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x995f5fcd nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x9eb5a99a nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xa0628f1b nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xae7a1e80 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xb6f236f4 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xcb3596fc nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xe2bcee79 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xe6f47132 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xe9790b4d nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xec77a2d7 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xeeccde03 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xf36f879c nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc_digital 0x0b4dbcb3 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xa17e0ca8 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xba8c1f3c nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xff12cf6c nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x06004292 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x1b1cb5f9 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x2958e742 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x96d629c2 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x9cc0da1d pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xa2e80ad8 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xe3f9b2a9 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xf9c9c4d7 phonet_stream_ops +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x029f80b6 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x16eb7410 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1a60825f rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1b97725e rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x395dcfac rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x39daf880 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4a55fff2 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6368c165 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7ec62fe1 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x84b55408 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa5090543 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb231d04b rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xcd8f8c0a rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe9dc83ab rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf0e516a0 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/sctp/sctp 0xb5973bfa sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x293150a6 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x80fd4575 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x8b69afe9 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x18d0c56d xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x74db290c xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xe3b05a42 svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0x9ec19007 wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xb34f0846 wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x020ab766 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x03795ac0 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x043546a2 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x04d3ff37 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x07996dc3 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x08728371 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x090475f1 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x104801db 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 0x222bdfc3 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x28d7d30c cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x2c05a908 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x34f2a6e7 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x3bc17702 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3db775c0 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x417c10bd freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x443f8381 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x4471f9fe cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x45dbb111 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x46ba81b9 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4c940015 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x4d616ce1 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x4d80f4a8 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x53464976 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x53acb2d8 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x573e859f cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x5a28fdf8 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x5be24a61 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x5cf25d96 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x5dc8cfa7 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x609e7439 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x61618f00 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x645b59d5 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x6667e11b cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x6814949f wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x68843850 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x698c30d9 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6dc3776b cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6f5d8be3 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x7112e837 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x74ab589e cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x75d8dd2a ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x7d81713c cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x7dcd80d1 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x7e5dca21 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7f8aa785 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x80b5ec6e cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x880544c0 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x88168f64 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x88a98de5 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x8a15c6fa cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8cd1769e cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x91f15a98 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x987ce370 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x9982f3a5 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x9b677e52 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9da7e61c wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x9dc8fbc3 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xa0311596 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xa171315c cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa2960e2f cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa4de4e3f cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xb153e712 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xb350e177 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xbd69c7a0 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xbfbeb863 cfg80211_rx_assoc_resp +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 0xcd078166 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xcfb4f443 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc248a3e cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xdca0df64 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xddec1479 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xde918e0d cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xe0ac2e26 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe1cc1b00 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xe211f07a cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xe54aacbf cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf0799b90 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xf3cbf17f wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xf562864e regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xf5bccf69 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xf9361705 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xfab6b67e cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfdc941b6 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x5b7fe64c lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x86291c12 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x906d734b lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xe2136e1a lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xe5726fbd lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xffbeeb6b lib80211_unregister_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x3a7d8fb2 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xe651f918 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 0x2403f824 snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x96408d87 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xaf22fd56 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 0xcef7f8f5 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 0x2d275a86 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 0x4cf7a863 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x02f616ef snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x0337afde snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x03d83ae3 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x043821d2 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x06b5307e snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x07fae133 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x09f9243e snd_card_register +EXPORT_SYMBOL sound/core/snd 0x0d73c43e snd_card_free +EXPORT_SYMBOL sound/core/snd 0x0dbf9b1e snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x11506c3b snd_ctl_new1 +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 0x2774995c snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x29510027 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x2e7d4b6d snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x2f10bc70 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x2feee478 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x305746e9 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x379eef50 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x38f2f052 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x4323db2e _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x465773fd snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x502d7146 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x5cf571e1 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x64746866 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x7819c882 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x7aed254f snd_card_new +EXPORT_SYMBOL sound/core/snd 0x7c14b70c snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x7c729b69 snd_mixer_oss_notify_callback +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 0x8e34984a snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x8f1c1c01 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x9585ca6a snd_ctl_replace +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 0xa387b4fc snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xa77bec8e snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xae02c5bc snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xb2a58c0d snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb91f7487 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xc9053bde snd_register_device +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 0xd4b259da snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xdbbd7097 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xde1a7850 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xde2e71f6 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xe055801a snd_info_register +EXPORT_SYMBOL sound/core/snd 0xe37dcac2 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xe8508cde snd_device_new +EXPORT_SYMBOL sound/core/snd 0xec4027ed snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xee7f0068 snd_cards +EXPORT_SYMBOL sound/core/snd 0xf48c6329 snd_ctl_add +EXPORT_SYMBOL sound/core/snd-hwdep 0xba5ba7f2 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x02f376ac snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x0586dd48 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x0744fc5f snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x0e48c23b snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x12dd5518 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x172d2ad6 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x21458495 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x337ad143 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x350bebf5 snd_pcm_stop +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 0x42fbac0f snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x433e2c22 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x4db55858 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 0x5275ec70 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x533e871e snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x5650987f snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x56d2aa26 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x5e67f507 snd_pcm_hw_constraint_minmax +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 0x71e26a69 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x722cd31c snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x789973ef snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x7a871744 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x7ba9759c snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x80b1304d snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x81083673 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x820ce546 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x839f923c snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x862c4e5a snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x8898335c snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x89a00ffe snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x8ea068f0 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x914b1a65 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x92cf9995 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x940603ec snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x947f383d snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0xa0523cf9 snd_pcm_hw_param_first +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 0xb31293f7 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xba009d83 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xbae8b9e8 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xc173348d snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0xc617265c snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xccea28b7 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xd4a5c5db snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xd9741f10 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xdd362fd7 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xdd9a282c snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xefd9f32e snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x05ec02d6 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0a8850d2 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0bb2a85c snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x196d8bc0 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x37ba091e snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x543d1da4 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x55c1ed8e snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x651a87f5 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x771707aa snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x825a8db7 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9c58aa34 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa64e046b snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb4a27930 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcb040fe3 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcfea8b39 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe3913744 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe6400f0c snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xea6e6bce snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xedf4ff93 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-timer 0x095ec2a8 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x2b10df87 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x3a11b338 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x478685e5 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x5a115df7 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x5b48bc94 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x9769f4c4 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xb3605088 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xe14e19b0 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xf5823387 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xf788cb94 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xf79746d4 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xf7e023f2 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 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 0x00620c28 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x65ebd403 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x68d336e8 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6b00f161 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x78e7d51c snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7e4b10a6 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8dc14c40 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa0633548 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfdf3207a snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0991cc38 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1a99745f snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1c21b4b3 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x20e45ff6 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 0x43ac5ca5 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6bc1c297 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x780f0bff snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd0ed2af6 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe7e724ac snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 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 0x34dee824 snd_fw_transaction +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 0x5bd492d6 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6487345e 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 0x8571ef29 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8850da6b amdtp_stream_get_max_payload +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 0x98b2dfcf amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9d6d67ff amdtp_stream_pcm_prepare +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 0xc42644cd amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc7a1ac7b amdtp_stream_stop +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 0xd8920ddb amdtp_stream_set_parameters +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 0xf0f38caa amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf7e1ff45 amdtp_stream_pcm_pointer +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 0x79409faa snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x7e55bb39 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9b16101d snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9e8c9ab2 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbd196d9e snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbe3a3380 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd34e66bf snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd802aad7 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe58c6e21 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf7993655 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x15277363 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x248c023b snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x7f8f92c2 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xa4e30000 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xde7f6f42 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xe512fec0 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x50d0dd75 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x9e244a04 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa1bdc321 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd4153139 snd_akm4xxx_write +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 0x2228e76a snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x35f0d361 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x96992e21 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x96dd1a5a snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd54dc142 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd9c24774 snd_cs8427_iec958_build +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 0x0d0e53ad snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0f883d36 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x28d5c96b snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3788bf92 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x526bca6d snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x62322367 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x90b084db snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa73e5d69 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc2e2fc85 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc333e1a6 snd_sbdsp_reset +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x06db6100 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x08948129 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0a7d08d1 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1ef44e12 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x32440345 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3795896e snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4d628e9a snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x591b9a9a snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8c826029 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9307d28a snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc15eaa69 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc1a2e7ca snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdf8e61fb snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe3cbbe04 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe4694f05 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xed5077e7 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf6e0be03 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x05026308 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2f982dbf snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x398d98b3 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3f1a16f5 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8e350bd7 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9de525c1 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xaeeffcc7 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xcb0aa03d snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfe080496 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x5a914108 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x6c0cab6d snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xeaee051e snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x019ae4a3 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0985ba42 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0dde222b oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1d4ddcd2 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x22c33d40 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x23fc3325 oxygen_update_dac_routing +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 0x8967db7f oxygen_pci_shutdown +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 0xb3bcd5c2 oxygen_write16_masked +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 0xc4ca5ebd oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd5836642 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xda6fda4c oxygen_pci_probe +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 0x46cb5481 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8cf87f7b snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8f9c583f snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xa4144413 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf86211d9 snd_trident_free_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x119713c0 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x85228083 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/snd-soc-core 0x7ae91cca 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 0x578ce9c9 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 0x00082f56 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x000ec9e5 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x001a3784 __lock_page +EXPORT_SYMBOL vmlinux 0x0020a969 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x003705f8 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x00375ce2 seq_release +EXPORT_SYMBOL vmlinux 0x003b190b secpath_dup +EXPORT_SYMBOL vmlinux 0x003ed69a __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x00520ea9 sk_free +EXPORT_SYMBOL vmlinux 0x0053fc00 proto_unregister +EXPORT_SYMBOL vmlinux 0x0059e224 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x005b5031 d_lookup +EXPORT_SYMBOL vmlinux 0x0068b43c d_obtain_alias +EXPORT_SYMBOL vmlinux 0x00692612 down_write +EXPORT_SYMBOL vmlinux 0x006d99ee seq_dentry +EXPORT_SYMBOL vmlinux 0x007f0e10 d_make_root +EXPORT_SYMBOL vmlinux 0x00802b8a __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x00827cc0 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x0093f974 touch_atime +EXPORT_SYMBOL vmlinux 0x00aca8a1 make_kuid +EXPORT_SYMBOL vmlinux 0x00aebe72 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x00c669bb _dev_info +EXPORT_SYMBOL vmlinux 0x00cd5622 vfs_writef +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e0a2e3 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x010fd933 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x0122f424 qdisc_reset +EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 +EXPORT_SYMBOL vmlinux 0x0143f1ac scsi_remove_device +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many +EXPORT_SYMBOL vmlinux 0x018941a9 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x0192bd10 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x019d04f4 km_report +EXPORT_SYMBOL vmlinux 0x01ee6197 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x01f620aa dev_mc_init +EXPORT_SYMBOL vmlinux 0x01f64d2c posix_acl_valid +EXPORT_SYMBOL vmlinux 0x01f68a8e drop_nlink +EXPORT_SYMBOL vmlinux 0x02259c06 init_buffer +EXPORT_SYMBOL vmlinux 0x025e9aff read_dev_sector +EXPORT_SYMBOL vmlinux 0x02637347 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x026c455f ipv6_chk_addr +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 0x02a96288 __find_get_block +EXPORT_SYMBOL vmlinux 0x02bcc18c pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x02dc6795 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x02df7125 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x02e8c228 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x031ac019 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x03208a83 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0341dde8 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x0391d436 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x03a441f0 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x03a54179 blk_peek_request +EXPORT_SYMBOL vmlinux 0x03b3d460 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x041b9b46 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0431a2a4 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x04693056 bio_add_page +EXPORT_SYMBOL vmlinux 0x046fa788 down_read +EXPORT_SYMBOL vmlinux 0x047434af crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x047bfaa8 blk_rq_init +EXPORT_SYMBOL vmlinux 0x047deb37 __brelse +EXPORT_SYMBOL vmlinux 0x0481b1be fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04afa49b nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x04bb1180 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x04bfef82 input_flush_device +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04f1041d lockref_get +EXPORT_SYMBOL vmlinux 0x04fb0a11 request_key +EXPORT_SYMBOL vmlinux 0x050278a8 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x05109ca6 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x051b67fb ps2_end_command +EXPORT_SYMBOL vmlinux 0x051c68cf sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0526a06a netdev_change_features +EXPORT_SYMBOL vmlinux 0x0528a39e should_remove_suid +EXPORT_SYMBOL vmlinux 0x052d2c09 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x0539d50b mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x053f877c get_acl +EXPORT_SYMBOL vmlinux 0x054331bd tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x0553abfd dentry_open +EXPORT_SYMBOL vmlinux 0x05552320 __mutex_init +EXPORT_SYMBOL vmlinux 0x0564294b alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x0569b97c i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x059c33b1 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05b4160b vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x05c88386 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x05e31a8b kernel_getsockname +EXPORT_SYMBOL vmlinux 0x05e4ed4b security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x05fab86a lock_rename +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x062fcf26 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x065d7f70 seq_write +EXPORT_SYMBOL vmlinux 0x066d271f blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x06727f6e skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x0672fdfb param_set_uint +EXPORT_SYMBOL vmlinux 0x0675c7eb atomic64_cmpxchg +EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x06cef78a phy_resume +EXPORT_SYMBOL vmlinux 0x06d9d21f sock_kfree_s +EXPORT_SYMBOL vmlinux 0x06dd5af9 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0715ea68 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x07172990 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x071bc0ec iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072dd354 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x075d6d19 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x076f30fb get_disk +EXPORT_SYMBOL vmlinux 0x079de20e qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07abcaad mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07cc698a loop_register_transfer +EXPORT_SYMBOL vmlinux 0x07ce3ea4 from_kgid +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0862038a __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x086e5c8b bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x0886aac0 flush_tlb_range +EXPORT_SYMBOL vmlinux 0x08883233 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x08c7afc8 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x08df9457 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x08e3c7b8 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x090bbcb8 backlight_device_register +EXPORT_SYMBOL vmlinux 0x090f36d7 ping_prot +EXPORT_SYMBOL vmlinux 0x09190f7e tty_throttle +EXPORT_SYMBOL vmlinux 0x092ae880 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x0954208f i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x0967f0bc devm_gpio_request +EXPORT_SYMBOL vmlinux 0x0982551c nla_put +EXPORT_SYMBOL vmlinux 0x09834ef8 param_ops_bint +EXPORT_SYMBOL vmlinux 0x09847737 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098c7ed6 tty_free_termios +EXPORT_SYMBOL vmlinux 0x0990d131 pci_bus_type +EXPORT_SYMBOL vmlinux 0x09bbbb91 trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x09c0e6a3 __blk_end_request_all +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 0x09e2552e serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x0a0d0017 d_genocide +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 0x0a472472 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x0a524282 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x0a55c824 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x0a6e0fa2 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x0a6f7ae8 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x0a88c728 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x0a8e59aa mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x0a9d0131 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x0aa061f0 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa5e87b xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x0aa8b57e sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0afbd889 blk_put_queue +EXPORT_SYMBOL vmlinux 0x0b0174cc empty_aops +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b15268d neigh_app_ns +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b65cb61 sock_no_getname +EXPORT_SYMBOL vmlinux 0x0b683f3c param_get_long +EXPORT_SYMBOL vmlinux 0x0b695cf2 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b9ab03a filp_close +EXPORT_SYMBOL vmlinux 0x0ba2409e __getblk_slow +EXPORT_SYMBOL vmlinux 0x0ba5b4a6 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bf6c7be kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x0c12e626 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x0c13ce35 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x0c19c9e6 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c5be66f simple_getattr +EXPORT_SYMBOL vmlinux 0x0c770fee neigh_event_ns +EXPORT_SYMBOL vmlinux 0x0c9b6089 nvram_get_size +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0cac90a0 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb5d978 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x0cb87eb8 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x0cba6a26 input_free_device +EXPORT_SYMBOL vmlinux 0x0cc34950 phy_start +EXPORT_SYMBOL vmlinux 0x0cecdf7c agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x0cf1aac9 nf_log_set +EXPORT_SYMBOL vmlinux 0x0cf3628f nf_register_hooks +EXPORT_SYMBOL vmlinux 0x0d089f39 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x0d20fdf7 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x0d2eac96 skb_checksum +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d542cf6 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6bfa92 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x0d9aa821 sock_create +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 0x0ddbebc4 of_find_property +EXPORT_SYMBOL vmlinux 0x0dea571c pci_set_mwi +EXPORT_SYMBOL vmlinux 0x0e0080ef lookup_one_len +EXPORT_SYMBOL vmlinux 0x0e058745 save_mount_options +EXPORT_SYMBOL vmlinux 0x0e27d379 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x0e35e520 neigh_xmit +EXPORT_SYMBOL vmlinux 0x0e446372 flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0e97b2e5 vga_get +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0eb79ecb xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x0eb86802 d_invalidate +EXPORT_SYMBOL vmlinux 0x0ec43238 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ec8622b pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x0ecd45a6 skb_insert +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0ef07e21 d_tmpfile +EXPORT_SYMBOL vmlinux 0x0ef20db1 kernstart_addr +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f0b4961 of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0x0f14804b pagecache_get_page +EXPORT_SYMBOL vmlinux 0x0f252296 kill_pgrp +EXPORT_SYMBOL vmlinux 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL vmlinux 0x0f36c129 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x0f47f6f2 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f512e37 keyring_search +EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f6a62e4 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x0f75d3b0 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f7c0f1b jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x0f8ae72c blk_queue_split +EXPORT_SYMBOL vmlinux 0x0f9bec0f neigh_table_init +EXPORT_SYMBOL vmlinux 0x0fa33257 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb0c9d0 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb357bf seq_release_private +EXPORT_SYMBOL vmlinux 0x0fbca5f4 bd_set_size +EXPORT_SYMBOL vmlinux 0x10119060 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x102a4719 __vfs_read +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108c1a6b ihold +EXPORT_SYMBOL vmlinux 0x10981bf9 irq_set_chip +EXPORT_SYMBOL vmlinux 0x109c9c90 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x10e24fa2 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x10edf05f inet_release +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x11057b50 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x112b3e15 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x11366ce4 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x114bd398 init_net +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 0x1194231c set_binfmt +EXPORT_SYMBOL vmlinux 0x1199793a phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11a3270e dev_close +EXPORT_SYMBOL vmlinux 0x11cd7e52 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x11f58a80 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11fcb379 init_special_inode +EXPORT_SYMBOL vmlinux 0x1202b7af truncate_pagecache +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x1222b8e6 elevator_init +EXPORT_SYMBOL vmlinux 0x1224e07b genphy_resume +EXPORT_SYMBOL vmlinux 0x12254a8b sk_ns_capable +EXPORT_SYMBOL vmlinux 0x125a5319 set_cached_acl +EXPORT_SYMBOL vmlinux 0x12681e47 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x12694197 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x127b8e48 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x1282a4a5 simple_rmdir +EXPORT_SYMBOL vmlinux 0x1286ccdf led_blink_set +EXPORT_SYMBOL vmlinux 0x12948595 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x129eeb32 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12be27c1 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x12d04923 validate_sp +EXPORT_SYMBOL vmlinux 0x12d843fc security_inode_init_security +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level +EXPORT_SYMBOL vmlinux 0x13081268 input_alloc_absinfo +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 0x13569800 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x137a0e08 dquot_destroy +EXPORT_SYMBOL vmlinux 0x13a64d18 sget_userns +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13fb0369 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x1407c6e7 kmap_prot +EXPORT_SYMBOL vmlinux 0x140d3a7d i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x142c69e6 fb_pan_display +EXPORT_SYMBOL vmlinux 0x142f83a7 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x143399f1 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x148fc710 inet_select_addr +EXPORT_SYMBOL vmlinux 0x149a6e15 make_kprojid +EXPORT_SYMBOL vmlinux 0x14a8cbab dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x14be876d have_submounts +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14ec0526 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x1519992e blk_get_request +EXPORT_SYMBOL vmlinux 0x1529d2e7 file_path +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x157fc693 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x15a313ce neigh_direct_output +EXPORT_SYMBOL vmlinux 0x15acc4cf seq_vprintf +EXPORT_SYMBOL vmlinux 0x15b7baaa of_node_put +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bc6f71 uart_match_port +EXPORT_SYMBOL vmlinux 0x15be8a8e param_get_short +EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token +EXPORT_SYMBOL vmlinux 0x16112685 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x161d0033 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x161dfc87 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x16378cb3 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x1651f276 tcp_poll +EXPORT_SYMBOL vmlinux 0x16540bbc __cmpdi2 +EXPORT_SYMBOL vmlinux 0x165cde2d sync_filesystem +EXPORT_SYMBOL vmlinux 0x165f67a3 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x165fca44 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x16645745 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x166e822a param_set_charp +EXPORT_SYMBOL vmlinux 0x16762384 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x167d5731 generic_write_end +EXPORT_SYMBOL vmlinux 0x1680478a fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete +EXPORT_SYMBOL vmlinux 0x168a7b5a set_bh_page +EXPORT_SYMBOL vmlinux 0x168cf911 nla_reserve +EXPORT_SYMBOL vmlinux 0x16994cfb param_set_invbool +EXPORT_SYMBOL vmlinux 0x16ba2fbe follow_down +EXPORT_SYMBOL vmlinux 0x16c837e6 dma_common_mmap +EXPORT_SYMBOL vmlinux 0x16c975d0 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x1706aceb __block_write_begin +EXPORT_SYMBOL vmlinux 0x171ee9df abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x172f0122 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x173d2d04 mmc_start_req +EXPORT_SYMBOL vmlinux 0x1744cb25 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x1746c232 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x174afb1a __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x17660058 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x1784e20f f_setown +EXPORT_SYMBOL vmlinux 0x17890a79 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x17897359 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x1793118e dquot_drop +EXPORT_SYMBOL vmlinux 0x17a11069 ip_options_compile +EXPORT_SYMBOL vmlinux 0x17aa156a __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17baeb80 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x17bd6121 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x17d5ce18 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x18042324 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x1813dfdd tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x1824cb3f __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x182e8043 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x18303ea0 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x183bdc39 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x185b7f62 netdev_info +EXPORT_SYMBOL vmlinux 0x186eb6e5 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18a0b1aa of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x18a3e588 force_sig +EXPORT_SYMBOL vmlinux 0x18b33842 bioset_create +EXPORT_SYMBOL vmlinux 0x18c2227f cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18e89320 pci_match_id +EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits +EXPORT_SYMBOL vmlinux 0x1961af8b cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x19630a3b md_write_end +EXPORT_SYMBOL vmlinux 0x196c1362 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x198972fb new_inode +EXPORT_SYMBOL vmlinux 0x198c2538 of_dev_put +EXPORT_SYMBOL vmlinux 0x198fc973 dst_discard_out +EXPORT_SYMBOL vmlinux 0x19935fe3 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x199e4e08 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x199ef36e tcp_proc_unregister +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 0x19c6f147 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x19d951d5 xfrm_input +EXPORT_SYMBOL vmlinux 0x19ef2b92 vme_master_request +EXPORT_SYMBOL vmlinux 0x1a077dfe d_find_any_alias +EXPORT_SYMBOL vmlinux 0x1a19d9aa dma_find_channel +EXPORT_SYMBOL vmlinux 0x1a1affdd vc_cons +EXPORT_SYMBOL vmlinux 0x1a1d1417 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x1a5b9b74 lro_receive_skb +EXPORT_SYMBOL vmlinux 0x1a99cc56 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x1aa9ce20 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x1ab75ab7 iput +EXPORT_SYMBOL vmlinux 0x1abfa75c mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x1add71a2 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x1ae52492 pci_enable_device +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b074f4d skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x1b0dc240 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b1dbaba arp_send +EXPORT_SYMBOL vmlinux 0x1b1fbab9 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x1b27a5e1 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x1b2e9e8b tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x1b590e6c netif_napi_del +EXPORT_SYMBOL vmlinux 0x1b5cc41c phy_disconnect +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b83d8f0 security_path_mknod +EXPORT_SYMBOL vmlinux 0x1b84958e vfs_setpos +EXPORT_SYMBOL vmlinux 0x1b85753f single_open +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1ba3676d eth_change_mtu +EXPORT_SYMBOL vmlinux 0x1bac7745 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x1baf298c xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x1bb12c94 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x1bb1dc39 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x1bb20617 d_drop +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bca2b59 load_fp_state +EXPORT_SYMBOL vmlinux 0x1bd38dab input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x1bd45c32 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x1bd6dbb0 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x1bf21cd1 param_ops_byte +EXPORT_SYMBOL vmlinux 0x1bf3874b iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x1bf728bc tcp_parse_options +EXPORT_SYMBOL vmlinux 0x1c023b3b devm_memunmap +EXPORT_SYMBOL vmlinux 0x1c12fb17 thaw_super +EXPORT_SYMBOL vmlinux 0x1c163a79 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x1c19c53e of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x1c2ab922 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x1c3be7cb km_is_alive +EXPORT_SYMBOL vmlinux 0x1c4d31b0 mach_chrp +EXPORT_SYMBOL vmlinux 0x1c5b2c15 pmu_wait_complete +EXPORT_SYMBOL vmlinux 0x1c74d78b kernel_write +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1c8278e5 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x1c86664f key_validate +EXPORT_SYMBOL vmlinux 0x1c86921d of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x1cb02396 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x1cd377a8 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x1d1758fd __nla_put +EXPORT_SYMBOL vmlinux 0x1d1df86c account_page_redirty +EXPORT_SYMBOL vmlinux 0x1d1fd775 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x1d3db7e4 kfree_put_link +EXPORT_SYMBOL vmlinux 0x1d4ae56f pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x1d5c550a blk_register_region +EXPORT_SYMBOL vmlinux 0x1d606bab submit_bio +EXPORT_SYMBOL vmlinux 0x1d69ab63 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x1d6df671 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x1d84cafd sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x1dbd325d truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1df45293 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x1e1b0312 bdget +EXPORT_SYMBOL vmlinux 0x1e24d3d4 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e3b6352 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x1e58809b audit_log_task_info +EXPORT_SYMBOL vmlinux 0x1e67c5dc registered_fb +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e702ce2 pci_pme_active +EXPORT_SYMBOL vmlinux 0x1e8502f2 md_error +EXPORT_SYMBOL vmlinux 0x1e8c12c2 param_ops_string +EXPORT_SYMBOL vmlinux 0x1e9107eb dm_register_target +EXPORT_SYMBOL vmlinux 0x1e94c977 get_super_thawed +EXPORT_SYMBOL vmlinux 0x1e9c62f9 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea91790 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x1ebb1ce2 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x1ec08e4e neigh_lookup +EXPORT_SYMBOL vmlinux 0x1ecf9128 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x1ed6a55d blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x1edab7dd dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x1ef10e8a sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x1f0e8562 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x1f5cf041 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x1f5fd9b5 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x1f6970e2 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f7f46d4 __free_pages +EXPORT_SYMBOL vmlinux 0x1f8df70a __ip_select_ident +EXPORT_SYMBOL vmlinux 0x1f922ec3 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x1fa1eba0 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x1fb42a85 try_to_release_page +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc7d889 pci_find_bus +EXPORT_SYMBOL vmlinux 0x1fcfbbe3 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe1dd87 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x1fe4be66 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1ff82cf8 __scm_destroy +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x20030ecd ioremap +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2011e061 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x20204880 get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0x2024482c fddi_type_trans +EXPORT_SYMBOL vmlinux 0x20413863 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x20421305 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x20483523 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2072c745 vme_register_driver +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x20964bbe serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x20b880a5 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x20bf2756 param_set_short +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20cdb4e1 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x21019586 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x21023aa7 kill_fasync +EXPORT_SYMBOL vmlinux 0x211fbb83 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x214156f2 input_open_device +EXPORT_SYMBOL vmlinux 0x21498e68 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x2157965d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x2161f377 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x217a7b12 complete_request_key +EXPORT_SYMBOL vmlinux 0x217f7278 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x2183de51 rwsem_wake +EXPORT_SYMBOL vmlinux 0x21852d71 dev_driver_string +EXPORT_SYMBOL vmlinux 0x2188e3d1 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x21892b0a get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x219fd50d generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x21aec03d pci_map_rom +EXPORT_SYMBOL vmlinux 0x21b9d287 tty_kref_put +EXPORT_SYMBOL vmlinux 0x21bf5b81 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x21dedf48 mntget +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x21fc94ae get_user_pages +EXPORT_SYMBOL vmlinux 0x22056fba security_path_chmod +EXPORT_SYMBOL vmlinux 0x22282071 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x22417aa7 blk_complete_request +EXPORT_SYMBOL vmlinux 0x22427d8c devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x2254c3a2 scsi_command_normalize_sense +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 0x22a11db9 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x22f4520c dquot_initialize +EXPORT_SYMBOL vmlinux 0x22f6554b tcp_sendpage +EXPORT_SYMBOL vmlinux 0x230946a4 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x232c6912 iget_locked +EXPORT_SYMBOL vmlinux 0x2334cb6b jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x23491513 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x234d3b41 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x234f5c0f call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x23635b3e bio_clone_fast +EXPORT_SYMBOL vmlinux 0x236b63d8 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x2374e222 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x23763516 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x23817ca6 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x238e929b bio_map_kern +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b07151 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23cb76e8 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x23e1ddac bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x23e30ac0 start_tty +EXPORT_SYMBOL vmlinux 0x23e3edd6 simple_open +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23fb5af3 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x23fe7755 nf_reinject +EXPORT_SYMBOL vmlinux 0x2401c264 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x241552e5 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x241d534b pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24344792 register_cdrom +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245d06ce twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x2461a175 sock_wake_async +EXPORT_SYMBOL vmlinux 0x2476b3e8 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x248c03e0 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x24ac6d40 __dst_free +EXPORT_SYMBOL vmlinux 0x24b03836 generic_show_options +EXPORT_SYMBOL vmlinux 0x24c15eb9 agp_copy_info +EXPORT_SYMBOL vmlinux 0x24ca9fd3 pci_find_capability +EXPORT_SYMBOL vmlinux 0x24cd164e nvm_end_io +EXPORT_SYMBOL vmlinux 0x24e4d437 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x24f00380 ida_init +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x2505e6ea pci_read_vpd +EXPORT_SYMBOL vmlinux 0x251dcd1e input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2527a087 vme_slave_set +EXPORT_SYMBOL vmlinux 0x255347e7 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25712a5c mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x25728329 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25a71253 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x25b59b66 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x25ba3220 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x25ba649a mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f3bd2e atomic64_xchg +EXPORT_SYMBOL vmlinux 0x260202cf tty_vhangup +EXPORT_SYMBOL vmlinux 0x261fe7a4 seq_printf +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc +EXPORT_SYMBOL vmlinux 0x2647d4a4 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x264a4a3a ether_setup +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x26568fc6 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x26767873 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x268d2f00 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x26a5e8eb rfkill_alloc +EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26c567e8 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26f074be scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x26f4e846 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x26feeb5f get_gendisk +EXPORT_SYMBOL vmlinux 0x2708fea7 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x272c9acd pmu_battery_count +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274f03b5 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x27591d45 free_netdev +EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above +EXPORT_SYMBOL vmlinux 0x277ded49 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27bb7db0 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27d5839e abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x280ecfea dev_change_flags +EXPORT_SYMBOL vmlinux 0x2812920a simple_transaction_set +EXPORT_SYMBOL vmlinux 0x2817a500 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28216a95 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x282c4dd1 kern_path_create +EXPORT_SYMBOL vmlinux 0x2850f3ef sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x2889979a kernel_getpeername +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 0x28d3aaa1 skb_queue_head +EXPORT_SYMBOL vmlinux 0x28d63291 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x28d6bf1b security_path_unlink +EXPORT_SYMBOL vmlinux 0x28deed1a __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x28e36b7b pci_platform_rom +EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x28f784f5 __debugger_break_match +EXPORT_SYMBOL vmlinux 0x29121703 security_mmap_file +EXPORT_SYMBOL vmlinux 0x291c622c peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x292a4651 down_read_trylock +EXPORT_SYMBOL vmlinux 0x294251d0 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x294671a8 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295efc30 follow_up +EXPORT_SYMBOL vmlinux 0x29669d90 page_symlink +EXPORT_SYMBOL vmlinux 0x297033c6 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x297c2be9 uart_resume_port +EXPORT_SYMBOL vmlinux 0x29865350 uart_register_driver +EXPORT_SYMBOL vmlinux 0x2996953b netif_napi_add +EXPORT_SYMBOL vmlinux 0x29b2e683 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x29c1588e dev_printk +EXPORT_SYMBOL vmlinux 0x29c8dc01 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x29e4b5aa blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x29e84f84 do_splice_to +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a0979bd __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x2a2c1c22 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a4b660c seq_hex_dump +EXPORT_SYMBOL vmlinux 0x2a4d10e4 __module_get +EXPORT_SYMBOL vmlinux 0x2a5d2df5 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x2a67fcaa jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x2a7cac99 pci_add_resource +EXPORT_SYMBOL vmlinux 0x2a810da3 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aa2b606 put_disk +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ab6ca39 sock_wfree +EXPORT_SYMBOL vmlinux 0x2ac0d64b commit_creds +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2acfc931 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x2ad0c7a5 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x2aff429e page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b12925d cpumask_next_and +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b429b5c netif_rx +EXPORT_SYMBOL vmlinux 0x2b78acdd scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x2b8f109e seq_path +EXPORT_SYMBOL vmlinux 0x2b93e586 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x2b94aaaa blk_sync_queue +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bad89ab dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x2bb7894a phy_print_status +EXPORT_SYMBOL vmlinux 0x2bbc3ea2 get_empty_filp +EXPORT_SYMBOL vmlinux 0x2bc1a700 register_netdevice +EXPORT_SYMBOL vmlinux 0x2bc74448 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x2bd6561e lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x2bfa45f4 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x2bfddb93 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x2c00a48e elv_add_request +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c29770b user_path_at_empty +EXPORT_SYMBOL vmlinux 0x2c4f7acf dst_alloc +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2c834377 __f_setown +EXPORT_SYMBOL vmlinux 0x2c9acccb d_alloc_name +EXPORT_SYMBOL vmlinux 0x2cb18c65 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x2cbfe752 scsi_init_io +EXPORT_SYMBOL vmlinux 0x2ce9c6de bio_copy_data +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d19d75b pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x2d21d096 vmap +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d48db5e dma_async_device_register +EXPORT_SYMBOL vmlinux 0x2d6e6574 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x2da2fde6 set_blocksize +EXPORT_SYMBOL vmlinux 0x2db73c28 vfs_readf +EXPORT_SYMBOL vmlinux 0x2dd56c50 vfs_mknod +EXPORT_SYMBOL vmlinux 0x2deee22c vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x2df2a00d bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x2df8345d pmac_register_agp_pm +EXPORT_SYMBOL vmlinux 0x2df8be10 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x2e062397 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e2dc3aa __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x2e2e2ca2 __alloc_skb +EXPORT_SYMBOL vmlinux 0x2e4f932a load_nls +EXPORT_SYMBOL vmlinux 0x2e71e344 __sb_end_write +EXPORT_SYMBOL vmlinux 0x2e8d342e blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x2eb486d5 macio_request_resource +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2efc7d98 pipe_lock +EXPORT_SYMBOL vmlinux 0x2f022d0e agp_create_memory +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f080900 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x2f141c0e vfs_whiteout +EXPORT_SYMBOL vmlinux 0x2f14d28e fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x2f2332be max8998_update_reg +EXPORT_SYMBOL vmlinux 0x2f2a7c70 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x2f3ccf09 generic_update_time +EXPORT_SYMBOL vmlinux 0x2f430e48 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f6c0a83 ns_capable +EXPORT_SYMBOL vmlinux 0x2f827e01 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x2fa3b37c xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fe0ac58 dquot_disable +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe7974d touch_buffer +EXPORT_SYMBOL vmlinux 0x2ff63a8c key_task_permission +EXPORT_SYMBOL vmlinux 0x300101c8 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x300f0ab2 kset_register +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x303f48ec devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x304bce80 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x304e87c4 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x30571aa3 rt6_lookup +EXPORT_SYMBOL vmlinux 0x306dfce6 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x308151ec sk_alloc +EXPORT_SYMBOL vmlinux 0x308be6e9 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x30927555 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x3094b0ef dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30c553ef scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x30d7f205 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x30f9da34 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x30fd65f8 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x310bf27b pci_assign_resource +EXPORT_SYMBOL vmlinux 0x311fca0b mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x312906ee scsi_execute +EXPORT_SYMBOL vmlinux 0x312e9690 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x315380fb inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x31822d6f tcf_register_action +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x3194b30c udplite_prot +EXPORT_SYMBOL vmlinux 0x319a1032 of_device_alloc +EXPORT_SYMBOL vmlinux 0x31a9e3eb mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x31bf9109 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x31d225ba padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x31db1d90 input_release_device +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x323cf7fc generic_listxattr +EXPORT_SYMBOL vmlinux 0x3247edcd brioctl_set +EXPORT_SYMBOL vmlinux 0x324d1da1 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x32609389 tso_build_data +EXPORT_SYMBOL vmlinux 0x326896ea __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x327b9c1b pmu_poll_adb +EXPORT_SYMBOL vmlinux 0x3280ba75 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x32d60538 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x3310c3ab tcp_ioctl +EXPORT_SYMBOL vmlinux 0x33133687 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x3322c568 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x33342f96 ab3100_event_register +EXPORT_SYMBOL vmlinux 0x333615ed ipv4_specific +EXPORT_SYMBOL vmlinux 0x333bf43a scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x3354d10c scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x336e47cd blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x337b483f page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x3387c954 put_filp +EXPORT_SYMBOL vmlinux 0x33aafdd1 netdev_alert +EXPORT_SYMBOL vmlinux 0x33af4368 seq_file_path +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c3d76e i2c_del_driver +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33e59dab sock_edemux +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f4e16b remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x3409c36d nf_hook_slow +EXPORT_SYMBOL vmlinux 0x340c5d69 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x340d5db8 param_ops_int +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x343b7b70 mdiobus_write +EXPORT_SYMBOL vmlinux 0x34449456 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x346e5818 simple_lookup +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x3476eb89 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x348d44dc nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a397e0 scmd_printk +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x350cf1e8 giveup_fpu +EXPORT_SYMBOL vmlinux 0x3511cb0e tcp_prot +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3517e0f2 agp_free_memory +EXPORT_SYMBOL vmlinux 0x351ce11e mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x3521befa nf_afinfo +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x35441b95 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x354a94b3 sock_register +EXPORT_SYMBOL vmlinux 0x35592193 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x355f8554 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3568f93e tcp_shutdown +EXPORT_SYMBOL vmlinux 0x3571b443 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x357a3950 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x3583e552 find_vma +EXPORT_SYMBOL vmlinux 0x35901272 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x3594ccba tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 +EXPORT_SYMBOL vmlinux 0x35e4481a file_update_time +EXPORT_SYMBOL vmlinux 0x35fbd6a1 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x360aaf31 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy +EXPORT_SYMBOL vmlinux 0x361ced9d jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x3635a621 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x3655d9ff qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x366344d2 d_path +EXPORT_SYMBOL vmlinux 0x366693df inet_add_offload +EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy +EXPORT_SYMBOL vmlinux 0x367244d9 blk_end_request +EXPORT_SYMBOL vmlinux 0x36781fe3 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x368d0ea4 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36bf013c dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x36d38dd0 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x36f33dfa skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x36fa8d1c blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x370c4e0b neigh_seq_start +EXPORT_SYMBOL vmlinux 0x371b7c5a netdev_crit +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x371dffe8 blk_free_tags +EXPORT_SYMBOL vmlinux 0x3728b656 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37567860 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x37594917 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x37603dd2 is_bad_inode +EXPORT_SYMBOL vmlinux 0x376a18dd tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x377333e4 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x3773a37b blk_finish_request +EXPORT_SYMBOL vmlinux 0x37998ed1 param_array_ops +EXPORT_SYMBOL vmlinux 0x37a60c02 tcf_em_register +EXPORT_SYMBOL vmlinux 0x37adaff6 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37b98d78 fb_get_mode +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37da7ff1 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x37e567d6 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37e7d890 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x37f6fee5 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0x380b58bf dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38615abe vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x38684627 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x386cdd77 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x3870318a invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x3882c98c bioset_free +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38aa9d8c pci_get_device +EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace +EXPORT_SYMBOL vmlinux 0x38d10179 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x38ef9596 vme_slot_num +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x39010d90 security_path_truncate +EXPORT_SYMBOL vmlinux 0x391b13a6 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x39248de3 flow_cache_fini +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d0b28 bdi_init +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3955cc91 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x395a8bf9 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x3960a592 of_get_address +EXPORT_SYMBOL vmlinux 0x3988067e skb_put +EXPORT_SYMBOL vmlinux 0x398a68df pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39baf0da unregister_key_type +EXPORT_SYMBOL vmlinux 0x39c08721 kobject_set_name +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x39da5b4b macio_dev_get +EXPORT_SYMBOL vmlinux 0x39e65041 generic_removexattr +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a1ec426 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x3a22fa93 get_phy_device +EXPORT_SYMBOL vmlinux 0x3a3e5691 sync_inode +EXPORT_SYMBOL vmlinux 0x3a41ca6f blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x3a459db8 pci_device_from_OF_node +EXPORT_SYMBOL vmlinux 0x3a5dab68 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x3a69add2 napi_disable +EXPORT_SYMBOL vmlinux 0x3a7f60c7 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x3a923f50 arp_xmit +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3ae42c38 kthread_bind +EXPORT_SYMBOL vmlinux 0x3aef3674 fb_blank +EXPORT_SYMBOL vmlinux 0x3b05a9bb inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x3b10b4df vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x3b203b7a scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x3b2bd2ca jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x3b31fe91 input_allocate_device +EXPORT_SYMBOL vmlinux 0x3b35e6eb tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x3b3bdff9 ilookup +EXPORT_SYMBOL vmlinux 0x3b53e0db skb_clone_sk +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b90b7e9 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x3ba07d71 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x3bb5d441 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x3bc362c3 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x3be149ec skb_push +EXPORT_SYMBOL vmlinux 0x3bf491a3 sock_no_accept +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c42056e request_key_async +EXPORT_SYMBOL vmlinux 0x3c5ce94a inode_set_flags +EXPORT_SYMBOL vmlinux 0x3c652b24 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3c738fe1 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x3c7b50ff ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c80f7a6 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x3c91e06f fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x3ca4f33d mmc_free_host +EXPORT_SYMBOL vmlinux 0x3cacd361 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x3cb0ae7d vme_lm_request +EXPORT_SYMBOL vmlinux 0x3cc10cc3 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init +EXPORT_SYMBOL vmlinux 0x3ccbbf08 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x3cd3c653 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x3cd631ad ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cef0540 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x3d5422db ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x3d6e1210 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x3d8fb41a lookup_bdev +EXPORT_SYMBOL vmlinux 0x3dbfe4dc dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x3dc3003b security_d_instantiate +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3df0d5d6 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dfe4519 security_inode_readlink +EXPORT_SYMBOL vmlinux 0x3e26abb6 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x3e749d5c scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3ea56c01 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x3edc36fb of_phy_attach +EXPORT_SYMBOL vmlinux 0x3ee26604 tc_classify +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f0e0fbe skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x3f220d2a mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x3f2954d9 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x3f29911b blk_start_queue +EXPORT_SYMBOL vmlinux 0x3f3772b4 cdrom_release +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f42f929 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4a76c3 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x3f67ab53 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x3f67e05a flush_dcache_page +EXPORT_SYMBOL vmlinux 0x3fa336a3 param_get_int +EXPORT_SYMBOL vmlinux 0x3faaf616 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x3fafd370 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x3fb1cf71 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free +EXPORT_SYMBOL vmlinux 0x3fe2483c xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x3ff5ee13 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x400c653c dev_addr_flush +EXPORT_SYMBOL vmlinux 0x40136648 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x401eb03a page_follow_link_light +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x4085a51c abx500_register_ops +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 0x40ac4f07 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x40b87736 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x40b8b1c7 __devm_release_region +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 0x40f1ad10 tb_ticks_per_jiffy +EXPORT_SYMBOL vmlinux 0x40f5b86e blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x40f7fd57 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x40ffd803 padata_add_cpu +EXPORT_SYMBOL vmlinux 0x41060ce6 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x4119d392 macio_release_resource +EXPORT_SYMBOL vmlinux 0x4136742a param_get_charp +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41599fda pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x418cad4d tty_do_resize +EXPORT_SYMBOL vmlinux 0x419e61a3 phy_detach +EXPORT_SYMBOL vmlinux 0x419f0c62 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x41a63498 skb_trim +EXPORT_SYMBOL vmlinux 0x41b7ef22 read_cache_pages +EXPORT_SYMBOL vmlinux 0x41c6f258 single_release +EXPORT_SYMBOL vmlinux 0x41ccb7e2 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x41cdb163 vme_bus_num +EXPORT_SYMBOL vmlinux 0x41d2b569 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x41d9bcd9 mount_nodev +EXPORT_SYMBOL vmlinux 0x41ea6ff2 bh_submit_read +EXPORT_SYMBOL vmlinux 0x42020c7f generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x420f118a vfs_mkdir +EXPORT_SYMBOL vmlinux 0x42153f00 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421a4c59 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42585e32 of_get_pci_address +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x4263cc34 serio_close +EXPORT_SYMBOL vmlinux 0x4285feca tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x429be6d3 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42ee7929 param_set_int +EXPORT_SYMBOL vmlinux 0x42fce228 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43079564 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x430db09e blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x43119206 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x43209879 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x439742ae touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43d0d082 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x43d95d9a __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x43e7c0b3 simple_readpage +EXPORT_SYMBOL vmlinux 0x43e87ddb mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43fded54 tty_port_close +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x44274c6f security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x44520d49 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x4457640f mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x44676565 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x447a1129 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x448de3ce inet6_del_offload +EXPORT_SYMBOL vmlinux 0x448fea75 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44ca4019 __get_user_pages +EXPORT_SYMBOL vmlinux 0x44d3341b __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x44e1783a ip_defrag +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x4527dda2 dcb_getapp +EXPORT_SYMBOL vmlinux 0x452c8b21 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x453a9ff2 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4568c217 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457ce98f dev_disable_lro +EXPORT_SYMBOL vmlinux 0x458d89df udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x45a504a3 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x45a59648 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x45a98c5f swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x45ad2ea5 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x45b5cb62 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x45b70b32 misc_deregister +EXPORT_SYMBOL vmlinux 0x45db4a39 kmap_high +EXPORT_SYMBOL vmlinux 0x45e77b8a twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x45e78e85 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x45eb15ad __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x45f0f267 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x46026532 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock +EXPORT_SYMBOL vmlinux 0x4618b795 get_agp_version +EXPORT_SYMBOL vmlinux 0x461e67e6 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x462345e1 xmon +EXPORT_SYMBOL vmlinux 0x46288cd9 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x462ba9de tcp_proc_register +EXPORT_SYMBOL vmlinux 0x463aa347 vfs_writev +EXPORT_SYMBOL vmlinux 0x463e7951 bio_reset +EXPORT_SYMBOL vmlinux 0x464756fb keyring_alloc +EXPORT_SYMBOL vmlinux 0x4647d6de ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x465757c3 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x465eb4ce scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466ae863 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x466e7470 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x46713b46 __kfree_skb +EXPORT_SYMBOL vmlinux 0x469e452f elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x46c5b716 machine_id +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46d5fbf1 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x46e68924 dump_page +EXPORT_SYMBOL vmlinux 0x46eb11d2 security_path_symlink +EXPORT_SYMBOL vmlinux 0x46f2a2cd inet_frags_fini +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x4708d6a0 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x47142871 param_get_invbool +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x475ca2da __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x475e1d57 sock_from_file +EXPORT_SYMBOL vmlinux 0x47608718 fence_init +EXPORT_SYMBOL vmlinux 0x476522dc security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x47672222 tcf_hash_create +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479658e0 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a18f0e d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x47a42d3e input_register_handle +EXPORT_SYMBOL vmlinux 0x47ba3a31 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x47ecfd03 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x47ee422f kunmap_high +EXPORT_SYMBOL vmlinux 0x481ce6ce cpu_active_mask +EXPORT_SYMBOL vmlinux 0x482e036e nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x483472cc get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x483da8a0 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x48647c0b vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x48802f83 generic_setlease +EXPORT_SYMBOL vmlinux 0x4881efab pmac_get_partition +EXPORT_SYMBOL vmlinux 0x488de002 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48d089d8 serio_interrupt +EXPORT_SYMBOL vmlinux 0x48efe50e skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x49028ba2 pci_get_class +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4909b841 padata_free +EXPORT_SYMBOL vmlinux 0x491c71af shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x492cdf7a bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x49516db9 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x4953b154 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x49ad0f60 noop_llseek +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b82512 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x49bef365 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x49d75362 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x49dab9ef agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x49dfd6f2 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a032580 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x4a0458d8 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x4a31817c nonseekable_open +EXPORT_SYMBOL vmlinux 0x4a6afd80 param_ops_charp +EXPORT_SYMBOL vmlinux 0x4a7a34d3 ps2_drain +EXPORT_SYMBOL vmlinux 0x4a82cd86 __invalidate_device +EXPORT_SYMBOL vmlinux 0x4a8e0f35 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x4a914ddb pci_dev_driver +EXPORT_SYMBOL vmlinux 0x4aa22c72 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x4aa2e44a trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x4aa9d49f blk_run_queue +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4acdebfa tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x4ad189e7 dquot_enable +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b027fd8 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b0af8d9 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x4b0fdc56 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x4b1aaebf tcp_child_process +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b32990f netlink_unicast +EXPORT_SYMBOL vmlinux 0x4b4d0b78 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x4b532d36 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x4b540062 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove +EXPORT_SYMBOL vmlinux 0x4ba978d5 genphy_update_link +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat +EXPORT_SYMBOL vmlinux 0x4bbd22da mpage_writepage +EXPORT_SYMBOL vmlinux 0x4bbf51a9 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4beb5208 dump_skip +EXPORT_SYMBOL vmlinux 0x4bec194b mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x4bfa5f98 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x4c040837 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c1facdd phy_device_free +EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c34d6f6 prepare_creds +EXPORT_SYMBOL vmlinux 0x4c388446 tcp_filter +EXPORT_SYMBOL vmlinux 0x4c43c09f remove_arg_zero +EXPORT_SYMBOL vmlinux 0x4c45f7c0 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x4c634e2e d_set_fallthru +EXPORT_SYMBOL vmlinux 0x4c911f76 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x4c9d5dfe simple_empty +EXPORT_SYMBOL vmlinux 0x4cda974d xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4d154a48 vfs_symlink +EXPORT_SYMBOL vmlinux 0x4d1c6e1c inet6_ioctl +EXPORT_SYMBOL vmlinux 0x4d24211f alloc_fcdev +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d4af807 vm_map_ram +EXPORT_SYMBOL vmlinux 0x4d50acac jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x4d6bd746 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize +EXPORT_SYMBOL vmlinux 0x4d7933d0 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x4d7dab7b dquot_quota_off +EXPORT_SYMBOL vmlinux 0x4d83b295 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x4d83f2ce elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x4d91b2d1 netif_device_attach +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d975c18 serio_open +EXPORT_SYMBOL vmlinux 0x4d995cd6 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da3417f may_umount_tree +EXPORT_SYMBOL vmlinux 0x4da7f6ce mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x4dae8456 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x4db7bfdb neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x4ddc0cd1 tcp_connect +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df18085 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x4e0f0d43 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x4e2de38d end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e4255a0 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x4e60b1c2 console_start +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e713b77 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x4e7b0035 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x4e882d12 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x4e882d86 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum +EXPORT_SYMBOL vmlinux 0x4eac2a62 mdiobus_free +EXPORT_SYMBOL vmlinux 0x4ec0bec3 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x4ee11bdb sk_capable +EXPORT_SYMBOL vmlinux 0x4ee6ced0 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x4f10beac fb_set_suspend +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f35b89f sock_update_memcg +EXPORT_SYMBOL vmlinux 0x4f385ddb pcie_get_mps +EXPORT_SYMBOL vmlinux 0x4f3888f3 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f817ccd zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x4fa9ed1a __break_lease +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe82059 flush_icache_user_range +EXPORT_SYMBOL vmlinux 0x4fe99583 atomic64_dec_if_positive +EXPORT_SYMBOL vmlinux 0x50084f7b simple_statfs +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x501a5972 set_nlink +EXPORT_SYMBOL vmlinux 0x502448b2 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x5029905b block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x50555e99 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x50672f1b netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x506eb23c kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x50827faa __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit +EXPORT_SYMBOL vmlinux 0x50a294db devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x50d0778c i2c_master_send +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50ef2ba9 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x512334aa mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x515c0e73 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x515e24a7 flush_instruction_cache +EXPORT_SYMBOL vmlinux 0x5184ca59 simple_follow_link +EXPORT_SYMBOL vmlinux 0x518d8af1 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x51bdde2d scsi_print_result +EXPORT_SYMBOL vmlinux 0x51c6daf8 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x51e87a90 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x520b3869 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x52111bb6 d_delete +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x521d054b __dquot_transfer +EXPORT_SYMBOL vmlinux 0x523223fd devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x5233bd03 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x523a614d swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x52573846 ps2_command +EXPORT_SYMBOL vmlinux 0x525bc09d page_readlink +EXPORT_SYMBOL vmlinux 0x5270ffa1 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x5271a59d skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x527830ff pmac_xpram_read +EXPORT_SYMBOL vmlinux 0x5283b3d1 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52b7e59b inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x52c09aea dquot_resume +EXPORT_SYMBOL vmlinux 0x52d8a825 cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53198adc ppp_register_channel +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x53492bcb generic_setxattr +EXPORT_SYMBOL vmlinux 0x5353af70 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x535ae4ce skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x5391eac6 pci_clear_master +EXPORT_SYMBOL vmlinux 0x53940269 inet_del_offload +EXPORT_SYMBOL vmlinux 0x53a3ba9b blk_end_request_all +EXPORT_SYMBOL vmlinux 0x53b1723a xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x53bac49d tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x53beed52 up_write +EXPORT_SYMBOL vmlinux 0x53c86e7f sg_miter_start +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x53eef137 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x53f3ae1c input_set_keycode +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x540c06d0 __serio_register_port +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x541adac4 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x5421c069 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x54327150 kernel_bind +EXPORT_SYMBOL vmlinux 0x5436e9af key_alloc +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54454895 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x54525438 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x545ac7c2 pid_task +EXPORT_SYMBOL vmlinux 0x5473af99 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x54a45022 iget_failed +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b59956 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x55011318 lwtunnel_output +EXPORT_SYMBOL vmlinux 0x550ea28a eth_validate_addr +EXPORT_SYMBOL vmlinux 0x5518a869 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x553842c5 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x5541a3d1 sg_miter_next +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x55467ede fsl_upm_find +EXPORT_SYMBOL vmlinux 0x554e996a generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x555b4dfb jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x55601649 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x5566fc81 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5568c553 complete +EXPORT_SYMBOL vmlinux 0x5571285f bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table +EXPORT_SYMBOL vmlinux 0x5581f913 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x5583f44f __bread_gfp +EXPORT_SYMBOL vmlinux 0x5586efd4 param_set_bint +EXPORT_SYMBOL vmlinux 0x5596476a scsi_remove_host +EXPORT_SYMBOL vmlinux 0x55b4df75 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x55b89908 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x55bfd04c unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x55d214c0 build_skb +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55f2589c ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x55f88065 ppp_input +EXPORT_SYMBOL vmlinux 0x5605927a fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x562caf4b mach_powermac +EXPORT_SYMBOL vmlinux 0x56318c75 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x563204b9 __get_page_tail +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x563ede40 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x5655e705 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x5662f8ba sock_rfree +EXPORT_SYMBOL vmlinux 0x5666220f of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x566a0e7f kernel_param_lock +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56e0ac38 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x56e3bb59 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x570109f2 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x570797db nf_log_packet +EXPORT_SYMBOL vmlinux 0x57084032 inet_sendpage +EXPORT_SYMBOL vmlinux 0x572574f7 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x572620ff unregister_console +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x57350a9e inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x573714da pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x573cc55c phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575d24ff setup_arg_pages +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x576d55fc seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x5781df48 pci_choose_state +EXPORT_SYMBOL vmlinux 0x57840434 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x5785e18f mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x57a7a142 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x57aa4e26 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x57b2bde2 request_firmware +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57d291d4 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x57d7183f tty_mutex +EXPORT_SYMBOL vmlinux 0x5808237d file_open_root +EXPORT_SYMBOL vmlinux 0x5809ecfe udp_ioctl +EXPORT_SYMBOL vmlinux 0x5819595b scsi_device_get +EXPORT_SYMBOL vmlinux 0x581da564 put_io_context +EXPORT_SYMBOL vmlinux 0x581ef14f filemap_map_pages +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582c53ff security_path_rmdir +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x5842d4dc phy_suspend +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x585fc4ef ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x58623807 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x5882fbd7 free_user_ns +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x5907a730 phy_stop +EXPORT_SYMBOL vmlinux 0x591241d0 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x591577d5 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x5927b11b input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x5961885d ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x597d5925 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59959ed6 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59ce1a85 netlink_set_err +EXPORT_SYMBOL vmlinux 0x59d8223a ioport_resource +EXPORT_SYMBOL vmlinux 0x59e2689d ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x59f85486 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x59f8e632 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a17a51d mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x5a445fe8 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x5a4c2ca8 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x5a759c78 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x5a9e660f swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b0a0b8a from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b207cc3 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x5b277cb7 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x5b3994ae ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present +EXPORT_SYMBOL vmlinux 0x5b443cf6 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x5b44826b mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x5b784586 fsync_bdev +EXPORT_SYMBOL vmlinux 0x5b9524fa sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5b9dddee con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x5b9f6c92 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x5bb9daec __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x5bbfd225 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x5bc0c1e5 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x5c1bdd76 neigh_update +EXPORT_SYMBOL vmlinux 0x5c265cba sg_init_one +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c52aad6 km_query +EXPORT_SYMBOL vmlinux 0x5c75ccf9 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x5c7d9e15 dump_align +EXPORT_SYMBOL vmlinux 0x5ca3ed6d netdev_printk +EXPORT_SYMBOL vmlinux 0x5ca81915 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x5cb38fa6 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x5cb4ed15 skb_make_writable +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5cd1fc62 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d057243 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x5d0754c5 d_walk +EXPORT_SYMBOL vmlinux 0x5d23e5a3 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x5d366fb3 noop_fsync +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d56c30d devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x5d689037 seq_read +EXPORT_SYMBOL vmlinux 0x5d689902 pci_dev_get +EXPORT_SYMBOL vmlinux 0x5d69e838 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x5d774e3a input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x5dd40304 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x5df02bbe fb_show_logo +EXPORT_SYMBOL vmlinux 0x5e0dbe12 of_device_register +EXPORT_SYMBOL vmlinux 0x5e1b9a2f macio_enable_devres +EXPORT_SYMBOL vmlinux 0x5e27321b register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x5e27d031 kernel_accept +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e59f0f5 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x5e68e007 kern_path +EXPORT_SYMBOL vmlinux 0x5e6eacf1 input_reset_device +EXPORT_SYMBOL vmlinux 0x5e709309 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x5e7af178 twl6040_power +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e91efb3 dev_get_by_index_rcu +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 0x5ec7fa14 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed0708b of_node_get +EXPORT_SYMBOL vmlinux 0x5eda10e2 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x5ee89f75 prepare_binprm +EXPORT_SYMBOL vmlinux 0x5eea7b7e vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f09b4aa blk_put_request +EXPORT_SYMBOL vmlinux 0x5f256126 sk_wait_data +EXPORT_SYMBOL vmlinux 0x5f586c70 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x5f5e9fcb md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5fa4b1c8 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fe724aa blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x5fed45f3 d_move +EXPORT_SYMBOL vmlinux 0x5fee344b tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x5ff6f7e0 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600d0662 truncate_setsize +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6037d77a up_read +EXPORT_SYMBOL vmlinux 0x603bfbee devm_ioport_map +EXPORT_SYMBOL vmlinux 0x60482e88 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x605edffb mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x606c994e security_task_getsecid +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 0x60bf57d5 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x60c2b309 PDE_DATA +EXPORT_SYMBOL vmlinux 0x60c825d4 __scm_send +EXPORT_SYMBOL vmlinux 0x60cf6961 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x60d89c59 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x60dcc0c9 keyring_clear +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60f4da9d pci_select_bars +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61427140 drop_super +EXPORT_SYMBOL vmlinux 0x6146e58a of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x615709c0 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x6169d5de devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x616b825d dql_init +EXPORT_SYMBOL vmlinux 0x616ef0ee kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x61747055 of_root +EXPORT_SYMBOL vmlinux 0x617624f8 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x617fbf00 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x618d14e7 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x61937f0d iov_iter_npages +EXPORT_SYMBOL vmlinux 0x619aaded pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x61abe039 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x61b34954 key_put +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61dc3b91 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x61f0f555 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x61fd623d netdev_features_change +EXPORT_SYMBOL vmlinux 0x620fa979 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6225b152 inet_addr_type +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x623a4273 skb_pull +EXPORT_SYMBOL vmlinux 0x623d7182 _chrp_type +EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss +EXPORT_SYMBOL vmlinux 0x625396f4 vga_tryget +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 0x628f28a8 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x62aa4cfa kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x62b65b22 copy_to_iter +EXPORT_SYMBOL vmlinux 0x62e974a0 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x62f4a2d6 block_truncate_page +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x633a715d inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x633d39a6 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x63460a5f __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x6347f46a skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x634f97e6 blk_make_request +EXPORT_SYMBOL vmlinux 0x6362c033 tty_lock +EXPORT_SYMBOL vmlinux 0x637d373b xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x6381c383 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x63888e8a gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x638f89c9 agp_enable +EXPORT_SYMBOL vmlinux 0x639e7333 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63cec642 dev_set_group +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 0x645fa519 param_get_string +EXPORT_SYMBOL vmlinux 0x646cc6ab pmu_poll +EXPORT_SYMBOL vmlinux 0x646d475f sk_common_release +EXPORT_SYMBOL vmlinux 0x6476300c ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a2d9ae scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x64b5809d dev_load +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x6530077d dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x65367f98 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x65400222 __irq_offset_value +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65462940 mmc_release_host +EXPORT_SYMBOL vmlinux 0x655b052d default_llseek +EXPORT_SYMBOL vmlinux 0x656a7505 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x659c0c68 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x65a3db4b netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x65a3ecc7 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x65a7fe27 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x65b6deeb nf_log_trace +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65bf6ede i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x65c02207 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x65d555a4 override_creds +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 0x6602f97f kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x66227eae vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x6640b5dc remove_proc_entry +EXPORT_SYMBOL vmlinux 0x666c937a rtas +EXPORT_SYMBOL vmlinux 0x66865949 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x668ea055 seq_lseek +EXPORT_SYMBOL vmlinux 0x6691f127 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x66ad5d6a mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x66cbf14b pmac_xpram_write +EXPORT_SYMBOL vmlinux 0x66d1d638 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x67053e95 audit_log_start +EXPORT_SYMBOL vmlinux 0x672882b2 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x672bc0b6 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6766e2b2 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x677f0270 param_get_ushort +EXPORT_SYMBOL vmlinux 0x6781d362 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x679b0ace tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x67a11d9e tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x67ac1022 inet_offloads +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67db15d4 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x67e4d2de poll_initwait +EXPORT_SYMBOL vmlinux 0x67fc0f78 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680f3933 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x680ffd27 freeze_bdev +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x6860ed80 give_up_console +EXPORT_SYMBOL vmlinux 0x6862d131 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a2f801 wireless_send_event +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68dbd95a abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x6902825e devm_free_irq +EXPORT_SYMBOL vmlinux 0x6907ef13 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x6946864d udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x695ad1e9 inet6_release +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6996d66f cfb_fillrect +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a73a86 proc_set_user +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69d7e5b8 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x69d7f05f sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0e3660 input_close_device +EXPORT_SYMBOL vmlinux 0x6a194413 init_task +EXPORT_SYMBOL vmlinux 0x6a3e34de mutex_unlock +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a67f812 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a800f48 phy_device_remove +EXPORT_SYMBOL vmlinux 0x6a8d909e i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x6a9f7106 simple_setattr +EXPORT_SYMBOL vmlinux 0x6aaab608 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6ae86577 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x6aecb33f generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af6c4d4 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x6afe9d71 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x6afef33a zero_fill_bio +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b081048 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x6b092774 pci_disable_device +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b333d53 pci_iounmap +EXPORT_SYMBOL vmlinux 0x6b4140eb xattr_full_name +EXPORT_SYMBOL vmlinux 0x6b648a8d __check_sticky +EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free +EXPORT_SYMBOL vmlinux 0x6b7cf6a1 misc_register +EXPORT_SYMBOL vmlinux 0x6bc05424 do_SAK +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc9c3ec filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x6bd6fe2f devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c1d2037 arp_tbl +EXPORT_SYMBOL vmlinux 0x6c22bc86 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x6c2fca18 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x6c334e73 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x6c3deec4 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c543ba9 path_noexec +EXPORT_SYMBOL vmlinux 0x6c5a1a9f i2c_use_client +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c7aec4f input_set_abs_params +EXPORT_SYMBOL vmlinux 0x6c9ce767 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x6c9dc32f tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x6ca1d1a4 atomic64_read +EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear +EXPORT_SYMBOL vmlinux 0x6cbb9323 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x6cbd90f0 acl_by_type +EXPORT_SYMBOL vmlinux 0x6cc42b6d security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x6cc6035c kill_block_super +EXPORT_SYMBOL vmlinux 0x6cceb9ea ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x6cdb2440 component_match_add +EXPORT_SYMBOL vmlinux 0x6cdb66e6 simple_fill_super +EXPORT_SYMBOL vmlinux 0x6cdb75d0 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6ce4fd3c alloc_file +EXPORT_SYMBOL vmlinux 0x6ce8ea1d skb_queue_purge +EXPORT_SYMBOL vmlinux 0x6cf1e674 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d3a2335 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x6d5b7e57 dev_get_stats +EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put +EXPORT_SYMBOL vmlinux 0x6d78860f scsi_block_requests +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6db73172 register_key_type +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6def6484 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e08c0ba in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x6e136412 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x6e1dbd1c nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x6e3b819f sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x6e6364d0 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e8b7554 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x6e9ae048 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6e9e61d2 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x6eb6a15c devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x6eb74dff proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x6ee64084 current_fs_time +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f281337 dget_parent +EXPORT_SYMBOL vmlinux 0x6f430d18 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x6f600272 get_task_io_context +EXPORT_SYMBOL vmlinux 0x6f79ca24 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f9eab8f posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x6fabfd85 phy_connect +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fe682bb inet_getname +EXPORT_SYMBOL vmlinux 0x6fffa28b of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x7000685f __i2c_transfer +EXPORT_SYMBOL vmlinux 0x7015daec padata_do_parallel +EXPORT_SYMBOL vmlinux 0x701bf2cf tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x701ddb36 udp_proc_register +EXPORT_SYMBOL vmlinux 0x70335774 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x705dddb3 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x706a93bd freezing_slow_path +EXPORT_SYMBOL vmlinux 0x706cade4 padata_alloc +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x707d935a serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x709fcf43 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x70d888b7 __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x70e9544b generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x70ec9605 dev_get_flags +EXPORT_SYMBOL vmlinux 0x70ed7457 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x70eea24c register_filesystem +EXPORT_SYMBOL vmlinux 0x70f07f28 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x70f2aef5 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x70f86c70 pmu_queue_request +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x70fa8302 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x7102e162 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x71045e95 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x710c4f72 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x71140c96 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x71278d93 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x7138257b gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x71499746 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x7150f160 update_devfreq +EXPORT_SYMBOL vmlinux 0x715627fc rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7172b0e5 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x719beda1 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x71a4b4fe pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71cd9175 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x71e47ffa block_write_end +EXPORT_SYMBOL vmlinux 0x71f56b05 phy_attach +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x71fa6a43 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0x71fbab9f uart_suspend_port +EXPORT_SYMBOL vmlinux 0x71fbd58e macio_unregister_driver +EXPORT_SYMBOL vmlinux 0x7212a9bd xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x721d8a9d invalidate_partition +EXPORT_SYMBOL vmlinux 0x7253dc32 pipe_unlock +EXPORT_SYMBOL vmlinux 0x7259472e update_region +EXPORT_SYMBOL vmlinux 0x726d26c8 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x726f204d bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x728c3495 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x729121bd dev_get_by_index +EXPORT_SYMBOL vmlinux 0x72a0e6f2 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x72a8dbbc sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x72bcb932 sock_no_connect +EXPORT_SYMBOL vmlinux 0x72c9414c qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x72d0af83 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72da6ccc dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f0ab7f __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x7310784b ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x73276975 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x732a5f9e lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x734ad79b dump_truncate +EXPORT_SYMBOL vmlinux 0x7354e78c fb_class +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x73710a3e dqstats +EXPORT_SYMBOL vmlinux 0x7387a76b soft_cursor +EXPORT_SYMBOL vmlinux 0x73944fc5 block_commit_write +EXPORT_SYMBOL vmlinux 0x73979de6 atomic64_or +EXPORT_SYMBOL vmlinux 0x73b2b427 mdiobus_read +EXPORT_SYMBOL vmlinux 0x73e16ee0 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7424526f __bforget +EXPORT_SYMBOL vmlinux 0x74486c3e page_waitqueue +EXPORT_SYMBOL vmlinux 0x745a817e udp_disconnect +EXPORT_SYMBOL vmlinux 0x745cf637 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x74676b83 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x749d5b46 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x74a42307 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x74b79e1d input_unregister_handler +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c57b98 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x74da3f01 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x74db4645 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x74e0b51f file_ns_capable +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74fa7dd5 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x74fe8730 sys_ctrler +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x75151c66 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x75215fa9 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x755b7e87 posix_lock_file +EXPORT_SYMBOL vmlinux 0x756dd160 start_thread +EXPORT_SYMBOL vmlinux 0x7573c628 skb_store_bits +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x75a04243 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x75abe349 input_register_handler +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75c7e925 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x75d3cecc tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x75e387d9 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x75fd5185 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x76085e2c vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x762bbae4 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x76368ab5 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x76392385 register_gifconf +EXPORT_SYMBOL vmlinux 0x763f5f5e skb_copy_expand +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765c9cd2 __pagevec_release +EXPORT_SYMBOL vmlinux 0x768d01dc netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x76ae215a __nla_reserve +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d86e9f pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76ed1239 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x7729516c path_put +EXPORT_SYMBOL vmlinux 0x773d831b __skb_get_hash +EXPORT_SYMBOL vmlinux 0x775a130e __sg_free_table +EXPORT_SYMBOL vmlinux 0x7765efcf block_invalidatepage +EXPORT_SYMBOL vmlinux 0x77707d0f from_kuid +EXPORT_SYMBOL vmlinux 0x778bf46f rtnl_create_link +EXPORT_SYMBOL vmlinux 0x7796ce95 replace_mount_options +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779b0871 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77bc87d6 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x77c5b715 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x77cfb2db generic_perform_write +EXPORT_SYMBOL vmlinux 0x77e0f9a4 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x77fa180a forget_cached_acl +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 0x784a42fe dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x7850981b audit_log +EXPORT_SYMBOL vmlinux 0x7850983a genl_notify +EXPORT_SYMBOL vmlinux 0x7858c052 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x7862b280 simple_write_end +EXPORT_SYMBOL vmlinux 0x786af2e1 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x7876678c neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788fe103 iomem_resource +EXPORT_SYMBOL vmlinux 0x78918dda __register_chrdev +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78b7705d key_link +EXPORT_SYMBOL vmlinux 0x78bc7730 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e94b95 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x78efd418 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x793fbc41 genlmsg_put +EXPORT_SYMBOL vmlinux 0x794dfc29 phy_device_register +EXPORT_SYMBOL vmlinux 0x7964836e param_set_ushort +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x79a3f397 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79bb3230 nobh_write_end +EXPORT_SYMBOL vmlinux 0x79d7bc8b padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x7a023a7a try_module_get +EXPORT_SYMBOL vmlinux 0x7a0edfc1 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a37a8ba fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a4ca737 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x7a4f8f6f of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x7a5721ae install_exec_creds +EXPORT_SYMBOL vmlinux 0x7a78b5be vme_dma_request +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a961ff7 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x7a9a5ae5 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x7a9c24af ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa9364b load_nls_default +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abc5e3d of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x7ac20b70 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7af34bcb thaw_bdev +EXPORT_SYMBOL vmlinux 0x7af7250d dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b2b2ca8 ata_print_version +EXPORT_SYMBOL vmlinux 0x7b43f84c con_copy_unimap +EXPORT_SYMBOL vmlinux 0x7b574fcf path_is_under +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b724abb inet_frag_find +EXPORT_SYMBOL vmlinux 0x7b76132d swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x7b97c4bc ata_port_printk +EXPORT_SYMBOL vmlinux 0x7b9d725e lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x7be4827c pci_dram_offset +EXPORT_SYMBOL vmlinux 0x7bedccc3 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x7bff3baf of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c00f72f ilookup5 +EXPORT_SYMBOL vmlinux 0x7c02b2e2 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c2ebc7b devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x7c3193fc __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x7c376a82 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c4f4e61 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x7c5100b2 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x7c67a8f3 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x7c6dd46c inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x7c70b922 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x7c7d0cda eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cba5e5b ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x7cba7673 iunique +EXPORT_SYMBOL vmlinux 0x7cbbfc35 macio_register_driver +EXPORT_SYMBOL vmlinux 0x7cd6ade6 mmc_request_done +EXPORT_SYMBOL vmlinux 0x7cdd5db1 md_done_sync +EXPORT_SYMBOL vmlinux 0x7ce12176 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce19e7f inet_ioctl +EXPORT_SYMBOL vmlinux 0x7cf32f95 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf72482 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x7cf8bba0 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d74c188 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x7d77df46 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x7d916b4f mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x7d9d6f34 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x7da91e4a scsi_dma_map +EXPORT_SYMBOL vmlinux 0x7dadfba8 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x7db16054 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max +EXPORT_SYMBOL vmlinux 0x7dd7ec74 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e006d40 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x7e01cf8b inode_init_once +EXPORT_SYMBOL vmlinux 0x7e42d0c2 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x7e4d87bf mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress +EXPORT_SYMBOL vmlinux 0x7e9d55da __neigh_create +EXPORT_SYMBOL vmlinux 0x7eaa43fa scm_detach_fds +EXPORT_SYMBOL vmlinux 0x7ead24b7 eth_header +EXPORT_SYMBOL vmlinux 0x7eaefcf0 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x7ebcdefc backlight_force_update +EXPORT_SYMBOL vmlinux 0x7ebcf4f2 blkdev_issue_discard +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 0x7f1c39b7 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f25885f stop_tty +EXPORT_SYMBOL vmlinux 0x7f43ff60 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0x7f54cc55 read_cache_page +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f6af4b4 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x7f78c846 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x7f7d89d8 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x7fa8bf2c mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x7fb8bcf3 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x7fc7f20c xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x7fcba02e skb_tx_error +EXPORT_SYMBOL vmlinux 0x7fd8ad5d abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe93c73 deactivate_super +EXPORT_SYMBOL vmlinux 0x7ff8188a inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x8009c2e4 param_set_long +EXPORT_SYMBOL vmlinux 0x801f883f tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x802099bb bmap +EXPORT_SYMBOL vmlinux 0x80298b81 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x80299d4e crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x806266da of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x8069326d simple_transaction_get +EXPORT_SYMBOL vmlinux 0x807a2c54 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x807d30ff blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x809b6db4 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x80ac2741 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80cabcd3 vm_event_states +EXPORT_SYMBOL vmlinux 0x80d0c94f napi_gro_receive +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e00db4 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x80e72824 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x8116e05b filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x8127a600 vfs_llseek +EXPORT_SYMBOL vmlinux 0x812a6eca locks_copy_lock +EXPORT_SYMBOL vmlinux 0x813b7098 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x81697d5b put_page +EXPORT_SYMBOL vmlinux 0x81737dab tcf_exts_change +EXPORT_SYMBOL vmlinux 0x817a2dc9 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x817ae806 pci_dev_put +EXPORT_SYMBOL vmlinux 0x81819480 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x81847d5d dev_warn +EXPORT_SYMBOL vmlinux 0x818a7e53 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x8190bd66 put_cmsg +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81ac562e blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator +EXPORT_SYMBOL vmlinux 0x81ce55b7 ppp_input_error +EXPORT_SYMBOL vmlinux 0x81db6a14 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e16fdf dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x81f14bb1 blkdev_get +EXPORT_SYMBOL vmlinux 0x81f56a11 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x82160295 skb_copy +EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback +EXPORT_SYMBOL vmlinux 0x824ecf45 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x8254f0ae filp_open +EXPORT_SYMBOL vmlinux 0x825d0287 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x827e24be sk_reset_timer +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x8299177b elv_rb_add +EXPORT_SYMBOL vmlinux 0x82a306fb __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82b5b502 km_state_notify +EXPORT_SYMBOL vmlinux 0x82b7e8ae pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x82cd540a atomic64_and +EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x83268710 send_sig_info +EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x83356422 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x8341c1b0 abort_creds +EXPORT_SYMBOL vmlinux 0x834b4c39 copy_from_iter +EXPORT_SYMBOL vmlinux 0x835c484a dst_destroy +EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x837f4205 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x8384d01a import_iovec +EXPORT_SYMBOL vmlinux 0x838b1df3 mac_find_mode +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83947f22 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83b7e939 tty_set_operations +EXPORT_SYMBOL vmlinux 0x83c5099c mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83cc98df generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x841a82ab mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x843197ba mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x8439bb47 dev_addr_del +EXPORT_SYMBOL vmlinux 0x844404cf ISA_DMA_THRESHOLD +EXPORT_SYMBOL vmlinux 0x84491831 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x8449dec0 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x845bc14a sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x846fd357 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x8497fe22 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x84a69fdc vme_slave_get +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84c069a3 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x84c43eb8 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x84dca959 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x84e08278 path_nosuid +EXPORT_SYMBOL vmlinux 0x84eca056 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x850752a2 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x851a0b55 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x85264d77 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x853187b3 dev_notice +EXPORT_SYMBOL vmlinux 0x8541bccc intercept_table +EXPORT_SYMBOL vmlinux 0x8544e213 register_md_personality +EXPORT_SYMBOL vmlinux 0x854e1c0b sg_nents +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85861355 input_unregister_device +EXPORT_SYMBOL vmlinux 0x858b10a1 inc_nlink +EXPORT_SYMBOL vmlinux 0x859c5c88 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85b86bc2 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e6105a km_new_mapping +EXPORT_SYMBOL vmlinux 0x85e73e3a blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fa5ddf sock_create_lite +EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x8641a08d d_instantiate +EXPORT_SYMBOL vmlinux 0x8643717b param_set_bool +EXPORT_SYMBOL vmlinux 0x8645e2c5 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x864958f4 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x864ca0c2 scsi_scan_host +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 0x86a6c439 inet_bind +EXPORT_SYMBOL vmlinux 0x86b5b730 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook +EXPORT_SYMBOL vmlinux 0x86de3733 register_quota_format +EXPORT_SYMBOL vmlinux 0x86e4dec3 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x86f44354 poll_freewait +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8709d85d twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x8711fbc2 mount_bdev +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x87402c4c dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x87647b80 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87980e12 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x87a6c1da pmac_suspend_agp_for_card +EXPORT_SYMBOL vmlinux 0x87a7d405 follow_down_one +EXPORT_SYMBOL vmlinux 0x87adee0e pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x87c850a4 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x87cdf73a inet_shutdown +EXPORT_SYMBOL vmlinux 0x87d3c902 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x880ef8e0 set_user_nice +EXPORT_SYMBOL vmlinux 0x8810a9b4 nf_log_unset +EXPORT_SYMBOL vmlinux 0x8814dc8b writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x88151293 scsi_host_put +EXPORT_SYMBOL vmlinux 0x8818c826 serio_reconnect +EXPORT_SYMBOL vmlinux 0x8820610d mmc_erase +EXPORT_SYMBOL vmlinux 0x886afe7c padata_start +EXPORT_SYMBOL vmlinux 0x886cea78 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x8889611d inode_get_bytes +EXPORT_SYMBOL vmlinux 0x889acb11 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x88a18a13 pci_restore_state +EXPORT_SYMBOL vmlinux 0x88a47fe9 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x88a7b8e8 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x88b0a658 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x88bd02fa bdput +EXPORT_SYMBOL vmlinux 0x88c0ed29 msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0x88ebca2b dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x893ca6d0 block_read_full_page +EXPORT_SYMBOL vmlinux 0x896969d3 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x8980b1be pcie_capability_write_word +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 0x89e6ffe8 security_file_permission +EXPORT_SYMBOL vmlinux 0x89fee9a0 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x8a0dfbe7 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x8a0e7cf7 input_register_device +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a2786d0 fd_install +EXPORT_SYMBOL vmlinux 0x8a3725d8 redraw_screen +EXPORT_SYMBOL vmlinux 0x8a41e877 skb_abort_seq_read +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 0x8a64cdd4 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a923320 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x8a95a3c2 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aac11f1 kobject_add +EXPORT_SYMBOL vmlinux 0x8ab4079e atomic64_add +EXPORT_SYMBOL vmlinux 0x8abb6c03 no_llseek +EXPORT_SYMBOL vmlinux 0x8ac1ac2f blk_stop_queue +EXPORT_SYMBOL vmlinux 0x8acdf5b5 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x8adab51c consume_skb +EXPORT_SYMBOL vmlinux 0x8ae04fe6 __blk_end_request +EXPORT_SYMBOL vmlinux 0x8b085af5 tty_port_put +EXPORT_SYMBOL vmlinux 0x8b340c5e padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b45fb1d elevator_alloc +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8bb99657 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x8bd96956 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x8be24fd7 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x8c1112d8 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c3b0688 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x8c4dd798 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x8c4e3a67 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x8c539cf8 of_get_parent +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c652b45 dev_open +EXPORT_SYMBOL vmlinux 0x8c73c1a5 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x8c7d4423 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x8c90a8de clear_inode +EXPORT_SYMBOL vmlinux 0x8ca5a9f5 dev_activate +EXPORT_SYMBOL vmlinux 0x8cbeaccc key_reject_and_link +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cd62fb0 netif_device_detach +EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x8d0985fe __napi_complete +EXPORT_SYMBOL vmlinux 0x8d19c9dd md_update_sb +EXPORT_SYMBOL vmlinux 0x8d2106be elv_rb_find +EXPORT_SYMBOL vmlinux 0x8d2af596 dev_addr_init +EXPORT_SYMBOL vmlinux 0x8d313383 seq_escape +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d765253 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x8d7d2948 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x8d9f3120 bdget_disk +EXPORT_SYMBOL vmlinux 0x8dae0079 proc_symlink +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8de10107 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x8df28663 generic_write_checks +EXPORT_SYMBOL vmlinux 0x8df5da63 memstart_addr +EXPORT_SYMBOL vmlinux 0x8e034c25 unlock_rename +EXPORT_SYMBOL vmlinux 0x8e1fd279 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x8e4bcc9d find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x8e502ec6 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x8e668a00 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x8e67ec95 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x8e69637a of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e7c9429 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x8e7d1479 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x8e7db0cb tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x8e85cdb0 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x8e873757 __skb_checksum +EXPORT_SYMBOL vmlinux 0x8e9b1ca3 dqput +EXPORT_SYMBOL vmlinux 0x8ebb6867 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ed51a45 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x8ef79745 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x8efa3291 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x8f20cc6f scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x8f2dd704 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x8f428dcd pci_scan_slot +EXPORT_SYMBOL vmlinux 0x8f657053 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8fa52fc3 mmc_add_host +EXPORT_SYMBOL vmlinux 0x8fbf37e0 profile_pc +EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x8fc3bcf7 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x8fd2e5e4 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x90270dc6 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x907c50cc blk_fetch_request +EXPORT_SYMBOL vmlinux 0x908fb865 bio_endio +EXPORT_SYMBOL vmlinux 0x90939eb0 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x90985abf mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x909ea13e jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90d2fb35 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x90eb38e4 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x90f1b023 msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay +EXPORT_SYMBOL vmlinux 0x9141b381 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +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 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91a36c39 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x91abc941 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x91d1c007 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x91e08ee3 page_put_link +EXPORT_SYMBOL vmlinux 0x91f4839f scsi_device_put +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x921417fe tty_name +EXPORT_SYMBOL vmlinux 0x92214ebc elevator_change +EXPORT_SYMBOL vmlinux 0x922a8c7d genphy_read_status +EXPORT_SYMBOL vmlinux 0x922ecc17 inet_accept +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x9255c221 pci_set_master +EXPORT_SYMBOL vmlinux 0x925c51c6 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x926330ad mount_single +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92cc9868 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x92ecfc41 genphy_suspend +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9303dd87 udp_set_csum +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93061eb6 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x9309de94 cuda_request +EXPORT_SYMBOL vmlinux 0x9313f1b9 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x9323f5ee devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x93253623 softnet_data +EXPORT_SYMBOL vmlinux 0x9330cb9f sg_alloc_table +EXPORT_SYMBOL vmlinux 0x93568bef rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x938030d7 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b55830 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x93dddde8 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x93e86947 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x93eb6bc1 pcie_set_readrq +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 0x94367703 of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0x9439afe9 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949cde58 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x949d7f5e param_set_byte +EXPORT_SYMBOL vmlinux 0x94a13a98 vfs_read +EXPORT_SYMBOL vmlinux 0x94a866ba of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x94b2590f vme_free_consistent +EXPORT_SYMBOL vmlinux 0x94cbd061 dql_reset +EXPORT_SYMBOL vmlinux 0x94d2bd85 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x94f0e7ab nvm_put_blk +EXPORT_SYMBOL vmlinux 0x94f65106 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x95082802 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95499a67 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x957c113b kthread_stop +EXPORT_SYMBOL vmlinux 0x957d0641 inet6_getname +EXPORT_SYMBOL vmlinux 0x9587f53e pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x95e6ef1f phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x960412b8 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x960a48bb unregister_qdisc +EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x960ef111 vfs_create +EXPORT_SYMBOL vmlinux 0x9649dafe mmc_get_card +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x966fe74d neigh_connected_output +EXPORT_SYMBOL vmlinux 0x96713d43 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x968b3e7a i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x9690d6b8 iov_iter_init +EXPORT_SYMBOL vmlinux 0x96c069ab dst_release +EXPORT_SYMBOL vmlinux 0x96c4cf98 fb_set_var +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96cee9bb dmam_pool_create +EXPORT_SYMBOL vmlinux 0x96d7cdb9 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x96dbcca2 ioremap_prot +EXPORT_SYMBOL vmlinux 0x96dce98c resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x96f16853 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x970f2ecf bdi_register +EXPORT_SYMBOL vmlinux 0x972094b0 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x9793bbbc reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a525c7 netdev_err +EXPORT_SYMBOL vmlinux 0x97a8a411 lro_flush_all +EXPORT_SYMBOL vmlinux 0x97b4b001 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x97b86f31 bio_advance +EXPORT_SYMBOL vmlinux 0x97ba8f88 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x97c375ad inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x97eb65ab of_get_min_tck +EXPORT_SYMBOL vmlinux 0x980ae739 search_binary_handler +EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x981f2c87 udp_poll +EXPORT_SYMBOL vmlinux 0x98327115 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x9838120f scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x983bbe26 vfs_write +EXPORT_SYMBOL vmlinux 0x98460ad5 security_path_chown +EXPORT_SYMBOL vmlinux 0x984f7b81 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x986c5b3e nla_append +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x986e8db2 skb_find_text +EXPORT_SYMBOL vmlinux 0x98b66416 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x98c8dacb release_firmware +EXPORT_SYMBOL vmlinux 0x98cb8ba6 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x98f3b0f2 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x98fe7882 DMA_MODE_READ +EXPORT_SYMBOL vmlinux 0x992a8b59 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993b34df ll_rw_block +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99546fdf dma_sync_wait +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x995c3727 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x9993e880 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99ac9f04 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99b11fb3 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99f2d46f pci_claim_resource +EXPORT_SYMBOL vmlinux 0x9a051377 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a227ebb skb_pad +EXPORT_SYMBOL vmlinux 0x9a599869 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x9a888ab8 get_fs_type +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9af0cb25 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x9b085941 generic_readlink +EXPORT_SYMBOL vmlinux 0x9b0d23d2 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x9b13d10b security_inode_permission +EXPORT_SYMBOL vmlinux 0x9b169e36 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x9b28d74e write_one_page +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b6803a6 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b94e4e0 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x9b9a41c0 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9b9e5c21 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x9ba0e2a3 input_grab_device +EXPORT_SYMBOL vmlinux 0x9ba15d1b inet_del_protocol +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bc153ff kmap_to_page +EXPORT_SYMBOL vmlinux 0x9bcaf382 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x9bce482f __release_region +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9beb902e vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x9c0112ea tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x9c03071e inet_put_port +EXPORT_SYMBOL vmlinux 0x9c0410a3 bdev_read_only +EXPORT_SYMBOL vmlinux 0x9c45709d dquot_file_open +EXPORT_SYMBOL vmlinux 0x9c5b35b8 dquot_get_state +EXPORT_SYMBOL vmlinux 0x9c5cb7d8 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x9c5ed845 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x9c78227b linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL vmlinux 0x9cf5dfb7 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x9cfbe9c1 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x9d008238 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d29bd49 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x9d2a0608 i2c_smbus_write_word_data +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 0x9db510ec pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x9dc35c56 i2c_release_client +EXPORT_SYMBOL vmlinux 0x9df3a043 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e144109 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x9e1cfc90 ioremap_wc +EXPORT_SYMBOL vmlinux 0x9e2ee6a5 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x9e3bcf0a inet_addr_type_dev_table +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 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ec55486 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x9ee09b3c dcache_dir_open +EXPORT_SYMBOL vmlinux 0x9f0a9d43 down_write_trylock +EXPORT_SYMBOL vmlinux 0x9f2cbc56 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x9f36c6a7 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4ea2fb nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x9f5e3723 __sb_start_write +EXPORT_SYMBOL vmlinux 0x9f662fc6 dma_direct_ops +EXPORT_SYMBOL vmlinux 0x9f7620d6 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x9f79d771 unregister_nls +EXPORT_SYMBOL vmlinux 0x9f7c3e88 vm_mmap +EXPORT_SYMBOL vmlinux 0x9f7d9f5b mmc_put_card +EXPORT_SYMBOL vmlinux 0x9f8b810a xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x9f925bfb default_file_splice_read +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f9be0c3 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x9fb14f61 adb_client_list +EXPORT_SYMBOL vmlinux 0x9fd591e0 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe989af cdev_init +EXPORT_SYMBOL vmlinux 0x9fedcdfd __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffc1c3a dev_remove_pack +EXPORT_SYMBOL vmlinux 0xa01eae24 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xa03f5286 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xa0411634 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06ce2f7 gro_find_receive_by_type +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 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 0xa0fd4d84 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa12df0aa passthru_features_check +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa168c06b textsearch_register +EXPORT_SYMBOL vmlinux 0xa177aa28 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xa181bd4d gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0xa1a637dc register_shrinker +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xa1cc65f2 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1e189dd skb_unlink +EXPORT_SYMBOL vmlinux 0xa1ee279b tty_hangup +EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa20940d6 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa20e2bd0 __kernel_write +EXPORT_SYMBOL vmlinux 0xa2224a67 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xa233ff82 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xa2528543 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xa26c8415 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xa26f8b1e dquot_release +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa28ec842 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xa290ee97 dev_mc_add +EXPORT_SYMBOL vmlinux 0xa293b127 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xa2a11c09 inode_permission +EXPORT_SYMBOL vmlinux 0xa2a660a9 kernel_read +EXPORT_SYMBOL vmlinux 0xa2b48220 led_update_brightness +EXPORT_SYMBOL vmlinux 0xa2b618e4 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2c35c4c inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xa2db7cfc find_inode_nowait +EXPORT_SYMBOL vmlinux 0xa2e37a8a tso_start +EXPORT_SYMBOL vmlinux 0xa2e6c3bb key_invalidate +EXPORT_SYMBOL vmlinux 0xa2ead001 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xa2f2341b set_wb_congested +EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait +EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa321317c blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xa37db43b contig_page_data +EXPORT_SYMBOL vmlinux 0xa386a18b call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa39dc3c7 write_cache_pages +EXPORT_SYMBOL vmlinux 0xa3a02639 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3d0d394 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xa3e75545 flush_tlb_kernel_range +EXPORT_SYMBOL vmlinux 0xa401a97f xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xa40a31ff agp_bridge +EXPORT_SYMBOL vmlinux 0xa40c4a92 unregister_netdev +EXPORT_SYMBOL vmlinux 0xa423a4fa sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xa43a93e8 eth_type_trans +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa46408d0 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa4885e81 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4da2155 qdisc_list_add +EXPORT_SYMBOL vmlinux 0xa4e6ba49 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xa50008df dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xa502c0f8 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xa507a1fa rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xa5244b0d pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xa5303c2b xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xa53f5fb4 __d_drop +EXPORT_SYMBOL vmlinux 0xa54245ef d_instantiate_unique +EXPORT_SYMBOL vmlinux 0xa54246ba __devm_request_region +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free +EXPORT_SYMBOL vmlinux 0xa573a8b5 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xa5747494 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xa57820b6 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0xa5902d14 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa59ec456 vfs_fsync +EXPORT_SYMBOL vmlinux 0xa5a633b9 sg_last +EXPORT_SYMBOL vmlinux 0xa5aa70a8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0xa5b9df7c mmc_register_driver +EXPORT_SYMBOL vmlinux 0xa5c830e0 vme_irq_request +EXPORT_SYMBOL vmlinux 0xa5cef8ad release_resource +EXPORT_SYMBOL vmlinux 0xa5ebe190 __vfs_write +EXPORT_SYMBOL vmlinux 0xa5f30ebd ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xa6083755 of_get_next_child +EXPORT_SYMBOL vmlinux 0xa626401a of_match_node +EXPORT_SYMBOL vmlinux 0xa63dd333 bdgrab +EXPORT_SYMBOL vmlinux 0xa652c4ef __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa65a5e59 write_inode_now +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 0xa69ecffc __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xa6f121fc ip_getsockopt +EXPORT_SYMBOL vmlinux 0xa6fcd36c ip_do_fragment +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock +EXPORT_SYMBOL vmlinux 0xa72e91fb done_path_create +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa73e7d89 input_set_capability +EXPORT_SYMBOL vmlinux 0xa743b61c tty_check_change +EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get +EXPORT_SYMBOL vmlinux 0xa7644beb register_netdev +EXPORT_SYMBOL vmlinux 0xa7650729 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xa770ec5f scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xa77319c2 page_address +EXPORT_SYMBOL vmlinux 0xa77d89cc iterate_dir +EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xa7a6809e dm_get_device +EXPORT_SYMBOL vmlinux 0xa7cc0e5b cfb_imageblit +EXPORT_SYMBOL vmlinux 0xa82b89b4 loop_backing_file +EXPORT_SYMBOL vmlinux 0xa83673c5 d_add_ci +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa861ab6e __ioremap +EXPORT_SYMBOL vmlinux 0xa86b42e5 free_task +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa8887a86 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xa89464b7 __ashldi3 +EXPORT_SYMBOL vmlinux 0xa8a82fc5 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xa8b7d75b xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xa8c9f7c8 __elv_add_request +EXPORT_SYMBOL vmlinux 0xa8f49f49 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9115d9b register_framebuffer +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa926177f jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0xa929fe18 module_layout +EXPORT_SYMBOL vmlinux 0xa9417715 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xa94caf66 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xa952b86a simple_dir_operations +EXPORT_SYMBOL vmlinux 0xa9571d6d DMA_MODE_WRITE +EXPORT_SYMBOL vmlinux 0xa965e822 max8925_reg_write +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9814345 inode_init_always +EXPORT_SYMBOL vmlinux 0xa986173d tcp_prequeue +EXPORT_SYMBOL vmlinux 0xa9b0b440 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xa9b64971 i2c_master_recv +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9d1eca3 input_get_keycode +EXPORT_SYMBOL vmlinux 0xa9efa445 bio_init +EXPORT_SYMBOL vmlinux 0xaa2ccf64 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xaa31515e __netif_schedule +EXPORT_SYMBOL vmlinux 0xaa3b43ae tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock +EXPORT_SYMBOL vmlinux 0xaa4df512 pmu_batteries +EXPORT_SYMBOL vmlinux 0xaa5eb0c0 unregister_quota_format +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 0xaa774adc __seq_open_private +EXPORT_SYMBOL vmlinux 0xaa877027 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xaa897974 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xaac5ef69 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad21140 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaadaa3c7 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0xaaf45cf7 nobh_write_begin +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xaafffac7 devm_memremap +EXPORT_SYMBOL vmlinux 0xab016ef1 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xab09b117 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xab18359e __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xab228e31 csum_tcpudp_magic +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7d5237 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xab8665a7 scsi_host_get +EXPORT_SYMBOL vmlinux 0xab99b93f xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xab9a5ce3 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0xab9ccda9 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xaba41f34 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xaba94186 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xaba9ba31 free_buffer_head +EXPORT_SYMBOL vmlinux 0xabb35404 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabdd6463 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xabef52e5 filemap_flush +EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac0bb2b0 revert_creds +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac31ac1f mark_info_dirty +EXPORT_SYMBOL vmlinux 0xac4cc1bc lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xac822f98 mount_subtree +EXPORT_SYMBOL vmlinux 0xac84eb56 dev_deactivate +EXPORT_SYMBOL vmlinux 0xac8d9108 alloc_disk_node +EXPORT_SYMBOL vmlinux 0xac8fb6ac fasync_helper +EXPORT_SYMBOL vmlinux 0xac9ae1ef blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacc47fad key_type_keyring +EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xaccdf1ea agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0xacd0bdf7 kobject_get +EXPORT_SYMBOL vmlinux 0xacd3cab3 inet_frags_init +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacedec7e md_check_recovery +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0eede2 lock_sock_fast +EXPORT_SYMBOL vmlinux 0xad262d90 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xad2b26db deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xad2c40e9 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xad2e3639 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0xad329c9c qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xad40404a d_alloc +EXPORT_SYMBOL vmlinux 0xad4dc98e xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock +EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xad6fcd50 unlock_page +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad88ce31 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xadb9d16e inode_set_bytes +EXPORT_SYMBOL vmlinux 0xadbc5008 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xadd06971 inet6_offloads +EXPORT_SYMBOL vmlinux 0xaddd4770 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xadf42bd5 __request_region +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae0ed95a flush_old_exec +EXPORT_SYMBOL vmlinux 0xae1ad88d __napi_schedule +EXPORT_SYMBOL vmlinux 0xae228bfc bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xae358236 fence_signal +EXPORT_SYMBOL vmlinux 0xae3f4e79 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae5d5073 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xae649d0e d_prune_aliases +EXPORT_SYMBOL vmlinux 0xae6e91ed kernel_sendpage +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 0xae85b946 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xae86d9a5 pci_enable_msix +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaed673c2 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xaed6a64f set_disk_ro +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf0b81c2 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xaf0bfc10 cad_pid +EXPORT_SYMBOL vmlinux 0xaf1ed867 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0xaf1f4bb2 skb_append +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf3051e4 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xaf31e34a param_ops_bool +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf3e7ab7 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xaf495e3f __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xaf4d55d8 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xaf70e4ab dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xaf876ef9 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xafaed86f downgrade_write +EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create +EXPORT_SYMBOL vmlinux 0xafee52c1 get_tz_trend +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb004a171 sock_init_data +EXPORT_SYMBOL vmlinux 0xb01768fc inode_needs_sync +EXPORT_SYMBOL vmlinux 0xb02ec5d9 tty_devnum +EXPORT_SYMBOL vmlinux 0xb03b3734 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xb04f6bbf __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb060378b submit_bh +EXPORT_SYMBOL vmlinux 0xb07dbcd3 dev_uc_add +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb09bce07 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0aa9301 do_splice_from +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0b80b72 kfree_skb +EXPORT_SYMBOL vmlinux 0xb0c0b604 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0eed28d cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xb0f73498 blkdev_fsync +EXPORT_SYMBOL vmlinux 0xb0f758fd devfreq_add_device +EXPORT_SYMBOL vmlinux 0xb10eebc5 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb12ce616 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xb12d96ad jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xb135ad0d of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xb13ec83f netdev_update_features +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 0xb162e50c ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xb1a35fb4 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xb1b8787f jbd2_journal_ack_err +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 0xb1d12141 pci_release_regions +EXPORT_SYMBOL vmlinux 0xb1f381c4 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xb1f722a7 do_splice_direct +EXPORT_SYMBOL vmlinux 0xb2251d73 phy_init_hw +EXPORT_SYMBOL vmlinux 0xb22b53b3 pci_bus_get +EXPORT_SYMBOL vmlinux 0xb231454d scsi_add_device +EXPORT_SYMBOL vmlinux 0xb233762c atomic64_set +EXPORT_SYMBOL vmlinux 0xb248c2bb setup_new_exec +EXPORT_SYMBOL vmlinux 0xb2642eb8 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb2696cd2 napi_complete_done +EXPORT_SYMBOL vmlinux 0xb2696e4e mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xb275a12c mutex_lock +EXPORT_SYMBOL vmlinux 0xb2991298 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2cd86e6 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2ded67d tcp_seq_open +EXPORT_SYMBOL vmlinux 0xb30b4151 tcp_close +EXPORT_SYMBOL vmlinux 0xb30c5f27 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xb3114ebe vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xb31d54cb inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xb3931d7c bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xb3bc7b55 d_rehash +EXPORT_SYMBOL vmlinux 0xb3bdbef7 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xb3c31922 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d84349 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xb3f1e388 dm_put_table_device +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42bcc09 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xb42c9e18 simple_rename +EXPORT_SYMBOL vmlinux 0xb42f4d28 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb491f8be sk_stream_write_space +EXPORT_SYMBOL vmlinux 0xb4b60d10 simple_dname +EXPORT_SYMBOL vmlinux 0xb4c12add copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xb4c17815 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xb4c3864e generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xb4c55fa4 of_phy_connect +EXPORT_SYMBOL vmlinux 0xb4ef4b7b param_ops_invbool +EXPORT_SYMBOL vmlinux 0xb5055e1c tso_count_descs +EXPORT_SYMBOL vmlinux 0xb51d28e7 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xb53a4336 kmap_pte +EXPORT_SYMBOL vmlinux 0xb561f935 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb57ea315 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xb58b9b3e pci_set_power_state +EXPORT_SYMBOL vmlinux 0xb59bf395 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b27b31 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xb5b6464d elv_register_queue +EXPORT_SYMBOL vmlinux 0xb5c3bd61 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit +EXPORT_SYMBOL vmlinux 0xb5f51587 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xb64d06f7 flush_signals +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67df3dc nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6899462 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6d0d437 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xb70f8252 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xb71630cf sk_mc_loop +EXPORT_SYMBOL vmlinux 0xb71aa993 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xb723dada xfrm_state_add +EXPORT_SYMBOL vmlinux 0xb72711cc __inet_hash +EXPORT_SYMBOL vmlinux 0xb7403157 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xb74218c2 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0xb7487d54 vme_irq_free +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb753bcc8 __ashrdi3 +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb79112e8 gnet_stats_copy_rate_est +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 0xb7bb06b1 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d96a20 input_inject_event +EXPORT_SYMBOL vmlinux 0xb7e9f6f0 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xb7eaf7ed neigh_destroy +EXPORT_SYMBOL vmlinux 0xb7f9af8a dev_addr_add +EXPORT_SYMBOL vmlinux 0xb808a879 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xb8130f7b in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb81daf24 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xb8411c8b d_obtain_root +EXPORT_SYMBOL vmlinux 0xb8580202 make_bad_inode +EXPORT_SYMBOL vmlinux 0xb871ee80 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb87d8a9a devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xb89944de put_tty_driver +EXPORT_SYMBOL vmlinux 0xb8b05634 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xb8ba4a4d gen_new_estimator +EXPORT_SYMBOL vmlinux 0xb8bfb5ce tcp_conn_request +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8ed748a fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xb8f82db3 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xb8fc0fc4 dquot_operations +EXPORT_SYMBOL vmlinux 0xb90dd4c1 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xb93ee062 skb_dequeue +EXPORT_SYMBOL vmlinux 0xb9673458 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xb9825d83 inet6_protos +EXPORT_SYMBOL vmlinux 0xb98a5bb1 dentry_unhash +EXPORT_SYMBOL vmlinux 0xb99e7c5f skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xb9acf150 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xba094878 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xba191a4a kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xba277272 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba53d4b3 nf_log_register +EXPORT_SYMBOL vmlinux 0xba604a77 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0xba83ca0b __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xba883a84 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xba898c89 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xbab53fe9 nvm_register +EXPORT_SYMBOL vmlinux 0xbac16da0 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbacc2a0c rtnl_notify +EXPORT_SYMBOL vmlinux 0xbad506e9 kill_pid +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb1b0c93 skb_seq_read +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 0xbb6a6dc2 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbbb4c9e0 tty_register_device +EXPORT_SYMBOL vmlinux 0xbbc7cb8b vme_irq_handler +EXPORT_SYMBOL vmlinux 0xbbda43db seq_open_private +EXPORT_SYMBOL vmlinux 0xbbf79835 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xbc168142 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xbc1c575a ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xbc2ec2b9 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc394b30 padata_do_serial +EXPORT_SYMBOL vmlinux 0xbc506260 __inode_permission +EXPORT_SYMBOL vmlinux 0xbc712c1c __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xbc859880 __genl_register_family +EXPORT_SYMBOL vmlinux 0xbc8ce127 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xbc96167a genphy_config_init +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbce3fbc3 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 +EXPORT_SYMBOL vmlinux 0xbd1d2a21 seq_putc +EXPORT_SYMBOL vmlinux 0xbd2a4198 dm_io +EXPORT_SYMBOL vmlinux 0xbd46f3e0 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xbd570cc3 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xbd5717c3 __frontswap_store +EXPORT_SYMBOL vmlinux 0xbd75563f input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xbd8478a6 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xbd8b2747 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0xbd8d541d flush_hash_pages +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd932110 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xbd961d09 sk_dst_check +EXPORT_SYMBOL vmlinux 0xbd9886d8 kernel_listen +EXPORT_SYMBOL vmlinux 0xbd9e5d49 __lshrdi3 +EXPORT_SYMBOL vmlinux 0xbd9efa20 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xbdb39f65 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xbdb529bd pmac_resume_agp_for_card +EXPORT_SYMBOL vmlinux 0xbdb91bda sock_create_kern +EXPORT_SYMBOL vmlinux 0xbdde8eca dev_uc_flush +EXPORT_SYMBOL vmlinux 0xbde4e7fb unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xbdf7bb1a tty_port_init +EXPORT_SYMBOL vmlinux 0xbe02378a md_integrity_register +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1a9653 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe2c85d5 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xbe4f7d53 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xbe50a111 kmap_atomic_prot +EXPORT_SYMBOL vmlinux 0xbe63ee40 request_resource +EXPORT_SYMBOL vmlinux 0xbe6f7f7f ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xbe7517ff pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xbea03272 ppc_md +EXPORT_SYMBOL vmlinux 0xbea8beea __nlmsg_put +EXPORT_SYMBOL vmlinux 0xbeac711f bio_put +EXPORT_SYMBOL vmlinux 0xbeb3f3ce mpage_readpage +EXPORT_SYMBOL vmlinux 0xbeb805a2 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xbec876c4 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xbeca4e50 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xbed8fb9f netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbeea5205 blk_recount_segments +EXPORT_SYMBOL vmlinux 0xbeed5339 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xbeee30e7 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefae6c1 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xbf024142 sync_blockdev +EXPORT_SYMBOL vmlinux 0xbf486982 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xbf56e39c km_policy_notify +EXPORT_SYMBOL vmlinux 0xbf614699 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xbf71fa56 module_put +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 0xbfa61389 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfc1b3c7 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbfefcf7e dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xbfff7df2 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xc01aaf3b phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xc0200fbf set_security_override +EXPORT_SYMBOL vmlinux 0xc0405118 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xc043baaf agp_backend_release +EXPORT_SYMBOL vmlinux 0xc04f05c1 skb_split +EXPORT_SYMBOL vmlinux 0xc05119fe sg_copy_from_buffer +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 0xc0b36e19 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xc0c9b215 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xc0ce0d39 send_sig +EXPORT_SYMBOL vmlinux 0xc0d34d8c kernel_connect +EXPORT_SYMBOL vmlinux 0xc0d84ced cuda_poll +EXPORT_SYMBOL vmlinux 0xc0de4505 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xc0edb454 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xc1029d58 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xc109222d mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc +EXPORT_SYMBOL vmlinux 0xc13e8bab scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xc1689249 revalidate_disk +EXPORT_SYMBOL vmlinux 0xc16bcbc1 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xc16cdfb3 generic_permission +EXPORT_SYMBOL vmlinux 0xc1a7a2da phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xc1ab9d74 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xc1b1c476 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1dd4a7f adb_request +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc20c2ae7 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xc21efc9b netdev_notice +EXPORT_SYMBOL vmlinux 0xc227c13d ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xc22c3b29 seq_open +EXPORT_SYMBOL vmlinux 0xc2373ef9 sock_i_ino +EXPORT_SYMBOL vmlinux 0xc2379a5d pci_request_regions +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc2435f3e of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xc25a002a ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xc269b902 pci_release_region +EXPORT_SYMBOL vmlinux 0xc26dc37d mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xc27e47e7 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xc2835121 param_get_bool +EXPORT_SYMBOL vmlinux 0xc283d95b key_revoke +EXPORT_SYMBOL vmlinux 0xc295a1f9 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xc2a00667 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2b02517 tcp_make_synack +EXPORT_SYMBOL vmlinux 0xc2b26efe kill_bdev +EXPORT_SYMBOL vmlinux 0xc2c0b7c8 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0xc2d6cdf9 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2da7c75 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e8e1f8 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xc30e0a24 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xc313dcb8 noop_qdisc +EXPORT_SYMBOL vmlinux 0xc314a68b unregister_filesystem +EXPORT_SYMBOL vmlinux 0xc31bc515 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xc33107ee make_kgid +EXPORT_SYMBOL vmlinux 0xc332e213 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xc35ea437 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xc368849f nvram_sync +EXPORT_SYMBOL vmlinux 0xc373cd16 udp_add_offload +EXPORT_SYMBOL vmlinux 0xc38042be __frontswap_test +EXPORT_SYMBOL vmlinux 0xc3839b83 pci_domain_nr +EXPORT_SYMBOL vmlinux 0xc384698b xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xc3852b16 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xc386440c netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xc3877330 get_super +EXPORT_SYMBOL vmlinux 0xc38d3aa0 bdi_destroy +EXPORT_SYMBOL vmlinux 0xc3a311a2 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xc3a6ffed lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0xc3b332a6 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3e6b369 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xc3f3703e bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc4698b3a ip_setsockopt +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc48230d5 giveup_altivec +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4b95853 macio_release_resources +EXPORT_SYMBOL vmlinux 0xc4ce71f4 pci_request_region +EXPORT_SYMBOL vmlinux 0xc4cfef8d follow_pfn +EXPORT_SYMBOL vmlinux 0xc4d0ce56 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xc4d21c97 alloc_disk +EXPORT_SYMBOL vmlinux 0xc4d2f588 dev_crit +EXPORT_SYMBOL vmlinux 0xc4f12f90 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xc50c1c45 macio_request_resources +EXPORT_SYMBOL vmlinux 0xc519479c simple_unlink +EXPORT_SYMBOL vmlinux 0xc52bd947 bio_chain +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc554d1e3 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xc5588d47 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set +EXPORT_SYMBOL vmlinux 0xc5718627 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0xc57cb314 macio_dev_put +EXPORT_SYMBOL vmlinux 0xc5878671 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xc58941fb netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xc58c3b3b __put_cred +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a44d1d blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xc5a86f34 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xc5bd0a05 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc6044087 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0xc60ea54c blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xc61caf19 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xc61e9769 kobject_put +EXPORT_SYMBOL vmlinux 0xc623716c set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xc62faf80 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc64a26d9 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc64fb493 cdev_add +EXPORT_SYMBOL vmlinux 0xc65537d0 memremap +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc672f6b8 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc6a187b0 simple_nosetlease +EXPORT_SYMBOL vmlinux 0xc6a76e71 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xc6a98ce7 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xc6c39477 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xc6c6e5ef __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6ecd810 tcp_check_req +EXPORT_SYMBOL vmlinux 0xc6f9a411 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72d679b __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc7606b20 vm_insert_page +EXPORT_SYMBOL vmlinux 0xc771518c of_find_matching_node_and_match +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 0xc795e23e cpu_core_map +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc79e2bd2 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xc7a079dc pci_iomap +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7adb760 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xc7ddb4bb dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7f587a4 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xc82426d5 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xc828504e agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xc82e47da blk_queue_io_min +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 0xc859b49f register_qdisc +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8a7300c inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8b9781e finish_no_open +EXPORT_SYMBOL vmlinux 0xc8d61ca4 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xc8d836be dev_uc_del +EXPORT_SYMBOL vmlinux 0xc8e95e12 netlink_ack +EXPORT_SYMBOL vmlinux 0xc8f8cfd1 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xc906fcac __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc91692e5 datagram_poll +EXPORT_SYMBOL vmlinux 0xc9237a3c of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc981f525 tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a194e2 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0xc9a8e02d devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xc9b80e7f shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xc9b8c308 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xc9e13872 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xc9e4920c decrementer_clockevent +EXPORT_SYMBOL vmlinux 0xc9ecda15 wake_up_process +EXPORT_SYMBOL vmlinux 0xc9f08938 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xc9f11a5a read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xc9f232b4 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xca0491bd framebuffer_release +EXPORT_SYMBOL vmlinux 0xca0875e3 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get +EXPORT_SYMBOL vmlinux 0xca2f5ed4 xfrm_policy_hash_rebuild +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 0xca5a7e9f sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xca825895 pmu_suspend +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcac70f1d iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xcac92b33 dqget +EXPORT_SYMBOL vmlinux 0xcacad1b5 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xcacd272d atomic64_sub_return +EXPORT_SYMBOL vmlinux 0xcace2c81 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcad08e48 mmu_hash_lock +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb036266 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xcb20a1f0 ata_link_printk +EXPORT_SYMBOL vmlinux 0xcb342e60 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xcb39be9d inet_listen +EXPORT_SYMBOL vmlinux 0xcb4555d0 current_in_userns +EXPORT_SYMBOL vmlinux 0xcb4e506c icmp_send +EXPORT_SYMBOL vmlinux 0xcb65da03 generic_fillattr +EXPORT_SYMBOL vmlinux 0xcb720587 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xcb7d1e29 simple_release_fs +EXPORT_SYMBOL vmlinux 0xcba6f25e tcp_release_cb +EXPORT_SYMBOL vmlinux 0xcbab69ce iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xcbad81d1 sync_inode_metadata +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 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc1f1c46 netdev_emerg +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc2c30b2 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc50d399 set_create_files_as +EXPORT_SYMBOL vmlinux 0xcc7775b2 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xcc9e68c2 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xcca78657 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc73655 address_space_init_once +EXPORT_SYMBOL vmlinux 0xccf3e020 default_qdisc_ops +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 0xcd18df2b __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xcd1b1822 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2a0264 security_path_link +EXPORT_SYMBOL vmlinux 0xcd315822 nvm_register_target +EXPORT_SYMBOL vmlinux 0xcd35413c ppp_unit_number +EXPORT_SYMBOL vmlinux 0xcd528ef9 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xcd552345 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xcd82e03f cdev_alloc +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcd8744fa param_get_ulong +EXPORT_SYMBOL vmlinux 0xcd9af906 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdd0db54 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xcdd2e379 kdb_current_task +EXPORT_SYMBOL vmlinux 0xcdef310c sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xce029f13 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xce03dbfd __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0xce1bf6d0 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce35cddd sget +EXPORT_SYMBOL vmlinux 0xce409cda pmac_set_early_video_resume +EXPORT_SYMBOL vmlinux 0xce47e125 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xce587e76 netdev_state_change +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce73eec3 of_get_property +EXPORT_SYMBOL vmlinux 0xce8ec732 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xce9f94ee locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xced7a0bb bio_copy_kern +EXPORT_SYMBOL vmlinux 0xcedad8c2 sk_net_capable +EXPORT_SYMBOL vmlinux 0xcee94d85 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf1d6d91 finish_open +EXPORT_SYMBOL vmlinux 0xcf2c40b2 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xcf32f831 ip6_frag_match +EXPORT_SYMBOL vmlinux 0xcf669ae8 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0xcf74b87c input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xcf7aeb22 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xcf89fb51 may_umount +EXPORT_SYMBOL vmlinux 0xcfcddbfe cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xcfd50fc9 flush_tlb_page +EXPORT_SYMBOL vmlinux 0xcfdc4571 cdev_del +EXPORT_SYMBOL vmlinux 0xcfe1bc30 icmpv6_send +EXPORT_SYMBOL vmlinux 0xcfefc811 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xcff3438a inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xd037756a filemap_fdatawait +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 0xd0a5742b security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0ab0ecc xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xd0be2ad8 of_device_unregister +EXPORT_SYMBOL vmlinux 0xd0df20e2 lock_fb_info +EXPORT_SYMBOL vmlinux 0xd0e6be66 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f2c9f5 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb01d6 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd10f019d eth_header_cache +EXPORT_SYMBOL vmlinux 0xd10fbc5a fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xd11e5c24 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf +EXPORT_SYMBOL vmlinux 0xd1517bc3 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xd175a431 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1d81d7e cap_mmap_file +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1dbea41 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xd1e3f3c4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd2115938 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xd21b95c6 dma_pool_create +EXPORT_SYMBOL vmlinux 0xd21ffe95 user_revoke +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd258acfa inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd2638b10 mntput +EXPORT_SYMBOL vmlinux 0xd26476e3 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0xd267e1e3 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xd2735bda md_unregister_thread +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2967333 md_write_start +EXPORT_SYMBOL vmlinux 0xd2a941d4 sg_init_table +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2bc652e generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xd2d85f28 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xd2d8daba neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +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 0xd33e630d file_remove_privs +EXPORT_SYMBOL vmlinux 0xd34bd515 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xd3621daf xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xd36cb384 sk_receive_skb +EXPORT_SYMBOL vmlinux 0xd373aced dev_uc_init +EXPORT_SYMBOL vmlinux 0xd390dd3a dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xd393fd1b netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xd3ba704d inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c43424 netdev_warn +EXPORT_SYMBOL vmlinux 0xd3cec9a0 pcim_iomap +EXPORT_SYMBOL vmlinux 0xd3d98a35 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xd3e6f60d cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xd409383c pmu_request +EXPORT_SYMBOL vmlinux 0xd40c440f devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xd414997a kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xd418e1c0 adjust_resource +EXPORT_SYMBOL vmlinux 0xd43941de dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xd44a0910 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm +EXPORT_SYMBOL vmlinux 0xd45232a8 md_reload_sb +EXPORT_SYMBOL vmlinux 0xd463cbc1 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xd472e3ef mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xd4a66a8b of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0xd4b319f5 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xd4c39f9d tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xd4d254ee pci_remove_bus +EXPORT_SYMBOL vmlinux 0xd4d7d12e mpage_writepages +EXPORT_SYMBOL vmlinux 0xd4e27703 vfs_readv +EXPORT_SYMBOL vmlinux 0xd4e8a93b gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xd4f3f795 of_iomap +EXPORT_SYMBOL vmlinux 0xd51067fb pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xd52d0f8e eth_gro_complete +EXPORT_SYMBOL vmlinux 0xd52e1782 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xd538e6e8 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xd54068f6 fput +EXPORT_SYMBOL vmlinux 0xd54e33fd bdevname +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd55c97ce xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xd55d4eec tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xd58b8c9d inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xd58bf11d udp_seq_open +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd59cbf28 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xd5b9b8fb napi_get_frags +EXPORT_SYMBOL vmlinux 0xd5bf2afc switch_mmu_context +EXPORT_SYMBOL vmlinux 0xd5d95896 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xd5e49788 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xd5e8444a __div64_32 +EXPORT_SYMBOL vmlinux 0xd5f0263f check_disk_change +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd606503d register_sysctl +EXPORT_SYMBOL vmlinux 0xd60e144f inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd64c38d8 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xd6610c43 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xd66234b7 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xd6751719 I_BDEV +EXPORT_SYMBOL vmlinux 0xd675f7ea param_set_copystring +EXPORT_SYMBOL vmlinux 0xd67f97fa uart_add_one_port +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68af242 add_disk +EXPORT_SYMBOL vmlinux 0xd69b30e0 atomic64_add_unless +EXPORT_SYMBOL vmlinux 0xd69cd9af free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xd69e1db9 of_device_is_available +EXPORT_SYMBOL vmlinux 0xd6a3f0d3 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xd6aa19d4 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xd6b50fc9 vfs_unlink +EXPORT_SYMBOL vmlinux 0xd6ba0ae4 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xd6ce4e3f blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f72eaa tty_write_room +EXPORT_SYMBOL vmlinux 0xd700e195 vfs_getattr +EXPORT_SYMBOL vmlinux 0xd71989d1 proto_register +EXPORT_SYMBOL vmlinux 0xd722526f proc_set_size +EXPORT_SYMBOL vmlinux 0xd7235866 find_get_entry +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd7672492 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xd7842ee7 sock_i_uid +EXPORT_SYMBOL vmlinux 0xd7928ed1 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd7ad482a __dax_fault +EXPORT_SYMBOL vmlinux 0xd7b381d6 blk_requeue_request +EXPORT_SYMBOL vmlinux 0xd7b6b5a2 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xd7db3f5f netif_carrier_on +EXPORT_SYMBOL vmlinux 0xd7e4b39d blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd807f0f6 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xd8095e90 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xd839b8f4 con_is_bound +EXPORT_SYMBOL vmlinux 0xd84c43a6 lockref_put_return +EXPORT_SYMBOL vmlinux 0xd85805ea skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xd8877975 elevator_exit +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a2b24b mmc_can_trim +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b5adcc devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd90b50f1 set_groups +EXPORT_SYMBOL vmlinux 0xd91b3c83 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0xd92514ca agp_special_page +EXPORT_SYMBOL vmlinux 0xd92fe844 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xd9498b22 proc_dointvec +EXPORT_SYMBOL vmlinux 0xd9534154 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xd9656feb vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done +EXPORT_SYMBOL vmlinux 0xd9813c95 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98c9290 tty_port_open +EXPORT_SYMBOL vmlinux 0xd99f763a phy_driver_register +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9cc8321 nobh_writepage +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9e0646f jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xd9ef4e6d ip6_xmit +EXPORT_SYMBOL vmlinux 0xda0f7b5a proc_remove +EXPORT_SYMBOL vmlinux 0xda18a86f kobject_del +EXPORT_SYMBOL vmlinux 0xda19c273 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xda3564fa dev_mc_del +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda57aa27 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xda6a9d01 block_write_full_page +EXPORT_SYMBOL vmlinux 0xda7310e6 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8da5ae netif_skb_features +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac50908 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xdac56c28 udp_del_offload +EXPORT_SYMBOL vmlinux 0xdae3c5b9 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xdae4e6c5 kill_litter_super +EXPORT_SYMBOL vmlinux 0xdb007560 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xdb2842c7 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xdb332d95 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xdb37dc64 bdi_register_dev +EXPORT_SYMBOL vmlinux 0xdb43056a param_ops_uint +EXPORT_SYMBOL vmlinux 0xdb57717e i2c_transfer +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6c762e vfs_rename +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb84702c xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0xdb8bada5 mount_ns +EXPORT_SYMBOL vmlinux 0xdb9a1716 dst_init +EXPORT_SYMBOL vmlinux 0xdb9d6770 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0xdba59e60 mount_pseudo +EXPORT_SYMBOL vmlinux 0xdbd65e1a mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xdc014299 param_get_uint +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 0xdc29dc2c eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc46681f dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5d49e4 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xdc65c1e0 lease_modify +EXPORT_SYMBOL vmlinux 0xdc72a417 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xdc7c3336 setattr_copy +EXPORT_SYMBOL vmlinux 0xdc89e0a6 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xdc8e57bb cdrom_check_events +EXPORT_SYMBOL vmlinux 0xdc942659 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcbf27c2 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xdce82c71 d_find_alias +EXPORT_SYMBOL vmlinux 0xdcefb9a5 pmu_resume +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd1d622c neigh_parms_release +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd4caedd phy_find_first +EXPORT_SYMBOL vmlinux 0xdd61ddd7 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xdd814759 dump_emit +EXPORT_SYMBOL vmlinux 0xdd87a547 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer +EXPORT_SYMBOL vmlinux 0xdd99ef3d __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xddc08008 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xddcdec1f seq_pad +EXPORT_SYMBOL vmlinux 0xddce61c0 of_phy_find_device +EXPORT_SYMBOL vmlinux 0xdde62d8e disk_stack_limits +EXPORT_SYMBOL vmlinux 0xdde66e0b page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xddef3832 clear_user_page +EXPORT_SYMBOL vmlinux 0xddf01e7c key_unlink +EXPORT_SYMBOL vmlinux 0xddf64010 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xde100be0 param_get_byte +EXPORT_SYMBOL vmlinux 0xde14d604 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xde2b2258 set_anon_super +EXPORT_SYMBOL vmlinux 0xde392860 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xde41138e gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde559582 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xde89e6d6 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea304dd bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xdeab6ff4 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xdeb7c945 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0xdecc6a94 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xdedb7e88 vfs_statfs +EXPORT_SYMBOL vmlinux 0xdef323d9 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xdf018d90 mem_map +EXPORT_SYMBOL vmlinux 0xdf02bdf5 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xdf222027 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xdf24473a __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2de3c7 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xdf356308 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf497e15 vme_slave_request +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf687755 phy_init_eee +EXPORT_SYMBOL vmlinux 0xdf776ca7 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xdf9161aa generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfc866ae bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xdff43ed4 __debugger +EXPORT_SYMBOL vmlinux 0xdff56e64 adb_poll +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe0076318 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xe014fe73 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xe04d9e3f of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe05309aa generic_delete_inode +EXPORT_SYMBOL vmlinux 0xe0564f81 netpoll_setup +EXPORT_SYMBOL vmlinux 0xe05ff07d pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe07fceeb __tcf_hash_release +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 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0c5b2b2 serio_bus +EXPORT_SYMBOL vmlinux 0xe0dcac05 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe121da50 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13cb686 d_splice_alias +EXPORT_SYMBOL vmlinux 0xe14fa594 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0xe159a9a7 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xe160cc3b rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xe16c4fe0 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe1952684 kern_unmount +EXPORT_SYMBOL vmlinux 0xe19f0a14 generic_file_open +EXPORT_SYMBOL vmlinux 0xe1b86da6 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xe1b9d1a2 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xe1c91931 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xe1d3f932 fb_find_mode +EXPORT_SYMBOL vmlinux 0xe1ddc7fc phy_attach_direct +EXPORT_SYMBOL vmlinux 0xe1e1f80c tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe21301d9 open_exec +EXPORT_SYMBOL vmlinux 0xe221d1dc release_pages +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe24ff286 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xe262ad8e __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xe268618c proc_mkdir +EXPORT_SYMBOL vmlinux 0xe2845cdf proc_douintvec +EXPORT_SYMBOL vmlinux 0xe2881db1 scsi_unregister +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2a64c25 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xe2ad5ac5 led_set_brightness +EXPORT_SYMBOL vmlinux 0xe2ae6a3c pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xe2b2c7eb vga_client_register +EXPORT_SYMBOL vmlinux 0xe2b7527a blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e0866b blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2e909f7 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe30ba7aa tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xe31c3525 dup_iter +EXPORT_SYMBOL vmlinux 0xe31e54a6 dquot_acquire +EXPORT_SYMBOL vmlinux 0xe3202749 sock_efree +EXPORT_SYMBOL vmlinux 0xe321c60f agp_bind_memory +EXPORT_SYMBOL vmlinux 0xe3237c94 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xe34c5595 kset_unregister +EXPORT_SYMBOL vmlinux 0xe3526b85 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xe35b69d8 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xe37afa72 unload_nls +EXPORT_SYMBOL vmlinux 0xe3b1b3c8 seq_puts +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3c01d7f iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xe3c8a55b vme_bus_type +EXPORT_SYMBOL vmlinux 0xe3d32a49 input_event +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3efa4bc dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xe4111dcc qdisc_list_del +EXPORT_SYMBOL vmlinux 0xe427644b ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xe42939d4 of_match_device +EXPORT_SYMBOL vmlinux 0xe4476ea7 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xe44d3ce0 __register_binfmt +EXPORT_SYMBOL vmlinux 0xe44f88e4 dev_alert +EXPORT_SYMBOL vmlinux 0xe455c38e migrate_page +EXPORT_SYMBOL vmlinux 0xe455e1d7 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xe45cb870 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xe460d597 of_translate_address +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe486ef38 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xe4883663 freeze_super +EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xe4cddf90 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xe4e70be2 user_path_create +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52600a7 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xe566bad1 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xe573a90b blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe59c151a mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xe5a92173 fs_bio_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d3cb62 skb_clone +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5f3c697 netlink_capable +EXPORT_SYMBOL vmlinux 0xe607da40 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xe609ed02 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69cd315 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xe6a970f7 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xe6c09d11 textsearch_destroy +EXPORT_SYMBOL vmlinux 0xe6c46146 mpage_readpages +EXPORT_SYMBOL vmlinux 0xe6dd236d clear_pages +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe71dc0bf blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xe73866af blk_init_queue +EXPORT_SYMBOL vmlinux 0xe7403252 udp_prot +EXPORT_SYMBOL vmlinux 0xe7473d11 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xe74c8f7f cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xe7513df3 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xe76934ce twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xe774d238 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xe7966167 tcp_req_err +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 0xe7cb7fe4 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d2a656 clear_nlink +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e87a81 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xe8041d7f __sock_create +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe8393734 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xe83c73fd set_device_ro +EXPORT_SYMBOL vmlinux 0xe854041d agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xe86302d6 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xe883900a __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xe890ed98 param_set_ulong +EXPORT_SYMBOL vmlinux 0xe892f814 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xe8972793 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xe8a58179 __lock_buffer +EXPORT_SYMBOL vmlinux 0xe8a5e406 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b4598a i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c0d9e6 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xe8cb0084 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xe8db81b8 generic_read_dir +EXPORT_SYMBOL vmlinux 0xe8ef0c6d check_disk_size_change +EXPORT_SYMBOL vmlinux 0xe8f2a77c of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xe8fd9633 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95c9e4d xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xe9988c4f scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xe9a0c32c get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xe9a2496f inode_add_bytes +EXPORT_SYMBOL vmlinux 0xe9a24e49 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xe9a37221 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xe9ac5d69 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xe9bc2a4c ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xe9e77532 notify_change +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9f88584 vc_resize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea17ba28 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xea1c62d3 do_truncate +EXPORT_SYMBOL vmlinux 0xea32a38a scsi_remove_target +EXPORT_SYMBOL vmlinux 0xea464f9d arp_create +EXPORT_SYMBOL vmlinux 0xea4d4b4c kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xea539392 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xea53f97a n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea86f770 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xea87e0ea phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xea92901e __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xea9b3557 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xeaba8dd0 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xeabb22ab jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xeae77b8d md_register_thread +EXPORT_SYMBOL vmlinux 0xeaef7882 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xeafe31a1 param_get_ullong +EXPORT_SYMBOL vmlinux 0xeb001a0e dquot_commit +EXPORT_SYMBOL vmlinux 0xeb055d80 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xeb06a6d9 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xeb271dfa km_state_expired +EXPORT_SYMBOL vmlinux 0xeb2b2831 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xeb3338d7 nf_register_hook +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44307d pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0xeb507d5e nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb565446 dev_err +EXPORT_SYMBOL vmlinux 0xeb67388c jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xeb6bc633 __destroy_inode +EXPORT_SYMBOL vmlinux 0xeb8d93b5 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xeb9c5abf simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present +EXPORT_SYMBOL vmlinux 0xebb2efc2 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xebb7259e blk_start_request +EXPORT_SYMBOL vmlinux 0xebc2e56f simple_link +EXPORT_SYMBOL vmlinux 0xebc49037 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xebcc99ed __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xebd18deb sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xebe332d3 sock_no_bind +EXPORT_SYMBOL vmlinux 0xebeb81b4 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xec04734d vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec2288b5 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xec2cc7ec jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xec3dfa42 set_page_dirty +EXPORT_SYMBOL vmlinux 0xec45bb1c get_cached_acl +EXPORT_SYMBOL vmlinux 0xec65c774 devm_request_resource +EXPORT_SYMBOL vmlinux 0xec6c2c6f netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xec75a77b flush_hash_entry +EXPORT_SYMBOL vmlinux 0xec7777d8 would_dump +EXPORT_SYMBOL vmlinux 0xec7a4629 powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0xec8c9f6d __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xeca2c5ad pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xecdaf3c5 pci_get_slot +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecedf798 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xed02ab31 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xed034695 cdrom_open +EXPORT_SYMBOL vmlinux 0xed0d200a genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xed531add __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed6a89c5 find_lock_entry +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbcb916 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xedbf4ac8 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc0662f blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table +EXPORT_SYMBOL vmlinux 0xeded281d from_kprojid +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedf8b0cd blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xedfde9d9 tty_register_driver +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3496c3 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0xee3f8acb mfd_add_devices +EXPORT_SYMBOL vmlinux 0xee41da32 scsi_register +EXPORT_SYMBOL vmlinux 0xee50f9dc tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xee59412f adb_try_handler_change +EXPORT_SYMBOL vmlinux 0xee6a2494 eth_header_parse +EXPORT_SYMBOL vmlinux 0xee755768 pci_save_state +EXPORT_SYMBOL vmlinux 0xee8e496e elv_rb_del +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9c6e17 iterate_mounts +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeda028a of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xeedaa9ef ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef0bc4a3 posix_test_lock +EXPORT_SYMBOL vmlinux 0xef2114ee mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xef3a36e4 blk_get_queue +EXPORT_SYMBOL vmlinux 0xef608dc7 vga_con +EXPORT_SYMBOL vmlinux 0xef67be28 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xef792e83 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xef9e8027 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xefc89ca6 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefd1b51a mdiobus_scan +EXPORT_SYMBOL vmlinux 0xefd2d02d pci_bus_put +EXPORT_SYMBOL vmlinux 0xefdbd621 path_get +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range +EXPORT_SYMBOL vmlinux 0xefe2a74f read_code +EXPORT_SYMBOL vmlinux 0xefeeb7f5 mutex_trylock +EXPORT_SYMBOL vmlinux 0xefeee6b5 free_page_put_link +EXPORT_SYMBOL vmlinux 0xeff91e46 devm_iounmap +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00cd348 igrab +EXPORT_SYMBOL vmlinux 0xf01bda98 md_finish_reshape +EXPORT_SYMBOL vmlinux 0xf01d37a6 locks_init_lock +EXPORT_SYMBOL vmlinux 0xf033275a simple_write_begin +EXPORT_SYMBOL vmlinux 0xf04040c9 security_path_rename +EXPORT_SYMBOL vmlinux 0xf054372c sock_no_poll +EXPORT_SYMBOL vmlinux 0xf055ad49 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf0684720 sock_release +EXPORT_SYMBOL vmlinux 0xf0731071 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf08fbd68 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0a4fc49 release_sock +EXPORT_SYMBOL vmlinux 0xf0a815b4 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xf0bc5fad proc_create_data +EXPORT_SYMBOL vmlinux 0xf0bcea95 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xf0ce7060 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f10556 dput +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11a2791 dev_trans_start +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf120872a dql_completed +EXPORT_SYMBOL vmlinux 0xf13200d9 vfs_link +EXPORT_SYMBOL vmlinux 0xf13a45c9 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xf14472cb tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xf145c249 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf165a05b truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xf17253af blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xf18f6acb dev_printk_emit +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19d2140 inet6_bind +EXPORT_SYMBOL vmlinux 0xf19e9355 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xf1a56938 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xf1b66d70 get_io_context +EXPORT_SYMBOL vmlinux 0xf1baa3bb inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xf1be2c5a generic_make_request +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1efe121 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xf204febe simple_transaction_read +EXPORT_SYMBOL vmlinux 0xf20bf213 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock +EXPORT_SYMBOL vmlinux 0xf237eed7 param_ops_long +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf254fceb unlock_buffer +EXPORT_SYMBOL vmlinux 0xf255e613 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xf261c54f pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xf27563cb irq_stat +EXPORT_SYMBOL vmlinux 0xf28ce86f pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2b39f9e end_page_writeback +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2ef8369 generic_writepages +EXPORT_SYMBOL vmlinux 0xf3077657 fget_raw +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf3159340 get_unmapped_area +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 0xf37a45cb dquot_free_inode +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf38f36e1 bdi_register_owner +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3979c9d __pci_register_driver +EXPORT_SYMBOL vmlinux 0xf3bec97e of_get_mac_address +EXPORT_SYMBOL vmlinux 0xf3c06ce0 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3e99f6d __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf413e645 locks_free_lock +EXPORT_SYMBOL vmlinux 0xf416a732 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xf42e2c32 phy_device_create +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4449388 timer_interrupt +EXPORT_SYMBOL vmlinux 0xf4572121 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xf4594cdc mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0xf4725ee5 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47ea0e0 qdisc_destroy +EXPORT_SYMBOL vmlinux 0xf494658e inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xf4b1c43d generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c63f64 dev_add_pack +EXPORT_SYMBOL vmlinux 0xf4eef396 gen_pool_free +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf50d837c dcb_setapp +EXPORT_SYMBOL vmlinux 0xf50ece94 iget5_locked +EXPORT_SYMBOL vmlinux 0xf510bcb3 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0xf52321e0 atomic64_sub +EXPORT_SYMBOL vmlinux 0xf524feb8 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xf5333315 dm_put_device +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf548511d bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0xf54c51a2 dma_pool_free +EXPORT_SYMBOL vmlinux 0xf57b406d vga_put +EXPORT_SYMBOL vmlinux 0xf5912811 __ps2_command +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5ade55b km_policy_expired +EXPORT_SYMBOL vmlinux 0xf5b050ba scsi_scan_target +EXPORT_SYMBOL vmlinux 0xf5b2f19d phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5c32367 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xf5c86cfa agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf603bb2b lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0xf606b5b6 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf66e8615 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xf6718c05 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf6789a40 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf69a6983 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xf6a9a2c9 blk_init_tags +EXPORT_SYMBOL vmlinux 0xf6b166f4 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xf6b81b7b scsi_register_interface +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6c5c291 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xf6cc6fb4 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70384d7 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xf70a2f6d vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xf71521ba atomic64_add_return +EXPORT_SYMBOL vmlinux 0xf71e2287 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xf724a478 devm_ioremap +EXPORT_SYMBOL vmlinux 0xf73b0d97 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xf7406756 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xf74627c7 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xf753386e tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xf754b932 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xf7568b76 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf7803452 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xf783004b pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xf7a7ba48 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xf7cb5fec pci_scan_bus +EXPORT_SYMBOL vmlinux 0xf7cf57a4 neigh_for_each +EXPORT_SYMBOL vmlinux 0xf7d0e682 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf8134f63 register_console +EXPORT_SYMBOL vmlinux 0xf818bb15 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf83506c0 iterate_fd +EXPORT_SYMBOL vmlinux 0xf8507cc5 devm_release_resource +EXPORT_SYMBOL vmlinux 0xf8519ab3 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xf85d4e8c sk_stop_timer +EXPORT_SYMBOL vmlinux 0xf8778ed7 textsearch_prepare +EXPORT_SYMBOL vmlinux 0xf89ef420 dma_set_mask +EXPORT_SYMBOL vmlinux 0xf8becd0b dev_add_offload +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8f06cec flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0xf908cf9c note_scsi_host +EXPORT_SYMBOL vmlinux 0xf90aea2a phy_drivers_register +EXPORT_SYMBOL vmlinux 0xf90e223e cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xf91c4418 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xf9208e96 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf94b2575 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0xf95a62e2 __quota_error +EXPORT_SYMBOL vmlinux 0xf986d7fc filemap_fault +EXPORT_SYMBOL vmlinux 0xf9935198 blkdev_put +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9bcccd5 da903x_query_status +EXPORT_SYMBOL vmlinux 0xf9bfe32c eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xf9cc7370 __getblk_gfp +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9e83c39 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xf9ebcac7 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xf9fd0a55 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xfa01971d open_check_o_direct +EXPORT_SYMBOL vmlinux 0xfa1dc919 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xfa1e8d18 __frontswap_load +EXPORT_SYMBOL vmlinux 0xfa3610c9 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5fa855 inode_change_ok +EXPORT_SYMBOL vmlinux 0xfa8fd73f param_set_ullong +EXPORT_SYMBOL vmlinux 0xfa98eb44 scsi_print_command +EXPORT_SYMBOL vmlinux 0xfaaf9c9f kobject_init +EXPORT_SYMBOL vmlinux 0xfac1e618 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xfac34de3 kill_anon_super +EXPORT_SYMBOL vmlinux 0xfac85708 set_posix_acl +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 0xfaf65b00 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xfafac997 __breadahead +EXPORT_SYMBOL vmlinux 0xfafdab9d blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xfafe1bf6 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xfb064a74 of_dev_get +EXPORT_SYMBOL vmlinux 0xfb1e20a8 console_stop +EXPORT_SYMBOL vmlinux 0xfb1fc0d1 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0xfb21a385 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xfb30c05d dcache_readdir +EXPORT_SYMBOL vmlinux 0xfb321ec2 del_gendisk +EXPORT_SYMBOL vmlinux 0xfb419326 md_flush_request +EXPORT_SYMBOL vmlinux 0xfb4e195b generic_getxattr +EXPORT_SYMBOL vmlinux 0xfb59133e devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb7aef62 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb953289 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xfba1ef97 tty_unlock +EXPORT_SYMBOL vmlinux 0xfba8478e i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbcaec51 dev_emerg +EXPORT_SYMBOL vmlinux 0xfbea5133 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xfbedcfeb dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xfbf63bb9 irq_to_desc +EXPORT_SYMBOL vmlinux 0xfbfa0e83 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xfbfb6152 dquot_alloc +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc106d5a blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node +EXPORT_SYMBOL vmlinux 0xfc41e724 fget +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc755469 d_set_d_op +EXPORT_SYMBOL vmlinux 0xfc9069e5 inode_init_owner +EXPORT_SYMBOL vmlinux 0xfc92ce9f __init_rwsem +EXPORT_SYMBOL vmlinux 0xfc9b9816 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xfca65153 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfce94d70 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfced9b49 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xfcef6f29 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xfcf7cc71 sk_stream_error +EXPORT_SYMBOL vmlinux 0xfcf84a93 atomic64_xor +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd0abb5d mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xfd0c5038 adb_unregister +EXPORT_SYMBOL vmlinux 0xfd1bd2d2 bio_split +EXPORT_SYMBOL vmlinux 0xfd2586b2 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xfd284cb3 flow_cache_init +EXPORT_SYMBOL vmlinux 0xfd294af1 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xfd2b7d38 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xfd32065d padata_stop +EXPORT_SYMBOL vmlinux 0xfd3334dd xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd4e3bb6 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xfd5b7dbb sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xfd75ac4a single_open_size +EXPORT_SYMBOL vmlinux 0xfd89ec82 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd9d1833 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xfd9e5065 dquot_transfer +EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfde98706 module_refcount +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdf6129b block_write_begin +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe00ad2a blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe0ba853 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xfe0d887c ip_ct_attach +EXPORT_SYMBOL vmlinux 0xfe11ed17 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0xfe35da2b abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xfe4f42bc pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee7fc95 sock_no_listen +EXPORT_SYMBOL vmlinux 0xfeeb4b01 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xfeecf428 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xfeee2ad0 cont_write_begin +EXPORT_SYMBOL vmlinux 0xff015470 of_create_pci_dev +EXPORT_SYMBOL vmlinux 0xff0639d9 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xff066b5a skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xff1277cc inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xff13b159 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call +EXPORT_SYMBOL vmlinux 0xff181c59 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff2269d4 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xff567202 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff69a42b __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xff6dea25 smp_hw_index +EXPORT_SYMBOL vmlinux 0xff7cd851 __page_symlink +EXPORT_SYMBOL vmlinux 0xff7ebca5 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xff89b843 mapping_tagged +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ac045 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffb82e5b ps2_init +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffdb82bc sg_free_table +EXPORT_SYMBOL vmlinux 0xfff4347e nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xfff87d02 jbd2_journal_extend +EXPORT_SYMBOL_GPL crypto/af_alg 0x0b8e112b af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x2b4d5555 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x44445a7d af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x52cb5cf9 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x77cbe84d af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xbee89e71 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xceadf432 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xda442355 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xf2f8e8c0 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xf522a048 af_alg_complete +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xddeff720 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x5e4d3334 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xe3919c04 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x029a5474 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x3fa23abf async_raid6_datap_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 0x42ff7a20 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xe6c1be38 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x0bcc18ac cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x0d41596e cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x1a849e10 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x48eeb118 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x664a4243 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x8da39c32 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x8f6b3785 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x9ec5f82d cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xb465adce cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xd290d069 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 0xbad86894 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x0b714b86 shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x348e8752 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0x5d532012 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x71d95284 mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x7559b9e9 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xa8c991ba shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0xd326ada3 shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0xf3db687e mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x74422fc7 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x96dfafc2 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xb052d9d8 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xfa12f662 crypto_poly1305_setkey +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 0xc096ff34 xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x01747a26 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x06339130 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x06d70e5f ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x140bb963 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1acbb089 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2a946875 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x302cb82b ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3e3a360c ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x42cb7037 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4a11a1a2 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x53394153 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x66cdc418 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x79e79ee5 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x97adfb9d ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa7004720 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd881cf26 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xda8d90dc ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea9d35c2 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xebf72087 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf3dc974e ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf62a18d3 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf98c2812 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfc669476 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0c99ee8a ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x233cd35e ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2948e8d1 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3c4a3745 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6e04898d ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8135525f ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x89b080d6 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9cf7ed32 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa292fd7c ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xacfbe490 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbe083082 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc17fb4e7 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xde0a51e8 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xe51a3a67 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xea9fdd3d 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 0x18b8a738 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1c3a070f bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x384385c4 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x39cd0ca5 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x43d4812a bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x67de0eaf bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6e3e7c37 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7082d316 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7e8385aa bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8ba84f86 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8e9e5975 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9cdaa969 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa7dbfe2b bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaa01f49b bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaaa290f7 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb834fa0e bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc0362f8a bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc502263d bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc6b43529 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd6371d64 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd9c69706 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdbd7b916 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdda5e958 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xec513af0 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x06b635aa btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6187be76 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7863e51e btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xcb9f92d2 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xdd7d068a btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf87d1648 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x17d92ec5 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1bde80e6 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x301d57ca btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5077e58f btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5f04c6c6 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x80f17129 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8f0daf33 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa4ac5d17 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xaffb7633 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbadc2241 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe8d0b49e btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf943636b btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0bf367fd btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1d61b684 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x79269838 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8c5ac2d6 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x91fb2db4 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x926647af btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x953ad1f8 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9d1636a2 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe741a6d3 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf4c1d8c6 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf648b545 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6ae8efcb qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6c4a2e55 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x09e5cbed btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x3378c016 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 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x13e36732 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x204d13cc edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x213f83ae edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x22c34f86 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x33e42b73 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3a4d2553 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x42de9fab edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4e84560d edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4efa11f6 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x50b20d93 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x567367cb find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x674bcfda edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7543db2f edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8565f992 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9734cf41 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9d0d638a edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa8b3db06 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb2b7996d edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb8e0ae09 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbf4857d9 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0d92bc8 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc222b920 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfd901549 edac_mc_find_csrow_by_page +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 0x056b71f6 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x49d10bfa drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7a1502b9 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc76839ba drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdbd1c4ea drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec273d2f 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 0x933d86ee ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xa3500e81 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 0xe951ad61 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d2784bd hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x11cbffba hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x179708c9 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1fa83a4c hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x228b1f45 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x255b7288 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x280dca25 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2a32ef09 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f9847bb hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x33ef037b hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x35eeb00b hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x37ada9ae hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x37cda84b hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x38b938d1 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x545024ce hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x55be90bc hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x58d9313f hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6b761274 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7166bf94 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7bdf6317 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x85dca278 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x96be8c8e __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa97d28ab hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaac9c4cf hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb3e060cb hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb4d77441 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb8434e58 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0f718f8 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc62bd71e hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcd9ecad7 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcffef50e hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe2f0e51d hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe5031e8a hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeec7436b hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf30577b1 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf64abd15 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x4ea3f7b3 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2ab55d4c roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x53564368 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5f1b0817 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa643b324 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb7dca144 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf3c1cf6f roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x02ca2b4a sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0efcc0c6 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x43218bd6 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x83e98fdf sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x84e2be96 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9bf6cd4d sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbd1eab0b sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc2531454 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc9ce9ebb sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xde7260c1 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 0x17de9f75 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2045f527 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x324370fb pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x343b4757 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x399a8367 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3a2c673f pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3c87119d pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3e079524 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xad80bdfa pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb8230152 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb8242f96 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc21e446d pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcdb19adc pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xea5a76ee pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfb71752d pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0487b9a8 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0a6a593b intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x55a98a4b intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6cdccc24 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc76ac3ce intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd8b56703 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfbc3c518 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x151b65bb stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x46895db7 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x77466063 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x994fc5bb stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf2f13c07 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 0x11268eb2 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1b096f20 iio_push_to_buffers +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 0x32a139d8 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ecbae44 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x436f75c2 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x576aea13 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x58bf8405 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x611744a5 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x61ff08ec iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6375d064 devm_iio_device_unregister +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 0x91b805ba iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x92132cc3 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x99b602a5 iio_scan_mask_query +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 0xb9a23899 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbde99bb7 devm_iio_device_register +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 0xdad97ccd iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe700d9d5 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe92f7d07 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xead3c5bc iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf6dda873 devm_iio_device_free +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 0x154e2421 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x02a63922 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 0x9f603c79 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x7e296981 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x87351f7f cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xde0c4067 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x6907d5df cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x8f767f1e cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xdc159dcd cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x810cf90e cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xffd85064 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x04f668e5 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x75fd6f7e tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8eb03990 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe9209938 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x07c7e215 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0ad5d2c0 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x30cf7a1e wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x53e11e7b wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x752f5bfb wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x82f503bf wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9b40fe8f wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9f4b1ee5 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xad2e0ee4 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb6bbe446 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdfbb8e50 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xedda380f wm97xx_reg_read +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 0x00d02b36 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0370d0c4 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0af0c336 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x20c9f753 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4f9a0827 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5e5c5285 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x62282c4f gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x66b0b28e gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7c43cac6 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8b2b14de gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9f16a823 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa98f6dbb gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc7920bae gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd6a1cdef gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe1b62533 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe76fdcb7 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xeb8aebb1 gigaset_handle_modem_response +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 0x03fa2464 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x09fff0e1 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 0x1a524b4d dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3b88a83b 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 0x7c69c40d dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7d42a949 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xae977079 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 0xb6d60f71 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb97bb611 dm_cell_promote_or_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 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xae1e7b59 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 0x27a2a791 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x288fae32 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3af9cbe7 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x415d109b dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7b5ee8ef dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9604de6d dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc7f6ab65 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x023d338a dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x433669bb 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 0x2188c772 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 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7a726c59 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 0xa025b368 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa4a60674 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 0xb7a2686c dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xca65a133 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0x5ecf91cf dm_block_manager_create +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 0x26856eeb saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2dd53077 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8570ab7d saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x89a5302b saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x99153de6 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9e959edf saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xae7f732a saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc2341cae saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xea4589b2 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfb1c639c saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0519c2ea saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x09952e23 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x4c38cf9f saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x54d89114 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x68360e00 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xda720a1d saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xfe64b45f saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x072ef5f8 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0d883909 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2d053fbc smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d709e6 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3fadb57b sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x57be35cb smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x57d606e8 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x619dbf53 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x677c3d3b sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x77465cc7 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8414ba77 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9a4c48a6 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb4c30d3b sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xba27b5fd smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd925e460 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe006cee6 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe6337f8f smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xb62ecc11 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x20b8d980 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x4abc850c tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x15f2c300 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x1e0f3df4 media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x1fe46a4b media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x1ffd46d6 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x2f8c896c media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x3fd53df3 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x4ada71b5 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x4ae7a6ad media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x590a8dab media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x6f69ff4b __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x896ca6fa media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x903d7a12 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0xbb6bd544 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0xc35120e4 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0xc89be345 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0xcbb2d1b3 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xdb964a41 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0xeb9899d3 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x353b1657 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x091c1c21 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2cf449ff mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x42d38549 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x44366fe4 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6a19c54b mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x74d50110 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x79ceb5b8 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8c41284f mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa25b93e6 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc70e59be mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcfb24cb8 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd17e88e3 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd184fd00 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd45217aa mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd586d18e mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd8c1266c mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdd50c397 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe72bf098 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe7780cba mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0a92d9c5 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1d53f0dc saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x28385ae6 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x473bf2ee saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x47e93207 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x552a3f90 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6713142b saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x70dca142 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x811edb4b saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb9959676 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbf91a208 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd13f84a6 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd9bdab14 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe73cfe3e saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe97a967b saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xec2f636a saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf0fc39dc saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf88c869b saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xff855e3f saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x06fe5610 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2743c8c6 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x43f40b65 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x77b95d07 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x84b132f6 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x91729df9 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9a03e390 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x061f3784 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 0x173eefe8 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 0x6c81b90e xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7c66e19a xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x82f2239d xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc6f5e789 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd304097f xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x2ebfadd4 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 0x31b368c9 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x78a1a75c radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x04f445df rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5168dfae rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5448f1fb rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5f40a90e ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x64465c1a rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x72b138df rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x903fdd47 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x92e298b5 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x942c2551 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa093da8f ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaa8830e7 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc2968f13 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc5724e53 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe345862c ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xed69acbc rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfb170dac rc_free_device +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x6c1afcb3 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x083c06a3 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x62e54795 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x36c87e6b r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xa4f34953 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x35b1575f tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xd5401a61 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xf78b7ff4 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x22e1bcb6 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xa714987a tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xdf7263e0 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x36fcc9be tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x85a90105 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x8bec568c simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x01eee586 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x15e67b10 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x256b3db5 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4a3243f8 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x50a9a3f9 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x55937c3c cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x57470988 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x66d9716f cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6ac39749 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7561971e cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x86136a2c cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9fddace8 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb61faa68 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb804ef24 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc07089c9 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc2f71100 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc76e3816 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc9d431fe cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe2d6a56b cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xff7dc1e7 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xe7d4d584 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xb4b20110 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0c28b2b5 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4631c96b em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x682c273a em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x68f2c347 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7a8c6a7c em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8845d705 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x92e6c304 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa3232f45 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa9e75935 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xae653043 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb651ba88 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xba136ada em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc1ccb10a em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcef11c1f em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd4376479 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf0ad8277 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf161aa64 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfd483ff1 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x401588cd tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x9208a1af tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xe183b540 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf27aa6b5 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 0x2e3c81fa v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x2f267bae v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x3f59e6ca v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x6df11416 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 0x92c59eee v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x9a318240 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 0x1a217c06 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x27995e99 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x169b7feb 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 0x1c2f5c34 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1d1c4ab8 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x22fd74d1 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x29421d19 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x439ffbe4 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x50c08ca1 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x541685ca v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x666306b4 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x694e443d v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x70a42a6e v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x717555fb v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x71ffd4c7 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x749ae801 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x82179890 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b2048c4 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9c89d6ee v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9f313e62 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa80c87ec v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaf234655 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb582a21c v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc2c1a778 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc5969f8f v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcbd6d1c4 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcebaeddc v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe04861cf v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xee01529a v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x10e9c31a videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x11585fdb videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1dcb0b6f videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x31aa6b1a videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x31cebcd7 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x342e65f7 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3ec29ab6 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x48c36913 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6cfbc7cc videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7de4777c videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x832f055a videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x925ead19 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9355520a videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9605a238 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9828b09b videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9b27efde videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaebe979d videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbf89fe8d videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc55e9768 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc8925206 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd15c4479 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd470d462 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdfc286f7 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfc1a2143 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2b822159 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x46a551f8 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x66a9e559 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 0xf724fc79 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x0d01a990 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x36b1a3f8 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xb1befd56 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1212082c vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4c2ae0c7 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4ec01f09 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5112ad42 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x63db25f4 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7f54e0f8 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x82ccc40b vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8a688359 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8ddc1113 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x933acb0a vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa3307fe6 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xac03237a vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xaebaef2f vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xaf52dee3 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc3664443 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc7bcf521 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xecd99662 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xef167fa9 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x8830a2ea vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x8a031658 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 0xb36b843c 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 0xef2d40ff vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0xe8ac8076 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0f1d6429 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x10e8e1c0 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2220d273 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2cae830f vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x38082699 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3e8b6aa7 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x48af948f vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x491e3267 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x49e748d4 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x84cc094c vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x851b3533 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x92b426b8 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x94129ae0 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa1c8982d vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa23792f2 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa48cd70e vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb43af721 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc6a0eb29 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcf7208f3 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd2bd1bda vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd5882f84 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd7ebc5ec vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd829db73 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdd40ed70 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xde5051a1 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe8a926e2 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xea7696fd vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xec47acda vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf2c51084 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf44e37a4 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfe592cfb vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xffe1f8d3 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x5430b8f0 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x00c8a217 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x085c1c98 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0a8d4fbe v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1bcf1610 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x22fe9285 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 0x2eb79489 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31e3d76e __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32324e05 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x360bb834 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3740e82b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43fba726 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d17ece9 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x716506c4 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74fe06bb 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 0x8734a7ba v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x906d23cb v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa55f64f9 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa5d5f395 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb4ac3fa5 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe479ba9 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc056f9f9 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc0d518a8 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc5322d0e v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc5a6a800 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xccbf812b v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf9e0e6a v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcffad9d3 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd2d57c3f v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf20ca175 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2941f0e v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf986138e v4l2_src_change_event_subdev_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 0x9330b79a lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xaf3390ed lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xe2c295e4 lm3533_read +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 0x0ab86f11 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0d861117 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x38c26a29 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5c9325a2 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x765d103f pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb5d4e4f6 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbd0aa8d9 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd5af5ce8 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf1139e98 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfd90326e pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xffa8e357 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x99a70f62 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xcb313384 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x16d7a392 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2aa36d8e pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x96731450 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc1ad5e97 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xec085977 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 0x0d401abf rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x21f1b268 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2bc7f0ce rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x33e22523 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x38098c4d rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4ede61f2 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5670f444 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5948e057 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6f2c0363 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x745b7c0d rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x824dbbf1 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8398fcf7 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x85925ed7 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8d06bc95 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xba5e7ae2 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xba6eb3be rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbf7b556d rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc67795a1 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcf7e78dc rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd221783b rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd4e10169 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf5fc5090 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf8917591 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfc138fd8 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1c3511dc rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3c718ffe rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x486ffb4a rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x596d1518 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8fef1858 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x94f67fc9 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xaeeb4e9f rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb29a86b5 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xddd17b13 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe2c13427 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe407a187 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xea22bbaf rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xec2add24 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 0x0f5ca93e sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x223e0a8b sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x82010d9e sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8eae355e sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa3fb2080 sm501_unit_power +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 0x69f2b760 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x77b52d1d tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd928f426 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xffa77354 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xcae432ec 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 0x15cf0ebc cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa8185b6e cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb69b8d7e cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe8b9fca8 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 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 0x158140ee lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1e1aa927 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2c2af6c7 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x421c8bbf lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x79951752 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x912d8813 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe0b37e33 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe1ba444e lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x81df6421 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xcd6e377b st_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0732c44b sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0fefb860 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x115672d8 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1575d8f8 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4d95e71c sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4db04767 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x52c9d504 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5fac16c8 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8bdac33f sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xab5cc706 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc78504a4 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd4c55ebe sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf30d2685 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf8fdf678 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x07cd9f62 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x25c58a64 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x422eaaaf sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5a8966dd sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb5c416dd sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xccab0019 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd33d0386 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd4f01ccf sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf867fa36 sdhci_pltfm_clk_get_max_clock +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 0x0c3f1dc6 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c5be047 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x119fcf6d mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x199f8b5b register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ee9a0c3 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2431539e mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x24843036 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x34d9ca25 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3792df82 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x453a8f4f mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x49644759 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4a46449b mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5967a14f __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5ba51a5b __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6b06c58a mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e8ab30d mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7577653e mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7ef454f1 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8bc0d073 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9363021c mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x94c66ed9 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x987dd5ab mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9f78b8e4 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa54f7c05 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa5c619e8 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xad96fecf mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb20e0dfd mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb661598f mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb88a3a95 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbb6a5304 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5e358cd mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcf984957 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd3ed843a mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd40f5f99 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdd49a3ac mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe10ef6f7 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2c3778e mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe4eafd90 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe5b76c4b get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeba381cb mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf10662a2 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfaa4b784 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x57294558 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x6afc1757 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x8cbc2e1b del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xbc3155b5 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xbf6feffd deregister_mtd_blktrans +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 0x14ce4432 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2195b06c 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 0x4611aac4 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4da20415 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4fc6d39e ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7af34453 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x93be1e90 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9cdd4075 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb018b61e ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb5c0d6c3 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf2a569ec ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf7f27ab4 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf8f6e5c8 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfdcd46c3 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x54365544 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc3e99419 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0b7323f1 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2d733f4c register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3f115faa free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x52d8517c alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfedc93e2 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xff71c3b9 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x03a86c42 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x102860d0 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x13ad8653 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x15bb5fa9 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x19f90878 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x261a66b8 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x28e0fc64 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x474ff6c2 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4cc2ec09 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4dd3e804 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5570d441 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x74d4de0d alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb58b5e0b can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcfe141e3 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd791b505 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdd069fba can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe662e5b2 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfc5f775e can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x17adc4f8 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2c0f17d5 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2c200c46 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8f14581a free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x37fc6a97 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4e926858 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa20dbc2f free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd80598ae register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x5684db02 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x71cce1fd arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04320119 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x067a6f83 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08269e39 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x088235a3 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08f87292 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x093a1a9f mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c79221c mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d96d5eb mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0daeea01 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11509c62 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x179f97ef mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a1f6ccb mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a6bb78e mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d027d1d mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d973f1f mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22505d86 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2526971e mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x255b61e6 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x256ced69 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b5c706c mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e934718 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32251c56 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33b350bd mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35306a23 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c6803f4 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d617b02 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x408b3a77 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40b0b553 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4158e1e2 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x443526a7 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45320197 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47b788e1 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47ec66ed mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48817cc9 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49e2f851 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4aef5b85 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bc0c2f1 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bcee88d mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c1a3990 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d46dc40 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4dee0482 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e6f33e4 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f17fa86 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fd4a6b1 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x503f7d9b mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53c68557 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5729fa88 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x574c7ff2 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e41b827 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5eaf9a52 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62bdbbf4 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64993072 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x679da565 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a3e1b28 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a770b99 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6aef1e3e mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c90c1ca mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e4f9b7d __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7479df2b mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x753d78a0 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78327240 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a240a76 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a6ecbb7 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a8ba187 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cf6c3ee mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e54a3c5 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x808a751c mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8090daf1 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8680968c mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8abb801d mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e53ba51 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95a6c7fb mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96643049 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x977f7f2c mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99c16775 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99ccd849 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a01abc6 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a8d15ec mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c73ebb2 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dd44df7 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f09d3ac mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7150239 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8f353bf mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa3daf20 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabc9e10f mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaec7fac5 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb09fa320 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb150813f mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2523384 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3acdad6 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb515cffa mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6c23faa mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbde21148 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf1aa634 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0a3a1f2 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0eb2d56 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc34b2116 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3f0533a mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6be97a4 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc89e4f60 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9627789 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc7ec4a4 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfd48006 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0b10007 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd388ee3d mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd66480b5 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd70b22bb mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9e898da mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbab11a8 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe084631b mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe097541e mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7e2728e mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe903f85b mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea4a997b mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec602ecb mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec9bedf5 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedec28d0 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef655f46 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0e884bb mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0f6f33c mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf39a7cc8 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf610ea72 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf668fbc8 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf82ef607 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f6b28f2 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1020dc4e mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2806be59 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29ab4dd2 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ff5937b mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3236f369 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39341440 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c408e14 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x409a8d4e mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a47cfc0 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x517a90ec mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54b507fb mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x560e3ed0 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58c6b276 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63061327 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63ad0744 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a513d3b mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d80a1fd mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8045be3b mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85c101ea mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x861b08ee mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x874c3fa3 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88c47eff mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ad44676 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9484b51e mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9dd6c5e5 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3511165 mlx5_create_map_eq +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 0xa593035d mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb006027f mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb11fdfb1 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb32807ad mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb55cfd8c mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc6d5742 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcc7c270 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcd3e889 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc77f41ca mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8bc9b65 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca88b61b mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1e414a7 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd25d2a37 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3cc1870 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdac44800 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea2d7168 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee636f17 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4cf50c0 mlx5_set_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 0x9617749e 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 0x057c16aa stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x60157963 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x68fa804c stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf222dfd8 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x400bb4c2 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x49a003ae stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5d673808 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe44df107 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0146bd02 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2859f35b cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2ca4eaf5 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3ee8975d cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5acf3311 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6d0bfbfd cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x87c83811 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x89141dc6 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8f91ead4 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x946afbc9 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa551e208 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb8d646ab cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe13928a7 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xeb4aaf57 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf3bfd005 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/geneve 0xd9409761 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/geneve 0xdac356c9 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x201c4809 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x41bf23c8 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4c813665 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa3b7d029 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x87587125 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x21df559e bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2d2e36af bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4ddd4db9 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x912d98e8 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9818d874 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc196c74a bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc7f0e5ee bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf149bce3 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf705ff90 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfbccbe95 bcm_phy_read_exp +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 0x3a0239e9 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x44b11319 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9c7722f9 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe642d207 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0177c8db cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3e125064 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3fc75e2a cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5593511e cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x60387414 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xba6b803a cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdec3db39 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe14d6e4b cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xecd10627 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x027f7fd7 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2a343013 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x56235ef4 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x63b0e135 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x854ec084 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb0a67638 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1193b200 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x14954d58 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1ed9defa usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x29fed356 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2c0e51e5 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3b284dff usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4fe0d7d8 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x525fa7f6 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x58bec0fa usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x71105de1 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x731fb730 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x77ca3555 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x79c88830 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8a5e9956 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8af66b3e usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8bd2f58e usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x91496974 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x953b1696 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x98b00686 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9cb5f1d5 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9d762982 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e5dfc9b usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa107242b usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa3d37427 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xae107cfe usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb13229e3 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb2e7fb98 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb5fbca00 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf00196a2 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf19c543f usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf23a3ca9 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf7be4e71 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x14523934 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x5253f001 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0405fd46 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0b8c9ba6 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0b96c8a8 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x203056d8 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2a75be9e i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2e8e6ed2 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x353f8e14 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x579b9e1e i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5bb0b8ef i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6651d8cc i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6915cecd i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x88521c43 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x89a2340f i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8d91a369 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xab53c5fe 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 0xf2682c71 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x00283293 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x00c3f7b2 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x2220c9b3 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x37c94d51 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x2e46a19b libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x00b180ed il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x4facc65f il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xd1044aaa _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xe5720ecd il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xfdd25fa2 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x00cdc412 iwl_read_direct32 +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 0x0fc5b979 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x29300748 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x371ff344 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x37966148 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3889c913 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x38ca9553 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x585f65a8 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x71b6ae31 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 0x7e8504d2 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x887af764 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x892cabef iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8d4b53c0 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x925027d8 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb7c82644 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbc2974a0 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbc37f555 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcae68606 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd48b0ac8 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd62f81f4 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdc114f22 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe10ada77 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe3a298b9 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfbe3cedc iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xff7e0da4 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x059bfc99 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x11df27ea lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x24e96c98 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x285ec78d lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x290190b1 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2c03080f lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x380fd3a2 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4970ecf8 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x573e0381 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6c72a575 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6ce90c29 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x93282519 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9dbe979d lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb0f78e4f lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbfd0b508 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xecfc31ae lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x5032a59a lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x571d15ad lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x63031ee0 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x9981226a lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa49d8047 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xb1dd377d lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc4065a3b 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 0xc943331d lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x00171115 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x06439990 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x304ec93b mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x30a72c4d 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 0x35db37b7 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x421df3b8 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x43b30f3d mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6b2dff17 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7fc059c2 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x88caa4cc mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x94681c39 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa3625c98 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbdc99849 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc3db80b5 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc93e6ad1 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd1c92bad mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd8cfded8 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf6935971 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xff8fd1d3 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0360a068 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x12012914 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x28ca1676 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x651e89b4 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6f364d59 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7ee2e292 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x84e22160 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x9e2ab167 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf03c4bb8 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x36332b56 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x481a96f1 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa8913ddc dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc56ff752 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x00c1b679 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x02658fb5 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1ca7e52e rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1d3dd61d rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x274b1122 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2d758cf1 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x309706fa rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x30d705db rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x31f13f9b rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x40deb9b4 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x48a678fc rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6cca82bc rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7bd427ec rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8ccf7fff rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9b9c4644 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9e4f3e6a rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa0ca644d 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 0xc1fba2e5 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc51dad6d rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc529a6c5 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc7456bcc rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc989e939 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd179762c rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd2fbdc8a rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe37fe11a rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf793df55 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf8662fcd rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x09effad7 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1fba75c1 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2006d4cd rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x206d739b 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 0x5581f5d5 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x56a88bdc rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8198c416 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x822d81fc rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x87f7899a rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c5939b5 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xabb487ae rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb1c5dc7c rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb680419f rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba5125dc rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd7e2e0ec rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9f4c998 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7bba486 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf4ad8972 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5cd35bd rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x01bc2a5b rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x21df733e rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8ea8bdab rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc4be1da4 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x013e01c9 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x03becd3b rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x19572960 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x22e5468a rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x30aae2b5 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x343eda38 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4534d9fc rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4da7ce82 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4efb55ed rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4f11be5a rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5c832e0e rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x62cb1226 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6ad71cae rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6ef642ef rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x72c64c89 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7ca7ad56 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x806c211b rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x896ce8b2 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x90dfaf9a rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x95db61f3 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9b9dabd5 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9dc1b984 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xac10ef72 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xac28331c rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaeb18645 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb975b706 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xba88a66b rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc14ed4f4 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc56d4275 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcdbcc318 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcdd241b8 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd27b8e1d rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd36ea331 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe782ca70 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xed86f4ca rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf06ef5bc rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfd7db6af rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfdce703b rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x01e62429 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0f1d6527 rt2800mmio_init_registers +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 0x2566b96d rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x415b7e59 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x6a573ed6 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x749b0e30 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x98a609bd rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa3702234 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa695582d rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xaae03587 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbb40101e rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd220bd51 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xde667f87 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1b011a5c rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2094c708 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x248d9737 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2c4f0940 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x303b0438 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x31c32b0c rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3408fa54 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3464686d rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3de5ce81 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3e125bb3 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3efe2e6d rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x43417a10 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4a505552 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4e0815ff rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x53abde43 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x57f7f136 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5d7f686f rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x62051625 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x686c9f29 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x705dcdd7 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x71be1e89 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x75e9dbe2 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x79346ff1 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x861459b6 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x88661e50 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8b2c99db rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8d1dcbea rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x94304130 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x98a4ef6b rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9f172494 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9faa50a0 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa6d7b176 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbcd7504a rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd38d3fa1 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd4da1382 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdda4d286 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe2512fdc rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe2ca2881 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xeb096b20 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xeb7d7859 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xee1c579f rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xeed0c8ec rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf1a4a5ab rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfa509ddf rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfa7d023f rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfe1f4bda rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x4dcc9005 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x6baa9cfe rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xb9b44fbe rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xc2caee3a rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xcbea21ce rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x41a5a564 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x9cb13211 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xbb002d6e rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xf731bf45 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x056c8149 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x058990fa rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x12a56490 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x445b2db4 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4c20c8a8 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4c3021d8 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5ad54f0d rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x81b65013 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa05cd6fd rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa30bb4a0 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xaddaca88 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xba216b46 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xbae9825b rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd1268a00 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe3dd55cd rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf8912ed1 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x4b898b4b wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x65f36d8f wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xaabba2c1 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x045cd5c1 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06fe037c wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a8d430c wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x29c94108 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2a11e836 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2d9e745e wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x37241fa5 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x377527eb wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4005cce8 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x461961ab wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x489e6a40 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x48f3d476 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4ced0d99 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x502a3660 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5347f61e wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x56c3422a wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61c097b9 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6750a9ab wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x67bb3fc2 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6a6f2842 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6c068009 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6dcedfcd wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f7ae796 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 0x7af44ee3 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8557b93f wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x880614d1 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x88895e42 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8c2d95a9 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d938d7a wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa27d71af wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xab73c717 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaeee345b wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xafe1fc5e wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0c3edb0 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5873000 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5e2bc83 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc0db1f05 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd4b926f5 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd9b6512e wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xda01c864 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf1443125 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf174695f wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf1f19463 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf21a8a3b wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x48549f7c nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x5e3111d9 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x64300b42 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x890af2aa nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x08463b8e st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3102f75e st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x849e78d5 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8dfd663f st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb4e41a45 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe509770f st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xeb0b29f7 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf8617d15 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 0x56b1328f ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7334ba63 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 0xbe7a2c34 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 0x0abdb607 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x12b8eeb7 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x354fb67a devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3bbfaeae 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 0x7aca7bcd 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 0xacb8b247 of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xb6ee652e nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xdf2ae813 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 0x5ddb2b38 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xb39d72f3 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xcc9daa87 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x20df140e mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x26241c5b mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2c870b14 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc66783af mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe25a067b mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x33d7e8c3 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x466760fb wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x83012381 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x871f72bd wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x917d7022 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe536d50d wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x57345885 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x002911a4 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x026c6193 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x06d1c14b cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c971fa7 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x14dd6cfd cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x14fd9476 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1de2ebd9 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1ebdf6f0 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2d80fcd8 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x32cae9df cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39646d18 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x42efb6b7 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x442f652d cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x525e99ed cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x52e95e3f cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5e94df64 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x607ef9a5 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64243a12 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x66e64b36 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6b7af479 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7110c588 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7341a533 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x78a0ccda cxgbi_get_ep_param +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 0x935c7184 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95cab2e1 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x96768eea cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x98475c89 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9defd3ba cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e398d51 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa1931120 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa646a974 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa90609a1 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab9d18ef cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac428256 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac7b9f1f cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xadb48266 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb4ba3fc9 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb9e6cee1 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc4c43cc9 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc9adccb2 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd0cb3af3 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef59e0b9 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf19b1f00 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf38ddc97 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf8d8e408 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xff038fb1 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x06f11cd6 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fbc48a2 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fe6acf1 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0ff07aef fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1ae1785f fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1d79551c fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x245a5738 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x29a8129c fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x32d8c145 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x40e98bdd fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5554821a fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8d60359f fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa27dbda0 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb8a08e7f __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdf4a8916 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xede3f84b fcoe_ctlr_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 0x03f3d897 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0969175f iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0f78322f iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13bfff74 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17ebd2d5 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2814da84 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a722320 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2e8cb757 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2fb35fc1 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x30a03059 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x326f963d iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32cde187 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x44827539 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5aafcc18 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x676f41c5 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x67c87fe8 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6c59747b iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x710d1f85 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x72fd62d9 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7914f4bc iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8397e8f7 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b9d8d05 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x908a40ad iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9d37ad25 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9fba3e1b iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5d94284 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1ddff75 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb70617af __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb77b5cbf __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbdf49fb8 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4925c48 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc8fa04a2 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc9ad48a9 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc017b15 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd59d3113 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd70a55dc iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdc85828b iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe225ff00 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf17a91b9 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf323c58b iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf54015a3 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc21dfcc iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x17c22cb4 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1cf8bfc5 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1d091879 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1e72d9fc iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2afdef6d iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4209c146 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4f9e27d3 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4ffef2bf iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x55d40444 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6284b6a4 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x69adb973 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7d939083 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x98d789c0 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaa231874 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbd661718 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe8979cbb iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xec5c29f7 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x01f59639 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x072c4285 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0e3c8611 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2223e8f8 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2c0db56b sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3b69dce9 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3ec55468 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x57dfe323 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5c4c051e sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x62ccca57 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x637ad875 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6a95c25f sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x79e9301a sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7bb791e1 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x84088e59 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x853182b6 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa64d78e9 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa73254fc sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc5808632 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc703c270 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc7fdabc2 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd6f9d357 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd974aec9 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xddcc2d0b sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1840175d iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1bc7208d iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1c7c70be iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2478bf9e iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24e01609 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29bf7d3f iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31eafda4 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x32396f21 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x34a48978 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3fc0fd37 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x412b8d12 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41f5a012 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x68c3332b iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ed42e7c iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x727e0da6 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x74152902 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x83d67481 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 0x880ef220 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94c76b3c iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a0ccc0e iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c5dd192 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d3424d8 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa0d258ac iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1f77e19 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2990585 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2db7df8 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa47bf112 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xabf4efe8 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad784e0c iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1059ee5 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1f20cea iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb215650e iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4c91a5a iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbd4fa118 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf3a71d0 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc33970a1 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc67a9123 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee04a28b iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6f2f7c3 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfe3f89c0 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x10911cba sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xb33c047a sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xbdb64722 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe1d594f3 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 0xa8d8538e 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 0x569d2cc2 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6b8c63ac srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7342b960 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x76876d94 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7c62a4a1 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xcdab005f srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x084d68c2 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x591ef435 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x614754f9 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x6f264b2f ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd00d4c97 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd6bf5980 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe373b3f2 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x28a228d6 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x34cc9226 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x497c9aa0 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x4b1a2ef3 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x6e577196 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa07af762 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd03d8d8b ufshcd_pltfrm_resume +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 0x0c1a1d92 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1267f4a6 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x86826cd7 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf4a7c97c dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x16b39cf1 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x16bbfbad spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x17835fea spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x290ead24 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2fe084aa spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3686412a spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x443d9fff spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x60ddcca4 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x65dad097 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa12ad3d0 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa6e6f62c spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaf474a1e spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcaae53f4 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd9066103 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdd0e558b spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xddc51c61 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xeaa3832e spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf2a6b3b2 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x61c2cf4e 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 0x2be56d50 comedi_set_spriv_auto_free +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 0x341dd5f6 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x345d242e comedi_alloc_subdev_readback +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 0x4b6c5598 comedi_event +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 0x62a892f5 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x67b2916d comedi_dev_get_from_minor +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 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 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 0xd0531a2d comedi_dev_put +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 0xf5bd2585 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x04c797f9 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0a133576 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1e63deab comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x33915d21 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x342c1bf5 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x94b83e90 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xacee01dc comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd4b788fd comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x00da72e7 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x147272a2 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x2531dde2 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x681333a4 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb477d0df comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xdf1c2731 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xf213c7b5 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0353def2 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x634d6e6f comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x6a90c579 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x902c9207 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xb7df03fb comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xcd1529ab 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 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 0x0b16a77c mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x145c1f2a mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x41ffdc59 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4c38b47c mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x60ddc176 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x95c99db4 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa185c41b mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb1ec46fc mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb2ec970c mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcc4b7e4b mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xceb885ce mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd3c4d595 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe7b173ff mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe917fa77 mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe9face59 mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xebbff339 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xed2c3844 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xefce2ae1 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf1495f03 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfacd23a4 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfd739a09 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 0x28bfb1e9 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x39c360f1 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x49e9e0b9 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5d6d65e6 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa1a218bb most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xba905380 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc1b68df8 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd4abdf79 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd5f4506a most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xdfd7d4e6 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe4d40009 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe8550dbf most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xed1e0aa7 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1c3c2b35 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x306d0659 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3e932ae9 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x688406de 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 0xb54389a5 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc2e087e4 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xde507eee synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe1302f16 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7f350ac synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe81e363c spk_var_store +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x92ce132e uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xe4fb4686 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xe762e630 uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x0228ec93 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xc4147535 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa916ca43 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xe688fefe ci_hdrc_add_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 0x03bd6038 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1530866e gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x303bc393 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x30f10865 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x529029fb gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x532bf575 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x59de3323 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x874e758a gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9b637d22 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb8d72676 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbfea67ad gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc9a73d33 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd7b4bae5 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf8dde4a5 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfee7d726 gether_set_qmult +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 0xe737a0b6 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xea0d104b 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 0x7ea82e05 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xe33f5810 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xf3fbbc2d ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0b556696 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0c630fee 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 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 0x3af67614 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3b3dc81b 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 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 0x89a91bde fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8c82b8fe fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8c96f012 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x92f877cb 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 0xade55140 fsg_lun_fsync_sub +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 0xc3dffbe8 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcd19bdea 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 0xd540a7c2 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe86df393 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf5221c30 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xffe2462a fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x00d002a8 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x275d6ea7 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3ad9b82c rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4d54d7a5 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x51dc0cc2 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x52c0df7a rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x632466f9 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x645d59ae rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x64aad1fa rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x67ada013 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7626c426 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x88203066 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x890aca10 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa43a61c5 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf2085dd4 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1946e420 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x243ad04f usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x248e7084 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x27095ccb usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2788bfa3 usb_assign_descriptors +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 0x32732897 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4431f4e2 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4e1b97b2 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x52dbd566 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x54c72644 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5e526dc4 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x621a4c2e usb_composite_overwrite_options +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 0x8788ef10 usb_ep_autoconfig_ss +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 0x91132a8a usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9c8aece7 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9e857fce usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa8a13eee usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb8bff344 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbe7a2a96 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcb452f38 usb_remove_function +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 0xd47a649a usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe27646f1 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3a52516 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe787cd43 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeeb0af1b usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x044c5fc3 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0ca92a3e gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x13e632b6 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x15165c08 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2ac666f2 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x36c21316 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3a948476 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4ca71b75 usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb932b1a5 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc6605d43 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcc2f2d33 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd2d0026e usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd54ad9f2 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe1ac8da3 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x35531443 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x9b85f48b ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2567eb09 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x367d4d12 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x49bf043d ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x57bebed5 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x595afdca usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5df5c3bc usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6d555d4b usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x85dcc01e usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x92f3ddf4 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0fa024f6 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 0xee2d1e92 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x9b603a78 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x004807e8 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x19929520 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1e4aa16c usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1e8c4d96 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2886459c usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2be2429d usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x37dde606 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3ee0f610 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x46242d3a usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4978e73b usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4d073567 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x51ee37b4 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5b993f18 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x68deaee5 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x738fd14c usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x74948499 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9b1a6ae5 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9ccf29d5 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc7889905 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd67adaf2 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd78123e3 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0444c0f4 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x064f8c6e usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0976adf2 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x11d2f4a8 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x13012386 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x160ed03a 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 0x25d6f0aa usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x33ef2e18 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x389bfa9b usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x62102166 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x752e8667 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x75f279e4 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x99ce243c usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa730fcce usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbc52baea usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbf564a3b usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd1481b6f usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xde269e95 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe23df1d0 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe9f043ee usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf79eb211 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf8e5a520 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfe499d94 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xff9887ba usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x21e0abf6 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3619d472 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5ddb4d67 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5ea29b42 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 0x90a8e265 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x95ab822f usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9eabacb4 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa1b27922 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xaadfd6b6 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd91dccc9 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe783402e usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfbcdbc10 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0360cf2e rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x3bcde851 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x6cd109ae wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7d7a2eb7 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x92cd2dc3 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa1071b44 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa4d5855e rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x13887b4e wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x288e90fb __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x366920fd wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3d5a92fd wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x49a1a200 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x51e3e403 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x55cf6a6e wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5b5b41bf wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7c3a43c8 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x827ef84b wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb4e7ac22 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xebd6e437 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xecdc95d0 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfd389ec1 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x335a72d1 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xc2b545a9 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xfe20278b i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x46ac7fa7 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x4bc4ba30 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x53048e4c umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x5def83a2 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x956c6bac __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb20c9b5b umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xbce6854f umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xfcba4ae0 umc_match_pci_id +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 0x0fe57e2a uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1075a0b3 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1ba6ec10 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1bc954db uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1c72c29f uwb_rc_put +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 0x2f82532a uwb_rsv_establish +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 0x582b9554 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dbf402b 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 0x7edf0f77 uwb_rc_alloc +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 0xa6636574 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb26c761e uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbe24fb7c uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc5ec4f09 uwb_pal_unregister +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 0xdd779348 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdf090f8e uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_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 0xf31d67f6 uwb_rc_dev_addr_get +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 0xf8b957ff uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfa564ca9 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xa021ef75 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x04ceab15 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0562e1c6 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x05d71573 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b3cbfc3 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1d2ca79a vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2fd56653 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x311892a0 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3b8d571c vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e4a78b7 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e7e5c87 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x42011d01 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x52d7c4b6 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5b67278b vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6cbc1b5c vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7079dd49 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7313ab04 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a78d87f vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8485d19e vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x88a4f840 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8e92adbe vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8ed7e1e3 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x940085b6 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9bbfe718 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa867b0f2 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0bc02a7 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb6364859 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb8d7fa05 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbdef76ad vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf5b02396 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0d2014f9 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x264f0acc ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5d9aa402 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x94e2f4b1 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xdd7e5b83 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe02c0546 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf0a15d80 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x2dbaa22d auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8d36c4c3 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa91bf83e auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb341a4f8 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd66d4757 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xde599983 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe047b65e auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe2089a92 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe538c7ce auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe77da53c auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x488adc93 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x3d247872 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x452a7edc fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x1bde954e sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc5b2e79a sis_malloc_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 0x8bb978fd dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xbb59e056 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 0xe786463f dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x01d1a4eb lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1007f412 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x610b1b8b nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77473d0d nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbd2d1c12 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc009213d lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xee648f28 nlmclnt_done +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x008fbc80 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x059927f4 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09824cc8 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a56ec41 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cfb5a80 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0de4dbc6 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x123fc6a6 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1333c274 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x153147d9 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17fc2d4c nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18a996e5 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1d277e nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ca78e59 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e46e12f nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x202380c5 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20b254fb alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2131eb0c nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25666487 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2584bc7c nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2661aded nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26aa87e0 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27fde320 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x289d0953 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29c65975 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e301eed nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3660ca8f nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37cc4bc0 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x386b8748 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3875342e nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39318d24 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39f17f25 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d576826 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3de4231e nfs_create_rpc_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 0x40d19ba8 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x410b9d2f nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x418d1bfb nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x453230fa nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x468cf4ee nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48b63c1e nfs_clear_inode +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 0x5313f8ba nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53c26078 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x593ece75 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a1ca439 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ebcdc53 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60cae7e5 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62d459ea nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63623171 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67110fba nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6729b401 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6be92062 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c154248 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d8778fd nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fd5b3a9 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x724208a4 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73476556 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74109199 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7413907b nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x768d3522 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7818fda3 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c19c386 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9d7ee6 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d5ff5ab nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e9981f7 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8074d0ae nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x808fb878 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82aebb06 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85c88655 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86bb45f8 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a076669 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b0736ee nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bbc694f nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e7d88c5 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90501457 register_nfs_version +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 0x934b3560 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x963cd8be nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c335303 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f11e9a0 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa842d0ba nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa85dfc34 nfs_fscache_open_file +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 0xaac0c058 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab1af455 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab7c03b5 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac9403d1 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac94fd74 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad176079 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb11844ec nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2e673ec nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3ee6bec nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe7c809c nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc414cada nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ba9f3e nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4eea491 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc619e7fb nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6a5b794 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8f8fa94 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9e7f1ae nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca23d366 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca349ae7 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca4eb0b6 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb5dd2d0 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd2deeb2 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf059048 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd16750d7 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2b03817 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3baef70 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4cd1d0f nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd55f6791 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb090bf6 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb11eb5b nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdeeaaa31 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4ce3488 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea8a1d65 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee4638df nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf14fe7a3 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf22e1827 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf264b62a get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf46f2d87 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5440ae1 nfs_file_read +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 0xfba1a6b4 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc2bd0a5 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc9b5852 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe1aff1b nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe9f8a9a nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x12b1af72 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x009f0fa9 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f1d3f70 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1231ceff pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12463811 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x125cda14 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1379950d pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17074d16 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1a1d8b28 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20b19598 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21b75c69 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x291509f1 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2cd3ecff pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d188cbb _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3129f898 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41992fdc pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ad032a9 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ebcc800 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fd1542f nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5330d794 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5609ec44 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a6e4409 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x626ce7db nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66f1b6b5 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6922ec3c nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7910ee1b nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7aa8ec01 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c3b6868 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cda603b pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fbf27e0 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86e5e2e2 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a93ccce pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8cffd33c pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e29b92f nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90b5b53a pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930daac0 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97dcce9c nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x987ed856 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c8ec3f8 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa233005a pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5e2d190 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabfc807e nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadb70f3e nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae88602d pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf442769 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc52bf9bd pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb65262e pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4b9ece3 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda219988 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xddd1ef7f pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde327389 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3e76239 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe93867c0 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed88a12c nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xedf60c16 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2159ca7 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf91f0742 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff4ab43d nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff55cf9f pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x624464d0 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x994776c1 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc914506a opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x052cba4b nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb3206caf nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x25d30d21 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x31f57102 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3971d07c o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4b4ef826 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x70b5fb5d o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9141d6fc o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1a67278 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 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 0x3e21e5fe dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6364c935 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x767fcb74 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 0xd0ef96c3 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 0xe30f609b dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe507a2aa 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 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7323bf5b ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8896a7af 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 0xbd9cd337 ocfs2_stack_glue_register +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 0x773d14a2 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x9e09f436 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 0x05bd33b6 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x119998b3 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x23e46ed5 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x39dc95cb garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x96f22a4e garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xa62f5aa1 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xc02df125 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xdf676a80 garp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x028fe8b5 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x1057cb6c mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x20bd29f3 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x3c4939db mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xc0e9e496 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xeb8e8c8b mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0x9a8c34db stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xbb67c940 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0xcc64e7e9 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xfff0b2c4 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 0xa68d50d9 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 0x02ee66d0 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x13100319 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3334eccc l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6310da32 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb36088d5 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb99fc8d0 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdfda369e l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xff3475a9 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2cfc5aa1 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4a6cf2d6 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x86425151 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb7970e6f nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc209f8b1 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xce8766ab br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe846935a br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf5e43401 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x63de7863 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xbce5eb80 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x01b1d61d dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x031e002f dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x04a12b46 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x07e244c0 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x165bde77 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x354eaf35 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x356fd5d2 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 0x5234854e dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x54e91e17 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5c49e77f dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5f96435e dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x64c742e7 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x687be759 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6fcf3d69 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x741a5a47 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7af867c1 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fa35758 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8507771f dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x954927e3 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa02d15d1 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0821b71 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7e0c22f dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0c3a7f7 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc5c8c225 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd37c4bfe dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd4d3e4ba dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7132ea0 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xded95626 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe0d3fe39 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe64e9b6f dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe6638e37 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe6d56388 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf162225f dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x00f7d602 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4a2628ff dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6463b170 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x80070eda dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9647fcf3 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa25cf1ec dccp_v4_send_check +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x86191790 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x91ceb3f9 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc263be2d ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc358f9bb ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ipv4/gre 0x9b65a722 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xadb48a7e gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x05d535bc inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0e5ab46c inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1b272434 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9bc73852 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb97310b4 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc594d97d inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x2d7697e2 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x04cd1d2a ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1ab1d517 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2c509981 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x35d91a7b ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3aca37d9 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5df5bffc ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6ac46e2d ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9c126877 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc081a1b6 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc6606460 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd6be75c3 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd765a27f ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xeabb32b2 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xefbc8379 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xffdc6d9b ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x2278d029 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x9ca78a2e 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 0x1f03cb01 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x1b7b83f2 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x2f911688 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x43699168 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x4c62ea77 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x5413efd9 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 0xc2080ae2 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 0x2ecace13 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x357ab3ee nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa5e51efe nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd1edc761 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd3a98a76 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xbb5b77ec nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x13274646 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3515a0bd tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd26f5ce3 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd32d35c8 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xff04c263 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x24ba8722 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x72d32093 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7e3ecfd9 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xab302b44 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x09925c34 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x85b6abf8 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x89265dd4 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd054de62 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf46cb796 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf49611ad ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfbb8d02b ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x72a4f677 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xa82dc704 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xb95fe150 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x539c9e23 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 0x952eff11 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x84ada47b nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1967fe7c nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x8d3f101b nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x9c33afab nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xa8d6501d nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xc2e9f4bc 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 0x240ceeeb nf_nat_masquerade_ipv6 +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 0x00c664b6 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1a59fcd8 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x30d95f7b nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x39e37615 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xad5bcb6a nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x55234579 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0c34c10b __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x22e2bfa1 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3245e919 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x33ca9deb l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4793066e l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x48c6e120 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa70362fa l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb3f54f53 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd6433f8 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe123d43b l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xece52ebc l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xefb9816c l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf366e069 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf7ae3847 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf85258de l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xff47fa6c l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x6f571ab5 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x01465043 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x02fe8f30 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x054bef9b ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0d7cdc1a ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x291fcd01 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3cc81a1c ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x41a133db ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x49733327 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4b3ab16b ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5e20475a ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x63b3ea73 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x779cd246 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x85fa580e ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x92f00069 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe6c0ab66 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0af6b34a nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x28e4b40b mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x2bf56774 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xdd04122f mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x111fe7f3 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4c5cdaa8 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x599ca3c1 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x61f5fe63 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x71dd3c5d ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x790386b7 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7f64827f 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 0x92e8b4df ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x956c9d2b ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9df8e87f 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 0xc5b8bf90 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcbed1394 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdc07c3ef ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeadba198 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xef928548 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf59763c5 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1f56b919 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x93538559 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa7eeff2b unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xaee0f9a5 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x042287b6 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04dd4ba8 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07e1b8f1 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09cd3be6 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0dcc1711 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x119c6eb1 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a7bdeee nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23aa0c33 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x249c200d nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x249d29df nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26c76d49 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fd2d3bf nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x310e9383 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32846efa nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34e64ec8 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c0fbb0e nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41814786 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4702db1f nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49f4c5e3 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b2a137f nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f2ae424 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52bffef4 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5700c8a0 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c196718 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5eba66f0 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x626de27c 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 0x6536aa22 nf_conntrack_l4proto_udp6 +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 0x7059b1dd nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7311525a nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7407470d nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7689b26c 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 0x7c22ff24 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cb98ca2 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d05b7b0 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83af2c02 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88db729f __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a4de5b2 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8dfd4915 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e23ea8f __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ed4a592 nf_ct_seqadj_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 0x93deeff8 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94085dff __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9835794c nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9dd31337 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e40f0fe nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa27cf1bb nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4de8ad2 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa669b86d nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6fa2f16 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7788773 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa20d137 nf_ct_expect_register_notifier +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 0xaf87b259 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb12ec16c nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4bd8636 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb79d95e8 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8d63ee3 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba496376 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbce4c333 nf_ct_tcp_seqadj_set +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 0xc57c2290 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccbcf3bd nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcee6449a nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd03f8245 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd274c010 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd731fc25 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8d0e01a nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda815c69 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdae72751 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf9e2f46 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe20313ff nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec55a44b nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef75440a nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1e96f7b nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5ea38dd nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6305e51 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7ef16ea nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfaba6540 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd8327cf nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff9ffb48 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xa30f785e nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x2ebc1981 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xd2d147ce nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1794ee32 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3c324957 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x54d704d8 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x657d9b96 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7b041030 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xab975a31 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdf830580 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe2a8c5f3 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xed705f90 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfd4e0106 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xdd8c35af nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x5e647d27 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x73519e1b nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7dd6eb86 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb1bc5955 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x4fa80a27 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x7fd69dbb nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2930a34d ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x55f19b62 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x76a2eaec nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8890607a ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb1a36cde ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf2f0d432 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf88ffe18 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x6266ae2b nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xe3566f55 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x15151a7a nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x444d0cc4 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x7dc8ba5d nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x974045c4 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 0x6475f37b nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x67a720d1 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6d5d39ab __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6ed29f95 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x865700a9 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9768c73e nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9b533738 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb6f77aff nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc2c3c196 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x12b8a619 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x4ca598e8 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0e8c8bc3 synproxy_tstamp_adjust +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 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf4e2ea81 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x02aa892c nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0b7def3f nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cdae2bf nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x514fa729 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5cbb57e6 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x76b2093d nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8dd3eb2d nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x985a71b6 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaf5326c6 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xafdc8a4c nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb5ed0e86 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb9f0eca1 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3fbf2f5 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xca9ccc0d nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcdfd896e nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd0f55cfb 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/nf_tables 0xfa0a8a9f nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x207f9968 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3c36003e nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x46e232ae nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5064bff5 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5127d489 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x584f78be nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9f6d20d9 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x54fa368a nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x9b56fa0d nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb5b53e90 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x1174dedc nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x4baf2fb2 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xa83df9ad nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xaa22d6c7 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x2ccf3c89 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x65df78e3 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x80373fac nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb0298233 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xc71ffecf nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xf4347b26 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x316a84f3 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x583fdbbf nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x9ae0f79f nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x62817cec nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xbe648597 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 0x010a571a 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 0x56c037d4 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7cf494ce xt_request_find_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 0x911ba955 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x91857ad0 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x96ac901f xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb3097184 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb7a3ad0e xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc8ca34ec xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcfbd1577 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1a5e883 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd4a179d5 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf41bc555 xt_check_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 0x10d8d65a nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x5080c9f7 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x96d47bde nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x3ef898da nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x3fbd730f nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd6c61ef3 nci_uart_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0687a16b __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4566b8ea ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x75f879d1 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa241737a ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc246469b ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcfc29495 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd1e632a7 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe2ccc942 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf00faeed ovs_netdev_link +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x0862cdd3 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x26b3ee23 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x28bbd3dc rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x2bfcd89f 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 0x3275b47c rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x33acbcf8 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x33bf18bd rds_connect_complete +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 0x51579a6f rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x53193f88 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x569aebd0 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x61c6da59 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x61ce246a rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x6cbac8b3 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x745e3667 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x8279ff10 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x9305ae64 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xaf63379e rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xb9e7ce63 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xddbde443 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0xe23526a0 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xe5434ba2 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xf666a46d rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xfa2b0e58 rds_message_put +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x6205b78b rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xda769b98 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 0x790d76f9 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 0x8fbdfdf0 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb46ab28e gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x000689ba xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00fb35df rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01f45491 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02bb3e17 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03ba2cf2 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x049ba964 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0579133a xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x062aa88d rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a13f04f sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c04656d cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c55c633 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d57e937 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d670e75 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da06165 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f490d5a rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10bbb396 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12e96d69 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x161f0468 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x167a3340 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177078f9 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17838c71 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19a2a796 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19b02c4b rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a3fa70a svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cd5b55b xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cd9aa32 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d0d358d svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d6308aa xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dd9f01f rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dea2dbb rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1deee3f8 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2339acdd rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23a7a5ac xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24bf56e3 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24cb25cd rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b511814 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c5ec221 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c614252 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cd05da7 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dddb460 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ed58fc1 rpc_bind_new_program +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 0x2ff3a42e cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30158131 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x344f5525 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3458ed5f xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35f38f4b xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38283e43 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38e25c10 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3935001f svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39e4b76e sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b2427ca rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c58b5a8 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d197a6a rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d21b76b rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dabaf6f xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dd2a874 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ecb8fb4 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fb3d21a xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x404579f6 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4210da89 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42dab013 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43c02d0d xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43e14a81 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x449f0553 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x456111a4 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x459b9a71 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45ac9838 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45b90bcc rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47178039 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b889cdb svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dcd17d7 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x536faf18 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x537db998 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54559af6 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56c39134 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58096ef3 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5859b17b read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x588cab7e xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a15114c xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a485a48 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b7f4a0c unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b97d55e xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5be011d1 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cdad2f5 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e698fbc rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f4c0138 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60bca9c7 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63d1980d xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6583ea71 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66993ab6 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x673b5e8f rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69793cc6 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ddbfe40 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f6f02f1 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7279aacf svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73a0b823 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76475f89 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78eac705 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7915eab6 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x793a3fef rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c04e360 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c9d581c rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d2a9e0e rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e9e9324 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82f8f14d rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x830f3ef3 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84003fb0 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8446dfd0 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85ae7c41 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a152580 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b100d41 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b10194d xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c2508bf svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e3fe57e rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e43cfa7 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f24e465 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90644780 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90b6d130 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91406bee rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92ee7e2b xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97372534 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x985a223e svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x990ccd4d xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x994d0ac4 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a785a17 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef84889 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f527e53 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2d624a6 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa37f3301 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa43df523 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa585964e svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa60be7cc xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa67cd4fe rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa96e55f7 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa82d538 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaae7bf94 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacbeb447 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad145311 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xada6799a sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae1646e7 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafdd934d rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4b0c00e svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb52638d4 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7a98f66 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb86082f5 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb801d5f rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe55e72a xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbec65f81 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfcd1d71 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc33b6079 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3d157e4 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4e8876f rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6dfe653 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7c34410 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaec8886 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbb64704 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccf59ce3 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce05ec6a put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd08ea6a7 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd184cb34 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2a5c1b2 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd31d8b94 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd47a3c7a rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4a429b0 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5488d11 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd55bd23f xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd55d6ce5 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5cc6f63 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8ff330e xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9dd3d3f rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcaf55ca xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd9a5c6b xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddcd775c _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdef7ab6c rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0a2577d svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe10a3b81 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe337b0f3 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe49ec9f9 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4d5f784 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe63e817d sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe640ff62 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe894f082 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9dd50f4 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed8ba70b bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0c21e4 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefb16397 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1a43c19 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3d4b698 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf66d3686 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7498ebb rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9edea91 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbc48950 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfef4c929 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff6fe9a8 rpc_force_rebind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0d2ab41c vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x16f9ac68 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2d3a81b2 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x552dbcc3 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x99081a00 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9dc5fecf vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa8c7bbcb vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaa7f1163 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbf61bb87 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc13b22b8 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdd20603c vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe7adf525 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfd626c83 vsock_add_pending +EXPORT_SYMBOL_GPL net/wimax/wimax 0x007624d0 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x13b8775c wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1c3360cb wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2f7d106d wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x32a2b8b0 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x41f1039b wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x52fec78c wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x64ef4696 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7615a540 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7ff62459 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb8befa12 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xcea56c9d wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xcf07605c wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x08afe634 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1cfeb9c1 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4267223d cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4b388249 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4fb0d477 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x52f2745d cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x623df70b cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x72872e68 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7bb34aeb cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x94e50404 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa836fc91 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcc141d5e cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe434a6e5 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 0x1ecc8785 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x342cf97f ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x59d4ee25 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8ebb295b ipcomp_output +EXPORT_SYMBOL_GPL sound/ac97_bus 0x026f27df snd_ac97_reset +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x0c51da6a aoa_get_card +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x149ba97f aoa_codec_register +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x1dc98462 aoa_fabric_unregister +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x4073a8bb aoa_fabric_unlink_codec +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x5f6a8df3 aoa_fabric_register +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x8fa64c3e aoa_codec_unregister +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x925a5fbd aoa_snd_device_new +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xb7db72b7 aoa_snd_ctl_add +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xbd663605 pmf_gpio_methods +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xf841d21c ftr_gpio_methods +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x1fff1bf6 soundbus_dev_put +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x4dec0c02 soundbus_add_one +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x5ebe22c5 soundbus_remove_one +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x6ecb5dcd soundbus_unregister_driver +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xa83b5b53 soundbus_register_driver +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xe408fbbf soundbus_dev_get +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x1f1a437f __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x5750761b snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd 0x0647ab8f snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x15c55a9f snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x6507161a snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x66cd7246 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x902a3cca snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xbd25ea2c snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xf9ce5a25 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x088470a4 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2d742881 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x503ca987 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x52b356e9 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9028e96f snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa23ab913 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 0xad449fba snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xedd05288 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfda21d72 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x02f9326d snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x452a38f0 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4ca7a86a snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5b05421e snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x83f3545c snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x92da4315 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x938f75f1 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x96e2c85e snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9d3743d3 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xddf8208b snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf59dad45 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x16bd2956 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x670a976e amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x72e7738a amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8a3ef674 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8e3c75e0 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa4745108 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfb6b3f28 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x02d141b1 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x097842b9 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c27e42c snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14ec961d snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a3fe102 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fb982ef snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x212a12f6 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21d78ba4 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3432a981 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3693857c snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3829514c snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e75c691 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4705f8fc snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50d611f3 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x517760dd snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a99b429 snd_hdac_stream_setup +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 0x6289f18a snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6377b35d snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a9b16ac snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e749dc2 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71919a36 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7774dd59 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x78c0f199 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79830922 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b2387c1 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81209927 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x829b33ee snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8474b261 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x847f2154 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87d14a99 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f3e4d00 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92ba8948 snd_hdac_bus_init_chip +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 0x9b642d94 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d2e1793 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6d1a95f snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb086e7a4 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb16d678d snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb516657a snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5d36cdc 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 0xc05b3067 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1527a7a snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1918531 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc28dfe7a snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc42cce68 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc84f9cef snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc924b8ca snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9329bcc snd_hdac_bus_remove_device +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 0xcd667ac4 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2a9a28f snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5d9e348 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd682ff03 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd759be35 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2561dcf snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2f1457e snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe62d6d24 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe632d723 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe885b7f4 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea618489 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb66436c snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf339fa3c snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa578779 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfad52289 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe9770ad snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x007a49a0 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x218d84c1 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x871ef07a snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa006c237 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xabc2d0d8 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xaf4fb851 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04a90abf snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04ae2b0d azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06575c6d snd_hda_multi_out_dig_open +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 0x0a771249 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1036d9aa snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13d69318 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16416a79 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16f032e2 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17f6644c snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ae442a5 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x203828a3 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20f8a00b snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23d2d180 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2434d4b6 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24858c2d snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x261dce53 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b050fa1 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x309f7c73 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x324a3241 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32d367a4 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37c58c4e snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37cb0de3 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39cf8d9f snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a1fe38d snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b37a84f __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cb7c4dc snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d35ac08 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x438d84d3 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44d4a4b3 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x453ac164 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48c46a36 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49fdaab6 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bd2e579 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55be76d3 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56b9deaf snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b47a5cc snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bfcf620 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61c4b161 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64cc6060 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67cbc81c snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68bd1015 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x697c3053 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69f9770c snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ca2a0a2 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d6c61a4 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6de732f9 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f1851a2 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7011b594 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70750afb snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7119aa50 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74a2268c azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x780c56d2 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78c1176c snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a1815ca snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e410d71 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fe6bd2e azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85aa8329 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x876617a4 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8cd39505 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ce7db69 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d5ac80f snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d6a9261 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8de1d7f6 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x905efa0b snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93802f09 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96435c65 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9693a4c1 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b1f8369 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bd5eaf2 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e0ade75 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa09efbfc snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa979eede snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac3f9770 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacafe4d8 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb253e831 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb28fbbd9 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb440cab3 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb48fc8c2 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5d7b987 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb719e300 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe1a21ab snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe24cc45 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc00853a0 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc061549c snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc27b26e7 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4d54fc4 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4e636a9 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc93c1cad snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca6eab60 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce217b53 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf41dcf9 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfb3a769 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3e019cf query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4e38358 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd77edc84 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd816b677 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb6a45c0 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0b87797 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe104c453 snd_hda_codec_load_dsp_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 0xe18b9d7b snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1e4c5bd snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3c6f563 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe674b7ad snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe88f7b90 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe923d1eb snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9928970 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec09b4bc snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed6d07e1 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee5c4aa7 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef2ebbaa snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3fb9be4 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf41ff197 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf644c20a snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf69aad36 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf99f59e7 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa0d092e snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa953e51 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc2bde2f snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd4ced95 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfec589ed snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff374c1c snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff49ae3f snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff51cb51 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffb3910f snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x01b4a7c6 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0a0bc12b snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0d34fc12 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0fb61c58 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1d8ce2b9 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x21a7eed6 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x29afd86d snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2e29765e snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x306afd5d snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x345908f8 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5a8de582 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5e61a99b snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6067f0e5 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6477753c snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6d37b0f0 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 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8fb79271 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x923d14ea snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9d2e2ceb snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa54d45b2 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb7bf54f9 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe3ec4370 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x3ddea294 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x76b9e57e 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 0x0e7adb56 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x74c9c568 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x10c311cf cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x159ecd93 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x8bd78883 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x55c8ff9b es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xa6caa46c es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x06a1a25c pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x42625598 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9e24e622 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xaf81204c pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3b01ab7f sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3eef63e5 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x619a2cda sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x75e0b3ea devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf44e7414 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x17bb70f9 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x22fbefcf ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xe3e7d6aa ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x6932e773 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x7d052d07 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x75fd5e4f ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7e1d67de wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb370b5f3 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd8bc55c2 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf2f67002 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x3515d148 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x7f5fba9f wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x373def70 fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x5b0f984a 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 0x004c4345 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x033f237c soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04a519a1 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x061bbc95 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x064c604a devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0682f075 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09146e31 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a41446c snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b4855b3 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0de78556 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1036bb19 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1250629b snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a96fb8b snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c1c6eac snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c35f8b2 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ca8dc88 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d386164 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1dcfa4af snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21201121 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21e72fbb snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22390a54 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22a9d409 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2565268f snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x264a183a snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27817adb dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29cf6e77 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b7fdd7d snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c4f81ef snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d82bace snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e683fe4 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ed25190 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x325cc7d1 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x339caa73 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34f74eba snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3933b12a devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3be2f19a snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d9e6631 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3dbcd9d5 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f133eea devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40b49dec snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4452b917 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x454de955 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a1f204d snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d661d4c snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5062ed49 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51a40efa snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x547f64e7 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x591eac98 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c8c18c9 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ea0eaf6 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5eb0d8dd snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f2733f6 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f8f74a0 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fc56609 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60afd265 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62a34443 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x648bea13 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66bd9b40 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67fab2d6 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x690cc4e9 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d83b512 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6df9a2dd snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f5a4ae2 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7021c4c2 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x727f426e snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72849755 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75e63c9e snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x788d9cd8 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x796040d8 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79684274 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e585b09 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f78bb50 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81ffca03 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8342457f snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85fe9c6e snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88bacd27 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b1b35cd snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b35583d snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c42bf57 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e05f831 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90744832 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91b94c0a snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92089cde snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92ca7b01 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94620611 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99ecf58c snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e5f6c8c snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e666bad snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f240479 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9fb823fd snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa16a6e25 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa568ce82 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7678526 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9748a6c snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab08b27d snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab2a366d snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabee3e8a snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac5c5a1d snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3ea113a snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb698060d snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb705b390 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb84517d9 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbae03cd2 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc2ded50 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd01c3b4 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe907b60 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbec9079d snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf11d66f dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf86822b snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfd802f3 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1c585e1 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2a98c4d snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3904a13 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc44272e3 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc50aaa11 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc67dfb99 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc88d3d5e snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc92d5056 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca502703 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb24adb3 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb5363e0 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc12f32e snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce7d9769 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1f7b5dd snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2fba33a snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4dbd967 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd859ced1 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb0a3a31 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf87cc99 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4fe08ec snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5089cfe snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe578572b snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe599d680 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe75d5064 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7f59fc5 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe836f7fa snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8e50408 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9109f86 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9142d07 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe92cae68 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebdd09d2 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2f83b32 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3a15c4b snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb9bcdc9 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc4d6a8f snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe2c5c9d snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff851ca6 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfff6bdac snd_soc_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x15df8c28 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 0x2fefdaad line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3004ebfc line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4f2a6e4a line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5c819fa8 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x88aabe5b line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x89d64edf line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8a2e9768 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 0xa2e4c491 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xce25be82 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xde619d10 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe1578373 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xeb659e5b line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf76085c6 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf76dfe5c line6_write_data +EXPORT_SYMBOL_GPL vmlinux 0x000aaea6 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x0011312c part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x0019373a usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x0038e544 ata_sas_port_destroy +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 0x006c5dc0 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00a33079 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x00b33626 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x00d09c90 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x00d7323a debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x00dd7e28 input_ff_erase +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 0x0120ee21 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x01299bdc wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x013c4002 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x0159e2fb regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x016e780a of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x01896010 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x0195fba9 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x01a07064 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x01df94d0 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01eb17e1 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x020be378 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x0215941c pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update +EXPORT_SYMBOL_GPL vmlinux 0x02266ded clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x024da7c9 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x0253f8bb __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x0260b483 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x02b9c5b9 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x02ee6419 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x031510dc get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x0317b024 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x0318354e kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x032be57a __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033e5164 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0349ba87 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x0384bf8a ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x0388c664 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x039d5753 pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x039eba8b devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03a6eacf dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x03b45c34 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x03c91377 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x04110335 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x044fa0c4 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046eefcc mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x04736bba phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x047ff346 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04909155 of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x049c2b86 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04ac150d usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x04af1739 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x051f4282 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x053de9fe pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x054fc1eb crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x05614005 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x0562dc36 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x058f7593 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x059dd526 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x05d0d9f4 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x05dd45ac regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x05de6ab6 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x0602395d crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0620409b bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x0624765e ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x064ccf00 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06549eb0 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x065fc8d8 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x06666b71 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x06679c0b sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x06729a01 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x067d3f8f gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x06901870 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x06bead71 device_del +EXPORT_SYMBOL_GPL vmlinux 0x06c8382e serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x06dcd01a usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x07085fd3 user_read +EXPORT_SYMBOL_GPL vmlinux 0x07481a88 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x07561a12 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0778e2e5 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x077b745a regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0x07a145e6 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07cdaa81 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x080ef80f class_dev_iter_init +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 0x082e66e2 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0842aa74 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x0865de68 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x08780deb trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x087a18b3 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x08873068 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x08ab5f93 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x08b7672c ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x08bd017e pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x08bf12b8 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x08e19537 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x090313ab relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091d4d59 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x092091f4 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0930b502 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x096f5f80 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x097589a8 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x099c82fe usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x09a305bb tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0a29ea5e subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x0a368155 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x0a412241 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x0a492e82 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a5ded43 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0a66c761 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x0a77b3ef crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x0a7a6e33 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x0a8209b7 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0aa49a02 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x0aba26ea iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x0acb0d94 of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x0ae2c15f ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x0af464ae fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x0af7b9a9 extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b384736 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x0b4ffd0a virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x0b74117e dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x0b85a6c2 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x0b9ee933 pmac_i2c_find_bus +EXPORT_SYMBOL_GPL vmlinux 0x0bd3455d usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x0bdb5586 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c1867fa regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c36bfe1 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x0c7f666c subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0c8b2108 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x0cab800a crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x0cb61f35 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cf80247 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0x0d0aa1db blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d6f9e89 tpm_do_selftest +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 0x0d8f512c usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x0daa2d15 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x0db03ea7 extcon_set_cable_state +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 0x0df9a9db crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x0dfcd1d1 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x0e08f664 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0e3f5090 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x0e89a723 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0e988747 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x0e9eb264 virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x0eb8c600 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x0eeb4738 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0f1d4153 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f303f58 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f4d07a4 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x0f521fa3 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x0f67d133 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x0f6aea3e dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f82b130 ping_seq_stop +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 0x0fd71b9f blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1037db52 devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x103dc0d6 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x106c8f1c do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x10901d32 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1099dbdd ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x10a0b312 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x10a0f798 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x10ec4815 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10fc4dfc sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1110cc04 device_move +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x11251f94 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x113db405 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x115a185c skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x11705106 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x11a4bd4a dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x11bf555f crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11db6bea add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x11e61d01 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x11ee854a init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x121e565e mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1267c8d2 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12909fe8 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x1293ec09 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x12a3702f serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x12ae875c regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x12e10928 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x130bab9a tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x130bffa5 blk_mq_request_started +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 0x13493e5e xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13627824 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x136ce3cc task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x13839808 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x13c91dc2 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x13de586c netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x13f40884 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x13fae2aa sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x1441f598 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x1481ea3b adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x14831b22 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x149c3af1 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x14ba890e platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x14cfd311 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x14d1404f spi_async +EXPORT_SYMBOL_GPL vmlinux 0x153e90b9 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x1588b62b ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15bd2174 exportfs_decode_fh +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 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15fb1020 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x16193aa6 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x163de928 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x163dfa21 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x165f7978 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x1667c8c4 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x166f4e18 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x1679ea16 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x16a35656 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x16acb3ec ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x16c83abf regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x170a0397 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x1725b1b1 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x17405494 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0x174f583d dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x175a2e5c shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x176c37ff trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1788909c i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x178b1c0f mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x17a80d54 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x17f85783 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18570516 pmac_i2c_xfer +EXPORT_SYMBOL_GPL vmlinux 0x1865b9bd class_compat_remove_link +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 0x1880e8c3 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x1884444b udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x18b21f3c spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x18b34d45 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x18d3fcbd ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x18f82c73 perf_event_create_kernel_counter +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 0x19443165 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x1957b109 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x195abe8d inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x1965b725 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x197758f7 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x198bf1ec tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x199b2ce3 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19af517d blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x19afdbff extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x19b173f8 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x19c05864 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x19e742d1 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a05ff95 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x1a128961 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1a5334f2 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0x1a591f8e component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x1a8332e1 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a8d9b53 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1a9c816b sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ae24bd7 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x1b2ca6e8 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x1b3e91f6 disk_map_sector_rcu +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 0x1ba8cb0a ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x1bb73d78 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x1bd0d07d cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x1be82cc9 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x1bf52a31 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x1bf66409 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x1c01be1a relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x1c0f0a17 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1c13ab29 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x1c2260ad of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x1c25c237 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x1c49e4af pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x1c53b3f3 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c8852fa fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x1c92fbab pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x1ca056d9 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x1ca386a0 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x1caf91e2 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1cc469a5 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x1cd3bfa1 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x1d18b370 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2ab816 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d5d20cf vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x1d666882 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x1d70984f percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x1d754fd1 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable +EXPORT_SYMBOL_GPL vmlinux 0x1e1fcd69 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x1e2e16a9 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x1e2f324e subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x1e446e5b scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x1e539450 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e6636e8 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x1e7469e4 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x1e7a2fff cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7e69b7 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9a72db xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec4f8c8 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1ee1cb3c wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x1ee9977d cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x1eeb321c aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1f1a8715 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x1f41ec49 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x1f61db8a usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x1f783ce0 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x1f7d7f8d devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x1f7fcfb4 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8cefe5 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fc06000 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x1fd63a83 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x1ffa2090 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2021bcfc key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x202431f3 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x202c6bbc virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x20354279 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x2049bab8 __destroy_context +EXPORT_SYMBOL_GPL vmlinux 0x204c4248 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x205b9291 of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0x2062fcb9 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x206b822d tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x20744722 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x20783011 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x208215ba devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20eeecb4 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x20f970b2 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x20fdae3a fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x20fff9d0 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x21092a74 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x212851ea device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x2129045a usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x21603e46 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x216e04a2 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2188c4d1 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x21b04465 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x21ca74b0 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21df7b11 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x220bf9e9 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x222fff17 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x223a1959 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x2250163b device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x2251dd82 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x227b9a39 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x23101e7c inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x236cf449 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x23859276 tty_ldisc_deref +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 0x23b20f7d ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x23cce71b handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x23cfa2a4 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x23ea8a8a ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x23ec7945 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23f589bb sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x23f93560 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x24055358 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x2406dae3 pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0x241f971a ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x2428b50a vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x243c0462 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x244376e3 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2458f06d debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x24774367 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x247b5b5b devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x247efaf8 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x2485517a xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24d617b4 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x250532d0 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x25107380 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25360ba3 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x253693dc pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x256513af ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x2579c0e0 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x2583639b tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x25870eba pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x259cc9bb ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x262ea2e4 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x2633979e mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2633a905 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x264cd271 arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +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 0x26bafd1c ata_bmdma_port_start32 +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 0x26ed81e0 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x273bfce6 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x273f91e4 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x2755621f fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x2768cf4b usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x27928b06 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x279781a6 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27caed93 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x27dc1840 pmac_i2c_get_adapter +EXPORT_SYMBOL_GPL vmlinux 0x27edc8aa pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27ffc77a usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x28036f5b pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x2812caba regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x2827b934 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28340042 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x2850feea raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x2861786d inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x2865243a pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x2881cbe5 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x28b5161b register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x28d8ea4a mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x28ea6fdf mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x29055b62 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x291e401a regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2922048d ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x29484378 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x2964965b of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x29726c36 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x2981307c ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x2983340b extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x29901fb5 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a14fe51 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x2a30ba3f __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x2a3e6b28 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x2a657000 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a6acb53 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x2a89e25a ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x2a8c1eba subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x2ab070fe devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2ab5ece8 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x2acc052c device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x2ae23dd5 input_class +EXPORT_SYMBOL_GPL vmlinux 0x2ae372ac flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x2afb0b86 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x2b04acdd napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b30ad49 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b7a574f md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x2b7fa53f rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x2b8dc5a4 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x2b9158e2 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x2b98acb4 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x2baa569c da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x2bb23bbe sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x2bb4b809 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2bb4eaf4 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x2bc2327b wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x2be7df27 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x2c116165 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x2c1b4e26 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c38dba3 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c3a855d component_del +EXPORT_SYMBOL_GPL vmlinux 0x2c655f16 inet_csk_route_req +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 0x2cc3e675 pmac_i2c_close +EXPORT_SYMBOL_GPL vmlinux 0x2cde2b92 early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cf80026 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x2cfb3880 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d28f02b inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d92e70c gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x2d9f1647 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x2dba9ddd cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x2dbd55c4 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x2dd1beaf skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x2de2adb4 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e56466c i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x2e60ebfc pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x2e797867 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x2e9b58ca wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x2eb92e11 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec33064 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x2ed88332 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x2eed8fc7 pci_enable_pasid +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 0x2f03f212 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x2f0d264c pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f34b6f1 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f4e3767 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x2f52078c fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2fa32585 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x2fa4ed65 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x2fc85934 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fe81213 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x2fec1ffc gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x2fee8d6e regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x2ff757fa usb_string +EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x30020913 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x301f6a26 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x3023b9b9 of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0x304c2559 xfrm_audit_state_icvfail +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 0x306b47e1 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x30765da2 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30a7d1a4 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x30b3e738 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x311569df pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3120bc55 filter_check_discard +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 0x3143f6d3 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x3184390b bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x319f6d1e __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31f4e12e tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x321dbc8a crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x322bfeac crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x322c5b06 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x3236add8 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x32514a7b pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x32836e90 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d0a589 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x32d71ee9 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x333010be rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x33330f2b regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x336d7320 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x336feefc reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x3370d5b9 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x33be8494 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x33d03d8b __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x340d5346 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x341a02d3 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x345ec566 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x346dab03 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347a67f6 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x348d682e blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x348f7130 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x349c799e nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x34a4ffbe blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34f283dc get_device +EXPORT_SYMBOL_GPL vmlinux 0x34f4a333 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x3561cccf blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x356df37b i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x357fb3b3 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35954bd0 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x35c836aa pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x35d14896 of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x362332b8 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x362d7aea __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x36543370 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x366dc949 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x367776cf rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x367807df gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x3678e683 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x368215bf scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36be2406 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x36c2db06 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x36c56e4a aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x36c66a7c regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x36d32465 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36f84ce2 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x371b53a5 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x3726123a invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x3727afb7 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x3732cca4 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x37443684 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x3764b1b7 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x3787cccb uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x37938dc8 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x37a67265 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x37b301f8 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x37cb2e57 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x37d5057e extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x37fc8a41 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x381f62d1 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x38364f79 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x385d0051 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x385fb99e regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x387576c6 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x387e8e41 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x388af5a5 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x389b3600 pmf_get_function +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38af6e84 tcp_send_ack +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 0x38d115f2 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x38dcd5e0 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x38e9a79e of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x391b1128 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x39252ddf ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x39456c2b ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x397b9bc5 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x39807bc2 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x3996eb03 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39cb6836 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x39ceac84 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x39dccd64 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39ec9ccf sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x3a04ce69 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x3a1fbf5b ata_port_freeze +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 0x3a66fba7 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x3a67a002 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aaf295a of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x3ab84fba dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x3ac43e09 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x3ac72568 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3afdce28 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3b183446 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x3b1e630d scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x3b8dc85a sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x3b9051cb thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3b9d1ed7 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x3bacc63e register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3bc08266 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x3bd7d451 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x3c0e04f4 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x3c284fa6 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x3c3279d6 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3c3bfeae rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x3c42d886 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x3c5b2264 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x3c62c4b9 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cea63d5 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x3cf56474 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x3cff952c regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x3d0468f9 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x3d12885f extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d40a829 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x3d43467d crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x3d768b84 tcp_done +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 0x3daccfd7 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x3db09541 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dcc4d9b get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3ddbce83 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df9a05b rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x3e12df44 pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0x3e2f3239 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e61d710 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e739001 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3e7e08df mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x3ebb3f13 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x3ed48948 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x3edecec4 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x3edfe6f2 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f02cb86 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x3f07bb9d percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x3f10b57f regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x3f1a2e87 debugfs_create_devm_seqfile +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 0x3f41dd46 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x3f47affb firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3f56a85f debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x3f80280c sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x3f98b739 cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x3f9a5d67 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x3faa474f posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x3fbff952 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x3fc6c584 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x3fc9572b regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x40346e11 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40444666 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406a1c54 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4073bc17 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40b86b9c raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x40bcafbc pmac_i2c_get_controller +EXPORT_SYMBOL_GPL vmlinux 0x40cd0c61 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x41014aaf unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x410a4497 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x411c2978 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x413b582a pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x420eef13 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x4213b5e0 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x421da710 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42367721 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x4253e816 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426b2c92 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x427a066b trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428c5f81 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x429ce895 pci_rescan_bus +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 0x42bbb35e netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42cdf47b scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x42d343e5 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x42dc68fc blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x42f23dcb power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x4313f6a0 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x431595c1 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x431c6309 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x432e7ef9 pmf_call_function +EXPORT_SYMBOL_GPL vmlinux 0x435ae3a5 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x435e5331 pmf_unregister_irq_client +EXPORT_SYMBOL_GPL vmlinux 0x43a14b32 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43bd5353 pmf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x43cc5648 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x44017206 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x44050ddf stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x44480eb3 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x445c1fcd of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x447b81e2 pmac_backlight +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x449180b6 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x4491af6e unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x44a4987e crypto_shash_update +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 0x44d60fb7 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x44e4597d power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x44eba73f io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x44ee72de devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x44eff47d percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x450afe53 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x451b50e3 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x456f3cf2 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x458a3285 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x45b28b8d dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c29700 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x45cc5413 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x45de7b88 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x45e5ccd3 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x465383a5 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x46661bda trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x466ff2cf sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4691411a msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x469c1535 pmf_find_function +EXPORT_SYMBOL_GPL vmlinux 0x469c725f __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x46bae55a devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x46c04add get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x46f31dff unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x46f41865 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x470a5c02 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x47126fc8 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x475484f2 __platform_driver_register +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 0x47f3a0dc blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x48122b43 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x482116b9 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x48294b52 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x48310996 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x48419d4d __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x48426e12 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x4847f3f6 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x48644e1e usb_gen_phy_init +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 0x488231c9 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x48a28770 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x48aceaf9 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x48f1cef6 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x4911049b device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x492a2c58 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x493c6a86 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4943a338 __init_new_context +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 0x49b73de0 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x49bc4875 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x49bda739 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x49c1fbac pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49eb6fa1 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x4a0b38f3 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x4a108105 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x4a1590bc gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x4a212245 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x4a2547c2 threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a2774d4 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a81cd64 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x4a865777 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x4aabc058 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4aae2b6b crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4aba0e5d rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x4ada93b5 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x4ae2a05c get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x4af0db7d crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x4afde286 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4afde9bb list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x4b11bb43 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b46d781 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x4b8042df dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x4bb24029 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x4bc3c955 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x4bc672f7 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x4bf213a9 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x4c3655ba dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x4c46600a shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x4c52d7bf ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c66cb80 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c91af2d ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x4cac926d rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x4cc275db crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x4cca70b8 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x4cd6052d md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0b9a04 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4d16d588 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x4d2de59c powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x4d303728 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4d487087 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x4d51474c cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x4d6a805f rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x4da288d9 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x4df70ab7 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x4e04f92f rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x4e0ee873 cgroup_attach_task_all +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 0x4e46ac25 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x4e61f7ab of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4e77a592 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x4e845672 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x4e997c31 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x4ea9f269 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x4eb57688 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x4ec5cccf regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4ed868bb irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4ed8cb9f ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f02c2cb aead_register_instance +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 0x4f46bbde of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x4f489680 ehci_handshake +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 0x4f897d30 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x4f977388 pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x4fae057a ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x4fcb3a43 ata_timing_compute +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 0x4fe39588 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x4ffc7616 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x4ffd081b crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x5024d2a7 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x5027993c crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x50631d89 mmput +EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5075f4ad blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509b8abd pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x50bd8bd9 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x50be4bf2 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x50c059bc xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50d1f458 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x50d6508c device_initialize +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 0x510d4973 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x511125e2 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x511a8e69 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x5149fd63 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x515308c5 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x515918b7 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x51666eeb dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x51719489 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5176f3b7 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x51965f02 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x51966b51 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x51b0fc31 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x51b2d1d3 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51e27d3c regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x521c3cb4 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x5223fc07 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x528f32c9 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x52b1ad65 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x52c0d5d8 scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x52d6f868 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x52d73f04 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x52d8d992 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x5305a703 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x532aebfc virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x533e5e74 pmac_i2c_match_adapter +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x536e0175 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x53ba1ad6 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x53c9b2bb kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x53dd764c wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x53eae662 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x53f27797 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x53fba654 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x540e1f8a pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x5433837d ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x543cfc17 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x543f2fe3 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x54482d5c extcon_get_cable_state_ +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 0x54728b86 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54988a97 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x54c95894 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x54ec9bba serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x5521c452 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553f24f7 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5559e078 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x556fe8b7 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55829e65 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x55db4026 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x55e73916 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x55e8209d of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x55eecb70 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f39986 pmac_i2c_get_dev_addr +EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart +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 0x5651faf4 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x56547433 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x56574a5a ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x56697f99 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x567524e5 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x568072ab serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x56a20a8c regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56bbd4b0 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x56be8d3f cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x56c8b281 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e4cf90 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x5705e541 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x5718ae4b device_rename +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x573dd903 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x5756fcd6 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x57693cb2 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x57759f4f rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x57780bd9 usb_hcd_end_port_resume +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 0x5805b206 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x58063e83 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x5832cefe cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x58805be0 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x58862853 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58c19340 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x58c437a4 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x58f07495 of_irq_parse_raw +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 0x5923cb2f dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x592df940 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x59357970 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x593b0a50 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x593e8444 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x59587b79 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x596df0d0 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x5970f63b dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x597cfead usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x597eb92e device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x59ad9be9 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x59e8dca8 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59edfd2c __module_address +EXPORT_SYMBOL_GPL vmlinux 0x59f1930c tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5a1aeda6 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x5a22c057 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x5a2369cb usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x5a46bc21 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x5a5ca2b8 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5a6dfe6d regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5a6e6ce4 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x5a702ccd percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x5a71000e __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a7dd34a usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x5a938173 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5a9c647c wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x5ad00a77 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x5adae888 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x5adf9114 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x5afec154 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x5b22bca0 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x5b447b2c ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x5b5b4f10 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x5b62166c inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x5b86be43 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x5ba5ad85 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5ba9f994 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x5baa5c7c wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5bb50981 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x5bc51fe4 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd56e6b ref_module +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bf3f308 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x5bfd1e58 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x5bfd9c73 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x5bff651c extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x5c3020cf devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c63772e phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5c751db3 sysfs_remove_link +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 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d34ada2 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x5d41ca49 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x5d4273b1 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x5d51bcf7 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0x5d53a62b ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x5d6871ec rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x5d725794 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x5d9765ad crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dd8a96f usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e097940 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x5e208e4e tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x5e223623 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e63da13 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x5e8abe42 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x5e940c3c spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x5e9a5def serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x5eded248 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x5ef08d35 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x5f0166a1 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x5f27cdc9 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x5f3c76bf debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x5f66feed attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x5f7c6775 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x5f80c78c debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x5f8d842a crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x5fa6034e usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x5fbe9cc9 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x5fd1f91f crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x5fe403ac inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x601f629a of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x60367da2 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6054fdf3 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x605e060a devres_find +EXPORT_SYMBOL_GPL vmlinux 0x606d909a sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x60890263 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x609b6ff8 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x609e2bae srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60b28004 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x60b9336d pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x60c71e4e cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x60da99d6 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60eadae7 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x60ec48b0 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x610b648f usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x610b7be9 power_supply_get_drvdata +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 0x61316692 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x613b3ca3 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x61429a83 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x61604157 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x61890cc2 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x618e3f08 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x619e81b7 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61b8a622 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x61c16845 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x61c42493 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x61d3ae8e of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x61dcd6d6 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x6208bcbd dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x6210299e scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x6216bd73 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x62260f46 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x624ad3d7 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x625aa176 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x625ebd63 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x6263279b crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x6284ebe7 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x6284eca1 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x628f0aca cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x62946cb0 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x62ae9e21 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x62c45179 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62d59c9e trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x6301d3b8 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x6311266c sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x631511cd __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x63214286 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x63274438 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x63481d08 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x636b258f nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x637dc614 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x638dbb57 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x63933967 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6396caea ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x63ad6cda devres_release +EXPORT_SYMBOL_GPL vmlinux 0x63b6581d gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x63ccd92e md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x63d1d47a l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x63e4e889 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x63ec08df alarmtimer_get_rtcdev +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 0x64191367 __regmap_init +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 0x64945c87 i2c_new_probed_device +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 0x64ae810e ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x64d64f31 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x650ebf9f regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x652feec0 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x6532a267 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x6546e5da ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x65573859 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x657f9399 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x65867766 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65eb774e relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x660455dc device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x66063d19 dev_pm_set_wake_irq +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 0x6639da4f spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x66775c1f get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x667c4088 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x667d393e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66953aca devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x6698ba97 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x66a88b17 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d80f7b inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e4d76d crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x670a026b crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x672477c7 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x672a5b51 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x673a3d39 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x67407563 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x67843914 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x678943d9 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679b5294 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x679fc3f1 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x67a9bac4 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x67b21686 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x67d7cfc1 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x67d876d3 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x67da8d6f split_page +EXPORT_SYMBOL_GPL vmlinux 0x67df8345 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x67e6f7c2 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x67ea6541 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x67eab719 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x680a93cb vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x680c2cc3 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x68312041 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x683207c5 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x68538671 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x6853edaf dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x6855193a skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x689315f2 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x68c38af5 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x68c585d7 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x68f537c0 clockevents_register_device +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 0x694fa3ae sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x6966340a regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x6979ea59 apply_to_page_range +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 0x698bef0c usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x69ab121d __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x69b44ac7 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x69c3460d perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x69c52fc0 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x69dfa7dd __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x6a10af88 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x6a1101f0 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x6a1b15a3 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x6a1f0d0d ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6a207209 pmac_low_i2c_lock +EXPORT_SYMBOL_GPL vmlinux 0x6a379169 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a5fca4e devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a74cfd0 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x6a75455e page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a84b1e0 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x6a862160 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a952867 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x6aac9728 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x6ab3781f trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x6ace2954 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x6ad48505 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x6ae3c52c __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x6afbd1a3 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x6b02f494 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x6b1435e4 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b42d7ee macio_find +EXPORT_SYMBOL_GPL vmlinux 0x6b440837 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x6b459bb6 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6b662402 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b8787d1 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x6bf0755d devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c0d50e3 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c3a7894 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c87587b rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x6c9280c3 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cc97100 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x6ccfaff8 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cf397b0 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x6d1f3bb7 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d38eb64 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x6d54d3d4 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x6d63610e crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6d915fc3 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x6d949b5e pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x6da44c69 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x6db1c47e pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x6db3900f gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x6dbd4691 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x6dc0cf7a i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x6dc30c4b tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x6dd85537 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x6df67c03 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x6dfcb28f sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x6e013a32 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e06b5c9 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x6e17ce9e stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x6e46a6bb rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x6e4c117d crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e5b3a5b __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x6e5c04ea __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x6e67fef3 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x6e70b0e9 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6ebe972d proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x6ee073a1 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x6f00ec48 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x6f19bf1a cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x6f1d790f ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f29e945 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x6f3fe80b trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f8604f5 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x6f86e5c5 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x6f8cb18d pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x6fa7c885 bus_unregister_notifier +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 0x6ff7faa9 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x7018ff15 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x7062f355 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x70749e10 check_media_bay +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x709204ca irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x70929260 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x70b5a87a disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x70c311aa debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x70c34c27 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x710442fd reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7129eb42 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x712e302e security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x71454636 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x714aa1f0 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x714f4339 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71bd5475 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x71cdb177 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71ea91b1 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x71f1a16b ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x72110eee scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x721b87ae usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x721fa96c pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x722f2eb2 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x72628240 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x726823c1 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x728a007e crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x728ab0ea pmf_call_one +EXPORT_SYMBOL_GPL vmlinux 0x72906f3d scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x72950aea scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x729778d0 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x729c186b blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x72acbd9c tps6586x_write +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 0x72e528c3 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x72ec0552 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x72ec241e dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x73075e65 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x734cec9d fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x73769240 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x7384f1b6 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x739aa1a1 pmac_i2c_setmode +EXPORT_SYMBOL_GPL vmlinux 0x73a3aa28 inet_csk_get_port +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 0x73d59437 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73d85d1e shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x740e32b0 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7431ce6a ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7441a455 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7468b74e __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x746e8838 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x748e2d2d device_create_file +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 0x74c68ab3 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74cfee76 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x750737e9 unlock_media_bay +EXPORT_SYMBOL_GPL vmlinux 0x7516f492 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x75389227 genlmsg_new_unicast +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 0x7577226b blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x75903ea8 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75aa9d2e devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x75ac5d49 pci_ats_queue_depth +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 0x75cf942b ping_err +EXPORT_SYMBOL_GPL vmlinux 0x75d17d0b pmac_i2c_open +EXPORT_SYMBOL_GPL vmlinux 0x75d6fa54 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x75f5c5e5 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x75f8652a pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7625f62f trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x76542e1f posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x7670bed2 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7681c244 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x768a58d4 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x7694cbfb dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x76954342 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x76a38b2a ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x76d9ca3d crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7700cbb9 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x7705cc87 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x770db4b5 gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x77234b1c regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x7741311d posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x7749909a usb_unlink_urb +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 0x779aafad each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77d192bd devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x77d48d6d pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x780e9510 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x780f7e64 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x78298279 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x784b8f04 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x78560f52 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x788c86af unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x78ad6ee5 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78b3883c pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x78c3b417 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x78d9346f ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x78f8d3f9 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x7902b5e6 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x79032396 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x790b8a22 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x790e79ff pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x793548d3 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x793c598c of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x79415b6b event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x794dddff crypto_default_rng +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 0x798f9761 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x798fae28 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x79a2fca1 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x79c319eb pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x79d1f83d ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e8ef99 inverse_translate +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 0x7a6cd147 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x7a77a868 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x7a893012 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x7a8c7ce5 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a957fb6 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7b0645e1 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b169c5b tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x7b182e53 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b22ac3f __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x7b423a52 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7b7a55fc rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x7b88e9e2 md_new_event +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 0x7bd5875d unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x7bf52073 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x7c007eeb crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x7c0cfd88 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x7c29fddd debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x7c3d553e pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x7c4f4590 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x7c544dd8 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x7c576453 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7c8192fe md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7c85a801 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7c962c71 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x7cbfcc8b power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x7cd46a02 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd99680 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cef8b5d rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x7cf7700a devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7cfadf3f hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7cfd0391 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x7d020161 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x7d02716c of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x7d14400d regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x7d1f1246 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5a6c12 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x7d5ec923 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x7d93652b module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x7d95bae3 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x7d96a18e rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x7da2d46e dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dae08fd bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x7db29cf8 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x7db5f052 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x7dbb0c75 crypto_alg_mod_lookup +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 0x7de99cea blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x7df36ac2 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7df8fbda tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7e021ca5 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x7e113030 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e1a17b4 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7e2c49f3 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6b13b4 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x7e6d26db rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x7e87cb1f spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e975549 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x7ecc10b4 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x7eedc4cc debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x7ef8ca7f ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f2bcf50 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x7f3c7989 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x7f6c52e8 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x7f72657d mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7f789302 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f7ff48f regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x7f8c409d percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x7f9cda5c kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fc66e5d blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x7fd59cb3 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fd6f0e9 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x7ffa4ac2 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x80373023 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x80398fee pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x804ea02d __find_linux_pte_or_hugepte +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x807ef25a skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80a3accc arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x80b4ce0c regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x80c04b1d powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x80c622d9 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d10b69 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x80d404eb usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80ea0fc2 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dac49 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8121574b register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x8129b045 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x813a7c4f nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x813eafe5 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x8190a0ea ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x81a410a6 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x81fa1d94 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x8212f84e crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x822a266c __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x822fdead regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x824c65a7 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x8254e57e regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x82588caa tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x826b8572 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82fb2ffd transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x8321129d irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x834f2d0c rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x8363acd0 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x8380268a exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x83829d9d ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83946297 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x83aaaac4 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x83be3b4a thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x83dba516 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x841da239 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x84348e82 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x8462b192 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x847725bc usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x84b2df2c hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84cccd38 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8509de04 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x851758a0 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8519a9c6 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x853fdebb crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x85460700 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x85696896 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x8588f952 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x858f69be usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x85bcdfc3 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85e00888 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x86093916 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x861930d1 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x86207944 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x862578b8 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x863eb30d fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x864a5070 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x865322d4 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x86661104 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x867c8d57 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x868384ef skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868c89db extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x86dbcbb2 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x86e33aa7 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f2108f platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x86f25c53 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f7f50d single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x86f8f96e transport_destroy_device +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 0x8752ca53 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8773adec devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x87989e5f pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x87bd89c1 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x87fc9d57 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88227352 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x884f2a5b __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x889a05f9 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x889dd607 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b17267 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88bdb29d page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x88bfb375 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x88c3e6db tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x88e1367b regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x88f1a686 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x8906aee5 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x8909c899 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x8931562a rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x89343077 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x89653da3 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x896e5755 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x89700b99 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8973b5fa regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x897b3cc9 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x898a2ae7 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x898f88a4 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x8990f971 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c024bd trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x89cded67 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x89d22f79 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x89ebf635 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x89f48907 sdio_release_irq +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 0x8a7fc096 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x8a8c4b87 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac558f8 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x8ac7f95d virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x8ae5b993 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x8b15687a isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0x8b16e533 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x8b22133c kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x8b362808 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x8b372294 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8b70b47b file_ra_state_init +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 0x8b933c83 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x8b9e415c usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x8b9f3e8d regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x8bb0bc64 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c162051 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x8c3e420f vring_transport_features +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 0x8c85d699 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x8c8d7b7c usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8c8eb218 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x8cab8ca7 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x8caffdf9 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cda7e2c irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x8cf8576c wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8d43ac48 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d5aeb68 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x8d5cee08 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x8d9dade2 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x8da17b42 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x8dab43a3 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x8de4625e fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x8de9e966 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8e13ed25 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x8e23a03a ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e958564 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x8eb03a57 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8ecc7ad8 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x8ece68fd percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x8ee84aa8 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x8ef64dfe mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x8ef8f084 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f36e9e4 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x8f416d3c fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8fb230a7 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x8fba4ace __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x8fd4ed48 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x8febd419 find_module +EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x9026a731 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x902a70db i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x905c38a8 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x90683579 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x908537e4 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x908dbf8e of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0x908ebc1f rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90a2329d stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x90c40433 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x90e50e71 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x91294001 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x91444347 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x9149c758 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x914ea28d regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x91879f22 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91a1b00c devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91dd97f2 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x920e330c ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x92263aa0 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x922c7a89 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x929e407e pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x92a1545f devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x92b25917 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92b77d70 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e1cca2 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x92e740b0 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x92ed02b6 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x93147455 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x932b251b ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x9347f910 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x93568e3f da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x935841fc i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x9361e495 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x936de6c1 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x937238ab sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x9378ba71 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x9380f8a4 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x939fc1d3 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x93a2cb47 reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x93ba6d55 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x93bcce38 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x93d2aa00 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x93e29a58 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x93f8cfa0 regulator_set_load +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 0x942f1a5b spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x9435fe18 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x94414a70 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x9456bd14 pmf_do_irq +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x9498c991 pci_disable_pri +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 0x94bf95ad devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x94d917c5 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94fae79c regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x95022f44 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x9534f8c1 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c7fcc3 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x95c905ce phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x95ec7894 device_reset +EXPORT_SYMBOL_GPL vmlinux 0x95ecffc7 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x95f5ff83 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x960f1ae5 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x9617db0c rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x961fb9e6 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9625ff91 scsi_autopm_get_device +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 0x9674d02d regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x96800b70 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x9682f1fb _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x96860659 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x9686cede dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x9696fa2c md_stop +EXPORT_SYMBOL_GPL vmlinux 0x96a46f6d device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x96c900df find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x96ef6360 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x96fe9e36 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x97135fb3 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x975255c4 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9756b9fc devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x97654a94 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x97ac688e tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983ea0da rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x984afa6c tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98562558 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9890e339 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x98920659 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x98993187 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98c84e5d regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x98dda315 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x9909dd6e netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x990bc9d5 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x99232abf usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x992d8be7 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x99360641 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x993bcc09 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x994f16b7 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x995c8a01 pm_generic_restore_noirq +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 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99b0ac95 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a6f821c ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x9a76b318 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9ab1fa82 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9abba308 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ae7e21c attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x9ae8ce2b uprobe_unregister +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 0x9b228a4f cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x9b2bca83 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x9b366389 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x9b621885 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x9bb420b6 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x9bbd001f devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x9be3f157 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9becdd50 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf052b7 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x9c110abe fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x9c116086 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x9c19fdf6 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x9c676beb ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x9c6f8e2a spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9ca77522 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cd64eb5 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x9d15d271 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9d5b706f ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dbbed7d swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x9dd7ebda hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x9dd8f7d2 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4fd1b4 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x9e7be86d crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x9e7db457 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x9e82e328 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x9e91c425 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x9e983ca9 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x9eb1d5a0 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9f10164e ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x9f55a875 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f5a5f5a syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9f74be1d blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9f8d2af9 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa02f2f08 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xa0352c56 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xa03ef1ce pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xa05d8f27 sysfs_create_mount_point +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 0xa099bd4a fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa0bad950 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xa0fe539a rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xa1471d98 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa194d186 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xa1978a1f pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xa1ce26a0 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xa25e78f2 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xa261142d adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xa267d68f input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xa26bdd97 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2735b91 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xa295ceeb usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xa297b452 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa2a3a82a rio_release_dma +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 0xa304fce4 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0xa31d3539 of_css +EXPORT_SYMBOL_GPL vmlinux 0xa324c73c __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xa341ae9f pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xa3461c8a rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xa356c62a crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xa362d4ac trace_buffer_unlock_commit_regs +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 0xa39b9f34 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range +EXPORT_SYMBOL_GPL vmlinux 0xa3aba416 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c03162 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xa3cd3492 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xa3dda356 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xa3e226c6 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa40f3e79 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xa41768c8 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa4206da5 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xa430f6f0 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xa43ff2cf led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa459812a dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xa460e0e3 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xa47d1269 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa49408a5 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xa4951f9f of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa4d7b190 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xa51a86ab fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xa51dfe6e usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa533c835 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0xa53c8b81 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xa56325cc pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xa59ca6ee usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xa5a7f1a6 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xa5ad8a0f wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5b1bdb6 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xa5e2013d fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xa5f0c0c3 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xa5f1e38a shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xa5f48723 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa60343e7 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa630e2ce debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xa66aaa31 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xa66c86f7 flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xa66f00ad pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa67fb278 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xa6a8f347 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +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 0xa6ec394b kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xa6fda755 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xa720061a __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0xa7215b30 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xa7345bb3 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa73cdc4a inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xa73fda1a ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xa76860b0 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa771f55f device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0xa77f61ba tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xa78916d6 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xa78e4a4f invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xa7b27e0f pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa7b7ae94 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xa7dc5706 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xa7e743ea tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xa7fb699c usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xa806bdf1 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xa812a9fc cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xa82bfb7a elv_register +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa85df6f8 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xa86567e6 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xa87fa69e pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xa888bd00 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xa8b62828 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8df7960 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xa91603b1 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93b2db9 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xa9822743 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0xa9853c2a crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa313c92 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xaa49b1b2 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xaa87ac85 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0xaa8d5a40 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0xaa8dfc10 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xaa96b97f component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaaadd7f of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xaab1db49 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xaac408fa leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xaae197e4 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xaaf03e50 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab4a7590 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab6da9b1 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xab780c42 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xab86fc20 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xaba0c42e __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xabc4c3e6 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd3d40c list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xabe50ee4 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xac2a3f3a irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xac52f5b0 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xac79329f posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xac907da4 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xac95a1ad root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xac9623b9 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xac98614c crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xacc54cbd ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xace36a15 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xaceda14b ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xacf35223 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xad164370 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xad2b1c09 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xad31df88 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xad657ec9 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xad73b1b0 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xad908c90 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xad9defe6 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xadae1ade inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae03869c tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xae173cf7 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xae2addf9 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0xae2fb755 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xae3db287 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xae57a82a dev_pm_qos_remove_request +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 0xaeaaf6c6 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xaed9b76f ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xaf176bc5 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xaf25ce7b device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xaf384afc dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaf46f08b irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xaf53c73d wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0xaf5606d3 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xaf934a17 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xafae04b3 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xafb3ed88 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xafe4d360 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xb0039103 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb00b365d dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xb03888b6 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb05912f9 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xb0636315 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb0913148 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xb096d3b2 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xb0aa99f6 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xb0ab42d6 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xb0b60939 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xb0b8065d gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb1562662 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb18c0761 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xb19b5ecc devm_usb_get_phy +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 0xb1c12a7c pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e8df59 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb1ec074c led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xb1f5e538 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xb1fa0d5e blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xb1fe99f0 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0xb2076239 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xb2103d04 skb_segment +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 0xb23b1f36 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xb23c4520 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xb2a411a4 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xb2a84ff2 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xb2e1ae36 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f18c1e dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xb2fd5401 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xb2fe5e79 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb30332ca devres_get +EXPORT_SYMBOL_GPL vmlinux 0xb32cf7d1 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xb32e5064 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xb337e280 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xb344ca15 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xb3755860 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xb390b44b __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xb3a8fdbc led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xb3b48cd7 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xb3c230d3 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3cb1fa4 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xb3cba186 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xb3ec424d put_pid +EXPORT_SYMBOL_GPL vmlinux 0xb405a4b2 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb40e7ea6 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4132b50 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xb420053a bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xb4269ae8 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4548c24 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xb4677f34 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xb478b6ea devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xb47babfb input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb49f7cff blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +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 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb59be28b crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5a23904 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xb5a49b4b blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xb5a56246 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xb5a96a02 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5b6baea sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb60ad3ef ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62feaf5 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xb63f7a97 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xb660eb3d sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xb691037f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6f44519 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb7047183 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb715c4d8 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xb72f509b rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xb77f3860 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xb7818a3f sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xb7936271 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xb79fb656 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xb7acd9e4 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xb7d6cd4c regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xb7e09414 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xb7e4bd01 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xb7e8dbf4 ata_bmdma_post_internal_cmd +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 0xb811f3c5 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb8173ca3 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xb82d5d61 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb83d64d5 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xb86200cc crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb87b22af __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xb883206b hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8c49088 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8eae29e sysfs_remove_file_ns +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 0xb92ebba2 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xb930977b perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb9350afe regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0xb9613f6d crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb96a2bd6 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xb96b3bc6 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xb983c539 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xb98d332d rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb9b14f39 devm_extcon_dev_allocate +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 0xba158769 rtas_cancel_event_scan +EXPORT_SYMBOL_GPL vmlinux 0xba1fe36f arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0xba2083dd palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba9c928a pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb59ed90 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xbbb09eeb swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xbbb6e581 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xbbcba9d0 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xbbd9ad33 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xbbea1224 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbbee2a26 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xbc030271 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xbc2384aa device_register +EXPORT_SYMBOL_GPL vmlinux 0xbc317e70 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xbc4ee27e ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xbc69be36 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbca70a45 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcba9b53 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xbcd7e159 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xbcea4f88 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xbd0f1117 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xbd1908f5 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xbd19f763 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xbd312b01 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbdbf07ca shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xbdc87748 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xbdce0d6c ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbddc3b5a __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbde8a5d9 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbdfb64df ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe2712bc percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6eb9b5 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xbe729fb7 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xbe86101c usb_add_hcd +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 0xbeac6844 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf0496d0 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf3a1098 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xbf5903da sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xbf5e037e mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0xbf66377d pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xbf8e2fd7 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xbf90f814 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xbf926c18 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xbf9abb83 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfcc573b inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbfd6a06e rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xbfd7965e bus_get_device_klist +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 0xc04fe43f wm8350_device_exit +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 0xc08b71f9 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b9d0ff blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xc0bda940 inet_csk_reqsk_queue_hash_add +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 0xc11b3117 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xc13b3f1a skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc18fd974 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xc1ad03fd usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xc1af1a46 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xc1c572cb gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc1e0163f tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0xc1e51822 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xc1f0cd02 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xc20b1bda crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2314512 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc24df919 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc2c5dcd8 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc2ed6a8a __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc303450c debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xc30b3a36 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0xc322610f usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xc32f314d perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xc3369f62 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc341b763 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc374a08e unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xc37ef509 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc3856220 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xc3984adb usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3e7e760 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xc3f36f40 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xc4214cae rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc430343c input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc46e7659 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc47d15d6 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc494539a da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xc49d6a5d bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc4a20df5 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0xc4a66db5 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xc4a8ad31 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0xc4a959e2 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xc4ab7499 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4d1abcf wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xc4e4155a inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xc4e5944c of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xc5225063 md_run +EXPORT_SYMBOL_GPL vmlinux 0xc527a26e register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc54f4035 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc57784de device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xc57d89cc ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xc59045a6 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5ad63b3 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xc5b3da4f usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xc5be5715 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xc5d1838f register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xc5ef2aa7 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc60de50a debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc62a9d13 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a0eb6f kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xc6a4c2df pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xc6a8c8ff debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xc6ac5f77 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xc6bd0298 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xc6e12aa1 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xc6e92d98 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0xc6f99957 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xc702c080 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc75fd384 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc766c091 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc7673143 pmac_backlight_mutex +EXPORT_SYMBOL_GPL vmlinux 0xc7770e45 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xc778534c mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0xc780348f usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xc785d570 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xc79e03e8 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a98d8f __put_net +EXPORT_SYMBOL_GPL vmlinux 0xc7b8a27e tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc7bf3acd ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7cae2a5 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc7caf5db pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7d3f1a0 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc813d9c6 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xc8185529 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0xc82b7f15 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xc82b816c fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xc845b1c8 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc8ab0e28 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b88bae usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xc8c15b64 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc9057d1a phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xc90e16ef pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xc90eafd2 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc92120af xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc9308b03 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xc950a7dc flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc97e9bff register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xc98c1d16 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xc9990247 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xc9aed259 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xc9b390a0 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xc9c0e1d9 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0xc9e265c4 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xca25876b of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xca2bfb2e usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xca319c9a rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xca6274e7 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xca703eab crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca9437ba srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xcab53d58 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcadd295c lock_media_bay +EXPORT_SYMBOL_GPL vmlinux 0xcae0fcee sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xcaee51b0 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0xcaf6ec04 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xcb0f7768 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xcb12f114 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb21cf28 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xcb26d95f xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0xcb2c53aa fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb50e3d3 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xcb5c100e dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xcb7aef8b pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xcb7fa360 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xcb8b8471 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xcb9a0057 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xcba486bf gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xcba8ec0d crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xcbc0aaf3 ata_pci_remove_one +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 0xcc212697 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xcc2c7b2d flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xcc35ec1a pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xcc391408 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xcc41d323 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xcc5e2476 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xcc66a055 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc865204 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcc8926c6 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xccad3365 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xcccd38cf gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd61897 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xcd1645c2 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xcd20038d hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xcd23a3c0 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xcd47ff35 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd6492ab trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xcd7d8f79 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xcd83e5df security_kernel_fw_from_file +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 0xcda501bf bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdbddd5b dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0xcdc23450 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xcdc5c01b device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde4f9ca crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xcdf5076d ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xce25de2f regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xce376ece blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xce407f5d inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xce679c22 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce760be6 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xce9fc6b0 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xceb167e4 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee9df27 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xcefd80a9 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xcf1ff21e power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xcf250f34 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xcf30e4ee pmac_i2c_adapter_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xcf4f5acb dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf609eb6 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xcf6b6d3b od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xcf78771f serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xcf790927 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xcf7eb852 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xcf82c56c uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xcf857bcd crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcf9e6660 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xcfa99a8c usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfb9a0c9 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfcf27a5 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfd1b290 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xcff4e469 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd01efac6 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xd0353b50 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd03cce15 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xd05673e5 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xd0578abd regcache_sync_region +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 0xd0b7bd99 put_device +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d5dc8e phy_init +EXPORT_SYMBOL_GPL vmlinux 0xd0ea730a skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xd1021cb2 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xd108ffca watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd13f6e7a ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xd15a958e setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xd15b771b spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1721df3 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xd1822f0b cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd1cead13 add_disk_randomness +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 0xd21e8fd9 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xd239eebe led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xd250bb81 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xd25b2d4d regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2a9b56b rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2acc2b1 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xd2ae2cbd usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xd2b55c9c sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e37a7a pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd306594e fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xd3176d05 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xd334e975 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xd364583e rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xd373f17b pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xd37ba6f5 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xd381a76b key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xd38db082 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3b6fb69 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd3d7e025 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd3f4346b fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd432cb7d ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd46fb522 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xd47feac4 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xd485349f led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xd48553d3 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xd49620d1 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4f9444a gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xd54541fa gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xd55f7197 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd5853427 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xd589d259 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xd59f097b ip6_update_pmtu +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 0xd5d87712 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd6132ad6 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xd6257cc8 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xd629bf12 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xd62bb16a regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xd62e3bf0 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xd63648f3 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xd645c8d6 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xd648afd6 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xd65efcca platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd66a2c96 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd678b5ad ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xd67fd6a2 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xd6a4f09b fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xd6ac3dc7 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd6aeef90 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xd6d3a264 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xd6dcd3a7 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xd6e0533a of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd7082a18 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xd7107932 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xd7117b53 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xd71200d3 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xd7467dd2 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xd7624621 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd778768b trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd788214e subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd7b3b245 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xd7c5a5a9 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd7cc6c8c ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xd7cff738 gpiod_set_raw_array_value_cansleep +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 0xd82173d2 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd83a7d7c subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xd8423531 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xd85cb800 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xd85d7a38 usb_add_phy +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 0xd8803901 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xd8a35bbe use_mm +EXPORT_SYMBOL_GPL vmlinux 0xd8b839e9 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xd8d277ee __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xd8dbe7c0 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xd8f29e44 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xd901f302 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xd93ea091 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd9445380 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd95e873a rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xd961ae25 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd974ca6d ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd99ef66d __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xd9cc90c3 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xd9e87563 pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda045e40 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable +EXPORT_SYMBOL_GPL vmlinux 0xda3e06c6 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xda7d0222 scsi_flush_work +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 0xdaf4dfb3 fb_mode_option +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 0xdb5a331e ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xdb6a5f7d arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0xdb7558c2 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xdb835525 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb8aa6b0 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xdb95e52d of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xdb9c8346 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xdba1a7b1 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xdba5ab75 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xdbc5c276 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xdbd36105 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xdbf5a41d fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc0ab35b fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xdc1365fb irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xdc14e98a sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xdc32ccc7 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdc33aa79 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xdc45ae87 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xdc5a2ca2 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc8fc7d0 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcaccaae l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdcbab08e led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xdcc98155 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdd0afcf5 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xdd168aad vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd333729 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd722c61 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xdd859ddd pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xdda7e540 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xdda940ac rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xddbe13bc pci_disable_sriov +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 0xde237190 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xde491f24 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xde6c6235 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xdea2d4f0 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xdea7bc14 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0xdea816d7 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xdea9bbbc ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xdef8c069 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xdefa5c52 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xdf0c3252 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1475a9 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xdf2205a2 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xdf22fb06 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xdf3c5eac security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xdf4a7a09 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xdf608d2b mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xdfacaa45 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xdfe89c60 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xdff9a911 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xdfffabce user_update +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe00d5990 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xe02b9139 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe034a3c9 of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put +EXPORT_SYMBOL_GPL vmlinux 0xe037b7b8 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xe0564f88 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xe0631e1b tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe07ca631 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0b74d0c tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xe0bac5ff crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe0c13884 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xe0d61cb2 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0xe0d7cf58 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xe0dc03cc nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xe0f4dcf9 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xe115640c adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0xe12e8e9f devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe155c043 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe18d8dec of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0xe18f4347 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1d74e5c phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xe22704fb usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe24125bb rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xe25550cf of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xe26e70e2 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe291c9d4 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe2ae44ab rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xe2f92cdd edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe329af43 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xe3464c38 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe357e413 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe377777d fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xe37da8dc usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe3a1cf4c validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xe3f11f54 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xe3fe8936 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xe425abc6 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe438c96c sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe44c996b perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xe4546ea4 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe48b3ffc scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49aa51f pmac_low_i2c_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe4a0d7af __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xe4a39dd2 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe4c03bb7 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xe4c19253 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4e0545b regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xe4e827d0 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xe4f6b2b8 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xe5022dc9 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xe52ca34f rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0xe55cc65b pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe5845283 pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58f55fa ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5a4c339 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe5a7237f rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xe5bef4cc fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xe5e50bd8 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xe5ebb4fe gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xe607319a pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xe617b170 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xe649ce5b crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe65348c5 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0xe671f33c pmac_i2c_get_channel +EXPORT_SYMBOL_GPL vmlinux 0xe679c522 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xe6ac7e34 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xe6affa10 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6cbc332 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xe6d7251f device_remove_property_set +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 0xe7145917 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xe71846ee uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xe73872fe phy_put +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76e0da8 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xe7748d9b sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe7b031f0 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xe7bdff2d pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xe7d73653 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xe7db5ad4 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7f7ab35 netdev_is_rx_handler_busy +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 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe8501416 anon_inode_getfd +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 0xe892287a register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xe89d8699 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xe89f3b0d rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe8a8229e fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xe8ac54c4 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xe8b9e03f ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xe8befaa9 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe8d987ab device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xe912375f blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xe914f885 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xe9222168 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xe92e4392 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xe93228d2 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9468a67 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xe966adca pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xe97431a9 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xe9795d14 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xe9a9bb34 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9e8b196 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea2876ef pmf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xea2ff7d3 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea62441e usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xeaab5d0d i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xeb03bb30 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xeb0e706c device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xeb5c77c8 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xeb73713a single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xeb73cb92 of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0xeb75ea61 power_supply_property_is_writeable +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 0xebb64a3d tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xebbee642 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xebdb31d4 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0xebe084d1 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebff63b3 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec28cfdf pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xec2a6363 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xec337dad fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xec3ba19e inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xec85994f pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xecb21923 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xecbbf6dd ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xecedf394 __pm_stay_awake +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 0xed1ffaec platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xed300ded is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xed394b9a pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xed739918 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xed7d2941 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xedab8d4c component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xedb7dba7 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xedc5548b devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xedcd6b63 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xedd2018f driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xedd3b17f inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xedeaba1e regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xee28a146 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xee5d33c7 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee9080c5 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xee96d06a scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xeea1002f ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xeeebe4bc devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xeefc5d00 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xef24f33c dma_wait_for_async_tx +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 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef906dc3 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa5b26e extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xefb164db input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xefbf6674 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xefca902b dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xefe7b580 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xf017a3ff device_create +EXPORT_SYMBOL_GPL vmlinux 0xf02ccecd sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xf03036e8 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf038ca85 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf03c1c81 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf03c4c96 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf057b91c power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xf05f0f75 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xf071e6e0 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0847677 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xf0a78365 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xf0b73634 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0c7d33f scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xf0c88941 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xf0d105b8 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xf0de6ddd ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xf0efbf55 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf135cea2 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xf13cd80a tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xf1642431 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xf1776c73 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1a804db ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xf1a98d81 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xf1af0c4c dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +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 0xf21c6102 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf23788e9 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf28d3cbf tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xf297eedd bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xf29eb7ae of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xf2a61bbc sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2fc2481 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf2ff563d pcibios_free_controller_deferred +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 0xf319ab50 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf31f8cd9 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf35ba259 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf39a1d51 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf3a2a421 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xf3aab1d7 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xf3b3abe2 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3bfea78 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf3d40598 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xf3deff40 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3f18f28 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xf41f068e pci_restore_ats_state +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 0xf49f1c73 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xf4aff6dc ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xf4b333d1 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xf4d36365 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xf4e16b25 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xf4f9ca5d sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf504f09c pmac_i2c_get_bus_node +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf5232a6a remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xf528140c ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xf53f94b9 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf551800c tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf55481e0 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xf55b1c5e trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xf57f02dd serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xf599e2b2 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xf5a266a4 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xf5bdf260 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xf5d5b770 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xf5f079dc elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf5f49b50 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xf5fe97d7 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0xf6009013 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xf6194223 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xf66d630e crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xf66f1689 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf6a80c21 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf6aefd6e ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf74b392e regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xf7652917 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf78c6b34 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xf799c091 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xf7aaf6eb bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf7af6764 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xf7c2cfbc dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xf80baef5 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xf8143fb9 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8370861 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xf843d974 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88a80d5 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8bc5c07 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8ee0a45 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f945b2 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf901214f pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xf90233f8 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xf909fc88 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xf90b2d9e __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xf90c0498 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf90e4d2f crypto_remove_spawns +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 0xf93ce48d blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xf93e9240 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf97db999 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xf9869c8e extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a81a56 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xf9b9d3d6 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf9be836b ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa239a96 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xfa277abd sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xfa29ff19 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xfa2a12dc rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xfa5fded7 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xfa644d36 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfa661073 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xfa675b78 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xfa68fc06 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xfa76a6e7 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xfaa8124c ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfad335d5 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xfad45f84 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xfaf5bdb0 extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0xfb016424 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xfb06a359 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xfb11e9b0 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xfb2b0d7f __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb367c2d mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xfb36b9b5 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xfb525dfc pmac_i2c_get_type +EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xfb5b5e03 desc_to_gpio +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 0xfb84e8d0 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc198af crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xfbd1a0b0 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xfbf0bc1d skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xfbfe0efc devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc12cd01 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xfc47f925 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xfc7b6167 pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0xfc81100b _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0xfc8124af rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xfc95e622 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xfc9fefdb xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xfcab3bce mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xfcbd1e5d platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xfcfd00c8 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xfcffb4e1 pmac_i2c_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xfd576a1a get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd7a64f1 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xfd8d7104 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xfd994424 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xfda8a748 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xfdc6678d regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xfdcdd075 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0xfdd9e083 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xfde753f5 of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0xfdf051c5 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xfe1cf2a1 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xfe391ecc pmf_register_irq_client +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfec6bf9b security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed3f010 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xfef06a7e ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff0590f1 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff132304 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xff1b58af eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xff25cfc3 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xff38d58b ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xff448c60 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xff466c93 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff76179b device_add +EXPORT_SYMBOL_GPL vmlinux 0xff7bacee ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xff8112b4 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffc67c49 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xffd5f14d gpiochip_free_own_desc only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/powerpc/powerpc-smp.compiler +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/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-4.4.0.orig/debian.master/abi/4.4.0-97.120/powerpc/powerpc-smp.modules +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/powerpc/powerpc-smp.modules @@ -0,0 +1,4318 @@ +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_mid +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +BusLogic +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ac97_bus +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +aha152x_cs +ahci +ahci_ceva +ahci_platform +ahci_qoriq +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airport +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-ircc +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am53c974 +ambassador +amc6821 +amd +amd5536udc +amd8111e +amdgpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams +ams369fg06 +analog +anatop-regulator +ans-lcd +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +apm-emulation +apm-power +apm_emu +apm_power +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcma-hcd +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmac +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpck6 +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chipreg +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_pcmcia +comedi_test +comedi_usb +comm +configfs +contec_pci_dio +cordic +core +cp210x +cpia2 +cpsw_ale +cpu-notifier-error-inject +cramfs +crc-ccitt +crc-itu-t +crc32 +crc7 +crc8 +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +csiostor +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_cs +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +denali +denali_pci +des_generic +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9601 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +donauboe +dp83848 +dp83867 +dpt_i2o +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtl1_cs +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc3 +dwc3-pci +dwc_eth_qos +dwmac-generic +dwmac-ipq806x +dwmac-lpc18xx +dwmac-meson +dwmac-rk +dwmac-socfpga +dwmac-sti +dwmac-sunxi +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +eata +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +ehset +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f75375s +f81232 +fakelb +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fl512 +flexcan +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fsl-edma +fsl_elbc_nand +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +fujitsu_ts +fusb300_udc +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcm +gdmtty +gdmulte +gdmwm +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +gf128mul +gf2k +gfs2 +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-generic +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hifn_795x +hih6130 +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp100 +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-cbus-gpio +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-gpio +i2c-hid +i2c-hydra +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mpc +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-reg +i2c-nforce2 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-robotfuzz-osif +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i40e +i40evf +i5k_amb +i6300esb +i740fb +i82092 +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +icp_multi +icplus +ics932s401 +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +ims-pcu +imx074 +imx6ul_tsc +imx_thermal +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +kafs +kalmia +kaweth +kbic +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks0127 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvaser_usb +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +ll_temac +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac53c94 +mac80211 +mac80211_hwsim +mac802154 +mac_hid +macb +mace +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77686 +max77693 +max77693-haptic +max77693_charger +max77802 +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +md5-ppc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +mesh +metro-usb +metronomefb +mf6x4 +mga +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mv643xx_eth +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct7802 +nct7904 +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_common +ni_labpc_cs +ni_labpc_isadma +ni_labpc_pci +ni_mio_cs +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicstar +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsc-ircc +nsp32 +nsp_cs +ntb +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvidiafb +nvme +nvmem_core +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +ofpart +old_belkin-sir +omap4-keypad +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +pandora_bl +panel +panel-lg-lg4573 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-simple +parade-ps8622 +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pc300too +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmcia +pcmcia_core +pcmcia_rsrc +pcmciamtd +pcmda12 +pcmmio +pcmuio +pcnet32 +pcnet_cs +pcrypt +pcspkr +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +physmap_of +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pmu_battery +pn533 +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +ps2mult +psmouse +psnap +pt +ptp +pulsedlight-lidar-lite-v2 +pvrusb2 +pwc +pwm-beeper +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qcaspi +qcaux +qcom-spmi-iadc +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +rack-meter +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rionet +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-generic +rtc-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max77686 +rtc-max77802 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtc_cmos_setup +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20_generic +samsung-sxgbe +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_probe +sdhci +sdhci-of-arasan +sdhci-of-at91 +sdhci-of-esdhc +sdhci-of-hlwd +sdhci-pci +sdhci-pltfm +sdhci_f_sdh30 +sdio_uart +sdricoh_cs +sedlbauer_cs +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh_veu +sha1-powerpc +shark2 +shpchp +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sir-dev +sis +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +snd-aoa +snd-aoa-codec-onyx +snd-aoa-codec-tas +snd-aoa-codec-toonie +snd-aoa-fabric-layout +snd-aoa-i2sbus +snd-aoa-soundbus +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcm-oss +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-powermac +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb-common +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-usx2y +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-vxpocket +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +soundcore +sp2 +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-nor +spi-oc-tiny +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +svgalib +swim3 +sx8 +sx8654 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-hexdump +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +therm_windtunnel +thmc50 +thunderbolt +ti-adc081c +ti-adc128s052 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +uPD98402 +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_fsl_elbc_gpcm +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +uninorth-agp +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vcan +vcnl4000 +ves1820 +ves1x93 +veth +vf610_adc +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-ircc +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocodec +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_ca91cx42 +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vsock +vsxxxaa +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83781d +w83791d +w83792d +w83793 +w83795 +w83977af_ir +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd719x +wdrtas +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +windfarm_core +wire +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wl3501_cs +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_emaclite +xilinx_ps2 +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +zatm +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zynq-fpga only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/powerpc/powerpc64-emb +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/powerpc/powerpc64-emb @@ -0,0 +1,17236 @@ +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 0x3dab928e suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x2b396468 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0x60d4c9bc 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 0x06b02717 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x0c71b8e0 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x187ec2a7 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x50921153 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x6f2f7289 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x82503266 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x97c7ccdd pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x99a744df pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xa622ca29 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xc9566f07 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xe652c4c1 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xebb0ad46 paride_register +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xb40ef147 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 0x5f73f115 ipmi_register_smi +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 0xa954d72d ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaab1b2a8 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 0xedd6fbea ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf155160e ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x3f7f8fa2 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x742d5011 st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3f73f8cf xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xbe6d623d xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd6bb4bc4 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/crypto/caam/caam 0x1c758e97 caam_get_era +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x0fff3610 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x464290a8 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x6cb7c389 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xa15122f0 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xad3c2d23 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xd1d031f9 caam_jr_strstatus +EXPORT_SYMBOL drivers/crypto/talitos 0x78f8db6f 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 0xc88e4ac7 edac_mc_find +EXPORT_SYMBOL drivers/edac/mpc85xx_edac 0xbe660a5d mpc85xx_pci_err_probe +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x11491e67 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1d82f8ca fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2d881d3e fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x34adedf1 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3623dcab fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3936d614 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x39611061 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3af43bc8 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x42b86e2a fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4a94a5fb fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4e9357af fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x555b273b fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x60b717ea fw_fill_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 0x6871ecf0 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6890bfba fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7b3a2843 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 0x9976d15f fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9aa511d8 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa137e0a6 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcc371238 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd3438139 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd6f23826 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe0755072 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xea0d9aa2 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xebfa4875 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xefb3e2d4 fw_card_add +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 0x003f9b7f drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x010a9ca1 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ad2c2b drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05d36a74 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0773db25 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07b01b3e drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x083b4c43 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x093a0472 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0994372c drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a66fb9d drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ab76b40 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b689054 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bc04f01 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d046583 drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e0dbcc7 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e8b38ed drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f709dec drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ffbdaad drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1106ffb9 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x113bcf52 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11d978fb drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11dcd185 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x126c8866 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12ff7c63 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1362f92c drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1375f6ff drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13983139 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x140bc560 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x148e130f of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14da6ea1 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16bb5a1a drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18ccce38 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1954df9d drm_dev_register +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 0x1aee8b8d drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd3cbd6 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c83bbda drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d15128f drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d8e0c40 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dba290a drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ef940a3 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fb22c76 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x215b535a drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2276da60 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22ce0305 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23345f9b drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23604f8d drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23ff170e drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24a39a43 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2747d92d drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27e1c5b8 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2814e821 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2818e59e drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28a8835f drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28b45145 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aac86f0 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bc19686 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c2a8889 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d55b2fb drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e11e281 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ee62673 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fae2b94 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fe1da4f drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x307da844 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x310f7326 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3189b703 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3366757e drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x339b0e2e drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e07ae5 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33fb582d drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x353a4936 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35ac358b drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38825370 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a65eebe drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a922e2f drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b56cba9 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba82208 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d5c9814 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e1eaee4 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e3ed14f drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3edf30a5 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fab2abe drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fd5bd45 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40d6726d drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41ba5d67 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41ea7ecb drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42f32a25 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4380d546 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x466af6b2 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4671344f drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4702eb27 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47104333 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47717c7d drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x486c4442 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x489341a9 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49206317 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49d8885c drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a332562 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b4fccea drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bee3e8f drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e953508 drm_poll +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 0x51ce1f93 drm_bridge_enable +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 0x54852b8f drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54cddbde drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55905686 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5626998d drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x586dedc5 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5893b20e drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58ad93b5 drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5997de05 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b243696 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b4fe2c9 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cbc3f3d drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d780eb0 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dfecf38 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ea9d4e9 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f77b402 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61734f97 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61c4ca2f drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62253087 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x625ac0ab drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63437d25 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x634ad7c8 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63d44800 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6470d5ec drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64bbcc2d drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x653d9185 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x656c93b2 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65a64d6f drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65d6d979 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x671c7e64 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x686a27bf drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68bc4de0 drm_mode_create_tile_group +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 0x6b1ec312 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b83f3d1 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d6c4211 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6df939a7 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0a53b3 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f5444de drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x704bf914 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71316203 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7139a614 drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71c5b364 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7209cc54 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7373d44c drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73e1cd5e drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77281c51 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78ce27d8 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x790971b1 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x796da4e3 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a617227 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c600b08 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c880907 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7df8db90 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fba9541 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x817a822e drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82843042 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82a2968e drm_platform_set_busid +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 0x845d1ad9 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x846a8da8 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84f52f1d drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85508184 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8685267b drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88775a2d drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c77a834 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ed06c82 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fc0f82a drm_prime_pages_to_sg +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 0x926e2fe9 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f235e1 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f88abc drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9499fd92 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9529996d drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9563dcd9 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95ab4e90 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95c79049 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9745abfa drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9881ea94 drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9889b3f5 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98a72ac2 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98ca1524 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99da952b drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b03cb63 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a1bcb drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cd356d5 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d100676 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d4329ac drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e29c9e5 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e713087 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fb70a11 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0e742b9 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa15ac70e drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1b5ea2b drm_connector_cleanup +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 0xa2be3b7d drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3fcc986 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa443d153 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5081ec4 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa660a25f drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7553b6a drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa827ae03 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8ae4707 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa253f37 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab3ddc60 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab9f1fcf drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad67cf43 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadd594e2 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadd72dd3 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae23360f drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6ff1aa drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf776c19 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafff2713 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb04fd60c drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22a12f1 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2c39b16 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2dc909e drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb71965a2 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8c2f11a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9baf44c drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9ced899 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba624f23 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaa1799e drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb232bf7 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb3e2c61 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb402e7b drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc6a30ce drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfdec795 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc525844f drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc52a33b9 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5ca0c23 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6e95ece drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcadf4ac1 drm_modeset_backoff_interruptible +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 0xcd73a628 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf0866bf drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfe54ea6 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0493944 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0813794 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0b4eb57 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2eb2a3e drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5f50dfc drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd663ab6d drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd860a5c1 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd89332bb drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd937037c drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9ef7192 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdaa72291 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb34fb5 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbec8f67 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbf820e8 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdefe26d6 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf5c4a3e drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0630b89 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1d3c5ef drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe34e039b drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe44cb452 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4ab5e6a drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5d09f38 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7cf0ec8 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8245991 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe83378dc drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe95966d0 drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea442ab4 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb62cf99 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeba12b76 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeccef5ea drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed16e6c3 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee171a38 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeea6d7d9 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef091467 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef461e80 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef9d9111 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0d10949 drm_dev_unregister +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 0xf1faa53e drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf25a42fe drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf396c616 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4552949 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf68240fd drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf71964f9 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf82564a7 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf83d6743 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa75ccac drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfad16c7a drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf758a1 drm_property_destroy +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_kms_helper 0x003fff0e drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00dd8a7e drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x049a9954 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07f12b44 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0873a90a drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09da587c drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d5f216d drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d661d91 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dc7c1cc drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ead93ed 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 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16b2968c drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1889efdd drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x188cb774 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19da6b6d drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a2ef815 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a66f647 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1be50159 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e4c1ac3 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e5906fa drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2657382f drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28c22360 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29e23afd drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a0e5a83 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a75caf7 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2acb2af3 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b2ba24a drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b89b13f drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c22b674 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c8e194c drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d647785 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e618468 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30ea8833 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x344cdbec drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35b878b7 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38b2305a drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39593e1a drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x396b49a3 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a099563 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a631d18 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3afb8b92 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d28beb1 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e313f88 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ebe7b62 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f46ce70 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41152cda drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x436ee3cd drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44a31eba __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44da626a drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4637badf drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46c09c5d drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a01a488 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4db74bc3 drm_plane_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 0x54a110af drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55113d6c drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x551c4436 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5600c4e3 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57eadd02 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bb6d05d drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5eb0b85e __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61d8ecf5 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x637449ac drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64eebb56 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66c44bbf drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68f17b17 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a868ee9 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72de321f drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76b0483f drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7750364f drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7821ca8e drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78c8ab13 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x808b4798 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x814e8611 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x843b6880 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 0x874db4a2 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89884a24 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cafe1ef drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f561c9c __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9299148f drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92f201fc __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9357d283 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9379784e drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x946d8b8c drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x950e8ffa drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95e53e64 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96155fb9 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x987c1b8e drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99563b06 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x995e92c5 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b352ef8 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d5aca0d drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e4ee222 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f7d21b4 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2b25077 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4ba2bed drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5b8177b drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ec79b2 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7ff5725 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa81b553e 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 0xa903b605 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9fbb367 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab4a8535 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab7b7b58 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad121dff drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb47465b3 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8bc393b drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbaa4529e drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4453411 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc464f1d3 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc605065d drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce81dde4 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd11d5770 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2587fe4 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b26479 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7f91c91 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd98579ff drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda60c940 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc7e7fc0 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc98c3dc drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcd597c6 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde4d80d1 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf782043 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe21604a2 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3693a06 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe638cfc0 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb16e838 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb7de089 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec1c7b7a drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecfa7371 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed113fe1 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeef0974c drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef775a03 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf02af187 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0e896b5 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf49bff61 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5bf7372 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf743fa50 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbeac89c drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe4fcd88 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfed6fee3 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff1d6155 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff5037f4 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff84fe76 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x001514af ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00c21acd ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0270234e ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x02cede01 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x04f897e8 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c20958a ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0fc8fa67 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x137d7eec ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x19e7e254 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c9ac11e ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x240d8168 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x290e867f ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d0c0fea ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33b456a1 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x376ee958 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x38f729ab ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x399c8030 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3f057d8d ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x476b4c0c ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x480fb145 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49e3205e ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49ff2a24 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55b41bb8 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55b4d600 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58b0e098 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b2f4c7d ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60b52347 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6698a235 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a0810d4 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6df744b9 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ec2e611 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f989374 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x743f112d ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x744f3f80 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f1efda1 ttm_bo_mem_put +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 0x8d0c3219 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d59115e ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9691b8f0 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d0eb91 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9aab36ca ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f3117db ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5991940 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa870a46e ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb5422431 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba58cd4b ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc00c485a ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8811676 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xceabf99d ttm_tt_bind +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 0xd860321f ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8b0903a ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda5c0e0a ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc7a458f ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde4886cf ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe02f6fb5 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf17f0c36 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf52aa04c ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf57917ab ttm_bo_mem_space +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 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 0x3dc27e96 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 0x14a836e0 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x2a4ddf9f devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x93165595 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xa6881729 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x142cd4a6 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x353e6650 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x62425409 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x966cb792 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xb7bb4eb0 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 0xd7033094 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x41030a88 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x660fd046 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xa7532511 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd947940c hid_sensor_power_state +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 0x237072b8 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x2e521587 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x2ffde3f5 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x3735b9f0 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x37bcad22 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x62088303 iio_device_unregister +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 0x7d074625 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x9b69d9e3 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xaad4982d iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xad35e2ea iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xd11caa43 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xd8ca8755 iio_trigger_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-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 0x36a1b578 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3d4cc190 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x4af4785a rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xa6492c7a rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x08171ed8 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0b004cb2 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1f026cd3 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x384b47d2 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4337a611 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x721603f3 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x75c438c2 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x769d0b89 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x830219a6 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8689d958 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8a7aee77 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x99a501c1 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaf573c2b ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb39d78e6 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xba38b531 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc634033a ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd0fd6f92 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdef76680 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x014b3c81 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x023e2925 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x102f05df ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10f84037 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12f88e4a ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13406418 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15b8c98a ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17826d1b ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1865116b ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19efc684 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1aa2a25f ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d40f3fb ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e2acead ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2093d28d ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2af0704e ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3095d278 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x313a13e7 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x330a24c2 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33b8e9ec ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c9804eb ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d495112 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4065ed5a ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47464f51 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x498c385d ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d9262ca ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f4bad4d ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f6f5a89 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50a4cf8e ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x524c2fff ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59d41a06 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61023d24 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6238b098 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64599044 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65a3ef13 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66aaacfd ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7175503a ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71c22dd9 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7810ad20 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787c43fc ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b36178a ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7df76800 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81bea80c ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8234c834 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82810b6d ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8636aa30 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8663e437 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8717b0e7 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a0b62e4 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x920698bb ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9391c633 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9654bba1 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a82bb45 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e190fdd ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0a29526 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4c3ac44 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6cfcbfb ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa95b1694 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaca3f6c4 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadcf4da9 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae13fede ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafb27a67 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb221b7d8 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2895d74 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3d93012 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5297745 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9273833 ib_create_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 0xbf494c89 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc49d87a2 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce417cf2 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2b132f9 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2be56ba ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5b63f84 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd625a4f7 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd803cbc7 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8eb3f52 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe293b3eb ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3298d78 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9455a78 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1be7fca ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf67d2ee2 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf923ed9a ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb1f556c rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffa2f4a0 ib_destroy_cq +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 0x00957b98 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x310e84db ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x379317e2 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x4f635de1 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa16a610a ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc3c3b951 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd28e2612 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd93f9eb9 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 0xdabcc9ec ib_sa_join_multicast +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 0x71c2dc31 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd607c014 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 0x144acd22 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x17566d87 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2fe86f1a iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3f74033a iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5e58a452 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5ef758f8 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6355a040 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x642eadc0 iw_cm_reject +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 0x72461171 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 0x96eb7061 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa1a18fd6 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb1ce9cbc iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc0cf6d68 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd69c7335 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfb76a94d iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x09a57a5a rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0f8f365e rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x18f4b298 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x37b72182 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x497081e6 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6d5cf83d rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7c274493 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x83cdabb3 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb28e04b1 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb5c4981b rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb623ff3f rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb66ab2d3 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb8813652 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc1f4627b rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcbe0f475 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd6ac57a3 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdb884e0a rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe1a48d14 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe819b937 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf259a9c9 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf93f707b rdma_connect +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 0x0b7d458f input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x3ef1e1ac input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x5d8264a8 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x7f1a621d devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x9dc85a6a input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x8d1c1390 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x1f652e44 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x3cb55ee2 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xde8224e5 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 0xe2e75a75 cma3000_init +EXPORT_SYMBOL drivers/input/sparse-keymap 0x270c7399 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4b3a585d sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x9ca07598 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa038ba93 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc32c2485 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf9794140 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x5528fcf2 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xc825ecbc ad7879_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x07e95584 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0fbca0fc detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4561c961 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4d4595af capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x52391e28 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5889eb1d 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 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 0x8cf065d0 capi_ctr_suspend_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 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 0xb96ecce0 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc61e395c capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd94ca1c9 attach_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 0x3e122734 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x68991040 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x77779cfe b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7db0a30f b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7edafbee b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x92f7203b b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x934743aa b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa32c4ae5 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xab6e5cc5 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb73d9766 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc12bfe26 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xeeb7ab5c b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf16f8208 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf1d9afa4 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf8bc98ce b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x39447201 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x5775cf66 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x73e53082 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7466d123 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x75aef774 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc3ae0fd9 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xcf2a5fab t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe3c81116 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf26724f4 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 0x0413f3f2 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x116f0808 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb987465e mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xde48f864 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x11e56b8f mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x40706e0c 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 0xb964541c 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 0x0790477c isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x462592e4 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x60d0deb7 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xb63200f2 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xc4c1518c isacsx_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x116a2480 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x60356eec isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xe1017b13 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 0x03f59971 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0acf81d2 bchannel_get_rxbuf +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 0x260b9fd2 mISDN_freedchannel +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 0x3ce8bb62 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4db17999 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x65286f40 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6db43420 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x84290214 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8f2147da bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x90edb4b4 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x96fada43 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x988ae950 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x99c9129e create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa6a457f6 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb64f5208 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc68164ca recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xccefcf5a mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcd7ffa66 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xce61502c recv_Dchannel_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 0xe77d889f recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xefcc32cf queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfd65da2f get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfdc231fe 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 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 0x2898a52d closure_sub +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 0x7fb34d3f closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x85ad4000 closure_sync +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 0xe10aebc1 closure_wait +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 0xc3060827 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xcf9a4bd6 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xeedec6f3 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xf52e4959 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x50779339 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5bd7ce5a dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x82106dc3 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x947e888a dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xbc1376e7 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe593a01c dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/raid456 0x1fe95ac4 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x01a5ff8f flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x126d3c88 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1cdd22a5 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3cba8781 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x523ae2df flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7e2f619c flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fbb6cee flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x97793568 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xab729a86 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbc3d090b flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdd767a7c flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf7f4241c flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfc58a6c9 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2353b0d0 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x291df4c3 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x30cb4cd7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xd82ead5f cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xef71626d cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x806d37ab cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x08bad8ec tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0xe235ac79 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x09021e87 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0f9a212d dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x135bdc37 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x147c290c dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1b48cb9d dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1c48b86a dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1d56a74a dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e071254 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28a57c30 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x30ed5ec2 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32706276 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x484864fb dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4bc5c92e dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d640210 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x51393a32 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x559bc340 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c0ea535 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5edb820d dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x63721c80 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6c899bd9 dvb_frontend_detach +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 0x7efb886e dvb_dmx_swfilter_204 +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 0x8186b714 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82624253 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85a5e7d3 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8668d68d dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x87059ba9 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x95f48cf7 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x95fc39c2 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc104555f dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf589e8c dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd3c003b1 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8f7184c dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xed0c7f0a dvb_unregister_adapter +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 0x8339eee7 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x5b9c8eef ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xcc5cd039 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x395e3138 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4c12925f au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x50a15c2b au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5bcad0f1 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x64d68330 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x68f0910f au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xacc15a90 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xaf768fa2 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfcc20b88 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xe5e53f80 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xb32aa665 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xb4465b41 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xfd6ad906 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x7bdf979d cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x8e728667 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xb1be36cd cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x83f2e514 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x0396eebb cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x4a419df4 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x9bf1b842 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x92fecad4 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x28cf335e cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x3a9d0046 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xc28c59ea cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x10cb09f3 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x1f14f5e7 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x804884d5 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9ed1a0dd dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xdfc63794 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x17d5f8d8 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1a09cd6f dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x286079a1 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2f7bb860 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x35769a9d dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4af20f10 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4ff93c1d dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6b202284 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8704166b dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xac06e216 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb748559b dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc2520ffa dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc67b9ce1 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf773bb94 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfb6b470f dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x7ac2276e dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0a939b92 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xacc6fcff dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xad6ea10a dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xadf96b57 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc3694bd7 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xffa2b3a9 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x0ba91c21 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3c27ba1a dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x9d034496 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa44e97c4 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x7b5986d5 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x7091e411 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 0x1e4e317a drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xd105660a drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x7e46d310 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xc74a68e1 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xd6339a53 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xa4608066 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x630ea796 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x3a945652 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x0aed5413 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x4100571f isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x78a74c48 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x3ea4aea4 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x8c0120c1 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x6bf4a4c7 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x6b01932f lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x5750d3dd lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xaa5fbb74 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xdf329a6f lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x245a80d5 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x569897a2 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xf3ad9c73 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x06824964 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x3888ae3a m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xbbdf02ac m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xa3fef8f2 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x685a4560 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x773bf4f7 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x5a0c2c6e mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xa1603122 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xfc5f5bee nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xac6660a5 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x4781abdb or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x55c721f7 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x3b55a0f5 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xfe91d9fb s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x2c048c77 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x80b248ee s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x5d89769b s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x0fe5c85a si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x423dbbd9 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x6ca4fc13 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x3f113ed2 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x51194029 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x3ba489d7 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x77a6c2fc stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xd064930c stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x5dd5b816 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x5458ac00 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x08e9a5d8 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x0bb09dc2 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x1f483f68 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xb97c14cd stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xebdcf871 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xf7c8fd22 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x567adb24 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x899edf75 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x6ee1e468 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x8c51eec1 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xb84446a9 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xb044c437 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x3d0c34b3 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xd9fc5b1d tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x2f353731 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x4b37f4f6 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x7dbd8753 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xf06e1416 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x691692ae ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x76c23400 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x4cff8af5 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xe1389b8d zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x568ac5ab zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0204496b flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x30e7c5ca flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x333b891c flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6b4886f1 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe0c4e9e2 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe4faf119 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xfdae1fc6 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x87b8cae4 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9daac73a bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xa691f857 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xea3e8743 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x72f92680 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 0xd1e4c955 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xeefe2e65 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x633430b5 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6644725a dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x81147b8b dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x91368c3a dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x93d9a64d read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa203bd90 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc14017e8 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe28ca1ca write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf0f9a5cd rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xce662f76 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x002575de cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x10621a8e cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1401452c cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xad93173c cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xfe8a0655 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x57cde5f9 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 0x07e9be6f cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4e4174d2 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x53e8634d cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6cd4c097 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7e14aa04 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x95f24ca9 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf1fbe450 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x90e6c11c vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xe819d65c vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x4eb24a33 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x9da03d89 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa337fe18 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb2374348 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1219f0a4 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1f7e10be cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x30e15298 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7b28343b cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc274e716 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd8033b7e cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdd4469e8 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x185fa287 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2b23906a cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x38022cf9 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x42c0d017 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4c46a999 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6238b42c cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x809318fd cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8995834b cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8fdf5846 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x91aafcaa cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x93da0946 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaf3882bb cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb6062611 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbbb7475d cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd03be25e cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd441226c cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd66f36fb cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdc0bb3dd cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf8137fc4 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfa417283 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0c3a9c52 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0f5cf2fd ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4703c94d ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x511bad31 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x60be8dba ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8a5c13a3 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x924346ef ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb1da2774 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb9f2044a ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbbc282de ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc5665702 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xca66a85b ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcecc7617 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe32cdbfd ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe3d017fd ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe7e73b19 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xec57c43a ivtv_claim_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 0x1ebef2be saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x24e5b6de saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x25b2b27a saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4a5d6080 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5e37fbd3 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6cc2feab saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x70557699 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x98d1342b saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa1bf863f saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb327cc0c saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xce616750 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd3665bdd saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x5aba82c7 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 0x6a7678aa soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x9060c292 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xc2435ca2 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xd162fb44 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe0ba2c6c soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf0d6ed1f soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf12cc3c9 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 0x05c5cc31 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x0cfbdbdb snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x20c4d0eb snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x55ed89fb snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x6ef3938a snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa6e14eae snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xbf9793b9 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x01bf48f7 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x26141e61 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x4464fcdd lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x4779e993 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x74a915f6 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7c47238c lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa40aec1d lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xae05e56f lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/rc-core 0xd7e0fb67 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xfd1f768d ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xb4eef399 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x880703ef fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x98202e0b fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa4321577 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb99c0393 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x4583e059 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x6db41326 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xf3f8725f mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xcbb0c57a mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xe6fc72f9 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x4dbb6ab8 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x9f5371d3 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x7af9e0e8 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 0x945ab2f4 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xc22b87d5 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x84e256ae xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x960c8d63 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xfc31466a cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0cd783bf dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1118382e dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3556eb1a dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5345f4d0 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x55acb363 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x854ef6f3 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x89684f08 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd2c84fa4 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe345ac80 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1d822914 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x28c6dbca dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x29cf1ea5 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4417e8b9 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x631b70d0 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6409527c dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf0b21725 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 0x330cdae8 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 0x04063524 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x161b219a dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x219a2fb8 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2f27ab7d dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x62545e73 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x63416d00 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6594e152 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 0xbd1aadf7 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbe616277 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf58e9586 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfba9b2dc dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x4db8e0b4 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x57a24e3f em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x02816cf0 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0f82fab1 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x29b3a3b3 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3a5f1791 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6ad4a8a1 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6af5eaba go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6edbfae0 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x85e80cac go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe9e2ddd5 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1f5cfff0 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x23dcdfea gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x48e76cea gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x651c47d6 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8d1dd2d1 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb904d204 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xca100369 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf4bbb0e8 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x1b77b86e tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x37debfb7 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xba83a6a8 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xc825d8cf ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xe3e2d905 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x27084c73 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 0x491522f9 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xdd36d619 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x56b6b8a9 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x6b9510d1 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x9289aa1f videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x930ac7b5 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xabaf510e videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xfb66160c videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x494ac5c8 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xfc7a3360 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x318fabac vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x4943c65d vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x991dddf7 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xadebf9a8 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xbe1e23e4 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xff5046a9 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 0x01c9ff58 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0056ba5b __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03f8b4da v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06dbd836 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0815e9b1 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e1c564b __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0fd2b35a v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14c30b27 v4l2_async_unregister_subdev +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 0x1cf4e8d7 v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x265b4582 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2a46836b v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2a913be9 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c2d130d v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2db28074 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x302a3894 v4l2_async_register_subdev +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 0x3b8c80b7 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bc0d290 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4174b18d v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x44b97377 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46d735aa video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b497685 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b748ec1 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d212e50 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55c7c57e v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58dd3c50 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58f98885 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a4cfe43 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c963427 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5db9310f v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5df79e23 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x625b12e9 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x71d61478 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74787a93 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x782fbc47 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x798d2f37 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79c70d03 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7bc699f7 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e24bffb video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f6b4d9e v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80df10bf v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83e4396a v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x86b947b5 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c5d35e7 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c704583 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e2434fa video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f743577 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x92a15f2c __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x93eec835 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9682f343 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99bd6e4b v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d0e3d00 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa523a217 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa52df72c v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa78e525b v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac950d73 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xacc5daa8 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb0db81b8 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb24f14c1 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb579e41e v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6498a31 v4l2_ctrl_handler_log_status +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 0xbdd7f3df v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc68539ba v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7f9988d v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc83d7030 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc341ba3 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcf52fa0c v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde8c95b4 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdfaa6011 v4l2_ctrl_g_ctrl_int64 +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 0xe6ef9cef v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe7f117da v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee10004f v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfbe4380d v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfc82fdda v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0b0d212a memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1ad54d74 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x238be232 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa2746875 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xaa151f36 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb247af6c memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb60a2d31 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc60187f6 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc7abac1f memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdf6259e0 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe0ce3e20 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xedd273e3 memstick_add_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0224ebf4 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x081e4d17 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0e9f7c36 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0f4fafb7 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2808c13c mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2f7bbbe1 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3511ad99 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x387645ad mpt_set_taskmgmt_in_progress_flag +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 0x51b4bf3c mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x55dc7aab mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7376e821 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x899c69e1 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8d62e518 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8fbb5019 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa04503df mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa08ebda4 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa1dad3f0 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa9fd61be mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xabd23009 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb49d2c39 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xba1dab55 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbb71f772 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbfb2fe6a mpt_verify_adapter +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 0xcf7d7533 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd4be8739 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd4c46bae mpt_findImVolumes +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 0xdf31bf9d mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe4d58907 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf506dda5 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x00d8621c mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x029c8ed2 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x081959af mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x15ee24dd mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1c590373 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x25c3c8c3 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2d7a367d mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3cd45f0a mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x69c7876c mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6e365c7b mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7da4e02f mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x87119cfc mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8d2fb788 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa5676894 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xae5aeb27 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb390d61d mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb5e90ab1 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb7ac589c mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbf3d3b64 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xced76d86 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe31df686 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe8035f05 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe9002c15 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xed100d1d mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfba52e73 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xff3d7516 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xff580d12 mptscsih_bios_param +EXPORT_SYMBOL drivers/mfd/dln2 0x02b4f0eb dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x484e510c dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x7c491b38 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 0x1090d57a ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0x9cdc5a29 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x10265cb0 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x1ab344d9 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x38213f16 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x3b3e4df0 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x7b2ebbc6 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fd34618 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xbb7aaf7d tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xcb543db5 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xd28190a3 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xd67df1dc tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xf767c238 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xfd5c7920 tifm_eject +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xab0c5a76 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 0xb8b7d563 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xfaae8987 mtd_concat_create +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 0x00ffe036 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x084aff02 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1791b9f1 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4b4d0ace arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8717adec arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa482f4d6 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xae353bf7 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe42ae0fc arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf4826dba arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfc4db11a arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x02039c48 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6ca22418 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb00ed2a9 com20020_found +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0abc5e8f NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x23320a7d __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4a4cd5bc ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x54b880a4 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7fb6b7b8 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb5f0edf6 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd50305d5 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd5b3892b ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe0575df6 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe295c1e2 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x794b7ca9 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x84c1cb9b 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 0x0775dc7b t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x15daa2f4 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1f4a64ce cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3e86b143 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6214448b cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x64882f7e t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x67a1322f t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x812b7860 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x85bb82bd cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x86cbbd47 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9178d66a cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaca7bb8c t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb7ac1c7d cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc9b5830f dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe54238ef cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf32ac3de cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x040c6857 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c43a498 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x13f8cdef cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x16b893b7 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1bddbee6 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x28f171b9 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x30f01bec cxgb4_register_uld +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 0x538c309a cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x59a26885 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x64f0ad54 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x67f56cb0 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x68d88812 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x68f0d1c3 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75eddd1b cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e7a04c9 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x807f9a2e cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8302799e cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x851f5e65 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8787e676 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8ac5dbf6 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x981afee0 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99bae146 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9b6f49ed cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa46621db cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa9d488be cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xae8d5ad7 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbc96b4ae cxgb4_flush_eq_cache +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 0xe577f27d cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe775d06f cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8b9e234 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfaf02310 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff6d8193 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2bb0301b vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5487748c vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5c2969a1 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x633ed1ef vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe1f11117 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xea64b931 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x9e909689 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 0xde3bce0c 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 0x16d84621 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x260f9860 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x307b53aa mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x316ce8a1 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3adf4a1f mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b3196cb mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x424ff7b0 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x466ed2a2 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46afb0d8 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c268c01 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55241664 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ddb0f60 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c83b5f4 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c70ef41 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ffe9455 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9253a40c mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9640db6d mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x966e2561 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96e85773 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99323264 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5e8eabc set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa83161c6 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa872df09 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa898158d mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac9360dd mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0d903bf mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf149289 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd513c5f1 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd65f7b78 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6db6512 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd705b003 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde547718 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdefa4a83 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0d2797e mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7655a67 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9b42629 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9c788e9 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9f6fd19 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01174929 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x024c52b0 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05fd6fd6 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0857aabd mlx5_get_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x086ac5ca 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 0x0fba9fda mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13bc07c0 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ae251e3 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c1c928b mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x318414f8 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36a104ab mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3965c693 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e81e695 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45695b13 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x588ac99b mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ed1c451 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ab2a2de mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f267e5d mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7679b9d2 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77b7a79f mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bab0a7d mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cc6adfb mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e39215e mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ce25024 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e435d46 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0f473f6 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa96610a4 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3883cc6 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbad29712 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbea78ace mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3aeec9f mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5d9927c mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc82b4dcf mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9691820 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca827d95 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4503711 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddc55b4d 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 0xe837a137 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee3469da 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/mlxsw/mlxsw_core 0x07cf5674 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x083db709 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x637a8fd0 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 0x97bdbb2c mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9fa5f6db mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb1334ae6 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbf172c09 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 0x80fd0549 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 0x03da50a1 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x14a7dc0e hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb582b9d3 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe145df8c hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe2759b46 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x11ce2bb4 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x13e659a9 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5c9461a5 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa9a86d11 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc658a14c irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc67b4008 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xcdc6145e sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd27933f7 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf784472b sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf7eff7c7 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 0x1cbda2b4 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x26a73e79 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x43948e0b mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x6ee729c6 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xa0721163 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xaff64775 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xc4edede2 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xffdbf1cf mii_ethtool_gset +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x29a9d288 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xde320e0a alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x60680b4a cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xb8cbd745 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x36f0d695 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xcfeecada xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xd0da60b1 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/vitesse 0x137db22c vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x7ed17964 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xd3928b9e register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xd51c0291 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xfadff37c sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x07e09393 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x165b9ef2 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x618033b4 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x769fa808 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x8524ec62 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x94e56e68 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xaf2cab74 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xe31413f2 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x1a6c6167 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x3512b842 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xc7a873c3 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xfed09fc8 cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0f28d11c hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x239de17c hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x282f58c2 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5cbd596f alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x62491afc unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x63a23adf hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8bc01f88 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbb26f49d hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe5652906 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xed5eeccf detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfadd385f hdlc_open +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x2a3044ba i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x8cb387e9 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xccc565c6 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xf3e5e242 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x03e7ee7d ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0a441d8d ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x536ba211 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6939d739 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7c0900f6 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9f3b6e32 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc6636680 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc7bb7c0b ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe41fae8e ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe91bdb51 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xec4435a0 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf3c1dfd9 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 0x04c9b091 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x075e170e ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x07de1570 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0f3e4edf ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x12dd553c ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2d089dc7 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x316af0aa ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4cd7bcba ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6984e031 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x725f200b ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa5b98752 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd1beea98 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdb1fc603 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdd109308 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeaeb8d17 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x20ad46e5 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x26185e29 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x30721204 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x313bfd56 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3a0b6fe1 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6997ceb1 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 0x842a64c9 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 0xa43f96f0 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xac43bf89 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb00fb78b 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 0xfbfe1615 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x121be3b4 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x12a126b2 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1c2c7f49 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x28a7e52f ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2ab1df95 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 0x4c61a60a ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x563171ee ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x62024fbb ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x668f958a ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6714d6af ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x760d9948 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7cd43eb8 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x815d75c1 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8eb9679e ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9bd8ea8a ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9f95062e ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa260b64f ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa4514228 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbb2a3b74 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xca313eb1 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcb37fd08 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd94c3187 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf6f73b67 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x024e3682 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x040ffb7a ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x044211b1 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x066c999f ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x071bff06 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x086a99c4 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c680d9f ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11d4bbed ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14b6a2bc ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ad9cd8e ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x204b8fb5 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x246f72ee ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29d823a5 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b92bc73 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bc7d79c ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d223eeb ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e3dda7f ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35927da4 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3831acaa ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3bdbe9b7 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4343f0aa ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43d967cd ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c5d53c5 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4db9e5d0 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ac3b611 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ae075f1 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cdcd126 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5da612cd ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e0b4a51 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60c43d09 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x615ea6a6 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63d7d1e0 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68f2fa59 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69c7aede ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e863d81 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e982dc8 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70b713c8 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71fa5b2b ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7255507c ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75112cd8 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76e0f7b6 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78ec46cf ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a69b73c ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80711a2e ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8271541b ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8434cccd ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e60f40a ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x910dd9c5 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x921dfe8c ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x927f441b ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93fff77e ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95925396 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d324791 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa02a3e89 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2554edc ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa410ea60 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5a93658 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf1d86e6 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2a9041d ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb359ad95 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4a1f6dd ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb531c017 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb71ae957 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7ce7b51 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb95c3c00 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbbf606c ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf8a5ebd ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbff8948b ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0ff1a65 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3b4c25d ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc780593f ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8400865 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcca54675 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd130842f ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd28f7b27 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd32e53ee ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4a28319 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4c225c8 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5ddaaaa ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6591015 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd78b1159 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7dd32fe ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8a6603a ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd916579a ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd94c686a ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9696eb8 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9cb2db2 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdacc1a07 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc336288 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcef416c ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd7e9a60 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe32ea7f5 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3307974 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9aa620e ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea08f69b ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0926ce8 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3baa739 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf533ec86 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf554a883 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5da1ba0 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf64d5217 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf88316f8 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc7cb80d ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfdb7a8a6 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff086ae1 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0xa0f51d99 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xc889ff80 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xec9a925b stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x50eedfad brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5b999fe6 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x610ff1c1 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x65e9d519 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6e6adea2 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x741b6026 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x909a631c brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9a52b917 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9b7c60e3 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc7f90b30 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xcd33b789 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd8582a02 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xdc641a8a brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x07983b8b hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1cfb33cf hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x26d32265 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2b65871a hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2f718b87 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x35628f6b hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x384d8f86 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4de0dfd0 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x50a84c1c hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x56d9584e hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x58f830f6 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5a966ec7 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x63e6b8e5 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7d91911f hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9161ddad hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa9cb69fb 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 0xcdc7cc41 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xce781291 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd09271d5 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd58563a1 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdb5092ac hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe2c80a93 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xeacdb484 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf3305f09 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf358fedf hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0704b1ad libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1ad5a4bb libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x235aa8ea libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2c0ceb2e free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2d222b0e libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x447df529 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4e3a0696 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x52fd0658 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6cb7ce13 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6cedb655 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x84e7865f libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x85b0cc2c libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x939f306c alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9f41529b libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa8933821 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xae46e239 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb022f35d libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbdaa383f libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe08f9de6 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe257e66e libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe8d27fd9 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x01a1605e il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x02844812 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x03890345 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x04171b9e il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06eee5af il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0ada1161 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0cc22c65 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0f75fa6b il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0fb1dc98 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x13d87aeb il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x184f4340 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x19b7b0ad il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1c8b10c9 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x20d2848b il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x21efecbd il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x247a26b2 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x248335d3 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2637c9c9 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3399f57f il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x351a8bd6 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3584069c il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x43a89d11 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x45937f10 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x46a34b7c il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4c9ef16e il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4d32c30e il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4de164a2 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x512c4e9f il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x526260bd il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x541530aa il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x576ff549 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x59b0ec0a il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5c2c56d6 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5cb03fb6 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5df892ad il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x689c32f9 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x696d560d il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6a68f174 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6c7629b6 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6d8a3f01 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x71568075 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7517aa39 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x76b1d4d8 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7779ac58 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7946d406 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7b5bdc83 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7c84493b il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7d31be4d il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x85c334dc il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8760041f il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x877347c1 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8dfcf348 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8f402986 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x907261b2 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x95295dad il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9569b522 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x98838169 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9906ac4d il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9aaba380 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c98cb8f il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9fd11fa5 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa05c111c il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa0aacc28 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa5c08660 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa6ff1fe9 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa8250bbd il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaafbf029 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaf22ce10 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb69622e1 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb8529bb0 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba6f0ed8 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbbed2e03 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbc237c1a il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbc51317a il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbcba667c il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc056ccfb il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc7d2ef4c il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xca3d16e6 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcd51e890 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xce20af79 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd0719bf7 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd478033b il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd767464c il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xda6480ac il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdbed0468 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdea2bc13 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe467b7f0 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe59299c4 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xea68dc28 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xef5b84ce il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf174e31e il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf8cdb33e il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfac65905 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfaf3121b il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfb3045bb il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfb38bf2f il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfeff382c 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 0x123136a7 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1b160fc2 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x232a2cb6 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2743d50d orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x29325dca orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4667b440 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x490e75d1 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6e39dca5 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x77c4173c alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8ef4a985 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc49cafc6 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc58311f5 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc73b7ce2 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdedd64a9 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdfc47ffd orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf5cd1680 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x26d7cd61 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04ced826 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x05ed8f56 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0677409b rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0aa52b17 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0e747023 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x117eaade rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1ab99292 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b10dd16 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35962ef9 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3b3668a8 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ce53917 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x40cc2c5b rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x48347789 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4a823864 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e89adda rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x57addc2d rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5f10c494 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6479c463 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x64f396b6 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x650c3e3f rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6b32b8d9 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x79660e3e rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7dc43fab rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7f6fb2a7 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82b3a1b7 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x85380359 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8873aa5a rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x896f409b rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ef10629 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9293293b rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9e44de96 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa7dff31e rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb005a134 _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 0xbfbf2604 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc6b614be rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcfaa8748 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdc8a0ee9 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xef33d8c9 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xef588df6 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf67f1906 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf944d19b _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 0x49c406db rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd7f0a9d1 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x64de2d2c rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6d3c6c4d rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa22b8873 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf7160cfb rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0306ad9e rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x033c7dbd rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0549adc8 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1e34e987 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 0x2e0c6c6f rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x32108d23 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3bc84226 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x42372ccf efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x59a4da2b rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5bb282e5 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x61bdb185 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x69bc6a9e efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6ae5432a rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6c4e7351 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8615037a rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8e1293f5 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8edabf34 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xacfe4201 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb2359d4c rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb2390654 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb425d7e5 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb46897df rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb957add7 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc0bba747 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6c3f8d7 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda8f45f9 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe07c0749 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf64f04ca rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x22a82b78 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6800dd8e wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x720de323 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc1faaa82 wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x3e409027 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x63649e34 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xebb7ca82 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0x4c00eeb9 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xf78630d6 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x3e5619d4 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe5668f53 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xf4214fae nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x0add71b3 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x0eac25df pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8de31372 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9655f05d s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xc89047a9 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x47a7d558 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5877bc3e ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x64e785af st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6942f616 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7d6bd605 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb3c5cd83 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc92b1da4 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd7347369 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe5e70a07 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf152eeb0 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfb674850 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x16b711f6 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2da960b7 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6b47b329 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6d016cca st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6d44a337 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x711a6ba3 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x75cd3d4e st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7672cea1 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9a5087ee st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa1a03764 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa50c0582 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb0dcd87e st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb6e9a18e st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc5f981ec st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd71ba6f9 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd8a273ba st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdff93824 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeab1cc7b st21nfca_dep_init +EXPORT_SYMBOL drivers/ntb/ntb 0x03441012 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x1cb0233d ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x64d9fab7 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x81a2af5f ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xa2d4b3a9 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xb27593ce ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xb35b70ef __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xd2e526a5 ntb_unregister_device +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x50e0a8d4 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x64cdd216 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0xa1d6a623 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x05c00470 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x081cfe29 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x25414395 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x25d3e0b7 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x2e725301 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x3add3fa0 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x3b4139e5 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x3f278e38 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x40ee50dc parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x454f4c45 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x4d0a6429 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x520e8b2f parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x55774164 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x8818831e parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x8ce790f2 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x9099476e parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x94f631d5 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x9b9d8065 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xa66302f0 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xa77218b4 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xb1c95e7a parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xb4368f53 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xb55c0983 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xc8f046cd parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xca2f1559 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xe6234d4e parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xec7fafb3 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xed17b65f parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xf78af0fb parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xf7cf90bd parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xfc12892b parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xff0f414b parport_find_number +EXPORT_SYMBOL drivers/parport/parport_pc 0x54f31671 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x81d7e4d9 parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x12af03d6 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x14fd83bd __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x39f8f683 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x47c98a20 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x48d1827f pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x51454109 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5307c949 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x68a85b90 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x69f32f3f pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7afd90f8 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8d49adc2 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9cfd629f pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9dc2cce9 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa6eac161 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xab4b24b8 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc39a2898 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd636fc8d pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xef233fd8 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf5b6f45e pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1a98e8ed pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x496cad6b pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4d40e9a5 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5cb3e7ce pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6b7051ae pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6cf861e5 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x739ce4c7 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa3890567 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd1fe149f pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe03d7115 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfd1c583d pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x16b13892 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x8e03a441 pccard_static_ops +EXPORT_SYMBOL drivers/pps/pps_core 0x4bd4eb83 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x9412e6bd pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0x98cd8941 pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0xe2c3d78b pps_register_source +EXPORT_SYMBOL drivers/ptp/ptp 0x0e4d5583 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0x1a876aa3 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0x70e21732 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0x7db8f1e0 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x7e5ceaff ptp_clock_event +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0bf7a894 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2c4fa2bf rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7ae78853 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x80b4957a rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x98c90e93 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xac073059 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xaf9d11bb rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd07c887b rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xda09b86e rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xed8acbca rproc_report_crash +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x5d351fcf ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x2edd5d65 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x85df9676 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8da4c308 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9e84ee08 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0a42f3d3 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x14ebde88 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3541cd16 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x37f09aa3 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6a96ec58 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8631d1b5 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaa0a0e8e fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaac88217 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb43cf96d fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc21cbf4b fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc3ae77ff fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe2f265e9 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00bb7caa fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x044f4951 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x05da663e fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x07af7104 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11196106 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13153195 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13c074f4 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1524611e fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16e20dbe fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1792d096 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1b42a6a7 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e17f208 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x214dd828 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x24426e58 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26092131 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d3254d1 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3557fb0f fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42cc6cd6 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c621620 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5303afb0 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x56053a27 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5645af87 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x56bb7047 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ccc441b _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69be286e libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69f0cf29 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x718c8dc2 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x71921524 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x858d5f38 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8bf6a97c fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c525072 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9eb9e877 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa3899df0 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaa5d510a fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3078a56 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb69bd998 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf4c89d5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc06ea33d fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc17702ac fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6b45c40 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6d3368c fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcdcdccf2 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd6b14383 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xde991b45 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1204b40 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5699ea7 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe9ed0cbd fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed04236d fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfdf4b1d1 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfec4a6cf fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1f59955a sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x223f85a2 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x939ddf53 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd3668495 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 0x98b4290e mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x034844f2 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0a7d7eae osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x11188bd3 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1328f8d9 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1ade08f0 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1d258a69 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1e6ae93e osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2628b6e2 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x262c566e osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x29fd496c osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x329c75c5 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x36ce74b5 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3a0587e0 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x55ad40b2 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5fbbf55f osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x644fab04 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x66070179 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6c7bb95e osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x784a1b1f osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x78c1820f osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x79aac76c osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x870d77d2 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x96085a0b osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x99292628 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb48285f1 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb7b76a90 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd1be10d2 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd6eaf78d osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd7fb84c1 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xda96d10e osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdd400f5b osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdecc8f73 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe39c7f9c osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe5d27fd4 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xee16d1e2 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf7304edb osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/osd 0x2663b943 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x3255b609 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x44bc252c osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x6fb869d4 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xb8b22d26 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xce65c575 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2b28dc9c qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x37e07e43 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x466943ec qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4e6ea08c qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4f5f22e6 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x669622f7 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x76ff9950 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x880bfc00 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xac8630c4 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc08b3f1b qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe6a3d283 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfbab7109 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x37ba1eda qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x6c96996a qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x70130870 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb7663fa0 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xba7baae6 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xcc3a34ff 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 0x4aeac15d raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x7a5f7666 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x8a35d647 raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1c62de47 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x39c21e52 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x46291935 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4ef5bd51 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4f31227e fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6df0d64e scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8288fcdb scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9239ff43 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9375d377 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9fee037f fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc0873fe6 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc21fe5ef fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe59cb8fd fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x05467683 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x06d9d9a0 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x09d718ad sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x09edc7f0 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x12ce54d1 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1360e61a sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x142c8515 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1e92676a sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2b7ee897 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x346fb905 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3b89fa4d sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4803cef5 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5529e931 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x55c74477 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5f8a7e7d sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6b75231f sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x71c854b7 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x856f4f74 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8592714d sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x933fe3f9 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x999e4b84 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa002783a sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcb1a6c8a sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcb2d76c7 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcc8b6a50 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7d60d48 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdea4d48d sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfc59dc7e sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0e358f87 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3793e3ea spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x38ba2b58 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5354f250 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8ccce548 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3ca9ef15 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7d888056 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd387ee10 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xda1df68f srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x03b1062a ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x06829ecb ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x47212e62 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x570343c1 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x5c6c361b ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb71c8d4d ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf5b903af ufshcd_alloc_host +EXPORT_SYMBOL drivers/ssb/ssb 0x01be4dea ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x09c1e19c ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x0dd47ca1 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x1a125528 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x1e60902e ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x3861f185 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x38fdccdc __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x392c0871 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x591bea24 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x5a96d6bb ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x85354eae ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x864b8500 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xa4a94350 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xb1243c3d ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc56d0f7a ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xc71e7911 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xd8f7a0bc ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xe66b558e ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xe87c315b ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xe9581cf3 ssb_device_disable +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x099266eb fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1acba128 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2bc2f613 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2c42e776 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2d6d19eb fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x33d508c9 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x354a8c6e fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x38a168f9 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3c5457c2 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4cc3c527 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4d03add8 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x528e5703 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x74b1b065 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8c0451d7 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9a17a0dd fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9ceacf11 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9d9bb3ea fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa43a26f0 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa58792e3 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xae576456 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb403eb66 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbf4c009d fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc5a3c9f4 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xffe1323d fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x486c3ccd fwtty_port_get +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xeb88bee5 fwtty_port_put +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x8539da47 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 0x4226de4f cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xb9811f9e most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x01f798ec rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1d9cdb08 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1dd85d4e rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2217b6bb rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25b887c2 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x29ccf0a1 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x29dffa9b free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ab00a11 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e768a29 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ed1ce77 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32510fcd rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x36950325 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ce5cc03 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x425e6084 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x426242dc rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x499e92ad rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4aa0eb8e rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x524ad353 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54974007 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54ee3025 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x586fbae3 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x59f3bbfb rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6ca9de38 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x74a63bc8 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x77f20b75 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x78085150 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x79c071cc rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7bea4bb0 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7cd7d113 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7d8a62d6 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e2fb01c rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8462ed79 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x92c3f2eb rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9854b188 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x98cd0769 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x98e69b5b rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9c890964 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa3db0bd0 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa5653066 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa835059e rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb288b9ea rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb72ff806 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbea691a4 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc17eb954 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2985bab rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xca574458 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf05ecd4 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd31d4ced rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd7621c3f rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf1f03d7d HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x05db987a ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07d0a77b ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x091442d1 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e03ceae ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c27805e ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2609731e ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26577b42 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x34c71e94 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x366c311e ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x384aadef notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38e3dfa4 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3d732751 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e19d2d0 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x44ea34b9 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47844046 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4be90a6e ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x598881ab ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5eb12855 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f9de1eb ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63d84824 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6dc83370 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74281e52 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x75ed91eb ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77413f9b ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7eaabe74 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8228c96b ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x82ab1b5c ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x875f5e82 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8cc8d483 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8d2fd897 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8eba838b ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8f075b5b IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8f3c3d68 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x946a0ca2 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99b5f238 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9c41d71d ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6847536 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6e74370 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaa59dcf2 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xae84964c Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb03a46eb ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb16a7158 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb6a8c3f7 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb9af8e96 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc1163f52 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6b9ecc1 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc77779d8 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda59fbc0 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdac3142a ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe028e4b0 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe955c5e3 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf86f35c0 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff12f4f5 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x088b3f43 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x15b3168f iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3195cab3 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x35b26068 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x378051af iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x380dffa4 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x48935cbb iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x581fabc6 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6172fc40 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x64462fa2 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x69aa99a2 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x69d45b7c iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x79a53c76 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x87f1300e iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8fa47c1f iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x91186ea8 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9392b56a iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9b5fbfc1 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf7d4cab iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb5fbc492 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb903ade5 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcbeb8b7e iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe0d7fff6 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeb81c5dc iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf135a7c3 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf61d54a5 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf7896723 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfc9b033e iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/target_core_mod 0x01945f7e target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x03a86468 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x0576c15d target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x07f488e5 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a958dbd target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x0cb0f9cd target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e9edc01 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0fba4061 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x11d14d0c core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x1238f4ec target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x177e87f9 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x1cd300a1 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e4dffd4 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b53fd6c target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2d3efe68 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x310146ab transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x367d4495 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x3825d012 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3b3a0785 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x3e7093db transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x42baeb9b sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x498de145 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4b9c2a25 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x50ed7f31 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x517c4fbb transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x587ca0b4 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x59cf31b8 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x5d9dd9bc transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x673357a2 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x6bb856a4 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c8b999b target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x756bacc3 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x75ab0ef7 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x75be3213 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x7db6d42c target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x80d34046 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x835a6e37 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x858edc1c sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8dada8b3 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f01133b core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x9910a374 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b5f9fac transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6d563bb transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xa9be136d target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0c74329 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xb617b5af transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xb63588eb target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe792412 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc180d02f transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xce06b87e target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd050f061 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd08c398a target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xd1e624c2 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xd596c82b transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xd871a21a target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xdc827349 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf03695e core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0c0f614 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xe4b4875e target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xe4c53f50 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xe89545a0 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb014f09 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2f7d781 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xf4072fc1 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xf58321ff transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6e5e79e passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xf9579749 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc2bcc6e target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd05ba4e target_get_sess_cmd +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xa76dfad4 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 0xc86e0da7 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x09d23519 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x19db05d1 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x24f60803 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x27534e7e usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x39935a17 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5fd6d3a2 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6076bef5 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8431484c usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8a0ebb05 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb00f2701 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd34b4614 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdf0f6b0c usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7b9e3588 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xdd025a31 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 0x10e4c81d devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x246fa382 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x2cec197b devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x4ff77470 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 0x21ed80e3 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x39cf765f svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x58c71bee svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6adf13e7 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6fff5df2 svga_get_tilemax +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 0xda9dce96 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xee3c04ce svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x4edf35ba 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 0x0de3d766 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x28596775 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xd132718c matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2ff055df matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x44b4127f DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x90a3038a matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x91ed1af1 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x4e7d7d1a matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xa2d73991 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2db61e78 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8619077f matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x86fd58b2 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf9ec3e96 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x0cda024c matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x96943241 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x54d6aa05 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x55a8f2c0 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x88be7657 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe69d72bd matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xfddd99fa matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xa5407767 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 0x53b5f6f5 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x8ba01887 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xc43b634a w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xdf0da2ca w1_remove_master_device +EXPORT_SYMBOL fs/configfs/configfs 0x4b59f979 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x4bc90086 configfs_undepend_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 0x975ad299 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x9ab17786 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0xa27d7b37 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xae4069d4 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0xbe223808 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xd910665d configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0xe13c5ac8 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xeafa8672 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0xec7b685e configfs_unregister_default_group +EXPORT_SYMBOL fs/exofs/libore 0x1526d6da ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x345cff3b ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x5c5d2e01 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x643aa73d ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x7371c0e7 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x777e9f30 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x98c9488e extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xc2e2b185 ore_write +EXPORT_SYMBOL fs/exofs/libore 0xcb44505f ore_read +EXPORT_SYMBOL fs/exofs/libore 0xd920185f ore_get_rw_state +EXPORT_SYMBOL fs/fscache/fscache 0x066823f7 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x09e6ddbb fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x10085184 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x10378ca8 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x271e71d6 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2a5894f4 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x2e294672 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x38e668c7 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x3ce0b6e0 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x3fb2dab6 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x45f4aa42 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x46dd58fb __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x4d4f6ee4 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x5f5f6541 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x62b24cd8 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x685d59cc __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6d8030dd __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 0x78109b56 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x78189b65 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x7a1789a8 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x7b7978c4 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x7cc34cce fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x85e50560 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x878297b4 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x8a3ec5e3 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x8f040751 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x9b50a59a __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa85cc150 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xb186e475 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xb78ff9fa fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xbc976a6b fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xc13a6769 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xc3c67ce1 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xc90f4bde fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xceaac7ab fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xda5b886f __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xdafa124b __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xe16acefc fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe7922ff3 __fscache_unregister_netfs +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x4ed5d095 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x97ff2fd5 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa28f8df5 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xdda1def1 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf8d735bd 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 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 0x361adcfb 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 0xbe9cdb4c lc_seq_printf_stats +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 0x1cdb8b5c lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x225b8303 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x97ca6292 lowpan_netdev_setup +EXPORT_SYMBOL net/802/p8022 0x588bd296 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xdd2c5ea7 unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0x5e87628e destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0xfe0208ff make_8023_client +EXPORT_SYMBOL net/802/psnap 0x6b88b2f8 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x6bd992e2 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x046c2437 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x216f297c p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x2d944494 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x2ed9269a p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2f65abed p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3609474a p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x36ff8d58 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x37c3b6d6 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x397394c1 p9_client_getattr_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 0x490b0173 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x4ce53811 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x5036a283 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x53d58a07 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x59e46457 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x78fac11a p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x7afe9eed p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x87f73ff5 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x8990ae67 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x899d9d28 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x8b7a5f16 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x8db4248d p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x91b0dbae p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x923b5883 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x92896ba8 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x978184bc p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x9b434ccd p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x9b81edf5 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xa7cbf615 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xb1182e12 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xb137d387 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xb83f24f3 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xb8c5e05f p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xbd637325 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xbefde3cb p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc756cdeb p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xd1d7baf1 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xd28032e5 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd6e2c2b4 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xea9818b4 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xf4259876 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfb24e6b0 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x19f9c9d9 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x4f15bb02 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x7a061ba7 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xa50589ea alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x1d2d24cb atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x2e16d1f2 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x2ef0d6ec atm_charge +EXPORT_SYMBOL net/atm/atm 0x3f848157 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x485d514f vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x6f25548d register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x908e42fa atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xaa13f894 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xc0305f3c vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xd557ecb7 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xe9c49a21 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xea64bddc atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xf1da9dba atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x2c52f92d ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x3ff48f27 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x6fc21049 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x89d88890 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa1f4700d ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xaf07297e ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xde828a8b ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xfc3a2824 ax25_header_ops +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0bc159a1 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1653133d bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x16884410 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1796c90e hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c896a98 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x270e5f74 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d139c88 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x30ece284 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f831cab bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ffd94f8 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x43b598d5 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4fc58181 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5456632e bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5f063a8c bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5f095532 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x71f84b8e __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x758807b7 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7d3aca2b hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c84d8c7 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8d896249 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa234d915 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8c2bba6 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaefd0cd9 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf064beb l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb30bb7f4 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb51a694a hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb80752e1 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xba71d7b2 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbfec5345 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc0da69f2 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc14c6b96 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2b02487 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc57c6d1d hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd582711c hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd9bf2ec3 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xda5e005d hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdcede000 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe3026532 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xec6f5f8c bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xee9bad2c hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf0f81768 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bridge/bridge 0x903c3e67 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x655a3eae ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6fb91db1 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xccc1fca9 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 0x4ff94a5b 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 0x96d23b25 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x998156ab 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 0xd603ff08 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xe7e8da28 caif_connect_client +EXPORT_SYMBOL net/can/can 0x2a78662c can_rx_unregister +EXPORT_SYMBOL net/can/can 0x6cdf50ec can_proto_register +EXPORT_SYMBOL net/can/can 0x6de14db9 can_send +EXPORT_SYMBOL net/can/can 0xa8041cd9 can_ioctl +EXPORT_SYMBOL net/can/can 0xac5e28a8 can_rx_register +EXPORT_SYMBOL net/can/can 0xf892c70a can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x00a986df ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x0568cb5d ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x072018e3 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x0852b82b ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0b0b1f48 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x12f31ae6 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x14e2fd31 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x17c04e17 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x18a33c02 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x197f30e8 ceph_con_close +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 0x2735203c ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x285f191e osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x2d70ae74 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x311bf5fb ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x360a2fb6 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x37601026 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x37614fda ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3e4ed5be ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 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 0x4557b1cd ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4600355c osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x486856c2 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x49a5e058 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x4baced0c ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x4c0ba6a2 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x4db0c8ee __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x503ae3ef ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x52821c6d ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x538affdd ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x5452dbdc osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x55cb0ca2 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x56d729f7 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x578d748e ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5a32e568 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x5b1a6127 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x5f288a96 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6715b5bf ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x675e941d ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6d2bffb3 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x6dc3be2f ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x6efcf5e6 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x7a0bcb53 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x7c38c41c ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x7de78ff4 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7fbf00d1 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x84a9f5ed ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x882332bc osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x88bde0f4 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8c8da3ea ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x8d5201f0 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x914ba2aa ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x93137665 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x969f96af osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x9735f071 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x997012e3 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9ac40f97 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x9cc76e00 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x9d2a5472 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0x9f7c8122 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xa680fcf3 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xae69fba6 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xaeb6e798 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb2b96254 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xb3f35c16 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xb4748763 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb788fa37 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0xba08c918 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xbbebffac ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xbef469bb osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0xbfcab20e ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xc228aa90 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0xc3ab3b86 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc58fc229 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xc63d525e ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcaff33cf ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +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 0xda4a2e5f ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xdee8180a ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xebc2edff ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xec4353bc ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xee04c6b7 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf9fb14f8 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xfcf56dc5 ceph_osdc_writepages +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x2b63603e dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x6dfc2115 dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x26c0ed69 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2a05b265 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2b43dab0 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5ca6d017 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc4c5eda3 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe5ca8630 wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x694e081d gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xd6a04c87 fou_build_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3d9e3487 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x78c47408 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb2a6e500 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd2417ab8 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xdbe84d0b ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf976005f ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4fc38989 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x833bbd66 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xc6836ac3 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x16d43fb5 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x90d964d8 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x9191ce14 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x7cf1d0f6 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xa53a26cf xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x3d35bfee udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa97f9164 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb4eff01a ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc5666b66 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd2c4df11 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x518408d6 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x78c78550 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xbb7c4e98 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0xd68c6554 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xf123f69a xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x143f97f9 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x14e6a7e7 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x13409df1 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1b70b9ab ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2c497d8d ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x31a0ec1c ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x39b44416 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa33ac405 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe8794ad2 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf0433053 ircomm_flow_request +EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x03bc6588 irttp_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 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x1f7f2b6f irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x201352d3 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x224bcac9 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x294feaf3 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x3355fc47 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x3450398c alloc_irdadev +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 0x5642dcd6 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x5fc77e95 irlap_open +EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x709163ae async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x74c6334b irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7eb99278 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x80807c57 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x88575446 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x8f1009ce 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 0x98ba67a8 irttp_dup +EXPORT_SYMBOL net/irda/irda 0x9abd25c5 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xa2da5fb2 iriap_close +EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xb5a8c307 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 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 0xd2b3e280 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xd8bf4aa8 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xe6404060 iriap_open +EXPORT_SYMBOL net/irda/irda 0xe684b6d8 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf04d566b async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object +EXPORT_SYMBOL net/irda/irda 0xf1a9503f irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this +EXPORT_SYMBOL net/l2tp/l2tp_core 0x7c0c57eb l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x8c6c7081 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x259496be lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x59c498dc lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x6b913e6e lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x865cceb8 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x91ba78d8 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xd2f05a03 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xe39be03c lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xfa68f601 lapb_data_request +EXPORT_SYMBOL net/llc/llc 0x10bf0ef3 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x1dbbf618 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x4230a66c llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x4f0ac489 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x543a6818 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x6b71f1a6 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xe39f0331 llc_set_station_handler +EXPORT_SYMBOL net/mac80211/mac80211 0x04f88ff7 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x0679b825 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x09d40e41 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x0c56cd9d ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x1160d037 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x13a1b2a1 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x206e6d4d ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2ac987b4 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x2d1a3f3a ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x32cf6696 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3570e08f ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x35c702b1 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x39010b6a ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x392e1174 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3a68a2d0 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x3c6cbfd0 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x3cae5fa8 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x421e2cef __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x4935458d ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x4c239e22 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x4d438229 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x526762cb __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x531da818 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x56dcd7b1 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x5d84fecd ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x669a3c61 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x66ed1d66 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x6d9499c1 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x6dd2a2d2 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x729978bf ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x72a9a027 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x730cf80c rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7e2af79f ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x81cb9c5b ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x832f19af ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x836418bc ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x868d8413 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x87018a0a ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x8a265ccb ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x8e9aef53 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x8fb3179f ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x922c0ab3 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x969aa850 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x99e17468 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x9def7a2f __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9e40c63d ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x9f982e18 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xa73a924a ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xac6a90f0 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xadc9513f ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xaea69385 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xb070bb82 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xb0de7fdd ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xb1e2057c ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xb29cba9e ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xb74a9c74 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xbb32388a ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xc0852e62 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xc0bfd8fa ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xc42e22a1 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xc530de15 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xc583fd41 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xc6f39152 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xd0b908de ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xd1acd848 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd1ea9d8b __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xd2190ee5 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd91deaf9 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xdbecb228 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe33d6df0 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xe5fb40f0 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xea30f06b rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0xf1e1b3b1 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xf38787a3 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xf3d869cd ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xf841b36a ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xfbc92543 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xfed7d663 ieee80211_rts_get +EXPORT_SYMBOL net/mac802154/mac802154 0x0e9c212b ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x5a3306fe ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x71ea2827 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x776c01e8 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x8d3556a2 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xae71b626 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xbbb12db0 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xf66b0a12 ieee802154_free_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x06c172ce unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x071950be ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x20e11da5 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2bbfc9cf unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3280cefb ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3f060c11 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x45a24430 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5181889b register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7cb31fd6 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7d50cbf8 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x93bde62f ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd4c3e158 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd7b95a9d ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfb4c23b0 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x028de3dd nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x9d74d314 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xec67e469 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x2b482676 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x35afff68 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x547ff3f2 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x88e771a2 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xd111ffac nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0xeb13d59f nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/x_tables 0x205cd330 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x239e0b95 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x259b1b35 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x5fef99b8 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x91f98609 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x9614f600 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xa070b6e3 xt_register_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 0xb4bbb92c xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xdd98b2d0 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xf703b5ab xt_unregister_match +EXPORT_SYMBOL net/nfc/hci/hci 0x05e5199e nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x0a45b0cf nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x13bb469f nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x144af9a3 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x1fad79df nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x27cba239 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x316bd6dc nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x32b7c5bc nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x32e5b1d6 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x34de3ceb nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x4e50298d nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x54194fcb nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x558decde nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x67169b8c nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x7d6d8888 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x7f46d58a nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x8737bcc1 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x93e746f9 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xaaa6028a nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xaf0b69a2 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xd17333fc nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x0b7834c6 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x0c84fb3f nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x0e6e9a40 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x1dc3bada nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x24f08de8 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x2af89ea4 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x30e60036 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x398a6df6 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x3b06660e nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x4aa83f7b nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x5c195cd6 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x5d615e20 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x698a34e6 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x6e17b40e nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x7fb7c0e4 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x80dedcca nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x82ed5b85 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x8438f9b4 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x8a236e09 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x998d5d9f nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xa1386698 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xa2bbeab6 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xb4e51adc nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xb85762ea nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xcf640f3b nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xd7c25f0b nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf11065d2 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xff1c9587 nci_free_device +EXPORT_SYMBOL net/nfc/nfc 0x2a19765e nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x2e2daf70 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x327d6cf4 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x344f69fc nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x38813ed2 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x4df828b4 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x69887af9 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x794792c1 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x7a99f9e2 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x868435e2 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x8c4f3e97 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x8f2b8b1b nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x952a9156 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xa3365590 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xa4a3c65b nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xaa7c0c01 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xabdbdfd6 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xbba7d4a2 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xbf543a26 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xbfb68ec9 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xc7276a10 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xd81e9997 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xdf3b0686 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xed92d420 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc_digital 0x39a6b110 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x7ccf73d0 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x9053799d nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xbc2ce84d nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x17b23963 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x6fa6c3fb pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x7351a1ee phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x840d30b7 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x8996fb28 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x9f3c9719 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xc3820d69 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xd9379735 phonet_proto_unregister +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2b9d6472 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3ea43a8c rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3eb9f305 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x724519c4 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x76f59830 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x807ef9e7 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa4b9002b rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xaa6b39be rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbc3de5bc key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xcdab66a7 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd34e40a7 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd58997d7 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe1c89f1e rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe8b8f855 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xef8c0ec9 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/sctp/sctp 0xea3300ed sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x66b6b5ce gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x878cddbf gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb71bce69 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x1b5e2e94 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x83db097d svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x9ba0cfb8 xdr_restrict_buflen +EXPORT_SYMBOL net/wimax/wimax 0xe0907c2c wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0xf9354183 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x0336be28 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x06d9b5dd regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x06df077c cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x06e71db6 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0a3ebba4 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0c0d6a79 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x0ce589e5 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x0e80fb43 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1ac7fed4 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1c8cf16f ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x1f342145 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x21e68b53 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x223ac12b cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x279261ef cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x29b47b11 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x2a3c98b5 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x2abdefee cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2b0821bf cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x2e2c4d7f cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x2f5978fd cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x37202d4b cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x4686d33b cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4bccb4e3 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x511a3797 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x523e5253 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x55428d67 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x5c4fe5f1 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5c7085b8 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x5ed1e25a cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x5fa31a4e cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x63407f8b cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x66193d67 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x67b079c1 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a55aa4d cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x6a6893ae cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6dd0398a cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x6e9fda19 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x729c1dd0 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x73b4d996 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x799ac02d 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 0x83f1b753 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x861b4a5c cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x882d22b0 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x891b25ef wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8c0917ff regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x9120fc8c cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x9164e2b8 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x94b1dbed cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x991d9b98 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x9a35d1f7 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9f9c285d cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa01bcc57 cfg80211_reg_can_beacon_relax +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 0xa254dcac wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xa8a45216 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xab84b6a3 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xacb3c8cf cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xae3126d4 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xb4234489 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xb7248f0f cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb9d5d535 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xbca65677 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xc0b962b9 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xc2040845 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xc5a0a3bf cfg80211_mgmt_tx_status +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 0xcc2f619c regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xcf902d27 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd38fec3b cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xd96ac3f7 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc9e86b5 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xe3919935 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xe42211d4 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe6053dcd cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xea5d3260 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xeae410a4 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xeb4cbb16 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xefb93cb9 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf0933fc8 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xf27b92ac ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xf27c8ad4 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xf4f87236 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xf5168b1e cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xfe411260 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x0b08fdfc lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x434c1d74 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x553d9b19 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x654e9465 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xc72148bd lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xd069e8b0 lib80211_crypt_info_init +EXPORT_SYMBOL sound/ac97_bus 0xa10c5afa ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x51e7fecb snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x130c86d6 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 0x1f002382 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x22971481 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 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 0xac754548 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-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 0xa19baa41 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 0x2eb944b2 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x00a64696 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x058c4055 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x06fcdc57 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x0c050fe1 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x0d5fd6c5 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 0x1a71fa23 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x1a7c1f77 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x1aff167b snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x1d6c9010 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x20c5b96e snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x2356965b snd_card_file_remove +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 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3fe17124 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x40cba3fc snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x44a94e45 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4e268deb snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x5584a234 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x56788dc5 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x57dfbef8 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x590375c2 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x5924d4e6 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x5a2bbd2b snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x5bc0361d snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x5be39c60 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x60e14dbf snd_device_free +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x72881bc9 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x79a15882 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x8687b859 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x89a78c42 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x926ab9a7 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x9d20086a 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 0xae9103eb snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xc105feaa snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xc41a5956 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xc754acb6 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xcdd8ffe8 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xd1041ec3 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xd7f7071f snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xd8819567 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xd9beae5e snd_device_new +EXPORT_SYMBOL sound/core/snd 0xdaf7cfaf snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xdb57ec47 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xe3f26636 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xf1599812 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xf179df38 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xf3ac1ba9 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xfcc26702 snd_cards +EXPORT_SYMBOL sound/core/snd 0xfd7786fa snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xfeda09e3 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0x7e4ae696 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x02dcf034 snd_pcm_lib_preallocate_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 0x0ca2ddef snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x0d69a798 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x15cec504 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1d20f91b snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x2a9a3bf2 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x3730f7c5 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x38f9fa8e snd_pcm_lib_write +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 0x474181dc 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 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 0x6271b00d snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x64139d6c snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x6648fa86 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x6800c581 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x69421a09 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x6b79d6c7 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x7303a2ad snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x768b56b8 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x780e728c snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x7beac696 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x8251c80d snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x8cf2d71c snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x98d6ba1b snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x99a047c9 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x9f73c804 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0xa18d0b52 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xa430d6d0 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa8bd5c21 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xb4a39ee3 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xb4d18b9d snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbaf60339 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xc0482df8 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xc12a17ff snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xc18250f5 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xceadcc47 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xcf33086c snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xd3deb317 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xd717d47c snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xd99b185b snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xdd9bbe62 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe99a2bfd snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xf26d66ae snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xf4d40839 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xfaa5986a snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xfd64fc38 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xfdeb555d snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x16304294 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2d9075ad snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x33c8af9b snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3f632325 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4a4d7d1b snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5d12250c snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5dc0069b __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x612b9563 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6afcb2ca snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6f63ec53 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7646075c snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7b1b17a6 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8e832a65 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xac656037 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb948fd23 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbf56d8b2 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd1f01d46 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf30cbfa4 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfb51ae41 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-timer 0x1b297ff5 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x272ab97e snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x4ba6d253 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x52b32a54 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x98843c77 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xb5554e52 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xc3435446 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xc52088a4 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xcd0e9ec2 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xd6fcc098 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xebda6164 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xed7f7746 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xfd1ca6d3 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 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 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x50d4c656 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x51a43818 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x553bfa0f snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6c737ff1 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x727f8555 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x93f402a9 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbf508ef6 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc95532f0 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdff5403e snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x00a2f23b snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x18b0abee 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 0x7dea44a3 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8bc0fc41 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8c7ad76e snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8eb3dad7 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x93229a54 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd23aa2e5 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdac51b87 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x002e1c1d fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x00783a29 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x069b3f5a iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x16e431cb amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x222d38c9 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2291c72b fw_iso_resources_destroy +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 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 0x4b8899d4 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +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 0x6bb75aff amdtp_stream_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 0x78ae723e amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x850f2dd2 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8832c247 amdtp_stream_init +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 0xaf2c3184 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 0xc9ef47e0 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd3be232d cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd8290642 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe47ba511 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe577de85 amdtp_stream_start +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/i2c/other/snd-ak4113 0x2ee4328d snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xaa886764 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x05df675f snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x30ec952c snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3af250b5 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4aa31460 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb63b6639 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf1f5f596 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf5b64206 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf6f45f93 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x3637ca51 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x3fa72a90 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x6d89e4cd snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x84cf98fb snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xbf15cafb snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xe82f5804 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5e989d02 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x72541674 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x93f35004 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd9196827 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 0x1e50f3e2 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd120dfb8 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd15912c1 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe071dd14 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf12f80be snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf1415fbb snd_cs8427_iec958_pcm +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 0x133c3c4e snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1601eacf snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2986ea02 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4096b042 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x41f8038d snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x659e2d89 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8926c992 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa2d85667 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc20f09d8 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe3a2dffc snd_sbmixer_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x06af1541 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0b28d478 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2cd9210b snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3552040f snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3865b829 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7926fb29 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x88dbea08 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8ca3f73d snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x91a6ffd3 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x98ff0b4e snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa7e4319a snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb5cdee74 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb79a2762 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbeba4166 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcd855186 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd64e80aa snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf347dc43 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x428b3884 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x51c6ff31 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x81813a52 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8f803ef7 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc775acf8 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc8dac71a snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc96a7c11 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdc363083 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe89572f1 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x4ade6e1a snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x4e90210d snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc547ea3e snd_ice1712_akm4xxx_init +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 0x36ad7eaf oxygen_pci_remove +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 0x59712698 oxygen_pci_shutdown +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 0x6f8eeec4 oxygen_pci_probe +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 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 0xd12c9f79 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdfd88d2b oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe7a5e7c2 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfa25daa4 oxygen_write16 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x3bb4a16f snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4a0e3528 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc4320651 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xdf516d6b snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe886ad62 snd_trident_alloc_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x645d581f tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xcbdac0a1 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/snd-soc-core 0x7cc725f6 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 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xcfb1676f snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x0019d9d9 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x0041b723 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x00547505 generic_perform_write +EXPORT_SYMBOL vmlinux 0x00563895 clk_add_alias +EXPORT_SYMBOL vmlinux 0x006dfe6e mmc_detect_change +EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x00b96ffc i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00de8072 dquot_enable +EXPORT_SYMBOL vmlinux 0x00ece199 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x00f44354 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 +EXPORT_SYMBOL vmlinux 0x0135e3cd mpage_readpage +EXPORT_SYMBOL vmlinux 0x013ed34f eth_gro_receive +EXPORT_SYMBOL vmlinux 0x013fbfee __blk_run_queue +EXPORT_SYMBOL vmlinux 0x014210c6 misc_deregister +EXPORT_SYMBOL vmlinux 0x01537267 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x01733669 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x01960178 dev_get_stats +EXPORT_SYMBOL vmlinux 0x019ba6c9 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x01a9154c devm_gpio_free +EXPORT_SYMBOL vmlinux 0x0217f15f always_delete_dentry +EXPORT_SYMBOL vmlinux 0x0223b00d iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x02264270 search_binary_handler +EXPORT_SYMBOL vmlinux 0x0234e827 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x0248aefa __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x027102d1 inode_init_owner +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 0x02ab9c17 ppp_input +EXPORT_SYMBOL vmlinux 0x02acf7ec bio_put +EXPORT_SYMBOL vmlinux 0x02ad6891 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x02caeeeb xfrm_state_update +EXPORT_SYMBOL vmlinux 0x02cafef3 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x02d04386 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02fe599c security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x03042df0 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x032df960 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x034a2747 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x0353303e sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x035c4ad6 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x035d6056 input_close_device +EXPORT_SYMBOL vmlinux 0x036453d7 fb_get_mode +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x0371fa5f init_net +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03a3e38b nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x03c4e49a blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x03d8bfd8 mmc_erase +EXPORT_SYMBOL vmlinux 0x03dfb4bd iput +EXPORT_SYMBOL vmlinux 0x03f4d2f4 sync_filesystem +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x040463ca of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x04074f48 ioremap +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0437eb7f from_kprojid +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x045df9db mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x04630c31 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x04682914 vme_irq_free +EXPORT_SYMBOL vmlinux 0x0473c9de phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04913608 iget5_locked +EXPORT_SYMBOL vmlinux 0x04bf010d compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x04c34bad padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04ebcdd7 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x050b0187 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x050f0163 do_splice_direct +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x05588494 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x05596504 pci_iomap +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x056b2841 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x056fb43b tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x057b0768 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05d38ebc param_get_int +EXPORT_SYMBOL vmlinux 0x05ddc8fe gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x05e5b129 neigh_xmit +EXPORT_SYMBOL vmlinux 0x05e939de neigh_seq_start +EXPORT_SYMBOL vmlinux 0x05f83b0e kern_unmount +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06568cb4 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x065c2eb9 mach_qemu_e500 +EXPORT_SYMBOL vmlinux 0x06786d66 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x0682c748 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x069efb22 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x06b12e82 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x06d34ba2 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x06e602ed eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x06e95948 blk_run_queue +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0702df6e simple_rmdir +EXPORT_SYMBOL vmlinux 0x07063912 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x07193bbe icmp_send +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x0729f8f2 submit_bio +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x07384761 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x074f3626 md_flush_request +EXPORT_SYMBOL vmlinux 0x07507cfb iterate_dir +EXPORT_SYMBOL vmlinux 0x07576e8a serio_open +EXPORT_SYMBOL vmlinux 0x075d8ece genphy_read_status +EXPORT_SYMBOL vmlinux 0x0768a2ed textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x0771af8b of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x07a84e27 md_check_recovery +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x07c55d12 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07daf190 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x07fa52e7 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x080077d5 sock_from_file +EXPORT_SYMBOL vmlinux 0x082303ad scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x0825b69b netdev_update_features +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0864026a get_disk +EXPORT_SYMBOL vmlinux 0x086d8cdd irq_stat +EXPORT_SYMBOL vmlinux 0x08777d06 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x088837b5 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x0888a662 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x088ff237 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x08965de7 generic_listxattr +EXPORT_SYMBOL vmlinux 0x08ad7634 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x08aeaec9 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x08c45ac5 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x08c82cec twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x08da5d96 noop_llseek +EXPORT_SYMBOL vmlinux 0x08e33ad0 security_path_chmod +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08fa7da1 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x090b8600 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x097968a9 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x097d0271 open_check_o_direct +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09abc7cc jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c67afb flex_array_get +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09cc5f03 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09f7109b invalidate_bdev +EXPORT_SYMBOL vmlinux 0x0a21857b sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a401468 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x0a4368a2 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x0a520dd3 user_path_create +EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x0a722cee d_alloc +EXPORT_SYMBOL vmlinux 0x0a91f202 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ada900f dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b0f1a36 udplite_prot +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b1c0bc0 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x0b24c516 register_key_type +EXPORT_SYMBOL vmlinux 0x0b42614b remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x0b43ea7f irq_to_desc +EXPORT_SYMBOL vmlinux 0x0b44c13f textsearch_destroy +EXPORT_SYMBOL vmlinux 0x0b54ab21 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x0b55a8e3 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b8c4740 phy_attach +EXPORT_SYMBOL vmlinux 0x0b946825 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x0b9ab2a1 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x0bab877c jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc050b4 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd41811 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x0be6ad39 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x0bf82260 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x0c10356f pci_get_slot +EXPORT_SYMBOL vmlinux 0x0c152913 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c241b2c swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x0c313f08 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x0c410484 blkdev_put +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c520208 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x0c575463 uart_register_driver +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c5d1a87 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0d02e868 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x0d0a9cdf scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x0d2104bc path_nosuid +EXPORT_SYMBOL vmlinux 0x0d3be36f devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x0d3d8afd __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x0d4d12fe skb_pull +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6c963c copy_from_user +EXPORT_SYMBOL vmlinux 0x0d7bed4b framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x0d84e758 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da3280f simple_write_begin +EXPORT_SYMBOL vmlinux 0x0db9938e seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0dd1d48e tso_build_data +EXPORT_SYMBOL vmlinux 0x0dd537fa blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x0e0be113 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x0e0e0138 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x0e42e690 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x0e5c016b netif_device_attach +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e6f05f1 flow_cache_init +EXPORT_SYMBOL vmlinux 0x0e832654 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x0e87bb1b d_find_alias +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0e92b81f __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x0e9bacb7 netdev_crit +EXPORT_SYMBOL vmlinux 0x0ea0ac07 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x0ec06425 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ec7a427 blk_get_request +EXPORT_SYMBOL vmlinux 0x0eed99f4 try_module_get +EXPORT_SYMBOL vmlinux 0x0efc5991 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f1454a8 sock_no_listen +EXPORT_SYMBOL vmlinux 0x0f1e603e __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x0f46d51f sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f5dbe9b cdrom_open +EXPORT_SYMBOL vmlinux 0x0f5f1fd7 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f6f37a6 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x0f72bde8 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f81278c zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x0f829d82 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x0f87ab2e of_device_is_available +EXPORT_SYMBOL vmlinux 0x0f8bdc80 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x0f921759 rwsem_wake +EXPORT_SYMBOL vmlinux 0x0f946731 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x0fa231e4 misc_register +EXPORT_SYMBOL vmlinux 0x0fabe012 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0faf55b9 seq_release +EXPORT_SYMBOL vmlinux 0x0fb2a551 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fc8c32a input_event +EXPORT_SYMBOL vmlinux 0x0fe80c30 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x0fea413c kobject_del +EXPORT_SYMBOL vmlinux 0x0ff488fb qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x0ffee8ca get_task_io_context +EXPORT_SYMBOL vmlinux 0x101330d2 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x101687db __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x102cd7de mmc_remove_host +EXPORT_SYMBOL vmlinux 0x102ce97c filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x10689834 netif_napi_del +EXPORT_SYMBOL vmlinux 0x106baf97 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x1074ef69 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x1077cd81 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x107f723b commit_creds +EXPORT_SYMBOL vmlinux 0x108ff69e km_is_alive +EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x10b09d2c skb_copy +EXPORT_SYMBOL vmlinux 0x10c04465 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x11017333 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x11078a6f bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x114bea4d elevator_init +EXPORT_SYMBOL vmlinux 0x11594076 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x11603ad7 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x116deab5 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117a3519 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x11841f82 dev_addr_del +EXPORT_SYMBOL vmlinux 0x11890c03 dev_err +EXPORT_SYMBOL vmlinux 0x118fa30f copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11a101db d_instantiate +EXPORT_SYMBOL vmlinux 0x11a704cc sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x11bfa40c finish_no_open +EXPORT_SYMBOL vmlinux 0x11c1eae5 register_netdev +EXPORT_SYMBOL vmlinux 0x11ec4bbf compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11fbc7a9 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x122bc69f blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x1238dad8 pci_bus_get +EXPORT_SYMBOL vmlinux 0x123c81e5 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x12516781 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x1269946b scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x12735d66 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x12804d0f sock_recvmsg +EXPORT_SYMBOL vmlinux 0x1285379c dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12b63541 elevator_alloc +EXPORT_SYMBOL vmlinux 0x12c7f22e inode_needs_sync +EXPORT_SYMBOL vmlinux 0x12d1bcda register_netdevice +EXPORT_SYMBOL vmlinux 0x12d20c70 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x12da1c43 pci_domain_nr +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12ecd0cf nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x1309fc6c balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x13171ff3 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13215eac mem_section +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x132b2ff7 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x1336429e qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x139e8dfe pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x13a49be3 paca +EXPORT_SYMBOL vmlinux 0x13bda709 ll_rw_block +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d9fb9e mmc_release_host +EXPORT_SYMBOL vmlinux 0x13f0c30b of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x13f59159 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x14010ab4 vme_slot_num +EXPORT_SYMBOL vmlinux 0x14060e2d inet_accept +EXPORT_SYMBOL vmlinux 0x142ed492 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x14506060 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x14520249 vc_cons +EXPORT_SYMBOL vmlinux 0x145c7a93 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x14658c45 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x14a00da0 d_set_d_op +EXPORT_SYMBOL vmlinux 0x14a57300 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x14b316e5 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d0c0c4 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x14e6c709 input_register_device +EXPORT_SYMBOL vmlinux 0x15268dff sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x152eb798 clear_user_page +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x15512d9c skb_queue_purge +EXPORT_SYMBOL vmlinux 0x157029bd __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x1580aabd generic_ro_fops +EXPORT_SYMBOL vmlinux 0x15a2d1af scsi_print_sense_hdr +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 0x15e2d444 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x15f4fb5a d_obtain_root +EXPORT_SYMBOL vmlinux 0x16100fc9 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x16177728 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x161ea386 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x1625ab17 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x16323119 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x16401535 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x165d185a simple_transaction_get +EXPORT_SYMBOL vmlinux 0x166bdcc2 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x16a03124 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x16a6ec3b vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x16a75684 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x16d0bce1 lro_receive_skb +EXPORT_SYMBOL vmlinux 0x16d75ac5 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x16d9c875 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16f73020 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x171bd4d0 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x1743414f __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x1749e0e7 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x1753cfc0 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x1778297b fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x177c68ec of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x17815bfe iov_iter_npages +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17b708ad dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x17cfec84 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17ee35bc pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17fd3d17 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x180ddcc2 simple_fill_super +EXPORT_SYMBOL vmlinux 0x181cfa81 __seq_open_private +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x18457125 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x185149bf sock_register +EXPORT_SYMBOL vmlinux 0x1857aa39 proc_dointvec +EXPORT_SYMBOL vmlinux 0x185e78bc mmc_register_driver +EXPORT_SYMBOL vmlinux 0x1880a847 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x1884ce6e get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18a022f2 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x18af58ec netdev_warn +EXPORT_SYMBOL vmlinux 0x18c475d5 udp_poll +EXPORT_SYMBOL vmlinux 0x18d6d835 dma_find_channel +EXPORT_SYMBOL vmlinux 0x18e38d09 blk_finish_request +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18fee2b8 __module_get +EXPORT_SYMBOL vmlinux 0x19029918 netdev_state_change +EXPORT_SYMBOL vmlinux 0x190615ea dquot_release +EXPORT_SYMBOL vmlinux 0x19090400 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x19091248 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x1925e7a8 agp_free_memory +EXPORT_SYMBOL vmlinux 0x1933170e d_walk +EXPORT_SYMBOL vmlinux 0x1937127f xfrm_state_add +EXPORT_SYMBOL vmlinux 0x1946567a phy_start +EXPORT_SYMBOL vmlinux 0x194d0532 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x19794507 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x19856507 __free_pages +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 0x19bb9a9e vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19d21231 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x19d36e90 __get_user_pages +EXPORT_SYMBOL vmlinux 0x19def31b __ps2_command +EXPORT_SYMBOL vmlinux 0x19ead8ec skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x19f9024e mmc_can_discard +EXPORT_SYMBOL vmlinux 0x1a252e75 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x1a2da758 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x1a3b84a5 unregister_nls +EXPORT_SYMBOL vmlinux 0x1a501b68 vfs_mknod +EXPORT_SYMBOL vmlinux 0x1a50c6a1 is_nd_btt +EXPORT_SYMBOL vmlinux 0x1a67b325 tty_lock +EXPORT_SYMBOL vmlinux 0x1aa8914e generic_write_end +EXPORT_SYMBOL vmlinux 0x1abc20dc xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b1992ff key_validate +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b286052 bh_submit_read +EXPORT_SYMBOL vmlinux 0x1b3ca043 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x1b51af23 param_set_bool +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b6434d0 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x1b79a62f tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x1b7d4738 vc_resize +EXPORT_SYMBOL vmlinux 0x1b815306 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b95d4e9 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bbb6252 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bca2b59 load_fp_state +EXPORT_SYMBOL vmlinux 0x1be32e1a cdrom_release +EXPORT_SYMBOL vmlinux 0x1bf957f1 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x1bfe76f7 of_device_unregister +EXPORT_SYMBOL vmlinux 0x1bfec830 __iounmap_at +EXPORT_SYMBOL vmlinux 0x1c0004d1 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x1c14698c generic_fillattr +EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp +EXPORT_SYMBOL vmlinux 0x1c7a12df dm_register_target +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1cbe4084 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x1cd18244 file_update_time +EXPORT_SYMBOL vmlinux 0x1cd598b7 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d24e047 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x1d39f076 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x1d3b72b0 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x1d5b44ac devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x1d5f50f3 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x1d720239 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x1d7a7bba inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x1da18433 have_submounts +EXPORT_SYMBOL vmlinux 0x1dbc4d0c proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de3f8c6 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x1dff25fd kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x1e011ac5 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x1e01e387 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e119171 __dax_fault +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e28f892 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x1e3d8812 kobject_get +EXPORT_SYMBOL vmlinux 0x1e3fda1b blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x1e428da0 generic_removexattr +EXPORT_SYMBOL vmlinux 0x1e5441e2 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x1e5d8461 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x1e658f4a get_empty_filp +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e8ca76d ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x1e936544 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eabb38d prepare_creds +EXPORT_SYMBOL vmlinux 0x1eb6026a filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x1ebaa19a bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x1ebcaeb7 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x1ebe4a11 input_flush_device +EXPORT_SYMBOL vmlinux 0x1ebefc15 revalidate_disk +EXPORT_SYMBOL vmlinux 0x1ee19418 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x1f00259f padata_add_cpu +EXPORT_SYMBOL vmlinux 0x1f15f6cd _dev_info +EXPORT_SYMBOL vmlinux 0x1f24a12d __brelse +EXPORT_SYMBOL vmlinux 0x1f3fcdeb sock_no_accept +EXPORT_SYMBOL vmlinux 0x1f45b6f5 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f7075fb unload_nls +EXPORT_SYMBOL vmlinux 0x1fa64956 get_phy_device +EXPORT_SYMBOL vmlinux 0x1fb66d50 input_release_device +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fbdc8a3 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x1fcec9d8 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd1a36f blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x1fd96cf2 ip_options_compile +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 0x200e502c pci_restore_state +EXPORT_SYMBOL vmlinux 0x2030a1da serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x205410fa __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x205d8c7f abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x20695fe3 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x20769607 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x207dfce2 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x20971240 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x20978710 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20cc2f09 should_remove_suid +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20e61b3c compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x210d33b6 security_path_rmdir +EXPORT_SYMBOL vmlinux 0x211ac188 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x211f0292 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x2134988b xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x21731fe6 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x21766334 param_array_ops +EXPORT_SYMBOL vmlinux 0x21a4fbc4 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x21b62604 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x21d99c40 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x21dab96c dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x21f34917 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x2214dd44 nf_log_trace +EXPORT_SYMBOL vmlinux 0x2217eb76 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x223d2339 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x2253a23f pci_iomap_range +EXPORT_SYMBOL vmlinux 0x22551c13 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x22771ebe tcp_parse_options +EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember +EXPORT_SYMBOL vmlinux 0x22a62268 dev_driver_string +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22bace21 make_kuid +EXPORT_SYMBOL vmlinux 0x22f299b2 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x22f2a1af dma_pool_create +EXPORT_SYMBOL vmlinux 0x23005832 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x2307c4fc generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x231bb67c grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x23275a6f d_path +EXPORT_SYMBOL vmlinux 0x232eb09d neigh_table_clear +EXPORT_SYMBOL vmlinux 0x232edf36 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x234803d0 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x2348c309 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x236fbf84 clk_get +EXPORT_SYMBOL vmlinux 0x2387da0e dqget +EXPORT_SYMBOL vmlinux 0x23a2675f jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23ba7960 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x23bad4f8 __block_write_begin +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23fae370 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x23fdac73 pci_set_master +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +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 0x2468863e xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24980c99 register_console +EXPORT_SYMBOL vmlinux 0x24a1ed05 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x24b19545 kill_pid +EXPORT_SYMBOL vmlinux 0x24b40b84 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x24b8c354 __f_setown +EXPORT_SYMBOL vmlinux 0x24d6b4a6 cur_cpu_spec +EXPORT_SYMBOL vmlinux 0x24f00380 ida_init +EXPORT_SYMBOL vmlinux 0x24fcad57 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x2504c6ba scsi_scan_host +EXPORT_SYMBOL vmlinux 0x2518f0cd key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x25190ccc qdisc_list_add +EXPORT_SYMBOL vmlinux 0x251e23ec __register_chrdev +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x2580e358 kernel_bind +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x259c4ce3 skb_checksum +EXPORT_SYMBOL vmlinux 0x25c2ea89 touch_atime +EXPORT_SYMBOL vmlinux 0x25c809ae i2c_clients_command +EXPORT_SYMBOL vmlinux 0x25d9eda7 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25fabd1c of_node_put +EXPORT_SYMBOL vmlinux 0x2614988c ata_dev_printk +EXPORT_SYMBOL vmlinux 0x2617fe3e xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x262c0510 console_start +EXPORT_SYMBOL vmlinux 0x262f5a4d unregister_filesystem +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263f7403 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x2663b7d8 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update +EXPORT_SYMBOL vmlinux 0x266b4102 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x2672aa6a __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x267abba7 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x268cb88d get_task_exe_file +EXPORT_SYMBOL vmlinux 0x269ae107 seq_file_path +EXPORT_SYMBOL vmlinux 0x26b17cc6 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init +EXPORT_SYMBOL vmlinux 0x26c4f347 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x26e03c88 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x2708b4fc stop_tty +EXPORT_SYMBOL vmlinux 0x270be46e blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x273527b7 tso_count_descs +EXPORT_SYMBOL vmlinux 0x2744450a compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x2750c761 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x275be462 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x27646df3 start_thread +EXPORT_SYMBOL vmlinux 0x276be972 revert_creds +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 0x278894cd xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x278cbc9d of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x279735ea bdi_init +EXPORT_SYMBOL vmlinux 0x27a783de vmap +EXPORT_SYMBOL vmlinux 0x27b98bdb nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bf9d54 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x27c82154 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x27d305b6 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x280b2b19 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x2817d6d7 skb_clone +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x281a4b99 simple_write_end +EXPORT_SYMBOL vmlinux 0x2823992f mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x28355fec inc_nlink +EXPORT_SYMBOL vmlinux 0x28396385 lro_flush_all +EXPORT_SYMBOL vmlinux 0x284ba18c tty_unlock +EXPORT_SYMBOL vmlinux 0x284d9616 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x287ae031 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x287dccb8 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x2890c0cd sync_blockdev +EXPORT_SYMBOL vmlinux 0x2894b857 inet_addr_type +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 0x28d64d2c fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x28defdde neigh_event_ns +EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x28ea9305 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x28f0f7ea sock_kmalloc +EXPORT_SYMBOL vmlinux 0x290ee82c uart_resume_port +EXPORT_SYMBOL vmlinux 0x29223d22 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x2924d8b0 __generic_file_write_iter +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 0x29670be8 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x296d73b3 proc_set_user +EXPORT_SYMBOL vmlinux 0x29b2279e __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x29bb1de9 netdev_notice +EXPORT_SYMBOL vmlinux 0x29bb8367 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x29e52d1a call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x29f60bda neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x2a23468d bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x2a2b887c __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x2a2f3a46 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a30ef84 phy_disconnect +EXPORT_SYMBOL vmlinux 0x2a34b74e vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a57758b mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x2a582378 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x2a7fc916 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x2a8fa2ac __frontswap_store +EXPORT_SYMBOL vmlinux 0x2a92205b netlink_ack +EXPORT_SYMBOL vmlinux 0x2aa326c5 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ab44b5d netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x2ab4d86c tty_mutex +EXPORT_SYMBOL vmlinux 0x2ac21f3a simple_unlink +EXPORT_SYMBOL vmlinux 0x2ac52b94 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ae9fa1b buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x2b0af787 dev_alert +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b3320c4 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x2b407610 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x2b4991ec xmon +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2b9ffa85 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x2ba57a55 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bc6b09b follow_up +EXPORT_SYMBOL vmlinux 0x2bd50c47 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x2bdd6e28 node_states +EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed +EXPORT_SYMBOL vmlinux 0x2bf417ca pcie_get_mps +EXPORT_SYMBOL vmlinux 0x2c134395 param_ops_bool +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c270277 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x2c3cb25d xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x2c3cf9e3 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x2c6d6de1 from_kgid +EXPORT_SYMBOL vmlinux 0x2c7942b1 dst_release +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2c95b601 dst_alloc +EXPORT_SYMBOL vmlinux 0x2cdc22f6 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x2ce3c83d __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x2ce534c2 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x2cf222bc kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +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 0x2d62e501 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x2d6fe0f4 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x2d7ef7cc genphy_resume +EXPORT_SYMBOL vmlinux 0x2d87fae6 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x2d902874 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x2da3e7a0 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x2dadbb33 blk_register_region +EXPORT_SYMBOL vmlinux 0x2daee7ff msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0x2dd82a52 get_cached_acl +EXPORT_SYMBOL vmlinux 0x2ddfc780 mntget +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e14e1b4 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e55654a mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e621650 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x2e63a6de ip_getsockopt +EXPORT_SYMBOL vmlinux 0x2e6e3ec0 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x2e8cf736 mdiobus_write +EXPORT_SYMBOL vmlinux 0x2e9bdf0d release_sock +EXPORT_SYMBOL vmlinux 0x2eb47007 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x2eb5f2ac blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x2eb82e7c single_release +EXPORT_SYMBOL vmlinux 0x2ee46e50 page_symlink +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2ef93ac2 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x2f012c3d tcp_sendpage +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f201535 poll_initwait +EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user +EXPORT_SYMBOL vmlinux 0x2f419f8f mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2f6af633 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x2f9b61e0 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x2fb0e472 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fbceb0f input_set_abs_params +EXPORT_SYMBOL vmlinux 0x2fbe030c bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x2fc0742a mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x2fdc6167 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x2fdc676d get_thermal_instance +EXPORT_SYMBOL vmlinux 0x2fe24f7c tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x301207f3 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x30180fea sk_wait_data +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x30325f52 of_get_next_child +EXPORT_SYMBOL vmlinux 0x303a1c9b nf_log_packet +EXPORT_SYMBOL vmlinux 0x303aefe8 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x304638b2 generic_setlease +EXPORT_SYMBOL vmlinux 0x306be518 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x30835b47 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x3089ef25 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x3092362a lookup_one_len +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a4b9fc blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30c036ee udp_prot +EXPORT_SYMBOL vmlinux 0x30c72469 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x30da94a6 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x30ffd7c9 security_path_chown +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x31438c3e netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x316307fb vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x31745fb3 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x3182a8c0 tty_free_termios +EXPORT_SYMBOL vmlinux 0x31beffb6 kernel_write +EXPORT_SYMBOL vmlinux 0x31c4b488 nf_afinfo +EXPORT_SYMBOL vmlinux 0x31ca0638 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x31ed1319 to_ndd +EXPORT_SYMBOL vmlinux 0x31fa3329 __devm_request_region +EXPORT_SYMBOL vmlinux 0x3201c7c6 block_truncate_page +EXPORT_SYMBOL vmlinux 0x321ecfe6 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x32205ca8 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x322bb796 registered_fb +EXPORT_SYMBOL vmlinux 0x32369dd5 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x323a2cb6 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x32581ceb check_disk_size_change +EXPORT_SYMBOL vmlinux 0x326094a7 thaw_super +EXPORT_SYMBOL vmlinux 0x3286db91 dquot_destroy +EXPORT_SYMBOL vmlinux 0x328d50fc pci_clear_master +EXPORT_SYMBOL vmlinux 0x329d1d88 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x32a6396b xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x32b4d811 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x32bb85a7 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32fe96e0 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x33132cba linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x3326a94f con_is_bound +EXPORT_SYMBOL vmlinux 0x332ae65a tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x333ef4bb sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x335dd7e5 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x337bcd4e skb_tx_error +EXPORT_SYMBOL vmlinux 0x338d76e6 seq_lseek +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33cf8c40 udp_ioctl +EXPORT_SYMBOL vmlinux 0x33d675cc iov_iter_init +EXPORT_SYMBOL vmlinux 0x33d99b1b compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x340039c7 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x3429f4bf blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x34361a32 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x34392892 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x34675e98 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x3474adb1 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x3476ef98 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349faa8a tty_port_close +EXPORT_SYMBOL vmlinux 0x34a2c8e5 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x34d17d95 request_firmware +EXPORT_SYMBOL vmlinux 0x34d8af6c pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x34df1c45 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x34df413d tcp_conn_request +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f9bbba filemap_flush +EXPORT_SYMBOL vmlinux 0x34fec04b sk_free +EXPORT_SYMBOL vmlinux 0x3502162a request_key_async +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351b0511 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x35286569 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x352c7cec bdget_disk +EXPORT_SYMBOL vmlinux 0x3538ea4e pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x3543cb80 release_firmware +EXPORT_SYMBOL vmlinux 0x354455cb input_unregister_handler +EXPORT_SYMBOL vmlinux 0x354cd07d crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x3554ceeb mapping_tagged +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3570eda4 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35c30fdc find_lock_entry +EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 +EXPORT_SYMBOL vmlinux 0x35e633f4 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x35e9dbd4 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x35fa64b2 lwtunnel_output +EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy +EXPORT_SYMBOL vmlinux 0x361ba366 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x361ef718 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x3629eda4 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x36320b12 sync_inode +EXPORT_SYMBOL vmlinux 0x3643aa2a vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x365bd29c xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x366a37b3 blk_make_request +EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy +EXPORT_SYMBOL vmlinux 0x36814c6b update_devfreq +EXPORT_SYMBOL vmlinux 0x36818915 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x368d79eb dev_get_by_name +EXPORT_SYMBOL vmlinux 0x36936e8d unregister_cdrom +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36a4383f mmc_put_card +EXPORT_SYMBOL vmlinux 0x36a6b0dc sg_miter_stop +EXPORT_SYMBOL vmlinux 0x36acdc65 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36cf5e67 writeback_inodes_sb +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 0x3738e5af iterate_fd +EXPORT_SYMBOL vmlinux 0x37444c3f parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x375b2323 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x376ab914 dev_trans_start +EXPORT_SYMBOL vmlinux 0x379f33ee nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x37ab57c3 kmem_cache_alloc_bulk +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 0x37d5c566 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x37e1829a mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x37ecae50 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x37f4e42c phy_register_fixup +EXPORT_SYMBOL vmlinux 0x37fa4465 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x38056d28 proc_create_data +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3821013d jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x3839b522 phy_suspend +EXPORT_SYMBOL vmlinux 0x38491d61 dquot_get_state +EXPORT_SYMBOL vmlinux 0x38684956 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x38a3cda2 kfree_skb +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace +EXPORT_SYMBOL vmlinux 0x38d738ea dev_mc_init +EXPORT_SYMBOL vmlinux 0x38eaabdc mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x390e21c2 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x39203304 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x3932b794 alloc_file +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 0x3958a0c9 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x39732482 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x39768239 generic_file_open +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x399f7f2f of_phy_connect +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x39f9b36c wireless_send_event +EXPORT_SYMBOL vmlinux 0x3a32254d of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0x3a772f2d rtnl_create_link +EXPORT_SYMBOL vmlinux 0x3a819391 ps2_drain +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aaedb76 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x3ac8495b nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x3afbb644 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x3b15b358 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x3b166778 agp_bridge +EXPORT_SYMBOL vmlinux 0x3b365f55 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x3b400384 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x3b4cf8f0 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x3b4dd679 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b678171 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x3b695669 bmap +EXPORT_SYMBOL vmlinux 0x3b74ac81 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b88ff0d jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x3b92de3c tty_vhangup +EXPORT_SYMBOL vmlinux 0x3bac27ef bdget +EXPORT_SYMBOL vmlinux 0x3bf12ad5 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x3bfcfc89 inet_listen +EXPORT_SYMBOL vmlinux 0x3c0e286c vfs_statfs +EXPORT_SYMBOL vmlinux 0x3c115db4 __put_cred +EXPORT_SYMBOL vmlinux 0x3c3073f6 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c51c41c netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x3c54abc0 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x3c68bd5c arp_create +EXPORT_SYMBOL vmlinux 0x3c6e532d __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x3c78007c d_find_any_alias +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c8bc1d7 genphy_config_init +EXPORT_SYMBOL vmlinux 0x3cafaee1 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x3cb0c156 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce5f416 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x3d0377ae vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x3d22816f override_creds +EXPORT_SYMBOL vmlinux 0x3d402fbc migrate_page +EXPORT_SYMBOL vmlinux 0x3d456bca sk_receive_skb +EXPORT_SYMBOL vmlinux 0x3d5b2f23 kthread_bind +EXPORT_SYMBOL vmlinux 0x3d610a73 bdi_register +EXPORT_SYMBOL vmlinux 0x3d750d06 phy_find_first +EXPORT_SYMBOL vmlinux 0x3d86f0d1 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x3dc42c41 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x3dc6114e loop_register_transfer +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3df027de ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x3df6db4c blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dffd7bd rtnl_notify +EXPORT_SYMBOL vmlinux 0x3e661376 mipi_dsi_dcs_read +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 0x3eabb013 sock_create_lite +EXPORT_SYMBOL vmlinux 0x3eb028e9 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x3ebb10d3 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x3ec24dcf sock_no_bind +EXPORT_SYMBOL vmlinux 0x3eda4379 input_unregister_device +EXPORT_SYMBOL vmlinux 0x3ef4a04b input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x3ef91064 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f0ac5ea giveup_altivec +EXPORT_SYMBOL vmlinux 0x3f1e0e47 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f47d238 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x3f51f1d1 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x3f53de1b mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x3f6b685d mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x3f72a5de inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x3fb01eed nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x3fdb9b39 of_graph_parse_endpoint +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 0x4016ca98 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x40195223 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x40286c58 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x404c758a cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x404e262b pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x406237e8 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x4063ff6e fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x4072355d clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x407faa9c dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b948a6 netif_napi_add +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c123ae of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e05f86 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x40e6df69 __nla_reserve +EXPORT_SYMBOL vmlinux 0x40ebe9fa scmd_printk +EXPORT_SYMBOL vmlinux 0x410f2d97 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x411aea89 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x41313190 simple_link +EXPORT_SYMBOL vmlinux 0x414481a4 register_filesystem +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc +EXPORT_SYMBOL vmlinux 0x415bc738 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x4194e13b md_write_end +EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x41ae7c99 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x41b58a31 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41d856aa generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x41e9fd4d truncate_setsize +EXPORT_SYMBOL vmlinux 0x41f6f9ed sock_i_ino +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421b1d70 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x42280f50 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x423563e3 dev_warn +EXPORT_SYMBOL vmlinux 0x423d6d63 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424a4637 netdev_printk +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x425aae4e filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x4293565a scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x42960c35 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x42a1442b clocksource_unregister +EXPORT_SYMBOL vmlinux 0x42a19908 copy_to_iter +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42ace3dd phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x42bbec2f swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x42c1b0fe xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x42da8178 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x42eab861 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x42f519d4 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x42faef76 get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43187f87 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x43341557 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x434883fa netpoll_setup +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x43592534 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x43602766 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x437afecd kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x437d3f66 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x4380446e submit_bio_wait +EXPORT_SYMBOL vmlinux 0x43812ea2 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438a26a5 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43a78649 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x43c9b1ef phy_device_register +EXPORT_SYMBOL vmlinux 0x43ec8e7a scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43f983e4 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x440dd896 of_create_pci_dev +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x443ada4b phy_stop +EXPORT_SYMBOL vmlinux 0x4443ab39 __napi_complete +EXPORT_SYMBOL vmlinux 0x4443c778 __invalidate_device +EXPORT_SYMBOL vmlinux 0x444c9eab notify_change +EXPORT_SYMBOL vmlinux 0x445d7255 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x4464e5c8 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x44a6d352 kobject_put +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44b57199 vfs_getattr +EXPORT_SYMBOL vmlinux 0x44d4ee25 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x44d81e3b blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x44db05a3 neigh_for_each +EXPORT_SYMBOL vmlinux 0x44e45bd6 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x44f86b39 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x44fa6ad4 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x453cfc10 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x454b7eb2 of_clk_get +EXPORT_SYMBOL vmlinux 0x455db506 audit_log +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45a4b6f1 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45b07d83 vm_map_ram +EXPORT_SYMBOL vmlinux 0x45be4086 __bread_gfp +EXPORT_SYMBOL vmlinux 0x45d62899 seq_open_private +EXPORT_SYMBOL vmlinux 0x45d65288 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x45e04d34 d_genocide +EXPORT_SYMBOL vmlinux 0x45e84bb3 ___pskb_trim +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 0x46288631 try_to_release_page +EXPORT_SYMBOL vmlinux 0x463458ca tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x46440dea xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x46684b6a sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x46759c3c tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x469a4a1e drop_super +EXPORT_SYMBOL vmlinux 0x46a9042e forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x46af0695 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46dc1caf mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x46dd6df7 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x46f063c4 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x46f256e1 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x46f89e1b migrate_page_copy +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x470fe1f1 simple_rename +EXPORT_SYMBOL vmlinux 0x472822ab devm_iounmap +EXPORT_SYMBOL vmlinux 0x47313621 wake_up_process +EXPORT_SYMBOL vmlinux 0x4734e9f9 __neigh_create +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x475e02a5 fb_blank +EXPORT_SYMBOL vmlinux 0x475e9595 scsi_unregister +EXPORT_SYMBOL vmlinux 0x47608718 fence_init +EXPORT_SYMBOL vmlinux 0x4768910a input_free_device +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a99f9f nobh_write_end +EXPORT_SYMBOL vmlinux 0x47ac4f45 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x47dfdb60 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x47ecd160 key_put +EXPORT_SYMBOL vmlinux 0x47f20768 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x47f88c62 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x47fbf57d blk_fetch_request +EXPORT_SYMBOL vmlinux 0x481135ca scsi_ioctl +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x4836780a input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x48587e7f __alloc_skb +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x4864d75e nvm_get_blk +EXPORT_SYMBOL vmlinux 0x486c5777 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x488fbe2d __vfs_read +EXPORT_SYMBOL vmlinux 0x4897f0e3 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x48a2aa7e filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x48a771c5 cpu_core_map +EXPORT_SYMBOL vmlinux 0x48afb0b5 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c9a3bb dev_add_pack +EXPORT_SYMBOL vmlinux 0x48e72d35 of_get_pci_address +EXPORT_SYMBOL vmlinux 0x48f4d85a xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49329ae6 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x493e5bb2 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x494825b4 input_grab_device +EXPORT_SYMBOL vmlinux 0x494ce9c6 netdev_alert +EXPORT_SYMBOL vmlinux 0x4959ccfa irq_set_chip +EXPORT_SYMBOL vmlinux 0x495ae03a inet_reqsk_alloc +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 0x4970a0fe jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49cf808d mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x49d96918 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x49f31d38 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x49f7f24b read_cache_pages +EXPORT_SYMBOL vmlinux 0x49fd9f83 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x49ff1c19 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x4a1d0a21 phy_resume +EXPORT_SYMBOL vmlinux 0x4a439ad5 pci_find_capability +EXPORT_SYMBOL vmlinux 0x4a538a52 vme_lm_request +EXPORT_SYMBOL vmlinux 0x4a7acb47 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x4a7f95b2 dm_io +EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4a985db9 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x4aa70962 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4ac74f07 seq_escape +EXPORT_SYMBOL vmlinux 0x4aca83f9 unregister_console +EXPORT_SYMBOL vmlinux 0x4acb5907 tty_port_put +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ad1a2bf pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x4aef52d2 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b087795 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x4b127cc0 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x4b246f03 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x4b2c9218 complete_request_key +EXPORT_SYMBOL vmlinux 0x4b354f5b km_policy_expired +EXPORT_SYMBOL vmlinux 0x4b427944 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b7baa66 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove +EXPORT_SYMBOL vmlinux 0x4b9428ff pci_remove_bus +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bd8b58f i2c_master_recv +EXPORT_SYMBOL vmlinux 0x4be2a7c7 phy_device_create +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c185594 tso_start +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c34d004 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x4c3da159 netdev_change_features +EXPORT_SYMBOL vmlinux 0x4c4d6416 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x4c4f9614 account_page_redirty +EXPORT_SYMBOL vmlinux 0x4c659687 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x4c7dffbb skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x4c933dcc tcp_check_req +EXPORT_SYMBOL vmlinux 0x4ca24b10 skb_find_text +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4cb6f424 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ce66f28 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x4cf782f0 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x4d0429c6 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x4d0907da mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x4d0f36c2 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x4d13e01c mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x4d42d633 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x4d4c388b __get_user_pages_unlocked +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 0x4d8a2227 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9ef56c xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x4da1acd1 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x4da60687 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x4dd05ec4 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x4dd76942 inet_del_offload +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4de6501a devm_memremap +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df19929 sk_capable +EXPORT_SYMBOL vmlinux 0x4e2c9a5f iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x4e30fb65 dma_set_mask +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e4c2d8e of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e843fc2 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x4e9cd393 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum +EXPORT_SYMBOL vmlinux 0x4e9e5a00 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x4ec72a96 i2c_use_client +EXPORT_SYMBOL vmlinux 0x4ee2db2c input_get_keycode +EXPORT_SYMBOL vmlinux 0x4f09fadd dump_skip +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f278c49 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x4f29226a seq_puts +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f54cbfb set_nlink +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f82a19a nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x4f8e411d put_cmsg +EXPORT_SYMBOL vmlinux 0x4f9506b1 audit_log_start +EXPORT_SYMBOL vmlinux 0x4fa470fc ilookup5 +EXPORT_SYMBOL vmlinux 0x4fb3703f netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x4fcc0394 may_umount +EXPORT_SYMBOL vmlinux 0x4fdb6175 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x4fdb8bdb page_put_link +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4ff752c7 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x500213e3 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x50256108 simple_release_fs +EXPORT_SYMBOL vmlinux 0x5051ced7 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x508e96c3 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50bc0f62 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x50d224d7 noop_qdisc +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50e8afac send_sig +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 0x51395aea devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x513c8e0f kobject_set_name +EXPORT_SYMBOL vmlinux 0x51528e0e thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x5163c5a7 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x51779708 put_filp +EXPORT_SYMBOL vmlinux 0x517b0d2e __scsi_add_device +EXPORT_SYMBOL vmlinux 0x5182d9d5 machine_id +EXPORT_SYMBOL vmlinux 0x518efaf8 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x51a566ed set_anon_super +EXPORT_SYMBOL vmlinux 0x51bbc866 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x51dcf05b blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x51f3866c twl6040_power +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x523c1451 sock_no_connect +EXPORT_SYMBOL vmlinux 0x5273be0a devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x52797bfb blk_complete_request +EXPORT_SYMBOL vmlinux 0x527c9d05 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x527f9378 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x528349fc inet_csk_accept +EXPORT_SYMBOL vmlinux 0x528c7859 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x528c95aa __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52be6203 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x52ca0820 generic_show_options +EXPORT_SYMBOL vmlinux 0x52d7a5e8 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x52ea81fa genlmsg_put +EXPORT_SYMBOL vmlinux 0x52fa8d11 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x5311a1db register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x531f5b4c pci_iounmap +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x533764d9 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x533a672e skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x53665f36 pci_get_device +EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x538987c8 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x538a5da6 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x538fbee4 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x53937319 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x539c79fd jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x53a2c55d km_query +EXPORT_SYMBOL vmlinux 0x53dec40d param_get_short +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x53f859a0 of_get_parent +EXPORT_SYMBOL vmlinux 0x5408723b fput +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x54186fe9 md_integrity_register +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x542b4ad5 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5458ea30 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x545cfc1f bio_endio +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54aec451 inet_offloads +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54db9635 inet_frag_find +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x55080f45 register_framebuffer +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55215efb softnet_data +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5568c553 complete +EXPORT_SYMBOL vmlinux 0x556e4fa0 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x55751f6b open_exec +EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table +EXPORT_SYMBOL vmlinux 0x5579900b jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x557b7620 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x557c2368 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x558254b1 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x5590c89b blkdev_fsync +EXPORT_SYMBOL vmlinux 0x559fc2ec mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x55a280d3 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x55c5364b tcp_proc_register +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55d4879a skb_copy_bits +EXPORT_SYMBOL vmlinux 0x55dd595a ns_capable +EXPORT_SYMBOL vmlinux 0x5611e4bb pci_fixup_device +EXPORT_SYMBOL vmlinux 0x5612e666 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x561a4278 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5658c53a __mutex_init +EXPORT_SYMBOL vmlinux 0x565d2387 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x566c5479 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x5681da6d qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56a05be6 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56ed2245 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x56fbc8c2 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x5704413b simple_statfs +EXPORT_SYMBOL vmlinux 0x571529e9 km_report +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x574095d9 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x5740a223 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x57419025 kobject_init +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x574ff39a inode_set_bytes +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x5763c72d nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57748485 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x57749e42 vfs_writev +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x57ae095f decrementer_clockevent +EXPORT_SYMBOL vmlinux 0x57b5efd5 inode_change_ok +EXPORT_SYMBOL vmlinux 0x57b98671 nf_log_set +EXPORT_SYMBOL vmlinux 0x57caa68c devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x57e390d7 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x57e5547f gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x57fca34e security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x5813585e pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x5819b602 devm_ioremap +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583a2e2c eth_mac_addr +EXPORT_SYMBOL vmlinux 0x583e85fe km_state_expired +EXPORT_SYMBOL vmlinux 0x5846b55f __elv_add_request +EXPORT_SYMBOL vmlinux 0x584a377d blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x5861a5b5 param_ops_uint +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x588302ca nf_hook_slow +EXPORT_SYMBOL vmlinux 0x58a4ce47 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x58b52908 udp_seq_open +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c438fb jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58ebf76b __mdiobus_register +EXPORT_SYMBOL vmlinux 0x5915c48a devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x5921d291 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x5932b12d clkdev_drop +EXPORT_SYMBOL vmlinux 0x593b4542 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x5988e65d scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59a2301b nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59b4094f param_get_byte +EXPORT_SYMBOL vmlinux 0x59c120cc passthru_features_check +EXPORT_SYMBOL vmlinux 0x59e2988a napi_disable +EXPORT_SYMBOL vmlinux 0x59ed0d6d memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x59f73c4b tty_port_raise_dtr_rts +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 0x5a24f266 dma_direct_ops +EXPORT_SYMBOL vmlinux 0x5a2cda3e trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x5a4879f8 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x5a53f454 tty_set_operations +EXPORT_SYMBOL vmlinux 0x5a5db030 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9aeb20 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5aa0ee7f pci_dev_driver +EXPORT_SYMBOL vmlinux 0x5aaa230a uart_suspend_port +EXPORT_SYMBOL vmlinux 0x5accb52d dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x5af97b49 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x5afb4ece force_sig +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b035af3 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x5b0a6121 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x5b25dacc vga_con +EXPORT_SYMBOL vmlinux 0x5b3dcc6b dma_common_mmap +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b63aeda generic_readlink +EXPORT_SYMBOL vmlinux 0x5b6e514d inet_bind +EXPORT_SYMBOL vmlinux 0x5b71cb51 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x5b784b61 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x5b910735 __lock_buffer +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5b9ca0d7 tty_kref_put +EXPORT_SYMBOL vmlinux 0x5b9f89c9 of_match_node +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bf0267e skb_seq_read +EXPORT_SYMBOL vmlinux 0x5bf1102d __frontswap_test +EXPORT_SYMBOL vmlinux 0x5bfa2f11 pci_bus_type +EXPORT_SYMBOL vmlinux 0x5bfd9651 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x5c040b32 __bforget +EXPORT_SYMBOL vmlinux 0x5c1dcae2 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x5c2efe2e padata_alloc +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c7eee59 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x5c851065 param_ops_charp +EXPORT_SYMBOL vmlinux 0x5c89ed57 key_revoke +EXPORT_SYMBOL vmlinux 0x5c8ea077 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x5caed619 nobh_writepage +EXPORT_SYMBOL vmlinux 0x5cb7cbf0 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x5cbf6776 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5ce1c0b4 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x5cf30e10 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf972bf fb_find_mode +EXPORT_SYMBOL vmlinux 0x5d0e7383 kill_litter_super +EXPORT_SYMBOL vmlinux 0x5d24b254 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x5d262b15 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x5d3cfaa3 uart_match_port +EXPORT_SYMBOL vmlinux 0x5d40ee66 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x5d439b73 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x5d45c702 __page_symlink +EXPORT_SYMBOL vmlinux 0x5d4af781 rt6_lookup +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d566f85 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x5d58efa0 convert_ifc_address +EXPORT_SYMBOL vmlinux 0x5d72c1bb pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x5da36ad9 blk_queue_split +EXPORT_SYMBOL vmlinux 0x5da56749 param_get_string +EXPORT_SYMBOL vmlinux 0x5dc52466 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x5e15425b tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x5e21c55c md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e3d3447 dump_align +EXPORT_SYMBOL vmlinux 0x5e8cab92 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec09e54 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return +EXPORT_SYMBOL vmlinux 0x5ef1adb2 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x5ef28a48 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x5efdf921 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0d7636 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x5f0f930c jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x5f169ff2 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x5f2db78a max8925_reg_read +EXPORT_SYMBOL vmlinux 0x5f2eb6e1 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x5f434e81 release_pages +EXPORT_SYMBOL vmlinux 0x5f5720c7 inet_put_port +EXPORT_SYMBOL vmlinux 0x5f6d5055 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x5f7f8f44 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5f8f5091 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x5f92b010 block_read_full_page +EXPORT_SYMBOL vmlinux 0x5fa42278 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x5fbe1540 ata_print_version +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5ff34739 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x6005fc1c pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x60094ad9 eth_type_trans +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602768e7 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x60397fba __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x603b0926 md_update_sb +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6075fcc8 __find_get_block +EXPORT_SYMBOL vmlinux 0x607bc74e mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x607cebee __breadahead +EXPORT_SYMBOL vmlinux 0x60852232 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x60876408 agp_backend_release +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a37b7d sk_ns_capable +EXPORT_SYMBOL vmlinux 0x60ca68d1 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x60cb2939 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60ebd0d2 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x60eeb603 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x60f11992 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x610d9948 get_gendisk +EXPORT_SYMBOL vmlinux 0x611085ef __cleancache_invalidate_inode +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 0x612e00f5 module_refcount +EXPORT_SYMBOL vmlinux 0x613b29f0 seq_vprintf +EXPORT_SYMBOL vmlinux 0x613bd230 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x614995c2 key_type_keyring +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x615d3bbd tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x618d00ea iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x61947505 ip_defrag +EXPORT_SYMBOL vmlinux 0x619734dc ihold +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61a75122 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61ca2f81 netlink_unicast +EXPORT_SYMBOL vmlinux 0x61cf5ef5 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x61d931d2 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x61dcf24a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x620a87c2 __frontswap_load +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6218a3e3 __sb_end_write +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x62265c21 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6233b00b vfs_fsync +EXPORT_SYMBOL vmlinux 0x624aa39d init_task +EXPORT_SYMBOL vmlinux 0x624ca287 kset_register +EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss +EXPORT_SYMBOL vmlinux 0x626c3839 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x626d9936 d_make_root +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62816f8c xfrm_input +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62ade219 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x62d3e479 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x62e95aa9 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x630a5dc9 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x63396aec __debugger_break_match +EXPORT_SYMBOL vmlinux 0x633f6813 __quota_error +EXPORT_SYMBOL vmlinux 0x635722d0 dma_iommu_ops +EXPORT_SYMBOL vmlinux 0x635f036e tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x6379077c d_alloc_name +EXPORT_SYMBOL vmlinux 0x637e8a96 set_wb_congested +EXPORT_SYMBOL vmlinux 0x63876785 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x639b9cbf __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63bcbbaf secpath_dup +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d5a9c4 would_dump +EXPORT_SYMBOL vmlinux 0x63dab716 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63eec8ca of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64048ccd iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x640a7de0 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6422a4f4 backlight_device_register +EXPORT_SYMBOL vmlinux 0x6423807d mmc_add_host +EXPORT_SYMBOL vmlinux 0x645557da abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x6456adcc param_set_ullong +EXPORT_SYMBOL vmlinux 0x647c0b35 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x647c680e jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x6486df1e clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x64b1ef8c scsi_register +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64bff24d seq_read +EXPORT_SYMBOL vmlinux 0x64d49ef2 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x64ef4b23 inet6_offloads +EXPORT_SYMBOL vmlinux 0x650e11ae seq_dentry +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x65158bbd pcim_enable_device +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652731ac xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x6537a6ab tty_throttle +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6544cae7 arp_tbl +EXPORT_SYMBOL vmlinux 0x655c462b tcp_close +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x657c2bb4 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x6593e69d __register_binfmt +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65c087e1 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x65cb457d d_add_ci +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 0x663a41f6 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x665187ee register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x66754be3 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x6693af92 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x66a4a426 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x66af4d9b __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x66b7d7b2 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x66bd06db scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x66c8e0fa dm_get_device +EXPORT_SYMBOL vmlinux 0x66dc923e km_state_notify +EXPORT_SYMBOL vmlinux 0x6718a17e blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x67293ee8 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x672be4e4 module_layout +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6769fb44 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x6774bc02 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x67921feb agp_find_bridge +EXPORT_SYMBOL vmlinux 0x67a8aae7 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x67b0ed9f dentry_unhash +EXPORT_SYMBOL vmlinux 0x67b69bbe generic_write_checks +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c32ba2 __destroy_inode +EXPORT_SYMBOL vmlinux 0x68089580 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x6837cef5 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x68391d7d agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x686288c5 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x686eea97 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x687433e0 vme_irq_request +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x688dceba blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68bbdf4a tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x68ee5104 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x68f058da eth_header_cache +EXPORT_SYMBOL vmlinux 0x68f2750e scsi_execute +EXPORT_SYMBOL vmlinux 0x6901d474 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x69046887 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x69064467 fb_class +EXPORT_SYMBOL vmlinux 0x691d427a abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x692a6dc9 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x69314517 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x69413aff i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x695180f6 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x696d3e18 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x69783c8e pci_dev_put +EXPORT_SYMBOL vmlinux 0x698f175f phy_detach +EXPORT_SYMBOL vmlinux 0x6998f4f6 dump_truncate +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a340e9 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69caea3c tty_port_destroy +EXPORT_SYMBOL vmlinux 0x69d49014 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x69e07d93 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a1713db elv_rb_find +EXPORT_SYMBOL vmlinux 0x6a3e6ccb devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x6a5c378b down_write_trylock +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a86f4fb i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x6abd1e1f pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x6ac59a44 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x6ac62fd8 current_fs_time +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6afd2a7b pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b0a846d dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x6b117b4c scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b20a1ec datagram_poll +EXPORT_SYMBOL vmlinux 0x6b20a65e ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b31888f cad_pid +EXPORT_SYMBOL vmlinux 0x6b340779 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x6b3b8906 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x6b404879 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x6b42de5d uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x6b5dbd9b dev_notice +EXPORT_SYMBOL vmlinux 0x6b5dfe73 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free +EXPORT_SYMBOL vmlinux 0x6b95042a md_reload_sb +EXPORT_SYMBOL vmlinux 0x6b9e17ac nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x6ba6e290 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x6bb14d0c key_task_permission +EXPORT_SYMBOL vmlinux 0x6bc2425c textsearch_prepare +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc53659 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c0fb708 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x6c2f9e41 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c537bcc set_page_dirty +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c7b8c21 kern_path +EXPORT_SYMBOL vmlinux 0x6c80ff69 scsi_device_put +EXPORT_SYMBOL vmlinux 0x6c8ec6d4 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear +EXPORT_SYMBOL vmlinux 0x6cc7207f udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x6cc880a1 kill_anon_super +EXPORT_SYMBOL vmlinux 0x6cd2da56 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x6cd3db04 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x6cea0ae2 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x6cf920ec d_prune_aliases +EXPORT_SYMBOL vmlinux 0x6cff7d62 napi_complete_done +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d117593 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d29ed77 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x6d655d46 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put +EXPORT_SYMBOL vmlinux 0x6d7c3935 dev_addr_add +EXPORT_SYMBOL vmlinux 0x6d990f3f security_inode_readlink +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6dab671e blk_end_request +EXPORT_SYMBOL vmlinux 0x6dbb992b __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x6dde735c agp_create_memory +EXPORT_SYMBOL vmlinux 0x6de174ec mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x6de9e1f1 serio_reconnect +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df61d36 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x6e43b4d4 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x6e56eaf3 del_gendisk +EXPORT_SYMBOL vmlinux 0x6e601a20 scsi_print_command +EXPORT_SYMBOL vmlinux 0x6e6dfcfd blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e81475c blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x6e907763 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6e9fc18c skb_clone_sk +EXPORT_SYMBOL vmlinux 0x6ea6fb71 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x6ead63ca __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x6ee174b1 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x6ef168fb account_page_dirtied +EXPORT_SYMBOL vmlinux 0x6effae2f mark_info_dirty +EXPORT_SYMBOL vmlinux 0x6f019a31 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x6f0d20a6 check_disk_change +EXPORT_SYMBOL vmlinux 0x6f12e316 single_open_size +EXPORT_SYMBOL vmlinux 0x6f1d6eca downgrade_write +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f3046e0 dst_discard_out +EXPORT_SYMBOL vmlinux 0x6f4493bc nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x6f52fb95 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x6f53452a d_splice_alias +EXPORT_SYMBOL vmlinux 0x6f5fb32b of_phy_attach +EXPORT_SYMBOL vmlinux 0x6f6e411e register_md_personality +EXPORT_SYMBOL vmlinux 0x6f791f54 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x6f7ef5a1 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f8a85f0 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x6f98b2ea vme_dma_request +EXPORT_SYMBOL vmlinux 0x6fa5d70d netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fc2e35a phy_init_eee +EXPORT_SYMBOL vmlinux 0x6fc36d39 ipv4_specific +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fddef92 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x6ff25e2e ppp_input_error +EXPORT_SYMBOL vmlinux 0x6ffc1362 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x701f883a lookup_bdev +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x70577ee0 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x70595cf5 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x706b5db3 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x706c24ce mount_ns +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x709b8402 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x70c967af tcp_prot +EXPORT_SYMBOL vmlinux 0x70e09f81 start_tty +EXPORT_SYMBOL vmlinux 0x70e26eb9 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x711215f9 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x71154e08 param_ops_long +EXPORT_SYMBOL vmlinux 0x7117338d tty_do_resize +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7155c3cb sock_create +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7195ca4d devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x7195d84c blk_init_tags +EXPORT_SYMBOL vmlinux 0x71965468 mmc_start_req +EXPORT_SYMBOL vmlinux 0x71a0f269 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71a8b0e7 tty_register_driver +EXPORT_SYMBOL vmlinux 0x71b0ff3b i2c_release_client +EXPORT_SYMBOL vmlinux 0x71b8b08e of_device_register +EXPORT_SYMBOL vmlinux 0x722438cc vfs_setpos +EXPORT_SYMBOL vmlinux 0x72300b5e of_n_size_cells +EXPORT_SYMBOL vmlinux 0x7231950c jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x725154ba sk_common_release +EXPORT_SYMBOL vmlinux 0x725fa9a2 security_path_link +EXPORT_SYMBOL vmlinux 0x726f3507 noop_fsync +EXPORT_SYMBOL vmlinux 0x726f5e0b vfs_iter_write +EXPORT_SYMBOL vmlinux 0x727146d4 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x728f956e ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x72a1380a dev_get_by_index +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x72c18d03 dput +EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 +EXPORT_SYMBOL vmlinux 0x72d327e9 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x72d4c23c fsl_get_sys_freq +EXPORT_SYMBOL vmlinux 0x72e11326 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72ee2e77 tty_register_device +EXPORT_SYMBOL vmlinux 0x72f1e28f phy_print_status +EXPORT_SYMBOL vmlinux 0x72f28d61 posix_test_lock +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base +EXPORT_SYMBOL vmlinux 0x73394c16 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x733b2383 next_tlbcam_idx +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x735feed0 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x736905b0 msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x738209d3 sys_copyarea +EXPORT_SYMBOL vmlinux 0x73863d4e mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x738e9bce find_get_entry +EXPORT_SYMBOL vmlinux 0x7393039e tcf_action_exec +EXPORT_SYMBOL vmlinux 0x73a4db66 soft_cursor +EXPORT_SYMBOL vmlinux 0x73b07967 user_revoke +EXPORT_SYMBOL vmlinux 0x73bd6c5b seq_write +EXPORT_SYMBOL vmlinux 0x73d08c09 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x73d946fa bitmap_unplug +EXPORT_SYMBOL vmlinux 0x7409ae25 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7430e6ba eth_validate_addr +EXPORT_SYMBOL vmlinux 0x743aff28 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7478d29e of_get_address +EXPORT_SYMBOL vmlinux 0x747963b5 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74bf97ab serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x74c0c539 mem_map +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74ca1230 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74ffe409 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x7503b491 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x75113d2b param_set_long +EXPORT_SYMBOL vmlinux 0x7520d201 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x7593a372 scsi_print_result +EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x75a7db80 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75be6702 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x7604bd88 __d_drop +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x761a3d5e of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x7656c77a proc_remove +EXPORT_SYMBOL vmlinux 0x765711e3 sk_stream_error +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x7691da90 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x7693d013 __pagevec_release +EXPORT_SYMBOL vmlinux 0x76960bc2 cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x76b720cd ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76ec4fff alloc_fcdev +EXPORT_SYMBOL vmlinux 0x7705641e get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x77158f22 prepare_binprm +EXPORT_SYMBOL vmlinux 0x77175c14 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x771de703 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x773051cd max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x7739c087 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77694189 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x77857ac3 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77a0d3a2 put_io_context +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c459f1 dev_crit +EXPORT_SYMBOL vmlinux 0x77e13f62 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x78102fce skb_store_bits +EXPORT_SYMBOL vmlinux 0x782d557c dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x7832af8f mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x784947d4 bioset_create +EXPORT_SYMBOL vmlinux 0x785aa3bf __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x785b106a inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x786a43fc ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78afc491 simple_setattr +EXPORT_SYMBOL vmlinux 0x78cd8bf0 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x790ada97 security_path_truncate +EXPORT_SYMBOL vmlinux 0x790bb1b8 bd_set_size +EXPORT_SYMBOL vmlinux 0x792ce687 cont_write_begin +EXPORT_SYMBOL vmlinux 0x7944d408 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x794fb9d1 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x797ee8f6 eth_header_parse +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x79871473 consume_skb +EXPORT_SYMBOL vmlinux 0x79981063 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x799faea6 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79cde588 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x79d3eaa7 inet_ioctl +EXPORT_SYMBOL vmlinux 0x79d5be07 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x79d6a0da skb_unlink +EXPORT_SYMBOL vmlinux 0x79d9c3b2 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x79e31070 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x79f2feec netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x7a16a3b4 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x7a1a82a5 block_write_begin +EXPORT_SYMBOL vmlinux 0x7a2e8774 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x7a2ed9fb mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a873810 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x7a896630 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x7a8ee62f tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aad5a75 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x7ab727f3 filemap_fault +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7aba807a agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x7abaccf5 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x7abbc8b4 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x7abd178f vfs_link +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7add6243 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x7af7118c __netif_schedule +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b46597b lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x7b613ac0 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x7b67dcd9 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x7b816a17 poll_freewait +EXPORT_SYMBOL vmlinux 0x7b866f67 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x7ba3ec8a tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x7bb3c94d md_cluster_ops +EXPORT_SYMBOL vmlinux 0x7bb756cc neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1eb807 neigh_update +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c30c0ca sys_imageblit +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c48d623 copy_from_iter +EXPORT_SYMBOL vmlinux 0x7c550782 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c648313 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x7c6d7fed register_sysctl +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 0x7ca3d75b dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x7cc3e472 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x7cc40137 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x7cc4ae5c sock_wake_async +EXPORT_SYMBOL vmlinux 0x7cd3a6b8 dev_load +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d15c247 inet6_getname +EXPORT_SYMBOL vmlinux 0x7d58a302 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x7d658e92 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x7d6dc63a security_mmap_file +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d79fbdf ppp_dev_name +EXPORT_SYMBOL vmlinux 0x7d7a5008 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x7d80e60a pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x7da1eaa0 udp_add_offload +EXPORT_SYMBOL vmlinux 0x7daa4e4d i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x7de5d383 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfd0d0b tcp_connect +EXPORT_SYMBOL vmlinux 0x7e0ae545 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x7e34b9fd generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x7e4149c7 nf_log_register +EXPORT_SYMBOL vmlinux 0x7e530e35 kernel_listen +EXPORT_SYMBOL vmlinux 0x7e84b4d5 inet_release +EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress +EXPORT_SYMBOL vmlinux 0x7e8f1419 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x7e9fb0e9 sg_miter_next +EXPORT_SYMBOL vmlinux 0x7ea621e4 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x7eba1519 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +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 0x7f356143 devm_request_resource +EXPORT_SYMBOL vmlinux 0x7f37d027 freeze_bdev +EXPORT_SYMBOL vmlinux 0x7f579295 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f6d4d81 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x7f6dc198 skb_pad +EXPORT_SYMBOL vmlinux 0x7f7df12f skb_copy_expand +EXPORT_SYMBOL vmlinux 0x7f99cc32 block_write_full_page +EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7fd34ad1 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x7fde3303 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x7fe10b92 pci_get_class +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x7ff2edf5 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x7ff5b509 vme_register_driver +EXPORT_SYMBOL vmlinux 0x7ffc8214 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x802a30fe max8925_reg_write +EXPORT_SYMBOL vmlinux 0x802a3733 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x80697b59 nf_register_hooks +EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x8088540c __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x808ffe1a ps2_init +EXPORT_SYMBOL vmlinux 0x80a22946 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x80a3c2e6 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80da21ff input_allocate_device +EXPORT_SYMBOL vmlinux 0x81040436 make_bad_inode +EXPORT_SYMBOL vmlinux 0x810d1c04 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x8110562d copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x811ceb41 update_region +EXPORT_SYMBOL vmlinux 0x811d4feb i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x81287239 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x8148edc0 pcim_iounmap_regions +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 0x8171a0f2 filp_open +EXPORT_SYMBOL vmlinux 0x817dc5e4 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81ad572a mutex_trylock +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81fabe9b scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x81fc2aa9 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x8215dff3 netdev_err +EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback +EXPORT_SYMBOL vmlinux 0x8235b5e0 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x824bf6ac up_write +EXPORT_SYMBOL vmlinux 0x8259c00e xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x827ff611 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x8281babf i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82b1b756 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x82b3dba0 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x82cdec3b generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x8300bce3 block_commit_write +EXPORT_SYMBOL vmlinux 0x8307d581 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x8328292e init_special_inode +EXPORT_SYMBOL vmlinux 0x83293d22 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x83441881 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x834a9e60 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x834fa852 scsi_init_io +EXPORT_SYMBOL vmlinux 0x83640b60 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x836a5042 serio_close +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83be00a3 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83cb618f dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x83da0c6f sock_no_getname +EXPORT_SYMBOL vmlinux 0x83df1161 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x83fa29ae module_put +EXPORT_SYMBOL vmlinux 0x83fb4848 of_device_alloc +EXPORT_SYMBOL vmlinux 0x84088e65 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x840a95db xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x84169a41 unregister_netdev +EXPORT_SYMBOL vmlinux 0x84286fc5 touch_buffer +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x844e7ed7 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x844fd417 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x8468f52d __get_page_tail +EXPORT_SYMBOL vmlinux 0x847866a2 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x849fe807 csum_and_copy_from_user +EXPORT_SYMBOL vmlinux 0x84ba728d ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84c79606 elv_rb_add +EXPORT_SYMBOL vmlinux 0x84cf94b4 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x85057c58 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x850a7c6f pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x85177e32 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x85266406 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x852afaaf dev_close +EXPORT_SYMBOL vmlinux 0x8554a1ec locks_init_lock +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x857d29a9 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x85ae6052 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85cc67f4 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x86096986 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x8612eab5 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x862f7a72 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865bfea6 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x86604224 proc_set_size +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86907f5d dquot_commit +EXPORT_SYMBOL vmlinux 0x869d3aa4 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86af1573 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x86b0e339 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x86b962e6 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x86c69764 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x86caf742 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x86f848f3 read_dev_sector +EXPORT_SYMBOL vmlinux 0x86fb5bae pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8717d1f5 of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x872e2077 sk_alloc +EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 +EXPORT_SYMBOL vmlinux 0x874f6d2d scsi_add_device +EXPORT_SYMBOL vmlinux 0x87660f25 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x87699e50 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x8777566d genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x877b02fb xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x877edf01 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x8781f454 netdev_features_change +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87b3afa2 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x87e20fee xfrm_register_type +EXPORT_SYMBOL vmlinux 0x8801ea3c devm_free_irq +EXPORT_SYMBOL vmlinux 0x88052a0b pci_select_bars +EXPORT_SYMBOL vmlinux 0x880f3d74 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x88145c0a serio_rescan +EXPORT_SYMBOL vmlinux 0x882db37f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x8843625f __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x884d2d3c agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8882efcb blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x88896eb0 fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x88a3581c simple_empty +EXPORT_SYMBOL vmlinux 0x88a62b5b abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x88b2d61c lock_sock_nested +EXPORT_SYMBOL vmlinux 0x88bbe329 security_file_permission +EXPORT_SYMBOL vmlinux 0x88e994f8 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x88eadad1 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x89000d61 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x890087d4 param_set_copystring +EXPORT_SYMBOL vmlinux 0x89073897 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x890ae43a gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x8912b713 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x892948ad iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x892de3fb __nla_put +EXPORT_SYMBOL vmlinux 0x894ea5cc pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x895108f3 proc_dostring +EXPORT_SYMBOL vmlinux 0x8962c165 component_match_add +EXPORT_SYMBOL vmlinux 0x896e7711 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x89a3b3e8 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89b3071b pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x89d21e98 blk_peek_request +EXPORT_SYMBOL vmlinux 0x89d25135 param_get_charp +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x8a0a6573 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4a2207 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a5319a2 put_page +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a7def8b __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x8a97a596 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa1ee27 param_ops_bint +EXPORT_SYMBOL vmlinux 0x8aa3d527 unlock_buffer +EXPORT_SYMBOL vmlinux 0x8ab9e39b write_one_page +EXPORT_SYMBOL vmlinux 0x8adc8dd8 dev_deactivate +EXPORT_SYMBOL vmlinux 0x8ae2ec5c mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x8af079c9 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x8b17a714 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b3ea8ee inet_frags_init +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b67b237 end_page_writeback +EXPORT_SYMBOL vmlinux 0x8b67d8a7 of_node_get +EXPORT_SYMBOL vmlinux 0x8b718a24 key_unlink +EXPORT_SYMBOL vmlinux 0x8b791b25 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b846988 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x8b8521ba scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x8b8a0d44 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x8ba1d505 __scm_destroy +EXPORT_SYMBOL vmlinux 0x8badf514 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x8baf3116 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x8bc84cb4 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x8bcdf0e5 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x8bce5052 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x8bdacd90 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0x8bfe6d99 nonseekable_open +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c2c05e3 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c75951b nvm_put_blk +EXPORT_SYMBOL vmlinux 0x8c9923f0 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x8caad830 __inet_hash +EXPORT_SYMBOL vmlinux 0x8cbcc34c of_get_next_parent +EXPORT_SYMBOL vmlinux 0x8cc2a560 cap_mmap_file +EXPORT_SYMBOL vmlinux 0x8cc397dc napi_gro_frags +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8ccec06f netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x8ccf8317 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x8ce3f2c2 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x8ceafe92 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x8ceda48f rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x8d088a3a qdisc_list_del +EXPORT_SYMBOL vmlinux 0x8d1180cb xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x8d272769 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x8d46557c get_unmapped_area +EXPORT_SYMBOL vmlinux 0x8d476b2e dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d59121b nvm_register +EXPORT_SYMBOL vmlinux 0x8d6d326b xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x8d7083a2 vfs_write +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d83a1eb mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x8d8b4b28 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x8d944cbb copy_in_user +EXPORT_SYMBOL vmlinux 0x8d9efa2e scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x8dadcc6a gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x8dbc3c73 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x8dbffcab scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x8dc29cd9 padata_free +EXPORT_SYMBOL vmlinux 0x8dc32969 do_SAK +EXPORT_SYMBOL vmlinux 0x8dcf2812 blkdev_get +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8de132e7 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x8de8b27e sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8dfe1cc5 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x8e07daa4 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x8e223a98 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x8e33a5fc inet6_bind +EXPORT_SYMBOL vmlinux 0x8e382ad4 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x8e42826f nf_register_hook +EXPORT_SYMBOL vmlinux 0x8e44dbc8 tty_devnum +EXPORT_SYMBOL vmlinux 0x8e4c786c inode_init_always +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x8e8d58da diu_ops +EXPORT_SYMBOL vmlinux 0x8ea92c10 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x8ebe298f iterate_supers_type +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ed64b5d nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x8ee0f337 inet_sendpage +EXPORT_SYMBOL vmlinux 0x8ee1f453 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x8ee7e860 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x8eecad81 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x8f0b7a2a unregister_quota_format +EXPORT_SYMBOL vmlinux 0x8f24dbb3 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x8f2cb2ce netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x8f2d67a6 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x8f55cfff security_inode_init_security +EXPORT_SYMBOL vmlinux 0x8f6accff inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8f9dfd9c nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x8fedbab0 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x8ffddf08 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x900efe7f f_setown +EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x9024e4cb netif_rx +EXPORT_SYMBOL vmlinux 0x90436639 __break_lease +EXPORT_SYMBOL vmlinux 0x906563d3 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x906f271c inet6_release +EXPORT_SYMBOL vmlinux 0x9097fc20 tty_hangup +EXPORT_SYMBOL vmlinux 0x90a3690b drop_nlink +EXPORT_SYMBOL vmlinux 0x90a8ad09 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x90b55f01 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x90d2db0d kernel_connect +EXPORT_SYMBOL vmlinux 0x90feb1ad setup_arg_pages +EXPORT_SYMBOL vmlinux 0x910648e4 dcb_getapp +EXPORT_SYMBOL vmlinux 0x910c6419 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x910c897c blk_stop_queue +EXPORT_SYMBOL vmlinux 0x9127f9f5 flush_old_exec +EXPORT_SYMBOL vmlinux 0x9130b1b9 tcf_hash_create +EXPORT_SYMBOL vmlinux 0x91426888 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x9149d9d4 ps2_end_command +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x919611c7 path_is_under +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x919f3e2e read_code +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91b82885 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x91c19190 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x91e8b1f4 dquot_transfer +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x920d8d69 udp_disconnect +EXPORT_SYMBOL vmlinux 0x921b6699 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x923216bd sk_net_capable +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x9256a418 dev_mc_add +EXPORT_SYMBOL vmlinux 0x925f34b9 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x928e5ede get_super_thawed +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x9292b074 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x92a6f74e vme_bus_type +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92c55e3f __dquot_transfer +EXPORT_SYMBOL vmlinux 0x92cfa139 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x92e1894b tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x92f95528 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931c445f cdev_del +EXPORT_SYMBOL vmlinux 0x9324e66a qdisc_reset +EXPORT_SYMBOL vmlinux 0x932cd881 skb_insert +EXPORT_SYMBOL vmlinux 0x9360867e pci_bus_put +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9395113d iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x939ba819 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93d6c7fd inet_add_protocol +EXPORT_SYMBOL vmlinux 0x93d8f13d bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x93ed254d default_llseek +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x94220b7c dquot_initialize +EXPORT_SYMBOL vmlinux 0x94284315 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x942c18df kernel_accept +EXPORT_SYMBOL vmlinux 0x943aa89c do_truncate +EXPORT_SYMBOL vmlinux 0x943dc80f csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x946060b5 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x9484640f phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x948fb2f6 bio_add_page +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94ae85e8 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x94b79ca1 simple_dname +EXPORT_SYMBOL vmlinux 0x94b8030a mntput +EXPORT_SYMBOL vmlinux 0x94bdd855 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x94c0a631 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x94c7c771 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x94e10171 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x94e6a5db poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x94eb4fdc scsi_remove_target +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x9520a8f2 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x95432342 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x9568e07c jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x95be567b local_flush_tlb_page +EXPORT_SYMBOL vmlinux 0x95c7f90c of_iomap +EXPORT_SYMBOL vmlinux 0x95c8cfaf md_done_sync +EXPORT_SYMBOL vmlinux 0x95d8eb26 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x95dae72f elv_add_request +EXPORT_SYMBOL vmlinux 0x95e1d75d n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0x95eb011a locks_free_lock +EXPORT_SYMBOL vmlinux 0x95f313ce dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x95ffe56f __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x9607938a vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x9621e1b5 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x9622e3d5 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x962684b5 dev_activate +EXPORT_SYMBOL vmlinux 0x964042a6 bio_map_kern +EXPORT_SYMBOL vmlinux 0x9641358f abx500_register_ops +EXPORT_SYMBOL vmlinux 0x964c8de4 neigh_destroy +EXPORT_SYMBOL vmlinux 0x9674d867 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x96812b14 register_shrinker +EXPORT_SYMBOL vmlinux 0x968c1d0e mdio_bus_type +EXPORT_SYMBOL vmlinux 0x9691f7bb sock_wmalloc +EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x96a310f0 console_stop +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96ff4981 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x971bc884 netdev_info +EXPORT_SYMBOL vmlinux 0x971f7073 vfs_readf +EXPORT_SYMBOL vmlinux 0x974762aa pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x97502ac2 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x97771728 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x977abf4e tty_hung_up_p +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 0x97f2eb8e jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x9828b47b vfs_create +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x985a2e99 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x987fc124 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x989978cd xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x98aebcc8 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x98af5399 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x98b7a13a sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x98bc62ff flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0x98c20622 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98d0bc0e param_ops_byte +EXPORT_SYMBOL vmlinux 0x98dbe901 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x98f0c919 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x98f978bd of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x98fe1549 pci_disable_device +EXPORT_SYMBOL vmlinux 0x99055c89 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x9905cdb2 pci_dev_get +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x9949d869 input_register_handle +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x995504de dev_mc_del +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x99680507 netlink_capable +EXPORT_SYMBOL vmlinux 0x996c6ad2 register_quota_format +EXPORT_SYMBOL vmlinux 0x997c2d18 nd_device_register +EXPORT_SYMBOL vmlinux 0x99839f4c alloc_fddidev +EXPORT_SYMBOL vmlinux 0x998d5e9d do_splice_from +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99bed90b scsi_host_put +EXPORT_SYMBOL vmlinux 0x99c4062d scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99ea9c20 lock_rename +EXPORT_SYMBOL vmlinux 0x99f4e692 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x99f914af splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x99ff15f6 ping_prot +EXPORT_SYMBOL vmlinux 0x9a0415fe scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a213f47 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x9a2580e3 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x9a41c520 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x9a436927 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x9a6f9a75 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x9a8313b1 get_agp_version +EXPORT_SYMBOL vmlinux 0x9ab3bb27 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x9ab778ed jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9b027a80 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x9b23e9ad pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b7e85a6 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x9b9d5967 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bcf092f file_open_root +EXPORT_SYMBOL vmlinux 0x9bd343d2 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x9bd8ed09 invalidate_partition +EXPORT_SYMBOL vmlinux 0x9be51ea6 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bf130f2 blk_init_queue +EXPORT_SYMBOL vmlinux 0x9c00fb7e mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x9c2aa727 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x9c2c56bc ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x9c31043f alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x9c3a64e4 register_qdisc +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c5bd59d xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x9c7981a8 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x9c96d2d2 km_new_mapping +EXPORT_SYMBOL vmlinux 0x9c9ef67b sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb326cf elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x9cb429da tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x9d048839 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x9d08b780 simple_open +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d19d3c9 elv_rb_del +EXPORT_SYMBOL vmlinux 0x9d2bc181 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x9d30cf25 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d412080 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x9d58b170 param_set_bint +EXPORT_SYMBOL vmlinux 0x9d67e3ff xattr_full_name +EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x9d72229b fsl_ifc_find +EXPORT_SYMBOL vmlinux 0x9d763f60 of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x9d8b20ce tty_check_change +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9ddb2363 kobject_add +EXPORT_SYMBOL vmlinux 0x9dfcca55 down_write +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e2ec15e bio_reset +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e35f3dd cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e6d87f6 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x9e73507a blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7abefd nvm_register_target +EXPORT_SYMBOL vmlinux 0x9e840029 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ec7d39c inet_add_offload +EXPORT_SYMBOL vmlinux 0x9f39d170 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +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 0x9fb5db90 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x9fb7c482 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x9fc5af66 register_cdrom +EXPORT_SYMBOL vmlinux 0x9fcdabb4 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe764bc dst_destroy +EXPORT_SYMBOL vmlinux 0x9fed0f4a scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa0005074 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xa0057b83 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xa02ac14c brioctl_set +EXPORT_SYMBOL vmlinux 0xa02c47da tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05a1c13 __skb_checksum +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa082744c kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0886b58 __inode_permission +EXPORT_SYMBOL vmlinux 0xa0a6524e ps2_begin_command +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b0dd39 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xa0b30375 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xa0c8e8f2 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xa0d9f02c vme_register_bridge +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 0xa0ff1bea pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa10cdc5a sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xa11b420a mdiobus_read +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa124f32a tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa1501746 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xa17d9490 fb_set_cmap +EXPORT_SYMBOL vmlinux 0xa1a396be set_create_files_as +EXPORT_SYMBOL vmlinux 0xa1ab3a6c of_get_mac_address +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c8350b trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xa1de8512 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1ee5cd9 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa1fac598 flush_tlb_mm +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa2126671 kthread_stop +EXPORT_SYMBOL vmlinux 0xa2821424 phy_register_fixup_for_uid +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 0xa2d6b751 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait +EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa3296f66 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xa32de670 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xa381944f dql_reset +EXPORT_SYMBOL vmlinux 0xa3837689 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xa391ab72 user_path_at_empty +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa39df3e1 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3b5d07e __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xa3c0197f path_put +EXPORT_SYMBOL vmlinux 0xa3d35e5c free_buffer_head +EXPORT_SYMBOL vmlinux 0xa3e75545 flush_tlb_kernel_range +EXPORT_SYMBOL vmlinux 0xa405f32a pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xa417ed7a sock_release +EXPORT_SYMBOL vmlinux 0xa41a46f7 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xa427930e xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xa43c166b local_flush_tlb_mm +EXPORT_SYMBOL vmlinux 0xa43d2d5a locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa49e77cb tcp_prequeue +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 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4bc0c98 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xa4bc2429 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4db274c jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xa4f2a664 blk_delay_queue +EXPORT_SYMBOL vmlinux 0xa506a6ab dev_change_flags +EXPORT_SYMBOL vmlinux 0xa50a019a bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xa50af92b of_root +EXPORT_SYMBOL vmlinux 0xa5329cce inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xa53715c8 get_io_context +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55c6830 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xa5649768 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xa56797ee kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xa5689520 write_cache_pages +EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free +EXPORT_SYMBOL vmlinux 0xa5780dbf mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5a8e8aa thaw_bdev +EXPORT_SYMBOL vmlinux 0xa5af32e7 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xa5affd91 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xa5c03d6f kernel_param_lock +EXPORT_SYMBOL vmlinux 0xa604b04a agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xa611100e elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xa616d0c8 pci_find_bus +EXPORT_SYMBOL vmlinux 0xa61a1b3c page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa644e52c dev_mc_flush +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa65e04b7 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xa663073f generic_make_request +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa67b5c85 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68cb81b param_get_invbool +EXPORT_SYMBOL vmlinux 0xa699ce5b simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xa6b355c9 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xa6bf78e4 arp_send +EXPORT_SYMBOL vmlinux 0xa6eb19ae done_path_create +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa709dfa5 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xa71cca1d vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa74ea003 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get +EXPORT_SYMBOL vmlinux 0xa753290d mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0xa75f5e8c skb_push +EXPORT_SYMBOL vmlinux 0xa767f350 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xa78f5310 page_readlink +EXPORT_SYMBOL vmlinux 0xa795a18c xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xa79b8492 bioset_free +EXPORT_SYMBOL vmlinux 0xa7a34d61 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xa7e7f72b block_invalidatepage +EXPORT_SYMBOL vmlinux 0xa7e9e6ab param_get_ushort +EXPORT_SYMBOL vmlinux 0xa807d9a2 led_update_brightness +EXPORT_SYMBOL vmlinux 0xa826528e mmc_align_data_size +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa86abe26 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xa86b679f down_read +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa8a2d74e mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xa8a30240 inet_getname +EXPORT_SYMBOL vmlinux 0xa8b18f12 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xa8b4f353 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xa8c33110 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xa8cd8f85 __init_rwsem +EXPORT_SYMBOL vmlinux 0xa8ee3b8c fd_install +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91ae5b5 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xa91d90d3 nla_put +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0xa93932e5 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xa93ba88e proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa97b5e46 udp_set_csum +EXPORT_SYMBOL vmlinux 0xa988b6f4 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9bd865f uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xaa0a854c filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xaa1a689c __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xaa25c697 skb_dequeue +EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock +EXPORT_SYMBOL vmlinux 0xaa47270f pipe_unlock +EXPORT_SYMBOL vmlinux 0xaa48dde0 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xaa490c16 tcf_em_register +EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa80a7fe blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xaa838981 tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xaa9272a3 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xaaab8067 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xaac38338 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaade5b3e md_register_thread +EXPORT_SYMBOL vmlinux 0xaaebd4d2 dentry_open +EXPORT_SYMBOL vmlinux 0xaaf89a86 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab0d31a0 d_invalidate +EXPORT_SYMBOL vmlinux 0xab228e31 csum_tcpudp_magic +EXPORT_SYMBOL vmlinux 0xab65be8f of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xab68ff96 of_dev_put +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab6d8894 pci_map_rom +EXPORT_SYMBOL vmlinux 0xab726246 dcache_readdir +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab88b71e __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xabbaa290 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabcbb4b0 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xabea9fa8 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xabff7516 seq_release_private +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac395fab pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xac4509d8 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xac52c5fa tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xac70b0fa vm_stat +EXPORT_SYMBOL vmlinux 0xac9f48b6 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xaca0beaa proc_symlink +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacac102b follow_down +EXPORT_SYMBOL vmlinux 0xacc457dc of_get_min_tck +EXPORT_SYMBOL vmlinux 0xacc4beae fsnotify_get_group +EXPORT_SYMBOL vmlinux 0xacc4f434 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xace613ef dev_get_flags +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad13b5cb vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad1ceaad dquot_alloc +EXPORT_SYMBOL vmlinux 0xad2af0c8 gen_pool_free +EXPORT_SYMBOL vmlinux 0xad2c7342 unlock_rename +EXPORT_SYMBOL vmlinux 0xad524e56 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xad6c0a1a I_BDEV +EXPORT_SYMBOL vmlinux 0xad7394dc fsync_bdev +EXPORT_SYMBOL vmlinux 0xad7e72bc ilookup +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xada3a572 seq_pad +EXPORT_SYMBOL vmlinux 0xadae487d xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xadc727ba skb_split +EXPORT_SYMBOL vmlinux 0xadf52c53 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xadfa023a truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae0a0e04 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xae11211a udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xae1323cd dev_printk +EXPORT_SYMBOL vmlinux 0xae2eb259 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0xae358236 fence_signal +EXPORT_SYMBOL vmlinux 0xae3847a5 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xae4a8c33 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae6fb32c ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xae80d22f agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xae85bba5 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xae990496 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xaec294b6 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xaecb1a1f truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xaecc7a45 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xaee8f0da dquot_drop +EXPORT_SYMBOL vmlinux 0xaef2df7d backlight_force_update +EXPORT_SYMBOL vmlinux 0xaefcf24c ip6_xmit +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf10cb19 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xaf1ea142 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf30dbfb may_umount_tree +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf8bd906 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xaf936731 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xaf963a8d ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xafa7381f jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create +EXPORT_SYMBOL vmlinux 0xafed614b bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xb05428e7 tcf_hash_check +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb08398fb shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b1719f generic_read_dir +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0f54d85 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1578b0c dev_graft_qdisc +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 0xb1693df6 udp_proc_register +EXPORT_SYMBOL vmlinux 0xb18e8153 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xb19b0b5f ip4_datagram_connect +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 0xb1dc0c69 find_vma +EXPORT_SYMBOL vmlinux 0xb1f2f184 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xb20d2ed6 dev_addr_init +EXPORT_SYMBOL vmlinux 0xb2300788 remove_arg_zero +EXPORT_SYMBOL vmlinux 0xb2330b9a kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0xb238b95c i2c_transfer +EXPORT_SYMBOL vmlinux 0xb253f03d blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xb25aede3 get_tz_trend +EXPORT_SYMBOL vmlinux 0xb25c7f47 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb26d7f54 skb_trim +EXPORT_SYMBOL vmlinux 0xb27fc998 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xb28c37c3 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xb291d597 iget_failed +EXPORT_SYMBOL vmlinux 0xb2b47dff set_security_override +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2cb25e4 mount_nodev +EXPORT_SYMBOL vmlinux 0xb2f364f7 vme_slave_request +EXPORT_SYMBOL vmlinux 0xb30e092d inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xb32487b6 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xb331a144 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xb363fd83 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xb37f14e5 follow_down_one +EXPORT_SYMBOL vmlinux 0xb38182bb elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xb396b976 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xb3b322d8 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xb3c2e5ca xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xb3ca037f lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xb3cae1bc unregister_qdisc +EXPORT_SYMBOL vmlinux 0xb3cb4835 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d85ec4 dcb_setapp +EXPORT_SYMBOL vmlinux 0xb3df6ad9 dev_add_offload +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb404909a genphy_update_link +EXPORT_SYMBOL vmlinux 0xb4092efc key_invalidate +EXPORT_SYMBOL vmlinux 0xb41748f6 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb43fea69 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xb46b933a tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xb46d44cf __devm_release_region +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 0xb4a8d75c bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xb4ba6f3f find_inode_nowait +EXPORT_SYMBOL vmlinux 0xb4e18e4f udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xb4e969b9 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0xb4fbdd04 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xb511ed3a max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xb5122891 bio_split +EXPORT_SYMBOL vmlinux 0xb51368c9 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xb5260777 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xb56e1133 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb591bd4b ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5f0567c blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xb5f8d0ff param_set_uint +EXPORT_SYMBOL vmlinux 0xb5ffecb9 finish_open +EXPORT_SYMBOL vmlinux 0xb6215a39 vfs_whiteout +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb62f6b32 sys_fillrect +EXPORT_SYMBOL vmlinux 0xb6334281 skb_make_writable +EXPORT_SYMBOL vmlinux 0xb638fe37 blk_end_request_all +EXPORT_SYMBOL vmlinux 0xb644d4fc bio_advance +EXPORT_SYMBOL vmlinux 0xb64d2936 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0xb65f5697 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xb66e780a try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6d06df6 kill_bdev +EXPORT_SYMBOL vmlinux 0xb6e1d60d netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xb6e8432b agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0xb6ecd8af jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xb6f19b4b ip6_frag_match +EXPORT_SYMBOL vmlinux 0xb700f9ff netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xb70f3296 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xb71d4188 __sb_start_write +EXPORT_SYMBOL vmlinux 0xb7373337 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb74b209c nvm_submit_io +EXPORT_SYMBOL vmlinux 0xb75513cc netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xb759f98e framebuffer_release +EXPORT_SYMBOL vmlinux 0xb766cad7 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xb76e0c8a __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xb770be3e __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb79969d4 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xb79a4e1a store_fp_state +EXPORT_SYMBOL vmlinux 0xb7bec2ae lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7c7c6dc inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xb7e07b85 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xb7ea8435 fb_pan_display +EXPORT_SYMBOL vmlinux 0xb7eea5ac devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xb8006657 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0xb80caf9b md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xb814282b param_ops_ullong +EXPORT_SYMBOL vmlinux 0xb818fe77 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xb81a9bdd fddi_type_trans +EXPORT_SYMBOL vmlinux 0xb8237be0 fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xb830def5 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xb8469fc8 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xb8602445 clear_inode +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb8a27305 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xb918079e blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xb92bd9d3 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xb9405ead md_write_start +EXPORT_SYMBOL vmlinux 0xb9587aeb devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xb96117f2 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xb976b56d simple_transaction_read +EXPORT_SYMBOL vmlinux 0xb9a20fbf simple_getattr +EXPORT_SYMBOL vmlinux 0xb9c697b9 bdev_read_only +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9fb9544 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xba08721f phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xba226d43 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xba29a111 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba6028b5 i2c_master_send +EXPORT_SYMBOL vmlinux 0xba94099f vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xbac4fbc1 acl_by_type +EXPORT_SYMBOL vmlinux 0xbaeaeaac of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xbaec318f bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xbb04eeba netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb178764 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xbb1f9b5b param_set_int +EXPORT_SYMBOL vmlinux 0xbb2908c7 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb361fe1 key_alloc +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb519042 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb5f53b9 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xbb626084 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xbb62653d set_user_nice +EXPORT_SYMBOL vmlinux 0xbb67d687 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xbb761ebe alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xbb77b2f6 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xbb7b6d4f uart_update_timeout +EXPORT_SYMBOL vmlinux 0xbb828749 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xbb8c6341 sock_init_data +EXPORT_SYMBOL vmlinux 0xbb8e1de1 write_inode_now +EXPORT_SYMBOL vmlinux 0xbb8f643f rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xbbb43a43 cdev_init +EXPORT_SYMBOL vmlinux 0xbbb6b412 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xbbc001bb agp_generic_enable +EXPORT_SYMBOL vmlinux 0xbbc694e3 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xbbcaa88f tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xbc021ab2 pci_save_state +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc32f309 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xbc4dc0bd xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xbc808ed4 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xbc9aeb1b bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xbca7e065 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xbcc00d7b agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbccf40f7 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xbcdf293c input_reset_device +EXPORT_SYMBOL vmlinux 0xbce8d819 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 +EXPORT_SYMBOL vmlinux 0xbd0cc87f udp6_set_csum +EXPORT_SYMBOL vmlinux 0xbd236506 set_binfmt +EXPORT_SYMBOL vmlinux 0xbd24ccf9 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xbd358186 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xbd3891db input_unregister_handle +EXPORT_SYMBOL vmlinux 0xbd38be1a mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xbd3f61b2 fb_set_var +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd47845d dget_parent +EXPORT_SYMBOL vmlinux 0xbd5db2f7 of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0xbd601e78 tcp_child_process +EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xbd8992b0 install_exec_creds +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd952fa6 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xbd9c4607 __secpath_destroy +EXPORT_SYMBOL vmlinux 0xbdc374ed vfs_unlink +EXPORT_SYMBOL vmlinux 0xbdda0fe9 __register_nls +EXPORT_SYMBOL vmlinux 0xbe186723 read_cache_page +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe2248bc led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0xbe30cc76 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xbe363b9d vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xbe42253f tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0xbe6c68ce blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xbe6e4bbd generic_setxattr +EXPORT_SYMBOL vmlinux 0xbe748ce8 proto_unregister +EXPORT_SYMBOL vmlinux 0xbe769c4b vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0xbe860b32 icmpv6_send +EXPORT_SYMBOL vmlinux 0xbee4ab15 of_parse_phandle +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef60c3a __blk_end_request +EXPORT_SYMBOL vmlinux 0xbef8ecb6 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xbf0fae6f dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xbf146162 vm_event_states +EXPORT_SYMBOL vmlinux 0xbf204f0d generic_block_bmap +EXPORT_SYMBOL vmlinux 0xbf2f378b pci_scan_slot +EXPORT_SYMBOL vmlinux 0xbf300823 register_gifconf +EXPORT_SYMBOL vmlinux 0xbf33df3e pci_pme_capable +EXPORT_SYMBOL vmlinux 0xbf3c17db dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xbf439e81 devm_gpio_request +EXPORT_SYMBOL vmlinux 0xbf6378db file_path +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init +EXPORT_SYMBOL vmlinux 0xbf98f2eb phy_device_free +EXPORT_SYMBOL vmlinux 0xbf999eda freeze_super +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfabfe59 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfe5c958 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc00b623f compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xc00c98e9 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xc01b9bf1 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xc033e06f inode_get_bytes +EXPORT_SYMBOL vmlinux 0xc072bebf kill_fasync +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc09ce2c0 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0ab5fc2 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xc0b64cc0 sk_dst_check +EXPORT_SYMBOL vmlinux 0xc0bd8506 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xc0d69121 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xc0e61f0a clkdev_alloc +EXPORT_SYMBOL vmlinux 0xc0ee5cc9 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xc114a811 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xc11ef92d pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc +EXPORT_SYMBOL vmlinux 0xc13ff6ae mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0xc14ca00a d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc15efa77 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xc17c0834 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xc185cc46 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xc18833c6 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xc19225c5 dquot_acquire +EXPORT_SYMBOL vmlinux 0xc1b7f61d sock_no_poll +EXPORT_SYMBOL vmlinux 0xc1c21f69 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1db6fb3 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1fdc939 tty_port_init +EXPORT_SYMBOL vmlinux 0xc200c707 pci_release_regions +EXPORT_SYMBOL vmlinux 0xc204e759 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xc21d4e31 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc2483b64 elv_register_queue +EXPORT_SYMBOL vmlinux 0xc2838012 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2af3120 nla_append +EXPORT_SYMBOL vmlinux 0xc2b4013f ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xc2bc9755 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xc2cd2db5 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xc2e47bb4 keyring_search +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2eb23c0 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc319eaa7 netlink_set_err +EXPORT_SYMBOL vmlinux 0xc339a6cd tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xc3462d46 of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0xc34af3a2 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xc372ca7a pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xc37a6d88 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xc37f998f swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xc391d5a5 unregister_key_type +EXPORT_SYMBOL vmlinux 0xc3a7af46 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3c34030 nd_iostat_end +EXPORT_SYMBOL vmlinux 0xc3e328ef uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xc3e6b489 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc3fd3a1b inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xc41e6144 mmc_get_card +EXPORT_SYMBOL vmlinux 0xc430d1fa pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xc4342909 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xc447dda3 vme_bus_num +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc466c7b6 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xc47b9f81 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc480bb71 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc4842fd9 vga_put +EXPORT_SYMBOL vmlinux 0xc4926d69 iunique +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4c4a788 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xc4f5be41 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xc4fc1ff4 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0xc52845af param_ops_int +EXPORT_SYMBOL vmlinux 0xc52d962c rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xc5307f80 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xc533d6d7 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xc54223cb xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc55a4b31 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5ab946a pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xc5cd5a6c security_path_mknod +EXPORT_SYMBOL vmlinux 0xc5d4f04c up_read +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc5fee188 set_blocksize +EXPORT_SYMBOL vmlinux 0xc6222350 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc641d1e0 fget +EXPORT_SYMBOL vmlinux 0xc646a1d2 md_error +EXPORT_SYMBOL vmlinux 0xc64b1db1 ata_std_end_eh +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 0xc67a61e7 dqput +EXPORT_SYMBOL vmlinux 0xc67a8da0 set_cached_acl +EXPORT_SYMBOL vmlinux 0xc67c09dd give_up_console +EXPORT_SYMBOL vmlinux 0xc687fb6e __napi_schedule +EXPORT_SYMBOL vmlinux 0xc6994be0 kern_path_create +EXPORT_SYMBOL vmlinux 0xc6a6bec9 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6dd1acb ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0xc71ed6b8 pci_release_region +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7311b5d vm_mmap +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 0xc7613691 blk_integrity_merge_bio +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 0xc7863e05 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xc7898275 flex_array_shrink +EXPORT_SYMBOL vmlinux 0xc78c753d swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xc78c7efd ppp_unit_number +EXPORT_SYMBOL vmlinux 0xc78d9305 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc79dccb3 vga_client_register +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a5d510 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xc7aac190 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xc7c9846f unlock_page +EXPORT_SYMBOL vmlinux 0xc7d4a237 d_lookup +EXPORT_SYMBOL vmlinux 0xc7d603da scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xc7f7c450 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xc801b91f sock_setsockopt +EXPORT_SYMBOL vmlinux 0xc8036faa ip_ct_attach +EXPORT_SYMBOL vmlinux 0xc80d3770 loop_backing_file +EXPORT_SYMBOL vmlinux 0xc80f8d33 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xc81d143d compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xc81dc367 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc83c6fd4 arp_xmit +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 0xc868f823 iterate_mounts +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc881712b ata_link_printk +EXPORT_SYMBOL vmlinux 0xc886b23a devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xc88d17ad nf_setsockopt +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8928db7 setup_new_exec +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc89c9b82 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xc89de2a7 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8bca612 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xc8e39ea1 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc927cd53 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xc9430082 from_kgid_munged +EXPORT_SYMBOL vmlinux 0xc961988c pcim_iomap +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9778adf mount_pseudo +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc982544e input_set_capability +EXPORT_SYMBOL vmlinux 0xc98e0dff dm_put_table_device +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9b89d47 page_waitqueue +EXPORT_SYMBOL vmlinux 0xc9d2ce17 nf_log_unset +EXPORT_SYMBOL vmlinux 0xc9ded430 kfree_put_link +EXPORT_SYMBOL vmlinux 0xc9e013e7 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0xca0aa325 led_blink_set +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca1e58a6 ps2_command +EXPORT_SYMBOL vmlinux 0xca24821f iget_locked +EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get +EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state +EXPORT_SYMBOL vmlinux 0xca3feab0 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xca55b251 pci_enable_device +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca610793 dup_iter +EXPORT_SYMBOL vmlinux 0xca7014b3 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xca7ab665 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaa1f445 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0xcaa2ce67 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xcaa3dd28 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xcaafe766 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0xcac34ec8 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcad89294 seq_putc +EXPORT_SYMBOL vmlinux 0xcaefc3f6 cdev_add +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf86e25 mount_single +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb069b2c __kfree_skb +EXPORT_SYMBOL vmlinux 0xcb0afa2f mmc_free_host +EXPORT_SYMBOL vmlinux 0xcb102df9 param_set_ushort +EXPORT_SYMBOL vmlinux 0xcb4147c6 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xcb690276 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xcb71c174 default_file_splice_read +EXPORT_SYMBOL vmlinux 0xcb77dff9 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xcb8771d3 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcb976178 truncate_inode_pages_final +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 0xcbe26576 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xcbfe2d0d skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc245a2f pci_disable_msix +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc32e67a dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xcc3c6fb3 send_sig_info +EXPORT_SYMBOL vmlinux 0xcc3cafa7 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xcc4e3597 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc546352 dev_uc_init +EXPORT_SYMBOL vmlinux 0xcc5fc46a simple_lookup +EXPORT_SYMBOL vmlinux 0xcc719779 replace_mount_options +EXPORT_SYMBOL vmlinux 0xccb6dc61 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xccbe1805 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xcccdf966 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xccdaf39f blk_sync_queue +EXPORT_SYMBOL vmlinux 0xccdcb292 dst_init +EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd20b2eb bio_init +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd42e36d nd_device_unregister +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 0xcd9a8778 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcde5e4c5 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xcdef1364 blk_put_queue +EXPORT_SYMBOL vmlinux 0xcdfc8079 flush_icache_user_range +EXPORT_SYMBOL vmlinux 0xcdfc8882 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xce0e2d66 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce3b3f09 profile_pc +EXPORT_SYMBOL vmlinux 0xce46e20f __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce76ef0c path_noexec +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xce8b9f9b scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceabca07 bdput +EXPORT_SYMBOL vmlinux 0xceacce27 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xcec886d8 param_get_long +EXPORT_SYMBOL vmlinux 0xcecff4d5 free_task +EXPORT_SYMBOL vmlinux 0xced0151b security_inode_permission +EXPORT_SYMBOL vmlinux 0xced777cb proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xcee479b1 set_posix_acl +EXPORT_SYMBOL vmlinux 0xcee70c3d file_ns_capable +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcef9e92d sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xcefaebd8 param_ops_string +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf1af340 kdb_current_task +EXPORT_SYMBOL vmlinux 0xcf556402 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xcf8a76e4 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xcf90698f swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xcf976c87 kset_unregister +EXPORT_SYMBOL vmlinux 0xcfabf0a2 inode_permission +EXPORT_SYMBOL vmlinux 0xcfb2da82 current_in_userns +EXPORT_SYMBOL vmlinux 0xcfb8d39e scsi_scan_target +EXPORT_SYMBOL vmlinux 0xcfbd2196 blk_start_request +EXPORT_SYMBOL vmlinux 0xcfc30f50 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xcfc905cd capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xcfdf71a0 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xcfe3a658 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xcfe77232 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xcff86ba8 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xd0086cdc dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xd05bcf6c contig_page_data +EXPORT_SYMBOL vmlinux 0xd05f2dde ether_setup +EXPORT_SYMBOL vmlinux 0xd06437fc blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2175d vfs_llseek +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0ad6499 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xd0b0fbe4 eth_prepare_mac_addr_change +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 0xd1184e95 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0xd11ef287 dev_uc_del +EXPORT_SYMBOL vmlinux 0xd12bb78a simple_follow_link +EXPORT_SYMBOL vmlinux 0xd16da659 of_find_property +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1abd3b5 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xd1c8eea4 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xd1ceb5cd vga_tryget +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1da9a60 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xd21e479c sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xd238b9c7 seq_printf +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 0xd28f849c dev_printk_emit +EXPORT_SYMBOL vmlinux 0xd295c865 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xd297ba38 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2b38724 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xd2b95ddb dump_emit +EXPORT_SYMBOL vmlinux 0xd2d18c10 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2edabe1 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xd2fbd1be compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0xd3039b99 add_disk +EXPORT_SYMBOL vmlinux 0xd310f599 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd3360823 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd37ac563 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xd394ff9e mount_subtree +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3ca053a validate_sp +EXPORT_SYMBOL vmlinux 0xd3e0199a tc_classify +EXPORT_SYMBOL vmlinux 0xd4067eed nvm_end_io +EXPORT_SYMBOL vmlinux 0xd40aa1be tty_port_open +EXPORT_SYMBOL vmlinux 0xd41e9613 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xd41f5923 vfs_read +EXPORT_SYMBOL vmlinux 0xd42a8a3c generic_permission +EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm +EXPORT_SYMBOL vmlinux 0xd44bfb16 import_iovec +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd476ae73 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xd4797ba5 sock_rfree +EXPORT_SYMBOL vmlinux 0xd47c6bdd neigh_table_init +EXPORT_SYMBOL vmlinux 0xd48ef836 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xd4931aa8 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xd4cdc2c2 alloc_disk +EXPORT_SYMBOL vmlinux 0xd4e0a7c6 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xd4e7c16c md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xd4eddd0b ab3100_event_register +EXPORT_SYMBOL vmlinux 0xd4f2f5fd lease_modify +EXPORT_SYMBOL vmlinux 0xd51efed4 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xd5480c13 phy_device_remove +EXPORT_SYMBOL vmlinux 0xd5486c31 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd56435e1 mdiobus_free +EXPORT_SYMBOL vmlinux 0xd56d484c blk_integrity_register +EXPORT_SYMBOL vmlinux 0xd57004e9 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xd58ce633 pid_task +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5950abc request_key +EXPORT_SYMBOL vmlinux 0xd5a10c7d nf_ct_attach +EXPORT_SYMBOL vmlinux 0xd5ddc750 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xd5dff87e cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xd60fe1b7 single_open +EXPORT_SYMBOL vmlinux 0xd61586e3 tcp_req_err +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd6314679 bdevname +EXPORT_SYMBOL vmlinux 0xd64240f6 flow_cache_fini +EXPORT_SYMBOL vmlinux 0xd644a617 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd65d0740 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd6c33830 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 +EXPORT_SYMBOL vmlinux 0xd7274624 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xd7310055 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xd7414ee7 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xd743ee1e clear_nlink +EXPORT_SYMBOL vmlinux 0xd74e130a fb_set_suspend +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot +EXPORT_SYMBOL vmlinux 0xd76c6ead mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xd779a003 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xd77a8c88 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0xd77d9310 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xd78ff754 nd_btt_probe +EXPORT_SYMBOL vmlinux 0xd7a3bfd0 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xd7acf2e5 pipe_lock +EXPORT_SYMBOL vmlinux 0xd7e411c4 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e5dd3c __kernel_write +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7f35b3e fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0xd800aa15 set_bh_page +EXPORT_SYMBOL vmlinux 0xd80ecf60 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xd82ccf3d cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xd846d96b blk_get_queue +EXPORT_SYMBOL vmlinux 0xd849b276 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xd86a7450 of_platform_device_create +EXPORT_SYMBOL vmlinux 0xd8842557 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xd88523dd compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0xd88b5abc __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xd899ce7b __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8cdd63d inet_shutdown +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8f693df __dst_free +EXPORT_SYMBOL vmlinux 0xd9124465 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xd925c361 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xd9383a2e ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xd950b046 __check_sticky +EXPORT_SYMBOL vmlinux 0xd950f040 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xd97318d0 generic_writepages +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9887544 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xd9ba4b09 free_user_ns +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9fc9ee3 make_kprojid +EXPORT_SYMBOL vmlinux 0xda12fffb tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xda16ce22 sock_wfree +EXPORT_SYMBOL vmlinux 0xda1d5241 dev_uc_add +EXPORT_SYMBOL vmlinux 0xda215ad0 genl_notify +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda3da2a9 block_write_end +EXPORT_SYMBOL vmlinux 0xda4a49d4 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xda55cea8 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xda592e6e vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xda7328ac sock_recv_errqueue +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 0xdaa8ab98 blk_free_tags +EXPORT_SYMBOL vmlinux 0xdab54c4a inet_addr_type_table +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 0xdad7adff dqstats +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find +EXPORT_SYMBOL vmlinux 0xdb216cdb jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb47ec7c netif_device_detach +EXPORT_SYMBOL vmlinux 0xdb5cc083 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb72e015 param_set_charp +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb764475 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xdb7d7abb invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xdb921cbd inet_frags_fini +EXPORT_SYMBOL vmlinux 0xdb94ca9d __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xdbe0a0c9 param_ops_short +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc0ebe0e skb_queue_tail +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xdc272cca put_disk +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3ee64b skb_checksum_help +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc4b9188 param_set_invbool +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5554b5 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xdc84adc3 keyring_alloc +EXPORT_SYMBOL vmlinux 0xdc84d2b2 vfs_symlink +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcc3e965 empty_aops +EXPORT_SYMBOL vmlinux 0xdcfc0f71 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xdd00723f devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xdd018dbb netif_skb_features +EXPORT_SYMBOL vmlinux 0xdd01ef95 d_delete +EXPORT_SYMBOL vmlinux 0xdd2611b3 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xdd2f757d dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xdd37df92 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xdd4362c2 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xdd580481 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd862517 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer +EXPORT_SYMBOL vmlinux 0xdd955144 __debugger +EXPORT_SYMBOL vmlinux 0xdd964b31 __getblk_slow +EXPORT_SYMBOL vmlinux 0xdd9e8f2f mpage_writepages +EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xddc71376 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xdde2df54 phy_init_hw +EXPORT_SYMBOL vmlinux 0xddfe1ede skb_vlan_push +EXPORT_SYMBOL vmlinux 0xde1bc6a3 save_mount_options +EXPORT_SYMBOL vmlinux 0xde35678a skb_queue_head +EXPORT_SYMBOL vmlinux 0xde4461ae dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde58a5ce inode_init_once +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde90d5c6 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea09353 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xdea54372 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xdea7d596 kill_block_super +EXPORT_SYMBOL vmlinux 0xdeb2375e setattr_copy +EXPORT_SYMBOL vmlinux 0xdeb6f09c skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xdecd44dc dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xded12b12 abort_creds +EXPORT_SYMBOL vmlinux 0xded9b895 __genl_register_family +EXPORT_SYMBOL vmlinux 0xdee8f170 bio_copy_data +EXPORT_SYMBOL vmlinux 0xdef70126 put_tty_driver +EXPORT_SYMBOL vmlinux 0xdef84ff0 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf41d6b9 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfb3551c textsearch_register +EXPORT_SYMBOL vmlinux 0xdfe31955 of_dev_get +EXPORT_SYMBOL vmlinux 0xdfe6fd5d pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xdfee0d0a scsi_device_get +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdff9aaa6 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0xe02122f5 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xe0212b26 pci_match_id +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe05a0c34 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xe05b4e40 flush_tlb_page +EXPORT_SYMBOL vmlinux 0xe05d6b68 phy_connect +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe06b75f5 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xe075c2eb param_set_short +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe07c872a input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe08f8c16 dump_page +EXPORT_SYMBOL vmlinux 0xe093c7c1 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0f77d69 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xe0f95a27 flush_tlb_range +EXPORT_SYMBOL vmlinux 0xe1046a5d elevator_change +EXPORT_SYMBOL vmlinux 0xe108546d tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe14da213 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xe15694d5 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xe15a64cb agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xe16acf34 flush_signals +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe1a1391d cdev_alloc +EXPORT_SYMBOL vmlinux 0xe1a4c2a1 sget_userns +EXPORT_SYMBOL vmlinux 0xe1c36ce4 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xe1cc73f6 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xe1d72f06 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xe1fd3d03 seq_path +EXPORT_SYMBOL vmlinux 0xe1ff4a84 d_move +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe2013824 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe20a037c dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xe220ceb8 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xe2289f2b input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe26fd6ba keyring_clear +EXPORT_SYMBOL vmlinux 0xe2802783 inet_select_addr +EXPORT_SYMBOL vmlinux 0xe2821cdd mpage_readpages +EXPORT_SYMBOL vmlinux 0xe285b1d4 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2b71b53 is_bad_inode +EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2ed983e phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe32146e4 dev_open +EXPORT_SYMBOL vmlinux 0xe32f4257 powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0xe3745c7a input_inject_event +EXPORT_SYMBOL vmlinux 0xe399de57 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3bd3762 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xe3d126d8 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3e27e55 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xe401460a tcp_filter +EXPORT_SYMBOL vmlinux 0xe41ebb0e sg_miter_start +EXPORT_SYMBOL vmlinux 0xe4399fad page_follow_link_light +EXPORT_SYMBOL vmlinux 0xe4400a72 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe486a5bb neigh_direct_output +EXPORT_SYMBOL vmlinux 0xe4984e96 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xe4b59d18 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xe4b608cd agp_bind_memory +EXPORT_SYMBOL vmlinux 0xe4c31919 i8042_install_filter +EXPORT_SYMBOL vmlinux 0xe4d04059 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4e8265c serio_bus +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4f511c4 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe5058586 init_buffer +EXPORT_SYMBOL vmlinux 0xe5142427 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe562839f scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xe56919ea fs_bio_set +EXPORT_SYMBOL vmlinux 0xe5730d2a __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xe5761e2d blk_start_queue +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe57d2b4d backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5a316a5 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5c9ccf6 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xe5cc9486 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xe5d3b47a lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0xe5d7bf5c msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xe5d83579 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xe5e9e98e d_tmpfile +EXPORT_SYMBOL vmlinux 0xe5ea93b8 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe6121dc7 tcp_poll +EXPORT_SYMBOL vmlinux 0xe6141bd8 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe66452ab dql_init +EXPORT_SYMBOL vmlinux 0xe66a09d9 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xe67f59c8 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6a53ae5 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xe6b1bb19 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xe6db9930 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xe6e5481a genphy_suspend +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe7188ef3 generic_update_time +EXPORT_SYMBOL vmlinux 0xe7383d4a dquot_disable +EXPORT_SYMBOL vmlinux 0xe74ba8d3 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe76f6cf6 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xe78fe449 agp_copy_info +EXPORT_SYMBOL vmlinux 0xe794dd44 pci_request_region +EXPORT_SYMBOL vmlinux 0xe799be73 skb_append +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe809bc9b bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xe8162603 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xe81628b2 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xe81d3ec4 sock_efree +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe821b24d nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xe82a9371 seq_open +EXPORT_SYMBOL vmlinux 0xe836e803 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xe864588a devm_clk_put +EXPORT_SYMBOL vmlinux 0xe897b18f blk_rq_map_integrity_sg +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 0xe8da6e35 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xe8df61b5 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe900f62a of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xe902e78d mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9154cc1 param_get_bool +EXPORT_SYMBOL vmlinux 0xe928a09a tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95ae315 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xe9623f43 tcf_register_action +EXPORT_SYMBOL vmlinux 0xe9726c34 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xe97774dd blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xe9841b2d agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xe9cb4e79 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xe9d205f7 vfs_readv +EXPORT_SYMBOL vmlinux 0xe9e5d0eb km_policy_notify +EXPORT_SYMBOL vmlinux 0xe9e5f2bb netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xe9f30c33 max8998_update_reg +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea00cefe nf_reinject +EXPORT_SYMBOL vmlinux 0xea04a51b __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea1b5a63 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xea24e6cf phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xea288b67 PDE_DATA +EXPORT_SYMBOL vmlinux 0xea4f6824 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xea5b6842 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xea687a1b pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xea6b2dab ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xea70aa39 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xea7917e6 udp_del_offload +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xea971d45 led_set_brightness +EXPORT_SYMBOL vmlinux 0xeaa412b8 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0xeab40819 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xeabd3fcd phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xeac2e0c0 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xeae25724 blk_rq_init +EXPORT_SYMBOL vmlinux 0xeaf211b7 security_path_symlink +EXPORT_SYMBOL vmlinux 0xeaf7b7d9 padata_do_serial +EXPORT_SYMBOL vmlinux 0xeafa113c kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xeafc752f mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xeb1b197f tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb404d4a pci_request_regions +EXPORT_SYMBOL vmlinux 0xeb440764 get_super +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb546f61 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xeb791638 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xeb7ee31f alloc_disk_node +EXPORT_SYMBOL vmlinux 0xeb7f5040 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xeb98ecf5 giveup_fpu +EXPORT_SYMBOL vmlinux 0xebaa174c security_path_rename +EXPORT_SYMBOL vmlinux 0xebfaa8d7 input_set_keycode +EXPORT_SYMBOL vmlinux 0xec143635 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xec199aa6 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xec234a26 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xec419ac1 build_skb +EXPORT_SYMBOL vmlinux 0xec4265dc devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xec447039 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec5480d5 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xec7a3998 d_drop +EXPORT_SYMBOL vmlinux 0xec84a8a3 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xecb744b4 input_register_handler +EXPORT_SYMBOL vmlinux 0xecba1aa3 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xecc24f96 fget_raw +EXPORT_SYMBOL vmlinux 0xecca0c3b sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xeccc28c0 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xed08a423 vfs_writef +EXPORT_SYMBOL vmlinux 0xed229842 ppc_md +EXPORT_SYMBOL vmlinux 0xed27128c tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xed2a1be8 deactivate_super +EXPORT_SYMBOL vmlinux 0xed2e6ea1 redraw_screen +EXPORT_SYMBOL vmlinux 0xed3bc1c0 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xed5564ac padata_stop +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed624496 __lock_page +EXPORT_SYMBOL vmlinux 0xed64d4d6 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xed78f7d0 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xed9d6706 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xeda7488d dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xedacab30 kernel_read +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table +EXPORT_SYMBOL vmlinux 0xedd4b52c iov_iter_advance +EXPORT_SYMBOL vmlinux 0xedd70388 mmc_request_done +EXPORT_SYMBOL vmlinux 0xede4e41f sock_i_uid +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee04babe blk_recount_segments +EXPORT_SYMBOL vmlinux 0xee086c61 mutex_unlock +EXPORT_SYMBOL vmlinux 0xee0d7b87 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xee181346 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xee1df7bc xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xee24dc27 address_space_init_once +EXPORT_SYMBOL vmlinux 0xee271016 dquot_resume +EXPORT_SYMBOL vmlinux 0xee27562b no_llseek +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee307bdf agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xee3e5e4e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xee3edb42 submit_bh +EXPORT_SYMBOL vmlinux 0xee423e84 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xee4db579 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0xee600516 load_nls +EXPORT_SYMBOL vmlinux 0xee602f61 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xee666738 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xee7a075b kill_pgrp +EXPORT_SYMBOL vmlinux 0xee89a238 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea3cd7a nla_reserve +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeafbcec frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xeeb9d069 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xeebc2a6a pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xeebfb1f1 set_device_ro +EXPORT_SYMBOL vmlinux 0xeed8ffe3 flush_dcache_page +EXPORT_SYMBOL vmlinux 0xeede3012 bio_chain +EXPORT_SYMBOL vmlinux 0xeede61ad vm_insert_page +EXPORT_SYMBOL vmlinux 0xeee52e7d nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef0a4103 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xef0ffc27 of_translate_address +EXPORT_SYMBOL vmlinux 0xef211bf5 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xef25a78f skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xef26b752 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xef4b5d16 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xef4ca917 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xef69834d security_path_unlink +EXPORT_SYMBOL vmlinux 0xef7b6d05 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xef7e5d5d to_nd_btt +EXPORT_SYMBOL vmlinux 0xef7f8854 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0xef82e076 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xefae2f78 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0xefb86576 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xefc00fdc dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xefc95f10 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xefce951d pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefdaf9c3 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range +EXPORT_SYMBOL vmlinux 0xeff5614d generic_getxattr +EXPORT_SYMBOL vmlinux 0xeffdff1f dev_emerg +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf002ac82 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xf00d91f0 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf02e481d gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xf04201fa fasync_helper +EXPORT_SYMBOL vmlinux 0xf0505662 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf0712e31 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xf07935aa posix_unblock_lock +EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf095ba73 mpage_writepage +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf09eaac9 __vfs_write +EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf0df5cf5 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xf0edeffc pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf107b409 set_disk_ro +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf111e399 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf12f8a34 param_get_uint +EXPORT_SYMBOL vmlinux 0xf13cc963 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf162dba5 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xf1791fa3 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xf17c6b0f skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xf183189b __ioremap_at +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 0xf1c11fd6 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xf1d783c7 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xf1dab41a sock_edemux +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e44c85 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0xf1e6cf7e blk_put_request +EXPORT_SYMBOL vmlinux 0xf1e93a68 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1eac88c netif_rx_ni +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 0xf2308756 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2731912 jbd2_journal_clear_features +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 0xf2d4d278 skb_put +EXPORT_SYMBOL vmlinux 0xf2e3d556 key_link +EXPORT_SYMBOL vmlinux 0xf2efb1c6 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xf2ff4ccb dquot_file_open +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf3147469 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xf319050c xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue +EXPORT_SYMBOL vmlinux 0xf32741f8 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf33dadfd tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf3529dfb from_kuid +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf354d5b7 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xf36dfbef netdev_has_upper_dev +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 0xf3a58702 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xf3b8f3aa dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xf3de07b3 proto_register +EXPORT_SYMBOL vmlinux 0xf3e51404 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3e809d0 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xf413a57f scsi_host_get +EXPORT_SYMBOL vmlinux 0xf41ef1b0 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf453fd74 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xf4721951 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xf473b5ed netlink_net_capable +EXPORT_SYMBOL vmlinux 0xf4746486 posix_lock_file +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47c4147 eth_header +EXPORT_SYMBOL vmlinux 0xf48d1b94 serio_interrupt +EXPORT_SYMBOL vmlinux 0xf4b00ddc agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4e42571 tty_name +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f91c85 blkdev_issue_zeroout +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 0xf52644dd tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf543dc46 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xf5458522 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xf54d3a77 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 +EXPORT_SYMBOL vmlinux 0xf5644ace xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xf5846911 tty_write_room +EXPORT_SYMBOL vmlinux 0xf58cb7a9 bdi_destroy +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5a66306 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xf5a68400 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xf5a92900 of_match_device +EXPORT_SYMBOL vmlinux 0xf5ab41c6 follow_pfn +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5c8433c blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xf5c87b41 get_fs_type +EXPORT_SYMBOL vmlinux 0xf5cdceaa d_rehash +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5e442e6 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xf5e49b5c scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf6303f06 of_get_property +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf653c3ff input_open_device +EXPORT_SYMBOL vmlinux 0xf65f3f49 mmc_can_reset +EXPORT_SYMBOL vmlinux 0xf6713874 vfs_rename +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf67bb30f file_remove_privs +EXPORT_SYMBOL vmlinux 0xf67bf5ce remove_proc_entry +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf69c3f45 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xf69f77bc fb_show_logo +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6c91f3f vga_get +EXPORT_SYMBOL vmlinux 0xf6dd20c3 netdev_emerg +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70c1430 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xf7153014 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xf726946e proc_mkdir +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf760acd6 free_netdev +EXPORT_SYMBOL vmlinux 0xf792fafd devm_release_resource +EXPORT_SYMBOL vmlinux 0xf7a1fa18 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xf7a42507 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xf7b38eea sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xf7ca7cc2 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xf7cdc736 clkdev_add +EXPORT_SYMBOL vmlinux 0xf7d0d757 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xf7d3b53b inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xf7e09a23 lock_fb_info +EXPORT_SYMBOL vmlinux 0xf7ec1789 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xf8031227 inet6_protos +EXPORT_SYMBOL vmlinux 0xf80a94d7 pci_bus_read_config_dword +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 0xf8494272 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xf8559060 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xf85e1491 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xf8862cc2 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xf8910dc9 path_get +EXPORT_SYMBOL vmlinux 0xf89b3d6d __sock_create +EXPORT_SYMBOL vmlinux 0xf8a0118b xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xf8beefee vme_master_request +EXPORT_SYMBOL vmlinux 0xf8c73406 mount_bdev +EXPORT_SYMBOL vmlinux 0xf8cef02b mac_find_mode +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8fdc515 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xf8fe0dbe generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xf8ff01c5 free_page_put_link +EXPORT_SYMBOL vmlinux 0xf90a1a4a simple_readpage +EXPORT_SYMBOL vmlinux 0xf9228003 get_immrbase +EXPORT_SYMBOL vmlinux 0xf93601b1 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xf941868d of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xf94a0f8e elevator_exit +EXPORT_SYMBOL vmlinux 0xf94fbd57 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xf950fdbf blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xf9530a85 bdgrab +EXPORT_SYMBOL vmlinux 0xf95e516f dma_async_device_register +EXPORT_SYMBOL vmlinux 0xf96b5300 get_user_pages +EXPORT_SYMBOL vmlinux 0xf97034a5 do_splice_to +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a7edcc kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9de7c83 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xf9e0531c new_inode +EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xfa0ff52d of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xfa31c0ff pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xfa349086 inode_set_flags +EXPORT_SYMBOL vmlinux 0xfa4eda18 __scm_send +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa66468a unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xfa76685f mach_corenet_generic +EXPORT_SYMBOL vmlinux 0xfa8d330f napi_get_frags +EXPORT_SYMBOL vmlinux 0xfaa9bab6 tcf_exts_validate +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 0xfae188bf phy_driver_register +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfb0b9f01 neigh_lookup +EXPORT_SYMBOL vmlinux 0xfb13e3ad scm_detach_fds +EXPORT_SYMBOL vmlinux 0xfb31cfaf dev_change_carrier +EXPORT_SYMBOL vmlinux 0xfb512c1d vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xfb5b53c3 of_phy_find_device +EXPORT_SYMBOL vmlinux 0xfb5d0b28 get_acl +EXPORT_SYMBOL vmlinux 0xfb5f33f3 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xfb61591e sget +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb97bfd2 dev_set_group +EXPORT_SYMBOL vmlinux 0xfba9a3a1 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbaea507 pci_enable_msix +EXPORT_SYMBOL vmlinux 0xfbb154f0 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xfbb66b1c dev_set_mtu +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbe862c0 pci_choose_state +EXPORT_SYMBOL vmlinux 0xfbea40d1 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc036468 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xfc18db3b lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node +EXPORT_SYMBOL vmlinux 0xfc9e9fd4 agp_enable +EXPORT_SYMBOL vmlinux 0xfcb2017c __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcc22d3e pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfccbb608 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xfccf0841 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcdc8ba0 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf7d0c7 filp_close +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfcfa0fe8 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xfcfb488f devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xfd24bc05 mutex_lock +EXPORT_SYMBOL vmlinux 0xfd252fa3 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xfd28bc44 bio_phys_segments +EXPORT_SYMBOL vmlinux 0xfd28e5c3 devm_clk_get +EXPORT_SYMBOL vmlinux 0xfd3eef1f dquot_operations +EXPORT_SYMBOL vmlinux 0xfd698b45 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xfd77ffeb pci_pme_active +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 0xfdc0448e make_kgid +EXPORT_SYMBOL vmlinux 0xfdd2ae2e __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xfde1b03c sock_update_memcg +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 0xfe10e1aa touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xfe134908 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xfe172fa5 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xfe35aa4a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xfe3c94a3 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xfe43fde3 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xfe510e03 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe723e03 sock_create_kern +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9f3267 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0xfeab7f13 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xfec88393 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xfecb572b scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeea4cfe fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xff04f5df __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xff1272d9 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0xff1395f1 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff4679b6 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xff657140 igrab +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 0xffc73620 set_groups +EXPORT_SYMBOL vmlinux 0xffca92a3 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffde483a ata_port_printk +EXPORT_SYMBOL vmlinux 0xffeadd16 dm_put_device +EXPORT_SYMBOL vmlinux 0xfff8df3f nf_getsockopt +EXPORT_SYMBOL_GPL crypto/af_alg 0x1aad3b29 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x3bc3f296 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x4a896956 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x7182d9dd af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x7f74ec98 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x8cd7a6a0 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x912e7c5d af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xa892185e af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xdb889dbe af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xfa96bbca af_alg_release +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xf36a525f async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x60a9334c async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xb67ef3cf async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xd095aad0 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xe57c996e async_raid6_2data_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 0xb749a6ca crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xd7da1469 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x01a50177 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x3d5dfe43 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x52c17b13 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x563cc5bb cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x7b0e8aea cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x90b51c42 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xa66b59a7 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xc87d9ec1 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xe019c26e cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xe9f38848 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 0x3fd61f58 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x1d56cd8c mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x315c8fbe mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x417b12f4 shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x84c0403d shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0xc3d19900 mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0xf9273aaa mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xfb88d2b1 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0xfc47e1a5 shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x38396262 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x415bc6c4 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x4613904e crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x9ecabd0d 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 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 0x674f9572 xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x043d887f ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x09464a18 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x14163a88 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1bd023fa ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2347bfd8 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x29c03e08 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2b86c57b ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x320c8fde ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x45f65c90 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x48637611 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6149953e ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6aa10961 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x779aacbb ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x82e8ddf7 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x87ece8ef ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8c64a79a ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb3834fce ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb4bdf931 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbcbe3fc7 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd1345227 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdcc8397c ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea0e6dce ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf47f8a83 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0f9cc6aa ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x669b6f11 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc93dac60 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd4bfcf93 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd9302cf5 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe62f4533 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf81d753b ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfadd07b3 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfb19b397 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x6fa8abbe __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x75ec20cb 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 0x050bb3e8 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x079051c8 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0cb784a3 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x11315500 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1606da08 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x170fc415 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2f578ac8 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x37fd2a24 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3e9ab2a0 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4bf72e65 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5aadf0ae bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x779fc7c9 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x78655148 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8f762c5a bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xac5d6103 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc1bb448f bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc861501d __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe0962e1f bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe2ab3c78 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeb640575 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xec4e322c bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xee84fec2 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfcf79ea9 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfd4871b7 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x00b310a7 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x14947954 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4f4a45cf btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x60662308 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x88294a79 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe11ab4f5 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x076b3cad btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1ef06fd5 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x22688652 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x29db507e btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x69d0b36b btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x72a72f3d btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x87d74821 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa1eb7ab4 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcc256dbe btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcddbb102 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xef53b39d btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf8594c31 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x15260fc2 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1c8ed630 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x314ff915 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x547244fc btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x56f056c3 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x58d7f0eb btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x758fb489 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9d613c89 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa57b7401 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaab88de7 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf8e8c178 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x657d1bec qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd5e37b15 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x34702f12 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xc0c348d7 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 0xfda598ad 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 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x11e8984b edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2a72d642 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x34812beb edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x45b6b732 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4d395fbd edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x516da1b9 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x52a35f11 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5af09463 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5b00f96e edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x639bb9be edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x63e7900c edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x73d82ff1 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x795124b2 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7e4b4d6e edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8ff67d29 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x97099b2a edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9d94ed09 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9e4bc2da edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbb842fec edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcee91247 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd141267e edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd69326ab edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe21e14af edac_pci_handle_pe +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 0x240cf98a drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2d47ffc8 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x32a48fe3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe335a9c6 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe75fa973 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfb20cd80 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x5316579c ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x62df6b6c 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 0xbe06dcca ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0169fdf4 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x03e4c7b3 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x058f7cfd hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05d115fe hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x29663f5d hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2bd8d555 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x367054b3 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3f4ef8df hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x41c3b195 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x50bbed9d hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5382ed4e hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x547b66e4 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6041ecc0 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x65ae16db hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6f7b5b7d hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7ef65b14 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7f2564c9 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8054d209 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x83d4acdf hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x84f2735b hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x852392f0 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x87d5ad0c hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x89a9eaaf hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8c058288 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x99007109 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9e7e0cbc hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa736bfbd hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa4ab07a hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc82849a8 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd48dd84d hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd876b9b6 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe06d8325 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf921e748 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe022648 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe2d2b70 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xff7a950d hid_open_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 0xe673fc27 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0a356c3f roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x27689f44 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x32d6865e roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3b5ddd07 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3fb7c5f1 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9e18eff5 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x000e0524 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1ca5ee15 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1f53e7ce hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x22fe7d6c sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x48f4f4b8 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9f3163c6 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcf84f145 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd9b642e5 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xffcdc386 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 0xbe0c49d4 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 0x0653a254 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1801ab88 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x195dfd58 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x20560644 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2abbacc5 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x30b45693 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4038e2ba pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5b8ab6ba pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x61696d65 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x711667e7 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x771690b2 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa44cf5e4 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe0ee06cf pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xed082019 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf6158190 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0ffac74b intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2c282e44 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5cba704d intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x94d0170e intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc5054b04 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf10cde09 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf5016765 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x40040dda stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x55091f2c stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5a9df757 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xed7edcf4 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf139822e stm_source_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 0x00b0f034 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0dd71c6f iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3071814b iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x36015e43 iio_update_buffers +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 0x4c6eff33 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d95c7aa iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x524f00b2 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5d7efc71 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73660735 iio_alloc_pollfunc +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 0x8c96cbfb iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8eb7e3b1 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9072f2f9 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9557c979 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa6519b82 iio_buffer_put +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 0xbe37357a devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc3cc9a63 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc6de11f1 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcc4927bb iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd85f317f devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd9947d32 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe1dd5211 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe7dacbc6 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xffe1949c iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x86bd4dbe input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x03bf2de3 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 0xe7624168 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x337b2511 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x8eb736d0 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd7518f01 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xe87019c1 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xecfb7589 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf4ab11a6 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x52f9e0be cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x6ba600a2 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4ade6756 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7c7f46d1 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xbb94486b tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc3734497 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0dffef33 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x12ac05b7 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x21e76ccf wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x287a8714 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2d27c43d wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2dba9f05 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x40a17b2e wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4cf60deb wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4ff54f4a wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x88dc72a0 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe4d0878a wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf96e9ad0 wm9705_codec +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 0x0205f8dc gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1faa0725 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2aecb41f gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2f627b56 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x35f6c60f gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x452e3eef gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4da779e1 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7b9749d7 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8be4d26f gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9748fb4d gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa13b27d1 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcb521a46 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcb8c7ded gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdb419ba3 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe0315718 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe0789eb8 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfed3a940 gigaset_initcs +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 0x1397db4e 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 0x1a057ff1 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x28c5260b dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2d850f5e dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4062432d dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4427b005 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x44da9de8 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x45b74dc6 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4a46852c 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 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-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x55a94c69 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 0x375a2f8f dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5499dc47 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa9d8eb28 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc242157f dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc631c122 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf30df5e6 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xfbdf78a6 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x45e3c5a0 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xa2b0ecf4 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 0x2ab41467 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa4c7ff43 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xad5222ae 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 0xc3844a78 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd7f59326 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 0xf8493def 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 0x39458cb0 dm_block_manager_create +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 0x2a8e86eb saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x54fce5da saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa6ad7d70 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb59974cf saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc8621087 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xcb0f59d1 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe1dfa5ce saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe69a7d9e saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xef0152a9 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf655ab01 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x107daadb saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1a48ee14 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2e6d4f01 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x4e77e5f6 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7c835fe8 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb7f30c6b saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xfb709e0f saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x021621cc smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1015467b smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x28b08d94 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2c730a26 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3819565e smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x42098425 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4a942981 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4be83fd9 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5535b564 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x704c8320 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x779f6c22 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 0x81a01262 smscore_onresponse +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 0xa378fd04 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xca1069e8 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdc2a7afb sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe56c5538 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe7052fe8 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x918109eb as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xbf94b7a3 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xcb2bbbfe tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x0b330114 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x0eeb6071 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x15ddf368 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x235af33a media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x28921a9a __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x290aa015 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x46a27f23 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x5771446d media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x587b80ba media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x62da4ba5 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x71d750b3 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x8a151e46 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x985df13a media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x9fffdf33 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0xb612dad9 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0xe4fca71f media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0xf21fd4cd media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xfcd3cbbf media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x96ef4cae cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0c1c59ef mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0c2b95bf mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0e33a29f mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x11bc8a17 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x16cdab8c mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x267156f1 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x46b3ec5d mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5fb30a96 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6ded1484 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9c4318d7 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb44fb005 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbb9734c6 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbe78092d mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd684c6f4 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdb51c61c mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xded317b6 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe0c1f14a mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xebe97317 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xee064efc mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1211c0cd saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1baadea5 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1c6b2f8e saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x41dd3b28 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5b664b2d saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5c5f634e saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x69706754 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7b91efa0 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7ebb263d saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x81e975d5 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa522d626 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xad1094c5 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb1e09516 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd0b5d478 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd9a97e50 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe1cac6b5 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe2c9a261 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xefc8ea01 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf965ca94 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x01f3bb88 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3594932d 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 0x86b02cbe ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8e3917b2 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa93ee835 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc8369e2e ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd4038348 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x144f9c24 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x1c56b950 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 0x5a09bac6 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x63d95317 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x65588b0a xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x72d0e560 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7b38cdd2 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 0xd67f24f0 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x82cc9857 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x8a7a3d81 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x029d73c1 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x155ffb84 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x45cbf252 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4b0bd3f7 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x604899e3 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x63444656 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8cd7123f rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x90727eb3 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9d48eb05 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaa773a14 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xae555b0e rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbaa9c588 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcd8a74f8 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf5c46262 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfa3e5e04 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc7ba967 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xd7c6fc0e mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x2a923d72 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x9a2ab62a mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xace93ad3 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x9dae9e2a tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x6f53b35b tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x1278238a tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x89d9b10c tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x3fe24422 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x4ee395cb tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xb35d7589 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xa76d3f95 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xd79d8835 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x4a21d532 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x047462d9 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1d3c116b cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x30e3de16 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x33e40be0 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3fa62f71 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5a453056 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x601be6b6 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x678dbfcb cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6e39893e cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x91b03e64 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x925cda4e cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x964ec3ee cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9aed3eca cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9c2f5ace cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa8cbb318 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbc8264ae cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcc06bae5 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe4c9c619 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe501103f cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe854307c cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x4340a93e mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xefc11c40 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x263b16e2 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x51d41fd7 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x61f35697 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6e12e606 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x80adba3d em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x81cebe1b em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8321e6e1 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9395a179 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x96025765 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x97cbdd06 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x99f4c3e8 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa0349766 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa4be82ea em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb0535c74 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc284a55b em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc2b6bfde em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc32f89b2 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc9db4055 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x432c6aa4 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x6cb216a8 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x9b0fdd21 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xab9306ef 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 0x0edcdca7 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x1175cfc1 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x27f31d03 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x2f39f87b v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7d4b7ef4 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 0xf06920c6 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 0x1c4b1d2e v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x8b1241f5 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x18c2b150 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1e7447c4 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1ec45e00 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1f0f7495 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x22ebe066 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x306dee28 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x36ad8744 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3bcdc894 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4ca062ce v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5ce3a3fc v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6cf29be5 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x84c1b21e v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x84cc86c7 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x927ed351 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9cbf4b2f v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa286d7d2 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbbc80738 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbf842d06 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc3cf2150 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fcacdb v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc77bae81 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd3bed6ad v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd9fb61c5 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdde2e67d v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe274b1ed v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe6d24273 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xee94bf2c v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0143257e videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x10a0e3e5 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x196bebc0 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x19a56436 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1de721c3 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x251b4fa6 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x47bf7edb videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5b3df0f1 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5b3e2cdf videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7530ff0f __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7ee05106 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8ba96a3e videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x91892bc8 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x95e6290c videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x96282061 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb236b825 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb256eb8c videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc810d977 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd2e4835b videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe0ab7b03 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe439a1eb videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xec626fb2 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xed2f6beb videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xed624f60 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3f4878f8 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 0x7e41b055 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xbd7b256b videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xd24eca9e videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x3a74728d videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x9c6f67f2 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xdcb71cfc videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x01a7fba0 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x04a259d0 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2e9d9b6a vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x42d57d4f vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x525b00dd vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6ac42051 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6e5da541 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x72c15d94 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x78a337e5 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x819254b7 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8a8cce77 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x925d92d6 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x99be5be7 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd2d8b437 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdae3ba59 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf8a81ed9 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf9cf92ef vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfcda3104 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x9a90bac0 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 0xea023a6a vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x16bdf3e2 vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x37f7719b 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 0xfb199385 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0cc0fa7b vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0fa11520 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x169662ba vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1c8e8010 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1e1aebf6 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2426bbee vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x25325f74 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x266bb6f1 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x34ec2ee5 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x38f7ad3d vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3e248f43 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4208eb0c vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x550dbad4 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5582bb84 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x56f25b8e vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x63048676 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7c5d7014 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7e60ba50 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x86d11d23 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8cec75fb vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x924026e7 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xad67cf92 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xaef1fcdb vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc33208a3 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xce6ee7f2 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd173edd0 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdcf1c763 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdde76745 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xec5ab20f vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf7e95a4e vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf801c5c7 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfd57a07a vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x1e37c780 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0856548d v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c7ee4c6 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x13e320e0 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x26b79b5c 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 0x3c692852 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4352a1dc v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4f01a37e v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x529333c1 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5f6f4ab6 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1dbf3 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7136e48c v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x71ffa564 v4l2_subdev_link_validate +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 0x7c7444fa v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7cad199e v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x923215f9 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x93b398aa v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x94951b1d v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x959ee84a v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x980a9ad9 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9cb3fe66 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaa0a7a40 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb3addc66 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3fe3c16 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xea2c78e5 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf48f554b v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf8cd46d3 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfebc8a3d v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfeebd0d1 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff388bbc v4l2_device_register_subdev_nodes +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 0x30cfdf59 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x5c5a5e10 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x7bd442e5 lm3533_read +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 0x0a8c2099 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0ec1f0a4 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1ea52c5b pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2f857cc3 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x35c1b3d5 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x58e0a3cf pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x936c720c pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa3c88ed4 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc739f908 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xee4edb44 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf275c64f pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x7cd90cb5 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x82e6c630 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2e2c3656 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x71e69f6c pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb8a7bf0a pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xcb1b7098 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd3cd9c0a 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 0x191c0b81 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2d201199 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x34be28f6 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x365f606c rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x37785d03 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3a00a049 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4c645318 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x57c2c272 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5f294ff0 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9329fb8f rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x956aa78e rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x97f5ada0 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa842d637 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbe7d902d rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc191ce74 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc8fc6e7b rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd2f00e94 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdae41098 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdcbc3d71 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdd812271 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xde7ff4a0 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe11a4395 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xea112c3a rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfe5013a9 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x03893102 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0c2ff153 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x107b4b6c rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x29fb30cf rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x41db69a8 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x49c1e9cf rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4fd16967 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x6c4c9336 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xbf37278e rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xccc7aca5 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd49991eb rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xdb92727f rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xee82f119 rtsx_usb_read_register +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 0x14ad200b sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1fda0628 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x528a3aaa sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6707ab7f sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8611e917 sm501_modify_reg +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 0x03f72909 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x0bbc6199 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x60ecb1d3 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xf409f51a tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x6614b1e5 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 0x350a3cf1 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x3728a53e cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x38b43f3c cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x51086e96 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 0x0a7ddc8f lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2615a437 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x323fd2ae lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x681ed463 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa20e551c lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb0d1986c lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcdf4245b lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe41ba945 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x95ea0797 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xbe92fb75 st_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x02c55eab sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x033ec751 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x13e7c2b5 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2b27ae20 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x461870a3 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x46e85ce6 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4a3a4df3 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x55f13d47 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6524fc4e sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x76dbd732 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcdff7c39 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xda9465bd sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf2731012 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfc7cddea sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x101d994d sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x10954edf sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x12236213 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1639b6d3 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x29b60dd2 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xca91b38c sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd71d2703 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe1457725 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf1112404 sdhci_pltfm_resume +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 0x022e324b mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x02a766c5 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x07744abc mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c74e561 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0cd18517 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0d26e109 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0db7a60a get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x163d010b get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x22f7a1f8 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x25416d0a mtd_is_locked +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 0x3060f1e2 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x343189c3 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3eb07f60 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x49b6e745 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ec97309 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53accd3d mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5a579457 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x69b11a50 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6bf30b4c mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ce3899b mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x731961eb mtd_unlock +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 0x88e992ff register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8e8dd770 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9c1561d5 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa4c1e26a mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf60f73c mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb33fe00b mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc0be4e84 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9d799cc mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd0c4ec23 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd35f2dc8 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd40b5c83 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd608675f __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe824f2a1 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe88e2f29 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xef5994fd __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfa36c9ca mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfb405b0e __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x7fd94a78 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc4dfdf3d mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xca18709d add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd074df85 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf6ecc7e1 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 0x0f9b8082 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1e993f30 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x25cfcd57 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x285296d3 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 0x4699eca4 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4be19613 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5df2e5ee ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6c5216f9 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x926ae738 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x93a489e4 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa8b57fca ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb8528e54 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe54dc122 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfa899e1d ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xd68b0ac1 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xe552b567 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x087503cb unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x256925b9 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4e6e360a alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x556e8a78 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe68f0b86 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf8154469 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x10333bf9 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x133579c9 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x173d60de close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2c1fdd8c devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2ffaf95e safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3a5baa85 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x53538f43 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x56aa7801 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5f2f9431 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x89319db3 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa1cc6943 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa72b0b20 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xafff62f8 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xce70541b open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdceae23f register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf4b94204 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfb0536d6 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfda6636e free_candev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x35ea4f86 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4cfb3999 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x76458fc9 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc1f54075 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x159afd1c alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7ff91099 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x937cc24c register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe74061ca free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x7f7a4258 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xf3afd0e2 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00286a37 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x060d1469 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07aff148 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08428019 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a2b1d99 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e9efd52 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f14ee88 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12da55b9 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13b4273b mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17fd0663 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x188f73d5 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19027123 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x227e8b89 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25718313 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25dcb0c0 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x273a8490 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28006fdd mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a44830a mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c3ab15b mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f3e25b6 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x336432d6 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34944c5c mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x362c7e86 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36449238 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x385ffdfc mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39fd3184 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d97b0c9 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42519dac mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x445d979d mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44e68a89 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46267110 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4848f9ba mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4995c2c5 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a5c7893 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4aeaffc4 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c251961 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e715a22 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ff06581 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x529362ff mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x556d412e mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x560bae74 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56fd7bda __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a26d945 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b605c85 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5df1fb67 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65561e08 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67149bcf mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x683275be mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6aeaec7f mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c1cca8c mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d710900 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d9a0228 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74f4c623 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x751cedb4 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x758e9df6 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x787e4875 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7abc08d5 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c039a20 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cbfd494 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7efe8c28 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fc1112a mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x831c8726 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8344822a mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a17620e mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x917776d8 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x964fdadd mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98e035e5 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b46583c mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d221658 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2160bdd mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2515e8d mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4d78420 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5c82b2a mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7203010 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8bcd962 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa925c5d8 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa492d4c mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabe45326 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac78c6ad mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacf3b6ff mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaec1ab37 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0a4b984 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb25adcd7 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb498f075 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7d365fe mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb25c427 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcd337de mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe5e5112 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc179afbe mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc277f536 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2c4c10d mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc34c036d mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc45c48e6 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8b831cd mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb036820 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbc18394 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccc77ee3 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd2bf792 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd9fe8db mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfd69bfb mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfee51ae mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd14314b8 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd15bebbe mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1fcd565 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd60b7bad mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd78dd7b7 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd79786f4 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd876f26f mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd96cf959 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc320d78 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde37a679 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6755d0a mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6d99cf3 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9aa03b1 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea385571 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecbcea62 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef63c735 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf00c5ae2 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0ceb3c6 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2b6d092 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf74b9e33 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf816d201 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd348dad mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdb4000c mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02b2e36d mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04d4278c mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09f76cc0 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c189cf4 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x105b9794 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x140bc45c mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1475bd52 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x246cca1b mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2810d22d mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f3623bc mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30ecc3ad mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39841904 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d0aeab9 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f056e1c mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50b03d5b mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5465251c mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5aea9304 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6746f1e9 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68be2561 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f71b22b mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x756c3ad2 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x815ea014 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82075976 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88789a64 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cbc3ae8 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fd0e9ec mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7b93012 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacf2bcd3 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf431801 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb66c1eea mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7cb3ab1 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb884ef7 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd71ba78 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf7d928d mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1e685f6 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd456073f mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd561d5d2 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe15a2d4f mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe31898bb mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe498430a mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf177743b mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf56967e8 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf89a3ce6 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb468d11 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfea92656 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x6952ab39 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 0x6d3e8cff stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd80a4063 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xdedc5012 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xebad0bde stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2d4d8500 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x39f9ede1 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x456223af stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x47152d78 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x08c1ef0e cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1e9231e1 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x39b51121 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x39be9648 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x57905057 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5aabf993 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x62af756d cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x81779acc cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9981d671 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9a69f773 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa0288fd0 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa2a1426a cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb6d32743 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbc031c20 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe263f6b1 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/geneve 0x2107e88b geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0x605bea86 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8d801307 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xab2644a9 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc3fa6cf5 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xdd9dbf3d macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x92b14f6b macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x13bf59f4 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x17c5bf8c bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1bcac3b5 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x27131ed0 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4e19fc15 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6f9ba472 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa16c5c5d bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xca09a97c bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xce413b2c bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd67d7646 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x8b9ec891 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1e892934 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x636bd372 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc2f4783f usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd6ce6657 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3515fd3b cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x379be6a9 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x81a1350d cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbce19db7 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbdd7781a cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbf9cbdab cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc8914a92 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd49b22c4 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe87db6f1 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0c797698 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x13c44ac4 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x52b9c527 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7f72ca22 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xee5ece4d rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf3365edf rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x05515eea usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2bff9705 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x311d7cf7 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x31cb6b43 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x334ab101 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4dbf43ee usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x65a3d03a usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x68c9474e usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x73ec3334 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7923ad83 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x83720f50 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x84eb3945 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x856f148b usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x881d6178 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8b842830 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x91e7fb74 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x92ba1cad usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x958b8499 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9c1654d3 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9d9e6d37 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa5147f6f usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xab766d42 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xae38239b usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb02cac6a usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb5a742dc usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc6fb6925 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd0db3a1c usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd694dbdb usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdb8fb441 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe33cdac5 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe39bf70a usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfe3c4446 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x0ccb9484 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xf2bc426d vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x095d56f0 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x223404a8 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3634e8d5 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x46c7a81b i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4e48e363 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5496f76b i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7a55f453 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7c26c843 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7ee62d67 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x863ebd3b i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8efa8d7a i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb030b496 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb66b4ce6 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc6e0187d i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe1bc57c2 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf1349127 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x160d7efd cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x23828a2f cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x60ea2471 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xd2a5600a cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xa445eee9 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x161b7f70 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x2bf1a77f _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x4a2e224b il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x94c7a859 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xe3203f12 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 0x08c10e25 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 0x0f48dcb7 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x122eb9fc iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1bb5e817 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1bda6a1b __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x253faa35 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2655bde6 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2a0254c4 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3b836a18 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3d31c27d iwl_read32 +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 0x5fc750f6 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x61db3b45 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6642bd9a iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x71bb0bfd iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7fc24fb1 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x804a8f32 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x82b13c52 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x854010f4 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8ca1205c __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb8389c7e iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc4626c54 iwl_poll_bit +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 0xe108f7a6 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xef2b395f iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf1040b4d __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf1fb60ea __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf9dab208 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x33fa21e9 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4267c7cc lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x45bc6344 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x471afa1e lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x51ed0966 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6aad1f44 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6fa5d461 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x808c56cf lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8eb52795 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9a152a1f lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xabd8f5ae lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbfc673eb lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xce78dafa lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdaeb25e9 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe8f089a7 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf4d736b2 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x324384d4 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x584ef063 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x7c77cfb5 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa5a42576 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa7b65f72 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xb64e908b 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 0xeb40de73 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xfd210ad8 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x08644316 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0dd982c5 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1c7a8e76 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 0x3adefbd9 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x577312af mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5b5c0696 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5f63e661 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6126496f mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x90783487 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9490d123 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa5962c81 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa736d2f7 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa7a556a1 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xad7364ab _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc2530e87 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc98b6de9 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd26e63fa mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdec4dc80 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe958a81d mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0386019b p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x4563c537 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x811ba9db p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x857def4c p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x8fecb5fa p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x922901c3 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa7db0766 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa82ed22a p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xe9ec0b9b p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8c31d109 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa43bc06f dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa58f6950 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf551daac dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x074fb7aa rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0f539860 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0f800a09 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x11668bb9 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1739e734 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x214dde0a rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x29f50379 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2f64121d rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2fb89060 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x321368dd rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x36e17ded rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x660c5fe1 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x67e3ee3d rtl8723_write_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 0x7690f3fa rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x929e4909 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa0dc2249 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa799f82b rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb36198b0 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc8d47761 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdc202d7f rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdc5b9b1e rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe1bd9c01 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xed7eecfe rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeedc140c rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf70122d9 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf81f3a82 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfd751f6c rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0575a817 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b44b407 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b6a1adc rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0f3ee2 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x11dd5447 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2171ce61 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 0x2853c42f rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x292df5ad rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2f9d5d31 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2fb0e999 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x45b12920 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x47babf4c rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x686ec603 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 0x6f4009cc rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72b7ce20 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8253c149 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x82c13ce7 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6d97c9c rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff3a68dd rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x26f3d81f rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x2ba5791f rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3a1f3f81 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4d8a0064 rsi_91x_deinit +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 0x02965d5a rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0f948d3d rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x10426e07 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1743c907 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1e4419af rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1fe12152 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x20991944 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x20d73b9f rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3186f6ae rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x33ebf219 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3ccbc3d0 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x40e203f1 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x41d14317 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x52b2eadf rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x58443545 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5dfd19db rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6cb8efd1 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6fda6985 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x72cd487d rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7d6df811 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9431796e rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9b0d1d24 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa56d1623 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xad627ab8 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb0906f38 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb7724d67 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xba3896f6 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc1392e45 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc3f0b6a2 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc8749581 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd56edabd rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd6a04a1c rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdd361b72 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe481c204 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe7077b9f rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe974d332 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf123f592 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf35c13f2 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x04d1f5c3 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x1cae4ad4 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x31d480f1 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3e9edb26 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x571cd3f0 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x594b9a2e rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x6537511e rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x66d130de rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7282ff63 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbd1531fd rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbe522618 rt2800mmio_clear_entry +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 0xf17c82fa rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf3c0b63d rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x05a07a4e rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1320c1a6 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1c4c3f8e rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2425ec8e rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2522cd04 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2751826f rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x28f6e88d rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2d874f5a rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2fb8d396 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3687d926 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x39af28ed rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3c7b6b72 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4ec49344 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5467b3df rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x54f35bf3 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x57fefa62 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x584f2006 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x62b22ccd rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6a1e1230 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6ef8c8ae rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x73a07ca7 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x766508e5 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x76cec14e rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7a0c4d27 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8a889ab2 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8aded251 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8cc69003 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x93614435 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa26b27b0 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaa1949a2 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xac70cd00 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xae2109bf rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xba937a47 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbaa7dc4a rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc42d46b4 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc52f080d rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc5d7c567 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc5f5cc7d rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc83089a4 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd98acd99 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xda192582 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xda4d1444 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xebb8a8a7 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfa1ffd7a rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfc03b385 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfd813759 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x0960b00b rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x4ce0b0ec rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x98a2be70 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xc1b6284d rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xcdbbed56 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x45545c31 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x49513c6d rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x717774f5 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xe1e60eaa rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x05892c4b rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x076f7e2e rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1ca0a450 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2159b789 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2a44dff4 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x43dc14e4 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x841132a3 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x86f4ae80 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8f9cbab1 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x96eae7e7 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9d061b4a rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd20e682e rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd457583b rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd93f7731 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe2f49374 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xea48e064 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x30da71f6 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x82facd55 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xfab568e8 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x085e367c wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x093d07dc wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0a5f6d2b wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0a6297e2 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1015c1f6 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10afefe0 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x14703c0d wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b65b920 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x291eaa70 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4134c1aa wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x422047cd wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x52001b50 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 0x54e7372b wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5756ecf3 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x593405d4 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5cc0b254 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5dc0f0de wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x62c5b31d wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x69ff0d0f wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ff94b75 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x744680df wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7a69d8bf wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7d8bdcbb wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x83e56237 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x88a0b435 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x88c686d2 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x908c63e4 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9273d72c wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9d870439 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa3eced71 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2343669 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb979b136 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc52e2220 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xca93fe27 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcd3e8b24 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd80cd0ac wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdb7b3454 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdcdfb88f wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xde902af9 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe0c0ede1 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe8d731a2 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfc06cd34 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfd19ddee wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xff590b8f wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x454ec6f9 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x639649bd nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x6b7c9e92 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xaec15ac3 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0045c118 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x19847f7e st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x45ea3c8e st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8bf8f98b st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa6476c29 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb340207b st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xda4cf2f4 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xfb4662de 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 0x1d068d29 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x1dd4b699 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 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 0xe1ed2b42 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 0x01a2c583 of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x1665b1c0 devm_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 0x3a375eb7 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5cc17c nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x6e5b4b79 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 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xa02b7d91 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc2f18bb6 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xf0f42cec nvmem_register +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x2083cbb7 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x87e73a9f pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xf01e59e8 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0b01cf05 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x29089fbc mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa35d7ff1 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb738958a mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe8b760bf mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x083d7ba4 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1beab0e8 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3de00879 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4d186530 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x88726b33 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa39c517f wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xeb77f710 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x023755dc cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02df5d26 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0cc0dfb8 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x18763bab cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a4faf14 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2fb0375b cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2fc5965f cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x361e683d cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4d7784fb cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55cb705e cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x56c99a13 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5762108d cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x57f7ab1e cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5a9380d2 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5be5b648 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6396244b cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x68cb2087 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x697b01a4 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6a433fda cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x716d252b cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x76a44725 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7985f716 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7a628c08 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x811a7723 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x81386f71 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8630cac1 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8deee8ac cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8fc2b1e2 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97448257 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x993c83cb cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa52d209c cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb2664478 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb5afb74d cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb697571f cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xba19a150 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc1dab39a cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcacd09ae cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd14aa8bc cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd8e11664 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf0b03e8 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf8d8823 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe445bc85 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed23d18c cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xedc7111a cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf3f9407c cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfb527917 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x005556f7 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x077be284 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0bdc9112 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fa39138 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1a4eb90a fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x22c5a1be fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2408ae3e fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2e9cd528 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3abe7b83 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x44bb2e87 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4925ac9f fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x714bb878 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7447dcc7 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb61c13e3 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd16ca36e fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfea0799d __fcoe_get_lesb +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 0x051fbf12 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0fb5f233 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0fd04874 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a68c7f3 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a74cbbf iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d22e52c __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2738cff5 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x29656e83 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x30aa7734 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x429af0a4 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x488aabcb iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b4a38ab iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d1a5bfb iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4ef04582 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5fc836ff iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6afaea1a iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7170e70d iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74fb6dca iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a9aa7f6 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e0530a1 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x818eac55 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8a77722b iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x924d0273 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x947af65c iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9d5b59ce iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xad24540b iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb404e525 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb6e3c533 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc07ddc4 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc28f3cb iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc9aa14a iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4a40131 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4b79858 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc643d2d5 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc904514f iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca1a85d9 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcad4dd95 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb2d26b7 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc814ade iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf35903ac iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf9c2f1af iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff66de80 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0d08d2a1 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1d804d14 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x29989b64 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2c32ffba iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x36116b9e iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3896d4ad iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3e0aaa22 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7a4872c7 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7c19e962 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xad5c2a1f iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb1610b8b iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb4cf4991 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe12a398a iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe2742b36 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xebec64b3 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xee8eb923 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf4f45fcb iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x00d148bd sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x01d2cc0f sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x09f635f9 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x22869003 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2695a7fa sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x36a18aa5 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5fa1290d sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x64848439 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7799076f sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8d2734d5 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xab5977a3 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xac53c008 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb10f4ba0 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb82e802e sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb86c828f sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb99943c2 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdfdd8041 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe52c21ac sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe6c15925 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xec4c1810 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xee5683c9 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xef534f3f sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfde12cbf sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xff70ba9b sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d0ba2b7 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e51d047 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2ddf8018 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2f3651ee iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x387dd2a0 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x38f2f426 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3937db29 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x463f3f57 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4811f03d iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48b27e5d iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b1b0ba1 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4bd39cba iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5350e326 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x552ae3f6 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5642472c iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5966295d iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6558cad9 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6678e711 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 0x6a5394b8 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d3cc0ba iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72e72f9d iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x764bfb7f iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x798f7bf8 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x846fb5a4 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 0x882badce iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a7a771a iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9fa6c2ea iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3cb607e iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa691b2dd iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa6f67e0f iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaacade20 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 0xbc33ab98 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd3481268 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd3b2bfbd iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd613d1bb iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0912823 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf506075d iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9ed3e3c iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfbed78e1 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfdfa3933 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1e185297 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4f59bf78 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc3733a15 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe046aa7b 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 0xece46bbd spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x256537c2 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x74672a42 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7e5b464c srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x87f7f19f srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc1f53887 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd62a7de7 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x07936efc ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0e3cce3b ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2210c2ef ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x3b8bc50d ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x4881d0c8 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x9a5e1895 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc3397550 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x55115231 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5ead5332 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5f41b083 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x64c66bb6 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb1a909c7 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb5ae9c82 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xbd64b726 ufshcd_pltfrm_runtime_idle +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 0x893b367a dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9966eb3c dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb8bc2e59 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc2d3fedf dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0552ea33 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x068436d2 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0d32398f spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1dc2d573 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x31919d65 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3824033c spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x40cd8160 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x502e053b spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x72a054fc spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x73622aff spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x820d182d spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x82f07d36 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x868e7d82 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9332a1b6 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x990553d9 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbc24a6d2 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcba9912a spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd5cf25d4 spmi_device_add +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x8ff940e3 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 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 0x1b11c055 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +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 0x3cd3342c comedi_alloc_spriv +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 0x4ad5df8d comedi_event +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 0x6e062b76 comedi_dev_get_from_minor +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 0xa17a853c comedi_set_spriv_auto_free +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 0xc045f0a6 comedi_dev_put +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 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 0x0752b8cc comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x293416c4 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6b6896db comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x859263c4 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x8e7e17dd comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb27874b8 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xca8825ad comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xeb02b17d comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x1589f8d6 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x242c9681 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x646a8bfe comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x855b7f0d comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xaaffb667 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xcd375ce6 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xe8baee7a comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x35e4b70d comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x64ef4067 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x77ab1b00 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x9d21b64f comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xabdcb899 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xefa15516 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 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 0x00021e56 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0319256f mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x16945c35 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2fd333ce mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x367ee745 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4cea5ebf mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5284d490 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x631f72ad mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6498c129 mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6ae3784d mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7d73016d mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x84cada02 mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x913cee67 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa473dbd4 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb3e3a2f4 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcd20443b mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd82b54ae mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdeac54ad mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf6c75d4d mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfa367a5b mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfa89afeb mite_bytes_in_transit +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 0x10d2b328 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x357daf9b most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x3710f49b most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x7d064cbe most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x899135fd most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9a4cd64b most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9ac5e2d2 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9b127354 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb36885c0 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xed360abd channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xedc5e845 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xeedfa228 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x03052f5c spk_synth_is_alive_restart +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 0x17c47169 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x22ee4713 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x23a3149e spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x40c03c41 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6491e9dc spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x847c71b7 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8a63ede4 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x95e53b9d spk_do_catch_up +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 0xbaee5915 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x2cc36d52 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x62e154d4 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x88b382af __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x6b9b3602 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xde55e5c3 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa89857ba ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd2a732d6 ci_hdrc_add_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 0x041248f9 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x22ac7353 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4798f611 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x571ed7f1 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6fc78c1c gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x705a3232 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7e22efee gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8cfebf0a gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa8879cd0 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb0d2e57e gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc23c7fd4 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcb94f507 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xecce815a gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xef03b295 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfc807b98 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 0x8161b260 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 0xcebfe3d5 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 0x20eda4b8 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xa5a977dd ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xe4125217 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 0x174d5510 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 0x25cba28c fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3e2cee7a fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3e7c3a55 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 0x48dbb265 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 0x5895eece fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5f1a6c6a 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 0x6bb6d9cb fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7a23a583 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 0x8cf0b7d3 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9112f6a7 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x93aa4d3f 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 0xa5b93e1d fsg_store_file +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 0xb3986597 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 0xd468f882 fsg_common_set_ops +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xea693d34 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_rndis 0x02c4c900 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1691e1f5 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x42296780 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5cb811bf rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x62fa3fc5 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x72058478 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8f0240d6 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9566a879 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa3ce374a rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb4c74b7b rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbc8b480c rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdde81230 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdebcf810 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xeaf8965c rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xeb705ef8 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x00719df1 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0b6a17d2 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1249eb2a usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x19b0900d usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x208e79a0 usb_free_all_descriptors +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 0x2ee2279a usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x31dfcd57 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3731124f usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x376e54bd usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x47e40b14 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x600f6685 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6fc1ce87 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x71606021 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7f1f69f3 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x83369817 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8cb8464c usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8ed8e048 usb_get_function_instance +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 0x9c1a5a72 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9ded89f3 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xacea220e usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb4abdbae usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc6fb658b usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd119bb9c usb_assign_descriptors +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 0xe077537d usb_interface_id +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 0xf919ddff config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x03a53087 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x07cb8d83 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2223110d gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2429ab9f usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4050bcf8 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4446d988 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4e2837db usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5163989b usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6454952c usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6e962ab9 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8470125a usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9e03a1a0 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 0xb3e19491 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x058aad9a ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xf11eaeea ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x13049d89 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1d93adb1 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1ee85a18 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x23330f72 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x64181106 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6d6b13db usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x80366369 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x99849da1 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb2210f15 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 0xfd14cebf musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x7d5e7028 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xfbcc83eb usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0ac957fa usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0f7516c8 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x103646c6 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1b83af29 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3d7c0975 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x53624467 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x56d345d5 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x58078041 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5b5e1519 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6d6e8f0f usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x740605d1 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x83a96476 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa1a7e3c1 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa35f19ce usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa5e718e4 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa7065541 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb491463d usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcbab253b usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd877aab3 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xef7bfd04 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf8da58e4 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00fdf9ea usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0f7699f8 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0fca25ba fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x144e56d3 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x162ed670 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x173295cb 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 0x3476096b usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3dc4998b usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x40205d73 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4a0abbbd usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4e257617 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4ed3d05a usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x54b853c9 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x589ef526 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6509e6e9 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x697f90af usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7ddac96b usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x89c7271c usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x96afe72e usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9841f3e0 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa370243a usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd2fa6a29 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd8a43043 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xed41bf44 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0d3b3055 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x192a9dce usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x22b00f73 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2c2daf21 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x54746d68 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x73fbd8ad usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x818b60fa usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x832413bb usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x86479e0c usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xaf706bf6 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb4457fbf 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 0xfc348662 usbip_start_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 0x2cd490f4 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x3e31492a wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x66d893ce wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x71bde3de rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb9828ac4 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc40ef9b4 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd2fef743 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x270bf24b wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4b6ab8b4 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x674fa5b6 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8fcd9fbf wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9aca8672 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9b59ed44 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa98138b1 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb68ca1f9 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd94e937c wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdbe96ab4 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe5599a69 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf42d16c7 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf744ac91 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfbfa34b5 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x54046bc9 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x6b407b3c i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xa1c6147f i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x08b94477 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x26ba7a77 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2edf3ec8 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3858ecdc umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x5670e9bf umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x6c83d9e7 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x7accdbeb umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x85498957 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0080c162 __uwb_rc_try_get +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 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 0x15e8d98e uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x227e2531 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x39d32891 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3d093b79 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3f338b87 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x446287c2 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4610aaad uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +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 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 0x9313861c uwb_rc_put +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 0x9b37ec9f uwb_rc_add +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 0xbd488925 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbeb47baf uwb_pal_register +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 0xd3ed005e uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdf0f2ffd uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf5c85715 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf81c65d0 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfb4bb469 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xff77799c uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x3e10238f whci_wait_for +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x03abd9f5 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x098163f2 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x14a9776f vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1afa7059 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21ff3d33 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x23da06b1 vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x278a71aa vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x28d9a36f vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x28eb90a1 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x40e81da6 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x49ff962e vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x54a151c9 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5cbb6142 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x633103a7 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x732a805e vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7b7e87ac vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8305ba1c vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8ee3c546 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9e0733c6 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa01bf053 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xac6c996b vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb10ee27f vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6f0303b vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe82afd4c vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe9d2e207 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeac9820d vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xef2f3648 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf476798d vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe47a29e vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x122f7573 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x24f9b8fa ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3c075515 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa509d25f ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbe16845e ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x14c293bd auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x38e0d3f8 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x707cc233 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x719c4ff6 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9b53414b auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9b60b2c3 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xabe471d4 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb29b475a auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd3a1f0ee auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe0abab6a auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x2081c221 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xfa95c063 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xfbdc8c75 sis_free_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 0x08e4d8a0 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x33ca7a40 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x41b0d3c8 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/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0b086b0e nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5fb0f6c7 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x63e27a76 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8b80ff5d lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa7f403f4 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc48e7848 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xced6577d nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0000af95 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x010a1b33 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d3ff5ef nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e7878b8 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x165e9a73 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16d13336 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19f3b768 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d62e74d nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e0ef26d nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22b77d52 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x231dd9a1 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2359aae8 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x236628fe nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24487016 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26df3b19 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x279a9bd4 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a3821ef register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b13926f nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c47b225 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f148220 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f37df00 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30ea3d0b nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34fed881 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36054768 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a704f1d nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ad14e4d nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c887638 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cce2071 nfs_pgio_data_destroy +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 0x42a5f8cd nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4383d2e0 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46f18e57 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46f1f6f7 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47f7fcd0 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bf35831 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c6c0ca5 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d4c168e nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ecba7e4 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5403b429 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x554b419b nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55a87e5a nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57247f0a nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58326230 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a904738 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60b9e4e1 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62069a8c nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x658f0177 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x678b6b8e nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67a51386 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a24136c nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d495db7 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ec1f040 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ff9708b nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x707cc5f4 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71767a1e nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72a1c5c6 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72d3dd98 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x743da993 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x754569e3 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75c70af0 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77e56928 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x790e8e60 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 0x801982d3 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82e274d4 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8542ebe1 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86074230 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87902156 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c079b05 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c84afce nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cfe8396 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8dbb8905 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8dd3dc39 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e05017e nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9038948c nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x988a07ff nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c0dc7de nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f479e31 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fe0b119 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0ba7807 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3850e3f nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6e51b64 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8242e1b nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8441b58 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad9915ab nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xada8e244 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf2b1a2b nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb05fc6f7 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4d31a3d nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8530354 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb606490 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb9a0006 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc4a057b nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc02c352a get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0fe4c10 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc66d077c nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb999278 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbd98f50 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd05edd27 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd12580c1 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1872252 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2a40e6f nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5d2757f nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6b9c7fc nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8ee3712 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbc6dd09 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde967443 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe167dcbf nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1f9e69a nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe242b715 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2976349 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe345b5d1 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3f473c7 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe48fc5b4 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7941c83 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7a2cc1f nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9f7d312 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea1f3a02 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec7e5b62 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf04d654d nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf104cbdc nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf648cc8c nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf65b2595 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf85ab585 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa89dd4d nfs_fhget +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 0xd0cb00ce nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x058bea64 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c0485f3 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0dfa052c pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x123fb9dd pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1563ba64 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17646952 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17a47256 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2432a9f1 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x283ac8c5 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x290b5ce7 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x294e8154 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33628fca pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37c0335c nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a18509e pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a79ed77 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ffe06c5 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46d8c2ad _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49782122 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d176cc0 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e109692 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e91af70 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x586274c5 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x589a0de9 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edf35ff pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6410b278 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66fd3653 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6776c628 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78f3f2f0 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cbf551c 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 0x8439b5d4 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87f4212b nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92f41695 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x960cfd1d pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96607696 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96867c41 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b7ce883 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaad46ace pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab67b4da nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad62705f nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf94bddb nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb20f1a98 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4364c12 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb48c1792 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb3a726e nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf5f9d16 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1829f7a nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xccf8d35b pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf4503c3 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd031329a nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd191795a nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd50abb80 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd54319fb pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd520b23 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe15da005 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe50fd579 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9d15dd5 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeed43fe5 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0aa6089 pnfs_generic_pg_test +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 0x2ec87e47 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xdbf5b8c5 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xdf85614a locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x1a518746 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6649bf2f 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 0x3a283a9b o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3d73033f o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x45d4b0f3 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 0x5c8f9680 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7acfe134 o2hb_register_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 0xa9ba8efd 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 0xe47a0188 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 0x1186b4b1 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x43825ab7 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x59337b4a dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x8073003c dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x89c968c4 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 0xe20425a0 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 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x57c72ca8 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 0xbad1ac7e 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 0xcbcdd50b 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 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 0x351d813b notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x4ab28e6b 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 0x03807c56 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x84f14253 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x3a1a2542 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x52864ad2 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x54d79761 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x652ff7d5 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xc7498e30 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xe7737075 garp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x25a6a4bf mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x641b25f1 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x667f0f72 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xbca8a21b mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xc721b226 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xe867e07e mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x5ce5179c stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x8c252a76 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x078cbf29 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xa2614e92 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 0xcb5e5391 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x026d998a l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1c6a1d0b l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2261991c l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x361beb48 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xcb99ce3e l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xcbdad950 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe95517ba l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xefb39e4a bt_debugfs +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x118c0e8a br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2abf7a3b br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x68ac9299 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa87fe9e2 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xabba89e2 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb5622ede br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd5b8b82a br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe14fd956 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x3fbba231 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x91043f52 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0b1cdc4a inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x18772d50 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x208ab1d0 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x21321fea dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x24350fa7 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x273bdc9f dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x34c26535 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x386ee5e6 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3f6df61b dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4310a0c4 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x471fcd26 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x473b0d76 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4d8a7b59 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x532f4f02 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5597f497 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e7b68b8 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e9b3ade dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x72c83ad4 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c220044 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ebf0ecd dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x88c56f3f dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x920b4ac8 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4c6d87e dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb039a5a5 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbf62ad17 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc40104ba dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc53ed7eb dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcdd70d5d compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf990b7d dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd02ae6a7 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd2d48438 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4909c48 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe73148c0 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf166b4e5 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3eb255c dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf7d3519f dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x04544b51 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x05bf60ba dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3ae64ffb dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa8c34a9f dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb1de2dfc dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfcd53e3b dccp_v4_connect +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1f41aa87 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x2f1ca48f ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd725b938 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xec1ab485 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ipv4/gre 0x5a29e209 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xf8709292 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0f975cc3 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3e851dc3 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbf6f5f1e inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbfca3885 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd85da834 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfcc71653 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x661eeacf gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1ee4efe3 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2a422892 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3358586e ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4f40f5cd __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5f6dbd6e ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x643ec862 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6c299058 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7986467f ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8527e868 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8f11a0ce ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9f952d08 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa45c8371 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb538c977 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd7df6dfe ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe974feb0 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xc7202bf3 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x36bd0bc0 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 0xbd74f997 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x20318b69 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x82b80fb1 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x8519c8af nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xac569f92 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xe8e90e40 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x2c5f5121 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 0x258de365 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2b5abb5d nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa17e440f nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbef2da99 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe529209e nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x67b3af2e nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x06d4139d tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x53d4eac5 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5a6bc27d tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8e48a22c tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa21ae131 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5eb4e2e4 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xaa4aac1f setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbd6f1d51 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd744025b udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x18fcd4fd ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x46a03327 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x54a4e34f ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x831c58e2 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x8c12469b ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9432f5f9 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xcfa8fc1b ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x20344728 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xa1c90887 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x133bb15f ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x570205be nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x5e01b34b 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 0x796bc338 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x3ec1e69e nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xa2442304 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xd37122cb nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xf4cacab3 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xf575bbc4 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 0x535b9147 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2d7fab2d nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x480319ee nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x70409622 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa8c5b1c1 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbf0fdaea nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xd54252b5 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0bcd76d9 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1517837e l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1742a401 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2010fb65 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x35033840 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x46fd5454 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4743c17d l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5dd0e620 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x694b9b09 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7191e15f l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x825f2856 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa70d87ba l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb0f262c5 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb409028f l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc18f4150 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeef62b07 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x3782eb2a 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 0x3d7edc1c ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x429b044d ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5ec6f2fd ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7e8f113c ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x85fc1cff ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8af4c28e wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x90659e10 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa74b425b ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa9c34a23 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xae0de5f6 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbcdadf88 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcd3270a7 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe02ede3d ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe9228721 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf557f7e3 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x68b8e8ce nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xacf05f06 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xde8ed532 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xdf32ebe8 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x007ed80a ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1f894eb7 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22b9f2bf ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3066abf8 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 0x46ed8e2b ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4e541d3e ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x68004d1d ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x77be0b10 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x791c25d9 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x796071a6 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 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 0xa7ce8c32 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb07c030a ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb6a10335 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 0xe3cb6635 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xed1ab802 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf6bcf598 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x145e4523 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x67949d6e unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x71dc3aed ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xfb9f2beb register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x049214fa nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07cda916 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10fb2e70 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x136dafc5 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x188be365 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ce925df nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2036ae34 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22628415 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d3e8d4a nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2edf475d nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x310f689a nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33fd146c nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34023b09 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x380cc52f nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38f23591 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c3ef29b nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d5bedad nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ebcdd82 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x409ff551 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4107b43d nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x410c2f3d __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4151cb85 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46d1f2bf nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47b0ee91 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x482c170e __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a000542 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a6b96c8 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a762e78 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x511f43ed nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5390e107 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53df7636 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57840d95 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58f9a4ef __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5eb7e8e9 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x617e54a5 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6240723c nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65d8dffb nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ca884dd nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6efc1769 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f8055f9 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72a997d3 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74aa0725 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7838b733 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x834999d0 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x867113e3 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89ecc9a0 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8bcbe462 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c2e09fd nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c3e9d29 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90018797 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92e34924 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9528924d nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96f2dd0c nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a2e8103 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9afe4135 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d8ca570 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7eb4a34 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa197f10 nf_conntrack_register_notifier +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 0xb831e971 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8a6ccad nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc02de305 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc19be5c7 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1e2cf5f nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1fdfa25 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd6922ce nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd793d175 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb79aea5 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde55f31f nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe31478e3 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3cfc617 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec63b5b6 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2e664b7 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3ec13ed nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5ed0d94 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6b6ed82 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7aaf79a nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa873aa8 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd0d2604 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x25765201 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xde20a0b3 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xc03faf65 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3e5b221f set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4e1491bf set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x54fc1cf3 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6dc23e87 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7bf87262 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9d83c1cc nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa92641ca nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc291aea4 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe6460be0 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf1966498 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xc610168a nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x264e51b6 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc6f01371 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xcfee2ac6 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd1cc4dc4 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x4b51ff31 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xf89811c1 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x26ee61e4 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7e10bf9b ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x87442c94 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8d76f10b ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb036934e ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xebdebc8e ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfe3c0993 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x37821ef0 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x50ed2b66 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x139af024 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x60e6590e nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xd5e627de nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xfc33dc5a 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 0x444b1190 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x53ea7ca0 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x53f7fd47 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x83bd2943 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa53d55c3 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa750e3d6 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb16b49f1 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xee15cfe3 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfed5a57d nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x33ce7097 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xa5740b82 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 0x1cd85ae9 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xeebffeaf synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x090de47d nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0c0d2c4c nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x14498496 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2ebfc71a nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4813bd8a nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6237a7e0 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x698f9417 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78a91d7d nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9358979e nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9383dde3 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9c3179ce nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xad28520f nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3b29112 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb8717929 nft_unregister_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 0xd1ad7249 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe5ac9566 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfd42e0a8 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x04a087b4 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x06312489 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x15acc0be nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4cc4044d nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7597aa15 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc496f3bb nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd7edf6aa nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x26a2b422 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x6fb8841d nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8a6e6328 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x0c18124e nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x727425f2 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x95a29e23 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xae7b384e nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x20d9d72d nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x24bc6edd nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4e7a18bc nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xc1324fce nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xc376aa43 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xe1b51f51 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x29157d15 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xbd1dff8b nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xdaf4dfc2 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x81af8092 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xae264abf 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 0x02f963f2 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x034d58f4 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x05207f91 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x07bea67d xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0cc7aa09 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0cdee8a5 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x134ce3d4 xt_request_find_target +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 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x49900215 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5c063a1d xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x661ddd19 xt_replace_table +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 0x86f8db54 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8acc1050 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x96c05ed2 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa2400000 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaff6ba1e xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc9ae5238 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd270f25a xt_compat_target_to_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 0xf7796592 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf81f2bfc xt_register_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 0xa3b6d7e5 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xbf323e76 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xccdec6f3 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x24199bf7 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x5f7b7e32 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x6363b219 nci_uart_set_config +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0fceefb6 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x276394bc __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2d974f8c ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2fa2f6e0 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x32b8c2e7 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5c2c942d ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x90bbca96 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xba7d5e44 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc988d93a ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/rds/rds 0x004d8b4c rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x012b1da4 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x03880108 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x04c0c207 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x176fb890 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x1fceb092 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x27fce0e7 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2b8639b4 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2ddb6281 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x35d8280a rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x404397b7 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x494587cb rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x65f18139 rds_conn_create +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 0x8461fd86 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x87bd5b2b rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x8ccf9987 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xacca90a5 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xbeffc7f1 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xce98efd4 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xd24ea17a rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xd557a480 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xe1621075 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xf0534d64 rds_info_register_func +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xd84485a9 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xf908543d 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 0x12967a49 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7ca985f5 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8647e623 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 0x001a3c99 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03296718 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03a7684f put_rpccred +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 0x06a67123 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06d761b2 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06daae35 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x070935c3 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x088b3bb0 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x095f9bd1 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b1dd07d xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b1ea295 xprt_destroy_backchannel +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 0x0fde2f4a rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10181f4b xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1111cef3 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14bcb1bc xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15a6ea1e rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16d52725 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16dff68a rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x171b0c4a xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17e71d8f svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x181cf249 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19c6e5c4 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a6b67aa svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a9d8a30 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c1af848 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f21f1b9 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fe1c474 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x207a6ce2 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x208053c8 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x221a7713 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22301f77 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x232e64ec rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23dcd33e xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23efb405 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x258d2c46 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2642d224 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26d274e6 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bc35260 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c292797 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2efe0d2b rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f2a1646 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ff6fce9 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32e3e550 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33c8cc2f svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x360a8f74 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38081714 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x389d3f99 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38cb0993 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aa92291 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aefc557 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e7e8e37 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41d0181b svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43c2f69b xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43ddf0a3 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47922032 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4882c692 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49fc950a read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a4e7300 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4acba6a3 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b25f428 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d4557f5 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f387bf0 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x505337d9 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51619c26 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51b08efe sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53b15ca7 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x553a4148 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5682f191 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x585582fc svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58d3b1ed rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58d848eb rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58e019f5 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5909a578 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5afd5358 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e7e4ec9 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ff44e93 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60d543ca unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62d5383c xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x633a1504 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65f3370f rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aa4b87e auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b31f4a1 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e1b15b9 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e2c1f5a sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x712f8bf8 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7469bf6f svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x762888bd rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76375ae4 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76bb0190 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76e9927f rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x778a2c6a auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x782371b8 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x791b698e rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7afda3d3 rpc_destroy_pipe_data +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 0x81e096f2 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82d82ac1 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x840450bd rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8480fba2 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87f6df01 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a8b3588 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d248780 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e526054 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9002b674 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91bc5e35 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x935c40fb svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9722a32c rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x976c3d99 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x986f58fc svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x995b2873 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a1f905f xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b643e2f xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d198f46 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d624698 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eb11b13 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f31522a svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa607b8b7 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa91bffcb rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9baa55d svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa4e52b5 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaacacb48 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac5a912d rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaca6d669 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacdcd1b6 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad26f90a xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf15b698 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb01bf260 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb07f50c9 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0cd6fd7 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0cf48db rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb164783d xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1cd771f rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb271d696 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb31b68cc svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4b0f483 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4d1223d rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4f16ceb cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a81ad rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5847b85 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc608140 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd3b3607 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdc171ec rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe0a728e xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc03c4768 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc050f731 rpc_put_sb_net +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 0xc5027860 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc74c6c07 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7bbc6a9 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8dfade2 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca8aec97 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd8b390a sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0dd94e4 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd22a2e02 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd534eeee xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5871757 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd59e3df6 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8486a70 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8ecd8c5 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9e0f8bb rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcd89279 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd0e4236 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd976f1d svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf3a71f2 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf7434e5 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfde38a4 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0baf656 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0bc544a svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe211a1fd gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2cb1ea4 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3f20ee4 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5a365b6 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe666d909 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe771b2fb svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7ace7da rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec42088b xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecd71f4c svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeda7dc59 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0c21e4 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef517d0b rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef7f734c svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefdce7d8 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf009f25e svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1cff00e rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3537567 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4049bfc xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5987cc9 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf60c671b rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf73287b0 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf75852d7 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf764c368 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8f53e9e rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf949ee4b rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbca9c7f sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc09c547 svc_sock_update_bufs +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 0x2c374a7b vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44a715b4 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44e156dd vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4680280a vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5cf8bf94 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x656bfd5a vsock_add_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 0x80461541 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x95eb3287 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bee5b8c vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc2cc8d2b vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd86f7d20 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf16bc678 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf6825f75 vsock_remove_connected +EXPORT_SYMBOL_GPL net/wimax/wimax 0x16e15f0a wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5a7e1cd9 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6bf52e80 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x961e83db wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x99132ca3 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb23ea84a wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xcc64eef2 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd5d0a9d7 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf13521cc wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf345ef25 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf34a5c3c wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf5808bef wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xfebc77df wimax_msg_send +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0ac1e812 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x176ec5da cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x21ae060f cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x479f243f cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5856411b cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6316a66c cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6a0170ae cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7595a237 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x78aedf9e cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9d23729e cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbbe8ed9d cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe83a389f cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf2c786b1 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 0x14b73f6d ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x460413f7 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7cdbe99c ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe1da4062 ipcomp_output +EXPORT_SYMBOL_GPL sound/ac97_bus 0x0bfb3d43 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x7936d19d __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xadff1b1e snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd 0x0ad49563 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x52e6890e snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xa8480fdb snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xc114e916 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xc2433ccf snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xf3d69c5d snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xfb445291 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 0x69a67092 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x99fe72c8 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9dfdad48 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa0958cce snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa694bc90 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb2358947 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb3917c6e snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbed5ca2c snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf46fbe44 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1447c14a snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x21ff26b6 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2ddda783 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x56dce4f3 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x65dc3eb2 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6d9dd8c9 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x802b8036 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8a2ee711 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa7f9f496 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe2c8e2f9 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfc1be556 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5c9cb1c3 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fe04af9 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa1510676 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd214334b amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd3a00a9e amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xeb23d62c amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xebfc9b29 amdtp_am824_midi_trigger +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 0x0db5672c snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0efea823 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fbaf229 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x104fdbf0 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10a144e8 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x114d8c85 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12b2b735 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17ce8e63 snd_hdac_stream_timecounter_init +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 0x2a876686 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2bde47b5 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2db35687 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e5fa0dc snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x340b0079 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34a7b46d snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b22b674 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f51f95c snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x408d5cc1 snd_hdac_is_supported_format +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 0x44fc0284 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4537ea95 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ccebbc1 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e24e7bf snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e2d1ca7 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55dc3106 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56272e04 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x582d09d5 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58d6c498 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ea6cb94 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x749582c5 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77553a6d snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7805af17 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79ae6699 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7feb8cba snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x807e309c snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85340bd4 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87c4ec12 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c2c05cd snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e3c6d0d snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x932f447a _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x951246ab snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x98d6d029 snd_hdac_get_connections +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 0xa068fc54 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa11a54eb snd_hdac_exec_verb +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 0xafff3e7d snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3547589 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4024bc8 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbfc5d947 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc64a36f6 snd_hdac_refresh_widget_sysfs +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 0xd1e8fba2 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5ca29c0 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd678d266 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9dcc339 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 0xe76ed4c9 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe77db77d snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0a58b91 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1450ad1 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5e55c59 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf809367b snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb3da3e4 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff597636 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x49cef9e6 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x54d86992 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x60fdff0b snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6c5e050d snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc54364b1 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe0008391 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0021b9ea snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03dd3b00 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05b0ff0e snd_hda_apply_verbs +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 0x0740f976 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x079b2d06 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07bc36b9 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a324953 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a7b93eb snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cc7851c snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1374142c snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x164bfd06 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1717c768 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19166ecb snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a0dbdc6 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fac98b3 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x223c90c6 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22f83798 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24612cff snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x253641a1 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2635506c snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26a74b82 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c274b6d snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f06dd63 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34d1a4b6 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36c6bfcf snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x376e65af snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3848f448 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3aa35ecf snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3afb5df5 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c171c7b snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c20148c snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cd2400d snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cf6a51c snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d4e9dc7 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d83bfa8 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40ebfd63 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x432b2a12 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4361b3c3 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47dfe297 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49dbdce2 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fd0f2e8 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ff0103d snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x504e05c8 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52c912cc azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x565ad91e snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x573d0566 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a9f6151 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cbd8195 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d5795e2 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60da370b snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6464665f snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6485df38 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6636ca73 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6741cb0c snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b3a32f0 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ba554ab snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bba23a6 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cfdf544 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d1ce8c3 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d79d970 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6decf668 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73f58100 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74bd0e13 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x757f8a84 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76442ab6 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x773fb107 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78c736a7 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7aa44c91 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b71b753 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cf13aa8 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d1c18e8 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fe07756 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85492177 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86084765 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x890b48f9 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8aad1b49 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b83061a __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c42de48 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d7cbfaa azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95069f9d snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x990639a9 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x997bbc78 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bea785c snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c2fc37c snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1c4d1a3 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2ee8c1e snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5d50fce azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa61e647a snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacfed8e4 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae435d0a snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaee6a12a snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2550d87 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb362895a snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4409d50 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7743ec9 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7c31dd2 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb84dff61 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8f437b7 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb90b702f snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd6d4317 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0ef6b06 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc395b526 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc440a96a hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6066a3b snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc707b7e9 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc843985a snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf776b73 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2c47844 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd38f2880 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd72b2dde azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbce35bc azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdeb49c08 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdfb19a30 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe20b60e8 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe68f625d __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb67a288 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec3a8ab7 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed1f8ab7 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2e33b7f snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf410f3bf snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf684c590 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa8d2ecf snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfaedb92f hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb5dac36 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0f03850a snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2a2513c2 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3f43caa8 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5903b64b snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5ef8ba76 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x749cfed6 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 0x773af4fa snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x86e4b4c4 snd_hda_parse_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 0x8b37de4e snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9305e1a9 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x996cded9 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9e00a42d snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb51476f1 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xba249b5f snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc11dcc2c snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe313a8b9 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe34bc4b4 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe564fd3a snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe7881586 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xebf98a55 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf71e27d9 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x1585e6bb cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x5cf8faf5 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x104ce708 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x38844755 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x176261e7 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x60ba82bf 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 0xf572d97d cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x786b2ad4 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xc5f6a7a9 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x916911bd pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xaaf8e8ab pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd269641f pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf64cade4 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x1441c5d4 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x293639c8 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2f3f6d78 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x96779084 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd986688f devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x75c81b0e devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x088adc96 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x1fb92f76 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x199d30ad tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x2cb5963d tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xcf742881 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1d21641b wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2119492e wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x57913e1a wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd7060a3e wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xf8d31c0d wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x9d7e36ac wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x6df165a3 fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x6e0963a0 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 0x02d82775 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02dd743b snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02f65ec9 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03f4f1c0 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0412841a snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x043885c6 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0479a6c2 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04be0ebb snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x051bd879 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0890b7fb snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08d5a7d6 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0976ed6d snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fc4ebc6 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1236c0c2 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17976ca3 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18d03acd snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b0a59ff snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c163ecc dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ed1e30c snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f0146b0 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20a48d10 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2124bfc5 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21a5f2aa snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2283469f snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23965d8c snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29e91dab snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a912067 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30d75bfe snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31f61870 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3241aeb4 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x328c6d8b snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32ce5b0e snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x337d2dde snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x349b04c2 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3aafbd0f devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b8c4a90 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b95ed45 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cb3a4cc snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f95453e snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40873937 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42df3c16 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4499bb3e snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4573a3a0 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x466a5395 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4864660a snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49546d78 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f4e8ce9 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa49f29 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51f7c152 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52059e94 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52a96cf9 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x582e037b snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cb97a7a snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fca4c96 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x607170b6 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x637a5758 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x651ffcbc snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x659614cb snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68e89a9d snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a529fcf snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b09cc4b snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b4bb10e snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b8e766b snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d0e57a3 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fe1d84f snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x733531b0 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x742575c8 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7447b5a2 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x757404c3 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7576bd47 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75ba5d26 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75e17f05 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7972e057 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ed1f143 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f0c45e0 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x803f2e4e snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81171d0c snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x826d4080 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85a7f7ef snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8889e95e snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x894badfb snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x897c5520 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a705794 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a9d77aa snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ae7c676 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dd32324 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ff5d1c8 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x988d0716 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99d4c963 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d367ea5 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e129a3f snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa002421e snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0053e12 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa30bffd6 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa89cc30d snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab513aed snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabeeb97e snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac6b1eb8 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac9aedf7 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae500f4b snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaeadb9b7 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1153616 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb225c293 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2c5c376 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb86e13ad snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba84eab9 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe31139a snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe8dfa6d snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc112415e snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc157872e snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc402ce4f snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc477214d snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5a4bde6 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5ba27ea snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9dda1e8 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb8d606b dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcba2b48d snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce6a4ae5 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf4bdae4 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfb19ef9 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfcd5764 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd14033f8 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1516e55 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2a30a1b snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd59aaeb1 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8684cdd snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda2932c7 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdab3b0dc snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdde563d1 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde9766db snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2dbd856 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe49a9d80 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4c98e7f snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6d23fd8 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe708021e snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe91c94b6 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb174667 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 0xee5b43d5 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf03792da snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf212b8de snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf311fe72 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8366e82 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9089c95 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf973f739 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb53cc69 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdb93118 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x26dbf80c line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3ef7f80c line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5731d91a line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5b494272 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x61d235c8 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x625c1a55 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6e280e19 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8bc992b2 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 0x93592dde line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa07f316a line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa982262d line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc1684fe8 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc2feb923 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd630bb38 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfbe1ad7b line6_suspend +EXPORT_SYMBOL_GPL vmlinux 0x00285f87 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x002f2e69 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x00344636 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x004a25cf kvmppc_sanity_check +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x006a2c66 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x0071c29f usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x00724f74 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x0078d8e5 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x007f7fb0 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x0082124e tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x009e3389 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x00ac0316 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x00d49693 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x00eb91f2 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00ecee47 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x01031e6c crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x0104ea51 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x01052cba scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x0120a33c regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x01327feb rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x0161ad06 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x01afe3b7 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x01c32e03 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e79745 of_pci_range_parser_one +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 0x0275412a ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x028bb77b ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0294e51e __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x029c9532 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x02a909cf ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x02ad4f7a of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x02ada229 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x02ec1974 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0303190d vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x030619cf xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x033149bb xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x03382956 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033eaed1 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034a6b10 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x03645dba get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x03884fc0 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x03959c14 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03cdb72b serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03e62e7a powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040a2ff4 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x04104af9 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x04172654 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x046304ef pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046df49c pci_user_write_config_dword +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 0x04c696c0 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x04c832d1 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x04d2c705 kvmppc_handle_load +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04ecf351 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x050cc39c flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x050f8f38 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x055bf9db crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x0569d76c pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x0596956f tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x05ad80bf sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x05bb74e5 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x061873de pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x061c6e18 wm8350_gpio_config +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 0x066beeff reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x06a9711b ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x06ac3408 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x06dd5b82 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x06f3e2c3 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x07089945 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x070ab54a pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x070e35ea regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x071daa54 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x0723789a tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x072d7da7 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x072e282b debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x0759e608 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x075cef7d devres_add +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 0x078aa54c blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x07b16d0b spi_unregister_master +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 0x07d76528 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x07e70966 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x07f7fde1 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x08269005 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x083703a8 get_device +EXPORT_SYMBOL_GPL vmlinux 0x0839da9c pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x083f1e01 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x08408fca fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x0842aa74 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x086531f3 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x0886ba22 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08964be8 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x08b685c9 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x08b6cf5f usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08d9bd43 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x08e22ddc usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x090b867d pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x093e2f0b vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0952b802 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x09627a9e sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x0979cdd7 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x097ed5e2 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x09aa966d max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x09c2b688 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x09cf0639 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x09d5643f irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x09e003a8 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0a02100d ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x0a195538 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a6f27f2 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0a788d95 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x0a82166e pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x0aac8e44 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x0aadc99d da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0ac37156 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x0ace26f0 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b08ec95 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x0b0f1806 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x0b121b46 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x0b37749f regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x0ba8f069 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x0bb243fa wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x0bd251e7 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x0bd2bfde class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0bd42f22 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x0bdcba80 kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c145f01 fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0x0c1edb62 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c3f82a5 fsl8250_handle_irq +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 0x0cfe5739 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x0d135358 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x0d176a9d fsl_spi_cpm_irq +EXPORT_SYMBOL_GPL vmlinux 0x0d378534 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x0d4239b4 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x0d43da37 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d61f4b3 aead_geniv_alloc +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 0x0d9b1544 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x0dc3cd5e ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x0dc74630 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x0ddacd2f dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0de811eb wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0dfeda74 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x0e0111b2 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x0e54e06f rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x0e786802 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x0e91a81c gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0ebe9f5f virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0x0ec61473 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0ed7ae0f irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x0eeea668 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x0eeed1f3 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x0ef2856f __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x0efa5f43 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0f0adfd0 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x0f12e5f8 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x0f16728a of_platform_populate +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 0x0f7d8c0b of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x0f7fe99b __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x0f8bab1c gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x0f92efdf regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x0f9d0a6a pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x0fa344d0 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x0fb49d11 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x0fb980c8 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x0fccbbd8 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x0ff98f94 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x100093dd usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101943ad __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x104b7e3b rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x106cb40a inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x106ef091 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x108a2d52 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x1096774c __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x109c8da6 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x1122e1ed dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x11380c4c kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x113e015c usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x114597a5 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x11650411 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x11e1a44b crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x11e5bc16 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x11f89c21 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x1211d3a4 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1284e89e to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x1286e507 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x1294ea97 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x12a3126c __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x12a97c5c ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x12b0b3c2 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x12e34d9f register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x12ee8595 extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x1318e0ec pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x135965b1 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x1380509d bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x1398a0d9 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x13a5f3d7 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x13a6328b debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x13aa8975 tty_port_link_device +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 0x13dddfcf pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x13f4fad2 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x142ad71c security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x142dd246 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x1447a69c reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x144ab042 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x1467ef12 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x147317eb skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x14895d60 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x149918b5 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x149def87 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x14a9a9b0 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x14ab83a0 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x14c32c2f spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x14c945dc subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x14e65dc8 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x14e71dc9 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x14ecd466 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x15084e12 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x15157116 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x15473fe0 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x154daed0 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x154ec58e crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x1550c3d4 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x1553da40 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x155ad928 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x15787e05 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x1582d9a6 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15c1b5ef inet_hash +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 0x1632cd03 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x164adb97 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x167f35d0 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x169e175b ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x16cb8268 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x16cce132 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x16d3c466 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x16d59096 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x16d6f6cf filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x16f5dac6 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x170efe37 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x170f86ca dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x171782e1 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x171ff82e uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x1730b7cc skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x175ef94e sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1760e7e3 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17cdb2b8 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x17d84315 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x17da3690 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x180cb7d7 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x181a3284 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x182b35c3 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1859925e pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x185a2038 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x185a3294 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x18613def fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +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 0x1885db97 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x18944678 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x18a18e7e ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x18c4eaad raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x18c99d35 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x18e27150 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x19032820 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x19051e7e usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x1909abd7 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x192ccc13 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19329f7a __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x19826a90 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x19a034b1 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19c7a02a ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x19d229ae gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19f7b639 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x19f923a2 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x1a2f5ab3 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x1a54aefa spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x1a5b29c0 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x1a603107 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x1a689aa3 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x1a70166e ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x1a79f362 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x1a7dea45 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1abe8b18 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x1abf8dab bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x1ac25b44 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ad63ecd unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x1adfba27 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x1ae1d40f dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x1af5cd25 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x1afbed52 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x1b0af9f9 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x1b0ff8e6 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x1b1bebe7 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x1b3123df mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x1b3b9497 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1b9ae99d usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x1bb74b98 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1bcaf3b5 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x1bfa1b04 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x1c082bba gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x1c1ebde4 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x1c2ad10a srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x1c34b762 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x1c3a8bfe thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x1c443724 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x1c44f55f ata_sas_port_destroy +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 0x1c711a92 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c855b8b sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1cac4bf5 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x1cb04a79 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x1d026d63 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d520711 of_pci_msi_chip_add +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 0x1d97ab5c gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x1da8685a __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x1dc55aca device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x1dcb21ab fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x1dcd3862 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x1ddeb4ad __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x1df5ec65 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable +EXPORT_SYMBOL_GPL vmlinux 0x1e14a6fc napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x1e19eb91 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x1e1bae80 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x1e3a27be tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x1e434bd6 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e707906 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8333a1 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x1e8e7b39 of_rescan_bus +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 0x1eef2880 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x1eff26f1 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1f139b21 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x1f14c0f6 pcibios_add_pci_devices +EXPORT_SYMBOL_GPL vmlinux 0x1f2a4a95 usb_hcd_platform_shutdown +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 0x1f56047e skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fb49235 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1fbaad2b dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x1fc9cf59 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x1fcc1431 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x1fe9cafa thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x202156db queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x2056a41d dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x205b9045 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x20772787 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20b8b3e5 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x20b9d0e0 kvm_vcpu_mark_page_dirty +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 0x20f9fc57 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x2123c49c ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x21278510 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x2129e3a0 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x213a4446 fsl_spi_cpm_reinit_txrx +EXPORT_SYMBOL_GPL vmlinux 0x214a7200 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x2157c058 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x215b43c8 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x21828817 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x2186d462 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x21889274 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21b2395f regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x21caac26 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x22098a8f use_mm +EXPORT_SYMBOL_GPL vmlinux 0x22188670 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x224b0df9 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL vmlinux 0x2252a86f crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x227ac713 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x227b7272 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x229a7f46 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x22b0f2e0 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x22cba9ad rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x22d0dbf0 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x22f48b51 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x22f96a53 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x230edcb8 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x2324a623 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x236c42a7 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x237da7d2 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x2384f268 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x23855202 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23b01569 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x23bfd74a of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x23cc8725 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x23d374d5 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23fb0fe7 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x23fc6e4e fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x240e97cf irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x241dd650 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x242077a4 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x24265f1a ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x2438b818 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2457f28c dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24aca8ec sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x24b1636a usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x24c26c7c ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x24e7b1cc class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x250f5927 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x2512d992 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x2522033f device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x252df458 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253b3b79 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x253fff56 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x2548f92c usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x256eb098 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x25c48385 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25e7e5e3 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x260c7126 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x260fa917 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x26195622 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x264bc241 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x265060e4 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26584745 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x266112d6 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x266cb77b pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x26714ca5 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x2676cc0d class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x268ae8f8 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d6fca1 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x26f46c03 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x27035052 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x2748b8c5 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x27553e86 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27e6dec0 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fad7d9 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x281a18ae user_read +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x2832d6f4 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x283974b7 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x283b39c1 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x28488375 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x284b4c6e sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x285a5f9d percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x287da458 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x288e4121 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x289efe91 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x28aec55f devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x28bfea3e pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x28cf8537 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x28d28faf irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x28e51d47 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x29016e93 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x2927f891 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x29409fef devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x294ca566 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x29538d5e tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x2958512e led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x296d4eda gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x298db590 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29cd9143 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x29d8af76 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x29e7f826 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x29e9aac7 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f8e55b device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x2a002b03 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2a2983b4 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x2a34031c ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x2a7406d1 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x2a8dd09e mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x2abee4f1 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x2ac1e22c of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x2ad99f07 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x2ae684cd gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x2afdd5d7 max_gen_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0x2b19df43 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x2b207ab2 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b40c6e3 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b625c19 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x2b7784aa tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x2b917393 scsi_target_unblock +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 0x2bc92bb2 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x2bcf20c7 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x2be18cb1 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2bfda389 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x2c058b69 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x2c0f4618 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2f19ac serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c3c5069 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x2c5b00f2 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x2c5bfaa3 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2c5e4fe2 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x2c7c1cbd usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c922214 crypto_enqueue_request +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 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 0x2d36c57b rh_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d502334 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x2d512fb3 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d6bbd14 isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0x2d7633a3 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x2d9a3f5d regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x2d9fec72 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x2dad6e62 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x2dadd8cc pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x2dc65289 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2dc93275 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x2dcdfacb sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x2dddb3d0 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x2de5f27a generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x2debb5a3 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x2e02ff4e lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x2e146af1 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2e196b71 fixed_phy_set_link_update +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 0x2e307f58 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x2e5d2a2f msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x2e7ac13c unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x2ea0c998 inet_csk_listen_start +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 0x2edccd6e xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x2ee0a2cb devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x2ee70b52 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2ef8f1a1 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x2f0806f1 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f2f2a15 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x2f3eb1a3 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x2f40a35d irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f493619 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x2f61f298 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f8c8196 dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f9fafb2 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x2faf70fb rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x2fce1f06 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x2fd3bd89 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x2fd5defe vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x2fe3bed2 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x2ffc19e0 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x30015174 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x300b1a47 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x301c31d0 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x3043efaa debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x3049d417 of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x30573437 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x305b2778 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x3065dccb crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x3077c859 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x308599be serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x308a0912 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x309406e9 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x30c13bf3 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x30c4e10e regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x30cdf757 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30cf0edc fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x30d7a1cb devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x30de1d9e pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31199ae4 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312bf5a1 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x313009e3 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x31351f0b cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x3145aa8c of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0x31530d54 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x3154365f rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x3182376b serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x31836289 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x31a86954 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x31a96741 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d6114f tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x31d6fbc4 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x31e3b4f1 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x31e448f2 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x320fa185 regmap_async_complete +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 0x3233bc2b fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x323b70b9 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x328ee8e2 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x32a6757f pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x32ab51fb trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x32ba11f9 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32cebd52 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x32dcc04c clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x32e68e3e blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x32f7be81 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x32ff24b2 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x330d41fc of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x33484471 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x336c9abe sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x33c5a7d3 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x33d547df tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x33e07da5 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x33efefd9 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x34025685 device_register +EXPORT_SYMBOL_GPL vmlinux 0x341c9660 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x343e5a73 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x345b2cd3 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x348b4cad blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x34c0c55e crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x34e6e578 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x3503a14c ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x353259b9 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x354a3b2a usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x3571c3e3 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x35771953 pci_reset_bridge_secondary_bus +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 0x35c5c5fb ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x35eef1c4 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x362390d8 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x362a5636 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3630fb0c __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x363a4a77 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x363a6023 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x36479940 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x365b3637 fuse_request_send_background +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 0x36c7df91 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x36d4b157 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36e66894 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x3702572d sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x371b28bd __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x37258727 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x373ff4bc get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x37477a56 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x3761f9c7 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x378ab84e devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x378fcbf8 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x37a8a4f9 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x37b26b2b crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x37b5735b fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x37bf5068 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x37c46e57 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x37c5e349 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x37d2c2c5 rh_dump_blk +EXPORT_SYMBOL_GPL vmlinux 0x37d5ea96 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37e4749e gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x37ef4a9d __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3820a6fa ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x38358b78 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x383bf088 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x386c18f1 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x388af2c6 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x389109c1 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x389dda32 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ff5d49 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x391bbf54 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x392add00 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x392b47df early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x3957fabc perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x395a410f task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x395a6015 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x396a6297 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x397cc489 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x39b2dcc3 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x39baae57 sata_link_debounce +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 0x39f1468d dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x39ffa2e3 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x3a004e7f irq_domain_remove +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 0x3a74632d regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x3a7bc905 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x3a87f18d kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa1d2e0 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x3ab6baba cpufreq_driver_target +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 0x3adb5a46 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x3ae08a03 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0x3b09a078 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x3b0a9538 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3b11bed4 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x3b1a6eba phy_init +EXPORT_SYMBOL_GPL vmlinux 0x3b2c4f2a nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x3b3856ef rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3b5a3a8b scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x3b779db5 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3b993167 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x3bd149d1 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x3bd33ff1 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x3bdb6451 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x3be0e9b6 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x3bf0e295 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x3c26719f platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x3c3c77f8 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x3c3e26d0 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x3c5416db ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x3c65adb1 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c872b9c scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x3c8dd409 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3caca250 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x3cc7d3ed netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x3cc8e2b2 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cdb0b02 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3ce4c0c2 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x3d1cb1ac of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0x3d2f70e2 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm +EXPORT_SYMBOL_GPL vmlinux 0x3d6fd331 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x3d77ad6c usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x3d7c9ecb show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x3d7ed0f8 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x3d87328e gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x3d8736a8 transport_class_register +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 0x3de56e2c wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df4ee8c device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e431951 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x3e46b2ed spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e681f34 fsl_spi_cpm_bufs +EXPORT_SYMBOL_GPL vmlinux 0x3e6e0a07 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e94bc36 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x3e981396 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x3e9cea75 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x3f24cb82 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x3f4194f8 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x3f66132a da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x3f7120f8 component_add +EXPORT_SYMBOL_GPL vmlinux 0x3f7c32e7 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f8387bd mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3faf2fc5 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x3fb14423 md_ack_all_badblocks +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 0x3ffb09a2 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x40164534 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x401a7900 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x401b0bab ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x4039ac6a sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x404442c1 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x406dea77 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x406fe0eb scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x408e43bd tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x4092bcfe cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x409c9fc5 kvmppc_pr_ops +EXPORT_SYMBOL_GPL vmlinux 0x40a09186 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x40a15aaf cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x40ad4643 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40c1b846 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x411c18d2 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4141dd7a device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x414e619d phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4154ecd6 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x416b5c11 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x4179852d list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x41802da4 gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x419f28fc usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x41a748a7 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x41abe349 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x41b0b5ad driver_register +EXPORT_SYMBOL_GPL vmlinux 0x41b45054 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x41cacfaf extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x420e9786 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x42295b4c sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x426b2c92 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x42745720 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4288c255 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x429a851b wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x42b77dc1 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x42cd1778 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x42f39987 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x42fcc385 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x431c5ba6 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x4336b8ba blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x433ef290 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x437a3b3c regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x437af313 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x43911496 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x43969dbe rh_alloc_fixed +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43b164ad shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43e5d8d5 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x43e6f5d7 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43fe805c md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x442e117c regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x443b2c10 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x4449b5a4 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x44780869 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44880b12 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x449add42 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x44a3ab98 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x44a6c9c6 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44beb2ff invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x44c8ff5e ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x44e3dd39 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x45321125 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x4534f98d usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x45491d56 ata_sas_port_init +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 0x459a899e iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c5746d kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0x45cf773e subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x45d40634 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x45e228ac debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x45ebb42c crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x45ef8390 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x45f1bdfe device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x45f5dbf5 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460a88cf crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x460d6c61 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x4610c446 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x464c3ed4 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x4659171b blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x465c0e29 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x46655c1d device_attach +EXPORT_SYMBOL_GPL vmlinux 0x4669a82d of_get_nand_bus_width +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 0x46956e64 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x46c0a4ac driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x46cc7168 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x46f93f84 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47243f37 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x475108b8 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x4753abaf scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x475bc14b trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47667104 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x4784c707 netlink_add_tap +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 0x47ccae85 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x47d0438e skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e4e29c find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x47f50de4 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x481c6d7e of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x48206e90 kvmppc_handle_store +EXPORT_SYMBOL_GPL vmlinux 0x4826d61b get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x4830b060 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x4833b030 cpufreq_cpu_get_raw +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 0x4884a38b virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x488faafc alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x48958973 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x4897a50f usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x48bed747 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x48c7f806 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x490b0f95 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x491300e0 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x492330a1 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x4927e774 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x492eba3c pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x49552719 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x49676b25 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x49731d09 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x499909da blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x49b0d299 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x49ce7d26 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x49e17f35 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f01a87 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x4a09eb8b extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x4a15d59a tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4a1b7dc5 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x4a21d526 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x4a21db4c of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x4a2f2886 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x4a32cc68 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x4a40b2fe nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +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 0x4ab09ff9 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4acee0cc ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x4ae5de11 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4af854fe set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x4af90dd4 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x4b073a41 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x4b429774 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x4b595c38 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x4b62c5f8 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x4b63f5b7 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4b89bb5c clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x4b8e6580 blkdev_read_iter +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 0x4bee07a7 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x4befcccb register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x4c095c6b gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x4c2617e9 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x4c2cf1ca irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x4c483cf9 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x4c506ae3 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x4c5ad8ca __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x4c5d588d crypto_unregister_algs +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 0x4ca64cba trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x4cb5cbaf ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x4cbbae06 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x4cfc3049 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x4d0deddc pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4d2271c9 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x4d3c7f1c fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x4d643e53 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x4d8a8301 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x4db6423d tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4dd1217c wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x4dd84c08 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4df07d89 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x4df0e089 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x4dfa3046 cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e1789c2 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e2a868f pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x4e3b5fe2 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x4e434c5f __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x4e506dac crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4eb859ca genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x4eeddefe smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f1308af ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x4f2de97d virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f69c25d devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f85e191 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x4f9f7492 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x4fb07305 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x4fb82c6f usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x4fc56528 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff20455 kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0x50714d91 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x507989fa usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x507bfe1d tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50a51d62 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x50a747de virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x50a77277 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x50a833cb trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50fd1597 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x510261dc devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x51245a0c set_primary_fwnode +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 0x51535d45 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x515f35f9 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x5165439a cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x5169016a rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x51824f25 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x518fb695 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x51ac3c65 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51c9a62c dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x5205e64d disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x5225c8bd pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x522e5cde nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x5232c2b8 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x523fc120 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x52478874 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x524e214e usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x5259d6d8 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x526a3a4e dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x527f879d usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x529e4dcb perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x52b02793 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x52d67cff class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x530e601f xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x5310b5ee tps65217_set_bits +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 0x53513ca8 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x53b3c1de md_do_sync +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 0x543f8dfd exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x5440e919 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x5471f20e of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x547aff3a spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x548c022b mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54acc8be blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x54b0b7f9 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54da6a7e usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x54facb87 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x54fafaba tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x55038887 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5507c801 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553fcaf1 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x555f31ff crypto_init_shash_spawn +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 0x5584f04a is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x55af46dc ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x55b39c4a gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x55d70ae2 extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x55e2011e br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x56017396 agp_add_bridge +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 0x563c3f6d nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x563f2466 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x56521c5c mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x5659afe5 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x5699cc68 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x56a7ebec init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x56bf1297 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x56d48b89 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56d81ad8 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56eb656c fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5715824f kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL vmlinux 0x571eba9b fat_dir_empty +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 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x57685361 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x579e8ab1 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57d5699c extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x57dc2af7 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x57e9b3b1 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x57ef7ddf __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x5807feb5 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x58616dba rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x58679a1f regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x586d42bc swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x587907ce find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x58827af2 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58b86648 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x58f05363 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x591b3aca bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x59330e77 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x593b9a7f crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x599e6cd2 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x59b29566 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59b580bd pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x59c79a48 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x59e06f8f virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x59e47c18 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a079e08 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x5a19cd0c subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x5a2cbe6d gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x5a3b820d cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a8d0164 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x5a95be71 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x5a9c6957 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x5ac337ee usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x5adb684d cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x5aed18ce kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x5af75312 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x5b0bc6dc netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x5b0ee1e8 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x5b111e8a __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x5b149746 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x5b274ebf pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x5b3055b8 blkg_print_stat_bytes +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 0x5b7caf5e __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x5b9a5386 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x5baabed9 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bfc67d5 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x5c07b63a rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x5c25906d pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x5c2778c2 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x5c2b51a9 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x5c343c31 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x5c356675 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c70850e irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x5c97e22b cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cb57f2d of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x5cb96c08 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cfa1386 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5cfd3cc8 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d1a225c i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x5d20a66b devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5d323687 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x5d3b3f93 mmput +EXPORT_SYMBOL_GPL vmlinux 0x5d45df92 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x5d4798ed pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x5d4a286b rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5d5b1760 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x5d66f943 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5d95f8ee pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x5d9fe933 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db80db6 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x5db923cb wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x5dcbff7f irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x5de99dff ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x5debe7af ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x5dec529f shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x5dfe64eb of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x5e081672 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5e0d7027 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x5e1b3dcc sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x5e22ee8c debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x5e44c18b bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x5e50b7b4 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e651702 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x5e748fbd devres_get +EXPORT_SYMBOL_GPL vmlinux 0x5e82b5fa tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x5e88078f clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x5e936b8f usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e99a52c ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5eaa7d14 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x5ebd09b8 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5ec055b0 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x5ecf5d8f class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x5ed4bdc2 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x5ee7542e reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5efbf078 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x5f120cb0 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f904d22 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x5fbeb707 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x5ff0ed10 find_module +EXPORT_SYMBOL_GPL vmlinux 0x5ff9942b extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x602514a2 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x60467b06 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x604f9c24 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x607616f8 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x6082d986 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x6084c780 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60a9c555 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60cca309 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x60dc0d95 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60ed0295 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x60f59eb2 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x60fd26f8 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x6126c1ea cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x6129c0ce alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x6154c1bb of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x6171283a virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61abd3a5 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x61dd3748 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62007f3e devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x621076ca crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x623091ae vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x6235e27c blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x6268fc9c phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x6269a23b dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x626d4440 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x62c41494 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x62cc06ce blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x62d9612d nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x62fd4c3e ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63171569 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x6341672b crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x6341cbde bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x63ab9015 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x63b9f868 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x63cd2868 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63ef1bfc pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6402df4b gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6416dc1a regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x641a9762 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x64261f6c i2c_adapter_type +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 0x647404a9 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x64986895 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x64b30f54 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x64b7c26d dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x64c81bf2 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x64cb6090 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64eae574 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x6506e65b regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x651a1917 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x651ef607 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x65230368 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x654c5f42 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x6555ec15 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x657247a4 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x657c2a5c usb_remove_hcd +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 0x65c60a60 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65e2dc7f tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x65ea7521 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x65f6be2d inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x660c4737 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6629861e of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x66477f0b of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x666cc35c da903x_set_bits +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 0x66c2a056 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66cf4a69 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66f9e287 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x671e320e __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x672d6678 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x673d9e51 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x675eab0f ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x67673c48 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x678a4105 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67b3abf1 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x67c644da gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x67daade8 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x67e4e240 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x67f96112 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x682bf238 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x68426b07 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x68467a08 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x68a4c6a7 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x68a84556 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x68a9c0a3 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x68d71908 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x68f77ec6 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x68fad94c tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x692fd62d kvmppc_ld +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +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 0x6a1d1057 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x6a3f1351 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5b1d2c ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x6a5d188a ipv6_recv_error +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 0x6a9519dc crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x6acb8d84 ppc64_caches +EXPORT_SYMBOL_GPL vmlinux 0x6adc22c7 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x6ade76fc pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0x6b19e6fb simple_attr_read +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 0x6b6940fe rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b8d2d5f scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x6b8ee67b thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x6b9fd864 of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x6bc692ea flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c0ee479 of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x6c230983 sysfs_create_groups +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 0x6c8cdcfc devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c922282 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca7670b tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cb03879 device_release_driver +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 0x6ce342dc of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x6ced87e4 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x6cede49f __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x6d01aeb1 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x6d212f1f usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x6d2c0a8f dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d59bd6a da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6d773d9f ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x6d7c1e82 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x6d83c8d3 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x6d8b8906 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x6d8d2971 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x6d9080c3 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x6dd4574b devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x6ded16a4 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x6def8b79 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e32b048 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x6e379526 kernstart_addr +EXPORT_SYMBOL_GPL vmlinux 0x6e5eb628 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x6e7c3b54 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e935e3d led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ea259fa crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x6eade509 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x6ebd0201 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x6ec7cfe9 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x6ef2718a regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x6efe93c5 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6eff2c32 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x6f18beff usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x6f1bbe1f ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f1f9301 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x6f491d99 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x6f5fb3a9 kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x6f627aca ref_module +EXPORT_SYMBOL_GPL vmlinux 0x6f6d6b0d pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x6f6f9c34 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x6f70891c scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6fad26f4 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x6fb1393d find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x6fb18968 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x6fbbf462 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x6fc0332c ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x6fcaf843 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x6fd3cfe4 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x700aa0fa pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x701bdfb8 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x7020367b regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x70523ace crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x70741476 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x708ba751 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x70aa2a9d ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x70ac0d14 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x70b9b8b1 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d6211f crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x70ef5769 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x71066984 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x710a7f31 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71187f59 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x71343e62 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x71621fe0 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +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 0x71d90d09 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71ebf73a regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x71fe3ec1 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x7210af65 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x72181f17 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x722a1b94 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x724c935d ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7268b2b8 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727e1f49 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x72a1a5dd __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x72cdc5f6 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x72d99992 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x72e05342 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x73177c5b blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x7333b45a cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x7337a163 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7338d120 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x73607f14 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x736746ad tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a5a1a6 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x73ae0a8b regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x73af6cf4 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x73bc7d9a sysfs_remove_files +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 0x73e473e2 of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0x73eb8aca proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x73ecc536 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x73fc9a21 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74039808 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x740648c2 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743dd202 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x745cfe5a usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x7464368c ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x746f7d73 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74a37dcd kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL vmlinux 0x74a795c1 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b69788 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74d7704d module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x74e9f2b1 pci_bus_max_busnr +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 0x753a8976 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x754d2614 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x754da73c ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x7561c07b kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x756d431d __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x757b69ac blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75a464f0 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x75c606a7 regmap_async_complete_cb +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 0x75fca66b crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x760568bc ehci_init_driver +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 0x762f0757 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x763b3762 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x76455e8d kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x766a8c65 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x76a1c6ec rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x76a1fb5d unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x76a2eaa9 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x76b1d4e1 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x76b79634 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x771031c0 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x773df331 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x77403f38 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x77494f8d ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77641a8e __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x776b760d gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x7795485d crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x779d86f4 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77c679a2 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x77c89ef3 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x77f463db securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x77fa0a7a inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x77fe4f60 put_device +EXPORT_SYMBOL_GPL vmlinux 0x78103dd2 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x78296a9d kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x782c63ec dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x782e1177 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x7831ae39 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x784a45fd tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x785270e9 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x7855100b sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x787a2a61 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7882c252 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x78905db3 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x789bb0ad dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78afcbdf usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78dbc5fc ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x78e95155 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x78f75c69 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x7901563e usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x790b7323 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x792e623b blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x7950434e fuse_abort_conn +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 0x79826385 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x79a881a9 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x79bc1634 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x79c480da rh_dump +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79ef4142 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x79fd730d usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7a1c42d1 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x7a2198e4 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a360488 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x7a461c35 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7a528b4c ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x7a76cec2 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x7a7d2c71 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x7aa7cb46 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x7ab7386a rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x7afdf541 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x7b025f2b securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b2ccedc tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x7b3d0b4e usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7b4d9317 pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0x7b51663e regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x7b5fa259 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x7b66cc5e vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7b7c358b __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7bae1573 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7bb5356d ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7bc38b1e blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x7bd5261c regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x7bd64d87 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x7bd7abbb ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x7bedab27 of_get_nand_on_flash_bbt +EXPORT_SYMBOL_GPL vmlinux 0x7bf679eb sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x7c331efb regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7c5c2fde inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7c62e8d9 pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x7c798578 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x7c8654ff of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x7c8d1ad6 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x7c9323c0 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x7c97b3ee swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca92138 mmu_notifier_unregister +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 0x7cedf677 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d17b221 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d1ae143 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x7d1b0a88 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d2df3bf usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x7d47f21a arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d4a5076 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x7d5670f5 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d60e40a regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x7d8bd4dd debugfs_create_x32 +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 0x7df664d8 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x7e04f068 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e17bb79 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7e1d3d7b regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x7e51aa87 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e705d21 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7eaaae1d debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x7eaac200 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7eaf4d36 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x7ebc009f class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x7edf2e24 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x7eea797b ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup +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 0x7f575525 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f88662b mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x7fa27e21 __inet_inherit_port +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 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fc2c1ae ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x7fe6b265 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x8006144f wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x803be00e rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x804ea02d __find_linux_pte_or_hugepte +EXPORT_SYMBOL_GPL vmlinux 0x8054c0b6 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x805a3a69 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x807d70d8 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x807f5df9 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809736e8 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x80c03fb2 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80ca4bfe ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x80ce6554 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x80d22fad rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80ef1dc7 relay_buf_full +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 0x8116fdc0 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8118c473 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8137e3a8 kvmppc_st +EXPORT_SYMBOL_GPL vmlinux 0x813b7e2e kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x81413963 usb_hcd_pci_shutdown +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 0x81607bff kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x81bd09ec usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x81ec9b2e irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x82150e01 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x8220dd17 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x824594a2 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x825f110c wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x826cbfb5 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x82836964 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x828fa288 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x82b68644 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82f3fc68 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x82f5475c dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x8301640e devm_reset_control_get +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 0x83797099 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x838b2b46 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x83b64448 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x83d2f4f3 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x84069a28 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x8415a439 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x841b5ea7 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x841d2bdc class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x8432dc50 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x844afdd9 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x844f4df8 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x844fd068 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x84644051 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x846fd21e regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84d09367 ata_pci_device_do_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 0x85102e22 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x8543d19c cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x855bd7b6 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x855cd428 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x85a3bc3f crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x85abe8b0 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x85b3fdb4 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85ed2f42 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x85f163ae ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x860dda31 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x861c8f41 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x863af21b __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x86453957 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8653ae19 fuse_get_req +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 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 0x86f7cffd spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x8706510b debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x870ffe42 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x8727a861 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87485187 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x875bed7e ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x878715da ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x878cbfcb pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x87a5c072 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x87d8119e devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x87e6bc3d platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87e7861d led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x87fc67ab of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x88043360 crypto_aead_setauthsize +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 0x880b7492 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x880db679 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x8829b038 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x882d7dba ip_local_out +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 0x88c54945 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x88d31016 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x88e4e8e1 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x88e9430f dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x8923ddaf crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89567a65 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x8956a405 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x8970760e regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x899bce4e crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bfbb8d regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x8a14d565 of_fixed_factor_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x8a1961a2 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x8a393c75 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x8a3ad67c security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x8a460914 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x8a46ea43 led_trigger_register +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 0x8a5a83d0 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x8a9906cd key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x8ab1c7f9 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac49b64 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x8ad7991c extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x8b046a0a blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b364570 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x8b4fb763 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8b738aef led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x8b7ab947 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x8b7f0988 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b8f9773 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x8baa26b5 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x8bbc9fa4 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x8bce3c83 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c2403dd pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x8c30f24c sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +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 0x8cda6b87 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8d59af12 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x8d731143 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x8d838a43 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x8d9fc314 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x8dd6171c ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x8dd8a67f usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x8dee02c4 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8e004ede netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x8e198fd4 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x8e29bdde blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e340b84 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x8e37c264 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x8e570bbb gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x8e6c57d6 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x8e9649f0 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x8e9d4d96 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x8eb198d4 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x8eb3ba63 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x8ebbf69d single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x8ed8b3de crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f14779f dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x8f1d9d3f powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x8f3c0f7a kvmppc_hv_ops +EXPORT_SYMBOL_GPL vmlinux 0x8f44a2b0 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x8f5b8de6 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x8f5f68ae virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x8f65ac6e ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f84b792 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x8f8e2267 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x8f97aab8 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x8fa970c9 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x8fb488c3 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x8fea24b9 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x8fed6d23 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x9006cb05 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x90189184 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x9021c6ef sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x90372209 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x90521ae1 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x905356d7 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x9055227f usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x905eff28 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x9077b1c6 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x908a4d09 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90ac3a36 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x90c4d2ec pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0x90d6ecc4 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x90e41c71 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9112e14d realmode_pfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x9145f298 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x916c038e crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x916edcd5 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +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 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x92545a20 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x926ca566 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x929a6ea2 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x92a4bacd dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x92a52862 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x92bb9053 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x92bdfdb5 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x92c59c3f cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e61257 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x92fc72c3 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x92fef1ef fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x931e6032 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9324c8c5 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x932cf82c ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x935bda34 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9398c09e sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x93a850a3 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x93aa90cb bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x93adc7f8 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x93d202b8 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x93f65f23 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x93f902ce part_round_stats +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 0x942836ea get_task_pid +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 0x94615c3c add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949ca23e debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a8b029 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x94c0b05e blk_mq_tags_cpumask +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 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9523f531 driver_create_file +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 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9590b3a4 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x95967f08 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x959f328c gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95d9a889 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x95fd3e02 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x961da481 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x962cb8dc __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x9643eb7d of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9660dfb6 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x96673a74 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x96704a8f i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x9679a622 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x969e31ee ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x96b801a9 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x96df4239 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x96feeefe shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9710c4db of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x9734e9b3 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x9735f061 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97728b17 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x97785467 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x97a47a12 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x97bc8b54 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97eb6fea ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x97f5b596 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x9801ed0a trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x980ab54a ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x9811a80a led_trigger_event +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 0x983a28d4 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x983c7494 rh_detach_region +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98594526 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x98707de0 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98905f41 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x98a02a70 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x98a7ffaa fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x98aa4a15 pcibios_unmap_io_space +EXPORT_SYMBOL_GPL vmlinux 0x98ae0183 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x98d91573 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x98e11c5a blk_mq_request_started +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 0x990b74a8 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x990e8e7c uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x990fbe80 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x995b6878 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99649ebc rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x99653415 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +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 0x99a63676 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99c4eaac nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x9a01ca52 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x9a0cc371 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a196857 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x9a2708db power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a5a49cd clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x9a72e3ba kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a8c73ad locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9add6678 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x9ae04443 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b2d6b2b skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x9b433aba blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x9b4d0c6a tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x9b53f5f5 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x9b5f7261 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x9b61ff02 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x9b7883cc ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x9b8fb715 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x9b93e718 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9baf6e70 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x9bc8365c get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9bcd2e81 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x9bd77548 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bfcefe3 regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0x9c2fbd15 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x9c2fda71 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x9c6ccaf3 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9c6e2dfe regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x9c8ed074 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x9c9c1073 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x9c9c1bf7 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x9cb87ef2 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0x9cbe47c2 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x9cc3ed06 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x9ccffc99 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x9cd998a0 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x9ce859c7 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x9cee760e tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x9d1edc03 split_page +EXPORT_SYMBOL_GPL vmlinux 0x9d28cf42 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x9d2cffb9 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x9d39dd1b crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x9d4b7655 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x9d5e7243 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x9d628302 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x9d73ad9c ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x9d7d628c fsl_rio_mcheck_exception +EXPORT_SYMBOL_GPL vmlinux 0x9d84ea8d trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x9d91533a kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9db3d174 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x9dbcb8e3 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x9dc34809 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x9e3ad790 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x9e3d81ea __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e58688e pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x9e60ec1a virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x9e8795f8 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x9e9ee122 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x9ea35287 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x9eaa3cf6 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x9eb11955 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed951b0 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x9f3ed9fe regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x9f5f312c ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x9f72f2d4 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x9f7c9c55 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fea59f1 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xa0089c38 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xa00df9a8 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xa0197b5f sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa03a9df6 bpf_prog_select_runtime +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 0xa0a9db7e nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xa0c7c8b5 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0xa0d18f35 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xa0efdf6e fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xa0f74219 md_run +EXPORT_SYMBOL_GPL vmlinux 0xa0fcc22e blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0xa1099f22 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xa10aabd3 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xa12f5f18 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xa13761d9 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa17c15b4 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xa1824893 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1d95d1c irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xa1e6da46 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1fa3f9b register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xa2005081 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa2122a97 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xa243ca78 kvm_vcpu_block +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 0xa27582fb sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xa2825e7f crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xa28aaf29 rh_create +EXPORT_SYMBOL_GPL vmlinux 0xa29dd0c4 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2cbd550 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xa2f921e1 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xa314ab6c of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0xa3239ac4 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xa373704b pci_add_dynid +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 0xa39d481e device_add +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 0xa3a5d933 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c1c2d7 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xa3c615d2 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xa3dd1cda regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa3e0e9d0 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xa3e16693 gen_pool_avail +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 0xa4293251 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xa44caeb2 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa481edd4 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xa50065ba __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xa5043602 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xa5053281 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0xa50fe2c5 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xa51b7404 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xa5256668 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xa52bf11f __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xa52fc439 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa53765d5 fsl_spi_cpm_free +EXPORT_SYMBOL_GPL vmlinux 0xa53ce6d4 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xa569eff8 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5be87c9 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xa5c61d7f regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xa609c59b nl_table +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa63fdae6 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6584b84 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa672daf7 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xa673a57d ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xa68d6df2 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xa6a4e7c1 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xa6a4f6b9 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xa6b865e8 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6ec4d28 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xa6fdc28d pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xa7063188 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xa76e8202 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa7b03684 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7c16e4c __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xa7c57467 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xa7d12356 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa7d21dd5 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xa7d8a79e ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xa7ef5fb4 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xa7f2e63b dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xa833ecae lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8587b44 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xa87dcd5e unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xa8847020 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xa88872ad device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xa895104f napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0xa8b6fdf7 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa8b713ec pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa90b2a9c tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93ed2be dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xa94d69f4 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xa96b5920 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xa9b9bbd9 ata_std_sched_eh +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 0xa9ed3200 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xaa17a2e2 rh_alloc_align +EXPORT_SYMBOL_GPL vmlinux 0xaa35c0fe usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xaa3ec171 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xaa40d701 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xaa5a7089 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xaa73a733 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab6b643 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xaac72cd6 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaacbd201 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0xaae97e3c ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xab2598ab trace_buffer_unlock_commit_regs +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 0xab5a1e65 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xaba2db15 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd3d40c list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xabd5b6d1 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xabfc890f regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xac234b55 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xac2a6dbc usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xac343e04 device_create +EXPORT_SYMBOL_GPL vmlinux 0xac388ef2 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xac5030bf metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xac6731b6 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xac6e3ead sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xac919cec thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xac9e4726 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xacbfaa74 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xacd251a2 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xacdf4d5a class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features +EXPORT_SYMBOL_GPL vmlinux 0xad9fa046 device_del +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadd6739c rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xade054be crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xade0b57f pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xaded9da1 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xadf855b1 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xae1e3012 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xae23b8da key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xae41baf6 do_take_over_console +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 0xaeb4192d wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0xaebaa10e component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0xaec47d8e extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xaf0e7a99 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xaf1c7cb5 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xaf3327f3 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xaf603ec9 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xaf6e9e48 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xaf91ce11 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xaf947820 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xafb8ba4b __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xafc06615 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xafcf157c posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xb012742e blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb04a455d crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xb064112d get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb077b27c spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb08f1e93 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb092e278 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xb0a644ae request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xb0a6b131 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb0b6c526 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0cec14d __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0d318ad devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0e0206f debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xb0e3202f devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xb1020c81 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb14cf5ec spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xb16b8b55 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xb1880d6c usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xb18a8af8 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xb18c20ae ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb19a5c04 vfs_kern_mount +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 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e51e8d ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xb1ef6cb1 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xb2107845 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xb2164318 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb222b845 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xb22429e6 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xb23163a2 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb23f9228 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xb24ebf30 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2823984 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb2ac4d0c phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xb2b45c2e devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xb2bf6ca1 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xb2ce8446 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xb2e1d95a regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb2f9df91 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xb30db075 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xb31f8984 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb34b5219 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xb35db5b1 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xb35f124f gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xb3b5ed2c devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3d61786 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xb3e383e9 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xb3e57343 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xb3e7f68b ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb3ed9807 dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0xb3fb19a0 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xb3fcc222 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xb402bb90 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xb40e79b7 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xb41e1b21 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xb4244cca devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xb42ab723 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb454b6e9 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xb47e9ec0 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb49526ce devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4fd0a4d uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xb5053645 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +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 0xb55260a7 pcibios_remove_pci_devices +EXPORT_SYMBOL_GPL vmlinux 0xb562dece inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xb5800245 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb59bb153 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5ac2edc devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xb5d23d92 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xb5eb01d5 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xb5ebfb45 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0xb5eee41a pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb622691b ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb63ea05c regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xb66add7a __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb680f101 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xb68cd3cf usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb709ce74 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xb710f144 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xb7304364 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb74ed25e dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xb750fb42 of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0xb75b78b8 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xb76de6ef gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xb786e77d percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb7c1623e fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xb7d8abba ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xb7d9657f sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xb7dadd25 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb84c6e80 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xb872b363 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb88778bf fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb88d1734 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89abb56 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xb8aca515 device_move +EXPORT_SYMBOL_GPL vmlinux 0xb8b698ea device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xb8c15239 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8e4f838 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xb8ec82c2 kvmppc_kvm_pv +EXPORT_SYMBOL_GPL vmlinux 0xb8f49572 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb8fbafcf crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb902de2d sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb9596510 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0xb9663c88 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0xb9b9bb2b sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c05e1d gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xb9c39f08 cpu_remove_dev_attr +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 0xb9ec53d7 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xba2387b7 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xba2a7586 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba44cef8 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xba4f63cd sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac339c0 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xbadb88ef inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbadc491b usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbaf796e0 ata_pci_bmdma_clear_simplex +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 0xbb1283b7 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xbb256892 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbb3876a0 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xbb596cd6 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xbb5c0a9b pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xbb5f5c97 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb818517 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xbb84709c spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xbbac7c52 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xbbb342ff mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xbbcd85e7 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xbbd3a7d9 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xbbd688b1 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xbbec7531 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbc166bde virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc6c6f7c rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xbc9960f0 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcacdaee rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdb2f60 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xbd19ad53 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xbd300a1e ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xbd31c349 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xbd37e859 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xbd3e032e vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd4a8c0e anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xbd530e86 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd65a18f devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xbd660fa4 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbd7271a9 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xbd7a6b6e tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xbd890a7b device_reset +EXPORT_SYMBOL_GPL vmlinux 0xbdab0b5c stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xbdc77b45 device_property_match_string +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 0xbde72678 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbe035f00 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xbe1707f9 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe210f1f ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xbe3a6816 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xbe417e31 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xbe4abf45 swiotlb_unmap_page +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 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbec8d1c8 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0xbecf50ac devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xbed4cd5b shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbeeca819 fuse_request_alloc +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 0xbf0e6114 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xbf123a2d relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xbf16782a tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf1d1b3c irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xbf561b7b gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xbf7e37c7 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xbf883e79 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbf8b3f75 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xbf91add8 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xbfb215a3 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +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 0xc02da1e8 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xc038624c dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xc046b0c2 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xc04afc89 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xc0517de4 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xc05ac7c8 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xc05f3983 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xc061367e mpic_msgr_get +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc06acf47 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0a5946a led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0d18313 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc0d23b05 rdev_get_dev +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 0xc1716bcb scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1853874 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xc1c927d4 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xc1d64e6f of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xc1f84730 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc23a031b __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc24708fe rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xc25b6424 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xc27f8788 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc297acd1 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xc29a4d67 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xc2a16c0c debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xc2bb3fbf blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc2dcdc09 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc30436ae wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc305460d regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc321805e crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xc321ca41 blk_queue_flush +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 0xc3500932 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc3957a8a udp4_lib_lookup +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 0xc3dcc0ae screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xc40a8edb vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc454064a handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc4566c90 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xc4594078 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4995a87 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xc4a16a61 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xc4b8a213 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xc4b95737 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xc4c4ec35 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4daff00 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xc5049a2b of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xc50afa2d usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xc51c2e58 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0xc5218b1d reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc52ce01c register_asymmetric_key_parser +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 0xc577e760 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xc59063c0 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xc597fdfd __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xc59a5454 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xc59bc635 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xc59c9ac1 devm_rtc_device_register +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 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc617ce6f save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc61a6312 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xc6407778 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc679741d cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc698ca17 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6b5388f __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xc6d1a168 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xc6f8385f cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xc70e4b59 kvmppc_claim_lpid +EXPORT_SYMBOL_GPL vmlinux 0xc72bd048 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc73ba870 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc73dd90a serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xc7535377 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xc767c505 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xc77b4359 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xc795a139 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc798fe03 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7b56c93 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7d37a2d pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xc7d6d438 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xc7dcf21c xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7ea9128 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xc7eb0470 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xc7edae64 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xc7f957ab bus_register +EXPORT_SYMBOL_GPL vmlinux 0xc80cd7de apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xc81d2ec8 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xc858c3ca irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xc85d6be2 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc86afa83 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xc873549f crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc8814641 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xc8889ee7 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc892efed dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xc8a7503d get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8cd288a sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xc8cdd19d rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8f16c6d skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc9163e8a percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xc91e45ee ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xc922672d pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xc92326e7 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xc9306222 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xc932f817 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc935c34c blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95d5924 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc982d451 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xc9989e5b dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc9a14a85 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xc9b7dbfd dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9ff8181 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xca0a6af0 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xca0f32ae verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xca299134 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xca33448d crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xca38bd68 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xca68df50 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xca70af22 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xcaa45fdc to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcadfd9c5 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb49d2f7 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xcb5d09a7 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xcb6f0e86 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xcb7e3870 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xcb8408ce gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xcb98002f debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xcba8d159 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xcbd327e6 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xcbdb07d6 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbf8aecb fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xcc09217e rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xcc0d746d trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc19f03c debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xcc44961f kvmppc_alloc_lpid +EXPORT_SYMBOL_GPL vmlinux 0xcc60f5c0 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xcc699b4b ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcc6e069c bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0xcc7f5945 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc9b202a device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xccbe91b8 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd28494 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xcd01ccf7 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xcd10c4f7 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcd3c79c0 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xcd448a3b fb_sys_write +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 0xcdc1979f __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdcb934d single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xcdd0c5ff of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xce06a62d __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xce2e2e82 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xce3822b1 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xce4ac52d of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xce4c6e80 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xce53e133 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6bff7c generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce7cffa0 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xce81e4cc crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xce9abcbf raw_seq_next +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 0xceccaae6 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xced8ac41 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcef466ff gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xcef493a2 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xcefcebea page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xcf1069ab crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xcf2d814a arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfd1f431 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xcfd3221a clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xcfefab9f bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xd000515f bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xd0144afd pci_disable_pri +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 0xd06899e5 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xd09506b4 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd0a98c11 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d88414 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xd0f29376 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd116791b i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd118696f devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xd15007da ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xd15d805e bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd181c1fe debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xd188a873 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd191c7b1 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xd19a7008 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xd1aa4060 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd1c70c14 of_css +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 0xd23a3703 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27f55b0 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xd2a4b0c8 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xd2ac0515 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xd2ad9a62 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xd2b799cb wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e2130f pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd2f500f6 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0xd31133cd task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xd32d90bf irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd339480b i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xd3426e74 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xd34aa034 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd355a087 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xd36ebc0e crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xd372fa10 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3b27fc3 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xd3d45e51 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xd3e1a48e __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4105f3f bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd42da937 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44a8e6a dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0xd4699351 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xd48f014d ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xd4931894 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xd49dae40 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xd4a2bc83 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xd4a6b904 anon_inode_getfd +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 0xd4d41da6 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xd4f9a3b0 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xd511e615 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xd5256cee eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xd52970de mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xd54d4f79 rio_request_inb_dbell +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 0xd58e5bc2 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd590ef35 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xd59ec24b find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5e4cfc1 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5f6ea8d fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xd5facee8 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xd60a0b26 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd63d6da4 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xd63e70e1 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xd64e0a73 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xd669d07b inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd675a4d7 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xd67faf34 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xd67fcc8c kick_process +EXPORT_SYMBOL_GPL vmlinux 0xd690ddf6 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd69954a9 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xd6b2f232 tty_port_install +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 0xd750aba1 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xd753fc79 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0xd75f24d4 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xd75ffb76 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xd7653eec crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd76a2e80 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xd76f122c debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd782aaec rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xd79302ec fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xd7a29313 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd7c6e39d xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xd7c6f4e5 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xd7e4449e srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xd7e97be6 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xd7eb9eec crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd7f38bdc get_kernel_pages +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 0xd835b27c gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0xd84293bd __module_address +EXPORT_SYMBOL_GPL vmlinux 0xd84e250b l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xd856e3e0 of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd89934e4 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xd8b9ea8a rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd8c33c5f blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0xd8d15454 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xd8d58e2a disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd8d90066 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xd8e849ef bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xd8fed694 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xd9103abf ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xd92f2c46 device_dma_supported +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 0xd9615293 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd975d71f devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xd9760a3b usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd9821040 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xd98a17e7 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd9c39156 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd9c39257 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xd9c9dd78 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xd9d04ec5 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xd9d45312 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0xd9dbd3ac xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0xd9dd559a __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xd9e23893 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9ee16b3 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable +EXPORT_SYMBOL_GPL vmlinux 0xda2286a9 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xda669494 mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0xda8cb2e5 threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0xda8decfd devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xda926e02 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xdab669e2 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xdad737f3 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xdae13bca inet6_sk_rebuild_header +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 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf9af8e list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xdb07ae79 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xdb447d35 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xdb9457e1 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xdb9d8681 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xdbe448ff class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xdbed81fc posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc0726c5 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xdc1739b4 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xdc290e9c rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdc3581aa md_stop +EXPORT_SYMBOL_GPL vmlinux 0xdc3c9e1d shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xdc423e42 bsg_job_done +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 0xdc94dfb8 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca86c57 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xdcb23bda arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0xdcbe995a cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xdd086076 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd281c97 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd4d1d8d fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xdd7b7844 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xdd8822f0 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xddad5d04 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc6b4e2 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xde44ed7e usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde555484 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdeb8b1f2 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xdee33c19 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xdefa6fef xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xdefdc96b usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xdf0a3647 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xdf0c3252 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf19b732 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xdf6f09c6 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xdf6ff22c regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdf80476d trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xdf97a504 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xdfa6d5cf irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xdfc5285f blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xdfc83e35 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xdfcf5cb8 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdfe9ca0e irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xdfffc010 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xe0063aff of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe008fe2f ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe00e6f41 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put +EXPORT_SYMBOL_GPL vmlinux 0xe03f99e2 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xe03fd439 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xe067865f usb_autopm_get_interface_no_resume +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 0xe0b79d2a regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe0bed4b6 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe0c39f42 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xe0f89073 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xe1001de6 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xe12a21bc add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xe1513653 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xe1753997 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xe175e658 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xe1764506 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17e819c locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xe18a0f7d fsl_spi_cpm_init +EXPORT_SYMBOL_GPL vmlinux 0xe196643b ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xe19eb1c4 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe1b23ae4 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xe1b4920b each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1ce97b0 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xe1e097f7 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe1f2658a ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xe1f34cf5 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xe213b6b9 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xe216f250 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xe22e1939 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe269ea4e rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xe270da57 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe280bb8b regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xe281ac0d phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe2986aa4 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xe2bf0f7a ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xe2cd56d5 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xe2d2c1ba _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0xe2e5b0c8 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3120617 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xe31ee8a6 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xe3661b58 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xe36950f6 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xe3ace519 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xe3ae8c3a sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xe3bf7aaf skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3c63903 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xe3d7750e btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xe3eb5945 max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0xe401a8b3 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xe44597cc gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xe456aa64 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe475d8e1 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xe485961c do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4cfd36c kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0xe4d25ef7 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xe4e5284e exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xe5099be0 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xe510d37c nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xe51c040f register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe51d45ef pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xe523623d ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe537aa39 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xe54c685b subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe54e3b0a of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xe5540302 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5a2e35e platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe5af4988 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xe5b34799 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xe5f8c08b pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0xe61ec1c9 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xe6394329 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe65a275b hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xe6943d7d tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xe6a17496 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xe6a98a13 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xe6bdbfbe sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xe6c12828 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6ed3082 user_update +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe722af2f usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe737cebc regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xe7407aae task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe74de715 __rtnl_register +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 0xe78adcf4 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe78dfb12 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xe7a28be0 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xe7b90a66 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xe7cf5d85 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe7d842ef pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe7e0b225 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe80097ae pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xe801a3e3 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xe80af294 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe8158d41 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe823f80a crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe842eeab kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe877559d of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xe87e9ae8 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xe893179a nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe8b22ae4 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xe8b3646b fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xe8bc3e8a rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xe8dbc7d3 __get_user_pages_fast +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 0xe9011b11 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xe920da6e of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xe924c3e2 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0xe92e97f0 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe94ad5fc ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe97d251e rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xe98006eb trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xe98b5661 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xe997c201 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xe998bf20 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9dcb02e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea17af67 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea38ff49 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea4c64af usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xea563ade da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea6d6c7f pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xea89a4e0 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xeadd5014 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xeaeca297 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xeaff6623 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xeb02ead4 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xeb0348b9 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xeb2403cd xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xeb25f80f ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xeb2c68e3 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xeb2de401 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xeb346835 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xeb617336 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xeb997240 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0xebbee176 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xebc68ba7 tpm_try_get_ops +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 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec43edb6 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xec5a7452 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xec7693b8 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xeca7e68b ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xeccd533c cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xece8d97a tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xecef1221 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xed20fb7b blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0xed288530 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xed448284 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xed54145a perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed644ce3 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xed73bebf led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xed84b900 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xedc3a705 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xede673e6 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xedfc98fa unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xee3d9e98 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xee43427b scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xee51051d usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xee551193 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xee56651d ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xee5e066c mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xeea3fea1 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xeec9fee5 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeee650f0 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xeefdb34d of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xef063437 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xef11cb35 __tracepoint_kvm_ppc_instr +EXPORT_SYMBOL_GPL vmlinux 0xef3258fe usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xef3792c3 cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef797e1c ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xef7d13b2 rtc_initialize_alarm +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 0xefb14224 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xefb3691f raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xefb54377 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xefc1c072 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0xefe076b1 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xefed9d36 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xf0184499 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf06580a9 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xf06d1f6d led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf081ca0b rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf0fcad0d x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xf10977ec inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xf124c8f5 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xf12b15aa dev_pm_qos_hide_latency_limit +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 0xf162d91c put_pid +EXPORT_SYMBOL_GPL vmlinux 0xf16cd22c tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xf1784ec5 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xf17b623c ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xf18101ba subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1879de8 ata_host_alloc +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 0xf1d4ccf5 tcp_set_state +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 0xf1fde4dd hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2357804 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xf26bf4a0 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2a1d3f7 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf2a61961 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf3012f6c rh_free +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xf345fbb8 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xf370c2ff rio_register_driver +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 0xf3d8777f nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xf3df2999 pm_generic_runtime_suspend +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 0xf41879c8 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xf41c1670 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xf427925e reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf4864d7e free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xf48fc4b6 of_pwm_get +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 0xf4c91baf max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xf4da3546 kvmppc_init_lpid +EXPORT_SYMBOL_GPL vmlinux 0xf4dcfcea regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xf4de7957 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf4fd4a7c seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xf506953d kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf5184365 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf5516347 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf555372c fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xf5566450 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xf5790eb0 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5a9ffcb usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xf5bf16b5 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xf5cedce3 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xf5e7f053 rh_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf5ee85b1 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xf5f3dd3d ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf60099f3 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xf62da974 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf6483ce7 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xf666ad62 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xf671380e component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xf69488d3 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xf69ec62c dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xf6cc45d9 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xf6d24b22 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f20c2d spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xf7242186 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xf73c65d8 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf74fc00a gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xf756e776 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xf76adbf9 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xf77c9d03 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xf77d63b2 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xf7861606 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xf7968c91 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7b100c0 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xf7c2c9f4 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf7d77c50 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xf7d90096 of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0xf7f17b15 of_modalias_node +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 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf891d4be driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xf89a5ea3 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xf8af0c3d input_class +EXPORT_SYMBOL_GPL vmlinux 0xf8ccf9fc shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xf8da81e4 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xf8e398fc memstart_addr +EXPORT_SYMBOL_GPL vmlinux 0xf8f29a97 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf8ffeda5 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xf902c262 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xf9148ca2 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xf922b7a3 tps65912_reg_read +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 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b12b4d devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa25fdc3 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xfa3c0b93 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xfa56d0f4 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xfa710206 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xfa7346fb dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfaa0e02b virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xfaa131dd irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfac185f6 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xfac841ae devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfb00b6ef cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xfb0cf723 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xfb1d6766 io_cgrp_subsys +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 0xfb352e44 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb388886 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xfb39b76a cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xfb445b5d __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xfb46d1f0 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xfb59e088 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xfb6e26e6 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb95a5a0 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc18f30 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfbd396cc skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfbe337a5 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xfbf7e2c7 simple_attr_release +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 0xfc5d65b9 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xfc8b91df da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xfcb48395 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xfcbbdfe2 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd7d6a67 pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0xfd880e4c kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xfd8e651d bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xfd8eb4a4 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xfd924987 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xfdb10612 inet6_csk_xmit +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 0xfe16e66a pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xfe1b1aa6 pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0xfe27d883 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xfe2d5c9a lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xfe5adb33 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xfe85da35 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeb87423 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xfecd0e18 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xfed0999e ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed6a57b blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xfeda197b ping_seq_start +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 0xff30ac60 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xff447e8e crypto_default_rng +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 0xff88e004 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xff9f7dea regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xffa9d9f2 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffe1c5cd tcp_register_congestion_control only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/powerpc/powerpc64-emb.compiler +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/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-4.4.0.orig/debian.master/abi/4.4.0-97.120/powerpc/powerpc64-emb.modules +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/powerpc/powerpc64-emb.modules @@ -0,0 +1,4309 @@ +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_mid +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ac97_bus +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +aha152x_cs +ahci +ahci_ceva +ahci_platform +ahci_qoriq +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-ircc +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am53c974 +amc6821 +amd +amd5536udc +amd8111e +amdgpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-keypad +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcma-hcd +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +caam +caam_jr +caamalg +caamhash +caamrng +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chipreg +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +clk-cdce706 +clk-cdce925 +clk-max77686 +clk-max77802 +clk-palmas +clk-pwm +clk-rk808 +clk-s2mps11 +clk-si514 +clk-si5351 +clk-si570 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_pcmcia +comedi_test +comedi_usb +comm +configfs +contec_pci_dio +cordic +core +cp210x +cpc925_edac +cpia2 +cpsw_ale +cramfs +crc-ccitt +crc-itu-t +crc32 +crc7 +crc8 +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +csiostor +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_cs +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9601 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dp83848 +dp83867 +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtl1_cs +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc3 +dwc3-pci +dwc_eth_qos +dwmac-generic +dwmac-ipq806x +dwmac-lpc18xx +dwmac-meson +dwmac-rk +dwmac-socfpga +dwmac-sti +dwmac-sunxi +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +eata +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +ehset +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f75375s +f81232 +fakelb +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fl512 +flexcan +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fsl-corenet-cf +fsl-diu-fb +fsl-edma +fsl_elbc_nand +fsl_hypervisor +fsl_ifc_nand +fsl_lpuart +fsl_pq_mdio +fsl_usb2_udc +fsldma +ft6236 +ftdi-elan +ftdi_sio +ftl +fujitsu_ts +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcm +gdmtty +gdmulte +gdmwm +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +genwqe_card +gf128mul +gf2k +gfs2 +ghash-generic +gianfar_driver +gianfar_ptp +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-generic +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp100 +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-cbus-gpio +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mpc +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-reg +i2c-nforce2 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-rk3x +i2c-robotfuzz-osif +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i40e +i40evf +i5k_amb +i6300esb +i740fb +i82092 +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_qib +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +icp_multi +icplus +ics932s401 +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +ims-pcu +imx074 +imx6ul_tsc +imx_thermal +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +kafs +kalmia +kaweth +kbic +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvaser_usb +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +liquidio +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +ll_temac +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac_hid +macb +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77686 +max77693 +max77693-haptic +max77693_charger +max77802 +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +md5-ppc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-octeon +mdio-thunder +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +mf6x4 +mga +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mmc_spi +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpc85xx_edac +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_common +ni_labpc_cs +ni_labpc_isadma +ni_labpc_pci +ni_mio_cs +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsc-ircc +ntb +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvidiafb +nvme +nvmem_core +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_mmc_spi +of_xilinx_wdt +ofpart +old_belkin-sir +omap4-keypad +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +pandora_bl +panel +panel-lg-lg4573 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-simple +parade-ps8622 +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pc300too +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmcia +pcmcia_core +pcmcia_rsrc +pcmciamtd +pcmda12 +pcmmio +pcmuio +pcnet32 +pcnet_cs +pcrypt +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +physmap_of +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +ps2mult +psmouse +psnap +pt +ptp +pulsedlight-lidar-lite-v2 +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-beeper +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qcaspi +qcaux +qcom-spmi-iadc +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qoriq-cpufreq +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rionet +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-generic +rtc-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max77686 +rtc-max77802 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtc_cmos_setup +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7706h +safe_serial +salsa20_generic +samsung-keypad +samsung-sxgbe +sata_fsl +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_probe +sdhci +sdhci-of-arasan +sdhci-of-at91 +sdhci-of-esdhc +sdhci-of-hlwd +sdhci-pci +sdhci-pltfm +sdhci_f_sdh30 +sdio_uart +sdricoh_cs +sedlbauer_cs +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh_veu +sha1-powerpc +shark2 +shpchp +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sir-dev +sis +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skd +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcm-oss +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb-common +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-usx2y +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-vxpocket +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +soundcore +sp2 +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-nor +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +svgalib +sx8 +sx8654 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +sysv +t1pci +t5403 +talitos +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-hexdump +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +thmc50 +thunder_bgx +thunderbolt +ti-adc081c +ti-adc128s052 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udc-xilinx +udf +udl +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_fsl_elbc_gpcm +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vcan +vcnl4000 +ves1820 +ves1x93 +veth +vf610_adc +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-ircc +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsxxxaa +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83781d +w83791d +w83792d +w83793 +w83795 +w83977af_ir +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +windfarm_core +wire +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wl3501_cs +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_ps2 +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +zr364xx +zram +zynq-fpga only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/powerpc/powerpc64-smp +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/powerpc/powerpc64-smp @@ -0,0 +1,17810 @@ +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 0xf5653358 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x0d592b05 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0x4426218f 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 0x0465a0d1 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x136eae0a pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x58e92e2b paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x73096f14 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x7338f6e6 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x7ca5ff88 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x8e0494df pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x9255b3b2 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xafaf7c34 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xbe64da34 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xf041b861 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xfd89da6f pi_schedule_claimed +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x355c466f 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 0x216a6861 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2eed0ec2 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x3807a192 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xac5f623a ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaea1861a ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x1910372d st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x6dac7eb1 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7565369b st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf440c119 st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x87c3c890 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xb05cb42e xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc886d6c8 xillybus_endpoint_discovery +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 0xcb197eff edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x03d1af77 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f3c638e fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x17819796 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x20f37791 fw_run_transaction +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 0x3f06692c fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4b02d437 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x52a47e7c fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x54af0c35 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x628fdf45 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6508b9cd fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6cf506db fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x74a2d987 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x74a41f31 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x83d80881 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9d85ab62 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa61f7faa fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa9a95111 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xac9ded17 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb59ed37e fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb98f1f60 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc37c7cf1 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc3a7399e fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc45c4314 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd3e5f18f fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe5d5c757 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf7385c4b fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/fmc/fmc 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 0x0218a646 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02c2908b drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02f60aa5 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0657186b drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0671c7b8 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x079fb116 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x086c7311 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08fc999b drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0920f7ed drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x098bb18b drm_mode_connector_attach_encoder +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 0x0b025050 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bfceb66 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e41f9d7 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e913c3b drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f145a57 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x102838d3 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107d2f58 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x110faf09 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12cd50d1 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x137af22f drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x144a4fde drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14bc2718 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1527efa4 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15c1959d drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d1fd5c drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x171e25f5 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17307c40 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x175c0cd6 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x176ed969 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18280a6d drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18d401c4 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19530e07 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19872071 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19bc7d00 drm_master_put +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 0x1a6e863b drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a90fa0d drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd3cbd6 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c61cc55 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dff3b16 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20162201 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x203622b9 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22a85286 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2579da59 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26cf8494 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26e6d384 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26eac5ea drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x272379f0 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27c4e6bd drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27c7fbae drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x284ed699 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x285abbc6 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x286b0723 drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a0b66f4 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a23f717 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a684c65 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c5d1571 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c9d5ca1 drm_i2c_encoder_restore +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 0x2f0c688d drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31610cf1 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3193a67c drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32ec4209 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x335a8520 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33a26cc0 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e0b327 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x348429dc drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3487a08e drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x355fa2c3 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x359ced94 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x373ec11a drm_mm_dump_table +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 0x398a0f50 drm_dev_register +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 0x3c9e229a drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d24688e drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ef2cb78 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44aefdce drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x466c5634 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4671344f drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x473ed218 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4881f8fb drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48fbc323 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4acb409c drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b347800 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bf4953a drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c610e55 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e3756b9 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e4d0128 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4efd5139 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50d37ed8 drm_modeset_legacy_acquire_ctx +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 0x52d27073 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x561925aa drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56597b2a drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58f77633 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5988d783 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5995daff drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b004b08 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd218f9 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60a023be of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62197765 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62eadce3 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6319ef67 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6337e2c3 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x642afddf drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x646941f8 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x657e2a2a drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6599943b drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66235d39 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67056de1 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x682d90b8 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ec1da7 drm_add_edid_modes +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 0x6a2251b2 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bdc6bdb drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bfcd418 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ccc12a2 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f1bfd3a drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x704bf914 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71b3aae4 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x731ea836 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74c9fa86 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75962027 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7632720a drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76afa24d drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76b3b125 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x779cfdba drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x780182c4 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78705652 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x790b54e3 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79dc300e drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79e22faa drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a8b0a4d drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7aec5d9b drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c194afa drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c447079 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cdc64bd drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7df3a531 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ee8eff3 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8066c766 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x807c0352 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80957f6f drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81097769 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8191dfff drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82f30e79 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x833a6ce4 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8356b8f2 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84b49a2a drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84c33c7e drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84da0374 drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x860581b2 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8661d01c drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8705dba5 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89876be0 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a6002e9 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a61b072 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bdd2003 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c35f378 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cd068c0 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dc88e48 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ddcc0a6 drm_noop +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 0x8f208ada drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fdb353f drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x905ed2ff drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97106cbc drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97446414 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97f89ebd drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b7b00af drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e64be6f drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0ecf8bb drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa13f4578 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa17000da drm_panel_attach +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 0xa29f4e27 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa367ce39 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3788eb9 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa409dffa drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4301010 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa50407ca drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5f09e1d drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa60e6034 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6d0420a drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa757ca9a drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7c95f19 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7c9c0ee drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8a8d1c1 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9bd914c drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab2d4645 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab2e3fba drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabde5743 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadb2319c drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae482621 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae85c32c drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf49dac0 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6eeafd drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb04093dd drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb17abe35 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1e7a9ec drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1faa65a drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5392fc8 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5a49e5d drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb751c697 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7536736 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7b1a8c3 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7d1f2a6 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8a2539f drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb901c47f drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb94e379a drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd1d673f drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd286cca drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd96df5e drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbde9594c drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe3c46bf drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc03b7621 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3307a0a drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc33b7197 drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc34a78b8 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc387f971 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3caddc9 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3f32b85 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc703c4ab drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc70dd59e drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7a5e7e2 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc87466a6 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8efd56d drm_property_create_object +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 0xcb663e1b drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbb53b30 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbd47474 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbd9ab4f drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc7bd797 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccae63b3 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd5a36c8 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce74ec9e drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce9fe0f3 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0544565 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0e3edfc drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1b9a4fe drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2c21756 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3546765 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd38f6661 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5c19b97 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5cd8301 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd638a388 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd647d175 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd665f5d5 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd72b62f4 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd765b575 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a215d3 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd99b73ef drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda27c725 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda27cb82 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbc51dbf drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd006a72 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd262cd2 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddd07b85 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe06fe29f drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe085a3d3 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2330f6d drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2a8701e drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe43e8714 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe467fe6a drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5f72a84 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7571aec drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9989336 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed849e5b drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee0d438f drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeea0a669 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef03e222 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0293cb9 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf057a596 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0c45f61 drm_connector_register +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 0xf22f99d0 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf46d5972 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf69a9b45 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf855a53a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8770532 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9462970 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf962afda drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa3f6c37 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa8fe108 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb393259 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbe6dc7d drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc5ae606 drm_mode_config_reset +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 0xfe5db830 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb2240e drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffabddb5 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00557f39 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00a524a1 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x025cfea8 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0688b05b drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07bcf27e drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08f808eb drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09927ff6 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c9994ba 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 0x12b420f9 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12eeb966 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1363a89a drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1414db29 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x143f5654 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x144180c6 drm_atomic_helper_resume +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 0x1ab2c7db drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x261dd595 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27a69064 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27ba53c4 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28206870 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a00b5a0 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b94f4c6 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bea3949 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ef3d773 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fafd9d3 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30c70959 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x343dd64a drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34a56e77 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34ec12f2 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x351045b7 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36917c9e __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37c0a1ea drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3848440d __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bafeb28 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bd08cb7 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e4a7a73 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x403b90a9 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x411f302d drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4322057a drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x435719d4 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4425aeac drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x456c6062 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4683a438 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49f105c0 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a53aed4 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b49dbaf drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c580ac4 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f194265 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x519bcb67 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x533a4d1d drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5421578f drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54a8559e drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54b8919e drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x562171a7 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x585aa775 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c3559bf drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c3c69e7 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c672966 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cf4ad18 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cfe80d3 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e565fe0 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fd9b1e7 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60903303 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x619678df drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63ed6825 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6491bff7 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65cfc965 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6699ee35 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66aef07f drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67d8c9b9 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68c6027a drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a3636d2 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 0x7179028d drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71be3b94 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7332756c drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73f8cdac __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79994244 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d3fbd56 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81404e9d drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83aeda37 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8452eb24 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bfe3f3a drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ecb24e2 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91c57a1f drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x925f0980 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93173618 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97da81c1 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x985e0604 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a65badb drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bf705f3 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c2aff29 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d559f1c drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dc35412 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fea17a3 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa39578bb drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4372634 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa51ca5d0 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa55d666a drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6780d4a drm_dp_dpcd_write +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 0xafebff55 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2cb7862 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3cf1106 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb77edd06 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbafa935e __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbccab410 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd8c2074 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe1e7ef0 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2374190 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc271d9f7 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2981593 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5a168e8 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc64a1620 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8ac4eb9 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc95aaf39 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbed0b14 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfee525d drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd08d5080 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1c5017a drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3e09b4b drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd54c8300 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd69aa2ff drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd83babe4 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8c4254f drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda29e151 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddceee3a drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde76ca18 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe00df005 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe054f6f1 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2633bd6 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2fb21a7 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe49df54e drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4efc4c8 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea3a6550 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeef2e731 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1466777 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2045bf8 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf322935c drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68d16bb drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7850807 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7fbf3ee drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8aa02cf drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbd103d6 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfec65000 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01e79430 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05117069 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f68e9d7 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c92caab ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1cf4c50b ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1df40c89 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2521e71d ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c3ba2a3 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d3b9e04 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x382887c6 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a649ca9 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3b10e6b8 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3bf92258 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x403e381d ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x46aa26d8 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x476364c0 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4b578532 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ffa5f49 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56616aec ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5bbc1aa4 ttm_agp_tt_populate +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 0x68a668b2 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b8ce4e7 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6bc7c920 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x71a22b4b ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7365d7e3 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ce11a0f ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fcd61e4 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80b67b90 ttm_bo_mem_put +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 0x899d3eaf ttm_dma_tt_init +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 0x9379a699 ttm_eu_reserve_buffers +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 0x9f5496ba ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5f30414 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa7011e53 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaea9f002 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7991464 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb86eecf9 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5a8068c ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc6d50305 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9316e8b ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc07daf7 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xceb66473 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd413717d ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd6eee9e7 ttm_pool_populate +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 0xde731cee ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdfb77583 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe4e8b2bd ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8c54954 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9fcf1fb ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec124463 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf43e6dca ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4b1cc46 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4bcfdd6 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4be7b0e ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf9cdd4d6 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfaa4efa9 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff95525b ttm_bo_unlock_delayed_workqueue +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 0xe02efaca 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 0x116f1c38 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x2f2fe0cb devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8a61a75b devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xca60938a iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x26ea6fe9 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x380a6208 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x3f95fcbf hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x758ef478 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8f74afd8 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xb7db1d5e 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-trigger 0x2b23e92e hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x506bd620 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x9b66dff9 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xbe533560 hid_sensor_remove_trigger +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 0x0f470550 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x1863f0da iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x1a9f46f1 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x2066cd9f iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x22d47ce7 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x27ffcd2d iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x3a5012a7 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x3b8de3c9 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x4ef19489 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x67ddba16 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x7bd35f30 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xa7a255f7 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xafa78c0a iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xbda857a7 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xf3637a7d iio_device_unregister +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 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 0x6182b786 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xad1f8882 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xcebff957 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xdb352f68 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x05b4e99b ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x23cd60a8 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x262fac3e cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6b0c15c4 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x781dc978 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7ce1d643 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7ddcf4de ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa90c2ba9 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xab4286e1 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb693df68 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc76e2a1b ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc9fb3fd6 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd11d1d04 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd6c87b07 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd90b0fea ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdf23db6c ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe524fb6b ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf19a5573 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0187918e ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x041770a8 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0618cbcb ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0864250e ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b12aaa0 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dda3ef1 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f9171e6 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x110cc167 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12c9c0d5 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15f9040a ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bb986e2 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21b7ee67 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x229a635a ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22dfa249 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ada2e0c ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fe32c8d ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3399aff8 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35d6e2a6 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35fe200d ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3922dc10 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d5d9c11 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43db9159 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46c952e6 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48e5ed15 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a2426f2 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4af69dc8 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b559b30 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b7c25bb ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f4c2108 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55f9f219 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c03c551 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c4fd3da rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e5cd613 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62240231 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64505f4d ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67c8af67 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x752a9e7c ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77a1f2a2 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79e877a4 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d5ebc13 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f38f757 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8057e7c4 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8426de16 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x845f4e2e ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89949863 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f60992e ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fc59749 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x961d635b ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bfa8b34 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cbed3fd ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9c79f64 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaadd13ed ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabc3e7d6 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaef87255 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4d447ec ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb523ada0 ib_destroy_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 0xbae768d0 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe500d3a ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc214e826 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc437e915 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5ed6f3b ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc68134f2 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6e8fa89 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb68ed95 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb85b132 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd372631 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce42185c ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd64523c5 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7ad3618 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7c897a6 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda531450 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaeb3f66 ib_get_client_data +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 0xdf995dc2 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6f070d0 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7d50ffd ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9604d14 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed5ca562 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee40cd36 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf31599a1 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6020d0a ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6c87d1f ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +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 0x00977505 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x41aee53c ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x44b1be00 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x485e80f7 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x62edca9e ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x780af35f ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xac303b25 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc1d2bd40 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_sa 0xfd702de3 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x042a9307 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 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf57e3c6a ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x00efb566 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0789a35e iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1dad413f iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6ce8f9bd iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7543dec7 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7a4c062a iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7dd16fe3 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x861af9c1 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x889e1bfd 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 0xa5267ac9 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa9e90174 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xace30e3f iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb7d43fd6 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xee7eec3a iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xffbd993a iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x06f488d7 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x13332f4d rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19244bc6 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1e9f60d8 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f87d53c rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1ff2200f rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2a8c62e2 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3db3562f rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5449e301 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x617b2cff rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6988628a rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x728d2a25 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88dbfeaf rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9a390454 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa190c97a rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb629ea6d rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbddfe8bb rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcd76833a rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf419849b rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf84ccb09 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf9d1e802 rdma_connect +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 0x32e20bb9 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x6eaeb484 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xa24536a0 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xaa4cecd7 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xde23d531 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xcb66949c matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x3a3a444d ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x873553e7 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xb8c4b232 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x56f25b9c 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 0x0ab329fc sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x41abe22b sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4613a06d sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x60eb36b2 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x99184b9c sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xebae2a75 sparse_keymap_free +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x8283dcbe ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x9e8482d2 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 0x1b6f2196 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b562b5a 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 0x2bd0d101 capi20_release +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 0x6fdd8159 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 0x751eaf12 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 0x87821456 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 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb32399d1 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbaa2fdab capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbabd0235 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xdb45ebed 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 0x1283ac9d b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x15b5b541 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x16af14eb b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x22166374 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x24a7a812 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8fbf039f b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9282e322 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x95614bef b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9bb6d769 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xac9095d4 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb3f4f6c1 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbbc9ffbb b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdf2c843a b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xeb811c82 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf67f20c8 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x39d51726 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x61861ab1 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x77fb5e1b b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x79303d00 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa01aaeaf b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc51e6100 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd213f1ae b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xef339d8a t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf1d3940f 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 0x77408d44 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xba2ea589 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe5e94c72 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xece23a8f mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x4b777a13 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x70875f6b 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 0x48e6b1dc 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 0x0d511495 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x23cef329 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x251da357 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x2811c00a isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x4152aaf7 isacsx_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x00f06d7f isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x8605a5c9 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xf7e32e7a 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 0x014becc8 create_l1 +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 0x1d3e25d4 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x228bbccb bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x25e448f5 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3209dd8d get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x44aaa016 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x45f30a91 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x532318fb mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5b4f204e recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5d8d757e mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x62e89dcc queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7de7916f mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8bf49fd8 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x92cff238 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb58440b3 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbd73e1c8 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc0ab0a38 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xca504764 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xca93b05e 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 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf1949081 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf1d424ae mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf92fc12d mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfb4195cf recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 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 0x2a8ccecd closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x359bcd6c closure_sub +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 0x596247e0 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x715e08c0 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 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 0x14dce9a8 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x1c3a346a dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x477f7ae3 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xb25ac509 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x024e34cd dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x353e0ac7 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5eb077d3 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6f7b5f17 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xae6fbfdf dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd5de6ee3 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/raid456 0xd6ec1bc8 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x226a5660 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x25db2c4b flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2daf1de1 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x37d80be2 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x61d4f7b3 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6276f759 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x62a2b6bd flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x83edb029 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8af8aa65 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9ef73e0e flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa193ef95 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbda69727 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xffc61e5f flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/cx2341x 0x0cbead72 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2e231b8e 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 0x8e40a98a cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xbcad47b1 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/cypress_firmware 0x7941328d cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x06b7a4a8 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x7d2bdb04 tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d0f11dd dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0de4c568 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x205de368 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2e52c14b dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3249bd83 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32706276 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x348daf75 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ffca181 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x41df7a6c dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4e49460d dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c0ea535 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6377b350 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6c090f8f dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7021e910 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70af1058 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72bc9bc6 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74988ab2 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x769f71cc dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78db694b dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78fc1241 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f4f9b54 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x83f83604 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8422fa14 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85a5e7d3 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x87df8fe2 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x940e4dd0 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9876cf35 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9c83079a dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc51dad26 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc61f6267 dvb_register_adapter +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 0xdc93c33e dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe4595068 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf053d073 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf28e7431 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf6e0c99d dvb_net_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 0xfbaa7e01 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x2c1a1f3d af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xfdced2c6 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xcd2e2bfa atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x14832098 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1cd730b2 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x62f3cfd5 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8321e37e au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x958111f4 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc91ccc47 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe255346f au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe6b28361 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf2bffb99 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x5fa764e4 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x044d505e bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x4e8ae584 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x19cb6134 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x81132958 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x6f978c88 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xd4f17062 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x2e6e37cb cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x82a04bdd cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x0af374c3 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xfd71b131 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x0eb639e0 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x42b4ced3 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x50e6fdcb cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xa8f7a467 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x5ddf459a dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x88a099fc dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa80e3cae dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xcc5bf3a6 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd7742279 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0f8eacd4 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1594450e dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x283cf92b dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2a3d7c8d dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x32f3c16c dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x44afa9dc dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x56639dc5 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x733f06a1 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7ea55ee4 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8d3c18a5 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa00de1ae dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa4bf5689 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbd71fd3b dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbf47c7ab dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xee624068 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xb5327157 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0289f492 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x21cf652e dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x426c7fb4 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xce0357b7 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xda403dd6 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf8dde864 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x0d77a7d0 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3c5eec58 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7a1d48b7 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x9ca8a9ac dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x7c33b4fb dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x461968d3 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 0xbb5b9917 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xb9019b09 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x07c0bde1 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xfec0d56b ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x3181bb4f dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x37030406 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xc55cfbbf horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x698f7cd6 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x1e0bba7d isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x33280007 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xd7d075c4 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xa152c71f ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x03299f3c l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xe3470f13 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x56ebea98 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xb2783cc5 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x0e665eac lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xb98b6386 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xde96aa05 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x03597386 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xfe212350 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x7f43c069 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x3b2149ee m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xf7917a52 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x553b3158 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x7e21e8f9 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x6c064b0a mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xa0c006be mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xad543802 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xfcd9c8f1 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x77009636 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x470738c4 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x7cb9be46 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x9476512f s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xe47dd3ad s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x09dd0e0f s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xe632419d s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x9654098a s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x689d4b26 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xa69c03eb si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xa61c5278 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xf5a990b9 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xb9685605 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xa18e837a stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xbf6c14f0 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xac8b62d9 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xdb46a716 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x2ebe7a1e stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x1dcb305b stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x1e920841 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x4d85e927 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x3a51b711 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xab112ca1 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xe0ad9f21 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x7eb0504a tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x7f5b16df tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x39a44caa tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x015efa58 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x354b5230 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x2fb2ad8c tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x8c979ecd tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x2330e5d8 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x97c820d7 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x9b0e9c1b tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x62b57eac ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x6a441ebb tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x9fbc2f56 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x6dff8bfd ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xbbc409ed zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x7481800c zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x8ce5d975 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x031a867b flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1a85ee15 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8b379454 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbaef06fc flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xdbfe6d3a flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xec8de615 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf4186c3c flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x05818aab bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x07c9e2fa bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x55d1fbcd bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf108d8c8 bt878 +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 0xa2e6c628 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xa413bc0b bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbd7e2103 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x09abea43 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x09c70266 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x09f1e61a rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x72360b98 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x80233cac dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd2132b79 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd390ea18 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdf00b887 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf62886c4 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x15b93d47 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x25225644 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5c0c8245 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5c2c3c6f cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5ceee3c2 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x9f7e33bd cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x7fd30378 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 0x605da83c cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7734679f cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x817e972e cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x832021cc cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc095b98e cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc9ad2ad0 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd768b419 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x35b8915c vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xbe98c43c vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x60d76bd1 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x77c2e46e cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xaacbed06 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf102c641 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2fd490f4 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x364fee56 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x79554b86 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7aa9a5e6 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7b71e805 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdcc11b6f cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe94d34d4 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0914b7d1 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1214a8bb cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x14033d38 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x17366e01 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3ae509c4 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x43a5359d cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5433ca9a cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x54398fa1 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x59a042c4 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5f7e1c44 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5fe4b7fc cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x71e71555 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x75d46d23 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x83c0a79f cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb6787e81 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcd4c5047 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe2e542f9 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe35c2af1 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xea8abe94 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfa332c02 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0781642a ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0c15c2ee ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x30b07145 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3c6f7c0b ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3f3a96d0 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4f8d7a51 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x62a61746 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x760c8908 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7a3acae1 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x82753449 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x877cd2a2 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8f139ed5 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8f1f84c9 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x91163f18 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcae580b9 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd4a42bfc ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf010b108 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1e58fa9c saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5fb6536f saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6f37f4c9 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x92a72166 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa7547e88 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcaa2acfa saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcc4455dd saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe4c8fbc2 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe54e1a28 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe7be50c6 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf9603815 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf987d6e2 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x1babae89 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 0x1f26a1b3 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x6626469f soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x783fd3dd soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb105a27e soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb95143ab soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xbd53eb19 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xcd6713d4 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 0x20c000e1 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x63b34f7a snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x70d9257e snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x92ab0420 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x9471748d snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x9b12c1a9 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xeec20883 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x056f8cd8 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x217cacfc lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3b73e3ad lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x680ec6f6 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7bbcde83 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x938678f6 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xcb1a8d15 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xdfff8464 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/rc-core 0x4b6429c1 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb1404358 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x1ecc754d fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x39bb8d3d fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x1dc0cf75 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x85121110 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xe78f144f fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x7999660c max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xaea3a038 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x83c80526 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xbb80b203 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xc3a26a76 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x52b39347 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xba0d695c qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x3a343438 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 0x600b6be4 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xd8c78d83 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xa13bd4d6 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x12bd8c23 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xfe9d3d2a cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x545fd671 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5910ea6c dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x59c9e1dd dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x96ec0395 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xac5a627a dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb7f11756 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcc5827a7 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xde8ab0de dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xebc2464f dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0bae061c dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x393e0108 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4adf5cf7 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xaa9818a8 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xcf2f3ec5 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xdb57cb10 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf411d7bf 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 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xea659be0 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x00d978c8 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x249ba71b dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2a6647aa dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7c9e311d dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7e77c9d0 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8dcda985 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9475ade8 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa359a455 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa8c44818 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 0xd90ef4fd dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfd53fbc0 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x3f91922a em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xeba90c0b em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0edac337 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2eb15804 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4e31c3c1 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4f43d578 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x868f3716 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9078560d go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x99a152f9 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa8b58a6f go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb158c6ca go7007_alloc +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x304bc0ce gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3c8a271c gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x58dbaa61 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcfc18787 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe3fe4cc6 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xecc096a6 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xecd1f58a gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf7cc8c9d gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x37d9402c tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xc37da6a8 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf9246f42 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x9e0b1cd7 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xb5cc1d1d ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x1c4d5c71 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 0x6912bcaa v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x89d58781 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x16d5e87e videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x1b2cabc3 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x7acfd906 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb8858c9f videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xd9b081aa videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xeb32b6d5 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x5ff674bf vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xe5e2a61f vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x1951b7bf vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x55b6e172 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x85498620 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xdbc52c81 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xdf2ad570 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xe953fe35 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 0xb4dad840 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0be841f5 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f17f1cc v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x109daf18 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11ac4b8b video_devdata +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 0x17f65b33 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x184c4355 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1cb9ea83 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20782a03 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x21feb500 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x23a3cc96 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x276a9bc1 v4l2_ctrl_find +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 0x3737ab6b v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b342bd6 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x458540d5 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4643674b v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4bc69b40 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c79fb4f video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5595b043 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x560a93ec v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56c19edf v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c97a034 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61f3652a v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x626b6da1 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6843fbe6 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69c57f69 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6b21abeb v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6fb8450e v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7005dd81 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7585cdd7 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7680fc43 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7898ec24 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3c2a21 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c96b65e v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f1593a2 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x865655a6 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x979c7d06 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x97e588a1 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ab15ade v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9af8342a v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f5edcef v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa0ece233 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa41ff0e4 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xabb5c660 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad4d65f6 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaedb563e v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf960e74 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba155496 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc01d66ea v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5ddc8f9 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc77bff6b v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd8bacad v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd94b3cc v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcfe560e3 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd05e7caf __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3aa1a28 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd5b22ead v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd788ae33 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd91581b2 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdadbf397 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdfb4dd08 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdff1d086 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4af22fb v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec199787 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee2372fe video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee7d5f99 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf4f4c9e3 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf5d7f674 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf78dc3d7 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfa7825f4 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfc2e4c85 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xff8d606e video_device_release +EXPORT_SYMBOL drivers/memstick/core/memstick 0x07a90b0d memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0e5fb6f7 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x38dfed78 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3e42d32e memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4051131c memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x41a33670 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x53134581 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x59558856 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7711e8d7 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x914d8653 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9280ead6 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xee61af1d memstick_add_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0b3c403b mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0c9d62a0 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x11859079 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1f925c10 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2238ad0d mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x272ea35e mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x332aad2d mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3911cff9 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3ea11007 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4eec3d9f mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x55c8949b mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x57e88663 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x588ea530 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5a440010 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5c8374cb mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x63f869fe mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7363509c mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d68e692 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8d2254ec mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9aaf5d93 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa0c4d6b0 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa4170088 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaac7c9fa 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 0xc62b4268 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc8c04fbe mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcee0508f 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 0xe3f797aa mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xecd8be8a mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfec52dae mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x05006752 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x119bc2da mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x129f9a6f mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x16dab6ed mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x21f92fbf mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2e6d0334 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x371fba8c mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x39a2a56b mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3a017a00 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x433d18db mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x53087669 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x64f1c78b mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x656824b6 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x71aac5a7 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7a25a7c1 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x841f4e87 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8d96eb6b mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x975328b3 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaadbef76 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xad053762 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb35d2d59 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb530b327 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbc2c22f9 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbddfa375 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd70ee3d3 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe47a098a mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfbd35158 mptscsih_bios_param +EXPORT_SYMBOL drivers/mfd/dln2 0x3864e02b dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xbff04f5c dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xe24262a7 dln2_transfer +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 0x0b4167c1 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0x4a3f63af ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x21ec8c53 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x2e11ba5a tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x3f422782 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x4a19bb24 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x514552a7 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x51fccf7b tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x76d4ca72 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x88df61e4 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x9357543c tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x9815ddc6 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xdb669b86 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xf9b6e74a tifm_remove_adapter +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xcae9ef38 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 0xb094ee73 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xf513f8bf 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 0x5acdad1b arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x69a5d07b arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6f98ba82 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x71f4c2bc arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7a2b6ad4 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8b1f0306 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x903067ee alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xed0e49bc arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf6b5f628 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfdf59669 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6fd7384f com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb271a0a6 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc7ce6e88 com20020_check +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x07a1c3c8 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x12df9597 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5f5f6474 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x61aeec01 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6fae8397 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8fdb79a5 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa02df7f4 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb96a481b ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd38366ee NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf1315f7b ei_poll +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x0f9b0963 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x29a0fed0 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 0x1576d6eb cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x16f8ce15 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3e17d52d t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x42a33392 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x43d3bcf8 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x46c85489 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x60eb3516 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6590316a t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x66e84001 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6d82a33b t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x76e402d4 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcf07251c cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd2533fc1 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd4c4e85b dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf6424eb4 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfc57cbe5 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x03221bcb cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x060c6984 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0dfcb234 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e5e8b1d cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x10f51192 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x18d582d6 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x191b85be cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x213da4fa cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2544dbea cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x29061ce2 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2a7bad0b cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x30ef69b0 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x38c0619e cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x44fe0947 cxgb4_port_viid +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 0x6f39a6bd cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x723ed6ca cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75d30447 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8734f980 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x890f694a cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8e7b2e48 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9195563f cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xadabcf1a cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xadd8a2fd cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0687115 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6d0d90d cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbae38c0c cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd390c4c1 cxgb4_remove_server_filter +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 0xe414027b cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe5e7b49c cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe6f5bec7 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe78da685 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef30c82c cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2afdd015 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x39206c96 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9a070946 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb9773603 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xba96cf7e vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc0b29353 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x0d1afb64 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x1591b33a 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 0x019679de mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07a298ac mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cfe7843 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0da9dbc2 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x167b150d mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a3ae284 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c673b83 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20d63973 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x215979d0 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x239e297c mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23cb6158 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34a5813e mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4808a224 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c2d8df4 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cc38d78 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ab9804b mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e2c4783 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ffd46a9 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6416ff8d mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7536facd mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a46dd81 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c521757 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8df1e00c mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9582b177 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4b39fe1 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac2f8b8c mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb753e1bb mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba59ad35 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb83deb1 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0269af7 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc44245dd mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd07bea3b mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5d8bb23 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf04cb2ae mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf04dba76 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3655806 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6680c35 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe80f5c0 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0204f0e2 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08273f4d mlx5_core_destroy_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 0x0eb7287e mlx5_del_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f7cf93c mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ffd6a5a mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10c06b2a mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19636fc8 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b9d2b9d mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2009345b mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21ad17c7 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2745a77b mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x333587ce mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e1ebaef mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f9a612c mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47810802 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x498227aa mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53b77e73 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x592f7523 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x709849a3 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70d64aa9 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78ca0624 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78f72d73 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f85b634 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80d3db3a mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8439ba74 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ad22427 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c3b12d8 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3e9d4fa mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa43261ce mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa70f30f8 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9b90674 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab7cdc35 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacefee52 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0361c00 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7d184d4 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7ee2819 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd40beaca mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde822b33 mlx5_core_destroy_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 0xfa65e5ff 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 0x1720d536 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 0x30adbc88 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x31cf8db7 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x45ea83b9 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 0x8d086ee2 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa05a54be mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdbc71ef6 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 0x379200a3 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 0x69507da0 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x71fe5f45 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x8727c44b hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa95066a6 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xed432a00 hdlcdrv_register +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0da8d9d6 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x107bdaae sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x32413e4a irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x42e757ef sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x560111ab sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x887bd6ce sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xaea06750 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd9a14955 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe1c151c7 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf25a42bc 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 0x130b2ac8 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x4f39ebd8 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x6140c545 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x70c5f4eb generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x7d6fdb70 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x99e0d319 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xa6a4ba51 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xcac1ffb9 mii_nway_restart +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x00385bbd alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xdb1a4304 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xca5fd680 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xfb8e7760 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x2695f29b xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x8c361f46 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xab29ec03 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/vitesse 0xfc9c10b1 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x6e5ba661 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xa37209e6 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xb93d78c4 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x013cbad5 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x07e9aca8 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x320b261d team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x75ff2ef0 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x7dec0ef7 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x87c48b1c team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xc206eae3 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xd4c0d18c team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xf329dc2e team_mode_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x0dd62ef1 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x890c8668 cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0xb279822f usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xe5a27a7a usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x06f44526 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2cdf2e17 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3a4bf99b hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x43b32f4f unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x43dd333e hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6b41494b hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x81d9b0ad detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x87cc96fc hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xabb65f58 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd744a606 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf7643e82 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x4ed59c71 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x73648010 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xd1b05827 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xef2024b9 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x22f95036 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x23e5a376 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5c74210c ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5c78cf58 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8ff76d21 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x90d1509d ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa7836bb3 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb371db3b ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcb163ec0 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe7e1749f ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf258b4ad ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf90586d4 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 0x29f04201 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2f4a94a4 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x66652227 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x733d3b67 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x76d991eb ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x843a3295 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x86961c2d ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x95308a57 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xab4c672f ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb207d1d6 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbe8f8376 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd0aaef3e ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe9d7a0ed ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed2e3612 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf912fd89 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0db87393 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x513c4d0c ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x70d1aa24 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x79a0b26c ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7c08b0aa ath6kl_core_init +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 0x95bdf8bf ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb7d392f4 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc9aaccf0 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 0xceba3c08 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd2bb705c ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd70c9266 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x044b9d1a ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1d6f9efd ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2618fa77 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x28321268 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 0x3982f22e ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x47da051b ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4ba13063 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x518a8a33 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x537e8265 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5b4e2c8d ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5e1d5aca ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8407d1ec ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x89a08680 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa91f190a ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa98a1847 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa9a8966f 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 0xd3787757 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd37c708c ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd6207195 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xda0c3b82 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdb92946f ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe4ba0060 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfcdbe993 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0213bf56 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x042b30a8 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0569faa3 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0884caa2 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d5cc537 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d97573f ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f215018 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10764209 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10984319 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11490c3c ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1363c68f ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1612b31e ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d376194 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28ce2510 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2995e7d3 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b22220b ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d06b8ad ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f7ab8a0 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x316060a8 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31e9fbdb ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32ba07c5 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34183652 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x361d5d9c ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3757bbe9 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x399034d7 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a0c0357 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a4e0c26 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x434413d4 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48430f2c ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a5b64eb ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4abda0ce ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b37eec5 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ddaf973 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x529c3223 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52e4a73f ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53cb616d ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x567e1119 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64d2059e ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x658250c4 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6661b0bb ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66d07dab ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a652131 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6adc6a6b ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c04d604 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ed33579 ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f78fe17 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f830639 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6fdda602 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70241e68 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74b493b2 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7650c227 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x821ccc0c ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87aebdb1 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88e87a3c ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x939c6b74 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x940e2439 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9693164a ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97b08652 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x983e498b ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x994369dd ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c302e4f ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d80b77e ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d9e1b5c ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa117b076 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2b84089 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa36da817 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4df47ba ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa95aa744 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac72832d ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0bc1a9e ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb27effed ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2a33850 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6cba28e ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8bf198c ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba6b4608 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbba041c ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc3b2271 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdc71a36 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0824501 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0bac90b ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc228035e ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc692e319 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc69c5589 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8104105 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc870a791 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd07bd60 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf4b11af ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd07c8e17 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd12920c3 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1ab6e3d ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5d65891 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9042cdd ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdccac354 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0d13074 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe547e9d7 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7b735ed ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7eb8db0 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe85085f4 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf198e7a5 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1da054d ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2a0fe16 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4f983dc ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5751100 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff69dcd4 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffffbc33 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/atmel 0x345cdee7 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x7acacbad atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xcb8f51e8 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0b834161 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0c277a6e brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0f612932 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x36054378 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x45e8617b brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x49f21a6a brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x4a45ae5a brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x4f1d18ba brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x641d1149 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x84ff5f8b 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 0xa4749d30 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb7efdf70 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb88c911f brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad61d61 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ba6772f hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1249571f hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x226062fd hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x36eef500 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x46e7d1b6 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6500dfa1 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7cbccca3 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x817cab0e hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8208bbcb hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x825dd861 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x91b9149d hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x93f19ed4 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9c66c1df hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa46a0133 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2277d1f hostap_set_antsel +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 0xbb5c6462 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbf870c86 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc184d3ca prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc846e423 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd2a8c310 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd60193e6 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe130a6f5 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf26cf901 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf8e4e1c4 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1214dbc7 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1781b048 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x188bc1dd libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1b4a0879 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2a571615 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2a64c3ea libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2ff56da1 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x34402da8 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3defd12a alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4f7e7c70 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5653a407 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7bb7c8da libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7cc05e3b libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa0ed5d88 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbbd45fbc libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbe62e796 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd348b100 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xdf3dd552 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe6543212 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe701793a libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xfd264ebe libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x052d8112 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06db41ba il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x07c18ca9 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08db79e0 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0908107f il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0df4a9cc il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0f98608f il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1316b558 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x14a6dac5 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x14b10335 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1be42d55 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1c4d8579 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1ef8d4fa il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1f59270d il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1fcc24c4 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2116a627 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x26c1df8f il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2737b07b il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2ab53b23 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2c98a939 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2ea705e2 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3185252e il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x360cf33c il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x362e0c9a il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x39b15688 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3ac0102f il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3b835e4c il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d09604e il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3e787435 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x423bc1b0 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x46686108 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x475a67df il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x486643d9 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4a3047bf il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4f5b0abd il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x53b29418 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x567979ec il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5b20f843 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6056e025 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x60ef85b1 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x66895f29 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6cc37d2a il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6e7e706a il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x708d95c0 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x71cea934 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7273693e il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8082b0a2 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8319f71c il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x86ba194e il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8926d89f il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8dbe65f0 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x904205ae il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x997047ca _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x99796122 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9990e7f9 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x99ae3620 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9b221d58 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c031453 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c089d55 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c241719 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9cc0aa8b il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9d2dbcab il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9e26694e il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa21f5cfd il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa43c1ccc il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa8b0aeb7 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xacae2e5c il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0652828 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb3af6e11 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb48a7a8e il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb5ea4189 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba85c263 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc44355a8 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc4b1adbe il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc5780603 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc625b5ef il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc71fbfe5 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xca3b3612 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcde9c49c il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd097eda8 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd8b5343d il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd8dae88d il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdade7d9a il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdbd3dcf2 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe02e37df il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe277d52a il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2aaa4f3 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe373557d il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe651d8ec il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeaabb814 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xec0daf8e il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf0a2d6d2 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf28faceb il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf383ed9c il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf54fe0a0 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf845c52d il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfb5c606f il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfe4a2d62 il_get_channel_info +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 0x03cb76a2 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x257e3af2 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x35b09657 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x389cf255 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x394732d6 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x443eea03 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x458f132c orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x463c056c orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4f422dbc orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x60ea2246 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x88e6412f free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9443f812 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa1000386 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa98d7428 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb5204a5c __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd20e5209 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x3b615cd1 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0772a35f rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0aafc85e rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f09eef6 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x164e40f5 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x175b099d rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x20ac0248 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x284638e5 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f784882 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x37a283cc rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3c2b7763 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3fdfc26c rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42ed1930 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x438bd18a _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x55888c45 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ae8e9de _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5d701600 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60956da3 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x68a68a30 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69c68567 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x797eab7a rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8843cd42 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x88668bdd rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9d068657 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa3ef6359 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa40a203c rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xae0ee55b _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 0xbf5c7e16 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc57d4c91 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc74d80c2 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcac26bdd _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcc6f4025 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd05ae172 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd528fc92 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd63878d0 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdc70a7c9 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe246f2af rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe3d8c2db _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf4aea825 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf6203eff rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfce1d2c5 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfe263745 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x0aa578c7 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x2734445d rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xadf65dca rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb2f6f003 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x21bca387 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2f581449 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x48bc5f13 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc8dc6f66 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07ae8e14 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0fc3faa6 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x18facb8f 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 0x21a538d9 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2847f3a4 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3484205c rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ce3872e rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4225efab rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a14dd3a rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4fdb288e rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x60b52568 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x896f0dff rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8af1fe31 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x95f5a5d0 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9692bed4 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9c87fbe6 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa29d6208 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa2a6335 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc512f9f7 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc5664e91 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9894681 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda5d4d57 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc68a50c rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xde17701e efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe32eaa3c rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe5f5bff2 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xea5cea19 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7e890ab rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x1d90bdd2 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x5b7bc3ad wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xcbffc4e3 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xffa81680 wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x300ede2c fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x7b94abc4 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd3533a80 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0x7969e30d microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xdf338502 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x000434e4 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x15aeb1ee nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x19d6726c nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x415393e5 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xdefd50e6 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x0d480a7b s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf4e2d2db s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xfa1f842e s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x074a7b2b st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x18a43f94 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1a60db15 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x40a48f34 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5a5c8a7f ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x689167a6 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8475b200 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x859de3a2 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb82ed633 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd1e24cf4 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd60744cc ndlc_close +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0c07c6c3 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0fcdd494 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1938304e st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3814d10c st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x40b6ab53 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x44c66e86 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x52a0f8f0 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x568b0c90 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x595187f3 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8b06e2cd st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8c54c097 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x92b5623f st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9d13a763 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbee59a2f st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc8d2f202 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe6b24af5 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeda5fb65 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf39b7e29 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/ntb/ntb 0x123b4853 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x561e202b ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x7bcd9c1d ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x7fca5f70 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x8f7c7872 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xe0002f4e ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xe41a929a ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xea55a63e __ntb_register_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x0c31b697 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x18b6f232 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0xfaa6cb91 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x029a6c01 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x0b06c89a parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x11d28ebd parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x1c739d21 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x1dcef8e2 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x25aaa070 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x2698fb71 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x3e84086a parport_release +EXPORT_SYMBOL drivers/parport/parport 0x46f9f225 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x4aba3e50 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x4b44c835 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4f483b13 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6051fc9c parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x680f85ca parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x8368922f parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x85e83707 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x86ac3404 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x93fa8f8e parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x9fa06d57 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xa1439f3f parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xa4be57b8 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xa6fb598b parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xb26f5b7e parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xbbda00e0 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xc10dcfde parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xca24b07b __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xd83ecfd5 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xea87df64 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xef75ec5e parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xf1fd76a8 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xf77d43da parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xf96d71fe parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport_pc 0xc08402e6 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xc19b0cba parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x081e013e pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2a17eb10 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2a5088a9 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3970479e pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3cf7c78e pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6bd1f4c9 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x79c1043b pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7d99b6c3 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8a13a435 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8dfd7d02 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8e3adf75 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x91beca3f pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x95b4c8a3 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xad5ab689 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc248faf2 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd5eec5e6 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe438c54a pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfcc286fd pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfe40222b pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x08b4fb38 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1053a8a6 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1406a7d3 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x180ab4fe pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x496d0c4f pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x97e7fac2 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa18f3819 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xad3d11b0 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf6632c7 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xdb85c71e pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xefe3738b pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x504e644e pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xde7a9512 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pps/pps_core 0x00c8b315 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x56ad10b5 pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0x8f5396be pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0xf1e5fb29 pps_register_source +EXPORT_SYMBOL drivers/ptp/ptp 0x54c0f5a3 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xa0e8e378 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0xcde47d4a ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0xd2427ad4 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xf42418d1 ptp_clock_index +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x07955b3b rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0ea93168 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2eb1b4f3 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x57dce285 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x82b47006 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xdd2a9221 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xee1fbac7 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf7561c7b rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfe8a5e12 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xff9afd18 rproc_alloc +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x7926d35f ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9f87f201 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xaeb42e41 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd556c2a9 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xef1617e5 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x092e0030 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x11db8c4f fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1e74aabd fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x69e5e61b fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x71988dbf fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7995651c fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x94a0cc08 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb284b617 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb7a861f6 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbb32cd29 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc24e3978 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xeea34b26 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x07cd383d fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x09c55f0a fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13c074f4 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16eb8bcd fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x19a4ce6f fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1b7e3c78 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x214e04b9 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2afea836 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d3254d1 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f807213 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x32eeafcb fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a56f4a3 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d066ba8 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3e7a950d fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x410e119c fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4280738f fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42cc6cd6 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48926af7 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x527c4e2c fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5303afb0 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53c79192 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x549eb0fd fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x556dacef fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ccc441b _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5daa3c5a fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e25cc3a fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6625f5d0 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x70d6a421 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x762ee767 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83c80a29 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d51a5e2 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa740d778 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9432fb0 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaf55f9d0 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb51672e3 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb85a7f6c fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9a79e5d fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9d36616 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf4c89d5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbfeabd89 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3468b47 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc4662d99 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6b45c40 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc98c3b93 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf446bc2 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdaca1d3a fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea9b7bc1 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed0e9a5a fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf4a05748 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa871a12 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x80196882 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa38295c2 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xac1b76f3 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xfccb38f1 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 0xacfb2f8f mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x12f4d8d8 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1c1f97f8 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x21fab9ca osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x24dce27b osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2b214b72 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x387cea6c osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4379b155 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x456b076a osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x45a9dddb osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x45acdc83 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4b5ab5e8 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4c8fc772 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x54bb712b osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x79f8fef0 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x814b68de osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x88e0b6bd osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9165025d osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x92fff245 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x94ece7c6 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x963a6401 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb4081e4a osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc121f3db osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc15098d6 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc3ea7398 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc46313de osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc7a71bff osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd03aef68 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd0bd7e36 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd387797a osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd4704e07 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd49e4074 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdfb8dc7f osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe12117f6 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xee74c4e8 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf8552185 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf96a8185 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/osd 0x0ce3e727 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x2783de11 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x3a86e8e2 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x4f6f1a9b osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5508937f osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xd8fa36da osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x04d4b592 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0993d377 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1fb71062 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x53684529 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x66ab6cb2 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x89c5e8f4 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa8f351b4 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb8adce41 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcddb0c64 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd956b290 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe7ea88e9 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf485c2ec qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x24700211 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x36e6352b qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x518c2669 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x607fddf8 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x9689e4ae qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xd1a0e971 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 0x9ab02310 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x9e0bb799 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xd8bc48fe raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x13baf15f fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x19cac72e fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x30a1e890 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x65c9d0e3 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fe65fe5 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa7a5971a fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcffa9f7d scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd4e6e42d fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdea76da8 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe6aabf14 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe74265de fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfce9003d scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfd0cc786 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x133630b1 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1e254f89 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2009e744 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x27615a92 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x288658c4 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2d6c38a3 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x38fee381 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3be135a4 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a6d146a sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x62183155 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6b31f2e9 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x72ae6a95 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x74d6abcf sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x91fcffc5 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9ddd4c51 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa2b9ea10 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa3c6dbb4 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa47a0fe4 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xad8ad0d5 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xad912b89 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb0ca16b8 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb3196e83 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb84932db sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbd9b8296 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6c484c7 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0406fc6 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe13ee857 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xecc033a3 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x100ca1f9 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1ba1673b spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x45b84dab spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x73666ad8 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd1970eba spi_attach_transport +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x164a77a1 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x17458cff ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x620cd7fa ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6742787f ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7d3ea074 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xa900aeeb ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd988493d ufshcd_runtime_idle +EXPORT_SYMBOL drivers/ssb/ssb 0x19344ec6 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x1f50fdfa ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x27026862 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x3077caca ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x5d6b1f5d ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x62b7fd80 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x6e64281e ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x75af8b63 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x7e0b267e ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x81e66039 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x8c0ca2a3 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x9d15bbac ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xb74c9950 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc45982c0 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xda5c0b70 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xdf007a81 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xe038ccaf ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xe840f3dc ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xea2da739 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xf4357904 ssb_device_is_enabled +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0407554c fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x06ace531 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0bfb4c61 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x34970ae7 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x397dda24 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x553fc580 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x57c26f1b fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5a0f0aee fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x664ebcad fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x73ebe68d fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x76a00bfd fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7dc2a4ed fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7e988d31 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x86300c61 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa2271c34 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa7329436 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xadd9a28e fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc1afb0b8 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc965f899 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xde25fc81 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe8bb3276 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xef870702 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf04d876f fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfe71b5bc fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x85f3c6e7 fwtty_port_get +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xee56a77a fwtty_port_put +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x15f7ae8e 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 0x72d17bb8 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x6f79668c most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0094eeaa rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x03bbbaef rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x046fa1b4 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x060e86c1 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0704859f RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0ac8bd8e rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0bf2aca4 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0caa255e rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0feac4e6 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x116c060e rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1616d930 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2448b0bd HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28b5ad10 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x34686322 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3807ab95 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x389b0f4a rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x402a4615 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4537ba0e rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47001448 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4afc3e2d rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4b274de2 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6270c7eb notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x644715fc rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x657fe076 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b1a3098 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7a5ca03e rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ac48a84 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x85106d62 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x86858024 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b343273 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8bbde0ce free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x914b886d dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9802be00 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9d2ef32b rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa2e26695 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xad9ffd5f rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xada570be rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb90355a3 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2ea6c73 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4a5c8f4 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc9f97017 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xca7738c8 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd13502ca rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd315a6ca rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd8ee0458 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde9f082f rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe16c38a5 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xea7af24f alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfa7a38a6 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfcceb8c1 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x01275e49 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0226bc69 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x048be089 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x05b81790 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x09aaf1a5 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c085238 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x23efec72 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26a93981 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2b171e36 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2ca8457c ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x340eaf2f ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x344f5227 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a59e4d8 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b311057 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x463e10c1 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4cf51c0e ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x516648bf ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5760e239 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5c563a37 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ce88fb5 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5d1e9b7c ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6a4df2c9 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6dd78afb ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70946381 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7e3e2ea8 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8016ca23 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x84279979 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x84ecc0f9 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x855fae87 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x909e9988 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x96e120c7 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9990e8fd ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9e77c7ab ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa3f45c5b ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa84b0c76 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3cd393b ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0987498 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc68cc38c DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6a03631 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8043442 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd1ae1b6b ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd1d1b8b8 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4867dd1 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4f953f8 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd6a130c9 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda100ddb ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdac94a56 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xddf7228d ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe0153291 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe038d916 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe693a81d ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe70bc395 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff1fda74 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1dfa126d iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e3b3cd8 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x251a48cf iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x26de248e iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d2c80ed iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5340fb8f iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61c746a1 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x68aab449 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x69340b6c iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ece3a82 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x722991e1 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f46c2c4 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ebe220a iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x95b0afba iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c34ff7a iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa1863bc9 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb8d9806d iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd0c66e68 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd15c8c4b iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd3be1913 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd6067665 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd73b6863 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe11bf5d0 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea811e30 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xee618dd6 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf5fadca6 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa1dc18d iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfcc359ea iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/target_core_mod 0x012c8e4f transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x02dc68fb transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0473b658 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e9057bb target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f964071 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x1249b9b6 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x12dcac42 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1391967e sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x14429fa8 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x14de8a07 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x195a33b3 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x1a1fb8ba target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x1b49a728 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1d4ed1d9 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x23e801dc transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x274754b6 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x2bc09010 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x2cdbad64 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x2fde8934 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x367c03d3 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x4542cd74 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a84ef16 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x4cb01261 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ef7c899 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x549a1809 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x55bfbd4c transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x57de638b sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x58d036d6 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x5a2b1244 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x5bb3b4df target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f9b82a0 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x61690ee7 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x62a25f0e transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x686640cf transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x690a11e4 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d9e7ce2 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x70b82478 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x7247d1f9 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c93b501 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ecaece2 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x819f3778 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x822d7d7c target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x84bc5cc2 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x866c00f3 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x8758544d core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x8c252c7e target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x907a6e27 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x93f9685c target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x94825ec8 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x9515870b target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x976255e8 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa91c61c0 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa9c3a1fe target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2d29b54 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xc58fd114 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xc8c5878f target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xca73b384 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xd10b995b target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7b2866e target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xdd78ecc3 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xe152acfa target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xed1510d6 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xefb6e123 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf58695a1 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xf7a827b3 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf8825ee0 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf8ff7d2f target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfcfde96f sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd75475f transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x8743d00a 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 0x59724f93 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0ee2af25 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x360ce6b6 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3684a3bc usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3acbf8e8 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4ed3baea usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x74b2021b usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7f478b6b usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x966fe655 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa42e7671 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd33d4979 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf2b69e77 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf565b699 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x1f02c3c2 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x62cb9ff4 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 0x1abbafca lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x280546a8 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x455591b1 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xdd961d28 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 0x272bbb9a svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x30322148 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x34759d0b 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 0x7abc4325 svga_tilecopy +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 0xa7206875 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 0xea6fda54 svga_tileblit +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 0xf617eddb svga_tilefill +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 0x5d9a6b20 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x73887ded matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9703c737 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xa756242c g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x04b128b2 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x44ca8359 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa1e10b1e matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa457e77a DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x104f69f7 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x42bf71ac matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x3d9683f5 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x50d693a3 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xafa357af matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xda7544d0 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x0dbb99f1 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x9864d1d1 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2f321dcf matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4cb2b3f1 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x830de16c matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xafbd0886 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe17d47b1 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x84938c23 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 0x960c2141 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xb9991631 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xfc951955 w1_remove_master_device +EXPORT_SYMBOL fs/configfs/configfs 0x08d998ce configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x16e5d4ed configfs_undepend_item +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 0x65ddd2f9 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x6cfd59d2 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x71d3218a configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x7de42d9d configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x934fb1e9 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x9ce9da5d configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0xc2c612d3 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0xcdcc0c7f configfs_unregister_subsystem +EXPORT_SYMBOL fs/exofs/libore 0x0e78a6e6 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x2eaea0f0 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x410fa2c7 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x80201e59 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x85eaa051 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa1f28531 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xb4c2b950 ore_write +EXPORT_SYMBOL fs/exofs/libore 0xc3b08aa6 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xf5dc899c ore_read +EXPORT_SYMBOL fs/exofs/libore 0xfb3edf62 ore_get_rw_state +EXPORT_SYMBOL fs/fscache/fscache 0x09357c9a __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x0e4bb76d __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x0ea2ee5a __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x1b12edaf fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x23614b15 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x255552c2 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x2d689074 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x2f789958 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x30d6639f __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x3bb60492 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x429253d0 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x5504749a __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x5c7d6d25 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x630febbe __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x6ba52d6d __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x73f83fd6 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x78b65478 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x8691aa07 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x8bddba76 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x8f3a43bb fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x92736ec6 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x96e4481c __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x99ee1cc1 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x9e0a6189 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xa845f6c4 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xa8c0d0a3 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xaf377ea1 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb6e327ed __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc0d91249 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xcca1398d __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xce311abe fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xd005039b __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xd1869722 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xd7748d1a fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xe16fb915 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xe8932d79 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xec100f10 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xf2f60a20 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xf8ec1a2b fscache_add_cache +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x337725eb qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x772885ac qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xd341c4fd qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xebbfa13a qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xf34fadb8 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 0x06d76b1f lc_seq_printf_stats +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 0x682f0eef 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 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 0x8380c58f lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0x983289ac lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xeaf69900 lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x99c3cd48 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xcd2d4190 unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0x1288a000 destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0x2a379456 make_8023_client +EXPORT_SYMBOL net/802/psnap 0xdea65381 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xf84e1cae unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x046c2437 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x07b97e76 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x12ec8b80 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x17f9c8d0 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x1e23355c p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x1ecd094e p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x218bd46d v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x222a3e77 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x2d7f7565 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x356b61d1 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x380c1a74 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x4114c151 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x4777a0fe p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x49f01419 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x51afa7b3 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x53045402 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x53d58a07 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x653fc70a p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x781af546 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x7b859a3e p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x878fa581 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x87f73ff5 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x95cd0b3c p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x9e0c6f37 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x9e5e4ee2 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa6aea43c p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xaaf20fd0 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xacb3ad26 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xb7d0ff2d p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xc44170f8 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xc4bcd7d2 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc8cc50a0 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xcc61a19a p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd0e8e879 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xd9133ca4 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xdaad3ff3 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xddb3ed67 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xde8ff94a p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xe49ec464 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xf1f76afe p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xf26571b5 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/appletalk/appletalk 0x0b65d91d atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x7e9fc136 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xe954bea7 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xf235c10d atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x014bed7d atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x1c282588 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x1f4dbcf3 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x25b80539 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x5b89b105 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x9a4f0c90 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 0xaa89dd04 atm_charge +EXPORT_SYMBOL net/atm/atm 0xb6f60c05 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xcb4789b1 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xdb2eaa47 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xdc960c6b atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xf4782899 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xfcb4c2f5 vcc_insert_socket +EXPORT_SYMBOL net/ax25/ax25 0x0df902ef ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x17374fd6 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x2c231f8c ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x2c948e7c ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x36b0acaf 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 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x9cfb0f08 ax25_ip_xmit +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 0xe25e6a61 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xfdbd1b23 ax25_linkfail_release +EXPORT_SYMBOL net/bluetooth/bluetooth 0x071aa570 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0f2a77a0 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e5b084e l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x22fc0e46 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x25f3497e bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2fc03a00 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x32ad19e9 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3450c1b2 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x399ba473 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c797081 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3d5c081d hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x448136e7 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4eadc4ef hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5923e36b __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b6d48c3 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x63de778c hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6884b4b5 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6aaeffd0 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6ab1a079 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6f880d58 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7d8fa657 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8459cc92 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8b92cdcf hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8dc82cae hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9572a5f0 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa04f89f1 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa2071ca9 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa88e7214 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb39bc556 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb47f3a22 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb7d329e3 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb945eb8d bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc851eb1c l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcd59555e hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd2427f06 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xebc27fd1 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf33666c0 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3e4823a bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfa0adc47 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfda1b7d5 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xff532f7e bt_sock_wait_state +EXPORT_SYMBOL net/bridge/bridge 0xffdb2e81 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x155bda38 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x377299b7 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xfde7314e ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x12a85c2f 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 0x6a036060 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x72f61a8e caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x78f6c78a 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 0xc9b9e06f cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x05048f30 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xa7dd008b can_ioctl +EXPORT_SYMBOL net/can/can 0xe00489c3 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xe018b5dc can_rx_register +EXPORT_SYMBOL net/can/can 0xed228259 can_proto_register +EXPORT_SYMBOL net/can/can 0xf930a7df can_send +EXPORT_SYMBOL net/ceph/libceph 0x05fdfd6b ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x062d02ab ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x07058188 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x072a63a8 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0cde3c6c ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x14fa2c60 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x17f613cd osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x18b2d98a ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x1f766bdd ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x2456ade3 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x2489d16d ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x262bd295 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x2774a43c osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x299b8306 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x2e813b8e ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x2ffc699d ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x3184030b osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x32e0e95c ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3bfb65c5 ceph_monc_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 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 0x452a974b ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4aeeecde ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x5332f336 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 0x5987f0b0 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x5aeddafa osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x5b81c184 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x5dcdb4bf ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5e406d18 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x5fb55392 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x616fa190 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x643f78a5 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x651c669d ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x6a8a8256 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6be759ec ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x6c6fde66 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x6e75d9a1 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x710dfa5f ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x78009b9d ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x791e933b ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7b0cae98 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x7c15e634 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7f44f370 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x870b65c9 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x8b34ecc7 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x8c22275c ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x8c493647 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x8ce61aaf osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x8d6162db ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x8fb29719 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9dca89c2 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x9ee1e5dc osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa0da0616 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xa275af28 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xa4b6ab8c ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xac0d95cb ceph_release_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 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb8d44a7f osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc0fb662a osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xc2b1e5cb ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xc2c287bb ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc5b7768d ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc6a25df7 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc93c442c ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcb676214 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xcf1832b7 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd35381b0 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xd5c71dc1 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xd6a27cba ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xddb64343 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xe0523f20 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xe0a99fbf ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xe51adf58 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xe9a7f892 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xebea4b01 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0xed866037 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf3625315 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xf5db0559 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0xf6672757 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xf811d8bc osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xf8ed5327 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xf8f93bc6 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xf9dfa3fd ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0xfe9e584d ceph_msg_data_add_bio +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x7dcf2dc1 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xb0a34b1e dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0113bb8f wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x415f5ca8 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x597eff0e wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc59c2885 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc94288af wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe01edc6c wpan_phy_find +EXPORT_SYMBOL net/ipv4/fou 0x264cdd15 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xef46258b gue_build_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2d32bdfd ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x71e23a95 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9d794752 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd7cf9550 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe05ed0fa ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf2dec72e ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5ce41677 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x962268ad arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd0ff09f2 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x129ea06a ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x82ed53fe ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8c6da198 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x40484784 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xe912aa9d xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x0e4cb92d udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x09bcf090 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x45e8d5be ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5995ed83 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc4b35384 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x64d758be ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb2b8d9ca ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf7b5129e ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x70ba5a6d xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x77dba188 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1ba2efcf xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xa21956fb xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x06adc21a ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x11eb6594 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x65c3114e ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x67d99f6c ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6ca2192c ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6d80a914 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xbdcf6d7b ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf35e0981 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 0x120d0dac irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x22ccf81e alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x2785ced8 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x2a27f677 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x2dcf352d irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x3065b005 iriap_close +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x34bb34de irlap_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 0x54ed33f7 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x613b3db9 irlmp_open_lsap +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 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 0xa1675cb0 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 0xb3167210 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0xb4964696 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xb8d9b01a irda_notify_init +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 0xc50e2f32 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0xc5df4e0d irlap_close +EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xcb0fe7f5 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find +EXPORT_SYMBOL net/irda/irda 0xcecda7f2 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xd140bd94 iriap_open +EXPORT_SYMBOL net/irda/irda 0xd15c11c5 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xd63103e6 irttp_dup +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xdba26f66 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xdc762e03 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xdcaebb9c irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xe7bb4420 irttp_open_tsap +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 0xf8f9ef9c irttp_connect_response +EXPORT_SYMBOL net/l2tp/l2tp_core 0x57b7345c l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0xca7e2bd6 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x0a7a09ea lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x6651cff2 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x7ef9aa5c lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x80b9f338 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x8818f007 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x8fa17f41 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x92021c07 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xd52fc678 lapb_getparms +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x42a7ef26 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x605b3dc2 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x782ad55e llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x7b62faed llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xb6bdbed3 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xe0723309 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xea22c5b3 llc_sap_find +EXPORT_SYMBOL net/mac80211/mac80211 0x00972575 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x1d773d2a ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x2005d636 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x21b256f6 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x2470a3c3 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x26d29c9d ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x270480b4 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x29918e02 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x29d9f80a ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x2bb7c9d5 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x2cfc8b65 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x312f6768 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x313c90df ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x3183390e ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x360430e8 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x36fcde3c ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x3722ed5f ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x37d1ca2c ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x3abc8172 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x41e38663 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x43575b93 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x43cec1d2 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4b79e072 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x4f3500f7 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x552c1e33 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x56f578f7 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x5c70a9b8 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x5db781a4 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x5ea6fa61 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x5efd540f ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x604ff024 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x641f4bd7 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x679c834f ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x67a1622c ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x6a99092f ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x77cadaa6 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x791075bf __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x7d228b99 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x7d921985 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x7ed7ac12 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x80a0207f ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x85f0cdc6 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x8b22b5fb ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x8e8f2cb5 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x900715cb ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x96bad6d7 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x996533f2 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xa1cb0583 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xa2f8356e ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xa3218779 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xa4dc3419 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xaa8f15bb ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xb3e02381 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb4450d9e ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xb4b32c17 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xb78972eb ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xbb7ed104 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xbb9b3458 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xbcf64f5f ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xc0812fe6 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xc976cd65 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xcc1bd4d7 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xd11110b7 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xd426294e ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xdf8eac86 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xe48062eb ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xe5a216c8 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xe69045c8 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe6ee1e17 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xe90d6e42 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xec245ffb __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xf3655c95 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xf46f2bee ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xf61e8ef1 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xf757cfe7 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xfae9aece ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfce6536b ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xfd51b862 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac802154/mac802154 0x026516f7 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x1d88c315 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x2fbdcfef ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x39b92bf2 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x6ba86507 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7701dc06 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x890e0f6b ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xbca5dddb ieee802154_alloc_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0f77f4e4 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x24576e0c ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3645ca4e ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3fbd5183 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x62df313a ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x63007db1 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x63824f0d register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x824d2efd register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa8014afa ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb7159498 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd429d73e unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdec5c228 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdee2c852 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdf849ab3 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x1a03e630 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x83767df6 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xbf46c634 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x0e179645 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x1734a3dc nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x93d2d853 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x9d581173 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xa7688dd1 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xf28dc32e nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/x_tables 0x0031e866 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x125365b4 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x4a85af24 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x7151eebf xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x72882ec4 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x85081197 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x8aab9506 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x8aed00fb xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x9cc32abb xt_unregister_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 0xd80cfa8e xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/nfc/hci/hci 0x00bad351 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x133e01aa nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x143b492c nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x19636f8d nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x1bbf3522 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x2b68058e nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x542f6086 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x55b8aa4d nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x67901224 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x7c703911 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x889e62fa nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x9bdd7db8 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xa9741783 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xbd8d154e nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xc894f64f nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xc9e0c37f nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xd226e78f nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xdddb5efa nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xe7fdfcf0 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xea501f89 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xea8a09d9 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/nci/nci 0x04e00bfe nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x0f7baa65 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x1b6a380b nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x1b8956cd nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x222b86d7 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x24df80cc nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x285c5af3 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x31802fa1 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x34c5b99e nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x3a9fede3 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x400c5d97 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x49ab9d36 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x4b07ddf2 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x5e6a5a31 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x698d202c nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x705a8e13 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x7ea254e0 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x88729a7c nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xa3b04f56 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xb44d98ac nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc506695e nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xcab08c05 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xd0d416aa nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xd803b3fd nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xe50c9826 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe5ee97ec nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xee31c865 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xf1bbaadb nci_recv_frame +EXPORT_SYMBOL net/nfc/nfc 0x0501a1dc nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x0d0de224 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x28eb927f nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x2d9285a2 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x3032719b nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x3564bb44 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x4746ee5e nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x4c75d0d0 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x5d6c14c3 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x5fe2070a nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x71cd471b nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x727c1591 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x7b265466 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x83e2b683 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x868dd6a6 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x89b5bbb9 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x8f9d6dc9 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x9164d5ee nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x96085565 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xa99dbad1 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xc24f0a57 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xc8a5dfaa nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xdd431bb5 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xef6ddf69 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x08f4169f nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x0dbb671a nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x4dfb8061 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xaee71407 nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x0d77ae66 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x102b0e55 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x5e08cf28 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x86fd5323 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x9a77bd46 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xc1f911e5 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xd6d0bf8c phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xed8f9539 pn_sock_get_port +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00d0d074 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x135ff0ba key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1b7aa738 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x33752b34 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x377e5543 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x41856e6e rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8ccca5c3 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8e6c0ff8 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8f5a4068 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x99768ed0 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb6b34915 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbbaa976e rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd25386e3 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xdff405ba rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf0a758b6 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/sctp/sctp 0x7d6aa236 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2f256329 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x39e8ac4e gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x41c03c3d gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x004dc4e4 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc6c9fbb2 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xdcfd2e05 xdr_truncate_encode +EXPORT_SYMBOL net/wimax/wimax 0x290d050c wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0x45f08166 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x035c8a9b cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0a3e3ab5 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x0aa734c9 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x0c0a789d cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0f66b3df __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x1127fe4e cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x118d09b4 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x14abcecb wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x1820fd26 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1cf64d29 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x233fb262 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x23d62d8d cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x25ad1f43 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x25ae80d9 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x26cc7c4a __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x2b9a6ad5 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2fc67bb0 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x3002021f cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x32537f68 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x3a59a69b cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x400250b9 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x4196221d cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x43fcf294 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x46021f45 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x46666d1d cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4ae4baef cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x567b072d ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x5801130f cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x5915ea7f cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x5a08a7e7 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x5f77038b cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x5fb709d2 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x6042c35c cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x64ec0013 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x69502efd 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 0x6e17df96 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x719d054b regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x7368e3db __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x77aaa205 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x7bdc0c33 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x814f8c43 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x83552378 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x846d4978 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x84cd3c31 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x85780475 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x86acab1b cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8b51dae0 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x8c567828 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x8da6c603 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x8de06fcb ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x90d7ae88 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x9483d30c cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9b55fee8 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x9b927751 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x9c94b589 cfg80211_get_station +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 0xa9cb2277 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xafd6ae5f cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb52da21d wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xb73bfd43 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xbced3735 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xbe8604d0 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xbfcc2f38 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xc03cfe69 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xc0a2e267 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xc62fbfac cfg80211_cqm_beacon_loss_notify +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 0xc969a214 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xcb31c7ed cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xd24208be ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xd8440811 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xda34f63f cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xde1507f9 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xe17a60b4 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xe3164a0d __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe389ad01 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe9f3e8b1 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf21e1758 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xf53e684d cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xf676a91e cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xf725839c cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xfbe291a3 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xfd1fa38f cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xfe79d39a cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x01579f6b lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x0b555e3c lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x49a36697 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x6c11fa93 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x88fdccc6 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xc83c0470 lib80211_crypt_info_init +EXPORT_SYMBOL sound/ac97_bus 0x92069289 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xb3d131bb snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x0a5e4b81 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 0x6fa3d82a 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 0xaaa77ba2 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 0xd882c29a 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 0x352e984e 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 0xae4c0412 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x02846380 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x0381e3c4 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x07550974 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x0c6598fe snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x108abd25 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x10e5b242 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x15395877 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x1891bd6f snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x18ac58a5 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 0x1cc872d8 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x1ebb8f0c snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x2ada37c2 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x2d46c35e snd_card_register +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 0x3dc7d9af snd_card_new +EXPORT_SYMBOL sound/core/snd 0x3f1d5a4a snd_card_free +EXPORT_SYMBOL sound/core/snd 0x3f2134ee snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x41948eeb snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x46aa780c snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4c3f79c7 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x5dc6406a snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x5ee67603 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x725ff3ab snd_cards +EXPORT_SYMBOL sound/core/snd 0x738c7741 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x770455f6 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x78618665 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x88471107 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8e307c1a snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x8ee513c2 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x9e0b393a snd_device_new +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0x9ea6393f snd_card_file_remove +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 0xa1ea41c0 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xafb692cb snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb51d9d7e snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xbb152e25 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xc5878459 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xca8db700 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xce362bb4 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xd0d6ecef snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xd5492a5d snd_register_device +EXPORT_SYMBOL sound/core/snd 0xd61e42ef snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xe057e579 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xe3eba918 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xf2fffc7d snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xfc043773 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xfda6b579 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xfec63f1d snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0x9aa0ab36 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x181717e4 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x1b7ec24f snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x243f15f0 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x260b1f8c snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x28b5db7e snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x35ff12bf snd_pcm_lib_preallocate_free_for_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 0x3a6cf8e5 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x3b55365d snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x3d5327a8 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x4ae93e9a snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x4da51e8a snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x4e73f39f snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x556f62b4 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x56d42218 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x5774e83f snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x57f4f0f0 snd_pcm_lib_malloc_pages +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 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x68bca1d0 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x68d66117 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x726078e6 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x78f681d6 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x7edeaca5 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x7ef9aa67 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x96138b28 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x98601f80 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x9eb2664a snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x9f14a3a2 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xa19296d0 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xa4a1adab snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa89eb421 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xa92e59f9 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa9f66237 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xaca11493 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xb0061a8f snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xb4274ec8 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xb8416227 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xc83fe72e snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xcab3d66f snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xce67a322 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0xd11f021b snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0xd28e66dc snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xd2e1f3c3 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0xd33c8d12 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xf3948b4a snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xf7aec242 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xfc9b06bc snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xfd53d8cb snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x02f64d5f __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1810d003 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x43003fa6 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x46d74da1 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x537a0b70 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fdc540e snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x83e3e7b5 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x89f362e5 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8e403bb4 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa226d64d snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa5c73be4 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xaca8e781 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb0ee0752 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb1bba043 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc4e4157d snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc6f4206c snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd83740a2 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdc0d4521 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfe7054a8 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-timer 0x0890721f snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x1799a7a1 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x28d5c77b snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x4052f268 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x539becc9 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x8be47afa snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x8cb25b2e snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xb78bba6d snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xd8347d11 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xd8416b54 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xd9a1fb0b snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xfd9b3dd3 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xff727bb0 snd_timer_interrupt +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 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x17e020fd snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1c84a2b5 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x30b35da4 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4e24825d snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5f180973 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6d1caf7d snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x729f4a7e snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x85100b42 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe5c0849c snd_opl3_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x100f139b 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 0x2f4822c2 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x67a73102 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6c44bbde snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x883ccf5b snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x94cc2701 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa9979415 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc2a9ad86 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe67185fa snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x069f2512 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x126adc7b amdtp_stream_pcm_pointer +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 0x2a52fce7 amdtp_stream_add_pcm_hw_constraints +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 0x62645ddc fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x636b47be fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x64f45839 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6d9b9ab5 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6fef77fb amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7cb314dd cmp_connection_init +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 0x95052d32 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9cf8b475 amdtp_stream_init +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 0xd38b799c amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd5f0ac26 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd91b1f2e 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 0xed27ad19 amdtp_stream_stop +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 0xf30a484f amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfab384b7 cmp_connection_destroy +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x519fce41 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xeb46da41 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1872100b snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1abb7e5b snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3e5cf018 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9acf963d snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9bdd81b0 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb50ff8d1 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcbfaf8f9 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdb26dd87 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x2caa345e snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x3044f7e5 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x9660818b snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xdd41e320 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xea3498cb snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xffe8c99e snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x44a73b80 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4a74626f snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x606acdf7 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x67525568 snd_akm4xxx_init +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 0x0d4f4f76 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x345e9e3f snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x3cc9ff12 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x45a4c5af snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb06144b3 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb453721f snd_cs8427_iec958_active +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 0x20d0d25c snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x23e36354 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x24808208 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x388fff65 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3dc2993b snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x73cfe548 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8881e846 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xcf444fdc snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe21afa3b snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf24e9068 snd_sbmixer_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x047baed5 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1dff0f2e snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x444ac333 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x513be093 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5788bff7 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x78c583e8 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x89775f8c snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9c88c145 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9e4a4952 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb19cedf0 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbb42708b snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc3820ec4 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xce8674ed snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd12a48b4 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd8648100 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf4290032 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfeb917ac snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2038e428 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x46de34b7 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4fa71a8e snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6b3946f4 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x74d6d15f snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa7ba0406 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb58efc30 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd9c0e01d snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xed99a047 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7df664ea snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x951d27f0 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xfe901241 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 0x16bc897d oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1e3d1bfb oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2519d77f oxygen_pci_probe +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 0x54d04009 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6b53ab19 oxygen_pci_shutdown +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 0x97de7a74 oxygen_pci_pm +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 0xef5ca615 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xefcdfc4a oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfd8a3729 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1bcc7586 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7fcce187 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8bb2b6f9 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9f8ba6cf snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb7e266cf snd_trident_stop_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x19c45900 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x76360f23 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/snd-soc-core 0xf4e04fe6 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 0x0c1ef4b1 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 0x0005e594 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x0010b8a2 phy_device_register +EXPORT_SYMBOL vmlinux 0x0016d9e3 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x0029821b proc_remove +EXPORT_SYMBOL vmlinux 0x0046685e of_get_pci_address +EXPORT_SYMBOL vmlinux 0x005a4975 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x005e74e7 udp_ioctl +EXPORT_SYMBOL vmlinux 0x00624f4e netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x009b12f2 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x00a30223 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00de1715 get_agp_version +EXPORT_SYMBOL vmlinux 0x00ebc7fb skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x010c31d7 import_iovec +EXPORT_SYMBOL vmlinux 0x0122f95e _lv1_get_spe_irq_outlet +EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 +EXPORT_SYMBOL vmlinux 0x01344af6 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x01407560 d_find_alias +EXPORT_SYMBOL vmlinux 0x0157e96f __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x017037ed blk_init_queue +EXPORT_SYMBOL vmlinux 0x0180a9b1 dump_emit +EXPORT_SYMBOL vmlinux 0x018d9919 _lv1_set_lpm_interrupt_mask +EXPORT_SYMBOL vmlinux 0x01b859f8 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x01d8a15d sk_receive_skb +EXPORT_SYMBOL vmlinux 0x01ec3da3 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x01f9bfd1 tty_register_device +EXPORT_SYMBOL vmlinux 0x0205fb65 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x02084822 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x020d18d7 _lv1_set_lpm_debug_bus_control +EXPORT_SYMBOL vmlinux 0x02240b8c generic_file_fsync +EXPORT_SYMBOL vmlinux 0x023a074a hvc_get_chars +EXPORT_SYMBOL vmlinux 0x024265b9 n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0x0245959e input_open_device +EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x024f2eb6 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x02582606 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027d5499 _lv1_did_update_interrupt_mask +EXPORT_SYMBOL vmlinux 0x02898544 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x028a578e kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x02a170a9 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a397da neigh_table_init +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02a9f171 km_is_alive +EXPORT_SYMBOL vmlinux 0x02c7c0fe pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x02d39c1f jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x02d497d1 setup_new_exec +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x03029a73 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x03067360 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x03171a95 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x031c0d52 dump_truncate +EXPORT_SYMBOL vmlinux 0x031dc65e pasemi_dma_free_chan +EXPORT_SYMBOL vmlinux 0x0331646d udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x0331f372 skb_find_text +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x033b581f input_flush_device +EXPORT_SYMBOL vmlinux 0x033edadb dquot_quota_off +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x035b2496 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x039b2bd5 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x03a64274 mmc_request_done +EXPORT_SYMBOL vmlinux 0x03b6b07e devm_ioport_map +EXPORT_SYMBOL vmlinux 0x03bf3846 xfrm_input +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x03fee0e7 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x0404c124 inet6_release +EXPORT_SYMBOL vmlinux 0x04074f48 ioremap +EXPORT_SYMBOL vmlinux 0x041087c3 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x042bfb3f genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x0440a533 _lv1_net_remove_multicast_address +EXPORT_SYMBOL vmlinux 0x0442a80c __frontswap_store +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x045817ed page_readlink +EXPORT_SYMBOL vmlinux 0x0480a638 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x049d7ea8 nf_afinfo +EXPORT_SYMBOL vmlinux 0x04a48318 vme_bus_num +EXPORT_SYMBOL vmlinux 0x04cf841f xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x04d8c07d pmac_resume_agp_for_card +EXPORT_SYMBOL vmlinux 0x04e0609c key_link +EXPORT_SYMBOL vmlinux 0x04e7a966 skb_unlink +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x0517f46c dquot_alloc +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x051bf3e1 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x0538824b request_firmware +EXPORT_SYMBOL vmlinux 0x0540b32a cpu_core_map +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x055cd652 file_path +EXPORT_SYMBOL vmlinux 0x056a1b59 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x0585be82 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x05891716 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05a725d6 dev_addr_del +EXPORT_SYMBOL vmlinux 0x05c4ab25 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x060431c8 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0630890a __netif_schedule +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06456aff _lv1_get_virtual_address_space_id_of_ppe +EXPORT_SYMBOL vmlinux 0x0656c06e inet6_getname +EXPORT_SYMBOL vmlinux 0x06597ef1 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x065c16e2 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x066fabe3 of_match_node +EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x069197d0 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x06c5908c i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x06d85b76 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x06d922a7 giveup_altivec +EXPORT_SYMBOL vmlinux 0x06e31be9 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x06eee856 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x06f05d86 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x074a8472 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x07a45464 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x07b26e10 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x07b9fa00 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x07bd4cf9 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x07c9afd2 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d0b2d6 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x07d5bc76 new_inode +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 0x081928ef __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x08204a2b tso_count_descs +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x087dbeaf bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x0899f350 flush_signals +EXPORT_SYMBOL vmlinux 0x08a2acd7 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x08ac004c pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x08d61390 tty_throttle +EXPORT_SYMBOL vmlinux 0x08ea4fec devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x093ade68 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x09571e4f simple_fill_super +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x095f420a scsi_dma_map +EXPORT_SYMBOL vmlinux 0x095f60b2 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x096341c2 _lv1_connect_irq_plug_ext +EXPORT_SYMBOL vmlinux 0x097a64ad scsi_print_sense +EXPORT_SYMBOL vmlinux 0x097b7faa scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098c63b6 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x09ac764c xfrm_state_delete +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 0x09d90856 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x09dab2e5 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x09fa57fb mount_single +EXPORT_SYMBOL vmlinux 0x0a2241fe blk_end_request +EXPORT_SYMBOL vmlinux 0x0a24903d tcp_ioctl +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a3d0644 cpu_online_mask +EXPORT_SYMBOL vmlinux 0x0a48629f xfrm_init_state +EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x0a702471 d_set_d_op +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a7fa624 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x0a8effc4 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaaedc9 dquot_operations +EXPORT_SYMBOL vmlinux 0x0abbc6e8 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x0ac0445e __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x0ac1b0a4 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad1b46c lock_rename +EXPORT_SYMBOL vmlinux 0x0ad35676 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x0ae44175 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x0aed49b0 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x0aef7b97 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x0af11768 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x0afa8c8f tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1b1a56 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b22c986 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp +EXPORT_SYMBOL vmlinux 0x0b3b5ebb splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x0b3eab81 security_path_rmdir +EXPORT_SYMBOL vmlinux 0x0b444c44 vga_con +EXPORT_SYMBOL vmlinux 0x0b4f570a default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x0b5df60c d_move +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b69a969 dqget +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b7847c9 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x0b9fe858 compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x0bae22ea keyring_alloc +EXPORT_SYMBOL vmlinux 0x0bb82856 tty_port_open +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bce7aa0 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x0be6d762 mdiobus_free +EXPORT_SYMBOL vmlinux 0x0c1ad162 _lv1_net_start_rx_dma +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c421497 kset_unregister +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c4a1fb4 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x0c4aeed5 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x0c5088ce netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c703225 vme_irq_free +EXPORT_SYMBOL vmlinux 0x0c9708cd netif_receive_skb +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca7d6c3 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x0caa97c3 elv_add_request +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0ce408a0 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x0ce46f1f dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x0d03aca8 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x0d09d78c bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6c963c copy_from_user +EXPORT_SYMBOL vmlinux 0x0d9f0691 nvm_end_io +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0daab494 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0df4dcec param_ops_uint +EXPORT_SYMBOL vmlinux 0x0e06c2dc get_acl +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0e9aac3d would_dump +EXPORT_SYMBOL vmlinux 0x0eba6358 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x0ebdb345 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ecb3f67 eeh_dev_release +EXPORT_SYMBOL vmlinux 0x0eda75a5 udp_proc_register +EXPORT_SYMBOL vmlinux 0x0edd90f4 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x0ee7ea14 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x0ef3c1fe tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f0def2a nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x0f13e5c7 sock_create_kern +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x0f61bb1d jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f73c0b3 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x0f794d31 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f80d063 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x0f8ef7f8 param_set_ushort +EXPORT_SYMBOL vmlinux 0x0f93f18b input_reset_device +EXPORT_SYMBOL vmlinux 0x0f96ed2d tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x0fa7bde1 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x0fac566e pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x0fae2a41 f_setown +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb049ec tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fbc6b8d d_alloc_name +EXPORT_SYMBOL vmlinux 0x0fc4ce66 kill_pid +EXPORT_SYMBOL vmlinux 0x0fc9a923 d_instantiate +EXPORT_SYMBOL vmlinux 0x0fd3b916 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x0fd4602c input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x0fe11f8a fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x0fe3fa65 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x0ffb9fc5 page_waitqueue +EXPORT_SYMBOL vmlinux 0x10303c18 try_module_get +EXPORT_SYMBOL vmlinux 0x103f0982 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x1067ffe4 bdi_init +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1087118c twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x108b15d7 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x108ba65f kill_fasync +EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x109afc49 bio_map_kern +EXPORT_SYMBOL vmlinux 0x10c23cb2 sock_wfree +EXPORT_SYMBOL vmlinux 0x10c47195 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x10c9cbcc agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x10d707ab vme_register_driver +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10f98c20 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x114b7437 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x1152ed69 blk_rq_init +EXPORT_SYMBOL vmlinux 0x1160353b __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x116db667 unregister_shrinker +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 0x1189268f balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11a7e5ae unregister_binfmt +EXPORT_SYMBOL vmlinux 0x11b2b760 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x11c393fb pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x11d45c02 pskb_expand_head +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 0x122834ca cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x123c0d99 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x12530e44 __find_get_block +EXPORT_SYMBOL vmlinux 0x12784a40 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x127c2017 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x12807e03 md_error +EXPORT_SYMBOL vmlinux 0x1296cb5c phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12a8d384 inet_del_offload +EXPORT_SYMBOL vmlinux 0x12aa9d0e rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x12cb6622 _lv1_map_device_dma_region +EXPORT_SYMBOL vmlinux 0x12cf1006 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level +EXPORT_SYMBOL vmlinux 0x12fc1f32 simple_link +EXPORT_SYMBOL vmlinux 0x13017d5d down_read +EXPORT_SYMBOL vmlinux 0x13038353 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13200ba4 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x13215eac mem_section +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x135036af skb_free_datagram +EXPORT_SYMBOL vmlinux 0x135b42e7 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x1369f43f seq_putc +EXPORT_SYMBOL vmlinux 0x1376ca65 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x137a29bf read_cache_page +EXPORT_SYMBOL vmlinux 0x13886b2d vfs_write +EXPORT_SYMBOL vmlinux 0x138ab3aa sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e0fc90 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x13e1d774 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x13e7e121 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x13edb49b devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x13ef6fd6 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f48d0a __lock_page +EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize +EXPORT_SYMBOL vmlinux 0x1419c4e3 lease_modify +EXPORT_SYMBOL vmlinux 0x1419d406 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x141fe5fd pasemi_read_iob_reg +EXPORT_SYMBOL vmlinux 0x143bd1ed send_sig_info +EXPORT_SYMBOL vmlinux 0x144d0525 phy_device_free +EXPORT_SYMBOL vmlinux 0x145774e9 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x1479c41a kill_litter_super +EXPORT_SYMBOL vmlinux 0x148f5a0f sk_stream_error +EXPORT_SYMBOL vmlinux 0x14a14817 pSeries_enable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0x14c5b080 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x14cbbc98 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14f33441 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x14f83e77 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x14fae14e backlight_force_update +EXPORT_SYMBOL vmlinux 0x1505b02d of_dev_get +EXPORT_SYMBOL vmlinux 0x151592c4 _lv1_invalidate_htab_entries +EXPORT_SYMBOL vmlinux 0x152097a1 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x1522892a bio_phys_segments +EXPORT_SYMBOL vmlinux 0x1524df81 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1581dbd3 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x159aa14b i2c_release_client +EXPORT_SYMBOL vmlinux 0x15ba6929 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x15d34239 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x15d37586 simple_empty +EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x15e14c86 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x15e7ecb6 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x15fc6628 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x16099782 set_posix_acl +EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token +EXPORT_SYMBOL vmlinux 0x160e1aef mach_ps3 +EXPORT_SYMBOL vmlinux 0x163163e2 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x1639c2d8 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x16409910 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x166b039f pci_platform_rom +EXPORT_SYMBOL vmlinux 0x1670e1ff iov_iter_npages +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x1687c366 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x168db325 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x16a9c340 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x16c65b12 genphy_read_status +EXPORT_SYMBOL vmlinux 0x16cec5ac blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x170a69c7 set_disk_ro +EXPORT_SYMBOL vmlinux 0x17154ca0 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0x1725e4c4 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x173fdc2a xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x1743414f __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x17548519 sock_no_bind +EXPORT_SYMBOL vmlinux 0x17628778 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x1768f156 from_kgid +EXPORT_SYMBOL vmlinux 0x176a41c9 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x1779e633 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x177d829d __get_user_pages +EXPORT_SYMBOL vmlinux 0x177de996 param_get_ushort +EXPORT_SYMBOL vmlinux 0x178fbb44 napi_get_frags +EXPORT_SYMBOL vmlinux 0x1792342d pci_bus_type +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17b40a90 phy_attach +EXPORT_SYMBOL vmlinux 0x17bb7460 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x17cb8c79 _lv1_read_htab_entries +EXPORT_SYMBOL vmlinux 0x17cbd8bb rt6_lookup +EXPORT_SYMBOL vmlinux 0x17dc0821 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17e94f59 inet_offloads +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17fb8bc2 i2c_master_recv +EXPORT_SYMBOL vmlinux 0x180bc949 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x181d090a blk_stop_queue +EXPORT_SYMBOL vmlinux 0x182781e3 backlight_device_register +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x182f50af _lv1_open_device +EXPORT_SYMBOL vmlinux 0x183349af dev_mc_sync +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x1857aa39 proc_dointvec +EXPORT_SYMBOL vmlinux 0x185f7ab3 sock_create_lite +EXPORT_SYMBOL vmlinux 0x1873065f cdev_add +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x18965abc bio_clone_fast +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18b5f164 consume_skb +EXPORT_SYMBOL vmlinux 0x18bab870 dev_addr_init +EXPORT_SYMBOL vmlinux 0x18c0eae4 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x18c98205 _lv1_destruct_virtual_address_space +EXPORT_SYMBOL vmlinux 0x18e0d2b9 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f3ae01 proto_register +EXPORT_SYMBOL vmlinux 0x192cc5e0 sk_dst_check +EXPORT_SYMBOL vmlinux 0x19528e68 scsi_print_command +EXPORT_SYMBOL vmlinux 0x196bd91f dma_find_channel +EXPORT_SYMBOL vmlinux 0x1972fc77 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x1991d6bc iget5_locked +EXPORT_SYMBOL vmlinux 0x199ec4fb arch_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x199f7c07 skb_queue_head +EXPORT_SYMBOL vmlinux 0x19a73af0 skb_tx_error +EXPORT_SYMBOL vmlinux 0x19abb2e6 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19b6e02f dev_mc_del +EXPORT_SYMBOL vmlinux 0x19ba1dc7 fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c968d1 pasemi_dma_start_chan +EXPORT_SYMBOL vmlinux 0x1a1dd1a1 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x1a53ce22 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x1a91663d pasemi_dma_free_buf +EXPORT_SYMBOL vmlinux 0x1aa3e251 validate_sp +EXPORT_SYMBOL vmlinux 0x1ac4b28b pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ac98d2c dev_open +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1af72230 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x1af96653 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b3f95d5 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x1b4340c4 pci_map_rom +EXPORT_SYMBOL vmlinux 0x1b477834 sock_from_file +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 0x1b7e96f2 vme_bus_type +EXPORT_SYMBOL vmlinux 0x1b7e9a3d unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8801de __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b98d0f9 netlink_capable +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bb54473 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bc65b6b in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x1be061ce __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x1bf2b9ef finish_open +EXPORT_SYMBOL vmlinux 0x1bfec830 __iounmap_at +EXPORT_SYMBOL vmlinux 0x1bffcafb neigh_seq_start +EXPORT_SYMBOL vmlinux 0x1c042bf0 pnv_cxl_get_irq_count +EXPORT_SYMBOL vmlinux 0x1c200a7d pasemi_dma_stop_chan +EXPORT_SYMBOL vmlinux 0x1c380275 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp +EXPORT_SYMBOL vmlinux 0x1c4dab93 _lv1_connect_irq_plug +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 0x1c7124c6 may_umount +EXPORT_SYMBOL vmlinux 0x1c737ed5 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x1c7553c6 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1c81bd7e jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x1c9fb91a locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x1ca33691 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x1cabb58c __sb_start_write +EXPORT_SYMBOL vmlinux 0x1cbea6c4 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x1cdb397c tty_register_driver +EXPORT_SYMBOL vmlinux 0x1d00bea7 simple_rmdir +EXPORT_SYMBOL vmlinux 0x1d06a581 input_register_handler +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d116eb4 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x1d20d310 con_is_bound +EXPORT_SYMBOL vmlinux 0x1d44aa51 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x1d4750bc _lv1_stop_lpm +EXPORT_SYMBOL vmlinux 0x1d574e64 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x1d6cd442 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x1da11e95 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x1dae721f mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x1db6d54a udplite_prot +EXPORT_SYMBOL vmlinux 0x1dbc4d0c proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x1dc2d2a8 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dc90596 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de9569e phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x1df9c472 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x1dfc0d00 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e48f180 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x1e49c071 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x1e688a64 iget_locked +EXPORT_SYMBOL vmlinux 0x1e68acf9 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e6f345c mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x1e704569 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x1e857fac vme_irq_generate +EXPORT_SYMBOL vmlinux 0x1e9081d4 tty_vhangup +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea65bc7 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x1ec94077 follow_up +EXPORT_SYMBOL vmlinux 0x1ed31ab2 skb_checksum +EXPORT_SYMBOL vmlinux 0x1ed56fde agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x1eef8449 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x1f052d2c mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x1f3d3a6d wake_up_process +EXPORT_SYMBOL vmlinux 0x1f5616e0 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f803ce3 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x1fad7758 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x1fb23a69 vga_tryget +EXPORT_SYMBOL vmlinux 0x1fbad865 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc2f62d napi_gro_flush +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fdaea0b neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x1fdb8c1b of_get_next_parent +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 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x1ff8e0ef devm_gpio_free +EXPORT_SYMBOL vmlinux 0x1ffb259a neigh_direct_output +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x200ebf17 d_lookup +EXPORT_SYMBOL vmlinux 0x201494ee _lv1_net_set_interrupt_mask +EXPORT_SYMBOL vmlinux 0x201864d7 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204f6899 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x204f74ef i2c_del_driver +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x2076ddb0 srp_reconnect_rport +EXPORT_SYMBOL vmlinux 0x20979d4e blk_put_request +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b15f53 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x20b8904e pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20da9aba try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20e1f8c3 neigh_update +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20f07c8e nf_hook_slow +EXPORT_SYMBOL vmlinux 0x2118147b mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x213603bf pasemi_dma_free_ring +EXPORT_SYMBOL vmlinux 0x214ffb73 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x215cb3b6 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x21650983 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x2172b4c5 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x217d1a3f create_empty_buffers +EXPORT_SYMBOL vmlinux 0x21bed698 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e2345a pmac_register_agp_pm +EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x22079cdc phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x2211988a of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x223fbfd1 pci_select_bars +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 0x2288f397 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x22914cd8 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x22a588c7 dst_discard_out +EXPORT_SYMBOL vmlinux 0x22a7237c skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x22aa0e93 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22cb57d0 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x22cff591 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x22db1e15 address_space_init_once +EXPORT_SYMBOL vmlinux 0x2305b34a up_read +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x23301aa5 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x23328716 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x23445039 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x236e54f1 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x23768f2c blk_finish_request +EXPORT_SYMBOL vmlinux 0x2389d7b1 phy_resume +EXPORT_SYMBOL vmlinux 0x2398e0c6 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23e972ae mpage_writepage +EXPORT_SYMBOL vmlinux 0x23ea87ae jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240b815e swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x24150384 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2445217e generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x244b7864 dma_set_mask +EXPORT_SYMBOL vmlinux 0x244ea2ff macio_request_resources +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x24610245 take_dentry_name_snapshot +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 0x24939794 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x24a10f82 no_llseek +EXPORT_SYMBOL vmlinux 0x24cfd438 _lv1_copy_lpm_trace_buffer +EXPORT_SYMBOL vmlinux 0x24d58303 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x24d6b4a6 cur_cpu_spec +EXPORT_SYMBOL vmlinux 0x24dd3b6b page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x24f00380 ida_init +EXPORT_SYMBOL vmlinux 0x24f58821 scsi_execute +EXPORT_SYMBOL vmlinux 0x24fb6477 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x251f20ec max8998_update_reg +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x25369fce of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x2536c031 kset_register +EXPORT_SYMBOL vmlinux 0x255c563c audit_log +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2583e81f __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x258fbaab macio_dev_get +EXPORT_SYMBOL vmlinux 0x25b6b8f7 _lv1_set_spe_transition_notifier +EXPORT_SYMBOL vmlinux 0x25b84846 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x25c125ca mmc_can_trim +EXPORT_SYMBOL vmlinux 0x25c2b669 input_unregister_device +EXPORT_SYMBOL vmlinux 0x25cad255 arp_tbl +EXPORT_SYMBOL vmlinux 0x25cb04cc __neigh_create +EXPORT_SYMBOL vmlinux 0x25d8ed6c md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x26027f1a tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x261c94bf qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x262ff17e nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x26363ed7 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x265efb77 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update +EXPORT_SYMBOL vmlinux 0x266b6653 nonseekable_open +EXPORT_SYMBOL vmlinux 0x26a270af of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init +EXPORT_SYMBOL vmlinux 0x26b94685 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26f41cc5 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x270e2db8 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x27178342 tty_port_init +EXPORT_SYMBOL vmlinux 0x272a91af touch_atime +EXPORT_SYMBOL vmlinux 0x273b66b9 bdgrab +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x2760d4d0 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x27646df3 start_thread +EXPORT_SYMBOL vmlinux 0x276a4069 pfifo_qdisc_ops +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 0x278fb455 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x279df443 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x27a27da6 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x27b48e96 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x27b8485f wait_iff_congested +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c1a743 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x27d03478 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x27e1413e filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x2812d069 dma_iommu_ops +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2823bf29 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x28382a1d truncate_setsize +EXPORT_SYMBOL vmlinux 0x28594268 sock_no_getname +EXPORT_SYMBOL vmlinux 0x285ea01e __lock_buffer +EXPORT_SYMBOL vmlinux 0x286291ac pci_disable_link_state +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 0x28e10c24 check_disk_change +EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x28efff83 tcp_req_err +EXPORT_SYMBOL vmlinux 0x2908e80f cfb_fillrect +EXPORT_SYMBOL vmlinux 0x29275e10 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x2927d2f5 mach_maple +EXPORT_SYMBOL vmlinux 0x29465b35 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x294bb76d posix_test_lock +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x296a8657 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x296ad1b8 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x29758ab2 misc_deregister +EXPORT_SYMBOL vmlinux 0x298f04ee sock_register +EXPORT_SYMBOL vmlinux 0x29a10574 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x29b2279e __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x29b64585 mutex_trylock +EXPORT_SYMBOL vmlinux 0x29c6db74 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x29c7835d jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x29c7e649 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x29f98894 dev_uc_del +EXPORT_SYMBOL vmlinux 0x2a1c49e7 bio_put +EXPORT_SYMBOL vmlinux 0x2a1e486b ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a38c4b2 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x2a551cdc file_open_root +EXPORT_SYMBOL vmlinux 0x2a8f88bd pnv_cxl_alloc_hwirq_ranges +EXPORT_SYMBOL vmlinux 0x2a90880e sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ad63102 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x2ae956a5 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x2aeaafd6 dev_close +EXPORT_SYMBOL vmlinux 0x2af0bea7 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b17911a inode_permission +EXPORT_SYMBOL vmlinux 0x2b187579 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x2b2348d3 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b3abf00 serio_rescan +EXPORT_SYMBOL vmlinux 0x2b46eac7 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x2b4991ec xmon +EXPORT_SYMBOL vmlinux 0x2b4e4a02 pci_find_capability +EXPORT_SYMBOL vmlinux 0x2b5058a1 nvm_register_target +EXPORT_SYMBOL vmlinux 0x2b5bba35 mpage_readpage +EXPORT_SYMBOL vmlinux 0x2b680cea release_pages +EXPORT_SYMBOL vmlinux 0x2b8334bc security_path_chown +EXPORT_SYMBOL vmlinux 0x2b944da8 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x2b974f44 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2b9f8d2b param_set_charp +EXPORT_SYMBOL vmlinux 0x2ba3a787 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x2ba65995 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bab9698 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x2bb264ae update_region +EXPORT_SYMBOL vmlinux 0x2bb528e4 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x2bbd29bc dcb_setapp +EXPORT_SYMBOL vmlinux 0x2bc3d9f5 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x2bcf9ba3 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x2bdc4aab __seq_open_private +EXPORT_SYMBOL vmlinux 0x2be4a6ee dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x2be80d34 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x2beaac73 tcf_hash_create +EXPORT_SYMBOL vmlinux 0x2c0e972e input_register_handle +EXPORT_SYMBOL vmlinux 0x2c1ae622 scsi_device_put +EXPORT_SYMBOL vmlinux 0x2c1cd4a4 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c330cea clear_nlink +EXPORT_SYMBOL vmlinux 0x2c36f0fe done_path_create +EXPORT_SYMBOL vmlinux 0x2c3b3b48 brioctl_set +EXPORT_SYMBOL vmlinux 0x2c40d8b6 iget_failed +EXPORT_SYMBOL vmlinux 0x2c4c7997 _lv1_construct_lpm +EXPORT_SYMBOL vmlinux 0x2c67d09c bdget_disk +EXPORT_SYMBOL vmlinux 0x2c78626a tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x2c795686 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x2c7a8b8b blk_start_request +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2c8d6a82 elv_rb_del +EXPORT_SYMBOL vmlinux 0x2cb051c7 param_get_charp +EXPORT_SYMBOL vmlinux 0x2cb53c3a flow_cache_fini +EXPORT_SYMBOL vmlinux 0x2cbb109e nf_log_packet +EXPORT_SYMBOL vmlinux 0x2cc8b23a set_bh_page +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2cfce61d __ps2_command +EXPORT_SYMBOL vmlinux 0x2d0182e9 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d42000c ilookup +EXPORT_SYMBOL vmlinux 0x2d645594 pnv_pci_get_npu_dev +EXPORT_SYMBOL vmlinux 0x2d70f201 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x2d71b3bc pid_task +EXPORT_SYMBOL vmlinux 0x2d777bb0 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x2d7d2767 _lv1_set_lpm_group_control +EXPORT_SYMBOL vmlinux 0x2da587a9 netdev_emerg +EXPORT_SYMBOL vmlinux 0x2db03528 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x2db1e0c6 dql_init +EXPORT_SYMBOL vmlinux 0x2dc6decf netif_napi_del +EXPORT_SYMBOL vmlinux 0x2dca823b file_update_time +EXPORT_SYMBOL vmlinux 0x2de21cea nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e12a93b ibmebus_request_irq +EXPORT_SYMBOL vmlinux 0x2e1fd425 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e39b923 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x2e409cc7 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x2e49848f __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x2e4ed837 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e87a806 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x2e91ade5 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x2e93495e _lv1_write_htab_entry +EXPORT_SYMBOL vmlinux 0x2ea49cef cfb_copyarea +EXPORT_SYMBOL vmlinux 0x2ec5db18 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x2ed1ecab set_cached_acl +EXPORT_SYMBOL vmlinux 0x2ee4337f smu_queue_cmd +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f00bda2 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f06eed9 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x2f10cfd4 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f550d2e pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x2f6cf6be clear_user_page +EXPORT_SYMBOL vmlinux 0x2f71800c filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x2f7441b3 key_alloc +EXPORT_SYMBOL vmlinux 0x2fac9ac4 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock +EXPORT_SYMBOL vmlinux 0x2fb233f5 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fc0e1cf d_tmpfile +EXPORT_SYMBOL vmlinux 0x2fe1ec26 param_get_invbool +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x300542d8 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x301bbd90 param_set_int +EXPORT_SYMBOL vmlinux 0x30225aa1 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x3023ff0f d_rehash +EXPORT_SYMBOL vmlinux 0x302b88c1 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x303d44e0 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x30476777 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x305b5401 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x306ac0ed pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x307b4c98 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3086bea6 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x309265df inet_recvmsg +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x3097a842 param_set_short +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30af9f4f dquot_resume +EXPORT_SYMBOL vmlinux 0x30b14c2e reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x310f0aee inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x3129a26f udp_prot +EXPORT_SYMBOL vmlinux 0x312cfaf2 _lv1_disable_logical_spe +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x315524af flow_cache_init +EXPORT_SYMBOL vmlinux 0x31604d3d param_get_uint +EXPORT_SYMBOL vmlinux 0x3167901e keyring_clear +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x31b32b3a xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x31b7f300 _lv1_set_lpm_signal +EXPORT_SYMBOL vmlinux 0x31bac3d4 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x31c0fd23 generic_file_open +EXPORT_SYMBOL vmlinux 0x31c181f2 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x31cd509a _lv1_net_control +EXPORT_SYMBOL vmlinux 0x31cd995b store_fp_state +EXPORT_SYMBOL vmlinux 0x31d266bd kernel_listen +EXPORT_SYMBOL vmlinux 0x31de35cb generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x31e141d4 param_get_bool +EXPORT_SYMBOL vmlinux 0x31fa28bf tty_check_change +EXPORT_SYMBOL vmlinux 0x321f43c1 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x32269d4b ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x324a72a3 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x327b9c1b pmu_poll_adb +EXPORT_SYMBOL vmlinux 0x327d9c09 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x328cdc4a bdi_register_owner +EXPORT_SYMBOL vmlinux 0x32dcd453 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e70973 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x330e0614 elevator_init +EXPORT_SYMBOL vmlinux 0x331a6b8f iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x334ad366 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x3356383a swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x335b6c44 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x335d467b fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x339010f6 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x33941f1d param_array_ops +EXPORT_SYMBOL vmlinux 0x33a22d6a end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x33abdb3b vme_dma_request +EXPORT_SYMBOL vmlinux 0x33ad8ea4 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x33b3ed74 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33d13706 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x3447939b xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349f197e i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x34a128be filemap_fault +EXPORT_SYMBOL vmlinux 0x34acdab5 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x34d81937 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x34ecf8f9 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x350eeee7 is_nd_btt +EXPORT_SYMBOL vmlinux 0x35143e63 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x35222770 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x35354d1f of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353a208b inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x353c36f8 ps3_dma_region_init +EXPORT_SYMBOL vmlinux 0x35603936 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x357b83a2 kthread_bind +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b8d4b7 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 +EXPORT_SYMBOL vmlinux 0x35d9b382 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x35e92bb7 devm_iounmap +EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy +EXPORT_SYMBOL vmlinux 0x36475838 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x36492fbd sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x364e8321 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x366bdb43 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy +EXPORT_SYMBOL vmlinux 0x36754e15 input_inject_event +EXPORT_SYMBOL vmlinux 0x367bbcf9 search_binary_handler +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x369f4c17 pnv_cxl_release_hwirqs +EXPORT_SYMBOL vmlinux 0x36a5b467 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36b1948c of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36fcd441 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x371902e9 _lv1_get_lpm_interrupt_status +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x372d30ab pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x37330dfe abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x37344510 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level +EXPORT_SYMBOL vmlinux 0x373e940a __register_binfmt +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x375ff8f6 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x376824f7 kill_bdev +EXPORT_SYMBOL vmlinux 0x3783e73f udp_seq_open +EXPORT_SYMBOL vmlinux 0x37901d5d phy_init_eee +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 0x37c78dd0 skb_dequeue +EXPORT_SYMBOL vmlinux 0x37cf9286 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x37fe626d scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381cab5a vfs_rename +EXPORT_SYMBOL vmlinux 0x38271156 mount_ns +EXPORT_SYMBOL vmlinux 0x382777ab _lv1_gpu_context_allocate +EXPORT_SYMBOL vmlinux 0x382b1493 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x382d4f45 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x385f009d dev_driver_string +EXPORT_SYMBOL vmlinux 0x387c4dbe simple_unlink +EXPORT_SYMBOL vmlinux 0x38866dd9 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x389bea4b page_follow_link_light +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38ab0f73 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace +EXPORT_SYMBOL vmlinux 0x38ca4f36 netlink_unicast +EXPORT_SYMBOL vmlinux 0x38efdabd dev_remove_pack +EXPORT_SYMBOL vmlinux 0x38f025f6 sock_wake_async +EXPORT_SYMBOL vmlinux 0x38f61bd5 blk_run_queue +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x38ff5ccc iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x390a887d forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x390f8ff1 genphy_resume +EXPORT_SYMBOL vmlinux 0x391c894c __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x3924234c scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393ab5ea noop_fsync +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x39418eaa ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394dbd23 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x39677b75 start_tty +EXPORT_SYMBOL vmlinux 0x396de3a6 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x39732482 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x39736aad dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x398dc1de inet_register_protosw +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a23f6b phy_drivers_register +EXPORT_SYMBOL vmlinux 0x39b4d8c4 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39cd6c3a phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x39d4b139 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x39d78fc4 sk_net_capable +EXPORT_SYMBOL vmlinux 0x39d947dc skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x39ed1cf3 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x3a0cae0c iterate_supers_type +EXPORT_SYMBOL vmlinux 0x3a1bd919 inet_ioctl +EXPORT_SYMBOL vmlinux 0x3a237497 init_buffer +EXPORT_SYMBOL vmlinux 0x3a3d7e6d pci_dev_put +EXPORT_SYMBOL vmlinux 0x3a42862a sock_create +EXPORT_SYMBOL vmlinux 0x3a4337ca macio_dev_put +EXPORT_SYMBOL vmlinux 0x3a71360d tty_port_put +EXPORT_SYMBOL vmlinux 0x3a83fc16 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x3a97c177 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x3a98a412 sk_alloc +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3b0ad5e3 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x3b192c9d security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x3b1e34b3 inode_change_ok +EXPORT_SYMBOL vmlinux 0x3b3c68b1 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x3b4530e2 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b67e612 to_nd_btt +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b970d63 udp_add_offload +EXPORT_SYMBOL vmlinux 0x3b98d42c vfs_rmdir +EXPORT_SYMBOL vmlinux 0x3bbeb55a pci_get_device +EXPORT_SYMBOL vmlinux 0x3bc8efa2 dma_pool_create +EXPORT_SYMBOL vmlinux 0x3bdc4cda dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x3bde5672 dquot_disable +EXPORT_SYMBOL vmlinux 0x3beb9d5b kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x3befacf2 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x3c197f0c __napi_complete +EXPORT_SYMBOL vmlinux 0x3c32b97b alloc_file +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c442c36 arp_xmit +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c491c8c ppp_channel_index +EXPORT_SYMBOL vmlinux 0x3c4fab50 flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0x3c775f0b inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x3c784eef rtas +EXPORT_SYMBOL vmlinux 0x3c798dbe mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x3c805398 fasync_helper +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c942e53 pci_save_state +EXPORT_SYMBOL vmlinux 0x3c990711 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x3ca7cc5a nd_btt_probe +EXPORT_SYMBOL vmlinux 0x3cab974a __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x3cad4533 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x3caebcba udp_set_csum +EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init +EXPORT_SYMBOL vmlinux 0x3cd4a634 load_nls +EXPORT_SYMBOL vmlinux 0x3cd5c763 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ceb7d57 send_sig +EXPORT_SYMBOL vmlinux 0x3cee528f blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x3cffcbe7 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x3d097b76 dev_printk +EXPORT_SYMBOL vmlinux 0x3d0d2ec9 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x3d455167 dquot_transfer +EXPORT_SYMBOL vmlinux 0x3d5a628f register_filesystem +EXPORT_SYMBOL vmlinux 0x3d7c4e0b scsi_scan_host +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 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd319f5 abort_creds +EXPORT_SYMBOL vmlinux 0x3dd52fc4 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x3dfb23c5 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0965ed blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x3e18c049 igrab +EXPORT_SYMBOL vmlinux 0x3e286dca _lv1_get_rtc +EXPORT_SYMBOL vmlinux 0x3e354a43 icmpv6_send +EXPORT_SYMBOL vmlinux 0x3e3b78ce blkdev_get +EXPORT_SYMBOL vmlinux 0x3e3f5c16 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x3e4f3ad1 qdisc_reset +EXPORT_SYMBOL vmlinux 0x3e62bf29 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x3e679104 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x3e6c3e31 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e88607e block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3e95fd52 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x3e9e8e26 downgrade_write +EXPORT_SYMBOL vmlinux 0x3efbc0ea generic_ro_fops +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f06a656 _lv1_construct_event_receive_port +EXPORT_SYMBOL vmlinux 0x3f107faa pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x3f2447b0 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x3f3a2d78 blk_init_tags +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4b7839 __vfs_read +EXPORT_SYMBOL vmlinux 0x3f77022f sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x3fbfd6ed _lv1_gpu_open +EXPORT_SYMBOL vmlinux 0x3fd2ae6a find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fe66c88 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x3fe7e04e kmalloc_caches +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x4000c1a8 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x400d4e10 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x403d2315 mmc_free_host +EXPORT_SYMBOL vmlinux 0x404c1082 ppp_input_error +EXPORT_SYMBOL vmlinux 0x405b2e11 commit_creds +EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x4088841b ata_print_version +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409be6ff bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a37163 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x40a4f97f ip_options_rcv_srr +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 0x40e6df69 __nla_reserve +EXPORT_SYMBOL vmlinux 0x40efb05e fget_raw +EXPORT_SYMBOL vmlinux 0x40f1164f generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x41047dd7 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x4106a3d4 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x4106f652 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x411171e2 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x411710ca kernel_sendpage +EXPORT_SYMBOL vmlinux 0x41361807 _lv1_get_logical_ppe_id +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x419871eb abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x419aaaf9 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41dbf4de _lv1_start_lpm +EXPORT_SYMBOL vmlinux 0x41e73a7f scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x41f8f49a vc_resize +EXPORT_SYMBOL vmlinux 0x41fd6c9d vga_put +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x4221603f dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x422604a0 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x42400392 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424b136f nobh_write_begin +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42509e20 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x42748af9 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42b1b497 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x42ef8969 md_flush_request +EXPORT_SYMBOL vmlinux 0x42f58124 kern_unmount +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43109a8c compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x4338ba58 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x4350aa37 netpoll_setup +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x4377dd77 do_truncate +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 0x43bc86c3 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x43c39377 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x43c6fbb8 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x43d1bda4 d_alloc +EXPORT_SYMBOL vmlinux 0x43d2e5a6 __vfs_write +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43fd804b get_unmapped_area +EXPORT_SYMBOL vmlinux 0x43fd91d8 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x4406abd9 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x445dc0ac iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x44612bb7 cont_write_begin +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44c3b99c inet_sendpage +EXPORT_SYMBOL vmlinux 0x44cec30c dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x44d7bc7a set_nlink +EXPORT_SYMBOL vmlinux 0x44dd612f tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x44e8d7e4 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x44ed3584 note_scsi_host +EXPORT_SYMBOL vmlinux 0x44f0628c tcp_read_sock +EXPORT_SYMBOL vmlinux 0x45231f1d page_put_link +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4540b739 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x45574ff5 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x45595745 nf_log_unset +EXPORT_SYMBOL vmlinux 0x455d7c83 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x45643b83 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x4564459b _lv1_set_virtual_uart_param +EXPORT_SYMBOL vmlinux 0x456b9375 i2c_transfer +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45944780 find_get_entry +EXPORT_SYMBOL vmlinux 0x4594632f __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x459be731 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x45a05d47 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45aa9ef0 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x45b07c77 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x45ba811a sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x45c29520 vio_enable_interrupts +EXPORT_SYMBOL vmlinux 0x45cca34b param_get_string +EXPORT_SYMBOL vmlinux 0x45cd99c1 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x45cfe80b pasemi_dma_free_flag +EXPORT_SYMBOL vmlinux 0x45d7ad28 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x45f5f369 padata_do_serial +EXPORT_SYMBOL vmlinux 0x45f888bd vfs_writev +EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x46316e5e qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x463a0af6 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x46498f12 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x464b2a66 vga_get +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x4662d419 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x4663b01c uart_suspend_port +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x46823dab sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x468f516d srp_rport_put +EXPORT_SYMBOL vmlinux 0x468fe0f8 fb_set_var +EXPORT_SYMBOL vmlinux 0x46afd532 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x46b56422 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x46bace12 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46e15fd0 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x46ed5b94 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x46f71a67 da903x_query_status +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x4708a2e9 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x47215609 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x473bd89a ipv4_specific +EXPORT_SYMBOL vmlinux 0x474137a1 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x474ca13f agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x4751dae1 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x475687a7 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x47607d4c eth_change_mtu +EXPORT_SYMBOL vmlinux 0x47608718 fence_init +EXPORT_SYMBOL vmlinux 0x47637c12 ip_options_compile +EXPORT_SYMBOL vmlinux 0x47665775 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x476c45b6 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x478b2ca6 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x47921698 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479a33fb generic_read_dir +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47ae76ba vlan_vid_add +EXPORT_SYMBOL vmlinux 0x47b8a821 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x47c8cf89 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x47cd4674 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x47dbdb79 phy_start +EXPORT_SYMBOL vmlinux 0x47e484c3 blk_peek_request +EXPORT_SYMBOL vmlinux 0x47e802de lookup_bdev +EXPORT_SYMBOL vmlinux 0x4801fbc4 sget +EXPORT_SYMBOL vmlinux 0x48040454 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x481531ef pnv_cxl_ioda_msi_setup +EXPORT_SYMBOL vmlinux 0x4815f22b _lv1_gpu_attribute +EXPORT_SYMBOL vmlinux 0x48170458 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x48304829 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x4831ecfc dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x4835469c inet_csk_delete_keepalive_timer +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 0x48624a9b xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x4872073e scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x487d9864 set_binfmt +EXPORT_SYMBOL vmlinux 0x4881efab pmac_get_partition +EXPORT_SYMBOL vmlinux 0x48a5a3f0 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48dae075 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4907a301 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x49332845 sock_rfree +EXPORT_SYMBOL vmlinux 0x493a3a7f skb_seq_read +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x495d1de3 phy_init_hw +EXPORT_SYMBOL vmlinux 0x495ec6eb pasemi_dma_alloc_buf +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x49744171 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x4975ceb6 i2c_use_client +EXPORT_SYMBOL vmlinux 0x497f6d1b xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x499f0bab unlock_buffer +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49be21a1 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x49fa1aab abx500_register_ops +EXPORT_SYMBOL vmlinux 0x4a54eb66 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x4a5c3d2f dev_disable_lro +EXPORT_SYMBOL vmlinux 0x4a6996bf devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x4a81f2f2 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4ac64da4 _lv1_select_virtual_address_space +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request +EXPORT_SYMBOL vmlinux 0x4ae2a336 skb_split +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b377a97 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x4b3cb349 _lv1_destruct_io_irq_outlet +EXPORT_SYMBOL vmlinux 0x4b4f2c1a inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x4b4ff72f get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b649cd3 tcp_splice_read +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 0x4bbfff85 security_path_truncate +EXPORT_SYMBOL vmlinux 0x4be35976 param_set_byte +EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x4c04f7b1 param_get_ullong +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c1aba26 get_user_pages +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c51a316 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x4c66d3bd fb_validate_mode +EXPORT_SYMBOL vmlinux 0x4c96fdcf pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4cb3aa34 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x4cd0172f macio_register_driver +EXPORT_SYMBOL vmlinux 0x4cd67793 udp_del_offload +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ce518dc inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x4ce65019 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x4ced620b ps3_dma_region_free +EXPORT_SYMBOL vmlinux 0x4d16ee9a cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x4d34a2de tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x4d364c19 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x4d4de09f dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x4d551cbd bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x4d782d4c poll_initwait +EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize +EXPORT_SYMBOL vmlinux 0x4d7baac6 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x4d7f1d21 bio_chain +EXPORT_SYMBOL vmlinux 0x4d91ca0b i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da2cfe9 dquot_drop +EXPORT_SYMBOL vmlinux 0x4dad47c4 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x4db20ea1 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x4dda941c follow_pfn +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4deb2746 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4dfa8159 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x4e11aab7 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3f1705 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x4e620712 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x4e63a135 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x4e661a0b ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x4e676c4c param_ops_charp +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6dabed scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e79fe76 redraw_screen +EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum +EXPORT_SYMBOL vmlinux 0x4eb8b587 neigh_destroy +EXPORT_SYMBOL vmlinux 0x4ebf0f27 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x4ed13b52 bio_copy_data +EXPORT_SYMBOL vmlinux 0x4ed9bef1 proc_symlink +EXPORT_SYMBOL vmlinux 0x4eee9067 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0x4f07ca5e qdisc_tree_reduce_backlog +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 0x4f55f83c dev_change_flags +EXPORT_SYMBOL vmlinux 0x4f664db6 _lv1_insert_htab_entry +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f799762 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x4f7a3cd9 of_phy_connect +EXPORT_SYMBOL vmlinux 0x4fb90f9e __breadahead +EXPORT_SYMBOL vmlinux 0x4fc05d23 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x50151866 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x50161561 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x501d46a1 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x503686d1 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x5041aee3 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x5043d4fc ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x5057fe1e inet_add_offload +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x506dac72 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50b6cfb3 tcp_filter +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50bf3555 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50fc983a tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x510749cb force_sig +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x511e1dd8 vio_unregister_driver +EXPORT_SYMBOL vmlinux 0x513c3ce7 read_dev_sector +EXPORT_SYMBOL vmlinux 0x514ae269 ping_prot +EXPORT_SYMBOL vmlinux 0x516c6b2d uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x516f6591 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x517a49b1 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x5185667a bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x51934df0 giveup_fpu +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x51a14787 softnet_data +EXPORT_SYMBOL vmlinux 0x51cefe63 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x51f181da register_console +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x5226e773 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x5252b555 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x52542751 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x52584667 simple_write_end +EXPORT_SYMBOL vmlinux 0x52711686 freeze_bdev +EXPORT_SYMBOL vmlinux 0x527830ff pmac_xpram_read +EXPORT_SYMBOL vmlinux 0x528a2aa9 vga_client_register +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52ade451 scsi_add_device +EXPORT_SYMBOL vmlinux 0x52af848c param_get_ulong +EXPORT_SYMBOL vmlinux 0x52b89874 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x52bb9999 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x52de2b98 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x52e3fa05 _lv1_allocate_memory +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x5315bf05 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x53262727 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x5332d732 skb_copy_expand +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 0x536cc847 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x5398c402 __destroy_inode +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53a9427c acl_by_type +EXPORT_SYMBOL vmlinux 0x53b27de4 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x53b2f163 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x53cdd81c eth_type_trans +EXPORT_SYMBOL vmlinux 0x53daf95e adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x53ebb01f rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x53eea03c genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x541ad586 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x543135f8 of_iomap +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54493c4b seq_read +EXPORT_SYMBOL vmlinux 0x54524249 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x54547e0f param_get_byte +EXPORT_SYMBOL vmlinux 0x5459630e netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x5459cc9d skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x54668c36 setattr_copy +EXPORT_SYMBOL vmlinux 0x54715824 seq_open_private +EXPORT_SYMBOL vmlinux 0x54791777 unload_nls +EXPORT_SYMBOL vmlinux 0x549b603c input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x54a874e6 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b54229 phy_device_remove +EXPORT_SYMBOL vmlinux 0x54b68308 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54d77794 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f87e05 vmap +EXPORT_SYMBOL vmlinux 0x54f98936 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x550dff6e audit_log_start +EXPORT_SYMBOL vmlinux 0x55156c87 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5529cc4e of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5541ec62 register_md_personality +EXPORT_SYMBOL vmlinux 0x55621439 __skb_checksum_complete_head +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 0x558af5a5 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x55ad3182 kernel_read +EXPORT_SYMBOL vmlinux 0x55b105c1 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x55ca5f42 filemap_flush +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node +EXPORT_SYMBOL vmlinux 0x55fd6765 padata_alloc +EXPORT_SYMBOL vmlinux 0x5615c231 md_register_thread +EXPORT_SYMBOL vmlinux 0x561fd65f icmp_send +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56384a2f dquot_initialize +EXPORT_SYMBOL vmlinux 0x563bc226 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x565f55a4 write_inode_now +EXPORT_SYMBOL vmlinux 0x566efeb2 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x5678af71 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x568804ee _lv1_destruct_event_receive_port +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x5697f1f3 dev_get_stats +EXPORT_SYMBOL vmlinux 0x569963a8 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x56b5b5cc of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x56bb21f8 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x56bec113 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x56c125c7 freeze_super +EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress +EXPORT_SYMBOL vmlinux 0x56c32ffe devm_free_irq +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56cc70ca vc_cons +EXPORT_SYMBOL vmlinux 0x56ddd997 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x56de2287 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x5719b203 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x572647d6 get_mce_fault_addr +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5737f978 mutex_lock +EXPORT_SYMBOL vmlinux 0x57437f53 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x5750cac4 seq_lseek +EXPORT_SYMBOL vmlinux 0x57511ca2 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x5754de0f tty_name +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x57875aaf ibmebus_unregister_driver +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x579bab50 _lv1_gpu_memory_free +EXPORT_SYMBOL vmlinux 0x579fd607 __napi_schedule +EXPORT_SYMBOL vmlinux 0x57a6bb6e of_device_register +EXPORT_SYMBOL vmlinux 0x57bc701f free_netdev +EXPORT_SYMBOL vmlinux 0x57de88e5 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x57e29143 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x5808ed8f blk_sync_queue +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x58522d26 skb_put +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x5867af75 blk_make_request +EXPORT_SYMBOL vmlinux 0x586b4bc2 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x588ac667 pci_match_id +EXPORT_SYMBOL vmlinux 0x58a41c43 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58d18cef pci_read_vpd +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f8394f inet6_bind +EXPORT_SYMBOL vmlinux 0x5900853e param_set_ulong +EXPORT_SYMBOL vmlinux 0x590e5777 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x5916a4d2 __bread_gfp +EXPORT_SYMBOL vmlinux 0x593843ee security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x59427359 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59b807c6 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x59ca98b9 mmc_start_req +EXPORT_SYMBOL vmlinux 0x59dedcb2 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x59e5a1df nf_log_unregister +EXPORT_SYMBOL vmlinux 0x59f6f87c fb_find_mode +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 0x5a30b32c mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x5a34e205 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x5a7233eb page_symlink +EXPORT_SYMBOL vmlinux 0x5a8a473e xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9c129e __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5ab3ca54 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x5ab7ad61 dev_add_pack +EXPORT_SYMBOL vmlinux 0x5aba5703 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x5ad082a3 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x5af4586f xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b0f1c5d mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x5b11377d of_platform_device_create +EXPORT_SYMBOL vmlinux 0x5b1e63af tcp_disconnect +EXPORT_SYMBOL vmlinux 0x5b28ec53 inet_frags_init +EXPORT_SYMBOL vmlinux 0x5b2bb2f8 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present +EXPORT_SYMBOL vmlinux 0x5b44322d ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b70c61c mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x5b7e9ad0 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x5b819b9a neigh_seq_next +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bec415e module_put +EXPORT_SYMBOL vmlinux 0x5c22aec1 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x5c342a81 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c750122 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x5c9406ac do_SAK +EXPORT_SYMBOL vmlinux 0x5ca2f71c input_register_device +EXPORT_SYMBOL vmlinux 0x5cafa1aa blk_execute_rq +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5cc920cf dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x5ccc9045 _lv1_close_device +EXPORT_SYMBOL vmlinux 0x5cd2c715 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x5cee27df __skb_checksum +EXPORT_SYMBOL vmlinux 0x5cf30e10 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf5f6ee pcibus_to_node +EXPORT_SYMBOL vmlinux 0x5d01f68a nd_iostat_end +EXPORT_SYMBOL vmlinux 0x5d06a2bd follow_down_one +EXPORT_SYMBOL vmlinux 0x5d3c9d6d lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x5d3d7486 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d583950 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x5d6c7bc3 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x5d75605e __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x5d950620 set_create_files_as +EXPORT_SYMBOL vmlinux 0x5d97417b gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x5d998ca4 tso_build_data +EXPORT_SYMBOL vmlinux 0x5d9d93c5 generic_fillattr +EXPORT_SYMBOL vmlinux 0x5db5e899 padata_free +EXPORT_SYMBOL vmlinux 0x5db67bbc kern_path +EXPORT_SYMBOL vmlinux 0x5dcae9a9 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x5dcb91e0 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x5dcf82e0 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x5dfc258a init_task +EXPORT_SYMBOL vmlinux 0x5e0316fe mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e45626f lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x5e5a4dcd xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x5e628893 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x5e65cfe4 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x5e6d9a3e serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x5e7c73d9 of_node_put +EXPORT_SYMBOL vmlinux 0x5e8540b1 poll_freewait +EXPORT_SYMBOL vmlinux 0x5e931778 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb633f1 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x5eb68bd0 input_set_capability +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return +EXPORT_SYMBOL vmlinux 0x5ee93096 tty_set_operations +EXPORT_SYMBOL vmlinux 0x5eeff77a con_copy_unimap +EXPORT_SYMBOL vmlinux 0x5ef26207 vio_h_cop_sync +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0acf86 serio_open +EXPORT_SYMBOL vmlinux 0x5f17cfdd elv_register_queue +EXPORT_SYMBOL vmlinux 0x5f2165b2 of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x5f244e3e free_buffer_head +EXPORT_SYMBOL vmlinux 0x5f32a95d xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x5f3e6526 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x5f43552d ip6_frag_match +EXPORT_SYMBOL vmlinux 0x5f4df501 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x5f53012b devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x5f5773ed load_nls_default +EXPORT_SYMBOL vmlinux 0x5f588a35 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x5f650cea iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x5f683efd bdevname +EXPORT_SYMBOL vmlinux 0x5f6ae84c tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x5f75f04c bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5fb455aa __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x5fb62e2d simple_dir_operations +EXPORT_SYMBOL vmlinux 0x5fb735e3 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x5fbe46ac check_disk_size_change +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fe7db13 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x5fe892e1 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x5ffd3288 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601c3026 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60234a01 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x604bfaae i2c_master_send +EXPORT_SYMBOL vmlinux 0x6055f468 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x6062f401 padata_stop +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x6091a4ce compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a23429 dev_alert +EXPORT_SYMBOL vmlinux 0x60b02736 security_file_permission +EXPORT_SYMBOL vmlinux 0x60c0c0aa bio_reset +EXPORT_SYMBOL vmlinux 0x60c66f12 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60ec516d devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x611e5594 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x61229b10 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612d7b62 iov_iter_init +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x616cb775 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x6179bfe5 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x618c66f9 __mdiobus_register +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 0x61ba5855 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x61bd521e ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x61c466f2 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x61c6e1f1 lookup_one_len +EXPORT_SYMBOL vmlinux 0x61dcdcd3 _lv1_pause +EXPORT_SYMBOL vmlinux 0x61dcf24a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x61e3aaa6 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x61ea9b0f scm_fp_dup +EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x61ef1410 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +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 0x623fa830 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x6241c484 vm_insert_page +EXPORT_SYMBOL vmlinux 0x6247ebc4 skb_mac_gso_segment +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 0x628ab945 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x62c404ad pci_write_vpd +EXPORT_SYMBOL vmlinux 0x62cb7ad6 dst_init +EXPORT_SYMBOL vmlinux 0x62e0e734 tcp_connect +EXPORT_SYMBOL vmlinux 0x62e574fa md_write_start +EXPORT_SYMBOL vmlinux 0x62e709c4 dquot_commit +EXPORT_SYMBOL vmlinux 0x62e7a89d register_cdrom +EXPORT_SYMBOL vmlinux 0x62f7ca05 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x63230349 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x632eac31 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x63396aec __debugger_break_match +EXPORT_SYMBOL vmlinux 0x6360d639 cpu_all_bits +EXPORT_SYMBOL vmlinux 0x638e72a6 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63a98258 __check_sticky +EXPORT_SYMBOL vmlinux 0x63ac55f5 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63ce15c0 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x63e5e611 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +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 0x64051a4e tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x642f59af pci_release_region +EXPORT_SYMBOL vmlinux 0x6446b9cd alloc_fddidev +EXPORT_SYMBOL vmlinux 0x644817bb dev_mc_init +EXPORT_SYMBOL vmlinux 0x64634f03 fget +EXPORT_SYMBOL vmlinux 0x64638b5c dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x646cc6ab pmu_poll +EXPORT_SYMBOL vmlinux 0x64798a01 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x648aaa51 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64acf623 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64c8f7c4 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x64d1f259 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x64e61854 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x64fb6e9e zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x6508fccd phy_detach +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x65393023 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654f6d75 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x6556f62e build_skb +EXPORT_SYMBOL vmlinux 0x655a62d7 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x65618020 dst_release +EXPORT_SYMBOL vmlinux 0x65630597 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x656389ed drop_super +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x6573d62a ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x65934076 single_open_size +EXPORT_SYMBOL vmlinux 0x659a77b2 put_disk +EXPORT_SYMBOL vmlinux 0x65b093ed blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65d11c45 seq_escape +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e059ed vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65eab529 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x65f6ac12 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x663697d8 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x6660325a simple_rename +EXPORT_SYMBOL vmlinux 0x66754be3 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x66ad1cb3 _lv1_set_lpm_general_control +EXPORT_SYMBOL vmlinux 0x66cad702 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x66cbf14b pmac_xpram_write +EXPORT_SYMBOL vmlinux 0x66d14a88 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x66d60281 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x66d8ac3e pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x66e2bf1e fs_bio_set +EXPORT_SYMBOL vmlinux 0x66f6156a xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x66f9ab1d nf_setsockopt +EXPORT_SYMBOL vmlinux 0x670b9d53 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x6712d301 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x673db161 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6772a2ba mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x678857aa phy_find_first +EXPORT_SYMBOL vmlinux 0x67ae1905 lock_fb_info +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67e3b316 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x67f8617c eth_header_parse +EXPORT_SYMBOL vmlinux 0x67f97b2f ether_setup +EXPORT_SYMBOL vmlinux 0x6807881a inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680ccdfd nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x6822beb2 fsync_bdev +EXPORT_SYMBOL vmlinux 0x683d2524 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x68406fd6 cdev_alloc +EXPORT_SYMBOL vmlinux 0x684aa3b5 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x685f6ee5 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x68797427 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x687ad06b seq_write +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68829752 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x6882b276 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68bc3b61 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x68be735b jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x68c5b92e neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x68cb9723 msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0x68d6b1f0 up_write +EXPORT_SYMBOL vmlinux 0x68e1ef51 smu_present +EXPORT_SYMBOL vmlinux 0x68f27971 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x68fb7bfe security_path_link +EXPORT_SYMBOL vmlinux 0x696d3e18 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x699719e5 unregister_console +EXPORT_SYMBOL vmlinux 0x699ccbf8 _lv1_deconfigure_virtual_uart_irq +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69acea2a blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69afccec of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x69c41efa mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x69cfeeed udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x69f32bc7 phy_device_create +EXPORT_SYMBOL vmlinux 0x69f3ee5c seq_path +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a04acd0 arp_send +EXPORT_SYMBOL vmlinux 0x6a103936 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x6a1174d9 generic_getxattr +EXPORT_SYMBOL vmlinux 0x6a240afa scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x6a4301c2 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x6a5bc7a1 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a736a81 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a77849a inet6_offloads +EXPORT_SYMBOL vmlinux 0x6a88bf16 __scm_send +EXPORT_SYMBOL vmlinux 0x6ab964e9 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x6abf00bf ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af513a2 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x6af76551 dev_activate +EXPORT_SYMBOL vmlinux 0x6afc3fbb PDE_DATA +EXPORT_SYMBOL vmlinux 0x6afe36fe simple_nosetlease +EXPORT_SYMBOL vmlinux 0x6b035112 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b08c74c of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b358cab _lv1_read_repository_node +EXPORT_SYMBOL vmlinux 0x6b387694 _lv1_end_of_interrupt_ext +EXPORT_SYMBOL vmlinux 0x6b41b18b km_report +EXPORT_SYMBOL vmlinux 0x6b589a6e _lv1_net_add_multicast_address +EXPORT_SYMBOL vmlinux 0x6b5dfe73 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x6b5ef8c9 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b6436b0 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free +EXPORT_SYMBOL vmlinux 0x6b6f0c4b _lv1_create_repository_node +EXPORT_SYMBOL vmlinux 0x6b7b73ee skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x6b803ea2 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x6bab0607 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc9418b agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6bef96ad serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c370f49 security_path_chmod +EXPORT_SYMBOL vmlinux 0x6c497bac md_write_end +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c5232a7 __xfrm_init_state +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 0x6c88532d key_revoke +EXPORT_SYMBOL vmlinux 0x6c9d7025 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear +EXPORT_SYMBOL vmlinux 0x6cc59b56 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x6cdffa84 __mutex_init +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 0x6d361afb pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x6d50d25b tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x6d6a3db9 __serio_register_port +EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6da9725a sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x6db9d819 devm_request_resource +EXPORT_SYMBOL vmlinux 0x6dc07d48 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x6dd41ba7 skb_make_writable +EXPORT_SYMBOL vmlinux 0x6dd87dc0 phy_driver_register +EXPORT_SYMBOL vmlinux 0x6dd8a0e8 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df8ce9d security_inode_permission +EXPORT_SYMBOL vmlinux 0x6e0e0112 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x6e49d46a netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x6e642c1f dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e746a13 pcim_iomap +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e8776ef dm_unregister_target +EXPORT_SYMBOL vmlinux 0x6e924694 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x6e979745 pci_get_slot +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ebb2122 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x6ebfd0bf blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x6ed05cf4 sys_imageblit +EXPORT_SYMBOL vmlinux 0x6ee66102 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x6f01ce8c bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x6f187047 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f417bf5 km_new_mapping +EXPORT_SYMBOL vmlinux 0x6f65922f register_netdev +EXPORT_SYMBOL vmlinux 0x6f70259f key_validate +EXPORT_SYMBOL vmlinux 0x6f753499 key_put +EXPORT_SYMBOL vmlinux 0x6f836455 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f96e0e5 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x6f9a8c56 console_stop +EXPORT_SYMBOL vmlinux 0x6fa331ed _lv1_construct_io_irq_outlet +EXPORT_SYMBOL vmlinux 0x6faa0cea ll_rw_block +EXPORT_SYMBOL vmlinux 0x6fbf031c finish_no_open +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fe81ce4 sk_free +EXPORT_SYMBOL vmlinux 0x6fecb0b1 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x6ff7928f md_done_sync +EXPORT_SYMBOL vmlinux 0x7001b950 d_genocide +EXPORT_SYMBOL vmlinux 0x701699b2 _lv1_set_spe_privilege_state_area_1_register +EXPORT_SYMBOL vmlinux 0x7030bc4f bio_advance +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x708d06cb vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x70a6e325 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x70aed0da mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x70bc7db9 genphy_update_link +EXPORT_SYMBOL vmlinux 0x70bf2f00 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x70c3e0d6 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x70c547b1 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x70c69317 update_devfreq +EXPORT_SYMBOL vmlinux 0x70d5ec1b sys_fillrect +EXPORT_SYMBOL vmlinux 0x70f86c70 pmu_queue_request +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x711301a2 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x7113dfaf page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712ce1e8 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x71348609 __alloc_skb +EXPORT_SYMBOL vmlinux 0x71420494 elevator_alloc +EXPORT_SYMBOL vmlinux 0x71428221 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x71467d0e simple_getattr +EXPORT_SYMBOL vmlinux 0x715505d3 console_start +EXPORT_SYMBOL vmlinux 0x71618fb5 tty_do_resize +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b00ea9 agp_free_memory +EXPORT_SYMBOL vmlinux 0x71cdc06a tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x71d368c2 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x71dbd7db ppp_dev_name +EXPORT_SYMBOL vmlinux 0x71f95692 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x721f75e3 vme_slot_num +EXPORT_SYMBOL vmlinux 0x7237602e blk_put_queue +EXPORT_SYMBOL vmlinux 0x725607be neigh_ifdown +EXPORT_SYMBOL vmlinux 0x725b1268 submit_bio +EXPORT_SYMBOL vmlinux 0x725e8390 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x72632638 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x727b7060 dentry_open +EXPORT_SYMBOL vmlinux 0x729b4a83 _lv1_get_spe_all_interrupt_statuses +EXPORT_SYMBOL vmlinux 0x72a5f6c8 paca +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x72beca14 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 +EXPORT_SYMBOL vmlinux 0x72d9a1dd i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72fa68ed inet6_protos +EXPORT_SYMBOL vmlinux 0x73096c02 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x730e10ad nvm_unregister_target +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 0x732d712c sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x73356302 inc_nlink +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x734f3e58 security_path_unlink +EXPORT_SYMBOL vmlinux 0x734ff7cb __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x735e605b get_super_thawed +EXPORT_SYMBOL vmlinux 0x73710a3e dqstats +EXPORT_SYMBOL vmlinux 0x73729f15 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x73889194 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x73919026 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x73962f26 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x73a45013 inet_select_addr +EXPORT_SYMBOL vmlinux 0x73ab82fe inet_frag_find +EXPORT_SYMBOL vmlinux 0x73c0b838 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x73c31197 simple_follow_link +EXPORT_SYMBOL vmlinux 0x73cacfee sync_filesystem +EXPORT_SYMBOL vmlinux 0x73cf2b23 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x74012d0f nf_ct_attach +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x74217ada elv_rb_add +EXPORT_SYMBOL vmlinux 0x742aee71 dquot_get_state +EXPORT_SYMBOL vmlinux 0x7456fb61 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7475dd0b kobject_add +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74a36b80 pci_set_master +EXPORT_SYMBOL vmlinux 0x74b361c5 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x74ba2c7d abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x74c09787 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c683af tty_port_hangup +EXPORT_SYMBOL vmlinux 0x74cce1d8 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x74ccf228 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x74d972ab tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x74db2dae param_set_bool +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74fe8730 sys_ctrler +EXPORT_SYMBOL vmlinux 0x750ca776 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x7553139b misc_register +EXPORT_SYMBOL vmlinux 0x755ce928 devfreq_add_governor +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 0x75999c97 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x75aa0093 macio_release_resources +EXPORT_SYMBOL vmlinux 0x75ac9f37 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x75b18683 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x75bc3974 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75be6702 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x75cc0296 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x75d53502 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x75e4f5aa pasemi_read_mac_reg +EXPORT_SYMBOL vmlinux 0x7609fdb4 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x76194d4d devm_gpio_request +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x76484141 pnv_pci_get_phb_node +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x764e2224 _lv1_disconnect_irq_plug_ext +EXPORT_SYMBOL vmlinux 0x7652edff __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x765cc0d5 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x76891729 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x76b0d184 of_device_is_available +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76f366ef md_reload_sb +EXPORT_SYMBOL vmlinux 0x76fd21bf __sk_dst_check +EXPORT_SYMBOL vmlinux 0x7703f938 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x77144936 _lv1_disconnect_irq_plug +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x772b3cac kern_path_create +EXPORT_SYMBOL vmlinux 0x772c1967 tcp_check_req +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x774caff5 drop_nlink +EXPORT_SYMBOL vmlinux 0x77563bcb iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x7763cad7 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x776f95fd d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x777998fb sys_copyarea +EXPORT_SYMBOL vmlinux 0x777b691e __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x777e09d9 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779c04d4 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77ef770f sock_no_listen +EXPORT_SYMBOL vmlinux 0x77f3a28f nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x77f5aee2 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x77f9a832 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x7804244a sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x78137a33 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x781c54ff bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x7829a8e2 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x783043a9 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x7830b04f hvc_put_chars +EXPORT_SYMBOL vmlinux 0x7832b8ae netif_rx +EXPORT_SYMBOL vmlinux 0x78381875 input_close_device +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783d00d8 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x7843ff4e uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x78697248 revert_creds +EXPORT_SYMBOL vmlinux 0x786b07e0 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x786c3ba4 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x78730e6b compat_tcp_getsockopt +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 0x78ca4f53 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x78cdac8a sk_ns_capable +EXPORT_SYMBOL vmlinux 0x78d83e96 alloc_disk +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78ef1479 dquot_file_open +EXPORT_SYMBOL vmlinux 0x7916570a phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x791906d5 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x79247544 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x7930e12d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x7964d909 lock_two_nondirectories +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 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79a7a364 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79bcd345 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x79be07e4 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x79bef78a delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x79bff5cc blkdev_put +EXPORT_SYMBOL vmlinux 0x79c6f09d kobject_set_name +EXPORT_SYMBOL vmlinux 0x7a070cc7 set_groups +EXPORT_SYMBOL vmlinux 0x7a29dc11 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x7a390e26 sk_capable +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a55a01f tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a9006d3 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x7a90e41a override_creds +EXPORT_SYMBOL vmlinux 0x7a95c9c8 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa9e259 _lv1_map_htab +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abe5fe4 inode_dio_wait +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 0x7b4c9d38 inet_listen +EXPORT_SYMBOL vmlinux 0x7b66be2b remove_arg_zero +EXPORT_SYMBOL vmlinux 0x7b66f4b6 set_anon_super +EXPORT_SYMBOL vmlinux 0x7b7acd96 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x7b8525dc padata_add_cpu +EXPORT_SYMBOL vmlinux 0x7b90ec2f sk_common_release +EXPORT_SYMBOL vmlinux 0x7ba8919b serio_close +EXPORT_SYMBOL vmlinux 0x7bb756cc neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x7bd43099 is_bad_inode +EXPORT_SYMBOL vmlinux 0x7bd6e718 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x7bde3f6d simple_transaction_read +EXPORT_SYMBOL vmlinux 0x7bdede32 scsi_host_get +EXPORT_SYMBOL vmlinux 0x7bf38d3a nf_reinject +EXPORT_SYMBOL vmlinux 0x7bf6b071 nf_log_register +EXPORT_SYMBOL vmlinux 0x7bfb9297 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c12739a sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c21c946 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x7c27156c rtas_online_cpus_mask +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c3e42b2 register_framebuffer +EXPORT_SYMBOL vmlinux 0x7c40c0d4 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c6d7fed register_sysctl +EXPORT_SYMBOL vmlinux 0x7c6f0c1f blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7c9d54df fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb1b8d2 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x7ccbfabd grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x7cd3c039 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce2c77d __elv_add_request +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf9f760 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d1239b7 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x7d55d31d prepare_binprm +EXPORT_SYMBOL vmlinux 0x7d587a37 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x7d645980 block_truncate_page +EXPORT_SYMBOL vmlinux 0x7d703ec7 tcp_close +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d80580e kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x7db2b7b5 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x7db60948 kobject_init +EXPORT_SYMBOL vmlinux 0x7db8aa10 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x7dbcd3d0 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max +EXPORT_SYMBOL vmlinux 0x7de56078 set_security_override +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e21c50f generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x7e4684e7 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x7e5f923c tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x7e71ca67 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress +EXPORT_SYMBOL vmlinux 0x7e8bcd2e tcf_action_exec +EXPORT_SYMBOL vmlinux 0x7e9bd19f simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x7ed03534 sock_edemux +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee92a29 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x7eee9a81 set_wb_congested +EXPORT_SYMBOL vmlinux 0x7ef39b7f of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f046d24 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x7f08a831 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x7f127bdf dquot_release +EXPORT_SYMBOL vmlinux 0x7f247ad8 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f2dbeb1 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x7f42b1ea sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x7f4b6aac remove_proc_entry +EXPORT_SYMBOL vmlinux 0x7f5224c9 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f7085f9 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x7f78c348 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x7f8819bf pmac_suspend_agp_for_card +EXPORT_SYMBOL vmlinux 0x7f96797b dput +EXPORT_SYMBOL vmlinux 0x7f9e561c vfs_setpos +EXPORT_SYMBOL vmlinux 0x7fb1d0f4 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x7fb3193c get_super +EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7fc171f6 init_special_inode +EXPORT_SYMBOL vmlinux 0x7fcbd5b4 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x7fcdf024 vfs_readv +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 0x8000a9b8 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x800236cd soft_cursor +EXPORT_SYMBOL vmlinux 0x8048ac77 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x804c73ed fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x807956be simple_readpage +EXPORT_SYMBOL vmlinux 0x807c5ab0 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x80948a4c sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x80a5ab10 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x80aa8cc1 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x80acf25e of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x80b0cfe8 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x80b47814 try_to_release_page +EXPORT_SYMBOL vmlinux 0x80baa3af uart_resume_port +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80cbd04f dquot_destroy +EXPORT_SYMBOL vmlinux 0x80cd0193 simple_statfs +EXPORT_SYMBOL vmlinux 0x80cf40b1 of_root +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d7a6d6 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x81134a8a alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x81158854 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x813f96d8 pnv_phb_to_cxl_mode +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815a9c27 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x816b058b md_cluster_mod +EXPORT_SYMBOL vmlinux 0x818830b5 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81ae4da5 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator +EXPORT_SYMBOL vmlinux 0x81d98eeb powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0x81d9f7f2 _lv1_put_iopte +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x8201cf18 kill_pgrp +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback +EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x8249d5a0 __sb_end_write +EXPORT_SYMBOL vmlinux 0x82584d73 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x825b0538 mount_subtree +EXPORT_SYMBOL vmlinux 0x826ca11b filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x826dd8de cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x828d57b0 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0x8295e773 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x82aca067 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82b95ff5 scsi_init_io +EXPORT_SYMBOL vmlinux 0x82ba402b inode_init_once +EXPORT_SYMBOL vmlinux 0x82cbfc37 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x82e9b7c5 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x82f38082 __bforget +EXPORT_SYMBOL vmlinux 0x8304ebb9 mmc_add_host +EXPORT_SYMBOL vmlinux 0x83086574 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x831b42bf posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x833de418 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x834a3714 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x8352c826 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x83836138 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x839e2e60 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x83a01751 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x83aef1ab proc_set_size +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83b044f9 vio_register_device_node +EXPORT_SYMBOL vmlinux 0x83b3cb81 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83d042e0 nf_log_set +EXPORT_SYMBOL vmlinux 0x83f51367 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x83fd8d67 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x8416ea8f __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x8417d7f3 get_io_context +EXPORT_SYMBOL vmlinux 0x8417e204 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x84325447 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x845124e0 ps3_mm_phys_to_lpar +EXPORT_SYMBOL vmlinux 0x8454a606 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x84616903 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x848cbdcc __f_setown +EXPORT_SYMBOL vmlinux 0x84987ca1 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x849fe807 csum_and_copy_from_user +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84d01d49 of_device_unregister +EXPORT_SYMBOL vmlinux 0x84d759c5 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x8502262f skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x8535bb2e of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x85383863 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x854aa948 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x855bcc91 of_node_get +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x8567f973 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall +EXPORT_SYMBOL vmlinux 0x85abd993 of_create_pci_dev +EXPORT_SYMBOL vmlinux 0x85ae6052 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x85af5f23 genphy_config_init +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85d3ce43 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x85d824b6 __pagevec_release +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fede30 vme_lm_request +EXPORT_SYMBOL vmlinux 0x8601f7ba __quota_error +EXPORT_SYMBOL vmlinux 0x8605d9b6 mount_pseudo +EXPORT_SYMBOL vmlinux 0x86125251 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x861c1222 led_blink_set +EXPORT_SYMBOL vmlinux 0x8628dc78 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x866c422d phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x867cabba phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86984c4a sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x869be696 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a504c5 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x86a7a320 vfs_llseek +EXPORT_SYMBOL vmlinux 0x86ab09a3 security_path_rename +EXPORT_SYMBOL vmlinux 0x86acdc74 param_get_short +EXPORT_SYMBOL vmlinux 0x86bc121d security_mmap_file +EXPORT_SYMBOL vmlinux 0x86c5e1b5 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x86d88c03 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook +EXPORT_SYMBOL vmlinux 0x86ec1846 simple_open +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8700f474 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x8703e88a of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x87049734 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x8706bafe dmam_pool_create +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x87389b81 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 +EXPORT_SYMBOL vmlinux 0x87411121 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x8754804b lro_flush_all +EXPORT_SYMBOL vmlinux 0x876049b2 tty_lock +EXPORT_SYMBOL vmlinux 0x8775519c invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87a57046 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x87abd037 down_read_trylock +EXPORT_SYMBOL vmlinux 0x87af8482 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x87d4b682 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x87eac691 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x880070eb padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x880da1b1 _lv1_get_logical_partition_id +EXPORT_SYMBOL vmlinux 0x8810e9d6 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x8813a373 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x8818d902 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x88208e65 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x8823d495 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x882db37f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x883a0686 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x883da7ca netdev_features_change +EXPORT_SYMBOL vmlinux 0x8847c4e6 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x884d383d scsi_device_get +EXPORT_SYMBOL vmlinux 0x88500afb replace_mount_options +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x88808869 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x88987a79 dev_emerg +EXPORT_SYMBOL vmlinux 0x889fe40a dcache_readdir +EXPORT_SYMBOL vmlinux 0x88ab064c vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x88ac0de4 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x88b1b4de nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x88b74709 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x88de1806 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x88e2fd88 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x89196f76 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x8921808c have_submounts +EXPORT_SYMBOL vmlinux 0x892a87ac input_set_keycode +EXPORT_SYMBOL vmlinux 0x892de3fb __nla_put +EXPORT_SYMBOL vmlinux 0x895108f3 proc_dostring +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 0x89812dd6 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89b6b002 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x89c5a8be smu_get_sdb_partition +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89e2cb9e md_unregister_thread +EXPORT_SYMBOL vmlinux 0x89f3d1cb simple_dname +EXPORT_SYMBOL vmlinux 0x89fa5d2a netlink_set_err +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a2439ad __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x8a3905d2 path_put +EXPORT_SYMBOL vmlinux 0x8a4497da netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a50ad44 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a58cda8 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a74115e dquot_acquire +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a89f2e9 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x8a8c70f6 vfs_mknod +EXPORT_SYMBOL vmlinux 0x8a95cdda ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9cef2a _lv1_allocate_device_dma_region +EXPORT_SYMBOL vmlinux 0x8ade3e3e dev_add_offload +EXPORT_SYMBOL vmlinux 0x8af1e4fb dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x8b11847c n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x8b260344 dev_mc_add +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b6d30e1 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x8b7d5fb6 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b87c0e5 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x8b91676e ps2_begin_command +EXPORT_SYMBOL vmlinux 0x8b9c12d9 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x8bab119d get_tz_trend +EXPORT_SYMBOL vmlinux 0x8bb9adda ilookup5 +EXPORT_SYMBOL vmlinux 0x8bbabf3a sock_wmalloc +EXPORT_SYMBOL vmlinux 0x8bee1787 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x8bee5d28 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x8bee5d9f __dax_fault +EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0x8bf7e3a1 ps3_sb_event_receive_port_destroy +EXPORT_SYMBOL vmlinux 0x8bfdcd9e gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c199b87 dup_iter +EXPORT_SYMBOL vmlinux 0x8c1cfca8 block_read_full_page +EXPORT_SYMBOL vmlinux 0x8c3cc070 param_set_bint +EXPORT_SYMBOL vmlinux 0x8c5a91c8 param_ops_string +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c69971b mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x8c6a98da inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x8c6ccbf5 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x8c6cf79b jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x8c776295 account_page_redirty +EXPORT_SYMBOL vmlinux 0x8c8d79c0 _lv1_gpu_context_iomap +EXPORT_SYMBOL vmlinux 0x8cb2452c unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x8cba9d4a irq_to_desc +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cc79ee8 sock_no_poll +EXPORT_SYMBOL vmlinux 0x8cd4e64f dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x8cf75f3d __serio_register_driver +EXPORT_SYMBOL vmlinux 0x8d00c9b6 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x8d05290c tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x8d1c227f of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x8d21a152 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x8d41ace8 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5fb198 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d944cbb copy_in_user +EXPORT_SYMBOL vmlinux 0x8d9a8e26 pci_bus_put +EXPORT_SYMBOL vmlinux 0x8dadcc6a gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x8dd7a74a unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8de2fbc5 _lv1_get_virtual_uart_param +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8e090528 free_task +EXPORT_SYMBOL vmlinux 0x8e30e6b1 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x8e44bcfb ip6_xmit +EXPORT_SYMBOL vmlinux 0x8e4587f2 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e7763f9 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x8ea7ef43 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8eea1bc9 smu_poll +EXPORT_SYMBOL vmlinux 0x8ef62182 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x8efec85a do_splice_direct +EXPORT_SYMBOL vmlinux 0x8eff15cc iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x8f201207 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x8f49c3fe blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x8f53cf67 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x8f798c01 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8f940fd8 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x8f9fac50 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x8fb3faf9 release_firmware +EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x8fc8118a mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x8fc97ad6 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x8fd1da62 sk_wait_data +EXPORT_SYMBOL vmlinux 0x8fea446e dquot_enable +EXPORT_SYMBOL vmlinux 0x8feba2bf dst_destroy +EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x902650dd of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x9031fb46 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x90347c49 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x9047edf6 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x904d415a vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x905851fb __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x90b19d2f tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x90e4fcf2 blk_free_tags +EXPORT_SYMBOL vmlinux 0x9103c3c8 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x91127737 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x91190fab twl6040_power +EXPORT_SYMBOL vmlinux 0x91201cef _lv1_enable_logical_spe +EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay +EXPORT_SYMBOL vmlinux 0x9145fff4 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x9151f1b7 pnv_cxl_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x915dcfeb buffer_check_dirty_writeback +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 0x919043ed unregister_filesystem +EXPORT_SYMBOL vmlinux 0x91971e52 netdev_alert +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91c4feca _lv1_unmap_htab +EXPORT_SYMBOL vmlinux 0x91cad4df xfrm_register_km +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x9222c3dc pipe_lock +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x9250c9c1 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x925497df msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x926a4dc7 dst_alloc +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x9292caee give_up_console +EXPORT_SYMBOL vmlinux 0x92a57631 sock_release +EXPORT_SYMBOL vmlinux 0x92a8a4e4 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92ef4d8d mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x92f1446b inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93507f1c _lv1_gpu_memory_allocate +EXPORT_SYMBOL vmlinux 0x9351aa7c generic_readlink +EXPORT_SYMBOL vmlinux 0x9354fcde ibmebus_free_irq +EXPORT_SYMBOL vmlinux 0x9357cb91 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x935bbf18 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x937e343f mach_pasemi +EXPORT_SYMBOL vmlinux 0x9381f13d serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x93830c30 __register_nls +EXPORT_SYMBOL vmlinux 0x939e6b7f pci_choose_state +EXPORT_SYMBOL vmlinux 0x93a9070c sg_miter_next +EXPORT_SYMBOL vmlinux 0x93ad7931 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b9bdad inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x93bbbb37 bdev_read_only +EXPORT_SYMBOL vmlinux 0x93bc1bce fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x93be797b ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x93da2538 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x93ddd582 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x941c8190 __devm_release_region +EXPORT_SYMBOL vmlinux 0x94251ce3 iput +EXPORT_SYMBOL vmlinux 0x94286d40 fb_blank +EXPORT_SYMBOL vmlinux 0x943dc80f csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x94442e6b simple_transaction_set +EXPORT_SYMBOL vmlinux 0x94597a4a registered_fb +EXPORT_SYMBOL vmlinux 0x945ff5e8 skb_append +EXPORT_SYMBOL vmlinux 0x94726f13 sget_userns +EXPORT_SYMBOL vmlinux 0x94789f5d tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x947b71ff skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x94899e64 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x9496e994 generic_write_checks +EXPORT_SYMBOL vmlinux 0x94a24d11 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x94d195b6 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x94d27565 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x94d9c02a eth_gro_complete +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x951a9218 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x951d33a3 textsearch_register +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x952a2745 unlock_rename +EXPORT_SYMBOL vmlinux 0x952e9965 component_match_add +EXPORT_SYMBOL vmlinux 0x95331e6c of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0x9535d4bf skb_trim +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95479486 padata_start +EXPORT_SYMBOL vmlinux 0x958ca75f input_release_device +EXPORT_SYMBOL vmlinux 0x958fd22f lock_sock_fast +EXPORT_SYMBOL vmlinux 0x95b519c0 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x95b68b80 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x95b70903 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x95d870bd kthread_stop +EXPORT_SYMBOL vmlinux 0x95f0e637 release_sock +EXPORT_SYMBOL vmlinux 0x95f85eb0 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x962bdbdf mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x964208f6 sock_i_uid +EXPORT_SYMBOL vmlinux 0x96570721 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x968ad0f1 get_fs_type +EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96c449ff tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x96c5354a put_tty_driver +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96e739c5 seq_release +EXPORT_SYMBOL vmlinux 0x96e86e5c pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x97082253 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x971354b1 noop_llseek +EXPORT_SYMBOL vmlinux 0x972bea16 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x973317fc inet_csk_accept +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x975830f6 d_add_ci +EXPORT_SYMBOL vmlinux 0x975b1944 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x97653185 inet_release +EXPORT_SYMBOL vmlinux 0x976e014f _lv1_map_device_mmio_region +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 0x97b119ea pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x97b27ae5 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x97b3a364 __frontswap_load +EXPORT_SYMBOL vmlinux 0x97ba1af0 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x97d3c96c scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x97dc7f4c sock_init_data +EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update +EXPORT_SYMBOL vmlinux 0x98177648 _lv1_set_lpm_interval +EXPORT_SYMBOL vmlinux 0x981940e1 notify_change +EXPORT_SYMBOL vmlinux 0x9821221f mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x98255f20 sync_blockdev +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982e5605 phy_suspend +EXPORT_SYMBOL vmlinux 0x98369580 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x9854cac7 dump_skip +EXPORT_SYMBOL vmlinux 0x986c8eed do_splice_to +EXPORT_SYMBOL vmlinux 0x986d2111 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x9870505f bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x9871054b filp_open +EXPORT_SYMBOL vmlinux 0x9878dbc5 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x987fc124 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98dc7771 scsi_host_put +EXPORT_SYMBOL vmlinux 0x990864a9 sock_no_connect +EXPORT_SYMBOL vmlinux 0x99111ac4 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x9913d8ae blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x991f9f85 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x99269a27 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x99392186 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x9980a367 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99bb365b lwtunnel_input +EXPORT_SYMBOL vmlinux 0x99c24cfe _lv1_free_device_dma_region +EXPORT_SYMBOL vmlinux 0x99c833de xfrm_state_register_afinfo +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 0x9a04cd2f uart_match_port +EXPORT_SYMBOL vmlinux 0x9a0d97f8 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x9a129fef scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1e8915 tty_mutex +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a1ffb92 _lv1_clear_spe_interrupt_status +EXPORT_SYMBOL vmlinux 0x9a221019 __genl_register_family +EXPORT_SYMBOL vmlinux 0x9a3f10e7 tcp_child_process +EXPORT_SYMBOL vmlinux 0x9a6b328c revalidate_disk +EXPORT_SYMBOL vmlinux 0x9a6c2531 pasemi_dma_init +EXPORT_SYMBOL vmlinux 0x9a7bcb24 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x9abf4d2a mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x9acc1724 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x9ad95d8f iterate_mounts +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9aecbb66 mmc_can_reset +EXPORT_SYMBOL vmlinux 0x9aed0ef5 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x9af62513 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x9b0c75d3 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b39c9bd crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x9b421910 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x9b48439c jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x9b4efca5 key_task_permission +EXPORT_SYMBOL vmlinux 0x9b7cd55b srp_rport_get +EXPORT_SYMBOL vmlinux 0x9b7e85a6 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba382a6 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bb4453e agp_create_memory +EXPORT_SYMBOL vmlinux 0x9bb9542f sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x9bc07e1a blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x9bd15220 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x9bd343d2 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x9bdad2ec __page_symlink +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9be896a4 devm_ioremap +EXPORT_SYMBOL vmlinux 0x9c01ad11 ns_capable +EXPORT_SYMBOL vmlinux 0x9c047e48 of_match_device +EXPORT_SYMBOL vmlinux 0x9c319924 read_code +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c52bf66 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x9c67c1c5 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x9c8b5a0b blk_complete_request +EXPORT_SYMBOL vmlinux 0x9c96df65 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x9c9f7683 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x9caae635 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cc6b220 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x9cd47526 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x9cf8ecc9 netdev_change_features +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d2f3a6e pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d4a2338 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x9d53c502 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x9d6014b6 copy_from_iter +EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x9d725077 bh_submit_read +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 0x9dd8d8fe mdio_bus_type +EXPORT_SYMBOL vmlinux 0x9de32940 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x9de73eab scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x9df30040 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x9df3ec1c scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x9dfba8d7 set_user_nice +EXPORT_SYMBOL vmlinux 0x9e0882bb param_ops_ulong +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0cc3fa bprm_change_interp +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e3e34ab devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x9e447a89 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x9e45ade0 netlink_ack +EXPORT_SYMBOL vmlinux 0x9e464e25 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64cfa5 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x9e70bc07 do_splice_from +EXPORT_SYMBOL vmlinux 0x9e761acd max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e858750 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x9e886b23 tc_classify +EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time +EXPORT_SYMBOL vmlinux 0x9e973a89 vfs_link +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ed318dc pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x9ee78669 _lv1_write_virtual_uart +EXPORT_SYMBOL vmlinux 0x9efcc707 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x9f2d499a handle_edge_irq +EXPORT_SYMBOL vmlinux 0x9f2ffd44 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x9f3e19c0 single_open +EXPORT_SYMBOL vmlinux 0x9f4436ce seq_puts +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f6af6ed blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fc28dcc dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x9fc5c02e blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x9fd9c086 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa0007484 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xa00b67c7 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xa0168211 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xa01a7c57 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0xa01bd9ff vfs_unlink +EXPORT_SYMBOL vmlinux 0xa026f1a4 write_cache_pages +EXPORT_SYMBOL vmlinux 0xa027dc8f ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xa0345d91 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa0491660 __register_chrdev +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +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 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0c503a4 scmd_printk +EXPORT_SYMBOL vmlinux 0xa0ca9e1f tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xa0d1d29b mpage_writepages +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 0xa1141ee3 register_quota_format +EXPORT_SYMBOL vmlinux 0xa119ae45 __devm_request_region +EXPORT_SYMBOL vmlinux 0xa11ee9d2 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa1542f7a neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xa154ace1 free_user_ns +EXPORT_SYMBOL vmlinux 0xa15fb59e tty_port_close_start +EXPORT_SYMBOL vmlinux 0xa17dcb0e skb_store_bits +EXPORT_SYMBOL vmlinux 0xa184eaac mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0xa18d771a agp_find_bridge +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c5d26f find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c904ee __get_page_tail +EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xa1cc7afe lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1e81820 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa1f9713c __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa2038b9f truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa2127cdc pasemi_dma_alloc_flag +EXPORT_SYMBOL vmlinux 0xa2171f13 bdget +EXPORT_SYMBOL vmlinux 0xa218ae86 skb_insert +EXPORT_SYMBOL vmlinux 0xa21e785c filp_close +EXPORT_SYMBOL vmlinux 0xa225502c pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xa2336ddc bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xa2465322 _lv1_get_version_info +EXPORT_SYMBOL vmlinux 0xa25aa4db __vio_register_driver +EXPORT_SYMBOL vmlinux 0xa2643d54 inet_accept +EXPORT_SYMBOL vmlinux 0xa2694786 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0xa26ee0eb inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xa272a3dd simple_write_begin +EXPORT_SYMBOL vmlinux 0xa275580f simple_transaction_get +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2a05a01 __d_drop +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2d05c81 vio_unregister_device +EXPORT_SYMBOL vmlinux 0xa2dbe639 ppc_md +EXPORT_SYMBOL vmlinux 0xa2e605b1 path_nosuid +EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait +EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xa30c06c9 mdiobus_read +EXPORT_SYMBOL vmlinux 0xa30cc3f2 skb_pad +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa32a5ba0 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xa32f8d09 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xa34d9c12 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3a4c775 kmem_cache_size +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 0xa3f30db2 of_get_next_child +EXPORT_SYMBOL vmlinux 0xa3fc740f pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xa41b1095 kill_anon_super +EXPORT_SYMBOL vmlinux 0xa41bace8 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xa426e9a8 __getblk_slow +EXPORT_SYMBOL vmlinux 0xa43845e6 pci_get_class +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa4632144 phy_stop +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa4736cb0 skb_copy +EXPORT_SYMBOL vmlinux 0xa480c04b _lv1_gpu_context_attribute +EXPORT_SYMBOL vmlinux 0xa4892d36 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xa4917997 find_lock_entry +EXPORT_SYMBOL vmlinux 0xa495ff2e scsi_print_result +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4bf22e0 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4f942c7 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xa4fe7177 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xa523c417 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xa53d279f __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5573b15 kvmppc_hv_find_lock_hpte +EXPORT_SYMBOL vmlinux 0xa55ad67f d_make_root +EXPORT_SYMBOL vmlinux 0xa55c6830 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xa5662a29 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xa56aeb3f xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free +EXPORT_SYMBOL vmlinux 0xa56ba2fa __scm_destroy +EXPORT_SYMBOL vmlinux 0xa57c9062 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xa58be726 request_key_async +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a2e20a netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5aa5804 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xa5b90dec kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xa5d58ccc nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0xa5db6e3d mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xa5ead027 mpage_readpages +EXPORT_SYMBOL vmlinux 0xa6082296 neigh_lookup +EXPORT_SYMBOL vmlinux 0xa62516a2 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa63f0da1 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa65c6e32 thaw_bdev +EXPORT_SYMBOL vmlinux 0xa664fab8 of_get_parent +EXPORT_SYMBOL vmlinux 0xa66eedf2 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6a98129 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xa6b04e84 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xa6b555aa dev_trans_start +EXPORT_SYMBOL vmlinux 0xa6ce472f cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xa6f07f1c decrementer_clockevent +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa70d4e1e serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xa7191f30 napi_complete_done +EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa73811c2 mach_powermac +EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get +EXPORT_SYMBOL vmlinux 0xa76d3166 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xa78c9d48 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xa7ad5f23 __invalidate_device +EXPORT_SYMBOL vmlinux 0xa7ae5b42 copy_to_iter +EXPORT_SYMBOL vmlinux 0xa7c5e8d1 phy_connect +EXPORT_SYMBOL vmlinux 0xa7d364ef dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xa7e43a64 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xa818ff42 pci_enable_device +EXPORT_SYMBOL vmlinux 0xa81f58ae dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa88b57ff mmc_of_parse +EXPORT_SYMBOL vmlinux 0xa8aa22a1 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xa8ced546 _lv1_net_set_interrupt_status_indicator +EXPORT_SYMBOL vmlinux 0xa8e070c8 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xa8f18985 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0xa8fb53b9 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa919a116 key_type_keyring +EXPORT_SYMBOL vmlinux 0xa91c77b6 _lv1_end_of_interrupt +EXPORT_SYMBOL vmlinux 0xa91d90d3 nla_put +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa9268085 dev_err +EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0xa9292113 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0xa93a8582 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xa93ba88e proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xa93bfc5e of_translate_address +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa99d9858 elevator_exit +EXPORT_SYMBOL vmlinux 0xa9ac8d5b vfs_statfs +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9f7626e copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xaa0a411a generic_write_end +EXPORT_SYMBOL vmlinux 0xaa0edca8 pasemi_dma_alloc_fun +EXPORT_SYMBOL vmlinux 0xaa3a83ae open_check_o_direct +EXPORT_SYMBOL vmlinux 0xaa3ca8e8 tty_kref_put +EXPORT_SYMBOL vmlinux 0xaa3eb2a0 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock +EXPORT_SYMBOL vmlinux 0xaa57587f noop_qdisc +EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa70916d deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xaa94579c ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xaa96b18b file_ns_capable +EXPORT_SYMBOL vmlinux 0xaac19f99 tcp_seq_open +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad806c9 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xaaf31018 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab19565a elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xab228e31 csum_tcpudp_magic +EXPORT_SYMBOL vmlinux 0xab2c70c1 kernel_bind +EXPORT_SYMBOL vmlinux 0xab3604ac pci_pme_active +EXPORT_SYMBOL vmlinux 0xab42f208 scsi_device_resume +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 0xab9ef9d2 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xab9f9e4b inode_get_bytes +EXPORT_SYMBOL vmlinux 0xabb1c3cd dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xabbaf0d3 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabfc1846 node_data +EXPORT_SYMBOL vmlinux 0xabfdf567 sock_i_ino +EXPORT_SYMBOL vmlinux 0xabffb213 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xac03af68 tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xac04162b pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac10fb5a datagram_poll +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1dace5 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xac24aedf pci_set_power_state +EXPORT_SYMBOL vmlinux 0xac2510c8 get_phy_device +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac2f5e5d may_umount_tree +EXPORT_SYMBOL vmlinux 0xac40aa3b from_kprojid +EXPORT_SYMBOL vmlinux 0xac452f46 netdev_warn +EXPORT_SYMBOL vmlinux 0xac69175c wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xac85d271 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xac8b46b6 udp_lib_setsockopt +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 0xacf31a66 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf7e637 mdiobus_write +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad273686 bdi_destroy +EXPORT_SYMBOL vmlinux 0xad2ae22c inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xad2af0c8 gen_pool_free +EXPORT_SYMBOL vmlinux 0xad37c552 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xad44105e zero_fill_bio +EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock +EXPORT_SYMBOL vmlinux 0xad5a0712 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad8612a6 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xad9ba4e9 __frontswap_test +EXPORT_SYMBOL vmlinux 0xadd4dee6 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xadeffe25 _lv1_gpu_context_intr +EXPORT_SYMBOL vmlinux 0xadf5b99c vio_get_attribute +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae1df2cc __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xae2087e4 generic_setlease +EXPORT_SYMBOL vmlinux 0xae2788a9 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xae358236 fence_signal +EXPORT_SYMBOL vmlinux 0xae4a4553 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae7c8445 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xae83cfc8 phy_disconnect +EXPORT_SYMBOL vmlinux 0xae972888 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xaea37938 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xaead3ffb mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xaeb62978 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xaeb731b9 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xaeb7910d reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xaecb4ab5 pci_find_bus +EXPORT_SYMBOL vmlinux 0xaefbf060 pnv_cxl_release_hwirq_ranges +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf086c55 km_state_notify +EXPORT_SYMBOL vmlinux 0xaf1a3a09 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf5b6cac blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf79f650 mmc_put_card +EXPORT_SYMBOL vmlinux 0xaf7c52d7 current_in_userns +EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xaf936b66 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xaf99fe6a vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create +EXPORT_SYMBOL vmlinux 0xafcab1f4 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xafd03d48 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xaff1200b tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xaff9fcc2 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb037b537 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xb03c23e4 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xb046b895 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xb0473489 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb06839b2 locks_init_lock +EXPORT_SYMBOL vmlinux 0xb06aead7 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xb081e9ec jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0c33e94 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xb0c7a656 __kfree_skb +EXPORT_SYMBOL vmlinux 0xb0c93351 vfs_readf +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0f4785e filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xb11a6166 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset +EXPORT_SYMBOL vmlinux 0xb1526767 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb16372dc dev_get_flags +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb165ef45 __irq_regs +EXPORT_SYMBOL vmlinux 0xb169716a netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xb16ec2b2 set_device_ro +EXPORT_SYMBOL vmlinux 0xb174d5ca pci_try_set_mwi +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 0xb2141a14 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xb252f68a __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb2804a26 dget_parent +EXPORT_SYMBOL vmlinux 0xb293579c phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xb29dc425 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2c8b7c4 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xb2eee95a posix_lock_file +EXPORT_SYMBOL vmlinux 0xb2ef00f6 __block_write_begin +EXPORT_SYMBOL vmlinux 0xb2ef7984 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xb3115e2d of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0xb324a01c scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xb327a4c7 unregister_nls +EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xb35006f9 kernel_accept +EXPORT_SYMBOL vmlinux 0xb37182e4 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xb3732a80 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xb382f1ae vfs_read +EXPORT_SYMBOL vmlinux 0xb3907576 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xb3bf73df cpu_active_mask +EXPORT_SYMBOL vmlinux 0xb3cefcd9 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb4004282 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb45c3a4c unlock_page +EXPORT_SYMBOL vmlinux 0xb46287cf call_usermodehelper_setup +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 0xb49def86 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xb4a120c9 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xb4c00cc8 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xb4cfefc2 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xb4fcc906 fb_get_mode +EXPORT_SYMBOL vmlinux 0xb4feef80 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xb50b5dbc phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xb54b081b find_vma +EXPORT_SYMBOL vmlinux 0xb56bfd9e smu_spinwait_cmd +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5821583 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xb5877bb4 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b1faaa ps3_sb_event_receive_port_setup +EXPORT_SYMBOL vmlinux 0xb5b2b821 inode_set_flags +EXPORT_SYMBOL vmlinux 0xb5bed0c6 pci_request_region +EXPORT_SYMBOL vmlinux 0xb5c36535 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xb5c7201f jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xb5dd4149 udp_disconnect +EXPORT_SYMBOL vmlinux 0xb5f28f32 md_update_sb +EXPORT_SYMBOL vmlinux 0xb5f6bc86 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0xb600b96d devfreq_interval_update +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb636707f nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xb64889bd iunique +EXPORT_SYMBOL vmlinux 0xb64b41c2 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xb6555edc phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xb67281cc remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +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 0xb6beaf2b d_prune_aliases +EXPORT_SYMBOL vmlinux 0xb6da07e0 pci_dev_get +EXPORT_SYMBOL vmlinux 0xb6e31d04 put_filp +EXPORT_SYMBOL vmlinux 0xb6e3c693 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xb6eab7ec xfrm_register_type +EXPORT_SYMBOL vmlinux 0xb706498e account_page_dirtied +EXPORT_SYMBOL vmlinux 0xb708cb64 ppp_input +EXPORT_SYMBOL vmlinux 0xb72068b4 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xb72b171e of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb761eb28 nvm_register +EXPORT_SYMBOL vmlinux 0xb7630761 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb788217d hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xb78bbaf0 bio_copy_kern +EXPORT_SYMBOL vmlinux 0xb7c5b610 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7cfdb39 proc_create_data +EXPORT_SYMBOL vmlinux 0xb7d3079a __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xb7d6a3ab xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb7d791bb mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xb7f0dca4 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xb80f2707 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xb82a6fa3 framebuffer_release +EXPORT_SYMBOL vmlinux 0xb84fe889 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xb86123be _lv1_write_repository_node +EXPORT_SYMBOL vmlinux 0xb86dab2a ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb885eb3d mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xb8869232 tty_free_termios +EXPORT_SYMBOL vmlinux 0xb8a30c7e _lv1_add_lpm_event_bookmark +EXPORT_SYMBOL vmlinux 0xb8afae04 get_gendisk +EXPORT_SYMBOL vmlinux 0xb8b92779 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xb8b99fe9 vio_cmo_set_dev_desired +EXPORT_SYMBOL vmlinux 0xb8da3280 param_get_int +EXPORT_SYMBOL vmlinux 0xb8e8f951 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb93577dd kernel_getsockname +EXPORT_SYMBOL vmlinux 0xb95d84e1 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xb992adc5 km_state_expired +EXPORT_SYMBOL vmlinux 0xb992d0cb serio_reconnect +EXPORT_SYMBOL vmlinux 0xb9a38460 pci_restore_state +EXPORT_SYMBOL vmlinux 0xb9a50cd2 register_key_type +EXPORT_SYMBOL vmlinux 0xb9b6fcf9 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xb9d79deb tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xb9e6b383 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9ed41d6 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xb9f7f160 devm_release_resource +EXPORT_SYMBOL vmlinux 0xba122a2c smu_done_complete +EXPORT_SYMBOL vmlinux 0xba1c6929 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xba25ea50 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xba2ffec2 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba9970c6 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xbaa385de seq_file_path +EXPORT_SYMBOL vmlinux 0xbaca08c3 security_inode_readlink +EXPORT_SYMBOL vmlinux 0xbae32980 mach_pseries +EXPORT_SYMBOL vmlinux 0xbae9a2dd abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb07d14c filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xbb0af69d bio_init +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3e0689 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb4fe97c inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xbb522c65 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb696bff dev_uc_add +EXPORT_SYMBOL vmlinux 0xbb7dd15d __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xbb8c4b9b blk_fetch_request +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba77581 max8925_reg_write +EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xbbb6b412 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xbbbb9b46 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0xbbe07a9f user_path_create +EXPORT_SYMBOL vmlinux 0xbbfec92d input_event +EXPORT_SYMBOL vmlinux 0xbc004dae kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xbc0a5b76 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xbc0ddd63 put_page +EXPORT_SYMBOL vmlinux 0xbc29c5d2 param_set_ullong +EXPORT_SYMBOL vmlinux 0xbc2a3476 save_mount_options +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc412aab of_dev_put +EXPORT_SYMBOL vmlinux 0xbc5389fc neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xbc6c49b7 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xbc7c5a19 mount_nodev +EXPORT_SYMBOL vmlinux 0xbc7e2db3 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags +EXPORT_SYMBOL vmlinux 0xbc9ad781 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xbc9c9e42 vfs_writef +EXPORT_SYMBOL vmlinux 0xbcbc30fa tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xbcc01889 to_ndd +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcee5c12 simple_lookup +EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 +EXPORT_SYMBOL vmlinux 0xbcfcaa76 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xbd07b27a swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xbd2a712e dqput +EXPORT_SYMBOL vmlinux 0xbd4057be __free_pages +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd60bb96 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xbd613e09 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0xbd730fb5 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xbd896e2e seq_dentry +EXPORT_SYMBOL vmlinux 0xbd8cfa15 pasemi_write_mac_reg +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd985fd6 touch_buffer +EXPORT_SYMBOL vmlinux 0xbd9aaacf get_task_io_context +EXPORT_SYMBOL vmlinux 0xbd9e8ea0 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0xbdab6c10 dump_align +EXPORT_SYMBOL vmlinux 0xbdc02d95 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xbdc82d48 migrate_page +EXPORT_SYMBOL vmlinux 0xbde5ace8 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xbe0edaeb serio_interrupt +EXPORT_SYMBOL vmlinux 0xbe1b2a8b mmc_can_discard +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe1c4e5b blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xbe373aef skb_pull +EXPORT_SYMBOL vmlinux 0xbe3dc9be locks_remove_posix +EXPORT_SYMBOL vmlinux 0xbe7ad012 path_get +EXPORT_SYMBOL vmlinux 0xbe88d9c7 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xbe9179a1 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xbeb7f66a filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xbed814b2 netdev_notice +EXPORT_SYMBOL vmlinux 0xbeecee97 __kernel_write +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf0931aa ps2_end_command +EXPORT_SYMBOL vmlinux 0xbf0a899a write_one_page +EXPORT_SYMBOL vmlinux 0xbf20de4d dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xbf57ad57 elv_rb_find +EXPORT_SYMBOL vmlinux 0xbf7cec48 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8b4a06 scsi_register +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa3ec6f generic_update_time +EXPORT_SYMBOL vmlinux 0xbfabfe59 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xbfb66c7e tty_devnum +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfbf0440 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfcadd04 security_path_mknod +EXPORT_SYMBOL vmlinux 0xbfd64224 input_free_device +EXPORT_SYMBOL vmlinux 0xbfe46eb2 macio_enable_devres +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets +EXPORT_SYMBOL vmlinux 0xbffed708 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xc028e3bc dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xc02ae710 textsearch_prepare +EXPORT_SYMBOL vmlinux 0xc0321956 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xc032e0af skb_clone +EXPORT_SYMBOL vmlinux 0xc051411f ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc08cf26f filemap_map_pages +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0c5f9c5 blk_get_request +EXPORT_SYMBOL vmlinux 0xc0cee171 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xc0ddb4ab set_blocksize +EXPORT_SYMBOL vmlinux 0xc0efce3d kobject_get +EXPORT_SYMBOL vmlinux 0xc102a0fd inet6_add_offload +EXPORT_SYMBOL vmlinux 0xc115a71f blk_get_queue +EXPORT_SYMBOL vmlinux 0xc1186072 dev_notice +EXPORT_SYMBOL vmlinux 0xc1276840 dev_set_group +EXPORT_SYMBOL vmlinux 0xc13511d7 cpumask_next_and +EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc +EXPORT_SYMBOL vmlinux 0xc148a088 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc1698f80 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xc17a48f5 tcp_poll +EXPORT_SYMBOL vmlinux 0xc17bb589 bdi_register +EXPORT_SYMBOL vmlinux 0xc1a66ba3 pci_clear_master +EXPORT_SYMBOL vmlinux 0xc1c03e0c inetdev_by_index +EXPORT_SYMBOL vmlinux 0xc1cda2f0 kobject_put +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1db9bd2 pci_release_regions +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1fd42a2 giveup_vsx +EXPORT_SYMBOL vmlinux 0xc2056a59 rtnl_notify +EXPORT_SYMBOL vmlinux 0xc22450a8 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0xc23e6223 eth_header +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc27fb471 kobject_del +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2a89abe __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xc2af3120 nla_append +EXPORT_SYMBOL vmlinux 0xc2c72a77 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xc2cd24b5 ata_dev_printk +EXPORT_SYMBOL vmlinux 0xc2d63544 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xc2d68e75 sock_efree +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2fb9ee1 _lv1_shutdown_logical_partition +EXPORT_SYMBOL vmlinux 0xc2fffd93 alloc_pages_current +EXPORT_SYMBOL vmlinux 0xc310113e loop_register_transfer +EXPORT_SYMBOL vmlinux 0xc310839a prepare_creds +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc339fdd9 I_BDEV +EXPORT_SYMBOL vmlinux 0xc34099ee xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xc351914a d_path +EXPORT_SYMBOL vmlinux 0xc35cc479 agp_bridge +EXPORT_SYMBOL vmlinux 0xc39b7bb4 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xc3a63ed5 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xc3abbd3b init_net +EXPORT_SYMBOL vmlinux 0xc3b169d5 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xc3b19e9b make_kgid +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3c95409 tcf_register_action +EXPORT_SYMBOL vmlinux 0xc3d0a9e5 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xc3e0d7e1 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xc4141c74 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xc41f1696 _lv1_configure_virtual_uart_irq +EXPORT_SYMBOL vmlinux 0xc43055fb thaw_super +EXPORT_SYMBOL vmlinux 0xc44cc0cc devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xc4567440 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc460d3c5 inet_bind +EXPORT_SYMBOL vmlinux 0xc467a4c8 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xc47057ee insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xc470a837 led_update_brightness +EXPORT_SYMBOL vmlinux 0xc4730a3a block_write_full_page +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4a68371 inet_put_port +EXPORT_SYMBOL vmlinux 0xc4ac6856 cdev_init +EXPORT_SYMBOL vmlinux 0xc4adfa56 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xc4d7033f of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xc5089620 _lv1_stop_ppe_periodic_tracer +EXPORT_SYMBOL vmlinux 0xc50aa76c kfree_put_link +EXPORT_SYMBOL vmlinux 0xc519bee4 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0xc5217387 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xc5382998 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xc543f151 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0xc544da01 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc55616f2 vio_disable_interrupts +EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set +EXPORT_SYMBOL vmlinux 0xc580189d tcp_init_sock +EXPORT_SYMBOL vmlinux 0xc581ff69 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5b2305e mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xc5d57402 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xc5d7e8e8 km_query +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5ed9511 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc60f3a20 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63c0c93 generic_permission +EXPORT_SYMBOL vmlinux 0xc6552e8d invalidate_partition +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 0xc685fad8 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xc6ab0383 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d0ef5d nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0xc6eaa57b inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xc70385e2 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7465320 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xc752ae77 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7825f19 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7898275 flex_array_shrink +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7b23834 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xc7bd2272 __break_lease +EXPORT_SYMBOL vmlinux 0xc7dc02c7 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xc7dcd5e3 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xc7df75ee ip_defrag +EXPORT_SYMBOL vmlinux 0xc7f39b15 irq_stat +EXPORT_SYMBOL vmlinux 0xc818a5fe generic_show_options +EXPORT_SYMBOL vmlinux 0xc824f1fe blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xc845846d nvm_get_blk +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84a75ac generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xc850c5b9 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each +EXPORT_SYMBOL vmlinux 0xc85f5cbc __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xc8647a70 bd_set_size +EXPORT_SYMBOL vmlinux 0xc86657fc jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xc86f7f65 unregister_netdev +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8744171 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xc8784489 dm_get_device +EXPORT_SYMBOL vmlinux 0xc88278f0 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xc88b091c jbd2_journal_forget +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 0xc8bb915f ps2_command +EXPORT_SYMBOL vmlinux 0xc8c946d5 make_bad_inode +EXPORT_SYMBOL vmlinux 0xc8d16e7f ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xc8d3a7fa stop_tty +EXPORT_SYMBOL vmlinux 0xc8d501ab dev_deactivate +EXPORT_SYMBOL vmlinux 0xc8e31d75 _lv1_configure_irq_state_bitmap +EXPORT_SYMBOL vmlinux 0xc902dce0 param_ops_short +EXPORT_SYMBOL vmlinux 0xc909abac inet_getname +EXPORT_SYMBOL vmlinux 0xc90cead1 from_kuid +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc91fc758 km_policy_expired +EXPORT_SYMBOL vmlinux 0xc93573bf kfree_skb_list +EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xc94dbac6 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xc95a815c vme_master_mmap +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9695a52 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xc9696052 blk_start_queue +EXPORT_SYMBOL vmlinux 0xc96a8983 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc9829a40 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xc9909a23 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xc996dba9 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a343d5 md_integrity_register +EXPORT_SYMBOL vmlinux 0xc9ac50c5 iterate_dir +EXPORT_SYMBOL vmlinux 0xc9e53df4 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xc9e6488f inet_addr_type +EXPORT_SYMBOL vmlinux 0xc9fc598d pasemi_read_dma_reg +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca13ed36 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xca1d9289 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xca2836b8 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get +EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state +EXPORT_SYMBOL vmlinux 0xca439b00 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xca4ea3ce sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xca4f3b1d d_walk +EXPORT_SYMBOL vmlinux 0xca5cd807 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca5fe399 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xca7ffea7 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xca81dc4e srp_start_tl_fail_timers +EXPORT_SYMBOL vmlinux 0xca825895 pmu_suspend +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca8d92f3 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaabf3f9 pasemi_write_iob_reg +EXPORT_SYMBOL vmlinux 0xcab36130 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcacf4808 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xcad49f18 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf6e0d9 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb38d3f2 blk_queue_split +EXPORT_SYMBOL vmlinux 0xcb4587ac jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xcb5b5541 vm_mmap +EXPORT_SYMBOL vmlinux 0xcb6cbd46 empty_aops +EXPORT_SYMBOL vmlinux 0xcb8318d6 vfs_symlink +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcb9d0316 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0xcbad56ae inode_init_always +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 0xcbcb1a04 default_llseek +EXPORT_SYMBOL vmlinux 0xcbd75911 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xcbd91f9e pci_domain_nr +EXPORT_SYMBOL vmlinux 0xcbe8b038 _lv1_configure_execution_time_variable +EXPORT_SYMBOL vmlinux 0xcc0c2bf2 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc45a3cf generic_setxattr +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5ba851 mmc_get_card +EXPORT_SYMBOL vmlinux 0xcc5f8ecf ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xcc6520d6 kfree_skb +EXPORT_SYMBOL vmlinux 0xcc6d0d2e mb_cache_shrink +EXPORT_SYMBOL vmlinux 0xcc89c246 pasemi_dma_alloc_chan +EXPORT_SYMBOL vmlinux 0xcc8e12ec sock_recvmsg +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccca5cf9 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xccd42535 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xccf535df bio_add_page +EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xcd076a81 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xcd15af78 dma_async_device_unregister +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 0xcd64ef6e kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xcd769f62 _lv1_gpu_device_map +EXPORT_SYMBOL vmlinux 0xcd79686f submit_bh +EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcd951f47 md_check_recovery +EXPORT_SYMBOL vmlinux 0xcda932e3 bdi_register_dev +EXPORT_SYMBOL vmlinux 0xcdbad175 ps3_dma_region_create +EXPORT_SYMBOL vmlinux 0xcdc2b93d abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdd47ca1 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xcde40eef deactivate_super +EXPORT_SYMBOL vmlinux 0xce0e2d66 nla_put_nohdr +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 0xce6c7eab get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xce6ed521 of_get_address +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xce83f3f4 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xce9f3231 __dst_free +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xced777cb proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xceebb078 tcp_prequeue +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcefdeecf tso_start +EXPORT_SYMBOL vmlinux 0xcefe2bd1 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xcf340cc3 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xcf35d66d uart_register_driver +EXPORT_SYMBOL vmlinux 0xcf377a5a __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xcf47aee0 fd_install +EXPORT_SYMBOL vmlinux 0xcf596609 mmc_erase +EXPORT_SYMBOL vmlinux 0xcf6a736d nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xcf820e21 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xcf8cc135 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xcf8cc5bc proc_set_user +EXPORT_SYMBOL vmlinux 0xcfa98b18 neigh_for_each +EXPORT_SYMBOL vmlinux 0xcfb7d5a0 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xd015f1d8 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xd0160383 generic_listxattr +EXPORT_SYMBOL vmlinux 0xd0280588 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xd043f96a add_disk +EXPORT_SYMBOL vmlinux 0xd05931ec _lv1_set_lpm_counter_control +EXPORT_SYMBOL vmlinux 0xd05d6f5b pcie_get_mps +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd07f4e2c inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a6e8b3 ata_port_printk +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0d02c90 complete_request_key +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0f7a7b7 bdi_set_max_ratio +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 0xd14330c0 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xd14a1077 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1a763dd mac_find_mode +EXPORT_SYMBOL vmlinux 0xd1bd4e7a skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xd1bf1c0b mntget +EXPORT_SYMBOL vmlinux 0xd1c1a005 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xd1d29570 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1d9204e netif_skb_features +EXPORT_SYMBOL vmlinux 0xd1d96022 __inet_hash +EXPORT_SYMBOL vmlinux 0xd1e51b01 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xd1fe8ebb _lv1_get_spe_interrupt_status +EXPORT_SYMBOL vmlinux 0xd20888ec set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xd20a4c80 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0xd212dca6 mutex_unlock +EXPORT_SYMBOL vmlinux 0xd228e323 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xd22c9420 d_obtain_root +EXPORT_SYMBOL vmlinux 0xd23f091c alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xd248ba5a ihold +EXPORT_SYMBOL vmlinux 0xd251d370 uart_get_baud_rate +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 0xd2ad7019 qdisc_list_add +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2b6a6dc dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0xd2c2e75b textsearch_unregister +EXPORT_SYMBOL vmlinux 0xd2c519c9 tcp_make_synack +EXPORT_SYMBOL vmlinux 0xd2d24f50 mmc_release_host +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e4d4c1 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xd2e6e481 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xd2ec6a50 bitmap_unplug +EXPORT_SYMBOL vmlinux 0xd2eda3b3 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xd2edb64f __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xd2ef2638 smu_cmdbuf_abs +EXPORT_SYMBOL vmlinux 0xd2efc074 ibmebus_register_driver +EXPORT_SYMBOL vmlinux 0xd300c6b5 register_gifconf +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd35f998c __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xd3619857 input_get_keycode +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd3820147 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xd3959bb1 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xd3ab83ca vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xd3b9e4a8 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c3788f request_key +EXPORT_SYMBOL vmlinux 0xd3cfccad pci_request_regions +EXPORT_SYMBOL vmlinux 0xd3ea5de7 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xd409383c pmu_request +EXPORT_SYMBOL vmlinux 0xd42eea7e lro_receive_skb +EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm +EXPORT_SYMBOL vmlinux 0xd45bdc0f proc_mkdir +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd4804b80 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd4abf890 key_invalidate +EXPORT_SYMBOL vmlinux 0xd4baa345 nf_log_trace +EXPORT_SYMBOL vmlinux 0xd4d7fab6 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xd4def5c4 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xd4e78778 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0xd4e969b5 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xd5039ae5 vfs_fsync +EXPORT_SYMBOL vmlinux 0xd52c3b0b scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xd53d9625 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd57d9a9d jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xd5855bbb param_set_uint +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd59b8735 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xd59cf93d udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xd5ab0a14 module_refcount +EXPORT_SYMBOL vmlinux 0xd5ccb147 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0xd5dd8eff sock_no_mmap +EXPORT_SYMBOL vmlinux 0xd5e170e9 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xd5e1d719 _lv1_set_ppe_periodic_tracer_frequency +EXPORT_SYMBOL vmlinux 0xd5e4bc23 unregister_key_type +EXPORT_SYMBOL vmlinux 0xd5f07ed3 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xd600ec18 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xd60d2c21 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xd610b4ec tcp_parse_options +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd65a6dfd i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xd6694834 vme_slave_request +EXPORT_SYMBOL vmlinux 0xd66c2394 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xd6884558 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd6912cfb xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xd69c00a5 block_write_begin +EXPORT_SYMBOL vmlinux 0xd6a2e8be tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xd6b5ca60 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0xd6b8ce27 rwsem_wake +EXPORT_SYMBOL vmlinux 0xd6ccb40e unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0xd6e946d5 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xd6edf811 _lv1_release_memory +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 +EXPORT_SYMBOL vmlinux 0xd71bea6e blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xd72e1cfc _lv1_set_lpm_spr_trigger +EXPORT_SYMBOL vmlinux 0xd746949a phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot +EXPORT_SYMBOL vmlinux 0xd77d53dd pipe_unlock +EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 +EXPORT_SYMBOL vmlinux 0xd78bde36 xattr_full_name +EXPORT_SYMBOL vmlinux 0xd7ba49ec inode_add_bytes +EXPORT_SYMBOL vmlinux 0xd7d44c35 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0xd7e49783 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7fa9ac4 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xd82b5c21 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xd83ef606 nd_device_register +EXPORT_SYMBOL vmlinux 0xd867d71a scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xd87988d4 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xd890673a agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8d0d423 genlmsg_put +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e3b638 mapping_tagged +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd9239b14 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xd9257cf8 nvm_put_blk +EXPORT_SYMBOL vmlinux 0xd9368f38 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xd973ba23 dev_load +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd992718d dev_mc_flush +EXPORT_SYMBOL vmlinux 0xd9a058a6 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xd9ab99a7 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9c9f13b pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xd9cb423b generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xd9d4d09d _lv1_release_io_segment +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9ed905d scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xd9f8b52a tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xda0f5234 rtas_offline_cpus_mask +EXPORT_SYMBOL vmlinux 0xda3493fa __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xda3c45bb redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda42658e __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xda474a07 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xda4e5b58 cap_mmap_file +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 0xdaa1ddbe pneigh_lookup +EXPORT_SYMBOL vmlinux 0xdaa23cbe netdev_printk +EXPORT_SYMBOL vmlinux 0xdaa52390 __sock_create +EXPORT_SYMBOL vmlinux 0xdaaa6c78 ps2_init +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 0xdae422f0 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find +EXPORT_SYMBOL vmlinux 0xdb2697cb d_delete +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb488810 keyring_search +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6cfece d_invalidate +EXPORT_SYMBOL vmlinux 0xdb7428b5 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb92faf9 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xdb974ed0 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xdbafd1f3 pci_disable_device +EXPORT_SYMBOL vmlinux 0xdbafee0c max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xdbdad6ed netdev_lower_get_next +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 0xdc2da22e inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc602c99 bmap +EXPORT_SYMBOL vmlinux 0xdc6fb418 bioset_create +EXPORT_SYMBOL vmlinux 0xdc7b1c99 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0xdc86be18 __inode_permission +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdca0ddde xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xdca399ae generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcc4e8f6 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xdccac172 __brelse +EXPORT_SYMBOL vmlinux 0xdcce3db6 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xdcd23172 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xdcee6ab7 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xdcefb9a5 pmu_resume +EXPORT_SYMBOL vmlinux 0xdd338113 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xdd3b96ae napi_disable +EXPORT_SYMBOL vmlinux 0xdd3cce04 ibmebus_bus_type +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd85df22 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer +EXPORT_SYMBOL vmlinux 0xdd955144 __debugger +EXPORT_SYMBOL vmlinux 0xdd996d91 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xdd9c2807 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xddc21b13 block_commit_write +EXPORT_SYMBOL vmlinux 0xde038cbb jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xde0c97c9 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xde129703 seq_vprintf +EXPORT_SYMBOL vmlinux 0xde2e2d64 phy_print_status +EXPORT_SYMBOL vmlinux 0xde32a670 key_unlink +EXPORT_SYMBOL vmlinux 0xde361385 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xde3624ef simple_setattr +EXPORT_SYMBOL vmlinux 0xde3bc2ff kernel_connect +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde65613a uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xde753673 cad_pid +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 0xdecd2f25 tty_write_room +EXPORT_SYMBOL vmlinux 0xded416ff kill_block_super +EXPORT_SYMBOL vmlinux 0xdedd1431 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf34977e param_ops_bint +EXPORT_SYMBOL vmlinux 0xdf44bf4a path_noexec +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 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfbb2d9b inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xdfc1a690 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xdfd4131b agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0xdfe2781a fb_class +EXPORT_SYMBOL vmlinux 0xdfe581b7 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xdfe86bb2 neigh_xmit +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe02aa63a unregister_quota_format +EXPORT_SYMBOL vmlinux 0xe032127c iterate_fd +EXPORT_SYMBOL vmlinux 0xe03c3820 register_qdisc +EXPORT_SYMBOL vmlinux 0xe03e2e03 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xe03ffa58 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xe043830f put_io_context +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe0536d9c pnv_pci_get_gpu_dev +EXPORT_SYMBOL vmlinux 0xe056c485 pci_iomap +EXPORT_SYMBOL vmlinux 0xe05ed441 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe07229eb dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe0792e4a dm_io +EXPORT_SYMBOL vmlinux 0xe082630d make_kuid +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe0972ce4 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0xe09893b3 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b7bc66 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xe0bfa0e1 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xe0c1ca9a sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xe0c25856 scsi_unregister +EXPORT_SYMBOL vmlinux 0xe0d34717 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xe0d5d119 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xe0dfe882 security_path_symlink +EXPORT_SYMBOL vmlinux 0xe1126ead blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe12f5382 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xe130d62c skb_push +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13947b7 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xe13d2e40 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xe157a8a0 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xe16150e7 netdev_err +EXPORT_SYMBOL vmlinux 0xe16d3332 serio_bus +EXPORT_SYMBOL vmlinux 0xe172e76e zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xe1738ae4 simple_release_fs +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe17750b1 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xe197824f inet_shutdown +EXPORT_SYMBOL vmlinux 0xe1ae3a90 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xe1b29d97 ata_link_printk +EXPORT_SYMBOL vmlinux 0xe1b9d431 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xe1bd21cd pcim_enable_device +EXPORT_SYMBOL vmlinux 0xe1ed9ea0 bdput +EXPORT_SYMBOL vmlinux 0xe1f1a7b1 make_kprojid +EXPORT_SYMBOL vmlinux 0xe1f65351 proto_unregister +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe20a4e8e mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xe20c63e7 _lv1_unmap_device_mmio_region +EXPORT_SYMBOL vmlinux 0xe2151e4c of_get_property +EXPORT_SYMBOL vmlinux 0xe220ceb8 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe242c2ad pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xe24b1bab ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xe24b8c6c ab3100_event_register +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe24dba79 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xe2697310 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xe278873f pci_pme_capable +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2a41b40 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xe2a5c786 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xe2a97abe fb_show_logo +EXPORT_SYMBOL vmlinux 0xe2aa0076 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xe2be604e _dev_info +EXPORT_SYMBOL vmlinux 0xe2cd08d4 d_splice_alias +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2f27681 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe3034689 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xe303570c netif_carrier_off +EXPORT_SYMBOL vmlinux 0xe3097d12 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe32392dc __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xe3431ca0 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xe3962d18 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xe39987cd call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xe3a26792 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3c66125 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xe3d426e1 __put_cred +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3f52da2 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xe3ff28ff i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xe40016b4 set_page_dirty +EXPORT_SYMBOL vmlinux 0xe41fcb8a pci_bus_get +EXPORT_SYMBOL vmlinux 0xe4272318 agp_enable +EXPORT_SYMBOL vmlinux 0xe429600c pci_iomap_range +EXPORT_SYMBOL vmlinux 0xe42b07cd md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xe43c81eb register_netdevice +EXPORT_SYMBOL vmlinux 0xe44a804a jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xe455ac4b mntput +EXPORT_SYMBOL vmlinux 0xe46170b0 seq_pad +EXPORT_SYMBOL vmlinux 0xe465a7e1 get_cached_acl +EXPORT_SYMBOL vmlinux 0xe4747c86 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe484e385 sg_miter_start +EXPORT_SYMBOL vmlinux 0xe4ae6571 devm_memunmap +EXPORT_SYMBOL vmlinux 0xe4c97565 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xe4ca2b1a sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xe4d17867 blk_requeue_request +EXPORT_SYMBOL vmlinux 0xe4daca90 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4f233d6 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xe4f692aa inode_set_bytes +EXPORT_SYMBOL vmlinux 0xe4fa3e23 __init_rwsem +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe50c8f47 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xe510e5ed swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xe521af6f vfs_iter_read +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe53e8d5f tty_port_close +EXPORT_SYMBOL vmlinux 0xe544c20f dev_printk_emit +EXPORT_SYMBOL vmlinux 0xe544e9c3 eth_header_cache +EXPORT_SYMBOL vmlinux 0xe5626bf2 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe57cc6f3 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe587e1c5 single_release +EXPORT_SYMBOL vmlinux 0xe5a3b056 __blk_end_request +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5cfed88 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xe5d33aca blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe60988ac _lv1_query_logical_partition_address_region_info +EXPORT_SYMBOL vmlinux 0xe62c8c45 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xe63448a6 register_shrinker +EXPORT_SYMBOL vmlinux 0xe64aad10 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe65f9ff2 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xe6821a88 get_disk +EXPORT_SYMBOL vmlinux 0xe6874805 blk_register_region +EXPORT_SYMBOL vmlinux 0xe68d7814 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6bb1f90 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xe6e71409 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0xe6ec142b copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe6fd76a5 dma_common_mmap +EXPORT_SYMBOL vmlinux 0xe70105e3 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xe70b4672 macio_unregister_driver +EXPORT_SYMBOL vmlinux 0xe74aa406 _lv1_set_dabr +EXPORT_SYMBOL vmlinux 0xe74ba8d3 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe751127c param_set_copystring +EXPORT_SYMBOL vmlinux 0xe753ca5e rtnl_unicast +EXPORT_SYMBOL vmlinux 0xe761c143 macio_release_resource +EXPORT_SYMBOL vmlinux 0xe77947b7 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xe77ce737 dev_change_carrier +EXPORT_SYMBOL vmlinux 0xe791af8a tcp_release_cb +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7c52b0d i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xe7cd303b dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xe7cd99b7 smu_queue_simple +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7ea9bbd seq_open +EXPORT_SYMBOL vmlinux 0xe7f1da9a tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xe7f6f1c2 param_get_long +EXPORT_SYMBOL vmlinux 0xe8029fe3 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xe8149aef xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe82c7a45 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe84bc338 __module_get +EXPORT_SYMBOL vmlinux 0xe857c28c netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xe858c82c free_page_put_link +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b96f2c genl_notify +EXPORT_SYMBOL vmlinux 0xe8bbd334 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c438f3 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xe8d2bcbc dma_direct_ops +EXPORT_SYMBOL vmlinux 0xe8e50441 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe8fbc6a8 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xe9056868 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xe90e2a1d xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xe90ee127 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next +EXPORT_SYMBOL vmlinux 0xe94cc61b fput +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe96b862c netif_device_attach +EXPORT_SYMBOL vmlinux 0xe97072ee flush_icache_user_range +EXPORT_SYMBOL vmlinux 0xe971bf59 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xe9721bbc write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xe99070b5 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xe99081c8 netdev_info +EXPORT_SYMBOL vmlinux 0xe99b10bf shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xe9a52a26 mount_bdev +EXPORT_SYMBOL vmlinux 0xe9bd370b tcp_sendpage +EXPORT_SYMBOL vmlinux 0xe9e55a4d input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea09b9c5 dev_addr_add +EXPORT_SYMBOL vmlinux 0xea0ab089 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xea231d93 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xea2a6169 inode_init_owner +EXPORT_SYMBOL vmlinux 0xea320164 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xea3b58dc swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xea3ed78e vm_map_ram +EXPORT_SYMBOL vmlinux 0xea658e08 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea8027d4 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xea927c74 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xeaa723ad xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0xeabc0aca dcb_getapp +EXPORT_SYMBOL vmlinux 0xeadf6a06 dm_register_target +EXPORT_SYMBOL vmlinux 0xeae53e26 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xeaf8c86f fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xeaf999f6 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xeb3530f9 down_write +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb55dcef iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count +EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present +EXPORT_SYMBOL vmlinux 0xeba39d73 user_revoke +EXPORT_SYMBOL vmlinux 0xebbd622b dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xebcab3a6 ppc_pci_io +EXPORT_SYMBOL vmlinux 0xebe9a19a blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xebf0a3b3 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xec0e14a7 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xec126f53 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0xec26190f cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xec30765a _lv1_allocate_io_segment +EXPORT_SYMBOL vmlinux 0xec465caf ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xec55dd26 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xec5a9b85 follow_down +EXPORT_SYMBOL vmlinux 0xec5cbad9 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xec7661eb iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xec7ae563 put_cmsg +EXPORT_SYMBOL vmlinux 0xec7afbed kdb_current_task +EXPORT_SYMBOL vmlinux 0xec7bfc9b sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xec7c565d nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xec7e5494 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xeca7bdfc vfs_create +EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xecbfe88c ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xece06c35 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xed2ff1b1 nobh_writepage +EXPORT_SYMBOL vmlinux 0xed3ad807 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0xed433f56 blkdev_fsync +EXPORT_SYMBOL vmlinux 0xed462d11 netdev_crit +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed5bd417 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xed652427 _lv1_set_interrupt_mask +EXPORT_SYMBOL vmlinux 0xed7b0145 netdev_update_features +EXPORT_SYMBOL vmlinux 0xed8ad907 clear_wb_congested +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedb44ac9 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xedb64540 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbdde80 install_exec_creds +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table +EXPORT_SYMBOL vmlinux 0xedd155b6 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xede39488 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xedf0b48c _lv1_storage_get_async_status +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee033555 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xee09c748 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xee2206de of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xee25ef69 passthru_features_check +EXPORT_SYMBOL vmlinux 0xee2abc8a sync_inode +EXPORT_SYMBOL vmlinux 0xee2c5902 loop_backing_file +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3e5e4e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xee513aa4 vme_irq_request +EXPORT_SYMBOL vmlinux 0xee546c71 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xee59ada1 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xee5bb20b _lv1_panic +EXPORT_SYMBOL vmlinux 0xee5befd5 max8925_reg_read +EXPORT_SYMBOL vmlinux 0xee6c8072 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xee86ea9b input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xee9174c5 _lv1_storage_read +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee93656a input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xeea3cd7a nla_reserve +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeed6182b __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xeee50bd1 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xeee891cd genphy_suspend +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef28ac9 blk_recount_segments +EXPORT_SYMBOL vmlinux 0xef25e76b i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xef3b9b93 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xef61c515 vfs_getattr +EXPORT_SYMBOL vmlinux 0xef66f13d netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xef843fe4 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xefa24c96 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0xefa75988 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xefa8fec0 tty_unlock +EXPORT_SYMBOL vmlinux 0xefb7ee23 dev_crit +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 0xefed95d2 agp_backend_release +EXPORT_SYMBOL vmlinux 0xeff256f4 mach_powernv +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0060d5f proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf063a1ca get_cached_acl_rcu +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 0xf084d5f7 get_empty_filp +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0a02ada of_find_node_by_name +EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf0c7531a input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xf0ceb641 block_write_end +EXPORT_SYMBOL vmlinux 0xf0d2f84a _lv1_gpu_context_free +EXPORT_SYMBOL vmlinux 0xf0da66eb led_set_brightness +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11ae9cf vfs_mkdir +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf13cda2c generic_writepages +EXPORT_SYMBOL vmlinux 0xf140014d from_kgid_munged +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf1503373 clear_inode +EXPORT_SYMBOL vmlinux 0xf15c124c bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xf15d5efe tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xf183189b __ioremap_at +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1ab4cb2 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xf1b94698 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xf1c633bd nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e3002a __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf20ecc59 devm_memremap +EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock +EXPORT_SYMBOL vmlinux 0xf23f8194 read_cache_pages +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf241cc11 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xf2493dd4 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xf24dcaa8 _lv1_net_stop_rx_dma +EXPORT_SYMBOL vmlinux 0xf26b1f74 ps2_drain +EXPORT_SYMBOL vmlinux 0xf283983e module_layout +EXPORT_SYMBOL vmlinux 0xf28fa50f skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xf29572c6 del_gendisk +EXPORT_SYMBOL vmlinux 0xf297b835 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xf2b55aca sock_no_accept +EXPORT_SYMBOL vmlinux 0xf2befb4a tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xf2bf7c9b current_fs_time +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2da68de flush_old_exec +EXPORT_SYMBOL vmlinux 0xf2db3aa6 vlan_vid_del +EXPORT_SYMBOL vmlinux 0xf2df8415 sock_setsockopt +EXPORT_SYMBOL vmlinux 0xf2ec4a12 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xf2fd157d pcim_pin_device +EXPORT_SYMBOL vmlinux 0xf2fd86db devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xf3036b79 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xf30d1036 _lv1_start_ppe_periodic_tracer +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31ea29c fb_pan_display +EXPORT_SYMBOL vmlinux 0xf3204455 of_device_alloc +EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf3360ff3 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34773c3 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf357db8d pasemi_dma_set_flag +EXPORT_SYMBOL vmlinux 0xf36d38c8 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf39740b2 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xf39f2ad2 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3e8f01d reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0xf41da1a9 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xf41e1856 generic_perform_write +EXPORT_SYMBOL vmlinux 0xf427673b __ip_dev_find +EXPORT_SYMBOL vmlinux 0xf435169f devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf44cfd5e __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xf46dff4b pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4884b03 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xf49763e6 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xf49bd0a3 input_grab_device +EXPORT_SYMBOL vmlinux 0xf4a1625f dev_warn +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4d4339f arp_create +EXPORT_SYMBOL vmlinux 0xf4efcb7e scsi_remove_host +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf50c938d lwtunnel_output +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf51afdc0 path_is_under +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 0xf535cbc4 generic_make_request +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf551ee03 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xf559e298 param_set_long +EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 +EXPORT_SYMBOL vmlinux 0xf5735295 tcp_prot +EXPORT_SYMBOL vmlinux 0xf58b3839 nf_register_hook +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5f41cbd cdrom_release +EXPORT_SYMBOL vmlinux 0xf6213e12 pasemi_dma_clear_flag +EXPORT_SYMBOL vmlinux 0xf62de9a9 machine_id +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf64b9e5d dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xf65aa822 tcf_em_register +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf6780ca4 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xf6810fd3 bioset_free +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf68fb76d inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xf6b75d35 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6c5bebe lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0xf6cf3060 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6ecb763 _lv1_send_event_locally +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70d908a netdev_state_change +EXPORT_SYMBOL vmlinux 0xf73189e5 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xf74dcc79 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xf74dedda bio_endio +EXPORT_SYMBOL vmlinux 0xf752895a irq_set_chip +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf7593b67 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xf78fa833 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xf799f0fe of_phy_attach +EXPORT_SYMBOL vmlinux 0xf79a541e down_write_trylock +EXPORT_SYMBOL vmlinux 0xf7a83ca9 vio_find_node +EXPORT_SYMBOL vmlinux 0xf7b40c4f vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xf7ba91d8 cdev_del +EXPORT_SYMBOL vmlinux 0xf7bac0ec _lv1_set_lpm_counter +EXPORT_SYMBOL vmlinux 0xf7f6894b file_remove_privs +EXPORT_SYMBOL vmlinux 0xf8004bfd _lv1_disconnect_interrupt_event_receive_port +EXPORT_SYMBOL vmlinux 0xf80ae828 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xf80b9866 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xf80dc27e pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xf80f689b end_page_writeback +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 0xf858ec72 km_policy_notify +EXPORT_SYMBOL vmlinux 0xf85ecf0e ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xf86571f7 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xf886be24 agp_put_bridge +EXPORT_SYMBOL vmlinux 0xf892bd17 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xf89d4195 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xf8b3319e of_parse_phandle +EXPORT_SYMBOL vmlinux 0xf8c55b27 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8fbef5e blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xf9452529 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xf96d4b5d pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xf9701c37 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xf975cd3f qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xf993cd09 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xf999ccfe dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xf99a22c3 input_allocate_device +EXPORT_SYMBOL vmlinux 0xf99d4e9c blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9d005d8 vfs_whiteout +EXPORT_SYMBOL vmlinux 0xf9e04b91 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xf9f35c5e dma_async_device_register +EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xf9fb300d sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xfa0278c7 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xfa0b1a94 udp_poll +EXPORT_SYMBOL vmlinux 0xfa294084 vme_master_request +EXPORT_SYMBOL vmlinux 0xfa2ad665 seq_release_private +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa5993b6 wireless_send_event +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5cb649 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xfa5ec526 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xfa5ed19f dentry_unhash +EXPORT_SYMBOL vmlinux 0xfa8d64d4 kernel_sendmsg +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 0xfafaa1a3 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xfb0cecfd vm_event_states +EXPORT_SYMBOL vmlinux 0xfb1c9eaa ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xfb3ac572 nobh_write_end +EXPORT_SYMBOL vmlinux 0xfb3ee37c dump_page +EXPORT_SYMBOL vmlinux 0xfb4664be truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xfb4f8a0c i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xfb592a1f pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb775c88 should_remove_suid +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfba07d98 tty_hangup +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbc759ba swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xfbd3d9e7 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xfbd65a99 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xfbf39a9d locks_free_lock +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc1698a0 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xfc17003e pci_iounmap +EXPORT_SYMBOL vmlinux 0xfc231da0 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node +EXPORT_SYMBOL vmlinux 0xfc42d8cf netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xfc489000 dm_put_device +EXPORT_SYMBOL vmlinux 0xfc7e3bc3 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xfc96f90a twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xfcaa5567 get_task_exe_file +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcd8fd7a flush_dcache_page +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcdfa9d1 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf9ae07 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xfcf9d9f6 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfcfda4cc vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xfd0fbdb0 macio_request_resource +EXPORT_SYMBOL vmlinux 0xfd359bd4 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0xfd43023e kernel_write +EXPORT_SYMBOL vmlinux 0xfd4c1f17 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xfd52e5e4 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xfd78cef2 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xfd8bce34 of_find_property +EXPORT_SYMBOL vmlinux 0xfd90f5a2 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd9ccccc dev_uc_init +EXPORT_SYMBOL vmlinux 0xfdabb085 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdb9fa70 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdf4f84c blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xfdfa5261 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfecf1a pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xfe1ba97b elevator_change +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe4cb4b5 _lv1_storage_write +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6cd7b7 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9330bd d_drop +EXPORT_SYMBOL vmlinux 0xfe96c5df bio_split +EXPORT_SYMBOL vmlinux 0xfe9e59f2 netif_device_detach +EXPORT_SYMBOL vmlinux 0xfea141ec rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xfec6f847 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xfece4531 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xfed20658 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xfed221d9 pasemi_dma_alloc_ring +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee02c3a max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff29b545 seq_printf +EXPORT_SYMBOL vmlinux 0xff51ea90 dm_put_table_device +EXPORT_SYMBOL vmlinux 0xff547fb3 agp_copy_info +EXPORT_SYMBOL vmlinux 0xff59343e generic_removexattr +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff7c53a8 secpath_dup +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffa96f66 netif_napi_add +EXPORT_SYMBOL vmlinux 0xffbe04ff open_exec +EXPORT_SYMBOL vmlinux 0xffc4c9cf cdrom_open +EXPORT_SYMBOL vmlinux 0xffcff9f8 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xffd1caa9 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x040c4b83 kvm_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0430b171 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x09aabea5 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0cf72a13 kvmppc_core_pending_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0fad6b94 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x12ab2fd7 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x20de5193 kvm_disable_largepages +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 0x2c21ba09 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2f0435dd kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2fc6374f kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x34150888 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3d902cb2 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3fcd337d kvm_put_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x41d37362 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x44339a07 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x443b0c4b kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x46f0c67b gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4b1ac9a4 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4c84ecf5 gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4def126f kvmppc_core_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4f653d40 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5794390c kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x59bfdf42 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5a0955e2 kvmppc_book3s_queue_irqprio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5c430167 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5efda540 kvmppc_hv_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x624e3f9d kvmppc_core_dequeue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x63d3887b kvmppc_gpa_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x65d0ebcf vcpu_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6dc74dce kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7325ff05 kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x75d69878 kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7838b3f3 kvmppc_core_queue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x80ec4ba5 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x839fa343 kvmppc_ld +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x85a5a4b2 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x87fbfc7c kvmppc_h_logical_ci_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8bc35694 kvmppc_handle_load +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 0x915d35ff kvmppc_pr_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x92e5957a kvm_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x944dbe75 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x94af83bb kvm_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x98882c11 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9934df2e kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9a1335ab kvmppc_set_msr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9e4b6326 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9f746f0e kvmppc_kvm_pv +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9ffb7aee mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa26afebd kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa4722727 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa52aa3e0 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa5306248 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa7c58525 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa7eb177a kvm_gfn_to_hva_cache_init +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 0xab703555 kvmppc_st +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xacf1bac9 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xaf085e58 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb6470f21 kvmppc_rtas_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbc444b9c kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbed75123 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc140e533 kvmppc_load_last_inst +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc70e4b59 kvmppc_claim_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc8ae092b kvmppc_sanity_check +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcba7d412 vcpu_put +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc44961f kvmppc_alloc_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd24eb007 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd2f536d3 kvmppc_handle_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd5029bcd kvmppc_core_queue_program +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd8e53976 kvm_unmap_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xde31f0e2 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdfa83328 kvmppc_unfixup_split_real +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe0b74bde kvmppc_xics_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe5f4802d kvmppc_h_logical_ci_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe6acc641 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xef11cb35 __tracepoint_kvm_ppc_instr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf0eda5b8 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf235b696 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf36484c2 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4da3546 kvmppc_init_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfb61471f kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfbc4c067 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0x9a0b4268 kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0x136dd393 spu_restore +EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0x32976a8e spu_save +EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0x6d714d81 spufs_context_fops +EXPORT_SYMBOL_GPL crypto/af_alg 0x01ebc490 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x1c9c5c1a af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x26662210 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x3771a8d9 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x3b2e1b56 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x71936ef9 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x9a06a344 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xa284066f af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xd259bf38 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xf52e11e2 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xb97559f7 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x4c1de1f5 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x570a199e async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x541ccc69 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb8a613d3 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 0x2b6140d6 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xab9d9d00 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x0cd4cc53 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x2858fa8b cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x3612c699 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x7bc188e8 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x807bfc8b cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x96688369 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xa04dc54e cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xb801da24 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xcd8131d9 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xdfde2eda 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 0x5fce14c5 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x007f824b mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x15848115 shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x7077b8d7 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x70fc0cae mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x7187b919 shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8254bca1 shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x916de16b shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0xa31b735c mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x1696ffe4 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x553bd321 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x960d8353 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xed1cf13a crypto_poly1305_update +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 0x92c96408 xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x06979057 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x10bbf269 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1416fcec ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x161cc21b ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x210992b2 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2e175fae ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3bc1b0e5 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3ebfa380 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x472e3358 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4a485342 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4b2e0557 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x520a3d37 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x524407d6 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6268baf7 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6b74ed0f ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7858349c ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x928fa923 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xad8679f0 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaeb57829 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb16db088 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd674ff7f ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd84d757f ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf0f81d18 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x27ef29d4 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x35d56641 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x407b5e76 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x40a3163b ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6177d4b9 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8c827054 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8fb456a2 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9c8a199a ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa4311aa1 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa92a8eeb ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcd4030f6 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe7c848b4 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf1140423 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x08b24809 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x19c88db0 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 0x0575d513 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0f6b9d7b bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1a8979dc bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2af8dff3 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2c4f83cb bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2ecd49b7 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3104d478 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x384c9ba2 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x39612981 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4f5c5707 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x77851bff bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7ef2d450 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x825ee4c5 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x84ec3075 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x94224235 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x94ce123a bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9bcffd89 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa456c2a5 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbfa13de6 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc432b27b bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd631f166 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xda3ca9f5 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdc28a130 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf6c57f24 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x04fdd437 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x23338ae5 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x592eec27 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9c6d9dc8 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xebcf43f9 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xee5e9a4e btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x36fa637a btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x37bd019a btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5e626337 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6573f5ef btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6f60428b btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa95289c8 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbbf6c92d btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbec7185e btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc85c9d84 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf25636ab btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf27f5450 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf43e8e79 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0fb4c39f btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x27cd2ba0 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3a88289c btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4cfaff17 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x63274393 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x665abae4 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x66f95e8d btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8a9ff236 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc1865f8b btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcc4a8a1c btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe571b0d1 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb08af1dc qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb46c56b0 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x67b612d7 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x10a56388 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 0x09af1e3a edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x14c52749 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x20d2f76c edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x26d50dd1 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3978f0f3 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3a384f07 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4be1cfff edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x581adfd8 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x596a7c59 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7e9768e4 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x85cb1183 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8c498fb8 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x92c1ab13 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x93efb346 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa0796483 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xacfa1efa edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb4173218 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd3d85ae4 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe38205ac edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf52465ff find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf5f2bbd5 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf9b18059 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xff456eab edac_device_add_device +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 0x5adb8f31 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5fa0326c drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x62a9f30b drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x87efc5c7 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9251ea7c of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc8cec8f3 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x2d3d6374 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x36932aad ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x5602c9c4 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/hid/hid 0x007ccfb4 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0509e201 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x08bc960a hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x09ba794e hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0df1730f hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x18b73a01 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1ea29ba9 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x20921a6d hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x39d96acd __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c1339ce hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x415abba7 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x552a265d hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x58d2cb8b hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x63a30988 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x647cdb85 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7370b4a8 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7877ca5b hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7f936e5d hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x896e054d hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x91dbd1e8 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x91dd40ee hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x96faa876 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x998f6924 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa11c0c1d hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa5d0a249 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xafb647a3 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb58ac849 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbb05a800 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcb167fa4 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcdc16e00 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd0f897f6 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd7c01dd7 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd8b4d983 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe1dd6300 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4b53306 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xebfc40ef hidinput_count_leds +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 0xeccf64d8 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0a19eed9 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x48eb0a81 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x66ca966a roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc7b978fe roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd8fc53df roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xda24b28a roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1cb9221d sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4a3c9df8 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x636c0565 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x93520752 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x96788dc8 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa74f8737 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa989b40f sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb232b07a sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf15b0d44 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xc154bea3 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 0x1340de19 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1942f2c0 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2087dd1f pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x26aa16d4 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x34556ce1 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3d64fdd9 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x429364ca pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x63a76284 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x656060c2 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6691fca8 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbb2f66d0 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbde83b7c pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xee86d09d pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xef2fdf86 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfdc066e2 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x23e40331 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4eae34b3 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x548020cb intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x739bf2d9 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xaae3effc intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc60e8a3d intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe55aa302 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x22fd76f0 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x40637b13 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4efec78a stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd805a146 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfd08099d stm_unregister_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 0x212bb343 iio_enum_read +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 0x333382ed iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3c93e188 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4240bb42 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x45cfdbf5 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5af095d8 devm_iio_device_free +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 0x62a54c81 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x798dae7a devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x83406057 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8d16a1e0 iio_scan_mask_query +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 0xa3e075db iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa6dfa960 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaa356477 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xadade33f iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb68609a2 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc491b203 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcbdaedc7 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcbe914a7 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd415bd5 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd5811b6 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe527e371 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5db3d91 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/iio/industrialio 0xfe15f3ce iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x0500fbb2 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xcaa2851e 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 0xb218ab99 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x5aa57e37 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x622f5d7f cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xf4b48af4 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x0acf5004 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x13e99000 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x78d2289d cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xbe0b91d6 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xd0577550 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x31b7797f tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x3fc87c36 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7a23dd85 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x90e72d7e tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0ab80b8e wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x170616d4 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x22b395ee wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3dab258a wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4e1beaf2 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x75239adf wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x80ccdba8 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x85d34242 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb46207cb wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb7a7957e wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc1df7e4c wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdbac164a wm9713_codec +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 0x1df10a7a gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x274fb31a gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2d804543 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3a38ab23 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4c436c02 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x77837f85 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7af4ab42 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa4e28d73 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa897336b gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb76f182e gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcdea2ce2 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xce3cab19 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd16a2dec gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe6a1d18e gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf3a70451 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf6d00282 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xff6ab259 gigaset_if_receive +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 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1d800899 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x260e8236 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x28631cce dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5ed1b911 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x66b35696 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 0x72e51060 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +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 0xc2456146 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xce5b5d8f dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf2af32f1 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 0x3398c126 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 0x1856836d dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3882b841 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x39eeead6 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x51f799a9 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5b4732a6 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9ce8ab5e dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe6f178ad dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x773e7976 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xc81b2887 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 0x13f826b0 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x16a014ae dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x22a39295 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 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x79d1db75 dm_rh_inc_pending +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 0xdfe250e4 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xebc529bc 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 0x4c85a01a dm_block_manager_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 0x02301612 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0d3061d8 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x24db62ba saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x350856ed saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x57f682b1 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6b17f014 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x97695328 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbd26989f saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc3399e43 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xeff92a90 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x08d3447c saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x39ea04e5 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xaddcd2fc saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbfc293d2 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdc0e17a7 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xec10a672 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf512d03a saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x05520acf smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2434800a sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2f792e5d smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x40685c05 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x465dc841 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x46be9c8d smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x522417b3 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x617798fc 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 0x91157700 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 0x9f13ec52 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa889ce74 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa98bd25e sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc15fa994 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdc9f4a63 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdca1c362 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xef3fd878 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf71804f6 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x158c1562 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x45580966 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x060c4982 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x1010579e media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x166483b0 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x18094d02 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x1fd4db0c __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x3eb39b86 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x478d7238 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x520cf398 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x77e1d908 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xacb2583a media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xafdf2f99 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0xbb8ff9b4 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0xbce18039 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0xcb89c7ab media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xd3b1305e media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0xd49401b9 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0xdebd6650 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0xeddf33d7 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0xefa79202 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x6f2fc907 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x108db496 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x10aefdab mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x15458a93 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2b403a03 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x341548d9 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x48568ba7 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x572a05e5 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5b03eacf mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x622dca34 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x68c42154 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x77b8af16 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x809a2412 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8f183cb2 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbbaf6a04 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd6a65557 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd75326e2 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd7600cb4 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe94871e6 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfa84fdd7 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x011807d2 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0166b57d saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x154ddba4 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x16986ad3 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2f49a2ae saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x44a9b91d saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x46c20dba saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x55e2d923 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x62c533ee saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x66cf9588 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6f2c2398 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x75bd6e0e saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x83a9b37b saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9f7425ab saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb1f5193f saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc4d9f855 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xca06eba9 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdd6aacd5 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe02e2d1f saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x387c996b ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x668a05d8 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x76777a49 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 0xa0a538e6 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa94efa8d ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xcaae3db0 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdc3f3ae4 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x35b8064b 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 0x7ba2450a xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7e3d9729 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xdd6d0c01 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe85200a2 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xec3ffa8a xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf4fe7751 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x2cfdd57c 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 0x0183a4c8 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x53362b66 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x14c72e33 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x39f4ff90 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x418519ed rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4c5a2c4d rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x50cf743f ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x519ac582 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 0x6fed07e6 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x75d23236 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x76d0228c rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x89cef5f4 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8b30e61b ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8dc89dc0 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb252fdf7 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc4078733 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd4b7bdca rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeb9fcd86 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x14d14f10 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x826fc82d microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x64952326 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xda9bf041 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x23f934b5 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x7a386375 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x424120f0 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x4bb8621b tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x959bfa5b tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xdb5a8e4a tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xe33700e8 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x1715cf1f tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x32d42414 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xd19d4ac8 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x16656e06 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1edc0367 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x46bda7dc cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5c23a587 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5e2b3eeb cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6695ebe2 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6c83f11e cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x704dd88e cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7538765c cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8091f8e1 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x93631a50 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x951882d6 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9b142443 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa0afa9e2 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa18bcde0 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa55b63db cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb67cd8b4 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbbc4dd6a cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc25bb1c7 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe8c322e8 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x69ae37a5 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xdbeb61b8 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x045f8a23 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x12c02a15 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x12d8e207 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x157afdea em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3b86be0f em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3eb5920e em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x780b54ae em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7cdb5ba1 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8987baa4 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x89928acb em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8d695b5e em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9123fb2a em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa7b3aa55 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb45599c6 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xba46c9f8 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbdeae989 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc12dd968 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xff5b0e51 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x6d4d96b2 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x95802eef tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xacbb9222 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xec36dbf6 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 0x20c1c56f v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x4c3d3c70 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x54a35f59 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7f04bb6c 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 0xa7da52bd v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa955ee94 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 0x5f47a87c v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xd000ca03 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 0x18539dab v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x42afb53d v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x49542ddc v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4aa4102c v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6eae74d4 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f3e9236 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f7a5e09 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7ac07674 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7d696db7 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x97c2aba5 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa123b209 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa13d764f v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa896af63 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa9204553 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xacbce30a v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaf637c72 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb2b4dbac v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb3a18ab6 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb9295005 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb9b7a483 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbbc1f23e v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbe1964f9 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbfa05444 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 0xd24209ef v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd58e59b4 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd8e168c9 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe1b89d1f v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1398c4cc videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x188faaef videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3c27dd78 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x410fa775 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5df4a147 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6d92797b videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x78897d84 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7e47a1cb videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8310d396 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x83324129 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8bef0efd videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9e9ed3ba videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb0aba925 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb246047d videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb8913366 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb8d23dda videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbbcec121 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbff1afd3 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcf22a700 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd12b33c8 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeca18fc4 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf24bb6bc videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf57f505e videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf71e3f4b videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x0e95abdf videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2aaadfbd videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x32f6a50e videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x346e1881 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-vmalloc 0x3b000868 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x81575689 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xb5ce780a videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x10ba56e6 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1554730b vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1e404386 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x35f4662e vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4809a135 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4f582ab2 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6987d534 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6d8e1cdb vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7a150fa9 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x81725074 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x944d509a vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb23d9eb0 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb27dce61 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbb9aa121 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc25a37d7 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc7099ecb vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf1f1b82d vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf6bca941 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x513a2a99 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x87108ed2 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 0x556fbd55 vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x9060a383 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 0xf1c44f87 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x043954c2 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2f360a8b vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x316c0bc4 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x366099f4 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3b8866a2 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x418d5dcf vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4691469d vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4a3a2a6c vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5a688f20 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x65263959 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x68e84409 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6e18351d vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6e3f5c4c vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x752d717b vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x798e95c8 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7b818257 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa2974229 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa5c6c8f7 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb191f016 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbc26533a vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc8c5eceb vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcbdaac46 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcbeb88e6 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd59e6a3a vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd790e2ba vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdc67d912 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdd70a92f vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe02ea34f vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe1ecf812 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf005e7c3 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf2520938 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfca85117 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x0dfcc804 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09c3482b v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0acd8d27 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 0x452c3eb1 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x51b58047 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5206bd32 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x62d3b321 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x632feb43 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x69cc2af8 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6bf3321a v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a9276d6 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bcfacfe v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x878e4deb v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8a7671b4 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9200480d v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x922c8c99 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9c140204 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa3638af3 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa82056e4 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xadad529b v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb048d23b v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbbe1b9eb v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc0a4d80b v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc406448b v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc40d7013 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd2af1648 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdb8d3c96 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe603b996 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd292285 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xffc67632 v4l2_fh_add +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 0x9194b0bd lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc74045fb lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xe1d81183 lm3533_update +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 0x0d5a91ed pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0fd92984 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1614e426 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x239b51c7 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6e4efee6 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x72fff716 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7cd81913 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x91763587 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x99273a36 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb7f59a89 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xef80e711 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xb87a1f6a pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xcff0cfac pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x572bc603 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7eb4a891 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x93b3c27d pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xdabe863f pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe7f2b68a 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 0x011a6949 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1fd9a61d rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x249743c6 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2a2e3f3d rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2e616006 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3bc5f80b rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4b61d930 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4fdc24e3 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x52079d57 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5346b3ed rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5a3403a0 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x608a5fc6 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6e1c18dd rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x75c63ab8 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7a61b599 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8b63bf7b rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9feedc88 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa1b8d85c rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb0e9c190 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc63722d2 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd530f47e rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf499495f rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf517778f rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xff0e5913 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x13c4aa57 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x24e40c7b rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2a1da371 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2dba328d rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x649b7389 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x903032d1 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa22d207d rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa9e59cd5 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb3ec6a25 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd9637c7d rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe7e861c4 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf34d9939 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xfbdd5098 rtsx_usb_write_register +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 0x47d4d553 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb4803e16 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xbbb46ad8 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe9707b42 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xee0fd434 sm501_find_clock +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 0x17e9c2fb tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x2aea94a9 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x9778a1fe tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb80adc1d tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x95b86fe4 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 0x0f19e124 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x4417ed5d cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x701bb11c cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xff09ca95 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x03e566b4 cxl_fd_open +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x05997dc5 cxl_fd_mmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x1e563582 cxl_free_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x25f8e04a cxl_start_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x2704ce01 cxl_fd_ioctl +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x3842fa28 cxl_set_master +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x3a9fbdba cxl_pci_to_cfg_record +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4bd67ab1 cxl_stop_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4d72a2fc cxl_fd_poll +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x549accde cxl_fd_release +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x6162c6d2 cxl_fops_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x61abdbd0 cxl_start_work +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x63ba511c cxl_read_adapter_vpd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x72cc4bc7 cxl_map_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x757f3703 cxl_dev_context_init +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x84f5c77f cxl_perst_reloads_same_image +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8740bc47 cxl_psa_unmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x96acda88 cxl_allocate_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa4318ac7 cxl_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xaf7f0d3a cxl_unmap_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb61f33b1 cxl_get_fd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb6502f4c cxl_fd_read +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xcf72d72e cxl_release_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd4b8369a cxl_pci_to_afu +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe5d738b7 cxl_psa_map +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf0eaea34 cxl_process_element +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf9d86257 cxl_afu_reset +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 0x0044cbd3 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2e695548 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x45c0d53e lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4a14b6b2 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x66eaebe8 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x680d32c8 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7b10be14 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7b3c3e45 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x95ea0797 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xbe92fb75 st_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x054ce23a sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x09d7bd4b sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x13085af1 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1938844d sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1f7f5808 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2339c0b1 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3fa9fc4e sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x58bb37eb sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5cb16607 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7a9de516 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x83e6c38f sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8de00bbc sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb7e10bd5 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe713c66e sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0050fbe5 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0f425f95 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5d281524 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x60cb76e8 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x77bfc079 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8f23dce3 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa7c79f22 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xab02a644 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe8d3d78c sdhci_pltfm_unregister +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 0x02714c6a mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0b4ec80f __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0b9ad3fe mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x155f8385 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b6f5010 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1c57535d mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x204bbdf2 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x28560c60 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2c6ce3d8 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3afdf7f6 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3e447826 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c238c8a mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x528281d4 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52938fce mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5a562c18 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x62f83991 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6c95ae23 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7381ba4c mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x77ebfd3e mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8318f74a get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8431a2f7 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8d580347 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x90cbc5d1 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x95b74c9f mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9947579e deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9e9391b7 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa01fe1aa mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa1a9577f get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa83a763f mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa3be458 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb762c499 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb9bbd7fc mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbdb80bf4 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc0975da6 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9a2fbde mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd55aa5ab mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd887306c mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdf9c700d mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xea1ffb41 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf46fac16 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf7cb8312 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x2007ee03 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x5c4dfe64 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa4a14eff register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd1a75707 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xdd4022dd del_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 0x2e0c6555 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x34af1fec 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 0x5510d43f ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6778395d ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x734b8ff7 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x932d0614 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x96bb1fac ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9d2414b9 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xad9a37c9 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc29c6061 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd1037981 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd7ce06d7 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf6214a62 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf7287a44 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x53200ba4 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xe529d808 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1be4ae21 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7a4b3ab0 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x848dfbc0 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8990d8a5 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc25068cd unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdc291854 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x13756866 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x27bb1c08 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x341e98ec close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x39d46a8b can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x66513c23 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x739922e0 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x83dc36ad safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8e770b7c can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x921846fb alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x928d9efc can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9482661e alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9fac66e0 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd31963c0 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe3c5898c alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe41b478b can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe8cd58a7 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf6e8e68d alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfc2be87f open_candev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x105719f1 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa918bd81 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xbd2edeb8 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xcb8597da register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3d942149 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x41e4a9d5 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7c799687 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc3108601 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x0544e0e3 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x59a95da7 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00f8dc2e mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01ccaba7 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06b82d5e mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a99236b mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cc8df45 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d4ed670 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1004a44f mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12ad5515 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13b0a065 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14e018f7 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x156ec7eb mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17164d15 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x179db007 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x180990e0 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18a53915 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ce7e1c5 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2273d447 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22d04fe5 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x240533e8 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x259d3558 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x261d89d2 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28481f73 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28732535 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30c65cc7 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x339745a6 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38426329 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38c2e834 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ac5dfb0 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ed8ad7c mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41bee594 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4496e8b4 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x467233d5 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49db9bec mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b6fc023 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bb2b1ec mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bca9567 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bd59466 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cad4815 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d064696 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4da53205 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ff6053e mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51af6c58 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52f0141b __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52fba355 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53accc27 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x586d38a8 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58a87fa3 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6360c23f mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63bef81b mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6568bad0 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6887d261 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x695743d7 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a432e43 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d51ebe5 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71ac99dd mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71b17593 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x744ffb6c mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74d96c71 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75392a21 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77003cdb __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7703ccdc mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7963dc7e mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x798fe206 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a045aaa mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a8a7925 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bd521e0 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7dc3807e mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ee178d5 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8185fc04 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83084e72 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x833a2830 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86407860 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86f23a20 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89532842 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a5a048a mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a83a3ab mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fabca19 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91598a5c mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9278ec2d mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x958e335e mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98af3b7e mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ae6d935 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b1f81df mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1d6e7ca mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1ea41f1 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa54f521a mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa561e008 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa789a57e mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa84b0bca mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabd2c879 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacd278d3 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xace7d681 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae213a3c mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafef1ee4 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb04da201 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb25ac4a2 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbba2e907 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc042ef76 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc15bf411 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1f9fca0 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4715271 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5022a2b mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc506d585 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc574c529 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5c7a893 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce0ab585 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3791b29 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4a27e8c mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4ee541c __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd53a99d8 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8f81d4f mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb3e379c mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdda82a36 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3dc47e4 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5f68fc5 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7dd1992 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8555a17 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec3c23e4 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee4a2ab3 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef4475ee mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf10a57a4 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf56e4240 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7703a44 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb711a03 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0460f52f mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07f163a1 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 0x0df9315d mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1676268e mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cb659c7 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2978c06d mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c78c660 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x358a01de mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38060017 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b2bb9ff mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4776ba43 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x477eedc7 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a077301 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e759463 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57e04682 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x587e7cdd mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c3b9583 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ddd9d5d mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6126bb55 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62652df7 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x660718dd mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b50dd59 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b574d21 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x805403eb mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8147bf3b mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88a0a031 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ad6fd8b mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90053b14 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a68247f mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c1d8a97 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2263786 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabcd9861 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaed6067d mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb129a40c mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1ae9aab mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9050f12 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9de218b mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc34d42a mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbefb9289 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2cceb3a mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce91049d mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb3c5ddf mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe72d3663 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf441120f mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf50bd45e 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 0xdf5b4b60 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x3c130462 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x462a1c9c stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x62473989 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x94056117 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x347d4bd8 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5926ec50 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd0f87d46 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf9505d07 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x19da62b5 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1abe72d3 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3d0bc0f8 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4161efd4 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x41e2cc82 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x43523dba cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x46cffcb2 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4da9b7cb cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x60020fee cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x60a0ded8 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa88c2b02 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb53e7827 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc4ac4654 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdb71a638 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdedc0f17 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/geneve 0x908845fe geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0xdaa775ce geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x11dd0ada macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3c362290 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc37dfdea macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xdde5fe68 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xa70ecd48 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1039b647 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2edbf99b bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x74d21070 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x78bfc607 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7d98b844 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa43719c9 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xae44f853 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd7872c08 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe73f3a43 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf8a5637c bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x467fb91c mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x01d5b51b usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x64869104 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x75e0926d usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd5deb434 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0223da5e cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x036777df cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0d9f7def cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2e7baa22 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6ed1210b cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x74dd1ec6 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa9fa8e84 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xccf4f634 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfe306897 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x217fc5c1 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x21d28046 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x28268f89 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4cd908ce rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x780f45de rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb9fb043f generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0c9fb0e5 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0eb0f07a usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x14bf6200 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x168907d7 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1c207e0b usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2276646c usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2c29e7f9 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x32e3e81a usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3ad68dae usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3b427a8e usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x58710d07 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5977b92b usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x76c2f6f8 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7bbeb092 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7d96e114 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x82248970 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8d7b98ec usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9159baa6 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x938cc2e9 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa9638dda usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xac02c0d5 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaeecc613 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc4ee263f usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc7ed1da1 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd1f533bc usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd8b61363 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe3539762 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe667c53b usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe6ab3355 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xecc852ea usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf323ca09 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf9d8d091 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x63352a8d vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xfcc7238f vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x07e6ac3b i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0959b487 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0b3958c1 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x119caebe i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x17faf32b i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2347f875 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x42357a78 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x58722754 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5d17616d i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x77f11241 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8159d0db i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x93ec8304 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb9f62dbd i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbecc8193 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xea60ecf8 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf136836a i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x2e222f63 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x51a22864 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xad994aeb cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xf9644496 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x012491ea libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x02db83c3 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x7de9aa71 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x8180f5f6 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x9cb02782 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xdc1b942d _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 0x077babae 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 0x0f48dcb7 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0f5e9f28 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x19e46bcd iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1a8e7bd3 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x23d6876c iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3179a953 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x47abbdf8 iwl_set_bits_mask_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 0x67fa0201 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6d83c97f iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7a359436 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7c874c66 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7d551eca iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x832a32f5 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x98edbf96 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9b173109 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9cc11904 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9f7054be __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa0b240d5 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa4d8319a iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa8d3bbf5 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 0xc67c31ed iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd162acc9 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd94d93db __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe21b8820 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe2abb21a __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe2c2ffe1 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x11dfc24d lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x12affa3b lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x24dc2fbe lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x484250c5 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6031f0a1 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6850295a lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x69efaafc lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6b80417f lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x91630b66 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9beef864 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb6865ae9 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb6c34b59 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd9f5ff1b lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xda614e02 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdebd1795 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf0c807b0 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x3fb17318 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x486d7de3 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x76547adc lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x828183a5 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa0c99b4f lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa3382a22 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xb3363325 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 0xdfdd0912 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1b67efea mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1e84c172 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 0x351719dd mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x39dc3d74 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x51389dd3 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x525fe54f mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x68651c29 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6e6c83b1 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x70c70d10 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8d4ebdcb _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x91628535 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9c0e3737 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xac1e2679 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb1254d28 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc54d5df5 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcd92a349 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xeea345f7 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfab3afb7 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xff8962cb mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6cc48ffd p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x76f7c9a5 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x8a3a39e3 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x8bfc3abe p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xad0b0779 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc6b6ede6 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xca5772b5 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xece229c4 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xfb72de50 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x172d0573 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x19e2dccd dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39048884 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd468f122 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0e449ee1 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2384d886 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x26ead229 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2ccc6fdb rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x518f3bd5 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x53c8c8a6 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5e7fc7e9 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6029f5e2 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6174b9dd rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6ad893b5 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 0x73fe756b rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x75b20459 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x76db92a3 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x85aba11a rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9350c586 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa06566cb rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa3949312 rtl8723_phy_txpwr_idx_to_dbm +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 0xb2487f14 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb24abc58 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb6d10844 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb841066c rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb856fe97 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc7a02bb2 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd83132a1 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdd174027 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdeab08ed rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe4efd3b9 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1024cd0e read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a130a8a rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1eb6ccd8 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 0x31f0f615 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4eb50b97 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x50f9ce4c rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5410f8bc rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x57a79f17 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x59778b17 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65bef87b rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fe9a530 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9a8b8412 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa4b5daf7 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf399054 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb14f7bc4 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xca955991 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd0adffb9 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3057a34 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf40667fb rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x19502948 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x5451c178 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xbd0214fc rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd363b51f rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0498663e rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1ce8f8ea rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2de66132 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x32389a95 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x395a1d99 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3c16246f rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4a3c4eb8 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4aa2877d rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4e368466 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5127969b rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5ee0a888 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x668b21fb rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x67f6706d rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6a8b3938 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6eb870ae rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7061138f rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7325d057 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7b6c5542 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7baff875 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x83bee376 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x99f89948 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9afc809e rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9beb8a30 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa10858f4 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa9c4a5f1 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb8234b4e rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbf46dd4f rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc193676c rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc23448a9 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc4760c6d rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd636c798 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe5a232cd rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe5df0f47 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe805d62e rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xeddf333b rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf0635497 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf518f479 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfbe21fd0 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0a325d6e rt2800mmio_clear_entry +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 0x36d1ed22 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7df1257b rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x8e84b431 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x942a8af8 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x95e4c5cb rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9d49a02a rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa3363473 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc155263d rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xcab399ce rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd1874160 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd2b41797 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xff64e4e1 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x05536b1b rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0b08ba5b rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x10d8f851 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2186f260 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2469480a rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2573bcfc rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2f3135fb rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x367e6ad5 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x36d32814 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x37d2ef74 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3da602b3 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3fde05c0 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x40096e40 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4038fb62 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x410633da rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x43a72d70 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4956e420 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x49e14404 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x538fb016 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5b3ba465 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x64ec58d8 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6733c1a6 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6e1ffbd5 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7c68e440 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8803498f rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8d64ec47 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x906f9664 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x90db88dc rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x97faf991 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9c9e0cd3 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9ebbe646 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9f644b8c rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xab357571 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaf019e8c rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb0150c24 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb1ca690b rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc235e7d4 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcbc0d8f5 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcd2f6bda rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcdf0390e rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe0b20806 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe7355d72 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe73a09db rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe9537051 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xed974cae rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf206e8c9 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x162cae5c rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x58071ff5 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x5f620d44 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xecf6480b rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xf77e6137 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x5d8f964a rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x9c5fe221 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xcec92a5a rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xe8e692d0 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x06c3beb8 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x082d63f0 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x131fdacc rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x16000b38 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x21024679 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4029e1bc rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5d1a8a1d rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7914e57a rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7dc608ca rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x945a740f rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb0dcffaa rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb6e35fe5 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc91e9829 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd615c4ac rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd6a311d8 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf8aa4d5b rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x0ce03fc5 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x537eb35a wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x9e49cb90 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x040c3294 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0b3867d4 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c6319a6 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0da00dfe wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10b110e4 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1485694a wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x17a3acf1 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x19dbbeac wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x241048e2 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x253a559c wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2cadcf11 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x323d3060 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x36f4373a wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x377e1351 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x45223f85 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49da2f35 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5085fff3 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x50f5f3e1 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53e8ec40 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x55dd2a4a wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x56ba0183 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x71054055 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x768f8741 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 0x79ec12b9 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7af4b8ee wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7e35cc42 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8140b2b7 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x89157b8f wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x89b0735e wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa177eaf0 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa8ac3864 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xabcd6196 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaf3346d0 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb1d79132 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 0xb8b651ca wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1703090 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc55fb92c wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdd3413f7 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe2f35f26 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe5e1805a wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee769678 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf0d0b365 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf1919589 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfc79abe5 wlcore_remove +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x36350890 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x6bc50753 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7016122b nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe6e6af6c nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x12638f07 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3e6543d2 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x480dbb6c st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7af8c4e6 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xad04cb58 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdc05b490 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xed7c361d st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xfd260302 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x21f76c3a 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 0x38fbc56d ntb_transport_unregister_client +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 0x4f041b78 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 0x00274819 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x01af2e75 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x089ba75e nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0a01b8d8 of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0b71027a devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4eaa376a nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x51677195 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x5ac0e7dd 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/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x02f0f093 rpaphp_get_drc_props +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x17ccc37f rpaphp_add_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0xb59a6866 rpaphp_deregister_slot +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x366b7b58 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x566e93a7 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xc9922afc 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 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 0x2ccd41f8 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5f99d0ab mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x65362533 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x722f9670 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xdc0e13e7 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x351d4c0b wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x380c57a3 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x51d56738 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x88460dec wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9534f115 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe107c016 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x30e34458 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04c3d32f cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e5ca7ba cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x16a4cbcc cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x18b3a607 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x19b9d217 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1ddc8db8 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e063705 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e751e6e cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x36c27d58 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b23c84c cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f58e92b cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3ff7c5b9 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4362cb95 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x444a2262 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x56fe5618 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x584d6b81 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b6e85ce cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5e4fe6ed cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5fcfac0a cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6103dd1e cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64c99a06 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x655c107f cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x787fdc54 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x79c6e157 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7a0df605 cxgbi_sock_fail_act_open +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 0x8d97bf29 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8e7cc3b7 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x918807ea cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb081cf83 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb505d2a4 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc0da335b cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc62e1c18 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcabf884f cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcb0b63d9 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4f4e1f3 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd77d3ba4 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd9f31f17 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdcb03e69 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0e57bdc cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe4719e4b cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5568dc9 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeabb3348 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xee7dedac cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2e6ebfe cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2fdc3cb cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfa897af9 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x09bdc6bb __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0c9adbea fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x147c33ed fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2c644c03 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2e1f9a06 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3b351386 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x44f41b02 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5d57d4a1 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7548860e fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8422b7ba fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x88cb82a1 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x94411941 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xac594336 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb61031b6 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe80f152d fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfbf29e87 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 0x073551c1 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x09dcdf2c iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0da7be46 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1cbcd2f5 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23737252 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45fc41af iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4eb37e9f iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ca7a2d8 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x650eaaa5 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d85f2fb iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6eb61d0a iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x79683ab5 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e4f42e7 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8ebecb79 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8fb17bb0 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8fdf9013 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9be2d7a2 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c36fe6b iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4d6c6f9 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa71ad78f iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7393376 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3d39205 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb66a76c1 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb8817543 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbac52257 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbbe5c66f iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd0b4cd8 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd66eff3 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2ad149b iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc58db9e8 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd076f4c iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf9f4693 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd6742c96 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8b0c4b5 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda35a1ee iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe059e0e9 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xea79d2ab iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeefb1ea5 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xef78eb7b iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf64efdc0 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf88bc51f iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfccacb20 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x04dcfe62 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2b4837ce iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x36b0c0a9 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4a97f32e iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4e7a339e iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x65afc494 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6b15a53a iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7f1d1352 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x86aae700 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x892946a2 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x946bf358 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa776f9f7 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc2ae1ce0 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd5528524 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe310fd58 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf0a62ec0 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf96d2337 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1a99ea2c sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2aea5bc2 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2bf127c3 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x31ed9862 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3703fd46 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3e39e972 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x433dfc3d sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x43f14af0 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5bfb9644 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x74e6fc49 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x77944aa8 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b3ca1f8 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8baf9dd2 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8d162f04 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8eb56cdf sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa0959322 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb4fcd0aa sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd45db478 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdb64fc07 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdd5faf8c sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xde30ae27 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2dbe79c sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xebb3f38b sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf2ce92cb sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0648c355 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x09e551e5 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e209ade iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ea178b1 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1477b4b3 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x200785e1 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x261d6974 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b799429 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2cd4f831 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31c9a3ea iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3ac50614 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47d2cd07 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4dd5b671 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x59000e0a iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bf86f47 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ffb9572 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x632de1c8 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x657f96db iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699be133 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 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x931f9689 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d6111fe iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3efd112 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4136ac1 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xadd200ff iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4ba4507 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb93147bb iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9f2acd4 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb023517 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf4059b8 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc85c2fe7 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd245b4a3 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd918ff44 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdc19fd21 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdd7c0de9 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4b69bc1 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6fbf5b0 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed752c59 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee8989a7 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7b88acb iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfcbf0e21 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1cfae63d sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2370a09d sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x6d35d149 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x6f11881a 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 0xc042ee3e spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x1ade096d ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2b064f3b ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x3aa57965 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x6993f5d7 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x78d11836 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x78eeb223 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x7ebdf769 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x058f6f35 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x20586b58 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x506945e3 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x57a49f23 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x96fa9547 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc362fb0f ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf236ed6a ufshcd_pltfrm_resume +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 0x558cb074 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x6db0e1ba dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x897bc66f dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9b738358 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x016b9df8 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x26ec664b __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3fd1ef3c spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x486bd02c spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5181e94e spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5376b37a spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x75a5d55e spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x82605543 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8e8d6b9c spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb707cd71 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbc308e30 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbdc4f891 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd4498247 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe2caf446 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe7eae083 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf1d95013 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfc6d1c6e spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfd7084c6 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x94b6cfb0 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +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 0x350b69a2 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x485c1afc comedi_dev_get_from_minor +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 0x63c6e3c3 comedi_set_spriv_auto_free +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 0x7e9b5eb0 comedi_alloc_spriv +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 0x948f14c4 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9bcd6eba comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa5a78e83 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 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 0xe874c243 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe8c16bf4 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfb28e954 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfc8714cb comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0976af34 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9959c35c comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x99b0dc2a comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb9959a81 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xbe6d6200 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd10f8064 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xeaa5f295 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xee48fac1 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x301a33d6 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x3f1d4271 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x49dd039f comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x4fe61886 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xa7978976 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb5e73e61 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xe7798888 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x22d62ddb comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3142d780 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3474f4a4 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xcba70d1b comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd4d44853 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xe6eaf11d 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 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 0x08ddc086 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x12738653 mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x18fb34d4 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x301602bf mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x355b1216 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3820c78d mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3a9c7fbb mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4339cce2 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5086044f mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5493ba35 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5ad5f452 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6883c077 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x717f10d4 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x75f22c81 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x87cb286c mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa710db35 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa8d019ca mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb5f33b3c mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xbf8e0a73 mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xedc176c6 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xee25a98c mite_request_channel_in_range +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 0xb29d30e4 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0be6788d most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1c9d56c2 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x20f998a2 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x7c6f92d2 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x87947fae most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9a2040a2 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc8fed80b most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe0a88558 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe199d122 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xecad16d2 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xefe8a24a most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xfdc5422a most_stop_enqueue +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 0x15bb822c spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x244cb49d synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x38e412da 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 0x7a569f74 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x800d57a5 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x85f80606 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 0x9f8c120d spk_synth_immediate +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 0xddf21bf5 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 0xf7dd28d9 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfa6415f2 synth_add +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x63c42c8e __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x6c23ed00 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x6e4b1dfc uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x80afdc86 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x94784450 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x1ccfb269 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x56878479 ci_hdrc_add_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 0x12c25a6e gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3048e412 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x35b61253 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x46117680 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5986b0d1 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7d6a2d02 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8f058b21 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaa9bff96 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb115afbe gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb8b95895 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc01f8cf9 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc11bb70c gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xea07b44e gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfce5df82 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfe61146c gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x6526d52d gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x95ae849c 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 0x2409afb2 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x3106d027 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x9e34acf6 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x03a4a4b2 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x062a0f3f fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x09a8ab5a fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0ccd78c8 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x10d78ff6 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 0x1c73d452 fsg_store_ro +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 0x1f4af1ea fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0x738cf9a7 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0x9fc61b60 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 0xabd06340 fsg_common_remove_lun +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 0xb576f084 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc3489286 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcc467e25 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcda82094 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 0xd807e0b5 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 0x02f3623f rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1c6ba02a rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1e600d15 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4e190cc6 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x64a8bba8 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x744da45e rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8632c122 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9c6fd903 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xae4fd4f2 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb1ec5f85 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb8d80796 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbdf768d9 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc0baecc2 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc765c4ef rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf33471ff rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x01c1d091 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x033ad8c2 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0d5c2118 usb_string_id +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 0x390b65f8 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x398fc365 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x484f325b usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4b20748f usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5558298a usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x59edd0c0 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x64b83126 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6679bd13 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x696f9cc9 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7028e9e5 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x76e44d1a config_ep_by_speed +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 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x96961c36 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9eccce3c usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xab20f3d8 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xabb4733f usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb138b14a usb_ep_autoconfig_ss +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 0xcee13ae1 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd9680ebe usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeda868af usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf46bedb3 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf63bcbb4 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf83c3d3c usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x178f6f8f usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x28d28dcc usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2bc8d508 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7f75c787 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x90d81e47 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x956e0c5c usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x96947726 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x97630414 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x98c0dbd3 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa1c8e689 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa88de850 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9a1455d usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdda274e7 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x5c2f2ed4 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xbb29dcbd ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0150c188 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x071bc753 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4e7e4fc3 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6f167335 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8fc218c1 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xae7f3538 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbfb615b9 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc5b90bc9 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe09d6bce usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x40920a22 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 0x9cb707b9 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xf1d2553d usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x003d0ea3 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x08441605 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x09ae568d usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x198781e2 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1fd4cb83 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x201644fb usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2d4e07c5 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x345506e6 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x35223f05 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3c8ce044 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x41875af3 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x805eaacb usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8b3f29ea usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb025d0b6 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbb0b5a67 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc7008078 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc7e2955c usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc90b3976 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd42d0f80 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe4a9530c usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xef21dd5b usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0bf138a4 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 0x3a2257c9 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x49e55ad1 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4a54c218 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4b569d0b usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x53d0f64e usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5dc6d40e usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5f7ed7d6 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6598a56e usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6cff57b6 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7024dd67 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7682690b usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7fa761b0 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8015f545 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x848594a9 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8504154c usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x89897ebe usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8f16baa3 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x97302d24 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa38fe1e0 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbc09469b fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcae50fa1 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd5be7c36 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe0b297be usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x19fab7c0 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x34921040 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3cc6585a usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5538c9d8 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6a8ddf4f usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6affc5b4 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x77e4a125 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x95a83b83 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa9e75f86 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xacaa70ad usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcf5fe853 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 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xee2d5241 dev_attr_usbip_debug +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 0x3d42b291 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5bf5c1cd wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x92ea3f7e rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb742a786 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc089258a wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd41a0d02 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd9795b97 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2133da65 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5402b95d wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x658c88d6 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x723a6b97 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x89b825f1 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8a81451e wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x903fb0db wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x959e8cd7 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xaa1b6bf4 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb0c42662 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb277e5ca wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xde7fe83d wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe7065023 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/usb/wusbcore/wusbcore 0xfece8cb5 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x7b68849a i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x8f023b1e i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x9ac2c128 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x157a00c5 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x20125288 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2442203a umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2e5081d6 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x54658b77 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x5e7eea22 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x99dbbb3f umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb59ffe04 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d4cf771 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 0x1436acf7 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x16dfbd9d uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x194c24d3 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x226fef1c uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x32e7de80 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x419ab60c uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x47db94ef uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x63560c4e uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x63ce4895 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6546e023 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x744fcc5c uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7874ee73 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7c021fc7 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7e339175 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x81a6af44 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8e795e8b uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9838627c uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9b479460 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa030ca11 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa0d7ce23 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa0e0f85a uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xadc39145 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xaebd482f uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xaf0c543f uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xafa262a5 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb3c90c97 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbebbca63 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc7a2624d uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcde61d84 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd0f002de uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd1a29df5 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd8bb25ef uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdaadfa94 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdc3bc96e __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf1a5c19a uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf5108506 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x1f8847b1 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x42cef383 vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x61852031 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 0x98c4e46f vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa92f1207 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc42b0162 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd4e0cba9 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd98ccc4e vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio_spapr_eeh 0x77a835c0 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_spapr_eeh 0xafddfa57 vfio_spapr_pci_eeh_open +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x7b5f9ad0 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xe305875e vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x01d9c473 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0338ede4 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x096277a7 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x120eeea9 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x20566229 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21dd1151 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x24241308 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2c86856b vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3290611d vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4233224b vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4a9da60b vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x53ce8150 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x65b24691 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6f20bb71 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x71d25a30 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x742c0e35 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8667da84 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x87745b99 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9bf486ed vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa8460efa vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0c1fc72 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbecdf945 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcdc6bb9e vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xce3b5418 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6baa8ed vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdae33ef2 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe12721c5 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe80c2e76 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfecb5fd6 vhost_log_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x29983072 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5c1c1e68 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xba97c4b6 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbf4414fc ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe074c2ee ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe2ff01c0 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfa8c9721 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x13e3ec4b auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x4e613eef auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x62b600d4 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x890aadaa auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xaa9fb196 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb00b1d81 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb83b89a5 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd2093e6a auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd97ca1ee auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf27d7bd7 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x4727a4d1 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x9cb17192 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc5eb2e42 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 0x05784375 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x554e5e47 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 0xe13930ac dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1c0999b7 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5bfed2d8 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x789b0696 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa10dedce nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xca7a880c lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe664ce6e nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xec243be3 lockd_down +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x043a9e84 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0549bba5 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05ebc40b nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x068f9e47 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a87c20f nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ab94467 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b39f0c2 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f5d8f05 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x114c6a57 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17b78148 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17d96d5e nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d868d6e nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e8d378f nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20e646a8 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x221b4766 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22601677 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23177290 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x256432fe nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2592c6b8 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x273524d0 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2975a16b nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a71fb21 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c90eda5 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d233609 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30f25177 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31e3065f nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x345423cb nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35a4dbf4 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f7905b2 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41799c5e nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x439a8530 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44b8ff76 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46973f44 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ae8933d nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b3300e1 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c003807 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c0e9395 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d958d39 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f9be516 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5060c604 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50a49f3b nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57c91082 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a502153 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5de903dc nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60b96718 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6301cf18 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x651158e3 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6961f7c6 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d426bd2 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6df75bbc nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e325c42 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ef4fd26 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f482fe5 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7015c17a nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x767a9913 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x787a8cdc nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ae1aae0 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7be92ed4 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cece678 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80690fad nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x853d4862 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85632f5a nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86ce0166 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87a0bb37 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x894a79a7 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8966eeb6 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a591f02 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ba4c54b nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e9e3b31 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f5fc3a3 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91750b20 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93a5adc9 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95b83397 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96b2b2a8 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9875e53a nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ee51989 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f9d8303 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa17c2f14 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa17d95b4 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa199c8da nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa60f4700 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8fc4524 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa92001c4 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa95b8240 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa5c6210 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae5eda85 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae73473c nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf0af9d3 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb29146bb nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb38600bb nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb38b52f5 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3db4770 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6580d8c nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb71d7700 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb3468f4 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf96a76f nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3ae9417 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc52b30d3 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc748fc12 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8c73f29 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2bd73e8 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd471f710 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdad4b07b nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfdb3414 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0605125 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0d2cbac nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe39f48c1 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9251e7b nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9673091 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec288a98 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed2092a9 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefb08a58 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeff96544 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf148b35a nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf29e1c9a nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2ab03d5 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf31c46dc nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4717f1a nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf47ab77d nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf52508a4 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf86d1ca7 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfaa28820 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc1f4e20 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x2b1b5601 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01759c95 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0281230c pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04f370bf nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a513946 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a610e9c pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12a08f7a pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13e862e5 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1a926a93 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b492005 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b6a1ce2 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1cef804c pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x237e57a3 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ce411f pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c7eb070 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e3f0cf9 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b36b220 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ceeb2a5 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d7b2ec5 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49f692ab pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e30fba5 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x546d2cc2 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5803f643 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c0f4503 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e1f8575 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64abc5bb nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65080a7d pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x699d9481 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a9e71a4 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e30eb7f pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x794e026c nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x807215e0 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8183de8f pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81f34246 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8474f3d7 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x967911a8 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x990013d2 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99cffca0 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a8b25c4 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9dbe95c1 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6390744 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8c1f024 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaaac52f1 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab538735 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb022009b pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb651afd9 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb79d087 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc0e65fe pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf92df59 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc680b122 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc775c2d6 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7c6d300 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcadb5cea nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcff064ca pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd56b578d nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd84bf93d pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe98964eb pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec29c3ea pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeef29b6b nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x0b64111d opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x73616f6e locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x74a8216f locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x4eb30aa7 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x731e710c nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x169fc7f4 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1a0431e5 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x52961447 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 0x9d54362d 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 0xd4971d62 o2nm_get_node_by_num +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 0xdbc8fe31 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe96b0689 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 0x4a469709 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x74058810 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x78821aba dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd096ad84 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 0xeca4f52f dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf7f0b413 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0f6e8d77 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 0x49e5dbf5 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 0x684365b6 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 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 0x0df69ef2 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x8fdf2d39 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 0x14178685 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xc16d6d06 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x057e0c36 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x2236618a garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x33c38986 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x635f479b garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x8accf4f4 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xba25952c garp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x06b4e69b mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x180ce626 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x6af95dc9 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x77b5875a mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xb99ee449 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xed134c1f mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0x8ebbfd61 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xc2e13644 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x855027dc p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x9ce8d534 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 0x08dcf13d 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 0x15a50084 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1d1ebd47 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x225e329c l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2f6da3e7 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x693622c0 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9295c76e l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa7d08a67 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc3b94c99 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x03c0052c br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x04ec2f63 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5cc889fa br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5d477d50 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x94dcf855 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xaa6ecc7e br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbab662a9 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdc3895ca br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xc9cd63ad nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xdc165acf nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x028dc953 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x091dc3c0 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0bd3f5fd dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e480bb2 dccp_create_openreq_child +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 0x4437e269 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x46fc4fa5 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x566e54e9 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5a1f770b dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6c1ba943 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7789cca4 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x78c50d84 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8056495e dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80c852a4 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x85077809 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x89a2e798 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9edf78ce dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0b06cc7 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa51763e4 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbb93c345 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbb9ac6f8 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc15dd838 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc1ed48ae dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3e1cdc4 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc554d614 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc765e13c dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xca434141 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcde0e484 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcef3197a dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd9520e23 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5256155 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeaf8b92c dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xed5a370c dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xef2ae391 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf876a4ca dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x10487774 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x29cb2284 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3ab675fa dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7669afe1 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x98f9da06 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xdd64ace9 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x3cd729e2 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x3ef05305 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb07e8948 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc5aa0944 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ipv4/gre 0xbb1a3c95 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xef936e0a gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x605f317c inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6be2d9bf inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x971f4d32 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xba3e9cb8 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc491b697 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc5299e27 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xe9df1bc4 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x08fdcd37 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x19a17ff1 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x25f133ac __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3cd14bbd ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4081fc25 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5348eb56 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x617556c9 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x689024f1 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6f813c9d ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x70753849 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x832697e9 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8e071bbd ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb0379de7 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc12e0940 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe0e61897 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xade705a1 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x380877b9 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 0x6f571f56 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x0433eeb6 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x6c946dd4 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x939f7c47 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xcdb95449 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xf14f9f6f 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 0xb82aa79f 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 0x2e5188b5 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x47c72e55 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5b2bbd56 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5e64fe9c nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe8f0e5d8 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x61a4876e nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x10fb47bd tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x570185cb tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x604926b2 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6e118ad7 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc0bc1b63 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1f66742b udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2d726cbd udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x70c27be3 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbb3f12bf udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x460984d7 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x700baea5 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7b04e416 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9cfdddc4 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xcbc61e7c ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd1da2ea1 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd95223d3 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x1c52d6e5 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xcdf1d4d3 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x5494a666 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 0x6ebbd3dc nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xde048b03 nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x8f607d01 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x3b86b292 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x508fa413 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x69351e1e nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xc0b10787 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xf3050019 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 0xe71dfcc3 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4aa3dcbb nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5656b35f nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x644b246b nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe91d565e nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xedbf35ef nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xbb0233ae nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0d99bac0 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x20efc2f1 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x282e7146 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3c78871f l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4d5d45e1 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5fd63443 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x77276de6 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7b4532fd l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x80fe842a l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x88de8e60 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa6893dc8 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcc7b5cef l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd0a2f928 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xee373fb3 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfb22fedb l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xff2638fd l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x3b9b314f l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x109fb5cd ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16349c2c ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x285355be ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x53294d08 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5d0ee67a wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6f051183 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x90dffe67 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1a71eda ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb1ec470d ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb6a7b1c4 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc9d6b4d7 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe6442e50 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe7275bde ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe8e5b720 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe99aa1b7 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x035efa6d mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5988133f mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc15d7f98 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfb95d63b nla_put_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0a074c85 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x201d4017 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x283549aa ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2ce326ea ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4686c167 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4ab177f4 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x56aad6ba ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x64a8ab3e ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6f291ffc ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x717ed1ba 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 0x94e43f3f ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa0692c15 ip_set_type_register +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 0xac79482c ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb9ad9d24 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd67660f1 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd8790a28 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x14e10aa7 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x52b61d45 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa7802a3c ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe55cfb71 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x076a37eb nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07d20578 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a6cafb0 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c412bfd nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13bcdf03 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16c41fa5 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x182a791f nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b097a4e __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b67220f nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23dd16b0 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25338c79 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x283a717b nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2974a1a1 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b05c7d1 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x446811f9 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a697dfb nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4bc047b4 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x503e028b nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52e8143d nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5391b0cb nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b61fe12 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60de76bf nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x624d7cae nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x653ebca8 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65abbf1d nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a5f0fbd nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7207044a nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x740c1b58 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74a1c2e3 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74def387 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76022eff nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x777ab056 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 0x7a681e0b nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c64c118 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d5e3585 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d83c14c nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8076cab3 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x822eacf8 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84a2c1a7 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x868d1417 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ab6afa2 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8eb49b76 nf_ct_timeout_put_hook +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 0x95063970 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95765bc8 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98d59213 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99fb2bcf nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa13e07b4 nf_ct_tcp_seqadj_set +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 0xae29ed48 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf904c99 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0c10422 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1e87211 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3a0f5ea nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6fea91b nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb82ce422 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba0b5288 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd45531f nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc295dffa nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc860aab6 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc879fc6c nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd177375 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd10a96a0 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1f79c57 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd25f067b nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd50041ee nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc7968d5 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd037f81 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe045f6c9 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6875aa5 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6b480d6 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec012ec9 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0926262 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0a3bd78 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1712b6a nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1961a3a nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf63dd913 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf90c93a9 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa3e007b nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd79dcde nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xbe32bec7 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xced1579a nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x52ed4055 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1540c2e2 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x62330ff9 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6b235f86 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6d3558d4 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7535a132 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8309a558 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd4d095c8 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdc3d7353 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xee657d90 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfd18bd33 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x24eba5d2 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1457d4f1 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x332cb5da nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7c90d58c nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf255cc4f nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x21a8049d nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x2c083b4e nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x13d96aa7 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x15249059 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x60b65fd1 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x826dadfc ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9703cf9e ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xca7bf0af ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xeb6b078d ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x26827b42 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x93af109b nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x1b7474bc nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x35454e00 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x5e10a362 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xf0e0d131 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 0x1245631e 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 0x14b1334d nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x260bd7fa nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2c7c0209 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7cfe3261 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9f38c842 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9f62add2 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xca19b058 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf16f5d18 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x3efae3ab nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xc8ab45df 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 0x43ec9a2c synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc73855db synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0cfed183 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1197eabe nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x135ae7e5 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1657bfd6 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x198b1af3 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3a88549f nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x421fc5d9 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4f92a7a2 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5a9ca080 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x60e7775d nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x717babb9 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9ce60d40 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbb3699f9 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbd98e221 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 0xd0048007 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfb735e03 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xffaf922b nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x13514264 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x32bff7d1 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x671afa38 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x73578bff nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa10736bd nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb48fe53f nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc29d7d76 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x28146061 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x83ee1a42 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x9defcbd2 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x3b1196f7 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x5538a806 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xd12cee8c nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe7da9b27 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x02a08ba0 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x0314fc5c nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4ebefc9e nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x6aa3a7e1 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x9998f5a3 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xcf8af909 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x5deaf0fa nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x5f728c7a nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x65ed3dc5 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6a0e098a 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 0xf7dafc61 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x05c6631c xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x21c6717e xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x238440e1 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2a56e9c0 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2b55266a xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x38c7c7fc xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x48328d0a xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x497f2222 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x57a469a9 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6788d302 xt_register_table +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 0xa74b499c xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb9a59a06 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc09dc8b8 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcc6feb92 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd79b897c xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xde106895 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe2f9cfad xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe318406f xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfe78cada xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x6381818c nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x6b285e67 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa311c780 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x122676dd nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x23bba077 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xb359b790 nci_uart_set_config +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1e2a76b8 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4fa5ec4a ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x501aad27 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x81ffbc57 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x90d4a3ca ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x933cd4f1 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xec5dee91 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf293501e ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf9de0f89 ovs_netdev_link +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x09895247 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x0e179074 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x1786cbd3 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x1ea82b0b rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x2b108d59 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2efbc83f rds_for_each_conn_info +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 0x3d71beee rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x49ef297b rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x53f5fa56 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x57e0e34c rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x62a81269 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x638f065b rds_conn_destroy +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 0x769ca541 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x7e36ee74 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x807b3df0 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x86f1fd90 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xa1bb5cc7 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xbd38360c rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xbe99a304 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xd0b46a22 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xdd5e0aeb rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0xfe040748 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xfefa6cd9 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x7404d4b7 rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xc6a49540 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 0x2f2797ad gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x5961cc65 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 0xbe07b76b gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00644a10 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x016515c6 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01d6dea3 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01e4dcc4 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02822a19 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02f6a71d svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02ffdcc9 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03a7bf01 put_rpccred +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 0x085cffb2 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09a57c71 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a8d528d rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d64fc63 rpcauth_register +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 0x11f04433 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12079081 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13b1ef28 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13c573e3 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1484bbd7 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x164ae7d8 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x190d9f64 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x190e2342 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1afed477 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b1ba56c xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d57a112 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e247930 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e35aafe svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20e0cfa2 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2225f0ea _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x226a5052 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23fc908a bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24b3cb5f cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24d05c08 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26d638dd svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27c1cca7 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27c4257b rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b4c565b xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c809801 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ddb9284 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f362255 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30ba2e40 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30f1db1f svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x335e12e6 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34acdc47 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d05a183 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f8adb7f xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40ffdd1e rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x417f8891 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4309d739 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44f7e3df svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x468dbb94 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afc4117 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fc98bed xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51317c95 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53ed5061 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5670f94a rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x584d2b05 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x597a74d6 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x598c803a xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a2a850a cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d6d4549 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ed72bc1 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eff8f07 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f869dab svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6007590e xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x608e2e45 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65745dc8 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x668eb604 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67b53d7e rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x689b1bba xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69333b23 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69e3483a xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c14abc3 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c6d1966 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d8980f6 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f414dbd sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x705a49fb svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70d43721 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7108689c rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x747c4ab9 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74ce6c89 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7567b4fc svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76662967 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7793ff8b rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x790ae75d svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79de4a7c rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a3c5573 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8020589d svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8215c5ab rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x828c3cef xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83581de8 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83e13f40 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8521fdb5 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87e46e6c xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8815ac34 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88e662da xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8abd3725 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bd3191a rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c2a77d5 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fcb6b6b rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x907ce52a xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92318eb6 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92e54f64 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96c934bb xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x974a050d rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9754f98e xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x984b50ad rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x985f3457 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98ae5d57 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9939cbd3 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cbd154c rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cd2a702 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9da20c0c xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e174d5e cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e49f0a2 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e609088 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f358816 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fa277b6 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fb2fda6 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa07e271e xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa26ade23 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2e52368 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4ab7988 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4c90701 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4d78f61 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa56d153f rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa860f732 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa90f97d3 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9736d4b svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa99bc811 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae40efaf svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae9bbdd9 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1a73ef8 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2826ff2 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2983092 rpcauth_key_timeout_notify +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 0xb7aa29af xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba01ae12 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbae10a41 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcb981b7 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd7159a3 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 0xc1f426bf xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc32c338b rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4264228 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc429bf7e auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4be3130 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc672ea52 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc67ced46 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6a352a8 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc741b115 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8097a90 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9605a0b svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9b99db5 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca1afbf7 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb68da74 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc3453c7 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce1dd0d8 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd00d1b90 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0316dda xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd12a7d2a xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd15e1767 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4c65077 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd50d6773 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd685e464 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6b0471e sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8c11ad4 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb7ccba2 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddbd39ee xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdde7d6fb svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdded9658 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde228a3a rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdeea71a0 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfe9a1d5 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3ec8050 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5a10f74 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe78b7b89 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7fded0b svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9098c48 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9229808 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9612f90 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9a834f2 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea383470 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea7c8bdb svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb659f2a 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 0xeeccd05a xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0c21e4 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf026c0ad rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2754ceb xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf41dedec xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4268ef9 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4f91f7a rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf52415f9 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7220156 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d83c71 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9ef83f3 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfedf3218 svc_seq_show +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0160c15f vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0b405046 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0b94d26b vsock_stream_has_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 0x1861c971 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2a5dbd7b vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x379a17f2 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4efde3ab __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x91505bd1 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc5e0eb94 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe0aa3d42 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf424bc15 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf813c6c1 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfa151494 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/wimax/wimax 0x06ce2921 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x19041e05 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1dbd25c5 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x227a8f00 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x40a9f3cc wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4e3a0bc0 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x505f3542 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5a194fdd wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x761f2b2c wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x985a0b72 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc5b76578 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe4eea188 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe87c1b96 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x089ca50d cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x10a5b27e cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x11147fc9 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x279c9e75 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x32b27b5b cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5eae322e cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x61893cdb cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8202edbc cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8846936e cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x91d99f20 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa7ea9937 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc5f239b1 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf9ce0a41 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 0x87fbe8e5 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x920f6e68 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe3be7541 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf061134f ipcomp_input +EXPORT_SYMBOL_GPL sound/ac97_bus 0xe96a1d41 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x0d6e3124 aoa_fabric_register +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x4202f5e7 aoa_codec_register +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x5fd36ddd aoa_get_card +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x67737e2e aoa_fabric_unregister +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x822140e7 aoa_codec_unregister +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x9eb58584 ftr_gpio_methods +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xad7d8438 aoa_fabric_unlink_codec +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xae354dbe aoa_snd_ctl_add +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xdb92619d pmf_gpio_methods +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xf23f3465 aoa_snd_device_new +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x099f9923 soundbus_unregister_driver +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x119bd57d soundbus_dev_get +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x399ccade soundbus_register_driver +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x49012af0 soundbus_add_one +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x6e429da9 soundbus_dev_put +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x8e7e59ec soundbus_remove_one +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x9d9457cb snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xae36025d __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x04285305 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x3263a2e7 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x3eb93d98 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x955f5821 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xa318858a snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xd72169d3 snd_device_initialize +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 0x121384f9 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x362822d5 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6ff1ffbe snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x85bed2ef snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa3206a36 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xaaae1a6e snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe7549c55 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf67ad11e snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfc0279d3 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x05e43b9b snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0b240e0f snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x14459f17 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6a13a6a7 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7676c683 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x88b599a1 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa26a9bfb snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb9c8e246 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd1726832 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe3e782e5 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf3745efe snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x30d5acd1 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5f3e88b2 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x797f7714 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa5258a7c amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb3feb4c7 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc0b188b0 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe81c3672 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x045b6d8b snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0746a6e3 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x09e6d1c7 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b5cdd77 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18711117 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a262218 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d921b1c snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21639a28 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24bf5c3c snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27416f41 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x29fe0136 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x360f0748 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39af177b snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40107560 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4591d36a snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x468e32c4 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x477640a2 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56308948 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57872f8a snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x59222eb1 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5cd929cb snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5fa1d31c hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67ac61c5 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b396c1d snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c1bd9f2 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f29604d snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6fc0d2c0 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x721de1de snd_hdac_device_init +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 0x74876040 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x76c045f9 snd_hdac_power_down +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 0x83a0d650 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85a25583 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x864e4aff snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c6092c8 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ee9d8ff snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92382162 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x93ecea1c snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9944bad8 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99a22ddc snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c03823f _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f9373c6 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa0402f04 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa390b10c snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4e4f7e8 snd_hdac_stream_reset +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 0xae4731f0 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb51f7cf5 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb73227fb snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8f1fe48 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb918a650 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc55bd969 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcfab7d48 snd_hdac_device_set_chip_name +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 0xd9709ad6 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd98e9d48 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdaf1bfee snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb5eff72 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 0xe1c587c3 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2e04f01 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb0f9956 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf8340e2a snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf92bc22b snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa6ce95e snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb5080c2 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfeffbdfe snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0f4b7071 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3812aef8 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x82ca03fa snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8fd0d31b snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd7202af0 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xda566a8b snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01b0b75b snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03a9414f snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0967df4b snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a9a69a9 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bb68ad5 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x104dbe5e snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13c2ea13 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13c3ecff snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17dfcf98 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18ad4b3d snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x197f35b3 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1aa32b98 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d4d1456 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x200dbe17 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22c071af snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2510b9dd snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25289096 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28bcff3d snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a1aa6e9 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2bcf9684 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f3811f4 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3111c144 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x379dfe64 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37a372af snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a6c5bb8 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b2faae5 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3dad5d1c snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40082d13 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41ce28b2 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x475072eb snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4925578e azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a241740 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dabe244 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52056624 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x529ffbcf snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x531143a1 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55a620a5 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55c01199 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56165c61 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58c2aaa3 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a39865e snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bf772d4 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d54f4c1 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5eb8ba5c snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f9cad36 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fc23f8f snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x646e060f snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64df2362 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65adc673 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66f0085c snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x684270f9 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69013923 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c41e4d7 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6daec548 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77104ec1 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d0b2dd3 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80ab8500 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81bdd524 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x823b9923 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82759986 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x848bf42f snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86d68ef4 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x876aa78c snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8793e655 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87f5dca3 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88cd4692 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x898c21ff snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a942126 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94262e95 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96ba624a azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98268722 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98aa54ec snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c781f0c snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ea8e172 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9eb64fd3 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f42ccb2 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa97d40f9 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa159129 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2e89f46 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb392d6d5 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb519024c azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb559ebfc snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb56c718f snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5cba1b4 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6757a07 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6b2a92d snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8e8967f azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcb72df9 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe34e1ef snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc04637cd azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc05ff07e snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3195043 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc666707c snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7f28d4f snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc96620a0 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc97a3967 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca43a83d snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb063b50 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb984d38 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbc6d2d3 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc09a0aa snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcdfd1783 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6b54fb0 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd75e151d snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd82af306 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd990541f snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd99fa956 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda2d996a snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda8ad37b snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc3aae78 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd49beeb hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd7f6640 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1c12788 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1cb59fe snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe49edb52 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8cca73b snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec6a062c hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeffb63dd snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1cfde6b snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf20d212d snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6ab8efb azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb2086ee snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc31da6b snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd3b3a34 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x04169992 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x05c94812 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x15a292e5 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1a2a4693 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1e730cd2 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1e88856b snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x22e75878 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2f27abcc snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2f6c164a snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x463929be snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5f647543 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6bbfa4b1 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 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x90b92e6b snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa6a488d3 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa7f39220 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa8e1a0a8 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xabc3f7a0 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb1cdfc97 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbdb5fa6f snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeed295a3 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfbfff046 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x17eb7ebf 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 0xa070236b cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9105efd9 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9b5eb54f cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x149dbbe4 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x67d5283e cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x963e605f cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x65481591 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xc7983fad es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2f086406 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x545b31be pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x71b39605 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x868e336a pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5acd6f3f sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x6ac55f44 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x97c33107 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9c2dd006 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xff1c7082 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x1f1f0006 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x0fe57617 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x62923342 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x0ac4ec21 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x5556e8cf tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x770ec32e ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1f4ffc1f wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x36fc8b75 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x78bb3f4c wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xcd13dd65 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xf65282df wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xfadce148 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x20d1f963 fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x7ffbfe6f 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 0x00879e04 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0263a34b snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04f6123a snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x096adb36 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x098ad7fe snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a93ff8f snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d922037 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x103d19ae snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10c676c4 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x116c515c snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x125e6f15 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14a837eb snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14b46b47 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16b2b207 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16b8946b snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x180057e7 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x198f5ae0 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19a70c1d snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a425434 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ac98715 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c024f3a snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f46f746 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x208af809 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2141ccaa snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26fb7d8b snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x291b131f snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29e5d7f6 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bb3bd26 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31103285 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31942f14 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31d6d831 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33c538c8 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36872171 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38d738e2 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b5e49f7 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3caacb2c snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ceca8d5 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41f40d4f snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4206aa21 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42179262 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x430e8b8c snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4500dc68 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4869a93e snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4acb860e snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d750d04 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dc624e1 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f06826b snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fbbf482 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fcd3935 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50063809 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52bbbe44 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x543639e7 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x582a1dcd snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5972e82b snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a103fc0 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c0be3d4 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ebe8fb9 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f12f8d1 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61019600 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x623a2e86 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62ce7799 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67eb70e6 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68850382 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x699e1dc9 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69c4e85f dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69f7d7a8 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a7e1b55 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b7e868b snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ba740bf dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6be04ff7 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bf19afa snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c0c029e snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f0ca0b7 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f78b982 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7943931c snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d163f2e snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7db4fa51 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 0x7fcf8075 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x812ea5b6 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x878d91a7 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88fb31df snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89bdf26f snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a6ed9c4 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b1ef06d snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91f3a444 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94145d2a snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95621599 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9607632e snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98336ff5 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9901b183 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a8d5873 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ae7f3fc devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9af74863 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b3e1dfe snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b8f59e3 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d4f64a6 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f15b12f snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f4c339a snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2f32e24 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa428a6b6 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa44c14a7 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4c425e2 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7a46bfa snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab3e008b snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf5373bd snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf95b94d snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb068e5d7 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0ebb905 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1a916ee snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb21a6c2e snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb49e780a snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4cb8aa3 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbdf01a3 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbeb7f383 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf9353dc snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc037e93a snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc29df218 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8161479 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca492d7a snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcaf0c5fb snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbee61e1 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd18a58a3 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd27b2421 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd324eb32 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6361cdf snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd78a92c0 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8772781 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb57b299 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd2be5e1 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd999cf0 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde8f050c snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdea486e3 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdef4db46 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe06474e3 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe48d7c74 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe64600ff snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe82dc830 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9109a60 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed1ade57 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed744558 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed763384 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf32c1c2d snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf49dbaa2 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf79e9c12 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfba30fc5 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc0d6e93 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff728e49 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffac21fd snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0e08871a line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3960f75d line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x399e29f8 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fb381f5 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x80257250 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8cb2ccec line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa0731031 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xac5265f8 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcd37e501 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd4fc39a7 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdf71bb45 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe4c170eb line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe54824c5 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf4242b89 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf70160ce 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 0x004203e0 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x0058ddf2 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x0074ce0d gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00c8896d wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x01042be7 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x010cc884 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x011c59b6 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x012881fb pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x01374e44 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x0159975b inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x016083d0 pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0x0164dadc irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x01811809 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x01972b53 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x01aa541b virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x01bd4a97 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01ea87a2 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x01f75247 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x01fa1060 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x0200c232 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x021190d3 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update +EXPORT_SYMBOL_GPL vmlinux 0x02254a25 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x022a43c4 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x0232b6b2 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0238254b ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x0258bd93 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x0266770d rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x028bb022 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x02aa5e84 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x02ad4f7a of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x02b5e2b4 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x02cb7b9f sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x02d52349 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x032fe287 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0346960f power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x035bbc0a md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x03650004 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x036c9718 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x0377b43d regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x037d7b14 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x038f07ef ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x038fe21c extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03a0d068 find_vpid +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 0x04098bb3 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x041c940c __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x041e98b3 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0484b563 pcibios_remove_pci_devices +EXPORT_SYMBOL_GPL vmlinux 0x0484f547 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04a6c202 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x04a731f2 pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x04c1c5d1 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04cdc7ee regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x04d03a32 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e2faea __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x04ef36ad __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x050e4c05 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x0513ab77 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0515c8c3 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x0538f0d6 eeh_dev_open +EXPORT_SYMBOL_GPL vmlinux 0x053b8b51 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x054b1672 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x054f7509 spu_associate_mm +EXPORT_SYMBOL_GPL vmlinux 0x05536d87 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x056ed368 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x057ab1dd pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x0588b783 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x059a5491 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x05bd248f regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x0613e124 scom_map_device +EXPORT_SYMBOL_GPL vmlinux 0x0618c7a3 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x061b69c7 fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x062642e3 kvmppc_h_put_tce +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062fa567 ps3_vuart_cancel_async +EXPORT_SYMBOL_GPL vmlinux 0x064372de x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x064cd3cf dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06577d2b power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x06683b36 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x06690c71 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x066d45b1 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x06781208 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x069b82b0 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x06cd88bf bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x06cf75f8 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x06f4f2b5 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x06f76e0e usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0712047c ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x073b69cd tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x073c62f4 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x076adba5 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x078488ed anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x078acc39 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x079d3024 blkg_prfill_rwstat +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 0x07db019e securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x07e21223 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x07fc8b71 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x08013890 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x08240356 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x0830464a ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x08424555 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0842aa74 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x0869355a input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x0883e1d7 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x0892d5d9 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x08b4ee22 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x08b7c99a devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08d56162 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x08d91c22 mm_iommu_put +EXPORT_SYMBOL_GPL vmlinux 0x08ea9cef blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0920cc57 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x092c605e max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0959ebf0 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x095ec82f usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x09725a68 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x097aa40f usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x0982c07d gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x098e4faf arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x09b68de6 virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x09f2f48a debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x0a03317c disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x0a276b14 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a532841 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x0a58c10b blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0aab73be ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x0aac737c fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x0adbddf7 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0ade51cc security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x0ae53c28 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x0af429f1 pcibios_unmap_io_space +EXPORT_SYMBOL_GPL vmlinux 0x0afedbb4 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1a395b gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0b244f5d bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x0b2aa3d6 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x0b3903d2 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x0b724c70 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x0b72cbc4 of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0x0b907ab1 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0b91010e rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x0bca42cc crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x0bd12c55 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x0bf3be2b pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bfdc980 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0c036845 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c15bc8c ata_host_activate +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 0x0c54156e of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x0c6476b3 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0c73aa53 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x0c7f7c5f gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x0c975a6d tps6586x_get_version +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 0x0ceb4b7b __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x0cf23634 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0cf4ef48 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x0d089b28 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x0d38ce18 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d589abc pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x0d5b7ff6 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x0d6545c1 of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x0d73a952 GregorianDay +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d82482a blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x0d8d3384 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0da0e90c kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x0db7b5b6 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x0dc98d9f to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0de1eb56 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x0e331c29 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x0e3d9a4d mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x0e4baa94 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x0e503900 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x0e6437dd anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x0e8765a8 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x0e8cccc5 ip6_sk_update_pmtu +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 0x0ec42b0b bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0edee22b regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x0f072f67 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x0f30fc67 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f4d9cac irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x0f50f4ee wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f7e740c srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x0f819399 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x0f9e99b7 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x10068cc4 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1016dcc3 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x1036b544 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x105a0132 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x1064c0ac adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x107c889d ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x10c8c708 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x10d11043 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x10d498c7 eeh_pe_get_state +EXPORT_SYMBOL_GPL vmlinux 0x10d7319c blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x110d633b wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x1111dd51 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x111c93f6 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x114864c5 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x117192b3 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x1197164a __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x11b9482e sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x11c2a0df rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x11f7c242 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x11ff4fc4 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x120acbe8 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1226edc7 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x123b9607 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x1248e415 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126e61cd of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x129919eb device_attach +EXPORT_SYMBOL_GPL vmlinux 0x12a282f0 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x12b05d4f pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x12b9c5b8 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x12cd5000 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x12d905d9 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x12d9af80 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x12f6931b mmput +EXPORT_SYMBOL_GPL vmlinux 0x13185afd use_mm +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131af610 input_class +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13296793 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x13300bf0 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x1333d8b3 ps3av_video_mode2res +EXPORT_SYMBOL_GPL vmlinux 0x133e1583 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x134ac871 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x135f8a6c extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x1371edec __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x138225d6 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x138e065e ref_module +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13adea7d rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x13b56fd0 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x13c231b9 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x13fe0c37 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x1413c8f8 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x141aad07 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x14220a22 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x14654ba5 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x14805379 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x148df67b crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x1499a7ae put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x14ff2f4e sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x1504305b rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x1530ad16 ps3_open_hv_device +EXPORT_SYMBOL_GPL vmlinux 0x1536bed8 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x15740dcd sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x158c4168 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x1598f9c9 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x15b10006 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x15b8b44d opal_async_wait_response +EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x15da7d9e evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x15e084a9 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15f9e76f ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x1625192d gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x162cca7f pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x16307b1c pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0x164279b3 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x164b70e5 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x164cddeb kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x16a9b0e8 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x16ae0a26 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x16c79f91 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x170efa7e usb_control_msg +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 0x1745df2f uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x1748072b component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x174b622d virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x174c0746 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x175de60d fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x175e4b63 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x17638bb0 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x177620f7 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1797a3d9 ata_do_dev_read_id +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 0x17c93b05 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x17e80a52 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x180df406 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x18102cbb page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x1816f5bc ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x183d32a4 regulator_set_current_limit +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 0x187701ba usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x189f874d powernv_get_random_long +EXPORT_SYMBOL_GPL vmlinux 0x18b834c4 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x18ed922f irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x18ef002b __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x18f17aeb spu_get_profile_private_kref +EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x19499fcb nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x194dcbcc pmac_i2c_find_bus +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x196385d0 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x196e8f25 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x197b89c2 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x197d6492 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x19945937 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x19960b7d user_read +EXPORT_SYMBOL_GPL vmlinux 0x199707a9 class_remove_file_ns +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 0x19a81ad6 isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0x19e55095 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x19f1efb2 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a49d1da bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x1a5777e0 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1a5f11df debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x1a6caebd dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x1a80ed22 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1a9c26f9 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x1a9c79a1 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x1a9d05d5 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x1aa996bd device_del +EXPORT_SYMBOL_GPL vmlinux 0x1aa9e131 udp4_lib_lookup +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 0x1b012ab4 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x1b269968 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x1b60da77 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x1b82a4bb get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x1b919f91 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x1b9664d1 __destroy_context +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1b9fc144 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1bd200e4 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x1bdc7939 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x1bed9a5a wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1bedea71 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x1bef4343 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1c15924a __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x1c15afc5 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1c2ad10a srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x1c2e8ea3 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x1c477821 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5c6909 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1c67f56b __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x1c68d813 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x1c751d7e dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x1c75c1b2 ata_eh_qc_retry +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 0x1c9575c8 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1c9ad1fa mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x1cb624d2 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x1cdab599 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x1ce77ebd wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x1ced18a1 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x1d14897d blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1d2073f5 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d32130a of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x1d35f6cd xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x1d4b5bcc usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x1d56fad2 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d652735 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1d71acb0 usb_phy_generic_register +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 0x1dc182a6 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x1dd52a59 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x1de7ee67 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x1def22f9 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x1df8f89f security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable +EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e1e09d5 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x1e24b156 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x1e2c82f8 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x1e300949 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x1e3ab0bd of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0x1e4143b9 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e5e55b7 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x1e6d7724 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1ea107d5 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x1ea680b6 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x1eb65d55 usb_get_current_frame_number +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 0x1ef6d6da inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x1f052901 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x1f19c5d1 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1f6a9f1b xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x1f6ab088 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x1f75273f ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x1f7c31cb inet6_csk_addr2sockaddr +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 0x1fb45a15 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x1fe970cb ps3_io_irq_setup +EXPORT_SYMBOL_GPL vmlinux 0x1ff5db41 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x20010e3f percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x2011302e fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x201430d0 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x205691af wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x205ca8cb put_pid +EXPORT_SYMBOL_GPL vmlinux 0x20a8678e list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20ad5bde pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x20b942d3 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x20c3684b devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x20e1afca pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0x20e1e9d8 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x20f06dab subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x20fb701f usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x21041733 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask +EXPORT_SYMBOL_GPL vmlinux 0x21895ff8 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x21920c27 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b7af9c cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x21c5bd4e ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21e67dfe page_endio +EXPORT_SYMBOL_GPL vmlinux 0x2266f372 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22cefd70 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x22e3e7a0 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2305f425 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x235f1d06 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x2364b465 spu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x2369365c __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2387d754 ps3_gpu_mutex +EXPORT_SYMBOL_GPL vmlinux 0x2399aae2 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x23b0b26c class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x23bae235 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x23bbcfcc pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x23df16fe transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x23f43ab4 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23ffebf6 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x240a0b73 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x240b583d wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x243dfb59 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2454b028 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x245b5c6c regcache_cache_bypass +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 0x24ba1902 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0x24c557ad pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x24ca9e8b gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x24cbf944 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24ff321d sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x2504f331 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x2532c183 pmac_low_i2c_lock +EXPORT_SYMBOL_GPL vmlinux 0x2540471c reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x254c24e2 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x258dd248 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x259e5257 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x25ba66b7 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x25c65556 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x25fa0e35 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x2607bf7f md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x261f8b00 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2667f54e shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x268f9111 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x2691c55b eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c0b92d pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x26c84764 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26c9c40a rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x26da54b9 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x26dd7bb7 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x26dd80f9 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x2712340f wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2715e4e8 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x272ae939 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x2771670e alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x2787527a driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x27a2bc07 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x27a57b04 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x27a76cc0 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x27b54fcb ps3_system_bus_driver_register +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 0x27e4d776 tty_encode_baud_rate +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 0x2805d95d usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x28080759 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x281e31fb usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x282144df save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x284fd217 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x287c4f31 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x288037f7 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x28853198 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x2899d782 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28b661bb __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x28b9f93e ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x28c07982 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x28caf7bf page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x28de9483 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x28ee080b rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x28efb4a9 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x28f11e92 __giveup_vsx +EXPORT_SYMBOL_GPL vmlinux 0x28fa5cab device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x28ff99a9 opal_prd_msg +EXPORT_SYMBOL_GPL vmlinux 0x292555b4 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x29868b02 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x2987e36a sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29a6e724 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x29adc245 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x29cf6dea of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x29de7cf3 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29fe897f devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x2a1ea132 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x2a1f76c0 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x2a2016b2 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x2a3211d4 register_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0x2a3ee731 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x2a436ad5 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x2a4e1853 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a694b91 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x2a8b3d8f device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x2aa518d7 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x2ab285f1 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x2ad07b24 irq_domain_get_irq_data +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 0x2b453df7 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x2b457781 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2b521c40 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b6b91d4 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2b784e44 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2b7ce7a4 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x2bb20014 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x2bc801e9 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x2bde339d put_device +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c0f9da0 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x2c0fbd9c swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c3d0437 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x2c46a053 kvmppc_do_h_enter +EXPORT_SYMBOL_GPL vmlinux 0x2c4e295f pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x2c56b224 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x2c5f510b blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c80caa2 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x2c96e3b1 iommu_domain_free +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 0x2cec6603 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x2cf124dc regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +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 0x2d62d864 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x2d8b8378 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x2d90c1b0 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x2d97a490 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2d97b772 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x2db40065 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x2dce377f crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x2dd1d1db __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x2dd576f6 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x2ddcaead __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x2ddfae13 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x2de024c8 fl6_sock_lookup +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 0x2e2f9e32 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x2e561510 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x2e65ebf8 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ecd28dc kvm_alloc_hpt +EXPORT_SYMBOL_GPL vmlinux 0x2ed0908b rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2eda6c53 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x2ef679ad usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f2e455f firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f54f8bf dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x2f566344 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f798323 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2f82ebe0 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x2f89fcb3 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x2fa75daf force_sig_info +EXPORT_SYMBOL_GPL vmlinux 0x2fbcb16e of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x2ffc8dbb __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x300f08de device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x30283397 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x3086c3f6 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x30893e8e ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x309063f2 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x309e978c class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x30aa06e3 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30e0018d key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x311b78c2 ps3_get_spe_id +EXPORT_SYMBOL_GPL vmlinux 0x312512dc to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31bef441 opal_i2c_request +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c32a22 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x31c53094 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d467c4 ps3_mmio_region_init +EXPORT_SYMBOL_GPL vmlinux 0x31f0dc9f nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x3212c104 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x32824a24 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32af7bf9 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x32b32e06 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c41591 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x32c9ae61 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x32f7e1be remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x3309ea64 ps3av_audio_mute +EXPORT_SYMBOL_GPL vmlinux 0x33398de6 mmu_psize_defs +EXPORT_SYMBOL_GPL vmlinux 0x33562e65 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x337084fb ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x33850a8c relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x33b81d66 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x33bdf56f max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x33cb508b class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x341fb6e4 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x3420404d relay_close +EXPORT_SYMBOL_GPL vmlinux 0x342238f0 mm_iommu_get +EXPORT_SYMBOL_GPL vmlinux 0x343912b5 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x345c6776 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x346862d7 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x346e54c2 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x347193a0 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x348a2c1a crypto_unregister_template +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 0x34c1d102 srp_rport_add +EXPORT_SYMBOL_GPL vmlinux 0x34ccc1cb sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x34df9bd2 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x34f230f9 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x34fa4e39 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x358bf179 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35b8fc0e mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35f1b042 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x35f3ddc4 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x36118d13 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x3614729a wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x36567004 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3657172d gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x367111b9 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x368ff505 srp_stop_rport_timers +EXPORT_SYMBOL_GPL vmlinux 0x3690f396 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a0b2d9 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x36a89c9a regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x36acbc13 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x36b2e789 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x36baf1aa get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +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 0x36e4cc94 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x370cea80 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x37275eb1 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x374297df arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x37b2da62 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x37b70dac wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x37ba18ec ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x37bd271d usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x37d3d692 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x37dba11b smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x37ef4a9d __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x38072dd0 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x382a95cc pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x383761a2 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x3837af69 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x38910712 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x38a0bb0f blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x38a26394 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x38a7e7f1 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x38ab32e7 pnv_get_supported_cpuidle_states +EXPORT_SYMBOL_GPL vmlinux 0x38d6a2d0 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x38daf9a7 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x38dea7c6 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x38deebd5 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x38df296a devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x38dfe498 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x38f58ac1 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x38f8c7ca ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x38fb51e9 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x393e9274 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x39468a07 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x398b9b8b debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x398e7677 pmac_i2c_get_dev_addr +EXPORT_SYMBOL_GPL vmlinux 0x39985300 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x39dfa6d9 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39ef90ab modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x39f61c73 acop_handle_fault +EXPORT_SYMBOL_GPL vmlinux 0x39f62b8e debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x39fffdce blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a280cbe thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a33ac49 relay_flush +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 0x3a5b72f2 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x3a800b1b devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x3a945c9e regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x3a9947d5 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3ab169a7 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x3ac4c1fe usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3af90adb crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x3b1a96cd iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x3b1c5afc ps3_vuart_irq_setup +EXPORT_SYMBOL_GPL vmlinux 0x3b507bee power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3b88bf00 user_update +EXPORT_SYMBOL_GPL vmlinux 0x3b8c8a72 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x3b927cd3 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3b993167 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x3ba9ed0f of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x3baba83c dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x3bc62448 eeh_pe_set_option +EXPORT_SYMBOL_GPL vmlinux 0x3c0990f7 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x3c51ea7c opal_leds_get_ind +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 0x3cb6cfdb regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x3cc4f727 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x3ccc0dc2 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x3cccb0bc sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3ce5859b pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x3cea7781 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x3d07fdc4 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x3d337cda devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d484c11 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm +EXPORT_SYMBOL_GPL vmlinux 0x3d79af3c set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x3d7a1619 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x3d7f0abb devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3d93291c fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3da7a976 da9052_adc_read_temp +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 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 0x3e1beca2 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x3e3b6d14 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x3e475286 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3e494f1e of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x3e5a3557 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x3e5dbaba of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e5e3ba4 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x3e6222f5 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x3e6d57ca raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e74f1d8 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x3e9a393c eeh_pe_configure +EXPORT_SYMBOL_GPL vmlinux 0x3ebe386a phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x3ec09444 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x3f375e85 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3f382553 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x3f4ad2ae mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x3f4ef653 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3f4f9d92 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x3f5bd9ac of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x3f901992 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fb14423 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x3fc18118 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x3febdb70 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x3fef7431 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x405f0e12 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x4062ac6e tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x408bd1e0 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x409673af irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40c39806 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40e12498 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x40e23eeb get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x40ea3c38 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40fa0073 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x40fba2fc platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x41247ccc devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x413f39c6 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x414fdb36 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41885cd4 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x418d48d6 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x41b9523a blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41daf643 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x41f8b135 device_reset +EXPORT_SYMBOL_GPL vmlinux 0x420e9786 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x423b63fc lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x4256d290 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +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 0x428f7b09 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x42a54802 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x42abfe1b eeh_dev_check_failure +EXPORT_SYMBOL_GPL vmlinux 0x42c863a8 dev_pm_qos_add_ancestor_request +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 0x4347c824 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x4355dbf1 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x4355ee8d is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x436c92c2 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x436cb779 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x43808238 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x439c4c97 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x43a50da9 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43aae30a rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x43c10f8e eeh_iommu_group_to_pe +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43d3de58 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x43d9bc94 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x43dcd2ac ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x43e3f556 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x43e9cdc9 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x43f04821 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f9f767 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4401bd98 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x440a3d64 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x440a9a2c gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x44209b86 of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0x442653c5 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x443da4d1 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x4448ac07 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x44639ef5 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4499d6f9 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x44afe470 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44d260b8 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x44dddf7c tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x450a1555 copro_flush_all_slbs +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x45161bec device_rename +EXPORT_SYMBOL_GPL vmlinux 0x45212b79 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x4521b404 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x45229582 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x45475e85 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x458eaa2f call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x459322b1 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45e88103 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x45ea690e ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x45f4a1f1 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x45f7598e tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46342f06 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x4641ba2f rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x464a6561 ps3_system_bus_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4679f03a blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468b1a10 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x4696a6d4 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x46c23ffb unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x46ccbeeb crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x46d9f955 ps3_irq_plug_setup +EXPORT_SYMBOL_GPL vmlinux 0x46de81be regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x46e7b7c3 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x4701df46 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4741db42 ps3av_set_audio_mode +EXPORT_SYMBOL_GPL vmlinux 0x47467cea ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x474e1f65 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x475b7e97 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x475cb4e6 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4764e64c input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x477cbe57 input_ff_destroy +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 0x47af5912 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x47b1f1d7 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47cba7e5 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x47cfa026 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x48158433 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x481738cb crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4837b10e vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x483ab03b regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x4868c695 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x48781403 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x487d74d7 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x488bced2 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x490c88c3 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x490c90e3 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x492886a3 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x492f95ac xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x494aa891 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x494ba0f6 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x495b8089 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49a781ae phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x49a870f5 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x49be2d12 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x49c31ea6 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x49df9e85 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x49e2dc74 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f06ecd regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec +EXPORT_SYMBOL_GPL vmlinux 0x4a3f0236 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x4a3f9385 tpm2_shutdown +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 0x4a7067e1 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x4a7a97ed da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x4a89495c of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4a969b02 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x4a9d0d9f sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x4aa09d22 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4abed1a7 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x4ac1ae06 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x4af09293 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x4af3ed40 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x4b6339e2 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x4b6fd76c ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x4be77f2c unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x4bf86f7e of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x4bfd1bdc ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x4c003731 of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0x4c07bf28 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x4c18f773 ps3_os_area_set_rtc_diff +EXPORT_SYMBOL_GPL vmlinux 0x4c1f2130 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x4c23ba9f extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4c444355 ps3_vuart_read +EXPORT_SYMBOL_GPL vmlinux 0x4c4f9893 balloon_page_dequeue +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 0x4c90225c led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x4ca303c5 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x4cdc56be of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x4cf28348 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0c6bd2 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4d1c6989 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x4d24613c of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x4d2c53de xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4d615269 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x4d6214fa gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x4d6c3656 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4d9ab5e8 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x4da46792 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x4dd227ab unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x4dd735f5 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de8aa55 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x4dfd622c key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x4e01c695 led_trigger_blink_oneshot +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 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e639dc2 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x4e6d7074 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x4e975c0f devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x4e9e5223 cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x4ec88074 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x4ee22bed devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x4ee2c20f trace_define_field +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 0x4f0ac664 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4f0dd7b9 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x4f11ef03 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f604cb3 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f799a84 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x4f82fe24 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x4f85bfd4 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x4fd5d120 pm_generic_suspend_noirq +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 0x4ff8a51d devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x4ffc3d2f md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x500d61d9 mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0x501dcdf6 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x5026c67c usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x502736bb trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x50317ef6 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x50398c85 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x504a597b pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x504df4d1 iommu_present +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 0x50a868b3 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x50c126f1 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x50cf991f cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50ea4f9c add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5109dd64 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x510e1c71 mm_iommu_lookup +EXPORT_SYMBOL_GPL vmlinux 0x512ad3ca ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x5134d392 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x514a237a blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x51962462 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x519b648e bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51c6dcbe devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x51ce6c1e device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x51d706a0 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x5205e64d disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x52089df4 bpf_prog_realloc +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 0x523c0d00 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x5246b1b1 of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0x52551d2c msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x526123ec dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x527c4659 iommu_add_device +EXPORT_SYMBOL_GPL vmlinux 0x5280db48 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x529e8466 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x52a56fe8 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x52d1e3e2 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x52f679b5 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x52f71644 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x52fa85bd __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x530f92a3 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x53436fb8 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x537a1901 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x53926c7a blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x5394811d device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x53af73b7 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x53d38b8e ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x53f1ae42 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x53f34e15 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x54037f79 irq_create_of_mapping +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 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x547383ea early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54b219ac __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x54c07c52 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54dd7ca9 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x552ca3ad uhci_check_and_reset_hc +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 0x55be1511 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x55d9598e pwm_get_chip_data +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 0x560bac46 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x560f2d4c vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x56234c21 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562cf2de srp_release_transport +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5638b5af pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x564763ad do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x56a7ebec init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x56b7a96c ps3_vuart_read_async +EXPORT_SYMBOL_GPL vmlinux 0x56c5fbf3 usb_put_phy +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 0x56ff64f7 ps3_system_bus_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x57103b29 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5722f371 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x574497b8 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x57508600 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x57682043 regmap_raw_write_async +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 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a53c79 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57d53572 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x57e5872f nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x57efc3ae pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x57f53224 cxl_update_properties +EXPORT_SYMBOL_GPL vmlinux 0x57fe3c6f wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x580b8ed3 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x581940e5 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x5825a1a7 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x582f6ace adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x5863f47f register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x586aea59 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58ea2d42 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x5913a170 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x59198ff0 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x593fa921 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x5962388f usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x5970bac0 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x59958eb4 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x599e6cd2 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x599e9595 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x59b0a9ad regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59eae20e __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59f022c8 pci_probe_reset_bus +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 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5aa3001d wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x5aa3ac03 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x5aa4908a __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x5aaa4400 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5ad98605 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x5adb45b5 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x5aec03f0 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x5af39aa3 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5afe9bdc wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x5b2cbd5c inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x5b574ae5 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x5b5cd811 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5b6bc08a ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x5b6f98d4 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x5b83afb8 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x5b8a1071 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x5ba5ce80 inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x5bb491ba sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bdf7ce8 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5be6fe6b spi_async +EXPORT_SYMBOL_GPL vmlinux 0x5bf0d868 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x5bf45940 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x5c01be4f ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5c423b59 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5c4a3fe9 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5e2823 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x5c75c401 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x5c78ef63 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x5c98ca48 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x5c9a2367 sysfs_remove_device_from_node +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cb12c3f blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cdbbb66 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x5d0b8b69 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x5d0d859e xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x5d0f30c1 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d186f68 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x5d3be3a4 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x5d41f021 pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0x5d767b7a usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x5d91d294 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db6aaba iommu_del_device +EXPORT_SYMBOL_GPL vmlinux 0x5dc1fe5c cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5dc3738c usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x5e031c9a power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x5e04035d device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x5e1364c2 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x5e1f8ab2 register_spu_syscalls +EXPORT_SYMBOL_GPL vmlinux 0x5e437cf1 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x5e4938a4 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x5e4fc67a ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e769986 ps3_os_area_get_av_multi_out +EXPORT_SYMBOL_GPL vmlinux 0x5e86f35e device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x5ea464c6 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x5ead57c9 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5ed76f7d shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x5ee27141 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x5ee7542e reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5f0c4cbc map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x5f0cb99c trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f27902c debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x5f3dce74 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x5f597ef0 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x5f7ae9c0 ps3_free_mmio_region +EXPORT_SYMBOL_GPL vmlinux 0x5fbcb2fa blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x5fbff45d br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x5ff68bd1 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x60467b06 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x604f0558 put_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x606be0ee ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x606fe77d aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x608187cc __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60afaaec unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x60bed886 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x60cca309 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x60d05df8 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x6136c2d9 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x613aa670 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x6154c1bb of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x615a5638 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x615e3b87 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x616180a9 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x616346c9 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x6174344a ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61aae097 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x61bac4bc devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x61c3689c xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x61d639d4 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x61dce8d9 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x61df00da key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x61f91a13 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x621c61b9 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x623059dd mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6237afe1 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x6239f08d rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x623ca262 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x624d7eb0 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x6263a0c1 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x62757e11 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x62c43a67 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x62dda4e3 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62ea6edf usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x62ed3fa1 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62f95b27 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x6300302d virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x630c24c8 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x63166424 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x631aaada phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x633db629 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x6343b923 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x634e299a irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x63931e1e fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x639b2026 remove_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x639b317a of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x639ba489 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x63c5ab89 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x63e94f9a devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x63fc3c2b crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x640c2def pci_assign_unassigned_bus_resources +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 0x6474b306 ps3_vuart_clear_rx_bytes +EXPORT_SYMBOL_GPL vmlinux 0x64ae273f unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x64bc9bc9 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x64dcbd39 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x65033e0e shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6526328e mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x653e87c7 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x6565e1e8 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x656d8713 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x6572bd71 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x6575acaf devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x65844db8 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x65852ce7 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cfd06a kvmppc_clear_ref_hpte +EXPORT_SYMBOL_GPL vmlinux 0x65d696a7 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x65f2bbea scom_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6617d2c3 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x662b901f usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x664dd80a gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x6666b387 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x667a812c ps3av_set_video_mode +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6688e0fd nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x66b603fd extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66df73fc ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x676131df irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x6771e3fe sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x6775074a xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x6789dbaa pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x678a4105 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a0772d device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x67c23837 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x68377588 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x684c1e88 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x685fe55d regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x68850da4 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6885eda5 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x68aeded2 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x68c84409 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68d2ebeb rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x68d363d2 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x68ecb0cb crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6902ebb3 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x690d2013 device_move +EXPORT_SYMBOL_GPL vmlinux 0x691ae3cd ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x691d30f2 of_usb_update_otg_caps +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 0x6946f646 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x6959a88e perf_tp_event +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 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x69917914 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x699466e5 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x69998a49 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x69e5a1c1 unregister_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0x69ede26f of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a3fe6f7 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x6a4cc334 kvm_release_hpt +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a511e56 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a7359b8 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x6a793084 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a90fe87 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x6aa349c1 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x6acb8d84 ppc64_caches +EXPORT_SYMBOL_GPL vmlinux 0x6ae00372 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x6af4ceb0 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x6afd3845 pmf_do_functions +EXPORT_SYMBOL_GPL vmlinux 0x6b0526f9 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x6b07b66f bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x6b1e7763 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b34be03 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x6b54db9a zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x6b62b951 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x6b6a48cf kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6b72a951 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6bba5265 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x6c035efb rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c0ffc0a pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x6c1bf268 pmac_i2c_get_bus_node +EXPORT_SYMBOL_GPL vmlinux 0x6c235a3a sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x6c338c00 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +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 0x6c96c3db ata_port_desc +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 0x6ce8e63a usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x6cf09a0a rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x6d2f4bdb blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6d847d3b register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6d95e07f pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6dbccd9c posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x6dc06149 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x6dc5c32c ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x6dd130f4 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x6dd33d2c regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e22a04a regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x6e379526 kernstart_addr +EXPORT_SYMBOL_GPL vmlinux 0x6e4cdfa2 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x6e4e6658 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x6e51c4c8 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x6e6d1eb4 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e829cee __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8b5952 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x6e99f5ef srp_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x6ea89407 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6ec06d9d devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6ec92b28 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x6ed0850b regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6ee1f44d eeh_add_device_tree_late +EXPORT_SYMBOL_GPL vmlinux 0x6ee218c4 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x6ee7b8ae kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f34dca3 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6f370f47 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x6f519879 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6f70b463 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x6f71b9ca inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x6f75fed9 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x6f77ef40 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6fad8433 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff1f837 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff77774 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x6ffe7e56 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x70125a63 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x7036c8a9 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x70479dfe clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x70639142 irq_set_chained_handler_and_data +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 0x70d8a8bc pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x70ebd0be rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x70ef453d __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7160e54b dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x7160fdf2 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7173b32f usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x7180c994 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x71be1028 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71e30452 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x71faad90 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x72386ae8 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x72439094 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x726bcf30 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x726d8553 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x72700035 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727d680a securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x7286fd89 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x7295e412 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x72a4b10e usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x72b266a3 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x72e8cde3 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x72eb5102 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x731689cf tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x7319052b platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x7349c235 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x7362fb76 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x7381818f each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x7396198c devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x7399df15 bpf_prog_put +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 0x73dc3cd3 dev_pm_qos_hide_flags +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 0x73f09a8d pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x73f48c68 hash_page_mm +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743a6863 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x74460096 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x745a4ab8 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x74669951 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x7471aeaf pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x748f1cc3 serial8250_release_dma +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 0x74d47142 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x74d6c056 device_property_read_string +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 0x75470e1e devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x754772b9 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x755525ab pci_ioremap_wc_bar +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 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 0x760d62b5 ipv4_redirect +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 0x7655995f hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x765e1e86 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7667b9b1 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x766d4901 blkg_prfill_stat +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 0x76973042 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x769dfebb gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x76affcaa regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x76c010db blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x76e1650e serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x76f4495a ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x77009a0f xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x770ffeed inet_twsk_put +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 0x77480be8 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x775c2cf7 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x777ea5a1 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x77972eb6 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b52ce8 cbe_spu_info +EXPORT_SYMBOL_GPL vmlinux 0x77ce4eee regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x77d88182 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x77e1627b ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x77fb4eba raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x77febdb8 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x78342a90 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x7840aadb wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785e1535 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x786fa945 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7873406f usb_hcd_check_unlink_urb +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 0x78ad4cd9 of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78bb3c6e ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78cf6b45 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x78d9a68a wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x78dad6cb ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x78e6a7fe xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x78e73d62 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x79182fa5 ata_sff_irq_on +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 0x7967ff26 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x796df0ad bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x79795b57 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x79893d5f fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x79b843b3 device_store_int +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 0x7a20c08b sysfs_notify +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 0x7a3914a2 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7a499f0b ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x7a4c4f7e net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x7a79bc67 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x7a8025e3 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x7a877e0f netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x7a8d548c kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x7a932265 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7acb85b2 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ad014f5 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x7ae0a280 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x7afdced0 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b25dd63 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x7b2fc1fb regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7b3ebc7d ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x7b43e5c1 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x7b59381c filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x7b5af0e5 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7bba3665 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x7bde758d ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x7c29ca73 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x7c378043 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x7c37bc89 pseries_ioei_notifier_list +EXPORT_SYMBOL_GPL vmlinux 0x7c3bea94 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7c9fa978 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x7cab85bb blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x7cb04467 devm_regulator_bulk_register_supply_alias +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 0x7cfaca44 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d2b9162 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7d42a094 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x7d4ccfc5 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d8709f3 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dabb594 xfrm_output_resume +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 0x7dcddbbe user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddf0e3d pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e260c63 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x7e33bdb0 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x7e383c07 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e912aee vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7ebc8158 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x7ebdfa4f dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x7ed55f03 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x7edf8fce get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x7eecd12c crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x7efda77c tty_ldisc_ref +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 0x7f2a5396 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7f419a57 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x7f46a4d1 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x7f52b6b4 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7f52c522 ps3av_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x7f7055dd arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fa2346b pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x7fbcd664 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x800a0870 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x800c11bc cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x8010dbec __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x80278bce thermal_cooling_device_register +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 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80a1c877 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x80b3682b wm831x_set_bits +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 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 0x819d1728 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x81a0c52a module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x81a1ae43 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x81a31868 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x81c8c3f6 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x81d95a0b device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x81e0403e inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8231f6ce __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x824aa3f6 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x82558914 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x82574ce7 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x826c007e inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x8278af9e crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x8291fada init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x82a8b8d8 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82ecd622 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x82fc36be crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x830f5f67 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x8331815a trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x8349421e relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x83700a0a devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x837af16f nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x837ceea3 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x83850b56 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x839eb590 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x83a64b88 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x83aa117e crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x83e13fcb spu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x83f4a9cf get_device +EXPORT_SYMBOL_GPL vmlinux 0x83f8c2e5 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x83fa687b devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x840e1142 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x840f9cee blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x8489a1dd iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x848d066e copro_handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x8491d0c7 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x849ebc2f usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x84b14b0a pmac_i2c_match_adapter +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84b57a22 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x84d0381e md_stop +EXPORT_SYMBOL_GPL vmlinux 0x84ed54d8 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x84ee2aba unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x84f3e095 kvmppc_h_get_tce +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x850d53ce genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x85257e9d ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x853a16cf devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x853b1189 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8549d57e devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8557e855 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x856e781c iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x8574d6a6 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8586b3ce transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x8589f433 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x85977f3b powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x8598f5a2 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x861a51e6 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x86535173 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x865d3d99 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x8681b732 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x8685c512 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86a1235a debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x86d6f666 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x86dc935f debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x86de702a md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x86e59809 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f62649 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f891a5 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x871b4cdd power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x87374d60 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x873c752b of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x8745ca79 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x8786c732 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x87a49b5b pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x87aed618 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x87d5ae44 eeh_add_device_tree_early +EXPORT_SYMBOL_GPL vmlinux 0x87e75213 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x88011848 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x88061075 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88211fdd wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x882f5330 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x88321af1 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x886ad504 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x886b8916 pmf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x88819e58 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8897c6db handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x889fb545 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x88a22528 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88bb2cc0 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x88c181fd regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x88cb8e83 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x88cf2fe6 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x88f628f3 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8903ff44 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x890f4cda platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89388d24 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x894a933c mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x8961b0ee digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x898686de anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x899ed4de pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c96d8e ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x89d55966 blk_end_request_err +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 0x8a70d5e5 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x8a737a7e gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x8aa29022 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x8aaf6e20 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8abe383d ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x8ac76179 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x8af0f2db of_css +EXPORT_SYMBOL_GPL vmlinux 0x8af3c4d1 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x8b012cfe of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x8b18d3f1 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x8b45d0e2 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8b78e2ab usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b8157f3 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x8b854e40 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x8b866eae vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x8ba9ddf1 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x8be60e76 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x8bef5f2a of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x8bf51dbe register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x8bfdcc19 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c068b42 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x8c4f537d dax_do_io +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 0x8c758bef ps3_close_hv_device +EXPORT_SYMBOL_GPL vmlinux 0x8c89d948 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x8c9b06e2 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x8ca6e9c3 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x8ca8fece macio_find +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3cb429 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x8d6f13d2 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x8d85367f smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x8d85b252 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x8db36c11 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8dfe736b spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8e260f28 kvmppc_do_h_remove +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e392107 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x8e39d7a1 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x8e3ab3fb pmf_call_function +EXPORT_SYMBOL_GPL vmlinux 0x8e6fc066 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x8ea0ef97 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8ea14250 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x8ec6edfb key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x8ecbde43 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x8ecedcd7 spu_invalidate_slbs +EXPORT_SYMBOL_GPL vmlinux 0x8edfbae6 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x8eed4df2 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f149fde ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x8f1b3d24 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x8f1e886e rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x8f33e007 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x8f3dfecd devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x8f461fcc usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x8f6c4fd4 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f795cf7 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x8f99286b irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x8fbe140a platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8fc1621d __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x8fd840cd percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x900d1cab rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x901c8157 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x902aace5 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x903b5dfe ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x905490a7 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x90652898 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x906e2d06 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x90930583 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90c201a1 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x90ff6538 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9108f855 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x91106eb9 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x91150b7f spu_priv1_ops +EXPORT_SYMBOL_GPL vmlinux 0x911787eb skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x91312a80 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x91421e73 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x91481333 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x91680710 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x9189dcc5 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91a13105 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x91a56821 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x91a91dda sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x91c43f8d fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91d60fcc tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x91ef528f dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x9202f26b crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x922d3dea arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924fa7b4 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x9276283f __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x927d6bd0 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x92840d26 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x92da4b94 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +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 0x93516049 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x9365fafc rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x938cc3b3 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x938f2b68 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x93c9e6a8 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x93daaab7 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x941c1968 pcibios_find_pci_bus +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9423377a scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x9448464d power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x9451b9f1 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x94559c96 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x94652787 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a667e2 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x94aa1538 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x94ce7e6b usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x94d2d34f debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x94d972b7 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x94dc6fa7 kvmppc_add_revmap_chain +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 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953a13f7 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954988b4 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x954e90c8 cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x9566b67c dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x957a5c6e __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x957b8263 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95cfe0d9 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x95e8b8e4 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x95fd3e9b ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x965291a8 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x965a45ef device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x965a78d5 threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0x96750f31 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x968ff064 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x969a3ce2 ata_base_port_ops +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 0x96cbfabd dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x96d16dc0 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x96d66325 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x96d6ac02 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x96d840fb ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x96f3e5f1 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x9712b176 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x971acd4c component_add +EXPORT_SYMBOL_GPL vmlinux 0x972d71d0 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9735f061 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x977ef7c4 of_irq_parse_pci +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 0x97bff90b crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97ea8ab6 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x97fd1631 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x9801ed0a trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x9811b6f7 iommu_capable +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 0x983cf055 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985e4f67 unregister_spu_syscalls +EXPORT_SYMBOL_GPL vmlinux 0x98724052 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +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 0x98c21b68 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x98c8489f rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x98d68cfc device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x98dd44d8 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x98e796c4 dm_get_rq_mapinfo +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 0x98fcaaf9 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x99368d65 kvmppc_update_rmap_change +EXPORT_SYMBOL_GPL vmlinux 0x99468a5c usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x994b9a97 gpiod_get_direction +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 0x998b0b93 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x99a5f9ae pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99be4d3c leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x99c6cbca regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x99cd4691 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x99d5e6f1 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x99ecf44b tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x99f1ff0b skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x99ff8d08 opal_invalid_call +EXPORT_SYMBOL_GPL vmlinux 0x9a04dd4e rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x9a0f1a9b fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a3623dc of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x9a41eed5 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a54a255 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x9a6d8a5a pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a948182 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9ab06b7d __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x9ab8b3cf sdio_readw +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 0x9af95de6 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x9aff84dc __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x9b0fd699 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x9b3141ec ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x9b3e90ad ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9b448750 ps3_mmio_region_create +EXPORT_SYMBOL_GPL vmlinux 0x9b600159 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x9b6b4c56 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x9b70af18 scom_controller +EXPORT_SYMBOL_GPL vmlinux 0x9b83f741 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x9b856687 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x9b90877f pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bc63f77 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9bcf3258 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x9bd56708 device_create +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf49634 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x9c658e36 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9c6c4d2e fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x9c8988ae srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x9c8fe2ca usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x9c9a25c0 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x9c9af083 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x9cb04186 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc883c6 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x9ccc8f7e dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x9cf9640a security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x9d7e95f6 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x9d7ff70a phy_put +EXPORT_SYMBOL_GPL vmlinux 0x9d84ea8d trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x9d95d787 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x9d9f9471 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x9dac663a handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9df3e6fc i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x9e23edbe simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x9e2c9c4c pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x9e2f6d26 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e5504ff of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x9e603f80 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x9e64d55a usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x9e7a75bc subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x9e830f3a regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x9eab2775 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x9eb109f1 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x9ed08ad9 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9edc6451 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x9ef5c639 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9efdb403 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x9f03c5ae usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x9f1d5dc1 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x9f2c6544 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x9f36fb1f rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x9f3d0b7b crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x9f74e4c4 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x9f7d28c6 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x9f8a5a28 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x9fa8096c bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x9fb1cf84 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa026cd1f md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xa035465d pmf_do_irq +EXPORT_SYMBOL_GPL vmlinux 0xa03f6590 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xa04eee6b of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xa0590ca8 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xa06fb7b0 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xa071e996 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xa0764553 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xa08ae6ec ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xa091da4d devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xa0987b54 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa0a27df5 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0xa0a7d21f usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa0b9113c regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xa0cf0ee0 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xa0fc767a crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xa104ae66 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xa112574a dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xa126b0e9 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa1515d9b sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa15546bf pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1b00be0 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xa1e2d1f8 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1f65cb1 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xa1ffae3d blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xa214e969 get_slice_psize +EXPORT_SYMBOL_GPL vmlinux 0xa219a936 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xa22cb0a5 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xa23bb099 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa2636755 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa264762e pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa276950c regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xa2916442 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xa294f485 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xa2a3f01a eeh_pe_reset +EXPORT_SYMBOL_GPL vmlinux 0xa2a6ae76 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2c5838a ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xa2c5c430 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xa2c67294 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xa2f1ff31 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xa2fd6ab7 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xa2fd99bf of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa31e467c udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xa3425fff regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xa358d80f usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xa35ae3b6 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xa384918b pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bf071e pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xa3cff1aa sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xa3d5b2c4 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xa3d73ff2 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xa3dcb354 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xa3de1490 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xa3e163d2 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xa3e16693 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3f491f5 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xa4209f5d kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xa421b10e gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xa422eb20 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xa4273b11 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xa44d5fb5 smu_get_ofdev +EXPORT_SYMBOL_GPL vmlinux 0xa44f6a46 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xa45d616b wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa4758bbc class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4881e23 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa4b8702a register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xa4bd50f1 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa4c00321 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa4e3df3b rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xa4e457f2 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa4ec8c42 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa4ef9de9 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xa4fdf1f9 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xa508190b debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xa5495371 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xa5546deb blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xa55ae653 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xa56a7b2d bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xa5738b05 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xa577aced mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa5a06687 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5b0b024 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xa5da1202 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xa5ed2f01 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xa61458d0 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xa61d150a usb_get_phy +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 0xa64d1abd single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xa65b5407 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa66bdc08 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xa6a76541 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b3114a __class_register +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6eded6c opal_xscom_read +EXPORT_SYMBOL_GPL vmlinux 0xa721bc3f opal_rtc_write +EXPORT_SYMBOL_GPL vmlinux 0xa73457e6 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xa7474ded rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa74cbbb6 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa75dd99d dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xa75def56 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa761a4da device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xa76cf62b ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xa7b65c9e __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xa7b9e426 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7d60eed do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xa7d9c235 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa7f7ef4a tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xa7fedd15 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa8104d6c dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xa82644e0 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa8275f94 cpu_remove_dev_attr_group +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 0xa855be07 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xa86098fd fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xa8650f16 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xa87214e8 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xa892918d blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8c03ba1 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xa8cf9632 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xa8db81c3 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xa8efa09e cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93b24ea fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa96bd992 edac_get_sysfs_subsys +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 0xa9a797d1 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xa9aa1b00 opal_poll_events +EXPORT_SYMBOL_GPL vmlinux 0xa9c646f7 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9fa4d65 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa9ff408a pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xaa2a0643 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xaa4c9675 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xaa98752d mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaac6c97c yield_to +EXPORT_SYMBOL_GPL vmlinux 0xaaeae69b queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xaaf1ba0f gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xaaf201ae iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xab00febc shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab2b243d ps3_irq_plug_destroy +EXPORT_SYMBOL_GPL vmlinux 0xab3ce5e5 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xab4fed06 crypto_alg_mod_lookup +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 0xab657122 pmac_low_i2c_unlock +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab965d9d blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xab9cf0ab set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xaba2db15 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xaba66ac2 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xabb1d6ab mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xabb56f4b usb_hcd_pci_pm_ops +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 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 0xac6b4522 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xac72772a nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xac797378 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xac7ac857 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xac834c16 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xac84a266 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xac8e5739 phy_get +EXPORT_SYMBOL_GPL vmlinux 0xac946ce6 tcp_ca_openreq_child +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 0xad015ede iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xad280fc7 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xad4ee47f of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0xad506b0b of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xad583bcf device_register +EXPORT_SYMBOL_GPL vmlinux 0xad6dacb5 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xad9d0089 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xadacdddb subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xaded9da1 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae292ba1 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xae5be8dc pm_generic_poweroff_late +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 0xae96ba76 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xae9e36d1 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xaec1ee91 of_get_nand_on_flash_bbt +EXPORT_SYMBOL_GPL vmlinux 0xaec9921f hash_page +EXPORT_SYMBOL_GPL vmlinux 0xaecb8929 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xaef4129a regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xaef8d159 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xaf05c7b8 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xaf279112 opal_leds_set_ind +EXPORT_SYMBOL_GPL vmlinux 0xaf470e8a devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xaf51cae8 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xaf7297f0 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xaf7ca103 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xaf85f46a device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xafb5e22c rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present +EXPORT_SYMBOL_GPL vmlinux 0xafd43978 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xafde1d56 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xafef8155 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xaffbb1a8 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xb00332c5 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xb011e200 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xb038ff7a srp_attach_transport +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb04df886 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xb059c33f __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xb06d0d99 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xb0a0a994 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb0a535ba tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xb0ac361a sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0d8c7a0 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xb0e58b98 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xb1150666 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xb123d939 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xb137d0f0 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xb13e08e2 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xb13f4e10 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb14744c1 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xb149b6f2 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xb14e44c2 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xb14ebe1f __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xb166fc2b regmap_write +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 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb209eab8 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22429e6 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xb24f58b0 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2851c8b xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xb2a41bf4 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xb2b33703 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xb2b86063 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xb2ca396b init_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xb2d70a26 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xb2df653d crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb310a2e5 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb35cd694 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xb3a8aeae kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xb3a90770 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xb3bef81e rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xb3cfe9dc subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xb3dd162a of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0xb3ee4775 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xb42e8951 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xb4388769 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xb4836ae2 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb48b16fa ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xb4b7ee63 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bc171c sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb511e338 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xb5158919 split_page +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb53777c7 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb53b22f7 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0xb545672e console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xb56178ec cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xb56da729 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0xb575ef93 irq_find_mapping +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 0xb5fff5a8 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xb6054174 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb643c250 xics_wake_cpu +EXPORT_SYMBOL_GPL vmlinux 0xb6663881 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xb66daab1 crypto_enqueue_request +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 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6bc007a spu_sys_callback +EXPORT_SYMBOL_GPL vmlinux 0xb6bcb6c1 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb6d9e1f4 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0xb72e05d1 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0xb74ecf07 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xb754033c dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xb76ccd08 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xb76eac10 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xb772ab8e ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xb77c5736 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xb781f6e9 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb790c4ef mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xb7f4b8d0 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb800295f __put_net +EXPORT_SYMBOL_GPL vmlinux 0xb805623c set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb80af3d6 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xb816eb32 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xb8170985 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xb81daa49 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xb82f8426 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xb84af38d pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xb84b1aae ps3_event_receive_port_setup +EXPORT_SYMBOL_GPL vmlinux 0xb8825a21 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xb8838092 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89ce2b2 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xb89fb2bc cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb9023c44 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb93bc484 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb94de068 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb95b64b6 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xb97a79f0 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xb9a61cda device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xb9aec17e scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bc8f3a usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xb9c30b13 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9e07297 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xb9ed8735 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xba0c91cf adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xba156fb0 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba3fc59b tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xba6038d5 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xba72b4b2 device_add +EXPORT_SYMBOL_GPL vmlinux 0xba915b87 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbaa31770 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xbaa80d7c usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xbaac0596 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xbab1119d tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xbab1fe95 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbad3d799 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xbaf6c39c clockevents_config_and_register +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 0xbb205d37 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xbb296a49 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xbb32f772 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xbb3552d6 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xbb49aafe spu_64k_pages_available +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbba1858d unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xbbc6fca4 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0xbbcc09fe hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xbbe557be iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0xbbf5afed fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xbbfe5397 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xbc00ea52 cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xbc0818b4 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xbc08467d tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xbc12dbc4 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc288838 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xbc2f0ecc i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc8c80e7 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xbca1a954 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xbca9c9f0 eeh_pe_inject_err +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcbd59b0 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd8c9dd i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xbcdccc63 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce2a267 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xbcf04da6 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xbd05524f i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xbd1dfc0c srp_rport_del +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5a231e device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbdad7f33 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbdcc3155 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xbdceff7d rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xbdcf3c43 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xbdd07cd3 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd945e8 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xbde5c194 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbdeb598e unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xbe158a89 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe1f8673 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xbe2085e9 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xbe3f7989 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xbe471cdf opal_rtc_read +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6f8fd1 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xbe73de83 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xbe78e866 debugfs_create_u8 +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 0xbeace41c ipv4_sk_update_pmtu +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 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbefb3576 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf0b4581 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf214314 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xbf438396 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xbf5cd27c fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xbf752f81 fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfd0066a device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xbfd6a794 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xbfe1274d ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc01a82b9 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc03a179c da9052_disable_irq_nosync +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 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 0xc1259290 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xc128c47e crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xc128ee72 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xc15cde49 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xc1683122 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0xc16efb4d crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17930cd gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xc19217ee of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xc1bc3b85 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xc1e99586 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xc1ec0c85 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xc205c146 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xc2113e9e locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xc213b8e3 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xc2140726 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22a4f79 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc22e4750 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xc280244e rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2858dac sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xc2be66ae bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc2cb4bc9 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xc2dd4937 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xc2e4c652 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xc30a789f max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xc31a8cd9 find_module +EXPORT_SYMBOL_GPL vmlinux 0xc3221b2c reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xc325e68d ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc33d41f0 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc350600e pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc387546b pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc3988f1c register_user_hw_breakpoint +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 0xc3a91b83 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xc3ad3149 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xc3b81e24 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc3e8babe nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42a6556 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xc449bcd4 napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc46b0de7 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc4747d12 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc48bade6 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xc4a16a61 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xc4bf437a __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc4cfff8d ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4d309be xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xc4d5b857 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xc4f01f0b device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc50416ff i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xc514a1b2 shake_page +EXPORT_SYMBOL_GPL vmlinux 0xc51c26e9 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xc533ebfa exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xc53f1489 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc553a77d devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xc574e029 usb_hcd_map_urb_for_dma +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 0xc5b3c423 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xc5db635a rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc5ddd1c1 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xc5e79579 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +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 0xc6301726 dma_buf_begin_cpu_access +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 0xc66248ba inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66c2311 ps3_vuart_irq_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc66f035b of_pci_get_host_bridge_resources +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 0xc6ae4b34 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xc6c69a8f opal_flash_write +EXPORT_SYMBOL_GPL vmlinux 0xc6d8f5c2 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xc6e123c3 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc6e2f79a percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc71f995a inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7528314 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xc769bbb8 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0xc76a088f crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0xc7752e19 regulator_bulk_enable +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 0xc7b9252c ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7d5154b skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xc7d9cdb1 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc7e26000 pmac_i2c_adapter_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7ebd824 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xc805a1fb usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xc81fcfb1 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc836fa9a __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xc879d200 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc881fc97 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xc882fe8f mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xc894c717 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xc89542e2 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8a21109 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xc8a3847e of_get_dma_window +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 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc90432cb percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0xc9086ff5 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc94ae6f3 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc970c82c __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xc973bafd ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc99de1bc sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xc9c49e12 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xc9c72bf7 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xc9ce9009 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xc9d5f5ee invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xc9e01aef __add_pages +EXPORT_SYMBOL_GPL vmlinux 0xc9e340ec phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca11c3b3 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xca3d5f94 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xca65000c pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xca7210bc devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca791d49 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +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 0xcaf2c903 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb3b56a0 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb49c4d4 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xcb5126e6 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xcb5a9866 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xcb89f3fe rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xcb953d9b usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xcb95f0bb sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xcbb659cc fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xcbb9d649 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xcbccd8ec tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbeec7c3 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xcc0d746d trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc20bccd tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xcc2cf7c7 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xcc493360 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xcc6280a9 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0xcc6d9df0 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xcc843808 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc8ff376 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xcc93e9d8 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xcccc20d6 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd77c7a usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xcce69f76 flush_vsx_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xcd022a02 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xcd31a144 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xcd3e7721 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xcd4d935a led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xcd53838e get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xcd693a41 ata_scsi_port_error_handler +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 0xcd9dc929 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdcff314 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xcdd0ef77 pmac_i2c_get_adapter +EXPORT_SYMBOL_GPL vmlinux 0xcdd97540 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xcddbaee3 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0xcde3de38 flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xce394103 iommu_tce_put_param_check +EXPORT_SYMBOL_GPL vmlinux 0xce409554 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xce448814 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xce5aae74 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xce60f4d0 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xce65cf03 udp6_lib_lookup +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 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcefb2900 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf58f6e7 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xcf5f5a3d pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xcf78deba arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xcf7a038b blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xcfaa0986 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xcfab1205 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc71563 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xcfe0d924 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xcfeb90b9 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd0005021 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd002aa1a usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xd003f3f1 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd00bc3bb __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xd01afd3f opal_tpo_read +EXPORT_SYMBOL_GPL vmlinux 0xd01d9ec9 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0553fb7 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd097910d sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0xd0a0f310 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xd0a9571d alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xd0ab9003 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xd0bce181 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0e54277 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xd0e8bfd3 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xd0f81420 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd101125e spu_management_ops +EXPORT_SYMBOL_GPL vmlinux 0xd10a2531 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xd10c3caf of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xd1177b48 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xd12345cd blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xd1289150 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd12f7354 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xd133c0e1 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd13b6e7e gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xd1488f45 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd176a01f adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd19e28e2 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xd1b30ff8 pmf_register_irq_client +EXPORT_SYMBOL_GPL vmlinux 0xd1c4f0a4 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xd1ee69ce gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd20c31fe pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd220bcdc inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0xd227ba9b usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd2673900 fsl8250_handle_irq +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 0xd2d9678c usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd3073bd8 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xd32e8565 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xd353460d component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xd376b5a3 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xd399f000 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xd39c3019 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3bb9b3a kvmppc_invalidate_hpte +EXPORT_SYMBOL_GPL vmlinux 0xd3c86332 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xd3cdbdae __devm_regmap_init_spi +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 0xd4065436 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd42caca3 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd43cc893 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd442d44d dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd4515b76 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd45d0c3c rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xd4706fcd hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xd48fe532 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xd49ebb1a seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xd4a590c7 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xd4a65822 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d34b93 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd4e70eb0 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xd503cc00 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xd520f4bf fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xd5542707 rhashtable_insert_rehash +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 0xd5866454 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xd586aff6 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xd5925560 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0xd5a7fc28 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5ce8f1f devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd5dd7811 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xd5e20a71 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xd5edfb25 flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd61da98c inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xd61f399f fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xd6328982 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xd642ba40 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xd6693c78 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0xd671cb6e spu_switch_notify +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd679942f ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd6956cb6 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token +EXPORT_SYMBOL_GPL vmlinux 0xd6b5f631 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xd6b73f52 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0xd6bcdb8d ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xd6cd6158 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd6cf6986 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xd6fd7b64 extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd70283ae find_get_pid +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 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd79303b8 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xd79ba476 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd79da372 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xd7a609b3 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xd7a8b025 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xd7b9a651 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xd7c8850b tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xd7ce29da rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xd7d0d4f2 ip6_datagram_connect +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 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 0xd83ccb9a scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd8498f4d ps3av_mode_cs_info +EXPORT_SYMBOL_GPL vmlinux 0xd84c281d ata_eh_freeze_port +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 0xd8af3067 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xd8becf30 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xd8c08023 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xd8c1d535 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xd8db417c pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0xd8f273b2 sdev_evt_send +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 0xd95be452 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xd95d74e2 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96e88d4 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xd9726214 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd97878a7 mm_iommu_preregistered +EXPORT_SYMBOL_GPL vmlinux 0xd99be39e __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xd99fe843 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xd9a941a1 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xd9b7df4c usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xd9bc2d08 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xd9c4c66a devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd9d07dd6 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xd9df1e82 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xd9e0ff1b regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable +EXPORT_SYMBOL_GPL vmlinux 0xda484312 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xda6080f5 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0xda70ebcc fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xda720eaf dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xda8d3c8a proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xda942fff usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xda9cb6b2 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xda9e468b usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xdad8840e __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xdadd5d04 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaebbf19 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf868d9 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xdaf9af8e list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xdb0ac13b ps3_compare_firmware_version +EXPORT_SYMBOL_GPL vmlinux 0xdb22aecc tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xdb38c923 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb4584ab ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xdb4971e5 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0xdb62a7ab devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xdb66dbfd rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xdba1de6b blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xdba45af0 __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xdba73430 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0xdbba88ea cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xdbf017b9 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfca539 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xdbfddef8 ata_dev_set_feature +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 0xdcd77cbd thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdcdb0f09 pcibios_add_pci_devices +EXPORT_SYMBOL_GPL vmlinux 0xdce424c3 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xdcf9ca57 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xdd043eea ps3av_get_auto_mode +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd20289e netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xdd2ca192 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd55d3a9 spu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xddbeeb19 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc2d8a1 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xddc8866e md_run +EXPORT_SYMBOL_GPL vmlinux 0xddcf292c tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xde081a36 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xde16dad8 pmf_get_function +EXPORT_SYMBOL_GPL vmlinux 0xde32ce7f attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xde48a168 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xde4bb73a irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xde627336 pmac_i2c_get_controller +EXPORT_SYMBOL_GPL vmlinux 0xde76e10a scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xde7a23a1 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xde84c249 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xde922b88 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xde96d3ac gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xde9f4ca8 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdeb3a382 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xdec61bbe __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xdeedfca0 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xdef7893a usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xdf090914 __dev_forward_skb +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 0xdf1909f7 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xdf2ca003 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xdf500d0c crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xdf5a6c46 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xdf6c3e5e of_node_to_nid +EXPORT_SYMBOL_GPL vmlinux 0xdf712472 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xdf80476d trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xdf80576e regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xdf858fbf of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0xdfb1085a cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xdfb546b4 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xdfb9495b ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xdfe9c0e9 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xdffccc20 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe011f817 ps3flash_bounce_buffer +EXPORT_SYMBOL_GPL vmlinux 0xe01234a0 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xe021eb1d pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put +EXPORT_SYMBOL_GPL vmlinux 0xe0665876 sysfs_add_device_to_node +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe07a20fd device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0928358 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xe0cb8474 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xe0fdbe9b usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xe1038522 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xe10ebe5f serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xe123c7da uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xe1343f02 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xe13de51e platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xe1421cce __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xe14a474a sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xe16603f1 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xe171814c register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe18a5bd8 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe19fc092 ps3fb_videomemory +EXPORT_SYMBOL_GPL vmlinux 0xe1a7cd1e clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xe1b47180 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c3c88d regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xe1c8892c wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xe1dc4ae0 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xe1df5d0f nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xe20c8f93 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe25e474b serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xe27cd1b8 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe2cc0442 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe33f13e1 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xe360ac80 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xe37ed270 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xe3c1c58b ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xe3ced1e4 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xe3d7750e btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xe3f00109 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xe3f6f159 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xe3f87701 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe426310a rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4329ad6 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe43856dd devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xe45f4fa1 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4604d2d scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe46fd2c3 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xe4717bb5 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xe47b9d4a bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe491043e pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49a1768 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xe4a02654 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xe4b3128b inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xe4b683a1 ping_unhash +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 0xe4d88ee6 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xe4ea944b pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe4ecab6f sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xe4f588c4 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0xe50f01ce ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe51c040f register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe540364c eeh_add_sysfs_files +EXPORT_SYMBOL_GPL vmlinux 0xe5540302 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe586c6e9 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5a391d5 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xe5bb670c ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xe5ef4db7 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xe5f1365e sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xe62d5ae9 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xe62d6812 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xe63e7dfa pci_add_dynid +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 0xe681a838 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xe684df84 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6979216 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xe69a02b0 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xe6ae5442 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6ca7362 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xe6d32922 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6edc2b4 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe747be4b led_classdev_unregister +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 0xe769efa0 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe7917548 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xe7b6ced9 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xe7c23b1a of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0xe7cbab7a kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xe7db4b2e sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe8128da8 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe82a4b66 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xe837e20c debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe8504d0f simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe896ced4 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe8b890e5 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xe8c91ee6 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xe8d3a2de iommu_take_ownership +EXPORT_SYMBOL_GPL vmlinux 0xe8d42ebd pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xe8f36b76 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xe8f7628e scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xe8ffbff7 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xe90641cd ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xe90d1d19 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe9167a63 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xe91dfecf skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xe9213ed0 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe927d0ff netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xe92a53ef spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xe92bcf8d cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction +EXPORT_SYMBOL_GPL vmlinux 0xe95839b2 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe97e8b7d dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xe97f590a xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xe98006eb trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xe985f427 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xe9acde32 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xe9b60c49 __online_page_increment_counters +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 0xea042ad6 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1c19ff pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xea3faa6b crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea42677b pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea66c8f3 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xea69408c con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea94db15 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xea9a1bfb crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xea9a983c sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xeabc72c8 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xeadcb17d unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xeaecf0e2 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xeaff6623 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xeb016886 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xeb060640 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xeb0c218d gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xeb3dceb4 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xeb58d544 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xeb629581 rhashtable_walk_exit +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 0xeb8ae736 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xeb92b6fe regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xeb9593d8 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xeb9f1682 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xebb24f32 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xebccb975 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xebd212f3 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebf2a062 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xec118831 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec4b24fd usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xec606e98 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec7324ca ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xec853f01 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xec8ef98f irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xec9bc7b8 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xecbcb4a6 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xecc47f7f pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xeccfdd04 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xecdd2993 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xecfcfc91 drop_cop +EXPORT_SYMBOL_GPL vmlinux 0xed30c40c regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xed34d820 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xed386918 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xed6ffb7f phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xed8dd878 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xed991057 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xedbcd671 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xedc32e2c pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xee349478 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xee34a5a4 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xee34f80a of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0xee5ae86c of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL vmlinux 0xeeac4b62 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xeec515a8 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeed4427c wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeef87814 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xef10c1ae blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xef1e4117 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xef28bab9 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xef2ddb1c disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xef2efeb8 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xef4e815d dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef78a92c extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa8f2b3 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xefbb6795 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xefcdaaf2 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xefe789d9 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf043aa0c irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf079d9d2 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xf0824f3a sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xf0846be5 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xf098dd15 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xf0a4ca6c regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xf0b1fca5 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xf0bcabb0 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0xf0c27c49 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0eabba3 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf13ebe33 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xf140a89f spu_setup_kernel_slbs +EXPORT_SYMBOL_GPL vmlinux 0xf14aa2b6 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf14f0480 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xf182e12a nf_queue_entry_get_refs +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 0xf1b3007f devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b93f74 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xf1c0a2d3 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xf1c645e1 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xf1e47b55 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xf1fde4dd hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf1fff391 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xf206431b pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xf2181d06 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf24c0b55 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0xf2575324 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xf26fc025 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf282c42b dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xf28891c0 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xf29b6b6b gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2bdb46a tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xf2cd15be blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xf2cf602f dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xf2e13709 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xf2e1acbf realmode_pfn_to_page +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 0xf3246cfc power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xf3251c58 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33cf877 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xf33e5af3 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xf36d5b2c disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xf376e519 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xf378f7b2 usb_submit_urb +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 0xf3bc1143 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3fce569 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xf409bfdd __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xf4290234 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf4446a4b crypto_register_shash +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 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4a01385 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xf4ac3d8b pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xf4b533dd pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xf4cf9173 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf4e53164 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf50dfd22 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf528d16f pwm_config +EXPORT_SYMBOL_GPL vmlinux 0xf52cb31c phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xf5326761 bpf_prog_create +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 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf55d4f78 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xf589dfba hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5a80dce usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xf5b428b2 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xf5c0cdc0 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xf5e1096a ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xf5e87ee5 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xf61ab990 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xf62d5abd pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6346ff1 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xf643da82 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xf6637d20 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf685b43a dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf690faab pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0xf692d439 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xf6b0b4f6 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xf6c54cc8 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6dcabd5 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xf6e3e55c scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6ec3c70 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xf6f5863e device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xf70b7640 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xf7373ccf pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xf7377bef agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xf73de951 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xf73f3f4c ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xf745c397 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xf7710452 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7b8eb12 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xf7b8edb2 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xf7c1056c ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xf7f380ec irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xf826eac8 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf837e0eb unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf85f7766 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf893a4e2 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xf89c3fb4 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xf8a2a4be rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xf8b1ae48 regulator_unregister +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 0xf91ba35e sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xf926deaf nf_ipv6_ops +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 0xf94bbe7a ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xf9506877 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf9769838 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xf9800f0f usb_sg_wait +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 0xf9a719a0 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9ccdd52 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xfa08b5e6 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xfa0a78c9 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xfa139230 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xfa1bb8ca inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa281699 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xfa315a0a power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xfa369241 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xfa3e4beb extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xfa518922 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xfa57d3f5 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfaacec31 regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfabda223 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xfacd0481 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfb25c102 tcp_set_state +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 0xfb6514e1 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb975b84 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xfbaa5250 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbd3a24d opal_message_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xfbe2d5eb bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xfbf62081 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xfbf940c3 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xfbfcdc2b ps3_sys_manager_get_wol +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc24daee default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xfc38cd23 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfc430ffc of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0xfc501ac0 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xfc510583 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xfc61e059 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xfc7afda2 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xfc9937a7 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xfca3429b rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xfcd17576 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfce644d9 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xfcf16303 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xfcfaeb6f usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xfcffb4e1 pmac_i2c_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xfd0473d5 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd12cc1c debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xfd29f78d crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xfd68c3aa tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xfd77689c wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd7ed807 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xfd855eda rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xfd8f2b24 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xfd96ddba bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xfd9bdd50 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfda1781f regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xfda81f1e usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xfdb53332 spu_set_profile_private_kref +EXPORT_SYMBOL_GPL vmlinux 0xfddaca0b fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xfddd285f mm_iommu_ua_to_hpa +EXPORT_SYMBOL_GPL vmlinux 0xfdf01810 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xfdfef750 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xfe108b02 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xfe15f497 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xfe1a8a6f iommu_release_ownership +EXPORT_SYMBOL_GPL vmlinux 0xfe2c90ef ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xfe4b407c __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0xfe59ca3e spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xfe7f7b51 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeac27e5 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xfec5c697 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xfec75c0d platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed8b84b ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0dacff ps3av_video_mute +EXPORT_SYMBOL_GPL vmlinux 0xff1134ba of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xff40dc9c pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff69475c wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0xff701f79 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xff769a85 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xffb6460e fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/powerpc/powerpc64-smp.compiler +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/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-4.4.0.orig/debian.master/abi/4.4.0-97.120/powerpc/powerpc64-smp.modules +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/powerpc/powerpc64-smp.modules @@ -0,0 +1,4368 @@ +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_mid +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ac97_bus +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +aha152x_cs +ahci +ahci_ceva +ahci_platform +ahci_qoriq +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airport +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-ircc +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am53c974 +amc6821 +amd +amd-rng +amd5536udc +amd8111_edac +amd8111e +amd8131_edac +amdgpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcma-hcd +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bsr +bt3c_cs +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chipreg +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_pcmcia +comedi_test +comedi_usb +comm +configfs +contec_pci_dio +cordic +core +cp210x +cpc925_edac +cpia2 +cpsw_ale +cpu-notifier-error-inject +cpufreq_spudemand +cramfs +crc-ccitt +crc-itu-t +crc32 +crc7 +crc8 +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +csiostor +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxl +cxlflash +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_cs +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +denali +denali_pci +des_generic +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9601 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dp83848 +dp83867 +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtl1_cs +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc3 +dwc3-pci +dwc_eth_qos +dwmac-generic +dwmac-ipq806x +dwmac-lpc18xx +dwmac-meson +dwmac-rk +dwmac-socfpga +dwmac-sti +dwmac-sunxi +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +eata +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +ehset +elan_i2c +electra_cf +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f75375s +f81232 +fakelb +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fl512 +flexcan +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fsl-edma +fsl_elbc_nand +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +fujitsu_ts +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcm +gdmtty +gdmulte +gdmwm +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +genwqe_card +gf128mul +gf2k +gfs2 +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-generic +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mdio +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp100 +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hvcs +hvcserver +hwa-hc +hwa-rc +hwmon-vid +hwpoison-inject +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-cbus-gpio +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mpc +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-reg +i2c-nforce2 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pasemi +i2c-pca-platform +i2c-piix4 +i2c-robotfuzz-osif +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i40e +i40evf +i5k_amb +i6300esb +i740fb +i82092 +ib_addr +ib_cm +ib_core +ib_ehca +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_qib +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +ibmpowernv +ibmveth +ibmvfc +ibmvnic +ibmvscsi +ibmvscsis +icom +icp_multi +icplus +ics932s401 +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +ims-pcu +imx074 +imx6ul_tsc +imx_thermal +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_powernv +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irqbypass +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +kafs +kalmia +kaweth +kbic +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvaser_usb +kvm +kvm-hv +kvm-pr +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-powernv +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +liquidio +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +ll_temac +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac_hid +macb +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77686 +max77693 +max77693-haptic +max77693_charger +max77802 +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +md5-ppc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-octeon +mdio-thunder +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +memory-notifier-error-inject +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +mf6x4 +mga +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mmc_spi +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_common +ni_labpc_cs +ni_labpc_isadma +ni_labpc_pci +ni_mio_cs +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsc-ircc +ntb +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvidiafb +nvme +nvmem_core +nx-compress +nx-compress-powernv +nx-compress-pseries +nx-crypto +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_mmc_spi +of_xilinx_wdt +ofpart +old_belkin-sir +omap4-keypad +omfs +omninet +on20 +on26 +onenand +opal-prd +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +pandora_bl +panel +panel-lg-lg4573 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-simple +parade-ps8622 +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pasemi-rng +pasemi_edac +pasemi_nand +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pc300too +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmcia +pcmcia_core +pcmcia_rsrc +pcmciamtd +pcmda12 +pcmmio +pcmuio +pcnet32 +pcnet_cs +pcrypt +pcspkr +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +physmap_of +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powernv-rng +powernv_flash +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +ps2mult +ps3-lpm +ps3_gelic +ps3disk +ps3flash +ps3rom +ps3stor_lib +ps3vram +pseries-rng +pseries_energy +psmouse +psnap +pt +ptp +pulsedlight-lidar-lite-v2 +pvrusb2 +pwc +pwm-beeper +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qcaspi +qcaux +qcom-spmi-iadc +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +rack-meter +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rionet +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpadlpar_io +rpaphp +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtas_flash +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-generic +rtc-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max77686 +rtc-max77802 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-ps3 +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtc_cmos_setup +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7706h +safe_serial +salsa20_generic +samsung-sxgbe +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +scanlog +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +sctp +sctp_probe +sdhci +sdhci-of-arasan +sdhci-of-at91 +sdhci-of-esdhc +sdhci-of-hlwd +sdhci-pci +sdhci-pltfm +sdhci_f_sdh30 +sdio_uart +sdricoh_cs +sedlbauer_cs +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh_veu +sha1-powerpc +shark2 +shpchp +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sir-dev +sis +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skd +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +snd-aoa +snd-aoa-codec-onyx +snd-aoa-codec-tas +snd-aoa-codec-toonie +snd-aoa-fabric-layout +snd-aoa-i2sbus +snd-aoa-soundbus +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcm-oss +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-powermac +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb-common +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-usx2y +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-vxpocket +snd-ymfpci +snd_ps3 +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +soundcore +sp2 +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-nor +spi-oc-tiny +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spl +splat +spmi +spufs +sr9700 +sr9800 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +svgalib +sx8 +sx8654 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +sysv +t1pci +t5403 +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-hexdump +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tg3 +tgr192 +thmc50 +thunder_bgx +thunderbolt +ti-adc081c +ti-adc128s052 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_fsl_elbc_gpcm +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +uninorth-agp +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vcan +vcnl4000 +ves1820 +ves1x93 +veth +vf610_adc +vfio +vfio-pci +vfio_iommu_spapr_tce +vfio_spapr_eeh +vfio_virqfd +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-ircc +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmx-crypto +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsxxxaa +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83781d +w83791d +w83792d +w83793 +w83795 +w83977af_ir +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd719x +wdrtas +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +windfarm_ad7417_sensor +windfarm_core +windfarm_cpufreq_clamp +windfarm_fcu_controls +windfarm_lm75_sensor +windfarm_lm87_sensor +windfarm_max6690_sensor +windfarm_pid +windfarm_pm112 +windfarm_pm121 +windfarm_pm72 +windfarm_pm81 +windfarm_pm91 +windfarm_rm31 +windfarm_smu_controls +windfarm_smu_sat +windfarm_smu_sensors +wire +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wl3501_cs +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_ps2 +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +zaurus +zavl +zcommon +zd1201 +zd1211rw +zforce_ts +zfs +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +znvpair +zpios +zr364xx +zram +zunicode +zynq-fpga only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/ppc64el/generic +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/ppc64el/generic @@ -0,0 +1,17413 @@ +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 0x09c1b29f suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x9f47c167 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xbd1fa6c5 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 0x0cea14c2 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x20c3df04 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x3590bc54 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x61e38285 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x82330dfe pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x86b050fe pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x9237574c pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xaac1a8ee paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xabc6d4c7 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb551d300 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xb79bd0d8 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xc34f51cb pi_read_block +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xbc5f594c btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0a42a368 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 0x6e5ec547 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7231c84e 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 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8fa86554 ipmi_get_smi_info +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 0xf2e9d6b4 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x42a8606d st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb5c490b5 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xdf644e67 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xfb002d8f st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x6a92088b xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x875bbc14 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xa492f532 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 0x94e842b9 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x07cc453e fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x09a2b42a fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x26cf0e14 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x278ee21e fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x30d7c99f fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3d3a26a5 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x411c1595 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x54098512 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5e01637b fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x61235a99 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7257b397 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7adcb050 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7cf67c9d fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x82ae6c91 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8eb29233 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x981f53b8 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9a69c6b2 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb3bc55a0 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbce2f719 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc0226273 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc7261677 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc7558844 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xca5edf15 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xce022ea0 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdb47afef fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe2bb4733 fw_send_request +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 0x0167477e drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03704b65 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0428418d drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x058136f7 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05cca0cf drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070d9a4d drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x075157d7 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09ed2dbf drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0abbbc16 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b35dedf drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b4e43d1 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bf68a20 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c91bd79 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7d91ef drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dbdd461 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dfa68f3 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f928b3d drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1002ed2c drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1069ac6f drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x110abca1 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13374f6a drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x137c0102 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14024b56 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1582a19e drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x162411a4 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19775c08 drm_legacy_ioremap +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 0x1bd3cbd6 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c4097f9 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c4b07c2 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c738468 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cc7eb05 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e208e66 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f1f6026 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f8353c0 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fb36f66 drm_gem_prime_fd_to_handle +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 0x244c6915 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x246e8310 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24bef83f drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24ddf8c7 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x257ab3a1 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26729c88 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x271106d0 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27e7eeb9 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a74c358 drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a838291 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ad4cba2 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d40b6ec drm_atomic_check_only +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 0x2f9b4da5 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fe00dd8 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31c5cd55 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31f9d1c2 drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3256be36 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x326f44a5 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32708998 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32789f5e drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32e5424b drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32f0d09b drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x333bb834 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34f4de09 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x363499cd drm_connector_index +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 0x38d7c907 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x394c39d2 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a684007 drm_i2c_encoder_save +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 0x3bf79f20 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c8137e7 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e0355e0 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e449424 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f5ea466 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fb63787 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ffac5a2 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ffba80d drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40b99c4e drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4367ec22 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43fc34fd drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4600e86d drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4671344f drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x469ea263 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46c0c0bf drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x470588df drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ae32737 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b436d9e drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bdbdc81 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4be18ccd drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d84e314 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e4376d2 drm_edid_to_eld +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 0x51db353a drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52da88ec drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53cdcec2 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x541333b7 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x545b53f7 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5593689f drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x560ac91d drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56c14dae drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5744672e drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x580da836 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5890ec4a drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a368e79 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b35cdb2 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c29e546 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c560433 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c5c99f0 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d731698 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dcdd1b2 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dfbe208 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f93c068 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc0feb2 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6017e14d drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61434b45 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x633611ce drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63b84082 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64188f0d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64249b1c drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x644638e2 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6488934c of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64d4aa62 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x655a1c85 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x677f6ab6 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68d3104a drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ed607c drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68fb7053 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a1c4ac3 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b0e30eb drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b377942 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d581c6c drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dab03c0 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eb9e0ca drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x701ad829 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x704bf914 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70b9a18a drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70c8d378 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72222a7d drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73092084 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73a59f13 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76049270 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7708689b drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ade909c drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bc8b9b7 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d09d32f drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d7610a1 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80e5cbf5 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81cda541 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8229e9b8 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x824ad6af drm_atomic_clean_old_fb +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 0x83bc9a58 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85c229ca drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8749d252 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x885a9a30 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8895ad33 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88c668c8 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b8eb39e drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8baf7dad drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bf69b48 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c173a4b drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cb2ef51 drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cdb19e1 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8db3c181 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e1d37e5 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e76b935 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9026ca33 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9056f4ad drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91510e63 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fdcd5a drm_debugfs_create_files +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 0x92485280 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92493c1a drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x924afcd6 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92a0af10 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93997f74 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x939b6108 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94918557 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9617a5c6 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97e15349 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b413097 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9ca41b drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c024954 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c6b7c65 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cd48d23 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e138fad drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa167cc38 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1b92787 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1cd2778 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa291a944 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2fa69dc drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38f1053 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5bfa7e6 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6efc3e0 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7e5563a drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa8e2550 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab81f938 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac4a3cf6 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac4c82ac drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xada8b571 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadfa5dc6 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf20a119 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf23a1ad drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafb3ccfb drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b73f7a drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0e18dd4 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1a2e9b1 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1ba0f55 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1ba5095 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2ba9ebf drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3157c23 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb31ae79c drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb515d4f1 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5b877ed drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8ba2caf drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8c9c032 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba355faf drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb76bbac drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbcbd1df drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc677acf drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcc4d7b8 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbce77be6 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdb8fec9 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf0c9eba drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc02b3a38 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc09acec3 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0a58932 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0ab83be drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc18a5cae drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4776372 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5e2fbe2 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc604bcc3 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7f8ae33 drm_mode_create_from_cmdline_mode +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 0xcc12392f drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccf01ce4 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd532139 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce99c0d4 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf0bfd54 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfba5bfa drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0e058ac drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd28af009 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd322bbe2 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd405e7d9 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd44b7821 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd50a45b5 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6745a1b drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6760eb5 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7f0ad18 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8344fbe drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd861e764 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9440666 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9dc9e0d drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda026a86 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb7d5507 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdba677a7 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc56e43e drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcfbaaf2 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddcc9639 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe22e106e drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe41ce649 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6cd3bcd drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8843479 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8b6d291 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8bcf4d1 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8fd78b8 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea447434 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb1335c2 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec1e136f drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec8cd177 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed28cec1 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0562944 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf134bbe3 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1479bca drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1d19bc4 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf27cd1c5 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf28213da drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4d7956b drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4ddf455 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf57ffb9b drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf680b368 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf68bfc2e drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7d5308b drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf94ca221 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa70695e drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa76535f drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfad5a09f drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaf37d6e drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbb2e625 drm_ati_pcigart_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 0xfd25fde4 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeacf192 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeef31b2 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x036029cb drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03d2917a drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0763e7fc drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0774f840 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x099bcbab drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cc9e674 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0eaca6d9 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f4af62c __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x100cb8f1 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x104339ba drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10a4c0fa drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x113791b0 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1219eb57 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1622b2c3 drm_fb_helper_release_fbi +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 0x194093ca drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a6895b1 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c9d007e drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24cc4130 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25f44991 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27f8c325 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a8adeaf drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cdacd84 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d6150d6 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f14ed5a drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34362cb1 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3818ffd3 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x383cf6b1 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ac9ed3f drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ebf3552 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44231e91 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x455c0ec6 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45df54bd __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46b23f73 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x489397f6 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cde2b96 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4dbcb973 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ec47874 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x510c5b2b drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55f5f5a3 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5993a4cb drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c751450 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f6ac6fd drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f7cca01 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60661b38 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6128a758 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6219c15e drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x622b50d5 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x628e9b72 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66b2eec4 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68e8d677 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b67c423 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ba0b61c __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d7c8dc0 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6da6902b drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73e8df08 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77eb198b drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79df7b17 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7af77b30 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c0ed48c drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c2e4bd6 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e488852 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8160665e drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82c4ea4e drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8334a914 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83aca500 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84fb75a3 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8587d823 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x865645ee drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x867dee3a drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87816430 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x883a65aa drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8895cbab drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bfe6a96 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9073b627 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91bc77d1 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x926cea30 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9291d78d drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x930f8baf drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x941a28f8 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99a2efb4 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b0efddb drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d58c912 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9efc2834 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fbb9f9d drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa128e7ae drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2edc4b2 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa590dc4c drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaeeac3af drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb087acb3 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2ee9478 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb34d390b drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb718d0d7 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7b5a25e drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7cdadf4 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb99a2d41 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba6efd10 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc25e84b drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe7223e6 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1c4dae7 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c6e8d6 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc65390c1 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8dc1b1a drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc963ff40 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc988a801 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca81594c drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcaacedf3 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce233a2e drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf19fb57 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfbcc78d drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd162c2cb drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1a57ce3 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd245b428 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd334a652 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8511392 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda3f757e drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda9edeaf drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdac9c9c3 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb1c2ca6 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdba785f6 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe211cb22 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe60b6574 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe93b5af0 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9e03bdc drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea4fe5bf drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeadd6a1b drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec1c0f30 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee4b610f drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef82ddb7 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefcfda5a drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0d4c693 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf147f68c drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2aef7f7 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2d3ac04 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3543264 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3dc6427 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4642b14 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf91a7b28 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf98cf956 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb4a3667 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbbc7bab drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc88e4a6 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd3e5a5f drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a81f589 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0efa919f ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x120a76e3 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13d7d717 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x148302e8 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x194d7f03 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f269a5a ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2153c6bd ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ee0f6da ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f77aa1f ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3094fb79 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3253ce42 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x35c56450 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a2eb1ca ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x409e2e78 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x46e53a10 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49c4a24b ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5002b3ad ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5183306a ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x53a59f03 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5512366c ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x57c507c4 ttm_bo_move_memcpy +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 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64225a87 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6726efb9 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68542c0a ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68fa262f ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ddb1836 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f89b8d9 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x733df785 ttm_bo_mem_put +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 0x810773b3 ttm_bo_wait +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 0x8942b703 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8cb4005a ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8fb4df48 ttm_mem_io_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 0x99f03645 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e02664d ttm_bo_clean_mm +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 0xacd2bc84 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaec10ec0 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb184c894 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbba21d26 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbcd6d086 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd9c8750 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9257bd8 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca820e38 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcabcbfe7 ttm_mem_io_free +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 0xd4e3fd16 ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd880b2b9 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdce1557f ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf19ad03 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe0de7bc5 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9af6ebb ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec438b7a ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xece0803e ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf13779a2 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf193d39d ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa7643e0 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xffe4144a 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 0x45daea0e 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 0x58db90c8 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8f8c51c6 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x91aa4997 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xd0c3fd47 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x096eca11 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x293c9cc9 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x495a503f hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x687b09f1 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x82ec7db4 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8bc4074c 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 0x13f1d487 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x49ab7234 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x6cd4801a hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x7ab9afcf 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 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 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 0x5e4b2af2 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x6b742e5e iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x704e1cb9 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x98b87748 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xade73d79 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xc2e88561 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xc6440d24 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xcb0f9697 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xcb649530 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe31e6fce iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xe8008038 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xf77505b9 iio_device_register +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 0x007dc44a 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 0x4ee170c1 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xe7a3bd3e rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xee477e70 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x03d4b342 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0f32e19a cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2e76dfb2 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3e537ec4 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x52b74d66 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5e4eae68 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6b88bd58 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7350323a ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x794fa34e ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9fec7c4f ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb29117e6 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbbd694ce ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe0c2285a ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeaf2f8e8 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf7603833 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf766fa2c ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfe5da753 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xffcf1d8a ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0653db41 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x072ad860 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08b5d6f6 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d23f064 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dfb9211 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fe39669 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14522348 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1869f12a ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x198f2126 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a0606b5 ibnl_put_msg +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 0x23de8af6 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 0x30b7135b ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3134e473 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32019a3e ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3329111a ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x374745ff ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39c980a9 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ea63b3e ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f0ed39d ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ff34a40 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41526d9d ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x533fe789 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54f88e09 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5959df2c ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a5db0ac ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b2653c1 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b74ca2a ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ea8b4de ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ed8b5a9 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b93f00f ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70354455 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73d4173c ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75f605ee ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x784138ac ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b0a2db3 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e5c0b78 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x826978de ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82b2d50a ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ce4a5d2 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e448027 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90394333 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9127cb22 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9183380d ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x973ceab9 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa27b5521 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa56f4e7f ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa73b38cb ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9cc54cd ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaab530e4 ib_sg_to_pages +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 0xad5c406f ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae9a5dbb ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2ca110d ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4e3a07c ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5603e2c ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5c2656a ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8d19927 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb124ce7 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd0a433a ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdace906 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf320e5b ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3299304 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4d6275e ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc679d839 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbadd2c3 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbc2a486 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdba95b6 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4f9087f ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd606b448 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7a095f5 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7b38693 ib_alloc_device +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 0xe61c80d8 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe68357e6 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe989c799 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea4a0c12 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2d1cfd2 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf59f8877 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6d357f7 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf79ce06c ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf895320b ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9203b0e ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf960e9d1 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +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 0x0854358d ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x27780dd4 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x30ea2a73 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x723e8916 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7450b78f ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x968362a4 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xbdedafbe ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc66e98b7 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_sa 0xfe22f525 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x84611806 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9a18b06d 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 0x2118e352 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x47e6b760 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6537a1c6 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 0x70a4e8a5 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x75fbc0de iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x82f141fd iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x82ff2000 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a25b21 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9a490559 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9fc9ecf4 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa07e3884 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb893ecff iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcdbae776 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xebbbe12f iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xffcf58f2 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0c8e882e rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x111157ec rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1d43330a rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2a25a235 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3cbb6494 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x489f08a6 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x65ffca92 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6865b1a4 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6c9cc8b5 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x75addcc4 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x84a88713 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9c48bdc9 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa4a6720d rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc36ca2e3 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc45ffaaa rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe36242c0 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeaf229a4 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xec4b97c8 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf1b2bc97 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf9710213 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfc69f68c rdma_create_id +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 0x2033c8e4 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x671d682b devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x6ff03eda input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x83a9b12c input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x9a063f1f input_register_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xb0a18866 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x39ad2e1b ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x6d51796d ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xc189971c ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x6a0d3f8d 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 0x3d4aaac1 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3dd314df sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x498bac78 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xbe7afe35 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xe444a3b0 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf33984a4 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x519b0a15 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xaf5c870a ad7879_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04b9a6d1 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x204e4246 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2a65fc64 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 0x3438dec4 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 0x7be1c424 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7bf70a72 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 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 0xb9775e3c capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xca6ed32b attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd03b31a8 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xdd280877 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 0x0fe3d3c7 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1e720ca1 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x490f0954 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4c93bd2c b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x59f73eec b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x64bd4c9b b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6adaf36e b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6de67654 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6f605adc avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7e2154cb b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9ccbc05b b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xae38aaa4 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb27b2dd7 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb3452769 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xcbc87d95 b1_release_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 0x087e2325 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x13c84e85 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x184edf59 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x29464174 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3f227e82 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x414d99bc b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xaf86993f b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f8a29b t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xdde32590 b1dma_reset +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 0x59632665 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x79a80744 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x92d7c402 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf36672e6 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x153d6369 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x95c31733 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 0x9bf69d7b 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 0x0182a1c5 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x1f1ab7c7 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x2803bfac isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x80501eb7 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x872986f8 isac_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x0289b51b register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x0bf34b77 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x845e8f8a 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 0x1751f64d mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x203b4693 bchannel_senddata +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 0x2e37d628 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ab8015e recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ad880a6 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x41f32dc8 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4458f193 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x44a1bcb3 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x44fff77a bchannel_get_rxbuf +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 0x6b9d56b0 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x74e11782 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa37a75fc create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa68644f0 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xab8a8f90 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xadc25325 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb5a95a02 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb608d367 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbe433842 mISDN_ctrl_bchannel +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 0xd9123ce2 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdb5f502f dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe9e69b60 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xee9d8ec0 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfdd514f8 mISDN_clear_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 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 0x546014e5 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 0x8c1d428e closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xb8275762 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc6307cff 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/dm-bufio 0x268682d2 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-log 0x543c84f6 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x96ec5233 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xc195de60 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xf00f511d dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x1a6a1fa9 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x69674917 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8b7e5844 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc29bb9d3 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe92d0d2d dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xea057f25 dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0xd5d2e91c raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x014e1dea flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x06f20d42 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x28243ccf flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3b28ade9 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x408a62dd flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4be677dd flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x509e2727 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5251c45f flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x863fb2e3 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd62c7d2d flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdc29de67 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe9c88bba flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xeed090bf flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/cx2341x 0x05001bf7 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x09ef5956 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 0x7200b5eb 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 0xdc0458df cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xffd9e1e7 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0a665674 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x7baae32c tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0576c5ad dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1411111c dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x256bbb7f dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32706276 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x34b71edc dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3562de51 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3d2ee436 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x408a6433 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x436b6e53 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x447d5342 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c0ea535 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x604c78ec dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6396a490 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6cf9f52f dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70af1058 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7118231f dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7407cd67 dvb_frontend_resume +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 0x7d3b88d1 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7d875ab2 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f4f9b54 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x800fea6a dvb_dmxdev_init +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 0x8b8aedeb dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8df7af19 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e527de2 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9e9f3b2c dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xafe5151d dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb5e1068a dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc4e7d04b dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf589e8c dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd7816eaf dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8f7184c dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe1974d5e dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe30d7582 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe35b08b9 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-frontends/af9013 0x316b59f0 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x4076859f ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xa35db961 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3a6a59eb au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x41ce7ddd au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x49c84812 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x528cb6a4 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x57c4034f au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x58bda67f au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbfdd3f32 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc8e22659 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcca3e0d1 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x5c881953 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x3e833c0f bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x1207c37e cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x0e067168 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xdd9e0fa2 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x96d4b542 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xa123aa85 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xa81aafaa cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x1e3429e0 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x46d9f4de cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x71153bc5 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x0646df99 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x61eb27f9 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x73b914e1 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x99fa7e55 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x019a474a dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3f4b8f5a dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xae287027 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb06cf560 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf634ec4f dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0df54a4b dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2049b89f dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x241c5f75 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4b5bbabb dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5f42dae1 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7c0d7542 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x85de6bba dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9d816472 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa15dc646 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa6a6a2b3 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb902e248 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbcb79d71 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc7b36d9d dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe88d313d dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeeb3e403 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x86064e2f dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x087097b4 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4f9ef246 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x71a42245 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9e9ea636 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb0a91afb dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd884b889 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x15c25a0b dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x50093ebb dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x71aa24c5 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xdf0929c2 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x2febb381 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x45f23730 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 0x546d2c4f drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xf560216a drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xbaf6e20d drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xe599cc01 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x29073827 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xffe5585c ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x78e4ace6 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xaeb0d3d0 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x5d7ad594 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x114eddc5 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xad7e6a5a itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xb6d0a5dd ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x21a0ffdb l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x7e239bd7 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x4fc0645a lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x690977f1 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x60683c65 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x961af613 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x51030b0e lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x1626912b lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x4334a4e4 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x0a1e1004 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x10567ad3 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x5e687553 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x4b174b5b m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xc010a45a mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x5c61d39a mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x2f55a7b5 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x3a648d5d mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x444d7f13 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x6de1aa89 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xff938f26 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xa0c9bbc1 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x890717e2 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x30d0cc64 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x5d9a0472 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xec934dd7 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xf500d424 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x073f3d8a si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xb15113b7 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x2aa89db2 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x791d5f73 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xba260a23 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xc5b3e9a4 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xc3f78c4c stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x8103094b stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xf2544a21 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x0d369d4c stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xa0a344e2 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xa3fa7cf8 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x8cbc2899 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x940003db stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x603583d8 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x4c48c8fe stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x750945bb tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x61776cdc tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x316572ac tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x93e5ceed tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xa7f06685 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x3830cf4e tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xf972e1cb tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x7fbdc322 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x7ed063ad tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x2d27cd28 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xdd677387 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x0e797465 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x89413fab ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x5d98136d ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x001041a3 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x22439e15 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x751a3c89 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x01f5b8c0 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x216b00b1 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3cb31504 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x477fb314 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5f725eb9 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb83bd750 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbe949eb1 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x2121a078 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x98906361 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xbf6184fa bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf679419a bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x6b6bc6fe 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 0xcb93bf48 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xcfb1e330 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0bd23764 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1676826a dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3c5163d6 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x59cebd41 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5bba45ae dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8fa4f31b write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcb51d6ec dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdba7155d dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfac146c6 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x7a7a0f6a dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2c946d47 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x447c9a6b cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x87e7a623 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xab3be97e cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc660a8d1 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x59e28e2a 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 0x00641ec5 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x42bc80cb cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6243297f cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x70774daf cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa5aa6711 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xab5aad53 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbb3d4da6 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x28755250 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x325f2cb3 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x18e10869 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x44dc3319 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x474fb222 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xad558cf3 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x01bbf31c cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x29b64983 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x52c5a1c5 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x83a583f9 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8821f362 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9fd137ab cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc8cac7b2 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0b392da0 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1850980b cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1fe509ad cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2868bfa8 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x50884847 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x56e5593e cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x63636c92 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x65641389 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7e46cdb9 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x96944450 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9cb52095 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9e1b943b cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9ea49682 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa19d228d cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa300a279 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc424ea54 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc96cd621 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd47491a2 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd4dde782 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xefec4051 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1814deff ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1f45e110 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2888168c ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x29af132f ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2a81620b ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2c019cdb ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3e1a926e ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3f39ad00 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3f39e534 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3fd494b8 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6343b04a ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6d0c2dfa ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x802ba767 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa48bb850 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbd0f4a35 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd6a1623a ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf9c2fdef ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x03206b23 saa7134_dmasound_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 0x1f82d3a2 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x250691d5 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3464fd9f saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x40c5a09a saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x64e92254 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8696be29 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x97919b00 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaceef92c saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb5e6a4ac saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc90ad53e saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfd9be2a0 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x105b5c61 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 0x244d2abb soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x3e330731 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x5e5ccf6b soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x76343680 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xdcbbe2ce soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xdcc61765 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf5ae3295 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 0x25d91a92 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5f52f733 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x61fa9e81 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x6a587bd7 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x956fad78 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe069525e snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xf58a27e1 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x0dc89d6e lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x550eb8aa lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x925db1c5 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb74a21be lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb9e9a11d lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe2be5252 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf8bd8f5f lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xfc0bca3c lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/rc-core 0xa11e0778 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xa5815123 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xd47d0ed2 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x25ed2233 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x088541a7 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x248dc0a0 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xe06a539c fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0xabfe1fe3 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x5e9c54e4 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xb8e4002b mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x80acb70e mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xe7de598f mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xed619e6c mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x9e715aa5 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xf1109b41 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 0xf843ffb9 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x0c6a924a xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x4475970e xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xa359f3f3 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xd749c089 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x12bca9d4 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x30945e1b dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3dfacfa4 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x56c85af9 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6a4cd289 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7f664a73 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x99ff46c1 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xaa05aa3b dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfc531215 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x149674df dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x41616e5b dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x9601effa dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc7e90a3f dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xdafbf1a3 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe7920f7e usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe8add034 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 0x1e662aff 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 0x01a3f0f3 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2a51943f dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x65815d9f dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x78d25c92 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x84e731ba dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x934c795a dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa15c8ba7 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 0xb79e382e dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc5f21b52 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd57f13fe dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe05d52fa dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x454cdf3b em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xbf45c579 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x030bcfea go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x12426447 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1b6e2258 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x40a4cd60 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6ca41b9a go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x990c27bb go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbfa98989 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc229174a go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfab30a3a go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x376f6392 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5342d29f gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7c993440 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8a5679b4 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8d2cd547 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa9219d7a gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbc57d0bd gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd1517503 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x49a3800b tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x4ac88c83 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xa2717542 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x47c4aa78 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x6c03abb2 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 0x957808aa v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xb4f3ddf7 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xdcf8eba1 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x223683d3 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x2ff1c6a7 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x4a5617ac videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xe82d25c7 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xea5bae3d videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xf8f2798e videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x1efce0e2 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xb7dd7fa4 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x23169455 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x2ac32e5c vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x5eb91c81 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x85c38a1c vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x961733f3 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xe7a2612e 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 0xdd619510 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06aead7e v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09b1fc0c v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x102688ac v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x104f1726 v4l2_async_register_subdev +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 0x17bb7df8 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x18b00d37 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1bbf70f9 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x21d436ad v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x21e3a611 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x254fcd4a v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x262705d2 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28a0a540 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e40f910 v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x314e2517 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d68977 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x398946c9 v4l2_clk_enable +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 0x3dc06508 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x41a80d76 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48164091 v4l2_s_ext_ctrls +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 0x4c37b135 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4f98155b v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50960020 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5296b933 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x558e01a1 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x57a5b5ac __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x583012f6 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5abcd0e2 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5dc8c2f2 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61886ab3 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68b530ad v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x691ecebb v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7492199e v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74d340d9 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7536b24f v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79a0ce2a v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a2359da v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c92ba3c video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f3428eb v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x81c8b52d v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82412013 v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x872dfa10 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e190c3e v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e8ab1c8 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f2e607b v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x91477b4b v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x92e4e957 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9428f513 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa209fd07 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa4b2ed6b __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5cd1ece v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad0b507c v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3f302ba v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb9fdf239 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc21fb900 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb145bbb v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd68555a6 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8dc4491 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb900d35 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd4b3f5f __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde47b67a video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe112b52d v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3367945 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3788063 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4168b96 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8c7fa8e v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec455d1f v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed24c6fe v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed373b2d video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed5c7dc4 v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1da563a v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf2451b7f v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf8f0750e v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfeb5c471 v4l2_of_parse_link +EXPORT_SYMBOL drivers/memstick/core/memstick 0x173e48c9 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3283f333 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5034ad73 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x55572210 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x68310fe8 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7b086058 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x80923f95 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x86bd8506 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x87e40f90 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa6a36992 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae153b49 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf37bc2fe memstick_free_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0eb0a1e0 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1017a703 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x184f4849 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2d08ad79 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2ebff54e mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2fb73805 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x37845629 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3a5203ef mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x45445b8a mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x457dc27c mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4cf93dac mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4d418f31 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5d62fe68 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6818ae4c mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x771e90b5 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x804a39b8 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8265470f mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8837aa6b mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8bb79b93 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8ce8568a mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x95cb5b00 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbcf5f9b5 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc171ebdf mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc300db7d mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd0f3f11b mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd53ff27c mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdefedd59 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe05cf60c mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfea53325 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0e8bea24 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1a0ad41b mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1b5e5b8b mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x37cec387 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x401af4c4 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4be4bd72 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4da3cbd5 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x54e96efa mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6022a268 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7e02d050 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x878b7ab4 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x87d0e728 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9212d693 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x96ee9668 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x99a3f5da mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa914decd mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb8ce3d40 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xba030aa6 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcd7eddd7 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd1b2268a mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd38ea330 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd3f83c01 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd6e4de38 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xda4d3f6b mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xed45fdc2 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf208da72 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf2deb0aa mptscsih_bios_param +EXPORT_SYMBOL drivers/mfd/dln2 0x4e961928 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xa4188ce0 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xb4db9894 dln2_unregister_event_cb +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 0x2f058551 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xdd94ad9c ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x06a13186 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x4492d9d4 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x4c7f3bb8 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x5ad1c2ff tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x5ed0f75b tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x6ab20cbc tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x6ea37e44 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xb83e9863 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xb9c544a2 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xd0bb7503 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xd1b52720 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xe22e1fe1 tifm_has_ms_pif +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xe0ee9b56 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 0xc6088375 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xf76ad380 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 0x1649b49b arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2675eca8 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3eab241a arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5ab12c10 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8e4c16cc arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9f393b9b arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa03faa5a arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc8d15b49 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc92401ed alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf1ac8f38 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x1beaa57d com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7229cad0 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa595412e com20020_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0efeff39 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x20cc8dda NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2bd15197 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5ee2f711 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7ada8e4c ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x84b55d96 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9e2701f3 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbbfc6476 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe4281d2e ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf7bc5e20 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x88ad4603 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x69bbad4c 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 0x0b3740ee cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x215cbe87 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x44425996 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4b40a43b cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6646b127 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x66c70a21 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6f22df4b cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7489fd26 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x81ffab3f cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x90b71fc3 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9a173c28 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb43105f1 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb5d77eee dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd295c69a t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf3d25231 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf6753832 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1226c425 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1b40bfc2 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x213d5e43 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2244f91c cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b5c412e cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x40674dac cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4da56596 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 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x670708cd cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6b1d838a cxgb4_port_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 0x7409617b cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x79ff36f8 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7a22a0e8 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7d22bca9 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8734f980 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8865cafb cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8e143b4f cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8e2743d3 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0687115 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc3105e59 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7b11c38 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcec89cea cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd5730bf5 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd591cf47 cxgb4_port_viid +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 0xe64b581a cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe9c32392 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xea2f3adc cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xea52e607 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xebdcd8d9 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef30c82c cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf69cb24a cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfd2c0f01 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1e2cb325 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xba3beaa8 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd149a758 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xdd5060e1 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xef9905db vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xfab33a0e enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x2f360c96 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x9fbd23aa 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 0x00e94ed5 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01974205 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0276cedb mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b6c7c44 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2027c951 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bb38dfe mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d74c759 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31fbc759 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d58e8a3 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3eb88524 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43402683 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44417d47 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45828726 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48e58284 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5536acd1 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x613cbb20 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61c0ea5b mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67101017 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c2e52ac mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e945b44 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79338601 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x836cca5c mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83fc9dd2 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85d4f2c8 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91399fbe set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91ddc12a mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6634fe7 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaba6243b mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad45873a mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb15444f3 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2985c91 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba2aa7ee mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbed78d8a mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf9a429f mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7e6dc98 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd0c1d5e mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4753416 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeddc9b32 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02d66f72 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 0x0d4d3d06 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dd9775b mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb7287e mlx5_del_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19d86583 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cc93657 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2271403c mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32a91f25 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ae29d37 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f809a0b mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fc36894 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50726de6 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x585db6ce mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d946cfc mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6db657d7 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ecc4761 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x726392f5 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7557664d mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x776fe157 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bf3f7e2 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x827910e7 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8448459c mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x915c5a71 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93115567 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94f890c9 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9757ed38 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c728453 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad777b37 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7cdcec7 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbae6977b mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5c0377a mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc69c4c11 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8a6fd95 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4f4b52e mlx5_core_destroy_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 0xeb5b68f0 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefa0d783 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1e16f78 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6f4ba92 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/mlx5/core/mlx5_core 0xfde2fe57 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x244d20e8 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 0x2d0cfb13 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 0xa31710c5 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc11bf64d mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc3861d8b mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd6ef332b 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 0xe06083b3 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0xf704021d qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x32818f20 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x76fd49e5 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xac05c631 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb683cb81 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc0ea4a30 hdlcdrv_register +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4c874e5f sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4f55a1ea irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x635e330d sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x829c2812 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8c49eccd sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xad6f9e15 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc49bc960 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc7b77677 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd1cbaa31 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd75e94ca irda_unregister_dongle +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x15da5159 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x4c39227c mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x5e4ce929 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x7ca779e6 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x917dd9c0 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x946fad92 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xf7d65397 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xf81edf26 mii_check_link +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x002a9b75 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x0e751c3f alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x8bc3ddd1 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xd941a802 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x443c1891 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xd26baa5a xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xd3216002 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/vitesse 0xaa8a981f vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x439d43c3 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x646cdab6 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe3c50e1e pppox_unbind_sock +EXPORT_SYMBOL drivers/net/sungem_phy 0xcc4547c1 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x4492299f team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x4ebc6558 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x67ddbf36 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x75b75813 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x906962f8 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xbe18be92 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xf5bca7ad team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xfd654a67 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x1bb21f27 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x5121573e cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0x6b00c2c9 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x6b77b2df usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x02637eef unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x32c55080 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x34fbd718 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x83630337 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9b24ec16 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa3d587cd attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc3af8ede alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc97dc470 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd477ce7c hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xde00287c detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe1e5dac5 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xe45dfea5 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x0a690cef reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x4021e36e stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x51181b15 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0aea2527 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x13ad6397 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x149553ab ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x19a4aa73 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1c99bb22 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x296b5349 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6d801bf8 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x73e1a7eb ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7e6022c4 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7f7428db ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x922f3ff9 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaf32ad16 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 0x0a14d98a ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x131a67e9 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3997d093 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6d381751 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x729675b6 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x875afd84 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8afb124e ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8b971ad1 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8bdf5cba ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x98b3b50d ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb0ab3ed1 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xba443bbf ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xba5ca0a0 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc95719a8 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdbd416a1 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0a7f3a99 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2757c30a ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x31f2de0e ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x40a8ffde ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5ce42fba ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x731df948 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x794561e3 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 0x7c0cd21e ath6kl_core_cleanup +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 0xcc7cc104 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf201d1e5 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfe8871fb ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x00e97510 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x110d5ac6 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x14756ee4 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x15145158 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1577ec02 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x19b9677c ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2b191206 ath9k_cmn_debug_modal_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 0x3d052f8e ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x48a9216d ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x53da24a0 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x686b4a86 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6d981da8 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x732ada81 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x74214cc9 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x919acbdc ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9967c814 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa2739a02 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa80fdca3 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xac7a3bf4 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb58e5061 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 0xf412217b ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfad1bf3b ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfdb42013 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03734d02 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03d220a3 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x049cd6c0 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0560cd83 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x062fe087 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b422b3f ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x115a7523 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x126a1f74 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1452abad ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x150fad2b ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x197ae6c0 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a6582a2 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ef3074f ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x210977ec ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x285cd3cc ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29ac2e6f ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a3f1aee ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ad2ca7d ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b0cd4f4 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b5dc5ee ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c9dab04 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2dda92bf ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f7ce1ca ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30e5f167 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30f84d79 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3bcc00d8 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43094d98 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43722bfb ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46a66a10 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47be105e ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4963bfb6 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c2ecec4 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x517e53fc ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53c40288 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5565a9d2 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x561882e6 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58fa3ea2 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a5b17e8 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5af08dfc ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5da4d21e ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5eea1ccb ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61c7c7cf ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61ec1177 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x667bd7fd ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67b021fb ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a4c349f ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b3c1ac5 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c322f64 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72146614 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78e69868 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a1a2319 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a7179bd ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81a4e117 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81da18a4 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8492ae95 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85c46d50 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ae84836 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d1c0d6f ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8df2e9f0 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91b9a55d ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97129e6f ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x979ed62a ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97d7cf86 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99c4fa51 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a580cfa ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2285162 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4e10cf6 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa88d83d2 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xacf9a235 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae2268f1 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae25266b ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf455db6 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2e38db8 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4f4f1c9 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb9ba05e ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc98cc37 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcb46400 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe14b2c7 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf72d4de ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc858e3d0 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcaaa670e ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcbc10883 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0d4bef1 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd25a6a4d ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd387a5fa ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9660369 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdba1e5c9 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcce27fd ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd90ad9f ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe12eeee8 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe33fb781 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4cd911a ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4f626e9 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe656ad2a ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6afc2e1 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea8945fb ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef53c29f ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3039017 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3a72400 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf47938ec ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7bc26f1 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa1162f5 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbf2ba59 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfcbf506d ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd7cffdd 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 0x0b5baa0b stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x77b5c406 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0x92f9c49b init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x03a61a0f brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2a5303ba brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3038c176 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x4688a78a brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x4e6d7fd8 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x4f137bd0 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x59d984a4 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x76f1c4ff brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7b20a51f brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x807546e3 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x86254385 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x951a1bda brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xceeaf50c brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x02345ee1 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0f2cf939 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x10846545 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x28fb0fe2 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x322694d7 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x36336cf8 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x397fce74 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x417a0b45 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x59a41a4e hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x61844051 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x682dbdc5 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7340ac59 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7950654f hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa8d2b0e9 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xaeaf3387 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb3d5e515 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb8659bd9 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbff79e3e hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc0d5bcb4 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc9336610 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe637f6ec hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf3ce87e3 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf8135e41 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfc3c446d hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfd81430b hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x01dd02c6 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x12326a15 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2a45a2ab libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2dcf73b1 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x534251a3 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5615dffc libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5716ca7d libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5e23a203 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x714fabb5 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8c1a79ee libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x90821b76 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x927e939e libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa574cf79 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc437c87a libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc59c727c libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xcbe20043 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd9c09738 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xda26dd9a libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe2090f04 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf087d636 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xfb2ac5db libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x005452c9 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05b0a706 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x062469bb il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06c47194 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x07ddd398 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b52cbd4 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0c52e852 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0d260831 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0d9e2dd5 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0e0ceabe il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0e5436e4 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x13be3352 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1a7aef07 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1c2ebf05 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1d526a4d il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1d5eaf65 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x24feda1f il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x28de5e48 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2a17cb8d il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2b09c047 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2c5053f9 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x30f5f8df il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x33f85293 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x37c2db2a il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x38259745 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x389c87cf il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3b98f971 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3ef862ba il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x40e885bd il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x449f7c6a il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x44b542cf il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4bb4e37e il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4db6b72e il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x51453d97 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5216b965 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x53cd52f7 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x59e0c820 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5a128b1a il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d3384fa il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5efa9fbe il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5effb612 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5fefe1f6 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x603b66d0 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x605363a1 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x61954516 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x635c775b il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x66710a02 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6ce62ce4 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6f0f1a13 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7275b755 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x74666178 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x75d7bc83 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7906fda2 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7b8db6af il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84521fa3 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x86ea4aad il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x893984d9 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x89703e7a il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8c5c7021 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8c705325 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8f91687b il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9811eab4 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa0a4f7b7 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb14923ce il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb2441272 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb2b1e9f0 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb441b58e il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb8da9d88 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbaf48557 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbcd6f9da il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc755cdcf il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc7ef231b _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc8b7ba79 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcd82f130 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcdaf3635 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcdc722d1 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcf554df3 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcff81fda il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd1a184f8 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd1b76170 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd1c94b3e il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd6ca9483 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdd202e34 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdfc0d6be il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe4ce2e14 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe5e5878c il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe6b3fc36 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe736939b il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb3a713c il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xebe3eeff il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xec0066d3 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf133af3b il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf2a740e1 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf4d283dc il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf9359e61 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf95c8309 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfae2b473 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xff349dcb il_dbgfs_register +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 0x09b76209 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x117170db orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1520de40 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1935d7ee orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3dac22a6 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3dcefce6 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x45d16bf4 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x45d288aa orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6a7f3840 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6fa0492f orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x78160777 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7f9ad961 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x984d6500 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xab1b3037 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb1ded8eb orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc7b1d752 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x007b3ffb rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x06e4dc93 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0b7dc3d2 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0d4d5550 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0fb3e9d9 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x109c5dfc _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b2a11f0 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d2a51be _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2ee50fce rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34792f9b rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x419979d6 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x47c7b4db rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x48cdbef8 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x53910b06 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60950a43 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x68b0669e rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a07e780 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6ff0be10 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x837d75e2 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x88f861b4 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8bf5e688 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e5b83fa rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa1ccb9e8 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab24c8e5 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb0dd1714 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 0xb584b1ea rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbaed5dd7 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc0656cdf _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc3c30be2 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc8717fc5 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcf88c8f7 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd29cae7b _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd79aa055 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdbe6f2d1 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdc162f47 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe31d34a9 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4f82e88 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe60edc5f rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf01a572e _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf664d091 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf7527bd4 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xff9a3ade 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 0x15dee8d7 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xcf97d134 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd0bb40e5 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd3ed50c0 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x028e4524 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x63ad4197 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x751ad47b rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa38fd1f8 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x04382f1a rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07b5ee33 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0f4c0193 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x13279d29 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x132cf1a4 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1939766a 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 0x2af1480b rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d3d7cc0 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33d09856 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x352832df rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f71bd73 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x51e98f4c rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x663e53c6 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x68dc05d9 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72715cc1 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ad520fe rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7f5141b0 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x84f4e28a rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x85da6faf efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa7fbd9f2 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6037309 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc14a43f rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc2b66918 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcdc417e2 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb1f3c56 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc780124 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe1f2e2bc rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5db0f72 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2173a1a3 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x5758b94c wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x83d599ca wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xcbf7e653 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x666da81f fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x7b02662e fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xf26ff805 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0x4f117311 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x93a43129 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x1a5e0a4d nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x7be63eb7 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb0174072 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xb03eef01 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xb3a16ff3 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x01c28c29 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x70dff2bd s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x713b7151 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1ae29125 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x33bd4e68 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5e01c58d st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6bdd2705 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6c5b76b5 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6d467d83 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7feb54d0 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9807f0b2 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb72bb002 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc2ad724f ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xee60988c st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1f5af879 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2417fc23 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x309248ed st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x44e812e6 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7447bc1d st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x78da2d69 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7ac4e87f st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x82ce5263 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x87ef3890 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8d82ce10 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8e3552ad st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x96ca169d st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbdfa798d st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc41e667c st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc8f3d879 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdc657e4b st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfa31c5ba st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfaf43ae4 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/ntb/ntb 0x150aea45 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x24c291a1 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x6d146a19 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x7945ed4c ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x9f39ed84 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xb3a87759 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xe86d115e ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xe8adfb6a ntb_unregister_device +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xafc03a67 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xb3085eec nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0xf51bc001 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x03b4f4db parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x052b74b0 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x0d46d00f parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x10d6ef8d parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x1406b3ff parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x19b5a314 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x219e0bdb parport_read +EXPORT_SYMBOL drivers/parport/parport 0x23369bdf parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x23c95b3e parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x2e1b76e1 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x4ad346ad parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x513a36a5 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x576c8d69 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x5add29df parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x5bfe6f84 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6a89bcd9 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x7d3bfbfd parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x83cf62e4 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x84970ea0 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x8c5e73f1 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x8e47abe0 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x9c0b0843 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x9c5469d5 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x9fe69952 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xbb30ed3d parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xc1916a45 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xd5a37ac2 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xd79cf9c7 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xd8338477 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xe7dbe5f4 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xf98f4b5f parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xfb9d06bc parport_negotiate +EXPORT_SYMBOL drivers/parport/parport_pc 0x1640d4bc parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x6cad8e30 parport_pc_unregister_port +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x167f6786 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3322aca2 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3c617c2b rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x57319bf3 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x5fb1bd4c rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x9006dc30 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xcf8fad16 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xda83b70f rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xdf6b6933 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf9873213 rproc_get_by_phandle +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x46bc6076 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x002780ab scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4d7b1c40 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5d0bfd9e scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x680c4485 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x19266c3c fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x37bfd635 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x38e35d75 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x40c70011 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4dde7445 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4e3d462e fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x82d81a1b fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x87d54871 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x90d2fff3 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb266736d fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc33c42c5 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe0cb939b fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x02d004e5 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x04d73217 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0558621c fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x073c9010 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13c074f4 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14c693ab fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16345efc fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x231a4f89 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x295327b8 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d3254d1 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2e5627f6 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3af96636 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42cc6cd6 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42d6cbb0 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5303afb0 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53870519 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b6ef968 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ccc441b _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e08878e fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6102eff0 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64785cd8 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dd54882 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7024f2fb fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ccc15ea fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e0ee9b9 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e817857 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x838619a1 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x879fddc5 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x882662e5 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8bffb062 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d0e740a fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9997f651 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f504ccb fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa121b267 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa8407ebe fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaf851c91 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb271ec65 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc11c5a4 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbdd7b129 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf4c89d5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5189d88 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6b45c40 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2c7a3ba fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xddbbfb17 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdfbbe337 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1b636d7 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf36223aa fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf38e4919 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf6fe27bc fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd83cc1e fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7a10d85d sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xba7ff2d9 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd3abc730 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xec2af0eb sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x15f99b5a 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 0x020082fa osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0547ba1d osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x11ef4124 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x128935c8 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1bf44890 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2ab8924d osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2bcbb963 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2f200486 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x318d7fab osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3dd28330 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3e91a5c1 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x42d2f174 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x44be89e2 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4c5c5749 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x52c1c959 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x571dd689 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5f1ab537 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6407d1ad osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x668a2b8e osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7a6facf3 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8642a4a8 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8c8faf77 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8d76c825 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8fa8220e osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x93b4a788 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9b3f5608 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaaa7e22a osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaf00c911 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb7153592 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbe3c1c57 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc222584b osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc80e4e10 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdf7f4185 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe3f6b15a osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeabf6740 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xff2813b4 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/osd 0x1a412b2d osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x25dd4858 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x2b8bfa8a osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x7bb186ca osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xd97734fc osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xdfbaf7bf osduld_device_same +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x050293a2 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1b5f4071 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3f2066ac qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5b81adc5 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5f2c141f qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x71c436d5 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8103b51e qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa5c2b64e qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa6f8fdc9 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc48788ad qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd8338fcc qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe244b82d qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/raid_class 0x000192fe raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x839301ff raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xc2e76ee0 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x030485e6 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0da18dcc fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1d63ba8b scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2cbd7388 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4c09f8ae fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7517fe08 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9692ab84 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9b8775a8 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaa1b5d28 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb1c00350 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xca13b011 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xda71ad07 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xeb0a5ab2 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a9bf69b sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6456ecbf sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x67e2d79c sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7135f348 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x73317262 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x748a822f sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x78c50620 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x819446d1 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x847c4ddd sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9139ad21 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x993f436f sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9bcb43db sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa45b72cc sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb0a51221 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbb0f2bc3 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbc128ed1 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbc518d21 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc40ef5ed sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc77f2e80 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc96a13cc sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcd8b9651 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd621d293 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe4cf8322 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe5400e20 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec2b6924 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf9ab9f7c sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfc24ed88 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfd9dfe4b sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x34c17388 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x613c43e0 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x83119a21 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x93fbd60f spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe1c166a5 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x00ddcf80 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x263f231c ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2c22bbeb ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x4a9a915d ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x51f1493b ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xa5a0b481 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xa919493b ufshcd_alloc_host +EXPORT_SYMBOL drivers/ssb/ssb 0x151b42b0 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x301611a9 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x328df873 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x35cb2b99 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x363b3dab ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x5ceaa284 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x630a4df7 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x684b660b ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x6b47e87a ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x8377779e ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x9235af6f ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x9375bcc3 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc7b072ab ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xc80d0618 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xcfffdfda ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xdaf9b4bb ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xe30a4bbf ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xe49f36c1 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xf172f4d2 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xfe6c2a46 ssb_device_is_enabled +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x03a9c91b fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x414854cc fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x46a516b5 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x47ecc0ac fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4c9e05af fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e5853a1 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5fa3ad73 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x71f02cb8 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x79835442 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8277b755 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x96215532 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9b72f731 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa4e2956c fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xae6f3a21 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb2a046d1 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbbaa1937 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc0c5ca6c fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd05b5261 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd4ade3e2 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd7ce57fb fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdc6a06b8 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe99ba58d fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xefcc4b33 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xffac2d23 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x14ffea12 fwtty_port_put +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x79310a4e fwtty_port_get +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x08a77866 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 0xf301e87f cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xf948bbc3 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x00a61471 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x03cc2994 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x09bf175d rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x09f0caa1 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x140215a5 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e1e50db rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x29f99303 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x31511528 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32c4a4ac free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x34beb79f rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38dad306 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3e9fabdd rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f4cd5eb rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x466b648b rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4782e67f rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47f1acd5 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ba717e4 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ca2111f rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4cca2e77 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4eaebb1d rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54b2c76f rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x571bd2cc rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c25407e rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x77ea83c0 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7d79316a rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7f1565fb rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8019b79b rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x807088ff rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x862cba7f rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x88604d2d rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8aa55d2b RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94dd51a0 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x999dd24c dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9dcbf162 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa5360085 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb806c779 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbc8c3763 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc1bc8133 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2392f9d rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc23bd0e2 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xccda6277 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcce40568 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd02a6e25 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd87af0ac rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd8b9b321 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdc2b4d27 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdfeb56d2 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe53e628b rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf54bb196 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfd20f589 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x070d347b ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0c0b9ff9 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x12f2b593 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2639c47f ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x29b16513 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e4d8a6a ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2ee7305a DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3214a847 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4ab551e5 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4c2fffb5 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4c337eb1 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d727606 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4f37e1ea ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x52c79f2a ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56b20030 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b008973 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5bfbd260 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x60703d24 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x62ffa685 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x635040a4 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x688723c8 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ca19a61 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f166398 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x813178a6 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x829c05b2 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x855b2251 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88f05b8c ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8a02a2e7 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8f3d2ab1 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97b33ae6 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x996b4447 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a978435 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9da7fb5d ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6db819b ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa77db6e0 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa91eb2cc ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaac0ee4c IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8114f97 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf045b5e ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc455aa45 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5303f68 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd5ddc2c ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5f5999c ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd80805e3 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdc584ea8 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3a9b9da ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe5d41bee ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeed87c23 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf28ab989 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf55de24e ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf824652e ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb46fa85 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd7151d1 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x012b1bf1 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x016fadcc iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x06b3388f iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c272ead iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1592289a iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c96d44d iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2ff7bcea iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4427caaf iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x48709341 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x534b0a25 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x584fe720 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a2eb903 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5fae1708 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6057d9be iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7336ade6 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x797c4612 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x84c956bb iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x897f6c5d iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ecdad05 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x91f7d115 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x95d07466 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb8593b33 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd588236f iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd6971847 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe7c4f998 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe98a377b iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf1d12e8a iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfdb83560 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x06d76903 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x09befa3d transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x13791e35 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x15926d0c target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x15f4f38b transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x181910f0 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1844c309 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x19fa5b85 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x1bdde5cd target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x22e1455b target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x24443071 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2489ba43 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x26b1cafa transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2899cb13 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x28b21498 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a49e106 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e872ff3 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x32cea86c target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x38d73709 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a083c58 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d5d9530 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x430f325c target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x4c264e7b spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e3c4732 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x51ac75d2 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x5513a0c7 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x57d41767 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x5aa066a1 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c268740 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x5fa09dbd transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a4e943e core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d2773a0 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f609940 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x70fdf916 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x71705a61 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x71c9745f passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x77f20fa8 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c514eff transport_handle_cdb_direct +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 0x865c33d8 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b786e6f transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x93fce426 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x980b0598 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b2e14d6 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c3b8554 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e77a00e target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f4d8592 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xa00ec4a7 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xa5e4f69f target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xaddba33a target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xaf16d057 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xaf4cf2d4 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xb4865658 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb8ff774e target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb968c2e5 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xb9eb3b13 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xba41622f transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xbdd2afa4 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xc942d01d core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd212f74 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4e2faf0 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xdab98390 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb16e038 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xddb23c6e transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xde397455 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xeac28cd8 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xed1a0205 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf506127b target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xfcf18cfd target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfe895ee7 sbc_parse_cdb +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x4efadcc6 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 0x11f8342e sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x081fe024 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1ed64082 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2eed7ebd usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x497a1e74 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5416e71c usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7425f89e usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x827a8b15 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x87d907de usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbfa26a0d usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc6f15287 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc917ed75 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd4be8c89 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x3ccf5f1e usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xa9a994cb 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 0x1d7ae87f devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x690ce26e devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xa051ef5f lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xe9181568 lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x12c1e242 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 0x4f8b1abf svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x62c1ee53 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 0x81f39aeb svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a91164 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xab96092f 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 0xe624d19a svga_tilecopy +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 0xa15b0894 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xcef3bd29 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x6513365d 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 0x55f54048 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x32526a6b g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x55cb0e9a matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x99c69444 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2f032467 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x480e0733 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa65daac4 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc33e8eab matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x142f267a matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x4edd08ba matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x28fcefad matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2b76187e matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xe5186d2b matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xef5b2d64 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x3a2c9eab matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x9c68e356 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x149193fb matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x94ce9703 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb6338156 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xdba96c67 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe0249002 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x5734a9d7 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 0x90deca04 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xbe4f64ab w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xce4ddcb3 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xeceb002f w1_add_master_device +EXPORT_SYMBOL fs/configfs/configfs 0x0b961219 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x1515d14b configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x1bd10621 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x20c67fbb configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x301f3a0b config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x4e7d561d config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x5db670a0 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x5e57643a config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x678557eb configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x70765f10 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xa81d3964 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0xada81a5f config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0xc9e075e3 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0xef0d5061 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xfd72866e config_group_init_type_name +EXPORT_SYMBOL fs/exofs/libore 0x25164d0e ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x294318a5 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x33583ff7 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x57b8eca3 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x8613d58f ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x95d84c72 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xb0b66090 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0xc883a2e6 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xf3946e83 ore_read +EXPORT_SYMBOL fs/exofs/libore 0xf75aded2 ore_remove +EXPORT_SYMBOL fs/fscache/fscache 0x1274e8a9 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x154298b4 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1dd52c63 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x21907d1a fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x29c1421e fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x34e44dd7 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x3d435a03 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3d96a10c __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x44977e98 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x4d6c12ae fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x5e372164 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x5e6004b2 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x5f1e3251 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x6827d4b1 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x6a4dba01 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x6c597709 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x713c8a62 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x725f25b9 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x74a77f10 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x84e4e16b __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x8cf52704 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x8d2abcbf __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x9133023f fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x9efcdd2c fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xa6365a0d fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xa9671a35 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xafd9e460 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xbac1ed05 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xc1454570 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xc7548c2c __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xc931bcb7 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xcb69d00e __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xcf2ee52c __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xcf48910a __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xd2863912 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xe81e6a02 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe94d1775 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xf5d62e79 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xf85bba62 fscache_mark_pages_cached +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x147e402f qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x84f43ebb qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x89fcee96 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x9c9e6593 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc56cc583 qtree_read_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x1a703ba1 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x6ace3f3f 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 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 0xc4659571 lc_seq_dump_details +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 0x503c85b8 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x5f6a92b1 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xdaa55396 lowpan_netdev_setup +EXPORT_SYMBOL net/802/p8022 0x8ae9a2fd unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xe51d8c48 register_8022_client +EXPORT_SYMBOL net/802/p8023 0x621be11f make_8023_client +EXPORT_SYMBOL net/802/p8023 0xef16d3d8 destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x28cc5ddd register_snap_client +EXPORT_SYMBOL net/802/psnap 0xd144b2d4 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x046c2437 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x0a6a11dd v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x2770b3c5 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x314f3cd5 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x3b79167e p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x41cd2b42 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x41ff309a p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x46d55246 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x46fdbd4a p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x47574976 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4faa7389 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x53d58a07 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x631b0e17 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x666e5132 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x6a954b37 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x708938aa p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x741ebc48 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x862890ab p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x87f73ff5 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x90fbfc84 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x93032d79 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xa8c3b0d9 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xa91c6123 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xaead496f v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xbcb4e8a7 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xbed6cd50 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc7d49f41 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xd6f0e837 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xd95c8b6e p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xdd75bb8c p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xe1165498 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xe2205f44 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xe23e36e8 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xe546a6ee v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xea7e96ce p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xec04d18d p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xee6b9c47 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xefe77bb2 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xf096617f p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf49ea02b p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf7fea59f p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x8c3587ed alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xb9bf96c2 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xd2f339a6 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xe93ec500 aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x1e802ef4 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 0x7c53ec4f deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x944ace36 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x9bbcf9bf atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa4b8dc5b atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xab0bb5d3 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xaee5e9ca vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xb08268b5 atm_charge +EXPORT_SYMBOL net/atm/atm 0xc7a1eabd vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xe01f8199 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xe7404a6a atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xeb068554 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xf23e6ad8 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x297860d5 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x36fdc617 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x3c297fbe ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x521ccfdc ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x55fe4d33 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x65217e71 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 0xb4679f1c ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xf24cf4e8 ax25_linkfail_release +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0130fc24 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x026b1043 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a89f88d hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ecc9ed3 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b2f4ca4 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1f507213 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x248b4275 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x252b8552 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x27951544 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x35bbcc86 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x38b98d36 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3aaf15d5 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x46d22691 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x49960a85 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x54e37e37 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x56e79e46 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5bfa1c8d hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6097975c bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x694b1033 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6cbffbb0 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7179d488 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7225318a hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x760360b0 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7f066d14 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8581daf0 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x97e46692 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9d3d10b6 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e6e159d hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa0eee35b hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaee7e499 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbb07bacd hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc090c014 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc104d091 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc88c029c l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc9dbb398 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1334230 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe3f74c70 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe4ad1cd9 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf7a2b630 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf7dbaea6 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfcbd7ee8 bt_sock_poll +EXPORT_SYMBOL net/bridge/bridge 0x0d9b2521 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2c2694b7 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7202200f ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xdaf10867 ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x22b7ea58 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 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x7b65be1c caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x8d9c6e58 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x932625c0 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 0xc65cac15 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x1a26868b can_send +EXPORT_SYMBOL net/can/can 0x29428238 can_rx_register +EXPORT_SYMBOL net/can/can 0x36dbf0e2 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x56855426 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xa021e56a can_proto_register +EXPORT_SYMBOL net/can/can 0xb3e6ee7e can_ioctl +EXPORT_SYMBOL net/ceph/libceph 0x02247118 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x0536b1ae osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x054ad20e ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x0605e4b7 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x085a1bf4 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0b8392ab ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x0c1741c3 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x0d385a37 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x0f484af4 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x10bb2ea0 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x14c2fad5 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x1a749217 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x1ea4c8a6 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x201f1f80 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 0x220c42b3 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x271c5526 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x32622fde ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x32704680 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x332ef63f ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x3a8a21cb ceph_open_session +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 0x419cb09b ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x42b348b9 ceph_con_open +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 0x46a409ed ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x4895cf99 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x4fa07bbf ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x53aca3fa ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x53bd3b69 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x5662bfab ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5e4f2eb7 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x5eaffdb2 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x5ef5962c ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x60f3ac3a ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x624ebc78 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x69e72c2d ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6f3a3315 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x7008e76f ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x717d3341 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x73d3e4a0 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7acba5e5 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x7f915967 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x866c9ee0 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x8887fc7d __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x89e214c4 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8a85310c osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x8b40284a ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x9297c73d ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x93b55dc2 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x949cf1d9 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x96faeef9 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9bc74ef8 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa044e2bf osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xa0480ef2 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xa2d0f26b ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xa39b317c ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa5364998 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xa940329f ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xacbbfca3 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 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xc0aedb02 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xc2f282c6 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xc3fecd0f ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc6224934 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc7bf6441 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xc87a9518 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xc9ea7d10 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xccb54619 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xce4f2054 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0xce7f3e34 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xcf82bc3b ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0xd1ed7218 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xd235a5aa osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd3cf25c7 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0xd4cfd5e5 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xdc6ab4e6 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xf347bae0 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf563cd5b ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xf81f495e ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0xf8502716 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xf9c22c57 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xfc4297d5 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xfd1a4912 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0xfe1b4ee0 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xff2c92ab ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x33381a8c dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xd3d77e31 dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x46dd3c26 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6ac27349 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6e14ff3a wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xaead7112 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb78b2b94 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe6dd0389 wpan_phy_find +EXPORT_SYMBOL net/ipv4/fou 0x11331915 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xda8b1379 gue_build_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x327670d0 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x74b85e7f ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7ea84470 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb987af57 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe1772006 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf53eca7d ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x304adc16 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x687fd925 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xfd3f0b45 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x028b5727 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2a9cb80a ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x9ffc8ebd ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x64102a0a xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xaf2b7573 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x9fac79b8 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x01cab857 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x77a19097 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7dfcf962 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc149761a ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x0fd9d1ae ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1742c11d ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xed574fdf ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x4fa28b76 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x6b4285d4 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1a471074 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf0d4bc28 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x40d8573d ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x70089c65 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x79004ebd ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x802578e5 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8d9b1df3 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x982ee8a9 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x98674f15 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xbf65bfab ircomm_connect_request +EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x01780c2c irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x077d880d irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0ff76178 irlap_open +EXPORT_SYMBOL net/irda/irda 0x1a9b425a irttp_dup +EXPORT_SYMBOL net/irda/irda 0x1c7e6156 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x318bcdb0 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x3b424aa5 irda_device_set_media_busy +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 0x601bda46 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x63a78743 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x69994d6b iriap_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 0x6eccdfc8 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 0x837d4a6c irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x85935a6d irlap_close +EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x8e20d1b8 iriap_open +EXPORT_SYMBOL net/irda/irda 0x8f35267c async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x93678dab iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x9cea6d74 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xa5edc895 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xab5d4882 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xac6a28c0 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 0xc055be93 irttp_connect_response +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 0xe3463529 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xe5a9bd42 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object +EXPORT_SYMBOL net/irda/irda 0xf1bd6272 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xf2defa17 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xfb7e3385 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0xfe0e7ae4 irlmp_connect_response +EXPORT_SYMBOL net/l2tp/l2tp_core 0x4cf4d177 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x692c33c6 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x0868a6af lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x1bee3083 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x2fceffa9 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x54821cbb lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x593b4bdc lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x5cb38882 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x7d08ac53 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xae214f53 lapb_getparms +EXPORT_SYMBOL net/llc/llc 0x138e0f05 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x2e65ffe8 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x46ce0af8 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x471991ec llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x7666aded llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xd819e772 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xf0fa36a6 llc_set_station_handler +EXPORT_SYMBOL net/mac80211/mac80211 0x01929f15 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x0531aaed __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x05d1734b ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x06d57f3b ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x08ac0c99 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x0acb5d9f ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x0de19b1a ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x11108f39 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x1384df73 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x15797655 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x1eacbccc ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x20127c10 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x256fb0e0 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x266d360a ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x284390d0 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2c741eb8 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x30b91c66 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x328aa63c ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x331bcc23 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3d0838e1 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x3e2be976 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x4955d52a ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x4bd29f0e ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x50747b25 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x51206b42 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x51e5f9cc ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x57bd0de1 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x5c0fa2a2 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x5d6935f3 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x60d2dd90 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x64efaab2 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x697a0051 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x69bb9677 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x69c8d0da ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x6fe10ebc ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x73fff188 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x79aa1715 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x7af3ad44 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7db20650 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x818cbc49 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x872ddc62 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x8a14ac94 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x8dc1ef1b ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x954a9df5 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x96efaae4 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x9725d70a ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x99c6b9b4 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x9b14185d ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x9dc3e916 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x9f996475 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xa0cfcf26 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xa16bed4e ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa3512e65 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xa6bcb323 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xa867771e ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xb0105381 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xb0b66b3a ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb11a33f0 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xb3368233 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xb748b738 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xbddf3751 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xbf985132 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xceeef33a ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xd109d48a ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xd34b414b ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xd459e2e8 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd7317590 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xdce8abad ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xdfc853be ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xe06a7d8f ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xe57b5061 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xe5be96df ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xed7d7a23 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xf3225171 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xf51a04a2 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xfe684efe ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xfe75de98 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xfed6aa89 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac802154/mac802154 0x0cffd7cf ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x18997ef3 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x3ab9067c ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x4ee97e08 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x69daca3a ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xaa89640a ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xad438947 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xeae9248b ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x05957130 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1716a84b unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2bc85309 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4ff69545 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x582c83fa ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5a31ba5a register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x61784e67 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x646539b4 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7d2d72b4 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x80ce5dee ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x880dbb4f register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xab4d5737 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdaf8cdab ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe3de742f ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x778c4f87 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x9ea557e6 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xf5d0034d __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x1e38b54d nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x669998d2 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x846b7ade __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xb49f79e4 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xc529b871 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xd63b6ebb nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x3f0f4372 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x43244448 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x60ee957d xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x73b746fc 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 0xa5ca3765 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xa9d9fdb4 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xb1fcadab xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xcc6b9d56 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd666af37 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xf2a7b5f6 xt_find_target +EXPORT_SYMBOL net/nfc/hci/hci 0x02e020c1 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x071d2369 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x1297752a nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x26bc2c54 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x2f5966be nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x365d9e41 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x3f38b157 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x40b99625 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x459736f0 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x6fb38a9f nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x716abd23 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x82c9c1da nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x98217e3e nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x99217511 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xb1599ad7 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xb530076d nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xbf4ec354 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xd32a18d8 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xe07fd32e nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xee5e2828 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xf7f2d4ef nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/nci/nci 0x0ab62f55 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x12304e65 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x12dd9107 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x193ccca1 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x1aacb814 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x1bd68ce7 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x258fbd1f nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x3beb20be nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x46448ddb nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x4e678ae3 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x4edc190e nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x6859e4dc nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x6d867fe2 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x768853aa nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x77fc0049 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x78094c70 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x7c881fb5 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x878f051e nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x9514e993 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x9e309b40 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xa0fb7b2f nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xac30c87d nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xb98688bd nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xb9ef5afa nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc33ef738 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xdbd11549 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xe0eebdf3 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xf4349e66 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nfc 0x00dc822b nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x157648e2 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x211d4757 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x2212c51d nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x3032ad9a nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x337be685 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x3c5201d7 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x4274ded2 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x4662e74b nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x7e473dac nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x89e5e45d nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x9032b634 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x9eaf524a nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xa27e03b7 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xa3705c46 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xb084a166 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xb61188e1 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xbfb70c77 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xc2713172 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xdda857fd nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xdfd7505f nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xe86c513c nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xeb4ca8cf nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xfaef0d3d nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc_digital 0x7489b696 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x8b74df05 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xd73a421e nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xf83ac9ce nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x1d85891c phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x22e18178 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x39c107be pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x9a351ec6 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xc205c6b3 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xe3c575eb phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xe5a8c8d2 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xfbff9e81 pn_sock_hash +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x07f1d093 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0a0cc3fd rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2a3a4b98 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2a53babf rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x54a1d1d5 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6885f539 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x874c386b rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa152b515 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa81f3d15 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xacddce19 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb9b65a92 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc0990cdb rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xdbfa4b63 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe40c97b6 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf493f118 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/sctp/sctp 0x71d635f6 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x162d7ac9 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x5f453a7e gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xbe0706b2 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x08485a6c xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x520459bc xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x9a34efb9 svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0x7f44d23e wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xa130400f wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x0245c0ee cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x055a94fd cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x06848103 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x073e0fea cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x07a535a4 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x093d0caf wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0b700ed0 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x0c6ae056 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x0f8fed88 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x12e1d2ec __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 0x1bcae22c __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x1d2af87c wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x2510b3f9 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2a232de8 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x35972911 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x390c4202 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x39b7bdfa cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3cafa665 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x3ea4f51d wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x407a2197 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x445acc67 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x456a7d86 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x45856552 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x4937ce61 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4b312c6b cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x4fc78ddd cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x50e31eed cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x55c7d61a cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x5730a87b ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x57a8aabf cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x5e8e77d2 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x60a3c74d cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x62c91994 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6aa40e95 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x6d2fdcf7 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6df1065d ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x7019ba8b cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x739038d8 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x77e9609f wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x791b542d cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x7a0a1ab9 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x7b144f79 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x7c10e9e6 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x7de56caa cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x83fc4a13 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x85c84dfd cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8e1a50af regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x928c571d cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x965a4bba cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x985e6e71 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x99bf1b29 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x9ac8754d freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x9ce8778d 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 0xa52a49a4 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xa9759230 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xa9b4bc28 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xad84e115 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xae549436 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb0dd840d cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xb2c1532c cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xb4620ab4 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xb6409cc5 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xb6fd165b cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xbf3c7ed1 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xc0ab8575 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xc30f7a02 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xc57c3e49 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xc61718fd 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 0xcb2f5d40 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xcce4667a cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xcfa439d0 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xd3cbe3fc cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xd611b81f cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd631a04a cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xd6a64642 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd87aa75b ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xda0bffe8 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xe0b1b063 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xedb8d3b0 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf51de9c8 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xf896caf2 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xfaf1994a cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x2822e248 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x4a453497 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xabbb8b30 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xc86d4db0 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xd5fbddae lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xef2d9ee2 lib80211_crypt_info_init +EXPORT_SYMBOL sound/ac97_bus 0x58ae10c7 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xc434c192 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 0x2b8ad913 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 0x5c1e50d4 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 0x897da382 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x9dcd34d3 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 0xe95f9e1e 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 0x7e304aed snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x052f69be snd_card_new +EXPORT_SYMBOL sound/core/snd 0x063e6d23 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x0b12fab6 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x0b1d3223 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x0df12ceb snd_device_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 0x1d1f1820 snd_component_add +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 0x2d6a4b9c snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x32b5ef06 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x3325753f snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x37e2fb9b snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x4287aa4f snd_card_free +EXPORT_SYMBOL sound/core/snd 0x49e75688 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4bf8e529 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x4ea554e1 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x54ececed snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x5ba084ac snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x65bcdd9a snd_device_free +EXPORT_SYMBOL sound/core/snd 0x69467022 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x6b94c88d snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x6c10bb43 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x6e05b4a5 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x7014d019 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x716f0a78 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x7d73008c snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x7de38a19 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x7fbc3266 snd_cards +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x8678a8fd snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x88b480e0 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x8fcfcfdd snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x945d44e1 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x94bd8343 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x98c3f34b snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x9d013460 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0x9e9c3629 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xafb7e7f8 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0xafd8d381 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb7a19b1d snd_register_device +EXPORT_SYMBOL sound/core/snd 0xba4b47e4 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xbb63dcd8 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xbde65745 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xdb382c6c snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xe1a8eea5 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xe3092238 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xe30e024a snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xe51e088a snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xf88b6dc9 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xfbfa06fc snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xff7f2b8f snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0x96f2b05e snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x03cc6bea 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 0x0f2ebc33 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x0f90750a snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x107c5240 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x11edc5df snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x136ce869 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x16f3a6e4 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1e703831 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x33f8b8b3 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x356455d3 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x35faf1a5 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x37353524 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x37454830 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x38859bb3 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3bd0d47f snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x4134e7e6 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x439ecabd snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x43b319ef snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x48e6faa4 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x533ebb64 snd_pcm_kernel_ioctl +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 0x5aa8f269 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x615a3230 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x61c9a08b snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x656f0a61 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x67630297 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x68af40f3 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x73cbc749 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x90ed1690 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x97309c32 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x9a1a0c7d snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x9b061a0a snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xaae85f6f snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xacf78e36 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xaf30540c snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xb0774ce9 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xb8658710 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbbccfc7e snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xc1fcabeb snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0xd0b2b90f snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xe1753529 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xe218d22c snd_pcm_lib_readv +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 0xe8034044 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xf71da8c4 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xf81612f3 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xfd285869 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1904209d __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1e2dd87f snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x34299958 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4f690ad1 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6c507cfb __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6e9cee27 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7ffacf00 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8286f9ef snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x87107f40 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x938f5e4d snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x97d8a450 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9b9a125a snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb79243c2 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbad28171 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc07ddbce snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd184338d snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf067ee6e snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf27d5e3d snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfef94dc1 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-timer 0x50b1a19d snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x5ff2d07f snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x657b2d07 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x736787f1 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xa36b317a snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xafd4bb56 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xb8fa776c snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xc4dac94a snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xd7363aea snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xe7f1eda0 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xe9d35a0e snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xf39bed76 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xf6abb7b1 snd_timer_global_register +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 0x0043c248 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x150525c7 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1906fd61 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3ab1afaa snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x58e06192 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x984613c2 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa7b52a55 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc7452283 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe94c55fa snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x14346b8f snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1aa2c6f6 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 0x80a8e7dd snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x887a40f7 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x89b41ef2 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x926b4fe4 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xaafcc8e4 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb2533a27 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb4d141e4 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0be3da0f amdtp_stream_pcm_pointer +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 0x1dd66566 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x225483e2 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f4003c0 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x46d862de snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4afbc386 amdtp_stream_set_parameters +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 0x53989b94 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x590d385a amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5f9a621c amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6b4f25ea amdtp_stream_pcm_abort +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 0x74f0d8af amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8574feec amdtp_stream_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 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 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 0xe953c4e3 amdtp_stream_stop +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/i2c/other/snd-ak4113 0x59d20d31 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xa7a45006 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x10d679af snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x39520b06 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3a41fe57 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5e4de9bb snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8d01007d snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa7c831c8 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbef1fbcb snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xed433597 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x7c71039d snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x7f5de397 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xbdc7ddd4 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xde4bce7c snd_akm4xxx_build_controls +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 0x03a0fb9d snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0f713247 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x40cd3ba6 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x671f1d42 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x828e2f6a snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbc247c2d snd_cs8427_reg_write +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 0x0f73379c snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x18c8ab09 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2802d06b snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x39b52063 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x78e9fd85 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8e1eba6e snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x96d39b5b snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa1a0dbf5 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa6bc2f80 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xeaab8357 snd_sbmixer_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0cf89cfe snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x15a8bcda snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x207196eb snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x25a7f01b snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x279b460c snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2de7e0a0 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3d0745f9 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4a87ff9a snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5ba95ad6 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5d46fc3b snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8022c06f snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x84e7ef87 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x879a3d5c snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8e461b8f snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcc4b18ee snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd4dc3edd snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xde875d5c snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0579c21b snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x191267e9 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x43756637 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x50599ac5 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7e46634c snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x89a161f9 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8bbd77bf snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc8830ab2 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf08b2dac snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x68a423ca snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x75f944ea snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xf69a868c snd_ice1712_akm4xxx_free +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 0x17f47c07 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x22e847f2 oxygen_write_uart +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 0x56b1c953 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5a13b8d2 oxygen_pci_remove +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 0x9773c0e8 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x99b6a0e1 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa2149675 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb761b786 oxygen_update_dac_routing +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/oxygen/snd-oxygen-lib 0xf5e0b449 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x10a3f016 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5d50b15a snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x96fd5d21 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9bfc9fc2 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xcb4df742 snd_trident_start_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x05755f8d tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x93c9ff4b tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/snd-soc-core 0x613b2077 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 0x829baa09 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 0x001243fa input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x002376e1 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x003b72fe mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0x00543cff d_instantiate_no_diralias +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 0x00a7246d iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x00b86353 __napi_schedule +EXPORT_SYMBOL vmlinux 0x00bf3fd5 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x00c52e41 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e45b4b __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x00f32533 block_write_full_page +EXPORT_SYMBOL vmlinux 0x00f7a310 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x01009642 da903x_query_status +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x010265e0 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x010a22ef end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x010dd2ef led_blink_set +EXPORT_SYMBOL vmlinux 0x0118df25 km_query +EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 +EXPORT_SYMBOL vmlinux 0x012bed21 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x0136a944 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x0140cbca scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x01790e94 csum_partial_copy +EXPORT_SYMBOL vmlinux 0x0181c9d3 single_release +EXPORT_SYMBOL vmlinux 0x01889c7e tty_free_termios +EXPORT_SYMBOL vmlinux 0x019651c7 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x0196799c alloc_file +EXPORT_SYMBOL vmlinux 0x0197485d mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x019bd8f7 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x01c4cfcc serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x01cfedac rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x01d87186 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02397793 kobject_get +EXPORT_SYMBOL vmlinux 0x023a074a hvc_get_chars +EXPORT_SYMBOL vmlinux 0x0241d430 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x024ddbbf blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x0259b5e5 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x025cd81f udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x028ba95d key_reject_and_link +EXPORT_SYMBOL vmlinux 0x02a10a40 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02a7b410 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x02e9da1e elv_register_queue +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02f7154f tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x031eb22d vfs_fsync +EXPORT_SYMBOL vmlinux 0x032c6911 genphy_config_init +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0336e60f of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x033d2ac9 netdev_err +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x03798fa0 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037dc791 vfs_setpos +EXPORT_SYMBOL vmlinux 0x039237ac request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x03a9a152 get_empty_filp +EXPORT_SYMBOL vmlinux 0x03aa2e8a kmem_cache_free +EXPORT_SYMBOL vmlinux 0x03df14d9 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0403c6ce of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x04074f48 ioremap +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044bd459 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x044fb182 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x0465213d dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x0473b445 dup_iter +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x048bb4fe blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x04a44735 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x04c788aa bio_add_page +EXPORT_SYMBOL vmlinux 0x04d3ce94 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04f3e82a dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x04f971df ptp_clock_register +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x053b97a1 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x05432a0b devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x0557623f fddi_type_trans +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x059adf02 tty_register_device +EXPORT_SYMBOL vmlinux 0x059c66af led_set_brightness +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05bc755c __skb_get_hash +EXPORT_SYMBOL vmlinux 0x05fcb89f bio_unmap_user +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x062d5a04 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x062fa75a install_exec_creds +EXPORT_SYMBOL vmlinux 0x0631bef0 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0644a371 udp_add_offload +EXPORT_SYMBOL vmlinux 0x0653c859 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x06613c5b pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x066286e5 kvmppc_hv_find_lock_hpte +EXPORT_SYMBOL vmlinux 0x0666d5dd skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x069518bd blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x06a9ae86 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x06b361a1 may_umount +EXPORT_SYMBOL vmlinux 0x06bcefa4 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x06c37bbe of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0x06c78a79 napi_get_frags +EXPORT_SYMBOL vmlinux 0x06d4e426 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x06e4836e __break_lease +EXPORT_SYMBOL vmlinux 0x06e97ff1 eth_header_parse +EXPORT_SYMBOL vmlinux 0x06eb0547 simple_getattr +EXPORT_SYMBOL vmlinux 0x06f178d5 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x075bc471 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x07721a6e ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x0774459e rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x077fff1a fb_set_cmap +EXPORT_SYMBOL vmlinux 0x078b555a mb_cache_entry_release +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 0x07b5c7b4 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x07bedd46 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07e28ebc con_is_bound +EXPORT_SYMBOL vmlinux 0x07e7a1a2 vme_register_driver +EXPORT_SYMBOL vmlinux 0x07f19d5c dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x080dacca mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x08101c4f nvm_register +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084501ef agp_generic_enable +EXPORT_SYMBOL vmlinux 0x0847cd38 vm_insert_page +EXPORT_SYMBOL vmlinux 0x0868e224 ibmebus_unregister_driver +EXPORT_SYMBOL vmlinux 0x08b6af37 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x09399421 dump_truncate +EXPORT_SYMBOL vmlinux 0x093c7bb2 param_set_bool +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x096027b1 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x096b10e2 blk_end_request +EXPORT_SYMBOL vmlinux 0x09759e35 put_filp +EXPORT_SYMBOL vmlinux 0x0982f847 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098e52e5 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d9ab9b tcf_hash_check +EXPORT_SYMBOL vmlinux 0x09de0521 mmc_start_req +EXPORT_SYMBOL vmlinux 0x09debbc3 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x0a269d1c __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a501c4f kernel_getpeername +EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x0a6c7aa9 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a8d06af blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x0a9da5cd __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa41d31 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x0aa49b62 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x0aa51a6a phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x0aa5f14c d_genocide +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad50320 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp +EXPORT_SYMBOL vmlinux 0x0b3040eb of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x0b3d9f46 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x0b3f0a29 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x0b4cd9e7 dev_printk +EXPORT_SYMBOL vmlinux 0x0b4e75bd freeze_bdev +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b6b1a1a __module_get +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b76eed6 scsi_device_put +EXPORT_SYMBOL vmlinux 0x0ba3bfea netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x0bab33eb devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc0adfe read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc477e5 invalidate_partition +EXPORT_SYMBOL vmlinux 0x0c0e7c3b skb_store_bits +EXPORT_SYMBOL vmlinux 0x0c129041 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x0c19a508 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x0c1b04cb loop_backing_file +EXPORT_SYMBOL vmlinux 0x0c1e3eb2 vm_map_ram +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c2386e7 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x0c2af60d seq_putc +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c5492d9 proc_mkdir +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c676d53 inet_select_addr +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c73d8e6 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x0c74d2b0 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x0c7ab2b9 follow_pfn +EXPORT_SYMBOL vmlinux 0x0c9d0631 input_grab_device +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0cad4eec __serio_register_port +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb9909f tcp_disconnect +EXPORT_SYMBOL vmlinux 0x0cb9a61b tcp_filter +EXPORT_SYMBOL vmlinux 0x0cbea8f7 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x0cbf899f skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x0d2e416a of_get_parent +EXPORT_SYMBOL vmlinux 0x0d490146 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d64d07d qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x0d65c026 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x0d6c963c copy_from_user +EXPORT_SYMBOL vmlinux 0x0d8f5948 eth_header_cache +EXPORT_SYMBOL vmlinux 0x0d98032a of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x0d9fdaeb __vfs_read +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 0x0dcffdaf block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x0df45929 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x0e12bfde dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x0e1335fa bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x0e258fba vfs_iter_write +EXPORT_SYMBOL vmlinux 0x0e2bf98c sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x0e3ccf98 release_firmware +EXPORT_SYMBOL vmlinux 0x0e5f87b3 seq_open_private +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0eca2e1f kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0eff2fa4 set_device_ro +EXPORT_SYMBOL vmlinux 0x0f000ccb devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x0f424900 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x0f629eb6 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x0f62abd1 write_inode_now +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f899ded bd_set_size +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fbe7691 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x0feadfb3 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x1014f31f nobh_writepage +EXPORT_SYMBOL vmlinux 0x102937ba add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x10386bbd param_ops_int +EXPORT_SYMBOL vmlinux 0x105f1bfc __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x1072d441 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x10762774 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x109df032 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x10b89651 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x10bf9924 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x10d682b1 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1127e9f8 register_cdrom +EXPORT_SYMBOL vmlinux 0x11294a03 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x11667448 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1173fbb9 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x1177225a inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x118eade9 generic_removexattr +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11c1af54 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x11e55933 bdgrab +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x1201b3c1 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x121265cb kernel_sendpage +EXPORT_SYMBOL vmlinux 0x121f42fa pnv_cxl_release_hwirq_ranges +EXPORT_SYMBOL vmlinux 0x123bd33d sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x123d5749 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x123d88ba register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x128144dd jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12ac5629 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x12b0d11e padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x12b9f4d5 md_write_start +EXPORT_SYMBOL vmlinux 0x12c63801 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x12c8f8fb security_d_instantiate +EXPORT_SYMBOL vmlinux 0x12d37262 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level +EXPORT_SYMBOL vmlinux 0x12e889be vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x12eb0476 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x1315b1cc locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13280f22 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x132c49d9 setattr_copy +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13397c6e __kernel_write +EXPORT_SYMBOL vmlinux 0x133bda4e nvm_get_blk +EXPORT_SYMBOL vmlinux 0x133c4176 d_move +EXPORT_SYMBOL vmlinux 0x135b5ca0 kern_path_create +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13ed166b inet_frags_init +EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize +EXPORT_SYMBOL vmlinux 0x13ffbd66 register_quota_format +EXPORT_SYMBOL vmlinux 0x142ca685 bio_put +EXPORT_SYMBOL vmlinux 0x1438800a dev_change_carrier +EXPORT_SYMBOL vmlinux 0x143a4076 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x14925adf blk_peek_request +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 0x14fd1081 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x1501024e vc_resize +EXPORT_SYMBOL vmlinux 0x1504ed68 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x15321cc3 seq_open +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x15b465ce inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x15b84963 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x15c34a9f from_kuid +EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x15e016d8 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x15e0a42b user_revoke +EXPORT_SYMBOL vmlinux 0x15e8b24a inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x15ec0d4d __dquot_free_space +EXPORT_SYMBOL vmlinux 0x15f7a34f d_walk +EXPORT_SYMBOL vmlinux 0x15fc9da5 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x16064af4 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x1609d69b redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token +EXPORT_SYMBOL vmlinux 0x1622c0ae iterate_supers_type +EXPORT_SYMBOL vmlinux 0x1669857a give_up_console +EXPORT_SYMBOL vmlinux 0x166a68ee ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x16797f06 tty_kref_put +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x16a9771e skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x16aafe2e skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x16c1231c fb_validate_mode +EXPORT_SYMBOL vmlinux 0x16cffb3e dma_pool_create +EXPORT_SYMBOL vmlinux 0x16d3ebad bio_advance +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e71bed xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x16e7f81c param_get_ulong +EXPORT_SYMBOL vmlinux 0x16eb812c i2c_clients_command +EXPORT_SYMBOL vmlinux 0x170b0df4 put_tty_driver +EXPORT_SYMBOL vmlinux 0x17205daf dquot_scan_active +EXPORT_SYMBOL vmlinux 0x172806f1 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x172e1291 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x1743414f __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x1761c5f9 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x178c42ab mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x1796a733 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17b1cd70 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x17ba3e99 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x180ca8a7 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x180e9dab of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x1830ac64 simple_rmdir +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x1857aa39 proc_dointvec +EXPORT_SYMBOL vmlinux 0x186274e3 mpage_readpages +EXPORT_SYMBOL vmlinux 0x187ecea7 pci_try_set_mwi +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 0x18a51ada node_data +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18efefb0 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x18f2a17f vio_unregister_device +EXPORT_SYMBOL vmlinux 0x190788df path_put +EXPORT_SYMBOL vmlinux 0x190ad1d3 km_policy_notify +EXPORT_SYMBOL vmlinux 0x1928f695 try_module_get +EXPORT_SYMBOL vmlinux 0x193fed57 import_iovec +EXPORT_SYMBOL vmlinux 0x19446687 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x194a7175 uart_register_driver +EXPORT_SYMBOL vmlinux 0x195086c3 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x197a1ab8 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x19817bab skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x198f26bb of_phy_attach +EXPORT_SYMBOL vmlinux 0x199479f9 igrab +EXPORT_SYMBOL vmlinux 0x199bf184 tty_chars_in_buffer +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 0x19d2730f kset_register +EXPORT_SYMBOL vmlinux 0x1a02a4d8 tty_unlock +EXPORT_SYMBOL vmlinux 0x1a098949 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x1a0a81d3 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x1a0cce11 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x1a483c4c netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x1a4ebc38 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x1a597ea5 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x1a6d513e xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x1a71a6bf blk_make_request +EXPORT_SYMBOL vmlinux 0x1a7d218a pcim_iounmap +EXPORT_SYMBOL vmlinux 0x1ab4cc87 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x1abc8185 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1aca99c4 led_update_brightness +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1afdf080 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b047b86 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x1b0f092b tcp_ioctl +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b402157 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x1b625d33 enable_kernel_vsx +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b8be91a dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bdfa358 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x1be2b17f nf_log_unregister +EXPORT_SYMBOL vmlinux 0x1bf0230e skb_free_datagram +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 0x1c953aa3 sk_dst_check +EXPORT_SYMBOL vmlinux 0x1ca0935b padata_alloc +EXPORT_SYMBOL vmlinux 0x1ca2d0d7 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x1cf0ce9d blk_init_queue +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d1f13ce pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x1d884206 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x1d9870de devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x1dbc4d0c proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x1dc19c1a twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dcc295f of_get_mac_address +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd7b150 pci_get_slot +EXPORT_SYMBOL vmlinux 0x1df45b01 alloc_pages_current +EXPORT_SYMBOL vmlinux 0x1dffb433 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e251f69 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x1e256d92 eth_type_trans +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e2e468f dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x1e377e69 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x1e3f4645 param_get_ushort +EXPORT_SYMBOL vmlinux 0x1e4998fd fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x1e61a9ab rtnl_notify +EXPORT_SYMBOL vmlinux 0x1e65b5e2 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x1e6a0e8f __inet_hash +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e88ffd3 dcache_readdir +EXPORT_SYMBOL vmlinux 0x1e9596ee lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea6eca6 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x1ecf4deb uart_add_one_port +EXPORT_SYMBOL vmlinux 0x1ed80353 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x1efb66fc skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x1f2c2c4b xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x1f41a5ed blk_get_request +EXPORT_SYMBOL vmlinux 0x1f456b24 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x1f48e614 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x1f546f0f pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f72b8be jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x1f92c9dd file_ns_capable +EXPORT_SYMBOL vmlinux 0x1fb61ede lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x1fb791e5 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fbe4edf scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x1fc94384 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x1fcbc65f vme_irq_handler +EXPORT_SYMBOL vmlinux 0x1fce7be3 devm_gpio_free +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 0x20043675 kill_pgrp +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20495473 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x205c8a31 d_drop +EXPORT_SYMBOL vmlinux 0x205cba43 param_set_ullong +EXPORT_SYMBOL vmlinux 0x205d8837 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x20676375 bio_endio +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x20a6d6a3 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b9f32a skb_set_owner_w +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 0x210ce5a5 bio_reset +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x212a623e __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x212b831c elv_add_request +EXPORT_SYMBOL vmlinux 0x21407e65 deactivate_super +EXPORT_SYMBOL vmlinux 0x217f464c bdi_init +EXPORT_SYMBOL vmlinux 0x21930141 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x21ba1568 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x21beeef8 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x21cd2200 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x21df3a74 touch_atime +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x223d4d38 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x224b8c5c tso_build_hdr +EXPORT_SYMBOL vmlinux 0x22627a63 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x226690f9 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x22881850 ppp_input_error +EXPORT_SYMBOL vmlinux 0x22a5eb68 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x22ad5847 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22ca3dd2 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x22d431fa pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x22d8937b fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x22f0e1a9 tcp_splice_read +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 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b8bbad napi_complete_done +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c10976 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23cf97db vm_event_states +EXPORT_SYMBOL vmlinux 0x23cfaacb kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x23db7cc1 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x23e7e44e single_open +EXPORT_SYMBOL vmlinux 0x23ecb050 dev_err +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2415aa1b blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24302bd9 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x244457cd mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x24723464 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x247288ba dma_common_mmap +EXPORT_SYMBOL vmlinux 0x24826224 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2483fe55 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x24a27bb7 inet_release +EXPORT_SYMBOL vmlinux 0x24b81b58 dst_destroy +EXPORT_SYMBOL vmlinux 0x24c7a505 __mutex_init +EXPORT_SYMBOL vmlinux 0x24d6b4a6 cur_cpu_spec +EXPORT_SYMBOL vmlinux 0x24ee7992 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x24f00380 ida_init +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x254949fc pcibus_to_node +EXPORT_SYMBOL vmlinux 0x255e84a2 request_key_async +EXPORT_SYMBOL vmlinux 0x2568fdac devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258db2a1 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x25932410 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x25a44425 submit_bh +EXPORT_SYMBOL vmlinux 0x25abf2df max8998_bulk_read +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 0x26104145 drop_super +EXPORT_SYMBOL vmlinux 0x261e1008 sk_free +EXPORT_SYMBOL vmlinux 0x263b0c66 sock_create_lite +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc +EXPORT_SYMBOL vmlinux 0x2648c97e __vfs_write +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x265f7092 bdput +EXPORT_SYMBOL vmlinux 0x26637beb fget_raw +EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update +EXPORT_SYMBOL vmlinux 0x2690b2a5 pci_enable_device +EXPORT_SYMBOL vmlinux 0x2692eb52 __neigh_create +EXPORT_SYMBOL vmlinux 0x26a322d9 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x26ac9975 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x26ae925c __serio_register_driver +EXPORT_SYMBOL vmlinux 0x26af3228 ilookup +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 0x26fb8b8e mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x2708bf66 netdev_change_features +EXPORT_SYMBOL vmlinux 0x2722c9f9 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x272a061a lro_receive_skb +EXPORT_SYMBOL vmlinux 0x273321fd __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x27400d2c down_read +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x2754d6e5 account_page_redirty +EXPORT_SYMBOL vmlinux 0x275a0639 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x275ac0fc phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x2761e308 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x27646df3 start_thread +EXPORT_SYMBOL vmlinux 0x27666dc6 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x276a1a5b generic_make_request +EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above +EXPORT_SYMBOL vmlinux 0x277a5a94 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x277ebffc tty_port_destroy +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27913f70 proto_register +EXPORT_SYMBOL vmlinux 0x279cebc2 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bda1ff cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x2803b21a tcp_parse_options +EXPORT_SYMBOL vmlinux 0x28151203 vfs_writev +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2821804f scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x2840e40a of_match_device +EXPORT_SYMBOL vmlinux 0x28586b78 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x28768493 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x287a4aa3 pci_save_state +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 0x28ab434f compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x28b2423b compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x28b638bc netdev_update_features +EXPORT_SYMBOL vmlinux 0x28b6551b unregister_binfmt +EXPORT_SYMBOL vmlinux 0x28b8b24e __napi_complete +EXPORT_SYMBOL vmlinux 0x28b8d3de __genl_register_family +EXPORT_SYMBOL vmlinux 0x28c8569e param_ops_ulong +EXPORT_SYMBOL vmlinux 0x28de9136 module_put +EXPORT_SYMBOL vmlinux 0x28e2985f netdev_info +EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x28f4e6fb ip6_frag_init +EXPORT_SYMBOL vmlinux 0x2911c564 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x2925583a devfreq_add_device +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x29600e48 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x29752b8c d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x299a9529 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x29ac3edd __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x29b2279e __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x29c5dfb4 make_kprojid +EXPORT_SYMBOL vmlinux 0x29c6bfc0 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x29dea469 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x29eaebc9 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x29edd8c3 rtas_online_cpus_mask +EXPORT_SYMBOL vmlinux 0x2a048277 md_register_thread +EXPORT_SYMBOL vmlinux 0x2a152493 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x2a248ccf scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x2a2adad2 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a43bfbe finish_open +EXPORT_SYMBOL vmlinux 0x2a61139f i2c_register_driver +EXPORT_SYMBOL vmlinux 0x2a66a0af agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x2a77f947 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x2a8e8f02 dev_addr_add +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2abf939e scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2add0755 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x2add1a1e xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x2aea1989 simple_fill_super +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b122e0f unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b3fb4b5 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x2b4991ec xmon +EXPORT_SYMBOL vmlinux 0x2b5c9327 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x2b6a12fc sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x2b7f1868 generic_pipe_buf_confirm +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 0x2be83b50 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c4445fe netlink_unicast +EXPORT_SYMBOL vmlinux 0x2c4ecc76 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x2c5328a7 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x2c7ac099 blk_put_request +EXPORT_SYMBOL vmlinux 0x2c7ad78d compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2c90ddf9 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x2ccf1b9d dm_io +EXPORT_SYMBOL vmlinux 0x2cf58d21 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2cf95006 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x2d0e846b inet6_ioctl +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d47ca5f blk_execute_rq +EXPORT_SYMBOL vmlinux 0x2d6c8a1a blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x2d8bfeaf blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x2db1e0c6 dql_init +EXPORT_SYMBOL vmlinux 0x2dee2b03 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x2df4f3bf n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0x2e0cf734 tty_register_driver +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e12a93b ibmebus_request_irq +EXPORT_SYMBOL vmlinux 0x2e16bfee xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x2e21248b nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e30cc4b nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x2e354afd consume_skb +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e5c08f2 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x2e62a3b5 dev_deactivate +EXPORT_SYMBOL vmlinux 0x2e748169 netpoll_setup +EXPORT_SYMBOL vmlinux 0x2e921296 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x2eab4b92 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x2eb047d0 input_register_handle +EXPORT_SYMBOL vmlinux 0x2ec37fa7 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x2ed8c1a6 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x2ef06736 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2ef70783 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f113576 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x2f1946f6 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user +EXPORT_SYMBOL vmlinux 0x2f3c4557 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x2f5fcd9d kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x2f770d7f tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x2f7931b7 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x2f849fc3 param_get_charp +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 0x2feebfa2 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x2ff8f5e4 dev_emerg +EXPORT_SYMBOL vmlinux 0x2ff9a960 finish_no_open +EXPORT_SYMBOL vmlinux 0x30001ded dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x300e265c follow_down +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x3026b8ef submit_bio_wait +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x303ae4d9 request_firmware +EXPORT_SYMBOL vmlinux 0x304690f4 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x304a8daf agp_backend_release +EXPORT_SYMBOL vmlinux 0x306902bc fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x307a7a94 kobject_del +EXPORT_SYMBOL vmlinux 0x307af5fe passthru_features_check +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x309450ab mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30baf093 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x30e269fc lookup_bdev +EXPORT_SYMBOL vmlinux 0x30ef1222 pnv_pci_get_gpu_dev +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x3104d11b inet_register_protosw +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x311d2307 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x311eb09f rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x311f600b md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x313d12a7 is_nd_btt +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x317c3104 security_path_chown +EXPORT_SYMBOL vmlinux 0x319cc71f agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x319f4dce paca +EXPORT_SYMBOL vmlinux 0x31b5d64b tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x31cb1c26 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x31cd995b store_fp_state +EXPORT_SYMBOL vmlinux 0x3227b5d4 seq_release_private +EXPORT_SYMBOL vmlinux 0x322ed8cb tcp_close +EXPORT_SYMBOL vmlinux 0x32331c94 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x32589a8a lock_fb_info +EXPORT_SYMBOL vmlinux 0x3260d066 dump_emit +EXPORT_SYMBOL vmlinux 0x329693d8 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x32a50511 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32ed81ed set_binfmt +EXPORT_SYMBOL vmlinux 0x32ed951f __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x330a80dd agp_bind_memory +EXPORT_SYMBOL vmlinux 0x331f1c8c sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x33240f63 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x33750471 audit_log +EXPORT_SYMBOL vmlinux 0x3377b3d6 vio_unregister_driver +EXPORT_SYMBOL vmlinux 0x3397e88a reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33dc3e9d mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x33ec75af vfs_read +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x3418e109 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x345c0eab console_stop +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x34958f44 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x34996c59 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a4ecc5 inc_nlink +EXPORT_SYMBOL vmlinux 0x34b27509 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x34b9ba4f ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x34d1e09e clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x35046100 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x350fc6d3 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x355124df vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x3557dcc5 simple_open +EXPORT_SYMBOL vmlinux 0x355ea10b __sb_start_write +EXPORT_SYMBOL vmlinux 0x355f5fb5 netdev_printk +EXPORT_SYMBOL vmlinux 0x355f7ea2 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35742b5f do_splice_to +EXPORT_SYMBOL vmlinux 0x357b2ea8 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 +EXPORT_SYMBOL vmlinux 0x35d3ae6e mdiobus_free +EXPORT_SYMBOL vmlinux 0x35e09980 flex_array_put +EXPORT_SYMBOL vmlinux 0x35f4d9ba phy_connect_direct +EXPORT_SYMBOL vmlinux 0x3603d2ba make_bad_inode +EXPORT_SYMBOL vmlinux 0x36123d4b dev_printk_emit +EXPORT_SYMBOL vmlinux 0x3613db65 sk_net_capable +EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy +EXPORT_SYMBOL vmlinux 0x3633f8db ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x3648eeda init_net +EXPORT_SYMBOL vmlinux 0x3668fd48 flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy +EXPORT_SYMBOL vmlinux 0x367fd08e nf_register_hooks +EXPORT_SYMBOL vmlinux 0x368c8786 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x369dd4a8 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36b4b9e0 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36bf1bf1 filp_close +EXPORT_SYMBOL vmlinux 0x36c5266a __getblk_gfp +EXPORT_SYMBOL vmlinux 0x36de051b jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x36ea3184 audit_log_start +EXPORT_SYMBOL vmlinux 0x36f05094 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x36faba02 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x3729b0f7 ioc_lookup_icq +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 0x3745ea28 nvm_put_blk +EXPORT_SYMBOL vmlinux 0x3754aa29 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x375d025f __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x37606164 seq_dentry +EXPORT_SYMBOL vmlinux 0x376bd14f km_state_notify +EXPORT_SYMBOL vmlinux 0x3773ae48 get_disk +EXPORT_SYMBOL vmlinux 0x3780e872 phy_suspend +EXPORT_SYMBOL vmlinux 0x378d9437 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x37998e25 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b3d5eb __page_symlink +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c03f70 block_write_begin +EXPORT_SYMBOL vmlinux 0x37d25cba nd_iostat_end +EXPORT_SYMBOL vmlinux 0x37d355ac xfrm_input +EXPORT_SYMBOL vmlinux 0x37ee3bd0 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x380a7e97 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x380ca4b3 skb_append +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381b91f1 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x382015c4 vme_lm_request +EXPORT_SYMBOL vmlinux 0x3824feb3 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x38435899 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x38650df9 flush_icache_user_range +EXPORT_SYMBOL vmlinux 0x386b8e6c scm_fp_dup +EXPORT_SYMBOL vmlinux 0x387829cf of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3888fd44 pid_task +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 0x38def617 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x38e843ac bio_chain +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x38fdf6b5 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x3913e61e simple_pin_fs +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x39476616 param_set_byte +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x39571ef8 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x395bad43 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x396621a1 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x396a1486 mmc_wait_for_req +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 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x39de71d2 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x39e4fa9b sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x39ef23fb pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x3a3a4213 bioset_create +EXPORT_SYMBOL vmlinux 0x3a4fd790 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x3a72a4ed iunique +EXPORT_SYMBOL vmlinux 0x3a783145 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x3a9a1819 dev_change_flags +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa7d71d mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x3acf5add truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x3ad3fd59 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x3ad4c273 sock_create +EXPORT_SYMBOL vmlinux 0x3adb17b3 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x3addc281 from_kprojid +EXPORT_SYMBOL vmlinux 0x3adfbf1b sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x3aefc5ca pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x3af8f88e phy_connect +EXPORT_SYMBOL vmlinux 0x3b08d295 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x3b15c28e security_inode_readlink +EXPORT_SYMBOL vmlinux 0x3b23802c inode_init_once +EXPORT_SYMBOL vmlinux 0x3b5744be blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x3b5ade66 inet6_register_protosw +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 0x3b9e05f1 param_set_copystring +EXPORT_SYMBOL vmlinux 0x3bb67830 make_kgid +EXPORT_SYMBOL vmlinux 0x3bd18e3f padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x3bd23949 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x3bdc4d41 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x3bffef22 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x3c02d629 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x3c14b3ca phy_device_create +EXPORT_SYMBOL vmlinux 0x3c3d406c xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c425336 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x3c42fb0e nvm_register_target +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c5a166c __get_page_tail +EXPORT_SYMBOL vmlinux 0x3c7dd81f tty_port_close_start +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c9f1f2c locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x3ca2140f pskb_expand_head +EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init +EXPORT_SYMBOL vmlinux 0x3cca74e9 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x3cce88a5 vfs_rename +EXPORT_SYMBOL vmlinux 0x3ce44a24 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce7fba4 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x3d0b89d2 skb_unlink +EXPORT_SYMBOL vmlinux 0x3d0cc1d1 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x3d13e1f8 netdev_emerg +EXPORT_SYMBOL vmlinux 0x3d42ca62 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x3d7cac10 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x3d818d3f vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x3d845623 register_netdev +EXPORT_SYMBOL vmlinux 0x3da1c689 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x3da5a2df vio_find_node +EXPORT_SYMBOL vmlinux 0x3da7f189 __blk_end_request +EXPORT_SYMBOL vmlinux 0x3db44480 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3de5040c param_ops_invbool +EXPORT_SYMBOL vmlinux 0x3dfa2d27 generic_fillattr +EXPORT_SYMBOL vmlinux 0x3dfba219 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e072f11 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x3e2eef5d have_submounts +EXPORT_SYMBOL vmlinux 0x3e3be369 d_set_d_op +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3e9702b4 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x3eb2f3a4 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x3ebff877 of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x3ede3b4a xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x3ee1c078 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x3ee88d5f current_fs_time +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f0da885 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x3f1b57f7 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x3f3989d7 tty_hangup +EXPORT_SYMBOL vmlinux 0x3f3d2cde mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f45b683 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x3f4d5832 tty_name +EXPORT_SYMBOL vmlinux 0x3f68f8cd skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x3f6be633 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x3f7bf0ab blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x3f8ecd1d xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x3fb65227 dquot_drop +EXPORT_SYMBOL vmlinux 0x3fd4f2e8 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fe4287a remove_arg_zero +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4037f860 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x4067cc41 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x408a71d7 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409e03db kernel_connect +EXPORT_SYMBOL vmlinux 0x409e631d mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x40a169ab prepare_binprm +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 0x40d329ee mutex_unlock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d8d1ea add_disk +EXPORT_SYMBOL vmlinux 0x40e6bef7 tc_classify +EXPORT_SYMBOL vmlinux 0x40e6df69 __nla_reserve +EXPORT_SYMBOL vmlinux 0x40fee229 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x41096c0a pci_bus_put +EXPORT_SYMBOL vmlinux 0x41155f0a input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x411c1b0c tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x4127400e of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x412e299d bio_map_kern +EXPORT_SYMBOL vmlinux 0x4146532d md_check_recovery +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc +EXPORT_SYMBOL vmlinux 0x41843280 proc_set_user +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x4191adfd dev_set_group +EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x41b1c546 __dst_free +EXPORT_SYMBOL vmlinux 0x41b217d7 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x4228f8b3 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x422a0df4 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x42318bb2 simple_empty +EXPORT_SYMBOL vmlinux 0x423defd0 file_open_root +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x425182a1 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x4258f923 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x4262c5c6 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42afc61d blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x42bbb26d pipe_lock +EXPORT_SYMBOL vmlinux 0x42bf7aa5 sock_edemux +EXPORT_SYMBOL vmlinux 0x42c75eb8 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x42d56a65 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x42dd31f1 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x42ddb733 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4309702b skb_clone_sk +EXPORT_SYMBOL vmlinux 0x431a73c7 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x431f42ad init_buffer +EXPORT_SYMBOL vmlinux 0x4332350b posix_lock_file +EXPORT_SYMBOL vmlinux 0x43479630 mmc_request_done +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4357816b fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x43585a38 put_disk +EXPORT_SYMBOL vmlinux 0x436a1d43 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x4386e0a0 soft_cursor +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43a78649 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x43aebd70 skb_copy +EXPORT_SYMBOL vmlinux 0x43db16f1 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x43e0ea49 sget +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43f31efe nf_register_hook +EXPORT_SYMBOL vmlinux 0x43f51296 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x44037a83 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x4414eee1 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x4426ff28 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x442b657c ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x4436dbd4 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x444726a2 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x446bdf65 d_alloc +EXPORT_SYMBOL vmlinux 0x44815d52 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x4482ff39 sock_i_ino +EXPORT_SYMBOL vmlinux 0x448a26fa vga_con +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44c21f70 flow_cache_fini +EXPORT_SYMBOL vmlinux 0x44c7f3b1 kernel_accept +EXPORT_SYMBOL vmlinux 0x44cc337d __ps2_command +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x44f7b7cc skb_make_writable +EXPORT_SYMBOL vmlinux 0x44f9c8b1 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x45099b92 devm_request_resource +EXPORT_SYMBOL vmlinux 0x45165566 genphy_resume +EXPORT_SYMBOL vmlinux 0x452ce080 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45412755 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x4543c2be pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x45643ac6 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x45713de2 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x4585cbe9 dev_add_offload +EXPORT_SYMBOL vmlinux 0x4593bae9 nd_integrity_init +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 0x45b38910 md_update_sb +EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock +EXPORT_SYMBOL vmlinux 0x461599e6 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x461c8766 ata_port_printk +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x4672377c dev_trans_start +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x4691b2eb __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x46a0170e flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x46a333a6 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x46a35bac i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46d4adcc devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x46d513fe tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x46fb685e iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x475abd13 of_phy_connect +EXPORT_SYMBOL vmlinux 0x47608718 fence_init +EXPORT_SYMBOL vmlinux 0x4779230c poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x477fbf45 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x4783db74 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x478c7fe6 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47df3715 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x4803eecf blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x48245422 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x48250991 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x483b0f0e dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x484e1efb kdb_current_task +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x4866eb6b of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x486a7ea4 elv_rb_del +EXPORT_SYMBOL vmlinux 0x48742104 bdi_register +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bbea7d mmc_register_driver +EXPORT_SYMBOL vmlinux 0x48c92cd6 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x48cd04ef dev_get_iflink +EXPORT_SYMBOL vmlinux 0x48d39108 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x48dc7cac phy_device_register +EXPORT_SYMBOL vmlinux 0x48f4604a dquot_file_open +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49121a49 fb_blank +EXPORT_SYMBOL vmlinux 0x4938f65b ppp_channel_index +EXPORT_SYMBOL vmlinux 0x493ebcfb devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x494fb688 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x499bfc6d __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x49ad2d72 sock_no_accept +EXPORT_SYMBOL vmlinux 0x49afbd89 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49ddca1f neigh_seq_next +EXPORT_SYMBOL vmlinux 0x49f136d1 agp_create_memory +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a0229b5 cad_pid +EXPORT_SYMBOL vmlinux 0x4a04acd7 block_truncate_page +EXPORT_SYMBOL vmlinux 0x4a570777 tcf_em_register +EXPORT_SYMBOL vmlinux 0x4a5dbb91 security_file_permission +EXPORT_SYMBOL vmlinux 0x4a5e5d52 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x4a651589 blkdev_put +EXPORT_SYMBOL vmlinux 0x4a6c3d82 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4a981223 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x4aa4a126 down_write +EXPORT_SYMBOL vmlinux 0x4abb2ba2 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4ac47c2c key_payload_reserve +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request +EXPORT_SYMBOL vmlinux 0x4ad3b54a jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x4ae1a9df mount_subtree +EXPORT_SYMBOL vmlinux 0x4ae473c1 simple_write_end +EXPORT_SYMBOL vmlinux 0x4aee0263 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b024feb mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b2667e4 param_set_uint +EXPORT_SYMBOL vmlinux 0x4b53302d dqput +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b62c213 blk_get_queue +EXPORT_SYMBOL vmlinux 0x4b748b21 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove +EXPORT_SYMBOL vmlinux 0x4b91cb58 noop_qdisc +EXPORT_SYMBOL vmlinux 0x4b9ae034 __put_cred +EXPORT_SYMBOL vmlinux 0x4b9f52b2 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x4bac425a inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bbbab04 __devm_request_region +EXPORT_SYMBOL vmlinux 0x4bc4b616 __register_binfmt +EXPORT_SYMBOL vmlinux 0x4bc77d1b tcp_connect +EXPORT_SYMBOL vmlinux 0x4bd531ea mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x4bdbdc98 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x4bea469d sock_create_kern +EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x4bef5187 udp_del_offload +EXPORT_SYMBOL vmlinux 0x4bfe2c6e skb_vlan_push +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c155c2c icmp_send +EXPORT_SYMBOL vmlinux 0x4c1fd798 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c42f34b ping_prot +EXPORT_SYMBOL vmlinux 0x4c4ec346 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x4c977c59 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4cad1269 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x4cbbc655 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x4cd25687 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ce7ad52 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x4cfed47d buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x4d0a8890 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x4d25f6bd bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x4d2dde2d of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x4d50c1ad tty_devnum +EXPORT_SYMBOL vmlinux 0x4d59feba inode_needs_sync +EXPORT_SYMBOL vmlinux 0x4d5d1254 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x4d67f15b padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x4d756e7a mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da1a461 input_open_device +EXPORT_SYMBOL vmlinux 0x4dbe76be __f_setown +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4de7c20c blkdev_get +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e070d3c vfs_link +EXPORT_SYMBOL vmlinux 0x4e07117b kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x4e145d0c filp_open +EXPORT_SYMBOL vmlinux 0x4e312b2d scsi_dma_map +EXPORT_SYMBOL vmlinux 0x4e32198b generic_setlease +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum +EXPORT_SYMBOL vmlinux 0x4ef44f00 dev_add_pack +EXPORT_SYMBOL vmlinux 0x4efde7d3 module_refcount +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1f0fac of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f302340 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f3a0a96 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f645ecf skb_queue_purge +EXPORT_SYMBOL vmlinux 0x4f65dc77 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f75e7e3 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x4f855e39 register_netdevice +EXPORT_SYMBOL vmlinux 0x4f9b7192 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x4fae9510 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x4fc6dab7 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x4fd08b75 fput +EXPORT_SYMBOL vmlinux 0x4fd488df set_wb_congested +EXPORT_SYMBOL vmlinux 0x4fd55fa9 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x4fd6cb87 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4ff63695 netif_device_detach +EXPORT_SYMBOL vmlinux 0x4ffb1324 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x5007da34 netif_rx +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x501a8a61 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x5029ede8 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x502aa17d kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x5030c0a8 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x5035ccd6 vme_bus_type +EXPORT_SYMBOL vmlinux 0x50450ec9 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x505acebc machine_id +EXPORT_SYMBOL vmlinux 0x5061c4e4 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x506cd8bb vio_register_device_node +EXPORT_SYMBOL vmlinux 0x508ab866 srp_start_tl_fail_timers +EXPORT_SYMBOL vmlinux 0x50a7d34b posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x50a8fb6b devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50aa52f1 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50f1290a thaw_bdev +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x51212f5a tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x51301160 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x513aefa3 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x51431f86 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x5149bcda vga_get +EXPORT_SYMBOL vmlinux 0x5151e2ba try_to_release_page +EXPORT_SYMBOL vmlinux 0x5174b34c thaw_super +EXPORT_SYMBOL vmlinux 0x51892e80 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x51c08d2d revert_creds +EXPORT_SYMBOL vmlinux 0x51cc25e8 get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0x51df52e2 secpath_dup +EXPORT_SYMBOL vmlinux 0x51fee5e1 param_get_uint +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x5208c451 backlight_device_register +EXPORT_SYMBOL vmlinux 0x520e3bc5 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x523b1264 cap_mmap_file +EXPORT_SYMBOL vmlinux 0x52458033 security_path_symlink +EXPORT_SYMBOL vmlinux 0x5247b722 fb_class +EXPORT_SYMBOL vmlinux 0x5262d628 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x5268865a rt6_lookup +EXPORT_SYMBOL vmlinux 0x527602b5 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x52783aa4 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x5294f99c agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x529b9bb6 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x529d96d9 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x52a01e55 __invalidate_device +EXPORT_SYMBOL vmlinux 0x52ca51d7 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x52d9afe9 put_io_context +EXPORT_SYMBOL vmlinux 0x53089892 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x531f8f11 posix_test_lock +EXPORT_SYMBOL vmlinux 0x532ff093 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x5368e6b9 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x5379bd3d end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x5387cc15 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53b49102 param_get_invbool +EXPORT_SYMBOL vmlinux 0x53b5c3ab generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x53c124a4 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x53dd32e0 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x53e15ce1 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x541cf26d dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x54233461 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x5434fe2c replace_mount_options +EXPORT_SYMBOL vmlinux 0x54390c19 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x546451da get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x54695020 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x549bd898 nd_device_register +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b08d50 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x54b600a9 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x54b6fa8b dev_addr_flush +EXPORT_SYMBOL vmlinux 0x54b81d56 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x54b9bb03 pci_map_rom +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54c4bc02 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f511da udp_disconnect +EXPORT_SYMBOL vmlinux 0x550428ca tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x5504b0e2 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x55114abe uart_match_port +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x552381c5 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x5527b835 ns_capable +EXPORT_SYMBOL vmlinux 0x553534e2 set_anon_super +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5568c553 complete +EXPORT_SYMBOL vmlinux 0x55697971 dm_get_device +EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table +EXPORT_SYMBOL vmlinux 0x5592a8d1 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x55a3144d scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x55ae5706 scsi_add_device +EXPORT_SYMBOL vmlinux 0x55b1bc30 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x55bba519 fasync_helper +EXPORT_SYMBOL vmlinux 0x55c00daa gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x55c6be6a unlock_new_inode +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node +EXPORT_SYMBOL vmlinux 0x55f51aa0 input_set_keycode +EXPORT_SYMBOL vmlinux 0x55fd035f vfs_llseek +EXPORT_SYMBOL vmlinux 0x56087411 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x560abab8 skb_insert +EXPORT_SYMBOL vmlinux 0x561994f5 register_console +EXPORT_SYMBOL vmlinux 0x561b48c1 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x562bacb9 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56472628 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x56511804 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x5670a652 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x56839f4b blk_stop_queue +EXPORT_SYMBOL vmlinux 0x568af8db mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x568cea05 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x568db289 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56aaf22d abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56ca563c key_revoke +EXPORT_SYMBOL vmlinux 0x56e3d0b2 mount_pseudo +EXPORT_SYMBOL vmlinux 0x56f43ba3 __free_pages +EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x572023a8 inet_bind +EXPORT_SYMBOL vmlinux 0x5723fe3c dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x572647d6 get_mce_fault_addr +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x574a3273 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x5756633b tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x578a9fe9 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57a38687 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x57b9b2da vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x57cc12be eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x57cf7195 textsearch_register +EXPORT_SYMBOL vmlinux 0x57f4fc54 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5820150b of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583cf7e8 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x584a5cb3 dma_find_channel +EXPORT_SYMBOL vmlinux 0x584fa433 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x58541372 pnv_phb_to_cxl_mode +EXPORT_SYMBOL vmlinux 0x5856fc26 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x58609d74 tcp_prequeue +EXPORT_SYMBOL vmlinux 0x5861b69e vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58b5d5d7 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58d8a95f pnv_cxl_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58eee3ba of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0x58faaaa9 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x58fcf44d noop_fsync +EXPORT_SYMBOL vmlinux 0x5936be50 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x598436b1 vme_slave_request +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59958b27 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x59a397b0 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x59a7b0c0 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59bfcc9b lock_sock_fast +EXPORT_SYMBOL vmlinux 0x59d95c77 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x59e47d84 generic_update_time +EXPORT_SYMBOL vmlinux 0x59ed0cca phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x59f4dd5f vga_tryget +EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore +EXPORT_SYMBOL vmlinux 0x5a027689 get_super_thawed +EXPORT_SYMBOL vmlinux 0x5a0aaa12 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a13ac08 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x5a286dfb devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x5a29b80e sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x5a49bd8f eeh_dev_release +EXPORT_SYMBOL vmlinux 0x5a55f564 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x5a6e9923 neigh_lookup +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5abbf570 tty_throttle +EXPORT_SYMBOL vmlinux 0x5ac4553a crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b00de0f blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x5b355612 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x5b36bf72 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present +EXPORT_SYMBOL vmlinux 0x5b4c206f of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b727967 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x5b97b0e1 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5ba4eac6 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bf75b06 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x5c157d98 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x5c1c73c1 __inode_permission +EXPORT_SYMBOL vmlinux 0x5c29a26f tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x5c2c88b7 free_user_ns +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c42aba3 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x5c4d69ac sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x5c63e803 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x5c6cfc92 sk_wait_data +EXPORT_SYMBOL vmlinux 0x5c7548ec dev_activate +EXPORT_SYMBOL vmlinux 0x5c86dd58 elv_rb_find +EXPORT_SYMBOL vmlinux 0x5c8cc638 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x5ca0b62d vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x5cc1167c __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x5cc316f0 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x5cd6a548 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x5cf30e10 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d00f11e __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x5d06a47a netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x5d2a22be generic_permission +EXPORT_SYMBOL vmlinux 0x5d35e478 follow_down_one +EXPORT_SYMBOL vmlinux 0x5d40bca7 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x5d4caace free_page_put_link +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d5ed867 set_disk_ro +EXPORT_SYMBOL vmlinux 0x5d6d1c92 phy_stop +EXPORT_SYMBOL vmlinux 0x5d709200 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x5d71035b dput +EXPORT_SYMBOL vmlinux 0x5d751520 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x5d88983e blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x5d94284c mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x5d97608b of_match_node +EXPORT_SYMBOL vmlinux 0x5dac6149 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x5dcc1b4c kfree_put_link +EXPORT_SYMBOL vmlinux 0x5e336987 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e47dbd2 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x5e5f84f6 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x5e5fa2dd posix_acl_valid +EXPORT_SYMBOL vmlinux 0x5e6f4253 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x5e6f9fc7 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x5e74e43a generic_read_dir +EXPORT_SYMBOL vmlinux 0x5e766c8d uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x5e7e1777 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9dcf9c seq_pad +EXPORT_SYMBOL vmlinux 0x5eaddad3 __get_user_pages +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ebe7c96 dev_get_flags +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f14e766 dev_warn +EXPORT_SYMBOL vmlinux 0x5f1f7cf0 I_BDEV +EXPORT_SYMBOL vmlinux 0x5f28dcb2 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0x5f3c3e7a vfs_symlink +EXPORT_SYMBOL vmlinux 0x5f71596c compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x5f7fff87 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x5f800076 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5fa0b3f8 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x5fa78d52 address_space_init_once +EXPORT_SYMBOL vmlinux 0x5faecfff load_nls_default +EXPORT_SYMBOL vmlinux 0x5fc485d8 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5ffa64a8 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600c0f03 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602003ee kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x6031dc5c km_new_mapping +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x604c1fc8 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x6050e6d8 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x605d506e set_blocksize +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60e6445f alloc_disk +EXPORT_SYMBOL vmlinux 0x6102cb54 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x617763e9 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +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 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x6201fb33 tcp_check_req +EXPORT_SYMBOL vmlinux 0x6205ebab dst_discard_out +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 0x622e5540 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x625b746d mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x6268caaf __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x6269fa21 dev_open +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 0x628eae63 page_symlink +EXPORT_SYMBOL vmlinux 0x628edb05 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x62a42bf9 inet6_offloads +EXPORT_SYMBOL vmlinux 0x62b250dd rtas +EXPORT_SYMBOL vmlinux 0x62be3067 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x62e10f41 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x62e17626 input_allocate_device +EXPORT_SYMBOL vmlinux 0x62efaccd seq_read +EXPORT_SYMBOL vmlinux 0x63072ced debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x6309254b scsi_ioctl +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631c839f pci_pme_capable +EXPORT_SYMBOL vmlinux 0x63396aec __debugger_break_match +EXPORT_SYMBOL vmlinux 0x63456757 dqget +EXPORT_SYMBOL vmlinux 0x635d92aa tcf_hash_search +EXPORT_SYMBOL vmlinux 0x6367e4c8 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x636ad60e new_inode +EXPORT_SYMBOL vmlinux 0x636e2a1f crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x6386551e xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x639724ba sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63ac8552 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x63b072d3 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x63b10483 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d39c04 tcf_hash_create +EXPORT_SYMBOL vmlinux 0x63d816c1 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x640756d2 vfs_statfs +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6424e909 netif_device_attach +EXPORT_SYMBOL vmlinux 0x64265568 phy_find_first +EXPORT_SYMBOL vmlinux 0x642acdaa iterate_fd +EXPORT_SYMBOL vmlinux 0x6442a7a5 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x646f14ad call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x6470ebe0 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a27a38 brioctl_set +EXPORT_SYMBOL vmlinux 0x64b42c16 search_binary_handler +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64d50069 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x64d66ffb alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x64d98c7d vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x64eaa4d3 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651903eb blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x6528e880 serio_reconnect +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654190ff neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x6547af85 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x6552c9cd of_dev_put +EXPORT_SYMBOL vmlinux 0x6556d71c kill_block_super +EXPORT_SYMBOL vmlinux 0x655aea3a seq_file_path +EXPORT_SYMBOL vmlinux 0x6565a635 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x65808108 kernel_write +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65ccd720 nvm_dev_dma_alloc +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 0x65e26486 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x660692fb md_flush_request +EXPORT_SYMBOL vmlinux 0x661e4c29 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x6624805a security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x66317ace cdev_alloc +EXPORT_SYMBOL vmlinux 0x6638555a ps2_command +EXPORT_SYMBOL vmlinux 0x6648fdff xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x6672bb6d ip_setsockopt +EXPORT_SYMBOL vmlinux 0x66754be3 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x667cb984 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x668eeda4 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x669a192e ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x669e802b __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x66bc7993 get_tz_trend +EXPORT_SYMBOL vmlinux 0x66da4134 may_umount_tree +EXPORT_SYMBOL vmlinux 0x66f108e2 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x673cbd20 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6749b75a elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x674a8460 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x6753fa00 input_reset_device +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x677d8dc0 register_md_personality +EXPORT_SYMBOL vmlinux 0x67ac7dfa __mdiobus_register +EXPORT_SYMBOL vmlinux 0x67b38888 dquot_resume +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67d28307 phy_init_eee +EXPORT_SYMBOL vmlinux 0x67d9cdd6 vfs_getattr +EXPORT_SYMBOL vmlinux 0x67f39dea km_is_alive +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x68236a05 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x684672b6 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x68569113 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x686ff4e9 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x68758349 stop_tty +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x689aaac7 release_sock +EXPORT_SYMBOL vmlinux 0x689e9aa5 register_gifconf +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a8b5f8 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x68b46169 skb_seq_read +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68be14c6 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x68d97517 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x68db0b38 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x68ed56e6 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x68f123dc ip_check_defrag +EXPORT_SYMBOL vmlinux 0x69154b36 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x692ab14b scsi_unregister +EXPORT_SYMBOL vmlinux 0x694205ae dev_mc_init +EXPORT_SYMBOL vmlinux 0x694935d9 security_path_rmdir +EXPORT_SYMBOL vmlinux 0x6964a173 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x696c66ff jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x696d3e18 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x696d7093 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6977b100 phy_attach +EXPORT_SYMBOL vmlinux 0x6995c863 vio_enable_interrupts +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69bb344d security_path_rename +EXPORT_SYMBOL vmlinux 0x69be25aa iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x69e41253 dev_get_stats +EXPORT_SYMBOL vmlinux 0x69e9e9d7 tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0x69fb36d3 __quota_error +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0c4e5e call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x6a19cfd5 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x6a479f29 netif_skb_features +EXPORT_SYMBOL vmlinux 0x6a546bcd balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x6a54d61f bdev_read_only +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a643f2f input_flush_device +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a98e8c2 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x6a9d6588 mac_find_mode +EXPORT_SYMBOL vmlinux 0x6ac0578c sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x6ac44bd2 ppp_input +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6ad5d7da iget_locked +EXPORT_SYMBOL vmlinux 0x6ae335b8 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x6ae6a125 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x6aea7f42 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6aef5e8d xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x6aefc50c bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x6af3bf82 __block_write_begin +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b1f4c54 of_get_address +EXPORT_SYMBOL vmlinux 0x6b1f72e5 input_register_handler +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b561c48 pcim_iomap +EXPORT_SYMBOL vmlinux 0x6b5dfe73 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free +EXPORT_SYMBOL vmlinux 0x6b6ec429 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x6b79fdeb sk_ns_capable +EXPORT_SYMBOL vmlinux 0x6b8221cb ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x6b86ea81 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x6ba1ff8e sync_filesystem +EXPORT_SYMBOL vmlinux 0x6bbc60b1 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x6bbcdd68 param_ops_byte +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc5dbbb netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x6bdbee4d __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be5e43b vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x6bf8ba69 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x6bfb779f vme_dma_request +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c313419 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x6c42d038 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c5cd617 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c684cad dev_uc_init +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c7edc51 noop_llseek +EXPORT_SYMBOL vmlinux 0x6c88a82a dev_alloc_name +EXPORT_SYMBOL vmlinux 0x6cccefb2 file_remove_privs +EXPORT_SYMBOL vmlinux 0x6cdc7058 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x6ce320ab vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x6ce83d1a scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d3a6a72 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x6d4eb163 sock_release +EXPORT_SYMBOL vmlinux 0x6d616b15 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x6d6f16cb of_iomap +EXPORT_SYMBOL vmlinux 0x6d93674a blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x6da1cad2 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6dc2734a make_kuid +EXPORT_SYMBOL vmlinux 0x6dcbf1f5 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x6dce4dc9 tcp_poll +EXPORT_SYMBOL vmlinux 0x6dcfe376 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x6de028ae find_get_entry +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e03eead __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x6e119190 dget_parent +EXPORT_SYMBOL vmlinux 0x6e1640ef scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x6e2194a2 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x6e3d7e28 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x6e6429e0 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e88d9ab pci_iounmap +EXPORT_SYMBOL vmlinux 0x6e913f3e ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eaa8431 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x6ec2959e dev_disable_lro +EXPORT_SYMBOL vmlinux 0x6ed0b83a scsi_execute +EXPORT_SYMBOL vmlinux 0x6ee5fafe skb_trim +EXPORT_SYMBOL vmlinux 0x6efda6a9 netif_napi_add +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f3b603f netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x6f3d1166 single_open_size +EXPORT_SYMBOL vmlinux 0x6f3d705d scm_detach_fds +EXPORT_SYMBOL vmlinux 0x6f60ba61 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x6f72bd51 sync_blockdev +EXPORT_SYMBOL vmlinux 0x6f880845 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f92ead0 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x6f9bea39 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb20a3 vio_cmo_set_dev_desired +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x70098ae5 vfs_readv +EXPORT_SYMBOL vmlinux 0x7032699e seq_write +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x705d9fcc sk_alloc +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x707720ad mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x7079f8bd blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x7096ff28 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x70a595f6 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x70a81802 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x70ab3cc5 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x70c19d30 do_splice_from +EXPORT_SYMBOL vmlinux 0x70e95775 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x70eef651 rwsem_wake +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x70fc8995 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x7128cc7c textsearch_destroy +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7139bbdf d_tmpfile +EXPORT_SYMBOL vmlinux 0x7152c78e pci_clear_master +EXPORT_SYMBOL vmlinux 0x715d9faa wake_up_process +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71799074 sock_no_getname +EXPORT_SYMBOL vmlinux 0x7194eb4b xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b75167 kthread_stop +EXPORT_SYMBOL vmlinux 0x71ed18c8 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x71fceef4 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x7202fbd8 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x7214b2ba crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x72169039 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x72202e2d kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x7228483b proc_create_data +EXPORT_SYMBOL vmlinux 0x7289961d blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b51220 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 +EXPORT_SYMBOL vmlinux 0x72de9e40 genlmsg_put +EXPORT_SYMBOL vmlinux 0x72e290a9 fs_bio_set +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f8f456 sock_init_data +EXPORT_SYMBOL vmlinux 0x72fe1db3 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x73075e66 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x73100e59 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x7313a8ad ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x734dc8f2 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x735ebe62 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x7362d63e ps2_handle_response +EXPORT_SYMBOL vmlinux 0x7367afe2 tso_start +EXPORT_SYMBOL vmlinux 0x73710a3e dqstats +EXPORT_SYMBOL vmlinux 0x73a451c7 cont_write_begin +EXPORT_SYMBOL vmlinux 0x73ac4fcf __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x73b65154 devm_free_irq +EXPORT_SYMBOL vmlinux 0x73b85d37 complete_request_key +EXPORT_SYMBOL vmlinux 0x73f75046 flush_signals +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7410df6b inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x74203b7b phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x743779da i2c_release_client +EXPORT_SYMBOL vmlinux 0x74534f55 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x745e42a5 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x745f786a neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x74639827 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7484c9c4 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x7496ca44 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x74a77bf0 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c5a244 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x74d122d8 generic_setxattr +EXPORT_SYMBOL vmlinux 0x74d6f7f6 migrate_page +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74e89f13 padata_start +EXPORT_SYMBOL vmlinux 0x74f87ac1 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x74f894e0 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x75398208 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x754888bc padata_do_serial +EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x7599a5ed get_phy_device +EXPORT_SYMBOL vmlinux 0x759de01f dma_direct_ops +EXPORT_SYMBOL vmlinux 0x75af28de put_page +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75be6702 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x75f14ced ibmebus_register_driver +EXPORT_SYMBOL vmlinux 0x75f3116a do_SAK +EXPORT_SYMBOL vmlinux 0x75f7a344 d_invalidate +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x762d25d8 phy_device_remove +EXPORT_SYMBOL vmlinux 0x762eb11e __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x7640a048 remove_proc_entry +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 0x766886f6 key_validate +EXPORT_SYMBOL vmlinux 0x767279db devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x767a0914 seq_path +EXPORT_SYMBOL vmlinux 0x76af5926 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x76b59b33 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x76be1841 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76fab8d0 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x77161f45 keyring_alloc +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x771da723 tty_mutex +EXPORT_SYMBOL vmlinux 0x772c3883 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x7732371b mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x7746bab7 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x7752ab48 dump_skip +EXPORT_SYMBOL vmlinux 0x7757fc40 giveup_fpu +EXPORT_SYMBOL vmlinux 0x776705dd __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x77761103 __d_drop +EXPORT_SYMBOL vmlinux 0x7777ee9d inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x778ed29a __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x7792d035 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77abe986 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77e9f4ce tty_port_open +EXPORT_SYMBOL vmlinux 0x77f828b6 km_state_expired +EXPORT_SYMBOL vmlinux 0x77fa09d4 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x7802f3db neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x7830b04f hvc_put_chars +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x78406c6e i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x7840c752 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x78647443 netif_napi_del +EXPORT_SYMBOL vmlinux 0x786eb4d2 copy_to_iter +EXPORT_SYMBOL vmlinux 0x786f0037 find_lock_entry +EXPORT_SYMBOL vmlinux 0x787a317f pagevec_lookup +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78955da0 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a9e905 _numa_mem_ +EXPORT_SYMBOL vmlinux 0x78b42785 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x78c4e664 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x78d7f81f netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x78ddb752 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e3ffd7 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x7915dd39 tso_build_data +EXPORT_SYMBOL vmlinux 0x791a8805 backlight_force_update +EXPORT_SYMBOL vmlinux 0x791dab77 unlock_page +EXPORT_SYMBOL vmlinux 0x7923ecc7 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x79275868 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x7929cb0c mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x792b168a nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x7932da58 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x794b7b1a agp_copy_info +EXPORT_SYMBOL vmlinux 0x795027b6 dev_close +EXPORT_SYMBOL vmlinux 0x7953007d generic_writepages +EXPORT_SYMBOL vmlinux 0x795b01fc alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x796b5b0b cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x7984ea71 dump_align +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x79885e62 seq_escape +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79cd3fe4 validate_sp +EXPORT_SYMBOL vmlinux 0x79cd8f41 param_ops_bint +EXPORT_SYMBOL vmlinux 0x79d3c6ee bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x7a0fbcb3 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x7a1fd252 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x7a42a2b1 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a4abe4b agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x7a4cb968 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x7a5c2468 follow_up +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a7f8c2a inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x7a8ee8a5 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x7a96b3ee inet_sendpage +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad4f831 input_unregister_device +EXPORT_SYMBOL vmlinux 0x7adf7021 param_set_int +EXPORT_SYMBOL vmlinux 0x7aef8335 pci_find_bus +EXPORT_SYMBOL vmlinux 0x7afdaa83 serio_bus +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 0x7b7decfb udplite_prot +EXPORT_SYMBOL vmlinux 0x7b94f825 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x7b9ed868 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x7ba2230e blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x7bae5a0d unregister_console +EXPORT_SYMBOL vmlinux 0x7bb756cc neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x7bcceae8 genphy_read_status +EXPORT_SYMBOL vmlinux 0x7bdcd998 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x7be80bad unregister_key_type +EXPORT_SYMBOL vmlinux 0x7bfa00aa pci_bus_type +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c111d5d abx500_register_ops +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c173d98 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x7c27275a abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c3355a0 check_disk_change +EXPORT_SYMBOL vmlinux 0x7c36096b mount_bdev +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c6d7fed register_sysctl +EXPORT_SYMBOL vmlinux 0x7c7f1767 udp_seq_open +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7ca25a2b blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x7ca4a871 kern_unmount +EXPORT_SYMBOL vmlinux 0x7cac4ebc to_nd_btt +EXPORT_SYMBOL vmlinux 0x7cb14fed alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb368e4 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x7cb422d8 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x7cc5875f sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x7ccf564d end_page_writeback +EXPORT_SYMBOL vmlinux 0x7cd45e7f blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d1a18d4 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x7d4b2953 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x7d515369 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x7d519e6a of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d91945c msi_desc_to_pci_dev +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 0x7dcfbbdd fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x7dd017f9 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x7dd6aa77 filemap_flush +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e140376 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x7e2346f6 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x7e4718ee seq_release +EXPORT_SYMBOL vmlinux 0x7e4d452c nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x7e665160 param_get_int +EXPORT_SYMBOL vmlinux 0x7e805720 devm_memunmap +EXPORT_SYMBOL vmlinux 0x7e87b3f1 netlink_set_err +EXPORT_SYMBOL vmlinux 0x7e8c8065 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x7e9412ec nf_reinject +EXPORT_SYMBOL vmlinux 0x7eb189d1 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ef51419 dcb_getapp +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f0bf536 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x7f239ff3 tcp_req_err +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f26ddfc truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x7f38cb68 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f6d7ecf __frontswap_store +EXPORT_SYMBOL vmlinux 0x7f72f25f ptp_clock_index +EXPORT_SYMBOL vmlinux 0x7f7d4a8c phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x7f843091 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x7f846c94 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x7faaf08f i2c_smbus_read_byte +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 0x7fd36ca5 md_write_end +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 0x7ff8e466 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x80132bb2 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x80134291 dev_mc_del +EXPORT_SYMBOL vmlinux 0x801be0b2 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x801fcffe unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x8044faa5 blk_run_queue +EXPORT_SYMBOL vmlinux 0x8044fbf7 inet_add_offload +EXPORT_SYMBOL vmlinux 0x804685bc flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x80532e52 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x8053e65c pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x80669310 tcp_proc_unregister +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 0x80855eee component_match_add +EXPORT_SYMBOL vmlinux 0x80954f60 keyring_clear +EXPORT_SYMBOL vmlinux 0x80987083 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x80a20860 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x80a927c3 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x80a92869 security_mmap_file +EXPORT_SYMBOL vmlinux 0x80abd74d __sk_dst_check +EXPORT_SYMBOL vmlinux 0x80b08602 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80f2aaa5 dm_put_device +EXPORT_SYMBOL vmlinux 0x810c361c security_path_mknod +EXPORT_SYMBOL vmlinux 0x8112820e sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x8143d18e inet6_release +EXPORT_SYMBOL vmlinux 0x814c4e3f pci_set_master +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x816a2c2e dev_crit +EXPORT_SYMBOL vmlinux 0x817667a2 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x818c0a20 dst_alloc +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81a5f2cd udp_lib_getsockopt +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 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81f283c5 mmc_hw_reset +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 0x82712450 unload_nls +EXPORT_SYMBOL vmlinux 0x82792f6e param_ops_long +EXPORT_SYMBOL vmlinux 0x827ae274 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x82a7e914 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82ae0fd3 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x82c04ef7 request_key +EXPORT_SYMBOL vmlinux 0x82cbdbc6 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x82d6b0d0 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x82d921d9 wireless_send_event +EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x831bcf9a fb_show_logo +EXPORT_SYMBOL vmlinux 0x831d90e9 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x831dd767 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x83318ef1 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x83424693 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x836126a8 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x837094a1 netlink_ack +EXPORT_SYMBOL vmlinux 0x8387a08a pci_disable_msi +EXPORT_SYMBOL vmlinux 0x838a61f9 km_report +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x839be221 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x83a04e7e backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83b629f3 to_ndd +EXPORT_SYMBOL vmlinux 0x83be42a6 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83f025f7 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x83f975ac tty_vhangup +EXPORT_SYMBOL vmlinux 0x83fa2677 lro_flush_all +EXPORT_SYMBOL vmlinux 0x842335ac vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x845531b2 dm_register_target +EXPORT_SYMBOL vmlinux 0x845d0734 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x8462a1e2 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x849299e4 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x8498231e genl_notify +EXPORT_SYMBOL vmlinux 0x84a8835f tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x84ac814d __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x84ba71b2 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84e4d4f5 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x850ba324 set_user_nice +EXPORT_SYMBOL vmlinux 0x850ebee6 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x851dccd0 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x853bb24a giveup_altivec +EXPORT_SYMBOL vmlinux 0x853c4eb3 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x854c8d64 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x8554cb38 param_array_ops +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856b2aee lwtunnel_output +EXPORT_SYMBOL vmlinux 0x8591c8ea pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall +EXPORT_SYMBOL vmlinux 0x85a0de5e pci_scan_slot +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85dc39cc tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e04f09 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x85ed3183 misc_deregister +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x8620503b tty_port_close +EXPORT_SYMBOL vmlinux 0x86256a80 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x862a0537 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865b32c0 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x865c7b73 get_user_pages +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x86844038 kill_fasync +EXPORT_SYMBOL vmlinux 0x86880a3d nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868c4376 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x868d8567 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x86951047 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x869ede34 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86ae4d16 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x86c21a34 phy_driver_register +EXPORT_SYMBOL vmlinux 0x86c808de md_reload_sb +EXPORT_SYMBOL vmlinux 0x86ce14a8 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fcf154 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x8703e88a of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x8723283f tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x87373151 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 +EXPORT_SYMBOL vmlinux 0x875a3aba jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x875d843e neigh_for_each +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87d9a830 ps2_init +EXPORT_SYMBOL vmlinux 0x87e3fbe6 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x87e97b9f dst_release +EXPORT_SYMBOL vmlinux 0x880e167d max8925_set_bits +EXPORT_SYMBOL vmlinux 0x882a2e76 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x882bd047 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x882db37f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x883b6058 dquot_transfer +EXPORT_SYMBOL vmlinux 0x883ca42f mutex_lock +EXPORT_SYMBOL vmlinux 0x88461146 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x88718b63 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x888520be ata_link_printk +EXPORT_SYMBOL vmlinux 0x88a254a8 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x88cfa806 read_cache_page +EXPORT_SYMBOL vmlinux 0x88d90062 vfs_mknod +EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x892de3fb __nla_put +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 0x896f4211 vio_get_attribute +EXPORT_SYMBOL vmlinux 0x896f9a97 nf_log_register +EXPORT_SYMBOL vmlinux 0x89757e48 d_rehash +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89c6096e vfs_readf +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89ff02fe generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x8a0015f9 skb_find_text +EXPORT_SYMBOL vmlinux 0x8a1aa4c2 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a247733 __netif_schedule +EXPORT_SYMBOL vmlinux 0x8a2f012b blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x8a389ed8 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x8a41d165 bdget_disk +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a6b6d5d pci_scan_bus +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a8bcddf generic_listxattr +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8ab9526f skb_pull +EXPORT_SYMBOL vmlinux 0x8ac4370b netdev_state_change +EXPORT_SYMBOL vmlinux 0x8ac6bd5d neigh_xmit +EXPORT_SYMBOL vmlinux 0x8ad96128 simple_lookup +EXPORT_SYMBOL vmlinux 0x8ae790b5 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x8b175c7c __scsi_add_device +EXPORT_SYMBOL vmlinux 0x8b322939 elevator_alloc +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b428d98 inet_del_offload +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b67d98c dentry_path_raw +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b9bb72e i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x8bb80bfc elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x8bc5dcd0 kernel_bind +EXPORT_SYMBOL vmlinux 0x8bc8e4d4 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x8bcd6132 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x8bcfc0a2 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x8bd403a2 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x8bea494a tcp_conn_request +EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c268186 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x8c2858e8 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x8c5032a9 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x8c5c50ec blk_delay_queue +EXPORT_SYMBOL vmlinux 0x8c5c5b1b abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c65a15e vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x8c74e969 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x8c77d31e param_get_long +EXPORT_SYMBOL vmlinux 0x8c820c72 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x8c8bf028 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x8ca0021f PDE_DATA +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cca45f1 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x8cdbff6c skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x8d09eb76 sk_common_release +EXPORT_SYMBOL vmlinux 0x8d20621b mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x8d25462b jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x8d2a2d66 kthread_bind +EXPORT_SYMBOL vmlinux 0x8d34d062 skb_push +EXPORT_SYMBOL vmlinux 0x8d3ba750 vfs_writef +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 0x8dadcc6a gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x8db50787 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x8dc06581 netdev_warn +EXPORT_SYMBOL vmlinux 0x8dc190ba __lock_buffer +EXPORT_SYMBOL vmlinux 0x8dca9afd twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x8ddcda98 dentry_unhash +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8dea481d skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8e23028e pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x8e5b96a5 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e859e92 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x8e9b0fcf blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x8eafabf8 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x8eb393eb mmc_release_host +EXPORT_SYMBOL vmlinux 0x8eb3bfdf jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x8eb648c4 neigh_destroy +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ecdb6b5 qdisc_reset +EXPORT_SYMBOL vmlinux 0x8f16311c unregister_md_personality +EXPORT_SYMBOL vmlinux 0x8f26be19 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x8f337249 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x8f469a32 mach_powernv +EXPORT_SYMBOL vmlinux 0x8f4c2471 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x8f5a82e5 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x8f70c0c2 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x8f74ccbc ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8f8c5793 generic_file_open +EXPORT_SYMBOL vmlinux 0x8fa7427e cdev_init +EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x8fc59f9b rtas_offline_cpus_mask +EXPORT_SYMBOL vmlinux 0x90090865 sg_miter_start +EXPORT_SYMBOL vmlinux 0x900aeebb nf_setsockopt +EXPORT_SYMBOL vmlinux 0x900d2a1f msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x901375a1 __scm_destroy +EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x902d46a9 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x902d9fe0 generic_readlink +EXPORT_SYMBOL vmlinux 0x903a3e20 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x9049a496 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x90527c19 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x9057382e get_cached_acl +EXPORT_SYMBOL vmlinux 0x905743c2 lookup_one_len +EXPORT_SYMBOL vmlinux 0x905c1375 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x9069945e vio_h_cop_sync +EXPORT_SYMBOL vmlinux 0x908769c4 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x90960a60 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x909d7296 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x90c409c6 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x90f59be6 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0x910238eb max8998_read_reg +EXPORT_SYMBOL vmlinux 0x91143716 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x91199179 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x915a813f account_page_dirtied +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x91633d20 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91970539 pci_choose_state +EXPORT_SYMBOL vmlinux 0x919abb41 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x919df5a5 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91b0e6ef clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x91bbc29a ip6_frag_match +EXPORT_SYMBOL vmlinux 0x91bbd074 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x920e4d39 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x925b7e0c freeze_super +EXPORT_SYMBOL vmlinux 0x926ab2a5 __find_get_block +EXPORT_SYMBOL vmlinux 0x926ab75a tty_write_room +EXPORT_SYMBOL vmlinux 0x927bc00a tcp_init_sock +EXPORT_SYMBOL vmlinux 0x928adafc of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92a77366 __alloc_skb +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92aecf91 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x92d0b47e genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x92d4be8c security_path_chmod +EXPORT_SYMBOL vmlinux 0x92d81634 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x92dcab4d f_setown +EXPORT_SYMBOL vmlinux 0x92e7b070 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x92f2f9af pci_dev_driver +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fb85b9 mount_single +EXPORT_SYMBOL vmlinux 0x92fc00a7 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x92fc4c34 misc_register +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9310858f simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x93154ba3 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x931a71e7 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x9354fcde ibmebus_free_irq +EXPORT_SYMBOL vmlinux 0x935aebb2 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x937350b3 flush_old_exec +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93790a9e dquot_disable +EXPORT_SYMBOL vmlinux 0x9390e915 d_splice_alias +EXPORT_SYMBOL vmlinux 0x9392a891 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x93ae2784 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93da2538 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x93de20fe dump_page +EXPORT_SYMBOL vmlinux 0x93e1d2b0 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x9417ad05 del_gendisk +EXPORT_SYMBOL vmlinux 0x942cd1e4 page_waitqueue +EXPORT_SYMBOL vmlinux 0x94317e36 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x9440fd0e md_integrity_register +EXPORT_SYMBOL vmlinux 0x945a93cc of_device_register +EXPORT_SYMBOL vmlinux 0x945aa416 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x945c0944 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x9467d213 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x94738bbb blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x9483dedc param_set_long +EXPORT_SYMBOL vmlinux 0x948940cf pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a13610 scsi_device_get +EXPORT_SYMBOL vmlinux 0x94a6ed48 dev_addr_del +EXPORT_SYMBOL vmlinux 0x94b22cd9 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x94bfe0e2 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x94cfbece path_nosuid +EXPORT_SYMBOL vmlinux 0x94e53e44 clear_nlink +EXPORT_SYMBOL vmlinux 0x94f05638 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x94fb8165 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x94fde246 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x95190923 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x95399295 of_device_alloc +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x9554a618 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x956d6320 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x9575f003 of_node_put +EXPORT_SYMBOL vmlinux 0x9587dd71 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x959767c1 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x959e8603 udp_poll +EXPORT_SYMBOL vmlinux 0x95dc3782 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x960fdaf0 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x9635361d inet6_protos +EXPORT_SYMBOL vmlinux 0x966a2203 skb_clone +EXPORT_SYMBOL vmlinux 0x96928a7f block_write_end +EXPORT_SYMBOL vmlinux 0x969328b8 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x9695fbbc ip_options_compile +EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x969b4312 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96be6be3 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x96cac5ea ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96f53632 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x970e6fc6 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x971a32f9 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x9736e503 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x973c9324 mpage_readpage +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x974f8f25 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x977ffc7a swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x978d4a73 sync_inode +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97aa0a43 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x97aeab9a bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x97afba7b proc_douintvec +EXPORT_SYMBOL vmlinux 0x97b477ec blk_queue_split +EXPORT_SYMBOL vmlinux 0x97ba1af0 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update +EXPORT_SYMBOL vmlinux 0x9821221f mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x984a3d3e vme_irq_free +EXPORT_SYMBOL vmlinux 0x985a005d init_task +EXPORT_SYMBOL vmlinux 0x985aa60d __ip_dev_find +EXPORT_SYMBOL vmlinux 0x985ba7ee agp_bridge +EXPORT_SYMBOL vmlinux 0x985c9ddd inet6_add_offload +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x987ed7b0 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x987fc124 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x988c1223 input_register_device +EXPORT_SYMBOL vmlinux 0x988db370 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x98977aec simple_transaction_get +EXPORT_SYMBOL vmlinux 0x98abe10c fd_install +EXPORT_SYMBOL vmlinux 0x98b56e93 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x9908f2b3 dquot_get_state +EXPORT_SYMBOL vmlinux 0x9916aa4a posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x9923dac7 sk_capable +EXPORT_SYMBOL vmlinux 0x992dc4b6 d_instantiate +EXPORT_SYMBOL vmlinux 0x9937e169 skb_tx_error +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993a6c6a start_tty +EXPORT_SYMBOL vmlinux 0x99481652 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x994a0fe4 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x995e770b override_creds +EXPORT_SYMBOL vmlinux 0x99672656 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999aa69e done_path_create +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99be144a iw_handler_get_spy +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 0x9a0e1545 simple_link +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a3b0c4f vga_client_register +EXPORT_SYMBOL vmlinux 0x9a55b6a2 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x9a690a92 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x9a73dbc6 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x9a7a5b6a __lock_page +EXPORT_SYMBOL vmlinux 0x9a8ca9cb mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x9ac557e6 filemap_fault +EXPORT_SYMBOL vmlinux 0x9ac7e8ca qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x9acb5c31 get_task_io_context +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9aecb029 current_in_userns +EXPORT_SYMBOL vmlinux 0x9af42e11 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x9afda43b nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x9aff76ad nf_log_packet +EXPORT_SYMBOL vmlinux 0x9b0085d5 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x9b0679c5 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x9b0f3dd9 set_page_dirty +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b760d44 prepare_creds +EXPORT_SYMBOL vmlinux 0x9b7e85a6 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba17a60 dcb_setapp +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bab2142 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x9bad9dbd dev_alert +EXPORT_SYMBOL vmlinux 0x9bd343d2 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x9bd5648d kfree_skb +EXPORT_SYMBOL vmlinux 0x9bd5f14e register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x9bdbed0e ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bf36e65 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x9bf9cf63 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x9c1fdd08 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x9c21bb21 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x9c2b2382 mutex_trylock +EXPORT_SYMBOL vmlinux 0x9c2fb114 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x9c435528 security_path_unlink +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c5a0bda __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x9c5a862f netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x9c5fe85e blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x9c86dd81 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x9c8f12d1 path_noexec +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cbb05b7 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x9cbd584e fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x9cd18282 mdiobus_read +EXPORT_SYMBOL vmlinux 0x9cd20ff4 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x9cd76f10 kernel_listen +EXPORT_SYMBOL vmlinux 0x9cf6eda7 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x9cfa928a ppc_md +EXPORT_SYMBOL vmlinux 0x9d00958f serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x9d08860b sock_no_listen +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d1e3f7a tcp_seq_open +EXPORT_SYMBOL vmlinux 0x9d22bc56 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x9d29a2d1 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d3d692b cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x9d63577b neigh_lookup_nodev +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 0x9db55665 generic_write_checks +EXPORT_SYMBOL vmlinux 0x9df7aa4e find_vma +EXPORT_SYMBOL vmlinux 0x9e07fb84 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e1803a3 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x9e2502cd genphy_update_link +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +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 0x9e6b4258 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x9e6eff3b seq_hex_dump +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e8c10e3 dev_uc_add +EXPORT_SYMBOL vmlinux 0x9e96da68 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ec25a02 mpage_writepage +EXPORT_SYMBOL vmlinux 0x9ec99809 mntget +EXPORT_SYMBOL vmlinux 0x9eea5873 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x9eeb2240 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x9efb8057 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x9f1a3c79 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x9f25ae06 of_find_device_by_node +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 0x9fb6c95d xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe66962 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa0109960 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xa015cd2d neigh_ifdown +EXPORT_SYMBOL vmlinux 0xa040ddd9 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa04d3d19 update_region +EXPORT_SYMBOL vmlinux 0xa0571e72 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xa05b007b vme_master_request +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06937bc blk_free_tags +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa07f8c07 dm_put_table_device +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0875c82 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xa0976364 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xa09b1123 __register_chrdev +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b0adc7 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xa0b261e3 pci_find_capability +EXPORT_SYMBOL vmlinux 0xa0b4a765 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xa0ca998a blk_start_queue +EXPORT_SYMBOL vmlinux 0xa0d1490a dquot_initialize +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 0xa0f5beea tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xa0f98a72 scsi_rescan_device +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 0xa117921a clear_inode +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa13e1ff1 ptp_find_pin +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa1689fb6 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xa1761472 abort_creds +EXPORT_SYMBOL vmlinux 0xa176197a tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1bbab86 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xa1c196ef ip_getsockopt +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xa1d0ac52 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xa1d69db7 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1e31cdd dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa20366b6 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xa20712dc ip_do_fragment +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa21a7dae genl_unregister_family +EXPORT_SYMBOL vmlinux 0xa221b7d9 mem_section +EXPORT_SYMBOL vmlinux 0xa2239632 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xa23dbeda acl_by_type +EXPORT_SYMBOL vmlinux 0xa2482b0a linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa28918e5 submit_bio +EXPORT_SYMBOL vmlinux 0xa2910a3e pci_dev_get +EXPORT_SYMBOL vmlinux 0xa2a25df4 copy_from_iter +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2a4259c alloc_fddidev +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2cee846 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xa2cfac0b kill_litter_super +EXPORT_SYMBOL vmlinux 0xa2d16904 truncate_setsize +EXPORT_SYMBOL vmlinux 0xa2dbb179 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xa2dcaff3 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xa2df66cd mmc_remove_host +EXPORT_SYMBOL vmlinux 0xa2ed9dc5 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait +EXPORT_SYMBOL vmlinux 0xa300518e d_path +EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa3219137 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xa34472ca inet_shutdown +EXPORT_SYMBOL vmlinux 0xa348e3b1 user_path_at_empty +EXPORT_SYMBOL vmlinux 0xa34f855f phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xa37b1170 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xa37f7028 ab3100_event_register +EXPORT_SYMBOL vmlinux 0xa3950458 pci_disable_device +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3a2bf1f key_invalidate +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3afc43b input_close_device +EXPORT_SYMBOL vmlinux 0xa3c352fb pci_dev_put +EXPORT_SYMBOL vmlinux 0xa3c3b9c2 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0xa3da08e0 of_get_min_tck +EXPORT_SYMBOL vmlinux 0xa3f2b711 kset_unregister +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa4a58f08 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xa4b6816c d_alloc_name +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4bb677a set_create_files_as +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4dea7b0 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xa50a1254 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xa51266df netlink_net_capable +EXPORT_SYMBOL vmlinux 0xa53dfd00 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5527918 padata_free +EXPORT_SYMBOL vmlinux 0xa55c6830 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xa56d6405 __sock_create +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5f0a182 scsi_register +EXPORT_SYMBOL vmlinux 0xa5ffe3cc mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xa631df8a cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa6487144 mount_ns +EXPORT_SYMBOL vmlinux 0xa64b7ddd __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xa652c741 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa6682f30 security_inode_permission +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa675fcd0 skb_checksum +EXPORT_SYMBOL vmlinux 0xa67996a3 vga_put +EXPORT_SYMBOL vmlinux 0xa68138ca giveup_vsx +EXPORT_SYMBOL vmlinux 0xa6816215 blk_rq_init +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6855373 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xa692a468 flow_cache_init +EXPORT_SYMBOL vmlinux 0xa6971dd7 pci_domain_nr +EXPORT_SYMBOL vmlinux 0xa69df8a7 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xa6a38b84 udp_ioctl +EXPORT_SYMBOL vmlinux 0xa6c47ac4 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xa6cd07e4 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xa6db0426 registered_fb +EXPORT_SYMBOL vmlinux 0xa6e06768 pps_register_source +EXPORT_SYMBOL vmlinux 0xa6e21140 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa732b6e3 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa740fd88 seq_puts +EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get +EXPORT_SYMBOL vmlinux 0xa75b7919 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xa76b53db jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xa76e9f86 key_put +EXPORT_SYMBOL vmlinux 0xa7719850 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xa7752a50 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xa7847604 pci_select_bars +EXPORT_SYMBOL vmlinux 0xa78d2d1d inode_init_always +EXPORT_SYMBOL vmlinux 0xa7b9a0de kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xa7bfbdbc default_llseek +EXPORT_SYMBOL vmlinux 0xa7dcc1b8 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xa7f6ef10 downgrade_write +EXPORT_SYMBOL vmlinux 0xa82a2750 simple_unlink +EXPORT_SYMBOL vmlinux 0xa82efc2f sock_from_file +EXPORT_SYMBOL vmlinux 0xa82fde04 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xa83593de tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8528a4d jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xa86d5f99 blk_init_tags +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa88ac4f4 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xa89e0763 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xa8ac55df blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xa8c99b27 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xa8dc6ec9 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0xa8e1f5ad agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xa8f292d4 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xa8f35bba of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa8ffdb31 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91d90d3 nla_put +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0xa9363a24 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xa93ba88e proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xa954fd49 d_add_ci +EXPORT_SYMBOL vmlinux 0xa95f7380 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xa9730380 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xa97522bf compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa97b0114 inet_offloads +EXPORT_SYMBOL vmlinux 0xa97ec913 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa99c7c0f fb_set_var +EXPORT_SYMBOL vmlinux 0xa9a52776 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xa9b5ea71 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9f49777 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xaa10fd77 lease_modify +EXPORT_SYMBOL vmlinux 0xaa3e297c arp_tbl +EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock +EXPORT_SYMBOL vmlinux 0xaa560886 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xaa5fa28a agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xaa60231d phy_disconnect +EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa86c028 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xaaa01a6c param_get_ullong +EXPORT_SYMBOL vmlinux 0xaaaa5440 framebuffer_release +EXPORT_SYMBOL vmlinux 0xaab0118e ip_ct_attach +EXPORT_SYMBOL vmlinux 0xaac8e25d iput +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaae6938f iget_failed +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab0dc4d3 param_ops_uint +EXPORT_SYMBOL vmlinux 0xab1af4ff tty_port_hangup +EXPORT_SYMBOL vmlinux 0xab1ee174 __destroy_inode +EXPORT_SYMBOL vmlinux 0xab238697 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xab6a93da key_link +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab6de50a security_path_link +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7bfeef input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xab970ce8 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xaba30e9a __seq_open_private +EXPORT_SYMBOL vmlinux 0xaba79d22 sk_stream_error +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabd3e5bf n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xabe416dc simple_dname +EXPORT_SYMBOL vmlinux 0xabe66e8a ip_defrag +EXPORT_SYMBOL vmlinux 0xabf23793 send_sig_info +EXPORT_SYMBOL vmlinux 0xabf9794b uart_resume_port +EXPORT_SYMBOL vmlinux 0xabfbd2f3 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xac053c64 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xac0b949d pnv_pci_get_npu_dev +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac3364bd dquot_alloc +EXPORT_SYMBOL vmlinux 0xac39ba0a input_inject_event +EXPORT_SYMBOL vmlinux 0xac46466f generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xac4c5a4a rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xac5cefad skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xac602694 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xac62525a xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xac6bc1b1 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xac80d648 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xac8a254b gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xac8e89c9 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb9bd71 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0xacc0955a rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xaccb3ff5 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xaccc257f jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xacd76f46 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacf256a5 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacff6de8 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad1d5925 sock_rfree +EXPORT_SYMBOL vmlinux 0xad2af0c8 gen_pool_free +EXPORT_SYMBOL vmlinux 0xad34fa68 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xad4c1b51 flex_array_alloc +EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock +EXPORT_SYMBOL vmlinux 0xad6d63e9 dev_notice +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad87eabc sock_no_connect +EXPORT_SYMBOL vmlinux 0xad935d8e sock_wfree +EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xad99b4f8 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xadd1e643 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xade29ec3 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xade7e3aa netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xadf6999a inet_ioctl +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae061d0b zpool_register_driver +EXPORT_SYMBOL vmlinux 0xae1b1a7e skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xae23b4d9 dquot_commit +EXPORT_SYMBOL vmlinux 0xae358236 fence_signal +EXPORT_SYMBOL vmlinux 0xae4a1bda csum_tcpudp_nofold +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae65daa3 mmc_erase +EXPORT_SYMBOL vmlinux 0xae6b279c fb_pan_display +EXPORT_SYMBOL vmlinux 0xae790fce dev_get_by_name +EXPORT_SYMBOL vmlinux 0xae84fed3 vmap +EXPORT_SYMBOL vmlinux 0xae94a026 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xae97dc82 generic_perform_write +EXPORT_SYMBOL vmlinux 0xaeb34ea0 send_sig +EXPORT_SYMBOL vmlinux 0xaeb6ac0f fget +EXPORT_SYMBOL vmlinux 0xaec35db4 flex_array_free +EXPORT_SYMBOL vmlinux 0xaed69e10 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xaee33033 phy_detach +EXPORT_SYMBOL vmlinux 0xaeebcb2c nobh_write_end +EXPORT_SYMBOL vmlinux 0xaef65e8c __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xaefa5408 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf0d96c1 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xaf26c649 dev_addr_init +EXPORT_SYMBOL vmlinux 0xaf29863e inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xaf29c847 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf357cf7 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf5d5e75 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xaf5f4810 sock_efree +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf6c8080 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xaf808a99 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xaf9ad0f1 bio_split +EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create +EXPORT_SYMBOL vmlinux 0xafc09950 param_get_bool +EXPORT_SYMBOL vmlinux 0xafde610a blk_fetch_request +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb0152ac9 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xb026fb64 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xb058b6d5 write_one_page +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb06e6aa3 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xb08cb5a3 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xb092736b trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xb096d074 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a3ff3d filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xb0a5424c blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xb0b15847 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0bf2271 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xb0d3820b check_disk_size_change +EXPORT_SYMBOL vmlinux 0xb0d9c5dc xfrm_register_km +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0ea69c9 notify_change +EXPORT_SYMBOL vmlinux 0xb0f6b85b fb_find_mode +EXPORT_SYMBOL vmlinux 0xb10646a8 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xb11095e3 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xb11a3d3d elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb13b3b31 tcp_sync_mss +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 0xb1611e63 build_skb +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb165ef45 __irq_regs +EXPORT_SYMBOL vmlinux 0xb189a994 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xb19ce607 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xb1b03f89 page_cache_prev_hole +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 0xb1df67ea i2c_master_send +EXPORT_SYMBOL vmlinux 0xb1fec201 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xb2112b11 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xb22797d9 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xb25b0d69 read_dev_sector +EXPORT_SYMBOL vmlinux 0xb25c3c99 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xb2625e79 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb28135d6 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xb29e8a1a serio_unregister_port +EXPORT_SYMBOL vmlinux 0xb2a498b3 md_error +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2c22d7b get_fs_type +EXPORT_SYMBOL vmlinux 0xb2c7d0ec swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xb2c8c95e agp_enable +EXPORT_SYMBOL vmlinux 0xb2e0cbb6 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xb3217a4f kill_pid +EXPORT_SYMBOL vmlinux 0xb328dbfd path_get +EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xb338f2bf tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xb351c1b4 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xb36d9f8b __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xb3999388 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xb3a91bce pnv_cxl_alloc_hwirq_ranges +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f4723b netdev_crit +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb403bdae dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xb4123140 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xb41a563d vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb44ea070 devm_iounmap +EXPORT_SYMBOL vmlinux 0xb4545901 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xb45d4153 sock_i_uid +EXPORT_SYMBOL vmlinux 0xb463f538 __dev_set_mtu +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 0xb47e580f blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xb4823832 drop_nlink +EXPORT_SYMBOL vmlinux 0xb48c7c14 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xb4c3512c __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xb4d9f1c3 mpage_writepages +EXPORT_SYMBOL vmlinux 0xb4f804d5 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0xb50844a6 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xb510b5df __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xb5303056 set_nlink +EXPORT_SYMBOL vmlinux 0xb539dcec dma_iommu_ops +EXPORT_SYMBOL vmlinux 0xb5409f0c vme_slot_num +EXPORT_SYMBOL vmlinux 0xb5443ff5 scsi_host_get +EXPORT_SYMBOL vmlinux 0xb550d60b mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xb558f3d0 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5745403 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xb57edeec ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xb595d349 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5cb6e3e generic_show_options +EXPORT_SYMBOL vmlinux 0xb5cc5c51 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xb5cf5fa0 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xb5ef92a1 param_set_charp +EXPORT_SYMBOL vmlinux 0xb5fa77b7 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb625f120 mmc_can_reset +EXPORT_SYMBOL vmlinux 0xb64ba3d3 phy_print_status +EXPORT_SYMBOL vmlinux 0xb64d1c36 pci_pme_active +EXPORT_SYMBOL vmlinux 0xb65191e2 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb678ba8e simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xb68bfa9d node_states +EXPORT_SYMBOL vmlinux 0xb69182d3 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6c432e4 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xb6c82e65 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xb6d298b1 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xb6edd8cf decrementer_clockevent +EXPORT_SYMBOL vmlinux 0xb73bd4e2 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb76d4ac7 sk_receive_skb +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb77418eb simple_setattr +EXPORT_SYMBOL vmlinux 0xb77932eb flex_array_clear +EXPORT_SYMBOL vmlinux 0xb786f531 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xb788217d hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xb7928531 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xb792fb46 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xb7c32d51 update_devfreq +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d4c5cb nonseekable_open +EXPORT_SYMBOL vmlinux 0xb7f39d33 padata_stop +EXPORT_SYMBOL vmlinux 0xb7ff41c4 kobject_init +EXPORT_SYMBOL vmlinux 0xb8049f80 tcf_register_action +EXPORT_SYMBOL vmlinux 0xb80706df __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xb80b6ef4 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0xb80c63a1 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xb85c5d41 from_kgid +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb884a522 fsync_bdev +EXPORT_SYMBOL vmlinux 0xb8950921 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xb89b8601 proc_set_size +EXPORT_SYMBOL vmlinux 0xb8b8eb68 get_agp_version +EXPORT_SYMBOL vmlinux 0xb8c9878c scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xb8d0beed __dax_fault +EXPORT_SYMBOL vmlinux 0xb8e2f3a1 vm_mmap +EXPORT_SYMBOL vmlinux 0xb8e43293 touch_buffer +EXPORT_SYMBOL vmlinux 0xb8e4cbf7 input_set_capability +EXPORT_SYMBOL vmlinux 0xb9037556 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb91cf94f dev_uc_sync +EXPORT_SYMBOL vmlinux 0xb92e52fd dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xb9516c91 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xb96818d5 pci_release_regions +EXPORT_SYMBOL vmlinux 0xb98ee8bb from_kuid_munged +EXPORT_SYMBOL vmlinux 0xb9a9b86d jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xb9b07d5a unregister_nls +EXPORT_SYMBOL vmlinux 0xb9b0ef1c tty_port_put +EXPORT_SYMBOL vmlinux 0xb9b75593 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xb9ca374b dquot_release +EXPORT_SYMBOL vmlinux 0xb9e797b4 pcim_enable_device +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9efe4a8 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xb9f2be19 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xba0a310f jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xba1be408 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xba21bc2f tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xba262e78 __bforget +EXPORT_SYMBOL vmlinux 0xba2ffec2 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xba37a45e bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba5fd060 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xba6831c6 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xba6f5abb invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xba743880 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xba77b5bd __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xba795cb7 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0xba81376d lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0xba9d3acc skb_put +EXPORT_SYMBOL vmlinux 0xbaa31891 udp_prot +EXPORT_SYMBOL vmlinux 0xbac4596d mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xbae00e1c xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xbae0387a bio_init +EXPORT_SYMBOL vmlinux 0xbaf60b42 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb10a789 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xbb278cf9 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xbb282c4c kobject_add +EXPORT_SYMBOL vmlinux 0xbb311b49 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb353106 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb54e64f __brelse +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb5da6d2 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xbb681e31 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xbb689098 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xbb7af07d pci_bus_get +EXPORT_SYMBOL vmlinux 0xbb8d7322 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbbae3ea9 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xbbb156e5 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xbbb6b412 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xbbb9d5da agp_find_bridge +EXPORT_SYMBOL vmlinux 0xbbc40ce7 security_path_truncate +EXPORT_SYMBOL vmlinux 0xbbc7a984 tso_count_descs +EXPORT_SYMBOL vmlinux 0xbbcd1791 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xbbd5fdd1 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xbbd82c15 read_cache_pages +EXPORT_SYMBOL vmlinux 0xbbe99953 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xbbf97790 seq_lseek +EXPORT_SYMBOL vmlinux 0xbc00f42e tcp_child_process +EXPORT_SYMBOL vmlinux 0xbc0986c8 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xbc16aaea fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc89a073 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xbc94364c of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags +EXPORT_SYMBOL vmlinux 0xbcabc21c inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xbcb1da80 powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcc7be53 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xbcc8e628 scsi_init_io +EXPORT_SYMBOL vmlinux 0xbcce071a kernel_getsockname +EXPORT_SYMBOL vmlinux 0xbcdba4b6 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xbce1f072 of_root +EXPORT_SYMBOL vmlinux 0xbcef3d86 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 +EXPORT_SYMBOL vmlinux 0xbcf80704 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xbcfe1703 audit_log_task_info +EXPORT_SYMBOL vmlinux 0xbcfe29c2 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xbcfebf81 of_get_property +EXPORT_SYMBOL vmlinux 0xbd13d662 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xbd256e83 nf_log_unset +EXPORT_SYMBOL vmlinux 0xbd311e7b pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xbd365ff0 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd5366ee __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xbd67f4c6 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbdceee99 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xbdf80cbc mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe26bcb1 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xbe2aa358 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xbe2df2d4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xbe3e19d0 kernel_read +EXPORT_SYMBOL vmlinux 0xbe674f4e __vio_register_driver +EXPORT_SYMBOL vmlinux 0xbe7440b9 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xbe796e5b dquot_commit_info +EXPORT_SYMBOL vmlinux 0xbec4ab20 datagram_poll +EXPORT_SYMBOL vmlinux 0xbed8977d iterate_dir +EXPORT_SYMBOL vmlinux 0xbee2c963 __init_rwsem +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbeffc0c9 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xbf318c09 bdi_register_owner +EXPORT_SYMBOL vmlinux 0xbf410b21 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xbf4d6876 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xbf6c427c dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xbf6dfd4d simple_release_fs +EXPORT_SYMBOL vmlinux 0xbf7dcea4 input_get_keycode +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 0xbfa4287b inet6_getname +EXPORT_SYMBOL vmlinux 0xbfabfe59 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfce78c1 inet_getname +EXPORT_SYMBOL vmlinux 0xbfead685 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets +EXPORT_SYMBOL vmlinux 0xbffdf0b3 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xc01a3fd1 pci_get_device +EXPORT_SYMBOL vmlinux 0xc029757b ___pskb_trim +EXPORT_SYMBOL vmlinux 0xc02fc1de open_exec +EXPORT_SYMBOL vmlinux 0xc033ba4b __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xc03984f9 srp_rport_put +EXPORT_SYMBOL vmlinux 0xc049c5f8 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xc054e267 blk_complete_request +EXPORT_SYMBOL vmlinux 0xc05f42b7 sock_no_poll +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0898e91 flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0xc0a0b354 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0b89352 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xc0ddd916 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0xc0f258c4 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xc1000f2d __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xc101ca28 bdevname +EXPORT_SYMBOL vmlinux 0xc1039895 neigh_update +EXPORT_SYMBOL vmlinux 0xc10f0cda neigh_connected_output +EXPORT_SYMBOL vmlinux 0xc114acea uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xc117cd93 devm_gpio_request +EXPORT_SYMBOL vmlinux 0xc13319d7 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xc14b1888 mdiobus_write +EXPORT_SYMBOL vmlinux 0xc14dfa07 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc15b51c1 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xc1844de3 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xc18661ad dev_remove_pack +EXPORT_SYMBOL vmlinux 0xc198c4ea __frontswap_test +EXPORT_SYMBOL vmlinux 0xc1bfb08d proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xc1cce43c put_cmsg +EXPORT_SYMBOL vmlinux 0xc1d39c9a sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1dea01e nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc206dd92 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xc2217b3b scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc269829a md_unregister_thread +EXPORT_SYMBOL vmlinux 0xc2876527 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xc2984a88 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2af3120 nla_append +EXPORT_SYMBOL vmlinux 0xc2cfbd68 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xc2d54ba0 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc305b1c3 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xc308ea9d devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc357d36e __scm_send +EXPORT_SYMBOL vmlinux 0xc3698bb5 kobject_set_name +EXPORT_SYMBOL vmlinux 0xc36ad9bc crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xc3724401 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xc37b8f5a xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xc385dcd8 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xc39f339c redraw_screen +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3fd831a pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xc4236616 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xc424aa49 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xc4252032 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xc42777c5 inode_permission +EXPORT_SYMBOL vmlinux 0xc42a2198 bdi_destroy +EXPORT_SYMBOL vmlinux 0xc430129f dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xc4524830 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xc468d09f tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xc47339bc xattr_full_name +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc482ad6e unlock_buffer +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc494926f xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc49b4ff4 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xc4aad81b nvm_end_io +EXPORT_SYMBOL vmlinux 0xc4af21bf cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xc4c25cc1 param_get_string +EXPORT_SYMBOL vmlinux 0xc502be3b netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xc5076515 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xc51b94c8 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xc5513e23 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc554b37e cdrom_release +EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set +EXPORT_SYMBOL vmlinux 0xc5668d1a blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xc5745ead unregister_netdev +EXPORT_SYMBOL vmlinux 0xc578b4f1 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xc585f30b cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xc58e4de6 flush_dcache_page +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5ed6ef3 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc601eabf devm_release_resource +EXPORT_SYMBOL vmlinux 0xc61af93d input_unregister_handler +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +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 0xc67bcec4 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xc685e6d6 of_node_get +EXPORT_SYMBOL vmlinux 0xc6a11e5e __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xc6a707b2 dentry_open +EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xc6c657fd pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xc6c794d9 get_acl +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cf1a7f udp_set_csum +EXPORT_SYMBOL vmlinux 0xc6d1cbb8 do_truncate +EXPORT_SYMBOL vmlinux 0xc6e7b22f blk_register_region +EXPORT_SYMBOL vmlinux 0xc71986a0 arp_send +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc74f76a4 register_qdisc +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc757af79 key_unlink +EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xc76a8c5f tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xc76b1656 pnv_cxl_ioda_msi_setup +EXPORT_SYMBOL vmlinux 0xc76cf9c1 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xc76ea771 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc793b89e inet_add_protocol +EXPORT_SYMBOL vmlinux 0xc796ec9c arch_free_page +EXPORT_SYMBOL vmlinux 0xc79b79a1 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7d11245 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xc7de2df3 of_device_is_available +EXPORT_SYMBOL vmlinux 0xc7e8855b param_ops_string +EXPORT_SYMBOL vmlinux 0xc7ef5b44 set_security_override +EXPORT_SYMBOL vmlinux 0xc7f39b15 irq_stat +EXPORT_SYMBOL vmlinux 0xc81c080f kill_bdev +EXPORT_SYMBOL vmlinux 0xc82d8d13 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xc8395221 netpoll_send_udp +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 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8916c91 ilookup5 +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8b7dfca dst_init +EXPORT_SYMBOL vmlinux 0xc8c03f76 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xc8c5cb1d ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xc8df4a55 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xc8e8b78b vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xc8f8ad75 d_lookup +EXPORT_SYMBOL vmlinux 0xc90b053a iget5_locked +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc91cd97e input_event +EXPORT_SYMBOL vmlinux 0xc9320bda generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xc9391543 would_dump +EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xc9466c64 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0xc95a7467 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96c1f86 lwtunnel_input +EXPORT_SYMBOL vmlinux 0xc96e7343 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc996e12b pci_get_class +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9cd2e0a pci_iomap_range +EXPORT_SYMBOL vmlinux 0xc9cfea90 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xc9d7995b skb_split +EXPORT_SYMBOL vmlinux 0xc9e3efc9 of_dev_get +EXPORT_SYMBOL vmlinux 0xc9e54799 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca117abb pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get +EXPORT_SYMBOL vmlinux 0xca2bd5ec bioset_free +EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state +EXPORT_SYMBOL vmlinux 0xca5a2496 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca7b3306 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca834e8d bio_clone_fast +EXPORT_SYMBOL vmlinux 0xca8d987e get_gendisk +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca98b71c elevator_init +EXPORT_SYMBOL vmlinux 0xcab1d2cf scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcade6ca9 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaff2892 mmc_get_card +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb0a80a4 block_commit_write +EXPORT_SYMBOL vmlinux 0xcb27aab8 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xcb518b1f open_check_o_direct +EXPORT_SYMBOL vmlinux 0xcb61e18f load_nls +EXPORT_SYMBOL vmlinux 0xcb7b993b tty_port_close_end +EXPORT_SYMBOL vmlinux 0xcb922590 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbaa8ffa nvm_generic_to_addr_mode +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 0xcbda1eea sg_miter_next +EXPORT_SYMBOL vmlinux 0xcbe0b970 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xcc018eac inet_frag_find +EXPORT_SYMBOL vmlinux 0xcc06a784 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc17d94c kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xcc1fa2a0 read_code +EXPORT_SYMBOL vmlinux 0xcc215573 flex_array_shrink +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc4c7cc7 loop_register_transfer +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc51d628 mach_pseries +EXPORT_SYMBOL vmlinux 0xcc98d535 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xccb944e1 inet_put_port +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc708b5 block_read_full_page +EXPORT_SYMBOL vmlinux 0xccd8fc3b sock_register +EXPORT_SYMBOL vmlinux 0xcce68611 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xccea775c ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xcd071199 nf_log_set +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd389f71 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xcd3c1988 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xcd3cbc89 page_put_link +EXPORT_SYMBOL vmlinux 0xcd3fbe6e kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xcd43d416 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xcd534e70 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xcd642cf3 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xcd6b025d set_bh_page +EXPORT_SYMBOL vmlinux 0xcd6e32d7 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xcd74860c skb_pad +EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcd91932e vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xcdb51bfb i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc6363f iov_iter_npages +EXPORT_SYMBOL vmlinux 0xcdc673ec pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xcdc8b509 i2c_master_recv +EXPORT_SYMBOL vmlinux 0xcdefa1f5 ether_setup +EXPORT_SYMBOL vmlinux 0xcdf8bc00 vc_cons +EXPORT_SYMBOL vmlinux 0xcdfb871a dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xce079113 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xce0e2d66 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xce27d17d simple_rename +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce3b3f09 profile_pc +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce61f9fd sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xce68427e posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xcebc351a inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xcec55bf7 napi_disable +EXPORT_SYMBOL vmlinux 0xced777cb proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xcedd9b2f pci_iomap +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcef76e60 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf129878 proto_unregister +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 0xcf3d5134 pnv_cxl_get_irq_count +EXPORT_SYMBOL vmlinux 0xcf487bff bio_copy_data +EXPORT_SYMBOL vmlinux 0xcf538552 __skb_checksum +EXPORT_SYMBOL vmlinux 0xcf704378 tty_set_operations +EXPORT_SYMBOL vmlinux 0xcfa074f0 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xcfac03c7 input_release_device +EXPORT_SYMBOL vmlinux 0xd01bd38a zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xd04e2fad phy_start +EXPORT_SYMBOL vmlinux 0xd06fc943 save_mount_options +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0c02ea2 vfs_write +EXPORT_SYMBOL vmlinux 0xd0e4e9a1 tty_port_carrier_raised +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 0xd1081221 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xd1089358 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xd10cc0fe no_llseek +EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf +EXPORT_SYMBOL vmlinux 0xd12c0bc0 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xd167cab7 pci_restore_state +EXPORT_SYMBOL vmlinux 0xd16e30e2 elv_rb_add +EXPORT_SYMBOL vmlinux 0xd16f3247 inet_listen +EXPORT_SYMBOL vmlinux 0xd17477f4 inode_init_owner +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1941025 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xd1992be4 blk_finish_request +EXPORT_SYMBOL vmlinux 0xd19e16fb qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xd1af2a06 __pagevec_release +EXPORT_SYMBOL vmlinux 0xd1d3f62d tcp_prot +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1f6c67f srp_rport_get +EXPORT_SYMBOL vmlinux 0xd20c3937 flex_array_get +EXPORT_SYMBOL vmlinux 0xd213bf7a mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xd215e5ed xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xd228ce2b twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xd2300902 dquot_acquire +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 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2b3b3c8 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2dc480c __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xd2edce07 keyring_search +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd3424867 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xd35c097f tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xd36c9d2c dquot_destroy +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd37e4038 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xd39f7ed6 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3ced8f2 sock_no_bind +EXPORT_SYMBOL vmlinux 0xd423c71d proc_symlink +EXPORT_SYMBOL vmlinux 0xd432e179 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xd43b639b d_instantiate_unique +EXPORT_SYMBOL vmlinux 0xd43f1d3f netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xd443cd42 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm +EXPORT_SYMBOL vmlinux 0xd4525f18 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd46525e5 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xd46f58c8 revalidate_disk +EXPORT_SYMBOL vmlinux 0xd48316f9 __register_nls +EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd49be30e pnv_cxl_release_hwirqs +EXPORT_SYMBOL vmlinux 0xd4be21ce simple_write_begin +EXPORT_SYMBOL vmlinux 0xd4e4c69e nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xd4f9f8e5 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xd50ae0ed __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xd52815aa inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xd5308bae scsi_print_command +EXPORT_SYMBOL vmlinux 0xd530e16f __blk_run_queue +EXPORT_SYMBOL vmlinux 0xd540fed6 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xd54d853c tty_port_init +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd5541ea6 path_is_under +EXPORT_SYMBOL vmlinux 0xd5576f63 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xd5579774 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xd56c32a9 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xd56eb023 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xd588db8a vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5b850cd file_path +EXPORT_SYMBOL vmlinux 0xd5cdae86 __kfree_skb +EXPORT_SYMBOL vmlinux 0xd5d2aad4 seq_printf +EXPORT_SYMBOL vmlinux 0xd5d87c3e scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xd5fe85a9 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xd60d4dc1 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0xd60f0593 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd61d4ba4 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xd620136b fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd63db047 qdisc_list_del +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd662d61f lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0xd662ff27 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xd673f555 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd6913d2c inet_recvmsg +EXPORT_SYMBOL vmlinux 0xd6aeb9d0 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xd6b0ecb6 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xd6bb0adf inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xd6cb6dda cdrom_open +EXPORT_SYMBOL vmlinux 0xd6d206ed get_io_context +EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f8c84b nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 +EXPORT_SYMBOL vmlinux 0xd700b68e console_start +EXPORT_SYMBOL vmlinux 0xd703f1d2 pci_match_id +EXPORT_SYMBOL vmlinux 0xd719aaa6 of_n_size_cells +EXPORT_SYMBOL vmlinux 0xd7384e24 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot +EXPORT_SYMBOL vmlinux 0xd77772a7 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 +EXPORT_SYMBOL vmlinux 0xd78af68e simple_transaction_release +EXPORT_SYMBOL vmlinux 0xd790d6c5 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xd793a47e tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xd79f51f7 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xd7a3a4b2 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xd7b3611d neigh_table_init +EXPORT_SYMBOL vmlinux 0xd7bc8d18 netdev_alert +EXPORT_SYMBOL vmlinux 0xd7d5eb50 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e8e0e1 key_type_keyring +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd81014bb pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xd8232196 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0xd838f181 poll_freewait +EXPORT_SYMBOL vmlinux 0xd8485bd3 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xd86c4f8c i2c_verify_client +EXPORT_SYMBOL vmlinux 0xd880a6cd blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xd88195ae abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a4f8fd bh_submit_read +EXPORT_SYMBOL vmlinux 0xd8a7816c mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8cc09a2 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xd8dc08f2 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd90e0d53 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0xd919e67f ps2_begin_command +EXPORT_SYMBOL vmlinux 0xd92a534a iov_iter_init +EXPORT_SYMBOL vmlinux 0xd948702c of_create_pci_dev +EXPORT_SYMBOL vmlinux 0xd94b7446 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xd96ca8d9 mount_nodev +EXPORT_SYMBOL vmlinux 0xd983936b sock_wake_async +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9a47fb5 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xd9a9d367 generic_getxattr +EXPORT_SYMBOL vmlinux 0xd9b09a62 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9e279cc cdev_add +EXPORT_SYMBOL vmlinux 0xd9e6be6d __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xd9fc5082 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xda207dc7 pipe_unlock +EXPORT_SYMBOL vmlinux 0xda271d95 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xda29191b proc_remove +EXPORT_SYMBOL vmlinux 0xda32e65b set_cached_acl +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda421dbf scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xda44cce0 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xda5a2020 __skb_recv_datagram +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 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda940630 i2c_use_client +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdaa65f6a mapping_tagged +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 0xdad5b8de touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdaf6bbdf pagecache_write_end +EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find +EXPORT_SYMBOL vmlinux 0xdb0bfaa9 key_alloc +EXPORT_SYMBOL vmlinux 0xdb106c05 vme_irq_request +EXPORT_SYMBOL vmlinux 0xdb2df7b9 inet_csk_accept +EXPORT_SYMBOL vmlinux 0xdb392b3b ll_rw_block +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb49962d skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xdb512b54 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xdb566e6d __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6bf3f9 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb7aed97 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xdbc61894 md_done_sync +EXPORT_SYMBOL vmlinux 0xdbcf7ed9 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc13e1d4 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xdc14938b genphy_suspend +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xdc265791 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xdc3bffa5 d_delete +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc55abb2 file_update_time +EXPORT_SYMBOL vmlinux 0xdc897386 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdca0fd7a dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcb7f709 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xdcc102e5 skb_dequeue +EXPORT_SYMBOL vmlinux 0xdce16d6b page_follow_link_light +EXPORT_SYMBOL vmlinux 0xdcebc497 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xdd09f562 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xdd0c9b48 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0xdd186bd5 elevator_exit +EXPORT_SYMBOL vmlinux 0xdd25c281 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xdd2ea8d5 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xdd328a6c xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xdd44e66e lease_get_mtime +EXPORT_SYMBOL vmlinux 0xdd4dc3a4 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xdd5d01e3 tcp_proc_register +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd667347 pnv_pci_get_phb_node +EXPORT_SYMBOL vmlinux 0xdd71ecc1 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xdd8a1b50 irq_set_chip +EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer +EXPORT_SYMBOL vmlinux 0xdd955144 __debugger +EXPORT_SYMBOL vmlinux 0xdd9f81ca skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xdda9c625 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xddb0b4dc phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xddb68e26 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xddbd4dd1 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xddd1aed6 d_find_alias +EXPORT_SYMBOL vmlinux 0xddf2a246 agp_put_bridge +EXPORT_SYMBOL vmlinux 0xddf30eb9 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xde1a7d05 arp_create +EXPORT_SYMBOL vmlinux 0xde259927 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xde2adfcc sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xde305670 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde64395d blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xde6e3811 __cleancache_invalidate_fs +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 0xde97425e netlink_capable +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xde9e3b16 cdev_del +EXPORT_SYMBOL vmlinux 0xdeb08158 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xdeb7a6a7 page_readlink +EXPORT_SYMBOL vmlinux 0xdee4a0c4 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xdf0db44d ps2_end_command +EXPORT_SYMBOL vmlinux 0xdf218c8b sk_mc_loop +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2d8c2c should_remove_suid +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5b93a3 phy_resume +EXPORT_SYMBOL vmlinux 0xdf5d6786 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf6cedb6 down_write_trylock +EXPORT_SYMBOL vmlinux 0xdf6d7e2a netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xdf7f22f3 param_ops_bool +EXPORT_SYMBOL vmlinux 0xdf818e8f __frontswap_load +EXPORT_SYMBOL vmlinux 0xdf901a93 user_path_create +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfad18cb mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfc5a087 kobject_put +EXPORT_SYMBOL vmlinux 0xdfd53263 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xdfd98fbe __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe0086b1a pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xe017ed96 km_policy_expired +EXPORT_SYMBOL vmlinux 0xe01b26df inet_accept +EXPORT_SYMBOL vmlinux 0xe04b647a agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xe04bf75e devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe06a2d59 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xe06e9531 scsi_report_bus_reset +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 0xe0938be2 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xe0a3a078 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0c98a90 clear_user_page +EXPORT_SYMBOL vmlinux 0xe0d081a4 bmap +EXPORT_SYMBOL vmlinux 0xe0e98354 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe119ba2f kill_anon_super +EXPORT_SYMBOL vmlinux 0xe11dd9ac tcf_exts_change +EXPORT_SYMBOL vmlinux 0xe1273732 netdev_notice +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe163045e pci_release_region +EXPORT_SYMBOL vmlinux 0xe173907d inet_proto_csum_replace16 +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 0xe1c78ecf cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xe1ce9349 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xe1e74de5 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xe1ed4a68 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xe1f87295 scsi_host_put +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe20d4766 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xe20d486c blk_start_request +EXPORT_SYMBOL vmlinux 0xe2172ca7 scsi_is_target_device +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 0xe24f1e42 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xe25617c9 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xe25acb43 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xe26091da blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0xe28caf51 d_make_root +EXPORT_SYMBOL vmlinux 0xe2924e75 scmd_printk +EXPORT_SYMBOL vmlinux 0xe294aba2 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xe2987d27 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2b69a0f lock_rename +EXPORT_SYMBOL vmlinux 0xe2b90bea register_shrinker +EXPORT_SYMBOL vmlinux 0xe2b9f907 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2edf60f of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2f635a1 blk_put_queue +EXPORT_SYMBOL vmlinux 0xe314e8fb cpu_core_map +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe3255ed6 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xe32605b4 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xe34bfedf ihold +EXPORT_SYMBOL vmlinux 0xe34ed942 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xe36a2cab seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xe370eb67 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xe3737ce1 mmc_free_host +EXPORT_SYMBOL vmlinux 0xe375dae3 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xe37e3ab8 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xe38142c1 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3bc0f3c blk_requeue_request +EXPORT_SYMBOL vmlinux 0xe3bc9833 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xe3c7ff62 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xe3d03163 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3f4fdde scsi_remove_host +EXPORT_SYMBOL vmlinux 0xe478563e bio_integrity_free +EXPORT_SYMBOL vmlinux 0xe47f2777 srp_reconnect_rport +EXPORT_SYMBOL vmlinux 0xe48062cb ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe4869041 eth_header +EXPORT_SYMBOL vmlinux 0xe4a6d418 free_buffer_head +EXPORT_SYMBOL vmlinux 0xe4afe746 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe500f972 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52f3842 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xe5505724 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xe555d28c sget_userns +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe584fa78 udp_proc_register +EXPORT_SYMBOL vmlinux 0xe5864603 tty_check_change +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe588e246 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xe598deed scsi_scan_host +EXPORT_SYMBOL vmlinux 0xe59cbeec setup_new_exec +EXPORT_SYMBOL vmlinux 0xe5be2c77 module_layout +EXPORT_SYMBOL vmlinux 0xe5c255ca dma_set_mask +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5f4cb25 i2c_transfer +EXPORT_SYMBOL vmlinux 0xe5fc6c3a nlmsg_notify +EXPORT_SYMBOL vmlinux 0xe619681e d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xe6209454 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xe622b413 phy_device_free +EXPORT_SYMBOL vmlinux 0xe6437779 __bread_gfp +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe664e01b bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xe66ffd6a ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xe68d97c9 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6a2545f ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xe6c46369 dev_driver_string +EXPORT_SYMBOL vmlinux 0xe6c530f9 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xe6c7c553 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xe6f26972 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xe6f5f5a7 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe70ce693 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xe714108b kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xe71ab0e2 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xe71b0b94 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xe71e3d69 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xe7339563 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xe74ba8d3 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe78707e7 skb_queue_head +EXPORT_SYMBOL vmlinux 0xe79b6bd3 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7b2376a __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xe7c76951 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d3cf57 scsi_print_result +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7fae5f0 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0xe8036e54 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xe80495c2 mntput +EXPORT_SYMBOL vmlinux 0xe80d5b46 netdev_features_change +EXPORT_SYMBOL vmlinux 0xe8122864 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe82d9bc7 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xe83aeff3 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xe83bf974 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xe8425d29 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xe856a277 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xe87223d9 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe89fedab scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8a7b557 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c438f3 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xe8c9eeab input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe8fee3a0 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9160a1a free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xe9366b89 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next +EXPORT_SYMBOL vmlinux 0xe941fc01 vme_bus_num +EXPORT_SYMBOL vmlinux 0xe945ebfc genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xe94ea84a pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe959154b dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xe95c811c mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xe971876a on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0xe9868088 vfs_create +EXPORT_SYMBOL vmlinux 0xe98b5df5 wait_iff_congested +EXPORT_SYMBOL vmlinux 0xe9ab5dae mark_info_dirty +EXPORT_SYMBOL vmlinux 0xe9c054cd of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xe9c11776 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xe9c6356c bdget +EXPORT_SYMBOL vmlinux 0xe9e31eb8 free_netdev +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea28d071 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xea2d4d6e lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xea2ebcc5 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xea4439e9 release_pages +EXPORT_SYMBOL vmlinux 0xea63ff22 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xea6c2d68 pci_request_regions +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea88e081 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xea8cef05 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xea915851 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xeacec5d2 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0xeb056073 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xeb1f94e6 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xeb2abdab agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3b1313 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xeb3cabeb phy_init_hw +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb4d0f7c dquot_enable +EXPORT_SYMBOL vmlinux 0xeb6d95c9 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count +EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present +EXPORT_SYMBOL vmlinux 0xebcaa058 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xebcab3a6 ppc_pci_io +EXPORT_SYMBOL vmlinux 0xec08fd0c ibmebus_bus_type +EXPORT_SYMBOL vmlinux 0xec4fc9b7 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xec54f0d6 dquot_free_inode +EXPORT_SYMBOL vmlinux 0xec576b32 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xec7474e9 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xec7c0269 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xec822724 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xec9290f9 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xec9f2878 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xeca868f6 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xecce7030 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xece939c0 simple_readpage +EXPORT_SYMBOL vmlinux 0xecea061b nvm_dev_factory +EXPORT_SYMBOL vmlinux 0xed10ce35 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xed13b075 of_parse_phandle +EXPORT_SYMBOL vmlinux 0xed22191d skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xed552336 inode_change_ok +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed6b5436 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xed94340f in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xeda28605 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xedb300ff iterate_mounts +EXPORT_SYMBOL vmlinux 0xedbababb commit_creds +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table +EXPORT_SYMBOL vmlinux 0xedd968b8 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee121dd0 __sb_end_write +EXPORT_SYMBOL vmlinux 0xee29dfd8 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee330420 param_set_invbool +EXPORT_SYMBOL vmlinux 0xee378281 icmpv6_send +EXPORT_SYMBOL vmlinux 0xee3e5e4e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xee4e2701 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xee53ee73 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xee5c9e23 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xee791288 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xee7e6c1a __check_sticky +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea3cd7a nla_reserve +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef36fc7c param_set_short +EXPORT_SYMBOL vmlinux 0xef392457 set_posix_acl +EXPORT_SYMBOL vmlinux 0xef467a7c up_write +EXPORT_SYMBOL vmlinux 0xef5da4e9 generic_write_end +EXPORT_SYMBOL vmlinux 0xef6e5061 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xef91eb65 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xefa7e767 dev_uc_del +EXPORT_SYMBOL vmlinux 0xefc23e80 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefdc1f29 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range +EXPORT_SYMBOL vmlinux 0xefdf9527 empty_aops +EXPORT_SYMBOL vmlinux 0xefe25541 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xeff079ed xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xeffbf30d ipv4_specific +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf033f28c input_unregister_handle +EXPORT_SYMBOL vmlinux 0xf035c5b2 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xf046ebb7 key_task_permission +EXPORT_SYMBOL vmlinux 0xf055c01c __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf06cdfcd pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xf07479ca inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xf0760bc6 agp_free_memory +EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf091fecb locks_free_lock +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 0xf0d006b2 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xf0d1d977 kern_path +EXPORT_SYMBOL vmlinux 0xf0d449e5 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f21342 d_obtain_root +EXPORT_SYMBOL vmlinux 0xf0f7d1d0 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf0f82c46 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10a9f69 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf138b515 dev_mc_add +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf14a00ca pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xf14cb187 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xf156a5e9 register_filesystem +EXPORT_SYMBOL vmlinux 0xf1702b2e dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xf17f1857 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xf183189b __ioremap_at +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19e57cd netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xf1c8f0e7 param_get_byte +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e5ae6f delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf201b5cf do_splice_direct +EXPORT_SYMBOL vmlinux 0xf2075c0d blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xf20a3804 of_get_next_child +EXPORT_SYMBOL vmlinux 0xf20b8391 blk_queue_resize_tags +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 0xf228f6f9 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xf22df402 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf267666a blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xf26809e8 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xf2713863 set_groups +EXPORT_SYMBOL vmlinux 0xf2715e7f blkdev_fsync +EXPORT_SYMBOL vmlinux 0xf29067d3 tty_lock +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2c738c1 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xf2dcd8e9 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xf2e90a32 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xf2f14cf3 register_key_type +EXPORT_SYMBOL vmlinux 0xf2ff8362 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31d3def dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xf3215190 sdev_prefix_printk +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 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf392fd4d rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf398897d register_framebuffer +EXPORT_SYMBOL vmlinux 0xf3afd745 of_find_i2c_device_by_node +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 0xf408dce5 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xf43ea3f4 simple_follow_link +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4450866 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0xf4492f36 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xf45aabc7 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xf4749e9c ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47ad958 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xf488ebea of_device_unregister +EXPORT_SYMBOL vmlinux 0xf4a512db blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xf4af4e20 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xf4b41540 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4e0797c inode_set_flags +EXPORT_SYMBOL vmlinux 0xf4e6a9fa sock_wmalloc +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4fdbac7 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xf504f510 free_task +EXPORT_SYMBOL vmlinux 0xf50557fa nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xf5101db4 ip6_xmit +EXPORT_SYMBOL vmlinux 0xf5134a57 mmc_put_card +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 0xf560f5b0 of_find_property +EXPORT_SYMBOL vmlinux 0xf5744cdc ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xf5807546 seq_vprintf +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf6098530 mmc_add_host +EXPORT_SYMBOL vmlinux 0xf60fb0b1 __getblk_slow +EXPORT_SYMBOL vmlinux 0xf6167ee7 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xf618cfa9 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xf631b759 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xf6380663 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf64c6136 vio_disable_interrupts +EXPORT_SYMBOL vmlinux 0xf64f6561 ata_print_version +EXPORT_SYMBOL vmlinux 0xf6551096 pps_event +EXPORT_SYMBOL vmlinux 0xf657f22d tty_do_resize +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf67e73fd xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf6fe203b ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xf70d9832 dev_load +EXPORT_SYMBOL vmlinux 0xf744d82f bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf75ddebd copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xf78d0932 nf_afinfo +EXPORT_SYMBOL vmlinux 0xf792b6a9 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xf7a03617 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xf7b4dc6b ata_dev_printk +EXPORT_SYMBOL vmlinux 0xf7c05430 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xf7c0aba8 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xf7c73a4e filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xf7dc02c0 inet6_bind +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf826f3e7 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf8356653 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xf84268a1 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xf886c2d4 __breadahead +EXPORT_SYMBOL vmlinux 0xf890a7b7 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xf8a7b869 param_ops_charp +EXPORT_SYMBOL vmlinux 0xf8cd4f61 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8e49b2f jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8f02ace blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xf8f107c3 param_set_bint +EXPORT_SYMBOL vmlinux 0xf8f91c48 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xf900b402 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xf9038bcf smp_call_function_many +EXPORT_SYMBOL vmlinux 0xf90afbc8 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xf91c0b12 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xf94a1a2e sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xf967ddca swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xf96cb454 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xf98fe54e pci_enable_msix +EXPORT_SYMBOL vmlinux 0xf99034f1 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xf9935592 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xf9a35429 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a9ce69 locks_init_lock +EXPORT_SYMBOL vmlinux 0xf9ab9c1b scsi_block_requests +EXPORT_SYMBOL vmlinux 0xf9ade034 __devm_release_region +EXPORT_SYMBOL vmlinux 0xf9b828d5 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c30d24 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xf9c63152 tcp_make_synack +EXPORT_SYMBOL vmlinux 0xf9cc5185 fb_get_mode +EXPORT_SYMBOL vmlinux 0xf9cf9f18 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xf9d39d06 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xf9d521b7 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xf9f19c40 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xfa3944ed pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xfa45b79d poll_initwait +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa7001d8 input_free_device +EXPORT_SYMBOL vmlinux 0xfaaf0320 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xfab9d62a pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xfabd6296 force_sig +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 0xfaf1e50b unlock_rename +EXPORT_SYMBOL vmlinux 0xfb07e6c8 nf_log_trace +EXPORT_SYMBOL vmlinux 0xfb09a73d phy_start_aneg +EXPORT_SYMBOL vmlinux 0xfb1dd246 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xfb317f60 write_cache_pages +EXPORT_SYMBOL vmlinux 0xfb546d2d ps2_drain +EXPORT_SYMBOL vmlinux 0xfb6748c2 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb76766d __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb1c45f vlan_vid_add +EXPORT_SYMBOL vmlinux 0xfbb202b5 serio_rescan +EXPORT_SYMBOL vmlinux 0xfbc20e99 init_special_inode +EXPORT_SYMBOL vmlinux 0xfbc39f0c abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd3ba12 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xfbd7a452 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xfbd7f16d of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0xfbd9924f arp_xmit +EXPORT_SYMBOL vmlinux 0xfbdd4c01 cpu_present_mask +EXPORT_SYMBOL vmlinux 0xfc00fdaf serio_close +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc16ddd1 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xfc1f2366 pci_request_region +EXPORT_SYMBOL vmlinux 0xfc29e8b6 _dev_info +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node +EXPORT_SYMBOL vmlinux 0xfc52598b posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xfc5fb370 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xfc7cda88 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfccb137c devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcddb82b is_bad_inode +EXPORT_SYMBOL vmlinux 0xfce9bf74 vfs_unlink +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf2fad6 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd10abb4 __elv_add_request +EXPORT_SYMBOL vmlinux 0xfd152e1b neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xfd3d63b0 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xfd42af0f agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xfd4c7e9b dquot_operations +EXPORT_SYMBOL vmlinux 0xfd53deba blk_recount_segments +EXPORT_SYMBOL vmlinux 0xfd5cb2c9 elevator_change +EXPORT_SYMBOL vmlinux 0xfd67427b remove_proc_subtree +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 0xfdea58eb dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdfadd19 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe047fd8 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xfe18219c inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe5c55eb unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6bea51 devm_ioremap +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfea4135e nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xfea69dd9 get_super +EXPORT_SYMBOL vmlinux 0xfeaa7d2e inet_addr_type +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 0xfef47590 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xff00fcca softnet_data +EXPORT_SYMBOL vmlinux 0xff06d24f capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xff137833 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call +EXPORT_SYMBOL vmlinux 0xff1c213d serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff77b8d2 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffa0c489 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xffa8dcec dev_remove_offload +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffdb39ee deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xfff364da simple_statfs +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0a4b5f75 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0c714ffa kvmppc_handle_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0cb91377 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0ee18ede mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0f1c3292 kvmppc_unfixup_split_real +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x17263809 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1ce9a635 kvmppc_xics_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1d4cbdda kvmppc_rtas_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x20de5193 kvm_disable_largepages +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 0x331136be kvmppc_kvm_pv +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3983a8c2 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3def8bb6 kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x41ddc9f3 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x432470d7 kvm_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x47ca2183 gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4cb098e3 kvmppc_pr_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4f3cd39c kvmppc_st +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4ff76f77 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x50bea981 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x51927a79 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x52317e8b vcpu_put +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5337e00d kvmppc_set_msr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x56b970ff kvmppc_core_queue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x572dd856 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6160cf15 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6376c388 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6a17a1e3 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6f530ce4 kvmppc_book3s_queue_irqprio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x795897ce kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x79a04d34 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7f36bf32 kvmppc_ld +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x806d9edb kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x80790a72 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x815bf499 kvm_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8310085c kvmppc_hv_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x851af602 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x85a5a4b2 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x861ccd47 kvmppc_core_pending_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8714534e kvmppc_core_queue_program +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x880ae89e kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x88409461 kvm_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8d1fea20 gfn_to_hva +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 0x8e6dbc52 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9167bdc8 kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x944dbe75 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x99b48ee9 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9b7bdcf4 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9e5941a6 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9fee3039 kvm_vcpu_read_guest +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 0xac2c8bfb kvmppc_h_logical_ci_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xac7bf5fe kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xaf77002f gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb38ada29 kvmppc_core_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb457f91d kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb558e5cc kvmppc_core_dequeue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbb658bb5 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc70e4b59 kvmppc_claim_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc98e878b kvm_put_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc9ce8f43 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcbc10b81 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc44961f kvmppc_alloc_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcfab109e kvmppc_load_last_inst +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd0349734 kvmppc_gpa_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd185616d kvm_clear_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd3c1b18e kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd8199f46 vcpu_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe46628a6 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe499a478 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe6d00eb8 kvm_unmap_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xea2bcee6 kvmppc_handle_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xeda21823 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xef11cb35 __tracepoint_kvm_ppc_instr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xef18ceb4 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xef225b77 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf43bfe23 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4da3546 kvmppc_init_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf55203e3 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf7417fb7 kvmppc_h_logical_ci_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf82eca94 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xff82c9f8 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xffd12af4 kvmppc_sanity_check +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0xb95634d3 kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL crypto/af_alg 0x1b631ae8 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x2ea465d3 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x46625b15 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x512635ce af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x5b65cc40 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x8980c923 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xa8bde7dc af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xaba9bf1c af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xe448b712 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xfb89cf57 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xb27c152c async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x9c3edc7b async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xd2e113ca async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x26fa9c3d async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb3cb3423 async_raid6_2data_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 0x08c0e3e2 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x626e8800 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x038dfaef cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x14ad8aa5 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x6e015988 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x82878efc cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x852eba8d cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x869b401f cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x8fa8a2c0 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xa86868a7 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xdca27c08 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xf7b5a903 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 0x59f21f87 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x017222ef mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x3d07aa8d mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x5c94a756 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x5dd870a0 shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x72bda8b1 shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0xbe9066fa shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0xdd57a4a8 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xe72552ea shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x023c3d1b crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x03064c0b crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xacc2eb71 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xd1da6e2b 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 0xf8a17097 xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1e8749df ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x404c5963 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4090d5e9 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4138d521 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x41e08c73 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x49e9953e ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4a770f14 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4ef1b16b ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x71253785 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x72b9f6d1 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7828bc47 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x837eee63 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8d077fc3 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8e203cc9 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x92d2c39d ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x97c12e61 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9926664f ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbba83075 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc426319e ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd1c5a702 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd4a4c343 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe061cc34 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xebcb4d49 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x23ed25d7 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x58753ad2 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x59dbd4be ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6a5a6def ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x861c650a ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x93f3c676 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x96453cf5 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa2134c93 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xaa3c647b ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb81ea3b9 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbcb5d727 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf79631de ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf958332e ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xcf3607b4 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x6a4c4bda 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 0x04df5623 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x053a0c1f bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0a7b6eae bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0ac6d365 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1f23580e bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x20123a7d __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3223662b bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x32f679ab bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3d0ea366 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x491c3367 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4fcb6c02 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x57e9fead bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x73edddb2 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x76f86284 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9f44b054 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaa59fcfc bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xadf4bda6 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xae7e6a2f bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb16a072a bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcd758dab bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd5004f41 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdbb9c373 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeeed39b5 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf422f937 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1d1cd2f6 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4fc63f09 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5dad1994 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7882891a btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x96e4530d btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xae9d9397 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7133904e btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x71bdf6e6 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8130a203 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x84ef1930 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x87965c28 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x99e96a80 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb87044f0 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe5c4d87c btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe6e4ab11 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe7f34218 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xec9cadb9 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf1353dec btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1782c99c btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1c0b5a7a btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2d4c1fd5 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3b6b8bce btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4b5deee7 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x72b3a671 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x80bd6045 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8a44ad18 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xba33703e btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe776bdf6 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf96a4c1c btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xbcef5d84 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xcc74ce44 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf0a3d2d4 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x1d03ba1d 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 0x00f4400d edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x04f5d70d edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x079baeda edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x15e15a82 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3518bba8 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x363e0650 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x43779065 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4616021d edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4c9cb1f9 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x635bddbe edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6b71e735 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x82f1bd11 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8b89ab19 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9490cfa1 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9c9fecb2 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa3e49e0b edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb54588b4 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb97cab1f edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbf15766a edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc4261e03 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe0c870ec edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe7101153 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfd5c6b2d edac_pci_alloc_ctl_info +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 0x1c96133f drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6428fc68 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x76f22d18 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa2608ec7 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa3f04641 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcdd18256 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x318fad81 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 0x7783aa8a 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 0xd03a7950 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0b2f54a7 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c6ae11a hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x13249fc6 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x15f415bf hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x274a2bd7 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x328b6405 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x39ac3e08 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3ed4d484 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x40ad8e91 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4af62f48 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4b5e135a hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5e3f982d __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x69cde8e4 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6fcf7ef3 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x783ae538 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7abcdea9 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x85975491 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x864a291f hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8823dbef hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b816c8f hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8e68922e hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xac4840b9 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb6753bcc hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xba3eda69 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbe4795f8 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xce74b813 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd0f5e905 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd1d49b7b hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd5f19b4d hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd6522a7 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdece8925 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xec8ae6ce hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf065cdb9 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf1a5326a hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf9197b18 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa5259e4 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x28a981aa 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 0x0b0e8e67 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3026aad2 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4162f84d roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x61797973 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xda4331a6 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xeaaf26b7 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6c8ae144 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6dcfe3ac sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x74b3298a sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7547bc71 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbd76ab2d sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xce668dc1 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd5c2b65f hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe15bbc97 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf3140cf7 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xea3344cf 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 0x1a6e5f05 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1b50aebd pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1e84a154 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2e582caa pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x368f3a59 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3f08e2af pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5167175e pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8467ef13 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa1f7c73a pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb56ae971 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xca87d908 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd4d0111b pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd85486b8 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xdff7cd92 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf77429e3 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x19be1788 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2e677bb9 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x359484f3 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8549979b intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x93a785a3 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa50580ee intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb2b7eca9 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc064965f stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdfd5050f stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe72a21de stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf4b05ed0 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf97ab9af stm_source_write +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 0x052586d5 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x07c73bc7 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1dc31ef7 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x203eb37c iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x24777b9f iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x260fdf39 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x29fc9f53 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2bedbcbc iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x333382ed iio_write_channel_raw +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 0x60a25f14 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73c8e5a7 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x829e94e1 iio_update_demux +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 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 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 0xcfce2dfb iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd35b7dab iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe3c0af9c iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe527e371 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe80766e6 devm_iio_device_free +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 0xdddfbc76 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x5a15b81c 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 0x91c2cc04 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x05956c04 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x197dd232 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xcd113e3b cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x279198a9 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x45a6adf9 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x9899bcb6 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xa80291c2 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xe33956eb cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x3fd94e3a tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x541e4f61 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x5f019f6b tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xef9ac63d tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x02c2fb10 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x189d9d5f wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x208372f9 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x242cfc1f wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x341c8576 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4cb40485 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x908d775b wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc6245f09 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc989809b wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd4379dc1 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd5b539fd wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe702f6ec wm97xx_get_gpio +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 0x03375df7 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x245a56f6 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x248db4bf gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2994fdac gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2e87425f gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3d0cee68 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6c43bb09 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7791f543 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7a4429ed gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7e412e30 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8946daf0 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8c88ed03 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xafefff39 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xda4bb5c6 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe406e090 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf1b54c14 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf9fee136 gigaset_freecs +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 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1e57c7f6 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x21944e90 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 0x45475a69 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x46d93d95 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x91aa97ce dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb4ff030a 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 0xc0cbfb4f 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 0xcb3fee1f dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe7396dc0 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x089ef229 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1e0b9352 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x2d095b8b dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8764fa1c dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x889314bc dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8d47662d dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbd88fd0f dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xeac501dd dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x7c396503 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xdda37abb 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 0x04489402 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x109fd9d7 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x28a94cb1 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 0x6f666ba5 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 0x97916f73 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 0xbc382064 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 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 0x1cacdbe9 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 0x1045256b saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1bdd4153 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3b15ca7c saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x472a4e38 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x56e6a7f7 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6591097b saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6a5a6da4 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x785bdc27 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc6d51da7 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfa4797aa saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x063792c7 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x136b5022 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x25df2eea saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5c6cae1d saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xaa5ad82a saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb0bc08ca saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xff64927c saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x03358951 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0f858b82 smscore_register_client +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 0x45e39814 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4ab1ac2b smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x55aae020 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6c468aeb sms_board_led_feedback +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 0x81d14d4b smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8bb8363f sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x93458994 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 0x9eb006b2 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd4384f4e smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd77abbc1 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd83beb83 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe426b462 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xeedff5f0 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf863f534 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfcf9c06e smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x3aef6f4f as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x19d52f9c cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xa5f02421 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x02388b39 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x111206d8 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x20803d25 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x213784dd __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x2b4e727f media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x2e78e96e media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x50fd030c media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x7d5a6e15 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x85417b96 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x88652e30 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x889296f3 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x96278bd6 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0xb0d3cfcf media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xb764c60c media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xbfc1930b media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xcc2a6bfd media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0xdb562688 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xee6dd558 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xacd54728 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x023fb88a mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0b04e2f1 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x25f1b29a mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x28ce49c0 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2972b173 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x409b566b mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6b2173ca mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x80161c0a mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9a3a76d0 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xac6c2ea6 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb676afb3 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc1d8ddca mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xce9662ab mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd31c4b42 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd4e99102 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe74abd54 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeb8785a8 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf6676873 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xff509221 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x124d0025 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x20538082 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2b62d88f saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x34c3ce28 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x481bf94e saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x55c25496 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5909e3a1 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5d3d0794 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x66eeaebb saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x72e74618 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x759c1e89 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x786a2cba saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x80690e75 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x83173538 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8a92a145 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x980fa7e2 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa177cfc2 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcf8d226c saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdafc5af0 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x22f8a507 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x38cd6991 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5932ac77 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x84b2f18c ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x96533d75 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd6dad5d3 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf4292d20 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0e10a9a0 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x684bf97d xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x785246a0 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7b197a08 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xccf78cab xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe2c37304 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe734b4d0 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x2453f1d6 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 0x6cbb6f18 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x87f06bfc radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0f7bfe34 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4393cb98 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4b3cf457 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4cc8cc7f 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 0x58d6bfb4 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5d8e9f65 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5f99d597 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x69d44134 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x747709c1 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7f7ab285 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x86e40f32 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa16aa51f rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xba74cce6 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc997abca ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xca52be32 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd11fcc29 rc_close +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xe4eebbcc mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xe3600a94 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x153d5761 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x6b853816 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x06f486cb tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xa0388b30 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x3f42e7c0 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x835a22e9 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x5a36dc98 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x09634627 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x8d989053 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x64163a0d tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x91606cb9 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xbaab96ac simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0701f44d cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0a5c79eb cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0ab33ec9 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x12a7ec36 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4096fa8e cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4f503439 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x55fdcda4 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6216d94d cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6b96e629 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x80b8b442 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8dc2486c cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8ffe0c6c cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa3ba15f3 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xba24b97f cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc542cb7e cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcc202721 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe0694794 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe14dc3ac cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe237c02f cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xeecc99e3 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x4b80c3d0 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x807e3d32 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0068164d em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x302ea265 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x30464903 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3c7a6c07 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x42eedda7 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4454c28d em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x617f0bab em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x66bfb0ec em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x79fe970a em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8c9496be em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa07fa275 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbe3137b1 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe1621b69 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe172cf2a em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe3e05157 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe561210a em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe746418b em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfb4f5262 em28xx_audio_analog_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 0x8a35c368 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xc0b6bbc7 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdfd9dcdb tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xe7d42bbd tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x0ceeb6a4 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 0x8b6b7051 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x9b5927a5 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x9d92f92f v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe0c8c9d2 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 0xf7016e80 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 0x5076767a v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xa132b74b v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1205d845 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x12c68390 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 0x615be6ad v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c311b5b v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x731cbc7a v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x770f2a57 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x865a1035 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8c6e66cf v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8e5d430f v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x92264350 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9351e1f7 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x965b4b58 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa17f5260 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa33ca652 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaf8fd33f v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb2eb9da4 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb568b017 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc2a833fd 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 0xcbf5984d v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcf82d1e6 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd65bb760 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe63f063f v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeefac46d v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf40da0bb v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf669b7d1 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf6b923db v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf7f1fa4a v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x04d80a26 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x07311913 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1cccabd6 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2104af35 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x31c8f856 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x32f9c35b videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x34dbc3a8 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x36e0088f videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3713b610 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x37f62850 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x430ff70b videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4339a8d0 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x45ac0e5b videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x48f2ca5f videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x61ab9d66 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6602f57b videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x786f6f62 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7a3f50d9 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8ccb5014 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xab1a4ddb videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc6daa6af videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd54ce9e4 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe6d0b1db videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf6b2427a videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x4a5351fe 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 0xa64f7cb6 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xde39de01 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf3b2c7d6 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x00e1a29e videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x49bd560f videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc677f559 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x105d2459 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x22c7d6e1 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x29bb1a75 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x463b2355 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4a394ee3 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x63fbbc30 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x68b715a1 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x74076b51 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x74152342 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x74bc0350 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7a730ec7 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x82f7bae4 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8f2832b6 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb84d7107 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc41b2f75 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe4450e51 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf67a114e vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf71c7285 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xa842b80f vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xba5b3afc 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 0x0b577b72 vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x428e0b93 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 0x749df983 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x02bfb272 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0941dbb9 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1044af0f _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x157d8a17 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x157f7215 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x165bd7be vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1bb8ffda vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x26951dcb vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2908d124 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x33b3bc57 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x396fa12f vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x43977c44 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x45aa749d vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x49c43a7f vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4a3c08d2 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7166d338 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x71ca3a21 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x79513c34 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x98ff2540 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa8cb7dc8 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb0108d11 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb254ba27 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb9928006 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbc303ec3 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbd087a04 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc5ecce41 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcb85fffc vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd214291e vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdc1a987a vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe67c890f vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xee58fb54 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf4717830 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x109936c8 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x01f9d76b v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b36211e v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b947cf8 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 0x223f63ba v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3ca4d439 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4197fac2 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4540803c v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4b9303b7 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d9ffce5 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5238dc1b v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55b85c2b v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x59ff7bad v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5cc47b53 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5df4d4e0 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x675163e0 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e06aea5 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7206fa0e v4l2_fh_add +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 0x8b05201d v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e4d0f44 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x91dfb5b2 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d335318 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac1ff680 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf31b371 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7e54349 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc74107e1 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xda1c8884 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf4510b4d v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf899e902 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfa8f11d2 v4l2_event_dequeue +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 0x49ebd1f2 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4d3c3c8d lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x79dc236d lm3533_write +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 0x01438b5e pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x049e89e2 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0eaa0e54 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1af37136 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2c508998 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x566b8176 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x57af60b5 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x62bd7a77 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x81f5d715 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb468b18c pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc1504f2b pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xe0c5633c pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xf42da6ff pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x465e9a9f pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x641a4a0b pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x94716608 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd93c98f2 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf03134e8 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 0x03cdfcd1 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1a5ca13b rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x228c8c7e rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x23041662 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3346f92d rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x337da900 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x357ed6f7 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x395bcfbe rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x43b86581 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5797b2a5 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x608bfa90 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x78ad0c46 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7b3f27c8 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9379d44c rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9739e7a7 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa1ae3805 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xab993ca3 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb55a782e rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbd01d170 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc10c25f1 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc9a4f7c8 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcf976cb5 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdedf17a5 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe4374342 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0522ab7a rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0bbe7446 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1d2f4bcc rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2f639a14 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x38a6e8fe rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5f2639e2 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x68b23137 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x798be5ce rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9abc8aa7 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xaed9f1c6 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb89d067f rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xcb61b1cf rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe8dc064d rtsx_usb_ep0_write_register +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 0x82e49412 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb809a1da sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xce7b259d sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xedb21065 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xfe82b606 sm501_set_clock +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 0x1f83a326 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb4a64259 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb9b19a9c tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xf19a01b5 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x1b07c5c7 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 0x5087305c cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x80f08020 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8ffaf09a cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc261a6c6 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x050ad783 cxl_stop_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x0c9baf7f cxl_fd_poll +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x116facd7 cxl_read_adapter_vpd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x19fa4edd cxl_perst_reloads_same_image +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x1dde043f cxl_map_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x1e0d0f73 cxl_set_master +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x1e990123 cxl_afu_reset +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x2625dcde cxl_dev_context_init +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x2800bb87 cxl_fops_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x45679862 cxl_fd_mmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x45f64d08 cxl_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4dcffa73 cxl_fd_open +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x598e14c3 cxl_start_work +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x6893f014 cxl_psa_map +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x6e710ed7 cxl_pci_to_cfg_record +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7ccca507 cxl_release_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8740bc47 cxl_psa_unmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8f7d8596 cxl_fd_read +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9d30e794 cxl_free_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xacb6b59b cxl_fd_release +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb26f8298 cxl_pci_to_afu +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb81c64f1 cxl_process_element +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xcbfe1e47 cxl_fd_ioctl +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd1e2c1b0 cxl_unmap_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd287d8aa cxl_start_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xdf152d5e cxl_allocate_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xdf877c5c cxl_get_fd +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 0x2d91c392 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3429f07c lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3741118b lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6853a2d2 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6acadc54 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6ea31ff1 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8c47c725 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xdb716fda lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x95ea0797 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xbe92fb75 st_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x056acd25 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x249be52b sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3cb83b53 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x60d7beaa sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x75c1b5c3 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x86121c9e sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xafa75e59 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdc4dbc19 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xddba2b4f sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe58ac23d sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xec57c32f sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xedb9069a sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeed859b8 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf753e841 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0b55a813 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x14471592 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1ce4ada5 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8cd71029 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc1445e57 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xce44b739 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd0dcf551 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd6e0a3b2 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd746eee7 sdhci_pltfm_pmops +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 0x03f546bd mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x04f1b494 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x103c21cc mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1423cc6f mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x147334d9 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x22d35c10 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x291d95fa mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2a6281b2 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2bc252a6 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2f993717 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x33041652 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3918957e mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4027d468 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x41b211d0 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4f3255a4 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50fdc6b0 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x518ea7b0 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53378cf9 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x64fdfe31 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6682b19d deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e1e5e83 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6f163c3f kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x70132345 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x82cbcaf1 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x90f7c320 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9308f134 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x959a69bc mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9f378653 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb0982ea8 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbc64eb32 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd3495ec4 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd4b1977e mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd4f004a1 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd92c64fa mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xda69bdc4 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdb22a6e3 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdccc38d5 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe25873f1 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe7a3f855 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xecc6158e register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfac5f0c9 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfd6607fe get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x0035dab8 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x0b0a527f add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x8be4d4b9 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xace1249d mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb1396d9c 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 0x19041236 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x21361827 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 0x5fc09098 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6459c6af ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x65681e80 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6f56d53e ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7bf12e22 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8291c0aa ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9e756e59 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb5452cdd ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc05f3b91 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc86ff75c ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd96d3fda ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe45f630a ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x37d7da97 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xab2e9dc5 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x285f987e unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x46548ea5 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6a382a1a register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7946fba9 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb90a02d7 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe697a4fa alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x02fab064 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x084f53a2 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x09a0c233 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x167c9238 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2dd65ab2 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3734d285 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x458ae1b6 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4beaeedb safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4c4075af free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4de30d87 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5cefdada alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x715c3040 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7b80c70f devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc366cf7a can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe8fc93e6 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xee3224b5 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xeeb581e2 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf64f4e9e can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x18644a84 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x24045619 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x27e2b54c alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x984b5ef5 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x25db78d7 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd6c99022 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd9cbf04a register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf535ecaf free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x325c5eef arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x42dbbdad arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x014559f7 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x016fde75 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x030520da mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05845bd5 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0632bdd6 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bda2adc mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c2b66e6 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dadcdb4 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fee8f1d mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1342d708 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x134e5fae __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x136995e6 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1386fba4 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x162f6aa8 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16d7385b mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1820eecd mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x184e6b81 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19ae8b6f mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a73da3d mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d2394ec mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2238c6f5 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x271e25cc mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x289548c5 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a0f765f mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a5a0e0c mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b5761d6 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cabbbb4 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30aa822e mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32c1c2e6 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32d095a2 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x354817c1 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35528ad8 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36c2d3cb mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x372384e0 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x383acf8f mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x399adaf6 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ae53ec3 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3de49a97 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3faa8d07 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4496d58e mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x481622e6 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49581c4b mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ba6ef9c mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f102b84 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f9ac25e mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x503ef957 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x515789a0 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52a62a47 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53331084 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56373e26 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59060b14 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e3ef308 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63ceba8c mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6470e65b mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68d97028 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6be698a4 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f045fc1 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x701aa200 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74210780 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77e7b0a4 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7839a70b mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79975878 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b880a84 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bfce2c8 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80cc23bc mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84e0855f mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x857e648a mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x870585f9 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x870a7e56 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8831bb50 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c372d3f mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94d2b5e3 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9875e00c mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a6609e0 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c93c012 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2bf6135 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6376d7c mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa84620c2 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8bfc035 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa911c47c mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa6a5728 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf070111 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafb72d77 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4c74f81 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb511877c mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbac718f1 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbb30564 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc682df8 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd47195b mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe8c44c7 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3366b5b mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc62b2b86 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8ce05f6 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca238834 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd8d73c4 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0dee1f4 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1dad959 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2476846 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd62b5091 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd69a5b19 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7bbfaf4 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8f3bbd2 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9c5bba0 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda930fdd mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbf13f89 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddf16b1f mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf6d7490 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe00d959b mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe17187a5 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe396dfa8 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe483802f mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5df74c3 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6fcdd74 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7bc3b2e mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7c0e1e0 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7ddaaa4 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedd7a2fd mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef6249db mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf124ae12 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf35b77f0 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf55a2143 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf56cffe2 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf98bd8b0 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa7fdacd mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01d38a9c mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0508f6ab mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0aef51e6 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e47f07d mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x113c1e52 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ac05729 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x207dfae0 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bd098da mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c8952a9 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ebd2ec9 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31669863 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36b75de4 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b250c6b mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f2dcf7f mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fb23426 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43062010 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b44585b mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c7296ed mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60c69e10 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6141687f mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x649b0d87 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x667c91ce mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x794581f5 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84b20439 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c35c7aa mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d885683 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97f1573b mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9de653b9 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e0cdd73 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5527589 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7a51d16 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae3f1d08 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7a25287 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7b3af66 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2988bb5 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc421e402 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2e33d0d mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde4612f4 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe077a60d mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5d05850 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6083ca2 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7a0dbc1 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe840fa76 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf280788d mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3a066e2 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x792e78ea 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 0x2ce74f97 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4fc92d65 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9e408f29 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd0ea66e6 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x300dea41 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x47a0094f stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x69580b38 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb81c7c6f stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0799bbce cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x170742dc cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x317ae3a9 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x32d3d16e cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x42b0d98b cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4fe58aaf cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x64fd3e4e cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x81e02042 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9f157b31 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xae3d588a cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb9d634a6 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbc96248a cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd0f9ebdd cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf0e7fb49 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf6160a94 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/geneve 0xd3f25bb8 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/geneve 0xe407a884 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x19c578bc macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4b8361a0 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4c455462 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xfe08af81 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x8176bbb4 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x23821604 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2fa80edc bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3cd52b99 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x41af74ce bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x60347e96 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x693b7860 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9b2a516c bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaf352d76 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xec1b251e bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf35d357f bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x4c334e29 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x692f7858 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x77c85e5e usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa3cd0d13 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc3f9bfc9 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2320bf7b cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2ee22eaa cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3356db44 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x485e7fb8 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa9331749 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xabdaef15 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb02d6ce5 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc63178bb cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd4627fb1 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x252fe414 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x616d392e generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa39dd2e5 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb76b4d39 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xca40049f rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd15a9251 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0041bfa0 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0da4fdb3 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x145aec9e usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x156bb33b usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1848fbf7 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x19dcc0d4 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2630dbfb usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x420c30e6 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4f62edd1 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5879b7a0 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5cc08148 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6163d164 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6b75e5fc usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x75c8ce8a usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x77fd5624 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x818820bb usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x89a597f9 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9d1447b3 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e839e55 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa6c21553 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa833a203 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaf0d38bc usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaf5906ad usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb4cc1b95 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xba3915b8 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc0def979 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xda1e856e usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdeb40165 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe7b1cfaa usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeead207b usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf21e1255 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf24a50b1 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x05f1d83d vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xa178e97c vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0b48f344 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0d4cca6b i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x23803209 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2a4c3bcb i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x328c9f7d i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3cea9520 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3e4aa66f i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4fbceaf7 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5daa6e96 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6390e654 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8bfeb5d5 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x92186df9 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa0888ebc i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xade24a71 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 0xb1a64cbc i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd24ce43a i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x41539299 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x73efaa53 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x7c329fb3 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x7c38c7ad cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xcb0ab658 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x6042b4f7 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x7a2b4f54 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x880fc01c il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xbbdb9d2e il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xc0bb7e6d _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 0x00b0aa36 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x01a95040 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0b30a90f 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 0x2f001898 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x30775c96 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3301b253 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3b2ca6b3 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3d09ebdc iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x49537f1e iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6804b66c iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6d18c2e9 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6f3c620a __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7ea34437 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x835279c5 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9a8db9f7 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9ec35464 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa38ed107 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa3b83cf1 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa587bb01 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb30c1929 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb57c4f4f iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd2c9d28b __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd38b0b13 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd688efc8 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe4bc5c97 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x008ef27e lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x33aa9fd6 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x41370e42 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4a745bc1 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4c288f61 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x574539ea lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x70a783ae __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7f0afee8 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8bca005f lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x96d4586a lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9ca1585c lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xadd1b140 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd7af6119 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf42900d0 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfdacec09 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfe21a527 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x600e1636 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x7e71988d lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x9a9cfb03 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa244d80c 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 0xcf9ffcd0 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xd8546e9c lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf891bf58 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xfaea784a lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x00504f2d mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x05d258ae mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0718f208 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1069d698 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x14bcedfa mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2538f354 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 0x31d509d3 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4f3140f9 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x542b332e mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x57296e96 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x630986f1 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x881a5925 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8a758631 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x98f7133d mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xac5d3347 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb2af9479 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb9a8d204 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xec05c6f6 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfcb34394 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0524889a p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x2747c13a p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x2f334850 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x53f3f52a p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x5f76b78b p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7059e84b p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x9471cf36 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd9f18d75 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xe15f1b12 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d2ec823 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35563bea dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa3a5d21d dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb9357cef dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x055d53a4 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x05e0b14e rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0f41b733 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x16460c5d rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1959ed81 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x21630094 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x24cbb3d1 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x684ed0e2 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 0x77c197f0 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x83a66413 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8c687d07 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8d7b4b8f rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x94b70eff rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x961f113c rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9698a666 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x99f08d63 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 0xb0a806ad rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc653b708 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc72194bd rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd24278ee rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd387a638 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdc382125 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe4584f1e rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xec852aac rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xecd1eeb4 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf6ce9156 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf713075b rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x01d4ee5a rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b661edd rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e232f0d rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x21c609fb rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d2f56da rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f70d4df rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x581e9431 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 0x6df9f09c rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f1ac852 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7700f0f9 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7c6354d4 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa19e10a0 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbeb305d4 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcbf497a1 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd178def4 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3035f8f read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda29c741 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe78afbcf rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd6e8d5e rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x11f1f281 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x13a261c6 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x5d07f085 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb03258b5 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x04fab9c7 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x07e753b7 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x093bd1c8 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x09eb61a4 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x228914a9 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2b598dff rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2d60f667 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2f4ccc2a rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3226d445 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3336c12e rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x357fca21 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x43f1f0f6 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4a4337e0 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5415f216 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5951700c rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5c99f487 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6172e299 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x76cd4bdb rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x77152678 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7821ae46 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x782f0050 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x80c7206c rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8323a354 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8bd2ccf0 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8cc435f9 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9d089dcd rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa9a14129 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xab459b72 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xabaa6dec rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xae85199c rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb40c5342 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbade40f6 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcc236666 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd35fd4b4 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd8ecc416 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xeecbbf36 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf99afdf2 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xffdaa75f rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x15bdcd1a rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x1973a530 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2bef866d rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x32522dea rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3a28a507 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x73917a72 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9e09aaf8 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xab2ff6f2 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbc328de6 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc1712d89 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xcd08e79a rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe6d5dd41 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xea124758 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0271b919 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x028f7896 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x076fdcc4 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0a1b75ec rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0c1466f1 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x14edf197 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x23c4fce1 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2df96ace rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2ebcceac rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x39c83eb5 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4c660a23 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4daface7 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4e8213ea rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x59daa1fb rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x665ae1f7 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6ce194f3 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7cc76a34 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7f99dd2c rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x83adbd04 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x862851b8 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x87f4a94a rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8a20b2b8 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x93e6b657 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9e95c642 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa0f5facf rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb06f9a0d rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb72ef60c rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb7c94d2e rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb7d82be3 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb8842839 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb92cf874 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb976acd9 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xba3e3adf rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc1dd94b1 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc966e2dd rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xce051e27 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd10962b4 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd2766461 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd7ab770c rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdd433000 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdd73b1f2 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe26f1b11 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe4baba2c rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe78bbdfe rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe9778ff4 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf8dcf133 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x2eb0de16 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x67382737 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x726c3e32 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x84568402 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x9d396c2b rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x1a3bc876 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x5fe40197 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xb37e015b rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xe230e8c4 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x04fd712b rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x212e91da rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2b967d6c rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2f476514 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x373d17fd rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3f8d4935 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x418e6403 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x55ede34a rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7734968a rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x785ebd03 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x860aaf11 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x99c4948a rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xcf0b997c rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf0bef781 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf238f629 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf2982f7f rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x00e4b95a wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x4f1bf9fa wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x7cdd7343 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x09579fdc wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x095dcc1c wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c4d667a wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0f3dbe99 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1502c257 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x16a7ae39 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1c076110 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2198ccfd wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2d4dab76 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2e781f6c wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f0d80ee wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x341f835b wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x398bce8f wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e5a0ad9 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x48457c93 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49d1108b wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x51a91060 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x536967f0 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x59e3759d wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b3007bf wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5f95385c wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x66ebae2e wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x678a36e9 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x69ac6113 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x71d456ba wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x770efc95 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7e183e76 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85fd53e8 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x95241203 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa2f3d290 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa3cdfcf6 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xacaa2e84 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2f91d4a wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb66e79be wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb67fe423 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 0xb9fa3c13 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba6feee9 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc83ee96e wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcef91e35 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd0040525 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd9473093 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf5b4a5c9 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfd0b84f0 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xff368a62 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x817337ca nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb0295e4e nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd1423e8d nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xeb1f6c47 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x23afa315 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x410ff0b0 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x422090aa st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x790c7b5a st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x830a28c9 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x928e669e st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa257421b st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc184376b st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x167f973d 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 0x340cb828 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 0x55169ced 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 0x02da0315 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 0x23ff4a9b nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x42798fd4 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 0x5ab3a3c3 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8252f655 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 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xee210f20 of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xf4ffdcd5 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xff5670ff nvmem_register +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x27ce71bd rpaphp_add_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0xe7d40c88 rpaphp_get_drc_props +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0xf3919fd0 rpaphp_deregister_slot +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x2eefdbd2 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x34360c09 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xe0a4c3ed pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x137b8f12 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3b19b300 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x93e2f886 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x9d71824c mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb8ebc6f9 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x087c61e1 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1a91e984 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6eab012e wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd3f62d9f wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe18c1fce wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xef326a3c wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x2f9ab93b wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0398ba14 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0fc96704 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x201e781d cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a7f911e cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x33c0de69 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x38edcf80 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3adfbc12 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3c971448 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4257241f cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4a87a7f5 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x50120444 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x613b3e84 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6b5a7943 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6c769fa8 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6ed3c3ac cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x73b5413d cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x765a71cf cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x78c51a53 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7a447337 cxgbi_sock_closed +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 0x901373ba cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x979a624a cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x98e0da56 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9b347511 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e8a721f cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9f2b9789 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa2e713e0 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa33c2053 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb04aade8 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb3471eed cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb52a4ba8 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb5c970c0 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc90c0a33 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xca4352c9 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd3e475eb cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda022e80 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdaee65c1 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdc008be5 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdc77a200 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xde8321aa cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf9a5cae cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea716995 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeb22d7d6 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf7c6449e cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf7fcd3a4 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf80556a6 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfab4f2da cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x05a60c40 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1355e6a4 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2708bc01 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2710cf33 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3fe9daa5 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4d82ec90 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x60e48c63 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x81b6834a fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9257535f fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9abeac88 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xacaae130 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb1afb5dd fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb74d0fe6 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb80ed1b4 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbe55c3a3 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc76636cd fcoe_start_io +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 0x04e9c7db iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x089aea4f iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x096f127b iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e4d4252 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e6e1cd3 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x15912968 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x214048a0 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x233af9fb iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2bd1252a __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c7b74eb iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33aa68b7 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ae80709 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x48fa7403 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d9a4860 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4f31e2fd iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57f63701 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5aaf2419 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ccda868 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x659d8e69 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x712046f5 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x792b198b iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e765c83 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x81e4ab73 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x87da4631 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x904b0423 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91f7f95a iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x963a22f5 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9f17f267 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa2a332bd __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa2eb774b iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xad7d67e5 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3a0c44a iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3e9638c iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb4e2e35b iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb98232e9 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbb9962e5 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd9b7dec iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc29d1ccc iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc3f9f064 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5f153e3 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xea033360 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf5dac4ba iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0bdc3f4e iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x12820ba7 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1fbd9742 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x21c77b19 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x50c15d3c iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x55cf03f3 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5b26a598 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x60c1012a iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6834b3ec iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9aac0535 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9db61e7d iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb92d41c5 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbc0138dc iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd2553656 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xda193542 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe3fd6752 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf7f2398c iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x09161646 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0d10898f sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1166d634 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x16c4fd8e sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1d36efee sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x54046e0a sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x622398b8 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x63199477 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6e017143 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7089c62a sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x744228da sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7670b930 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x86fad755 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x870f2276 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x909d423c sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9b25d3ce sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc5b230f3 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xca06c124 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc71d513 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdd613362 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdefe2626 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf8febd81 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfbb8fb96 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfe3ff072 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0300ffe4 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a452fb1 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x114862d7 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f390de4 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24f4a442 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x28c8a14d iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x296ef7f0 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4dbb95b6 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4e9f2d80 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fc67745 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ffa4731 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x530594d8 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5418b0ed iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54cbb2ae iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6331bb5d 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 0x6b52b6dd iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f803aac iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x755720a2 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x780578d1 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79ac7d34 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79c0cf75 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7db93f5f 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 0x8769dc9d iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa9285a01 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa4b8227 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac467c53 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1bf5f9c iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3313fce iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb814191d iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbd151d6a iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe20c7c7 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbecf79da iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc152303d iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc82ad9c6 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcfde860b iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5c3c159 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3813d74 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe81d99c5 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe854b4a8 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfe485d86 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xaefae928 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xaf81c470 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xeef14356 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xfaea08b4 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x03c3893f spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2612f52a ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x374956a6 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x396aae43 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x770e5f3c ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa63bbc47 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe1b2e45d ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe61af8cf ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x021a507b ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x498138f2 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5d77fec9 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x62f056e9 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x6a386eaa ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x72d09f92 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xaf989dd2 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 0x2bc3039d dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x7c1970e7 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x94022c18 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9f8369eb dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x018e9559 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x112043f3 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1170c71d spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2b196ef4 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2d110532 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x360d836e spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4632c4a6 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7e88d69c spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8bbb6e44 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x97d08ada spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa58702d9 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaa7d09ea spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb24b54c8 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbb8dd0f5 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd2a4eebc spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd4106ef0 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe8b37e09 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf307c457 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xb9b824e0 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 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 0x62eee33c comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x677495a7 comedi_is_subdevice_running +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 0x7d42e155 comedi_event +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 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb74530c2 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb7864d09 comedi_dev_put +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 0xe2d5d575 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe8e63d3d comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xeec18715 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf046737e comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf69cfe01 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x3e38acd2 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x442b585e comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x81977272 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9750d73c comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9d04afc8 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa6af5f81 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb9a25b3b comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd8580890 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0ea2ce6d comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3006c9c0 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x4d3bfdaa comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x5961ab1a comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x6009c54a comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x90d62772 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 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 0x143e178d mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1f38bf53 mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x41752363 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x423dd7b9 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x57c37abc mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6021d626 mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x67227df7 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6734527a mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6d8c50f0 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7b3a092f mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7b839ef9 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x96f7ea93 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb6a15ced mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd192ad28 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdd90dc18 mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe48d3818 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf2c7ec41 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf5220703 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf5c1e152 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfb08e5af mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfcbda60a mite_dma_tcr +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 0x9ca42471 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x026c240d most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0e1904cb most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x10c1c44e channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x294fa660 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x47b2dbc8 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x571c73e9 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6676f6b0 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb1a06742 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb762c2f8 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb7b6c149 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe01ee9fc most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe8801b6d most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x04555170 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2ecf511a 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 0x4f3c84e8 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6ea50cae spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x73829cbf spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x751ee8b3 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8495e23d synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x94ac6b07 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb07ee96d spk_var_store +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 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xef46e503 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x4cc9bcf4 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xbad9fbc2 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xf1f86433 __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x85bdc5c7 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xaaae6966 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x023d2990 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb622cce9 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 0x046e85e6 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x113c3d94 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x177aab71 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x73ef8b6e gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x847109ec gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9028d19c gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9b4f63c9 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa5076350 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa8b7518f gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaa8b6a49 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xacaa0c4e gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaccba400 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbc4e1ce8 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xea834e08 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xec21460b 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 0x5861ff78 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x5d97407e 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 0x4b69ab22 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xa4924b3e ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xe7f97d86 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0b2ba204 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0ddf29de 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 0x237ea788 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x27707e04 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 0x2d3cd0af fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x382365fd fsg_store_removable +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 0x3e79a1cf 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 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7316cdcd fsg_store_file +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 0x8ee63b4e fsg_show_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 0xae276857 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 0xbcb3ba80 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbe9b2bba 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 0xdff3e33e fsg_show_nofua +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 0xfaf15494 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfc84b795 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2aa8aab7 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2c92f054 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2e701412 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x552f22d3 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x56e9ef84 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6b9ed148 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x71d1ac75 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7e5c4b96 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x84b44800 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9bc5a483 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa4043642 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd123bda9 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd9cb0697 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdc812205 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xee021b63 rndis_signal_connect +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 0x0ebafa37 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1019e3ae usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1cefd6de usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d21a080 config_ep_by_speed +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 0x4749b79e usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x527ffc9b usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5d4b740a usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6047a3e5 usb_composite_probe +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 0x724087e3 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x729f7a9e usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x762ca644 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7d2d8790 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x842d4685 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x956b71a7 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9780b685 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9eee0d2c usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa0fdaa13 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xafac4c0e usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb94ed271 usb_otg_descriptor_alloc +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 0xdee53b3a usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe128eb1d usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe873214b usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xea547961 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf1658a99 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xffdfaae4 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x33fcf3b5 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3a71d523 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x67ec5e36 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6934274a usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7b15cdd7 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9604ce25 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa6938dce usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb450c21e usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb5e901cc usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcdb863dc usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce427e17 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdf7f3505 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xeefcc29a gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x3e76559e ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x733cb939 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1d1eb5f5 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1f5cbafd usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2516ad28 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x32619aad usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9ebda064 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb40dd5cd ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbaecb629 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xcbb51069 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe678c570 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf600cfd1 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xb4f34d4d isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x293a3e12 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x02cd778d usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x055f8870 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x06893c7d usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x06e767e5 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x08a76c67 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0b238b70 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2044d03c usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2671154a usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x44afa7db usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5413a107 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x61673bef usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x648e8961 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x710a4734 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9280b4f1 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9df82620 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9f461b1c usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc1deb006 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcbbe1a69 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd3062577 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xedfe475a usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf61622b6 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x06402b1f usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1f3bb3d5 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2b413fd4 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x32bb555f usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3a492d69 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x41ece49b usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x52c38456 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x574a09d5 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6266482d usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x695869ee usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8c737244 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8db6ba95 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa74d3d82 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xabeec445 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xada72de2 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc327f616 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd0f8fd8c usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd10e8b4e usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdceed7f5 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xde472c77 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xde4c85a9 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe2c3c7ae usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xeff4a55b usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf0d8087a usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x261c95d7 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2c2b3c62 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4c038ea4 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x59b4fb6e usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x64adf170 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x82b5fab9 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8612e54e usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xaa10a743 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc7d8e224 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc83f0ad3 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 0xf1a3f45d usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfb3cd77a 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 0x15b41a44 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x8114ae09 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x974ca42b wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc78c1412 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd9726601 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf33a4fe7 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xfccd269f __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x00c17fae __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 0x13d74550 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x215e2322 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x34b7f984 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x496c11cc wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x82712562 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x83472ac4 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9bb2082b wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd039b643 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd3d66934 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd4cc827e wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdc18114c wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe1b15fc3 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe5853474 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 0x007916bc i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x8371bf22 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xa0c8445e i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x1d670fd3 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x312c522b umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x4dcffb61 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x4e058b54 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x71916ca0 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc6dbb2f5 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xd3002951 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xeabc883f umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x03c32e52 uwb_rc_neh_error +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 0x11763424 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x15b25f5c uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x175ac590 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1910ab28 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x22522057 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3831fe12 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4809b25a uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x496dcd71 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d3e36a3 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x61e38121 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6aee0e0f uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7a15faa9 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7cf3da29 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7f199771 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x80dc3048 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x83834716 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8596e3b1 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8eea66c9 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x981c83e8 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9b9aecab uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9c31ffc5 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa8f9bc5f uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa9dc8b2c uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb349f105 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb757f2e9 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc71f3af3 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcd3fe893 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd0b10d96 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdf013318 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe046d471 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe48a6fa6 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe624361b uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe81fafaf uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe8429877 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfdbb81d9 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfe18da75 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x0f2f14bc whci_wait_for +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x00ddec94 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0396589e vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x045dac72 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x17f74876 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x220d4548 vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2e6a43d0 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2f605373 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36fb5288 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x398dbade vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x43218c7f vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x49537fea vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5032a9ff vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6961de4e vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x859a2214 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x86d733b1 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x88c7a4a7 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa333b9a4 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad04123f vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb384b2f5 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb95d5d3c vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbaaf479a vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc194b559 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc51f8319 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcd8bc658 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd041ec4d vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd3e688b8 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdd905862 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec09ec50 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf8138c68 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3c4431a0 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x772c7d9c ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7cd860c7 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9b3917f9 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc2ecdac6 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf1797b93 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf8aafea5 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3fc5e757 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x402fe9c8 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x52f71176 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x53c1706b auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5d05c567 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8117a07d auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xce5b8dc8 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd138c40c auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd7765b19 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfc457d22 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xe45256f9 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x96a2c058 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xdf17d3e3 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x92a491f5 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xad1c57bb sis_free_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 0x54d9e013 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x92e9d75b dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc438a13b 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 0x10883f30 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x10dffd01 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x69e65977 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x965d0bd1 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9c9c18ed nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe1eda65d nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xebbe52c4 lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x031d0b2c nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06038493 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0681dfd3 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a950529 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d2bb020 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x101a0b81 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10b69699 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11e859de nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1381b4a1 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13883f50 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x155fea4e nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15b3927c nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16ff58e8 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17842330 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19b28379 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a65d80b nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c07a6f4 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e335818 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f78602b nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20322c0c nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21418a56 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21bba77e nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a79ab4b nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2caa85d3 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e5a0385 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f63717a nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fd82622 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35011d56 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3932d7a6 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a14068d get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cbcec71 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3df6264a nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4041955f nfs_pageio_resend +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 0x46639bab nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46aa69a3 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bcf5aec nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c54b875 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cbb7f8c nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ceb9b7e nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d552439 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5423917b nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5dd5080b nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ef669fc nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f576998 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fd48a3b nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62bf062f nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x645ae701 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x665d4abe nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x697f5a73 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a228a84 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c9ff793 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cccd42c nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cd880a8 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d930f4e nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dc6eb88 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x709e3c48 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x711ef759 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73cf2cb6 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76aa6f37 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7705cfb5 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x790da24d nfs_retry_commit +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 0x7db31865 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ed759aa nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81569d7c nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x822821d8 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x826835e4 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x860d3a66 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87c08264 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8da30359 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e902025 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90f5c736 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9153f8ab nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x920a1032 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96b6f1c2 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9adccb80 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cbbe035 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d66b38b nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9feab184 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7a064e2 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa120ae9 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa6fac1 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab7bac45 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab7e3e26 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae70da32 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf91a377 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb09e3e6e nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0c4859e nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb35bf82d nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4a32ea0 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6d04508 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7c609a4 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb918d0d5 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba1208c1 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb3f6128 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc14081c nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc7fa4fb nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdaeb055 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3207bcb nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3e6e747 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4150590 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff8d00 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6417363 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6b5a7f7 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc901d206 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb984023 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc322c9c nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcff3b47b nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd309753a nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdaa97984 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdde9a814 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdeaf4749 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdec94f47 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe130dcec nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe491c87f nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeecfd971 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0397842 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0e79f0b nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4d2b2f7 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf84b081c nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfaed0585 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb33a104 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7c7ac6 unregister_nfs_version +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 0xfe049724 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xcc2df583 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02bb6c54 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0517d974 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x06f8d3e0 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ea6be00 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15776490 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2aacd4eb pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c588671 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x306e8f4f pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31b8905c pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31eee952 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35f687ab nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x360c4205 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d4eda00 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4458e9d4 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e40c322 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e997927 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5345ce5b nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x538c796d pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x546f0590 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61a77489 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61abdd08 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x688eba83 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7787deee nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79fc7c5e pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80a11230 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83811209 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e60f9b1 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x904d57d4 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9511d502 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c652df6 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ebb67c5 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9eded2f5 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa06c8d3a nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2b4ec9c nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa63049ae pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac8bf46e nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0259888 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2c38eed nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2c610ce pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8a0ace0 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9aa5c21 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf7e56b9 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd31ce6b9 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd44f3c4a pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8bb80cc pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd99c94cb pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc29b96f pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe108a874 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe122025b nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe34e737d pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7be0888 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea606aa7 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec6f31e9 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee6beaac pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6e373b0 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf938c9c9 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf995acdd nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc8d86ff pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7ec4e6b1 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xcf4cf1ad opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xd27b1fe0 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xcafc1f7b nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xdc52ff60 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 0x3575476b 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 0x44682e9c o2nm_node_get +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 0x97805af3 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 0xba0a73b4 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 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd468b450 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 0xdab2f766 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe2eff8e4 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 0x13a6f99e dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1fe57ca7 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 0x7f3649c2 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x91174d10 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xcbe18305 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 0xe2b5dbf3 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 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7f9acc78 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x938f5d55 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xf1fd7a0a 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 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 0x21fd2650 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x4340dc97 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 0x00d308cd lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x332519aa lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x390d520e garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x4759b951 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x7aa3b02e garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xcf82d2d8 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xd418929e garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xd9a92d74 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x4533c5ac mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x8787bf01 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xaa6f48ad mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xb2acf096 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xecac8853 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xef35a31f mrp_request_join +EXPORT_SYMBOL_GPL net/802/stp 0x7bce9e87 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xc12c7410 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x15e0895c p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xc0cf1833 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 0x9abf51d2 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 0x03be73b4 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x17afb7ca l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3d731416 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3ec1ac0a l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x57761af8 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5abf2ea7 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x99562765 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbe23193f bt_debugfs +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x14872dbb br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1f871091 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2576aaf9 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2c132ea6 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5fbe1ca5 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7ce971ca br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9e248ddc br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb33770d8 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x2b2419e3 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x36cc9f1c nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x13e8b0f7 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x14bd2784 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x18a61bbe dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3462f422 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x356ca715 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x358a9aca dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3ed6d807 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3f5db1f6 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x468eb93c dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x46991b72 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4c1adb1d dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5878ddb6 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5cf7af35 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6a0ecee5 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7085bd65 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7825d4fc dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x796236b0 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7a524b6f dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80a3fedf dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8702d205 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb35c962d dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb3d96671 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbc88f69a dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc1be9b59 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc244d7f0 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf3837e6 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd4f7d154 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd9ff27a2 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdd50dc51 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdd95dca7 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe478038b dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5256155 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf430a9f5 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf56ecc92 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf722b93f dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x82bec3b6 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x83092b99 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x86566440 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf2874bcc dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf56ba7f5 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfd13b0a3 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4bf1c7fc ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5bd819ee ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6c6b58a0 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x792fbb25 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ipv4/gre 0xa9faec42 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xd24b6999 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0c30128f inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x34d3302d inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4c88396b inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x670a863f inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xca74007b inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf7601ac0 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x9d8779e8 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x00f65702 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x22b8c745 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3008bc94 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3ce59679 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x52f7f432 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x55719146 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x61c41d43 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x67e69bb3 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x765c9ada ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x76a91568 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9a98b04a ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa7331bca ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd165fcbc ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xddd0ed51 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xea0e9392 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x4bdd2345 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xbac1d87c 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 0xfb8b2052 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x20cf8b07 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x287dd52e nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x603b2af9 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x8edaee5b nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xdc4e91b9 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 0xbe0d905e 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 0x3106c96e nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9899789e nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xaa8d8442 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdfc4f867 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xec95d50c nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xcd696a97 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x20498905 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x27303a6e tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9af62981 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9ccc7f16 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xef4767bc tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x000aed67 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x10cb3794 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xdd6892dd setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe9ce474c udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x32df1608 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa3742809 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb4f575e5 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xeb306f83 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf0765854 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf0a96de5 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf52a1fe7 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x0306fe44 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x43dbf57d udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xc971e600 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x39c200df nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6751cef7 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 0xbb396e1e nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x159a57be nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x2f45eb03 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x38681e3c nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x3fb7aa47 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xf5c3d52f 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 0xdb9b99be nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x18ca6502 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x28319b8c nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb3c282f1 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd2469d37 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf4227d6c nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xe05b5aee nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x098d6d3e l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x24e69c9c l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x27f4ec7d l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x45ae9dbb l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x570a17f9 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6d067e2f l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7c4b4929 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa74d89e5 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa77d331b l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xad08f987 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd2cdc13 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd60ce06d l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd673972f l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe41f84e2 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe73a1ddc l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xebb1c593 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xd060795e l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x18d78b27 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x23a5df64 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4a33fd53 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4c2332f4 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6931d5d0 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x697cb7fa ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7e486df4 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x86d5389a ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8c3d5c8b ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x93785623 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaa83b071 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbfc2426f ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd22a64a4 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdc282fb0 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfa11ed3e ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4c76b4e9 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6e6d2acb mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x90d57752 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb048705f nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x03c3d99d ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0e3329f8 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0ef9e9fb ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1241efd4 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x469b1fc0 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x552f0093 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x70013f37 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 0x88b837c3 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x906ad535 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x927231c8 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x94173a86 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x95967a59 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 0xb10eb2ab ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe1ab2beb ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf16bf265 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfab9fca3 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x17488a25 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x24cd521f register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x2fc61d24 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd1f1306f ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0068fd37 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0224cb7c __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x061cbf95 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0646fc20 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06b6c3f1 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06c2f1b6 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06cbaf34 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ee603d5 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f923a07 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0fb4f070 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10d0f311 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1178649d nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17abbac0 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e852b52 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20560718 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d48e9c4 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fd36d2e nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30dc2813 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30f1583d nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33b9f582 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3470d55a nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3524caad nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37d000b0 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3cd06157 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 0x40d6deb2 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44614e81 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a09a402 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5551d4f8 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x555c302d nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59c45f68 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61760297 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61af38fb nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62744190 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 0x62ff5f51 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63deed7c nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63fbd2b8 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66ba6fa5 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 0x6c267f2e nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d1e9894 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x729ca746 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x732bdab2 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x737b7b2d nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8243c1e0 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c7b5da6 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e9479c3 __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 0x919cb4ca nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x951a9d81 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x960cb4f8 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96880aa5 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c6bef02 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d13b134 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa12d6496 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa178a72c nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab28ce3d nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xabdc8615 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac4bc7e3 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad9de3cf nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf71408c nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0fb34d9 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5a27ff3 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb87f71b6 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbad1d9da nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbff8b65f nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1a368da nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb1886dd nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5251263 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd856bd93 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9c2e8eb nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdeed6489 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1bca502 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2cb7357 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3efa6e3 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xecdb060b nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed6bb1b6 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee855a8c nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9345529 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf953974e nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfae31c6e nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x129b2e70 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x8a050fc8 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x662961c5 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0506e3aa nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2ebf0edc nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x31f3a6c6 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3cc4efbf set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x57b356ea nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x82e0ea88 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8deef5e8 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe66c0aac get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf549e1fc set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfce15443 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x49bbf0cd nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x54e9c9a1 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb8e9caf3 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xdee5768f nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xea05fba5 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x234ebf3a nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xc2e05bc7 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x60127fe8 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x721a1ef3 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7341cfb8 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x767f8380 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x865afc50 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcca5402a ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdffbe17a ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x343d3a6b nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x4d23fb9e nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x2ba78809 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x512a0289 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x5e5da4eb nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x90e2fc71 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 0x2ca6c90d nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x40c57a34 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x55719611 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa082bde5 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb1d265dd nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb32a8e3c nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc57b47a7 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd3bb9b51 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd3de814a nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x9eb722ea nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xaecc25cd 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 0x5ff76589 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 0xe830e2c3 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1a7df35f nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3ae682cd nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x45fb8787 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x48c35fb3 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x510e30b0 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x57a410e3 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x620243d2 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x77537552 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x779ae32b nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8a334392 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa5788bcd nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb30626c4 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb648c7d7 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbd8edb22 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd6c26f1f nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd81f86c3 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd93ce4ae nft_validate_register_store +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 0x3e2fab81 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa43023ad nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa98161f6 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb9d94aea nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe0c4b563 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf48136b0 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf7dcd526 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2bbb1202 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x30b94779 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x50fdda3b nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xd07755c6 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x46560041 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xc9a64b97 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe5d48cfe nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x1a4d911f nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x1b5e4809 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4161dfec nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x65e909f3 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb3665808 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xbe3a8ff5 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x10a4d0a1 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xc04a723e nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xdf0ab8a2 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1da5f8c4 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x8c3b0bfc 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 0x0717b853 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x108cd7d3 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1c1110da xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1f04a44c xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2d604aa9 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4c45b78a xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4cfab3c5 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5a1f2774 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x66861f6a xt_compat_target_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 0x7ddc6420 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8bad8337 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xab3391b2 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad7bb830 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb3cc81f9 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb86de8fd xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbc4b0711 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xce9a9c99 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe24a45ca xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xee3bc3ae xt_check_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 0x018aff5a nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x30fe405c nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x52aab12e nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x2321258c nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x982ce8f0 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xa8d498d2 nci_uart_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x46550e57 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x46d0dc60 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8f1a2aac ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9a5b4d3e ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa24b2def ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb17f90cc ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc4d3e72a __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd5a9668d ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf5252bff ovs_vport_free +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x06cd4f3a rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x120df2ac rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x189d7225 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x1b4f0147 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x253277f4 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x2b2fa7ff rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2ea0ec91 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x38c6b3b3 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x45110b22 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x45a926a3 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x561db712 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x57401a31 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x62c6eff3 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x66ef3406 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x71a318a6 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x786014b5 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x8a10475b rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x8fc7cfe0 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x9249405d rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xb171aa1c rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xeab76518 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xef2daef6 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xf989d7a4 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xfb068c12 rds_inc_init +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x0902c059 rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x86e2514f 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 0x6dab142f 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 0x9fbbba59 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 0xe2cd4f41 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0068f3d3 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x029dfed2 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03310b3a xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x054943fb svc_xprt_init +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 0x0713dc52 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09765202 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c20ae12 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d272c38 xprt_free +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 0x12ba3fc5 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12bac094 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x138764b3 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x140cb942 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17127105 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18375fc6 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19b91396 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19d45603 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cbef610 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e254565 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x209cd848 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20c6dc1b svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x248551fa rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x252856b2 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2572a900 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26940dad rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2992be14 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a0a9edf rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ccd23e6 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2de7049d rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e7e1a95 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30ef68ef rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31eccf47 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32715c66 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32dfef1b rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3497becf svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34f0f10b svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x358d7c0c rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35caf87e xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36235768 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37457ceb svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x386eb265 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3972d47c cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bbe8700 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c760890 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cede964 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e3cae6c rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ebdcc93 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x436f133b svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x441ca63b svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46121976 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x479fb419 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48dc8f12 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4954b96d auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ac210e8 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4adbad83 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fbf3cf3 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ff7f500 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50d1682a svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51c5dcbf rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x536a1925 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54a9ab00 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x573e36f7 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5745ccc5 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58b83afa cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5aa41c8d rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b6f09b8 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ddfbb70 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e9c02b2 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5efc0172 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63132661 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x637906be cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63eb5ec9 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63f3a4ad rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x648866d4 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65303014 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6605e6e1 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x672d7f95 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ac7ab81 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6baa7ac5 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e5bce67 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f0abf84 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71079c2d rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71ee2443 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x727be170 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x732aca72 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74a44937 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74b3a59a rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74e12f96 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x760ac699 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7999746f rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b20df76 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c7230e8 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dd439ed rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dde4484 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ed600ae rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f87858b xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x815e135e xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81939874 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82d10e2d xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82d8f331 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83f02fdc xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87b002f3 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87dbbdd4 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x894526d1 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a436881 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b57f87c svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d10551c gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92b00ab6 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9375ba9a rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x969da479 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96bd18d8 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9751b8a7 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99a2d4e8 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99edf714 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c06ef4c svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ff5a0a2 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0a50fb9 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0d3753a rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5d6d353 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7f4eacd svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa868dc47 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8782e97 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa2ebc63 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac634c81 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae8392c0 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafd96f9c xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb10069b0 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4499856 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7943fbd svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9e25832 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb0e2dd5 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc8bcc27 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0709368 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc127d0bd svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3b61b0d xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3cedcd6 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc513239a rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc70cc857 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8b5dda6 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc932a476 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca95fb57 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb21b53c xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd6837d8 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd9a2bdc rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf1f90d4 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfbffcf9 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd00a7991 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14cf582 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1eaa500 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1eb6b47 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2396d5e rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2559d5a rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6f35701 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd759b76e xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7796ee5 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7886288 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7bbbed1 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd82ef5b8 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd896c581 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9e90c45 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb52014b rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbfaf6b0 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0b0ded2 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0bc51f3 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0d283da cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe34d8e16 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3b1296b rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3fc23cb rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4edb04e xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5b84937 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7dd9feb svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe840bd6a svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecb86159 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecbdf459 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecc529be rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed124a65 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcc804a svc_auth_register +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 0xef4e7fbb rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef70976c sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefa4b64a rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf203ce30 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2903f20 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf294f3ee sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf39a9988 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4153d37 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf434e666 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf46cf1b4 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf49e3076 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7707e87 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf78f1182 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9b6bfc2 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbe34d08 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfedbfa7f rpc_wake_up_first +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x00bc9444 __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 0x28f40398 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2be4cdf7 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2c72340f vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x35f3a298 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7eade74b __vsock_create +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 0x9b46cabf vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa5e6467e vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc9ec1459 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdb091513 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe84a0fc9 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf860a326 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfe822477 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/wimax/wimax 0x00872806 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0cff49c2 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x23dc4ab2 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x271e9c74 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x47bc94ff wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x48a2c926 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5096396b wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x50c683d4 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x750a0c6c wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xaefd763c wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc38b03d2 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd0425d59 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xdf1e9112 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x084f8dde cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x27fee283 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x331a702d cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x36de2cd5 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3982f8fc cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa0b32e77 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa64e4639 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xad6ee665 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcf7a1f50 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdd4c632d cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xeb135429 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf119412d cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf991f714 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 0x46b6d120 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x78dc63a5 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x78edcae0 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x845b5765 ipcomp_input +EXPORT_SYMBOL_GPL sound/ac97_bus 0x54196172 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x522ed065 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x62821f47 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x57987b98 snd_ctl_get_preferred_subdevice +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 0xdadcdaa9 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xf8cd829a snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xfe90a094 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 0x2af21d6c snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x43c80890 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x49951793 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x69b8e276 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa763c9f4 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb943f13d snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd4d0eeee snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xebefb3a6 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfe8ed75c snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2385dc64 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x328e35d6 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x428efef9 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x474d6897 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x63ccd070 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x97dce515 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbf6b0ea6 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc0407240 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc5a32313 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdfbae641 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf4db8268 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x01996960 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0d37fabd amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x166ca040 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x16a7886f amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x46c60527 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7d39d43f amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd019fb42 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0335e7a3 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x060bbf48 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0850f81b snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0bfc832b snd_hdac_device_set_chip_name +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 0x205f8d4a snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x270a514d snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2875c326 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2876d018 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2db093ce snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2dee1a6d snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f7c52b2 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x313c8b2b snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x372ef030 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a86367b 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 0x4afc5d56 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c53818d snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4fcf15a7 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ab941a4 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b474f88 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e60b6b6 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e83679b snd_hdac_bus_stop_chip +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 0x6cd50e23 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d739615 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f4dd32a snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71ae3e4d snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7530e113 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x756462a2 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7655ff91 snd_hdac_stream_sync +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 0x824ff383 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x865892ce snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a6a1058 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b143fe5 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e4c6b39 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91de9297 snd_hdac_read_parm_uncached +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 0x9a1b7bb1 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9db30039 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9de4c37d snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa27e82ca snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2f50478 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa586af62 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaaadc12e snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab9e8d4c snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb38ebe3c snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4332299 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7436027 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbab3e4f6 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbce80394 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd381cbeb snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd461dd8d snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4bba330 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd493c41 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xddb9cecd snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xddf24cb9 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdee13a54 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1b840eb snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4c3b500 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe77907f1 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xecdda5cc _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xedbc8706 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5170406 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf63fbc07 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfce98932 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6ed8e828 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x75b97f61 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8360244c snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9ebeb52c snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xad2dfcb4 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe84aba22 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02471a5c azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03514828 snd_hda_pin_sense +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 0x082cd893 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x089517dd snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a282d8a snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0afeda62 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11316b70 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1294ed4c snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15af88c8 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bbc8419 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c318fc3 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f2d581b snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2120bf15 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23f588a4 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x241c1b7a snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x245745df snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25839713 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26c1f685 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28581366 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x285815f1 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b5ee961 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fc9bebf snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32cd3a75 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33f08502 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36b200ca snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x379357fc snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3894049d snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38b48063 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39fc9a12 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x420c2dd8 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x425b4eac snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43dccbc8 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x462cf038 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c023817 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d53b028 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dfbfd5a snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e93d62f snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f62e55b snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x535c9493 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53ac82d0 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53d77f16 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56d01870 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57ee0f39 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58d7c0dc azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58f0ff2b snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b3af867 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bc28d5b azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e519c2d snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x608eccb4 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61aa1bb1 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6275a7cd snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64efa067 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6622f773 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x664ac88c snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6689cfe0 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x703eb6bc is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70fce7e1 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x720c4b83 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74e49215 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x774a62e2 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a6161eb snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c2e20b8 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cbba5d8 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82c998f0 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8517279c snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c95b036 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d8ff107 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ee91f22 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x908bacda azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91db0b85 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x929e79dd snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x939a48c1 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x957ea177 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98c07f93 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e1e93e9 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f2e8cb5 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1f9c221 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2044ff3 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2944c26 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa297d8bd snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6e0c434 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa743dfa1 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf7dc2a5 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3d8d2ff snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb47853f0 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb497b32e snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb83e568a snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb857236d snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb99df853 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9c82b40 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba3ed418 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbae0becb snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc884805 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbda915bd snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf2aefbb snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0293859 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc477b4a7 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc703d589 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca2344ab snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb7d5443 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd320eab1 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd32bebe2 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd40302ef snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd911a7d9 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda85c669 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc233788 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc9aecfa snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xddb30f54 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe13761a2 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1b11aca snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe44e2497 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4984b55 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4bb33b0 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5cdb1a6 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe637ce98 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe66d7f1c azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7674034 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xecb57ab7 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefa1342d snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0826410 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2411d04 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2497bb6 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8d20ca4 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9d5b515 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0b071301 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x140e87aa snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x33fdbe5d snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x485ede58 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4a788d72 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4b739b81 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6206b65e snd_hda_gen_spec_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 0x90311419 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x940f1a42 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa7a0cbc8 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaea34ca4 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xba5feba6 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xba6ad052 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcb35fc00 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xce2c20dc snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd202b6bc snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe4cfc18c snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe94814d1 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeb4a2bcd snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xebc5ae5d snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfc677ede snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x077288f3 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 0xb10faa1c cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x392de251 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x41e028e8 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x18afbc73 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x4ca6f5c6 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x8c7e680a cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xd701c9e1 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xd8b7ff39 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1de0623d pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5d252a84 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd3c0c11b pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xec3dc1b5 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x6485752d sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x92d557d6 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9f9212f1 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd15852fa sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe2fa70a6 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x196fbd86 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x709fe25a ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x9cccd941 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x06c41d44 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x963f1137 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x34e547d0 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x070fd937 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x0fd60a53 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5f412a39 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x6ce10fbf wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xacd0154e wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x708bde8d wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x190a46bf fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x67c8e13d 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 0x00818837 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00d87002 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00f1db39 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x024bd765 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02f75480 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x055a00a3 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x080b5486 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x082bed85 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a38eb93 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x133090bf snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1340c3b1 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14726e66 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x166074d4 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1892a93b snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x199932dd snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bfc3c29 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c9fe908 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e2b98e4 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23e8e73d snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x243f1f27 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x244c4dd4 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24ff2c9d snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x277b0717 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b111514 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b46ff87 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c5fd8b4 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x308efa84 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x335cff94 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33c113a3 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x361a2327 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36274a0e snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37dec094 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x387e51b1 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38aab06e devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38f1be5b snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39256aa5 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f11c281 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43d478a3 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4458ed60 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47375e0f snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48ea83b8 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49bc4aa5 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a810266 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4eae6545 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f424adc snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5104ae0e snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52509a4c snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x526a7953 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5436e941 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57589733 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57acc646 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5905daee snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c08f62d snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c0e1c13 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6179292a snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x637e5368 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65c6a557 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x669213ab snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6776d9cb snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67dcacae snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x687ebabb snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69f7f450 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ae632cf snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b09e5a5 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b9e0c4d snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71def336 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x730e68a3 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73d30e51 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7496275a snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76c39d57 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7833c647 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a7b8b6d snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c88c35d snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cc0160c snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cdaa274 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7de337e7 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e0bea89 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80fc82ab snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x816e142f snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x834dcfde snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83872318 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83f4a64b snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x875797df snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88a67da6 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8955287c snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a6542ff snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a9505e5 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d2c0b1c snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90d17f09 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9565d647 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x961e43e6 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97210fb0 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c1b7727 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c6b984b snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d4f4734 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e74e805 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9eee572b snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f26b51f snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa063e9ff snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3f103d0 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5282be8 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa60ea3af snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa653a375 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaba424d6 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf14c693 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb21849be snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb22b3c4c snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4786e30 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4d0e4f9 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4e02b93 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd68185b snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbde0c008 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfebbc46 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc03a9913 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3757933 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3ed30d5 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4ba4ccb 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 0xca1bda6e snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcaa4233a snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb06d3f3 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0881319 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd131273d snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd450a8be snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7311660 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7ce8d40 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda9a9f1f snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbdb6097 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcbffdda snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd324c44 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd9f18bb snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf34b70b snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0b62e60 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe613e224 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec4e9533 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xece197e6 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedf9662c snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf26b27a8 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4686f77 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf939a956 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9be03dd snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb05000c snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb0925e6 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc27d5d7 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfcde2139 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdc93108 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfed907b2 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfef3668d snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffa7e6de snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1f67e3f6 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x47a7c6c5 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4e0cf68b line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x52f78eb8 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x54497433 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x64326c54 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8d90615b 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 0x91585095 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9b66367f line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9f8d1bff line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa5d113a9 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb8aa34b8 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc8ccf9d8 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc8ee6f40 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf8d2c4f7 line6_resume +EXPORT_SYMBOL_GPL vmlinux 0x003c8696 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x0040107e ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x004771e4 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x005bf432 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x008fe6da sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x009394ca bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x009672ef of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x00a7277b key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x00a8cc1a dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x00b29b1a virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x00d8f736 __srcu_notifier_call_chain +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 0x012bdb73 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x013fc615 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x0186097d security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x018d4101 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x01b806a3 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x01b9235d rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x01c0931d led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x01c80f36 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x01def903 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e92491 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x01fe4b1f dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x0215a4e6 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update +EXPORT_SYMBOL_GPL vmlinux 0x024bd84f balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x025651ee debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x02585ad6 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x02592187 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x028a5aee __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x02956ac6 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x02ad4f7a of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x02b5ee41 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x02b68827 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x02c5fa7d trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x02de6106 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x02e5c90e user_describe +EXPORT_SYMBOL_GPL vmlinux 0x02fc02c2 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x02ffc523 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x03414db1 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0368dcb5 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x0368f1eb irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x03714158 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x03750a8d __class_register +EXPORT_SYMBOL_GPL vmlinux 0x037742ea tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x037c2ca0 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x0380978e sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03be6746 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x03c7853a fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x03cf30c2 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x03e3624a adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03f65f65 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x041d7e37 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x043571bc regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x04468e30 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x0449f17d skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046d3f5a arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x0479ec67 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x04879802 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x049ce087 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04c4e513 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04dc69c4 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x057dd099 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05928a70 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x05970092 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x059c72b5 pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0x059ecea3 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x05f3a142 simple_attr_open +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 0x0656f5ea spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x06666ab4 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x0669be0a pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x0676b821 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x0685702e fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x0687635c xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x068e58d2 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x06bc9b9c gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x06e3ab54 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x06efa2c6 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x072cc67f balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x072f2285 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x074d703f tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x075b23e2 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x07796ba1 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x078a05ae gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x0791bc0d bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x07a30ae6 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07be8e63 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x07c1d423 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x07cc0d7d gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x07d0b56e devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x07de7de5 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x07e7fe13 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x07f1c3ad ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0837fb14 kvmppc_invalidate_hpte +EXPORT_SYMBOL_GPL vmlinux 0x0842aa74 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x084f4932 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x0854c61f tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x085623c7 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x0862efe7 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x0889e277 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x088fcb9c blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x0894af69 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x08b545a9 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08bc7e2d devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x08d2e7e2 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x08d91c22 mm_iommu_put +EXPORT_SYMBOL_GPL vmlinux 0x08e9afe8 trace_event_buffer_commit +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 0x097cc8b5 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x09bee6ee vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x09c02732 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x09ca04d8 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x09d128b2 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x0a0ec091 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x0a0edccf dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x0a19c88a pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a57900d flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x0a586855 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x0a6e65ed regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x0a6e8af5 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x0a821d98 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a922b8f regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0aa77fd7 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x0aef5bc4 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b228630 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x0b25a8a6 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x0b40d0de bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x0b424979 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0b65d2d7 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x0b798658 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x0bae2556 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0bc69d9c relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x0bde4589 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x0be8bf74 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bffaf4d blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c256675 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c5a1823 vfio_spapr_pci_eeh_open +EXPORT_SYMBOL_GPL vmlinux 0x0c61d019 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x0c8f2404 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x0c900498 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x0c9061e4 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x0c92456a ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x0c9d005c wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0caf29a1 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x0caf75d9 opal_flash_erase +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cd93378 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x0ce3ee5a mmu_kernel_ssize +EXPORT_SYMBOL_GPL vmlinux 0x0cf08e21 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x0cf42168 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x0cfd3745 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x0d0891ba tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0d1356ce of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0x0d31bdbd gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0d33465a blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x0d3c6290 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4ef4f4 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0d73a952 GregorianDay +EXPORT_SYMBOL_GPL vmlinux 0x0d78f822 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x0d79acf2 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0d7c11ee replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d80108d pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x0d8707aa gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x0d90a718 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0da026ff __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x0dba07fd cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x0dcd890a led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0ddfe50e init_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0e1bf910 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x0e35d632 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x0e5be6ad copro_handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x0e674e6c pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x0e8afa7f virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x0e906225 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0e92f177 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x0e9552a1 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x0ea3419d __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0eacc2a1 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0ef845eb usb_match_id +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 0x0f20d0e2 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x0f27bba6 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x0f2e1f5c regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f453a1a alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x0f5899c7 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f7b0195 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x0fe65e3f pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x0ffcbe5f ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x100288a3 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x101335ab dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10393d64 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x10acefd0 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x10ad7a16 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x10b3b2a3 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x10d662e7 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10fce4db device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x111a01d5 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x1160d845 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x117f3582 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x118897f4 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x11d33b01 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x11d7ea7b component_del +EXPORT_SYMBOL_GPL vmlinux 0x11e63106 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x11f47a68 ata_cable_40wire +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 0x12317d5d ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x12417eb8 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1256c75e crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x12618f89 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1269ebbf regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x128686a3 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x129e1ba4 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x12bf4d60 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x12fdceea devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x1315ef53 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x1318cee4 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1327e5f0 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x133886ab bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x134abafb usb_disable_xhci_ports +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 0x13725b7c usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x1389da84 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x139a76c8 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x139aef2d devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x13a81e7d swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13b393d6 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x13cab883 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13e33653 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x13f16c9e skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x13f3dc2d iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f4555c dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x14337112 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x14448d5d __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x144d507b crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x146ad443 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x147e1f0b irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x148a29a9 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x148af8ef wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x148cc383 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x14c6121f driver_register +EXPORT_SYMBOL_GPL vmlinux 0x14c70d7a pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x14e2b611 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x14e6c300 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x14eefd51 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x14ef73d6 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x14f34df8 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x14f5d8b0 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x14fd9b11 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x15038a91 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x15212df5 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x152787c4 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x153d6f16 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x15501aae device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x1574f941 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x1575d32e evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15958e42 syscon_node_to_regmap +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 0x1610be3c apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x164bcad5 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x164bd63e dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x165736a7 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x16586300 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x16823a01 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x16ca5089 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x16d122ed usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x16d6b646 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x16da460f kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x16e46d04 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x17383238 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x173904fb transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x17647a0d usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x17727a2b arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x1775bbbd vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x17b03836 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x17c388b1 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x17e18523 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x17f4ef1b unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x17fb54fc netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x18015993 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x1801ea48 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x1825db18 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x182b7765 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x182d4602 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x1848ec94 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x185c8e50 iommu_attach_group +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 0x189f874d powernv_get_random_long +EXPORT_SYMBOL_GPL vmlinux 0x18b0514b pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x18cb0d9d pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x18f56258 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x18fceb39 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x18fe06d3 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1933b8ac sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x193a1604 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x194e1e06 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x19765eab blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x1993c30c device_create +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19b5fff6 unregister_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0x19b6d666 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x19e135c2 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x19f05cdd crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a25ac76 of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x1a28918c sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a2ee309 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x1a303bec uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x1a30ed54 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x1a33f2d5 device_create_with_groups +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 0x1a779ba1 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x1a882581 agp_add_bridge +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 0x1ac5071c scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ae07dce max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x1b28ac5b crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x1b9664d1 __destroy_context +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1baca51e led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x1bcc5327 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x1bd716f1 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x1bef86a3 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x1bf6770a vfio_virqfd_disable +EXPORT_SYMBOL_GPL vmlinux 0x1bf7909a __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1c0dd61a class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x1c1215bd threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0x1c1401af ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x1c2ad10a srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x1c2cde19 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5d36db register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x1c783da4 fat_attach +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 0x1c926e06 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x1ca44887 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x1cc8c4c4 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x1ccb7dac skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x1ce38eed powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x1cf0a635 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x1d0851e6 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2f78c0 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x1d4231e8 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x1d4591c2 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d652735 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1d768aad devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d80f5b1 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x1d89bc56 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x1da3779c pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x1dbfb706 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x1dc823a6 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x1deedf98 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e0cd4a5 extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x1e55d831 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x1e5ad984 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e6074a7 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x1e699d37 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x1e6ac6ca blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e89e1f7 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e96e7e1 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x1e9db1b6 tty_port_tty_hangup +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 0x1ecaf87c trace_event_buffer_reserve +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 0x1f71cf5e serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x1f80bbbf platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f88774b usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x1f8ad5b2 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fbb0348 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x1fc1cef9 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x1fcc0649 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x1fe96ced pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x20620665 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x2071ea49 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x209856c5 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20e09189 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x20e369f1 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x20ebd094 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x20ec6bba of_css +EXPORT_SYMBOL_GPL vmlinux 0x2101aec2 of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x21062d57 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x2113be75 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x21158715 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask +EXPORT_SYMBOL_GPL vmlinux 0x215e708e pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x216b8396 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x2180b90a ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x21a142cf usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x21a6030c inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b19a7f ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d36521 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x21d7cc59 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x21e5a58c ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x21ea3e3d perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x22010fa8 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x2217604b nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x2224c3fb mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x22494513 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x228b0232 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22aa329e iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x22cad5ef of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0x22d204a7 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x22d5524d fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x22d99852 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x22f25937 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x23475b28 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x236cf282 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23c252ed subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x23d5af05 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x23d66a9b dma_buf_mmap +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 0x24179be1 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x24188ede device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x243912a9 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x243b6a3e ablkcipher_walk_phys +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 0x24bd4ccd ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x24c262b7 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x24cdb3b8 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x24d4f9a9 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x24da4d27 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x24e366d3 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24ed75b5 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x24f07465 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x2507d9ed get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x251dadd4 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x2554d01c regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x25579524 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x25741eea irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x25909f8f generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x25eefe9e virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x25f850bb __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2602718b netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x261ff2c1 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26667427 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x269b5303 scom_map_device +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 0x26ea25c1 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x26ed9229 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x26f4f3e5 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x26f6c829 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x2708786c tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x270caea3 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x272645f3 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x2732d713 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x27372d62 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x2750537d splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x275a0fbd regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x2773a46a ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2778a21b rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x277a647e pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x27947e4e gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x279c7549 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27c5d833 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fa8740 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x280b55ba nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x280c5c87 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x280d5412 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2825b571 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x2838a722 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x28506c19 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x2850d11a regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x28642c82 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x2871580d extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x287c2260 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x289ed91e tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x28af9363 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x28b0537e usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x28b4f3f8 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x28ff99a9 opal_prd_msg +EXPORT_SYMBOL_GPL vmlinux 0x2905d06a vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x2907a0c2 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x290a860f sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x291d8b0b __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x2934f9e1 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x293b6e02 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x2945f70f copro_flush_all_slbs +EXPORT_SYMBOL_GPL vmlinux 0x29723584 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x298936dc xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x2998321b extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x2998ba9c pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x29b024d1 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f86c3a nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x2a0bac01 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2a21f906 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x2a498b66 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x2a49fd03 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x2a4f36f1 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a67dd08 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x2a6f9ea2 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x2a74f248 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x2a85cd2c regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x2aa5a34a tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x2abafaf0 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x2afc83d8 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2afca879 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2b14bb0b debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x2b1f3ba2 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b4147ed kvmppc_hcall_impl_hv_realmode +EXPORT_SYMBOL_GPL vmlinux 0x2b4af141 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2b511962 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b5d7180 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2bab7752 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x2bb78d5c pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x2bced706 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x2bd0b665 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c14477c scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c95e855 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x2cd88f51 kvm_hv_vm_deactivated +EXPORT_SYMBOL_GPL vmlinux 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 0x2d22a872 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x2d2540f5 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x2d29d1d0 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x2d308a14 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2d33d950 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d452cda regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2da20bbe raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x2da7022e lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x2db724f0 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x2dcf91e3 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2dfa859d fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x2e0a4852 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x2e0e9fff ata_host_resume +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 0x2e35671d blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x2e610a11 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2e755949 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2e7f90cd rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x2e8f3886 xfrm_audit_state_add +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 0x2ede0607 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x2ee7764d of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f60a40b nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f8c74f2 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x2fd659ac devm_hwrng_unregister +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 0x300ad4d2 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x303fe0e5 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x30734bfd of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0x30c13ad4 ata_sff_error_handler +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 0x30e98349 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x30fb1098 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x3111264b each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312eb2ca dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x314cd5b1 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x316305cb device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x316e20af do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x317836b6 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x3195afd2 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x31a4e67f devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x31a5e54f spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x31b8f168 scsi_target_block +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 0x31ddb340 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x3204df8b usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x320b82fd bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x32361ed8 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x32492525 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x325920f5 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x32693f58 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x328443bf __rio_local_write_config_32 +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 0x32dc971c regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x32f00412 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x32f07940 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x3300e5bf devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x330a8376 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x3317b15a regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3331af20 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x33398de6 mmu_psize_defs +EXPORT_SYMBOL_GPL vmlinux 0x333afaea __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x3343e2f7 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x334745da pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x3358647c pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x335fe944 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x337c3386 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x339d6661 device_add +EXPORT_SYMBOL_GPL vmlinux 0x33ae5d55 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x33ddaf64 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x33e3c0c3 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x33fbcf50 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x33fd553b put_pid +EXPORT_SYMBOL_GPL vmlinux 0x34113700 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x3419e2fb fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x342238f0 mm_iommu_get +EXPORT_SYMBOL_GPL vmlinux 0x3475550f fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34942898 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x349b751d ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x34ae5f64 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x34af0adf opal_ipmi_send +EXPORT_SYMBOL_GPL vmlinux 0x34c4da62 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x34d0ed67 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x34eec871 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x34f69b2c rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x34f7c2d8 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x34f8fe71 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x35033f28 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x352187a7 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x3535ee10 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x354639fe pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x35481d63 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL vmlinux 0x35791b2b component_add +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35b73961 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35c77f4b seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x35d0fa38 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x35fb3884 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x3604aade ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x36069e6a crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x360a660d get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x360e9409 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x3641262e __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3661a707 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x367a2be1 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x367a8830 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x367b780f exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x36969449 srp_stop_rport_timers +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36acaacb __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36fcb11e rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x36fdc8cd rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x3708abe6 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x370fec32 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x371e32c3 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x3732bafe ping_err +EXPORT_SYMBOL_GPL vmlinux 0x37409477 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x37b1c15c usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x37b411fa regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x37b741e1 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x37e689b1 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x37ef4a9d __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x37f8ba10 eeh_pe_set_option +EXPORT_SYMBOL_GPL vmlinux 0x3830f63b fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x3837af69 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x384bdf83 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x38731b61 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3882a4d5 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x38a2bac6 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x38ab32e7 pnv_get_supported_cpuidle_states +EXPORT_SYMBOL_GPL vmlinux 0x38db6f48 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x38ea5d1a clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x38f34524 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x393979ba serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x3948261d unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x394ad08a unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x395c7134 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x395ef76b i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x397178b1 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x397b20ee __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x39878d00 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x39b25b04 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x39bc1937 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x39c91df0 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39cffee0 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x39d9de63 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x39e5582e debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39f1d61c tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x39f3641e rhashtable_init +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 0x3a71f4af sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x3a8ef320 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3ac6c5f2 part_round_stats +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 0x3ad68fb2 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3b09cdcc rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3b0d1b70 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x3b816f87 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x3b891cc5 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3b9d72c2 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x3c00c6db find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c01df48 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x3c1d7a8f pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x3c31ccf4 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x3c44eec0 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x3c4bc70a cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x3c51ea7c opal_leds_get_ind +EXPORT_SYMBOL_GPL vmlinux 0x3c62d5e5 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c7e3744 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c9ee538 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ca5bbdd regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x3ca79233 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x3cca0216 __sock_recv_timestamp +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 0x3ce82fda split_page +EXPORT_SYMBOL_GPL vmlinux 0x3cedb85f wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x3cf908dd crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3cfa2e6a ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x3d0a0067 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x3d1ad608 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x3d204442 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3d312050 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d444778 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x3d4750ef pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x3d58829b rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm +EXPORT_SYMBOL_GPL vmlinux 0x3d69c35c da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x3d6c94b4 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x3d86aa37 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3daa09da eeh_pe_reset +EXPORT_SYMBOL_GPL vmlinux 0x3dabdbba disk_part_iter_next +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 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e259239 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x3e4ef857 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e5f656d __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e70a4a8 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e7f31ed devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x3e92ad39 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x3eb0f1a9 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x3ed7ae85 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3efe1850 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x3f09b9ca i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x3f0f0163 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x3f3bc800 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x3f3d88cb crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3f46e16c devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x3f5eae93 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x3f9a4230 dev_attr_em_message_type +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 0x3fdbb649 remove_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe7f354 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x3fec6a4d pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x3fef7431 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x40179933 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x40220411 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x40369024 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x40495ab1 xfrm_audit_state_delete +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 0x40753d56 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x407b4ff7 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x4082b528 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40bf0122 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x4111ab65 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x411d9f67 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x412e350d pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x41449a5a bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x4154d9fa device_move +EXPORT_SYMBOL_GPL vmlinux 0x416741ad get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x41697a7e usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x418a8879 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x41915f75 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x41987f13 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x419efa20 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x41a2f2cb get_slice_psize +EXPORT_SYMBOL_GPL vmlinux 0x41c9da17 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41e3a385 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x41e706e8 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x42330f69 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x425ccf19 __spin_yield +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426431da nl_table +EXPORT_SYMBOL_GPL vmlinux 0x42655279 rtnl_register +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 0x42aff6dc phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x42b5804d wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x42d1f6ae usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x42d6d92f ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x42e6b2e9 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x4301c6e7 pcibios_unmap_io_space +EXPORT_SYMBOL_GPL vmlinux 0x4318bc99 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x432702e6 mm_iommu_mapped_inc +EXPORT_SYMBOL_GPL vmlinux 0x435d07ef ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x4361ebbb fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x43640bae ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x436a0cf3 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x437be762 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x438ab229 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x4390e904 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0x43a48f71 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43aded07 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x43c94f55 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43e0fec0 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x440bf070 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x440e69f9 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x443ef1da dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x44466723 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x444df03a devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x446991eb usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x4477d1ff of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x447f8006 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44a84a3b kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44d2c310 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x450d8244 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x451b32a8 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x451e3802 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x452f2e96 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x453708e5 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x45730c05 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x458eaa2f call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x45a5c4e1 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x45a6de70 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x45ade7c6 pcibios_remove_pci_devices +EXPORT_SYMBOL_GPL vmlinux 0x45ba43c6 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45d04ee5 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x463ce5d2 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x463e5616 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x4650a44d rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x465a620d debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x465be236 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x4663990c __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x46773863 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x46823c52 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x46871f32 __sock_recv_ts_and_drops +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 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x473bbea3 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x4754caa6 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47809ec7 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x4782203f irq_generic_chip_ops +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 0x47c73d1c of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x47ca5df3 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x47d5f877 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x47e0bd87 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x47e1c851 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x480330b0 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x48051aa3 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x480a16b1 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x480a81d1 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x48149cb3 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x483424b9 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4847d6e3 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x48797f7d mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x48aa8839 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x48b4d790 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x490768be crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x49340478 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x4968c986 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49b3a637 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x49c2b0d5 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ef032d usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x4a0040eb usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec +EXPORT_SYMBOL_GPL vmlinux 0x4a04a20d blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x4a1d4d32 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x4a277091 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4a4b363b of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a4d1ea6 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x4a58d4f8 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x4a69a2d4 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x4a8d4e65 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4a8f2da7 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4abe9ac7 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x4afd56ad ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x4b0a01a2 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x4b0a4b99 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x4b118289 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x4b15f8cc edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4b1aee58 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4b1f0ef2 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4bb6db44 user_read +EXPORT_SYMBOL_GPL vmlinux 0x4bc19f47 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x4bf36d2f dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x4c1c46b4 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x4c2c39a9 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x4c343939 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x4c4353d8 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x4c5052cf pm_generic_freeze_late +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 0x4ca1f672 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x4cab2d48 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x4cb1e006 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x4cc30dda queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x4ccde1fb kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x4cf939fe trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x4cfa3b04 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d5eca52 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x4d79dd85 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x4d94ccbb dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x4d9b381b of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4df83514 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e3f46b6 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x4e481154 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x4e5cf517 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e673f7e __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x4e6f8489 device_reset +EXPORT_SYMBOL_GPL vmlinux 0x4e76fc8f __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x4e780f27 blk_mq_register_disk +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 0x4eb17c15 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x4eb66623 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ec3ebfb rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x4ee1f437 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x4ee8581a ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f0233dd vfio_del_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f071b30 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x4f1c1164 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f68e787 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6a92dc relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x4f7889af ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x4fa313bd fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x4faa1c31 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x4fb0e5d5 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x4fb4feab of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff7a67d ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x4ffa9523 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x502e6f90 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x5032b1e0 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x503466a8 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x5038e86f sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x5039c4ab percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x505834c0 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x508691cc device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509c300c device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x50a383ad __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x50ad6e2d of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x50c806c4 iommu_del_device +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 0x5143c682 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x51477125 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x514d548e pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x518d65e1 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x51a0f18f ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51c771f5 vfio_add_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x51dbdc6f regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x51ebf126 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x5205e64d disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x521827fd trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x52499ab2 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x52587430 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x5279ef70 set_online_page_callback +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 0x52bf682d sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x52c9a987 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x52e3d750 i2c_unregister_device +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 0x534d7f88 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x53523fef blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x53980ac9 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x53a45612 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0x53c4ab1f of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0x53e4b458 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x53ecb4a7 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x53fe376c shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x5420aad3 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x54274eca pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x549ab058 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54e78fd9 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x54f4b39a nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5541f0ef crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x55679994 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5588879e kvmppc_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x5599ec62 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x55a35912 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x55aa78b3 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x55d43687 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x55e4db0b of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x55e7f1fb ipv6_stub +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 0x55f6efad skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x560aa1db opal_tpo_write +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 0x5638592f usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x5647335a __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x56527f76 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x566f87d4 iommu_add_device +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x568a4868 eeh_add_device_tree_late +EXPORT_SYMBOL_GPL vmlinux 0x56a491c6 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x56a7ebec init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x56a9e6ee posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x56b3315e serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x5723ffbc tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x5737d586 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x574346e9 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x5745f5aa debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x575b35b6 percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x57613f8c mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x576f21e2 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x577bf737 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x57812a4b ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579704ac sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x579d8be0 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57ce6690 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x57d15c17 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x57e352ae cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x57eccc85 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x57fa6e74 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x582a0e7b usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x582ac3d1 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x58549c7c crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x5865ca50 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x58674906 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x5885f6cd xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58dd7636 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x5955e903 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x5964503a gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x596f76bc led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x5974354a devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x597a2d97 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x597f8fb8 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x599a53a8 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x599e6cd2 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59c3cf75 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x59cee309 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a024ecd percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5a087dd5 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x5a30682f inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x5a3c203c thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a865bd5 eeh_pe_inject_err +EXPORT_SYMBOL_GPL vmlinux 0x5a8f1042 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x5aad95ea usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x5af7514e debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x5b00c220 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x5b23eeee ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x5b24abc3 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x5b612c9e da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x5b9516a6 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x5b965d6f devm_free_pages +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 0x5bedf3a8 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x5c130107 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x5c1c1521 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x5c26a313 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x5c27b7b8 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x5c295415 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5c2a771f usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5e19a1 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x5c6ded57 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x5c9ffb4a shake_page +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc07fe9 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5ccf24be of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x5cf20a81 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x5d048676 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d16a621 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x5d16ae37 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5d299c8b dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x5d2eed18 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x5d352115 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x5d38d571 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5d7b4b17 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x5d9a12db hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5de4ad8c tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x5e18a211 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e310f2b rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x5e42cc58 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e719aaf sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5eb4fda8 kvmppc_do_h_remove +EXPORT_SYMBOL_GPL vmlinux 0x5ecbad65 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x5ed8f161 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5ee7542e reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5eef4482 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x5f1a4bec tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f1f60a7 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f2d2784 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x5f5d210d relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x5f677a63 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x5f843368 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x5fb6d121 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5fc9c357 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x5fceca69 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x5ff74e65 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x601301d3 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x601b9ea0 pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0x6023cb20 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x603df4b6 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x60467b06 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x607acb41 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60a5b798 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x60aa64bc blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x60cca309 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x60d1acc4 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60e982f6 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60f6ef55 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x61356a8b mmput +EXPORT_SYMBOL_GPL vmlinux 0x61469e1d blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x6154c1bb of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x616d1bfb __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x618d359f gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61b9a5be pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x61baa083 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x61c2c04f device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x61c75eff __pci_hp_register +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 0x622f3104 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x62573197 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x62743dc5 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x627c9739 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x628e623c trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x62a86b69 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x62c4c901 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x62d51526 ata_sff_port_intr +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 0x630db4bc __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x6319df3b rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x63997633 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x63bf5bf1 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0x63c27a1d usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x63d400fa ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x63db58d0 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x63e7e80e tps6586x_writes +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 0x64362e14 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x64534465 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x648a83fc ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x649fc50b regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x64bb785c rdev_get_drvdata +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 0x64f5a843 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x64f71643 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x64ffbe5b add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x650438dc usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x6523e190 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x65762d7c usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x65942f6d sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x659dc817 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x65af8fc8 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x65b5c4e4 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65c7b8f7 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d5332a wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x65fcc8e7 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x66050325 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x661545b7 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x662aedc6 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x66465cb1 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x667dbcc1 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668b0e7c i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x669247e0 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x66b8d223 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x66c5747e ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66c6f0f5 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x66c8c488 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66ea1b4a dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x66f18b56 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x67322e99 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x673cc0e4 of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0x674b3b87 sysfs_remove_file_ns +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 0x6797418f screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x679bd598 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x67beeaf3 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x67f2015b serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x68229bbf vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0x68517f84 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x68766fd9 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x687914a8 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x688cbaff i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x68b595bc dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x68e67f2b blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x68f991d1 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x68fd1f50 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x68fef995 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x690c9557 led_sysfs_enable +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 0x69532e6f ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x696e045d ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x6971ac65 perf_event_read_value +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 0x69b748ab ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x69f532ef devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x69f93f7c gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a21826b tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x6a367b74 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x6a39f9c8 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a60537d scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x6a666fb0 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x6a69f1ae dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a758335 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x6a7b39fe unregister_virtio_driver +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 0x6ac04601 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x6acb8d84 ppc64_caches +EXPORT_SYMBOL_GPL vmlinux 0x6adb81e9 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x6af4b79c regulator_get_current_limit +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 0x6b39d91f to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x6b46ba24 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x6b5d826f sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x6b70ce7b of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b82d9df ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x6bc87c57 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x6bd3e05d rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x6bde476e regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x6bec81bb vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x6bf18177 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x6bfa82a2 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c11361d sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x6c3391b5 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c4314aa get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c776166 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x6c83c108 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c927212 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6c9ed9e6 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x6c9f1d4b devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca7e573 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cba628a phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x6cbd6ef2 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x6cc2fb2c opal_message_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cdd0a21 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x6ce3d0e7 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x6d2b3f2a sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d553030 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x6d6d2409 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6d76a869 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x6db74883 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x6dd2d88f pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x6dd66400 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x6ddb411b ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6deaf4fe usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x6defc285 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e05c94b nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e06c9a3 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x6e379526 kernstart_addr +EXPORT_SYMBOL_GPL vmlinux 0x6e473e57 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6eafcea4 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x6eb043bf spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x6edcceda simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x6f0dffbd led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f1ff57d power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x6f4c5fc3 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x6f66ce0a device_rename +EXPORT_SYMBOL_GPL vmlinux 0x6f78a5cc led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f973687 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x701d0ee0 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x7044a2a7 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0x70742b84 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x707b75f2 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x70b0e14e pci_cfg_access_unlock +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 0x7111da8d tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7177861d stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x717bb909 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x71b586ae gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x71c0c170 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71ea9bb9 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x71f81cf6 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x71fa386b sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x7224de14 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x7225873c __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x723a7a13 class_destroy +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 0x72aa16c2 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x72afe811 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x72b92943 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x72cf7440 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x72e7268d crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x730247b3 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x73180bf0 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x731b51a3 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x736c2e6f usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x736c7d73 pci_enable_rom +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 0x73c84391 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73f4b1e7 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x73fc0886 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743bc342 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7461c0e6 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74a14bcb device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74e3af40 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74f31d30 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x750281bc handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x750654d2 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7517ff71 pcibios_find_pci_bus +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +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 0x7536231c pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x75714cff regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x75881c30 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x7593afab ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x75ca7bc4 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75e21aa9 tpm_get_timeouts +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 0x764541b3 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x76474a68 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x765e102d kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x76719ae1 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x7673124a gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x768457d8 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x769ee44f md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x769f934b wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x769fb99e regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x76c01d04 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x76c7f6e7 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x76c8d2d1 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x76d31336 get_device +EXPORT_SYMBOL_GPL vmlinux 0x76ec08b7 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7720c44c restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x77214526 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772ae471 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x7747c1dd regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x77544e0f kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x776de853 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b455e3 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x77c4b587 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x77c91593 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x77c9f27e blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x77d942c8 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x77ea7e77 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x77f2b8f7 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x78113a99 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x7813e340 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x7850131f tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78b6d97a free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x78c29dee scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78cee142 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78faa460 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x7901c241 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x791b84f0 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x793e824d _gpiochip_irqchip_add +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 0x798ef506 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7994d052 kvm_release_hpt +EXPORT_SYMBOL_GPL vmlinux 0x7997e7b2 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x799b2e77 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x79a30b15 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x79ab5aed i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x79ce9cd1 kernfs_notify +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 0x7a0e7c57 flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x7a2c2f14 mm_iommu_find +EXPORT_SYMBOL_GPL vmlinux 0x7a2d938f usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a34d5ba blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x7a3937fb ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7a3be27d sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x7a68154e device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x7a9011aa tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7abab4e5 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x7ac2c883 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7acb95fc usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x7aea8da8 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x7aec2be0 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x7af733fb unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x7b09fc62 debugfs_create_x16 +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 0x7b61b065 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7b744c67 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x7b89d3ac crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x7be04528 usb_get_phy +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 0x7c3b8e94 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7c70ee23 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x7c818747 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x7c8b135a cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x7cb0d2dd cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7cb444c2 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ce6a2dc crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x7ce944e3 scsi_bus_type +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 0x7d1d0f87 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x7d244184 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x7d341ddb component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x7d450aff tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x7d498a06 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d65054d rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7da23517 ip_tunnel_get_stats64 +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 0x7ded6467 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e1e901f pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x7e213cb2 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x7e3b4ee4 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7e4a053b blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x7e59df2c __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e7e5021 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7ec36ad7 __i2c_board_lock +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 0x7f1999fb led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f20dd39 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f38d31b usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x7f3a6f3f __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7f484589 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x7f52c310 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7f5665d4 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x7f666300 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x7f6bc9b3 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f949368 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8029dc9a spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x804ea02d __find_linux_pte_or_hugepte +EXPORT_SYMBOL_GPL vmlinux 0x80653fa4 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x806741f8 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x807670bd trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80979469 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x80a5ff9b pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80d94f99 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f35430 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x80fc3aec usb_register_driver +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 0x812f231c ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x81348f6a ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x813e881b devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x814ae81e pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x815ffac5 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x816b56c8 kvmppc_add_revmap_chain +EXPORT_SYMBOL_GPL vmlinux 0x816fe631 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x818ae1a1 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x8195e494 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x81e7f0a9 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x822ce4f5 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x822f9c47 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x82394089 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x824093db crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x82461f09 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x82471379 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x824f36c9 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x82509a9f add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x82690039 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x826b939c irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x8287bea4 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x828a02cb dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x828cac17 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x831bc204 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x834d3ebc perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x8373832a perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83b50429 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x83c01ad5 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x83d0a5d9 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x83d60aa3 component_unbind_all +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 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x848cce04 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x84924d4d hwmon_device_unregister +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 0x84deb107 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x8504a1f3 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x852dd7b6 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x854425a5 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x854e0a79 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x855625d8 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x857b4b97 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x8586b3ce transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x85a21249 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x85bd40fc regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0x85bf4fd1 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85de091f dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x85f6e7b6 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x86169c05 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x86194eba pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x8649242d unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x86533c48 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x8670f12f device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868137fd regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x86861a5f inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868bbb09 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x86ac27d5 vfio_external_group_match_file +EXPORT_SYMBOL_GPL vmlinux 0x86e5696d ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x86edc379 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f45e84 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x86f9834a aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x87038be6 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x8742e916 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x8751cf9b uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x87787f77 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x878b15b1 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x87915274 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x87a2b642 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87a3f194 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x87a59b75 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x87b6e71a smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x87b87405 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x87dfec77 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x880e9599 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88328b1b edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x88683fca ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x888f8523 irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x88922b22 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x889c84f6 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x88a73e0c of_get_dma_window +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 0x88d368e9 cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x88ed9e80 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x88fe1c2e thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8913162d da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8916a507 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x894a21ce usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x8964d7b1 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x898686de anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x898e1288 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x898ea6eb tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89d5ac04 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x89ed7774 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x89fe769a gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x8a0c96a6 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x8a208d8d blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x8a2e35b2 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x8a2f6e79 device_remove_file_self +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 0x8a637be7 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x8a82a7b4 kvm_alloc_hpt +EXPORT_SYMBOL_GPL vmlinux 0x8a897ba3 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x8aa7abf7 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8ab03bc3 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac5c07a stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x8ad52cef ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8ae4da4e pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x8b004b92 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x8b1fa6b2 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x8b30fef7 dummy_con +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 0x8b844171 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x8b990227 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8bb89a15 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x8bc9182a devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x8bd99813 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c074c1a fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x8c1895bb shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x8c220a49 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x8c3270c5 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x8c5d39de power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x8c6182ba usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c6df6de regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7df4b1 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8c96541a xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x8ca80d60 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8ccfe805 page_cache_async_readahead +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 0x8ce71da5 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x8ce7a92e regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d7148ff sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x8d920bfb dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x8db4a631 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x8dd0adf6 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x8e12b782 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x8e22bc9e __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x8e28373c gpio_to_desc +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 0x8e33b181 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x8e54634b cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x8e5ba4a8 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x8e641e6a i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x8e90f712 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x8ea0ef97 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8eaf5d6a irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x8ec40538 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x8ed93e40 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x8ee20173 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x8eeb1769 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x8eefdc95 kernfs_path_from_node +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 0x8f1725ea cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x8f174f54 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x8f343772 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x8f59b003 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8f697f6f sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f94227d __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x8fa51fe4 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x8fb6fe8d usb_string +EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x8fdc781f ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x8febfcc0 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x90073c6f find_module +EXPORT_SYMBOL_GPL vmlinux 0x90180f04 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x90289d25 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9061b47d metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x9063c1db dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9097527b devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x909bbc43 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x9104ad12 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x911854fb inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x911dcbbd ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x9141e3bc extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x91671869 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x9181df2e srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9183d387 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91b588de pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x91c3a719 of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91eebc1b fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x92086404 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x92139562 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x92555774 reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x92610aac virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x9289f0e0 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x929631fd trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x929b41c0 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x92b42200 pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0x92d1fc8e ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92ec203b regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x92f686bd kvmppc_do_h_enter +EXPORT_SYMBOL_GPL vmlinux 0x9319bb38 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x931a12d9 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x932f9316 disk_map_sector_rcu +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 0x938ea4bb pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x9391f60f sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x9394d247 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x939642f3 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x93b0a8e6 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x93bcb132 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x93d5db9b get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x940d7afb regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x945db5aa dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94c80c6d crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x94d972b7 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x94dbbeb9 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x94eb7fa9 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x94ec44ca fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f98a84 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x9501d610 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95232eef iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x9533223d wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954b4c07 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956359bf realmode_pfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x9563c918 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x9585b6a9 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95978f2d devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x95ab6838 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c14470 eeh_pe_configure +EXPORT_SYMBOL_GPL vmlinux 0x95c578fd devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x95cf6140 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x95fefc3b mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9604cb50 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x960d6a08 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x9645cfe2 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL vmlinux 0x96b21d47 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x96beb7cb invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x96bfc793 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x96cb991b led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x96fd613f bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x9702e392 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x97039afd devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9709a358 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x97259eff da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x972c36c3 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x9735f061 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x97370c00 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x97524944 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x976b14e4 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x976e8b7b pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x9778a8a3 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x9780c464 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x97a01819 iommu_tce_clear_param_check +EXPORT_SYMBOL_GPL vmlinux 0x97aae83a pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x981a645e of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9836a739 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x986dbe54 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987d7d09 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x988c9af4 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x98904a09 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x98953748 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x98966364 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x989d83dc __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x98a02a70 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x98a632b1 __add_pages +EXPORT_SYMBOL_GPL vmlinux 0x98ad6b90 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x98b1aa17 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x98b2a50c n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x98c4806c of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x98e6ef66 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x98ec4ff9 gpiod_to_irq +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 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x99368d65 kvmppc_update_rmap_change +EXPORT_SYMBOL_GPL vmlinux 0x99397e9e inet_hash +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 0x9987e6e9 opal_get_sensor_data +EXPORT_SYMBOL_GPL vmlinux 0x998aa3db gpiod_direction_input +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 0x99b48ce1 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99b74887 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x99b893a2 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99d52779 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x99ff8d08 opal_invalid_call +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a1469b1 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x9a1cbe2b zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x9a2dd49e tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x9a2e59e2 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x9a43ece5 pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a57e9ce gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a909c93 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x9aab3c1c fat_fill_super +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 0x9adf08c3 mmu_linear_psize +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b336e78 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9b3a1f42 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9b4065d1 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0x9b498d6b pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x9b76fd2f phy_init +EXPORT_SYMBOL_GPL vmlinux 0x9b7c7798 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bb00565 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x9bc01da7 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9be02ab2 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x9be7ccc7 isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf8b5f9 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x9c0d6a2f devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x9c323e02 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x9c4656e0 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x9c808de6 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x9ca5425a rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x9cadde26 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x9cb0df4b trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc6fe5f pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x9cf34111 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x9cf88fcf __giveup_vsx +EXPORT_SYMBOL_GPL vmlinux 0x9d2f47f4 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x9d3ed2a7 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x9d7cc72f iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x9d954109 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x9d9bbefb vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dea7336 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x9deb1ccd __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x9df7e540 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x9e1d8858 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x9e1de7cc pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x9e2af1ad xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x9e3799cd rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x9e392ba6 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9e3a54a8 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x9e3c95f6 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e672420 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x9e693932 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x9e6946d6 __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x9e74db89 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x9e776d05 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x9e7bfa13 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x9e9a6976 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9e9abbe6 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x9ea29376 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x9ec2589f bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x9ec275c8 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x9ec3e1a3 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x9ecc13a7 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x9ece677f thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ede3214 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x9eec74d8 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9ef171d8 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x9ef5c639 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9eff82ad ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x9f28083c fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x9f390678 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x9f48ddba pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x9faaf913 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x9fc94666 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd592cf sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x9fd5970a xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fedcefb debugfs_create_bool +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 0xa04b6f6b of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xa071e996 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xa096b55b sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xa0987b54 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa09ab411 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0xa0c2d628 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa0efc712 ata_port_pbar_desc +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 0xa1245170 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xa13f54c2 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa150e8ab skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xa17e620c ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa19ba38d hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xa1cd6f63 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1f5af19 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa21057d6 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xa21a6053 blkdev_write_iter +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 0xa2951d41 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xa2a4e2e8 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2b174c5 scom_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2ca0cc3 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xa2d58100 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xa30139a3 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa3084168 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xa30d9142 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xa311985b tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xa3339668 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xa3496ae6 pci_ioremap_bar +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 0xa3b93b39 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bda46c blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0xa3c4aa43 handle_fasteoi_irq +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 0xa3feb415 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa40cf046 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xa41c03e3 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xa440376e rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xa452dcd7 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xa45cdc82 pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xa4754050 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xa47a8e0c iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa49ec893 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xa4ab6c26 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xa4c1caea fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xa4e89349 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xa4ed2a90 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa50f755b find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xa53d094b cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xa548cf48 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa557384f sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa5609dd4 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xa56cdcbc wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xa599a6d9 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5d821bd reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa5daad1d pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xa5de5067 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xa5f7ea20 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xa60fbf6c trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xa61207ff scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xa6250026 posix_timer_event +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 0xa6400fd7 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6474c5b cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa66893eb inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xa66be6fc pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xa6708f17 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0xa67e1306 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xa684a10d rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xa690f132 pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6c1433c serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xa6c7f2d6 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xa6c9ea73 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xa6cd8ffb usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xa6d838c6 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6eded6c opal_xscom_read +EXPORT_SYMBOL_GPL vmlinux 0xa6f56def regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xa6ff2940 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xa71ebe8c ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xa721bc3f opal_rtc_write +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 0xa786f8d0 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7cdfc6c platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xa7d6d790 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xa7e6ed33 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xa7fe2dd2 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xa7ff9913 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xa84ffb7c usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8545e0f trace_event_reg +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 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8bca37e usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xa8bd46c3 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xa8c53f6f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xa8d0dc42 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xa8d3cbfa extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa8d7f86c tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xa8e9fef0 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xa9058548 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xa91751ec arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9aa1b00 opal_poll_events +EXPORT_SYMBOL_GPL vmlinux 0xa9b55e8e ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xa9d4fd19 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa9e05db8 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9f0d280 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xa9f154f9 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xaa07e6ed platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xaa189b1e ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xaa268f18 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xaa4c2248 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xaa5336ab pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xaa75d3fd sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xaa7cabac skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xaa82ee0b tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xaa96a7d5 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab84379 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xaaccdd5f mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xaad30f04 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xaad8cdcf gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xaaf1ba0f gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xab0f207d nvdimm_volatile_region_create +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 0xab64ac94 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab8593eb eeh_add_sysfs_files +EXPORT_SYMBOL_GPL vmlinux 0xab960a95 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xaba7349e rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd3d40c list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xabd4848b ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xabfbcd24 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xac0624b4 vfio_spapr_iommu_eeh_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xac0744ad ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xac28d607 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xac3678fd platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xac51f620 copro_calculate_slb +EXPORT_SYMBOL_GPL vmlinux 0xac5a46b7 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xac76f780 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xac9821a2 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xacdba253 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xace972bf tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features +EXPORT_SYMBOL_GPL vmlinux 0xad1ccaf2 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xad3af6c3 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xad4d4fd1 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0xad60d75f bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xad6ec963 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xad70e8ff dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xad8d2717 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xad8d6211 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xadac45f2 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xadc0b75f ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xade8af31 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xaded9da1 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xadfcae3e inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xae140284 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xae34064b inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xae3f7586 put_device +EXPORT_SYMBOL_GPL vmlinux 0xae41cc04 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0xae452e27 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xae45c52e usb_disable_ltm +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 0xae82f1b8 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xae87f8c6 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0xae990283 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xae9f4875 hash_page_mm +EXPORT_SYMBOL_GPL vmlinux 0xaec9921f hash_page +EXPORT_SYMBOL_GPL vmlinux 0xaf272dec subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xaf279112 opal_leds_set_ind +EXPORT_SYMBOL_GPL vmlinux 0xaf2bc25c fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xaf2bcdb8 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xaf48adb2 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xaf6e443a usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xaf75d489 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xaf784850 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0xaf80fa33 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xafade5a2 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present +EXPORT_SYMBOL_GPL vmlinux 0xafc867ac usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xafda3c95 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xb01492e5 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xb01c299c of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb04c95ad rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xb052116c input_class +EXPORT_SYMBOL_GPL vmlinux 0xb07100ec ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xb07f129b sysfs_remove_device_from_node +EXPORT_SYMBOL_GPL vmlinux 0xb080a870 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xb09c2358 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb1011576 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xb10be819 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xb11734a4 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xb12bd9f0 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb1372869 preempt_notifier_register +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 0xb14be374 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xb1505b2a kvmppc_h_get_tce +EXPORT_SYMBOL_GPL vmlinux 0xb1563042 cpu_device_create +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 0xb1bb1208 platform_unregister_drivers +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 0xb1e6dbeb fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xb1ed54ea devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xb1eebb43 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0xb1fc64a2 cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22f82c4 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb2314b8e sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xb24be18d inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xb261772c usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xb268a877 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26c23e1 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xb299819e sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xb2a6614a platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2ebf7ec serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xb2f48bdc ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb2fec237 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xb2ff38f8 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xb3087fad irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xb3215a97 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xb32438fa __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb35dd913 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xb3618c47 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xb366dc62 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xb3aab991 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3c1d119 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xb4055966 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb40bcacd usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xb410e258 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xb42677d7 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xb43b48a0 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xb43d06d3 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xb446ccc3 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb44eb4ae tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xb4793e92 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb489e037 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xb491c6bb crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xb495aced of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xb4b2a138 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xb4b3ea98 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c62d30 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xb4dde73a pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb5163585 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb522750f mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb5483020 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xb54dfd15 eeh_iommu_group_to_pe +EXPORT_SYMBOL_GPL vmlinux 0xb577561a gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb583efeb fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xb5866838 rtc_irq_set_freq +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 0xb5c3c493 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xb5cea0ad unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5f9fb1a iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xb6020f83 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xb60ad49a of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb60edb7d of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6261ab3 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xb6391221 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xb643c250 xics_wake_cpu +EXPORT_SYMBOL_GPL vmlinux 0xb648c2f8 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xb66faf98 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb67d206f eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xb6980724 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6bb736a skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xb6cd1281 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb70ac258 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xb70e71e7 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xb712f52a of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xb71510fe powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xb7330344 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xb74b25d9 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xb7519eb8 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0xb76f90ea devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xb7ae7809 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xb7de1496 vfio_spapr_pci_eeh_release +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 0xb8013493 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xb81d81f3 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0xb85752ae usb_hcd_platform_shutdown +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 0xb8b6e4e0 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb8c0e7d4 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb8c7db54 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8e314fe kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb9153540 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xb919071e of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xb929d87d pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb937b2df scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xb93e076a page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb94b1e70 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xb94c7699 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xb9957b17 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xb9a7f417 blkcipher_walk_virt +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 0xb9d650f0 user_update +EXPORT_SYMBOL_GPL vmlinux 0xb9edb028 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan +EXPORT_SYMBOL_GPL vmlinux 0xba223c1f sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba543aee usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xba6fb030 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xba78e6eb devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xba915b87 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbabd74a0 vfs_removexattr +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 0xbb267ed5 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xbb4c501c __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xbb530883 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xbb5ece59 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xbb6930da raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb8758c9 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xbb941f74 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xbb9cbbed extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xbbc3fda5 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xbbc5213b irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xbbcdf4be virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xbbf210b4 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xbc12dbc4 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc1512c4 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xbc525615 pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0xbc53746e regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xbc5b92fb fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbc5cb75a ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc78fbcc scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xbc8d5d83 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xbc935ec9 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb3a19e ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xbcb6e914 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xbcc2ae9c cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xbcc6350c platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdb6241 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xbcdbc132 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbd3dfac1 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd530156 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbd8f2888 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xbd9407b1 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xbda93ebd usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xbdb2f967 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xbdcf3c43 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd29b91 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdda49c7 device_register +EXPORT_SYMBOL_GPL vmlinux 0xbde4bdd0 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbe0a2a56 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe333800 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xbe37cc94 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xbe471cdf opal_rtc_read +EXPORT_SYMBOL_GPL vmlinux 0xbe5a271a tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xbe6021b8 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe7cd755 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xbe89c9fa nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbebe6e95 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xbec2bc9e devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xbec8d1c8 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0xbed4cff8 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbede86d2 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbefdeb0f get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf3a2f10 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xbf420323 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xbf450f1a __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbf9f6f68 __regmap_init_spi +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 0xbfce2925 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe6d470 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbffa82bc param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xbffc1723 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc0115eec blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc04a9f92 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc07da631 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0860e9f led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc08ce677 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xc091ef3f __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xc0a7791a tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xc0a94095 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b802ee pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0ebff69 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f76dcb ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xc1212a32 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xc1213e0e init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xc1246182 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xc13de2bc lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xc168c9b2 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17b1170 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xc193b8c5 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc1b68f93 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc1bf6b9c sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xc1d1ea45 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc1d24587 srp_rport_del +EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL vmlinux 0xc1e09412 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xc2087284 arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0xc220f060 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xc229e0ad max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22de1c2 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xc246b736 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xc246c9c8 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xc250d649 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0xc2577452 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xc275eb8e devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2a3fada regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc2bac1f7 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc2ec7482 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xc2fd93d0 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xc30a8104 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xc3377db1 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xc337c0b7 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc3655d4c usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc383acf5 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xc387c40c tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc388f54b ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3ae6039 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xc3b40df9 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xc3c80c2f key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xc3d4430f gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xc3dfdaf4 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xc3f8f7ec device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0xc405aa2b regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0xc416085d crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc418fa4b device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xc42344b3 debugfs_create_x32 +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 0xc45b497a devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc45ef4b6 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL vmlinux 0xc495602f power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xc4972473 md_run +EXPORT_SYMBOL_GPL vmlinux 0xc49aaccf usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xc4a16a61 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xc4aed6e0 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xc4b8b5d8 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xc4c7d73a gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xc4c97a4d blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc52944ef ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xc53432ba ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc5542fdf serial8250_do_shutdown +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 0xc58e3259 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xc590dbc0 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xc5970b4d pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5aef774 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xc5ddd838 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xc5ed4b8e get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc6144460 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc61c89f6 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xc623a88b transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 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 0xc68aa252 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc69a53f6 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6c281b1 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xc6c69a8f opal_flash_write +EXPORT_SYMBOL_GPL vmlinux 0xc6cd350a fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xc6d8ba86 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xc6e3ab30 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xc6e7c226 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xc70cda7a register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc7204148 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xc727119f vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc74e6620 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xc778752f register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7cf9d03 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xc7dc8767 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7e971dc __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xc7f2a351 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xc836fe2d usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xc83ad54d xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xc83bf288 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc841de08 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xc84824d9 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0xc84b18e9 of_node_to_nid +EXPORT_SYMBOL_GPL vmlinux 0xc875417a tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc89542e2 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc89e0ce5 kvmppc_h_put_tce +EXPORT_SYMBOL_GPL vmlinux 0xc8a0a4cf regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8ae3a46 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xc8d2a50e blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xc8d63cab bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8ed4d43 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc91b7fb9 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xc9207145 napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0xc932d74b usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xc94a2f17 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc96649e6 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc971650a blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc99ef924 srp_release_transport +EXPORT_SYMBOL_GPL vmlinux 0xc9a7e085 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xc9a9909e regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc9b8fc5a ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xc9e959e6 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca0c6991 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xca2dc173 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xca2f6ee1 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xca3d60d4 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xca6ccb6b dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcad51c04 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xcadd017f regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb198bcc of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0xcb29e96f fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xcb3922b8 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xcb423855 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb528044 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xcb7fe5c5 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xcb8c090c preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcbb9685e usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xcbcf30a3 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xcbde2160 netdev_rx_handler_register +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 0xcbf04874 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcbf0c76f unregister_ftrace_function +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 0xcc3b60d0 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xcc59e364 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xcc7a49a8 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xcd118141 device_del +EXPORT_SYMBOL_GPL vmlinux 0xcd2935b7 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xcd546136 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xcd59fc30 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xcd799841 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcd85fcfd debugfs_create_regset32 +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 0xcd9e142a of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xcda2ff1e scsi_autopm_get_device +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 0xce0fd120 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xce366fa5 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0xce394103 iommu_tce_put_param_check +EXPORT_SYMBOL_GPL vmlinux 0xce627121 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce79c69f iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xce7a58e5 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xce96bf03 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xce9b949c ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xcec41163 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xcec9045e xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xced77d90 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcef2ffb8 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xcefd57d0 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xcf07c72d thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xcf27f92e trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xcf43b5c9 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xcf4920b1 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xcf53b023 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf5af82e crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xcfb21701 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfd54c4e unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xcfda5da7 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xd01afd3f opal_tpo_read +EXPORT_SYMBOL_GPL vmlinux 0xd03c35fd crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0442351 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xd0498ace pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd080e7eb tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xd0952027 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d33b40 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xd11a209f usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xd126c010 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd14e7a16 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd15538ec raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xd156420e perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd16e7ec9 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd18edd02 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xd196cd88 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd19cc2a1 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xd1c01ebd pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xd1dd03b2 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd1df247d ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xd1f02c4f regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd212b456 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd222ff04 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xd22b722c pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xd24e4062 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd264242d crypto_enqueue_request +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 0xd2b793de crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd2f9728e ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd2ff8494 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0xd30f8064 flush_vsx_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xd340e30a bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xd346af1c md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd35ed018 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd38cbd15 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0xd39bc737 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd3a15a96 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xd3af637e iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3c6d3ad napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xd3e441bc of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0xd3f29ea7 device_get_phy_mode +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 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd444606d tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd47c54de nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xd48a9f17 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xd4a3679a regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xd4aee1d6 xattr_getsecurity +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 0xd4db24ed fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xd4f75d67 srp_remove_host +EXPORT_SYMBOL_GPL vmlinux 0xd4fb7a2b wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xd5254925 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd546cde0 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xd5596d48 opal_xscom_write +EXPORT_SYMBOL_GPL vmlinux 0xd55ace98 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd5a3c065 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xd5baa142 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0xd5bc87fc sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd60b932c generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd61e7c6e gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xd62ae158 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xd66ca364 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd677ec6c crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xd67cfb8d module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xd67f93be ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xd6824d3a ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xd685a624 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token +EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message +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 0xd718de2d dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd722d08d usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd7350c61 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xd737b530 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xd73d2287 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xd75510c0 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xd75e3201 fuse_put_request +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 0xd782128c class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xd79c39d3 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd7afcb1a sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xd7cd77c7 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xd7d36831 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7e06ac5 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd7e4449e srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xd7fc3167 securityfs_remove +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 0xd82bc87d sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0xd82e08c1 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xd84bf835 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xd8707c48 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xd8707e0d tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87a22a4 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8a43d26 of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0xd8b25167 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0xd8bddb42 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xd8eb5824 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xd8eedf88 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xd8f18959 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xd90c986e ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xd92ef587 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xd9300d93 devres_find +EXPORT_SYMBOL_GPL vmlinux 0xd9319a70 gpiod_get_optional +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 0xd96d8146 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xd977893c of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xd97878a7 mm_iommu_preregistered +EXPORT_SYMBOL_GPL vmlinux 0xd9852edd cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xd9861b10 ref_module +EXPORT_SYMBOL_GPL vmlinux 0xd9aafca7 of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda5c01c7 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xda7511da rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xda9b8f3c irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf3a31d __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf9af8e list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xdb019b0a mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xdb0c975b ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdb22aecc tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xdb2b7760 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xdb32b015 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xdb37fffc bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xdb3cd8ec mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xdb40c318 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xdb432872 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb44a272 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xdb60262d ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xdb784a8c usb_autopm_put_interface_async +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 0xdba32335 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xdbbb627f phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xdbbf0761 sdio_register_driver +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 0xdc03272b vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xdc25e45c usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xdc559768 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xdc5d6f9e ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc859e77 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca51fce wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xdce36286 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xdce4c674 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdcec9bcd i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xdcfcab69 early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xdcfcc85f rtc_alarm_irq_enable +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 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd327458 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdd376a09 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3e0aff ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xdd46d2b1 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xdd4bac13 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xdd513b24 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xdd56a170 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xdd756360 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0xdd76b8ed xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xdd8d1f49 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xdda0292f pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xddaa2354 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xddb35aa9 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddebb766 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xddf0d913 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0xde0ad5b4 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xde2cfb06 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xde307fc3 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xde49a0e2 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xde66190d tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xde7a8990 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xde9557f5 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdeb2c236 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xded96ca2 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xded9db49 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0xdee68ac8 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xdefb0af6 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xdf0c3252 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf157114 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xdf2c676b pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xdf391f5b pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xdf59acfd irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xdf848cd0 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xdf9337fd kvmppc_clear_ref_hpte +EXPORT_SYMBOL_GPL vmlinux 0xdf9b0290 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xdfcdf5d2 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe01e54ac tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0334783 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xe05d8e4f register_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0xe06991ec gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xe06ec761 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe07eb565 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe09ca6d7 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xe09e3183 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xe0bdfd54 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xe0c5c2c3 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xe0d50903 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xe0fa6e5e of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0xe115c03d vfio_group_get_external_user +EXPORT_SYMBOL_GPL vmlinux 0xe11e540f ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xe13d2468 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xe14c9a28 pcibios_claim_one_bus +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 0xe1af55b5 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe20eaa0a tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xe238dd36 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe26636d6 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0xe2676b82 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xe285b42c rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe2926878 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xe29689aa ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xe2a6a1db phy_create +EXPORT_SYMBOL_GPL vmlinux 0xe2c9c189 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xe2d90b87 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xe2d9e5dc proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xe2fd72a8 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe313ce83 dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xe34fd2f4 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0xe3679566 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xe381fcd6 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xe39466f6 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xe3998036 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xe3c08781 eeh_dev_open +EXPORT_SYMBOL_GPL vmlinux 0xe3c43c2e inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xe3cf8995 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xe3d02e3e register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe3d7750e btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xe3f4ffb1 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xe41620f2 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4432955 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xe445344c debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xe4658a49 eeh_dev_check_failure +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe48495c9 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4aea395 spi_finalize_current_transfer +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 0xe4e07e49 __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xe50c82b8 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xe51c040f register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe534ae58 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xe542ce78 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xe5540302 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe571d680 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5cc1573 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe5d7f3e1 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xe5e4abbf arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xe6154b52 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xe618e6f4 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xe61f64c6 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xe64451a6 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xe64583bf driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe660aed6 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe6664c31 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xe68adc8c nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xe69b9c27 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xe6a389b1 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6dcdf97 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xe6e0e478 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6e78725 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6f5b729 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xe7190260 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xe71c2530 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xe7363b91 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xe7450e78 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xe746c34d ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe74e9ad9 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xe756e413 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76ebaf7 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe7730fe5 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xe77ca8d4 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe78a7ee2 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xe7a232e0 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xe7b555dd eeh_pe_get_state +EXPORT_SYMBOL_GPL vmlinux 0xe7d60b41 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +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 0xe830e51a extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xe841bc36 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xe84d7503 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe8597800 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe861dcf0 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe869396b usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xe8704260 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xe87478b0 __netlink_alloc_skb +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 0xe8b263d0 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xe8d3a2de iommu_take_ownership +EXPORT_SYMBOL_GPL vmlinux 0xe8e62f3c relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xe9080c42 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction +EXPORT_SYMBOL_GPL vmlinux 0xe9507686 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xe96dd56a fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xe9720b9b pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9dcb02e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xea02a880 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea229a6d usb_autopm_put_interface_no_suspend +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 0xea775518 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xea87c467 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xea882225 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea9bb695 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xead6b108 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xeaff6623 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xeb01e1f7 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xeb0563e4 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xeb0c3d5a blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xeb1461e1 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xeb14afe2 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xeb23ac73 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xeb34f353 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0xeb5f6047 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xeb82e779 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xebb4db1f ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xebbe71b8 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xebd25afc cxl_update_properties +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebffa337 skb_gso_transport_seglen +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 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec70f147 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xec864236 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xecd37769 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0xecf74048 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xed043339 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xed2287d0 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xed2390e3 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xed2f4d1d tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xed52720b regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xed78b9d1 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xed7caf7e ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xed80bd87 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xed9477b2 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xedc5d35a dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xede5b6df perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xedec1167 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xee09f249 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xee0d35e6 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xee34f80a of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0xee601449 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee7639d7 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL vmlinux 0xee89812f of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0xee986461 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xee98e418 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0xeebeda5f srp_rport_add +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 0xeeee2669 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xeef0cfb6 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xef2764b0 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xef30de82 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xef62c900 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0xef64f1ac bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xef6be0a3 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef846cb0 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xef8b54d7 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefaae8da srp_attach_transport +EXPORT_SYMBOL_GPL vmlinux 0xefe99a48 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xf00886fc sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xf017744a pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xf020a694 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xf0210bb2 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xf0293451 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf03d4047 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xf0478116 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xf05a6b2c sysfs_add_device_to_node +EXPORT_SYMBOL_GPL vmlinux 0xf05db61a rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf075c2f6 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xf0794131 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf08f21a9 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf0a6720f cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0cfa08e extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0xf0da3932 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xf0ec5b5a gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xf0f0de56 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf0f9e0b9 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xf0fa6721 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf1006a4a console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xf15ebf39 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xf1736a06 serial8250_rx_chars +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 0xf1dba1fd pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xf1ed43b4 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf1f37149 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xf1fde4dd hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf20f5f89 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xf2114c9e crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2385879 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xf2556d48 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf28d8ffd pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xf2a7cbd9 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf2ac9ab4 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2d61524 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf302089e ata_do_set_mode +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 0xf31706d9 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xf31833a6 __fsnotify_inode_delete +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 0xf344c7d3 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xf36a3aac usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf37e27df crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38d0b50 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xf399cf7e ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xf39d1efc pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3c92b7a shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xf3ecaae9 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3f51b59 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xf4022889 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xf422f7c2 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf43d63f3 get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0xf4690be1 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xf47fdf55 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4ab6547 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf4b11a84 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xf4b41000 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xf4c6a0b0 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf509306c perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xf50ce00a of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf51ec0de wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xf5266f20 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xf532f675 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf54bd320 scom_controller +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf57703e1 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5a926f4 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xf5c330cc device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xf5cafd7a register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xf5e86e1a devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xf5e92c85 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xf5fda7b9 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf652a07e crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xf6631d2d pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xf67230c2 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xf67aae52 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xf681647f eeh_add_device_tree_early +EXPORT_SYMBOL_GPL vmlinux 0xf685b43a dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf6a2d95b led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xf6c3037a irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6ca9e87 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xf6d4eec1 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xf6e4ee43 md_stop_writes +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 0xf7242b14 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0xf7384bd8 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xf73c6bbc inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf76a5d3c usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xf76b8d09 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xf780c3ff __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7fcb15f get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xf80a503f platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf80dfab4 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf82f9125 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xf8320d4f device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xf837e0eb unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf8662cea mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf87663f0 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88a4743 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +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 0xf8c3f659 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xf8d95cdc put_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0xf8e398fc memstart_addr +EXPORT_SYMBOL_GPL vmlinux 0xf8f1005c pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f94a0f blk_execute_rq_nowait +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 0xf94c7c68 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf95cd3bc locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xf95f8216 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xf9833a6f irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf98e1fa1 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a36f5b cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xf9b140ad devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xf9c4c6b4 crypto_register_shashes +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 0xfa18ec91 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa284a90 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xfa3955af ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xfa3e25a8 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xfa493a14 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa4cfbf3 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfa6c686f device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xfa8843f8 rtc_irq_register +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 0xfae7ed04 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xfaeed655 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfafc4056 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfb0d59fd pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xfb18656c flush_fp_to_thread +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 0xfb3b5d4e do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xfb44a7a1 opal_ipmi_recv +EXPORT_SYMBOL_GPL vmlinux 0xfb4744c1 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xfb60ccd3 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb89120c default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xfb9f4bcf ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xfbb9d8f9 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc4bdca usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xfbd3a24d opal_message_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xfbf28768 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xfbf98c19 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xfc00268f dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc2433f3 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xfc3da944 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xfc4e13e7 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xfc889384 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xfcae11be task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xfcb9366b od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xfcc1eba8 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfcd1b4d2 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xfcde153c wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfce23c76 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xfd188427 pcibios_add_pci_devices +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 0xfd4189cc usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xfd426f87 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xfd68c286 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd94b55c blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xfd94fd64 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xfddd285f mm_iommu_ua_to_hpa +EXPORT_SYMBOL_GPL vmlinux 0xfdf9f54a mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0xfdffecda skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xfe1a8a6f iommu_release_ownership +EXPORT_SYMBOL_GPL vmlinux 0xfe4c5cfb usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xfe67dbe7 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeabb07f netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfeddf317 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xfee13c6e tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff107435 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xff1134ba of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xff1a9993 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xff2fc1b8 rio_mport_write_config_8 +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 0xff86c1fb rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xffb348cc __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xffb4fdab tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/ppc64el/generic.compiler +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/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-4.4.0.orig/debian.master/abi/4.4.0-97.120/ppc64el/generic.modules +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/ppc64el/generic.modules @@ -0,0 +1,4256 @@ +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_mid +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ac97_bus +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1723 +adv_pci1724 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +ahci +ahci_ceva +ahci_platform +ahci_qoriq +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-ircc +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am53c974 +amc6821 +amd +amd5536udc +amd8111e +amdgpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams369fg06 +analog +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7038_wdt +bcm7xxx +bcm87xx +bcma +bcma-hcd +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmg160_core +bmg160_i2c +bmg160_spi +bmp085 +bmp085-i2c +bmp085-spi +bmp280 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_en_bpo +bonding +bpa10x +bpck +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bsr +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chipreg +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmm +cmtp +cnic +cobalt +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_test +comedi_usb +comm +configfs +contec_pci_dio +cordic +core +cp210x +cpc925_edac +cpia2 +cpsw_ale +cpu-notifier-error-inject +cramfs +crc-ccitt +crc-itu-t +crc32 +crc7 +crc8 +cryptd +crypto_user +cryptoloop +cs5345 +cs53l32a +csiostor +ctr +cts +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxl +cxlflash +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +denali +denali_pci +des_generic +dgap +dgnc +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-mq +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-verity +dm-zero +dm1105 +dm9601 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dp83848 +dp83867 +drbd +drbg +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc3 +dwc3-pci +dwc_eth_qos +dwmac-generic +dwmac-ipq806x +dwmac-lpc18xx +dwmac-meson +dwmac-rk +dwmac-socfpga +dwmac-sti +dwmac-sunxi +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +eata +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +ehci-platform +ehset +elan_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_usb +emu10k1-gp +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f75375s +f81232 +fakelb +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_ssd1289 +fb_ssd1306 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdp +fdp_i2c +fealnx +ff-memless +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fl512 +flexcan +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fsl-edma +fsl_elbc_nand +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +fujitsu_ts +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gcm +gdmtty +gdmulte +gdmwm +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +genwqe_card +gf128mul +gf2k +gfs2 +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-generic +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdpvr +he +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-thingm +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horus3a +hostap +hostap_pci +hostap_plx +hp100 +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hvcs +hvcserver +hwa-hc +hwa-rc +hwmon-vid +hwpoison-inject +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-cbus-gpio +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mpc +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-reg +i2c-nforce2 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-robotfuzz-osif +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i40e +i40evf +i5k_amb +i6300esb +i740fb +ib_addr +ib_cm +ib_core +ib_ehca +ib_ipoib +ib_iser +ib_isert +ib_mad +ib_mthca +ib_qib +ib_sa +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +ibmpowernv +ibmveth +ibmvfc +ibmvnic +ibmvscsi +ibmvscsis +icom +icp_multi +icplus +ics932s401 +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-interrupt +iio-trig-periodic-rtc +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +imm +imon +ims-pcu +imx074 +imx6ul_tsc +imx_thermal +ina209 +ina2xx +industrialio +industrialio-buffer-cb +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_powernv +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jitterentropy_rng +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +kafs +kalmia +kaweth +kbic +kbtab +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +kobil_sct +ks0108 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvaser_usb +kvm +kvm-hv +kvm-pr +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-powernv +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcomposite +libcrc32c +libcxgbi +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +liquidio +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +ll_temac +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lms283gf05 +lms501kf03 +lnbh25 +lnbp21 +lnbp22 +lockd +locktorture +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc3589 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac_hid +macb +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577 +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max3100 +max31790 +max3421-hcd +max34440 +max517 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77686 +max77693 +max77693-haptic +max77693_charger +max77802 +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997 +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +md5-ppc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-octeon +mdio-thunder +mdio-xgene +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +memory-notifier-error-inject +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +mf6x4 +mga +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mmc_spi +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_exthdr +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_labpc +ni_labpc_common +ni_labpc_isadma +ni_labpc_pci +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsc-ircc +ntb +ntb_netdev +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvidiafb +nvme +nvmem_core +nx-compress +nx-compress-powernv +nx-compress-pseries +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_mmc_spi +of_xilinx_wdt +ofpart +ohci-platform +old_belkin-sir +omap4-keypad +omfs +omninet +on20 +on26 +onenand +opal-prd +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +pandora_bl +panel +panel-lg-lg4573 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-simple +parade-ps8622 +paride +parkbd +parport +parport_ax88796 +parport_pc +parport_serial +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pc300too +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcspkr +pcwd_pci +pcwd_usb +pd +pda_power +pdc_adma +peak_pci +peak_usb +pegasus +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +physmap_of +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powernv-rng +powernv_flash +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_parport +pptp +prism2_usb +ps2mult +pseries-rng +pseries_energy +psmouse +psnap +pt +pulsedlight-lidar-lite-v2 +pvrusb2 +pwc +pwm-beeper +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qcaspi +qcaux +qcom-spmi-iadc +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dvbsky +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rionet +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpadlpar_io +rpaphp +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtas_flash +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-generic +rtc-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max77686 +rtc-max77802 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtc_cmos_setup +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +rxkad +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7706h +safe_serial +salsa20_generic +samsung-sxgbe +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +scanlog +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +sctp +sctp_probe +sdhci +sdhci-of-arasan +sdhci-of-at91 +sdhci-of-esdhc +sdhci-of-hlwd +sdhci-pci +sdhci-pltfm +sdhci_f_sdh30 +sdio_uart +seed +sensorhub +seqiv +ser_gigaset +serial2002 +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh_veu +sha1-powerpc +shark2 +sht15 +sht21 +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +sir-dev +sis +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skd +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +slcan +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smipcie +smm665 +smsc +smsc-ircc2 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcm-oss +snd-pcxhr +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb-common +snd-scs1x +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-adau1701 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs4349 +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-pcm1681 +snd-soc-pcm1792a-codec +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8962 +snd-soc-wm8978 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-usx2y +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +solo6x10 +solos-pci +sony-btf-mpx +soundcore +sp2 +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-nor +spi-oc-tiny +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spl +splat +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +svgalib +sx8 +sx8654 +sx9500 +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synaptics_usb +synclink +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teranetics +test-hexdump +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +tgr192 +thmc50 +thunder_bgx +thunderbolt +ti-adc081c +ti-adc128s052 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpm-rng +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_fsl_elbc_gpcm +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_uac1 +usb_f_uac2 +usb_f_uvc +usb_gigaset +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +vcan +vcnl4000 +ves1820 +ves1x93 +veth +vf610_adc +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +via +via-ircc +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_input +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmx-crypto +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsxxxaa +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5300 +w6692 +w83781d +w83791d +w83792d +w83793 +w83795 +w83977af_ir +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd719x +wdrtas +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wimax +winbond-840 +windfarm_core +wire +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994-core +wm8994-irq +wm8994-regmap +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_ps2 +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xts +xusbatm +xz_dec_test +yam +yealink +yellowfin +yurex +zaurus +zavl +zcommon +zd1201 +zd1211rw +zforce_ts +zfs +zhenhua +zl10036 +zl10039 +zl10353 +zl6100 +zlib +znvpair +zpios +zr364xx +zram +zunicode +zynq-fpga only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/s390x/generic +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/s390x/generic @@ -0,0 +1,8997 @@ +EXPORT_SYMBOL arch/s390/oprofile/oprofile 0x06a93370 sampler_cpu_buffer +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/mcryptd 0x841c582a mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x2daedef1 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x38d37c0c rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xb3c2e072 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xbd3150f4 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xd206f3c9 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xdf81984b rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0a913021 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x113d85b7 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x18b07ff1 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x18dc691b ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x239f4de8 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2d7e4192 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2f480fea ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x33f82712 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x34788e0b ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3fd50f02 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6b6d1f05 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x785fd852 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7f2dc011 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x861f9c1a ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8eee8d37 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbeeeb362 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf256ee10 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfec104e9 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x019a4c07 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x022d2a3d ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02e72221 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05903d09 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06830b9a ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0807d0c7 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08e3d133 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b7300b1 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f7fa781 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13e5ec2c ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18a0b169 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18ff4881 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x233903f7 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24bbb6a5 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2764810e ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bda435d ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2eb99860 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fa3e19b ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33a63f26 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a6d1aea ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c5dcd40 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ca7f529 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e274a57 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4406e64d ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fda152 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4927ae12 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f33c51a ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50e296d8 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5305cec6 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53d76e15 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56e6f8b1 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a4299fc ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5af37566 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d73896b ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fef08ad ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64253125 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f9c6c9a ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6feb169b ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71dda5f3 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76f6fd8e ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79eb9612 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ad31d31 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c7beee5 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d3546af ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8102c4cb ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x825fb350 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83d29905 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b1d5a59 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e105e5c ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9121f03e ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x944e29d1 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x982bc015 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9857a06f ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x999ae99e ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa26d05bb ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7cbab02 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad343dd8 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadfc9da0 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb01791c6 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb27bd92a ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2de3515 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb788e5c2 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc208a75f ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc27ef927 ib_find_cached_gid +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 0xc72d1481 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8a7f5eb ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9924319 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce9ff5c8 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd484cbf7 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5730722 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb7dca46 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0983664 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2e495a3 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4df43f2 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb654c44 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedb7701c ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0f66143 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf404e73a ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf59d0133 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf72df87a ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf86c1293 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf957d9a3 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf96eab51 ib_modify_device +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_core 0xfe7d8ac1 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1b189546 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x33f4b08e ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x42d5e3cb ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x43bb0136 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4be671bc ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x67f55af9 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x74ae8f81 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xab983dc9 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xada73636 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xaddbde96 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc3d17401 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xde2dddd5 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf0f8190e ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x27afd6fc ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x409a5ded ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x57bebd65 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x766c0169 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x807cd22d ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x92482753 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa0aeff9d ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xaba831a7 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb088d5e9 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc30c4442 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc8799c78 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x54dc5419 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd9c90676 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 0x03a32f27 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1c59689d iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x28507c5f iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x35fd5381 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4815d08e iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x65e3868a iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c1b05a9 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x73878f27 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x826d9ee4 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x82864efb iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x88393d21 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 0x972f8114 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb68e80cd iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc2d609b4 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdfbdbae2 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x00305997 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0d879297 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x14078d84 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x18fbd9e7 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x195374bf rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1fb69db0 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2636d9c5 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x34fd078f rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4b9cc4fa rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4bb7a775 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x52f93e96 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5764a220 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x58d09519 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5c5dd28c rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7b3c6bf4 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7c46d881 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8d5bc4b8 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcb356cb6 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd9b4baf8 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd9dde379 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfca4bfee rdma_listen +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 0x06403f26 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x0a171d2e closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x18290c90 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x313ff088 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3b42669b bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0x594d1f90 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6dc1194a bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x79711460 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7d2e3553 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7e232679 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x851d9ac0 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x98d78e3b closure_sub +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/dm-bufio 0x268682d2 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-log 0x837f844c dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x96f97e08 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xcdc0568b dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xcfad6934 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x300ddee0 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3eb1710b dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x87291894 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc9e98eb2 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xdca5671e dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf5fe34d0 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0xd8b46d94 raid5_set_cache_size +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x023d78ea mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x054a3cf8 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0550f5aa mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f4b0eaf mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12174849 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x178ffff8 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3910b40e set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e8fdd1b mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56fb287b mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f357811 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6053a56c mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x703b31c2 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72c8aa7a mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d736f14 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8660e67e mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8827c6ec mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x896e9785 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x955789b3 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96c4b2f5 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x986c68b6 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9fb1d44 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9ff2008 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8c7a4bb mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb96ede92 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc356e524 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3f19461 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2c2ad98 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6c23425 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7bb2e43 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8ef332d mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc1d91ed mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdea8d7d9 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2a8cd00 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe340f079 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf18d561c mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa348d5f mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb36d38a mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd854f27 mlx4_eq_get_irq +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 0x0871c537 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0aacb342 mlx5_cmd_alloc_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 0x1f4cf599 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20feb831 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x220f40b8 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2533340a mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x290c6731 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cb3b7b7 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a457a77 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bf3bc85 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47a4d172 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x480a582e mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49b71f21 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56be0ab6 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59f7cba0 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ac6096b mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ce32458 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69bf6b9d mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71f9af6e mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7246db73 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79cf0c04 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79f567e6 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92183712 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x961a5c7e mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9646ac78 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2441d41 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3455819 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa44803e1 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb57f2d3e mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb83714c5 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb93578e9 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3ee97fb mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd90f7136 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdebd6b91 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 0xedfef449 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf505d5ad mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf61a875c mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8248800 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 0x0107f3d4 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2360a424 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 0x744da5a4 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7667b356 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7a3f4cfa 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 0x8e200902 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 0xe6555656 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/mellanox/mlxsw/mlxsw_core 0xfe3e1a20 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/phy/fixed_phy 0x74d55e9d fixed_phy_update_state +EXPORT_SYMBOL drivers/net/phy/libphy 0x00b8744f phy_read_mmd_indirect +EXPORT_SYMBOL drivers/net/phy/libphy 0x0c2c20e6 phy_ethtool_set_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0x12a2a39b phy_mii_ioctl +EXPORT_SYMBOL drivers/net/phy/libphy 0x14f843fb phy_detach +EXPORT_SYMBOL drivers/net/phy/libphy 0x1fed6d6f phy_device_remove +EXPORT_SYMBOL drivers/net/phy/libphy 0x227215d5 phy_register_fixup_for_uid +EXPORT_SYMBOL drivers/net/phy/libphy 0x240be819 phy_start +EXPORT_SYMBOL drivers/net/phy/libphy 0x25bcbec7 phy_attach_direct +EXPORT_SYMBOL drivers/net/phy/libphy 0x2a47c4a6 phy_connect +EXPORT_SYMBOL drivers/net/phy/libphy 0x2d4bf72a phy_device_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x2dda0735 genphy_soft_reset +EXPORT_SYMBOL drivers/net/phy/libphy 0x2ffbc973 phy_driver_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0x327bd62d phy_print_status +EXPORT_SYMBOL drivers/net/phy/libphy 0x34043858 phy_ethtool_get_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0x342c704f mdio_bus_type +EXPORT_SYMBOL drivers/net/phy/libphy 0x3477c844 phy_drivers_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0x38079387 phy_write_mmd_indirect +EXPORT_SYMBOL drivers/net/phy/libphy 0x43c05c6e phy_stop_interrupts +EXPORT_SYMBOL drivers/net/phy/libphy 0x49f3401c genphy_setup_forced +EXPORT_SYMBOL drivers/net/phy/libphy 0x4cc323e3 phy_stop +EXPORT_SYMBOL drivers/net/phy/libphy 0x4dcc6ffb genphy_restart_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0x59cdadb2 mdiobus_scan +EXPORT_SYMBOL drivers/net/phy/libphy 0x61ec9fcd __mdiobus_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x63ec188e phy_start_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0x65850d8a phy_suspend +EXPORT_SYMBOL drivers/net/phy/libphy 0x675e7257 phy_register_fixup +EXPORT_SYMBOL drivers/net/phy/libphy 0x6fac90aa phy_device_free +EXPORT_SYMBOL drivers/net/phy/libphy 0x72834f11 mdiobus_alloc_size +EXPORT_SYMBOL drivers/net/phy/libphy 0x746cf6d9 phy_ethtool_gset +EXPORT_SYMBOL drivers/net/phy/libphy 0x780d1d2c phy_find_first +EXPORT_SYMBOL drivers/net/phy/libphy 0x7951aae2 mdiobus_read_nested +EXPORT_SYMBOL drivers/net/phy/libphy 0x84edf1e7 genphy_resume +EXPORT_SYMBOL drivers/net/phy/libphy 0x891971c1 phy_set_max_speed +EXPORT_SYMBOL drivers/net/phy/libphy 0x8cc65754 phy_get_eee_err +EXPORT_SYMBOL drivers/net/phy/libphy 0x8ffec4c2 phy_start_interrupts +EXPORT_SYMBOL drivers/net/phy/libphy 0x9a38158b mdiobus_read +EXPORT_SYMBOL drivers/net/phy/libphy 0xa6edf62b get_phy_device +EXPORT_SYMBOL drivers/net/phy/libphy 0xb241e39d phy_connect_direct +EXPORT_SYMBOL drivers/net/phy/libphy 0xb28a7737 phy_init_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0xb3550be2 phy_driver_register +EXPORT_SYMBOL drivers/net/phy/libphy 0xb7a5ce22 phy_ethtool_get_wol +EXPORT_SYMBOL drivers/net/phy/libphy 0xb7c23a35 mdiobus_free +EXPORT_SYMBOL drivers/net/phy/libphy 0xba3565ec genphy_config_init +EXPORT_SYMBOL drivers/net/phy/libphy 0xbfbe3c5e phy_ethtool_set_wol +EXPORT_SYMBOL drivers/net/phy/libphy 0xc1512ad0 phy_device_create +EXPORT_SYMBOL drivers/net/phy/libphy 0xc1647a28 phy_disconnect +EXPORT_SYMBOL drivers/net/phy/libphy 0xc8a2d4cd genphy_read_status +EXPORT_SYMBOL drivers/net/phy/libphy 0xcb3aa909 mdiobus_write_nested +EXPORT_SYMBOL drivers/net/phy/libphy 0xd2feca49 genphy_update_link +EXPORT_SYMBOL drivers/net/phy/libphy 0xd5548f27 phy_mac_interrupt +EXPORT_SYMBOL drivers/net/phy/libphy 0xd573d299 phy_drivers_register +EXPORT_SYMBOL drivers/net/phy/libphy 0xe14eb60a genphy_suspend +EXPORT_SYMBOL drivers/net/phy/libphy 0xe722b234 phy_init_hw +EXPORT_SYMBOL drivers/net/phy/libphy 0xe9941464 mdiobus_write +EXPORT_SYMBOL drivers/net/phy/libphy 0xed09f723 genphy_aneg_done +EXPORT_SYMBOL drivers/net/phy/libphy 0xed41ea86 mdiobus_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0xf117aff4 phy_resume +EXPORT_SYMBOL drivers/net/phy/libphy 0xf4d9702a genphy_config_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0xf7ca07af phy_attach +EXPORT_SYMBOL drivers/net/phy/libphy 0xfdcb82fb phy_ethtool_sset +EXPORT_SYMBOL drivers/net/phy/libphy 0xfedf4e06 phy_register_fixup_for_id +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x157e723b alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x83770fe3 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x8bb00a16 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xd6e89ff0 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x6007d7e7 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xa6fc9e22 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xe5e5edfe xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/vitesse 0x99c9f288 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/team/team 0x1ddde458 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x2b49b21f team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x493067d1 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x6db7ff90 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x880b73f0 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x9449daca team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x9bec78aa team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xeb772ff0 team_options_change_check +EXPORT_SYMBOL drivers/pps/pps_core 0x807c9c13 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0xca4b581b pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0xcbbd8baf pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0xe967c96f pps_unregister_source +EXPORT_SYMBOL drivers/ptp/ptp 0x1e977c47 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x47f154f7 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xca2ad3e7 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xef0bff43 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0xf6760362 ptp_clock_index +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x0c98d5bd dasd_device_set_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x165429ba dasd_block_set_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1d36fcd2 dasd_cancel_req +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1ea43680 dasd_log_sense_dbf +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x221bd3db dasd_device_clear_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x2b2dfb90 dasd_term_IO +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x4b828cf1 dasd_sleep_on_immediatly +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x4be37d1b dasd_reload_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x576f3ddb dasd_int_handler +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x5c609c46 dasd_eer_write +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x5f484d3d dasd_schedule_device_bh +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x63562f77 dasd_kick_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x67ddc44d dasd_start_IO +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x698db281 dasd_alloc_erp_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x777f3f14 dasd_kmalloc_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x7ca4da82 dasd_default_erp_action +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9a44381c dasd_debug_area +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xa01ad172 dasd_log_sense +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xa9885c4b dasd_smalloc_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb4350cbe dasd_diag_discipline_pointer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb4dcb5de dasd_sleep_on_queue +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc20f8298 dasd_block_clear_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xca2bddfc dasd_enable_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xcb0302e4 dasd_sfree_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xcb1f079a dasd_add_request_head +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd2629f2e dasd_kfree_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd3603340 dasd_sleep_on_interruptible +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd6232201 dasd_free_erp_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd629c862 dasd_set_target_state +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xdff17449 dasd_add_request_tail +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xe50cd6f9 dasd_default_erp_postaction +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xe56769df dasd_schedule_block_bh +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xfd004145 dasd_sleep_on +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 0x01e05a61 tape_do_io_interruptible +EXPORT_SYMBOL drivers/s390/char/tape 0x0b4cf375 tape_get_device +EXPORT_SYMBOL drivers/s390/char/tape 0x1189e968 tape_std_process_eov +EXPORT_SYMBOL drivers/s390/char/tape 0x1311daaa tape_std_read_backward +EXPORT_SYMBOL drivers/s390/char/tape 0x14e3d003 tape_std_mtsetblk +EXPORT_SYMBOL drivers/s390/char/tape 0x17784896 tape_generic_offline +EXPORT_SYMBOL drivers/s390/char/tape 0x20b6b6a9 tape_std_read_block +EXPORT_SYMBOL drivers/s390/char/tape 0x2546c415 tape_state_verbose +EXPORT_SYMBOL drivers/s390/char/tape 0x26975351 tape_std_mtreset +EXPORT_SYMBOL drivers/s390/char/tape 0x2ff951a6 tape_std_mtfsr +EXPORT_SYMBOL drivers/s390/char/tape 0x3b31c38b tape_core_dbf +EXPORT_SYMBOL drivers/s390/char/tape 0x48522026 tape_std_mtrew +EXPORT_SYMBOL drivers/s390/char/tape 0x4dbec594 tape_std_mtweof +EXPORT_SYMBOL drivers/s390/char/tape 0x5f331160 tape_std_mtunload +EXPORT_SYMBOL drivers/s390/char/tape 0x609eaca0 tape_std_mtbsfm +EXPORT_SYMBOL drivers/s390/char/tape 0x6132f660 tape_put_device +EXPORT_SYMBOL drivers/s390/char/tape 0x66deb66c tape_op_verbose +EXPORT_SYMBOL drivers/s390/char/tape 0x68139b3f tape_free_request +EXPORT_SYMBOL drivers/s390/char/tape 0x6f237039 tape_do_io_async +EXPORT_SYMBOL drivers/s390/char/tape 0x741a5749 tape_std_mtfsf +EXPORT_SYMBOL drivers/s390/char/tape 0x74ff4952 tape_state_set +EXPORT_SYMBOL drivers/s390/char/tape 0x7c835960 tape_generic_remove +EXPORT_SYMBOL drivers/s390/char/tape 0x7cc268a3 tape_dump_sense_dbf +EXPORT_SYMBOL drivers/s390/char/tape 0x8680d73e tape_cancel_io +EXPORT_SYMBOL drivers/s390/char/tape 0x8922f8e0 tape_std_mtreten +EXPORT_SYMBOL drivers/s390/char/tape 0x91af2c40 tape_std_assign +EXPORT_SYMBOL drivers/s390/char/tape 0x93a5e087 tape_std_write_block +EXPORT_SYMBOL drivers/s390/char/tape 0x99570649 tape_do_io +EXPORT_SYMBOL drivers/s390/char/tape 0xa0aeae52 tape_std_mtbsf +EXPORT_SYMBOL drivers/s390/char/tape 0xa2405c7c tape_med_state_set +EXPORT_SYMBOL drivers/s390/char/tape 0xa887ce86 tape_std_read_block_id +EXPORT_SYMBOL drivers/s390/char/tape 0xaa1c8a4a tape_std_mtoffl +EXPORT_SYMBOL drivers/s390/char/tape 0xbbc37b74 tape_std_mterase +EXPORT_SYMBOL drivers/s390/char/tape 0xbeaf337d tape_std_mtload +EXPORT_SYMBOL drivers/s390/char/tape 0xc3bff532 tape_std_display +EXPORT_SYMBOL drivers/s390/char/tape 0xcf1e2816 tape_std_mtcompression +EXPORT_SYMBOL drivers/s390/char/tape 0xd4685eee tape_alloc_request +EXPORT_SYMBOL drivers/s390/char/tape 0xdae5d08d tape_mtop +EXPORT_SYMBOL drivers/s390/char/tape 0xde09eb09 tape_generic_probe +EXPORT_SYMBOL drivers/s390/char/tape 0xea2fd1b5 tape_std_mtfsfm +EXPORT_SYMBOL drivers/s390/char/tape 0xf44366f3 tape_generic_pm_suspend +EXPORT_SYMBOL drivers/s390/char/tape 0xf619ee2e tape_std_mteom +EXPORT_SYMBOL drivers/s390/char/tape 0xf666a962 tape_std_unassign +EXPORT_SYMBOL drivers/s390/char/tape 0xf7fbae34 tape_generic_online +EXPORT_SYMBOL drivers/s390/char/tape 0xfb4da8bd tape_std_mtbsr +EXPORT_SYMBOL drivers/s390/char/tape 0xfba4e37c tape_std_mtnop +EXPORT_SYMBOL drivers/s390/char/tape_34xx 0x8c26403c tape_34xx_dbf +EXPORT_SYMBOL drivers/s390/char/tape_3590 0x41fbb66e tape_3590_dbf +EXPORT_SYMBOL drivers/s390/char/tape_class 0x4ae0e63f unregister_tape_dev +EXPORT_SYMBOL drivers/s390/char/tape_class 0xc5db9645 register_tape_dev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x2ed36122 ccwgroup_set_online +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x40d48919 ccwgroup_probe_ccwdev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x599d1ebf ccwgroup_driver_unregister +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x5c72d26b ccwgroup_driver_register +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xbc183c40 ccwgroup_set_offline +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xc44d3d57 ccwgroup_create_dev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xd247d615 ccwgroup_remove_ccwdev +EXPORT_SYMBOL drivers/s390/cio/qdio 0x96637a53 qdio_get_next_buffers +EXPORT_SYMBOL drivers/s390/cio/qdio 0xcbdc6b11 qdio_stop_irq +EXPORT_SYMBOL drivers/s390/cio/qdio 0xfca44a6a qdio_start_irq +EXPORT_SYMBOL drivers/s390/crypto/ap 0x0cf7dc81 ap_cancel_message +EXPORT_SYMBOL drivers/s390/crypto/ap 0x0ffc9609 ap_recv +EXPORT_SYMBOL drivers/s390/crypto/ap 0x2f40f323 ap_queue_message +EXPORT_SYMBOL drivers/s390/crypto/ap 0x5e21cb82 ap_send +EXPORT_SYMBOL drivers/s390/crypto/ap 0x5f66d7e6 ap_flush_queue +EXPORT_SYMBOL drivers/s390/crypto/ap 0x65b1e78e ap_driver_register +EXPORT_SYMBOL drivers/s390/crypto/ap 0x697f82b2 ap_driver_unregister +EXPORT_SYMBOL drivers/s390/crypto/ap 0x77247c5e ap_bus_force_rescan +EXPORT_SYMBOL drivers/s390/crypto/ap 0xd5e90454 ap_domain_index +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x054512a2 zcrypt_msgtype_request +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x063101d7 zcrypt_device_free +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x1666d9bf zcrypt_device_put +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x2c493c5f zcrypt_device_unregister +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x2c4e7138 zcrypt_msgtype_unregister +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x3b2f7852 zcrypt_device_get +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x5c88e957 zcrypt_device_register +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x67cedaeb zcrypt_rescan_req +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0xa6ccfaee zcrypt_msgtype_register +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0xc94b37ca zcrypt_msgtype_release +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0xc96ac7fd 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 0x46f6738d qeth_osn_register +EXPORT_SYMBOL drivers/s390/net/qeth_l2 0x7029b563 qeth_osn_deregister +EXPORT_SYMBOL drivers/s390/net/qeth_l2 0xe82bc25c qeth_osn_assist +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x195b322f fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x360e0fe0 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4bd4f9e1 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x554b67eb fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6fbb9560 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x73493b04 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x840b3d03 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x92920a16 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcadc7ba3 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd39e8055 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd922b354 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe13ccdb3 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0eb62229 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1139f59f fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13c074f4 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d69a858 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x227b8605 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x252ee533 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27acb6d6 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c49305e fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d3254d1 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3060151a fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34cde76a fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x38cb6110 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39d3a9f2 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4707129f fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4b6e1863 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f364b52 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5303afb0 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x543e621a fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59dc7265 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69942e8b fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7465051a fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76e2c763 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78a197a1 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d981de8 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x88b78f24 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x90ce921a fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x92b14482 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x95b24239 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x989d9f52 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1258c8d fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1765f3f fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xba31bc3d fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd028514 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd6dabc1 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf4c89d5 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc198cc64 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc45cfe46 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6b45c40 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc7d1cf21 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd13eae99 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd1cef02b fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2d6487a fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd4f8ea6a fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7fcd0d3 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdca3433d fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe20f51d0 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3d131a9 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeed207c0 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9cac147 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc48a8d5 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x03da4967 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5c7710c8 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x9fe256ad sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb22b3d2c sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x024a60fa osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0b21c60e osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x178463bd osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2a808428 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2d9d9181 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2ed5e126 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3ddfcda3 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3e51aabc osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x46ea5bd6 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x47baaf2e osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x480f24cc osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x492640f5 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4f8f4662 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x509a8f4e osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x59c5e5d4 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5be2f19f osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x60e93ada osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6f40e2aa osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x76d2ca74 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x80766d52 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9190875a osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x93f26170 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xabcaea45 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb119d9ae osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbe8778aa osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbf8b8c31 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc05e21a1 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc971e26d osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcd950323 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcdf12bbd osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd2379f23 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd6969d97 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd6f3b101 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd9320911 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xea53ec5b osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf31445a8 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x6617b977 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x75100fd3 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x9bc19c7b osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xb1496638 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0xd313c4ed osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xf607d94a osduld_put_device +EXPORT_SYMBOL drivers/scsi/raid_class 0x44d97bfa raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xb8e9bd42 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xe3f086d2 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x07a3edce fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x200bd80f fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2fce2bdc fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x48fec238 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x59055722 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5b979698 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7c5793f1 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x846d4e81 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x90d690aa fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc89bd42b fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd3e8f7a7 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xeca83c98 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xee8a6648 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0c3610b5 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x23faf5c1 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2a2d0885 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x35448031 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3e043168 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4b36f9f9 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5f1aa9b2 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x61933348 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x64be15c5 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6ae89c18 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x751f4506 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7efb5d64 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x89065d4f sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x97df1459 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa892bf1d sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaad6248a sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xad8a2c88 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb2183a76 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb6dd3129 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb6eea6f9 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbf8a6659 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc394f114 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc70991a5 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xceae3fcb sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd1725f5e sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd94ccd4c sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe2851b6c scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe72f32ca sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x20ee1ab4 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x236d3117 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4cc035fa spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfb7cfa66 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfbcb8a96 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x399d79f7 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3b673415 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6e4e802d srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xddb92df1 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x16fdef53 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1780b66c iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x297df960 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x381b3f85 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x473b05b3 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x491290ac iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4efccca2 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5333d0f6 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d322806 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65f10709 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6d3e9f2f iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7bde638e iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d97c636 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f2a7221 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8f8b534a iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9370dc68 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa2403428 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa3307fb7 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb47e7ee5 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6c30818 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb6f8a8c iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2a99c87 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc50bda49 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc955164e iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd1ecaf91 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd9be53d7 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xedd942de iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf2e8ebe5 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x01cc3990 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0746ae0d sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x085568fc transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f35bb09 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f591ce1 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x13779716 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x1586b0d9 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x1afa9b57 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x233aea63 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x23d70bbc spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x24cf0439 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x26e28b75 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ee1c5de transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x38528e46 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x3baf03f3 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ee5f74b target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x46288ef6 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x48a44e1b target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ed9165b target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x579fb863 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x5ae45161 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x609b7137 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x65200b39 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x6ae0d5ae transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x6b86a7be passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c247020 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c75bede transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d307304 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f2b5de6 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x7223ff9d sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7384431a transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x7bb04e0e target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f4e0541 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d829abe target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8fe40a3d spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x90f99734 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9210509b target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x94253ecd target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x975c703c transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x98f2d0cc sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f208750 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1347833 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xa82448a1 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa64b13c transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xae0bca3e passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xb409e99d target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6262280 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xb88614f7 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xbbfadef5 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xbcf81789 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd972b72 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xbdd0c20f transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe67d067 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc293da4d transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xca3ae234 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xcea11cdd core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xcee619c6 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf47484a target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xd0ede186 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xd8f29d05 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd92f796e target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe51f3b9d transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe81041d9 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb4d612c transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf1377488 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf55a7a10 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf8500309 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc639b32 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xfdd718c5 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x312dd1fe uart_get_divisor +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x355ee010 uart_update_timeout +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x55c2b069 uart_resume_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x5b85571a uart_match_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x5e6c8998 uart_suspend_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x68609802 uart_write_wakeup +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x725f6ae0 uart_get_baud_rate +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x73c80aee uart_add_one_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x7abbfebd uart_remove_one_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x7dbb749f uart_register_driver +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xfc5907df uart_unregister_driver +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 0x08d15d9f ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x2c138609 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x3ee39972 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x51cd4405 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x64c33bc8 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x661dad83 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x6636f455 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x6a678167 ore_create +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xb18d81f2 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xdf20fee2 ore_remove +EXPORT_SYMBOL fs/fscache/fscache 0x033a6f02 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x099629a7 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x131f2c90 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x14e91ed0 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x179e8d92 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x285b2b02 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x2888ad35 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x2afe7084 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x2e927a39 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x3337651d fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x381741cb fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x446136ec __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x47513a1f fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x47d35f82 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x4bea3d44 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6489b540 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x775d28de __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x77e5b11f fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x878a7292 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x8beeccfe __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x8c05ec4a __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x8ee3d9d7 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x9ad0887b fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x9db3eb68 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa4c8a17b __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xa729adb6 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xa8cb3a13 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xa95323aa fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xaa1902be __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xc2bee571 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xc50bfed6 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xc991f368 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xd16f4d14 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xd9f95726 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xdd8a345c fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xe540c2b1 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xe5c66198 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe8b682a0 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xf0dbbfe4 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xfa2bdea2 __fscache_unregister_netfs +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x458b4a95 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x47076691 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x53adfd02 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x91dad866 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xa60d3e3c 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 0x64714b98 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 0xb731a7fc lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xbbc7a78d lc_put +EXPORT_SYMBOL lib/lru_cache 0xc1a43316 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a4ca05 lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xe4a98afa lc_try_get +EXPORT_SYMBOL lib/lru_cache 0xebae3022 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xff3f1db8 lc_find +EXPORT_SYMBOL lib/lru_cache 0xffb12208 lc_is_used +EXPORT_SYMBOL lib/lz4/lz4_compress 0x32ec514e lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xab08068b lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL net/802/p8022 0x0b9792d0 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xeaf65396 register_8022_client +EXPORT_SYMBOL net/802/psnap 0x889ae817 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x980336cf register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x03f42c43 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x0b944f85 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x126e8e8b p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x13bd3668 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x14db7f17 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x19270058 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x371ff9fa p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x392f3fa2 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x3a572c0c p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x48511458 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x4892e28f p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x4f565b01 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x60015e70 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x630cc76d p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x70f25a48 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x7325f937 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7520c34c p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x75804cfd p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x797ecb0b p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x8574d292 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x86356ebb p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x88f57a28 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x90169187 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x9125ea6b p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x94eab403 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xa80c54c3 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xb35bf856 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc0119ac7 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xc0d1a657 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xcccbd855 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xd46866cd p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xdbd95fc9 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xe06edf65 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xe3aae450 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe731e033 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xe7e59318 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xeca28f84 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xeccf4299 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xef84dffc 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 0xfb988935 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xfc05460e p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xfcccafb7 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/bridge/bridge 0x0b164847 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2793fadd ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa739e139 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe61f603c ebt_do_table +EXPORT_SYMBOL net/ceph/libceph 0x01d2bf80 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x05b977ac ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x077167a6 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x07e7161b ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0fed652c ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x1638f254 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x19642951 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x1c4e2153 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x1ed2f610 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x2a0d7a04 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x2ceb724b ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x2d48d829 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x2d6b7673 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x30d9cfc6 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x31d8d2df osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x353f800d ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x374379bd ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3c3995da ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x4015df17 ceph_copy_from_page_vector +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 0x44012185 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x45e283ec ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x4635f4e5 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x490424a5 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x4a69fadc ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x4b05e95b osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x4bf0271e ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x5213d706 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x543296bf ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5789ea4e ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5a740611 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x5f947752 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x61d33090 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x62d356ef osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x65302d1d osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x66144ebf ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x67200310 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6bd0cd57 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x6e42601d ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x6f4563dc ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x6fa78d3b osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x75a00bba ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x77111836 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x794bdfe2 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x79d204de ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x7a21160b ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x818688f6 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x8569c406 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x87edf55b ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x8977535d ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x89823cba osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x8c7bff30 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x8cf8d020 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x8d520ec6 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x90cf2535 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x915fb6d2 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x98a6cdae ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x996483db ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x99c59db2 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9d0e7f66 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa01d0ebd ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0xa082f748 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xa091dd09 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xa5e43352 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa835ae28 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xabfbc321 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 0xb23cd390 ceph_con_keepalive +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 0xb67f5344 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xb689b022 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xbae5463c ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xbc615d0b ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xbc8fa5bb ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0xbd0aed59 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xbf0bc7bd ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xc1f544bb ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xc3dbc696 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc9b4ab17 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcf96d8c8 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xd1fdbe5b ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd708edcd osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xdac7569b ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xe239065e ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0xe3039d4c ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xeb851eb8 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0xeb9df28a ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xec210b73 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xf2f8836f ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xff72e538 ceph_osdc_cancel_request +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x44aca7ee dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x7d26346e dccp_req_err +EXPORT_SYMBOL net/ipv4/fou 0x33b2965e gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x72395c37 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x934af5fb gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xc9f71362 fou_build_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x04bb1aac ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x07f35bf0 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x227b99f8 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3eae1500 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4a476c6c ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc6d8badb ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa1e6d62e arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa6c18470 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xc6ba63db arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0a6dbb32 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc824e653 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xeb2e56f8 ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x7d8fb907 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xa5675753 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x981b6f4b udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1bf7dc11 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4866e37c ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6ad5ea19 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x874f888f ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1753dd84 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5083ab2a ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x91b030e9 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x8121752b xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x8ebe9b99 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x92c20dc5 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x9c24a915 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/l2tp/l2tp_core 0xa3a1a7b5 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x2b82193e l2tp_ioctl +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x43c41476 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x5f668132 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x73403339 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x877d1c1c llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x9ac230a6 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xa1c6e4a2 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xc87909ee llc_set_station_handler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0e80c199 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1665bd56 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2580cdeb ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x265632c7 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5217a32d ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x61c46329 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6c60d7a0 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x90222c52 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x95f6a6ff register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9a4195e2 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9ac64f58 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb5f551e9 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc2afa1bf unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe38b4b29 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x1eaef705 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x964509fb __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x98459240 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x118c2de8 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x3a411271 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x40b21a15 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x43a9e547 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x49fefb36 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xf769c1ab __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/x_tables 0x034cb8b9 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x093581c3 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x3214c880 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x51e0424a xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x58b60f79 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x7e43d83e xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x8bc457a1 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 0xa9efca22 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xc4addc81 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xff4ae9f2 xt_register_target +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0e04ca7e rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2a7e83bd rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x47a6eda7 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4e2ffab3 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x52b7a541 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5daf0dc7 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6d0ff29a rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7c86830d rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x82263f57 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8ecaedcf rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x95d5c860 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb1374cb8 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xced6623a rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xdea9b8bf rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe979ba98 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/sctp/sctp 0xb91f2eb0 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x1b9c0502 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x4e78fd9a gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xecf0d959 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x0a0f26af svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x498bffeb xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xefa47aea xdr_restrict_buflen +EXPORT_SYMBOL vmlinux 0x0019d154 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x00701fe4 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x00900c27 cdrom_open +EXPORT_SYMBOL vmlinux 0x009e753e param_set_charp +EXPORT_SYMBOL vmlinux 0x009f32b6 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x00abed75 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x00eb583f neigh_for_each +EXPORT_SYMBOL vmlinux 0x00f4a223 _ebc_toupper +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x010d39f5 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x011ca7c6 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x0137c2a1 devm_request_resource +EXPORT_SYMBOL vmlinux 0x01425934 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x01547333 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x01620ffc netif_receive_skb +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x0185a7d7 sclp_pci_deconfigure +EXPORT_SYMBOL vmlinux 0x01afab3f keyring_alloc +EXPORT_SYMBOL vmlinux 0x01b23be3 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x01e1a47e tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x01ebcb7b lg_global_unlock +EXPORT_SYMBOL vmlinux 0x01f1cb89 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x020bb70d fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x02283e28 elv_add_request +EXPORT_SYMBOL vmlinux 0x0247f77e nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x025037e4 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x028bda36 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02adbf21 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x02affea1 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x02b42687 mount_bdev +EXPORT_SYMBOL vmlinux 0x02c0e054 lro_receive_skb +EXPORT_SYMBOL vmlinux 0x02ca22a8 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0x02ca2d92 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x02d90136 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x0315efa9 mount_nodev +EXPORT_SYMBOL vmlinux 0x03323b67 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03479782 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x03498156 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x035f606e tso_build_hdr +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036f59d7 elv_rb_find +EXPORT_SYMBOL vmlinux 0x03746fed nf_hooks_needed +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x0388a5d8 idr_init +EXPORT_SYMBOL vmlinux 0x0393207b __elv_add_request +EXPORT_SYMBOL vmlinux 0x03993ed7 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x03ad5d0d vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x03c07754 netlink_capable +EXPORT_SYMBOL vmlinux 0x03c330d8 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x03cd5d0d tsb_init +EXPORT_SYMBOL vmlinux 0x03d61f3f inet_put_port +EXPORT_SYMBOL vmlinux 0x03d81dd7 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x03da1ccd nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x041b59cb __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0435f26d lowcore_ptr +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0449e628 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x04810ea5 down_killable +EXPORT_SYMBOL vmlinux 0x04850ba2 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x04927208 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x0496056c prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x0499979c unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x04c85fc9 block_write_begin +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04fb4d58 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x0520660e vfs_readv +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x057c4ea5 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x058c8c1b security_path_chmod +EXPORT_SYMBOL vmlinux 0x05a934fd xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x05f872e1 bit_waitqueue +EXPORT_SYMBOL vmlinux 0x05fe654a bio_split +EXPORT_SYMBOL vmlinux 0x06026d3b sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x0615b8a8 md_integrity_register +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x062ca491 __scm_send +EXPORT_SYMBOL vmlinux 0x0632a756 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06439ebb irq_to_desc +EXPORT_SYMBOL vmlinux 0x06651805 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x066e8345 lockref_get +EXPORT_SYMBOL vmlinux 0x067a92e0 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x06857c0c key_invalidate +EXPORT_SYMBOL vmlinux 0x0692d4ac __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x069904b6 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x069d9924 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x069e1329 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x06a18664 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x06a485f2 __krealloc +EXPORT_SYMBOL vmlinux 0x06f52169 dev_printk +EXPORT_SYMBOL vmlinux 0x06f8a2ae __vfs_read +EXPORT_SYMBOL vmlinux 0x070620d9 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x07080894 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x07297511 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x07387ebb from_kuid +EXPORT_SYMBOL vmlinux 0x073e981e submit_bio +EXPORT_SYMBOL vmlinux 0x0748da01 xattr_full_name +EXPORT_SYMBOL vmlinux 0x075b9b5b tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x077cf934 dev_uc_add +EXPORT_SYMBOL vmlinux 0x078abf21 ip6_xmit +EXPORT_SYMBOL vmlinux 0x079b5cf5 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x08044d6f idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0818b257 nvm_end_io +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x0842ef6c sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x089afc02 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x08ace69e register_external_irq +EXPORT_SYMBOL vmlinux 0x08ae21e6 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x08bac271 seq_puts +EXPORT_SYMBOL vmlinux 0x08d12ce5 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x08ef2c85 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x08f0839b inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x0932a01e lwtunnel_input +EXPORT_SYMBOL vmlinux 0x09503177 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x09576f93 complete_and_exit +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x095968c9 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x09786ddc poll_freewait +EXPORT_SYMBOL vmlinux 0x09915f70 udp_table +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09cce8eb netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09daf167 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x09f804fd __genl_register_family +EXPORT_SYMBOL vmlinux 0x0a3b0fdd scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x0a3c81c3 inc_nlink +EXPORT_SYMBOL vmlinux 0x0a490bca pcim_enable_device +EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aacd352 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x0aaeba14 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x0abec7e9 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x0aca7fda tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x0acbd6ee tcp_make_synack +EXPORT_SYMBOL vmlinux 0x0ad9a84a sock_alloc_file +EXPORT_SYMBOL vmlinux 0x0b047a07 request_key +EXPORT_SYMBOL vmlinux 0x0b06ecd1 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b82ea62 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc5da5f generic_update_time +EXPORT_SYMBOL vmlinux 0x0be3988e seq_putc +EXPORT_SYMBOL vmlinux 0x0bf71bd1 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x0bf8b877 vmemmap +EXPORT_SYMBOL vmlinux 0x0c196fe9 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c2cb512 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x0c35dbe9 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c49c32a skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x0c4a1c57 __scm_destroy +EXPORT_SYMBOL vmlinux 0x0c4b7d9e insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x0c4c1927 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x0c5380f5 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c5f2a5b idr_get_next +EXPORT_SYMBOL vmlinux 0x0c5f7a49 md_reload_sb +EXPORT_SYMBOL vmlinux 0x0c7cf7c6 zero_page_mask +EXPORT_SYMBOL vmlinux 0x0c8ec327 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x0ca74c0a blk_init_tags +EXPORT_SYMBOL vmlinux 0x0caa93e7 __breadahead +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cc04b0b iterate_supers_type +EXPORT_SYMBOL vmlinux 0x0cceac6c iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x0cdf324c simple_dir_operations +EXPORT_SYMBOL vmlinux 0x0d171349 param_array_ops +EXPORT_SYMBOL vmlinux 0x0d41d71d rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x0d49206e skb_free_datagram +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d7216d4 unregister_console +EXPORT_SYMBOL vmlinux 0x0d819a3c nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da94b46 register_qdisc +EXPORT_SYMBOL vmlinux 0x0db2c6b3 path_nosuid +EXPORT_SYMBOL vmlinux 0x0db61d3d jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x0de69d33 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x0def4c0b unregister_netdev +EXPORT_SYMBOL vmlinux 0x0df29465 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x0e079ac7 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x0e11eb5e __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x0e1e1c8a __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x0e2d8dc5 ccw_device_get_path_mask +EXPORT_SYMBOL vmlinux 0x0e302a17 blkdev_put +EXPORT_SYMBOL vmlinux 0x0e36f390 tcp_connect +EXPORT_SYMBOL vmlinux 0x0e384b8e set_blocksize +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e7294f1 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x0e731176 config_group_find_item +EXPORT_SYMBOL vmlinux 0x0ea763c3 sclp_sync_wait +EXPORT_SYMBOL vmlinux 0x0eab56fa __kfifo_max_r +EXPORT_SYMBOL vmlinux 0x0ec0b971 dquot_initialize +EXPORT_SYMBOL vmlinux 0x0ece8e30 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x0edfeb06 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f1005f9 dst_discard_out +EXPORT_SYMBOL vmlinux 0x0f369aed sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f550d97 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x0f59107b dev_remove_offload +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f96f585 elevator_exit +EXPORT_SYMBOL vmlinux 0x0f9c59cf vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fe0d4d3 dev_uc_del +EXPORT_SYMBOL vmlinux 0x0fe677d2 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x0ff3e85b neigh_event_ns +EXPORT_SYMBOL vmlinux 0x0ffb50da thaw_bdev +EXPORT_SYMBOL vmlinux 0x103f45d9 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x10497616 memweight +EXPORT_SYMBOL vmlinux 0x1054e732 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1085bb98 block_write_end +EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x1095bd89 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x10a34b6d dev_open +EXPORT_SYMBOL vmlinux 0x10f2eb76 vsnprintf +EXPORT_SYMBOL vmlinux 0x1103e816 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x11062667 bdput +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1115e9ab lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x1166f444 filp_open +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117492b8 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x119c9db0 netif_skb_features +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11ed2eb8 sclp_remove_processed +EXPORT_SYMBOL vmlinux 0x11f169c2 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11fff0c3 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x120858e0 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x121c5e66 proto_unregister +EXPORT_SYMBOL vmlinux 0x1232f1a5 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x124ec212 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x1251a12e console_mode +EXPORT_SYMBOL vmlinux 0x1258fb5e ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x125d5503 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x12755deb pci_disable_msi +EXPORT_SYMBOL vmlinux 0x12845341 locks_init_lock +EXPORT_SYMBOL vmlinux 0x12a12115 inet_select_addr +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12a49639 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x12c33999 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x12e1e486 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x12f237e1 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x1341b0c0 passthru_features_check +EXPORT_SYMBOL vmlinux 0x1358767f scsi_ioctl +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e80132 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x13f1e6cf remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x14137ea5 bdevname +EXPORT_SYMBOL vmlinux 0x142bb5cb bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x14409e5c freezing_slow_path +EXPORT_SYMBOL vmlinux 0x14531814 dquot_release +EXPORT_SYMBOL vmlinux 0x146b787c jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x14c5e5b3 segment_warning +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d141b0 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x14e39093 put_io_context +EXPORT_SYMBOL vmlinux 0x14ed6025 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1534ddfb blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x154db6f1 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x15668827 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x1582ea1b locks_copy_lock +EXPORT_SYMBOL vmlinux 0x159d1544 blk_free_tags +EXPORT_SYMBOL vmlinux 0x15a7572c forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x15ab1049 sk_alloc +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c4a2c9 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x15ea6169 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x16012b14 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x1605507f migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x163c6116 vfs_write +EXPORT_SYMBOL vmlinux 0x16558b08 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x169b7aee unregister_adapter_interrupt +EXPORT_SYMBOL vmlinux 0x16af48bb generic_file_llseek +EXPORT_SYMBOL vmlinux 0x16b1b431 ccw_device_start_timeout +EXPORT_SYMBOL vmlinux 0x16b6f481 noop_fsync +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16ff3971 dcache_readdir +EXPORT_SYMBOL vmlinux 0x17091658 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x170fb693 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x176dcfab xfrm_register_type +EXPORT_SYMBOL vmlinux 0x178fa164 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x179802eb skb_make_writable +EXPORT_SYMBOL vmlinux 0x179ac700 skb_checksum +EXPORT_SYMBOL vmlinux 0x179d511d udp_set_csum +EXPORT_SYMBOL vmlinux 0x17a142df __copy_from_user +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17e05223 raw3270_del_view +EXPORT_SYMBOL vmlinux 0x17f2a124 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x17ff3708 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x182010e9 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x1836d9cf compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184f3697 proto_register +EXPORT_SYMBOL vmlinux 0x188281c9 dquot_enable +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 0x18b87cca sclp_deactivate +EXPORT_SYMBOL vmlinux 0x18de734c unregister_filesystem +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x194f3012 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19afac1f nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x19b069fe pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19df57a9 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x19f48e49 generic_write_checks +EXPORT_SYMBOL vmlinux 0x19f99320 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x1a1b0270 bh_submit_read +EXPORT_SYMBOL vmlinux 0x1a29c107 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x1a3f2dd4 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x1a50f079 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x1a600c38 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x1a64b05c filp_close +EXPORT_SYMBOL vmlinux 0x1a783d33 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x1a7bd135 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x1a965a9c tty_kref_put +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b52de3e fget +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b953e5a tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x1baa67a9 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x1bb07a42 lz4_decompress +EXPORT_SYMBOL vmlinux 0x1bb289c9 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1beaef02 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x1bf920c3 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x1c0c9433 kill_fasync +EXPORT_SYMBOL vmlinux 0x1c0eb5a8 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states +EXPORT_SYMBOL vmlinux 0x1c1c74c7 iucv_message_receive +EXPORT_SYMBOL vmlinux 0x1c23ba67 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x1c23d93d address_space_init_once +EXPORT_SYMBOL vmlinux 0x1c61b587 raw3270_start +EXPORT_SYMBOL vmlinux 0x1c65dee5 nf_log_register +EXPORT_SYMBOL vmlinux 0x1c742d1a pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1c99150a tcp_req_err +EXPORT_SYMBOL vmlinux 0x1ca9e0a9 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x1cd9134a try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x1cf20840 netdev_update_features +EXPORT_SYMBOL vmlinux 0x1d06e4be kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x1d54656c pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x1d69298d try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x1dbc3731 km_is_alive +EXPORT_SYMBOL vmlinux 0x1dd1a2cb blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x1de417e5 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x1de8a740 bdget_disk +EXPORT_SYMBOL vmlinux 0x1e1c13b8 class3270 +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e2a9c4d blk_init_queue +EXPORT_SYMBOL vmlinux 0x1e2b724c mount_subtree +EXPORT_SYMBOL vmlinux 0x1e36b00f tty_unlock +EXPORT_SYMBOL vmlinux 0x1e46703e seq_escape +EXPORT_SYMBOL vmlinux 0x1e588233 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e8a161a crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x1e937d1d cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x1e96f785 generic_removexattr +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eabc18d tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x1eaf8831 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x1ec67f7d blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x1ecdc5c3 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x1ee87d05 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x1f0a86c5 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x1f46f1e8 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x1f538a4d __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x1fb28b49 simple_link +EXPORT_SYMBOL vmlinux 0x1fbc9006 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc99a37 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x1fc9feb3 blk_put_request +EXPORT_SYMBOL vmlinux 0x1fe0ef68 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1feaee55 kill_bdev +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20191f26 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x20247d51 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x2028dd5c d_tmpfile +EXPORT_SYMBOL vmlinux 0x203e4ab0 param_ops_byte +EXPORT_SYMBOL vmlinux 0x203f2d75 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x2043be75 inode_change_ok +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x20524e9d follow_down_one +EXPORT_SYMBOL vmlinux 0x205f4d9f sclp_unregister +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x20826ce5 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x20973b94 segment_unload +EXPORT_SYMBOL vmlinux 0x20a56257 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20cc2b05 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x20cf81eb seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x20d4ba55 skb_store_bits +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20f4eb39 d_rehash +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x21405aa8 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x214d185f blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x215209f2 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x21697a21 iucv_message_reject +EXPORT_SYMBOL vmlinux 0x216ad865 param_get_charp +EXPORT_SYMBOL vmlinux 0x2170b5be misc_register +EXPORT_SYMBOL vmlinux 0x218625e4 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x21a5130c scsi_target_resume +EXPORT_SYMBOL vmlinux 0x21cada06 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x21ded60d locks_free_lock +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21eb5b00 sclp_cpi_set_data +EXPORT_SYMBOL vmlinux 0x22073f8d dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x220db749 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x22158f0a kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x222c1add kobject_get +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x224cb332 down +EXPORT_SYMBOL vmlinux 0x22528601 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x226b08a4 idr_is_empty +EXPORT_SYMBOL vmlinux 0x22758232 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x22758429 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x227c0da5 padata_stop +EXPORT_SYMBOL vmlinux 0x2290c30a unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x22a47d56 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x22ac1d06 raw3270_request_set_data +EXPORT_SYMBOL vmlinux 0x22dd4020 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x22ecf082 idr_remove +EXPORT_SYMBOL vmlinux 0x233cc9a5 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x235171a5 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x235cf5b8 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x2365ede7 __irq_regs +EXPORT_SYMBOL vmlinux 0x236c8c64 memcpy +EXPORT_SYMBOL vmlinux 0x23890262 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x2390a8a1 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x239a05ab blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23a7e94f inode_init_owner +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23d2db96 lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x23e7d42d dget_parent +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2418f2e5 sk_capable +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242f3562 irq_subclass_register +EXPORT_SYMBOL vmlinux 0x2438387f tccb_add_dcw +EXPORT_SYMBOL vmlinux 0x244407ba ccw_device_clear_options +EXPORT_SYMBOL vmlinux 0x2445e949 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2472188e __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x249129b3 vfs_symlink +EXPORT_SYMBOL vmlinux 0x24ac96bb blk_get_queue +EXPORT_SYMBOL vmlinux 0x24ae5509 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x24b73284 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x24c42def pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x24d704a5 generic_getxattr +EXPORT_SYMBOL vmlinux 0x24ec2e30 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x24fbd9cb airq_iv_release +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x24fee827 dump_align +EXPORT_SYMBOL vmlinux 0x25188259 udp_seq_open +EXPORT_SYMBOL vmlinux 0x2559a527 d_alloc +EXPORT_SYMBOL vmlinux 0x2573fc53 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x2576da22 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25b38e3c tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x25bb78aa kbd_keycode +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25ec1b28 strlen +EXPORT_SYMBOL vmlinux 0x2604fbce starget_for_each_device +EXPORT_SYMBOL vmlinux 0x26103fc8 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x264326dd dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x268ddd7a do_splice_to +EXPORT_SYMBOL vmlinux 0x2698901f tcp_init_sock +EXPORT_SYMBOL vmlinux 0x26ab88dd memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0x26cbbf3c tcp_prot +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26fa50c0 complete +EXPORT_SYMBOL vmlinux 0x2711a59e block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x2747995c put_tty_driver +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x275bd1b7 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x275be331 dump_truncate +EXPORT_SYMBOL vmlinux 0x276125c9 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x2767d2e4 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x2797fcbf neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x279f1b8c netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x27a276b9 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bdcfdd key_task_permission +EXPORT_SYMBOL vmlinux 0x27c473a4 register_console +EXPORT_SYMBOL vmlinux 0x27c9ffc4 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27ed0792 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x280c9dbf tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2826290c blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x282d0808 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x282e18ff vfs_getattr +EXPORT_SYMBOL vmlinux 0x28343bad scnprintf +EXPORT_SYMBOL vmlinux 0x2843c643 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x284fded5 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x28500bd4 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x285de293 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x28663fbf __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x287acad3 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x288abcc7 unload_nls +EXPORT_SYMBOL vmlinux 0x289928f7 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28c2bbf1 pci_map_rom +EXPORT_SYMBOL vmlinux 0x28d62a67 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x28d69232 qdisc_reset +EXPORT_SYMBOL vmlinux 0x28d953b8 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x29080bd9 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x29239239 dev_addr_del +EXPORT_SYMBOL vmlinux 0x29391e7d vm_munmap +EXPORT_SYMBOL vmlinux 0x293dbfd8 block_read_full_page +EXPORT_SYMBOL vmlinux 0x2952b892 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x29789394 empty_zero_page +EXPORT_SYMBOL vmlinux 0x29a35e6a __nlmsg_put +EXPORT_SYMBOL vmlinux 0x29b2279e __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x29bbbcdf vm_insert_page +EXPORT_SYMBOL vmlinux 0x29bd99bc __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x29d36f5d remove_proc_entry +EXPORT_SYMBOL vmlinux 0x29f8fbfb neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x2a092d3d md_error +EXPORT_SYMBOL vmlinux 0x2a1ace9d elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a68a2bd elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x2a8f035b __inode_permission +EXPORT_SYMBOL vmlinux 0x2a8ffc6c iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x2aa6c6ed cad_pid +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ac843be nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b11b1b3 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x2b154fa6 key_type_keyring +EXPORT_SYMBOL vmlinux 0x2b1a68e8 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b343bd7 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x2b422dfe mount_ns +EXPORT_SYMBOL vmlinux 0x2b455a45 sock_no_bind +EXPORT_SYMBOL vmlinux 0x2b4903da sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x2b4e7245 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x2b5a8a88 dquot_resume +EXPORT_SYMBOL vmlinux 0x2b5b331d pci_bus_put +EXPORT_SYMBOL vmlinux 0x2b64c88c skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x2b845485 skb_tx_error +EXPORT_SYMBOL vmlinux 0x2b85f081 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x2b8af05e tcf_register_action +EXPORT_SYMBOL vmlinux 0x2b9d8b6e __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bb529c7 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x2bbf2ca4 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x2bd86c18 tty_register_driver +EXPORT_SYMBOL vmlinux 0x2bf6760e pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x2c007689 ll_rw_block +EXPORT_SYMBOL vmlinux 0x2c06ebde kill_anon_super +EXPORT_SYMBOL vmlinux 0x2c06fd2f register_filesystem +EXPORT_SYMBOL vmlinux 0x2c112b0e netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x2c19904e __bread_gfp +EXPORT_SYMBOL vmlinux 0x2c19f680 dev_addr_init +EXPORT_SYMBOL vmlinux 0x2c231c04 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x2c29a995 __strnlen_user +EXPORT_SYMBOL vmlinux 0x2c458e9c tcw_add_tidaw +EXPORT_SYMBOL vmlinux 0x2c63bfa0 down_write_trylock +EXPORT_SYMBOL vmlinux 0x2c897734 tcw_get_tsb +EXPORT_SYMBOL vmlinux 0x2cc260ce nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x2ce3249b mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x2ced9abd pci_get_class +EXPORT_SYMBOL vmlinux 0x2cf3eca8 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d14d9d7 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x2d188f2e blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x2d245480 kbd_free +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d5528c9 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x2d642aa4 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x2d8f51c8 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x2d9af902 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x2da21bff migrate_page_copy +EXPORT_SYMBOL vmlinux 0x2dbb9241 ida_init +EXPORT_SYMBOL vmlinux 0x2dbeaa2a iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x2dd7ff94 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e31d838 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x2e3f4305 skb_queue_head +EXPORT_SYMBOL vmlinux 0x2e4cc93c jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e8abdeb proc_douintvec +EXPORT_SYMBOL vmlinux 0x2e955de7 cdev_del +EXPORT_SYMBOL vmlinux 0x2ea08a55 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x2ef5661d segment_modify_shared +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2efc102f tcw_set_data +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f0e4826 may_umount_tree +EXPORT_SYMBOL vmlinux 0x2f2b3057 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f5b6ff3 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x2f5c0817 sock_i_uid +EXPORT_SYMBOL vmlinux 0x2f652552 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x2f6ab9d2 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x2f6b0d13 kset_unregister +EXPORT_SYMBOL vmlinux 0x2f76711c unregister_shrinker +EXPORT_SYMBOL vmlinux 0x2f9fddd0 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x2fa5a500 memcmp +EXPORT_SYMBOL vmlinux 0x2fb01986 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x2fb3750c on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fc7b048 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ffffb6f _ebc_tolower +EXPORT_SYMBOL vmlinux 0x302229db __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x302b16da dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x303ac120 lwtunnel_output +EXPORT_SYMBOL vmlinux 0x30612353 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3085af9e tso_count_descs +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b07c09 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x30c40a54 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f1a42c truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x30f9c805 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x31010eac __crypto_memneq +EXPORT_SYMBOL vmlinux 0x3102c317 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x3133e501 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x3133f86a set_user_nice +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x314673e6 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x3147b409 proc_set_user +EXPORT_SYMBOL vmlinux 0x314e31f5 single_open +EXPORT_SYMBOL vmlinux 0x31521961 generic_perform_write +EXPORT_SYMBOL vmlinux 0x316362f9 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x3167a180 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x31bc6253 setattr_copy +EXPORT_SYMBOL vmlinux 0x31e6e782 udp_del_offload +EXPORT_SYMBOL vmlinux 0x31fef07b audit_log +EXPORT_SYMBOL vmlinux 0x32152357 pci_bus_type +EXPORT_SYMBOL vmlinux 0x321b982d idr_replace +EXPORT_SYMBOL vmlinux 0x321f56f3 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x3221bd3f raw3270_request_set_idal +EXPORT_SYMBOL vmlinux 0x322ce72f mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x32378682 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x3238a155 rename_lock +EXPORT_SYMBOL vmlinux 0x3249c003 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x324b73d6 write_inode_now +EXPORT_SYMBOL vmlinux 0x324f1899 param_ops_bint +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x3254ec2c register_cdrom +EXPORT_SYMBOL vmlinux 0x325dc801 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x3275689f smp_ctl_set_bit +EXPORT_SYMBOL vmlinux 0x32904b47 dev_activate +EXPORT_SYMBOL vmlinux 0x32a06033 generic_show_options +EXPORT_SYMBOL vmlinux 0x32bbfc58 compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x32c6a2d8 _ebcasc_500 +EXPORT_SYMBOL vmlinux 0x32debb16 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x32e947d8 __dax_fault +EXPORT_SYMBOL vmlinux 0x32f9c768 unregister_external_irq +EXPORT_SYMBOL vmlinux 0x332310b1 arp_xmit +EXPORT_SYMBOL vmlinux 0x332f4f13 seq_dentry +EXPORT_SYMBOL vmlinux 0x3343562e bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x334668cf __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x334edb3a blk_fetch_request +EXPORT_SYMBOL vmlinux 0x3367893b seq_read +EXPORT_SYMBOL vmlinux 0x33686b8a __debug_sprintf_exception +EXPORT_SYMBOL vmlinux 0x338bbef8 __ndelay +EXPORT_SYMBOL vmlinux 0x33b959c9 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33f74de3 _ascebc_500 +EXPORT_SYMBOL vmlinux 0x340204e6 iucv_root +EXPORT_SYMBOL vmlinux 0x341cbed2 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x3467dd1b rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34b15421 genl_notify +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34fada2b raw3270_reset +EXPORT_SYMBOL vmlinux 0x34fdb40b __napi_complete +EXPORT_SYMBOL vmlinux 0x350745dd scsi_device_resume +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x353644ce n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0x35588be0 dma_pool_create +EXPORT_SYMBOL vmlinux 0x3558fa24 crc32_be +EXPORT_SYMBOL vmlinux 0x358421f1 key_alloc +EXPORT_SYMBOL vmlinux 0x359963c3 kern_unmount +EXPORT_SYMBOL vmlinux 0x35a18d30 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35c29326 debug_event_common +EXPORT_SYMBOL vmlinux 0x35cc780b netif_napi_del +EXPORT_SYMBOL vmlinux 0x35d56406 __lock_buffer +EXPORT_SYMBOL vmlinux 0x35d7a06f xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x35f272d3 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x3602aba9 raw3270_register_notifier +EXPORT_SYMBOL vmlinux 0x362f46a9 clear_nlink +EXPORT_SYMBOL vmlinux 0x363103de bio_endio +EXPORT_SYMBOL vmlinux 0x365b94f0 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x365e8fe1 proc_symlink +EXPORT_SYMBOL vmlinux 0x369a7257 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36bfde69 security_file_permission +EXPORT_SYMBOL vmlinux 0x36c78967 path_put +EXPORT_SYMBOL vmlinux 0x36cbaa12 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x36dabdc9 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x37021a7e xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x37045ea3 write_one_page +EXPORT_SYMBOL vmlinux 0x3718c116 arch_lock_relax +EXPORT_SYMBOL vmlinux 0x372dc1c6 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x372f2ea8 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x372fc5a5 pci_bus_get +EXPORT_SYMBOL vmlinux 0x3737f484 end_page_writeback +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37570157 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x375a43d1 kfree_skb +EXPORT_SYMBOL vmlinux 0x376f4da0 sock_rfree +EXPORT_SYMBOL vmlinux 0x3774c96c ida_simple_remove +EXPORT_SYMBOL vmlinux 0x378a8750 bioset_free +EXPORT_SYMBOL vmlinux 0x379f38c5 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x37ae6568 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b554d5 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x37b82d14 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37ca7593 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x37d0be74 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x37d4b5e3 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x37ff4c06 copy_from_user_overflow +EXPORT_SYMBOL vmlinux 0x380da715 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x382903f3 kern_path_create +EXPORT_SYMBOL vmlinux 0x382963be no_llseek +EXPORT_SYMBOL vmlinux 0x3847863e nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x389e57c9 dm_io +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38c61ce6 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x38cb82de file_update_time +EXPORT_SYMBOL vmlinux 0x38d1a924 kernel_bind +EXPORT_SYMBOL vmlinux 0x38d787dd scsi_host_get +EXPORT_SYMBOL vmlinux 0x38f6835a generic_listxattr +EXPORT_SYMBOL vmlinux 0x390110cd ip_getsockopt +EXPORT_SYMBOL vmlinux 0x391f1993 d_set_d_op +EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3966d2d9 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399d05b8 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39fec5c2 vfs_statfs +EXPORT_SYMBOL vmlinux 0x3a04795c generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x3a2e0785 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x3a3380ab register_service_level +EXPORT_SYMBOL vmlinux 0x3a6104d0 copy_to_iter +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 0x3ab1030b tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x3ab3b24e tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x3ab41b25 __copy_in_user +EXPORT_SYMBOL vmlinux 0x3ae321a2 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x3aee85f4 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x3b00dcfc scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x3b046d04 request_firmware +EXPORT_SYMBOL vmlinux 0x3b07d01b inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x3b0e2de7 module_refcount +EXPORT_SYMBOL vmlinux 0x3b4942c7 d_genocide +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3bd9a801 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x3c00b1cb vfs_readf +EXPORT_SYMBOL vmlinux 0x3c08e5d1 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x3c0b4eee __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x3c0ced8e __netif_schedule +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c519486 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0x3c7d64df dquot_commit_info +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3ca324a9 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x3ca97537 md_flush_request +EXPORT_SYMBOL vmlinux 0x3cadf668 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x3cb7041a xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x3cbe5ff5 key_revoke +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce5a589 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x3cece6d2 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x3cf7750b add_disk +EXPORT_SYMBOL vmlinux 0x3d117a60 itcw_calc_size +EXPORT_SYMBOL vmlinux 0x3d17f6df scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x3d3294fd cdev_add +EXPORT_SYMBOL vmlinux 0x3d33ff06 done_path_create +EXPORT_SYMBOL vmlinux 0x3d527b38 scsi_device_get +EXPORT_SYMBOL vmlinux 0x3d551612 dev_uc_init +EXPORT_SYMBOL vmlinux 0x3d66a0d7 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x3daca9c1 scsi_print_result +EXPORT_SYMBOL vmlinux 0x3dc80ce3 free_page_put_link +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd494f3 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dfe4a12 inet_del_offload +EXPORT_SYMBOL vmlinux 0x3e058e31 bio_chain +EXPORT_SYMBOL vmlinux 0x3e09c6df netif_rx_ni +EXPORT_SYMBOL vmlinux 0x3e176ff2 __put_cred +EXPORT_SYMBOL vmlinux 0x3e192bdf shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x3e5e6685 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x3e751c8f __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x3e7bdf14 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e96f9a2 register_sysctl +EXPORT_SYMBOL vmlinux 0x3eb47ea2 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x3eb73ab0 replace_mount_options +EXPORT_SYMBOL vmlinux 0x3ed8cd20 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x3f120e44 param_get_ullong +EXPORT_SYMBOL vmlinux 0x3f146fcf __break_lease +EXPORT_SYMBOL vmlinux 0x3f229569 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x3f257d9b posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x3f339f55 generic_writepages +EXPORT_SYMBOL vmlinux 0x3f417241 set_anon_super +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f50d2d4 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x3f55885d set_cached_acl +EXPORT_SYMBOL vmlinux 0x3f5b44cc zero_fill_bio +EXPORT_SYMBOL vmlinux 0x3f7376f3 inet_add_offload +EXPORT_SYMBOL vmlinux 0x3f764769 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x3f842084 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x3f89e138 inet_ioctl +EXPORT_SYMBOL vmlinux 0x3f964548 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x3fa913da strspn +EXPORT_SYMBOL vmlinux 0x3fab6623 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x3fb0b9e3 __udelay +EXPORT_SYMBOL vmlinux 0x3fb58b6d up +EXPORT_SYMBOL vmlinux 0x3fd3ff1c find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x3fd733a3 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x40020120 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x40031ebc sync_inode +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x402d045e blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x4031bf07 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40984549 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a1e031 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e6df69 __nla_reserve +EXPORT_SYMBOL vmlinux 0x40e8b427 dev_add_offload +EXPORT_SYMBOL vmlinux 0x410d6d41 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x411840eb qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414d5fe3 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418d81ba neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x419ce4fa generic_delete_inode +EXPORT_SYMBOL vmlinux 0x41b05098 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41c10e59 eth_header +EXPORT_SYMBOL vmlinux 0x41c5c906 skb_insert +EXPORT_SYMBOL vmlinux 0x41dd3019 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x41df696c wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x41e357d2 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x41fa715c pci_restore_state +EXPORT_SYMBOL vmlinux 0x42059b18 dev_warn +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x423ab6cb seq_printf +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x4276ed9c netif_rx +EXPORT_SYMBOL vmlinux 0x42853ca0 pci_clear_master +EXPORT_SYMBOL vmlinux 0x4294738f dm_register_target +EXPORT_SYMBOL vmlinux 0x42f85bf6 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x42f87457 sock_from_file +EXPORT_SYMBOL vmlinux 0x42fd6a6a fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430b2dac scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x433185d4 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x4331d4e2 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x4341b4da flow_cache_fini +EXPORT_SYMBOL vmlinux 0x4352665e sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x4359ecdb dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x4372810b scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43903558 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x439146fb simple_write_begin +EXPORT_SYMBOL vmlinux 0x43a0fc8c __brelse +EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x43bafe05 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x43bdfa20 console_irq +EXPORT_SYMBOL vmlinux 0x43cf3bc3 dql_completed +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x44017bfb simple_transaction_release +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x441c14d3 generic_readlink +EXPORT_SYMBOL vmlinux 0x4436ab9b config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x44393255 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x443e5db6 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x4467c6c1 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x44901701 icmp_send +EXPORT_SYMBOL vmlinux 0x44a82be9 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44b204af tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x44b58362 get_empty_filp +EXPORT_SYMBOL vmlinux 0x44ccef21 get_ccwdev_by_busid +EXPORT_SYMBOL vmlinux 0x44e00622 param_get_ulong +EXPORT_SYMBOL vmlinux 0x44e48a10 tcp_child_process +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x450894de kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x450b39c2 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x451219c7 netdev_printk +EXPORT_SYMBOL vmlinux 0x452bfb6d iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45580920 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x4560c630 vfs_read +EXPORT_SYMBOL vmlinux 0x4563401c pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x456ab0be __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x456f2a36 d_obtain_root +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45af9572 xfrm_input +EXPORT_SYMBOL vmlinux 0x45c92313 VMALLOC_END +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 0x4630a07b kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x4636a185 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x464bbffe set_posix_acl +EXPORT_SYMBOL vmlinux 0x464dd5be dquot_get_state +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46608a9d blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467c4252 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x46a19ee5 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x46b67693 hex2bin +EXPORT_SYMBOL vmlinux 0x46d59f7d smp_cpu_mt_shift +EXPORT_SYMBOL vmlinux 0x46e5b036 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x46f0a15f neigh_app_ns +EXPORT_SYMBOL vmlinux 0x46fc6ab3 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x47202ca7 inode_init_once +EXPORT_SYMBOL vmlinux 0x472e100f vm_mmap +EXPORT_SYMBOL vmlinux 0x47330868 scsi_execute +EXPORT_SYMBOL vmlinux 0x4736ddb7 sk_wait_data +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x47609975 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47c236ae tty_check_change +EXPORT_SYMBOL vmlinux 0x47c23a79 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x47d70c02 pci_pme_active +EXPORT_SYMBOL vmlinux 0x47dcf16c dev_addr_flush +EXPORT_SYMBOL vmlinux 0x47e7089d pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x47e7abd3 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x4823819e raw3270_buffer_address +EXPORT_SYMBOL vmlinux 0x487889e9 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x48808629 napi_complete_done +EXPORT_SYMBOL vmlinux 0x48b2c323 ip_defrag +EXPORT_SYMBOL vmlinux 0x48cb1522 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x48de2447 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x48ff5e4a get_disk +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4907a56d wait_for_completion +EXPORT_SYMBOL vmlinux 0x4908a71a __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x49240537 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x4924c850 _raw_write_trylock_retry +EXPORT_SYMBOL vmlinux 0x492918b7 __destroy_inode +EXPORT_SYMBOL vmlinux 0x494ec05c save_mount_options +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x496468ed skb_copy +EXPORT_SYMBOL vmlinux 0x497d71bd pci_request_region +EXPORT_SYMBOL vmlinux 0x498997f8 security_inode_readlink +EXPORT_SYMBOL vmlinux 0x498a8488 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b7e04f up_read +EXPORT_SYMBOL vmlinux 0x49c66752 __quota_error +EXPORT_SYMBOL vmlinux 0x49f1f554 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a058460 param_get_uint +EXPORT_SYMBOL vmlinux 0x4a067c09 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x4a08c231 set_bh_page +EXPORT_SYMBOL vmlinux 0x4a20420c jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x4a2231b6 __check_sticky +EXPORT_SYMBOL vmlinux 0x4a3f1402 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x4a487837 ccw_device_tm_start_timeout +EXPORT_SYMBOL vmlinux 0x4a699029 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x4a6c3f83 check_disk_change +EXPORT_SYMBOL vmlinux 0x4a794f5f get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x4a960d80 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x4ab2ed0a netdev_crit +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4aca8f59 sget +EXPORT_SYMBOL vmlinux 0x4acd676f dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4afb6349 read_cache_page +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b173257 tty_throttle +EXPORT_SYMBOL vmlinux 0x4b1d4bea ns_capable +EXPORT_SYMBOL vmlinux 0x4b324066 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x4b5814ef kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b7a6d23 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x4ba06235 __get_page_tail +EXPORT_SYMBOL vmlinux 0x4bb3f332 PDE_DATA +EXPORT_SYMBOL vmlinux 0x4bbd3a62 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x4bcf88e9 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x4bead5a6 param_get_ushort +EXPORT_SYMBOL vmlinux 0x4c018e0e inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x4c0f9614 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x4c21f8f3 poll_initwait +EXPORT_SYMBOL vmlinux 0x4c303505 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x4c332dd5 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c38a9b3 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x4c4c956e nla_memcmp +EXPORT_SYMBOL vmlinux 0x4c556432 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x4c676917 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x4c729869 find_get_entry +EXPORT_SYMBOL vmlinux 0x4c9acd64 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x4ca7bc89 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x4cbb6a89 netdev_features_change +EXPORT_SYMBOL vmlinux 0x4cc2696a __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x4cd4cfb1 kernel_listen +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cfdf96e jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x4d04b289 audit_log_start +EXPORT_SYMBOL vmlinux 0x4d3c44b5 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x4d829244 sk_stream_error +EXPORT_SYMBOL vmlinux 0x4d83e670 kfree_put_link +EXPORT_SYMBOL vmlinux 0x4d8a6039 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9dbf8d ccw_device_tm_start_timeout_key +EXPORT_SYMBOL vmlinux 0x4dcb2253 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x4dda726b match_strlcpy +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4de5e589 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x4dea1053 memchr +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df1eadf is_bad_inode +EXPORT_SYMBOL vmlinux 0x4df4b602 kernel_accept +EXPORT_SYMBOL vmlinux 0x4e183cd5 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x4e20e39a filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e452d16 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x4e59cbd0 nf_log_trace +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e9a2e39 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x4e9f19b3 d_add_ci +EXPORT_SYMBOL vmlinux 0x4ea48e57 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x4ec229b3 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x4edd3fb3 udp_add_offload +EXPORT_SYMBOL vmlinux 0x4ef4f163 tccb_init +EXPORT_SYMBOL vmlinux 0x4f0045f3 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x4f0899f3 kill_pid +EXPORT_SYMBOL vmlinux 0x4f09b490 ilookup +EXPORT_SYMBOL vmlinux 0x4f0ca951 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x4f1bd9fd nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f20b68e mpage_readpage +EXPORT_SYMBOL vmlinux 0x4f242f1e jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x4f297400 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x4f2cd1b5 __cpcmd +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f4fe337 dquot_operations +EXPORT_SYMBOL vmlinux 0x4f523716 default_llseek +EXPORT_SYMBOL vmlinux 0x4f54062a blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f7ad610 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x4f91c83b dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x4f91faee config_item_get +EXPORT_SYMBOL vmlinux 0x4feae3fb param_set_short +EXPORT_SYMBOL vmlinux 0x4fec53f4 tty_port_init +EXPORT_SYMBOL vmlinux 0x5001a6c7 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5023794d raw3270_activate_view +EXPORT_SYMBOL vmlinux 0x5033c2cf skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x503a381e ip_check_defrag +EXPORT_SYMBOL vmlinux 0x5053482f do_splice_from +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x50684d9a dev_printk_emit +EXPORT_SYMBOL vmlinux 0x50720c5f snprintf +EXPORT_SYMBOL vmlinux 0x50946ae8 stop_tty +EXPORT_SYMBOL vmlinux 0x509ad763 dev_addr_add +EXPORT_SYMBOL vmlinux 0x50b13caf start_tty +EXPORT_SYMBOL vmlinux 0x50b18ef3 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x50b99cd3 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50c1a982 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50fd5198 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x51094d83 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x510c2535 xz_dec_run +EXPORT_SYMBOL vmlinux 0x510d13a8 from_kgid +EXPORT_SYMBOL vmlinux 0x51108e8a __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x516220c5 dqget +EXPORT_SYMBOL vmlinux 0x517eaf1c devm_ioremap +EXPORT_SYMBOL vmlinux 0x51868e59 set_groups +EXPORT_SYMBOL vmlinux 0x51c3c0e4 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x51cbf6a0 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x51ce25bf __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x5209fb98 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x523a574b account_page_redirty +EXPORT_SYMBOL vmlinux 0x52497a0c blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x525c4bc9 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x526602d3 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x527236f6 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x5279ba39 __vfs_write +EXPORT_SYMBOL vmlinux 0x52b58a50 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x52ce9c80 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x52d62f83 inet_frags_init +EXPORT_SYMBOL vmlinux 0x52e316c7 get_super +EXPORT_SYMBOL vmlinux 0x52f1ac23 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x52f5c309 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x531aec0a udp_ioctl +EXPORT_SYMBOL vmlinux 0x5331a532 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x5365b446 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53c7131b put_page +EXPORT_SYMBOL vmlinux 0x53c9679f jbd2_journal_init_dev +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 0x542867a2 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x543d364c sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54768bab vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x548cdcf3 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x5497dc81 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x549dc63a component_match_add +EXPORT_SYMBOL vmlinux 0x54a4ea6f printk_emit +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54ae5706 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x54baab44 sock_create_kern +EXPORT_SYMBOL vmlinux 0x54c550c8 ping_prot +EXPORT_SYMBOL vmlinux 0x54d5c4c4 down_read_trylock +EXPORT_SYMBOL vmlinux 0x54e302ee tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f15401 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x55083e76 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x55663d6c kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x55678b4b bsearch +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x558a3c29 unlock_page +EXPORT_SYMBOL vmlinux 0x5599f189 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x55a3f3e0 sclp_add_request +EXPORT_SYMBOL vmlinux 0x55ab4f5e scsi_init_io +EXPORT_SYMBOL vmlinux 0x55c9b795 kbd_alloc +EXPORT_SYMBOL vmlinux 0x55d19547 md_check_recovery +EXPORT_SYMBOL vmlinux 0x55fbaf1d smsg_unregister_callback +EXPORT_SYMBOL vmlinux 0x560b168d diag_stat_inc +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563f8789 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x5670ebaa nf_reinject +EXPORT_SYMBOL vmlinux 0x5694c53d d_invalidate +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56cb833c kill_litter_super +EXPORT_SYMBOL vmlinux 0x56dc9a6a pci_set_power_state +EXPORT_SYMBOL vmlinux 0x56e3e581 search_binary_handler +EXPORT_SYMBOL vmlinux 0x56f408da neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x570df975 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x5718d2a5 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x572746fc sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5736829f d_set_fallthru +EXPORT_SYMBOL vmlinux 0x573e1f5b unregister_qdisc +EXPORT_SYMBOL vmlinux 0x574ab555 cdrom_release +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57701e2c xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x579a2d5b inet_shutdown +EXPORT_SYMBOL vmlinux 0x57a8dcc8 __do_once_done +EXPORT_SYMBOL vmlinux 0x57d0510e simple_open +EXPORT_SYMBOL vmlinux 0x57f9b3aa simple_follow_link +EXPORT_SYMBOL vmlinux 0x581658a3 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5822d7d8 nf_register_hooks +EXPORT_SYMBOL vmlinux 0x5823cdd3 completion_done +EXPORT_SYMBOL vmlinux 0x582f68cf dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x5838087a tty_port_close_start +EXPORT_SYMBOL vmlinux 0x5847b8af tcw_finalize +EXPORT_SYMBOL vmlinux 0x585bb7f4 mntget +EXPORT_SYMBOL vmlinux 0x585e24d6 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x5866ad04 __getblk_slow +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58771c02 skb_seq_read +EXPORT_SYMBOL vmlinux 0x589d9507 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58cd1b54 string_escape_mem +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f2b68b jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x58f79e61 __blk_end_request +EXPORT_SYMBOL vmlinux 0x58ff76c9 kthread_bind +EXPORT_SYMBOL vmlinux 0x591c9c92 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x591eed3d blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x5924450e tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x593545c2 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x5948d6d0 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x5957028d ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x598427ee tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x5994a624 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x59a71091 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x59cdfecb softnet_data +EXPORT_SYMBOL vmlinux 0x59d8d6da xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x59f45825 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x59f749c0 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x5a31ddce ccw_driver_unregister +EXPORT_SYMBOL vmlinux 0x5a34a45c __kmalloc +EXPORT_SYMBOL vmlinux 0x5a39ee0e iget_failed +EXPORT_SYMBOL vmlinux 0x5a58bfd7 scmd_printk +EXPORT_SYMBOL vmlinux 0x5a5e7ea3 simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x5a6377ac buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x5a741e11 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x5a8cdb11 single_release +EXPORT_SYMBOL vmlinux 0x5a9fc9d2 bd_set_size +EXPORT_SYMBOL vmlinux 0x5aa92039 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x5aaaf248 proc_set_size +EXPORT_SYMBOL vmlinux 0x5ac11011 netif_device_detach +EXPORT_SYMBOL vmlinux 0x5ad472da qdisc_destroy +EXPORT_SYMBOL vmlinux 0x5ae3fec5 release_sock +EXPORT_SYMBOL vmlinux 0x5b28bf5d memremap +EXPORT_SYMBOL vmlinux 0x5b3a51a7 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x5b3bead8 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x5b468c2d blk_get_request +EXPORT_SYMBOL vmlinux 0x5b5f30a8 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x5b5fe3a7 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x5b604bd1 segment_type +EXPORT_SYMBOL vmlinux 0x5b815d5c xfrm_register_km +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 0x5bd69e14 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x5bfea852 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x5c127dc9 sock_edemux +EXPORT_SYMBOL vmlinux 0x5c1c90f1 unlock_rename +EXPORT_SYMBOL vmlinux 0x5c1f2000 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x5c32cf20 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x5c9c36b5 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x5c9fd924 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x5cad5048 raw3270_deactivate_view +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5cea0502 iucv_bus +EXPORT_SYMBOL vmlinux 0x5cfbb198 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x5d11d95c trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d5947ee skb_queue_tail +EXPORT_SYMBOL vmlinux 0x5d5fd438 get_guest_storage_key +EXPORT_SYMBOL vmlinux 0x5d615648 brioctl_set +EXPORT_SYMBOL vmlinux 0x5d855b64 del_gendisk +EXPORT_SYMBOL vmlinux 0x5d9ec98d nf_log_unregister +EXPORT_SYMBOL vmlinux 0x5da7bfcf scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x5db79b5b elevator_alloc +EXPORT_SYMBOL vmlinux 0x5dbbe98e memmove +EXPORT_SYMBOL vmlinux 0x5dc0f338 diag_stat_inc_norecursion +EXPORT_SYMBOL vmlinux 0x5dc2f53b tty_do_resize +EXPORT_SYMBOL vmlinux 0x5dc5dff3 tty_port_put +EXPORT_SYMBOL vmlinux 0x5de1ca19 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x5e15d3b5 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x5e1ff816 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x5e86171d raw3270_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5e89b4ce dev_base_lock +EXPORT_SYMBOL vmlinux 0x5e908194 make_kgid +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9a3a3f scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x5ea3204f xfrm_init_state +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb44044 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x5eb661ba netdev_info +EXPORT_SYMBOL vmlinux 0x5ec1678a lease_get_mtime +EXPORT_SYMBOL vmlinux 0x5ec2d796 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x5ed65810 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x5efffd12 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f2c7317 bio_reset +EXPORT_SYMBOL vmlinux 0x5f3d3ea7 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x5f4b2de8 cio_irb +EXPORT_SYMBOL vmlinux 0x5f62ca28 sock_init_data +EXPORT_SYMBOL vmlinux 0x5f681c8e inet6_protos +EXPORT_SYMBOL vmlinux 0x5f6d708b netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x5f74f93f kernel_getsockname +EXPORT_SYMBOL vmlinux 0x5f778261 raw3270_request_alloc +EXPORT_SYMBOL vmlinux 0x5f8fe173 prepare_to_wait +EXPORT_SYMBOL vmlinux 0x5f994b33 generic_read_dir +EXPORT_SYMBOL vmlinux 0x5fc81f23 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x5fc87f76 set_device_ro +EXPORT_SYMBOL vmlinux 0x5fd2298e strnstr +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5ffaf2de arch_spin_trylock_retry +EXPORT_SYMBOL vmlinux 0x5fff0262 md_cluster_ops +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 0x603c5a00 import_iovec +EXPORT_SYMBOL vmlinux 0x604bd0d4 down_read +EXPORT_SYMBOL vmlinux 0x605f1556 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x6061db20 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x60765abe scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60cddb17 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x60d3032e pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x6105e2ab xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x610f3dac configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x6125ae32 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612f94a8 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x614d095c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x618cf8cb bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x619ca6e9 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x619f1999 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x61a5e2cd pci_enable_device +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61b93212 mod_virt_timer_periodic +EXPORT_SYMBOL vmlinux 0x61c2bb51 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x61e2fec4 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x61f26c1b __napi_schedule +EXPORT_SYMBOL vmlinux 0x62010523 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x6218acf9 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6232d23b blk_delay_queue +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62bc1712 bio_add_page +EXPORT_SYMBOL vmlinux 0x62c061bf blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x62c8aa12 config_item_put +EXPORT_SYMBOL vmlinux 0x62fc23d7 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x6306ca9c register_gifconf +EXPORT_SYMBOL vmlinux 0x63098626 security_path_truncate +EXPORT_SYMBOL vmlinux 0x6309e597 build_skb +EXPORT_SYMBOL vmlinux 0x6311fb96 iput +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x63291d87 pipe_unlock +EXPORT_SYMBOL vmlinux 0x633ebca0 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x63756b86 skb_append +EXPORT_SYMBOL vmlinux 0x637bcd86 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x6386aca1 free_task +EXPORT_SYMBOL vmlinux 0x63964bf4 load_nls +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63ab3b8f dns_query +EXPORT_SYMBOL vmlinux 0x63c38d7b frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63ca28c1 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x63cb39e5 dquot_transfer +EXPORT_SYMBOL vmlinux 0x63d0ca2e would_dump +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f98d64 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6433e451 ccw_device_set_options +EXPORT_SYMBOL vmlinux 0x645ae4b4 vfs_llseek +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649bf007 pci_dev_get +EXPORT_SYMBOL vmlinux 0x64bcbec5 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x64ca6755 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x64d73fe6 noop_qdisc +EXPORT_SYMBOL vmlinux 0x6517bbfc generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x65215725 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x65379b28 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x656c7c7c xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x6583d3a2 pci_choose_state +EXPORT_SYMBOL vmlinux 0x65bf4ced blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x65daa364 tcw_set_tsb +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65f07069 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x661a788a eth_validate_addr +EXPORT_SYMBOL vmlinux 0x6630a12e ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x6655b29e prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x6691cf0d dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x669a841f pci_disable_device +EXPORT_SYMBOL vmlinux 0x66ba93f7 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x66c958e8 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x66e69897 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x66ef13a5 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x67025183 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x671b807f dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x672144bd strlcpy +EXPORT_SYMBOL vmlinux 0x6724e119 crc32_le +EXPORT_SYMBOL vmlinux 0x6728eb8b deactivate_super +EXPORT_SYMBOL vmlinux 0x676854a8 read_code +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x677c4b4a init_buffer +EXPORT_SYMBOL vmlinux 0x678641d5 debug_register +EXPORT_SYMBOL vmlinux 0x67a9dc2f pid_task +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67d7ccf9 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x67f357ee get_user_pages +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x681ed10b alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x68375fab tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x68411b07 open_check_o_direct +EXPORT_SYMBOL vmlinux 0x686b35b0 proc_remove +EXPORT_SYMBOL vmlinux 0x6889bb42 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x688b8cc2 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x68ab62f4 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x68b11340 sock_wfree +EXPORT_SYMBOL vmlinux 0x68b80a99 seq_write +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68c186d4 inet6_offloads +EXPORT_SYMBOL vmlinux 0x68dbf48e netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x68de369a downgrade_write +EXPORT_SYMBOL vmlinux 0x68e85108 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x68f24885 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x692900cd netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69a661ff inode_set_bytes +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69c26105 __d_drop +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a164177 put_disk +EXPORT_SYMBOL vmlinux 0x6a19bf3b inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x6a1e0ac9 init_special_inode +EXPORT_SYMBOL vmlinux 0x6a25c877 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x6a27b49f __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x6a43b65b neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a6f096c dquot_acquire +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6aa36cc4 netdev_err +EXPORT_SYMBOL vmlinux 0x6aaf48eb __skb_checksum +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6ace8035 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x6ae94e5d dquot_quota_off +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b4e2285 ether_setup +EXPORT_SYMBOL vmlinux 0x6b5e1f23 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x6b7c92e3 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x6b8ef303 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x6b999b4a neigh_destroy +EXPORT_SYMBOL vmlinux 0x6ba5739c __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x6ba8d1e8 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x6bb275d7 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc7c311 kmalloc_order +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6bddde6e km_new_mapping +EXPORT_SYMBOL vmlinux 0x6be15d2c wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x6be2fa64 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x6bebfd93 iterate_mounts +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c1836a5 simple_fill_super +EXPORT_SYMBOL vmlinux 0x6c29b490 path_noexec +EXPORT_SYMBOL vmlinux 0x6c440651 init_virt_timer +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c539049 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c9732e1 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x6ce0d9e4 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x6ce6d63c from_kprojid +EXPORT_SYMBOL vmlinux 0x6cf65cbd tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d1ea6ec strlcat +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d509146 tcw_get_intrg +EXPORT_SYMBOL vmlinux 0x6d56c16b csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x6d74d334 sg_miter_start +EXPORT_SYMBOL vmlinux 0x6d9288d2 idr_for_each +EXPORT_SYMBOL vmlinux 0x6d9afa3e dev_alert +EXPORT_SYMBOL vmlinux 0x6d9dac5f copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x6dd38eca proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x6ddb5e4d ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x6ddca21d down_trylock +EXPORT_SYMBOL vmlinux 0x6ddd4934 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x6de67c38 bdi_register +EXPORT_SYMBOL vmlinux 0x6deec41a tty_unthrottle +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df3bb35 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x6df58967 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x6e00b8cb _ebcasc +EXPORT_SYMBOL vmlinux 0x6e141847 padata_add_cpu +EXPORT_SYMBOL vmlinux 0x6e2748f8 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x6e3c4d05 d_drop +EXPORT_SYMBOL vmlinux 0x6e706d57 __page_symlink +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e72de2a trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x6e7471f1 security_path_link +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e828aad percpu_counter_set +EXPORT_SYMBOL vmlinux 0x6e87b2c8 sock_no_accept +EXPORT_SYMBOL vmlinux 0x6e8b362b posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x6e8bd3c0 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x6e8d252c inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x6e9ad290 cpu_have_feature +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eb27ea2 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x6ee6ae3b __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x6ef8b093 udplite_prot +EXPORT_SYMBOL vmlinux 0x6efa8d1d pci_request_regions +EXPORT_SYMBOL vmlinux 0x6f051292 simple_unlink +EXPORT_SYMBOL vmlinux 0x6f094f4a set_create_files_as +EXPORT_SYMBOL vmlinux 0x6f200b03 tcw_set_intrg +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f42b751 tty_vhangup +EXPORT_SYMBOL vmlinux 0x6f5e14b8 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x6f5ef93d memchr_inv +EXPORT_SYMBOL vmlinux 0x6f7140df rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x6f71ea5a simple_statfs +EXPORT_SYMBOL vmlinux 0x6f915271 airq_iv_create +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fc7e626 memzero_explicit +EXPORT_SYMBOL vmlinux 0x6fd26dde dev_alloc_name +EXPORT_SYMBOL vmlinux 0x6fe8b8d0 mutex_lock +EXPORT_SYMBOL vmlinux 0x701a96bf scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x701e77d0 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x70246a73 read_dev_sector +EXPORT_SYMBOL vmlinux 0x703904c1 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x706ed4d8 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x708fdec9 nvm_put_blk +EXPORT_SYMBOL vmlinux 0x70b08ae0 param_set_uint +EXPORT_SYMBOL vmlinux 0x70c2912b compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x70c35188 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x70da2cbc padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x70e46018 param_ops_charp +EXPORT_SYMBOL vmlinux 0x71191a19 tcp_filter +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7145aef0 segment_load +EXPORT_SYMBOL vmlinux 0x7149bbe0 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x715e38a2 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71a1a2dd fsync_bdev +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71ba7e7e scsi_host_put +EXPORT_SYMBOL vmlinux 0x71c0c3a8 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x71c7a024 padata_do_serial +EXPORT_SYMBOL vmlinux 0x71cd1735 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x71ce14c1 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x71cf2902 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x71dd27c0 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x71ea3be8 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x720bc967 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x723285a6 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x7242e96d strnchr +EXPORT_SYMBOL vmlinux 0x7248c2bc register_quota_format +EXPORT_SYMBOL vmlinux 0x724919f2 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x724b586d dquot_quota_on +EXPORT_SYMBOL vmlinux 0x725180b7 finish_open +EXPORT_SYMBOL vmlinux 0x72709935 __frontswap_store +EXPORT_SYMBOL vmlinux 0x727802b1 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x729878f9 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x72a09c69 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x72c3062d cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x72dac3a1 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x72dcf81b nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x72df1d5e param_set_invbool +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x7306533a sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x730d4e0b lg_local_lock +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x736b5e07 unregister_service_level +EXPORT_SYMBOL vmlinux 0x737f7954 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x738f4d25 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x73bf20c6 _ascebc +EXPORT_SYMBOL vmlinux 0x73caf7ac __sock_create +EXPORT_SYMBOL vmlinux 0x73ddd6c4 set_page_dirty +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x741f70a9 debug_stop_all +EXPORT_SYMBOL vmlinux 0x7425923c page_symlink +EXPORT_SYMBOL vmlinux 0x746fc4bf dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x7496b618 tcf_em_register +EXPORT_SYMBOL vmlinux 0x74ab65b3 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c3917e udplite_table +EXPORT_SYMBOL vmlinux 0x74c4ec16 dump_page +EXPORT_SYMBOL vmlinux 0x74d5f564 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74ed41c7 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x75031254 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x753d9133 may_umount +EXPORT_SYMBOL vmlinux 0x755b9963 netlink_ack +EXPORT_SYMBOL vmlinux 0x7563ca85 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x757ff7c4 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x7587b696 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x758fdcf1 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x759f07ae vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x75ac0197 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x75bc3032 nf_log_set +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75e97c9f get_cached_acl +EXPORT_SYMBOL vmlinux 0x75f636a5 __invalidate_device +EXPORT_SYMBOL vmlinux 0x75f8913f tcp_sendpage +EXPORT_SYMBOL vmlinux 0x75f95e6a configfs_register_group +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760e9955 vfs_fsync +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x765a0965 rt6_lookup +EXPORT_SYMBOL vmlinux 0x765b3acd padata_start +EXPORT_SYMBOL vmlinux 0x765c5168 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x766b2ec5 mapping_tagged +EXPORT_SYMBOL vmlinux 0x769df495 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x76a55dfb get_unmapped_area +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76da8174 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x7744da03 copy_from_iter +EXPORT_SYMBOL vmlinux 0x774fdbf0 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x7778b936 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x777dbe82 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x7781214b put_cmsg +EXPORT_SYMBOL vmlinux 0x77862c38 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x7791015d napi_get_frags +EXPORT_SYMBOL vmlinux 0x77954c1e gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x7797ce63 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77a514f6 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x77abbbb0 posix_test_lock +EXPORT_SYMBOL vmlinux 0x77b52225 follow_pfn +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c3d8f1 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x77d9ad14 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x77dc4234 dquot_disable +EXPORT_SYMBOL vmlinux 0x7803dffc __wake_up +EXPORT_SYMBOL vmlinux 0x7823c9b6 unregister_nls +EXPORT_SYMBOL vmlinux 0x782acba5 crc_t10dif +EXPORT_SYMBOL vmlinux 0x783a6ff3 kernel_write +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x784183c1 param_set_ushort +EXPORT_SYMBOL vmlinux 0x7864414c add_virt_timer_periodic +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78938132 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e6f1d2 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x7914551c jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x792e0d45 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x7979fa35 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x79912c9d genl_unregister_family +EXPORT_SYMBOL vmlinux 0x79a70cd7 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79b62961 mod_virt_timer +EXPORT_SYMBOL vmlinux 0x79d80298 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x79e2ede1 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x79eead29 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x7a17d511 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x7a1f9a01 seq_open_private +EXPORT_SYMBOL vmlinux 0x7a28e5bf debug_dflt_header_fn +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a477baf nvm_submit_io +EXPORT_SYMBOL vmlinux 0x7a5767e6 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x7a604fa5 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x7a6988f2 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a9cafa2 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ae73de1 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7af1b088 debug_raw_view +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b307b51 block_truncate_page +EXPORT_SYMBOL vmlinux 0x7b5a7137 strncat +EXPORT_SYMBOL vmlinux 0x7b638328 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x7b722ef9 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x7b8f4c40 key_create_or_update +EXPORT_SYMBOL vmlinux 0x7bdb30e1 tso_build_data +EXPORT_SYMBOL vmlinux 0x7bf479fe resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1a28eb blk_stop_queue +EXPORT_SYMBOL vmlinux 0x7c29f993 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x7c3dbaac kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x7c3f5c40 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x7c5d4a3a sclp_reactivate +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c7362ad tcw_get_data +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7ccecd0d ___pskb_trim +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cff93ea wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x7d0bea2e I_BDEV +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d103595 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d4ec594 find_lock_entry +EXPORT_SYMBOL vmlinux 0x7d526a48 __block_write_begin +EXPORT_SYMBOL vmlinux 0x7d6de4f5 iterate_fd +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d855c24 __get_user_pages +EXPORT_SYMBOL vmlinux 0x7d97cb4a bio_copy_data +EXPORT_SYMBOL vmlinux 0x7d9d6a9c __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x7dc373da touch_atime +EXPORT_SYMBOL vmlinux 0x7de58782 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x7de91a99 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e341459 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x7e4008e8 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x7e457e8f abort_creds +EXPORT_SYMBOL vmlinux 0x7e9b0494 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x7ed76262 udp_lib_get_port +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 0x7f2764fa lookup_one_len +EXPORT_SYMBOL vmlinux 0x7f2983ae blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x7f454aa3 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x7f4a2d77 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f6034ca udp_disconnect +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f9a7dda sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe5af87 simple_write_end +EXPORT_SYMBOL vmlinux 0x800ed8fa iget5_locked +EXPORT_SYMBOL vmlinux 0x802566c2 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x802de45b release_firmware +EXPORT_SYMBOL vmlinux 0x8039cf0a get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x804649de netdev_notice +EXPORT_SYMBOL vmlinux 0x805485ab __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x8068c3e6 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x806adbc0 arp_send +EXPORT_SYMBOL vmlinux 0x8073ac77 down_interruptible +EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x80956203 file_open_root +EXPORT_SYMBOL vmlinux 0x80a8c8ab kobject_add +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80eb8824 netlink_unicast +EXPORT_SYMBOL vmlinux 0x810d48ff sock_sendmsg +EXPORT_SYMBOL vmlinux 0x8112eeda dev_remove_pack +EXPORT_SYMBOL vmlinux 0x8128814c d_instantiate +EXPORT_SYMBOL vmlinux 0x8128c039 smsg_register_callback +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x814e82b0 flush_old_exec +EXPORT_SYMBOL vmlinux 0x815383b3 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x816c028a zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x817c89eb security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x8196b7d0 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x819e2ff5 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x81d35bfe tcw_get_tccb +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x824519f1 finish_wait +EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x824b8cfa d_find_any_alias +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x82735c26 config_item_set_name +EXPORT_SYMBOL vmlinux 0x827577c4 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x8278c08a __pagevec_release +EXPORT_SYMBOL vmlinux 0x827919e3 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x827bdca6 revalidate_disk +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82904541 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x83009b51 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x8303944b page_put_link +EXPORT_SYMBOL vmlinux 0x8368985b vfs_whiteout +EXPORT_SYMBOL vmlinux 0x836f095e eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x837eb52c prepare_creds +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83944c81 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83c99e1e param_ops_invbool +EXPORT_SYMBOL vmlinux 0x83e456be jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x83e4ea0c end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x842225dd xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x842c92ba skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x84455e85 bdget +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x8475060b raw3270_request_add_data +EXPORT_SYMBOL vmlinux 0x847765e9 __crc32c_le +EXPORT_SYMBOL vmlinux 0x84792063 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x84a16b47 kobject_set_name +EXPORT_SYMBOL vmlinux 0x84a4496d jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x84c52630 param_get_long +EXPORT_SYMBOL vmlinux 0x84c89e5e elevator_init +EXPORT_SYMBOL vmlinux 0x84cf9fa7 eth_header_cache +EXPORT_SYMBOL vmlinux 0x84d7646f param_get_invbool +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x8508d790 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x8524a1dd __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x852fc427 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x853355f1 simple_readpage +EXPORT_SYMBOL vmlinux 0x855234a2 register_netdevice +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85a3d088 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x85abc85f strncmp +EXPORT_SYMBOL vmlinux 0x85b8a78e skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x85c158fa ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x85ce78ec padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x85d206bb xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e60f8f kernel_sendpage +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f3d3e9 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x85fb4b49 iucv_if +EXPORT_SYMBOL vmlinux 0x860e3103 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x8610ee8a xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x862fd20e jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x86478ad4 tcp_check_req +EXPORT_SYMBOL vmlinux 0x864ba9ff gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8653dedb irq_set_chip +EXPORT_SYMBOL vmlinux 0x86585bd5 have_submounts +EXPORT_SYMBOL vmlinux 0x867edfa0 skb_dequeue +EXPORT_SYMBOL vmlinux 0x8687d9f9 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86953482 __kernel_write +EXPORT_SYMBOL vmlinux 0x8695971b scsi_scan_target +EXPORT_SYMBOL vmlinux 0x86992efe blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86adf9fa _dev_info +EXPORT_SYMBOL vmlinux 0x86e8bbb0 __register_nls +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fd7c2f bdev_read_only +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x872263ad unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x87359947 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x875e603e sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x87636dd9 tcw_set_tccb +EXPORT_SYMBOL vmlinux 0x8770b4c9 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87972e8b pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x879acd55 blk_finish_request +EXPORT_SYMBOL vmlinux 0x87bd19bf neigh_connected_output +EXPORT_SYMBOL vmlinux 0x87c58a96 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x87eb7d96 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x88146973 idr_destroy +EXPORT_SYMBOL vmlinux 0x88283864 dquot_alloc +EXPORT_SYMBOL vmlinux 0x882b1f72 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x8833bc7e __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x888847b0 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x88cea752 node_states +EXPORT_SYMBOL vmlinux 0x88cf6800 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x88d6d36d nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x88e1aeed dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x88fc6022 lg_local_unlock +EXPORT_SYMBOL vmlinux 0x88fedb93 mpage_writepage +EXPORT_SYMBOL vmlinux 0x8914abe8 _raw_read_trylock_retry +EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat +EXPORT_SYMBOL vmlinux 0x89224ad1 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x8926acfe set_guest_storage_key +EXPORT_SYMBOL vmlinux 0x892de3fb __nla_put +EXPORT_SYMBOL vmlinux 0x8937de06 devm_memunmap +EXPORT_SYMBOL vmlinux 0x8952a637 kthread_stop +EXPORT_SYMBOL vmlinux 0x896b6810 generic_setlease +EXPORT_SYMBOL vmlinux 0x896f1d39 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x89aac83d bdi_register_dev +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89c16474 block_commit_write +EXPORT_SYMBOL vmlinux 0x89c9ac33 nvm_register_target +EXPORT_SYMBOL vmlinux 0x89de3eb9 register_md_personality +EXPORT_SYMBOL vmlinux 0x89fcc950 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x89ff68fa ida_pre_get +EXPORT_SYMBOL vmlinux 0x8a0f74b8 send_sig +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a1f02d2 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x8a261a64 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x8a2652b5 prepare_binprm +EXPORT_SYMBOL vmlinux 0x8a301eb2 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a52a674 block_write_full_page +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a8ed5b8 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x8a97c70e nf_register_hook +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aba9e66 vmap +EXPORT_SYMBOL vmlinux 0x8ac3ad22 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x8ac55bdf bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x8ae7929f sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x8b037e81 force_sig +EXPORT_SYMBOL vmlinux 0x8b299235 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b4ed94c generic_setxattr +EXPORT_SYMBOL vmlinux 0x8b586806 debug_register_mode +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 0x8bb608be sock_setsockopt +EXPORT_SYMBOL vmlinux 0x8c1ff8ca tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x8c50598d pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x8c52264f tso_start +EXPORT_SYMBOL vmlinux 0x8c522746 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8cae3df3 km_state_notify +EXPORT_SYMBOL vmlinux 0x8cb5ca0d posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x8cc5f279 simple_lookup +EXPORT_SYMBOL vmlinux 0x8ce08083 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x8d041c0a blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x8d0d2bb2 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x8d15a31c skb_put +EXPORT_SYMBOL vmlinux 0x8d2ec31b blk_peek_request +EXPORT_SYMBOL vmlinux 0x8d32c895 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x8d3853d9 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x8d430320 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x8d48c1fc __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5c3e9c devm_iounmap +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d7a6097 debug_hex_ascii_view +EXPORT_SYMBOL vmlinux 0x8d8f41eb tty_register_device +EXPORT_SYMBOL vmlinux 0x8d99b1a6 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x8dd4f74e __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x8dd69c5c __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x8dd99073 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x8df1d62a register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x8e112eb0 netlink_set_err +EXPORT_SYMBOL vmlinux 0x8e209c5b skb_unlink +EXPORT_SYMBOL vmlinux 0x8e2ef23f init_task +EXPORT_SYMBOL vmlinux 0x8e352276 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x8e3a0485 get_super_thawed +EXPORT_SYMBOL vmlinux 0x8e4b4bd6 param_get_string +EXPORT_SYMBOL vmlinux 0x8e51921c lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x8e5386ff vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e879bb7 __vmalloc +EXPORT_SYMBOL vmlinux 0x8eb2d982 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x8ebfd0c1 netdev_warn +EXPORT_SYMBOL vmlinux 0x8ec7a356 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x8ec8c2d0 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x8ed18f05 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x8ed4c341 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x8ed56a16 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x8ef31861 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x8efd1e35 dq_data_lock +EXPORT_SYMBOL vmlinux 0x8f08e7dd tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x8f0ffbbf __devm_release_region +EXPORT_SYMBOL vmlinux 0x8f12e59c cdrom_check_events +EXPORT_SYMBOL vmlinux 0x8f3de81e blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x8f45f226 dqput +EXPORT_SYMBOL vmlinux 0x8f4a83a9 devm_release_resource +EXPORT_SYMBOL vmlinux 0x8f636d23 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x8f7a333c pci_release_regions +EXPORT_SYMBOL vmlinux 0x8fa1f9a2 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x8fbdd43b eth_gro_complete +EXPORT_SYMBOL vmlinux 0x8fdec95b crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x900a4a4d padata_free +EXPORT_SYMBOL vmlinux 0x900f06d4 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x9027eb6b d_find_alias +EXPORT_SYMBOL vmlinux 0x9048d276 down_write +EXPORT_SYMBOL vmlinux 0x9065a0c7 dst_release +EXPORT_SYMBOL vmlinux 0x9072c841 udp_prot +EXPORT_SYMBOL vmlinux 0x908628c1 skb_clone +EXPORT_SYMBOL vmlinux 0x9087343d tcp_splice_read +EXPORT_SYMBOL vmlinux 0x90d6d837 bio_advance +EXPORT_SYMBOL vmlinux 0x90df7acb blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x90e53655 mutex_trylock +EXPORT_SYMBOL vmlinux 0x910aed63 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x9116b417 save_fpu_regs +EXPORT_SYMBOL vmlinux 0x91223b42 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x91435334 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x9166e767 lro_flush_all +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x9176c179 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x917f6e99 revert_creds +EXPORT_SYMBOL vmlinux 0x91905b89 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x91a30fdc padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x91c0d75a try_module_get +EXPORT_SYMBOL vmlinux 0x91c9c5de security_mmap_file +EXPORT_SYMBOL vmlinux 0x91dd59be pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x91ef4fc0 dst_init +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x91fd1c3f user_path_at_empty +EXPORT_SYMBOL vmlinux 0x920acff1 do_truncate +EXPORT_SYMBOL vmlinux 0x9217a040 ccw_device_set_options_mask +EXPORT_SYMBOL vmlinux 0x921a4810 d_alloc_name +EXPORT_SYMBOL vmlinux 0x92392cd9 iov_shorten +EXPORT_SYMBOL vmlinux 0x9263f9c8 generic_fillattr +EXPORT_SYMBOL vmlinux 0x92680d4f blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x9269cf1e get_task_exe_file +EXPORT_SYMBOL vmlinux 0x92861741 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92abd644 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x92fa5298 alloc_disk +EXPORT_SYMBOL vmlinux 0x92fe6ff2 lg_global_lock +EXPORT_SYMBOL vmlinux 0x931c433b kfree_skb_list +EXPORT_SYMBOL vmlinux 0x936a324d rtnl_create_link +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x938c32f3 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93e9d3b4 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x93eddc7a truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x945775a5 segment_save +EXPORT_SYMBOL vmlinux 0x946c532f dev_crit +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b21ed7 d_delete +EXPORT_SYMBOL vmlinux 0x94fdb52b param_ops_bool +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x9516d49f bio_integrity_alloc +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 0x956a5613 nobh_write_end +EXPORT_SYMBOL vmlinux 0x956b554c __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x9581ea62 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x95830096 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x95ac90cd xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x95ba4e42 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x95ceb864 key_update +EXPORT_SYMBOL vmlinux 0x95e415ad neigh_table_init +EXPORT_SYMBOL vmlinux 0x95e7c20b end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x96046ab2 dquot_drop +EXPORT_SYMBOL vmlinux 0x960486ff dev_emerg +EXPORT_SYMBOL vmlinux 0x960cbdda cdev_alloc +EXPORT_SYMBOL vmlinux 0x961a2532 fs_bio_set +EXPORT_SYMBOL vmlinux 0x961bfee6 inet6_getname +EXPORT_SYMBOL vmlinux 0x961e558b netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x96404e39 itcw_set_data +EXPORT_SYMBOL vmlinux 0x9654c37d scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x9660e6a7 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x96651231 get_acl +EXPORT_SYMBOL vmlinux 0x96672e52 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x9669ecc8 monotonic_clock +EXPORT_SYMBOL vmlinux 0x966ffe9e netif_carrier_off +EXPORT_SYMBOL vmlinux 0x967bf498 param_ops_int +EXPORT_SYMBOL vmlinux 0x968c44da param_ops_ullong +EXPORT_SYMBOL vmlinux 0x968e680d dev_change_flags +EXPORT_SYMBOL vmlinux 0x969684ea kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x969734d7 bdi_destroy +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96e84d40 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x96f34a59 filemap_fault +EXPORT_SYMBOL vmlinux 0x96ffc638 dev_mc_del +EXPORT_SYMBOL vmlinux 0x97407292 write_cache_pages +EXPORT_SYMBOL vmlinux 0x9747e6f3 vfs_create +EXPORT_SYMBOL vmlinux 0x974f9d1f send_sig_info +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x976a6da3 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x976b17fc sock_no_getname +EXPORT_SYMBOL vmlinux 0x97713d64 free_buffer_head +EXPORT_SYMBOL vmlinux 0x977a194d __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x97dd9be0 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x97debc26 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x97f44f17 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x97f5ec34 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x98082893 __copy_to_user +EXPORT_SYMBOL vmlinux 0x9831e9e4 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x98536c87 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x985b8000 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x985f15f3 debug_register_view +EXPORT_SYMBOL vmlinux 0x986c2040 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x989ff72b param_set_bool +EXPORT_SYMBOL vmlinux 0x98a3aa87 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x98a51bf0 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x98abe266 ccw_device_halt +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98ee1623 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x98f7e3cc dmam_pool_create +EXPORT_SYMBOL vmlinux 0x990c34dd _raw_write_lock_wait +EXPORT_SYMBOL vmlinux 0x9911b816 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x992e7a83 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x99388ef5 md_write_start +EXPORT_SYMBOL vmlinux 0x9942ec77 itcw_finalize +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x99596937 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x997823ae register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x9997027b generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99aa9ff8 loop_backing_file +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 0x99de40b0 param_set_bint +EXPORT_SYMBOL vmlinux 0x99e438f1 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a2b080a nvm_register +EXPORT_SYMBOL vmlinux 0x9a4d84ec tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x9a73de8a sget_userns +EXPORT_SYMBOL vmlinux 0x9a906daf memscan +EXPORT_SYMBOL vmlinux 0x9a95275a posix_lock_file +EXPORT_SYMBOL vmlinux 0x9a99b931 tty_free_termios +EXPORT_SYMBOL vmlinux 0x9a9a054f ccw_device_get_mdc +EXPORT_SYMBOL vmlinux 0x9aabc564 crc16 +EXPORT_SYMBOL vmlinux 0x9ab21ab0 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x9ad24e86 commit_creds +EXPORT_SYMBOL vmlinux 0x9b0fa0bb touch_buffer +EXPORT_SYMBOL vmlinux 0x9b12322d skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x9b25f0b7 inet_getname +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b8d07aa strnlen +EXPORT_SYMBOL vmlinux 0x9b91175a blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x9b929dec jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x9b98140e iget_locked +EXPORT_SYMBOL vmlinux 0x9b9975df key_reject_and_link +EXPORT_SYMBOL vmlinux 0x9b9d4112 install_exec_creds +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba51bad param_set_long +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bb602a8 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bc6ffee debug_unregister_view +EXPORT_SYMBOL vmlinux 0x9bc80dde rwsem_wake +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9c070b52 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x9c32bec9 iucv_unregister +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c57cc71 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x9c663b2f ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x9c7ea758 dql_init +EXPORT_SYMBOL vmlinux 0x9c82d89a pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x9c91b15a make_kuid +EXPORT_SYMBOL vmlinux 0x9c9ffa6c inet_bind +EXPORT_SYMBOL vmlinux 0x9ca45f1e mount_pseudo +EXPORT_SYMBOL vmlinux 0x9ca95a0e sort +EXPORT_SYMBOL vmlinux 0x9cc268d4 raw3270_wait_queue +EXPORT_SYMBOL vmlinux 0x9cd89eb2 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x9ce2d384 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x9cea3a7a netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x9d0053cc ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d46df1c tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x9d7bb0b6 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x9d80fec3 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x9dc374f0 noop_llseek +EXPORT_SYMBOL vmlinux 0x9de5bb41 kbd_ascebc +EXPORT_SYMBOL vmlinux 0x9df6a0cc override_creds +EXPORT_SYMBOL vmlinux 0x9e0068ab s390_epoch_delta_notifier +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0d36f3 fasync_helper +EXPORT_SYMBOL vmlinux 0x9e3f5f8e capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x9e4a57a1 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e63ebdf dev_mc_add +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e85eeb7 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ec70d8c try_to_release_page +EXPORT_SYMBOL vmlinux 0x9ec9e922 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x9ef87959 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x9f15a317 arp_create +EXPORT_SYMBOL vmlinux 0x9f15f270 get_gendisk +EXPORT_SYMBOL vmlinux 0x9f18dab9 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f572f60 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x9f6ff72c proc_mkdir +EXPORT_SYMBOL vmlinux 0x9f8573db tcp_read_sock +EXPORT_SYMBOL vmlinux 0x9f8a0ad0 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f989193 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x9fb56077 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ff2762f nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa0031f47 seq_vprintf +EXPORT_SYMBOL vmlinux 0xa017e036 flush_signals +EXPORT_SYMBOL vmlinux 0xa01939c4 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xa0214f25 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xa025a284 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa058fde5 dump_skip +EXPORT_SYMBOL vmlinux 0xa05aa26f netif_napi_add +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa05eb875 sclp +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa083ab36 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08b8eef param_ops_ulong +EXPORT_SYMBOL vmlinux 0xa08e7f7e freeze_super +EXPORT_SYMBOL vmlinux 0xa09e2e59 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0bf14bd ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xa0c8f4f5 blk_mq_complete_request +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 0xa0fc4362 notify_change +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 0xa1315438 skb_pull +EXPORT_SYMBOL vmlinux 0xa13f115a ccw_device_is_pathgroup +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa14bceb0 __tracepoint_s390_diagnose +EXPORT_SYMBOL vmlinux 0xa15bed04 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xa1629059 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xa16616e1 simple_rename +EXPORT_SYMBOL vmlinux 0xa1820e54 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0xa19065ea down_timeout +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c78ff0 seq_lseek +EXPORT_SYMBOL vmlinux 0xa1ce0900 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xa1d5979b find_first_bit_inv +EXPORT_SYMBOL vmlinux 0xa1d76e8a kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xa1ec8f1c __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa1ed0902 vfs_setpos +EXPORT_SYMBOL vmlinux 0xa1f3f657 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa23b5523 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xa246e5dc end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xa2703237 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xa2801a4f netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa28a244e sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xa2a78853 generic_permission +EXPORT_SYMBOL vmlinux 0xa2aab75a tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xa2b2e571 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xa2ec4650 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xa2f36c53 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xa310a706 __iucv_message_receive +EXPORT_SYMBOL vmlinux 0xa3211900 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xa32c93aa qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xa33f7c7c nla_strlcpy +EXPORT_SYMBOL vmlinux 0xa345015c inode_dio_wait +EXPORT_SYMBOL vmlinux 0xa34c58ff dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xa34d199b netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xa355ca8e inode_permission +EXPORT_SYMBOL vmlinux 0xa3766445 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xa378499c qdisc_list_add +EXPORT_SYMBOL vmlinux 0xa37d4e76 udp_proc_register +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa389c868 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xa3927689 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xa3aba2d2 datagram_poll +EXPORT_SYMBOL vmlinux 0xa3d2e3cb tty_mutex +EXPORT_SYMBOL vmlinux 0xa3ec7451 tty_hangup +EXPORT_SYMBOL vmlinux 0xa3ee8bd5 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0xa3f9e8c6 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xa414cceb neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xa43e80fb ihold +EXPORT_SYMBOL vmlinux 0xa43fe924 netif_device_attach +EXPORT_SYMBOL vmlinux 0xa44b520a __scsi_format_command +EXPORT_SYMBOL vmlinux 0xa44cebae tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xa4524ae7 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0xa45a70f8 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xa46489bf rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa47aaae3 bio_clone_fast +EXPORT_SYMBOL vmlinux 0xa490a053 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4ad718b pci_save_state +EXPORT_SYMBOL vmlinux 0xa4c14ccb invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xa4c41694 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xa4c419e6 tty_port_close +EXPORT_SYMBOL vmlinux 0xa4e188e7 strscpy +EXPORT_SYMBOL vmlinux 0xa4f55075 iucv_message_send +EXPORT_SYMBOL vmlinux 0xa50ac1a9 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xa514c526 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xa549afdc generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55823cc nvm_get_blk +EXPORT_SYMBOL vmlinux 0xa55f154b __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xa597b086 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xa59cb687 iucv_path_quiesce +EXPORT_SYMBOL vmlinux 0xa5abb317 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xa5b90174 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xa5ba35a5 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xa5c5cb4c from_kuid_munged +EXPORT_SYMBOL vmlinux 0xa5da5f7f dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xa6093666 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0xa61eb73d km_state_expired +EXPORT_SYMBOL vmlinux 0xa62d05c1 sock_efree +EXPORT_SYMBOL vmlinux 0xa645589f security_path_mkdir +EXPORT_SYMBOL vmlinux 0xa64aba89 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6866f4b pci_set_master +EXPORT_SYMBOL vmlinux 0xa68ea58e dev_err +EXPORT_SYMBOL vmlinux 0xa6a84a31 d_make_root +EXPORT_SYMBOL vmlinux 0xa6e3f54b posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa7469f8a security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xa749dd91 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xa7517afe blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xa756ff6b inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xa75c8c34 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xa7619d75 nf_log_unset +EXPORT_SYMBOL vmlinux 0xa7922d79 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xa7adb45d __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xa7b34bbb elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xa7bfd06a key_unlink +EXPORT_SYMBOL vmlinux 0xa7d63ce2 perf_reserve_sampling +EXPORT_SYMBOL vmlinux 0xa7e322bd xfrm_state_add +EXPORT_SYMBOL vmlinux 0xa8378795 elv_rb_del +EXPORT_SYMBOL vmlinux 0xa8398609 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xa83e4115 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xa84157fd skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa86d6a2f memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa886a958 krealloc +EXPORT_SYMBOL vmlinux 0xa8a7bb81 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xa8e38716 igrab +EXPORT_SYMBOL vmlinux 0xa8fbcd48 bioset_create +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa91d90d3 nla_put +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa92c6318 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xa93f5d17 ida_remove +EXPORT_SYMBOL vmlinux 0xa94c45e3 blk_register_region +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa99439d2 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xa9a33150 security_path_chown +EXPORT_SYMBOL vmlinux 0xa9b45db8 dquot_file_open +EXPORT_SYMBOL vmlinux 0xa9b8f8f6 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9d1f609 dput +EXPORT_SYMBOL vmlinux 0xa9d73b38 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xa9e6f80b wait_iff_congested +EXPORT_SYMBOL vmlinux 0xa9e818ce xfrm_lookup +EXPORT_SYMBOL vmlinux 0xaa0988aa inet_stream_ops +EXPORT_SYMBOL vmlinux 0xaa0f3ebe filemap_flush +EXPORT_SYMBOL vmlinux 0xaa157c74 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xaa343fb6 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xaa35c372 check_disk_size_change +EXPORT_SYMBOL vmlinux 0xaa43b80e pcim_iomap +EXPORT_SYMBOL vmlinux 0xaa91090a pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xaaab877b tty_devnum +EXPORT_SYMBOL vmlinux 0xaab2de82 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xaabe6704 airq_iv_free +EXPORT_SYMBOL vmlinux 0xaac75fc2 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaadfae7b crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xaafa265d unregister_cdrom +EXPORT_SYMBOL vmlinux 0xaafa81fb sock_i_ino +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab5dd69e bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab7d3c25 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xab8de9cd follow_up +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabd6eee5 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac39ba44 configfs_depend_item +EXPORT_SYMBOL vmlinux 0xac811ac0 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xac86c9db key_validate +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb6c925 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xacc13dac simple_release_fs +EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacccffda tcp_prequeue +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacf17917 rtnl_notify +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0e73fa simple_setattr +EXPORT_SYMBOL vmlinux 0xad3405ca netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xad363a95 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xad4aee39 strncpy +EXPORT_SYMBOL vmlinux 0xad4cd138 perf_release_sampling +EXPORT_SYMBOL vmlinux 0xad7e5005 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad88d0b9 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xadc27fc5 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0xadd0ec46 console_start +EXPORT_SYMBOL vmlinux 0xaddd0021 inet_accept +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae087a9c dquot_free_inode +EXPORT_SYMBOL vmlinux 0xae10e571 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0xae1800fa __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xae28627d security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xae4109c1 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xae66ce36 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xae80460b pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xae8f67f6 scsi_register +EXPORT_SYMBOL vmlinux 0xaead4f19 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xaec18aef wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xaf08e8fe vprintk_emit +EXPORT_SYMBOL vmlinux 0xaf29225a peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xaf3663f4 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf5ba218 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xaf5bd269 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xaf5dac15 netpoll_setup +EXPORT_SYMBOL vmlinux 0xaf6427b3 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xafa39491 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xafc25e22 tcp_proc_register +EXPORT_SYMBOL vmlinux 0xafcaef6d truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xafcee274 clear_inode +EXPORT_SYMBOL vmlinux 0xafe82e10 strcspn +EXPORT_SYMBOL vmlinux 0xaff2e8d4 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xb05e0f5e get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb071bda9 __module_get +EXPORT_SYMBOL vmlinux 0xb08c5c8f blk_run_queue +EXPORT_SYMBOL vmlinux 0xb0947fe2 ccw_device_set_online +EXPORT_SYMBOL vmlinux 0xb09f2214 kobject_del +EXPORT_SYMBOL vmlinux 0xb0a8d089 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xb0abe262 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0b82ba8 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xb0b93baa fsnotify_put_group +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0eb494b tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xb1259149 proc_create_mount_point +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 0xb16ae1a9 thaw_super +EXPORT_SYMBOL vmlinux 0xb1827abe blk_start_queue +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c52b3c freeze_bdev +EXPORT_SYMBOL vmlinux 0xb1dcdc1f dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xb204f639 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xb208458d mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xb20e3134 d_path +EXPORT_SYMBOL vmlinux 0xb236cf13 __dst_free +EXPORT_SYMBOL vmlinux 0xb25d3462 key_put +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb271fdd0 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xb28ee326 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xb2a4bd44 make_kprojid +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 0xb2e74a01 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xb2e9dd0a scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xb2f21abb configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0xb3122a9d pci_get_slot +EXPORT_SYMBOL vmlinux 0xb343bf08 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xb3443512 tcf_hash_search +EXPORT_SYMBOL vmlinux 0xb347f2ff tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb3572547 simple_dname +EXPORT_SYMBOL vmlinux 0xb35d3cc8 ccw_device_tm_start_key +EXPORT_SYMBOL vmlinux 0xb382ae7e drop_super +EXPORT_SYMBOL vmlinux 0xb3945be5 dcb_getapp +EXPORT_SYMBOL vmlinux 0xb3a9d366 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xb3b967a1 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xb3c49227 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3de0be2 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xb3e33668 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xb3ec0c64 cont_write_begin +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3ff1f69 free_pages_exact +EXPORT_SYMBOL vmlinux 0xb423652a blkdev_get +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb49bad96 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xb4a92a3a xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xb4cfa4a2 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xb4d81cde bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xb4e10138 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xb4e4f69f get_phys_clock +EXPORT_SYMBOL vmlinux 0xb4fe7df3 inet_addr_type +EXPORT_SYMBOL vmlinux 0xb5126c5b inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xb54366ef config_group_init +EXPORT_SYMBOL vmlinux 0xb545553b d_obtain_alias +EXPORT_SYMBOL vmlinux 0xb5572732 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xb56def69 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xb56f403a ccw_device_is_multipath +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5afb51b iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xb5baf843 tod_to_timeval +EXPORT_SYMBOL vmlinux 0xb5c18869 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xb5d980d7 f_setown +EXPORT_SYMBOL vmlinux 0xb5f399ae __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xb5fe0df2 generic_file_open +EXPORT_SYMBOL vmlinux 0xb605a616 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xb6153f45 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xb61547d2 truncate_setsize +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb6754675 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6812899 nonseekable_open +EXPORT_SYMBOL vmlinux 0xb68f16d8 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a4e82b vfs_writev +EXPORT_SYMBOL vmlinux 0xb6a51db4 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6b471ae generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xb6cff705 iucv_path_sever +EXPORT_SYMBOL vmlinux 0xb6d3e900 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xb6d76547 proc_dointvec +EXPORT_SYMBOL vmlinux 0xb702815e clocksource_unregister +EXPORT_SYMBOL vmlinux 0xb7077ef3 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xb7092f43 iterate_dir +EXPORT_SYMBOL vmlinux 0xb73f575a bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0xb74521b0 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb74d3ba7 pci_iounmap +EXPORT_SYMBOL vmlinux 0xb7585904 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xb76a4607 udp_poll +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb782d8fd __kfree_skb +EXPORT_SYMBOL vmlinux 0xb7839f53 seq_release_private +EXPORT_SYMBOL vmlinux 0xb7899c6e mempool_free +EXPORT_SYMBOL vmlinux 0xb7bb6e7a key_payload_reserve +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7f564d5 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xb800f726 simple_rmdir +EXPORT_SYMBOL vmlinux 0xb817a13a tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xb83f75a1 __devm_request_region +EXPORT_SYMBOL vmlinux 0xb8458576 node_data +EXPORT_SYMBOL vmlinux 0xb847f140 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xb85a1bd8 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb877146f __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xb88aaa44 set_security_override +EXPORT_SYMBOL vmlinux 0xb89381ce param_get_short +EXPORT_SYMBOL vmlinux 0xb8959aa6 sg_miter_next +EXPORT_SYMBOL vmlinux 0xb89829fa fget_raw +EXPORT_SYMBOL vmlinux 0xb8a6592a always_delete_dentry +EXPORT_SYMBOL vmlinux 0xb8f6549e iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xb915ceca itcw_init +EXPORT_SYMBOL vmlinux 0xb9249d16 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xb928aa45 netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xb92cf1ba param_get_bool +EXPORT_SYMBOL vmlinux 0xb9409d16 eth_type_trans +EXPORT_SYMBOL vmlinux 0xb9893ef5 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xb98c370a km_policy_expired +EXPORT_SYMBOL vmlinux 0xb99cdbce dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xb9a78b62 raw3270_find_view +EXPORT_SYMBOL vmlinux 0xb9aa3606 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xb9b0d64c netdev_emerg +EXPORT_SYMBOL vmlinux 0xb9b65762 security_path_mknod +EXPORT_SYMBOL vmlinux 0xb9b68c55 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xb9d68426 ccw_device_start_key +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xba497ae3 wake_up_process +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba8397b9 blk_queue_split +EXPORT_SYMBOL vmlinux 0xba8b510a blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xbaa2782a kstrndup +EXPORT_SYMBOL vmlinux 0xbaa6c88f dm_put_table_device +EXPORT_SYMBOL vmlinux 0xbaa82da4 dev_set_group +EXPORT_SYMBOL vmlinux 0xbaac3bc0 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xbad2d187 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xbafc1f4c tcp_poll +EXPORT_SYMBOL vmlinux 0xbafdc2e3 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0618c2 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xbb109d1a tc_classify +EXPORT_SYMBOL vmlinux 0xbb34ce58 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb582258 keyring_clear +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb7cbda3 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xbb9d0dc5 bin2hex +EXPORT_SYMBOL vmlinux 0xbbb326cb set_nlink +EXPORT_SYMBOL vmlinux 0xbbfd4f88 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xbc222d3b devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xbc2d2b4a __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xbc2d7c00 kset_register +EXPORT_SYMBOL vmlinux 0xbc48b1fb compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xbc63a838 ilookup5 +EXPORT_SYMBOL vmlinux 0xbc77e14c inet_listen +EXPORT_SYMBOL vmlinux 0xbc8ec58d __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xbcb87d13 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xbcc2e222 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xbcdb13f1 __register_binfmt +EXPORT_SYMBOL vmlinux 0xbceaecca mark_page_accessed +EXPORT_SYMBOL vmlinux 0xbcf134fe xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xbcf64b4a pci_scan_slot +EXPORT_SYMBOL vmlinux 0xbd100793 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xbd21a109 path_get +EXPORT_SYMBOL vmlinux 0xbd2cb8af __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xbd3671ea scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xbd77f57b dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xbd78cb1a keyring_search +EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xbd878b4d devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd93d065 kill_block_super +EXPORT_SYMBOL vmlinux 0xbda9474e ipv4_specific +EXPORT_SYMBOL vmlinux 0xbdf7a3dd tcp_parse_options +EXPORT_SYMBOL vmlinux 0xbdfb851f ___ratelimit +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe2a398c dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xbe2a40a8 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xbe3e0000 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xbe417509 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xbe509e4d pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xbe5256f9 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xbe7d8282 bdgrab +EXPORT_SYMBOL vmlinux 0xbe8176b0 sock_no_poll +EXPORT_SYMBOL vmlinux 0xbea5c34b _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xbeaa2201 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xbecf61aa add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef865de bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xbef9ca79 __inet_hash +EXPORT_SYMBOL vmlinux 0xbf262f65 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xbf27cc3a kmalloc_caches +EXPORT_SYMBOL vmlinux 0xbf282dc7 register_netdev +EXPORT_SYMBOL vmlinux 0xbf3babf1 pci_iomap +EXPORT_SYMBOL vmlinux 0xbf51f661 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xbf5af65b __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xbf6c22af sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfcae761 bio_copy_kern +EXPORT_SYMBOL vmlinux 0xbfd0ae9c sk_receive_skb +EXPORT_SYMBOL vmlinux 0xbfd1a064 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xbfdf4868 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xbfe3e939 dev_deactivate +EXPORT_SYMBOL vmlinux 0xbfeb4e4e register_shrinker +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc0033932 register_key_type +EXPORT_SYMBOL vmlinux 0xc003c637 __strncpy_from_user +EXPORT_SYMBOL vmlinux 0xc01a2154 raw3270_request_reset +EXPORT_SYMBOL vmlinux 0xc03c16d6 scsi_device_put +EXPORT_SYMBOL vmlinux 0xc04e24ca ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xc05aa06d pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xc060317f acl_by_type +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0a714e2 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xc0c3d75e clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xc0c48c8c qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xc0d08558 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xc0d3228e rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xc0d8f973 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xc0f22f51 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xc0f51276 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xc1071e0a free_user_ns +EXPORT_SYMBOL vmlinux 0xc11c2e6b kern_path +EXPORT_SYMBOL vmlinux 0xc134b1ba sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xc17c0444 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xc188ab62 lock_sock_fast +EXPORT_SYMBOL vmlinux 0xc1a54486 remove_wait_queue +EXPORT_SYMBOL vmlinux 0xc1cd9c93 skb_trim +EXPORT_SYMBOL vmlinux 0xc1cf4709 nobh_write_begin +EXPORT_SYMBOL vmlinux 0xc1d888bd xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1e5f115 __sb_end_write +EXPORT_SYMBOL vmlinux 0xc1f859aa handle_edge_irq +EXPORT_SYMBOL vmlinux 0xc1ff67eb skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xc2024f01 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xc212f2ab prandom_bytes +EXPORT_SYMBOL vmlinux 0xc2248dc2 mount_single +EXPORT_SYMBOL vmlinux 0xc2507bea ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xc2534f6d ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xc26d9c6e textsearch_register +EXPORT_SYMBOL vmlinux 0xc281907e iucv_message_reply +EXPORT_SYMBOL vmlinux 0xc2a0e98a bio_unmap_user +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2af3120 nla_append +EXPORT_SYMBOL vmlinux 0xc2ce9e9b ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xc2d7ce4c request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0xc2e4230c icmpv6_send +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc308aace bio_map_kern +EXPORT_SYMBOL vmlinux 0xc3161b12 vfs_mknod +EXPORT_SYMBOL vmlinux 0xc333cd68 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xc33883ba sock_no_mmap +EXPORT_SYMBOL vmlinux 0xc34cffe2 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xc3581bce dev_close +EXPORT_SYMBOL vmlinux 0xc37a682a dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xc37ee566 elv_register_queue +EXPORT_SYMBOL vmlinux 0xc3843f9e skb_checksum_help +EXPORT_SYMBOL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL vmlinux 0xc3920e5c configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xc3d5c8f5 neigh_xmit +EXPORT_SYMBOL vmlinux 0xc3dd9b4e compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0xc3f8dafd __mutex_init +EXPORT_SYMBOL vmlinux 0xc4046fef sk_dst_check +EXPORT_SYMBOL vmlinux 0xc429a20f add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc45b1ec6 get_task_io_context +EXPORT_SYMBOL vmlinux 0xc47b6534 bio_integrity_free +EXPORT_SYMBOL vmlinux 0xc48c2a91 bio_init +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc49bed9b dst_alloc +EXPORT_SYMBOL vmlinux 0xc4abc8e5 secpath_dup +EXPORT_SYMBOL vmlinux 0xc4bce7d3 invalidate_partition +EXPORT_SYMBOL vmlinux 0xc4be02c2 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xc4d1498b bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xc4fc0563 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xc4fee4b6 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xc5023ba1 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xc506f58c inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xc522ba8a seq_release +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5ad93b8 sie_exit +EXPORT_SYMBOL vmlinux 0xc5adc186 security_path_unlink +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc603d70b mutex_unlock +EXPORT_SYMBOL vmlinux 0xc6197b2f pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xc622ea97 stsi +EXPORT_SYMBOL vmlinux 0xc630806d ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc65782ad abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xc661f55d scm_detach_fds +EXPORT_SYMBOL vmlinux 0xc66e17dd d_walk +EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xc68a717d tcp_shutdown +EXPORT_SYMBOL vmlinux 0xc68f3584 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xc696ca64 put_filp +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d3caec scsi_block_requests +EXPORT_SYMBOL vmlinux 0xc6d51adb sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xc6da0430 bmap +EXPORT_SYMBOL vmlinux 0xc6dc90a2 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xc6dd6b21 neigh_lookup +EXPORT_SYMBOL vmlinux 0xc6df72cf bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xc7094451 unlock_buffer +EXPORT_SYMBOL vmlinux 0xc70b05f2 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xc7291086 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xc72cee8d debug_set_level +EXPORT_SYMBOL vmlinux 0xc732eb8d crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xc73473f0 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xc73d0c73 blk_end_request +EXPORT_SYMBOL vmlinux 0xc755f668 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xc766aaae __sk_dst_check +EXPORT_SYMBOL vmlinux 0xc768053e skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xc772a415 sock_create +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc794856a xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a24d76 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7b27f3c jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xc7baf25f configfs_register_default_group +EXPORT_SYMBOL vmlinux 0xc7c1d853 md_cluster_mod +EXPORT_SYMBOL vmlinux 0xc7cb883d bitmap_unplug +EXPORT_SYMBOL vmlinux 0xc7e41102 dma_common_mmap +EXPORT_SYMBOL vmlinux 0xc7e885be inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xc806970c load_nls_default +EXPORT_SYMBOL vmlinux 0xc831a9a4 module_put +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 0xc856388b __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xc86a6174 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8c85f09 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xc8d0eb3a scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xc8e3158e misc_deregister +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc916fc35 __find_get_block +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96ab782 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xc9746a74 simple_getattr +EXPORT_SYMBOL vmlinux 0xc97b7ebd generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xc98ec285 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xc99a2224 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xc9c8e2bd __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xc9fbb8b6 param_ops_long +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca150004 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xca49ad42 kill_pgrp +EXPORT_SYMBOL vmlinux 0xca4c923d vscnprintf +EXPORT_SYMBOL vmlinux 0xca775b42 blk_put_queue +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaab2a5a pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xcabd3024 __debug_sprintf_event +EXPORT_SYMBOL vmlinux 0xcaeb85d4 tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb09471b bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xcb1f85ae qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0xcb281767 finish_no_open +EXPORT_SYMBOL vmlinux 0xcb359c29 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xcb3ed502 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xcb49fa08 dst_destroy +EXPORT_SYMBOL vmlinux 0xcb53be01 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xcba45c1f __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc2d022 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xcbc54353 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc553627 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xcc5bc9b0 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xcc6c2270 __alloc_skb +EXPORT_SYMBOL vmlinux 0xcc6da035 ccw_device_get_ciw +EXPORT_SYMBOL vmlinux 0xcc728c62 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xcc780b9a inet_offloads +EXPORT_SYMBOL vmlinux 0xcc7af88f xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xcc8482c1 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xcc891305 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xcca94125 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xcce962dd tcp_close +EXPORT_SYMBOL vmlinux 0xcd076d9a page_waitqueue +EXPORT_SYMBOL vmlinux 0xcd088759 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd3e9c39 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xcd52c239 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xcd816cf6 arch_spin_lock_wait +EXPORT_SYMBOL vmlinux 0xcd8d499e dev_get_flags +EXPORT_SYMBOL vmlinux 0xcd96dd7b proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xcd998e1c blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0xcda29df1 release_pages +EXPORT_SYMBOL vmlinux 0xcdc289c4 param_set_ullong +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcde5a57f __dquot_free_space +EXPORT_SYMBOL vmlinux 0xcdede5b8 current_in_userns +EXPORT_SYMBOL vmlinux 0xcdf7484b proc_dostring +EXPORT_SYMBOL vmlinux 0xcdf8c57d dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xcdf98a4c kobject_init +EXPORT_SYMBOL vmlinux 0xce00336a panic_notifier_list +EXPORT_SYMBOL vmlinux 0xce03787d dev_disable_lro +EXPORT_SYMBOL vmlinux 0xce0e2d66 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xce1353e6 __neigh_create +EXPORT_SYMBOL vmlinux 0xce1c0ea9 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2c7bc6 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xce5a2286 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce763a10 account_page_dirtied +EXPORT_SYMBOL vmlinux 0xce8e2b30 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xce92cbb5 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0xce9a5ab5 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xce9b37fd dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xceb4719f md_register_thread +EXPORT_SYMBOL vmlinux 0xcebecf76 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xcec3a908 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xced8323f tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xcedf0886 cpu_relax +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefe4860 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xcf14f8cd iucv_message_purge +EXPORT_SYMBOL vmlinux 0xcf2817d5 ida_simple_get +EXPORT_SYMBOL vmlinux 0xcf2fc8e5 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xcf3fa737 ccw_device_get_id +EXPORT_SYMBOL vmlinux 0xcf50f61c security_path_rename +EXPORT_SYMBOL vmlinux 0xcf6971ab scsi_add_device +EXPORT_SYMBOL vmlinux 0xcf8797bc skb_vlan_push +EXPORT_SYMBOL vmlinux 0xcf95d78a dev_notice +EXPORT_SYMBOL vmlinux 0xcfaca9c4 neigh_update +EXPORT_SYMBOL vmlinux 0xcfaf1059 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xcfe90c25 do_SAK +EXPORT_SYMBOL vmlinux 0xcfeae122 lockref_put_return +EXPORT_SYMBOL vmlinux 0xd011292d tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xd0123f11 find_vma +EXPORT_SYMBOL vmlinux 0xd03b7e5a padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xd0629463 km_policy_notify +EXPORT_SYMBOL vmlinux 0xd06ae366 sync_blockdev +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd0773617 sock_no_connect +EXPORT_SYMBOL vmlinux 0xd090f3e0 single_open_size +EXPORT_SYMBOL vmlinux 0xd0981f25 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd14d18d0 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xd153954e padata_alloc +EXPORT_SYMBOL vmlinux 0xd15e7e83 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xd1684f7c tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd182916d dev_get_stats +EXPORT_SYMBOL vmlinux 0xd199d498 tcw_init +EXPORT_SYMBOL vmlinux 0xd19f13f7 del_virt_timer +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1f152ad kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xd1f9ce6d iov_iter_init +EXPORT_SYMBOL vmlinux 0xd2164862 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xd227a939 mpage_readpages +EXPORT_SYMBOL vmlinux 0xd234691d __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0xd2443726 inet_release +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd2603b33 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xd2607532 pci_find_capability +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd280330c create_empty_buffers +EXPORT_SYMBOL vmlinux 0xd2858d0c node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0xd2861ead seq_file_path +EXPORT_SYMBOL vmlinux 0xd2a1fde6 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0xd2b0155a __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xd2b08997 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xd2c4884c ccw_device_tm_intrg +EXPORT_SYMBOL vmlinux 0xd2c93e72 __bforget +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e0bb73 sie64a +EXPORT_SYMBOL vmlinux 0xd2e320ce pipe_lock +EXPORT_SYMBOL vmlinux 0xd2f267f0 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xd30adecb pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xd30b577d configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xd318e05f dev_add_pack +EXPORT_SYMBOL vmlinux 0xd31a00b9 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xd31c393b iucv_path_accept +EXPORT_SYMBOL vmlinux 0xd320e761 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xd33df8aa mpage_writepages +EXPORT_SYMBOL vmlinux 0xd3af979c memdup_user +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3bd1758 vfs_unlink +EXPORT_SYMBOL vmlinux 0xd3c15da4 dev_mc_init +EXPORT_SYMBOL vmlinux 0xd3c7c378 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xd3d22bc1 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xd3f4cb69 nf_log_packet +EXPORT_SYMBOL vmlinux 0xd4270608 set_disk_ro +EXPORT_SYMBOL vmlinux 0xd44a3a15 qdisc_list_del +EXPORT_SYMBOL vmlinux 0xd4652bdc wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xd46f6de7 submit_bh +EXPORT_SYMBOL vmlinux 0xd4739356 devm_free_irq +EXPORT_SYMBOL vmlinux 0xd48696b2 read_cache_pages +EXPORT_SYMBOL vmlinux 0xd49a587d sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xd4e29e11 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xd51c130a blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xd51d4850 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xd5214b91 dquot_destroy +EXPORT_SYMBOL vmlinux 0xd522352f inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xd53949f1 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xd5493b1f param_get_int +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd55121f5 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0xd59ed498 seq_pad +EXPORT_SYMBOL vmlinux 0xd5ae5a1c vlan_vid_add +EXPORT_SYMBOL vmlinux 0xd5d9e5bc neigh_parms_release +EXPORT_SYMBOL vmlinux 0xd5ffc373 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd616dafc inet6_bind +EXPORT_SYMBOL vmlinux 0xd61c12c2 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xd6262082 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd666a588 smp_ctl_clear_bit +EXPORT_SYMBOL vmlinux 0xd6730fe8 __init_rwsem +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd696937d pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xd69b18f0 make_bad_inode +EXPORT_SYMBOL vmlinux 0xd6a66a73 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xd6b9b3af pci_claim_resource +EXPORT_SYMBOL vmlinux 0xd6c9908a __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fe681e drop_nlink +EXPORT_SYMBOL vmlinux 0xd71e4c52 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xd72fa634 __secpath_destroy +EXPORT_SYMBOL vmlinux 0xd730ef24 __seq_open_private +EXPORT_SYMBOL vmlinux 0xd733bb27 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xd74fc673 ccw_device_clear +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd7685092 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xd7b7d9c7 consume_skb +EXPORT_SYMBOL vmlinux 0xd7dd97d1 md_done_sync +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd8324a40 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xd838d998 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xd84b7e3f __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xd85910e7 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8ab9ca3 param_get_byte +EXPORT_SYMBOL vmlinux 0xd8cf316a should_remove_suid +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8ebd133 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xd8fcda72 cpcmd +EXPORT_SYMBOL vmlinux 0xd9791af2 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9b3f97d console_devno +EXPORT_SYMBOL vmlinux 0xd9b4793b ccw_device_start +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9dbd60e generic_write_end +EXPORT_SYMBOL vmlinux 0xda092e1b security_path_rmdir +EXPORT_SYMBOL vmlinux 0xda141978 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xda17eafa skb_pad +EXPORT_SYMBOL vmlinux 0xda1e39c7 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda3e09e8 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xda5f9daa debug_unregister +EXPORT_SYMBOL vmlinux 0xda704eef bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xda997de1 debug_exception_common +EXPORT_SYMBOL vmlinux 0xdaa32c50 __f_setown +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad2b011 mntput +EXPORT_SYMBOL vmlinux 0xdae0b912 complete_request_key +EXPORT_SYMBOL vmlinux 0xdae162cb string_unescape +EXPORT_SYMBOL vmlinux 0xdb185e7b __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xdb204467 new_inode +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb49978e generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xdb581cd6 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xdb5d2953 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xdb64be1f __iucv_message_send +EXPORT_SYMBOL vmlinux 0xdb69271d file_remove_privs +EXPORT_SYMBOL vmlinux 0xdb6ac837 kbd_ioctl +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb897ca5 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xdb972342 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xdba14cce arch_spin_lock_wait_flags +EXPORT_SYMBOL vmlinux 0xdbc4ec41 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xdbcecaa4 inet_frag_find +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc2bc6ec blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xdc3d52c1 lookup_bdev +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc4ae299 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xdc4d27dd raw3270_start_irq +EXPORT_SYMBOL vmlinux 0xdc6d31b8 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xdc83655d netif_carrier_on +EXPORT_SYMBOL vmlinux 0xdc99b9e9 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xdc9f719b xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xdcab5f15 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcc24012 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0xdcd82978 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xdcdec4f1 blk_complete_request +EXPORT_SYMBOL vmlinux 0xdce95144 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xdced469f generic_make_request +EXPORT_SYMBOL vmlinux 0xdcf18d3b iov_iter_npages +EXPORT_SYMBOL vmlinux 0xdd0defcc ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xdd1f92f5 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xdd337ec6 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xdd4496eb inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xdd821580 dqstats +EXPORT_SYMBOL vmlinux 0xdda08c00 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xddd72f07 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xddda282b sk_common_release +EXPORT_SYMBOL vmlinux 0xddda41c6 d_move +EXPORT_SYMBOL vmlinux 0xddf102d7 tcf_hash_check +EXPORT_SYMBOL vmlinux 0xddf4bc40 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xddfeca98 sock_wake_async +EXPORT_SYMBOL vmlinux 0xde0bdcff memset +EXPORT_SYMBOL vmlinux 0xde48a247 mempool_create +EXPORT_SYMBOL vmlinux 0xde6099d5 follow_down +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde7e104a set_binfmt +EXPORT_SYMBOL vmlinux 0xde8b4f8b airq_iv_alloc +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xdeb9e5e2 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xdf1409c2 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf58be94 netdev_alert +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfa9acca smp_cpu_mtid +EXPORT_SYMBOL vmlinux 0xdfd80744 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xe01b4fa7 inode_init_always +EXPORT_SYMBOL vmlinux 0xe0439c6f simple_empty +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe05788bd xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xe059ccd8 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe0614a83 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xe0628729 param_ops_string +EXPORT_SYMBOL vmlinux 0xe068188d pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xe06e4199 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe0776523 file_ns_capable +EXPORT_SYMBOL vmlinux 0xe0812a9e register_adapter_interrupt +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe08f530b param_ops_uint +EXPORT_SYMBOL vmlinux 0xe098058e alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xe0ae4cec sock_register +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bc4fb2 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xe0c290fb inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xe0c4fca3 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xe0d06302 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xe0e284b7 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xe0e53462 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xe0edb5e1 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xe10f3d82 d_splice_alias +EXPORT_SYMBOL vmlinux 0xe12bb611 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe1568820 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xe15c4088 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xe1614b00 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xe165e62c kernel_getpeername +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe1872a8c netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xe1873f9f lock_rename +EXPORT_SYMBOL vmlinux 0xe196e137 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xe19b69dd sk_free +EXPORT_SYMBOL vmlinux 0xe1af2a79 raw3270_add_view +EXPORT_SYMBOL vmlinux 0xe1bc3ec7 alloc_file +EXPORT_SYMBOL vmlinux 0xe1c047cf debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xe1cc1592 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xe1d1cca8 debug_sprintf_view +EXPORT_SYMBOL vmlinux 0xe1e30b87 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xe1fff6af netdev_rx_csum_fault +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 0xe2228f1f try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xe238ccd9 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24c90aa blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe259171f tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xe25f0d4b dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xe260c061 seq_open +EXPORT_SYMBOL vmlinux 0xe2845bef module_layout +EXPORT_SYMBOL vmlinux 0xe294ed29 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2c1be31 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xe2ce5f10 tty_port_open +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2df9d9b parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0xe2e1a852 vm_map_ram +EXPORT_SYMBOL vmlinux 0xe2e7622c filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xe2ed3aa7 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xe2ed7169 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe3632f6a proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xe369945d alloc_pages_current +EXPORT_SYMBOL vmlinux 0xe3796411 ccw_device_set_offline +EXPORT_SYMBOL vmlinux 0xe3a0a854 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xe3a0ca20 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0xe3a315f2 set_wb_congested +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3bc3092 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xe3c32a8f tcp_seq_open +EXPORT_SYMBOL vmlinux 0xe3e86287 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xe4065404 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xe40a4a64 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xe4409190 mem_section +EXPORT_SYMBOL vmlinux 0xe467f9aa sclp_register +EXPORT_SYMBOL vmlinux 0xe479a964 dump_fpu +EXPORT_SYMBOL vmlinux 0xe47f3811 param_set_byte +EXPORT_SYMBOL vmlinux 0xe4a40d2f diag210 +EXPORT_SYMBOL vmlinux 0xe4beb127 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0xe4bf1169 sock_no_listen +EXPORT_SYMBOL vmlinux 0xe4c620db dev_get_by_index +EXPORT_SYMBOL vmlinux 0xe4ce2a83 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4ed2bcf pci_release_region +EXPORT_SYMBOL vmlinux 0xe5094832 page_table_allocate_pgste +EXPORT_SYMBOL vmlinux 0xe51fed85 complete_all +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe53047ee neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xe54036ef mempool_resize +EXPORT_SYMBOL vmlinux 0xe5555fe5 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xe55c3cb4 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0xe55f49d2 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xe56876d1 file_path +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe583436f pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5b276aa proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xe5d2b465 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe6130e07 elv_rb_add +EXPORT_SYMBOL vmlinux 0xe6219672 lease_modify +EXPORT_SYMBOL vmlinux 0xe6351113 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xe63eef85 napi_disable +EXPORT_SYMBOL vmlinux 0xe645f4d1 arp_tbl +EXPORT_SYMBOL vmlinux 0xe66ab439 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6abf9d1 tty_set_operations +EXPORT_SYMBOL vmlinux 0xe6acc753 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xe6bc32d0 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xe6c608fc inet6_release +EXPORT_SYMBOL vmlinux 0xe6dfef9f eth_header_parse +EXPORT_SYMBOL vmlinux 0xe6f1486d dql_reset +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe701ae8b kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xe712e4bb security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xe713a97a irq_subclass_unregister +EXPORT_SYMBOL vmlinux 0xe7183dff pci_get_device +EXPORT_SYMBOL vmlinux 0xe73f9a2e xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xe7426ad4 dcb_setapp +EXPORT_SYMBOL vmlinux 0xe74ba8d3 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe7668173 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xe784218a kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xe7a45948 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xe7a6667d tcf_exts_change +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7b8b1c6 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xe7c274bd dev_trans_start +EXPORT_SYMBOL vmlinux 0xe7cfd952 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d8321d pcie_get_mps +EXPORT_SYMBOL vmlinux 0xe7f132ed bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xe8060e14 __frontswap_test +EXPORT_SYMBOL vmlinux 0xe8116e08 __kmalloc_node +EXPORT_SYMBOL vmlinux 0xe8153dc0 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe8214cc1 skb_push +EXPORT_SYMBOL vmlinux 0xe8387adc device_get_mac_address +EXPORT_SYMBOL vmlinux 0xe84d7fdd page_readlink +EXPORT_SYMBOL vmlinux 0xe85016e5 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xe89653eb inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xe89c5c21 netdev_state_change +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b1deb8 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8cd6712 vfs_rename +EXPORT_SYMBOL vmlinux 0xe8d1886b dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xe8e51e75 dm_put_device +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe8f5fb2b path_is_under +EXPORT_SYMBOL vmlinux 0xe8fed146 param_set_ulong +EXPORT_SYMBOL vmlinux 0xe914356d fput +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe93098c7 user_revoke +EXPORT_SYMBOL vmlinux 0xe94f6441 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe97151b0 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xe9989c8c itcw_get_tcw +EXPORT_SYMBOL vmlinux 0xe9ae9c02 d_lookup +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea238fa4 scsi_print_command +EXPORT_SYMBOL vmlinux 0xea2c49b2 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xea355e13 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0xea5f41bd add_wait_queue +EXPORT_SYMBOL vmlinux 0xea67c05f __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xea69bc86 iunique +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea872313 find_next_bit_inv +EXPORT_SYMBOL vmlinux 0xeaa107a9 dump_emit +EXPORT_SYMBOL vmlinux 0xeac53ca1 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xead58fb9 print_hex_dump +EXPORT_SYMBOL vmlinux 0xeb04f0ac seq_path +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb424022 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xeb71a848 raw3270_start_locked +EXPORT_SYMBOL vmlinux 0xebaea28a init_net +EXPORT_SYMBOL vmlinux 0xebb64b2c __free_pages +EXPORT_SYMBOL vmlinux 0xebbaa592 ccw_driver_register +EXPORT_SYMBOL vmlinux 0xebbf1dba strncasecmp +EXPORT_SYMBOL vmlinux 0xebdc268f current_fs_time +EXPORT_SYMBOL vmlinux 0xebea1960 netdev_change_features +EXPORT_SYMBOL vmlinux 0xec039496 __frontswap_load +EXPORT_SYMBOL vmlinux 0xec0792ec tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xec0f0e06 free_netdev +EXPORT_SYMBOL vmlinux 0xec0f64e0 ccw_device_tm_start +EXPORT_SYMBOL vmlinux 0xec1f9119 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xec27c4d1 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xec2e4f39 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xec474005 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xec56a1e5 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xec73e0e3 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xec7db420 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xec81e2b9 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xecbb709b tty_write_room +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecef11eb iucv_path_connect +EXPORT_SYMBOL vmlinux 0xed190fba unregister_quota_format +EXPORT_SYMBOL vmlinux 0xed455ecf blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xed55d054 kernel_read +EXPORT_SYMBOL vmlinux 0xed56da43 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed5d63f7 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xed5fa0fe dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xed613e9d dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xed8d39f9 setup_new_exec +EXPORT_SYMBOL vmlinux 0xed8e1db4 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xed91f4f4 sync_filesystem +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbe0fa2 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xedc4e015 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xeddeea36 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedf4a799 skb_split +EXPORT_SYMBOL vmlinux 0xee225a9d __register_chrdev +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3e5e4e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xee46303f blk_sync_queue +EXPORT_SYMBOL vmlinux 0xee535989 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xee688753 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xee6b59bf udp6_csum_init +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee97f0f1 dm_get_device +EXPORT_SYMBOL vmlinux 0xeea23637 inet_sendpage +EXPORT_SYMBOL vmlinux 0xeea3cd7a nla_reserve +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeab5e28 migrate_page +EXPORT_SYMBOL vmlinux 0xeec62dd9 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xeecd1853 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xeecdb318 key_link +EXPORT_SYMBOL vmlinux 0xeedca03b elevator_change +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeefefdf2 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xef3e35e5 sock_release +EXPORT_SYMBOL vmlinux 0xef409816 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xef45d32c __kfifo_init +EXPORT_SYMBOL vmlinux 0xef79404d do_splice_direct +EXPORT_SYMBOL vmlinux 0xefbebf21 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xefdad3aa scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0179fb6 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf02d0873 genlmsg_put +EXPORT_SYMBOL vmlinux 0xf02e9131 dentry_open +EXPORT_SYMBOL vmlinux 0xf039b69a unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xf052d9de __sb_start_write +EXPORT_SYMBOL vmlinux 0xf0628916 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xf0634c04 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xf064a378 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf08f2b6e console_stop +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf0e90d06 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10c3dc5 security_path_symlink +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf122c1c5 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xf12e526b vfs_writef +EXPORT_SYMBOL vmlinux 0xf18ba07e pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xf193a255 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xf1945a84 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf209a3b5 ccw_device_start_timeout_key +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf216dabf call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xf23bf20e ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf240ca1c tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xf251b60d md_write_end +EXPORT_SYMBOL vmlinux 0xf27b517c nobh_writepage +EXPORT_SYMBOL vmlinux 0xf289f8f8 flow_cache_init +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2bc042d register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xf2d20a43 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xf2e6ebba mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0xf30a18a8 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf318b1f0 bio_phys_segments +EXPORT_SYMBOL vmlinux 0xf3266162 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xf32a591a xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xf32f5e22 dup_iter +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf36c87cb ip6_frag_match +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3b54040 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xf3b6b47e filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xf3b9531e nf_afinfo +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf44a9ec4 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0xf4528073 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4ab53bf cap_mmap_file +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4de42aa __neigh_event_send +EXPORT_SYMBOL vmlinux 0xf4df4888 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0xf4e245c0 user_path_create +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f1d73f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xf5096943 skb_find_text +EXPORT_SYMBOL vmlinux 0xf51a9a56 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5658f71 ccw_device_resume +EXPORT_SYMBOL vmlinux 0xf572d0f7 pci_match_id +EXPORT_SYMBOL vmlinux 0xf5773f51 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xf59106ae inode_needs_sync +EXPORT_SYMBOL vmlinux 0xf59ea6ca km_report +EXPORT_SYMBOL vmlinux 0xf5ab896f scsi_unregister +EXPORT_SYMBOL vmlinux 0xf5d9e156 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xf5df331e bio_put +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf606ac0a blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xf60a181f blk_rq_init +EXPORT_SYMBOL vmlinux 0xf60d0b92 tty_name +EXPORT_SYMBOL vmlinux 0xf616ab93 dev_driver_string +EXPORT_SYMBOL vmlinux 0xf61dc495 blk_make_request +EXPORT_SYMBOL vmlinux 0xf62de47e km_query +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf69c6f98 tty_lock +EXPORT_SYMBOL vmlinux 0xf69c7494 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0xf69d2176 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xf6acece7 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xf6ea1874 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6eccec3 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf703de75 inet_csk_accept +EXPORT_SYMBOL vmlinux 0xf70a57b3 open_exec +EXPORT_SYMBOL vmlinux 0xf70d88af lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0xf71b7b69 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xf76ce267 param_set_int +EXPORT_SYMBOL vmlinux 0xf781d0b4 param_ops_short +EXPORT_SYMBOL vmlinux 0xf787e45e textsearch_destroy +EXPORT_SYMBOL vmlinux 0xf796623a kobject_put +EXPORT_SYMBOL vmlinux 0xf7975a59 get_fs_type +EXPORT_SYMBOL vmlinux 0xf7bc648a up_write +EXPORT_SYMBOL vmlinux 0xf7d71918 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0xf7f2d25d iucv_message_send2way +EXPORT_SYMBOL vmlinux 0xf7f54939 empty_aops +EXPORT_SYMBOL vmlinux 0xf8042cb4 inet_frag_maybe_warn_overflow +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 0xf82cf550 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf84b1b97 cdev_init +EXPORT_SYMBOL vmlinux 0xf86a3722 pci_select_bars +EXPORT_SYMBOL vmlinux 0xf871d443 dquot_commit +EXPORT_SYMBOL vmlinux 0xf89cfde7 VMALLOC_START +EXPORT_SYMBOL vmlinux 0xf8aa0f52 security_inode_permission +EXPORT_SYMBOL vmlinux 0xf8d69889 pci_dev_put +EXPORT_SYMBOL vmlinux 0xf8d7d690 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf90e1804 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xf92eef3d kernel_connect +EXPORT_SYMBOL vmlinux 0xf946136d pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xf95d5641 ida_destroy +EXPORT_SYMBOL vmlinux 0xf993c870 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b112a0 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xf9b68989 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xf9b717dd proc_create_data +EXPORT_SYMBOL vmlinux 0xf9c75cba __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xf9e09896 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xfa2085bf inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa5437e7 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xfa57e263 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa82ac87 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xfa8a60bb blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xfaa09920 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xfab64c47 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xfac60968 lg_lock_init +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfad25300 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xfada4dc8 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xfadfb8d1 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfaf0f7a6 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xfaf887e4 fd_install +EXPORT_SYMBOL vmlinux 0xfafbb5a6 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xfb2e0e76 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xfb39e461 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xfb5f0640 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xfb65e2f5 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb6b6f74 raw3270_request_free +EXPORT_SYMBOL vmlinux 0xfb725329 mempool_create_node +EXPORT_SYMBOL vmlinux 0xfb7e3eee blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfba5af2c scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbc34e73 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbdbda41 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0xfbe54c16 get_io_context +EXPORT_SYMBOL vmlinux 0xfbf1e5e1 unregister_key_type +EXPORT_SYMBOL vmlinux 0xfbf39aa8 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xfbf49823 blk_recount_segments +EXPORT_SYMBOL vmlinux 0xfc0039cd unlock_new_inode +EXPORT_SYMBOL vmlinux 0xfc01836c jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc161507 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xfc162690 sk_net_capable +EXPORT_SYMBOL vmlinux 0xfc3294d5 devm_memremap +EXPORT_SYMBOL vmlinux 0xfc3a6653 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xfc426295 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xfc428965 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xfc46bb96 itcw_add_tidaw +EXPORT_SYMBOL vmlinux 0xfc4b214e gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xfc59d0bc mempool_destroy +EXPORT_SYMBOL vmlinux 0xfc67bdbc skb_copy_bits +EXPORT_SYMBOL vmlinux 0xfc6af0b9 page_follow_link_light +EXPORT_SYMBOL vmlinux 0xfc6dcd8d qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xfc7e87d9 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xfc8b4177 vlan_vid_del +EXPORT_SYMBOL vmlinux 0xfca3c57a pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfce5e249 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcffe8ca sclp_pci_configure +EXPORT_SYMBOL vmlinux 0xfd34dcc2 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd9d58f7 ip_options_compile +EXPORT_SYMBOL vmlinux 0xfdacefb6 __lock_page +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdc57c35 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe003a5a pci_find_bus +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe070961 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xfe15d4bf kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe47f75e jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xfe499720 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe7fc23a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xfea7329b __pci_enable_wake +EXPORT_SYMBOL vmlinux 0xfeb9a344 sock_create_lite +EXPORT_SYMBOL vmlinux 0xfec11a22 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xfec8e6b9 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xff0f1046 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xff1e2abf locks_remove_posix +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff455c53 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xff4840d4 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xff50201e lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xff539bd5 blk_start_request +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff836088 dev_load +EXPORT_SYMBOL vmlinux 0xff83bf26 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xff8c7fe2 md_update_sb +EXPORT_SYMBOL vmlinux 0xff8e387f sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xffa1c40a inode_set_flags +EXPORT_SYMBOL vmlinux 0xffa24c6c clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xffaf1f22 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xffc6b33d vfs_link +EXPORT_SYMBOL vmlinux 0xffcfee41 request_key_async +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffd82afd dentry_unhash +EXPORT_SYMBOL vmlinux 0xfff3e13e param_set_copystring +EXPORT_SYMBOL vmlinux 0xfff44b1c bdi_init +EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0x03956dec s390_sha_final +EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0x62160916 s390_sha_update +EXPORT_SYMBOL_GPL crypto/af_alg 0x04391dba af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x071908d1 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x1ac1decc af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x363882a5 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x3d03b0e4 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x60075e96 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x75a88881 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x8183b4ac af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xa544b18e af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0xca8b12c4 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xf03e82ad af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xffd964ae async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x68251429 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x8c2bb29a async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x58fcbb6b async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x62f64774 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x37edd2db async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x59e2cc98 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x625c82a0 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x1337252f async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe28821d9 async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x5c593d69 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x435a0565 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x02c025cd 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 0x6220609c crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xc7d724db crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x0efee645 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x2292d741 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x5e11f5f6 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x8a4c9441 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x920a1975 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xbb24c40d cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xbf190199 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xed293fa4 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xf68701f4 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xf6a983fe 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 0x03b5e87f 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 0x150ce87b shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x199c86c3 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x3fc01fde mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x55f1ec4c shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0x7fa386b9 shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x84ddea7f mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x950e4271 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xa7a55ff7 shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x305eca17 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3e48b814 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x7091b60a crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x91054b13 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x22649fad 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 0x7348f387 twofish_setkey +EXPORT_SYMBOL_GPL crypto/xts 0x828bd2a3 xts_crypt +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x290ed3a3 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3b59c7e5 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x68b85651 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa327608f of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc61d945c fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfd8d4be4 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0b956dfa intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x499c364b intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x66ca865f intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x79b32693 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8646fefb intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdd51c31e intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfa2ed852 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x102ae57e stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7371c688 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7f3e652a stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xba4bc900 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe4425b65 stm_register_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 0x0535c7a7 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 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6956a9eb 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 0x9d1fbf64 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa58073e9 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb01c9b56 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 0xbfea08bb dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd2f862da dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xde55f7f0 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe0737e0f dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x56b93e06 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 0x33551cbc dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6bffe0d1 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x722e30df dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8bdda45c dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xab76c954 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcfab6999 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd8111112 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x6edd1f57 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xcae57c55 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 0x25ab00b1 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 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x79b4fab8 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 0xeccefa8c dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xed207a24 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf8ec6e27 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf95e1a0c dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 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 0xa29a8c65 dm_block_manager_create +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 0x029b15cc mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0752e1ff mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07dc039f mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a416227 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a60e1b4 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c2ae1cf mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cbb0257 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1125ca88 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1593a3c7 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16361e60 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1769b12e mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bc14cdb mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c9ce030 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21584857 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24a53dca mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2581db57 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26305063 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2722c487 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x285d3a03 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dc8e480 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f26250d mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x307fa2de mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31a4ccef mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32b54d72 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32ca1ff1 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x370d70ea mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37362005 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3991e37d mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bca3f06 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c825e1f mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e4ddb17 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f11783b mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fa33f42 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40fdbec4 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x465a211c mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46a5488f mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48126f33 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48877f7c mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49083cca mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a55d987 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4af55e2e mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e1d1b38 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x501b018f mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56ee880e mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a259e8c mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a64cca0 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a7719e0 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d3d5fbe mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x603e1a0c mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60751f09 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6137df77 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62995bfb mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66493cf0 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67527c90 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ff81ff1 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70d83c75 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x719a306e mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x754c94f7 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d245694 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7de2cace mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7eeae802 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x806a25a0 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8161386c mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83e63a91 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84039164 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85789168 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85ea1609 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8680affd mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b23da44 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dc41daa mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x921e6b2d mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93833f1e mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x944277cc mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x979d511b mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x991b9ab3 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9aaf9ce7 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dd57906 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9de52911 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e67dfbc mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0115dde mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2d24b0f mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5e5ed6b mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa661253d mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8037165 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa87101c3 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8f85f08 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9ac8d1b mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad6b6ec5 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1eb63ce mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4f6053a mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5e635ff mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb72c442e mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7a4f3d2 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc3cec33 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcd727d7 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdefcf78 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf0adf61 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc14b0901 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1508f59 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5c78acf mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6d5833d mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8095116 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbc23cc9 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdc70644 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd08141c0 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5c842ef mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd68147b2 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd78f311f mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb969caa mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xded3ff43 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe289940c mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2cee9d3 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe603a2d3 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec512133 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec537d10 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecfe6cf3 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedbdd706 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee312a5f mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf19ca15d mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3d06ef7 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf61f135a mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf929ab16 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc3e1e2e mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff488e39 mlx4_flow_detach +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 0x0a9891d4 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10b44909 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13df3ba5 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13ecfd84 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16d25b6a mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x170fd5f2 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2718a01e mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d400a63 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32cdd9f0 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b46b909 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41b3e58e mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x425277fb mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b8f5a01 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c403eff mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cdb0335 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52921cb6 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x562456ea mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b458f38 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d4bc6fa mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x616791b9 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x776ef02e mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7813633a mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ad30285 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ebb38c3 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ef8fb59 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a7fe8f0 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b42a4a5 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bd75844 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f4656f1 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90b1167b mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9eb8d033 mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa23219da mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc973fd46 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd385531d mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3fbfe4d mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd603ea1 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe11e8fb2 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe22ef4f9 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe496d967 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9821d17 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee27ee40 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef0cd3a5 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf11340c1 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf743e45e mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff9ca8fb mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/geneve 0x13d4c12d geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/geneve 0x6ec7fb9c geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x70961f25 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa7f3947c macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa9c1e09a macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd5bdd4b6 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x25dbc275 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x089b3888 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0dbd07f8 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2277f851 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x75a8921f bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9ad9f809 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb4d773c4 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc19010d8 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdd1a0910 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdf845404 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfe90907d bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x6cd51a46 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0xf833a802 fixed_phy_register +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x5feb17a4 devm_mdiobus_free +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x99ec8452 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x918e4838 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xf18e71b1 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x014ece2d dasd_free_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x02266666 dasd_generic_uc_handler +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x15630187 dasd_generic_pm_freeze +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x19227556 dasd_nopav +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x23c82efd dasd_generic_set_online +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x23dee721 dasd_generic_handle_state_change +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x29f24308 dasd_generic_remove +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x2c873ef5 dasd_generic_notify +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x34428693 dasd_generic_path_event +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x3598ecb9 dasd_generic_path_operational +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x3ccdc290 dasd_wakeup_cb +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x521c9dc0 dasd_generic_probe +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x5980d286 dasd_device_remove_stop_bits +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x5c1ba2f0 dasd_generic_read_dev_chars +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x627a037d dasd_get_sense +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x6e433f5b dasd_put_device_wake +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x7473d067 dasd_generic_restore_device +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x77034296 dasd_generic_verify_path +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x878df0df dasd_generic_shutdown +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x92b58329 dasd_generic_last_path_gone +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xa6c22abe dasd_alloc_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb38fe028 dasd_page_cache +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xd840eff5 dasd_device_is_ro +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xe2559314 dasd_generic_set_offline +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf15784f5 dasd_nofcx +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf3a80fa4 dasd_device_set_stop_bits +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf587d814 dasd_flush_device_queue +EXPORT_SYMBOL_GPL drivers/s390/cio/eadm_sch 0x24f2806e eadm_start_aob +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x16560784 qdio_establish +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x50546999 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 0x8b647065 do_QDIO +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xa285637e qdio_get_ssqd_desc +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xc46757bd qdio_free +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 0xe0182a44 qdio_shutdown +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xee26668c qdio_allocate +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x06534f8f qeth_query_switch_attributes +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x07c87a1a qeth_generic_devtype +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x10827785 qeth_print_status_message +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1207d506 qeth_hw_trap +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x12dacbf7 qeth_set_allowed_threads +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x19728a63 qeth_hdr_chk_and_bounce +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1aa4aaa4 qeth_send_control_data +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1d659a10 qeth_clear_thread_start_bit +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1e6bd38c qeth_threads_running +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1ef65b10 qeth_wait_for_buffer +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1f96e7ee qeth_configure_cq +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2cd9e4cc qeth_core_header_cache +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2d93dfa3 qeth_core_get_drvinfo +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2fc41421 qeth_realloc_buffer_pool +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x390ebe7d qeth_close_dev +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3a772010 qeth_get_priority_queue +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3ee79eae IPA_PDU_HEADER +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3f5309b9 qeth_queue_input_buffer +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x419cabe5 qeth_clear_recovery_task +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x43f7059b qeth_qdio_output_handler +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x44e0a308 qeth_core_get_sset_count +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x48830050 qeth_set_recovery_task +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4b521a54 qeth_wq +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x52da514a qeth_clear_working_pool_list +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x562b68fe qeth_setadp_promisc_mode +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x608db65b qeth_do_send_packet_fast +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x622d10b5 qeth_prepare_control_data +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6423a80b qeth_send_startlan +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6e04e216 qeth_release_buffer +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6fb41d13 qeth_set_rx_csum +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x70ed5690 qeth_setadpparms_change_macaddr +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x71ebb8ff qeth_do_run_thread +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x755277d2 qeth_qdio_clear_card +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7dd16dc7 qeth_get_ipacmd_buffer +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x80159cf0 qeth_core_card_list +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x806830ec qeth_query_setadapterparms +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8cc44831 qeth_wait_for_threads +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8f6978f8 qeth_device_blkt_group +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9487f311 qeth_send_simple_setassparms +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x97e45bc2 qeth_device_attr_group +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9aefb7d9 qeth_init_qdio_queues +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9b3065bd qeth_card_hw_is_reachable +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9d37cb1e qeth_get_stats +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa4f671c1 qeth_dbf_longtext +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa6b0ff68 qeth_core_hardsetup_card +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa755959d qeth_get_elements_no +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa80e0beb qeth_tx_timeout +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa957d771 qeth_qdio_input_handler +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xadda551d qeth_send_ipa_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xae4c2ef9 qeth_change_mtu +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb1930151 qeth_check_qdio_errors +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbc5de4fa qeth_snmp_command +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc7d9be2b qeth_send_setassparms +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc9006bd8 qeth_get_elements_for_frags +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xcd3da1f9 qeth_core_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xcfaddf19 qeth_clear_cmd_buffers +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd4b6c563 qeth_clear_ipacmd_list +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd512051e qeth_query_ipassists +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd5feb856 qeth_dbf +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd62f71e7 qeth_qdio_start_poll +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe0cc849f qeth_clear_thread_running_bit +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe3a7475d qeth_query_oat_command +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe4543514 qeth_set_access_ctrl_online +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe8faabd9 qeth_mdio_read +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf1f0d64b qeth_core_get_next_skb +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf39b8f52 qeth_schedule_recovery +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf5186907 qeth_prepare_ipa_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf7355c36 qeth_trace_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf808d696 qeth_start_ipa_tx_checksum +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf8244a59 qeth_core_get_strings +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xfb9ae8bf qeth_do_send_packet +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xfea39b37 qeth_core_ethtool_get_settings +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xff3c9207 qeth_clear_qdio_buffers +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0x1ede6657 qeth_bridgeport_an_set +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0x7c872be8 qeth_bridgeport_query_ports +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0xe2913bfc qeth_l2_discipline +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l3 0x93cbec19 qeth_l3_discipline +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0957be0f fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0c05f903 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2a99610e fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x364e7519 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3815e5fb fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x460eb024 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x59f747dc fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7398639b fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7812ac6d fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x82bd1a6e fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8697ee4f __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8bc9c566 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa55db447 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc8f79a61 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe5dffe50 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf15bfa6a fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x10bfce5c iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x887efcd6 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x97ee1852 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xad2e4259 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xdac3ed15 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf6197ad0 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x057ceca8 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17c2a27a iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x185995c8 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a8f12e5 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b18b279 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2cff474c iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36cdac8e iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3957e9b0 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3c990b00 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x451f6285 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45bbf003 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50c101b7 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54dd1581 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5682b368 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x694dadc8 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69c63571 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6a3e6760 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b2a99c1 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x742fb1d5 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74f9e5b1 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7eb30df6 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x899478aa iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8a7e063b iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9738df88 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaee404e0 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb039feeb iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc46a6d7 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbcc16bd0 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbef1d658 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc08b55a4 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc168da97 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc73d5159 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc93c1a6d iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc9e1931c iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf8ab608 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdddda769 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe3cffd40 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee5d2217 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf0f37cc6 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf37742a4 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd282b0e iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff6080ba iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1aabf124 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2ce2c660 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2f12c4fc iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x355ce431 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3959450c iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7b52c83b iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8a021c61 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x90643201 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x90b53f3c iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9575b40c iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xce34659d iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd8dc05cc iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xda979463 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdaaf6a91 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdec6ff1b iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xef2b27b9 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf279e28d iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1e0bfebb sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x320d14a5 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x323165d9 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3c462802 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4322dad1 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x47b218e2 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4982ee49 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c37d0b4 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x63aeec5d sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6a97ff3c sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x72ff86cc sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7ad8bc7f sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8c2497c5 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9da1d172 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9db9d5cd sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa022cd87 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb8190217 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcac0467e sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcc6aa719 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd3829673 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeb0c8445 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfc56c56d sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfeafb6af sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x005b3da6 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0284e8e6 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0aab117c iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0f25127b iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x10e2e9d7 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a23f3b8 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2cc53be4 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3043e09c iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x32f3aa5a iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4418248f iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5c8eb5da iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6207f727 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x637d5ded 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 0x6bb006c0 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6cccb316 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x76dd8f57 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ef02dd9 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 0x8d20237c iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ec3864e iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x932dee73 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x99618393 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d52a869 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e3d64a3 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3a4e23c iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa6230bee iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa69b962e iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8b9c444 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaacc6f8f iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab668631 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xabc782f5 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb56e5ba1 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcb1b9c67 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcfbebda6 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6eee232 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde839d0d iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdee77347 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe82de95c iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf88b5325 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf92d49f3 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfee8dc97 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x511f7539 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa9788576 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd5cd84fa sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe5ac6a75 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x7137a34c 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 0x1b5c61a6 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1bad43dd srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x35fdc6e5 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x79fbf4fc srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb711db55 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe3dbb1bc srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x226e43b9 uart_handle_cts_change +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x961d0891 uart_insert_char +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xdab928e4 uart_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1228f545 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4e6858a9 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x57f6337d vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x59f84a65 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 0xa8f6bf52 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 0xcdbae15e vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd68325fa vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x8d744fd9 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xd00f3bbe vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x09709947 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0df5039a vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a366081 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1aae5460 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1d576b15 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1f85aa37 vhost_poll_start +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 0x31ccc47b vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a9f5b44 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x435a8d7c vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x502b03a1 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x52d8092f vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5e347c7d vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ed047f2 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x659a8d36 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6e1ad69f vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7e941af6 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x891a67e4 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8a45c299 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8a7961b9 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8c778ff4 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9914a5fd vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9b902beb vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa35cad26 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa53bef9a vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa8d6b246 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb87676af vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xce3f72a7 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe619f78d vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfb3b8a10 vhost_add_used_n +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x5288a108 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x5bb3a461 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7873a5ae 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 0x43e61fd2 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4db2b1e8 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa020c674 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb6636bca nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc40fed71 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdc7241a8 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdd4201bc nlmsvc_ops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x074a5f26 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0838350d nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09307e96 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a3420d6 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a5976dc nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b12ff9c nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e782765 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fc63d57 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11724465 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13ec3f7c nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x159f59b5 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18f00dea nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c4a377a nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1df88ab3 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20a27899 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x245e0884 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26427487 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x285d379d nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2caab27e nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d0b27de nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x309fa3e0 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3303c93d nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x368bac4a nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36bd6c00 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3771a850 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38bc4380 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c22542c nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c72d786 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d69ae29 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3dc4ffd7 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f532786 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fbdd545 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fda363e nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x429a99e5 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43c81014 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45f586b1 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45f81cbd nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46610332 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47147433 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x483fd4ff nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48bcd001 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49493b78 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a6a63f1 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a959fa5 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c5256fd nfs4_label_alloc +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 0x522ef447 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x532a17d9 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5332380f nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54762934 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54c69229 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55a9c75b nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fd9d1cf nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6128df86 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6434ba89 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66f7f1d2 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68d650ba nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c7228c9 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d3d0d11 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dbf8b27 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dd4f778 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e742ae2 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ed9fc23 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7259258c register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73cdaa08 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x754772d5 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76dcca1a __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77a124ff nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b41aa6a nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b749b27 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7eee4ae5 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8071363f nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82362559 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8381630e nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87cbb6a4 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ae79914 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8de7636e 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 0x9686bf2a nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9728c133 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99118fc8 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b6d66f2 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d81ebb6 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa194d183 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3d68455 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaae4c015 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac7b4847 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad0ce7a0 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadebb790 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaef7cc23 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf4aa574 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb02db877 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb16d0685 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb45a1f58 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbafc4e45 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbcc9973 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf9dc1ae nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1a9de5b nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2b673d9 nfs_free_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 0xc6149018 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc738748a nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7c4e988 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcae05258 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcafde490 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb9be79e nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc4ac024 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccc2f104 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce85a448 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd046b30e nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd08476fe nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0b5aefe nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd18d0297 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7ff71e7 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd919bbe3 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda6f44ce nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbe486cd nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe15f20f9 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3eee1f1 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6aecb0a nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe78dc8a0 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe78e8fba nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee9d5c9c nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf583c087 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6605ae2 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7e51142 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf80c2e44 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9677e90 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbb3f14c nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x5392817b nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c7e0007 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10e49c7d pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16c912c6 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17e9708f pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c4fe0b4 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x200e56a1 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x202cbc32 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22a65530 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3280a3b1 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33422e35 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43a4c0de nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45ab23d2 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54f5a540 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58ade8b3 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59c8f286 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62bc27cb pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6691ec4f __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b8e6ec1 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6bdca54c nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f205400 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81006eb0 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83c55d3a pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85489f63 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87e5e36a nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x892cfd4b nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8945bbbe pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a440f88 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e12acbb pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9049ccb9 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x923fe95d pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98843887 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa099d68b pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0b92020 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1e33e57 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa29a07a9 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa37b0551 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5615148 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaaca8c5c pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf687086 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3878b7a pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb77da9fe pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbed99225 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0b4f6a7 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1406b62 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3331772 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc51884d6 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc5851ab8 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd18618a0 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd21b4d53 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3af20f5 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd43bbb14 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4c8b17d pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd76b9d47 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9bea2ea nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdef7ebf2 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdff4e37c __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe047fd71 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe891677f pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe96bc9c0 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf025091f nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf14d6888 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe36d6b4 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x32ac33f3 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xb7fe79b9 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xe0f3b46f locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x24fc31bf nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd1862dc3 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4ea937ce o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x521e0726 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8109eeac o2hb_register_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 0xa6955a58 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 0xc9e9d7c2 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd12be062 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 0xd7923504 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf149a7b7 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0ef12b2c dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x43666dfe dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4b193d51 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x8b6f08a5 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 0xdecc32e9 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf222021b dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x07d52f29 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2839944b ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xefdbd5fa ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL kernel/torture 0x12d66ba1 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x4210db30 _torture_stop_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 0xb7356d92 _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 lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x5ee0362f notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xfa2eabcd 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 0x0e30c40a garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x5cac3292 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x771734f5 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x89817e88 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xa5d05bdc garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xf760fcdf garp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x0e5411d2 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x5eb32731 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x9eb8823a mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xdc8b22f6 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xe08aaa6c mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xf63e585f mrp_request_join +EXPORT_SYMBOL_GPL net/802/stp 0x9ed82be5 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xea9dc62d stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x0104bc91 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xc16cf77e p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5dd74c68 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6fcedbab br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x79b165c1 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x919cad68 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xaad4c75f br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbe616304 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xda071d83 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe0bafa2b br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x4b329163 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x55e61a02 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x03353e1f dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x03510aa2 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1bdd0d02 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d23509e dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x350b1f9a dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x35f02167 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x37a782c3 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x38d369c7 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4152034b dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4f148bbe dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x501be323 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x529b0591 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x535def1b dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5783e3a4 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x60ff6c0c dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x64b46619 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x69c5eb57 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x726acdb9 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x759e3062 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8675bd13 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8fe6b893 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x90b7847a inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9dd9dca7 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa41de490 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa79eb6c5 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa9a64b14 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc7ac2242 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc898326b dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd0fe611b dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd22e36ab dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd946a203 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdfdd5650 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe0397c7a dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe86962d6 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeb7ea175 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf456f44c dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1cad5b1e dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4473fbf4 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x50dd1f85 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8a4b9631 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xdfc4db44 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf187b886 dccp_v4_connect +EXPORT_SYMBOL_GPL net/ipv4/gre 0x54996a55 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xc43a3f09 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x380f297b inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x581b44ec inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xad98e4ba inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc58891c9 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcf545236 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xde8e8246 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xf72d824b gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x03524ac3 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0e49bb31 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x19d9f96f ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1cf83543 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x278d4e62 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x36c25453 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x382b78e5 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3bcf8e76 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3cb6f7e3 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3f376903 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6b185989 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x79dad538 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x88c7ff5b ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa4219df0 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf52c56be ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xa7433c3d arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x97ff1dc4 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 0xcd75052e nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x787bc56f nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xaddb59c0 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xb07b6061 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xe011d46e nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xe29b52f7 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x35041943 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 0x018da60c nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8d930dbc nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb69cfef4 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdcb4a073 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe16680b1 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xac8eb847 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x167e63cc tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1be1dcde tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6c0bb5cc tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd3409263 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd5314747 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4d134007 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5296b124 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x66301a1c setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xcbd7c315 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x41baf945 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x47f37378 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4d255327 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x65883112 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa06c1c00 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb3ff94cf ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xdb56f277 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x43324a53 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x9fc20224 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x055df2be ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x2eb40051 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 0xbc27768a nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xb24d1e29 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x2596b0aa nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x5effc322 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x79ad8979 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x9758a26f nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x9982b481 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x10c8a442 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 0x1a80551e nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x367663c4 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x98ae87a8 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb8043511 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb8a46250 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x0a43fd2b nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1bcb31bb __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x291436fd l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2d83e706 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x31426ba5 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x59f4b903 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8650c885 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9abe6e14 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9b03c867 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9e6f9755 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb2ef5a61 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb618bb31 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd01e6525 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xda22fa1d l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdbd47522 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeba617f2 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf1f98e2f l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xafe8779d l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x57f736c0 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8b9b6c88 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe8467533 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xea813b1f nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b2310aa ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1532b1ba ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x28f8d554 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2e2197a0 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2fd03daf ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3c7b9522 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4efc630e 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 0x83334124 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9d08dc96 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 0xb433ff6d ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb959eb87 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc8bbb843 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcb0dd5a1 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd4675985 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe9543437 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf57425e2 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf7b6ed83 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x56f20c05 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x64a37f72 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6f0d70c4 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xffb8999f unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00b33316 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x017d1679 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x030b8772 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03b76c81 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d3720d8 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ed05487 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19331bc9 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a314ddf nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a5eaf98 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21676976 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a4b96e3 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b87378f nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ff213a3 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3089bf14 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3262c138 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36d67aad nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39e18957 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c29d10d nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3da30e20 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fb94325 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x405cf358 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4062440f nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4919906c nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4da3831b nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x501d6bce __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52674380 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53fa80e7 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x543da7f7 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5491b46f nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56f838ee nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b7e784b nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61cce265 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61da7326 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 0x6324a6f7 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6356bebb nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x665183b8 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6adbc6f0 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ca5f8e2 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e63df67 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73c60f03 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76bbd1b4 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7771a239 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79823271 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c005a6a nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a561b48 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f94b0af nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90e331e9 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9108e33f nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x929b64bc nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92c5af8e nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9323c983 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9382894b nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9572a3cb nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97a2f7b3 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98d67c1b nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9bfc4946 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c8206e9 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa41ebd2a nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa532886f seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa744c149 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa9a3ade 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 0xabb78e50 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 0xb0ca4409 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6f5aba2 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbde45f0e nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0f54ac2 nf_ct_tcp_seqadj_set +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 0xc7ad10e8 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca398442 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccbfd992 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccd73870 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcdb58cb6 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc1b8933 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1621099 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe211867b nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5756988 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebec7d20 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef27d9fc nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0628bb3 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf94a5b2b nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9e2dceb __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xda89937f nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x1bcd7ea2 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xbb6bd965 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x15e105af set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3c70ad6a nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6d37fbab set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6f2a6132 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x701438dc nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8eaaa013 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9ea97367 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc62f0cbb nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe807f914 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf4ee7cb1 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x3f638d84 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4fd281c5 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6a743b15 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb51647f4 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc9fdd22c nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x9da6da01 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xdcf4d876 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x24d1ec45 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x580444ad ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7133aaea ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x81bc2044 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x880b50a6 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd1fde499 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd354d3fa ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xe4cbcd53 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xfdf4876e nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x262b7b05 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x467c94fc nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xd1d739fe nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xe041b761 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x09dcb416 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x412a26f5 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x603e138a nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6a7ca0fa nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x751e433c nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x775ebd0c nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x82461447 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdfb00af3 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xee4da04b nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x7bc2a436 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x7fd80c85 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 0x22076146 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x423960ca 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 0x0cd1a66b nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x11784fda nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x17f89a93 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1baa075b nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x29a3a949 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4a6acbd6 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cbd1265 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x56bbb554 nft_unregister_set +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 0x6f026371 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x73cd3686 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8dd87d03 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8e056285 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8e16f652 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa0f855cc nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb46d811f 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 0xd5b226ca nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeae6fdc2 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0e6c67db nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x530c1a43 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9cfe340e nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa7ee3d70 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xad4184cd nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb90ff222 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd164601c nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x172dbfd9 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2f61e73c nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf3ce95c4 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xfa16f21c nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x971e2f24 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x98601143 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xbc83ddea nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x152f2aa2 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x45f37f57 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x47b56891 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4b62d817 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x56188626 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x5c7fb25c nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x5445462f nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x6b191e86 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xbadca405 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa5f92048 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xcc4ba81c 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 0x07bd2d86 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0bdf1fa2 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x20bdbc2d xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2b6cd7e2 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2d9f8d6f xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3c4966bb xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3e14227f xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5621c264 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5d3684f6 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x66aaaade xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x67bea3d4 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7b4ae401 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7e111c88 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x826eb494 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb151c739 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xde19ee84 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe1083034 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe6af489b xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf61bc665 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf8d49c13 xt_find_table_lock +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 0x04ba6575 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0fd83374 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x41b7e419 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x51c145e8 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6577bd87 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7d477f96 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcc2ae253 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdf18e8f1 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf61ed9aa ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/rds/rds 0x001b4753 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x01c827b7 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x21811acf rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x306a395e rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x362ffb7c rds_send_xmit +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 0x3d0209ee rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x4de84f4a rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x57c0f1fb rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x73402d3d rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7c518fe8 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x8c2d74a6 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x91453f06 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xa74a4857 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xac47113d rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xc2da8e38 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc8fb838f rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xce0ca026 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0xce28f51e rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xdaa6e8be rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xe4f0591c rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xe7046134 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xeba7145c rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xed0c74c2 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xf736875d rds_inc_put +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x6895e123 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xacb094ca 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 0x6b1f244c 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 0xa65b4ab2 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 0xc0dd4efe gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x048b7290 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x052646ea rpc_alloc_iostats +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 0x07f45368 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0acc4c81 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c57cf08 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cecd533 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dda3d12 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10a80844 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11d2fae9 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1386d9e1 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x142b8195 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17786b05 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1790a840 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x180e81f0 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a26e006 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a43938e svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ac6c8d5 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fd9d2cd rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25162698 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25883706 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x267b361c xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2759822b rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x280a5bb9 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28b18e71 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a6da2c7 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ab7eb04 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2af5ebd7 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cdedb69 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d643d75 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e1c2fa1 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x303c0f1c xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x307e9a3a rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3098bbba gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3214f8f0 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3237a0b2 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34a76e54 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34e4dcf5 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3616a76e xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36e6d680 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x375679f8 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3767127f xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x376d092e rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x392d1104 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a422279 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a4af920 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bebabfa rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d7f9199 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e9c2875 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f21b891 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fcb501c rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40dc87ef svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4598dcb5 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47a340a0 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48d4d88e rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x491bf191 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a446fb7 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d260d45 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d610988 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53cd170c xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55a2fae0 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5659fe07 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5be9e1bc rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bfa4f45 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x604c1a71 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60d40052 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x647815a1 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6514bc23 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x668f6ff0 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6702b8a3 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x671fcd7b rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x685d9801 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69181490 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f262ccb xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f466477 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x705ee4b5 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70feaaec _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x719a4ac0 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71e00e87 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73e179f8 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x747fe607 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74b36803 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76f4dad4 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a40d13a svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bef45b6 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7da56fcd sunrpc_cache_lookup +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 0x817d87e7 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84a76fa1 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8526ee4d cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85cf3407 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x869278d7 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x878d6a19 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8882da98 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x894d8131 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bfec61f rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d741a38 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f5e06f0 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x908c38e2 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x924554fc xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92a78f63 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93323416 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93788b0d svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9472e08a rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x964367d4 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96f100b5 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x987ba011 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98a9ce72 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x998fa405 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a1f0b23 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a6824c0 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b397806 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b69f723 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c071404 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d5eb774 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d9d2ba7 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f3a4627 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa068ad9a rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0d6d118 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3bda855 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4b890ee rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5072712 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa530ac66 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa80ce551 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa98349ef cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae14d729 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae685eb7 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf8271e7 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafce3194 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0b760e4 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb13b5d98 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb27da2d4 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb33b60ab svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3500e6c rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5209b41 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb65e5122 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7fa2e2f rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb04f4a1 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd428150 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf1335e7 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc00599de rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0ad7000 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc29853ab rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3312be5 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc372b883 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc42e1542 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc62f809b rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc67b969f rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6b3c336 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6cff10f svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9152bcb rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaa06e58 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb669989 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb9fdfb2 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc1e321f rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc2d1602 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce91d227 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0703bed svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3241578 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd34bcaf7 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4509d2f xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4554a99 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd485548c rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd584f2f2 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd741faca xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f5f2ef xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9bc964e rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9e7dda9 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda6d26ae xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdab5f0de svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb2f0fca xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc570343 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd45b014 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe06be084 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0990e89 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2a13de6 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2c4f5fb rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2d959ae xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe310fdb9 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4172295 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4249f9e cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4e035e9 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe548b24c xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe57c1f5e cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe697e3a0 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe80474ca rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeab4b435 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb56d94e auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee5dbc84 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefcb953e xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf02c5907 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0bedf9b rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0bf8a0f svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf176ef41 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1c04af8 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf52f16b8 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb15723a rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb76bdd7 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcd8654f rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd7f327f rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffb2a801 rpc_localaddr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x04457e9c vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x21282ef0 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3a675d95 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x479f832e vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5dde699f vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6e8bef98 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x744d3d9d 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 0x8ae4d142 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x920b80c3 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x94ff5afc __vsock_core_init +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 0xa8bd03b7 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcc7f5d34 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xee01b001 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 0x0c63c69a ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x838692c3 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa5626d77 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb2363513 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 0x0017abd2 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x002c3a4e save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x007fad7b clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x00a51a25 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x00b783a9 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x00ecfcb7 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x0139be27 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x01413c5f css_schedule_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x019582a6 pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x021ef75b nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x023ca025 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x024712a8 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x0250d0f6 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x026ad149 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x02931659 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x029581f5 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x02af8173 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x02e2aada inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x02e9d25f vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x02ebef25 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x02f1cc82 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0319411e alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x0319ad27 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x031b3287 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x036251b5 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x036f7e54 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x0377a18f kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x03a6315b pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x03c5781a blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x03eca20c crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0415ca4d pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x0417e0b6 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x045a7592 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x045e81e6 klp_unregister_patch +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04b15ac0 pingv6_ops +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 0x0525ab51 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x05477e85 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0565449f xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x05904f94 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x05c01e26 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x0603a6a7 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x0615bd67 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +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 0x0696daa5 gmap_enable +EXPORT_SYMBOL_GPL vmlinux 0x06ae167e of_css +EXPORT_SYMBOL_GPL vmlinux 0x06b77e5c crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x06e80561 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x072a25bd crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x07444e51 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x0754a482 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x07b18484 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07e6b63e ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x07fcbc94 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x08113de0 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x08456348 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x08529833 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x0858d191 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x085b0501 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x087e5147 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08b18063 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08f6cca4 css_general_characteristics +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x092c3637 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x097e6823 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x09f1a48f list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x0a25f613 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x0a4cd4b2 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x0a5172b3 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x0a5f478a md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x0a7cacae blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x0ae5ff87 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x0af0890c sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x0b0246b3 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b107261 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x0b20943e pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x0b44d69e class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x0b69f1c3 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x0bd178f5 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x0be680f1 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c03b1a2 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c144e7d debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c4d8724 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cdbb08d ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0cf66c2a crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x0cfbfb0f sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d57121a fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x0d57e048 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x0d5a7d0a netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x0d7227b3 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d7ef7d9 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x0da6a8de tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0def5337 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x0dfe62dc shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x0e5a45fb wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0e5e417c tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x0e7ba621 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0ed10dfe get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x0f2ea0b6 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f468b19 __add_pages +EXPORT_SYMBOL_GPL vmlinux 0x0f4962c1 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x0f52163c ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x0f9ec1ed list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x0fee2ab6 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x0ff29aec fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10339722 zpci_iomap_start +EXPORT_SYMBOL_GPL vmlinux 0x10650e4f vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x108d62b6 cmf_read +EXPORT_SYMBOL_GPL vmlinux 0x1091c7eb device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x10a47d83 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x10c91468 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x10e6ad1f securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x1104ed4e bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x1105cee1 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x113f3ed2 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x11719e84 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x119af014 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x11cff5ca crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x1210c7a7 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x12154ee9 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x122a6bde fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x1234ee27 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x129170c3 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x12c78716 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x12dad345 gmap_free +EXPORT_SYMBOL_GPL vmlinux 0x12e81f06 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x130bc7f8 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x135be98a blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x1362935b debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x13679f6a cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x137316a5 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x137ccbc4 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13b74b7c inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x13d2185b dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x13efab2a event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x141a7e12 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x14345732 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x144a19dd init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x145716e5 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x14e0ce76 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x14e12da3 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x150aa3fb cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x15609a0a __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x157bc422 s390_enable_skey +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x159d57af inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x15af958f crypto_alloc_skcipher +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 0x163284ee rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x1681e869 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x168a9520 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x16a78a68 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x1718166a crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x174d8f32 gmap_unmap_segment +EXPORT_SYMBOL_GPL vmlinux 0x176e6054 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x177b36b0 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x17b8f4f0 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x17d5ab43 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x17f065e3 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x18053e7d blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x18198b1d virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x18c6add5 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x18eb76e2 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x18ee6e09 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x18f83c05 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19162721 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x191e6629 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x199792af hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x19b48f41 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x19e38061 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x19ef4098 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a38ff3f blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x1aa2e963 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x1ab9c704 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x1abd1d37 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x1ac42d31 default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x1aca346b security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1b35613d bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x1b39766f inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x1b3cf96a blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x1b5aee92 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1b6c5a67 chsc_error_from_response +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1baf8334 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x1bf27045 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x1bfd5012 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1ce8fd6d page_endio +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d240eb3 kvm_init +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 0x1dc02c5b ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1dd4ca67 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x1dee5cb4 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1dfe5dd0 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x1e24ed2a mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e5b2a68 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e81821d trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x1e85b0d9 ping_queue_rcv_skb +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 0x1ee87f72 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x1f172e30 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x1f57c2ab kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x1f8268f2 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2018decc kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0x203c5c08 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x205f8430 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x2096b7cc trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x20b3883a tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x20ca40d9 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x20d6e50c user_update +EXPORT_SYMBOL_GPL vmlinux 0x20dd62af percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x210e61de wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x21130e33 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x213d9be3 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x213ec619 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x2144c37a crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x214e8796 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x217cf552 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x21a729bf rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x21aaac82 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21ba874e gmap_test_and_clear_dirty +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d01e35 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x21f7af05 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x22087125 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x2214cc29 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x22174c12 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x221ad22a md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x2221fa0d fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x22557772 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2267be9a xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x226c819f pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x227143f2 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22a66ddd inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x22e20b10 chsc_siosl +EXPORT_SYMBOL_GPL vmlinux 0x22e3dc5b tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x233f5316 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x23534baa elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x237d59f6 zpci_load +EXPORT_SYMBOL_GPL vmlinux 0x2380c3fa kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23ad05c0 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x23b0e9f5 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x23c8b358 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x23dec43c napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23f89df4 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x23f92ab7 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x23fe7bc2 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x241bfd9f zpci_store_block +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b197ec disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x24c6beee nr_iowait +EXPORT_SYMBOL_GPL vmlinux 0x24eb930f sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25214e76 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x2571b1a5 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x258b1624 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x2607a61d css_chsc_characteristics +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26319953 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x2641732f aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x264f350c system_trusted_keyring +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 0x2681bd1d ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x26a7c84b ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26e253b8 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x27022519 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x276ab5b8 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x2775cf69 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x27b9eda2 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x27d95955 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f631d5 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x28033e20 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x280474ec ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x281f8e7a pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x28315102 split_page +EXPORT_SYMBOL_GPL vmlinux 0x2857365b ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x2876b326 ccw_device_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x289da9b4 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x28cdc840 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x28d5d9b5 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x290189e6 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x2905f6e3 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x2940a261 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x295e5b13 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x2995bd65 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a11213b tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x2a1538ca lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a74d6b0 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x2a966bb5 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2acfcb08 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x2ae12569 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x2b0b6e2e dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x2b186c88 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b310e1e crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x2b441859 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x2b44a7a8 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x2b4d1506 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x2b5d840c crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x2b836d72 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b8f19da sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x2bad91fe ipl_info +EXPORT_SYMBOL_GPL vmlinux 0x2bc3189c pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x2bc5cbda device_attach +EXPORT_SYMBOL_GPL vmlinux 0x2bd80011 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x2be4789b pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x2c28cfdb klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x2c2a37f4 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c5b1f22 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x2c71869d __inet_twsk_hashdance +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 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d4f4339 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x2d559787 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x2d699270 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x2d6ebeed kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x2d9c8dc9 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x2dd92dd5 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x2df0ee6d clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x2df1ba0d memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x2e00f354 fl6_merge_options +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 0x2e3c8195 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0x2e3cfc00 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x2e621e93 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x2e6c80d5 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x2ea75725 ccw_device_get_schid +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec92012 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x2efa89aa sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x2f1a7d56 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x2f33b2e7 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2fc9a5c1 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x2ff6a56c platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3012b89b ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x30394152 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x304caa58 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x3087d118 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x30a486fd vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x30b32436 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30cfdb08 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x30e6867f debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x30fba2a7 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x310d8534 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x31251d5c pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x312b5710 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x3136fd34 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x31690a4f handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x317c1820 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x31ad7aff sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x320ec82b watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x328c9a73 __platform_create_bundle +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 0x32e93481 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x33e29e80 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x33f62439 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x340b6800 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x344756aa invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x3491cbe1 device_register +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34f2de57 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x34f579c8 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x34fc7648 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x34ff995f crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x3504a004 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x356d6284 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x35aa88be task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x35cb436e tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x35e00e55 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x35e491cf pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b404a9 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x36f1d8bb kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x3718982f perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x3726b59d blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x376a7f9d pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x3783d0d7 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x37840a16 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x37ad95d8 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x37b364d6 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x37b5d792 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x37ceea7b perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x37cf2c96 gmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x37d0a334 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37f1fb7a pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x38bc643a inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x390161b3 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x39176d09 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x393e4bd5 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x393ffa6f asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x39441ef9 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x39a27a3b system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x3a1b7c91 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x3a1c8df9 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x3a38be46 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x3a42ee6a crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x3a45d698 cio_disable_subchannel +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a6175d9 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x3a6d9156 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x3a731954 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x3a95ed74 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3ac6fcc3 virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x3b447098 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x3b5fd93d get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x3b8794fd __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x3b90103b skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x3b9bba28 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x3bb405c7 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x3c104e2a transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x3c1b1fea crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x3c218647 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x3c5eea90 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x3c6a5b3c kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x3c7761b3 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3c81c34d gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3ca78592 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3ce07482 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x3cf3c53a key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3cfd11cf device_del +EXPORT_SYMBOL_GPL vmlinux 0x3d105225 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x3d122141 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3dc0b666 shash_ahash_digest +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 0x3dee1d96 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e154065 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e25d705 find_pid_ns +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 0x3e963084 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x3e978f43 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x3ed18693 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x3ed91c6e virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f114e84 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x3f4e3888 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x3f7ca8ab crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x3fae9450 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x3fbcce03 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x3fd2f6fb chsc_sadc +EXPORT_SYMBOL_GPL vmlinux 0x3fe9d9fb crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x40093b47 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x401c94d6 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x40602b43 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x409613c8 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x40b67388 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x40d33f55 get_device +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x410381b3 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x4105a170 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x413e83ea pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x41432c5e ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x41679689 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41b1434a l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x41c015b1 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x41cedf67 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41d1d1af map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x41d58a5c kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x420da2aa virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x4223ee4b zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x427a2a3d dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42961430 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x42ecd930 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x4303342b device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x430f61e7 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x431809dd sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x43443c35 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x436258ed iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x43876901 dev_pm_qos_expose_latency_tolerance +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 0x43c4de4c pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x43dfb7a3 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x43eca819 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x43f0bf26 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x442e8c2f single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x44335881 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x4434ecd5 kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x4446568a transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x446b6085 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44e10d8b dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x44eb3994 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x44ed62b7 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x453ac28e cpuacct_cgrp_subsys_enabled_key +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 0x45b12c7b aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c508b0 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x460000b0 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x461999b1 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x4626d04f tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46783e5d show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x4687591c pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46f2566a fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x471a99b0 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x482d5c88 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x485ce97a __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x48697cb2 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x488073e1 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x488a07d6 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x48b6c638 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x48c62e4a eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x48e83281 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x48fc33d4 __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x498d5ecf chp_get_sch_opm +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49cfacf1 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4a15e47e kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a4d893b ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x4a6538df hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x4a7a4eea __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x4a8de509 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab170d1 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x4abe26d1 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x4ae3e840 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x4b01dc32 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x4b18565b static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x4b1bc5c6 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x4b2afba0 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4b2f68e7 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x4b840dfd probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x4b953337 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x4b9660ef __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4b9fede4 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x4bc99708 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x4bf6a9ca rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x4c28eea6 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x4c4e32e3 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c9aebf2 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x4cc1c9aa __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x4ce75bf7 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d737235 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x4d913f09 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x4dc69e5e crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x4dcb068d fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x4de51b42 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x4df8bf26 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x4e0afee0 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e749250 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x4ead4da8 __rtnl_link_unregister +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 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f9bc0ab hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x4fbb4250 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x4fc539b5 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4fddd4ab pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x502dca97 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x5054157e fat_alloc_new_dir +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 0x50a43246 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x511a7d80 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x5132a6bc virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x5157d77f __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x5162482a ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x516a0f08 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x518539f1 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x518c00da pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x51d26c8d unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x51ecf148 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x525c4455 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x52692723 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x52c0bf53 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x52ef6951 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x5307581b platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x531cd608 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x531ec8fa dio_end_io +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 0x5385da90 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x5389dafe tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x53c10172 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x54135576 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x54612e30 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x547b9055 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54c9418e tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x54c99b9a xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x54ef3d03 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x54f46088 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x550965a9 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x5515883a device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x553e13ff fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x554bb3bd fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x5556d53d xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x555f6be1 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x5560fb70 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x559f0131 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x55acf2bf inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x55afe264 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x55d898fd cpu_device_create +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 0x56391844 blkg_rwstat_recursive_sum +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 0x56c96b18 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x56d47acd rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56dc54c6 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x5711d4a0 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x5764b3d8 zpci_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579b3f35 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a97639 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x57ce0bbb aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5822f771 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x5827559a mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x58474b4e perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x5847979f pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x584dacf8 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x588320d2 vtime_account_system +EXPORT_SYMBOL_GPL vmlinux 0x58d3dc9f seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x58d41630 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x590cb192 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x5911ece8 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x59459fd3 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x5954d4d2 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x595e64eb __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x5997ae55 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59f17876 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x5a01388c pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x5a2f6e55 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x5a3475c8 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x5a70f81d vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x5a74d1a2 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5ac2727f smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x5ad626ae devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x5aedbcac unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x5b35615e sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x5b5e3cba unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x5b68c243 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5b73aa72 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x5bccdbdc ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5c276b3b __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x5c2f2906 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x5c327b0d pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x5c34bfe8 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x5c3be3e9 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x5c3c95e2 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x5c7047c8 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5c71d21a sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x5c75f23f is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cb73bd2 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5ccba1d8 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x5cff7000 __gmap_zap +EXPORT_SYMBOL_GPL vmlinux 0x5d2c33e0 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x5d3048e6 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x5d48efd8 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x5d690b82 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x5d80c149 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x5d8a8aa6 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x5d9d0978 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x5d9ea5be device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db98fcf kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x5debe24e blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x5df54907 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x5e313b1a hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5e3a50d1 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5e408790 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5e4ab9d6 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x5e6d63ae pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x5e7c569e apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f32dbfc unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x5f34c4d3 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x5f4e86fe trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x5f88ccb6 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x5fba98af __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x5fdec473 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6010b755 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x60273310 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x60278673 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6033bca3 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x60385d4e vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +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 0x60bc8dc1 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x60c95db0 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x60d14dc2 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x60dfaf41 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x61a97e5f register_reset_call +EXPORT_SYMBOL_GPL vmlinux 0x61f5903f trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x6219db61 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6248fa5d vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x625ae97d blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x626a4ab2 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x627b3e7b dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x6285c959 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x63630ac1 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x63767ebc pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x63f4dc09 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x640143ee fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x641796f1 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x646ce17d ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x6485f4d3 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x648bee2c shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x649382be __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x64c524b8 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x658b26f9 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x65b5255f class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65e744df sched_clock_base_cc +EXPORT_SYMBOL_GPL vmlinux 0x65f6d4e8 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6619a388 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6658a411 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x668015e8 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6686431c each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0x66a25234 chsc_ssqd +EXPORT_SYMBOL_GPL vmlinux 0x66a55523 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0x66c569d3 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66c95137 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x6726fe0b relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x67591402 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x675e1b6a __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67cbdc63 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x67e6a68e crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x67ef3b3c relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x6811fa98 device_move +EXPORT_SYMBOL_GPL vmlinux 0x68324a41 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x6872081b dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x689885af __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x68a546db add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x68bd8edf __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x68cf6426 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x68e16eee msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x690e2850 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x691b9761 xfrm_audit_state_replay_overflow +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 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x69fdfebe crypto_destroy_tfm +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 0x6a74e615 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a896bc7 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x6abfa8d1 gmap_translate +EXPORT_SYMBOL_GPL vmlinux 0x6afd141c rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b2d3523 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x6b344e08 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x6b99ceac device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x6bb7c8f8 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x6be5162c freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c11934f kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x6c3a6aea md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c895e37 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cc0cf2e kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6cc64697 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x6d00bdd2 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d320709 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x6d86d528 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x6dd137ec pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6e58f441 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x6e647f2a iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e9e4b21 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x6ebdfb72 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ef60373 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x6f122988 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6f287297 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x6f33d1a3 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x6f6a8224 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f821920 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6fa50e66 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fe614b4 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x70023ffb bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x700e2127 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x703a8740 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x7058bd1d user_read +EXPORT_SYMBOL_GPL vmlinux 0x707ae0b7 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7094eec5 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6659e blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x71087efd pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711cdae9 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x7151de3a mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x719fb2a6 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x71b85b56 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71faf281 scm_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x720a97b2 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x721d54cf device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x72663121 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72805dfe trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x7283a92c shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x729a7c13 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x72b699e9 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x72e7d21b crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x72ee9671 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x72eec8a2 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x7315aa51 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7331213a pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x73732d84 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x738cb556 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x73950077 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x73bb939c kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x73bcf75e class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x73bf4deb pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73e0b12b ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x74046b1c fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x745907a4 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x747bc4d9 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x74937272 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x74a30345 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74dcc875 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74e576cc driver_find_device +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 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x762c92fb devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x762e077f crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x76436cf8 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76e83fa7 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x76ea101c blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x76f80c23 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x770fe323 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x77627f00 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x777237ce __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x7779ced0 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x77bac45a pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x77e636b4 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x78541e4e ccw_device_get_chp_desc +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785bbf07 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x78929283 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78e7846c dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x78f91b64 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x7903459b component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x7924771e xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x79301484 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x7949aaad crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x7956127d rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x796690e8 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x797457a0 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x797ee609 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x79ab6438 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x79b4526c sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x79bd8531 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79ef2c15 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x79f15f74 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x79f92d17 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x7a1f9c16 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x7a33d9be debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x7a4de9ae __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x7a531f46 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x7a5845e7 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x7a5c02d5 appldata_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x7a81a584 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a94a766 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x7aba571e smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x7aea2aeb dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x7b043c82 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b23a00a unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x7b656813 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x7b6a3480 dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x7b6f1731 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7bd1d171 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x7be7ceac inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x7beb1c7b devres_add +EXPORT_SYMBOL_GPL vmlinux 0x7c49c5ff kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x7c5e4a7e css_sch_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c7927b4 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x7ce70c67 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d03ef11 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x7d11f632 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7d1b164e skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x7d1b7eed find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x7d1ed277 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7d33ed47 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d72a346 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x7dd3664d sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de1919b trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x7e2b1176 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x7e2cfc68 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x7e84aac4 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e9f4cb1 napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x7ec8e86e vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x7f095e0e handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7f190429 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f37430f task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x7f5a2420 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fa00652 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7ff129f7 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x80120515 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x80222c1c blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x8054f4f0 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80dfcfd9 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x81193363 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x8128a78b hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x812e6b76 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x813be746 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x8179fa2d bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x817b9af2 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x81ccbb10 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x81cda4d8 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x823ed1bb __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x82461e0a virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x826f6231 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x82850773 disable_cmf +EXPORT_SYMBOL_GPL vmlinux 0x82899b2d virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x82983379 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x82b2b2c7 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x83075895 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x8311701f crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x834e8fa0 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x838e63d2 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x83b0816e __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x83d1caac pci_proc_domain +EXPORT_SYMBOL_GPL vmlinux 0x83df17b2 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x840c9180 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x840d96ed dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x842ad39f driver_register +EXPORT_SYMBOL_GPL vmlinux 0x844ebd2c virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x848e49cc kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x84a7eb6d pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84bf1034 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x84e3bed5 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84e9d041 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x84fcde4a pci_debug_err_id +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x851c8ff1 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x8536f186 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x853ba6ef hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x8591ea8d single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x8595fc23 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x861c4ad7 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x863ca66e disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x864dac6f fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x869085b8 gmap_ipte_notify +EXPORT_SYMBOL_GPL vmlinux 0x86abcc4e __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x86c18440 zpci_store +EXPORT_SYMBOL_GPL vmlinux 0x86ca0e1d __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x86ecb3d8 gfn_to_page_many_atomic +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 0x8702be98 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x870ae660 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x872883b4 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x872a1473 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x874279f3 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x8754daa4 gmap_fault +EXPORT_SYMBOL_GPL vmlinux 0x8765b9ef evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x879f93e3 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x87bebef8 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x87ceb397 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x87ede4ad scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x880e47d4 vtime_account_irq_enter +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88240116 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x883ec059 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x8856d5f1 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x885985d0 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x886f07f5 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x88aac662 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x88dd9a04 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x8917d368 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x895c46ce alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x89c611c6 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x89d71987 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x89e8051f driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x89f70f43 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x89f908c5 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x8a12ee6a devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x8a1be3d1 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x8a4043a0 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8a540341 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x8a738b1f pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x8a92eef8 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac35e6c gmap_discard +EXPORT_SYMBOL_GPL vmlinux 0x8afcb698 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x8b2d19cb hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x8b8a1729 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8b9894c1 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x8bb9e802 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x8bc2c610 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x8bd2abf1 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x8be949f0 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x8bf109a1 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x8bf9b860 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c093df5 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x8c1d6ca5 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x8c348acb s390_reset_cmma +EXPORT_SYMBOL_GPL vmlinux 0x8c405836 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x8c61b5a6 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0x8c640b02 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x8c73dae1 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x8ca7e32e ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8cae0688 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x8caf10f6 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8cc33845 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cec446f key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x8cfc638f device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x8d0df4ca pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3fc478 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x8d82842e __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x8d9365d5 inet6_sk_rebuild_header +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 0x8db65480 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x8dd61ee3 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x8def1d5e device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x8df9e327 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8e098d4e bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x8e0dc962 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x8e327c72 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x8e43198f inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x8f033ced free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f3d8b39 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x8f5f58bc tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f8f940f gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x901c92c8 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x9028fcb4 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x9034400d component_del +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x90918a01 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90af607a crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x90c1c4f0 css_sch_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x90e5d678 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x910dfa25 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x913e3639 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x914da882 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x9159ecc3 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91a03639 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x91bce731 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x920e9f0c crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x92463caf wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x92638fd1 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x929696c4 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x92b1e410 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x92beb057 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x932b50db x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x93302583 component_add +EXPORT_SYMBOL_GPL vmlinux 0x9356081f scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x93586770 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x9363bc59 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x93739dd3 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x939e1e3f vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x93b15a50 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x93b660da tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x93d2c4d2 klp_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x93f72cc4 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x93f92170 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x94342547 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949dcb36 dev_pm_qos_update_request +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 0x9530f337 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x95416b39 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x95459672 appldata_diag +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x9561375d iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x958ccd64 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95b7b33f cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x95c73dc5 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x966766e1 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x9672e609 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x96822f5d wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x968977ff devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x968f913f list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x96b9b3a3 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x96c05a55 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x96e3a9ad kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x971ed704 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x97361d82 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x974f9c49 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97756f46 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x978793f5 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x97938a7e pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x9793d20d bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x9795eb2a ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x97a06b71 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x97a5b07a device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x97b1cb1f pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x98154f5c device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x9818e6b4 virtio_device_freeze +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 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98d20344 css_driver_unregister +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 0x995896b0 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99710b5f __sock_recv_ts_and_drops +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 0x99abe005 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99c40a88 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x99ce3780 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x99eb8070 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x99fa21e6 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x9a06b9e1 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a60d86e bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x9a622727 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x9a772da4 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9adff2bb skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x9ae6d5c6 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x9ae83846 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x9aea73a0 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b11a566 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x9b16d83f tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x9bb0d4e1 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x9bc061c1 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x9bdad62b crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x9be44c5f device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bed4104 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x9c07729a get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x9c080650 enable_cmf +EXPORT_SYMBOL_GPL vmlinux 0x9c1e2c14 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0x9c37692c bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x9c3868f6 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x9c7142b2 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x9caf85c6 unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9d2d3630 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x9d9c3529 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x9dbe7b52 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9ddeff18 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x9e32d4d3 find_module +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e619794 gmap_register_ipte_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9e68ff0b handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x9e7929c7 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x9e7af00b pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x9ecaf56c scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x9ed7649d kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x9f03312e dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x9f52fa76 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x9f871975 hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa006e7a2 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xa03c83f4 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xa0464e41 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa0478135 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa0583708 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xa083d58a driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xa0b65085 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xa0f62f29 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa103a1a1 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xa115dc5a bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xa135558e l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa157a32d pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xa1848dfa sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1ac08a0 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0xa1fa1368 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xa1ff5940 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2a170e8 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xa2a97b66 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2b598ab debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xa2b8f384 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2cd2543 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa2dd53a1 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa2f3f9cc generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xa30f4eec disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xa348f2e9 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xa3615d06 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xa37f64e5 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3f5bd75 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xa43487a4 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xa4571d97 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xa4a42813 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0xa4bd0f57 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xa4db45fb __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa4e2babc blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xa4e76432 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xa519a840 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xa537c962 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xa5481736 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xa56451bb pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xa576548c kick_process +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 0xa66d2483 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xa694869c tty_buffer_unlock_exclusive +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 0xa6e3c65b setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xa6f63878 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa701c4de virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xa7c78285 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xa7e8700d iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xa80619fe trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0xa81550da device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xa8231cb4 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xa84ed0c5 devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa87b0ce5 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xa890a62c securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0xa8a073c6 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8e59c06 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0xa9196c32 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa99ce89a kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xa9a271de pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xa9cd881b set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xa9e0a8c7 crypto_spawn_tfm +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 0xaa42df82 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xaa4e1a64 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xaa5f6d8b tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xaa78f80f iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaadb3d9f __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xaaf8610d inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0xab2842b2 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xab67ef5b eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab97a97d s390_handle_mcck +EXPORT_SYMBOL_GPL vmlinux 0xabab48ff subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabe12262 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xac208973 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xac411045 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xac438615 css_sched_sch_todo +EXPORT_SYMBOL_GPL vmlinux 0xac69d6a5 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xac7421a1 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xac9a8c90 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xacb51035 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xace984eb posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xacf31a62 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xad1d55e6 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xad3dfa13 lgr_info_log +EXPORT_SYMBOL_GPL vmlinux 0xad440116 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xad555ac7 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xad8f4c4b xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xadaaa3ae diag308 +EXPORT_SYMBOL_GPL vmlinux 0xadb4abaf __put_net +EXPORT_SYMBOL_GPL vmlinux 0xadb8315c debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae3aff37 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae732350 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xae76991a init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xaeb5583a crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xaedb9de8 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xaee90ae0 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf26ffaa __module_address +EXPORT_SYMBOL_GPL vmlinux 0xaf82104d blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xafd3cd3b part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xafe296e5 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xb005bc3b scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xb00a8738 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xb03434e9 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb041c972 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xb05ff0eb mmput +EXPORT_SYMBOL_GPL vmlinux 0xb07e75b0 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0xb08c613f remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0be130a anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xb0c959d6 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xb0c98c57 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xb0d4fde4 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xb12a4591 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xb12bf179 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e8e497 cio_enable_subchannel +EXPORT_SYMBOL_GPL vmlinux 0xb20e429a get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xb2678aaf cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb28bb2e9 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xb2b2928d shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xb2bfeb7e devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xb3387426 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xb341ba32 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xb3436214 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb34fd7da rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xb3920b18 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xb3a1e8a9 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xb3f2d9d5 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xb406d145 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xb4221fec register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xb44c182f list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb44d9ab5 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xb45b4f7e chsc_pnso_brinfo +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c7c358 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4cc7c8b subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xb4e13455 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xb5053c49 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb5381118 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xb5511be3 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb58e87e6 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5bf32bf pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb61b5151 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb69a0728 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xb6b5cf1c trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xb731b4fc perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xb74f84ed trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xb7a62bd6 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xb7be49ea fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xb7c06db9 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xb7c07899 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb7ca747a kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xb8095bfe percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0xb81a8f01 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xb822ac0b iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xb879a257 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xb87a3aa6 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xb8814ff6 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb898cfcf skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xb8a922a8 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xb8b14d0d vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8fb68fd __class_create +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb907b442 scm_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xb92e5151 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xb93e981c fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xb97991ce pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9ce0850 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d0b576 __gmap_translate +EXPORT_SYMBOL_GPL vmlinux 0xb9f065de __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xba0d9fa4 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba376550 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xba7e6b3c blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xba9d156c fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xba9e91df sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbafbd154 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xbafc4131 virtqueue_disable_cb +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 0xbb264e62 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xbb5b8c71 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0xbb5f8a7e __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xbb6b8c75 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xbb76187b __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xbb8bbbc1 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xbb92c616 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xbbc40a71 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0xbbd8455c unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xbc066c43 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0xbc10ac59 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xbc434462 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xbc64aba4 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +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 0xbce6838b kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xbcf21e59 ccw_device_force_console +EXPORT_SYMBOL_GPL vmlinux 0xbcf780cf mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5c680b device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd94d0dc dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xbd96dd77 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbddaecc2 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xbde19d65 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xbe34d08e css_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xbe37af1d pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbe383ce8 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe79fd70 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb14875 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbeb8faa1 gmap_map_segment +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbef2241d __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xbef832f4 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xbf157285 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xbf2bf743 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbf385b0a pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xbf392230 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xbf3a9acb tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xbf483f45 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbfc2c639 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc011caea appldata_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0xc02c24b8 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xc0437d7f platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xc063f17f dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xc0680f58 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b3cfbb register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc130b03e memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0xc155cb11 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0xc18e1a24 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0xc19d6057 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2379cbd n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xc2517490 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xc2c076cf blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xc2dabd75 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xc2e58432 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0xc2ebce1d __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0xc310aed8 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0xc334b9fe io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc3627a06 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xc36f2f6d crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc3d4a281 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xc4310d70 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xc4888117 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xc491b6ce crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xc494b70f mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xc4b7fcee dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4f652e4 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xc50a5bc9 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0xc50f8c55 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xc511cd47 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc556bc26 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc58c9730 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xc5989554 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xc5cbb11e sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xc5e30d81 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xc5ea7788 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xc60ac18f bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc63b4fc2 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc65420e8 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc65fffa6 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a99b30 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xc6f6d230 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xc6fd3052 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xc705f5dc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc74a8a77 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xc74fe6d8 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7ae8b32 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7cb4eeb class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xc7d469d3 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7ec2cce tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0xc7f780c5 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xc82fd3bd rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xc8557759 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xc85963c7 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc88a44f6 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xc8a2476e put_device +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b8e845 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xc8c43707 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8f9f213 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xc91196a3 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xc991b638 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xc9a7a6e1 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xc9c27d07 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xc9cd1bb7 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xc9e4d728 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca19c5e9 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xca63e03c dax_fault +EXPORT_SYMBOL_GPL vmlinux 0xca6698d2 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xca6f0870 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xcad16ab3 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xcadce4f6 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xcaf3f0bf inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xcaf6e835 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xcb292cfd pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xcb31d15e bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb5373c6 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xcb83b3c3 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xcbb4bded sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xcbb984e0 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xcbd6a478 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xcbe0031c tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc087172 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xcc110f1c vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xcc11b921 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xcc3854dc wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xcc41c389 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xcc4704bb tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xcc72728b inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc911e9f alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xcc9b1ccd pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xccb537fa for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xccce6279 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xcd0ee0c5 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xcd4bbab2 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xcd55e36f bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xcd5ecf70 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd6dc999 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0xcd7dd43e pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xcd8b6021 __audit_inode_child +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 0xcdb7bf73 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0xcde574ac fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xcde8b894 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xcdf36826 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0xcdff277b crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce9fd06d get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xcecba454 percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xced66f68 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xcee45556 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcf277f1e zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf7b0223 chsc_scm_info +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfbc5648 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xcfc13839 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfe187ca pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xcfed4b1e devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xd0122d8f pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xd031b589 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0475eb4 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xd04add20 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0xd064d977 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd08268b6 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0xd086a2b7 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xd0a9ec0b kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c2eab5 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd0d38e35 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0d5b7b3 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xd10cf01f ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xd15c6191 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd15ddc17 cio_update_schib +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd19c6df2 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2139eeb ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd243c8cc pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd247b5db atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd268b400 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2815e52 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xd2a95fda ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e07e59 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xd2e43c8e driver_unregister +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 0xd3b61555 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xd3c176aa zpci_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xd3eb85c8 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xd3ef398e crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd44f5b7a pci_debug_msg_id +EXPORT_SYMBOL_GPL vmlinux 0xd46b09db pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xd482d6ba klp_disable_patch +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d354a4 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0xd4fc3c21 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xd503159c platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xd51dade0 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xd547ca40 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xd5541799 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd568b8fa page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5c5628a kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xd5e9e117 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xd602096d get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd61606c6 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6d94b69 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xd6dc59e7 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xd70214be crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xd7033af1 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd73211ea platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd73cee20 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd7820d08 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd782ad2c bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xd795bf70 gmap_do_ipte_notify +EXPORT_SYMBOL_GPL vmlinux 0xd7c8e8cd register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7e7f4a0 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xd80c17b4 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd832b64e pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd8bb5078 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd8bf3f75 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd8c37d7e netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xd8f9538d skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xd91ce83f devres_find +EXPORT_SYMBOL_GPL vmlinux 0xd9210b24 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xd938abef __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd9468655 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xd9635760 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd97b69dd bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xd9843ff6 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0xd9cdd1b3 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f93e32 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda0f8ab6 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xda23fcb7 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xda3f3e8a isc_register +EXPORT_SYMBOL_GPL vmlinux 0xda83e31e class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdacaff9f sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdb4c7c9f uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdba3b898 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xdbaf8719 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbf82180 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xdbfe598d class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xdc22511a dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xdc667be0 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xdc8c41a2 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcc7030f device_create +EXPORT_SYMBOL_GPL vmlinux 0xdce87586 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xdcecaf4b tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3a4192 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xdd3eaec9 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd849c3f iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xdd9c3a99 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddf22136 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xddfbd880 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xde32b1ac hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xde3578af iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0xde451939 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xde53870f s390_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xde88c251 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xdeb8240c dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xded5d8e0 irq_stat +EXPORT_SYMBOL_GPL vmlinux 0xdef5c255 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf10e122 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xdf3890bd proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xdf4b31d2 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xdfc092bf blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xdfc61e5c fat_time_unix2fat +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 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe0a7d8a8 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xe0bb5a97 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xe143991d ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xe1474fdf __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xe1572209 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xe1768b2a bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1aa289e register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xe1cab8b6 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xe1eda628 scm_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe209a466 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xe21d1cb6 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xe2528539 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0xe2574bfe dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe25bcdbc bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xe25f2699 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe26f19eb netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xe2ba6860 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3cb7f4c bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xe40b9029 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe412228f device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xe427ed85 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4428568 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xe44ccd66 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe46be4f7 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xe47bbf7c get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xe48fed65 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49785d4 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xe4a38895 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe5288d1f driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xe530ce6c exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xe536cd9e kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5a1ac4b bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5c810fe init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xe5e06c53 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xe5ebcbe1 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0xe632405d perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xe64a5c6b gmap_unregister_ipte_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe68c4fa9 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xe69e63ad nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6c7a36c cmf_readall +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76a703c rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xe778bc79 __ablkcipher_walk_complete +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 0xe7d4215e xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xe7eb9428 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xe7efb1a3 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7f607a0 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe8009d6f blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xe8092b2b insn_to_mnemonic +EXPORT_SYMBOL_GPL vmlinux 0xe84103ac skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xe8415f96 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xe853f157 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xe8557947 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe85f73a0 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe89a58d0 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xe8b70f3d cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xe8d09f2f chp_ssd_get_mask +EXPORT_SYMBOL_GPL vmlinux 0xe8e6d4f0 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xe8f980bd ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xe9294c03 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9422c81 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xe95f70fb pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xe971ee18 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xe9999393 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe9c50dbf blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea2050e2 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea2f2dcb device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xea831442 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea91ff84 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xea95cb5a memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeac89f44 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0xeaf08820 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xeafb9743 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xeb0bac2a vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xeb44f65b zpci_stop_device +EXPORT_SYMBOL_GPL vmlinux 0xeb6077a6 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xeb6ed522 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xeb7dc22c crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xeb7f7e4d blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xeba745e1 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xebe288d2 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebedbf21 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xec0eaa74 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xec13c83c si_swapinfo +EXPORT_SYMBOL_GPL vmlinux 0xec1a2c0b __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xecee4061 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xed003132 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xed0ba996 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xed1b40e1 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xed33db8b raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xed6c8edf fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xeda3a884 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xeda5885f device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xedbb5d94 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xee29901f __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xee334463 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xee497f08 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xee5aaa2d page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0xee712769 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xee7d101c pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xeeb924ef gmap_disable +EXPORT_SYMBOL_GPL vmlinux 0xeedd8f22 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xef11a163 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xef13106c nr_threads +EXPORT_SYMBOL_GPL vmlinux 0xef372baf securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xef59e59c kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xef5eeb78 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xef61a7af __platform_driver_register +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 0xef8bc7cc virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefb4a35d trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xf0050504 get_ccwdev_by_dev_id +EXPORT_SYMBOL_GPL vmlinux 0xf02dac72 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf03dbd12 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf07db47f relay_open +EXPORT_SYMBOL_GPL vmlinux 0xf08284da xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xf0906b82 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xf096df16 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xf0b45ea7 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xf0c3c535 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0d5e591 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf121fa6a percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xf1277dca dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1856a7a scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1c74462 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xf2087e04 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xf20cbe07 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xf2135731 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2286afe device_add +EXPORT_SYMBOL_GPL vmlinux 0xf26018a8 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2d87f8f ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xf2e1b3f6 kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0xf2e414ab debugfs_create_symlink +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 0xf379b12e virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3b05323 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3cde326 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xf3d15865 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3d7625c device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3f3ccfd crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xf3fe0e65 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xf4059516 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xf409968d bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf49591e4 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4a95041 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xf4d331cd security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf50f6cb3 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf53238d9 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf577869b pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf58bdecd fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xf5d13e1a pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xf5f273e1 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xf60124ab class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xf67f2649 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xf68e4137 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xf6a63ca3 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xf6a72a0d fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf773e92d udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf7b6c81b blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xf7bfd124 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0xf7c2b78c ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xf7fb81ae skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xf812e364 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xf82a73dc trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf833d830 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xf85df3bc alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8c560c0 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xf8d4a40d dev_pm_disable_wake_irq +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 0xf90b571b mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xf90d2ec9 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf95b38bf crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xf9711532 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf993e900 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf99d9762 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9cc871a mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf9e382b3 register_kprobes +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 0xfa34fa94 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfa5fcdd3 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfa9e335e hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfab209c8 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xfab410b5 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xfac0dc5b rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xfadac245 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xfb061c90 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xfb0f9463 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfb1fc169 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0xfb23f12e get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xfb2f469a pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb4a6f41 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb8c4f74 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0xfb9dfbe5 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbd68dcd sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xfbf598a8 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc0a7189 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xfc360f57 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xfc4fcde8 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xfc5bd3d4 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xfc5eb088 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc841c6c ccw_device_siosl +EXPORT_SYMBOL_GPL vmlinux 0xfc882b90 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xfca70aad virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xfd03b77a pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xfd3f8fd5 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xfd635156 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xfd7002e8 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd7f64a5 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xfe135ba0 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xfe29c7a9 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xfebe1a42 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xfec5a192 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xfec5a640 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xfee323bd attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff1d36b2 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff61db90 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffc1f460 md_run only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/s390x/generic.compiler +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/s390x/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 only in patch2: unchanged: --- linux-4.4.0.orig/debian.master/abi/4.4.0-97.120/s390x/generic.modules +++ linux-4.4.0/debian.master/abi/4.4.0-97.120/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-4.4.0.orig/drivers/acpi/glue.c +++ linux-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-4.4.0.orig/drivers/acpi/ioapic.c +++ linux-4.4.0/drivers/acpi/ioapic.c @@ -45,6 +45,12 @@ struct resource *res = data; struct resource_win win; + /* + * We might assign this to 'res' later, make sure all pointers are + * cleared before the resource is added to the global list + */ + memset(&win, 0, sizeof(win)); + res->flags = 0; if (acpi_dev_filter_resource_type(acpi_res, IORESOURCE_MEM) == 0) return AE_OK; only in patch2: unchanged: --- linux-4.4.0.orig/drivers/ata/pata_amd.c +++ linux-4.4.0/drivers/ata/pata_amd.c @@ -616,6 +616,7 @@ { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP73_IDE), 8 }, { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP77_IDE), 8 }, { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_CS5536_IDE), 9 }, + { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_CS5536_DEV_IDE), 9 }, { }, }; only in patch2: unchanged: --- linux-4.4.0.orig/drivers/ata/pata_cs5536.c +++ linux-4.4.0/drivers/ata/pata_cs5536.c @@ -289,6 +289,7 @@ static const struct pci_device_id cs5536[] = { { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_CS5536_IDE), }, + { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_CS5536_DEV_IDE), }, { }, }; only in patch2: unchanged: --- linux-4.4.0.orig/drivers/base/bus.c +++ linux-4.4.0/drivers/base/bus.c @@ -737,7 +737,7 @@ out_unregister: kobject_put(&priv->kobj); - kfree(drv->p); + /* drv->p is freed in driver_release() */ drv->p = NULL; out_put_bus: bus_put(bus); only in patch2: unchanged: --- linux-4.4.0.orig/drivers/base/power/sysfs.c +++ linux-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-4.4.0.orig/drivers/base/power/wakeup.c +++ linux-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-4.4.0.orig/drivers/block/skd_main.c +++ linux-4.4.0/drivers/block/skd_main.c @@ -2214,6 +2214,9 @@ */ qcmd |= FIT_QCMD_MSGSIZE_64; + /* Make sure skd_msg_buf is written before the doorbell is triggered. */ + smp_wmb(); + SKD_WRITEQ(skdev, qcmd, FIT_Q_COMMAND); } @@ -2260,6 +2263,9 @@ qcmd = skspcl->mb_dma_address; qcmd |= FIT_QCMD_QID_NORMAL + FIT_QCMD_MSGSIZE_128; + /* Make sure skd_msg_buf is written before the doorbell is triggered. */ + smp_wmb(); + SKD_WRITEQ(skdev, qcmd, FIT_Q_COMMAND); } @@ -4679,15 +4685,16 @@ { struct gendisk *disk = skdev->disk; - if (disk != NULL) { - struct request_queue *q = disk->queue; + if (disk && (disk->flags & GENHD_FL_UP)) + del_gendisk(disk); - if (disk->flags & GENHD_FL_UP) - del_gendisk(disk); - if (q) - blk_cleanup_queue(q); - put_disk(disk); + if (skdev->queue) { + blk_cleanup_queue(skdev->queue); + skdev->queue = NULL; + disk->queue = NULL; } + + put_disk(disk); skdev->disk = NULL; } only in patch2: unchanged: --- linux-4.4.0.orig/drivers/block/virtio_blk.c +++ linux-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-4.4.0.orig/drivers/block/xen-blkback/blkback.c +++ linux-4.4.0/drivers/block/xen-blkback/blkback.c @@ -595,8 +595,6 @@ unsigned long timeout; int ret; - xen_blkif_get(blkif); - while (!kthread_should_stop()) { if (try_to_freeze()) continue; @@ -650,7 +648,6 @@ print_stats(blkif); blkif->xenblkd = NULL; - xen_blkif_put(blkif); return 0; } @@ -1410,33 +1407,35 @@ static void make_response(struct xen_blkif *blkif, u64 id, unsigned short op, int st) { - struct blkif_response resp; + struct blkif_response *resp; unsigned long flags; - union blkif_back_rings *blk_rings = &blkif->blk_rings; + union blkif_back_rings *blk_rings; int notify; - resp.id = id; - resp.operation = op; - resp.status = st; - spin_lock_irqsave(&blkif->blk_ring_lock, flags); + blk_rings = &blkif->blk_rings; /* Place on the response ring for the relevant domain. */ switch (blkif->blk_protocol) { case BLKIF_PROTOCOL_NATIVE: - memcpy(RING_GET_RESPONSE(&blk_rings->native, blk_rings->native.rsp_prod_pvt), - &resp, sizeof(resp)); + resp = RING_GET_RESPONSE(&blk_rings->native, + blk_rings->native.rsp_prod_pvt); break; case BLKIF_PROTOCOL_X86_32: - memcpy(RING_GET_RESPONSE(&blk_rings->x86_32, blk_rings->x86_32.rsp_prod_pvt), - &resp, sizeof(resp)); + resp = RING_GET_RESPONSE(&blk_rings->x86_32, + blk_rings->x86_32.rsp_prod_pvt); break; case BLKIF_PROTOCOL_X86_64: - memcpy(RING_GET_RESPONSE(&blk_rings->x86_64, blk_rings->x86_64.rsp_prod_pvt), - &resp, sizeof(resp)); + resp = RING_GET_RESPONSE(&blk_rings->x86_64, + blk_rings->x86_64.rsp_prod_pvt); break; default: BUG(); } + + resp->id = id; + resp->operation = op; + resp->status = st; + blk_rings->common.rsp_prod_pvt++; RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&blk_rings->common, notify); spin_unlock_irqrestore(&blkif->blk_ring_lock, flags); only in patch2: unchanged: --- linux-4.4.0.orig/drivers/block/xen-blkback/common.h +++ linux-4.4.0/drivers/block/xen-blkback/common.h @@ -74,9 +74,8 @@ struct blkif_common_request { char dummy; }; -struct blkif_common_response { - char dummy; -}; + +/* i386 protocol version */ struct blkif_x86_32_request_rw { uint8_t nr_segments; /* number of segments */ @@ -128,14 +127,6 @@ } u; } __attribute__((__packed__)); -/* i386 protocol version */ -#pragma pack(push, 4) -struct blkif_x86_32_response { - uint64_t id; /* copied from request */ - uint8_t operation; /* copied from request */ - int16_t status; /* BLKIF_RSP_??? */ -}; -#pragma pack(pop) /* x86_64 protocol version */ struct blkif_x86_64_request_rw { @@ -192,18 +183,12 @@ } u; } __attribute__((__packed__)); -struct blkif_x86_64_response { - uint64_t __attribute__((__aligned__(8))) id; - uint8_t operation; /* copied from request */ - int16_t status; /* BLKIF_RSP_??? */ -}; - DEFINE_RING_TYPES(blkif_common, struct blkif_common_request, - struct blkif_common_response); + struct blkif_response); DEFINE_RING_TYPES(blkif_x86_32, struct blkif_x86_32_request, - struct blkif_x86_32_response); + struct blkif_response __packed); DEFINE_RING_TYPES(blkif_x86_64, struct blkif_x86_64_request, - struct blkif_x86_64_response); + struct blkif_response); union blkif_back_rings { struct blkif_back_ring native; only in patch2: unchanged: --- linux-4.4.0.orig/drivers/block/xen-blkback/xenbus.c +++ linux-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-4.4.0.orig/drivers/bluetooth/btintel.c +++ linux-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-4.4.0.orig/drivers/bluetooth/btintel.h +++ linux-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-4.4.0.orig/drivers/char/ipmi/ipmi_watchdog.c +++ linux-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-4.4.0.orig/drivers/char/tpm/tpm_atmel.c +++ linux-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-4.4.0.orig/drivers/char/tpm/tpm_i2c_atmel.c +++ linux-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-4.4.0.orig/drivers/char/tpm/tpm_i2c_infineon.c +++ linux-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-4.4.0.orig/drivers/char/tpm/tpm_i2c_nuvoton.c +++ linux-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-4.4.0.orig/drivers/char/tpm/tpm_infineon.c +++ linux-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-4.4.0.orig/drivers/char/tpm/tpm_nsc.c +++ linux-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-4.4.0.orig/drivers/crypto/caam/key_gen.c +++ linux-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-4.4.0.orig/drivers/dma/ioat/hw.h +++ linux-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-4.4.0.orig/drivers/dma/ioat/init.c +++ linux-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-4.4.0.orig/drivers/dma/ti-dma-crossbar.c +++ linux-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-4.4.0.orig/drivers/gpu/drm/i2c/adv7511.c +++ linux-4.4.0/drivers/gpu/drm/i2c/adv7511.c @@ -36,7 +36,10 @@ bool edid_read; wait_queue_head_t wq; + struct work_struct hpd_work; + struct drm_encoder *encoder; + struct drm_connector connector; bool embedded_sync; enum adv7511_sync_polarity vsync_polarity; @@ -48,6 +51,10 @@ struct gpio_desc *gpio_pd; }; +static const int edid_i2c_addr = 0x7e; +static const int packet_i2c_addr = 0x70; +static const int cec_i2c_addr = 0x78; + static struct adv7511 *encoder_to_adv7511(struct drm_encoder *encoder) { return to_encoder_slave(encoder)->slave_priv; @@ -362,12 +369,19 @@ { adv7511->current_edid_segment = -1; - regmap_write(adv7511->regmap, ADV7511_REG_INT(0), - ADV7511_INT0_EDID_READY); - regmap_write(adv7511->regmap, ADV7511_REG_INT(1), - ADV7511_INT1_DDC_ERROR); regmap_update_bits(adv7511->regmap, ADV7511_REG_POWER, ADV7511_POWER_POWER_DOWN, 0); + if (adv7511->i2c_main->irq) { + /* + * Documentation says the INT_ENABLE registers are reset in + * POWER_DOWN mode. My 7511w preserved the bits, however. + * Still, let's be safe and stick to the documentation. + */ + regmap_write(adv7511->regmap, ADV7511_REG_INT_ENABLE(0), + ADV7511_INT0_EDID_READY); + regmap_write(adv7511->regmap, ADV7511_REG_INT_ENABLE(1), + ADV7511_INT1_DDC_ERROR); + } /* * Per spec it is allowed to pulse the HDP signal to indicate that the @@ -422,7 +436,27 @@ return false; } -static int adv7511_irq_process(struct adv7511 *adv7511) +static void adv7511_hpd_work(struct work_struct *work) +{ + struct adv7511 *adv7511 = container_of(work, struct adv7511, hpd_work); + enum drm_connector_status status; + unsigned int val; + int ret; + ret = regmap_read(adv7511->regmap, ADV7511_REG_STATUS, &val); + if (ret < 0) + status = connector_status_disconnected; + else if (val & ADV7511_STATUS_HPD) + status = connector_status_connected; + else + status = connector_status_disconnected; + + if (adv7511->connector.status != status) { + adv7511->connector.status = status; + drm_kms_helper_hotplug_event(adv7511->connector.dev); + } +} + +static int adv7511_irq_process(struct adv7511 *adv7511, bool process_hpd) { unsigned int irq0, irq1; int ret; @@ -438,8 +472,8 @@ regmap_write(adv7511->regmap, ADV7511_REG_INT(0), irq0); regmap_write(adv7511->regmap, ADV7511_REG_INT(1), irq1); - if (irq0 & ADV7511_INT0_HDP && adv7511->encoder) - drm_helper_hpd_irq_event(adv7511->encoder->dev); + if (process_hpd && irq0 & ADV7511_INT0_HDP && adv7511->encoder) + schedule_work(&adv7511->hpd_work); if (irq0 & ADV7511_INT0_EDID_READY || irq1 & ADV7511_INT1_DDC_ERROR) { adv7511->edid_read = true; @@ -456,7 +490,7 @@ struct adv7511 *adv7511 = devid; int ret; - ret = adv7511_irq_process(adv7511); + ret = adv7511_irq_process(adv7511, true); return ret < 0 ? IRQ_NONE : IRQ_HANDLED; } @@ -473,7 +507,7 @@ adv7511->edid_read, msecs_to_jiffies(timeout)); } else { for (; timeout > 0; timeout -= 25) { - ret = adv7511_irq_process(adv7511); + ret = adv7511_irq_process(adv7511, false); if (ret < 0) break; @@ -567,13 +601,18 @@ /* Reading the EDID only works if the device is powered */ if (!adv7511->powered) { - regmap_write(adv7511->regmap, ADV7511_REG_INT(0), - ADV7511_INT0_EDID_READY); - regmap_write(adv7511->regmap, ADV7511_REG_INT(1), - ADV7511_INT1_DDC_ERROR); regmap_update_bits(adv7511->regmap, ADV7511_REG_POWER, ADV7511_POWER_POWER_DOWN, 0); + if (adv7511->i2c_main->irq) { + regmap_write(adv7511->regmap, ADV7511_REG_INT_ENABLE(0), + ADV7511_INT0_EDID_READY); + regmap_write(adv7511->regmap, ADV7511_REG_INT_ENABLE(1), + ADV7511_INT1_DDC_ERROR); + } adv7511->current_edid_segment = -1; + /* Reset the EDID_I2C_ADDR register as it might be cleared */ + regmap_write(adv7511->regmap, ADV7511_REG_EDID_I2C_ADDR, + edid_i2c_addr); } edid = drm_do_get_edid(connector, adv7511_get_edid_block, adv7511); @@ -849,10 +888,6 @@ return 0; } -static const int edid_i2c_addr = 0x7e; -static const int packet_i2c_addr = 0x70; -static const int cec_i2c_addr = 0x78; - static int adv7511_probe(struct i2c_client *i2c, const struct i2c_device_id *id) { struct adv7511_link_config link_config; @@ -913,6 +948,8 @@ if (!adv7511->i2c_edid) return -ENOMEM; + INIT_WORK(&adv7511->hpd_work, adv7511_hpd_work); + if (i2c->irq) { init_waitqueue_head(&adv7511->wq); only in patch2: unchanged: --- linux-4.4.0.orig/drivers/gpu/drm/msm/adreno/adreno_gpu.c +++ linux-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-4.4.0.orig/drivers/gpu/drm/msm/msm_ringbuffer.c +++ linux-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-4.4.0.orig/drivers/gpu/drm/nouveau/nvkm/subdev/bar/gf100.c +++ linux-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-4.4.0.orig/drivers/gpu/drm/nouveau/nvkm/subdev/pci/base.c +++ linux-4.4.0/drivers/gpu/drm/nouveau/nvkm/subdev/pci/base.c @@ -180,6 +180,10 @@ } } +#ifdef __BIG_ENDIAN + pci->msi = false; +#endif + pci->msi = nvkm_boolopt(device->cfgopt, "NvMSI", pci->msi); if (pci->msi && func->msi_rearm) { pci->msi = pci_enable_msi(pci->pdev) == 0; only in patch2: unchanged: --- linux-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_crtc.c +++ linux-4.4.0/drivers/gpu/drm/rcar-du/rcar_du_crtc.c @@ -148,8 +148,8 @@ rcar_du_group_write(rcrtc->group, rcrtc->index % 2 ? OTAR2 : OTAR, 0); /* Signal polarities */ - value = ((mode->flags & DRM_MODE_FLAG_PVSYNC) ? 0 : DSMR_VSL) - | ((mode->flags & DRM_MODE_FLAG_PHSYNC) ? 0 : DSMR_HSL) + value = ((mode->flags & DRM_MODE_FLAG_PVSYNC) ? DSMR_VSL : 0) + | ((mode->flags & DRM_MODE_FLAG_PHSYNC) ? DSMR_HSL : 0) | DSMR_DIPM_DE | DSMR_CSPM; rcar_du_crtc_write(rcrtc, DSMR, value); @@ -171,7 +171,7 @@ mode->crtc_vsync_start - 1); rcar_du_crtc_write(rcrtc, VCR, mode->crtc_vtotal - 1); - rcar_du_crtc_write(rcrtc, DESR, mode->htotal - mode->hsync_start); + rcar_du_crtc_write(rcrtc, DESR, mode->htotal - mode->hsync_start - 1); rcar_du_crtc_write(rcrtc, DEWR, mode->hdisplay); } @@ -282,26 +282,6 @@ * Page Flip */ -void rcar_du_crtc_cancel_page_flip(struct rcar_du_crtc *rcrtc, - struct drm_file *file) -{ - struct drm_pending_vblank_event *event; - struct drm_device *dev = rcrtc->crtc.dev; - unsigned long flags; - - /* Destroy the pending vertical blanking event associated with the - * pending page flip, if any, and disable vertical blanking interrupts. - */ - spin_lock_irqsave(&dev->event_lock, flags); - event = rcrtc->event; - if (event && event->base.file_priv == file) { - rcrtc->event = NULL; - event->base.destroy(&event->base); - drm_crtc_vblank_put(&rcrtc->crtc); - } - spin_unlock_irqrestore(&dev->event_lock, flags); -} - static void rcar_du_crtc_finish_page_flip(struct rcar_du_crtc *rcrtc) { struct drm_pending_vblank_event *event; only in patch2: unchanged: --- linux-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_crtc.h +++ linux-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-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_drv.c +++ linux-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-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_hdmicon.c +++ linux-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-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_kms.c +++ linux-4.4.0/drivers/gpu/drm/rcar-du/rcar_du_kms.c @@ -642,13 +642,13 @@ } ret = rcar_du_encoder_init(rcdu, enc_type, output, encoder, connector); - of_node_put(encoder); - of_node_put(connector); - if (ret && ret != -EPROBE_DEFER) dev_warn(rcdu->dev, - "failed to initialize encoder %s (%d), skipping\n", - encoder->full_name, ret); + "failed to initialize encoder %s on output %u (%d), skipping\n", + of_node_full_name(encoder), output, ret); + + of_node_put(encoder); + of_node_put(connector); return ret; } @@ -761,6 +761,13 @@ if (ret < 0) return ret; + /* Initialize vertical blanking interrupts handling. Start with vblank + * disabled for all CRTCs. + */ + ret = drm_vblank_init(dev, (1 << rcdu->info->num_crtcs) - 1); + if (ret < 0) + return ret; + /* Initialize the groups. */ num_groups = DIV_ROUND_UP(rcdu->num_crtcs, 2); only in patch2: unchanged: --- linux-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_lvdscon.c +++ linux-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-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_lvdsenc.c +++ linux-4.4.0/drivers/gpu/drm/rcar-du/rcar_du_lvdsenc.c @@ -56,11 +56,11 @@ return ret; /* PLL clock configuration */ - if (freq <= 38000) + if (freq < 39000) pllcr = LVDPLLCR_CEEN | LVDPLLCR_COSEL | LVDPLLCR_PLLDLYCNT_38M; - else if (freq <= 60000) + else if (freq < 61000) pllcr = LVDPLLCR_CEEN | LVDPLLCR_COSEL | LVDPLLCR_PLLDLYCNT_60M; - else if (freq <= 121000) + else if (freq < 121000) pllcr = LVDPLLCR_CEEN | LVDPLLCR_COSEL | LVDPLLCR_PLLDLYCNT_121M; else pllcr = LVDPLLCR_PLLDLYCNT_150M; @@ -102,7 +102,7 @@ /* Turn the PLL on, wait for the startup delay, and turn the output * on. */ - lvdcr0 |= LVDCR0_PLLEN; + lvdcr0 |= LVDCR0_PLLON; rcar_lvds_write(lvds, LVDCR0, lvdcr0); usleep_range(100, 150); only in patch2: unchanged: --- linux-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_vgacon.c +++ linux-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-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_lvds_regs.h +++ linux-4.4.0/drivers/gpu/drm/rcar-du/rcar_lvds_regs.h @@ -18,7 +18,7 @@ #define LVDCR0_DMD (1 << 12) #define LVDCR0_LVMD_MASK (0xf << 8) #define LVDCR0_LVMD_SHIFT 8 -#define LVDCR0_PLLEN (1 << 4) +#define LVDCR0_PLLON (1 << 4) #define LVDCR0_BEN (1 << 2) #define LVDCR0_LVEN (1 << 1) #define LVDCR0_LVRES (1 << 0) only in patch2: unchanged: --- linux-4.4.0.orig/drivers/gpu/drm/ttm/ttm_page_alloc.c +++ linux-4.4.0/drivers/gpu/drm/ttm/ttm_page_alloc.c @@ -612,7 +612,7 @@ } else { pr_err("Failed to fill pool (%p)\n", pool); /* If we have any pages left put them to the pool. */ - list_for_each_entry(p, &pool->list, lru) { + list_for_each_entry(p, &new_pages, lru) { ++cpages; } list_splice(&new_pages, &pool->list); only in patch2: unchanged: --- linux-4.4.0.orig/drivers/gpu/drm/virtio/virtgpu_fb.c +++ linux-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-4.4.0.orig/drivers/i2c/busses/i2c-ismt.c +++ linux-4.4.0/drivers/i2c/busses/i2c-ismt.c @@ -339,8 +339,10 @@ break; case I2C_SMBUS_BLOCK_DATA: case I2C_SMBUS_I2C_BLOCK_DATA: - memcpy(&data->block[1], dma_buffer, desc->rxbytes); - data->block[0] = desc->rxbytes; + if (desc->rxbytes != dma_buffer[0] + 1) + return -EMSGSIZE; + + memcpy(data->block, dma_buffer, desc->rxbytes); break; } return 0; only in patch2: unchanged: --- linux-4.4.0.orig/drivers/i2c/busses/i2c-jz4780.c +++ linux-4.4.0/drivers/i2c/busses/i2c-jz4780.c @@ -786,10 +786,6 @@ jz4780_i2c_writew(i2c, JZ4780_I2C_INTM, 0x0); - i2c->cmd = 0; - memset(i2c->cmd_buf, 0, BUFSIZE); - memset(i2c->data_buf, 0, BUFSIZE); - i2c->irq = platform_get_irq(pdev, 0); ret = devm_request_irq(&pdev->dev, i2c->irq, jz4780_i2c_irq, 0, dev_name(&pdev->dev), i2c); only in patch2: unchanged: --- linux-4.4.0.orig/drivers/iio/adc/vf610_adc.c +++ linux-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-4.4.0.orig/drivers/iio/imu/adis16480.c +++ linux-4.4.0/drivers/iio/imu/adis16480.c @@ -696,7 +696,7 @@ .gyro_max_val = IIO_RAD_TO_DEGREE(22500), .gyro_max_scale = 450, .accel_max_val = IIO_M_S_2_TO_G(12500), - .accel_max_scale = 5, + .accel_max_scale = 10, }, [ADIS16485] = { .channels = adis16485_channels, only in patch2: unchanged: --- linux-4.4.0.orig/drivers/iio/light/tsl2563.c +++ linux-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-4.4.0.orig/drivers/infiniband/core/uverbs_cmd.c +++ linux-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-4.4.0.orig/drivers/input/mouse/trackpoint.c +++ linux-4.4.0/drivers/input/mouse/trackpoint.c @@ -265,7 +265,8 @@ if (ps2_command(&psmouse->ps2dev, param, MAKE_PS2_CMD(0, 2, TP_READ_ID))) return -1; - if (param[0] != TP_MAGIC_IDENT) + /* add new TP ID. */ + if (!(param[0] & TP_MAGIC_IDENT)) return -1; if (firmware_id) @@ -380,8 +381,8 @@ return 0; if (trackpoint_read(&psmouse->ps2dev, TP_EXT_BTN, &button_info)) { - psmouse_warn(psmouse, "failed to get extended button data\n"); - button_info = 0; + psmouse_warn(psmouse, "failed to get extended button data, assuming 3 buttons\n"); + button_info = 0x33; } psmouse->private = kzalloc(sizeof(struct trackpoint_data), GFP_KERNEL); only in patch2: unchanged: --- linux-4.4.0.orig/drivers/input/mouse/trackpoint.h +++ linux-4.4.0/drivers/input/mouse/trackpoint.h @@ -21,8 +21,9 @@ #define TP_COMMAND 0xE2 /* Commands start with this */ #define TP_READ_ID 0xE1 /* Sent for device identification */ -#define TP_MAGIC_IDENT 0x01 /* Sent after a TP_READ_ID followed */ +#define TP_MAGIC_IDENT 0x03 /* Sent after a TP_READ_ID followed */ /* by the firmware ID */ + /* Firmware ID includes 0x1, 0x2, 0x3 */ /* only in patch2: unchanged: --- linux-4.4.0.orig/drivers/irqchip/irq-keystone.c +++ linux-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-4.4.0.orig/drivers/irqchip/irq-mips-gic.c +++ linux-4.4.0/drivers/irqchip/irq-mips-gic.c @@ -915,8 +915,11 @@ gic_len = resource_size(&res); } - if (mips_cm_present()) + if (mips_cm_present()) { write_gcr_gic_base(gic_base | CM_GCR_GIC_BASE_GICEN_MSK); + /* Ensure GIC region is enabled before trying to access it */ + __sync(); + } gic_present = true; __gic_init(gic_base, gic_len, cpu_vec, 0, node); only in patch2: unchanged: --- linux-4.4.0.orig/drivers/isdn/i4l/isdn_common.c +++ linux-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-4.4.0.orig/drivers/isdn/i4l/isdn_net.c +++ linux-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-4.4.0.orig/drivers/isdn/i4l/isdn_ppp.c +++ linux-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-4.4.0.orig/drivers/mailbox/mailbox.c +++ linux-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-4.4.0.orig/drivers/md/bcache/sysfs.c +++ linux-4.4.0/drivers/md/bcache/sysfs.c @@ -191,7 +191,7 @@ { struct cached_dev *dc = container_of(kobj, struct cached_dev, disk.kobj); - unsigned v = size; + ssize_t v = size; struct cache_set *c; struct kobj_uevent_env *env; @@ -226,7 +226,7 @@ bch_cached_dev_run(dc); if (attr == &sysfs_cache_mode) { - ssize_t v = bch_read_string_list(buf, bch_cache_modes + 1); + v = bch_read_string_list(buf, bch_cache_modes + 1); if (v < 0) return v; only in patch2: unchanged: --- linux-4.4.0.orig/drivers/md/bcache/util.c +++ linux-4.4.0/drivers/md/bcache/util.c @@ -73,24 +73,44 @@ STRTO_H(strtoll, long long) STRTO_H(strtoull, unsigned long long) +/** + * bch_hprint() - formats @v to human readable string for sysfs. + * + * @v - signed 64 bit integer + * @buf - the (at least 8 byte) buffer to format the result into. + * + * Returns the number of bytes used by format. + */ ssize_t bch_hprint(char *buf, int64_t v) { static const char units[] = "?kMGTPEZY"; - char dec[4] = ""; - int u, t = 0; + int u = 0, t; - for (u = 0; v >= 1024 || v <= -1024; u++) { - t = v & ~(~0 << 10); - v >>= 10; - } + uint64_t q; - if (!u) - return sprintf(buf, "%llu", v); - - if (v < 100 && v > -100) - snprintf(dec, sizeof(dec), ".%i", t / 100); - - return sprintf(buf, "%lli%s%c", v, dec, units[u]); + if (v < 0) + q = -v; + else + q = v; + + /* For as long as the number is more than 3 digits, but at least + * once, shift right / divide by 1024. Keep the remainder for + * a digit after the decimal point. + */ + do { + u++; + + t = q & ~(~0 << 10); + q >>= 10; + } while (q >= 1000); + + if (v < 0) + /* '-', up to 3 digits, '.', 1 digit, 1 character, null; + * yields 8 bytes. + */ + return sprintf(buf, "-%llu.%i%c", q, t * 10 / 1024, units[u]); + else + return sprintf(buf, "%llu.%i%c", q, t * 10 / 1024, units[u]); } ssize_t bch_snprint_string_list(char *buf, size_t size, const char * const list[], only in patch2: unchanged: --- linux-4.4.0.orig/drivers/md/bitmap.c +++ linux-4.4.0/drivers/md/bitmap.c @@ -1960,6 +1960,11 @@ long pages; struct bitmap_page *new_bp; + if (bitmap->storage.file && !init) { + pr_info("md: cannot resize file-based bitmap\n"); + return -EINVAL; + } + if (chunksize == 0) { /* If there is enough space, leave the chunk size unchanged, * else increase by factor of two until there is enough space. only in patch2: unchanged: --- linux-4.4.0.orig/drivers/media/i2c/s5c73m3/s5c73m3-ctrls.c +++ linux-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-4.4.0.orig/drivers/media/pci/cx88/cx88-cards.c +++ linux-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-4.4.0.orig/drivers/media/pci/cx88/cx88-video.c +++ linux-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-4.4.0.orig/drivers/media/pci/saa7134/saa7134-i2c.c +++ linux-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-4.4.0.orig/drivers/media/pci/saa7164/saa7164-bus.c +++ linux-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-4.4.0.orig/drivers/media/platform/davinci/vpfe_capture.c +++ linux-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-4.4.0.orig/drivers/media/platform/s5p-jpeg/jpeg-core.c +++ linux-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-4.4.0.orig/drivers/media/rc/imon.c +++ linux-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-4.4.0.orig/drivers/media/rc/ir-lirc-codec.c +++ linux-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-4.4.0.orig/drivers/media/usb/uvc/uvc_ctrl.c +++ linux-4.4.0/drivers/media/usb/uvc/uvc_ctrl.c @@ -2001,6 +2001,13 @@ goto done; } + /* Validate the user-provided bit-size and offset */ + if (mapping->size > 32 || + mapping->offset + mapping->size > ctrl->info.size * 8) { + ret = -EINVAL; + goto done; + } + list_for_each_entry(map, &ctrl->info.mappings, list) { if (mapping->id == map->id) { uvc_trace(UVC_TRACE_CONTROL, "Can't add mapping '%s', " only in patch2: unchanged: --- linux-4.4.0.orig/drivers/misc/enclosure.c +++ linux-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-4.4.0.orig/drivers/net/bonding/bond_3ad.c +++ linux-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-4.4.0.orig/drivers/net/ethernet/aurora/nb8800.c +++ linux-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-4.4.0.orig/drivers/net/ethernet/mellanox/mlx4/icm.c +++ linux-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-4.4.0.orig/drivers/net/ethernet/qlogic/qlge/qlge_dbg.c +++ linux-4.4.0/drivers/net/ethernet/qlogic/qlge/qlge_dbg.c @@ -724,7 +724,7 @@ seg_hdr->cookie = MPI_COREDUMP_COOKIE; seg_hdr->segNum = seg_number; seg_hdr->segSize = seg_size; - memcpy(seg_hdr->description, desc, (sizeof(seg_hdr->description)) - 1); + strncpy(seg_hdr->description, desc, (sizeof(seg_hdr->description)) - 1); } /* only in patch2: unchanged: --- linux-4.4.0.orig/drivers/net/ethernet/realtek/r8169.c +++ linux-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-4.4.0.orig/drivers/net/irda/mcs7780.c +++ linux-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-4.4.0.orig/drivers/net/phy/dp83867.c +++ linux-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-4.4.0.orig/drivers/net/phy/micrel.c +++ linux-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-4.4.0.orig/drivers/net/phy/phy_device.c +++ linux-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-4.4.0.orig/drivers/net/usb/kaweth.c +++ linux-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-4.4.0.orig/drivers/net/wireless/ath/ath10k/htt_rx.c +++ linux-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-4.4.0.orig/drivers/net/wireless/ath/ath10k/pci.c +++ linux-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-4.4.0.orig/drivers/net/wireless/ath/ath10k/wmi-ops.h +++ linux-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-4.4.0.orig/drivers/net/wireless/ath/ath9k/ar9003_phy.c +++ linux-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-4.4.0.orig/drivers/net/wireless/ath/ath9k/tx99.c +++ linux-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-4.4.0.orig/drivers/net/wireless/ath/wil6210/main.c +++ linux-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-4.4.0.orig/drivers/net/wireless/mwifiex/scan.c +++ linux-4.4.0/drivers/net/wireless/mwifiex/scan.c @@ -2170,6 +2170,12 @@ sizeof(struct mwifiex_chan_stats); for (i = 0 ; i < num_chan; i++) { + if (adapter->survey_idx >= adapter->num_in_chan_stats) { + mwifiex_dbg(adapter, WARN, + "FW reported too many channel results (max %d)\n", + adapter->num_in_chan_stats); + return; + } chan_stats.chan_num = fw_chan_stats->chan_num; chan_stats.bandcfg = fw_chan_stats->bandcfg; chan_stats.flags = fw_chan_stats->flags; only in patch2: unchanged: --- linux-4.4.0.orig/drivers/net/wireless/p54/fwio.c +++ linux-4.4.0/drivers/net/wireless/p54/fwio.c @@ -488,7 +488,7 @@ entry += sizeof(__le16); chan->pa_points_per_curve = 8; - memset(chan->curve_data, 0, sizeof(*chan->curve_data)); + memset(chan->curve_data, 0, sizeof(chan->curve_data)); memcpy(chan->curve_data, entry, sizeof(struct p54_pa_curve_data_sample) * min((u8)8, curve_data->points_per_channel)); only in patch2: unchanged: --- linux-4.4.0.orig/drivers/net/wireless/ti/wl1251/main.c +++ linux-4.4.0/drivers/net/wireless/ti/wl1251/main.c @@ -1567,6 +1567,7 @@ wl->state = WL1251_STATE_OFF; mutex_init(&wl->mutex); + spin_lock_init(&wl->wl_lock); wl->tx_mgmt_frm_rate = DEFAULT_HW_GEN_TX_RATE; wl->tx_mgmt_frm_mod = DEFAULT_HW_GEN_MODULATION_TYPE; only in patch2: unchanged: --- linux-4.4.0.orig/drivers/net/xen-netback/common.h +++ linux-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-4.4.0.orig/drivers/net/xen-netback/interface.c +++ linux-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-4.4.0.orig/drivers/net/xen-netback/netback.c +++ linux-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-4.4.0.orig/drivers/nfc/fdp/i2c.c +++ linux-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-4.4.0.orig/drivers/nfc/nfcmrvl/fw_dnld.c +++ linux-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-4.4.0.orig/drivers/nfc/nfcmrvl/main.c +++ linux-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-4.4.0.orig/drivers/nfc/nfcmrvl/uart.c +++ linux-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-4.4.0.orig/drivers/nvdimm/btt.c +++ linux-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-4.4.0.orig/drivers/nvmem/imx-ocotp.c +++ linux-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-4.4.0.orig/drivers/of/device.c +++ linux-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-4.4.0.orig/drivers/parisc/ccio-dma.c +++ linux-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-4.4.0.orig/drivers/parisc/dino.c +++ linux-4.4.0/drivers/parisc/dino.c @@ -154,7 +154,10 @@ }; /* Looks nice and keeps the compiler happy */ -#define DINO_DEV(d) ((struct dino_device *) d) +#define DINO_DEV(d) ({ \ + void *__pdata = d; \ + BUG_ON(!__pdata); \ + (struct dino_device *)__pdata; }) /* @@ -951,7 +954,7 @@ dino_dev->hba.dev = dev; dino_dev->hba.base_addr = ioremap_nocache(hpa, 4096); - dino_dev->hba.lmmio_space_offset = 0; /* CPU addrs == bus addrs */ + dino_dev->hba.lmmio_space_offset = PCI_F_EXTEND; spin_lock_init(&dino_dev->dinosaur_pen); dino_dev->hba.iommu = ccio_get_iommu(dev); only in patch2: unchanged: --- linux-4.4.0.orig/drivers/parisc/lba_pci.c +++ linux-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-4.4.0.orig/drivers/parisc/sba_iommu.c +++ linux-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-4.4.0.orig/drivers/pci/hotplug/shpchp_hpc.c +++ linux-4.4.0/drivers/pci/hotplug/shpchp_hpc.c @@ -1062,6 +1062,8 @@ if (rc) { ctrl_info(ctrl, "Can't get msi for the hotplug controller\n"); ctrl_info(ctrl, "Use INTx for the hotplug controller\n"); + } else { + pci_set_master(pdev); } rc = request_irq(ctrl->pci_dev->irq, shpc_isr, IRQF_SHARED, only in patch2: unchanged: --- linux-4.4.0.orig/drivers/pci/pci-driver.c +++ linux-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-4.4.0.orig/drivers/pinctrl/freescale/pinctrl-mxs.c +++ linux-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-4.4.0.orig/drivers/pinctrl/meson/pinctrl-meson8b.c +++ linux-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-4.4.0.orig/drivers/pinctrl/samsung/pinctrl-exynos.c +++ linux-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-4.4.0.orig/drivers/pinctrl/sh-pfc/pfc-r8a7791.c +++ linux-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-4.4.0.orig/drivers/pinctrl/sunxi/pinctrl-sun4i-a10.c +++ linux-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-4.4.0.orig/drivers/pinctrl/sunxi/pinctrl-sun8i-a83t.c +++ linux-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-4.4.0.orig/drivers/s390/scsi/zfcp_fc.h +++ linux-4.4.0/drivers/s390/scsi/zfcp_fc.h @@ -4,7 +4,7 @@ * Fibre Channel related definitions and inline functions for the zfcp * device driver * - * Copyright IBM Corp. 2009 + * Copyright IBM Corp. 2009, 2017 */ #ifndef ZFCP_FC_H @@ -279,6 +279,10 @@ !(rsp_flags & FCP_SNS_LEN_VAL) && fcp_rsp->resp.fr_status == SAM_STAT_GOOD) set_host_byte(scsi, DID_ERROR); + } else if (unlikely(rsp_flags & FCP_RESID_OVER)) { + /* FCP_DL was not sufficient for SCSI data length */ + if (fcp_rsp->resp.fr_status == SAM_STAT_GOOD) + set_host_byte(scsi, DID_ERROR); } } only in patch2: unchanged: --- linux-4.4.0.orig/drivers/scsi/fnic/fnic.h +++ linux-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-4.4.0.orig/drivers/scsi/fnic/fnic_scsi.c +++ linux-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-4.4.0.orig/drivers/scsi/isci/remote_node_context.c +++ linux-4.4.0/drivers/scsi/isci/remote_node_context.c @@ -66,6 +66,9 @@ { static const char * const strings[] = RNC_STATES; + if (state >= ARRAY_SIZE(strings)) + return "UNKNOWN"; + return strings[state]; } #undef C only in patch2: unchanged: --- linux-4.4.0.orig/drivers/scsi/scsi_transport_iscsi.c +++ linux-4.4.0/drivers/scsi/scsi_transport_iscsi.c @@ -3697,7 +3697,7 @@ uint32_t group; nlh = nlmsg_hdr(skb); - if (nlh->nlmsg_len < sizeof(*nlh) || + if (nlh->nlmsg_len < sizeof(*nlh) + sizeof(*ev) || skb->len < nlh->nlmsg_len) { break; } only in patch2: unchanged: --- linux-4.4.0.orig/drivers/scsi/scsi_transport_sas.c +++ linux-4.4.0/drivers/scsi/scsi_transport_sas.c @@ -367,6 +367,20 @@ EXPORT_SYMBOL(sas_remove_host); /** + * sas_get_address - return the SAS address of the device + * @sdev: scsi device + * + * Returns the SAS address of the scsi device + */ +u64 sas_get_address(struct scsi_device *sdev) +{ + struct sas_end_device *rdev = sas_sdev_to_rdev(sdev); + + return rdev->rphy.identify.sas_address; +} +EXPORT_SYMBOL(sas_get_address); + +/** * sas_tlr_supported - checking TLR bit in vpd 0x90 * @sdev: scsi device struct * only in patch2: unchanged: --- linux-4.4.0.orig/drivers/scsi/ses.c +++ linux-4.4.0/drivers/scsi/ses.c @@ -34,6 +34,8 @@ #include #include +#include + struct ses_device { unsigned char *page1; unsigned char *page1_types; @@ -546,7 +548,6 @@ ecomp = &edev->component[components++]; if (!IS_ERR(ecomp)) { - ses_get_power_status(edev, ecomp); if (addl_desc_ptr) ses_process_descriptor( ecomp, @@ -579,31 +580,15 @@ static void ses_match_to_enclosure(struct enclosure_device *edev, struct scsi_device *sdev) { - unsigned char *desc; struct efd efd = { .addr = 0, }; ses_enclosure_data_process(edev, to_scsi_device(edev->edev.parent), 0); - if (!sdev->vpd_pg83_len) - return; + if (scsi_is_sas_rphy(sdev->sdev_target->dev.parent)) + efd.addr = sas_get_address(sdev); - desc = sdev->vpd_pg83 + 4; - while (desc < sdev->vpd_pg83 + sdev->vpd_pg83_len) { - enum scsi_protocol proto = desc[0] >> 4; - u8 code_set = desc[0] & 0x0f; - u8 piv = desc[1] & 0x80; - u8 assoc = (desc[1] & 0x30) >> 4; - u8 type = desc[1] & 0x0f; - u8 len = desc[3]; - - if (piv && code_set == 1 && assoc == 1 - && proto == SCSI_PROTOCOL_SAS && type == 3 && len == 8) - efd.addr = get_unaligned_be64(&desc[4]); - - desc += len + 4; - } if (efd.addr) { efd.dev = &sdev->sdev_gendev; only in patch2: unchanged: --- linux-4.4.0.orig/drivers/scsi/snic/snic_main.c +++ linux-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-4.4.0.orig/drivers/spi/spi-dw.c +++ linux-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-4.4.0.orig/drivers/spmi/spmi.c +++ linux-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-4.4.0.orig/drivers/staging/comedi/comedi_fops.c +++ linux-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-4.4.0.orig/drivers/staging/iio/resolver/ad2s1210.c +++ linux-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-4.4.0.orig/drivers/staging/rtl8188eu/os_dep/usb_intf.c +++ linux-4.4.0/drivers/staging/rtl8188eu/os_dep/usb_intf.c @@ -47,7 +47,9 @@ {USB_DEVICE(0x2001, 0x330F)}, /* DLink DWA-125 REV D1 */ {USB_DEVICE(0x2001, 0x3310)}, /* Dlink DWA-123 REV D1 */ {USB_DEVICE(0x2001, 0x3311)}, /* DLink GO-USB-N150 REV B1 */ + {USB_DEVICE(0x2357, 0x010c)}, /* TP-Link TL-WN722N v2 */ {USB_DEVICE(0x0df6, 0x0076)}, /* Sitecom N150 v2 */ + {USB_DEVICE(USB_VENDER_ID_REALTEK, 0xffef)}, /* Rosewill RNX-N150NUB */ {} /* Terminating entry */ }; only in patch2: unchanged: --- linux-4.4.0.orig/drivers/staging/rts5208/rtsx_scsi.c +++ linux-4.4.0/drivers/staging/rts5208/rtsx_scsi.c @@ -414,7 +414,7 @@ sense->ascq = ascq; if (sns_key_info0 != 0) { sense->sns_key_info[0] = SKSV | sns_key_info0; - sense->sns_key_info[1] = (sns_key_info1 & 0xf0) >> 8; + sense->sns_key_info[1] = (sns_key_info1 & 0xf0) >> 4; sense->sns_key_info[2] = sns_key_info1 & 0x0f; } } only in patch2: unchanged: --- linux-4.4.0.orig/drivers/staging/vt6656/main_usb.c +++ linux-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-4.4.0.orig/drivers/target/iscsi/iscsi_target_erl0.c +++ linux-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-4.4.0.orig/drivers/target/iscsi/iscsi_target_erl0.h +++ linux-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-4.4.0.orig/drivers/target/iscsi/iscsi_target_nego.c +++ linux-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-4.4.0.orig/drivers/target/iscsi/iscsi_target_parameters.h +++ linux-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-4.4.0.orig/drivers/target/target_core_fabric_configfs.c +++ linux-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-4.4.0.orig/drivers/tty/hvc/hvc_console.h +++ linux-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-4.4.0.orig/drivers/tty/hvc/hvc_irq.c +++ linux-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-4.4.0.orig/drivers/tty/hvc/hvc_opal.c +++ linux-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-4.4.0.orig/drivers/usb/core/usb-acpi.c +++ linux-4.4.0/drivers/usb/core/usb-acpi.c @@ -127,6 +127,22 @@ */ #define USB_ACPI_LOCATION_VALID (1 << 31) +static struct acpi_device *usb_acpi_find_port(struct acpi_device *parent, + int raw) +{ + struct acpi_device *adev; + + if (!parent) + return NULL; + + list_for_each_entry(adev, &parent->children, node) { + if (acpi_device_adr(adev) == raw) + return adev; + } + + return acpi_find_child_device(parent, raw, false); +} + static struct acpi_device *usb_acpi_find_companion(struct device *dev) { struct usb_device *udev; @@ -174,8 +190,10 @@ int raw; raw = usb_hcd_find_raw_port_number(hcd, port1); - adev = acpi_find_child_device(ACPI_COMPANION(&udev->dev), - raw, false); + + adev = usb_acpi_find_port(ACPI_COMPANION(&udev->dev), + raw); + if (!adev) return NULL; } else { @@ -186,7 +204,9 @@ return NULL; acpi_bus_get_device(parent_handle, &adev); - adev = acpi_find_child_device(adev, port1, false); + + adev = usb_acpi_find_port(adev, port1); + if (!adev) return NULL; } only in patch2: unchanged: --- linux-4.4.0.orig/drivers/usb/dwc3/dwc3-st.c +++ linux-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-4.4.0.orig/drivers/usb/gadget/function/f_hid.c +++ linux-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-4.4.0.orig/drivers/usb/host/pci-quirks.c +++ linux-4.4.0/drivers/usb/host/pci-quirks.c @@ -78,6 +78,16 @@ #define USB_INTEL_USB3_PSSEN 0xD8 #define USB_INTEL_USB3PRM 0xDC +/* ASMEDIA quirk use */ +#define ASMT_DATA_WRITE0_REG 0xF8 +#define ASMT_DATA_WRITE1_REG 0xFC +#define ASMT_CONTROL_REG 0xE0 +#define ASMT_CONTROL_WRITE_BIT 0x02 +#define ASMT_WRITEREG_CMD 0x10423 +#define ASMT_FLOWCTL_ADDR 0xFA30 +#define ASMT_FLOWCTL_DATA 0xBA +#define ASMT_PSEUDO_DATA 0 + /* * amd_chipset_gen values represent AMD different chipset generations */ @@ -89,6 +99,7 @@ AMD_CHIPSET_HUDSON2, AMD_CHIPSET_BOLTON, AMD_CHIPSET_YANGTZE, + AMD_CHIPSET_TAISHAN, AMD_CHIPSET_UNKNOWN, }; @@ -136,20 +147,26 @@ pinfo->smbus_dev = pci_get_device(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_HUDSON2_SMBUS, NULL); - if (!pinfo->smbus_dev) { - pinfo->sb_type.gen = NOT_AMD_CHIPSET; - return 0; + if (pinfo->smbus_dev) { + rev = pinfo->smbus_dev->revision; + if (rev >= 0x11 && rev <= 0x14) + pinfo->sb_type.gen = AMD_CHIPSET_HUDSON2; + else if (rev >= 0x15 && rev <= 0x18) + pinfo->sb_type.gen = AMD_CHIPSET_BOLTON; + else if (rev >= 0x39 && rev <= 0x3a) + pinfo->sb_type.gen = AMD_CHIPSET_YANGTZE; + } else { + pinfo->smbus_dev = pci_get_device(PCI_VENDOR_ID_AMD, + 0x145c, NULL); + if (pinfo->smbus_dev) { + rev = pinfo->smbus_dev->revision; + pinfo->sb_type.gen = AMD_CHIPSET_TAISHAN; + } else { + pinfo->sb_type.gen = NOT_AMD_CHIPSET; + return 0; + } } - - rev = pinfo->smbus_dev->revision; - if (rev >= 0x11 && rev <= 0x14) - pinfo->sb_type.gen = AMD_CHIPSET_HUDSON2; - else if (rev >= 0x15 && rev <= 0x18) - pinfo->sb_type.gen = AMD_CHIPSET_BOLTON; - else if (rev >= 0x39 && rev <= 0x3a) - pinfo->sb_type.gen = AMD_CHIPSET_YANGTZE; } - pinfo->sb_type.rev = rev; return 1; } @@ -251,11 +268,12 @@ { /* Make sure amd chipset type has already been initialized */ usb_amd_find_chipset_info(); - if (amd_chipset.sb_type.gen != AMD_CHIPSET_YANGTZE) - return 0; - - dev_dbg(&pdev->dev, "QUIRK: Enable AMD remote wakeup fix\n"); - return 1; + if (amd_chipset.sb_type.gen == AMD_CHIPSET_YANGTZE || + amd_chipset.sb_type.gen == AMD_CHIPSET_TAISHAN) { + dev_dbg(&pdev->dev, "QUIRK: Enable AMD remote wakeup fix\n"); + return 1; + } + return 0; } EXPORT_SYMBOL_GPL(usb_hcd_amd_remote_wakeup_quirk); @@ -413,6 +431,50 @@ } EXPORT_SYMBOL_GPL(usb_amd_quirk_pll_disable); +static int usb_asmedia_wait_write(struct pci_dev *pdev) +{ + unsigned long retry_count; + unsigned char value; + + for (retry_count = 1000; retry_count > 0; --retry_count) { + + pci_read_config_byte(pdev, ASMT_CONTROL_REG, &value); + + if (value == 0xff) { + dev_err(&pdev->dev, "%s: check_ready ERROR", __func__); + return -EIO; + } + + if ((value & ASMT_CONTROL_WRITE_BIT) == 0) + return 0; + + usleep_range(40, 60); + } + + dev_warn(&pdev->dev, "%s: check_write_ready timeout", __func__); + return -ETIMEDOUT; +} + +void usb_asmedia_modifyflowcontrol(struct pci_dev *pdev) +{ + if (usb_asmedia_wait_write(pdev) != 0) + return; + + /* send command and address to device */ + pci_write_config_dword(pdev, ASMT_DATA_WRITE0_REG, ASMT_WRITEREG_CMD); + pci_write_config_dword(pdev, ASMT_DATA_WRITE1_REG, ASMT_FLOWCTL_ADDR); + pci_write_config_byte(pdev, ASMT_CONTROL_REG, ASMT_CONTROL_WRITE_BIT); + + if (usb_asmedia_wait_write(pdev) != 0) + return; + + /* send data to device */ + pci_write_config_dword(pdev, ASMT_DATA_WRITE0_REG, ASMT_FLOWCTL_DATA); + pci_write_config_dword(pdev, ASMT_DATA_WRITE1_REG, ASMT_PSEUDO_DATA); + pci_write_config_byte(pdev, ASMT_CONTROL_REG, ASMT_CONTROL_WRITE_BIT); +} +EXPORT_SYMBOL_GPL(usb_asmedia_modifyflowcontrol); + void usb_amd_quirk_pll_enable(void) { usb_amd_quirk_pll(0); only in patch2: unchanged: --- linux-4.4.0.orig/drivers/usb/host/pci-quirks.h +++ linux-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-4.4.0.orig/drivers/usb/renesas_usbhs/common.c +++ linux-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-4.4.0.orig/drivers/usb/storage/isd200.c +++ linux-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-4.4.0.orig/drivers/usb/usbip/stub_main.c +++ linux-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-4.4.0.orig/drivers/usb/usbip/stub_tx.c +++ linux-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-4.4.0.orig/drivers/vfio/pci/vfio_pci_rdwr.c +++ linux-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-4.4.0.orig/drivers/vfio/vfio.c +++ linux-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-4.4.0.orig/drivers/video/fbdev/aty/atyfb_base.c +++ linux-4.4.0/drivers/video/fbdev/aty/atyfb_base.c @@ -1861,7 +1861,7 @@ #if defined(DEBUG) && defined(CONFIG_FB_ATY_CT) case ATYIO_CLKR: if (M64_HAS(INTEGRATED)) { - struct atyclk clk; + struct atyclk clk = { 0 }; union aty_pll *pll = &par->pll; u32 dsp_config = pll->ct.dsp_config; u32 dsp_on_off = pll->ct.dsp_on_off; only in patch2: unchanged: --- linux-4.4.0.orig/drivers/video/fbdev/cobalt_lcdfb.c +++ linux-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-4.4.0.orig/drivers/xen/biomerge.c +++ linux-4.4.0/drivers/xen/biomerge.c @@ -10,8 +10,7 @@ unsigned long bfn1 = pfn_to_bfn(page_to_pfn(vec1->bv_page)); unsigned long bfn2 = pfn_to_bfn(page_to_pfn(vec2->bv_page)); - return __BIOVEC_PHYS_MERGEABLE(vec1, vec2) && - ((bfn1 == bfn2) || ((bfn1+1) == bfn2)); + return bfn1 + PFN_DOWN(vec1->bv_offset + vec1->bv_len) == bfn2; #else /* * XXX: Add support for merging bio_vec when using different page only in patch2: unchanged: --- linux-4.4.0.orig/fs/ceph/cache.c +++ linux-4.4.0/fs/ceph/cache.c @@ -224,13 +224,7 @@ fscache_relinquish_cookie(cookie, 0); } -static void ceph_vfs_readpage_complete(struct page *page, void *data, int error) -{ - if (!error) - SetPageUptodate(page); -} - -static void ceph_vfs_readpage_complete_unlock(struct page *page, void *data, int error) +static void ceph_readpage_from_fscache_complete(struct page *page, void *data, int error) { if (!error) SetPageUptodate(page); @@ -259,7 +253,7 @@ return -ENOBUFS; ret = fscache_read_or_alloc_page(ci->fscache, page, - ceph_vfs_readpage_complete, NULL, + ceph_readpage_from_fscache_complete, NULL, GFP_KERNEL); switch (ret) { @@ -288,7 +282,7 @@ return -ENOBUFS; ret = fscache_read_or_alloc_pages(ci->fscache, mapping, pages, nr_pages, - ceph_vfs_readpage_complete_unlock, + ceph_readpage_from_fscache_complete, NULL, mapping_gfp_mask(mapping)); switch (ret) { only in patch2: unchanged: --- linux-4.4.0.orig/fs/ceph/dir.c +++ linux-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-4.4.0.orig/fs/dlm/user.c +++ linux-4.4.0/fs/dlm/user.c @@ -355,6 +355,10 @@ error = misc_register(&ls->ls_device); if (error) { kfree(ls->ls_device.name); + /* this has to be set to NULL + * to avoid a double-free in dlm_device_deregister + */ + ls->ls_device.name = NULL; } fail: return error; only in patch2: unchanged: --- linux-4.4.0.orig/fs/eventpoll.c +++ linux-4.4.0/fs/eventpoll.c @@ -518,8 +518,13 @@ wait_queue_head_t *whead; rcu_read_lock(); - /* If it is cleared by POLLFREE, it should be rcu-safe */ - whead = rcu_dereference(pwq->whead); + /* + * If it is cleared by POLLFREE, it should be rcu-safe. + * If we read NULL we need a barrier paired with + * smp_store_release() in ep_poll_callback(), otherwise + * we rely on whead->lock. + */ + whead = smp_load_acquire(&pwq->whead); if (whead) remove_wait_queue(whead, &pwq->wait); rcu_read_unlock(); @@ -1003,17 +1008,6 @@ struct epitem *epi = ep_item_from_wait(wait); struct eventpoll *ep = epi->ep; - if ((unsigned long)key & POLLFREE) { - ep_pwq_from_wait(wait)->whead = NULL; - /* - * whead = NULL above can race with ep_remove_wait_queue() - * which can do another remove_wait_queue() after us, so we - * can't use __remove_wait_queue(). whead->lock is held by - * the caller. - */ - list_del_init(&wait->task_list); - } - spin_lock_irqsave(&ep->lock, flags); /* @@ -1078,6 +1072,23 @@ if (pwake) ep_poll_safewake(&ep->poll_wait); + + if ((unsigned long)key & POLLFREE) { + /* + * If we race with ep_remove_wait_queue() it can miss + * ->whead = NULL and do another remove_wait_queue() after + * us, so we can't use __remove_wait_queue(). + */ + list_del_init(&wait->task_list); + /* + * ->whead != NULL protects us from the race with ep_free() + * or ep_remove(), ep_remove_wait_queue() takes whead->lock + * held by the caller. Once we nullify it, nothing protects + * ep/epi or even wait. + */ + smp_store_release(&ep_pwq_from_wait(wait)->whead, NULL); + } + return 1; } only in patch2: unchanged: --- linux-4.4.0.orig/fs/f2fs/recovery.c +++ linux-4.4.0/fs/f2fs/recovery.c @@ -276,7 +276,7 @@ return 0; /* Get the previous summary */ - for (i = CURSEG_WARM_DATA; i <= CURSEG_COLD_DATA; i++) { + for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) { struct curseg_info *curseg = CURSEG_I(sbi, i); if (curseg->segno == segno) { sum = curseg->sum_blk->entries[blkoff]; only in patch2: unchanged: --- linux-4.4.0.orig/fs/fcntl.c +++ linux-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-4.4.0.orig/fs/nfs/Kconfig +++ linux-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-4.4.0.orig/fs/nfs/flexfilelayout/flexfilelayoutdev.c +++ linux-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-4.4.0.orig/fs/nfs/internal.h +++ linux-4.4.0/fs/nfs/internal.h @@ -243,7 +243,6 @@ extern const struct nfs_pageio_ops nfs_pgio_rw_ops; struct nfs_pgio_header *nfs_pgio_header_alloc(const struct nfs_rw_ops *); void nfs_pgio_header_free(struct nfs_pgio_header *); -void nfs_pgio_data_destroy(struct nfs_pgio_header *); int nfs_generic_pgio(struct nfs_pageio_descriptor *, struct nfs_pgio_header *); int nfs_initiate_pgio(struct rpc_clnt *clnt, struct nfs_pgio_header *hdr, struct rpc_cred *cred, const struct nfs_rpc_ops *rpc_ops, only in patch2: unchanged: --- linux-4.4.0.orig/fs/nfs/pagelist.c +++ linux-4.4.0/fs/nfs/pagelist.c @@ -528,16 +528,6 @@ } EXPORT_SYMBOL_GPL(nfs_pgio_header_alloc); -/* - * nfs_pgio_header_free - Free a read or write header - * @hdr: The header to free - */ -void nfs_pgio_header_free(struct nfs_pgio_header *hdr) -{ - hdr->rw_ops->rw_free_header(hdr); -} -EXPORT_SYMBOL_GPL(nfs_pgio_header_free); - /** * nfs_pgio_data_destroy - make @hdr suitable for reuse * @@ -546,14 +536,24 @@ * * @hdr: A header that has had nfs_generic_pgio called */ -void nfs_pgio_data_destroy(struct nfs_pgio_header *hdr) +static void nfs_pgio_data_destroy(struct nfs_pgio_header *hdr) { if (hdr->args.context) put_nfs_open_context(hdr->args.context); if (hdr->page_array.pagevec != hdr->page_array.page_array) kfree(hdr->page_array.pagevec); } -EXPORT_SYMBOL_GPL(nfs_pgio_data_destroy); + +/* + * nfs_pgio_header_free - Free a read or write header + * @hdr: The header to free + */ +void nfs_pgio_header_free(struct nfs_pgio_header *hdr) +{ + nfs_pgio_data_destroy(hdr); + hdr->rw_ops->rw_free_header(hdr); +} +EXPORT_SYMBOL_GPL(nfs_pgio_header_free); /** * nfs_pgio_rpcsetup - Set up arguments for a pageio call @@ -671,7 +671,6 @@ u32 midx; set_bit(NFS_IOHDR_REDO, &hdr->flags); - nfs_pgio_data_destroy(hdr); hdr->completion_ops->completion(hdr); /* TODO: Make sure it's right to clean up all mirrors here * and not just hdr->pgio_mirror_idx */ @@ -689,7 +688,6 @@ static void nfs_pgio_release(void *calldata) { struct nfs_pgio_header *hdr = calldata; - nfs_pgio_data_destroy(hdr); hdr->completion_ops->completion(hdr); } only in patch2: unchanged: --- linux-4.4.0.orig/fs/xfs/xfs_linux.h +++ linux-4.4.0/fs/xfs/xfs_linux.h @@ -369,7 +369,14 @@ #endif /* DEBUG */ #ifdef CONFIG_XFS_RT -#define XFS_IS_REALTIME_INODE(ip) ((ip)->i_d.di_flags & XFS_DIFLAG_REALTIME) + +/* + * make sure we ignore the inode flag if the filesystem doesn't have a + * configured realtime device. + */ +#define XFS_IS_REALTIME_INODE(ip) \ + (((ip)->i_d.di_flags & XFS_DIFLAG_REALTIME) && \ + (ip)->i_mount->m_rtdev_targp) #else #define XFS_IS_REALTIME_INODE(ip) (0) #endif only in patch2: unchanged: --- linux-4.4.0.orig/include/asm-generic/topology.h +++ linux-4.4.0/include/asm-generic/topology.h @@ -48,7 +48,11 @@ #define parent_node(node) ((void)(node),0) #endif #ifndef cpumask_of_node -#define cpumask_of_node(node) ((void)node, cpu_online_mask) + #ifdef CONFIG_NEED_MULTIPLE_NODES + #define cpumask_of_node(node) ((node) == 0 ? cpu_online_mask : cpu_none_mask) + #else + #define cpumask_of_node(node) ((void)node, cpu_online_mask) + #endif #endif #ifndef pcibus_to_node #define pcibus_to_node(bus) ((void)(bus), -1) only in patch2: unchanged: --- linux-4.4.0.orig/include/linux/audit.h +++ linux-4.4.0/include/linux/audit.h @@ -212,8 +212,7 @@ static inline void audit_seccomp(unsigned long syscall, long signr, int code) { - /* Force a record to be reported if a signal was delivered. */ - if (signr || unlikely(!audit_dummy_context())) + if (unlikely(!audit_dummy_context())) __audit_seccomp(syscall, signr, code); } only in patch2: unchanged: --- linux-4.4.0.orig/include/linux/cpuset.h +++ linux-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-4.4.0.orig/include/linux/device.h +++ linux-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-4.4.0.orig/include/linux/fcntl.h +++ linux-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-4.4.0.orig/include/linux/list_lru.h +++ linux-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-4.4.0.orig/include/linux/phy.h +++ linux-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-4.4.0.orig/include/linux/pid.h +++ linux-4.4.0/include/linux/pid.h @@ -8,7 +8,9 @@ PIDTYPE_PID, PIDTYPE_PGID, PIDTYPE_SID, - PIDTYPE_MAX + PIDTYPE_MAX, + /* only valid to __task_pid_nr_ns() */ + __PIDTYPE_TGID }; /* only in patch2: unchanged: --- linux-4.4.0.orig/include/linux/platform_data/mmp_dma.h +++ linux-4.4.0/include/linux/platform_data/mmp_dma.h @@ -14,6 +14,7 @@ struct mmp_dma_platdata { int dma_channels; + int nb_requestors; }; #endif /* MMP_DMA_H */ only in patch2: unchanged: --- linux-4.4.0.orig/include/linux/pstore_ram.h +++ linux-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-4.4.0.orig/include/linux/seccomp.h +++ linux-4.4.0/include/linux/seccomp.h @@ -3,7 +3,8 @@ #include -#define SECCOMP_FILTER_FLAG_MASK (SECCOMP_FILTER_FLAG_TSYNC) +#define SECCOMP_FILTER_FLAG_MASK (SECCOMP_FILTER_FLAG_TSYNC | \ + SECCOMP_FILTER_FLAG_LOG) #ifdef CONFIG_SECCOMP only in patch2: unchanged: --- linux-4.4.0.orig/include/linux/slab.h +++ linux-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-4.4.0.orig/include/linux/tty_flip.h +++ linux-4.4.0/include/linux/tty_flip.h @@ -12,6 +12,7 @@ unsigned char **chars, size_t size); extern void tty_flip_buffer_push(struct tty_port *port); void tty_schedule_flip(struct tty_port *port); +int __tty_insert_flip_char(struct tty_port *port, unsigned char ch, char flag); static inline int tty_insert_flip_char(struct tty_port *port, unsigned char ch, char flag) @@ -26,7 +27,7 @@ *char_buf_ptr(tb, tb->used++) = ch; return 1; } - return tty_insert_flip_string_flags(port, &ch, &flag, 1); + return __tty_insert_flip_char(port, ch, flag); } static inline int tty_insert_flip_string(struct tty_port *port, only in patch2: unchanged: --- linux-4.4.0.orig/include/linux/vfio.h +++ linux-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-4.4.0.orig/include/linux/workqueue.h +++ linux-4.4.0/include/linux/workqueue.h @@ -311,6 +311,7 @@ __WQ_DRAINING = 1 << 16, /* internal: workqueue is draining */ __WQ_ORDERED = 1 << 17, /* internal: workqueue is ordered */ + __WQ_ORDERED_EXPLICIT = 1 << 19, /* internal: alloc_ordered_workqueue() */ WQ_MAX_ACTIVE = 512, /* I like 512, better ideas? */ WQ_MAX_UNBOUND_PER_CPU = 4, /* 4 * #cpus for unbound wq */ @@ -408,7 +409,8 @@ * Pointer to the allocated workqueue on success, %NULL on failure. */ #define alloc_ordered_workqueue(fmt, flags, args...) \ - alloc_workqueue(fmt, WQ_UNBOUND | __WQ_ORDERED | (flags), 1, ##args) + alloc_workqueue(fmt, WQ_UNBOUND | __WQ_ORDERED | \ + __WQ_ORDERED_EXPLICIT | (flags), 1, ##args) #define create_workqueue(name) \ alloc_workqueue("%s", WQ_MEM_RECLAIM, 1, (name)) only in patch2: unchanged: --- linux-4.4.0.orig/include/net/arp.h +++ linux-4.4.0/include/net/arp.h @@ -35,6 +35,22 @@ return n; } +static inline void __ipv4_confirm_neigh(struct net_device *dev, u32 key) +{ + struct neighbour *n; + + rcu_read_lock_bh(); + n = __ipv4_neigh_lookup_noref(dev, key); + if (n) { + unsigned long now = jiffies; + + /* avoid dirtying neighbour */ + if (n->confirmed != now) + n->confirmed = now; + } + rcu_read_unlock_bh(); +} + void arp_init(void); int arp_ioctl(struct net *net, unsigned int cmd, void __user *arg); void arp_send(int type, int ptype, __be32 dest_ip, only in patch2: unchanged: --- linux-4.4.0.orig/include/net/dst_ops.h +++ linux-4.4.0/include/net/dst_ops.h @@ -33,6 +33,8 @@ struct neighbour * (*neigh_lookup)(const struct dst_entry *dst, struct sk_buff *skb, const void *daddr); + void (*confirm_neigh)(const struct dst_entry *dst, + const void *daddr); struct kmem_cache *kmem_cachep; only in patch2: unchanged: --- linux-4.4.0.orig/include/net/inet_frag.h +++ linux-4.4.0/include/net/inet_frag.h @@ -1,14 +1,9 @@ #ifndef __NET_FRAG_H__ #define __NET_FRAG_H__ -#include - struct netns_frags { - /* The percpu_counter "mem" need to be cacheline aligned. - * mem.count must not share cacheline with other writers - */ - struct percpu_counter mem ____cacheline_aligned_in_smp; - + /* Keep atomic mem on separate cachelines in structs that include it */ + atomic_t mem ____cacheline_aligned_in_smp; /* sysctls */ int timeout; int high_thresh; @@ -108,15 +103,10 @@ int inet_frags_init(struct inet_frags *); void inet_frags_fini(struct inet_frags *); -static inline int inet_frags_init_net(struct netns_frags *nf) -{ - return percpu_counter_init(&nf->mem, 0, GFP_KERNEL); -} -static inline void inet_frags_uninit_net(struct netns_frags *nf) +static inline void inet_frags_init_net(struct netns_frags *nf) { - percpu_counter_destroy(&nf->mem); + atomic_set(&nf->mem, 0); } - void inet_frags_exit_net(struct netns_frags *nf, struct inet_frags *f); void inet_frag_kill(struct inet_frag_queue *q, struct inet_frags *f); @@ -140,37 +130,24 @@ /* Memory Tracking Functions. */ -/* The default percpu_counter batch size is not big enough to scale to - * fragmentation mem acct sizes. - * The mem size of a 64K fragment is approx: - * (44 fragments * 2944 truesize) + frag_queue struct(200) = 129736 bytes - */ -static unsigned int frag_percpu_counter_batch = 130000; - static inline int frag_mem_limit(struct netns_frags *nf) { - return percpu_counter_read(&nf->mem); + return atomic_read(&nf->mem); } static inline void sub_frag_mem_limit(struct netns_frags *nf, int i) { - __percpu_counter_add(&nf->mem, -i, frag_percpu_counter_batch); + atomic_sub(i, &nf->mem); } static inline void add_frag_mem_limit(struct netns_frags *nf, int i) { - __percpu_counter_add(&nf->mem, i, frag_percpu_counter_batch); + atomic_add(i, &nf->mem); } -static inline unsigned int sum_frag_mem_limit(struct netns_frags *nf) +static inline int sum_frag_mem_limit(struct netns_frags *nf) { - unsigned int res; - - local_bh_disable(); - res = percpu_counter_sum_positive(&nf->mem); - local_bh_enable(); - - return res; + return atomic_read(&nf->mem); } /* RFC 3168 support : only in patch2: unchanged: --- linux-4.4.0.orig/include/net/ip6_fib.h +++ linux-4.4.0/include/net/ip6_fib.h @@ -68,6 +68,7 @@ __u16 fn_flags; int fn_sernum; struct rt6_info *rr_ptr; + struct rcu_head rcu; }; #ifndef CONFIG_IPV6_SUBTREES @@ -102,7 +103,7 @@ * the same cache line. */ struct fib6_table *rt6i_table; - struct fib6_node *rt6i_node; + struct fib6_node __rcu *rt6i_node; struct in6_addr rt6i_gateway; @@ -165,13 +166,40 @@ rt0->rt6i_flags |= RTF_EXPIRES; } +/* Function to safely get fn->sernum for passed in rt + * and store result in passed in cookie. + * Return true if we can get cookie safely + * Return false if not + */ +static inline bool rt6_get_cookie_safe(const struct rt6_info *rt, + u32 *cookie) +{ + struct fib6_node *fn; + bool status = false; + + rcu_read_lock(); + fn = rcu_dereference(rt->rt6i_node); + + if (fn) { + *cookie = fn->fn_sernum; + status = true; + } + + rcu_read_unlock(); + return status; +} + static inline u32 rt6_get_cookie(const struct rt6_info *rt) { + u32 cookie = 0; + if (rt->rt6i_flags & RTF_PCPU || (unlikely(rt->dst.flags & DST_NOCACHE) && rt->dst.from)) rt = (struct rt6_info *)(rt->dst.from); - return rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0; + rt6_get_cookie_safe(rt, &cookie); + + return cookie; } static inline void ip6_rt_put(struct rt6_info *rt) only in patch2: unchanged: --- linux-4.4.0.orig/include/net/ndisc.h +++ linux-4.4.0/include/net/ndisc.h @@ -172,6 +172,23 @@ return n; } +static inline void __ipv6_confirm_neigh(struct net_device *dev, + const void *pkey) +{ + struct neighbour *n; + + rcu_read_lock_bh(); + n = __ipv6_neigh_lookup_noref(dev, pkey); + if (n) { + unsigned long now = jiffies; + + /* avoid dirtying neighbour */ + if (n->confirmed != now) + n->confirmed = now; + } + rcu_read_unlock_bh(); +} + int ndisc_init(void); int ndisc_late_init(void); only in patch2: unchanged: --- linux-4.4.0.orig/include/net/sctp/sctp.h +++ linux-4.4.0/include/net/sctp/sctp.h @@ -444,6 +444,8 @@ #define _sctp_walk_params(pos, chunk, end, member)\ for (pos.v = chunk->member;\ + (pos.v + offsetof(struct sctp_paramhdr, length) + sizeof(pos.p->length) <=\ + (void *)chunk + end) &&\ pos.v <= (void *)chunk + end - ntohs(pos.p->length) &&\ ntohs(pos.p->length) >= sizeof(sctp_paramhdr_t);\ pos.v += WORD_ROUND(ntohs(pos.p->length))) @@ -454,6 +456,8 @@ #define _sctp_walk_errors(err, chunk_hdr, end)\ for (err = (sctp_errhdr_t *)((void *)chunk_hdr + \ sizeof(sctp_chunkhdr_t));\ + ((void *)err + offsetof(sctp_errhdr_t, length) + sizeof(err->length) <=\ + (void *)chunk_hdr + end) &&\ (void *)err <= (void *)chunk_hdr + end - ntohs(err->length) &&\ ntohs(err->length) >= sizeof(sctp_errhdr_t); \ err = (sctp_errhdr_t *)((void *)err + WORD_ROUND(ntohs(err->length)))) @@ -592,10 +596,8 @@ */ static inline struct dst_entry *sctp_transport_dst_check(struct sctp_transport *t) { - if (t->dst && !dst_check(t->dst, t->dst_cookie)) { - dst_release(t->dst); - t->dst = NULL; - } + if (t->dst && !dst_check(t->dst, t->dst_cookie)) + sctp_transport_dst_release(t); return t->dst; } only in patch2: unchanged: --- linux-4.4.0.orig/include/net/sctp/structs.h +++ linux-4.4.0/include/net/sctp/structs.h @@ -830,6 +830,8 @@ __u32 burst_limited; /* Holds old cwnd when max.burst is applied */ + __u32 dst_pending_confirm; /* need to confirm neighbour */ + /* Destination */ struct dst_entry *dst; /* Source address. */ @@ -966,6 +968,8 @@ void sctp_transport_reset(struct sctp_transport *); void sctp_transport_update_pmtu(struct sock *, struct sctp_transport *, u32); void sctp_transport_immediate_rtx(struct sctp_transport *); +void sctp_transport_dst_release(struct sctp_transport *t); +void sctp_transport_dst_confirm(struct sctp_transport *t); /* This is the structure we use to queue packets as they come into only in patch2: unchanged: --- linux-4.4.0.orig/include/scsi/scsi_transport_sas.h +++ linux-4.4.0/include/scsi/scsi_transport_sas.h @@ -10,6 +10,21 @@ struct sas_rphy; struct request; +#if !IS_ENABLED(CONFIG_SCSI_SAS_ATTRS) +static inline int is_sas_attached(struct scsi_device *sdev) +{ + return 0; +} + +static inline int scsi_is_sas_rphy(const struct device *sdev) +{ + return 0; +} +#else +extern int is_sas_attached(struct scsi_device *sdev); +extern int scsi_is_sas_rphy(const struct device *); +#endif + static inline int sas_protocol_ata(enum sas_protocol proto) { return ((proto & SAS_PROTOCOL_SATA) || @@ -180,6 +195,7 @@ extern void sas_phy_delete(struct sas_phy *); extern int scsi_is_sas_phy(const struct device *); +u64 sas_get_address(struct scsi_device *); unsigned int sas_tlr_supported(struct scsi_device *); unsigned int sas_is_tlr_enabled(struct scsi_device *); void sas_disable_tlr(struct scsi_device *); @@ -192,7 +208,6 @@ extern void sas_rphy_remove(struct sas_rphy *); extern void sas_rphy_delete(struct sas_rphy *); extern void sas_rphy_unlink(struct sas_rphy *); -extern int scsi_is_sas_rphy(const struct device *); struct sas_port *sas_port_alloc(struct device *, int); struct sas_port *sas_port_alloc_num(struct device *); only in patch2: unchanged: --- linux-4.4.0.orig/include/target/iscsi/iscsi_target_core.h +++ linux-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-4.4.0.orig/include/uapi/linux/seccomp.h +++ linux-4.4.0/include/uapi/linux/seccomp.h @@ -11,11 +11,13 @@ #define SECCOMP_MODE_FILTER 2 /* uses user-supplied filter. */ /* Valid operations for seccomp syscall. */ -#define SECCOMP_SET_MODE_STRICT 0 -#define SECCOMP_SET_MODE_FILTER 1 +#define SECCOMP_SET_MODE_STRICT 0 +#define SECCOMP_SET_MODE_FILTER 1 +#define SECCOMP_GET_ACTION_AVAIL 2 /* Valid flags for SECCOMP_SET_MODE_FILTER */ #define SECCOMP_FILTER_FLAG_TSYNC 1 +#define SECCOMP_FILTER_FLAG_LOG 2 /* * All BPF programs must return a 32-bit value. @@ -29,6 +31,7 @@ #define SECCOMP_RET_TRAP 0x00030000U /* disallow and force a SIGSYS */ #define SECCOMP_RET_ERRNO 0x00050000U /* returns an errno */ #define SECCOMP_RET_TRACE 0x7ff00000U /* pass to a tracer or disallow */ +#define SECCOMP_RET_LOG 0x7ffc0000U /* allow after logging */ #define SECCOMP_RET_ALLOW 0x7fff0000U /* allow */ /* Masks for the return value sections. */ only in patch2: unchanged: --- linux-4.4.0.orig/include/xen/swiotlb-xen.h +++ linux-4.4.0/include/xen/swiotlb-xen.h @@ -58,4 +58,9 @@ extern int xen_swiotlb_set_dma_mask(struct device *dev, u64 dma_mask); + +extern int +xen_swiotlb_dma_mmap(struct device *dev, struct vm_area_struct *vma, + void *cpu_addr, dma_addr_t dma_addr, size_t size, + struct dma_attrs *attrs); #endif /* __LINUX_SWIOTLB_XEN_H */ only in patch2: unchanged: --- linux-4.4.0.orig/kernel/extable.c +++ linux-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-4.4.0.orig/kernel/gcov/gcc_4_7.c +++ linux-4.4.0/kernel/gcov/gcc_4_7.c @@ -18,7 +18,9 @@ #include #include "gcov.h" -#if __GNUC__ == 5 && __GNUC_MINOR__ >= 1 +#if (__GNUC__ >= 7) +#define GCOV_COUNTERS 9 +#elif (__GNUC__ > 5) || (__GNUC__ == 5 && __GNUC_MINOR__ >= 1) #define GCOV_COUNTERS 10 #elif __GNUC__ == 4 && __GNUC_MINOR__ >= 9 #define GCOV_COUNTERS 9 only in patch2: unchanged: --- linux-4.4.0.orig/kernel/locking/locktorture.c +++ linux-4.4.0/kernel/locking/locktorture.c @@ -776,6 +776,8 @@ else lock_torture_print_module_parms(cxt.cur_ops, "End of test: SUCCESS"); + kfree(cxt.lwsa); + kfree(cxt.lrsa); torture_cleanup_end(); } @@ -917,6 +919,8 @@ GFP_KERNEL); if (reader_tasks == NULL) { VERBOSE_TOROUT_ERRSTRING("reader_tasks: Out of memory"); + kfree(writer_tasks); + writer_tasks = NULL; firsterr = -ENOMEM; goto unwind; } only in patch2: unchanged: --- linux-4.4.0.orig/kernel/pid.c +++ linux-4.4.0/kernel/pid.c @@ -526,8 +526,11 @@ if (!ns) ns = task_active_pid_ns(current); if (likely(pid_alive(task))) { - if (type != PIDTYPE_PID) + if (type != PIDTYPE_PID) { + if (type == __PIDTYPE_TGID) + type = PIDTYPE_PID; task = task->group_leader; + } nr = pid_nr_ns(rcu_dereference(task->pids[type].pid), ns); } rcu_read_unlock(); @@ -536,12 +539,6 @@ } EXPORT_SYMBOL(__task_pid_nr_ns); -pid_t task_tgid_nr_ns(struct task_struct *tsk, struct pid_namespace *ns) -{ - return pid_nr_ns(task_tgid(tsk), ns); -} -EXPORT_SYMBOL(task_tgid_nr_ns); - struct pid_namespace *task_active_pid_ns(struct task_struct *tsk) { return ns_of_pid(task_pid(tsk)); only in patch2: unchanged: --- linux-4.4.0.orig/kernel/time/timer.c +++ linux-4.4.0/kernel/time/timer.c @@ -127,7 +127,7 @@ int ret; mutex_lock(&mutex); - ret = proc_dointvec(table, write, buffer, lenp, ppos); + ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos); if (!ret && write) timers_update_migration(false); mutex_unlock(&mutex); only in patch2: unchanged: --- linux-4.4.0.orig/kernel/trace/trace_selftest.c +++ linux-4.4.0/kernel/trace/trace_selftest.c @@ -272,7 +272,7 @@ goto out_free; if (cnt > 1) { if (trace_selftest_test_global_cnt == 0) - goto out; + goto out_free; } if (trace_selftest_test_dyn_cnt == 0) goto out_free; only in patch2: unchanged: --- linux-4.4.0.orig/lib/Kconfig.debug +++ linux-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-4.4.0.orig/mm/mempool.c +++ linux-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-4.4.0.orig/mm/mprotect.c +++ linux-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-4.4.0.orig/mm/mremap.c +++ linux-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-4.4.0.orig/mm/rmap.c +++ linux-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-4.4.0.orig/net/bluetooth/bnep/core.c +++ linux-4.4.0/net/bluetooth/bnep/core.c @@ -484,16 +484,16 @@ struct net_device *dev = s->dev; struct sock *sk = s->sock->sk; struct sk_buff *skb; - wait_queue_t wait; + DEFINE_WAIT_FUNC(wait, woken_wake_function); BT_DBG(""); set_user_nice(current, -15); - init_waitqueue_entry(&wait, current); add_wait_queue(sk_sleep(sk), &wait); while (1) { - set_current_state(TASK_INTERRUPTIBLE); + /* Ensure session->terminate is updated */ + smp_mb__before_atomic(); if (atomic_read(&s->terminate)) break; @@ -515,9 +515,8 @@ break; netif_wake_queue(dev); - schedule(); + wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); } - __set_current_state(TASK_RUNNING); remove_wait_queue(sk_sleep(sk), &wait); /* Cleanup session */ @@ -663,7 +662,7 @@ s = __bnep_get_session(req->dst); if (s) { atomic_inc(&s->terminate); - wake_up_process(s->task); + wake_up_interruptible(sk_sleep(s->sock->sk)); } else err = -ENOENT; only in patch2: unchanged: --- linux-4.4.0.orig/net/bluetooth/cmtp/core.c +++ linux-4.4.0/net/bluetooth/cmtp/core.c @@ -281,16 +281,16 @@ struct cmtp_session *session = arg; struct sock *sk = session->sock->sk; struct sk_buff *skb; - wait_queue_t wait; + DEFINE_WAIT_FUNC(wait, woken_wake_function); BT_DBG("session %p", session); set_user_nice(current, -15); - init_waitqueue_entry(&wait, current); add_wait_queue(sk_sleep(sk), &wait); while (1) { - set_current_state(TASK_INTERRUPTIBLE); + /* Ensure session->terminate is updated */ + smp_mb__before_atomic(); if (atomic_read(&session->terminate)) break; @@ -307,9 +307,8 @@ cmtp_process_transmit(session); - schedule(); + wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); } - __set_current_state(TASK_RUNNING); remove_wait_queue(sk_sleep(sk), &wait); down_write(&cmtp_session_sem); @@ -394,7 +393,7 @@ err = cmtp_attach_device(session); if (err < 0) { atomic_inc(&session->terminate); - wake_up_process(session->task); + wake_up_interruptible(sk_sleep(session->sock->sk)); up_write(&cmtp_session_sem); return err; } @@ -432,7 +431,11 @@ /* Stop session thread */ atomic_inc(&session->terminate); - wake_up_process(session->task); + + /* Ensure session->terminate is updated */ + smp_mb__after_atomic(); + + wake_up_interruptible(sk_sleep(session->sock->sk)); } else err = -ENOENT; only in patch2: unchanged: --- linux-4.4.0.orig/net/bluetooth/hidp/core.c +++ linux-4.4.0/net/bluetooth/hidp/core.c @@ -36,6 +36,7 @@ #define VERSION "1.2" static DECLARE_RWSEM(hidp_session_sem); +static DECLARE_WAIT_QUEUE_HEAD(hidp_session_wq); static LIST_HEAD(hidp_session_list); static unsigned char hidp_keycode[256] = { @@ -1068,12 +1069,12 @@ * Wake up session thread and notify it to stop. This is asynchronous and * returns immediately. Call this whenever a runtime error occurs and you want * the session to stop. - * Note: wake_up_process() performs any necessary memory-barriers for us. + * Note: wake_up_interruptible() performs any necessary memory-barriers for us. */ static void hidp_session_terminate(struct hidp_session *session) { atomic_inc(&session->terminate); - wake_up_process(session->task); + wake_up_interruptible(&hidp_session_wq); } /* @@ -1180,7 +1181,9 @@ struct sock *ctrl_sk = session->ctrl_sock->sk; struct sock *intr_sk = session->intr_sock->sk; struct sk_buff *skb; + DEFINE_WAIT_FUNC(wait, woken_wake_function); + add_wait_queue(&hidp_session_wq, &wait); for (;;) { /* * This thread can be woken up two ways: @@ -1188,12 +1191,10 @@ * session->terminate flag and wakes this thread up. * - Via modifying the socket state of ctrl/intr_sock. This * thread is woken up by ->sk_state_changed(). - * - * Note: set_current_state() performs any necessary - * memory-barriers for us. */ - set_current_state(TASK_INTERRUPTIBLE); + /* Ensure session->terminate is updated */ + smp_mb__before_atomic(); if (atomic_read(&session->terminate)) break; @@ -1227,11 +1228,22 @@ hidp_process_transmit(session, &session->ctrl_transmit, session->ctrl_sock); - schedule(); + wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); } + remove_wait_queue(&hidp_session_wq, &wait); atomic_inc(&session->terminate); - set_current_state(TASK_RUNNING); + + /* Ensure session->terminate is updated */ + smp_mb__after_atomic(); +} + +static int hidp_session_wake_function(wait_queue_t *wait, + unsigned int mode, + int sync, void *key) +{ + wake_up_interruptible(&hidp_session_wq); + return false; } /* @@ -1244,7 +1256,8 @@ static int hidp_session_thread(void *arg) { struct hidp_session *session = arg; - wait_queue_t ctrl_wait, intr_wait; + DEFINE_WAIT_FUNC(ctrl_wait, hidp_session_wake_function); + DEFINE_WAIT_FUNC(intr_wait, hidp_session_wake_function); BT_DBG("session %p", session); @@ -1254,8 +1267,6 @@ set_user_nice(current, -15); hidp_set_timer(session); - init_waitqueue_entry(&ctrl_wait, current); - init_waitqueue_entry(&intr_wait, current); add_wait_queue(sk_sleep(session->ctrl_sock->sk), &ctrl_wait); add_wait_queue(sk_sleep(session->intr_sock->sk), &intr_wait); /* This memory barrier is paired with wq_has_sleeper(). See only in patch2: unchanged: --- linux-4.4.0.orig/net/bluetooth/l2cap_core.c +++ linux-4.4.0/net/bluetooth/l2cap_core.c @@ -57,7 +57,7 @@ u8 code, u8 ident, u16 dlen, void *data); static void l2cap_send_cmd(struct l2cap_conn *conn, u8 ident, u8 code, u16 len, void *data); -static int l2cap_build_conf_req(struct l2cap_chan *chan, void *data); +static int l2cap_build_conf_req(struct l2cap_chan *chan, void *data, size_t data_size); static void l2cap_send_disconn_req(struct l2cap_chan *chan, int err); static void l2cap_tx(struct l2cap_chan *chan, struct l2cap_ctrl *control, @@ -1462,7 +1462,7 @@ set_bit(CONF_REQ_SENT, &chan->conf_state); l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ, - l2cap_build_conf_req(chan, buf), buf); + l2cap_build_conf_req(chan, buf, sizeof(buf)), buf); chan->num_conf_req++; } @@ -2966,12 +2966,15 @@ return len; } -static void l2cap_add_conf_opt(void **ptr, u8 type, u8 len, unsigned long val) +static void l2cap_add_conf_opt(void **ptr, u8 type, u8 len, unsigned long val, size_t size) { struct l2cap_conf_opt *opt = *ptr; BT_DBG("type 0x%2.2x len %u val 0x%lx", type, len, val); + if (size < L2CAP_CONF_OPT_SIZE + len) + return; + opt->type = type; opt->len = len; @@ -2996,7 +2999,7 @@ *ptr += L2CAP_CONF_OPT_SIZE + len; } -static void l2cap_add_opt_efs(void **ptr, struct l2cap_chan *chan) +static void l2cap_add_opt_efs(void **ptr, struct l2cap_chan *chan, size_t size) { struct l2cap_conf_efs efs; @@ -3024,7 +3027,7 @@ } l2cap_add_conf_opt(ptr, L2CAP_CONF_EFS, sizeof(efs), - (unsigned long) &efs); + (unsigned long) &efs, size); } static void l2cap_ack_timeout(struct work_struct *work) @@ -3170,11 +3173,12 @@ chan->ack_win = chan->tx_win; } -static int l2cap_build_conf_req(struct l2cap_chan *chan, void *data) +static int l2cap_build_conf_req(struct l2cap_chan *chan, void *data, size_t data_size) { struct l2cap_conf_req *req = data; struct l2cap_conf_rfc rfc = { .mode = chan->mode }; void *ptr = req->data; + void *endptr = data + data_size; u16 size; BT_DBG("chan %p", chan); @@ -3199,7 +3203,7 @@ done: if (chan->imtu != L2CAP_DEFAULT_MTU) - l2cap_add_conf_opt(&ptr, L2CAP_CONF_MTU, 2, chan->imtu); + l2cap_add_conf_opt(&ptr, L2CAP_CONF_MTU, 2, chan->imtu, endptr - ptr); switch (chan->mode) { case L2CAP_MODE_BASIC: @@ -3218,7 +3222,7 @@ rfc.max_pdu_size = 0; l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, sizeof(rfc), - (unsigned long) &rfc); + (unsigned long) &rfc, endptr - ptr); break; case L2CAP_MODE_ERTM: @@ -3238,21 +3242,21 @@ L2CAP_DEFAULT_TX_WINDOW); l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, sizeof(rfc), - (unsigned long) &rfc); + (unsigned long) &rfc, endptr - ptr); if (test_bit(FLAG_EFS_ENABLE, &chan->flags)) - l2cap_add_opt_efs(&ptr, chan); + l2cap_add_opt_efs(&ptr, chan, endptr - ptr); if (test_bit(FLAG_EXT_CTRL, &chan->flags)) l2cap_add_conf_opt(&ptr, L2CAP_CONF_EWS, 2, - chan->tx_win); + chan->tx_win, endptr - ptr); if (chan->conn->feat_mask & L2CAP_FEAT_FCS) if (chan->fcs == L2CAP_FCS_NONE || test_bit(CONF_RECV_NO_FCS, &chan->conf_state)) { chan->fcs = L2CAP_FCS_NONE; l2cap_add_conf_opt(&ptr, L2CAP_CONF_FCS, 1, - chan->fcs); + chan->fcs, endptr - ptr); } break; @@ -3270,17 +3274,17 @@ rfc.max_pdu_size = cpu_to_le16(size); l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, sizeof(rfc), - (unsigned long) &rfc); + (unsigned long) &rfc, endptr - ptr); if (test_bit(FLAG_EFS_ENABLE, &chan->flags)) - l2cap_add_opt_efs(&ptr, chan); + l2cap_add_opt_efs(&ptr, chan, endptr - ptr); if (chan->conn->feat_mask & L2CAP_FEAT_FCS) if (chan->fcs == L2CAP_FCS_NONE || test_bit(CONF_RECV_NO_FCS, &chan->conf_state)) { chan->fcs = L2CAP_FCS_NONE; l2cap_add_conf_opt(&ptr, L2CAP_CONF_FCS, 1, - chan->fcs); + chan->fcs, endptr - ptr); } break; } @@ -3291,10 +3295,11 @@ return ptr - data; } -static int l2cap_parse_conf_req(struct l2cap_chan *chan, void *data) +static int l2cap_parse_conf_req(struct l2cap_chan *chan, void *data, size_t data_size) { struct l2cap_conf_rsp *rsp = data; void *ptr = rsp->data; + void *endptr = data + data_size; void *req = chan->conf_req; int len = chan->conf_len; int type, hint, olen; @@ -3396,7 +3401,7 @@ return -ECONNREFUSED; l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, sizeof(rfc), - (unsigned long) &rfc); + (unsigned long) &rfc, endptr - ptr); } if (result == L2CAP_CONF_SUCCESS) { @@ -3409,7 +3414,7 @@ chan->omtu = mtu; set_bit(CONF_MTU_DONE, &chan->conf_state); } - l2cap_add_conf_opt(&ptr, L2CAP_CONF_MTU, 2, chan->omtu); + l2cap_add_conf_opt(&ptr, L2CAP_CONF_MTU, 2, chan->omtu, endptr - ptr); if (remote_efs) { if (chan->local_stype != L2CAP_SERV_NOTRAFIC && @@ -3423,7 +3428,7 @@ l2cap_add_conf_opt(&ptr, L2CAP_CONF_EFS, sizeof(efs), - (unsigned long) &efs); + (unsigned long) &efs, endptr - ptr); } else { /* Send PENDING Conf Rsp */ result = L2CAP_CONF_PENDING; @@ -3456,7 +3461,7 @@ set_bit(CONF_MODE_DONE, &chan->conf_state); l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, - sizeof(rfc), (unsigned long) &rfc); + sizeof(rfc), (unsigned long) &rfc, endptr - ptr); if (test_bit(FLAG_EFS_ENABLE, &chan->flags)) { chan->remote_id = efs.id; @@ -3470,7 +3475,7 @@ le32_to_cpu(efs.sdu_itime); l2cap_add_conf_opt(&ptr, L2CAP_CONF_EFS, sizeof(efs), - (unsigned long) &efs); + (unsigned long) &efs, endptr - ptr); } break; @@ -3484,7 +3489,7 @@ set_bit(CONF_MODE_DONE, &chan->conf_state); l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, sizeof(rfc), - (unsigned long) &rfc); + (unsigned long) &rfc, endptr - ptr); break; @@ -3506,10 +3511,11 @@ } static int l2cap_parse_conf_rsp(struct l2cap_chan *chan, void *rsp, int len, - void *data, u16 *result) + void *data, size_t size, u16 *result) { struct l2cap_conf_req *req = data; void *ptr = req->data; + void *endptr = data + size; int type, olen; unsigned long val; struct l2cap_conf_rfc rfc = { .mode = L2CAP_MODE_BASIC }; @@ -3527,13 +3533,13 @@ chan->imtu = L2CAP_DEFAULT_MIN_MTU; } else chan->imtu = val; - l2cap_add_conf_opt(&ptr, L2CAP_CONF_MTU, 2, chan->imtu); + l2cap_add_conf_opt(&ptr, L2CAP_CONF_MTU, 2, chan->imtu, endptr - ptr); break; case L2CAP_CONF_FLUSH_TO: chan->flush_to = val; l2cap_add_conf_opt(&ptr, L2CAP_CONF_FLUSH_TO, - 2, chan->flush_to); + 2, chan->flush_to, endptr - ptr); break; case L2CAP_CONF_RFC: @@ -3547,13 +3553,13 @@ chan->fcs = 0; l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, - sizeof(rfc), (unsigned long) &rfc); + sizeof(rfc), (unsigned long) &rfc, endptr - ptr); break; case L2CAP_CONF_EWS: chan->ack_win = min_t(u16, val, chan->ack_win); l2cap_add_conf_opt(&ptr, L2CAP_CONF_EWS, 2, - chan->tx_win); + chan->tx_win, endptr - ptr); break; case L2CAP_CONF_EFS: @@ -3566,7 +3572,7 @@ return -ECONNREFUSED; l2cap_add_conf_opt(&ptr, L2CAP_CONF_EFS, sizeof(efs), - (unsigned long) &efs); + (unsigned long) &efs, endptr - ptr); break; case L2CAP_CONF_FCS: @@ -3671,7 +3677,7 @@ return; l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ, - l2cap_build_conf_req(chan, buf), buf); + l2cap_build_conf_req(chan, buf, sizeof(buf)), buf); chan->num_conf_req++; } @@ -3879,7 +3885,7 @@ u8 buf[128]; set_bit(CONF_REQ_SENT, &chan->conf_state); l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ, - l2cap_build_conf_req(chan, buf), buf); + l2cap_build_conf_req(chan, buf, sizeof(buf)), buf); chan->num_conf_req++; } @@ -3957,7 +3963,7 @@ break; l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ, - l2cap_build_conf_req(chan, req), req); + l2cap_build_conf_req(chan, req, sizeof(req)), req); chan->num_conf_req++; break; @@ -4069,7 +4075,7 @@ } /* Complete config. */ - len = l2cap_parse_conf_req(chan, rsp); + len = l2cap_parse_conf_req(chan, rsp, sizeof(rsp)); if (len < 0) { l2cap_send_disconn_req(chan, ECONNRESET); goto unlock; @@ -4103,7 +4109,7 @@ if (!test_and_set_bit(CONF_REQ_SENT, &chan->conf_state)) { u8 buf[64]; l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ, - l2cap_build_conf_req(chan, buf), buf); + l2cap_build_conf_req(chan, buf, sizeof(buf)), buf); chan->num_conf_req++; } @@ -4163,7 +4169,7 @@ char buf[64]; len = l2cap_parse_conf_rsp(chan, rsp->data, len, - buf, &result); + buf, sizeof(buf), &result); if (len < 0) { l2cap_send_disconn_req(chan, ECONNRESET); goto done; @@ -4193,7 +4199,7 @@ /* throw out any old stored conf requests */ result = L2CAP_CONF_SUCCESS; len = l2cap_parse_conf_rsp(chan, rsp->data, len, - req, &result); + req, sizeof(req), &result); if (len < 0) { l2cap_send_disconn_req(chan, ECONNRESET); goto done; @@ -4770,7 +4776,7 @@ set_bit(CONF_REQ_SENT, &chan->conf_state); l2cap_send_cmd(chan->conn, l2cap_get_ident(chan->conn), L2CAP_CONF_REQ, - l2cap_build_conf_req(chan, buf), buf); + l2cap_build_conf_req(chan, buf, sizeof(buf)), buf); chan->num_conf_req++; } } @@ -7442,7 +7448,7 @@ set_bit(CONF_REQ_SENT, &chan->conf_state); l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ, - l2cap_build_conf_req(chan, buf), + l2cap_build_conf_req(chan, buf, sizeof(buf)), buf); chan->num_conf_req++; } only in patch2: unchanged: --- linux-4.4.0.orig/net/core/dev_ioctl.c +++ linux-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-4.4.0.orig/net/dccp/feat.c +++ linux-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-4.4.0.orig/net/ieee802154/6lowpan/reassembly.c +++ linux-4.4.0/net/ieee802154/6lowpan/reassembly.c @@ -580,19 +580,14 @@ { struct netns_ieee802154_lowpan *ieee802154_lowpan = net_ieee802154_lowpan(net); - int res; ieee802154_lowpan->frags.high_thresh = IPV6_FRAG_HIGH_THRESH; ieee802154_lowpan->frags.low_thresh = IPV6_FRAG_LOW_THRESH; ieee802154_lowpan->frags.timeout = IPV6_FRAG_TIMEOUT; - res = inet_frags_init_net(&ieee802154_lowpan->frags); - if (res) - return res; - res = lowpan_frags_ns_sysctl_register(net); - if (res) - inet_frags_uninit_net(&ieee802154_lowpan->frags); - return res; + inet_frags_init_net(&ieee802154_lowpan->frags); + + return lowpan_frags_ns_sysctl_register(net); } static void __net_exit lowpan_frags_exit_net(struct net *net) only in patch2: unchanged: --- linux-4.4.0.orig/net/ipv4/inet_fragment.c +++ linux-4.4.0/net/ipv4/inet_fragment.c @@ -234,10 +234,8 @@ cond_resched(); if (read_seqretry(&f->rnd_seqlock, seq) || - percpu_counter_sum(&nf->mem)) + sum_frag_mem_limit(nf)) goto evict_again; - - percpu_counter_destroy(&nf->mem); } EXPORT_SYMBOL(inet_frags_exit_net); only in patch2: unchanged: --- linux-4.4.0.orig/net/ipv4/syncookies.c +++ linux-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-4.4.0.orig/net/ipv6/netfilter/nf_conntrack_reasm.c +++ linux-4.4.0/net/ipv6/netfilter/nf_conntrack_reasm.c @@ -649,18 +649,12 @@ static int nf_ct_net_init(struct net *net) { - int res; - net->nf_frag.frags.high_thresh = IPV6_FRAG_HIGH_THRESH; net->nf_frag.frags.low_thresh = IPV6_FRAG_LOW_THRESH; net->nf_frag.frags.timeout = IPV6_FRAG_TIMEOUT; - res = inet_frags_init_net(&net->nf_frag.frags); - if (res) - return res; - res = nf_ct_frag6_sysctl_register(net); - if (res) - inet_frags_uninit_net(&net->nf_frag.frags); - return res; + inet_frags_init_net(&net->nf_frag.frags); + + return nf_ct_frag6_sysctl_register(net); } static void nf_ct_net_exit(struct net *net) only in patch2: unchanged: --- linux-4.4.0.orig/net/ipv6/syncookies.c +++ linux-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-4.4.0.orig/net/mac80211/offchannel.c +++ linux-4.4.0/net/mac80211/offchannel.c @@ -469,6 +469,8 @@ struct ieee80211_roc_work *roc, *tmp; LIST_HEAD(tmp_list); + flush_work(&local->hw_roc_start); + mutex_lock(&local->mtx); list_for_each_entry_safe(roc, tmp, &local->roc_list, list) { if (sdata && roc->sdata != sdata) only in patch2: unchanged: --- linux-4.4.0.orig/net/netfilter/nf_conntrack_extend.c +++ linux-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-4.4.0.orig/net/nfc/core.c +++ linux-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-4.4.0.orig/net/nfc/llcp_sock.c +++ linux-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-4.4.0.orig/net/nfc/nci/core.c +++ linux-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-4.4.0.orig/net/nfc/netlink.c +++ linux-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-4.4.0.orig/net/rds/tcp_listen.c +++ linux-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-4.4.0.orig/net/sched/act_ipt.c +++ linux-4.4.0/net/sched/act_ipt.c @@ -34,6 +34,7 @@ { struct xt_tgchk_param par; struct xt_target *target; + struct ipt_entry e = {}; int ret = 0; target = xt_request_find_target(AF_INET, t->u.user.name, @@ -42,8 +43,9 @@ return PTR_ERR(target); t->u.kernel.target = target; + memset(&par, 0, sizeof(par)); par.table = table; - par.entryinfo = NULL; + par.entryinfo = &e; par.target = target; par.targinfo = t->data; par.hook_mask = hook; only in patch2: unchanged: --- linux-4.4.0.orig/net/sched/sch_mq.c +++ linux-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-4.4.0.orig/net/sctp/associola.c +++ linux-4.4.0/net/sctp/associola.c @@ -810,8 +810,7 @@ if (transport->state != SCTP_UNCONFIRMED) transport->state = SCTP_INACTIVE; else { - dst_release(transport->dst); - transport->dst = NULL; + sctp_transport_dst_release(transport); ulp_notify = false; } only in patch2: unchanged: --- linux-4.4.0.orig/net/sctp/outqueue.c +++ linux-4.4.0/net/sctp/outqueue.c @@ -1563,7 +1563,7 @@ if (forward_progress) { if (transport->dst) - dst_confirm(transport->dst); + sctp_transport_dst_confirm(transport); } } only in patch2: unchanged: --- linux-4.4.0.orig/net/sctp/sm_make_chunk.c +++ linux-4.4.0/net/sctp/sm_make_chunk.c @@ -3308,8 +3308,7 @@ local_bh_enable(); list_for_each_entry(transport, &asoc->peer.transport_addr_list, transports) { - dst_release(transport->dst); - transport->dst = NULL; + sctp_transport_dst_release(transport); } break; case SCTP_PARAM_DEL_IP: @@ -3323,8 +3322,7 @@ local_bh_enable(); list_for_each_entry(transport, &asoc->peer.transport_addr_list, transports) { - dst_release(transport->dst); - transport->dst = NULL; + sctp_transport_dst_release(transport); } break; default: only in patch2: unchanged: --- linux-4.4.0.orig/net/sctp/sm_sideeffect.c +++ linux-4.4.0/net/sctp/sm_sideeffect.c @@ -731,7 +731,7 @@ * forward progress. */ if (t->dst) - dst_confirm(t->dst); + sctp_transport_dst_confirm(t); /* The receiver of the HEARTBEAT ACK should also perform an * RTT measurement for that destination transport address only in patch2: unchanged: --- linux-4.4.0.orig/net/sctp/transport.c +++ linux-4.4.0/net/sctp/transport.c @@ -222,7 +222,7 @@ { /* If we don't have a fresh route, look one up */ if (!transport->dst || transport->dst->obsolete) { - dst_release(transport->dst); + sctp_transport_dst_release(transport); transport->af_specific->get_dst(transport, &transport->saddr, &transport->fl, sk); } @@ -654,3 +654,17 @@ sctp_transport_hold(t); } } + +/* Drop dst */ +void sctp_transport_dst_release(struct sctp_transport *t) +{ + dst_release(t->dst); + t->dst = NULL; + t->dst_pending_confirm = 0; +} + +/* Schedule neighbour confirm */ +void sctp_transport_dst_confirm(struct sctp_transport *t) +{ + t->dst_pending_confirm = 1; +} only in patch2: unchanged: --- linux-4.4.0.orig/net/wireless/util.c +++ linux-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-4.4.0.orig/scripts/checkpatch.pl +++ linux-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-4.4.0.orig/security/keys/encrypted-keys/encrypted.c +++ linux-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-4.4.0.orig/security/keys/internal.h +++ linux-4.4.0/security/keys/internal.h @@ -136,7 +136,7 @@ extern key_ref_t search_my_process_keyrings(struct keyring_search_context *ctx); extern key_ref_t search_process_keyrings(struct keyring_search_context *ctx); -extern struct key *find_keyring_by_name(const char *name, bool skip_perm_check); +extern struct key *find_keyring_by_name(const char *name, bool uid_keyring); extern int install_user_keyrings(void); extern int install_thread_keyring_to_cred(struct cred *); only in patch2: unchanged: --- linux-4.4.0.orig/security/keys/keyring.c +++ linux-4.4.0/security/keys/keyring.c @@ -416,7 +416,7 @@ } struct keyring_read_iterator_context { - size_t qty; + size_t buflen; size_t count; key_serial_t __user *buffer; }; @@ -428,9 +428,9 @@ int ret; kenter("{%s,%d},,{%zu/%zu}", - key->type->name, key->serial, ctx->count, ctx->qty); + key->type->name, key->serial, ctx->count, ctx->buflen); - if (ctx->count >= ctx->qty) + if (ctx->count >= ctx->buflen) return 1; ret = put_user(key->serial, ctx->buffer); @@ -465,16 +465,12 @@ return 0; /* Calculate how much data we could return */ - ctx.qty = nr_keys * sizeof(key_serial_t); - if (!buffer || !buflen) - return ctx.qty; - - if (buflen > ctx.qty) - ctx.qty = buflen; + return nr_keys * sizeof(key_serial_t); /* Copy the IDs of the subscribed keys into the buffer */ ctx.buffer = (key_serial_t __user *)buffer; + ctx.buflen = buflen; ctx.count = 0; ret = assoc_array_iterate(&keyring->keys, keyring_read_iterator, &ctx); if (ret < 0) { @@ -965,15 +961,15 @@ /* * Find a keyring with the specified name. * - * All named keyrings in the current user namespace are searched, provided they - * grant Search permission directly to the caller (unless this check is - * skipped). Keyrings whose usage points have reached zero or who have been - * revoked are skipped. + * Only keyrings that have nonzero refcount, are not revoked, and are owned by a + * user in the current user namespace are considered. If @uid_keyring is %true, + * the keyring additionally must have been allocated as a user or user session + * keyring; otherwise, it must grant Search permission directly to the caller. * * Returns a pointer to the keyring with the keyring's refcount having being * incremented on success. -ENOKEY is returned if a key could not be found. */ -struct key *find_keyring_by_name(const char *name, bool skip_perm_check) +struct key *find_keyring_by_name(const char *name, bool uid_keyring) { struct key *keyring; int bucket; @@ -1001,10 +997,15 @@ if (strcmp(keyring->description, name) != 0) continue; - if (!skip_perm_check && - key_permission(make_key_ref(keyring, 0), - KEY_NEED_SEARCH) < 0) - continue; + if (uid_keyring) { + if (!test_bit(KEY_FLAG_UID_KEYRING, + &keyring->flags)) + continue; + } else { + if (key_permission(make_key_ref(keyring, 0), + KEY_NEED_SEARCH) < 0) + continue; + } /* we've got a match but we might end up racing with * key_cleanup() if the keyring is currently 'dead' only in patch2: unchanged: --- linux-4.4.0.orig/sound/core/seq/seq_queue.h +++ linux-4.4.0/sound/core/seq/seq_queue.h @@ -71,7 +71,7 @@ /* create new queue (constructor) */ -int snd_seq_queue_alloc(int client, int locked, unsigned int flags); +struct snd_seq_queue *snd_seq_queue_alloc(int client, int locked, unsigned int flags); /* delete queue (destructor) */ int snd_seq_queue_delete(int client, int queueid); only in patch2: unchanged: --- linux-4.4.0.orig/sound/isa/msnd/msnd_midi.c +++ linux-4.4.0/sound/isa/msnd/msnd_midi.c @@ -120,24 +120,24 @@ unsigned long flags; struct snd_msndmidi *mpu = mpuv; void *pwMIDQData = mpu->dev->mappedbase + MIDQ_DATA_BUFF; + u16 head, tail, size; spin_lock_irqsave(&mpu->input_lock, flags); - while (readw(mpu->dev->MIDQ + JQS_wTail) != - readw(mpu->dev->MIDQ + JQS_wHead)) { - u16 wTmp, val; - val = readw(pwMIDQData + 2 * readw(mpu->dev->MIDQ + JQS_wHead)); + head = readw(mpu->dev->MIDQ + JQS_wHead); + tail = readw(mpu->dev->MIDQ + JQS_wTail); + size = readw(mpu->dev->MIDQ + JQS_wSize); + if (head > size || tail > size) + goto out; + while (head != tail) { + unsigned char val = readw(pwMIDQData + 2 * head); - if (test_bit(MSNDMIDI_MODE_BIT_INPUT_TRIGGER, - &mpu->mode)) - snd_rawmidi_receive(mpu->substream_input, - (unsigned char *)&val, 1); - - wTmp = readw(mpu->dev->MIDQ + JQS_wHead) + 1; - if (wTmp > readw(mpu->dev->MIDQ + JQS_wSize)) - writew(0, mpu->dev->MIDQ + JQS_wHead); - else - writew(wTmp, mpu->dev->MIDQ + JQS_wHead); + if (test_bit(MSNDMIDI_MODE_BIT_INPUT_TRIGGER, &mpu->mode)) + snd_rawmidi_receive(mpu->substream_input, &val, 1); + if (++head > size) + head = 0; + writew(head, mpu->dev->MIDQ + JQS_wHead); } + out: spin_unlock_irqrestore(&mpu->input_lock, flags); } EXPORT_SYMBOL(snd_msndmidi_input_read); only in patch2: unchanged: --- linux-4.4.0.orig/sound/isa/msnd/msnd_pinnacle.c +++ linux-4.4.0/sound/isa/msnd/msnd_pinnacle.c @@ -170,23 +170,24 @@ { struct snd_msnd *chip = dev_id; void *pwDSPQData = chip->mappedbase + DSPQ_DATA_BUFF; + u16 head, tail, size; /* Send ack to DSP */ /* inb(chip->io + HP_RXL); */ /* Evaluate queued DSP messages */ - while (readw(chip->DSPQ + JQS_wTail) != readw(chip->DSPQ + JQS_wHead)) { - u16 wTmp; - - snd_msnd_eval_dsp_msg(chip, - readw(pwDSPQData + 2 * readw(chip->DSPQ + JQS_wHead))); - - wTmp = readw(chip->DSPQ + JQS_wHead) + 1; - if (wTmp > readw(chip->DSPQ + JQS_wSize)) - writew(0, chip->DSPQ + JQS_wHead); - else - writew(wTmp, chip->DSPQ + JQS_wHead); + head = readw(chip->DSPQ + JQS_wHead); + tail = readw(chip->DSPQ + JQS_wTail); + size = readw(chip->DSPQ + JQS_wSize); + if (head > size || tail > size) + goto out; + while (head != tail) { + snd_msnd_eval_dsp_msg(chip, readw(pwDSPQData + 2 * head)); + if (++head > size) + head = 0; + writew(head, chip->DSPQ + JQS_wHead); } + out: /* Send ack to DSP */ inb(chip->io + HP_RXL); return IRQ_HANDLED; only in patch2: unchanged: --- linux-4.4.0.orig/sound/soc/codecs/nau8825.c +++ linux-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-4.4.0.orig/sound/soc/codecs/nau8825.h +++ linux-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-4.4.0.orig/sound/soc/codecs/tlv320aic3x.c +++ linux-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-4.4.0.orig/sound/soc/generic/simple-card.c +++ linux-4.4.0/sound/soc/generic/simple-card.c @@ -100,7 +100,7 @@ if (ret && ret != -ENOTSUPP) goto err; } - + return 0; err: return ret; } only in patch2: unchanged: --- linux-4.4.0.orig/sound/soc/sh/rcar/adg.c +++ linux-4.4.0/sound/soc/sh/rcar/adg.c @@ -437,7 +437,7 @@ struct device *dev = rsnd_priv_to_dev(priv); struct device_node *np = dev->of_node; u32 ckr, rbgx, rbga, rbgb; - u32 rate, req_rate, div; + u32 rate, req_rate = 0, div; uint32_t count = 0; unsigned long req_48kHz_rate, req_441kHz_rate; int i; only in patch2: unchanged: --- linux-4.4.0.orig/sound/soc/sh/rcar/core.c +++ linux-4.4.0/sound/soc/sh/rcar/core.c @@ -192,19 +192,16 @@ struct rsnd_priv *priv = rsnd_mod_to_priv(mod); struct rsnd_dai_stream *io; struct rsnd_dai *rdai; - int i, j; - - for_each_rsnd_dai(rdai, priv, j) { - - for (i = 0; i < RSND_MOD_MAX; i++) { - io = &rdai->playback; - if (mod == io->mod[i]) - callback(mod, io); + int i; - io = &rdai->capture; - if (mod == io->mod[i]) - callback(mod, io); - } + for_each_rsnd_dai(rdai, priv, i) { + io = &rdai->playback; + if (mod == io->mod[mod->type]) + callback(mod, io); + + io = &rdai->capture; + if (mod == io->mod[mod->type]) + callback(mod, io); } } @@ -1019,7 +1016,7 @@ } } - if (change) + if (change && cfg->update) cfg->update(cfg->io, mod); return change; only in patch2: unchanged: --- linux-4.4.0.orig/sound/soc/sh/rcar/src.c +++ linux-4.4.0/sound/soc/sh/rcar/src.c @@ -691,13 +691,27 @@ { rsnd_src_irq_disable_gen2(mod); - rsnd_mod_write(mod, SRC_CTRL, 0); + /* + * stop SRC output only + * see rsnd_src_quit_gen2 + */ + rsnd_mod_write(mod, SRC_CTRL, 0x01); rsnd_src_error_record_gen2(mod); return rsnd_src_stop(mod); } +static int rsnd_src_quit_gen2(struct rsnd_mod *mod, + struct rsnd_dai_stream *io, + struct rsnd_priv *priv) +{ + /* stop both out/in */ + rsnd_mod_write(mod, SRC_CTRL, 0); + + return 0; +} + static void __rsnd_src_interrupt_gen2(struct rsnd_mod *mod, struct rsnd_dai_stream *io) { @@ -971,7 +985,7 @@ .probe = rsnd_src_probe_gen2, .remove = rsnd_src_remove_gen2, .init = rsnd_src_init_gen2, - .quit = rsnd_src_quit, + .quit = rsnd_src_quit_gen2, .start = rsnd_src_start_gen2, .stop = rsnd_src_stop_gen2, .hw_params = rsnd_src_hw_params, only in patch2: unchanged: --- linux-4.4.0.orig/sound/soc/sh/rcar/ssi.c +++ linux-4.4.0/sound/soc/sh/rcar/ssi.c @@ -39,6 +39,7 @@ #define SCKP (1 << 13) /* Serial Bit Clock Polarity */ #define SWSP (1 << 12) /* Serial WS Polarity */ #define SDTA (1 << 10) /* Serial Data Alignment */ +#define PDTA (1 << 9) /* Parallel Data Alignment */ #define DEL (1 << 8) /* Serial Data Delay */ #define CKDV(v) (v << 4) /* Serial Clock Division Ratio */ #define TRMD (1 << 1) /* Transmit/Receive Mode Select */ @@ -286,7 +287,7 @@ struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io); u32 cr; - cr = FORCE; + cr = FORCE | PDTA; /* * always use 32bit system word for easy clock calculation. only in patch2: unchanged: --- linux-4.4.0.orig/sound/usb/mixer.h +++ linux-4.4.0/sound/usb/mixer.h @@ -64,6 +64,7 @@ int cached; int cache_val[MAX_CHANNELS]; u8 initialized; + u8 min_mute; void *private_data; }; only in patch2: unchanged: --- linux-4.4.0.orig/tools/include/linux/compiler.h +++ linux-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-4.4.0.orig/tools/lib/lockdep/uinclude/linux/lockdep.h +++ linux-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-4.4.0.orig/tools/lib/traceevent/plugin_sched_switch.c +++ linux-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-4.4.0.orig/tools/perf/arch/x86/tests/intel-cqm.c +++ linux-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-4.4.0.orig/tools/perf/arch/x86/util/dwarf-regs.c +++ linux-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-4.4.0.orig/tools/perf/bench/numa.c +++ linux-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-4.4.0.orig/tools/perf/builtin-script.c +++ linux-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-4.4.0.orig/tools/perf/builtin-top.c +++ linux-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-4.4.0.orig/tools/perf/builtin-trace.c +++ linux-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-4.4.0.orig/tools/perf/tests/parse-events.c +++ linux-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-4.4.0.orig/tools/perf/ui/browser.c +++ linux-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-4.4.0.orig/tools/perf/ui/browsers/annotate.c +++ linux-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-4.4.0.orig/tools/perf/util/intel-pt-decoder/intel-pt-pkt-decoder.c +++ linux-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-4.4.0.orig/tools/perf/util/scripting-engines/Build +++ linux-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-4.4.0.orig/tools/perf/util/strfilter.c +++ linux-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-4.4.0.orig/tools/perf/util/string.c +++ linux-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-4.4.0.orig/tools/perf/util/thread.c +++ linux-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-4.4.0.orig/tools/perf/util/thread_map.c +++ linux-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-4.4.0.orig/tools/testing/selftests/capabilities/test_execve.c +++ linux-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-4.4.0.orig/tools/testing/selftests/memory-hotplug/mem-on-off-test.sh +++ linux-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-4.4.0.orig/tools/testing/selftests/seccomp/seccomp_bpf.c +++ linux-4.4.0/tools/testing/selftests/seccomp/seccomp_bpf.c @@ -74,7 +74,12 @@ #define SECCOMP_RET_ERRNO 0x00050000U /* returns an errno */ #define SECCOMP_RET_TRACE 0x7ff00000U /* pass to a tracer or disallow */ #define SECCOMP_RET_ALLOW 0x7fff0000U /* allow */ +#endif +#ifndef SECCOMP_RET_LOG +#define SECCOMP_RET_LOG 0x7ffc0000U /* allow after logging */ +#endif +#ifndef SECCOMP_RET_ACTION /* Masks for the return value sections. */ #define SECCOMP_RET_ACTION 0x7fff0000U #define SECCOMP_RET_DATA 0x0000ffffU @@ -342,6 +347,28 @@ EXPECT_EQ(EINVAL, errno); } +TEST(log_all) +{ + struct sock_filter filter[] = { + BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_LOG), + }; + struct sock_fprog prog = { + .len = (unsigned short)ARRAY_SIZE(filter), + .filter = filter, + }; + long ret; + pid_t parent = getppid(); + + ret = prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0); + ASSERT_EQ(0, ret); + + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &prog); + ASSERT_EQ(0, ret); + + /* getppid() should succeed and be logged (no check for logging) */ + EXPECT_EQ(parent, syscall(__NR_getppid)); +} + TEST_SIGNAL(unknown_ret_is_kill_inside, SIGSYS) { struct sock_filter filter[] = { @@ -735,6 +762,7 @@ FIXTURE_DATA(precedence) { struct sock_fprog allow; + struct sock_fprog log; struct sock_fprog trace; struct sock_fprog error; struct sock_fprog trap; @@ -746,6 +774,13 @@ struct sock_filter allow_insns[] = { BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_ALLOW), }; + struct sock_filter log_insns[] = { + BPF_STMT(BPF_LD|BPF_W|BPF_ABS, + offsetof(struct seccomp_data, nr)), + BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, __NR_getpid, 1, 0), + BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_ALLOW), + BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_LOG), + }; struct sock_filter trace_insns[] = { BPF_STMT(BPF_LD|BPF_W|BPF_ABS, offsetof(struct seccomp_data, nr)), @@ -782,6 +817,7 @@ memcpy(self->_x.filter, &_x##_insns, sizeof(_x##_insns)); \ self->_x.len = (unsigned short)ARRAY_SIZE(_x##_insns) FILTER_ALLOC(allow); + FILTER_ALLOC(log); FILTER_ALLOC(trace); FILTER_ALLOC(error); FILTER_ALLOC(trap); @@ -792,6 +828,7 @@ { #define FILTER_FREE(_x) if (self->_x.filter) free(self->_x.filter) FILTER_FREE(allow); + FILTER_FREE(log); FILTER_FREE(trace); FILTER_FREE(error); FILTER_FREE(trap); @@ -809,6 +846,8 @@ ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow); ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->error); @@ -833,6 +872,8 @@ ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow); ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->error); @@ -864,6 +905,8 @@ ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->error); ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trap); @@ -885,6 +928,8 @@ ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow); ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->error); @@ -910,6 +955,8 @@ ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trap); ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->error); @@ -931,6 +978,8 @@ ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow); ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->error); @@ -949,6 +998,8 @@ ret = prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0); ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->error); ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); @@ -971,6 +1022,8 @@ ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow); ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); ASSERT_EQ(0, ret); /* Should work just fine. */ @@ -992,12 +1045,54 @@ ASSERT_EQ(0, ret); ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow); ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); /* Should work just fine. */ EXPECT_EQ(parent, syscall(__NR_getppid)); /* No ptracer */ EXPECT_EQ(-1, syscall(__NR_getpid)); } +TEST_F(precedence, log_is_fifth) +{ + pid_t mypid, parent; + long ret; + + mypid = getpid(); + parent = getppid(); + ret = prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0); + ASSERT_EQ(0, ret); + + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow); + ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); + /* Should work just fine. */ + EXPECT_EQ(parent, syscall(__NR_getppid)); + /* Should also work just fine */ + EXPECT_EQ(mypid, syscall(__NR_getpid)); +} + +TEST_F(precedence, log_is_fifth_in_any_order) +{ + pid_t mypid, parent; + long ret; + + mypid = getpid(); + parent = getppid(); + ret = prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0); + ASSERT_EQ(0, ret); + + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->log); + ASSERT_EQ(0, ret); + ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow); + ASSERT_EQ(0, ret); + /* Should work just fine. */ + EXPECT_EQ(parent, syscall(__NR_getppid)); + /* Should also work just fine */ + EXPECT_EQ(mypid, syscall(__NR_getpid)); +} + #ifndef PTRACE_O_TRACESECCOMP #define PTRACE_O_TRACESECCOMP 0x00000080 #endif @@ -1476,10 +1571,18 @@ #define SECCOMP_SET_MODE_FILTER 1 #endif +#ifndef SECCOMP_GET_ACTION_AVAIL +#define SECCOMP_GET_ACTION_AVAIL 2 +#endif + #ifndef SECCOMP_FLAG_FILTER_TSYNC #define SECCOMP_FLAG_FILTER_TSYNC 1 #endif +#ifndef SECCOMP_FILTER_FLAG_LOG +#define SECCOMP_FILTER_FLAG_LOG 2 +#endif + #ifndef seccomp int seccomp(unsigned int op, unsigned int flags, struct sock_fprog *filter) { @@ -1576,6 +1679,67 @@ } } +/* + * Test detection of known and unknown filter flags. Userspace needs to be able + * to check if a filter flag is supported by the current kernel and a good way + * of doing that is by attempting to enter filter mode, with the flag bit in + * question set, and a NULL pointer for the _args_ parameter. EFAULT indicates + * that the flag is valid and EINVAL indicates that the flag is invalid. + */ +TEST(detect_seccomp_filter_flags) +{ + unsigned int flags[] = { SECCOMP_FILTER_FLAG_TSYNC, + SECCOMP_FILTER_FLAG_LOG }; + unsigned int flag, all_flags; + int i; + long ret; + + /* Test detection of known-good filter flags */ + for (i = 0, all_flags = 0; i < ARRAY_SIZE(flags); i++) { + flag = flags[i]; + ret = seccomp(SECCOMP_SET_MODE_FILTER, flag, NULL); + ASSERT_NE(ENOSYS, errno) { + TH_LOG("Kernel does not support seccomp syscall!"); + } + EXPECT_EQ(-1, ret); + EXPECT_EQ(EFAULT, errno) { + TH_LOG("Failed to detect that a known-good filter flag (0x%X) is supported!", + flag); + } + + all_flags |= flag; + } + + /* Test detection of all known-good filter flags */ + ret = seccomp(SECCOMP_SET_MODE_FILTER, all_flags, NULL); + EXPECT_EQ(-1, ret); + EXPECT_EQ(EFAULT, errno) { + TH_LOG("Failed to detect that all known-good filter flags (0x%X) are supported!", + all_flags); + } + + /* Test detection of an unknown filter flag */ + flag = -1; + ret = seccomp(SECCOMP_SET_MODE_FILTER, flag, NULL); + EXPECT_EQ(-1, ret); + EXPECT_EQ(EINVAL, errno) { + TH_LOG("Failed to detect that an unknown filter flag (0x%X) is unsupported!", + flag); + } + + /* + * Test detection of an unknown filter flag that may simply need to be + * added to this test + */ + flag = flags[ARRAY_SIZE(flags) - 1] << 1; + ret = seccomp(SECCOMP_SET_MODE_FILTER, flag, NULL); + EXPECT_EQ(-1, ret); + EXPECT_EQ(EINVAL, errno) { + TH_LOG("Failed to detect that an unknown filter flag (0x%X) is unsupported! Does a new flag need to be added to this test?", + flag); + } +} + TEST(TSYNC_first) { struct sock_filter filter[] = { @@ -2197,6 +2361,99 @@ _metadata->passed = 0; } +TEST_SIGNAL(filter_flag_log, SIGSYS) +{ + struct sock_filter allow_filter[] = { + BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_ALLOW), + }; + struct sock_filter kill_filter[] = { + BPF_STMT(BPF_LD|BPF_W|BPF_ABS, + offsetof(struct seccomp_data, nr)), + BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, __NR_getpid, 0, 1), + BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL), + BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_ALLOW), + }; + struct sock_fprog allow_prog = { + .len = (unsigned short)ARRAY_SIZE(allow_filter), + .filter = allow_filter, + }; + struct sock_fprog kill_prog = { + .len = (unsigned short)ARRAY_SIZE(kill_filter), + .filter = kill_filter, + }; + long ret; + pid_t parent = getppid(); + + ret = prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0); + ASSERT_EQ(0, ret); + + /* Verify that the FILTER_FLAG_LOG flag isn't accepted in strict mode */ + ret = seccomp(SECCOMP_SET_MODE_STRICT, SECCOMP_FILTER_FLAG_LOG, + &allow_prog); + ASSERT_NE(ENOSYS, errno) { + TH_LOG("Kernel does not support seccomp syscall!"); + } + EXPECT_NE(0, ret) { + TH_LOG("Kernel accepted FILTER_FLAG_LOG flag in strict mode!"); + } + EXPECT_EQ(EINVAL, errno) { + TH_LOG("Kernel returned unexpected errno for FILTER_FLAG_LOG flag in strict mode!"); + } + + /* Verify that a simple, permissive filter can be added with no flags */ + ret = seccomp(SECCOMP_SET_MODE_FILTER, 0, &allow_prog); + EXPECT_EQ(0, ret); + + /* See if the same filter can be added with the FILTER_FLAG_LOG flag */ + ret = seccomp(SECCOMP_SET_MODE_FILTER, SECCOMP_FILTER_FLAG_LOG, + &allow_prog); + ASSERT_NE(EINVAL, errno) { + TH_LOG("Kernel does not support the FILTER_FLAG_LOG flag!"); + } + EXPECT_EQ(0, ret); + + /* Ensure that the kill filter works with the FILTER_FLAG_LOG flag */ + ret = seccomp(SECCOMP_SET_MODE_FILTER, SECCOMP_FILTER_FLAG_LOG, + &kill_prog); + EXPECT_EQ(0, ret); + + EXPECT_EQ(parent, syscall(__NR_getppid)); + /* getpid() should never return. */ + EXPECT_EQ(0, syscall(__NR_getpid)); +} + +TEST(get_action_avail) +{ + __u32 actions[] = { SECCOMP_RET_KILL, SECCOMP_RET_TRAP, + SECCOMP_RET_ERRNO, SECCOMP_RET_TRACE, + SECCOMP_RET_LOG, SECCOMP_RET_ALLOW }; + __u32 unknown_action = 0x10000000U; + int i; + long ret; + + ret = seccomp(SECCOMP_GET_ACTION_AVAIL, 0, &actions[0]); + ASSERT_NE(ENOSYS, errno) { + TH_LOG("Kernel does not support seccomp syscall!"); + } + ASSERT_NE(EINVAL, errno) { + TH_LOG("Kernel does not support SECCOMP_GET_ACTION_AVAIL operation!"); + } + EXPECT_EQ(ret, 0); + + for (i = 0; i < ARRAY_SIZE(actions); i++) { + ret = seccomp(SECCOMP_GET_ACTION_AVAIL, 0, &actions[i]); + EXPECT_EQ(ret, 0) { + TH_LOG("Expected action (0x%X) not available!", + actions[i]); + } + } + + /* Check that an unknown action is handled properly (EOPNOTSUPP) */ + ret = seccomp(SECCOMP_GET_ACTION_AVAIL, 0, &unknown_action); + EXPECT_EQ(ret, -1); + EXPECT_EQ(errno, EOPNOTSUPP); +} + /* * TODO: * - add microbenchmarks @@ -2205,6 +2462,8 @@ * - endianness checking when appropriate * - 64-bit arg prodding * - arch value testing (x86 modes especially) + * - verify that FILTER_FLAG_LOG filters generate log messages + * - verify that RET_LOG generates log messages * - ... */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/bnxt/COPYING +++ linux-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-4.4.0.orig/ubuntu/bnxt/ChangeLog +++ linux-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-4.4.0.orig/ubuntu/bnxt/Kconfig +++ linux-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-4.4.0.orig/ubuntu/bnxt/Makefile +++ linux-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-4.4.0.orig/ubuntu/bnxt/README.TXT +++ linux-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-4.4.0.orig/ubuntu/bnxt/RELEASE.TXT +++ linux-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-4.4.0.orig/ubuntu/bnxt/bnxt.c +++ linux-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-4.4.0.orig/ubuntu/bnxt/bnxt.h +++ linux-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-4.4.0.orig/ubuntu/bnxt/bnxt_compat.h +++ linux-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-4.4.0.orig/ubuntu/bnxt/bnxt_dcb.c +++ linux-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-4.4.0.orig/ubuntu/bnxt/bnxt_dcb.h +++ linux-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-4.4.0.orig/ubuntu/bnxt/bnxt_ethtool.c +++ linux-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-4.4.0.orig/ubuntu/bnxt/bnxt_ethtool.h +++ linux-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-4.4.0.orig/ubuntu/bnxt/bnxt_fw_hdr.h +++ linux-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-4.4.0.orig/ubuntu/bnxt/bnxt_hsi.h +++ linux-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-4.4.0.orig/ubuntu/bnxt/bnxt_nvm_defs.h +++ linux-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-4.4.0.orig/ubuntu/bnxt/bnxt_ptp.c +++ linux-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-4.4.0.orig/ubuntu/bnxt/bnxt_ptp.h +++ linux-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-4.4.0.orig/ubuntu/bnxt/bnxt_sriov.c +++ linux-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-4.4.0.orig/ubuntu/bnxt/bnxt_sriov.h +++ linux-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-4.4.0.orig/ubuntu/bnxt/bnxt_ulp.c +++ linux-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-4.4.0.orig/ubuntu/bnxt/bnxt_ulp.h +++ linux-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-4.4.0.orig/ubuntu/bnxt/bnxt_xdp.c +++ linux-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-4.4.0.orig/ubuntu/bnxt/bnxt_xdp.h +++ linux-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-4.4.0.orig/ubuntu/opennsl/Kconfig +++ linux-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-4.4.0.orig/ubuntu/opennsl/Makefile +++ linux-4.4.0/ubuntu/opennsl/Makefile @@ -0,0 +1,43 @@ +# +# Makefile for OpenNSL drivers +# + +SDK=OpenNSL/sdk-6.5.10-gpl-modules +OP=ubuntu/opennsl/$(SDK) + +ccflags-y += \ + -I$(OP)/include \ + -I$(OP)/systems/bde/linux/include \ + -I$(OP)/systems/bde/shared/include \ + -I$(OP)/systems/linux/kernel/modules/include \ + -DLONGS_ARE_64BITS \ + -DPTRS_ARE_64BITS \ + -DSAL_SPL_LOCK_ON_IRQ \ + -DSYS_BE_PIO=0 -DSYS_BE_PACKET=0 -DSYS_BE_OTHER=0 \ + -DLE_HOST=1 -DSAL_BDE_DMA_MEM_DEFAULT=16 + +obj-$(CONFIG_OPENNSL_BCM_KNET) += linux-bcm-knet.o + +linux-bcm-knet-objs := \ + $(SDK)/systems/linux/kernel/modules/bcm-knet/bcm-knet.o \ + $(SDK)/systems/linux/kernel/modules/shared/gmodule.o \ + +obj-$(CONFIG_OPENNSL_KERNEL_BDE) += linux-kernel-bde.o + +linux-kernel-bde-objs := \ + $(SDK)/systems/bde/linux/kernel/linux_dma.o \ + $(SDK)/systems/bde/linux/kernel/linux-kernel-bde.o \ + $(SDK)/systems/bde/linux/kernel/linux_shbde.o \ + $(SDK)/systems/bde/linux/shared/mpool.o \ + $(SDK)/systems/bde/shared/shbde_iproc.o \ + $(SDK)/systems/bde/shared/shbde_mdio.o \ + $(SDK)/systems/bde/shared/shbde_pci.o \ + $(SDK)/systems/linux/kernel/modules/shared/gmodule.o \ + +obj-$(CONFIG_OPENNSL_USER_BDE) += linux-user-bde.o + +linux-user-bde-objs := \ + $(SDK)/systems/bde/linux/user/kernel/linux-user-bde.o \ + $(SDK)/systems/linux/kernel/modules/shared/ksal.o \ + $(SDK)/systems/linux/kernel/modules/shared/gmodule.o \ + only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/LEGAL_TERMS +++ linux-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-4.4.0.orig/ubuntu/opennsl/OpenNSL/Legal/LICENSE-Apache2 +++ linux-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-4.4.0.orig/ubuntu/opennsl/OpenNSL/README.md +++ linux-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-4.4.0.orig/ubuntu/opennsl/OpenNSL/RELEASE +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/RELEASE @@ -0,0 +1 @@ +opennsl-3.1.0.17 only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/sal/commdefs.h +++ linux-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-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/sal/compiler.h +++ linux-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-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/sal/driver.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/include/sal/driver.h @@ -0,0 +1,96 @@ +/********************************************************************* +* +* (C) Copyright Broadcom Corporation 2013-2017 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +* +********************************************************************** +* +* \file driver.h +* +* \brief This file contains utility functions called externally +* +**********************************************************************/ +#ifndef DRIVER_H +#define DRIVER_H + +#define OPENNSL_F_FAST_BOOT 0x00000001 /* Fast boot mode */ + +typedef struct opennsl_config_s +{ + char *cfg_fname; /* Configuration file name along with the path */ + unsigned int flags; /* OpenNSL boot up flags */ + char *wb_fname; /* File to store warmboot configuration * + * along with the path */ + char *rmcfg_fname; /* RM config file name along with the path */ + char *cfg_post_fname; /* Post init configuration file name * + * along with the path */ + unsigned int opennsl_flags; /* OpenNSL flags */ +} opennsl_init_t; + +/*****************************************************************//** +* \brief Function to initialize the switch. +* +* \param init [IN] pointer to structure that contains path to +* platform customization config file, boot flags. +* +* \return OPENNSL_E_XXX OpenNSL API return code +********************************************************************/ +extern int opennsl_driver_init(opennsl_init_t *init); + +/*****************************************************************//** +* \brief Function to free up the resources and exit the driver +* +* \return OPENNSL_E_XXX OpenNSL API return code +********************************************************************/ +extern int opennsl_driver_exit(); + +/**************************************************************************//** + * \brief To get platform boot flags + * + * \return unsigned int Boot flags + *****************************************************************************/ +extern unsigned int opennsl_driver_boot_flags_get(void); + +#ifdef INCLUDE_DIAG_SHELL +/*****************************************************************//** +* \brief Bringup diagnostic shell prompt and process the input commands. +* +* \return OPENNSL_E_XXX OpenNSL API return code +********************************************************************/ +extern int opennsl_driver_shell(); + +/*****************************************************************//** +* \brief Process diagnostic shell command. +* +* \param commandBuf [IN] pointer to hold the diagnostic shell command +* +* \return OPENNSL_E_XXX OpenNSL API return code +********************************************************************/ +extern int opennsl_driver_process_command(char *commandBuf); +#endif + +/*****************************************************************//** +* \brief Get a line from a user with editing +* +* \param prompt [IN] prompt string +* +* \return char* NULL, if the line is empty +* empty string, if the line is blank +* text of the line read, otherwise. +********************************************************************/ +extern char *readline(const char *prompt); + +extern void platform_phy_cleanup(); + +#endif /* DRIVER_H */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/sal/types.h +++ linux-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-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/sal/version.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/include/sal/version.h @@ -0,0 +1,38 @@ +/************************************************************************** +* +* (C) Copyright Broadcom Limited 2013-2017 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +* +**************************************************************************/ + +/*****************************************************************//** + * + *\file version.h + * + *\brief This file contains functions to get the build details + * + ********************************************************************/ +#ifndef _OPENNSL_VERSION_H +#define _OPENNSL_VERSION_H + +#include "sal/commdefs.h" + +/*****************************************************************//** + *\brief To get the OpenNSL version. + * + *\retval char* OpenNSL version + ********************************************************************/ +extern char* opennsl_version_get() LIB_DLL_EXPORTED; +#endif /* _OPENNSL_VERSION_H */ + only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/bitop.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/bitop.h @@ -0,0 +1,148 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2016 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ********************************************************************** + * File: bitop.h + * Details: Bit Array Operations + *********************************************************************/ + +#ifndef _SHR_BITOP_H +#define _SHR_BITOP_H + +#include + +/* Base type for declarations */ +#define SHR_BITDCL uint32 +#define SHR_BITWID 32 + +/* (internal) Number of SHR_BITDCLs needed to contain _max bits */ +#define _SHR_BITDCLSIZE(_max) (((_max) + SHR_BITWID - 1) / SHR_BITWID) + +/* Size for giving to malloc and memset to handle _max bits */ +#define SHR_BITALLOCSIZE(_max) (_SHR_BITDCLSIZE(_max) * sizeof (SHR_BITDCL)) + + +/* (internal) Number of SHR_BITDCLs needed to contain from start bit to start bit + range */ +#define _SHR_BITDCLSIZE_FROM_START_BIT(_start_bit, _range) (_range + _start_bit -1)/SHR_BITWID - _start_bit/SHR_BITWID + 1 + +/* Size of SHR_BITDCLs needed to contain from start bit to start bit + range. + Needed when you want to do autosync */ +#define SHR_BITALLOCSIZE_FROM_START_BIT(_start_bit, _range) (_SHR_BITDCLSIZE_FROM_START_BIT(_start_bit, _range) * sizeof (SHR_BITDCL)) + + + +/* Declare bit array _n of size _max bits */ +#define SHR_BITDCLNAME(_n, _max) SHR_BITDCL _n[_SHR_BITDCLSIZE(_max)] +/* Declare bit array _n of size _max bits, and clear it */ +#define SHR_BIT_DCL_CLR_NAME(_n, _max) SHR_BITDCL _n[_SHR_BITDCLSIZE(_max)] = {0} + +/* (internal) Generic operation macro on bit array _a, with bit _b */ +#define _SHR_BITOP(_a, _b, _op) \ + (((_a)[(_b) / SHR_BITWID]) _op (1U << ((_b) % SHR_BITWID))) + +/* Specific operations */ +#define SHR_BITGET(_a, _b) _SHR_BITOP(_a, _b, &) +#define SHR_BITSET(_a, _b) _SHR_BITOP(_a, _b, |=) +#define SHR_BITCLR(_a, _b) _SHR_BITOP(_a, _b, &= ~) +#define SHR_BITWRITE(_a, _b, _val) ((_val) ? SHR_BITSET(_a, _b) : SHR_BITCLR(_a, _b)) +#define SHR_BIT_ITER(_a, _max, _b) \ + for ((_b) = 0; (_b) < (_max); (_b)++) \ + if ((_a)[(_b) / SHR_BITWID] == 0) \ + (_b) += (SHR_BITWID - 1); \ + else if (SHR_BITGET((_a), (_b))) + + +/* clear _c bits starting from _b in bit array _a */ +extern void shr_bitop_range_clear(SHR_BITDCL *a, CONST int b, CONST int c); +#define SHR_BITCLR_RANGE(_a, _b, _c) \ + (shr_bitop_range_clear(_a, _b, _c)) + +/* set _c bits starting from _b in bit array _a */ +extern void shr_bitop_range_set(SHR_BITDCL *a, CONST int b, CONST int c); +#define SHR_BITSET_RANGE(_a, _b, _c) \ + (shr_bitop_range_set(_a, _b, _c)) + +/* + * Copy _num_bits bits from bit array _src offset _src_offset to bit array _dest offset _dest_offset + * There should be no overlap between source _src and desstination _dest + * _dest[_dest_offset:_dest_offset + _num_bits] = _src[_src_offset:_src_offset + _num_bits] + */ +extern void shr_bitop_range_copy(SHR_BITDCL *a, + CONST int b, + CONST SHR_BITDCL *c, + CONST int d, + CONST int e); +#define SHR_BITCOPY_RANGE(_dest, _dest_offset,_src, _src_offset, _num_bits) \ + (shr_bitop_range_copy(_dest, _dest_offset, _src, _src_offset, _num_bits)) + +/* Result is 0 only if all bits in the range are 0 */ +#define SHR_BITTEST_RANGE(_bits, _first, _bit_count, _result) \ + (_result) = !(shr_bitop_range_null(_bits, _first, _bit_count)) + +extern void shr_bitop_range_and(CONST SHR_BITDCL *bits1, + CONST SHR_BITDCL *bits2, + CONST int first, + CONST int bit_count, + SHR_BITDCL *dest); +extern void shr_bitop_range_or(CONST SHR_BITDCL *bits1, + CONST SHR_BITDCL *bits2, + CONST int first, + CONST int bit_count, + SHR_BITDCL *dest); +extern void shr_bitop_range_xor(CONST SHR_BITDCL *bits1, + CONST SHR_BITDCL *bits2, + CONST int first, + CONST int bit_count, + SHR_BITDCL *dest); +extern void shr_bitop_range_remove(CONST SHR_BITDCL *bits1, + CONST SHR_BITDCL *bits2, + CONST int first, + CONST int bit_count, + SHR_BITDCL *dest); + +#define SHR_BITAND_RANGE(_bits1, _bits2, _first, _bit_count, _dest) \ + (shr_bitop_range_and(_bits1, _bits2, _first, _bit_count, _dest)) + +#define SHR_BITOR_RANGE(_bits1, _bits2, _first, _bit_count, _dest) \ + (shr_bitop_range_or(_bits1, _bits2, _first, _bit_count, _dest)) + +#define SHR_BITXOR_RANGE(_bits1, _bits2, _first, _bit_count, _dest) \ + (shr_bitop_range_xor(_bits1, _bits2, _first, _bit_count, _dest)) + +#define SHR_BITREMOVE_RANGE(_bits1, _bits2, _first, _bit_count, _dest) \ + (shr_bitop_range_remove(_bits1, _bits2, _first, _bit_count, _dest)) + +extern void shr_bitop_range_negate(CONST SHR_BITDCL *bits1, + CONST int first, + CONST int bit_count, + SHR_BITDCL *dest); + +#define SHR_BITNEGATE_RANGE(_bits1, _first, _bit_count, _dest) \ + (shr_bitop_range_negate(_bits1, _first, _bit_count, _dest)) + +extern int shr_bitop_range_null(CONST SHR_BITDCL *a, CONST int first, CONST int bit_count); +extern int shr_bitop_range_eq(CONST SHR_BITDCL *bits1, CONST SHR_BITDCL *bits2, + CONST int first, CONST int range); +extern void shr_bitop_range_count(CONST SHR_BITDCL *bits, CONST int first, + CONST int range, int *count); +#define SHR_BITNULL_RANGE(_bits, _first, _range) \ + (shr_bitop_range_null(_bits, _first, _range)) +#define SHR_BITEQ_RANGE(_bits1, _bits2, _first, _range) \ + (shr_bitop_range_eq(_bits1, _bits2, _first, _range)) +#define SHR_BITCOUNT_RANGE(_bits, _count, _first, _range) \ + shr_bitop_range_count(_bits, _first, _range, &(_count)) + +#endif /* !_SHR_BITOP_H */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/error.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/error.h @@ -0,0 +1,125 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2016 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ********************************************************************** + * File: error.h + * Details: This file defines common error codes to be shared + * between API layers. + * + * Its contents are not used directly by applications; + * it is used only by header files of parent APIs which + * need to define error codes. + *********************************************************************/ + +#ifndef _SHR_ERROR_H +#define _SHR_ERROR_H + +typedef enum { + _SHR_E_NONE = 0, + _SHR_E_INTERNAL = -1, + _SHR_E_MEMORY = -2, + _SHR_E_UNIT = -3, + _SHR_E_PARAM = -4, + _SHR_E_EMPTY = -5, + _SHR_E_FULL = -6, + _SHR_E_NOT_FOUND = -7, + _SHR_E_EXISTS = -8, + _SHR_E_TIMEOUT = -9, + _SHR_E_BUSY = -10, + _SHR_E_FAIL = -11, + _SHR_E_DISABLED = -12, + _SHR_E_BADID = -13, + _SHR_E_RESOURCE = -14, + _SHR_E_CONFIG = -15, + _SHR_E_UNAVAIL = -16, + _SHR_E_INIT = -17, + _SHR_E_PORT = -18, + + _SHR_E_LIMIT = -19 /* Must come last */ +} _shr_error_t; + +#define _SHR_ERRMSG_INIT { \ + "Ok", /* E_NONE */ \ + "Internal error", /* E_INTERNAL */ \ + "Out of memory", /* E_MEMORY */ \ + "Invalid unit", /* E_UNIT */ \ + "Invalid parameter", /* E_PARAM */ \ + "Table empty", /* E_EMPTY */ \ + "Table full", /* E_FULL */ \ + "Entry not found", /* E_NOT_FOUND */ \ + "Entry exists", /* E_EXISTS */ \ + "Operation timed out", /* E_TIMEOUT */ \ + "Operation still running", /* E_BUSY */ \ + "Operation failed", /* E_FAIL */ \ + "Operation disabled", /* E_DISABLED */ \ + "Invalid identifier", /* E_BADID */ \ + "No resources for operation", /* E_RESOURCE */ \ + "Invalid configuration", /* E_CONFIG */ \ + "Feature unavailable", /* E_UNAVAIL */ \ + "Feature not initialized", /* E_INIT */ \ + "Invalid port", /* E_PORT */ \ + "Unknown error" /* E_LIMIT */ \ + } + +extern char *_shr_errmsg[]; + +#define _SHR_ERRMSG(r) \ + _shr_errmsg[(((int)r) <= 0 && ((int)r) > _SHR_E_LIMIT) ? -(r) : -_SHR_E_LIMIT] + +#define _SHR_E_SUCCESS(rv) ((rv) >= 0) +#define _SHR_E_FAILURE(rv) ((rv) < 0) + +#define _SHR_ERROR_TRACE(__errcode__) +#define _SHR_RETURN(__expr__) return (__expr__) + +#define _SHR_E_IF_ERROR_RETURN(op) \ + do { int __rv__; if ((__rv__ = (op)) < 0) { _SHR_ERROR_TRACE(__rv__); return(__rv__); } } while(0) + +#define _SHR_E_IF_ERROR_CLEAN_RETURN(op,exop) \ + do { int __rv__; if ((__rv__ = (op)) < 0) { _SHR_ERROR_TRACE(__rv__); (exop); return(__rv__); } } while(0) + +#define _SHR_E_IF_ERROR_NOT_UNAVAIL_RETURN(op) \ + do { \ + int __rv__; \ + if (((__rv__ = (op)) < 0) && (__rv__ != _SHR_E_UNAVAIL)) { \ + return(__rv__); \ + } \ + } while(0) + + +typedef enum { + _SHR_SWITCH_EVENT_IO_ERROR = 1, + _SHR_SWITCH_EVENT_PARITY_ERROR = 2, + _SHR_SWITCH_EVENT_THREAD_ERROR = 3, + _SHR_SWITCH_EVENT_ACCESS_ERROR = 4, + _SHR_SWITCH_EVENT_ASSERT_ERROR = 5, + _SHR_SWITCH_EVENT_MODID_CHANGE = 6, + _SHR_SWITCH_EVENT_DOS_ATTACK = 7, + _SHR_SWITCH_EVENT_STABLE_FULL = 8, + _SHR_SWITCH_EVENT_STABLE_ERROR = 9, + _SHR_SWITCH_EVENT_UNCONTROLLED_SHUTDOWN = 10, + _SHR_SWITCH_EVENT_WARM_BOOT_DOWNGRADE = 11, + _SHR_SWITCH_EVENT_TUNE_ERROR = 12, + _SHR_SWITCH_EVENT_DEVICE_INTERRUPT = 13, + _SHR_SWITCH_EVENT_ALARM = 14, + _SHR_SWITCH_EVENT_MMU_BST_TRIGGER = 15, + _SHR_SWITCH_EVENT_EPON_ALARM = 16, + _SHR_SWITCH_EVENT_RUNT_DETECT = 17, + _SHR_SWITCH_EVENT_AUTONEG_SPEED_ERROR = 18, + _SHR_SWITCH_EVENT_COUNT /* last, as always */ +} _shr_switch_event_t; + +#endif /* !_SHR_ERROR_H */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/gport.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/gport.h @@ -0,0 +1,354 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2017 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ********************************************************************** + * File: gport.h + * Details: This file defines gport (generic port) parameters. + * + * Its contents are not used directly by applications; + * it is used only by header files of parent APIs which + * need to define error codes. + *********************************************************************/ + +#ifndef _SHR_GPORT_H +#define _SHR_GPORT_H + +/* + * Defines: + * _SHR_GPORT_* + * Purpose: + * GPORT (Generic port) definitions. GPORT can be used to specify + * a {module, port} pair, trunk, and other port types. + */ + +#define _SHR_GPORT_NONE (0) +#define _SHR_GPORT_INVALID (-1) + +#define _SHR_GPORT_TYPE_LOCAL 1 /* Port on local unit */ +#define _SHR_GPORT_TYPE_MODPORT 2 /* Module ID and port */ +#define _SHR_GPORT_TYPE_TRUNK 3 /* Trunk ID */ +#define _SHR_GPORT_TYPE_BLACK_HOLE 4 /* Black hole destination */ +#define _SHR_GPORT_TYPE_LOCAL_CPU 5 /* CPU destination */ +#define _SHR_GPORT_TYPE_UCAST_QUEUE_GROUP 9 /* Queue Group */ +#define _SHR_GPORT_TYPE_MCAST 11 /* Multicast Set */ +#define _SHR_GPORT_TYPE_MCAST_QUEUE_GROUP 12 /* Multicast Queue Group */ +#define _SHR_GPORT_TYPE_SCHEDULER 13 /* Scheduler */ +#define _SHR_GPORT_TYPE_MIRROR 15 /* Mirror destination. */ +#define _SHR_GPORT_TYPE_TUNNEL 19 /* Tunnel ID */ +#define _SHR_GPORT_TYPE_CHILD 20 /* Child port */ +#define _SHR_GPORT_TYPE_EGRESS_GROUP 21 /* Egress group port */ +#define _SHR_GPORT_TYPE_EGRESS_CHILD 22 /* Egress child port */ +#define _SHR_GPORT_TYPE_EGRESS_MODPORT 23 /* Egress Mod and port */ +#define _SHR_GPORT_TYPE_UCAST_SUBSCRIBER_QUEUE_GROUP 24 /* Local Queue Group */ +#define _SHR_GPORT_TYPE_MCAST_SUBSCRIBER_QUEUE_GROUP 25 /* Local Multicast Queue Group */ +#define _SHR_GPORT_TYPE_SYSTEM_PORT 27 /* DPP System-Port */ +#define _SHR_GPORT_TYPE_COSQ 30 /* cosq gport */ +#define _SHR_GPORT_TYPE_PROFILE 40 +#define _SHR_GPORT_TYPE_DESTMOD_QUEUE_GROUP 41 /* DMVOQ gport */ + +/* definitions for cosq core handling */ +#define _SHR_COSQ_GPORT_COMMON_QUEUE_BITS 18 +#define _SHR_COSQ_GPORT_COMMON_QUEUE_MASK ((1 << _SHR_COSQ_GPORT_COMMON_QUEUE_BITS) - 1) +#define _SHR_COSQ_GPORT_COMMON_CORE_BITS 3 +#define _SHR_COSQ_GPORT_COMMON_CORE_SHIFT _SHR_COSQ_GPORT_COMMON_QUEUE_BITS +#define _SHR_COSQ_GPORT_COMMON_CORE_MASK ((1 << _SHR_COSQ_GPORT_COMMON_CORE_BITS) - 1) +#define _SHR_COSQ_GPORT_COMMON_ALL_CORES_VALUE _SHR_COSQ_GPORT_COMMON_CORE_MASK +/* + * Note that only the bits under _SHR_COSQ_GPORT_CORE_MASK are considred + * See, e.g. _SHR_COSQ_GPORT_CORE_GET + */ +#define _SHR_CORE_ALL -17 +#define _SHR_CORE_FIELD2ID(field) ((field) != _SHR_COSQ_GPORT_COMMON_ALL_CORES_VALUE ? field : _SHR_CORE_ALL) +#define _SHR_CORE_ID2FIELD(id) ((id) != _SHR_CORE_ALL ? id : _SHR_COSQ_GPORT_COMMON_ALL_CORES_VALUE) + +#define _SHR_GPORT_TYPE_SHIFT 26 +#define _SHR_GPORT_TYPE_MASK 0x3f +#define _SHR_GPORT_MODID_SHIFT 11 +#define _SHR_GPORT_MODID_MASK 0x7fff +#define _SHR_GPORT_PORT_SHIFT 0 +#define _SHR_GPORT_PORT_MASK 0x7ff +#define _SHR_GPORT_TRUNK_SHIFT 0 +#define _SHR_GPORT_TRUNK_MASK 0x3ffffff +#define _SHR_GPORT_UCAST_QUEUE_GROUP_SHIFT 0 +#define _SHR_GPORT_UCAST_QUEUE_GROUP_MASK 0x3ffffff +#define _SHR_GPORT_UCAST_QUEUE_GROUP_QID_SHIFT 0 +#define _SHR_GPORT_UCAST_QUEUE_GROUP_QID_MASK 0x3fff +#define _SHR_GPORT_UCAST_QUEUE_GROUP_SYSPORTID_SHIFT 14 +#define _SHR_GPORT_UCAST_QUEUE_GROUP_SYSPORTID_MASK 0xfff +#define _SHR_GPORT_MCAST_QUEUE_GROUP_QID_SHIFT 0 +#define _SHR_GPORT_MCAST_QUEUE_GROUP_QID_MASK 0x3fff +#define _SHR_GPORT_MCAST_QUEUE_GROUP_SYSPORTID_SHIFT 14 +#define _SHR_GPORT_MCAST_QUEUE_GROUP_SYSPORTID_MASK 0xfff +#define _SHR_GPORT_SCHEDULER_SHIFT 0 +#define _SHR_GPORT_SCHEDULER_MASK 0x7fffff +#define _SHR_GPORT_SCHEDULER_CORE_SHIFT 23 +#define _SHR_GPORT_SCHEDULER_CORE_MASK _SHR_COSQ_GPORT_COMMON_CORE_MASK +#define _SHR_GPORT_SCHEDULER_NODE_SHIFT 0 +#define _SHR_GPORT_SCHEDULER_NODE_MASK 0xfffff +#define _SHR_GPORT_MIRROR_SHIFT 0 +#define _SHR_GPORT_MIRROR_MASK 0xffff +#define _SHR_GPORT_TUNNEL_SHIFT 0 +#define _SHR_GPORT_TUNNEL_MASK 0x3ffffff +#define _SHR_GPORT_SYSTEM_PORT_SHIFT 0 +#define _SHR_GPORT_SYSTEM_PORT_MASK 0xffffff + +#define _SHR_GPORT_TYPE_TRAP ((_SHR_GPORT_TYPE_LOCAL_CPU << 1) | 1) /* This will mark the CPU type, and + the 1st bit in the value to indicate trap */ +#define _SHR_GPORT_TYPE_TRAP_SHIFT (_SHR_GPORT_TYPE_SHIFT-1) /* 25 */ +#define _SHR_GPORT_TYPE_TRAP_MASK (_SHR_GPORT_TYPE_MASK<<1|1) /* 0x4f */ +#define _SHR_GPORT_TRAP_ID_SHIFT 0 +#define _SHR_GPORT_TRAP_ID_MASK 0xfff +#define _SHR_GPORT_TRAP_STRENGTH_SHIFT 12 +#define _SHR_GPORT_TRAP_STRENGTH_MASK 0xf +#define _SHR_GPORT_TRAP_SNOOP_STRENGTH_SHIFT 16 +#define _SHR_GPORT_TRAP_SNOOP_STRENGTH_MASK 0xf + +#define _SHR_GPORT_LOCAL_TYPE_COMMON (0) +#define _SHR_GPORT_LOCAL_TYPE_FABRIC (1) +#define _SHR_GPORT_LOCAL_TYPE_SHIFT (21) +#define _SHR_GPORT_LOCAL_TYPE_MASK (0x1f) + +#define _SHR_GPORT_IS_LOCAL(_gport) \ + (((((_gport) >> _SHR_GPORT_TYPE_SHIFT) & _SHR_GPORT_TYPE_MASK) == \ + _SHR_GPORT_TYPE_LOCAL) && \ + ((((_gport) >> _SHR_GPORT_LOCAL_TYPE_SHIFT) & _SHR_GPORT_LOCAL_TYPE_MASK) == \ + _SHR_GPORT_LOCAL_TYPE_COMMON)) + +#define _SHR_GPORT_LOCAL_SET(_gport, _port)\ + ((_gport) = (_SHR_GPORT_TYPE_LOCAL << _SHR_GPORT_TYPE_SHIFT) |\ + (_SHR_GPORT_LOCAL_TYPE_COMMON << _SHR_GPORT_LOCAL_TYPE_SHIFT)|\ + (((_port) & _SHR_GPORT_PORT_MASK) << _SHR_GPORT_PORT_SHIFT)) + +#define _SHR_GPORT_LOCAL_GET(_gport) \ + (((_gport) >> _SHR_GPORT_PORT_SHIFT) & _SHR_GPORT_PORT_MASK) + +#define _SHR_GPORT_IS_MODPORT(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_SHIFT) == _SHR_GPORT_TYPE_MODPORT) + +#define _SHR_GPORT_MODPORT_SET(_gport, _module, _port) \ + ((_gport) = (_SHR_GPORT_TYPE_MODPORT << _SHR_GPORT_TYPE_SHIFT) | \ + (((_module) & _SHR_GPORT_MODID_MASK) << _SHR_GPORT_MODID_SHIFT) | \ + (((_port) & _SHR_GPORT_PORT_MASK) << _SHR_GPORT_PORT_SHIFT)) + +#define _SHR_GPORT_MODPORT_MODID_GET(_gport) \ + (((_gport) >> _SHR_GPORT_MODID_SHIFT) & _SHR_GPORT_MODID_MASK) + +#define _SHR_GPORT_MODPORT_PORT_GET(_gport) \ + (((_gport) >> _SHR_GPORT_PORT_SHIFT) & _SHR_GPORT_PORT_MASK) + +#define _SHR_GPORT_IS_TRUNK(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_SHIFT) == _SHR_GPORT_TYPE_TRUNK) + +#define _SHR_GPORT_TRUNK_SET(_gport, _trunk_id) \ + ((_gport) = (_SHR_GPORT_TYPE_TRUNK << _SHR_GPORT_TYPE_SHIFT) | \ + (((_trunk_id) & _SHR_GPORT_TRUNK_MASK) << _SHR_GPORT_TRUNK_SHIFT)) + +#define _SHR_GPORT_TRUNK_GET(_gport) \ + (((_gport) >> _SHR_GPORT_TRUNK_SHIFT) & _SHR_GPORT_TRUNK_MASK) + +#define _SHR_GPORT_IS_SCHEDULER(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_SHIFT) == _SHR_GPORT_TYPE_SCHEDULER) + +#define _SHR_GPORT_SCHEDULER_SET(_gport, _id) \ + _SHR_GPORT_SCHEDULER_CORE_SET(_gport, _id, _SHR_CORE_ALL) + +#define _SHR_GPORT_SCHEDULER_GET(_gport) \ + (((_gport) >> _SHR_GPORT_SCHEDULER_SHIFT) & _SHR_GPORT_SCHEDULER_MASK) + +#define _SHR_GPORT_SCHEDULER_CORE_GET(_gport) \ + _SHR_CORE_FIELD2ID((((_gport) >> _SHR_GPORT_SCHEDULER_CORE_SHIFT) & _SHR_GPORT_SCHEDULER_CORE_MASK)) + +#define _SHR_GPORT_SCHEDULER_CORE_SET(_gport, _scheduler_id, _core_id) \ + ((_gport) = (_SHR_GPORT_TYPE_SCHEDULER << _SHR_GPORT_TYPE_SHIFT) | \ + (((_scheduler_id) & _SHR_GPORT_SCHEDULER_MASK) << _SHR_GPORT_SCHEDULER_SHIFT) | \ + (((_SHR_CORE_ID2FIELD(_core_id)) & _SHR_GPORT_SCHEDULER_CORE_MASK) << _SHR_GPORT_SCHEDULER_CORE_SHIFT)) + +#define _SHR_GPORT_SCHEDULER_NODE_SET(_gport, _level, _node) \ + ((_gport) = (_SHR_GPORT_TYPE_SCHEDULER << _SHR_GPORT_TYPE_SHIFT) | \ + (((_level) & _SHR_GPORT_SCHEDULER_LEVEL_MASK) << _SHR_GPORT_SCHEDULER_LEVEL_SHIFT) | \ + (((_node) & _SHR_GPORT_SCHEDULER_NODE_MASK) << _SHR_GPORT_SCHEDULER_NODE_SHIFT)) + +#define _SHR_GPORT_SCHEDULER_NODE_GET(_gport) \ + (((_gport) >> _SHR_GPORT_SCHEDULER_NODE_SHIFT) & _SHR_GPORT_SCHEDULER_NODE_MASK) + +#define _SHR_GPORT_BLACK_HOLE \ + (_SHR_GPORT_TYPE_BLACK_HOLE << _SHR_GPORT_TYPE_SHIFT) + +#define _SHR_GPORT_IS_BLACK_HOLE(_gport) ((_gport) == _SHR_GPORT_BLACK_HOLE) + +#define _SHR_GPORT_LOCAL_CPU \ + (_SHR_GPORT_TYPE_LOCAL_CPU << _SHR_GPORT_TYPE_SHIFT) + +#define _SHR_GPORT_IS_UCAST_QUEUE_GROUP(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_SHIFT) == _SHR_GPORT_TYPE_UCAST_QUEUE_GROUP) + +#define _SHR_GPORT_UCAST_QUEUE_GROUP_SET(_gport, _qid) \ + _SHR_GPORT_UCAST_QUEUE_GROUP_SYSQID_SET(_gport, \ + _SHR_GPORT_UCAST_QUEUE_GROUP_SYSPORTID_MASK, \ + _qid) + +#define _SHR_GPORT_UCAST_QUEUE_GROUP_SYSQID_SET(_gport, _sysport_id, _qid) \ + ((_gport) = (_SHR_GPORT_TYPE_UCAST_QUEUE_GROUP << _SHR_GPORT_TYPE_SHIFT) | \ + (((_sysport_id) & _SHR_GPORT_UCAST_QUEUE_GROUP_SYSPORTID_MASK) << _SHR_GPORT_UCAST_QUEUE_GROUP_SYSPORTID_SHIFT) | \ + (((_qid) & _SHR_GPORT_UCAST_QUEUE_GROUP_QID_MASK) << _SHR_GPORT_UCAST_QUEUE_GROUP_QID_SHIFT)) + +#define _SHR_GPORT_UCAST_QUEUE_GROUP_SYSPORTID_GET(_gport) \ + (((_gport) >> _SHR_GPORT_UCAST_QUEUE_GROUP_SYSPORTID_SHIFT) & _SHR_GPORT_UCAST_QUEUE_GROUP_SYSPORTID_MASK) + +#define _SHR_GPORT_UCAST_QUEUE_GROUP_QID_GET(_gport) \ + (((_gport) >> _SHR_GPORT_UCAST_QUEUE_GROUP_QID_SHIFT) & _SHR_GPORT_UCAST_QUEUE_GROUP_QID_MASK) + +#define _SHR_GPORT_IS_MCAST_QUEUE_GROUP(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_SHIFT) == _SHR_GPORT_TYPE_MCAST_QUEUE_GROUP) + +#define _SHR_GPORT_MCAST_QUEUE_GROUP_SET(_gport, _qid) \ + _SHR_GPORT_MCAST_QUEUE_GROUP_SYSQID_SET(_gport, \ + _SHR_GPORT_MCAST_QUEUE_GROUP_SYSPORTID_MASK, \ + _qid) + +#define _SHR_GPORT_MCAST_QUEUE_GROUP_GET(_gport) \ + _SHR_GPORT_MCAST_QUEUE_GROUP_QID_GET(_gport) + +#define _SHR_GPORT_MCAST_QUEUE_GROUP_SYSQID_SET(_gport, _sysport_id, _qid) \ + ((_gport) = (_SHR_GPORT_TYPE_MCAST_QUEUE_GROUP << _SHR_GPORT_TYPE_SHIFT) | \ + (((_sysport_id) & _SHR_GPORT_MCAST_QUEUE_GROUP_SYSPORTID_MASK) << _SHR_GPORT_MCAST_QUEUE_GROUP_SYSPORTID_SHIFT) | \ + (((_qid) & _SHR_GPORT_MCAST_QUEUE_GROUP_QID_MASK) << _SHR_GPORT_MCAST_QUEUE_GROUP_QID_SHIFT)) + +#define _SHR_GPORT_MCAST_QUEUE_GROUP_SYSPORTID_GET(_gport) \ + (((_gport) >> _SHR_GPORT_MCAST_QUEUE_GROUP_SYSPORTID_SHIFT) & _SHR_GPORT_MCAST_QUEUE_GROUP_SYSPORTID_MASK) + +#define _SHR_GPORT_MCAST_QUEUE_GROUP_QID_GET(_gport) \ + (((_gport) >> _SHR_GPORT_MCAST_QUEUE_GROUP_QID_SHIFT) & _SHR_GPORT_MCAST_QUEUE_GROUP_QID_MASK) + +/* for multicast queue gports representing queue ID + core ID */ +#define _SHR_GPORT_MCAST_QUEUE_GROUP_QUEUE_SET(_gport, _qid) \ + ((_gport) = (_SHR_GPORT_TYPE_MCAST_QUEUE_GROUP << _SHR_GPORT_TYPE_SHIFT) | \ + (_SHR_COSQ_GPORT_COMMON_ALL_CORES_VALUE << _SHR_COSQ_GPORT_COMMON_CORE_SHIFT) | \ + (((_qid) & _SHR_COSQ_GPORT_COMMON_QUEUE_MASK) << _SHR_GPORT_MCAST_QUEUE_GROUP_QID_SHIFT)) + +#define _SHR_GPORT_MCAST_QUEUE_GROUP_CORE_QUEUE_SET(_gport, _core, _qid) \ + ((_gport) = (_SHR_GPORT_TYPE_MCAST_QUEUE_GROUP << _SHR_GPORT_TYPE_SHIFT) | \ + (_SHR_CORE_ID2FIELD(_core) << _SHR_COSQ_GPORT_COMMON_CORE_SHIFT) | \ + (((_qid) & _SHR_COSQ_GPORT_COMMON_QUEUE_MASK) << _SHR_GPORT_MCAST_QUEUE_GROUP_QID_SHIFT)) + +#define _SHR_GPORT_MCAST_QUEUE_GROUP_QUEUE_GET(_gport) \ + (_SHR_GPORT_MCAST_QUEUE_GROUP_SYSPORTID_GET(_gport) == _SHR_GPORT_MCAST_QUEUE_GROUP_SYSPORTID_MASK ? \ + _SHR_GPORT_MCAST_QUEUE_GROUP_QID_GET(_gport) : \ + (((_gport) >> _SHR_GPORT_MCAST_QUEUE_GROUP_QID_SHIFT) & _SHR_COSQ_GPORT_COMMON_QUEUE_MASK)) + +#define _SHR_GPORT_MCAST_QUEUE_GROUP_CORE_GET(_gport) \ + _SHR_CORE_FIELD2ID(((_gport) >> _SHR_COSQ_GPORT_COMMON_CORE_SHIFT) & _SHR_COSQ_GPORT_COMMON_CORE_MASK) + +#define _SHR_GPORT_IS_MIRROR(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_SHIFT) == _SHR_GPORT_TYPE_MIRROR) + +#define _SHR_GPORT_MIRROR_SET(_gport, _value) \ + ((_gport) = (_SHR_GPORT_TYPE_MIRROR << _SHR_GPORT_TYPE_SHIFT) | \ + (((_value) & _SHR_GPORT_MIRROR_MASK) << _SHR_GPORT_MIRROR_SHIFT)) + +#define _SHR_GPORT_MIRROR_GET(_gport) \ + (((_gport) >> _SHR_GPORT_MIRROR_SHIFT) & _SHR_GPORT_MIRROR_MASK) + +#define _SHR_GPORT_IS_TUNNEL(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_SHIFT) == _SHR_GPORT_TYPE_TUNNEL) + +#define _SHR_GPORT_TUNNEL_ID_SET(_gport, _tunnel_id) \ + ((_gport) = (_SHR_GPORT_TYPE_TUNNEL << _SHR_GPORT_TYPE_SHIFT) | \ + (((_tunnel_id) & _SHR_GPORT_TUNNEL_MASK) << _SHR_GPORT_TUNNEL_SHIFT)) + +#define _SHR_GPORT_TUNNEL_ID_GET(_gport) \ + (((_gport) >> _SHR_GPORT_TUNNEL_SHIFT) & _SHR_GPORT_TUNNEL_MASK) + +#define _SHR_GPORT_IS_SYSTEM_PORT(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_SHIFT) == _SHR_GPORT_TYPE_SYSTEM_PORT) +#define _SHR_GPORT_SYSTEM_PORT_ID_GET(_gport) \ + (((_gport) >> _SHR_GPORT_SYSTEM_PORT_SHIFT) & _SHR_GPORT_SYSTEM_PORT_MASK) +#define _SHR_GPORT_SYSTEM_PORT_ID_SET(_gport, _id) \ + ((_gport) = (_SHR_GPORT_TYPE_SYSTEM_PORT << _SHR_GPORT_TYPE_SHIFT) | \ + (((_id) & _SHR_GPORT_SYSTEM_PORT_MASK) << _SHR_GPORT_SYSTEM_PORT_SHIFT)) + +#define _SHR_GPORT_IS_COSQ(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_SHIFT) == _SHR_GPORT_TYPE_COSQ) + +#define _SHR_GPORT_TRAP_SET(_gport, _trap_id, _trap_strength, _snoop_strength) \ + ((_gport) = (_SHR_GPORT_TYPE_TRAP << _SHR_GPORT_TYPE_TRAP_SHIFT) | \ + (((_trap_id) & _SHR_GPORT_TRAP_ID_MASK) << _SHR_GPORT_TRAP_ID_SHIFT) | \ + (((_trap_strength) & _SHR_GPORT_TRAP_STRENGTH_MASK) << _SHR_GPORT_TRAP_STRENGTH_SHIFT) | \ + (((_snoop_strength) & _SHR_GPORT_TRAP_SNOOP_STRENGTH_MASK) << _SHR_GPORT_TRAP_SNOOP_STRENGTH_SHIFT) ) + +#define _SHR_GPORT_TRAP_GET_ID(_gport) \ + (((_gport) >> _SHR_GPORT_TRAP_ID_SHIFT) & _SHR_GPORT_TRAP_ID_MASK) + +#define _SHR_GPORT_TRAP_GET_STRENGTH(_gport) \ + (((_gport) >> _SHR_GPORT_TRAP_STRENGTH_SHIFT & _SHR_GPORT_TRAP_STRENGTH_MASK)) + +#define _SHR_GPORT_TRAP_GET_SNOOP_STRENGTH(_gport) \ + (((_gport) >> _SHR_GPORT_TRAP_SNOOP_STRENGTH_SHIFT & _SHR_GPORT_TRAP_SNOOP_STRENGTH_MASK)) + +#define _SHR_GPORT_IS_TRAP(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_TRAP_SHIFT) == _SHR_GPORT_TYPE_TRAP) + +#define _SHR_FIELD_CTR_PROC_MASK_LEGACY ((1 << 2) - 1) /*2 bits for counter engines in Arad */ +#define _SHR_FIELD_CTR_PROC_SHIFT_LEGACY 29 /* minimum 20 for the Statistic-Report Counter in Arad */ +#define _SHR_FIELD_CTR_SET_MASK_LEGACY ((1 << _SHR_FIELD_CTR_PROC_SHIFT_LEGACY) - 1) +#define _SHR_FIELD_CTR_SET_SHIFT_LEGACY 0 + +#define _SHR_FIELD_STAT_ID_PROC_LEGACY_GET(_stat_id) \ + (((_stat_id) >> _SHR_FIELD_CTR_PROC_SHIFT_LEGACY) & _SHR_FIELD_CTR_PROC_MASK_LEGACY) + +#define _SHR_FIELD_STAT_ID_CNTR_LEGACY_GET(_stat_id) \ + (((_stat_id) >> _SHR_FIELD_CTR_SET_SHIFT_LEGACY) & _SHR_FIELD_CTR_SET_MASK_LEGACY) + +#define _SHR_FIELD_STAT_ID_LEGACY_SET(_proc, _ctr) \ + ((((_proc) & _SHR_FIELD_CTR_PROC_MASK_LEGACY) << _SHR_FIELD_CTR_PROC_SHIFT_LEGACY)\ + | (((_ctr) & _SHR_FIELD_CTR_SET_MASK_LEGACY) << _SHR_FIELD_CTR_SET_SHIFT_LEGACY)) + +#define _SHR_FIELD_STAT_ID_IS_LEGACY(_stat_id) (!((_stat_id >> 31) & 0x1)) +#define _SHR_FIELD_STAT_ID_LEGACY (0x1 << 31) + +/* minimum 20 for the Statistic-Report Counter in Arad */ +#define _SHR_FIELD_CTR_PROC_MASK ((1 << 4) - 1) /*4 bits for counter engines in Arad */ + +#define _SHR_FIELD_CTR_PROC_SHIFT 27 /* minimum 20 for the Statistic-Report Counter in Jericho */ +#define _SHR_FIELD_CTR_SET_MASK ((1 << _SHR_FIELD_CTR_PROC_SHIFT) - 1) +#define _SHR_FIELD_CTR_SET_SHIFT 0 + +#define _SHR_FIELD_CTR_PROC_SHIFT_GET(_stat_id) (_SHR_FIELD_STAT_ID_IS_LEGACY(_stat_id) ? _SHR_FIELD_CTR_PROC_SHIFT_LEGACY : _SHR_FIELD_CTR_PROC_SHIFT) +#define _SHR_FIELD_STAT_ID_PROC_NEW_GET(_stat_id) \ + (((_stat_id) >> _SHR_FIELD_CTR_PROC_SHIFT) & _SHR_FIELD_CTR_PROC_MASK) + +#define _SHR_FIELD_STAT_ID_CNTR_NEW_GET(_stat_id) \ + (((_stat_id) >> _SHR_FIELD_CTR_SET_SHIFT) & _SHR_FIELD_CTR_SET_MASK) + +#define _SHR_FIELD_STAT_ID_NEW_SET(_proc, _ctr) \ + (_SHR_FIELD_STAT_ID_LEGACY | \ + (((_proc) & _SHR_FIELD_CTR_PROC_MASK) << _SHR_FIELD_CTR_PROC_SHIFT)|\ + (((_ctr) & _SHR_FIELD_CTR_SET_MASK) << _SHR_FIELD_CTR_SET_SHIFT)) + +#define _SHR_FIELD_STAT_ID_PROCESSOR_GET(_stat_id) \ + (_SHR_FIELD_STAT_ID_IS_LEGACY(_stat_id) ? \ + _SHR_FIELD_STAT_ID_PROC_LEGACY_GET(_stat_id) : \ + _SHR_FIELD_STAT_ID_PROC_NEW_GET(_stat_id)) + +#define _SHR_FIELD_STAT_ID_COUNTER_GET(_stat_id) \ + (_SHR_FIELD_STAT_ID_IS_LEGACY(_stat_id) ? \ + _SHR_FIELD_STAT_ID_CNTR_LEGACY_GET(_stat_id) : \ + _SHR_FIELD_STAT_ID_CNTR_NEW_GET(_stat_id)) + +#define _SHR_FIELD_STAT_ID_SET(_stat_id, _proc, _ctr) \ + (_stat_id = _SHR_FIELD_STAT_ID_NEW_SET(_proc, _ctr)) + +#endif /* !_SHR_GPORT_H */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/pbmp.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/pbmp.h @@ -0,0 +1,303 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2017 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ********************************************************************** + * File: pbmp.h + * Details: Port Bitmap Macros + *********************************************************************/ + +#ifndef _SHR_PBMP_H +#define _SHR_PBMP_H + +#include +/* + * Port Bitmap Macros + * + * These macros are never used directly (well, except in the C code + * support routines that are used to help implement the macros). + * + * This header requires that the uint32 type be defined before inclusion. + * Using is the simplest (and recommended) way of doing + * this. + * + * There following macros are made available. All have names starting + * with _SHR_, which have been elided from this list: + * + * Constants or Expressions suitable for assignment: + * PBMP_PORT_MAX the maximum number of ports supported + * PBMP_WORD_MAX the maximum number of words in a bitmap + * PBMP_WORD_GET(b, w) return word w (0..WORD_MAX-1) from bitmap b + * PBMP_FMT_LEN length of char[] array for PBMP_FMT + * PBMP_FMT(b,s) %s'able format of bitmap b into string s + * returns s + * + * Predicates: (return 0 or 1, suitable for using in if statements) + * PBMP_MEMBER(b, p) is port p a member of bitmap b? + * PBMP_IS_NULL(b) is bitmap b empty? + * PBMP_NOT_NULL(b) is bitmap b not empty? + * PBMP_EQ(b1, b2) are bitmaps b1 and b2 equal? + * PBMP_NEQ(b1, b2) are bitmaps b1 and b2 not equal? + * PBMP_PORT_VALID(p) is p a valid port number? (0..PORT_MAX) + * + * Statements: (cannot be used as a predicate) + * PBMP_CLEAR(b) zero out a bitmap + * PBMP_COUNT(b, c) store how many bits are on in b into integer c + * PBMP_ITER(b, p) {...} iterate over bitmap b, setting p to each bit + * PBMP_ASSIGN(b1, b2) copy bitmap b2 into b1 + * PBMP_AND(b1, b2) and bitmap b2 into b1 + * PBMP_OR(b1, b2) or bitmap b2 into b1 + * PBMP_XOR(b1, b2) exclusive or bitmap b2 into b1 + * PBMP_REMOVE(b1, b2) remove bits in bitmap b2 from b1 + * PBMP_NEGATE(b1, b2) copy the bitwise negation of bitmap b2 into b1 + * PBMP_PORT_SET(b, p) clear bitmap b, then turn bit p on + * PBMP_PORT_ADD(b, p) turn bit p on in bitmap b + * PBMP_PORT_REMOVE(b, p) turn bit p off in bitmap b + * PBMP_PORT_FLIP(b, p) flip the sense of bit p on in bitmap b + * PBMP_WORD_SET(b, w, v) set word w (0..WORD_MAX-1) from bitmap b to v + * + * Internal forms: (should not be used outside of this header file) + * PBMP_WENT(p) word index for bit p + * PBMP_WBIT(p) word bitmask for bit p + * PBMP_BMCLEAR(b) clear a bitmap + * PBMP_BMNULL(b) is bitmap b empty? + * PBMP_BMEQ(b1, b2) are bitmaps b1 and b2 equal? + * PBMP_BMOP(b1, b2, op) execute op on a word basis on bitmaps b1, b2 + * PBMP_ENTRY(b, p) the word of bitmap b that holds bit p + * + * There are 4 styles of implementation for the bitmap macros supported: + * 1. The historic single uint32 implementation (-D_SHR_PBMP_WIDTH=0) + * This is expected to be removed after a decent time of mourning. + * 2. An array of a single uint32 in a struct (-D_SHR_PBMP_WIDTH=32, + * the default). Macros are special cased to handle this efficiently. + * 3. An array of two uint32 in a struct (-D_SHR_PBMP_WIDTH=64, used). + * Macros are again special cased for efficiency. + * 4. An array of more than two uint32 in a struct (-D_SHR_PBMP_WIDTH=256 + * for example). Most things are done inline, with a couple of helper + * functions used to implement some macros. + */ + +#ifndef _SHR_PBMP_WIDTH +#undef _SHR_PBMP_PORT_MAX +#ifndef OPENNSL_PRODUCT_DNX +#define _SHR_PBMP_PORT_MAX 256 +#else +#define _SHR_PBMP_PORT_MAX 571 +#endif + +#define _SHR_PBMP_WIDTH (((_SHR_PBMP_PORT_MAX + 32 - 1)/32)*32) +#endif + +#ifndef _SHR_PBMP_PORT_MAX +#define _SHR_PBMP_PORT_MAX _SHR_PBMP_WIDTH +#endif +#define _SHR_PBMP_WORD_WIDTH 32 +#define _SHR_PBMP_WORD_MAX \ + ((_SHR_PBMP_WIDTH + _SHR_PBMP_WORD_WIDTH-1) / _SHR_PBMP_WORD_WIDTH) + +typedef struct _shr_pbmp { + uint32 pbits[_SHR_PBMP_WORD_MAX]; +} _shr_pbmp_t; + +#define _SHR_PBMP_WORD_GET(bm, word) ((bm).pbits[(word)]) +#define _SHR_PBMP_WORD_SET(bm, word, val) ((bm).pbits[(word)] = (val)) + +/* + * Common cases are one word (1..32 ports) and two words (33..64 ports). + * If not the common cases, more complicated code is generated using helper + * functions. + */ +#if _SHR_PBMP_WORD_MAX == 1 /* 32 bit maps */ +#define _SHR_PBMP_WENT(port) (0) +#define _SHR_PBMP_WBIT(port) (1U<<(port)) + +/* helper defines used in the generic section below */ +#define _SHR_PBMP_BMCLEAR(bm) (_SHR_PBMP_WORD_GET(bm, 0) = 0) +#define _SHR_PBMP_BMNULL(bm) (_SHR_PBMP_WORD_GET(bm, 0) == 0) +#define _SHR_PBMP_BMEQ(bma, bmb) \ + (_SHR_PBMP_WORD_GET(bma, 0) == _SHR_PBMP_WORD_GET(bmb, 0)) +#define _SHR_PBMP_BMOP(bma, bmb, op) do { \ + _SHR_PBMP_WORD_GET(bma, 0) op _SHR_PBMP_WORD_GET(bmb, 0); \ + } while (0) +#define _SHR_PBMP_COUNT(bm, count) \ + (count = _shr_popcount(_SHR_PBMP_WORD_GET(bm, 0))) + +#elif _SHR_PBMP_WORD_MAX == 2 /* 64 bit maps */ +#define _SHR_PBMP_WENT(port) ((port)/_SHR_PBMP_WORD_WIDTH) +#define _SHR_PBMP_WBIT(port) (1U<<((port) % _SHR_PBMP_WORD_WIDTH)) + +#define _SHR_PBMP_BMCLEAR(bm) \ + (_SHR_PBMP_WORD_GET(bm, 0) = _SHR_PBMP_WORD_GET(bm, 1) = 0) +#define _SHR_PBMP_BMNULL(bm) \ + (_SHR_PBMP_WORD_GET(bm, 0) == 0 && _SHR_PBMP_WORD_GET(bm, 1) == 0) +#define _SHR_PBMP_BMEQ(bma, bmb) \ + ((_SHR_PBMP_WORD_GET(bma, 0) == _SHR_PBMP_WORD_GET(bmb, 0)) && \ + (_SHR_PBMP_WORD_GET(bma, 1) == _SHR_PBMP_WORD_GET(bmb, 1))) +#define _SHR_PBMP_BMOP(bma, bmb, op) do { \ + _SHR_PBMP_WORD_GET(bma, 0) op _SHR_PBMP_WORD_GET(bmb, 0); \ + _SHR_PBMP_WORD_GET(bma, 1) op _SHR_PBMP_WORD_GET(bmb, 1); \ + } while (0) +#define _SHR_PBMP_COUNT(bm, count) \ + (count = _shr_popcount(_SHR_PBMP_WORD_GET(bm, 0)) + \ + _shr_popcount(_SHR_PBMP_WORD_GET(bm, 1))) + +#elif _SHR_PBMP_WORD_MAX == 3 /* 96 bit maps */ +#define _SHR_PBMP_WENT(port) ((port)/_SHR_PBMP_WORD_WIDTH) +#define _SHR_PBMP_WBIT(port) (1U << ((port) % _SHR_PBMP_WORD_WIDTH)) + +#define _SHR_PBMP_BMCLEAR(bm) \ + (_SHR_PBMP_WORD_GET(bm, 0) = _SHR_PBMP_WORD_GET(bm, 1) = \ + _SHR_PBMP_WORD_GET(bm, 2) = 0) +#define _SHR_PBMP_BMNULL(bm) \ + (_SHR_PBMP_WORD_GET(bm, 0) == 0 && _SHR_PBMP_WORD_GET(bm, 1) == 0 && \ + _SHR_PBMP_WORD_GET(bm, 2) == 0) +#define _SHR_PBMP_BMEQ(bma, bmb) \ + ((_SHR_PBMP_WORD_GET(bma, 0) == _SHR_PBMP_WORD_GET(bmb, 0)) && \ + (_SHR_PBMP_WORD_GET(bma, 1) == _SHR_PBMP_WORD_GET(bmb, 1)) && \ + (_SHR_PBMP_WORD_GET(bma, 2) == _SHR_PBMP_WORD_GET(bmb, 2))) +#define _SHR_PBMP_BMOP(bma, bmb, op) do { \ + _SHR_PBMP_WORD_GET(bma, 0) op _SHR_PBMP_WORD_GET(bmb, 0); \ + _SHR_PBMP_WORD_GET(bma, 1) op _SHR_PBMP_WORD_GET(bmb, 1); \ + _SHR_PBMP_WORD_GET(bma, 2) op _SHR_PBMP_WORD_GET(bmb, 2); \ + } while (0) +#define _SHR_PBMP_COUNT(bm, count) \ + (count = _shr_popcount(_SHR_PBMP_WORD_GET(bm, 0)) + \ + _shr_popcount(_SHR_PBMP_WORD_GET(bm, 1)) + \ + _shr_popcount(_SHR_PBMP_WORD_GET(bm, 2))) + +#elif _SHR_PBMP_WORD_MAX == 5 /* 160 bit maps */ +#define _SHR_PBMP_WENT(port) ((port)/_SHR_PBMP_WORD_WIDTH) +#define _SHR_PBMP_WBIT(port) (1U << ((port) % _SHR_PBMP_WORD_WIDTH)) + +#define _SHR_PBMP_BMCLEAR(bm) \ + (_SHR_PBMP_WORD_GET(bm, 0) = _SHR_PBMP_WORD_GET(bm, 1) = \ + _SHR_PBMP_WORD_GET(bm, 2) = _SHR_PBMP_WORD_GET(bm, 3) = \ + _SHR_PBMP_WORD_GET(bm, 4) = 0) +#define _SHR_PBMP_BMNULL(bm) \ + (_SHR_PBMP_WORD_GET(bm, 0) == 0 && _SHR_PBMP_WORD_GET(bm, 1) == 0 && \ + _SHR_PBMP_WORD_GET(bm, 2) == 0 && _SHR_PBMP_WORD_GET(bm, 3) == 0 && \ + _SHR_PBMP_WORD_GET(bm, 4) == 0) +#define _SHR_PBMP_BMEQ(bma, bmb) \ + ((_SHR_PBMP_WORD_GET(bma, 0) == _SHR_PBMP_WORD_GET(bmb, 0)) && \ + (_SHR_PBMP_WORD_GET(bma, 1) == _SHR_PBMP_WORD_GET(bmb, 1)) && \ + (_SHR_PBMP_WORD_GET(bma, 2) == _SHR_PBMP_WORD_GET(bmb, 2)) && \ + (_SHR_PBMP_WORD_GET(bma, 3) == _SHR_PBMP_WORD_GET(bmb, 3)) && \ + (_SHR_PBMP_WORD_GET(bma, 4) == _SHR_PBMP_WORD_GET(bmb, 4))) +#define _SHR_PBMP_BMOP(bma, bmb, op) do { \ + _SHR_PBMP_WORD_GET(bma, 0) op _SHR_PBMP_WORD_GET(bmb, 0); \ + _SHR_PBMP_WORD_GET(bma, 1) op _SHR_PBMP_WORD_GET(bmb, 1); \ + _SHR_PBMP_WORD_GET(bma, 2) op _SHR_PBMP_WORD_GET(bmb, 2); \ + _SHR_PBMP_WORD_GET(bma, 3) op _SHR_PBMP_WORD_GET(bmb, 3); \ + _SHR_PBMP_WORD_GET(bma, 4) op _SHR_PBMP_WORD_GET(bmb, 4); \ + } while (0) +#define _SHR_PBMP_COUNT(bm, count) \ + (count = _shr_popcount(_SHR_PBMP_WORD_GET(bm, 0)) + \ + _shr_popcount(_SHR_PBMP_WORD_GET(bm, 1)) + \ + _shr_popcount(_SHR_PBMP_WORD_GET(bm, 2)) + \ + _shr_popcount(_SHR_PBMP_WORD_GET(bm, 3)) + \ + _shr_popcount(_SHR_PBMP_WORD_GET(bm, 4))) + +#else /* _SHR_PBMP_WORD_MAX == 4 || > 5 */ /* 144 or > 160 bit maps */ + +/* For use by pbmp.c */ +#define _SHR_DEFINE_PBMP_FUNCTIONS + +extern int _shr_pbmp_bmnull(_shr_pbmp_t *); +extern int _shr_pbmp_bmeq(_shr_pbmp_t *, _shr_pbmp_t *); + +#define _SHR_PBMP_WENT(port) ((port)/_SHR_PBMP_WORD_WIDTH) +#define _SHR_PBMP_WBIT(port) (1U<<((port) % _SHR_PBMP_WORD_WIDTH)) + +#define _SHR_PBMP_BMCLEAR(bm) do { \ + int _w; \ + for (_w = 0; _w < _SHR_PBMP_WORD_MAX; _w++) { \ + _SHR_PBMP_WORD_GET(bm, _w) = 0; \ + } \ + } while (0) +#define _SHR_PBMP_BMNULL(bm) (_shr_pbmp_bmnull(&bm)) +#define _SHR_PBMP_BMEQ(bma, bmb) (_shr_pbmp_bmeq(&bma, &bmb)) +#define _SHR_PBMP_BMOP(bma, bmb, op) do { \ + int _w; \ + for (_w = 0; _w < _SHR_PBMP_WORD_MAX; _w++) { \ + _SHR_PBMP_WORD_GET(bma, _w) op _SHR_PBMP_WORD_GET(bmb, _w); \ + } \ + } while (0) +#define _SHR_PBMP_COUNT(bm, count) do { \ + int _w; \ + count = 0; \ + for (_w = 0; _w < _SHR_PBMP_WORD_MAX; _w++) { \ + count += _shr_popcount(_SHR_PBMP_WORD_GET(bm, _w)); \ + } \ + } while(0) + +#endif /* _SHR_PBMP_WORD_MAX */ + +/* generics that use the previously defined helpers */ +#define _SHR_PBMP_CLEAR(bm) _SHR_PBMP_BMCLEAR(bm) +#define _SHR_PBMP_ITER(bm, port) \ + for ((port) = 0; (port) < _SHR_PBMP_PORT_MAX; (port)++) \ + if (_SHR_PBMP_MEMBER((bm), (port))) + +#define _SHR_PBMP_REVERSE_ITER(bm, port) \ + for ((port) = _SHR_PBMP_PORT_MAX - 1; (port) > -1; (port)--) \ + if (_SHR_PBMP_MEMBER((bm), (port))) + +#define _SHR_PBMP_IS_NULL(bm) (_SHR_PBMP_BMNULL(bm)) +#define _SHR_PBMP_NOT_NULL(bm) (!_SHR_PBMP_BMNULL(bm)) +#define _SHR_PBMP_EQ(bma, bmb) (_SHR_PBMP_BMEQ(bma, bmb)) +#define _SHR_PBMP_NEQ(bma, bmb) (!_SHR_PBMP_BMEQ(bma, bmb)) + +/* Assignment operators */ +#define _SHR_PBMP_ASSIGN(dst, src) (dst) = (src) +#define _SHR_PBMP_AND(bma, bmb) _SHR_PBMP_BMOP(bma, bmb, &=) +#define _SHR_PBMP_OR(bma, bmb) _SHR_PBMP_BMOP(bma, bmb, |=) +#define _SHR_PBMP_XOR(bma, bmb) _SHR_PBMP_BMOP(bma, bmb, ^=) +#define _SHR_PBMP_REMOVE(bma, bmb) _SHR_PBMP_BMOP(bma, bmb, &= ~) +#define _SHR_PBMP_NEGATE(bma, bmb) _SHR_PBMP_BMOP(bma, bmb, = ~) + +/* Port PBMP operators */ +#define _SHR_PBMP_FIRST(bm, first_port) \ + do {\ + _SHR_PBMP_ITER(bm, first_port) {break;} \ + if (first_port == _SHR_PBMP_PORT_MAX) first_port = -1; \ + } while(0) + +#define _SHR_PBMP_LAST(bm, last_port) \ + do {\ + _SHR_PBMP_REVERSE_ITER(bm, last_port) {break;} \ + } while(0) + + +#define _SHR_PBMP_ENTRY(bm, port) \ + (_SHR_PBMP_WORD_GET(bm,_SHR_PBMP_WENT(port))) +#define _SHR_PBMP_MEMBER(bm, port) \ + ((_SHR_PBMP_ENTRY(bm, port) & _SHR_PBMP_WBIT(port)) != 0) +#define _SHR_PBMP_PORT_SET(bm, port) do { \ + _SHR_PBMP_CLEAR(bm); \ + _SHR_PBMP_PORT_ADD(bm, port); \ + } while(0) +#define _SHR_PBMP_PORT_ADD(bm, port) \ + (_SHR_PBMP_ENTRY(bm, port) |= _SHR_PBMP_WBIT(port)) +#define _SHR_PBMP_PORT_REMOVE(bm, port) \ + (_SHR_PBMP_ENTRY(bm, port) &= ~_SHR_PBMP_WBIT(port)) +#define _SHR_PBMP_PORT_FLIP(bm, port) \ + (_SHR_PBMP_ENTRY(bm, port) ^= _SHR_PBMP_WBIT(port)) +extern char *_shr_pbmp_format(_shr_pbmp_t, char *); +#define _SHR_PBMP_FMT(bm, buf) _shr_pbmp_format(bm, buf) +#define _SHR_PBMP_FMT_LEN ((_SHR_PBMP_WORD_MAX*8)+3) + +#define _SHR_PBMP_PORT_VALID(p) ((p) >= 0 && (p) < _SHR_PBMP_PORT_MAX) + +#endif /* !_SHR_PBMP_H */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/phyconfig.h +++ linux-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-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/phyreg.h +++ linux-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-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/pkt.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/pkt.h @@ -0,0 +1,38 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2016 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ********************************************************************** + * File: pkt.h + * Details: This file defines for pkt module. + * + * Its contents are not used directly by applications; + * it is used only by header files of parent APIs which + * need to define PHY register definition. + *********************************************************************/ + +#ifndef _SHR_PKT_H +#define _SHR_PKT_H +#include +#include +#include +#include + + + +#define _SHR_PKT_NOF_DNX_HEADERS 9 +#define _SHR_PKT_DNX_RAW_SIZE_MAX 20 + +#endif /* _SHR_PKT_H */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/port.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/port.h @@ -0,0 +1,230 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2017 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ******************************************************************** + * File: port.h + * Details: This file defines common network port parameters. + * + * Its contents are not used directly by applications; + * it is used only by header files of parent APIs + * which need to define port parameters. + * *******************************************************************/ + +#ifndef _SHR_PORT_H +#define _SHR_PORT_H + +/* + * Typedef: + * _shr_port_t + * Purpose: + * Port number type for shared definitions + */ +#include + +typedef int _shr_port_t; + +/* + * Defines: + * _SHR_PORT_DUPLEX_* + * Purpose: + * Defines duplexity of a port + */ + +typedef enum _shr_port_duplex_e { + _SHR_PORT_DUPLEX_HALF, + _SHR_PORT_DUPLEX_FULL, + _SHR_PORT_DUPLEX_COUNT /* last, please */ +} _shr_port_duplex_t; + +/* + * Defines: + * _SHR_PORT_IF_* + * Purpose: + * Defines interface type between MAC and PHY. + */ + +typedef enum _shr_port_if_e { + _SHR_PORT_IF_NOCXN, /* No physical connection */ + _SHR_PORT_IF_NULL, /* Pass-through connection without PHY */ + _SHR_PORT_IF_MII, + _SHR_PORT_IF_GMII, + _SHR_PORT_IF_SGMII, + _SHR_PORT_IF_TBI, + _SHR_PORT_IF_XGMII, + _SHR_PORT_IF_RGMII, + _SHR_PORT_IF_RvMII, + _SHR_PORT_IF_SFI, + _SHR_PORT_IF_XFI, + _SHR_PORT_IF_KR, + _SHR_PORT_IF_KR4, + _SHR_PORT_IF_CR, + _SHR_PORT_IF_CR4, + _SHR_PORT_IF_XLAUI, + _SHR_PORT_IF_SR, + _SHR_PORT_IF_RXAUI, + _SHR_PORT_IF_XAUI, + _SHR_PORT_IF_SPAUI, + _SHR_PORT_IF_QSGMII, + _SHR_PORT_IF_ILKN, + _SHR_PORT_IF_RCY, + _SHR_PORT_IF_FAT_PIPE, + _SHR_PORT_IF_CGMII, + _SHR_PORT_IF_CAUI, + _SHR_PORT_IF_LR, + _SHR_PORT_IF_LR4, + _SHR_PORT_IF_SR4, + _SHR_PORT_IF_KX, + _SHR_PORT_IF_ZR, + _SHR_PORT_IF_SR10, + _SHR_PORT_IF_OTL, + _SHR_PORT_IF_CPU, + _SHR_PORT_IF_OLP, + _SHR_PORT_IF_OAMP, + _SHR_PORT_IF_ERP, + _SHR_PORT_IF_TM_INTERNAL_PKT, + _SHR_PORT_IF_SR2, + _SHR_PORT_IF_KR2, + _SHR_PORT_IF_CR2, + _SHR_PORT_IF_XFI2, + _SHR_PORT_IF_XLAUI2, + _SHR_PORT_IF_CR10, + _SHR_PORT_IF_KR10, + _SHR_PORT_IF_LR10, + _SHR_PORT_IF_ER, + _SHR_PORT_IF_ER2, + _SHR_PORT_IF_ER4, + _SHR_PORT_IF_CX, + _SHR_PORT_IF_CX2, + _SHR_PORT_IF_CX4, + _SHR_PORT_IF_CAUI_C2C, + _SHR_PORT_IF_CAUI_C2M, + _SHR_PORT_IF_VSR, + _SHR_PORT_IF_LR2, + _SHR_PORT_IF_LRM, + _SHR_PORT_IF_XLPPI, + _SHR_PORT_IF_2500X, + _SHR_PORT_IF_SAT, + _SHR_PORT_IF_IPSEC, + _SHR_PORT_IF_LBG, + _SHR_PORT_IF_CAUI4, + _SHR_PORT_IF_5000X, + _SHR_PORT_IF_EVENTOR, + _SHR_PORT_IF_COUNT /* last, please */ +} _shr_port_if_t; + +/* + * Defines: + * _SHR_PORT_STP_* + * Purpose: + * Defines the spanning tree states of a port. + */ + +typedef enum _shr_port_stp_e { + _SHR_PORT_STP_DISABLE = 0, + _SHR_PORT_STP_BLOCK = 1, + _SHR_PORT_STP_LISTEN = 2, + _SHR_PORT_STP_LEARN = 3, + _SHR_PORT_STP_FORWARD = 4, + _SHR_PORT_STP_COUNT = 5 /* last, please */ +} _shr_port_stp_t; + +/* + * Defines: + * _SHR_PORT_MDIX_* + * Purpose: + * Defines the MDI crossover (MDIX) modes for the port + */ +typedef enum _shr_port_mdix_e { + _SHR_PORT_MDIX_AUTO, + _SHR_PORT_MDIX_FORCE_AUTO, + _SHR_PORT_MDIX_NORMAL, + _SHR_PORT_MDIX_XOVER, + _SHR_PORT_MDIX_COUNT /* last, please */ +} _shr_port_mdix_t; + +/* + * Defines: + * _SHR_PORT_MDIX_STATUS_* + * Purpose: + * Defines the MDI crossover state + */ +typedef enum _shr_port_mdix_status_e { + _SHR_PORT_MDIX_STATUS_NORMAL, + _SHR_PORT_MDIX_STATUS_XOVER, + _SHR_PORT_MDIX_STATUS_COUNT /* last, please */ +} _shr_port_mdix_status_t; + +/* + * Defines: + * _SHR_PORT_MEDIUM_* + * Purpose: + * Supported physical mediums + */ +typedef enum _shr_port_medium_e { + _SHR_PORT_MEDIUM_NONE = 0, + _SHR_PORT_MEDIUM_COPPER = 1, + _SHR_PORT_MEDIUM_FIBER = 2, + _SHR_PORT_MEDIUM_COUNT /* last, please */ +} _shr_port_medium_t; + +/* + * Defines: + * _SHR_PORT_PHY_CONTROL_* + * Purpose: + * PHY specific control settings + */ +typedef enum _shr_port_phy_control_e { + _SHR_PORT_PHY_CONTROL_FORWARD_ERROR_CORRECTION = 74, + _SHR_PORT_PHY_CONTROL_SOFTWARE_RX_LOS = 214, + _SHR_PORT_PHY_CONTROL_SOFTWARE_RX_LOS_LINK_WAIT_TIMER_US = 328, + _SHR_PORT_PHY_CONTROL_SOFTWARE_RX_LOS_RESTART_TIMER_US = 329 +} _shr_port_phy_control_t; + +/* + * Defines: + * _SHR_PORT_PRBS_POLYNOMIAL_* + * Purpose: + * PRBS polynomial type + */ +typedef enum _shr_port_prbs_polynomial_e { + _SHR_PORT_PRBS_POLYNOMIAL_X7_X6_1 = 0, + _SHR_PORT_PRBS_POLYNOMIAL_X15_X14_1 = 1, + _SHR_PORT_PRBS_POLYNOMIAL_X23_X18_1 = 2, + _SHR_PORT_PRBS_POLYNOMIAL_X31_X28_1 = 3, + _SHR_PORT_PRBS_POLYNOMIAL_X9_X5_1 = 4, + _SHR_PORT_PRBS_POLYNOMIAL_X11_X9_1 = 5, + _SHR_PORT_PRBS_POLYNOMIAL_X58_X31_1 = 6 +} _shr_port_prbs_polynomial_t; + +/* + * Defines: + * _SHR_PORT_PHY_CONTROL_FEC_* + * Purpose: + * PHY specific values for _SHR_PORT_PHY_CONTROL_FORWARD_ERROR_CORRECTION + */ +typedef enum _shr_port_phy_control_fec_e { + _SHR_PORT_PHY_CONTROL_FEC_OFF, + _SHR_PORT_PHY_CONTROL_FEC_ON, + _SHR_PORT_PHY_CONTROL_FEC_AUTO +} _shr_port_phy_control_fec_t; + +typedef enum _shr_port_phy_control_rx_los_e { + _SHR_PORT_PHY_CONTROL_RX_LOS_NONE, + _SHR_PORT_PHY_CONTROL_RX_LOS_SOFTWARE, + _SHR_PORT_PHY_CONTROL_RX_LOS_FIRMWARE +} _shr_port_phy_control_rx_los_t; + +#endif /* !_SHR_PORT_H */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/port_ability.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/port_ability.h @@ -0,0 +1,274 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2017 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ******************************************************************* + * File: port_ability.h + * Details: This file defines common network port modes. + * Its contents are not used directly by applications; + * it is used only by header files of parent APIs which + * need to define port modes. + ******************************************************************/ + +#ifndef _SHR_PORTABILITY_H +#define _SHR_PORTABILITY_H + +typedef unsigned int _shr_pa_encap_t; + +typedef struct _shr_port_ability_s { + _shr_port_mode_t speed_half_duplex; + _shr_port_mode_t speed_full_duplex; + _shr_port_mode_t pause; + _shr_port_mode_t interface; + _shr_port_mode_t medium; + _shr_port_mode_t loopback; + _shr_port_mode_t flags; + _shr_port_mode_t eee; + _shr_port_mode_t rsvd; + _shr_pa_encap_t encap; + _shr_port_mode_t fec; + _shr_port_mode_t channel; +} _shr_port_ability_t; + +#define _SHR_PA_ABILITY_ALL (0xffffffff) +#define _SHR_PA_ABILITY_NONE (0) + +/* + * Defines: + * _SHR_PA_SPEED_* + * Purpose: + * Defines for half duplex port speeds. + */ +#define _SHR_PA_SPEED_10MB (1 << 0) +#define _SHR_PA_SPEED_EXTENDED (1 << 1) +#define _SHR_PA_SPEED_27GB (1 << 2) +#define _SHR_PA_SPEED_50GB (1 << 3) +#define _SHR_PA_SPEED_53GB (1 << 4) +#define _SHR_PA_SPEED_100MB (1 << 5) +#define _SHR_PA_SPEED_1000MB (1 << 6) +#define _SHR_PA_SPEED_2500MB (1 << 7) +#define _SHR_PA_SPEED_3000MB (1 << 8) +#define _SHR_PA_SPEED_5000MB (1 << 9) +#define _SHR_PA_SPEED_6000MB (1 << 10) +#define _SHR_PA_SPEED_10GB (1 << 11) +#define _SHR_PA_SPEED_11GB (1 << 12) +#define _SHR_PA_SPEED_12GB (1 << 13) +#define _SHR_PA_SPEED_12P5GB (1 << 14) +#define _SHR_PA_SPEED_13GB (1 << 15) +#define _SHR_PA_SPEED_15GB (1 << 16) +#define _SHR_PA_SPEED_16GB (1 << 17) +#define _SHR_PA_SPEED_20GB (1 << 18) +#define _SHR_PA_SPEED_21GB (1 << 19) +#define _SHR_PA_SPEED_23GB (1 << 20) +#define _SHR_PA_SPEED_24GB (1 << 21) +#define _SHR_PA_SPEED_25GB (1 << 22) +#define _SHR_PA_SPEED_30GB (1 << 23) +#define _SHR_PA_SPEED_40GB (1 << 24) +#define _SHR_PA_SPEED_42GB (1 << 25) +#define _SHR_PA_SPEED_100GB (1 << 26) +#define _SHR_PA_SPEED_120GB (1 << 27) +#define _SHR_PA_SPEED_127GB (1 << 28) +#define _SHR_PA_SPEED_106GB (1 << 29) +#define _SHR_PA_SPEED_48GB (1 << 30) +#define _SHR_PA_SPEED_32GB (1 << 31) + +/* + * Defines: + * _SHR_PA_PAUSE_* + * Purpose: + * Defines for flow control abilities. + */ +#define _SHR_PA_PAUSE_TX (1 << 0) /* TX pause capable */ +#define _SHR_PA_PAUSE_RX (1 << 1) /* RX pause capable */ +#define _SHR_PA_PAUSE_ASYMM (1 << 2) /* Asymm pause capable (R/O) */ + +/* + * Defines: + * _SHR_PA_FEC_* + * Purpose: + * Defines for FEC abilities. + */ + +#define _SHR_PA_FEC_NONE (1 << 0) /* FEC is not requested */ +#define _SHR_PA_FEC_CL74 (1 << 1) /* FEC CL74 ability request */ +#define _SHR_PA_FEC_CL91 (1 << 2) /* FEC Cl91 ability request */ + +/* + * Defines: + * _SHR_PA_INTF_* + * Purpose: + * Defines for port interfaces supported. + */ +#define _SHR_PA_INTF_TBI (1 << 0) /* TBI mode supported */ +#define _SHR_PA_INTF_MII (1 << 1) /* MII mode supported */ +#define _SHR_PA_INTF_GMII (1 << 2) /* GMII mode supported */ +#define _SHR_PA_INTF_RGMII (1 << 3) /* RGMII mode supported */ +#define _SHR_PA_INTF_SGMII (1 << 4) /* SGMII mode supported */ +#define _SHR_PA_INTF_XGMII (1 << 5) /* XGMII mode supported */ +#define _SHR_PA_INTF_QSGMII (1 << 6) /* QSGMII mode supported */ +#define _SHR_PA_INTF_CGMII (1 << 7) /* CGMII mode supported */ + +/* + * Defines: + * _SHR_PA_CHANNEL_* + * Purpose: + * Defines for CHANNEL abilities. + */ + +#define _SHR_PA_CHANNEL_LONG (1 << 0) /* Channel is long */ +#define _SHR_PA_CHANNEL_SHORT (1 << 1) /* Channel is short */ + +/* + * Defines: + * _SHR_PA_MEDIUM_* + * Purpose: + * Defines for port medium modes. + */ +#define _SHR_PA_MEDIUM_COPPER (1 << 0) +#define _SHR_PA_MEDIUM_FIBER (1 << 1) +#define _SHR_PA_MEDIUM_BACKPLANE (1 << 2) + +/* + * Defines: + * _SHR_PA_LOOPBACK_* + * Purpose: + * Defines for port loopback modes. + */ +#define _SHR_PA_LB_NONE (1 << 0) /* Useful for automated test */ +#define _SHR_PA_LB_MAC (1 << 1) /* MAC loopback supported */ +#define _SHR_PA_LB_PHY (1 << 2) /* PHY loopback supported */ +#define _SHR_PA_LB_LINE (1 << 3) /* PHY lineside loopback */ + +/* + * Defines: + * _SHR_PA_FLAGS_* + * Purpose: + * Defines for the reest of port ability flags. + */ +#define _SHR_PA_AUTONEG (1 << 0) /* Auto-negotiation */ +#define _SHR_PA_COMBO (1 << 1) /* COMBO ports support both + * copper and fiber interfaces */ +#define _SHR_PA_PAUSE (_SHR_PA_PAUSE_TX | _SHR_PA_PAUSE_RX) + +#define _SHR_PA_SPEED_ALL (_SHR_PA_SPEED_127GB | \ + _SHR_PA_SPEED_120GB | \ + _SHR_PA_SPEED_106GB | \ + _SHR_PA_SPEED_100GB | \ + _SHR_PA_SPEED_53GB | \ + _SHR_PA_SPEED_50GB | \ + _SHR_PA_SPEED_42GB | \ + _SHR_PA_SPEED_40GB | \ + _SHR_PA_SPEED_32GB | \ + _SHR_PA_SPEED_30GB | \ + _SHR_PA_SPEED_27GB | \ + _SHR_PA_SPEED_25GB | \ + _SHR_PA_SPEED_24GB | \ + _SHR_PA_SPEED_23GB | \ + _SHR_PA_SPEED_21GB | \ + _SHR_PA_SPEED_20GB | \ + _SHR_PA_SPEED_16GB | \ + _SHR_PA_SPEED_15GB | \ + _SHR_PA_SPEED_13GB | \ + _SHR_PA_SPEED_12P5GB | \ + _SHR_PA_SPEED_12GB | \ + _SHR_PA_SPEED_11GB | \ + _SHR_PA_SPEED_10GB | \ + _SHR_PA_SPEED_6000MB | \ + _SHR_PA_SPEED_5000MB | \ + _SHR_PA_SPEED_3000MB | \ + _SHR_PA_SPEED_2500MB | \ + _SHR_PA_SPEED_1000MB | \ + _SHR_PA_SPEED_100MB | \ + _SHR_PA_SPEED_10MB) + + +#define _SHR_PA_SPEED_MAX(m) (((m) & _SHR_PA_SPEED_127GB) ? 127000 : \ + ((m) & _SHR_PA_SPEED_120GB) ? 120000 : \ + ((m) & _SHR_PA_SPEED_106GB) ? 106000 : \ + ((m) & _SHR_PA_SPEED_100GB) ? 100000 : \ + ((m) & _SHR_PA_SPEED_53GB) ? 53000 : \ + ((m) & _SHR_PA_SPEED_50GB) ? 50000 : \ + ((m) & _SHR_PA_SPEED_42GB) ? 42000 : \ + ((m) & _SHR_PA_SPEED_40GB) ? 40000 : \ + ((m) & _SHR_PA_SPEED_32GB) ? 32000 : \ + ((m) & _SHR_PA_SPEED_30GB) ? 30000 : \ + ((m) & _SHR_PA_SPEED_27GB) ? 27000 : \ + ((m) & _SHR_PA_SPEED_25GB) ? 25000 : \ + ((m) & _SHR_PA_SPEED_24GB) ? 24000 : \ + ((m) & _SHR_PA_SPEED_23GB) ? 23000 : \ + ((m) & _SHR_PA_SPEED_21GB) ? 21000 : \ + ((m) & _SHR_PA_SPEED_20GB) ? 20000 : \ + ((m) & _SHR_PA_SPEED_16GB) ? 16000 : \ + ((m) & _SHR_PA_SPEED_15GB) ? 15000 : \ + ((m) & _SHR_PA_SPEED_13GB) ? 13000 : \ + ((m) & _SHR_PA_SPEED_12P5GB) ? 12500 : \ + ((m) & _SHR_PA_SPEED_12GB) ? 12000 : \ + ((m) & _SHR_PA_SPEED_11GB) ? 11000 : \ + ((m) & _SHR_PA_SPEED_10GB) ? 10000 : \ + ((m) & _SHR_PA_SPEED_6000MB) ? 6000 : \ + ((m) & _SHR_PA_SPEED_5000MB) ? 5000 : \ + ((m) & _SHR_PA_SPEED_3000MB) ? 3000 : \ + ((m) & _SHR_PA_SPEED_2500MB) ? 2500 : \ + ((m) & _SHR_PA_SPEED_1000MB) ? 1000 : \ + ((m) & _SHR_PA_SPEED_100MB) ? 100 : \ + ((m) & _SHR_PA_SPEED_10MB) ? 10 : 0) + + +#define _SHR_PA_SPEED(s) ((127000 == (s)) ? _SHR_PA_SPEED_127GB : \ + (120000 == (s)) ? _SHR_PA_SPEED_120GB : \ + (106000 == (s)) ? _SHR_PA_SPEED_106GB : \ + (100000 == (s)) ? _SHR_PA_SPEED_100GB : \ + (53000 == (s)) ? _SHR_PA_SPEED_53GB : \ + (50000 == (s)) ? _SHR_PA_SPEED_50GB : \ + (42000 == (s)) ? _SHR_PA_SPEED_42GB : \ + (40000 == (s)) ? _SHR_PA_SPEED_40GB : \ + (32000 == (s)) ? _SHR_PA_SPEED_32GB : \ + (30000 == (s)) ? _SHR_PA_SPEED_30GB : \ + (27000 == (s)) ? _SHR_PA_SPEED_27GB : \ + (25000 == (s)) ? _SHR_PA_SPEED_25GB : \ + (24000 == (s)) ? _SHR_PA_SPEED_24GB : \ + (23000 == (s)) ? _SHR_PA_SPEED_23GB : \ + (21000 == (s)) ? _SHR_PA_SPEED_21GB : \ + (20000 == (s)) ? _SHR_PA_SPEED_20GB : \ + (16000 == (s)) ? _SHR_PA_SPEED_16GB : \ + (15000 == (s)) ? _SHR_PA_SPEED_15GB : \ + (13000 == (s)) ? _SHR_PA_SPEED_13GB : \ + (12500 == (s)) ? _SHR_PA_SPEED_12P5GB : \ + (12000 == (s)) ? _SHR_PA_SPEED_12GB : \ + (11000 == (s)) ? _SHR_PA_SPEED_11GB : \ + (10000 == (s)) ? _SHR_PA_SPEED_10GB : \ + (6000 == (s)) ? _SHR_PA_SPEED_6000MB : \ + (5000 == (s)) ? _SHR_PA_SPEED_5000MB : \ + (3000 == (s)) ? _SHR_PA_SPEED_3000MB : \ + (2500 == (s)) ? _SHR_PA_SPEED_2500MB : \ + (1000 == (s)) ? _SHR_PA_SPEED_1000MB : \ + (100 == (s)) ? _SHR_PA_SPEED_100MB : \ + (10 == (s)) ? _SHR_PA_SPEED_10MB : 0) + + +/* + * Defines: + * _SHR_PA_EEE_* + * Purpose: + * Defines for EEE + */ +#define _SHR_PA_EEE_100MB_BASETX (1 << 0) /* EEE for 100M-BaseTX */ +#define _SHR_PA_EEE_1GB_BASET (1 << 1) /* EEE for 1G-BaseT */ +#define _SHR_PA_EEE_10GB_BASET (1 << 2) /* EEE for 10G-BaseT */ +#define _SHR_PA_EEE_10GB_KX (1 << 3) /* EEE for 10G-KX */ +#define _SHR_PA_EEE_10GB_KX4 (1 << 4) /* EEE for 10G-KX4 */ +#define _SHR_PA_EEE_10GB_KR (1 << 5) /* EEE for 10G-KR */ + +#endif /* !_SHR_PORTABILITY_H */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/portmode.h +++ linux-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-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/rx.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/rx.h @@ -0,0 +1,535 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2017 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ********************************************************************* + * File: rx.h + * Details: Packet Receive Reason Types + ********************************************************************/ + +#ifndef _SHR_RX_H_ +#define _SHR_RX_H_ + +#include +#include + +/* + * PKT RX Packet Reasons; reason CPU received the packet. + * Notes: It is possible no reasons are set (directed to CPU from ARL + * for example), or multiple reasons may be set. + */ + +typedef enum _shr_rx_reason_e { + _SHR_RX_INVALID = 0, + _SHR_RX_ARP = 1, /* ARP Packet */ + _SHR_RX_BPDU = 2, /* BPDU Packet */ + _SHR_RX_BROADCAST = 3, /* Broadcast packet */ + _SHR_RX_CLASS_BASED_MOVE = 4, /* Class-based move prevented */ + _SHR_RX_CLASS_TAG_PACKETS = 5, /* Higig Header with PPD=1 */ + _SHR_RX_CONTROL = 6, /* Control frame or reserved addr */ + _SHR_RX_CPU_LEARN = 7, /* CPU Learned (or VLAN not found */ + /* on Strata devices) */ + _SHR_RX_DEST_LOOKUP_FAIL = 8, /* Destination lookup fail (or L3 */ + /* station move on Strata devices) */ + _SHR_RX_DHCP = 9, /* DHCP packets */ + _SHR_RX_DOS_ATTACK = 10, /* DOS Attack Packet */ + _SHR_RX_E2E_HOL_IBP = 11, /* E2E HOL or IBP Packet */ + _SHR_RX_ENCAP_HIGIG_ERROR = 12, /* Non-HG packets received on an */ + /* E-HG port */ + _SHR_RX_FILTER_MATCH = 13, /* Filter Match */ + _SHR_RX_GRE_CHECKSUM = 14, /* GRE checksum */ + _SHR_RX_GRE_SOURCE_ROUTE = 15, /* GRE source routing */ + _SHR_RX_HIGIG_CONTROL = 16, /* Higig Packet with Control Opcode */ + _SHR_RX_HIGIG_HDR_ERROR = 17, /* Higig+ header errors */ + _SHR_RX_ICMP_REDIRECT = 18, /* ICMP Recirect */ + _SHR_RX_IGMP = 19, /* IGMP packet */ + _SHR_RX_INGRESS_FILTER = 20, /* Ingress Filter (VLAN membership) */ + _SHR_RX_IP = 21, /* IP packet */ + _SHR_RX_IPFIX_RATE_VIOLATION = 22, /* IPFIX flows exceed metering */ + _SHR_RX_IP_MCAST_MISS = 23, /* IPMC miss */ + _SHR_RX_IP_OPTION_VERSION = 24, /* IP options present or IP ver != 4 */ + _SHR_RX_IPMC = 25, /* Class D IP multicast packet */ + _SHR_RX_IPMC_RSVD = 26, /* IPMC Reserved Packet */ + _SHR_RX_L2_CPU = 27, /* L2_TABLE - copy to CPU (on 5690) */ + _SHR_RX_L2_DEST_MISS = 28, /* L2 destination lookup failure */ + _SHR_RX_L2_LEARN_LIMIT = 29, /* L2 Learn Limit */ + _SHR_RX_L2_MOVE = 30, /* L2 Station Movement */ + _SHR_RX_L2_MTU_FAIL = 31, /* L2 MTU check fail */ + _SHR_RX_L2_NON_UNICAST_MISS = 32, /* L2 Non-Unicast lookup miss */ + _SHR_RX_L2_SOURCE_MISS = 33, /* L2 source lookup failure */ + _SHR_RX_L3_ADDR_BIND_FAIL = 34, /* MAC to IP bind check failure */ + _SHR_RX_L3_DEST_MISS = 35, /* L3 DIP Miss */ + _SHR_RX_L3_HEADER_ERROR = 36, /* L3 header - IP options, */ + _SHR_RX_L3_MTU_FAIL = 37, /* L3 MTU check fail */ + _SHR_RX_L3_SLOW_PATH = 38, /* L3 slow path processed pkt. */ + _SHR_RX_L3_SOURCE_MISS = 39, /* L3 SIP Miss */ + _SHR_RX_L3_SOUCE_MOVE = 40, /* L3 Station Movement */ + _SHR_RX_MARTIAN_ADDR = 41, /* Pkt. with Martian address */ + _SHR_RX_MCAST_IDX_ERROR = 42, /* Multicast index error */ + _SHR_RX_MCAST_MISS = 43, /* MC miss */ + _SHR_RX_MIM_SERVICE_ERROR = 44, /* MiM terminated unicast packets */ + /* that do not have a valid I-SID */ + _SHR_RX_MPLS_CTRL_WORD_ERROR = 45, /* MPLS Control Word type is not 0 */ + _SHR_RX_MPLS_ERROR = 46, /* MPLS error */ + _SHR_RX_MPLS_INVALID_ACTION = 47, /* MPLS Invalid Action */ + _SHR_RX_MPLS_INVALID_PAYLOAD = 48, /* MPLS Invalid Payload */ + _SHR_RX_MPLS_LABEL_MISS = 49, /* MPLS table miss */ + _SHR_RX_MPLS_SEQUENCE_NUMBER = 50, /* MPLS Sequence number */ + _SHR_RX_MPLS_TTL = 51, /* MPLS TTL */ + _SHR_RX_MULTICAST = 52, /* Multicast packet */ + _SHR_RX_NHOP = 53, /* Copy to CPU from NH Idx Tbl */ + _SHR_RX_OAM_ERROR = 54, /* OAM packets to CPU for error cases */ + _SHR_RX_OAM_SLOW_PATH = 55, /* OAM packets to CPU - slowpath */ + /* process */ + _SHR_RX_OAM_LMDM = 56, /* OAM LMM/LMR, DMM/DMR packets to CPU */ + _SHR_RX_PARITY_ERROR = 57, /* Parity error on IP tables */ + _SHR_RX_PROTOCOL = 58, /* Protocol Packet */ + _SHR_RX_SAMPLE_DEST = 59, /* Egress sFlow sampled */ + _SHR_RX_SAMPLE_SOURCE = 60, /* Ingress sFlow sampled */ + _SHR_RX_SHARED_VLAN_MISMATCH = 61, /* Private VLAN Mismatch */ + _SHR_RX_SOURCE_ROUTE = 62, /* Source routing bit set */ + _SHR_RX_TIME_STAMP = 63, /* Network time sync packet */ + _SHR_RX_TTL = 64, /* TTL <= 0 or TTL < IPMC threshold */ + _SHR_RX_TTL1 = 65, /* L3UC or IPMC packet with TTL */ + /* equal to 1 */ + _SHR_RX_TUNNEL_ERROR = 66, /* Tunnel error trap */ + _SHR_RX_UDP_CHECKSUM = 67, /* UDP checksum */ + _SHR_RX_UNKNOWN_VLAN = 68, /* Unknown VLAN; VID = 0xfff; */ + /* CPU Learn bit (on 5690 devices) */ + _SHR_RX_URPF_FAIL = 69, /* URPF Check Failed */ + _SHR_RX_VC_LABEL_MISS = 70, /* VPLS table miss */ + _SHR_RX_VLAN_FILTER_MATCH = 71, /* VLAN Filter Match */ + _SHR_RX_WLAN_CLIENT_ERROR = 72, /* ROC error packets to the CPU */ + _SHR_RX_WLAN_SLOW_PATH = 73, /* WLAN packets slowpath to the CPU */ + _SHR_RX_WLAN_DOT1X_DROP = 74, /* WLAN client is unauthenticated */ + _SHR_RX_EXCEPTION_FLOOD = 75, /* Exception processing or flooding */ + /* (Robo chips) */ + _SHR_RX_TIMESYNC = 76, /* Time Sync protocol packet */ + _SHR_RX_EAV_DATA = 77, /* Ethernet AV data packet */ + _SHR_RX_SAME_PORT_BRIDGE = 78, /* Hairpin or Same port */ + /* switching/bridging */ + _SHR_RX_SPLIT_HORIZON = 79, /* Basic bridging or VPLS Split */ + /* horizon */ + _SHR_RX_L4_ERROR = 80, /* TCP/UDP header or port number */ + /* errors */ + _SHR_RX_STP = 81, /* STP Ingress or Egress checks */ + _SHR_RX_EGRESS_FILTER_REDIRECT = 82, /* Vlan egress filter redirect */ + _SHR_RX_FILTER_REDIRECT = 83, /* Field processor redirect */ + _SHR_RX_LOOPBACK = 84, /* Loopbacked */ + _SHR_RX_VLAN_TRANSLATE = 85, /* VLAN translation table missed when */ + /* it is expected to hit */ + _SHR_RX_MMRP = 86, /* Packet of type MMRP */ + _SHR_RX_SRP = 87, /* Packet of type SRP */ + _SHR_RX_TUNNEL_CONTROL = 88, /* Tunnel control packet */ + _SHR_RX_L2_MARKED = 89, /* L2 table marked */ + _SHR_RX_WLAN_SLOWPATH_KEEPALIVE = 90, /* WLAN slowpath to the CPU, */ + /* otherwise dropped */ + _SHR_RX_STATION = 91, /* My Station packet to CPU */ + _SHR_RX_NIV = 92, /* NIV packet */ + _SHR_RX_NIV_PRIO_DROP = 93, /* NIV packet, priority drop */ + _SHR_RX_NIV_INTERFACE_MISS = 94, /* NIV packet, interface miss */ + _SHR_RX_NIV_RPF_FAIL = 95, /* NIV packet, RPF failed */ + _SHR_RX_NIV_TAG_INVALID = 96, /* NIV packet, invalid tag */ + _SHR_RX_NIV_TAG_DROP = 97, /* NIV packet, tag drop */ + _SHR_RX_NIV_UNTAG_DROP = 98, /* NIV packet, untagged drop */ + _SHR_RX_TRILL = 99, /* TRILL packet */ + _SHR_RX_TRILL_INVALID = 100, /* TRILL packet, header error */ + _SHR_RX_TRILL_MISS = 101, /* TRILL packet, lookup miss */ + _SHR_RX_TRILL_RPF_FAIL = 102, /* TRILL packet, RPF check failed */ + _SHR_RX_TRILL_SLOWPATH = 103, /* TRILL packet, slowpath to CPU */ + _SHR_RX_TRILL_CORE_IS_IS = 104, /* TRILL packet, Core IS-IS */ + _SHR_RX_TRILL_TTL = 105, /* TRILL packet, TTL check failed */ + _SHR_RX_BFD_SLOWPATH = 106, /* The BFD packet is being fwd to the */ + /* local uC for processing */ + _SHR_RX_BFD = 107, /* BFD Error */ + _SHR_RX_MIRROR = 108, /* Mirror packet */ + _SHR_RX_REGEX_ACTION = 109, /* Flow tracker */ + _SHR_RX_REGEX_MATCH = 110, /* Signature Match */ + _SHR_RX_FAILOVER_DROP = 111, /* Protection drop data */ + _SHR_RX_WLAN_TUNNEL_ERROR = 112, /* WLAN shim header error to CPU */ + _SHR_RX_CONGESTION_CNM_PROXY = 113, /* Congestion CNM Proxy */ + _SHR_RX_CONGESTION_CNM_PROXY_ERROR = 114, /* Congestion CNM Proxy Error */ + _SHR_RX_CONGESTION_CNM = 115, /* Congestion CNM Internal Packet */ + _SHR_RX_MPLS_UNKNOWN_ACH = 116, /* MPLS Unknown ACH */ + _SHR_RX_MPLS_LOOKUPS_EXCEEDED = 117, /* MPLS out of lookups */ + _SHR_RX_MPLS_RESERVED_ENTROPY_LABEL = 118, /* MPLS Entropy label in unallowed */ + /* range */ + _SHR_RX_MPLS_ILLEGAL_RESERVED_LABEL = 119, /* MPLS illegal reserved label */ + _SHR_RX_MPLS_ROUTER_ALERT_LABEL = 120, /* MPLS alert label */ + _SHR_RX_NIV_PRUNE = 121, /* NIV access port pruning (dst = src) */ + _SHR_RX_VIRTUAL_PORT_PRUNE = 122, /* SVP == DVP */ + _SHR_RX_NON_UNICAST_DROP = 123, /* Explicit multicast packet drop */ + _SHR_RX_TRILL_PACKET_PORT_MISMATCH = 124, /* TRILL packet vs Rbridge port */ + /* conflict */ + _SHR_RX_WLAN_CLIENT_MOVE = 125, /* WLAN client moved */ + _SHR_RX_WLAN_SOURCE_PORT_MISS = 126, /* WLAN SVP miss */ + _SHR_RX_WLAN_CLIENT_SOURCE_MISS = 127, /* WLAN client database SA miss */ + _SHR_RX_WLAN_CLIENT_DEST_MISS = 128, /* WLAN client database DA miss */ + _SHR_RX_WLAN_MTU = 129, /* WLAN MTU error */ + _SHR_RX_TRILL_NAME = 130, /* TRILL packet, Name check failed */ + _SHR_RX_L2GRE_SIP_MISS = 131, /* L2 GRE SIP miss */ + _SHR_RX_L2GRE_VPN_ID_MISS = 132, /* L2 GRE VPN id miss */ + _SHR_RX_TIMESYNC_UNKNOWN_VERSION = 133, /* Unknown version of IEEE1588 */ + _SHR_RX_BFD_ERROR = 134, /* BFD ERROR */ + _SHR_RX_BFD_UNKNOWN_VERSION = 135, /* BFD UNKNOWN VERSION */ + _SHR_RX_BFD_INVALID_VERSION = 136, /* BFD INVALID VERSION */ + _SHR_RX_BFD_LOOKUP_FAILURE = 137, /* BFD LOOKUP FAILURE */ + _SHR_RX_BFD_INVALID_PACKET = 138, /* BFD INVALID PACKET */ + _SHR_RX_VXLAN_SIP_MISS = 139, /* Vxlan SIP miss */ + _SHR_RX_VXLAN_VPN_ID_MISS = 140, /* Vxlan VPN id miss */ + _SHR_RX_FCOE_ZONE_CHECK_FAIL = 141, /* Fcoe zone check failed */ + _SHR_RX_IPMC_INTERFACE_MISMATCH = 142, /* IPMC input interface check failed */ + _SHR_RX_NAT = 143, /* NAT */ + _SHR_RX_TCP_UDP_NAT_MISS = 144, /* TCP/UDP packet NAT lookup miss */ + _SHR_RX_ICMP_NAT_MISS = 145, /* ICMP packet NAT lookup miss */ + _SHR_RX_NAT_FRAGMENT = 146, /* NAT lookup on fragmented packet */ + _SHR_RX_NAT_MISS = 147, /* Non TCP/UDP/ICMP packet NAT lookup */ + /* miss */ + _SHR_RX_UNKNOWN_SUBTENTING_PORT = 148, /* UNKNOWN_SUBTENTING_PORT */ + _SHR_RX_LLTAG_ABSENT_DROP = 149, /* LLTAG_ABSENT */ + _SHR_RX_LLTAG_PRESENT_DROP = 150, /* LLTAG_PRESENT */ + _SHR_RX_OAM_CCM_SLOWPATH = 151, /* OAM CCM packet copied to CPU */ + _SHR_RX_OAM_INCOMPLETE_OPCODE = 152, /* OAM INCOMPLETE_OPCODE */ + _SHR_RX_BHH_OAM_PACKET = 153, /* BHH OAM Packet */ + _SHR_RX_RESERVED_0 = 154, /* Broadcom Reserved */ + _SHR_RX_OAM_MPLS_LMDM = 155, /* MPLS LM/DM (RFC 6374) packet */ + _SHR_RX_SAT = 156, /* OAM SAT pkt */ + _SHR_RX_SAMPLE_SOURCE_FLEX = 157, /* Flexible sampled packets to CPU */ + _SHR_RX_FLEX_SFLOW = 158, /* Flex Sflow? */ + _SHR_RX_VXLT_MISS = 159, /* VLAN Translation miss packet */ + _SHR_RX_TUNNEL_DECAP_ECN_ERROR = 160, /* Tunnel decap ECN error */ + _SHR_RX_TUNNEL_OBJECT_VALIDATION_FAIL = 161, /* Tunnel Object Validation Fail */ + _SHR_RX_L3_CPU = 162, /* L3 Copy to CPU */ + _SHR_RX_TUNNEL_ADAPT_LOOKUP_MISS = 163, /* Tunnel Adapt Lookup Miss Drop */ + _SHR_RX_PACKET_FLOW_SELECT_MISS = 164, /* Packet Flow Select Miss */ + _SHR_RX_PROTECTION_DATA_DROP = 165, /* Protection Data Drop */ + _SHR_RX_PACKET_FLOW_SELECT = 166, /* Packet Flow Select */ + _SHR_RX_OTHER_LOOKUP_MISS = 167, /* Neither Source or Dest type of Lookup Miss */ + _SHR_RX_INVALID_TPID = 168, /* Invalid TPID */ + _SHR_RX_MPLS_CONTROL_PACKET = 169, /* MPLS Control Packet */ + _SHR_RX_TUNNEL_TTL_ERROR = 170, /* Tunnel TTL Error */ + _SHR_RX_L2_HEADER_ERROR = 171, /* L2 header */ + _SHR_RX_OTHER_LOOKUP_HIT = 172, /* Neither Source or Dest type of Lookup Hit */ + _SHR_RX_L2_SRC_LOOKUP_MISS = 173, /* L2 Source Lookup Miss */ + _SHR_RX_L2_SRC_LOOKUP_HIT = 174, /* L2 Source Lookup Hit */ + _SHR_RX_L2_DST_LOOKUP_MISS = 175, /* L2 Dest Lookup Miss */ + _SHR_RX_L2_DST_LOOKUP_HIT = 176, /* L2 Dest Lookup Hit */ + _SHR_RX_L3_SRC_ROUTE_LOOKUP_MISS = 177, /* L3 Source Route Lookup Miss */ + _SHR_RX_L3_SRC_HOST_LOOKUP_MISS = 178, /* L3 Source Host Lookup Miss */ + _SHR_RX_L3_SRC_ROUTE_LOOKUP_HIT = 179, /* L3 Source Route Lookup Hit */ + _SHR_RX_L3_SRC_HOST_LOOKUP_HIT = 180, /* L3 Source Host Lookup Hit */ + _SHR_RX_L3_DST_ROUTE_LOOKUP_MISS = 181, /* L3 Dest Route Lookup Miss */ + _SHR_RX_L3_DST_HOST_LOOKUP_MISS = 182, /* L3 Dest Host Lookup Miss */ + _SHR_RX_L3_DST_ROUTE_LOOKUP_HIT = 183, /* L3 Dest Route Lookup Hit */ + _SHR_RX_L3_DST_HOST_LOOKUP_HIT = 184, /* L3 Dest Host Lookup Hit */ + _SHR_RX_VLAN_TRANSLATE1_LOOKUP1_MISS = 185, /* VLAN Translate1 Lookup1 Miss */ + _SHR_RX_VLAN_TRANSLATE1_LOOKUP2_MISS = 186, /* VLAN Translate1 Lookup2 Miss */ + _SHR_RX_MPLS_LOOKUP1_MISS = 187, /* MPLS Lookup1 Miss */ + _SHR_RX_MPLS_LOOKUP2_MISS = 188, /* MPLS Lookup2 Miss */ + _SHR_RX_L3_TUNNEL_LOOKUP_MISS = 189, /* L3 Tunnel Lookup Miss */ + _SHR_RX_VLAN_TRANSLATE2_LOOKUP1_MISS = 190, /* VLAN Translate2 Lookup1 Miss */ + _SHR_RX_VLAN_TRANSLATE2_LOOKUP2_MISS = 191, /* VLAN Translate2 Lookup2 Miss */ + _SHR_RX_L2_STU_FAIL = 192, /* L2 STU check fail */ + _SHR_RX_SR_COUNTER_EXCEEDED = 193, /* Seamless Redundancy(SR) - */ + /* Counter Threshold Exceeded */ + _SHR_RX_SR_COPY_TO_CPU_BIT0 = 194, /* Seamless Redundancy(SR) copy to CPU */ + /* SR custom reason code bit 0 */ + _SHR_RX_SR_COPY_TO_CPU_BIT1 = 195, /* SR custom reason code bit 1 */ + _SHR_RX_SR_COPY_TO_CPU_BIT2 = 196, /* SR custom reason code bit 2 */ + _SHR_RX_SR_COPY_TO_CPU_BIT3 = 197, /* SR custom reason code bit 3 */ + _SHR_RX_SR_COPY_TO_CPU_BIT4 = 198, /* SR custom reason code bit 4 */ + _SHR_RX_SR_COPY_TO_CPU_BIT5 = 199, /* SR custom reason code bit 5 */ + _SHR_RX_REASON_COUNT = 200 /* MUST BE LAST */ +} _shr_rx_reason_t; + +#define _SHR_RX_REASON_NAMES_INITIALIZER { \ + "Invalid", \ + "Arp", \ + "Bpdu", \ + "Broadcast", \ + "ClassBasedMove", \ + "ClassTagPackets", \ + "Control", \ + "CpuLearn", \ + "DestLookupFail", \ + "Dhcp", \ + "DosAttack", \ + "E2eHolIbp", \ + "EncapHiGigError", \ + "FilterMatch", \ + "GreChecksum", \ + "GreSourceRoute", \ + "HigigControl", \ + "HigigHdrError", \ + "IcmpRedirect", \ + "Igmp", \ + "IngressFilter", \ + "Ip", \ + "IpfixRateViolation", \ + "IpMcastMiss", \ + "IpOptionVersion", \ + "Ipmc", \ + "IpmcRsvd", \ + "L2Cpu", \ + "L2DestMiss", \ + "L2LearnLimit", \ + "L2Move", \ + "L2MtuFail", \ + "L2NonUnicastMiss", \ + "L2SourceMiss", \ + "L3AddrBindFail", \ + "L3DestMiss", \ + "L3HeaderError", \ + "L3MtuFail", \ + "L3Slowpath", \ + "L3SourceMiss", \ + "L3SourceMove", \ + "MartianAddr", \ + "McastIdxError", \ + "McastMiss", \ + "MimServiceError", \ + "MplsCtrlWordError", \ + "MplsError", \ + "MplsInvalidAction", \ + "MplsInvalidPayload", \ + "MplsLabelMiss", \ + "MplsSequenceNumber", \ + "MplsTtl", \ + "Multicast", \ + "Nhop", \ + "OamError", \ + "OamSlowPath", \ + "OamLMDM", \ + "ParityError", \ + "Protocol", \ + "SampleDest", \ + "SampleSource", \ + "SharedVlanMismatch", \ + "SourceRoute", \ + "TimeStamp", \ + "Ttl", \ + "Ttl1", \ + "TunnelError", \ + "UdpChecksum", \ + "UnknownVlan", \ + "UrpfFail", \ + "VcLabelMiss", \ + "VlanFilterMatch", \ + "WlanClientError", \ + "WlanSlowPath", \ + "WlanDot1xDrop", \ + "ExceptionFlood", \ + "Timesync", \ + "EavData", \ + "SamePortBridge", \ + "SplitHorizon", \ + "L4Error", \ + "Stp", \ + "EgressFilterRedirect", \ + "FilterRedirect", \ + "Loopback", \ + "VlanTranslate", \ + "Mmrp", \ + "Srp", \ + "TunnelControl", \ + "L2Marked", \ + "WlanSlowpathKeepalive", \ + "Station", \ + "Niv", \ + "NivPrioDrop", \ + "NivInterfaceMiss", \ + "NivRpfFail", \ + "NivTagInvalid", \ + "NivTagDrop", \ + "NivUntagDrop", \ + "Trill", \ + "TrillInvalid", \ + "TrillMiss", \ + "TrillRpfFail", \ + "TrillSlowpath", \ + "TrillCoreIsIs", \ + "TrillTtl", \ + "BfdSlowpath", \ + "Bfd", \ + "Mirror", \ + "RegexAction", \ + "RegexMatch", \ + "FailoverDrop", \ + "WlanTunnelError", \ + "CongestionCnmProxy", \ + "CongestionCnmProxyError", \ + "CongestionCnm", \ + "MplsUnknownAch", \ + "MplsLookupsExceeded", \ + "MplsReservedEntropyLabel", \ + "MplsIllegalReservedLabel", \ + "MplsRouterAlertLabel", \ + "NivPrune", \ + "VirtualPortPrune", \ + "NonUnicastDrop", \ + "TrillPacketPortMismatch", \ + "WlanClientMove", \ + "WlanSourcePortMiss", \ + "WlanClientSourceMiss", \ + "WlanClientDestMiss", \ + "WlanMtu", \ + "TrillName", \ + "L2GreSipMiss", \ + "L2GreVpnIdMiss", \ + "TimesyncUnknownVersion", \ + "BfdError", \ + "BfdUnknownVersion", \ + "BfdInvalidVersion", \ + "BfdLookupFailure", \ + "BfdInvalidPacket", \ + "VxlanSipMiss", \ + "VxlanVpnIdMiss", \ + "FcoeZoneCheckFail", \ + "IpmcInterfaceMismatch", \ + "Nat", \ + "TcpUdpNatMiss", \ + "IcmpNatMiss", \ + "NatFragment", \ + "NatMiss", \ + "UnknownSubtentingPort", \ + "LLTagAbsentDrop", \ + "LLTagpresenDrop", \ + "OAMCCMslowpath", \ + "OAMIncompleteOpcode", \ + "OAMCCMpacket", \ + "Reserved0", \ + "OAMMplsLmDM", \ + "SAT", \ + "SampleSourceFlex", \ + "FlexSflow", \ + "VxltMiss", \ + "TunnelDecapEcnError", \ + "TunnelObjectValidationFail", \ + "L3Cpu", \ + "TunnelAdaptLookupMiss", \ + "PacketFlowSelectMiss", \ + "ProtectionDataDrop", \ + "PacketFlowSelect", \ + "OtherLookupMiss", \ + "InvalidTpid", \ + "MplsControlPacket", \ + "TunnelTtlError", \ + "L2HeaderError", \ + "OtherLookupHit", \ + "L2SrcLookupMiss", \ + "L2SrcLookupHit", \ + "L2DstLookupMiss", \ + "L2DstLookupHit", \ + "L3SrcRouteLookupMiss", \ + "L3SrcHostLookupMiss", \ + "L3SrcRouteLookupHit", \ + "L3SrcHostLookupHit", \ + "L3DstRouteLookupMiss", \ + "L3DstHostLookupMiss", \ + "L3DstRouteLookupHit", \ + "L3DstHostLookupHit", \ + "MplsLookup1Miss", \ + "MplsLookup2Miss", \ + "L3TunnelLookupMiss", \ + "VlanTranslate1Lookup1Miss",\ + "VlanTranslate1Lookup2Miss",\ + "VlanTranslate2Lookup1Miss",\ + "VlanTranslate2Lookup2Miss",\ + "L2StuFail", \ + "SrCounterExceeded", \ + "SrCopyToCpuBit0", \ + "SrCopyToCpuBit1", \ + "SrCopyToCpuBit2", \ + "SrCopyToCpuBit3", \ + "SrCopyToCpuBit4", \ + "SrCopyToCpuBit5", \ +} + +/* + * Set of "reasons" (see _SHR_RX_*) why a packet came to the CPU. + */ +typedef struct _shr_rx_reasons_s { + SHR_BITDCL pbits[_SHR_BITDCLSIZE(_SHR_RX_REASON_COUNT)]; +} _shr_rx_reasons_t; + +/* + * Macro to check if a reason (_SHR_RX_*) is included in a + * set of reasons (_shr_rx_reasons_t). Returns: + * zero => reason is not included in the set + * non-zero => reason is included in the set + */ +#define _SHR_RX_REASON_GET(_reasons, _reason) \ + SHR_BITGET(((_reasons).pbits), (_reason)) + +/* + * Macro to add a reason (_SHR_RX_*) to a set of + * reasons (_shr_rx_reasons_t) + */ +#define _SHR_RX_REASON_SET(_reasons, _reason) \ + SHR_BITSET(((_reasons).pbits), (_reason)) + +/* + * Macro to add all reasons (_SHR_RX_*) to a set of + * reasons (_shr_rx_reasons_t) + */ +#define _SHR_RX_REASON_SET_ALL(_reasons) \ + SHR_BITSET_RANGE(((_reasons).pbits), 0, _SHR_RX_REASON_COUNT) + +/* + * Macro to clear a reason (_SHR_RX_*) from a set of + * reasons (_shr_rx_reasons_t) + */ +#define _SHR_RX_REASON_CLEAR(_reasons, _reason) \ + SHR_BITCLR(((_reasons).pbits), (_reason)) + +/* + * Macro to clear a set of reasons (_shr_rx_reasons_t). + */ +#define _SHR_RX_REASON_CLEAR_ALL(_reasons) \ + SHR_BITCLR_RANGE(((_reasons).pbits), 0, _SHR_RX_REASON_COUNT) + +#define _SHR_RX_REASON_IS_NULL(_reasons) \ + SHR_BITNULL_RANGE(((_reasons).pbits), \ + 0, _SHR_RX_REASON_COUNT) +#define _SHR_RX_REASON_ITER(_reasons, reason) \ + for(reason = _SHR_RX_INVALID; reason < (int)_SHR_RX_REASON_COUNT; reason++) \ + if(_SHR_RX_REASON_GET(_reasons, reason)) + +#define _SHR_RX_REASON_COUNT(_reasons, _count) \ + SHR_BITCOUNT_RANGE(((_reasons).pbits), _count, \ + 0, _SHR_RX_REASON_COUNT) +#define _SHR_RX_REASON_EQ(_reasons1, _reasons2) \ + SHR_BITEQ_RANGE(((_reasons1).pbits), ((_reasons2).pbits), \ + 0, _SHR_RX_REASON_COUNT) +#define _SHR_RX_REASON_NEQ(_reasons1, _reasons2) \ + (!SHR_BITEQ_RANGE(((_reasons1).pbits), ((_reasons2).pbits), \ + 0, _SHR_RX_REASON_COUNT)) +#define _SHR_RX_REASON_AND(_reasons1, _reasons2) \ + SHR_BITAND_RANGE(((_reasons1).pbits), ((_reasons2).pbits), 0, \ + _SHR_RX_REASON_COUNT, ((_reasons1).pbits)) +#define _SHR_RX_REASON_OR(_reasons1, _reasons2) \ + SHR_BITOR_RANGE(((_reasons1).pbits), ((_reasons2).pbits), 0, \ + _SHR_RX_REASON_COUNT, ((_reasons1).pbits)) +#define _SHR_RX_REASON_XOR(_reasons1, _reasons2) \ + SHR_BITXOR_RANGE(((_reasons1).pbits), ((_reasons2).pbits), 0, \ + _SHR_RX_REASON_COUNT, ((_reasons1).pbits)) +#define _SHR_RX_REASON_REMOVE(_reasons1, _reasons2) \ + SHR_BITREMOVE_RANGE(((_reasons1).pbits), ((_reasons2).pbits), 0, \ + _SHR_RX_REASON_COUNT, ((_reasons1).pbits)); +#define _SHR_RX_REASON_NEGATE(_reasons1, _reasons2) \ + SHR_BITNEGATE_RANGE(((_reasons2).pbits), 0, \ + _SHR_RX_REASON_COUNT, ((_reasons1).pbits)); + +#endif /* _SHR_RX_H_ */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/switch.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/switch.h @@ -0,0 +1,45 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2016 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ********************************************************************* + * File: switch.h + ********************************************************************/ + + +#ifndef _SHR_SWITCH_H +#define _SHR_SWITCH_H + +#define _SHR_SWITCH_MAX_PIPES 4 /* Max number of pipes (or slices) */ + +#define _SHR_SWITCH_STABLE_NONE 0 /* No storage */ +#define _SHR_SWITCH_STABLE_DEVICE_NEXT_HOP 1 /* Use next hop table */ +#define _SHR_SWITCH_STABLE_DEVICE_EXT_MEM 2 /* Use external TCAM/SRAM */ +#define _SHR_SWITCH_STABLE_APPLICATION 3 /* Use application storage */ +#define _SHR_SWITCH_STABLE_SHARED_MEM 4 /* Use Linux shmem for internal proccess NV storage */ + +/* + * structure: + * _shr_temperature_monitor_t + * Purpose: + * entry type for retrieving temperature monitor value + * + */ +typedef struct _shr_switch_temperature_monitor_s { + int curr; + int peak; +} _shr_switch_temperature_monitor_t; + +#endif /* !_SHR_SWITCH_H */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/types.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/types.h @@ -0,0 +1,64 @@ +/********************************************************************* + * + * (C) Copyright Broadcom Corporation 2013-2016 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ********************************************************************** + * File: types.h + * Details: Shared data types + *********************************************************************/ +#ifndef _SHR_TYPES_H_ +#define _SHR_TYPES_H_ + +#include + +typedef int8 _shr_dma_chan_t; + +typedef int _shr_module_t; + +typedef int _shr_if_t; + +typedef uint16 _shr_vlan_t; + +#define _SHR_PORT_INVALID (-1) + + +typedef enum { + _SHR_COLOR_GREEN = 0, + _SHR_COLOR_YELLOW = 1, + _SHR_COLOR_RED = 2, + _SHR_COLOR_BLACK = 3, + _SHR_COLOR_PRESERVE = 4, + _SHR_COLOR_COUNT = 5 +} _shr_color_t; + +typedef enum { + _SHR_FORWARDING_TYPE_L2 = 0, /* L2 switching forwarding. */ + _SHR_FORWARDING_TYPE_IP4UCAST = 1, /* IPv4 Unicast Routing forwarding. */ + _SHR_FORWARDING_TYPE_IP4MCAST = 2, /* IPv4 Multicast Routing forwarding. */ + _SHR_FORWARDING_TYPE_IP6UCAST = 3, /* IPv6 Unicast Routing forwarding. */ + _SHR_FORWARDING_TYPE_IP6MCAST = 4, /* IPv6 Multicast Routing forwarding. */ + _SHR_FORWARDING_TYPE_MPLS = 5, /* MPLS Switching forwarding. */ + _SHR_FORWARDING_TYPE_TRILL = 6, /* Trill forwarding. */ + _SHR_FORWARDING_TYPE_RXREASON = 7, /* Forwarding according to a RxReason. */ + _SHR_FORWARDING_TYPE_TRAFFIC_MANAGMENT = 8, /* Traffic Management forwarding, when + an external Packet Processor sets the + forwarding decision. */ + _SHR_FORWARDING_TYPE_SNOOP = 9, /* Snooped packet. */ + _SHR_FORWARDING_TYPE_FCoE = 10, /* Fiber Channel over Ethernet + forwarding. */ + _SHR_FORWARDING_TYPE_COUNT = 11 /* Always Last. Not a usable value. */ +} _shr_forwarding_type_t; + +#endif /* _SHR_TYPES_H_ */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/util.h +++ linux-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-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/ibde.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/ibde.h @@ -0,0 +1,158 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: ibde.h,v 1.27 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ + +#ifndef __IBDE_H__ +#define __IBDE_H__ + +#include + +/* + * Represents a collection of devices + */ + +typedef struct ibde_dev_s { + uint16 device; + uint8 rev; + sal_vaddr_t base_address; + sal_vaddr_t base_address1; + sal_vaddr_t base_address2; +} ibde_dev_t; + + +typedef struct ibde_s { + + const char *(*name)(void); + + /* Returns the number of devices available */ + /* Each device is is accessed through a handle */ + /* Handles are assumed to index the array of devices */ + + /* Support SWITCH or ETHERNET or CPU devices */ + int (*num_devices)(int type); +#define BDE_ALL_DEVICES 0 +#define BDE_SWITCH_DEVICES 1 +#define BDE_ETHER_DEVICES 2 +#define BDE_CPU_DEVICES 3 + + const ibde_dev_t *(*get_dev)(int d); + + /* + * Get types of underlaying devices. + * A combination of bus type and functional type is returned. + * In case of bus type, support PCI and SPI device types. + * In case of functional type, specify if underlaying device is + * a switching or ethernet device. + */ + uint32 (*get_dev_type)(int d); +#define BDE_PCI_DEV_TYPE SAL_PCI_DEV_TYPE /* PCI device */ +#define BDE_SPI_DEV_TYPE SAL_SPI_DEV_TYPE /* SPI device */ +#define BDE_EB_DEV_TYPE SAL_EB_DEV_TYPE /* EB device */ +#define BDE_ICS_DEV_TYPE SAL_ICS_DEV_TYPE /* ICS device */ +#define BDE_MII_DEV_TYPE SAL_MII_DEV_TYPE /* MII device */ +#define BDE_I2C_DEV_TYPE SAL_I2C_DEV_TYPE /* I2C device */ +#define BDE_AXI_DEV_TYPE SAL_AXI_DEV_TYPE /* AXI device */ +#define BDE_EMMI_DEV_TYPE SAL_EMMI_DEV_TYPE /* EMMI device */ +#define BDE_DEV_BUS_ALT SAL_DEV_BUS_ALT /* Alternate Access */ +#define BDE_DEV_BUS_MSI SAL_DEV_BUS_MSI /* Message-signaled interrupts */ + +#define BDE_DEV_BUS_TYPE_MASK SAL_DEV_BUS_TYPE_MASK + +#define BDE_SWITCH_DEV_TYPE SAL_SWITCH_DEV_TYPE /* Switch device */ +#define BDE_ETHER_DEV_TYPE SAL_ETHER_DEV_TYPE /* Ethernet device */ +#define BDE_CPU_DEV_TYPE SAL_CPU_DEV_TYPE /* CPU device */ + +#define BDE_BYTE_SWAP 0x01000000 /* SW byte swap */ +#define BDE_NO_IPROC 0x02000000 /* Device uses two BARs, but is not iProc */ + +#define BDE_256K_REG_SPACE 0x20000000 /* Map 256K (v 64K) */ +#define BDE_128K_REG_SPACE 0x40000000 /* Map 128K (v 64K) */ +#define BDE_320K_REG_SPACE 0x80000000 /* Map 256K+64K */ + +/* Bus supports only 16bit reads */ +#define BDE_DEV_BUS_RD_16BIT SAL_DEV_BUS_RD_16BIT + +/* Bus supports only 16bit writes */ +#define BDE_DEV_BUS_WR_16BIT SAL_DEV_BUS_WR_16BIT + +/* Backward compatibility */ +#define BDE_ET_DEV_TYPE BDE_MII_DEV_TYPE + +#define BDE_DEV_MEM_MAPPED(_d) \ + ((_d) & (BDE_PCI_DEV_TYPE | BDE_ICS_DEV_TYPE | BDE_EB_DEV_TYPE |\ + BDE_EMMI_DEV_TYPE | BDE_AXI_DEV_TYPE)) + + /* + * PCI Bus Access + */ + uint32 (*pci_conf_read)(int d, uint32 addr); + int (*pci_conf_write)(int d, uint32 addr, uint32 data); + void (*pci_bus_features)(int d, int *be_pio, int *be_packet, + int *be_other); + + uint32 (*read)(int d, uint32 addr); + int (*write)(int d, uint32 addr, uint32 data); + + uint32* (*salloc)(int d, int size, const char *name); + void (*sfree)(int d, void *ptr); + int (*sflush)(int d, void *addr, int length); + int (*sinval)(int d, void *addr, int length); + + int (*interrupt_connect)(int d, void (*)(void*), void *data); + int (*interrupt_disconnect)(int d); + + sal_paddr_t (*l2p)(int d, void *laddr); + void* (*p2l)(int d, sal_paddr_t paddr); + + /* + * SPI Access via SMP + */ + int (*spi_read)(int d, uint32 addr, uint8 *buf, int len); + int (*spi_write)(int d, uint32 addr, uint8 *buf, int len); + /* Special SPI access addresses */ +#define BDE_DEV_OP_EMMI_INIT SAL_DEV_OP_EMMI_INIT + + /* + * iProc register access + */ + uint32 (*iproc_read)(int d, uint32 addr); + int (*iproc_write)(int d, uint32 addr, uint32 data); + + /* + * Shared memory access + */ + uint32 (*shmem_read)(int dev, uint32 addr, uint8 *buf, uint32 len); + void (*shmem_write)(int dev, uint32 addr, uint8 *buf, uint32 len); + sal_vaddr_t (*shmem_map)(int dev, uint32 addr, uint32 size); + + /* + * cmic + */ + int (*get_cmic_ver)(int d, uint32 *ver); + +} ibde_t; + + +/* System BDE */ +extern ibde_t *bde; + + +#endif /* __IBDE_H__ */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/kcom.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/kcom.h @@ -0,0 +1,539 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: kcom.h,v 1.9 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + * + * File: kcom.h + * Purpose: User/Kernel message definitions + */ + +#ifndef _KCOM_H +#define _KCOM_H + +#include + +#define KCOM_CHAN_KNET "KCOM_KNET" + +/* + * Message types + */ +#define KCOM_MSG_TYPE_CMD 1 /* Command */ +#define KCOM_MSG_TYPE_RSP 2 /* Command response */ +#define KCOM_MSG_TYPE_EVT 3 /* Unsolicited event */ + + +/* + * Message opcodes + */ +#define KCOM_M_NONE 0 /* Should not be used */ +#define KCOM_M_VERSION 1 /* Protocol version */ +#define KCOM_M_STRING 2 /* For debug messages */ +#define KCOM_M_HW_RESET 3 /* H/W not ready */ +#define KCOM_M_HW_INIT 4 /* H/W initialized */ +#define KCOM_M_ETH_HW_CONFIG 5 /* ETH HW config*/ +#define KCOM_M_DETACH 6 /* Detach kernel module */ +#define KCOM_M_NETIF_CREATE 11 /* Create network interface */ +#define KCOM_M_NETIF_DESTROY 12 /* Destroy network interface */ +#define KCOM_M_NETIF_LIST 13 /* Get list of network interface IDs */ +#define KCOM_M_NETIF_GET 14 /* Get network interface info */ +#define KCOM_M_FILTER_CREATE 21 /* Create Rx filter */ +#define KCOM_M_FILTER_DESTROY 22 /* Destroy Rx filter */ +#define KCOM_M_FILTER_LIST 23 /* Get list of Rx filter IDs */ +#define KCOM_M_FILTER_GET 24 /* Get Rx filter info */ +#define KCOM_M_DMA_INFO 31 /* Tx/Rx DMA info */ +#define KCOM_M_DBGPKT_SET 41 /* Enbale debug packet function */ +#define KCOM_M_DBGPKT_GET 42 /* Get debug packet function info */ + +#define KCOM_VERSION 8 /* Protocol version */ + +/* + * Message status codes + */ +#define KCOM_E_NONE 0 /* No errors */ +#define KCOM_E_PARAM 1 /* Invalid/unsupported parameter */ +#define KCOM_E_RESOURCE 2 /* Out of memory or other resource */ +#define KCOM_E_NOT_FOUND 3 /* Requested object not found */ + +typedef struct kcom_msg_hdr_s { + uint8 type; + uint8 opcode; + uint8 seqno; + uint8 status; + uint8 unit; + uint8 reserved; + uint16 id; +} kcom_msg_hdr_t; + + +/* + * Object types + */ + +/* + * System network interface + * + * Network interface types: + * + * KCOM_NETIF_T_VLAN + * Transmits to this interface will go to ingress PIPE of switch + * CPU port using specified VLAN ID. Packet will be switched. + * + * KCOM_NETIF_T_PORT + * Transmits to this interface will go to unmodified to specified + * physical switch port. All switching logic is bypassed. + * + * KCOM_NETIF_T_META + * Transmits to this interface will be done using raw meta data + * as DMA descriptors. Currently used for RCPU mode only. + * + * Network interface flags: + * + * KCOM_NETIF_F_ADD_TAG + * Add VLAN tag to packets sent directly to physical port. + * + * KCOM_NETIF_F_RCPU_ENCAP + * Use RCPU encapsulation for packets that enter and exit this + * interface. + */ +#define KCOM_NETIF_T_VLAN 0 +#define KCOM_NETIF_T_PORT 1 +#define KCOM_NETIF_T_META 2 + +#define KCOM_NETIF_F_ADD_TAG (1U << 0) +#define KCOM_NETIF_F_RCPU_ENCAP (1U << 1) +/* If a netif has this flag, the packet sent to the netif can't be stripped tag or added tag */ +#define KCOM_NETIF_F_KEEP_RX_TAG (1U << 2) + +#define KCOM_NETIF_NAME_MAX 16 + +typedef struct kcom_netif_s { + uint16 id; + uint8 type; + uint8 flags; + uint8 port; + uint8 reserved; + uint16 vlan; + uint16 qnum; + uint8 macaddr[6]; + uint8 ptch[2]; + uint8 itmh[4]; + char name[KCOM_NETIF_NAME_MAX]; +} kcom_netif_t; + +/* + * Packet filters + * + * Filters work like software TCAMs where a mask is applied to the + * source data, and the result is then compared to the filter data. + * + * Filters are checked in priority order with the lowest priority + * values being checked first (i.e. 0 is the highest priority). + * + * Filter types: + * + * KCOM_FILTER_T_RX_PKT + * Filter data and mask are applied to the Rx DMA control block + * as well as to the Rx packet contents. + * + * Destination types: + * + * KCOM_DEST_T_NULL + * Packet is dropped. + * + * KCOM_DEST_T_NETIF + * Packet is sent to network interface with ID . + * + * KCOM_DEST_T_API + * Packet is sent to Rx API through queue . + * + * KCOM_DEST_T_CB + * Packet destination is obtained from kernel call-back function. + * + * Filter flags: + * + * KCOM_FILTER_F_ANY_DATA + * When this flags is set the filter will match any packet on + * the associated unit. + * + * KCOM_FILTER_F_STRIP_TAG + * Strip VLAN tag before packet is sent to destination. + * This flag only applies to KCOM_DEST_T_NETIF. + * + */ +#define KCOM_FILTER_BYTES_MAX 256 +#define KCOM_FILTER_WORDS_MAX BYTES2WORDS(KCOM_FILTER_BYTES_MAX) + +#define KCOM_FILTER_T_RX_PKT 1 + +#define KCOM_DEST_T_NULL 0 +#define KCOM_DEST_T_NETIF 1 +#define KCOM_DEST_T_API 2 +#define KCOM_DEST_T_CB 3 + +#define KCOM_FILTER_F_ANY_DATA (1U << 0) +#define KCOM_FILTER_F_STRIP_TAG (1U << 1) + +#define KCOM_FILTER_DESC_MAX 32 + +typedef struct kcom_filter_s { + uint16 id; + uint8 type; + uint8 priority; + char desc[KCOM_FILTER_DESC_MAX]; + uint32 flags; + uint16 dest_type; + uint16 dest_id; + uint16 dest_proto; + uint16 mirror_type; + uint16 mirror_id; + uint16 mirror_proto; + uint16 oob_data_offset; + uint16 oob_data_size; + uint16 pkt_data_offset; + uint16 pkt_data_size; + union { + uint8 b[KCOM_FILTER_BYTES_MAX]; + uint32 w[KCOM_FILTER_WORDS_MAX]; + } data; + union { + uint8 b[KCOM_FILTER_BYTES_MAX]; + uint32 w[KCOM_FILTER_WORDS_MAX]; + } mask; +} kcom_filter_t; + +/* + * DMA buffer information + * + * Cookie field is reserved use by application (32/64-bit pointer). + * + * For Tx operation the application will submit the start address of + * the Tx DCB chain which is queued for transfer by the kernel module. + * Once DMA is done a DMA event is returned to the application with an + * optional sequence number. + * + * For Rx operation the application will submit the start address of + * the Rx DCB chain which should be use for packet reception by the + * kernel module. Once DMA is done a DMA event is returned to the + * application with an optional sequence number. + * + * Cookie field is reserved use by application (32/64-bit pointer). + * + * Packet info types: + * + * KCOM_DMA_INFO_T_TX_DCB + * Data is physical start address of Tx DCB chain. + * + * KCOM_DMA_INFO_T_RX_DCB + * Data is physical start address of Rx DCB chain. + * + * Packet info flags: + * + * KCOM_DMA_INFO_F_TX_DONE + * This flag is set by the kernel module and means that one or more + * packets have been sent. + * + * KCOM_DMA_INFO_F_RX_DONE + * This flag is set by the kernel module and means that one or more + * Rx buffers contain valid packet data. + */ +#define KCOM_DMA_INFO_T_TX_DCB 1 +#define KCOM_DMA_INFO_T_RX_DCB 2 + +#define KCOM_DMA_INFO_F_TX_DONE (1U << 0) +#define KCOM_DMA_INFO_F_RX_DONE (1U << 1) + +typedef struct kcom_dma_info_s { + uint8 type; + uint8 cnt; + uint16 size; + uint16 chan; + uint16 flags; + union { + void *p; + uint8 b[8]; + } cookie; + union { + uint32 dcb_start; + struct { + uint32 tx; + uint32 rx; + } seqno; + } data; + } kcom_dma_info_t; + +/* Default channel configuration */ +#define KCOM_DMA_TX_CHAN 0 +#define KCOM_DMA_RX_CHAN 1 + + +#define KCOM_ETH_HW_T_RESET 1 +#define KCOM_ETH_HW_T_INIT 2 +#define KCOM_ETH_HW_T_OTHER 3 + +#define KCOM_ETH_HW_C_ALL 0xff + +#define KCOM_ETH_HW_RESET_F_TX (1U << 0) +#define KCOM_ETH_HW_RESET_F_RX (1U << 1) +#define KCOM_ETH_HW_RESET_F_TX_RECLAIM (1U << 2) +#define KCOM_ETH_HW_RESET_F_RX_RECLAIM (1U << 3) + +#define KCOM_ETH_HW_INIT_F_TX (1U << 0) +#define KCOM_ETH_HW_INIT_F_RX (1U << 1) +#define KCOM_ETH_HW_INIT_F_RX_FILL (1U << 2) + + +#define KCOM_ETH_HW_OTHER_F_FIFO_LOOPBACK (1U << 0) +#define KCOM_ETH_HW_OTHER_F_INTERRUPT (1U << 1) + + + + +typedef struct kcom_eth_hw_config_s { + uint8 type; + uint8 chan; + uint32 flags; + uint32 value; + } kcom_eth_hw_config_t; + +/* + * Message types + */ + +/* + * Request KCOM interface version of kernel module. + */ +typedef struct kcom_msg_version_s { + kcom_msg_hdr_t hdr; + uint32 version; + uint32 netif_max; + uint32 filter_max; +} kcom_msg_version_t; + +/* + * Send literal string to/from kernel module. + * Mainly for debugging purposes. + */ +#define KCOM_MSG_STRING_MAX 128 + +typedef struct kcom_msg_string_s { + kcom_msg_hdr_t hdr; + uint32 len; + char val[KCOM_MSG_STRING_MAX]; +} kcom_msg_string_t; + + +/* + * Indicate that eth hardware is about to be reset. Active + * DMA operations should be aborted and DMA and interrupts + * should be disabled. + */ +/* + * Indicate that eth hardware has been properly initialized + * for DMA operation to commence. + */ +typedef struct kcom_msg_eth_hw_config_s { + kcom_msg_hdr_t hdr; + kcom_eth_hw_config_t config; +} kcom_msg_eth_hw_config_t; + + +/* + * Indicate that switch hardware is about to be reset. Active + * DMA operations should be aborted and DMA and interrupts + * should be disabled. + */ +typedef struct kcom_msg_hw_reset_s { + kcom_msg_hdr_t hdr; + uint32 channels; +} kcom_msg_hw_reset_t; + +/* + * Indicate that switch hardware has been properly initialized + * for DMA operation to commence. + */ +typedef struct kcom_msg_hw_init_s { + kcom_msg_hdr_t hdr; + uint16 dcb_size; + uint16 dcb_type; + uint32 cdma_channels; +} kcom_msg_hw_init_t; + +/* + * Release blocked IOCTL threads and clean up as necessary. + */ +typedef struct kcom_msg_detach_s { + kcom_msg_hdr_t hdr; + uint32 flags; +} kcom_msg_detach_t; + +/* + * Enable/Disable debugging packet function. + */ +typedef struct kcom_msg_dbg_pkt_set_s { + kcom_msg_hdr_t hdr; + int enable; +} kcom_msg_dbg_pkt_set_t; + +/* + * Get debugging packet function info. + */ +typedef struct kcom_msg_dbg_pkt_get_s { + kcom_msg_hdr_t hdr; + int value; +} kcom_msg_dbg_pkt_get_t; + +/* + * Create new system network interface. The network interface will + * be associated with the specified switch unit number. + * The interface id and name will be assigned by the kernel module. + */ +typedef struct kcom_msg_netif_create_s { + kcom_msg_hdr_t hdr; + kcom_netif_t netif; +} kcom_msg_netif_create_t; + +/* + * Destroy system network interface. + */ +typedef struct kcom_msg_netif_destroy_s { + kcom_msg_hdr_t hdr; +} kcom_msg_netif_destroy_t; + +/* + * Get list of currently defined system network interfaces. + */ +#ifndef KCOM_NETIF_MAX +#define KCOM_NETIF_MAX 128 +#endif + +typedef struct kcom_msg_netif_list_s { + kcom_msg_hdr_t hdr; + uint32 ifcnt; + uint16 id[KCOM_NETIF_MAX]; +} kcom_msg_netif_list_t; + +/* + * Get detailed network interface information. + */ +typedef struct kcom_msg_netif_get_s { + kcom_msg_hdr_t hdr; + kcom_netif_t netif; +} kcom_msg_netif_get_t; + +/* + * Create new packet filter. + * The filter id will be assigned by the kernel module. + */ +typedef struct kcom_msg_filter_create_s { + kcom_msg_hdr_t hdr; + kcom_filter_t filter; +} kcom_msg_filter_create_t; + +/* + * Destroy packet filter. + */ +typedef struct kcom_msg_filter_destroy_s { + kcom_msg_hdr_t hdr; +} kcom_msg_filter_destroy_t; + +/* + * Get list of currently defined packet filters. + */ +#ifndef KCOM_FILTER_MAX +/* OPENNSL_FIXUP - Increased the filters to 1024 from 128 */ +#define KCOM_FILTER_MAX 1024 +#endif + +typedef struct kcom_msg_filter_list_s { + kcom_msg_hdr_t hdr; + uint32 fcnt; + uint16 id[KCOM_FILTER_MAX]; +} kcom_msg_filter_list_t; + +/* + * Get detailed packet filter information. + */ +typedef struct kcom_msg_filter_get_s { + kcom_msg_hdr_t hdr; + kcom_filter_t filter; +} kcom_msg_filter_get_t; + +/* + * DMA info + */ +typedef struct kcom_msg_dma_info_s { + kcom_msg_hdr_t hdr; + kcom_dma_info_t dma_info; +} kcom_msg_dma_info_t; + + +/* + * All messages (e.g. for generic receive) + */ + +typedef union kcom_msg_s { + kcom_msg_hdr_t hdr; + kcom_msg_version_t version; + kcom_msg_string_t string; + kcom_msg_hw_reset_t hw_reset; + kcom_msg_hw_init_t hw_init; + kcom_msg_eth_hw_config_t eth_hw_config; + kcom_msg_detach_t detach; + kcom_msg_netif_create_t netif_create; + kcom_msg_netif_destroy_t netif_destroy; + kcom_msg_netif_list_t netif_list; + kcom_msg_netif_get_t netif_get; + kcom_msg_filter_create_t filter_create; + kcom_msg_filter_destroy_t filter_destroy; + kcom_msg_filter_list_t filter_list; + kcom_msg_filter_get_t filter_get; + kcom_msg_dma_info_t dma_info; + kcom_msg_dbg_pkt_set_t dbg_pkt_set; + kcom_msg_dbg_pkt_get_t dbg_pkt_get; +} kcom_msg_t; + + +/* + * KCOM communication channel vectors + * + * open + * Open KCOM channel. + * + * close + * Close KCOM channel. + * + * send + * Send KCOM message. If bufsz is non-zero, a synchronous send will be + * performed (if supported) and the function will return the number of + * bytes in the response. + * + * recv + * Receive KCOM message. This function is used t oreceive unsolicited + * messages from the kernel. If synchronous send is not supported, this + * function is also used to retrieve responses to command messages. + */ + +typedef struct kcom_chan_s { + void *(*open)(char *name); + int (*close)(void *handle); + int (*send)(void *handle, void *msg, unsigned int len, unsigned int bufsz); + int (*recv)(void *handle, void *msg, unsigned int bufsz); +} kcom_chan_t; + +#endif /* _KCOM_H */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/sal/core/sync.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/sal/core/sync.h @@ -0,0 +1,39 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: sync.h,v 1.1 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ + +#ifndef _SAL_SYNC_H +#define _SAL_SYNC_H + +typedef struct sal_sem_s{ + char sal_opaque_type; +} *sal_sem_t; + +#define sal_sem_FOREVER (-1) +#define sal_sem_BINARY 1 +#define sal_sem_COUNTING 0 + +sal_sem_t sal_sem_create(char *desc, int binary, int initial_count); +void sal_sem_destroy(sal_sem_t b); +int sal_sem_take(sal_sem_t b, int usec); +int sal_sem_give(sal_sem_t b); + +#endif /* !_SAL_SYNC_H */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/sal/core/thread.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/sal/core/thread.h @@ -0,0 +1,31 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: thread.h,v 1.1 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ + +#ifndef _SAL_THREAD_H +#define _SAL_THREAD_H + +#include + +void sal_usleep(uint32 usec); +void sal_udelay(uint32 usec); + +#endif /* !_SAL_THREAD_H */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/sal/types.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/sal/types.h @@ -0,0 +1,156 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: types.h,v 1.3 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + * + * File: types.h + * Purpose: SAL type definitions + */ + +#ifndef _SAL_TYPES_H +#define _SAL_TYPES_H + +/* + * Define platform-independent types + */ + +#ifndef TRUE +#define TRUE 1 +#endif + +#ifndef FALSE +#define FALSE 0 +#endif + +#ifndef NULL +#define NULL 0 +#endif + +#ifndef DONT_CARE +#define DONT_CARE 0 +#endif + +#define VOL volatile + +/* + * 64-bit type + */ + +#ifdef LONGS_ARE_64BITS + +#define COMPILER_64BIT +#define COMPILER_UINT64 unsigned long +#define u64_H(v) (((uint32 *) &(v))[u64_MSW]) +#define u64_L(v) (((uint32 *) &(v))[u64_LSW]) + +#else /* !LONGS_ARE_64BITS */ + +#define COMPILER_64BIT +#define COMPILER_UINT64 unsigned long long +#define u64_H(v) (((uint32 *) &(v))[u64_MSW]) +#define u64_L(v) (((uint32 *) &(v))[u64_LSW]) + +#endif /* LONGS_ARE_64BITS */ + +/* + * Define unsigned and signed integers with guaranteed sizes. + * Adjust if your compiler uses different sizes for short or int. + */ + +typedef unsigned char uint8; /* 8-bit quantity */ +typedef unsigned short uint16; /* 16-bit quantity */ +typedef unsigned int uint32; /* 32-bit quantity */ +typedef COMPILER_UINT64 uint64; /* 64-bit quantity */ + +typedef signed char int8; /* 8-bit quantity */ +typedef signed short int16; /* 16-bit quantity */ +typedef signed int int32; /* 32-bit quantity */ + +#define BITS2BYTES(x) (((x) + 7) / 8) +#define BITS2WORDS(x) (((x) + 31) / 32) + +#define BYTES2BITS(x) ((x) * 8) +#define BYTES2WORDS(x) (((x) + 3) / 4) + +#define WORDS2BITS(x) ((x) * 32) +#define WORDS2BYTES(x) ((x) * 4) + +#define COUNTOF(ary) ((int) (sizeof (ary) / sizeof ((ary)[0]))) + +typedef uint32 sal_paddr_t; /* Physical address (PCI address) */ + +#ifdef PTRS_ARE_64BITS +typedef uint64 sal_vaddr_t; /* Virtual address (Host address) */ +#define PTR_TO_INT(x) ((uint32)(((sal_vaddr_t)(x))&0xFFFFFFFF)) +#else +typedef uint32 sal_vaddr_t; /* Virtual address (Host address) */ +#define PTR_TO_INT(x) ((uint32)(x)) +#endif + +#define INT_TO_PTR(x) ((void *)((sal_vaddr_t)(x))) + +#define PTR_TO_UINTPTR(x) ((sal_vaddr_t)(x)) +#define UINTPTR_TO_PTR(x) ((void *)(x)) + +typedef union +{ + uint8 u8; + uint16 u16; + uint32 u32; + uint64 u64; + sal_paddr_t paddr; + sal_vaddr_t vaddr; + void *ptr; +} any_t; + +/* Device bus types */ +#define SAL_PCI_DEV_TYPE 0x00001 /* PCI device */ +#define SAL_SPI_DEV_TYPE 0x00002 /* SPI device */ +#define SAL_EB_DEV_TYPE 0x00004 /* EB device */ +#define SAL_ICS_DEV_TYPE 0x00008 /* ICS device */ +#define SAL_MII_DEV_TYPE 0x00010 /* MII device */ +#define SAL_RCPU_DEV_TYPE 0x00020 /* RCPU device */ +#define SAL_I2C_DEV_TYPE 0x00040 /* I2C device */ +#define SAL_AXI_DEV_TYPE 0x00080 /* AXI device */ +#define SAL_EMMI_DEV_TYPE 0x10000 /* EMMI device */ +#define SAL_DEV_BUS_TYPE_MASK 0xf00ff /* Odd for historical reasons */ + +/* Device types */ +#define SAL_SWITCH_DEV_TYPE 0x00100 /* Switch device */ +#define SAL_ETHER_DEV_TYPE 0x00200 /* Ethernet device */ +#define SAL_CPU_DEV_TYPE 0x00400 /* CPU device */ +#define SAL_DEV_TYPE_MASK 0x00f00 + +/* Access types */ +#define SAL_DEV_BUS_RD_16BIT 0x01000 /* 16 bit reads on bus */ +#define SAL_DEV_BUS_WR_16BIT 0x02000 /* 16 bit writes on bus */ +#define SAL_DEV_BUS_ALT 0x04000 /* Alternate access */ +#define SAL_DEV_BUS_MSI 0x08000 /* Message-signaled interrupts */ +#define SAL_DEV_FLAG_MASK 0x0f000 + +/* BDE reserved mask (cannot be used by SAL) */ +#define SAL_DEV_BDE_MASK 0xff000000 + +/* Backward compatibility */ +#define SAL_ET_DEV_TYPE SAL_MII_DEV_TYPE + +/* Special access addresses */ +#define SAL_DEV_OP_EMMI_INIT 0x0fff1000 + +#endif /* !_SAL_TYPES_H */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/sdk_config.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/sdk_config.h @@ -0,0 +1,46 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: sdk_config.h,v 1.5 Broadcom SDK $ + * $Copyright: (c) 2006 Broadcom Corp. + * All Rights Reserved.$ + * + * + */ + +#ifndef __SDK_CONFIG_H__ +#define __SDK_CONFIG_H__ + +/* + * Include custom overrides + */ +#ifdef SDK_INCLUDE_CUSTOM_CONFIG +#include +#endif + + +/* + * Memory Barrier operation if required. + * Defaults to nothing. + */ +#ifndef SDK_CONFIG_MEMORY_BARRIER +#define SDK_CONFIG_MEMORY_BARRIER +#endif + + + +#endif /* __SDK_CONFIG_H__ */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/soc/cmic.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/soc/cmic.h @@ -0,0 +1,38 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: cmic.h,v 1.1 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + * + * File: cmic.h + * Purpose: Maps out structures used for CMIC operations and + * exports routines and constants. + */ + +#ifndef _SOC_CMIC_H +#define _SOC_CMIC_H + +/* IRQ Register (RO) */ +#define CMIC_IRQ_STAT 0x00000144 + +/* IRQ Mask Registers (R/W) */ +#define CMIC_IRQ_MASK 0x00000148 +#define CMIC_IRQ_MASK_1 0x0000006C +#define CMIC_IRQ_MASK_2 0x00000070 + +#endif /* !_SOC_CMIC_H */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/soc/devids.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/include/soc/devids.h @@ -0,0 +1,1948 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * Copyright: (c) 2017 Broadcom Corp. + * All Rights Reserved. + */ + +#ifndef _SOC_DEVIDS_H +#define _SOC_DEVIDS_H + + +#define BROADCOM_VENDOR_ID 0x14e4 + +#define BCM5690_DEVICE_ID 0x5690 +#define BCM5690_A0_REV_ID 1 +#define BCM5690_A1_REV_ID 2 +#define BCM5690_A2_REV_ID 3 + +#define BCM5691_DEVICE_ID 0x5691 +#define BCM5691_A0_REV_ID 1 +#define BCM5691_A1_REV_ID 2 +#define BCM5691_A2_REV_ID 3 + +#define BCM5692_DEVICE_ID 0x5692 +#define BCM5692_A0_REV_ID 1 +#define BCM5692_A1_REV_ID 2 +#define BCM5692_A2_REV_ID 3 + +#define BCM5693_DEVICE_ID 0x5693 +#define BCM5693_A0_REV_ID 1 +#define BCM5693_A1_REV_ID 2 +#define BCM5693_A2_REV_ID 3 + +#define BCM5695_DEVICE_ID 0x5695 +#define BCM5695_A0_REV_ID 1 +#define BCM5695_A1_REV_ID 2 +#define BCM5695_B0_REV_ID 0x11 + +#define BCM5696_DEVICE_ID 0x5696 +#define BCM5696_A0_REV_ID 1 +#define BCM5696_A1_REV_ID 2 +#define BCM5696_B0_REV_ID 0x11 + +#define BCM5697_DEVICE_ID 0x5697 +#define BCM5697_A0_REV_ID 1 +#define BCM5697_A1_REV_ID 2 +#define BCM5697_B0_REV_ID 0x11 + +#define BCM5698_DEVICE_ID 0x5698 +#define BCM5698_A0_REV_ID 1 +#define BCM5698_A1_REV_ID 2 +#define BCM5698_B0_REV_ID 0x11 + +#define BCM5670_DEVICE_ID 0x5670 +#define BCM5670_A0_REV_ID 1 +#define BCM5670_A1_REV_ID 2 + +#define BCM5671_DEVICE_ID 0x5671 +#define BCM5671_A0_REV_ID 1 +#define BCM5671_A1_REV_ID 2 +#define BCM5671_A2_REV_ID 3 + +#define BCM5675_DEVICE_ID 0x5675 +#define BCM5675_A0_REV_ID 1 +#define BCM5675_A1_REV_ID 2 + +#define BCM5676_DEVICE_ID 0x5676 +#define BCM5676_A0_REV_ID 1 +#define BCM5676_A1_REV_ID 2 + +#define BCM5673_DEVICE_ID 0x5673 +#define BCM5673_A0_REV_ID 1 +#define BCM5673_A1_REV_ID 2 +#define BCM5673_A2_REV_ID 3 + +#define BCM5674_DEVICE_ID 0x5674 +#define BCM5674_A0_REV_ID 1 + +#define BCM56100_DEVICE_ID 0xb100 +#define BCM56100_A0_REV_ID 1 +#define BCM56100_A1_REV_ID 2 +#define BCM56101_DEVICE_ID 0xb101 +#define BCM56101_A0_REV_ID 1 +#define BCM56101_A1_REV_ID 2 +#define BCM56102_DEVICE_ID 0xb102 +#define BCM56102_A0_REV_ID 1 +#define BCM56102_A1_REV_ID 2 +#define BCM56105_DEVICE_ID 0xb105 +#define BCM56105_A0_REV_ID 1 +#define BCM56105_A1_REV_ID 2 +#define BCM56106_DEVICE_ID 0xb106 +#define BCM56106_A0_REV_ID 1 +#define BCM56106_A1_REV_ID 2 +#define BCM56107_DEVICE_ID 0xb107 +#define BCM56107_A0_REV_ID 1 +#define BCM56107_A1_REV_ID 2 + +#define BCM56110_DEVICE_ID 0xb110 +#define BCM56110_A0_REV_ID 1 +#define BCM56111_DEVICE_ID 0xb111 +#define BCM56111_A0_REV_ID 1 +#define BCM56112_DEVICE_ID 0xb112 +#define BCM56112_A0_REV_ID 1 +#define BCM56115_DEVICE_ID 0xb115 +#define BCM56115_A0_REV_ID 1 +#define BCM56116_DEVICE_ID 0xb116 +#define BCM56116_A0_REV_ID 1 +#define BCM56117_DEVICE_ID 0xb117 +#define BCM56117_A0_REV_ID 1 + +#define BCM56300_DEVICE_ID 0xb300 +#define BCM56300_A0_REV_ID 1 +#define BCM56300_A1_REV_ID 2 +#define BCM56300_B0_REV_ID 0x11 +#define BCM56300_B1_REV_ID 0x12 +#define BCM56301_DEVICE_ID 0xb301 +#define BCM56301_A0_REV_ID 1 +#define BCM56301_A1_REV_ID 2 +#define BCM56301_B0_REV_ID 0x11 +#define BCM56301_B1_REV_ID 0x12 +#define BCM56302_DEVICE_ID 0xb302 +#define BCM56302_A0_REV_ID 1 +#define BCM56302_A1_REV_ID 2 +#define BCM56302_B0_REV_ID 0x11 +#define BCM56302_B1_REV_ID 0x12 +#define BCM56303_DEVICE_ID 0xb303 +#define BCM56303_A1_REV_ID 2 +#define BCM56303_A0_REV_ID 1 +#define BCM56303_B0_REV_ID 0x11 +#define BCM56303_B1_REV_ID 0x12 +#define BCM56304_DEVICE_ID 0xb304 +#define BCM56304_A0_REV_ID 1 +#define BCM56304_A1_REV_ID 2 +#define BCM56304_B0_REV_ID 0x11 +#define BCM56304_B1_REV_ID 0x12 +#define BCM56404_DEVICE_ID 0xb404 +#define BCM56404_A0_REV_ID 1 +#define BCM56404_A1_REV_ID 2 +#define BCM56305_DEVICE_ID 0xb305 +#define BCM56305_A0_REV_ID 1 +#define BCM56305_A1_REV_ID 2 +#define BCM56305_B0_REV_ID 0x11 +#define BCM56305_B1_REV_ID 0x12 +#define BCM56306_DEVICE_ID 0xb306 +#define BCM56306_A0_REV_ID 1 +#define BCM56306_A1_REV_ID 2 +#define BCM56306_B0_REV_ID 0x11 +#define BCM56306_B1_REV_ID 0x12 +#define BCM56307_DEVICE_ID 0xb307 +#define BCM56307_A0_REV_ID 1 +#define BCM56307_A1_REV_ID 2 +#define BCM56307_B0_REV_ID 0x11 +#define BCM56307_B1_REV_ID 0x12 +#define BCM56308_DEVICE_ID 0xb308 +#define BCM56308_A0_REV_ID 1 +#define BCM56308_A1_REV_ID 2 +#define BCM56308_B0_REV_ID 0x11 +#define BCM56308_B1_REV_ID 0x12 +#define BCM56309_DEVICE_ID 0xb309 +#define BCM56309_A0_REV_ID 1 +#define BCM56309_A1_REV_ID 2 +#define BCM56309_B0_REV_ID 0x11 +#define BCM56309_B1_REV_ID 0x12 + +#define BCM56310_DEVICE_ID 0xb310 +#define BCM56310_A0_REV_ID 1 +#define BCM56311_DEVICE_ID 0xb311 +#define BCM56311_A0_REV_ID 1 +#define BCM56312_DEVICE_ID 0xb312 +#define BCM56312_A0_REV_ID 1 +#define BCM56313_DEVICE_ID 0xb313 +#define BCM56313_A0_REV_ID 1 +#define BCM56314_DEVICE_ID 0xb314 +#define BCM56314_A0_REV_ID 1 +#define BCM56315_DEVICE_ID 0xb315 +#define BCM56315_A0_REV_ID 1 +#define BCM56316_DEVICE_ID 0xb316 +#define BCM56316_A0_REV_ID 1 +#define BCM56317_DEVICE_ID 0xb317 +#define BCM56317_A0_REV_ID 1 +#define BCM56318_DEVICE_ID 0xb318 +#define BCM56318_A0_REV_ID 1 +#define BCM56319_DEVICE_ID 0xb319 +#define BCM56319_A0_REV_ID 1 + +#ifndef EXCLUDE_BCM56324 +#define BCM56322_DEVICE_ID 0xb322 +#define BCM56322_A0_REV_ID 1 +#define BCM56324_DEVICE_ID 0xb324 +#define BCM56324_A0_REV_ID 1 +#endif + +#define BCM53300_DEVICE_ID 0xb006 +#define BCM53300_A0_REV_ID 0x11 +#define BCM53300_A1_REV_ID 0x12 +#define BCM53301_DEVICE_ID 0xb206 +#define BCM53301_A0_REV_ID 0x11 +#define BCM53301_A1_REV_ID 0x12 +#define BCM53302_DEVICE_ID 0xb008 +#define BCM53302_A0_REV_ID 0x11 +#define BCM53302_A1_REV_ID 0x12 + +#define BCM56500_DEVICE_ID 0xb500 +#define BCM56500_A0_REV_ID 1 +#define BCM56500_A1_REV_ID 2 +#define BCM56500_B0_REV_ID 0x11 +#define BCM56500_B1_REV_ID 0x12 +#define BCM56500_B2_REV_ID 0x13 +#define BCM56501_DEVICE_ID 0xb501 +#define BCM56501_A0_REV_ID 1 +#define BCM56501_A1_REV_ID 2 +#define BCM56501_B0_REV_ID 0x11 +#define BCM56501_B1_REV_ID 0x12 +#define BCM56501_B2_REV_ID 0x13 +#define BCM56502_DEVICE_ID 0xb502 +#define BCM56502_A0_REV_ID 1 +#define BCM56502_A1_REV_ID 2 +#define BCM56502_B0_REV_ID 0x11 +#define BCM56502_B1_REV_ID 0x12 +#define BCM56502_B2_REV_ID 0x13 +#define BCM56503_DEVICE_ID 0xb503 +#define BCM56503_A0_REV_ID 1 +#define BCM56503_A1_REV_ID 2 +#define BCM56503_B0_REV_ID 0x11 +#define BCM56503_B1_REV_ID 0x12 +#define BCM56503_B2_REV_ID 0x13 +#define BCM56504_DEVICE_ID 0xb504 +#define BCM56504_A0_REV_ID 1 +#define BCM56504_A1_REV_ID 2 +#define BCM56504_B0_REV_ID 0x11 +#define BCM56504_B1_REV_ID 0x12 +#define BCM56504_B2_REV_ID 0x13 +#define BCM56505_DEVICE_ID 0xb505 +#define BCM56505_A0_REV_ID 1 +#define BCM56505_A1_REV_ID 2 +#define BCM56505_B0_REV_ID 0x11 +#define BCM56505_B1_REV_ID 0x12 +#define BCM56505_B2_REV_ID 0x13 +#define BCM56506_DEVICE_ID 0xb506 +#define BCM56506_A0_REV_ID 1 +#define BCM56506_A1_REV_ID 2 +#define BCM56506_B0_REV_ID 0x11 +#define BCM56506_B1_REV_ID 0x12 +#define BCM56506_B2_REV_ID 0x13 +#define BCM56507_DEVICE_ID 0xb507 +#define BCM56507_A0_REV_ID 1 +#define BCM56507_A1_REV_ID 2 +#define BCM56507_B0_REV_ID 0x11 +#define BCM56507_B1_REV_ID 0x12 +#define BCM56507_B2_REV_ID 0x13 +#define BCM56508_DEVICE_ID 0xb508 +#define BCM56508_A0_REV_ID 1 +#define BCM56508_A1_REV_ID 2 +#define BCM56508_B0_REV_ID 0x11 +#define BCM56508_B1_REV_ID 0x12 +#define BCM56508_B2_REV_ID 0x13 +#define BCM56509_DEVICE_ID 0xb509 +#define BCM56509_A0_REV_ID 1 +#define BCM56509_A1_REV_ID 2 +#define BCM56509_B0_REV_ID 0x11 +#define BCM56509_B1_REV_ID 0x12 +#define BCM56509_B2_REV_ID 0x13 + +#define BCM56600_DEVICE_ID 0xb600 +#define BCM56600_A0_REV_ID 1 +#define BCM56600_B0_REV_ID 0x11 +#define BCM56600_C0_REV_ID 0x21 +#define BCM56601_DEVICE_ID 0xb601 +#define BCM56601_A0_REV_ID 1 +#define BCM56601_B0_REV_ID 0x11 +#define BCM56601_C0_REV_ID 0x21 +#define BCM56602_DEVICE_ID 0xb602 +#define BCM56602_A0_REV_ID 1 +#define BCM56602_B0_REV_ID 0x11 +#define BCM56602_C0_REV_ID 0x21 +#define BCM56603_DEVICE_ID 0xb603 +#define BCM56603_A0_REV_ID 1 +#define BCM56603_B0_REV_ID 0x11 +#define BCM56603_C0_REV_ID 0x21 +#define BCM56605_DEVICE_ID 0xb605 +#define BCM56605_A0_REV_ID 1 +#define BCM56605_B0_REV_ID 0x11 +#define BCM56605_C0_REV_ID 0x21 +#define BCM56606_DEVICE_ID 0xb606 +#define BCM56606_A0_REV_ID 1 +#define BCM56606_B0_REV_ID 0x11 +#define BCM56606_C0_REV_ID 0x21 +#define BCM56607_DEVICE_ID 0xb607 +#define BCM56607_A0_REV_ID 1 +#define BCM56607_B0_REV_ID 0x11 +#define BCM56607_C0_REV_ID 0x21 +#define BCM56608_DEVICE_ID 0xb608 +#define BCM56608_A0_REV_ID 1 +#define BCM56608_B0_REV_ID 0x11 +#define BCM56608_C0_REV_ID 0x21 + +#define BCM56580_DEVICE_ID 0xb580 +#define BCM56580_A0_REV_ID 1 + +#define BCM56700_DEVICE_ID 0xb700 +#define BCM56700_A0_REV_ID 1 +#define BCM56701_DEVICE_ID 0xb701 +#define BCM56701_A0_REV_ID 1 + +#define BCM56800_DEVICE_ID 0xb800 +#define BCM56800_A0_REV_ID 1 +#define BCM56801_DEVICE_ID 0xb801 +#define BCM56801_A0_REV_ID 1 +#define BCM56802_DEVICE_ID 0xb802 +#define BCM56802_A0_REV_ID 1 +#define BCM56803_DEVICE_ID 0xb803 +#define BCM56803_A0_REV_ID 1 + +#define BCM56224_DEVICE_ID 0xb224 +#define BCM56224_A0_REV_ID 1 +#define BCM56224_B0_REV_ID 0x11 +#define BCM56225_DEVICE_ID 0xb225 +#define BCM56225_A0_REV_ID 1 +#define BCM56225_B0_REV_ID 0x11 +#define BCM56226_DEVICE_ID 0xb226 +#define BCM56226_A0_REV_ID 1 +#define BCM56226_B0_REV_ID 0x11 +#define BCM56227_DEVICE_ID 0xb227 +#define BCM56227_A0_REV_ID 1 +#define BCM56227_B0_REV_ID 0x11 +#define BCM56228_DEVICE_ID 0xb228 +#define BCM56228_A0_REV_ID 1 +#define BCM56228_B0_REV_ID 0x11 +#define BCM56229_DEVICE_ID 0xb229 +#define BCM56229_A0_REV_ID 1 +#define BCM56229_B0_REV_ID 0x11 +#define BCM56024_DEVICE_ID 0xb024 +#define BCM56024_A0_REV_ID 1 +#define BCM56024_B0_REV_ID 0x11 +#define BCM56025_DEVICE_ID 0xb025 +#define BCM56025_A0_REV_ID 1 +#define BCM56025_B0_REV_ID 0x11 +#define BCM53724_DEVICE_ID 0xc724 +#define BCM53724_A0_REV_ID 1 +#define BCM53724_B0_REV_ID 0x11 +#define BCM53726_DEVICE_ID 0xc726 +#define BCM53726_A0_REV_ID 1 +#define BCM53726_B0_REV_ID 0x11 + +#define BCM53312_DEVICE_ID 0xc312 +#define BCM53312_A0_REV_ID 1 +#define BCM53312_B0_REV_ID 0x11 +#define BCM53313_DEVICE_ID 0xc313 +#define BCM53313_A0_REV_ID 1 +#define BCM53313_B0_REV_ID 0x11 +#define BCM53314_DEVICE_ID 0xc314 +#define BCM53314_A0_REV_ID 1 +#define BCM53314_B0_REV_ID 0x11 + +#define BCM53322_DEVICE_ID 0xc322 +#define BCM53322_A0_REV_ID 1 +#define BCM53323_DEVICE_ID 0xc323 +#define BCM53323_A0_REV_ID 1 +#define BCM53324_DEVICE_ID 0xc324 +#define BCM53324_A0_REV_ID 1 + + +#define BCM56218_DEVICE_ID 0xB218 +#define BCM56218_A0_REV_ID 1 +#define BCM56218_A1_REV_ID 2 +#define BCM56218_A2_REV_ID 3 +#define BCM56218X_DEVICE_ID 0xc710 +#define BCM56218X_A0_REV_ID 1 +#define BCM56218X_A1_REV_ID 2 +#define BCM56218X_A2_REV_ID 3 +#define BCM56219_DEVICE_ID 0xB219 +#define BCM56219_A0_REV_ID 1 +#define BCM56219_A1_REV_ID 2 +#define BCM56219_A2_REV_ID 3 +#define BCM56218R_DEVICE_ID 0xB21A +#define BCM56218R_A0_REV_ID 1 +#define BCM56218R_A1_REV_ID 2 +#define BCM56218R_A2_REV_ID 3 +#define BCM56219R_DEVICE_ID 0xB21B +#define BCM56219R_A0_REV_ID 1 +#define BCM56219R_A1_REV_ID 2 +#define BCM56219R_A2_REV_ID 3 +#define BCM56214_DEVICE_ID 0xB214 +#define BCM56214_A0_REV_ID 1 +#define BCM56214_A1_REV_ID 2 +#define BCM56214_A2_REV_ID 3 +#define BCM56215_DEVICE_ID 0xB215 +#define BCM56215_A0_REV_ID 1 +#define BCM56215_A1_REV_ID 2 +#define BCM56215_A2_REV_ID 3 +#define BCM56214R_DEVICE_ID 0xB21C +#define BCM56214R_A0_REV_ID 1 +#define BCM56214R_A1_REV_ID 2 +#define BCM56214R_A2_REV_ID 3 +#define BCM56215R_DEVICE_ID 0xB21D +#define BCM56215R_A0_REV_ID 1 +#define BCM56215R_A1_REV_ID 2 +#define BCM56215R_A2_REV_ID 3 +#define BCM56216_DEVICE_ID 0xB216 +#define BCM56216_A0_REV_ID 1 +#define BCM56216_A1_REV_ID 2 +#define BCM56216_A2_REV_ID 3 +#define BCM56217_DEVICE_ID 0xB217 +#define BCM56217_A0_REV_ID 1 +#define BCM56217_A1_REV_ID 2 +#define BCM56217_A2_REV_ID 3 +#define BCM56212_DEVICE_ID 0xB212 +#define BCM56212_A0_REV_ID 1 +#define BCM56212_A1_REV_ID 2 +#define BCM56212_A2_REV_ID 3 +#define BCM56213_DEVICE_ID 0xB213 +#define BCM56213_A0_REV_ID 1 +#define BCM56213_A1_REV_ID 2 +#define BCM56213_A2_REV_ID 3 +#define BCM53718_DEVICE_ID 0xC71A +#define BCM53718_A0_REV_ID 1 +#define BCM53718_A1_REV_ID 2 +#define BCM53718_A2_REV_ID 3 +#define BCM53714_DEVICE_ID 0xC71B +#define BCM53714_A0_REV_ID 1 +#define BCM53714_A1_REV_ID 2 +#define BCM53714_A2_REV_ID 3 +#define BCM53716_DEVICE_ID 0xC716 +#define BCM53716_A0_REV_ID 1 +#define BCM53716_A1_REV_ID 2 +#define BCM53716_A2_REV_ID 3 +#define BCM56018_DEVICE_ID 0xB018 +#define BCM56018_A0_REV_ID 1 +#define BCM56018_A1_REV_ID 2 +#define BCM56018_A2_REV_ID 3 +#define BCM56014_DEVICE_ID 0xB014 +#define BCM56014_A0_REV_ID 1 +#define BCM56014_A1_REV_ID 2 +#define BCM56014_A2_REV_ID 3 + +#define BCM56510_DEVICE_ID 0xb510 +#define BCM56510_A0_REV_ID 1 +#define BCM56511_DEVICE_ID 0xb511 +#define BCM56511_A0_REV_ID 1 +#define BCM56512_DEVICE_ID 0xb512 +#define BCM56512_A0_REV_ID 1 +#define BCM56513_DEVICE_ID 0xb513 +#define BCM56513_A0_REV_ID 1 +#define BCM56514_DEVICE_ID 0xb514 +#define BCM56514_A0_REV_ID 1 +#define BCM56516_DEVICE_ID 0xb516 +#define BCM56516_A0_REV_ID 1 +#define BCM56517_DEVICE_ID 0xb517 +#define BCM56517_A0_REV_ID 1 +#define BCM56518_DEVICE_ID 0xb518 +#define BCM56518_A0_REV_ID 1 +#define BCM56519_DEVICE_ID 0xb519 +#define BCM56519_A0_REV_ID 1 + +#define BCM56620_DEVICE_ID 0xb620 +#define BCM56620_A0_REV_ID 1 +#define BCM56620_A1_REV_ID 2 +#define BCM56620_B0_REV_ID 0x11 +#define BCM56620_B1_REV_ID 0x12 +#define BCM56620_B2_REV_ID 0x13 +#define BCM56624_DEVICE_ID 0xb624 +#define BCM56624_A0_REV_ID 1 +#define BCM56624_A1_REV_ID 2 +#define BCM56624_B0_REV_ID 0x11 +#define BCM56624_B1_REV_ID 0x12 +#define BCM56624_B2_REV_ID 0x13 +#define BCM56626_DEVICE_ID 0xb626 +#define BCM56626_A0_REV_ID 1 +#define BCM56626_A1_REV_ID 2 +#define BCM56626_B0_REV_ID 0x11 +#define BCM56626_B1_REV_ID 0x12 +#define BCM56626_B2_REV_ID 0x13 +#define BCM56628_DEVICE_ID 0xb628 +#define BCM56628_A0_REV_ID 1 +#define BCM56628_A1_REV_ID 2 +#define BCM56628_B0_REV_ID 0x11 +#define BCM56628_B1_REV_ID 0x12 +#define BCM56628_B2_REV_ID 0x13 +#define BCM56629_DEVICE_ID 0xb629 +#define BCM56629_A0_REV_ID 1 +#define BCM56629_A1_REV_ID 2 +#define BCM56629_B0_REV_ID 0x11 +#define BCM56629_B1_REV_ID 0x12 +#define BCM56629_B2_REV_ID 0x13 + +#define BCM56680_DEVICE_ID 0xb680 +#define BCM56680_A0_REV_ID 1 +#define BCM56680_A1_REV_ID 2 +#define BCM56680_B0_REV_ID 0x11 +#define BCM56680_B1_REV_ID 0x12 +#define BCM56680_B2_REV_ID 0x13 +#define BCM56684_DEVICE_ID 0xb684 +#define BCM56684_A0_REV_ID 1 +#define BCM56684_A1_REV_ID 2 +#define BCM56684_B0_REV_ID 0x11 +#define BCM56684_B1_REV_ID 0x12 +#define BCM56684_B2_REV_ID 0x13 +#define BCM56686_DEVICE_ID 0xb686 +#define BCM56686_B0_REV_ID 0x11 +#define BCM56686_B1_REV_ID 0x12 +#define BCM56686_B2_REV_ID 0x13 + +#define BCM56820_DEVICE_ID 0xb820 +#define BCM56820_A0_REV_ID 1 +#define BCM56820_B0_REV_ID 0x11 +#define BCM56821_DEVICE_ID 0xb821 +#define BCM56821_A0_REV_ID 1 +#define BCM56821_B0_REV_ID 0x11 +#define BCM56822_DEVICE_ID 0xb822 +#define BCM56822_A0_REV_ID 1 +#define BCM56822_B0_REV_ID 0x11 +#define BCM56823_DEVICE_ID 0xb823 +#define BCM56823_A0_REV_ID 1 +#define BCM56823_B0_REV_ID 0x11 +#define BCM56825_DEVICE_ID 0xb825 +#define BCM56825_B0_REV_ID 0x11 + +#define BCM56720_DEVICE_ID 0xb720 +#define BCM56720_A0_REV_ID 1 +#define BCM56720_B0_REV_ID 0x11 +#define BCM56721_DEVICE_ID 0xb721 +#define BCM56721_A0_REV_ID 1 +#define BCM56721_B0_REV_ID 0x11 + +#define BCM56725_DEVICE_ID 0xb725 +#define BCM56725_A0_REV_ID 1 +#define BCM56725_B0_REV_ID 0x11 + +#define BCM56630_DEVICE_ID 0xb630 +#define BCM56630_A0_REV_ID 1 +#define BCM56630_B0_REV_ID 0x11 +#define BCM56634_DEVICE_ID 0xb634 +#define BCM56634_A0_REV_ID 1 +#define BCM56634_B0_REV_ID 0x11 +#define BCM56636_DEVICE_ID 0xb636 +#define BCM56636_A0_REV_ID 1 +#define BCM56636_B0_REV_ID 0x11 +#define BCM56638_DEVICE_ID 0xb638 +#define BCM56638_A0_REV_ID 1 +#define BCM56638_B0_REV_ID 0x11 +#define BCM56639_DEVICE_ID 0xb639 +#define BCM56639_A0_REV_ID 1 +#define BCM56639_B0_REV_ID 0x11 + +#define BCM56685_DEVICE_ID 0xb685 +#define BCM56685_A0_REV_ID 1 +#define BCM56685_B0_REV_ID 0x11 +#define BCM56689_DEVICE_ID 0xb689 +#define BCM56689_A0_REV_ID 1 +#define BCM56689_B0_REV_ID 0x11 + +#define BCM56520_DEVICE_ID 0xb520 +#define BCM56520_A0_REV_ID 1 +#define BCM56520_B0_REV_ID 0x11 +#define BCM56521_DEVICE_ID 0xb521 +#define BCM56521_A0_REV_ID 1 +#define BCM56521_B0_REV_ID 0x11 +#define BCM56522_DEVICE_ID 0xb522 +#define BCM56522_A0_REV_ID 1 +#define BCM56522_B0_REV_ID 0x11 +#define BCM56524_DEVICE_ID 0xb524 +#define BCM56524_A0_REV_ID 1 +#define BCM56524_B0_REV_ID 0x11 +#define BCM56526_DEVICE_ID 0xb526 +#define BCM56526_A0_REV_ID 1 +#define BCM56526_B0_REV_ID 0x11 + +#define BCM56534_DEVICE_ID 0xb534 +#define BCM56534_B0_REV_ID 0x11 +#define BCM56538_DEVICE_ID 0xb538 +#define BCM56538_B0_REV_ID 0x11 + +#define BCM56331_DEVICE_ID 0xb331 +#define BCM56331_A0_REV_ID 1 +#define BCM56331_B0_REV_ID 0x11 +#define BCM56331_B1_REV_ID 0x12 +#define BCM56333_DEVICE_ID 0xb333 +#define BCM56333_A0_REV_ID 1 +#define BCM56333_B0_REV_ID 0x11 +#define BCM56333_B1_REV_ID 0x12 +#define BCM56334_DEVICE_ID 0xb334 +#define BCM56334_A0_REV_ID 1 +#define BCM56334_B0_REV_ID 0x11 +#define BCM56334_B1_REV_ID 0x12 +#define BCM56338_DEVICE_ID 0xb338 +#define BCM56338_A0_REV_ID 1 +#define BCM56338_B0_REV_ID 0x11 +#define BCM56338_B1_REV_ID 0x12 + +#define BCM56320_DEVICE_ID 0xb320 +#define BCM56320_A0_REV_ID 1 +#define BCM56320_B0_REV_ID 0x11 +#define BCM56320_B1_REV_ID 0x12 +#define BCM56321_DEVICE_ID 0xb321 +#define BCM56321_A0_REV_ID 1 +#define BCM56321_B0_REV_ID 0x11 +#define BCM56321_B1_REV_ID 0x12 + + +#define BCM56548H_DEVICE_ID 0xB54A +#define BCM56548H_A0_REV_ID 1 +#define BCM56548_DEVICE_ID 0xb548 +#define BCM56548_A0_REV_ID 1 +#define BCM56547_DEVICE_ID 0xb547 +#define BCM56547_A0_REV_ID 1 + +#define BCM56346_DEVICE_ID 0xb346 +#define BCM56346_A0_REV_ID 1 +#define BCM56345_DEVICE_ID 0xb345 +#define BCM56345_A0_REV_ID 1 +#define BCM56344_DEVICE_ID 0xb344 +#define BCM56344_A0_REV_ID 1 +#define BCM56342_DEVICE_ID 0xb342 +#define BCM56342_A0_REV_ID 1 +#define BCM56340_DEVICE_ID 0xb340 +#define BCM56340_A0_REV_ID 1 + +#define BCM56049_DEVICE_ID 0xb049 +#define BCM56049_A0_REV_ID 1 +#define BCM56048_DEVICE_ID 0xb048 +#define BCM56048_A0_REV_ID 1 +#define BCM56047_DEVICE_ID 0xb047 +#define BCM56047_A0_REV_ID 1 + +#define BCM56042_DEVICE_ID 0xb042 +#define BCM56042_A0_REV_ID 1 +#define BCM56041_DEVICE_ID 0xb041 +#define BCM56041_A0_REV_ID 1 +#define BCM56040_DEVICE_ID 0xb040 +#define BCM56040_A0_REV_ID 1 + +#define BCM56132_DEVICE_ID 0xb132 +#define BCM56132_A0_REV_ID 1 +#define BCM56132_B0_REV_ID 0x11 +#define BCM56132_B1_REV_ID 0x12 +#define BCM56134_DEVICE_ID 0xb134 +#define BCM56134_A0_REV_ID 1 +#define BCM56134_B0_REV_ID 0x11 +#define BCM56134_B1_REV_ID 0x12 + +#define BCM56230_DEVICE_ID 0xb230 +#define BCM56230_B1_REV_ID 0x12 +#define BCM56231_DEVICE_ID 0xb231 +#define BCM56231_B1_REV_ID 0x12 + +#define BCM56140_DEVICE_ID 0xb140 +#define BCM56140_A0_REV_ID 1 +#define BCM56142_DEVICE_ID 0xb142 +#define BCM56142_A0_REV_ID 1 +#define BCM56143_DEVICE_ID 0xb143 +#define BCM56143_A0_REV_ID 1 +#define BCM56144_DEVICE_ID 0xb144 +#define BCM56144_A0_REV_ID 1 +#define BCM56146_DEVICE_ID 0xb146 +#define BCM56146_A0_REV_ID 1 +#define BCM56147_DEVICE_ID 0xb147 +#define BCM56147_A0_REV_ID 1 +#define BCM56149_DEVICE_ID 0xb149 +#define BCM56149_A0_REV_ID 1 + +#define BCM56840_DEVICE_ID 0xb840 +#define BCM56840_A0_REV_ID 1 +#define BCM56840_A1_REV_ID 2 +#define BCM56840_A2_REV_ID 3 +#define BCM56840_A3_REV_ID 4 +#define BCM56840_A4_REV_ID 5 +#define BCM56840_B0_REV_ID 0x11 +#define BCM56840_B1_REV_ID 0x12 +#define BCM56841_DEVICE_ID 0xb841 +#define BCM56841_A0_REV_ID 1 +#define BCM56841_A1_REV_ID 2 +#define BCM56841_A2_REV_ID 3 +#define BCM56841_A3_REV_ID 4 +#define BCM56841_A4_REV_ID 5 +#define BCM56841_B0_REV_ID 0x11 +#define BCM56841_B1_REV_ID 0x12 +#define BCM56843_DEVICE_ID 0xb843 +#define BCM56843_A0_REV_ID 1 +#define BCM56843_A1_REV_ID 2 +#define BCM56843_A2_REV_ID 3 +#define BCM56843_A3_REV_ID 4 +#define BCM56843_A4_REV_ID 5 +#define BCM56843_B0_REV_ID 0x11 +#define BCM56843_B1_REV_ID 0x12 +#define BCM56845_DEVICE_ID 0xb845 +#define BCM56845_A0_REV_ID 1 +#define BCM56845_A1_REV_ID 2 +#define BCM56845_A2_REV_ID 3 +#define BCM56845_A3_REV_ID 4 +#define BCM56845_A4_REV_ID 5 +#define BCM56845_B0_REV_ID 0x11 +#define BCM56845_B1_REV_ID 0x12 + +#define BCM56743_DEVICE_ID 0xb743 +#define BCM56743_A0_REV_ID 1 +#define BCM56743_A1_REV_ID 2 +#define BCM56743_A2_REV_ID 3 +#define BCM56743_A3_REV_ID 4 +#define BCM56743_A4_REV_ID 5 +#define BCM56743_B0_REV_ID 0x11 +#define BCM56743_B1_REV_ID 0x12 +#define BCM56745_DEVICE_ID 0xb745 +#define BCM56745_A0_REV_ID 1 +#define BCM56745_A1_REV_ID 2 +#define BCM56745_A2_REV_ID 3 +#define BCM56745_A3_REV_ID 4 +#define BCM56745_A4_REV_ID 5 +#define BCM56745_B0_REV_ID 0x11 +#define BCM56745_B1_REV_ID 0x12 + +#define BCM56260_DEVICE_ID 0xb260 +#define BCM56260_A0_REV_ID 1 +#define BCM56260_B0_REV_ID 0x11 +#define BCM56261_DEVICE_ID 0xb261 +#define BCM56261_A0_REV_ID 1 +#define BCM56261_B0_REV_ID 0x11 +#define BCM56262_DEVICE_ID 0xb262 +#define BCM56262_A0_REV_ID 1 +#define BCM56262_B0_REV_ID 0x11 +#define BCM56263_DEVICE_ID 0xb263 +#define BCM56263_A0_REV_ID 1 +#define BCM56263_B0_REV_ID 0x11 + +#define BCM56265_DEVICE_ID 0xb265 +#define BCM56265_A0_REV_ID 1 +#define BCM56265_B0_REV_ID 0x11 +#define BCM56266_DEVICE_ID 0xb266 +#define BCM56266_A0_REV_ID 1 +#define BCM56266_B0_REV_ID 0x11 +#define BCM56267_DEVICE_ID 0xb267 +#define BCM56267_A0_REV_ID 1 +#define BCM56267_B0_REV_ID 0x11 +#define BCM56268_DEVICE_ID 0xb268 +#define BCM56268_A0_REV_ID 1 +#define BCM56268_B0_REV_ID 0x11 + +#define BCM56233_DEVICE_ID 0xb233 +#define BCM56233_B0_REV_ID 0x11 + +#define BCM56460_DEVICE_ID 0xb460 +#define BCM56460_A0_REV_ID 1 +#define BCM56460_B0_REV_ID 0x11 +#define BCM56461_DEVICE_ID 0xb461 +#define BCM56461_A0_REV_ID 1 +#define BCM56461_B0_REV_ID 0x11 +#define BCM56462_DEVICE_ID 0xb462 +#define BCM56462_A0_REV_ID 1 +#define BCM56462_B0_REV_ID 0x11 +#define BCM56463_DEVICE_ID 0xb463 +#define BCM56463_A0_REV_ID 1 +#define BCM56463_B0_REV_ID 0x11 + +#define BCM56465_DEVICE_ID 0xb465 +#define BCM56465_A0_REV_ID 1 +#define BCM56465_B0_REV_ID 0x11 +#define BCM56466_DEVICE_ID 0xb466 +#define BCM56466_A0_REV_ID 1 +#define BCM56466_B0_REV_ID 0x11 +#define BCM56467_DEVICE_ID 0xb467 +#define BCM56467_A0_REV_ID 1 +#define BCM56467_B0_REV_ID 0x11 +#define BCM56468_DEVICE_ID 0xb468 +#define BCM56468_A0_REV_ID 1 +#define BCM56468_B0_REV_ID 0x11 + +#define BCM56270_DEVICE_ID 0xb270 +#define BCM56270_A0_REV_ID 1 +#define BCM56271_DEVICE_ID 0xb271 +#define BCM56271_A0_REV_ID 1 +#define BCM56272_DEVICE_ID 0xb272 +#define BCM56272_A0_REV_ID 1 + +#define BCM53460_DEVICE_ID 0x8460 +#define BCM53460_A0_REV_ID 1 +#define BCM53461_DEVICE_ID 0x8461 +#define BCM53461_A0_REV_ID 1 + +#define BCM56842_DEVICE_ID 0xb842 +#define BCM56842_A0_REV_ID 1 +#define BCM56842_A1_REV_ID 2 +#define BCM56844_DEVICE_ID 0xb844 +#define BCM56844_A0_REV_ID 1 +#define BCM56844_A1_REV_ID 2 +#define BCM56846_DEVICE_ID 0xb846 +#define BCM56846_A0_REV_ID 1 +#define BCM56846_A1_REV_ID 2 +#define BCM56549_DEVICE_ID 0xb549 +#define BCM56549_A0_REV_ID 1 +#define BCM56549_A1_REV_ID 2 +#define BCM56053_DEVICE_ID 0xb053 +#define BCM56053_A0_REV_ID 1 +#define BCM56053_A1_REV_ID 2 +#define BCM56831_DEVICE_ID 0xb831 +#define BCM56831_A0_REV_ID 1 +#define BCM56831_A1_REV_ID 2 +#define BCM56835_DEVICE_ID 0xb835 +#define BCM56835_A0_REV_ID 1 +#define BCM56835_A1_REV_ID 2 +#define BCM56838_DEVICE_ID 0xb838 +#define BCM56838_A0_REV_ID 1 +#define BCM56838_A1_REV_ID 2 +#define BCM56847_DEVICE_ID 0xb847 +#define BCM56847_A0_REV_ID 1 +#define BCM56847_A1_REV_ID 2 +#define BCM56847_A2_REV_ID 3 +#define BCM56847_A3_REV_ID 4 +#define BCM56847_A4_REV_ID 5 +#define BCM56847_B0_REV_ID 0x11 +#define BCM56847_B1_REV_ID 0x12 +#define BCM56849_DEVICE_ID 0xb849 +#define BCM56849_A0_REV_ID 1 +#define BCM56849_A1_REV_ID 2 + +#define BCM56742_DEVICE_ID 0xb742 +#define BCM56742_A0_REV_ID 1 +#define BCM56742_A1_REV_ID 2 +#define BCM56742_A2_REV_ID 3 +#define BCM56744_DEVICE_ID 0xb744 +#define BCM56744_A0_REV_ID 1 +#define BCM56744_A1_REV_ID 2 +#define BCM56746_DEVICE_ID 0xb746 +#define BCM56746_A0_REV_ID 1 +#define BCM56746_A1_REV_ID 2 + +#define BCM88230_DEVICE_ID 0x0230 +#define BCM88230_A0_REV_ID 1 +#define BCM88230_B0_REV_ID 0x11 +#define BCM88230_C0_REV_ID 0x21 +#define BCM88231_DEVICE_ID 0x0231 +#define BCM88231_A0_REV_ID 1 +#define BCM88231_B0_REV_ID 0x11 +#define BCM88231_C0_REV_ID 0x21 +#define BCM88235_DEVICE_ID 0x0235 +#define BCM88235_A0_REV_ID 1 +#define BCM88235_B0_REV_ID 0x11 +#define BCM88235_C0_REV_ID 0x21 +#define BCM88236_DEVICE_ID 0x0236 +#define BCM88236_A0_REV_ID 1 +#define BCM88236_B0_REV_ID 0x11 +#define BCM88236_C0_REV_ID 0x21 +#define BCM88239_DEVICE_ID 0x0239 +#define BCM88239_A0_REV_ID 1 +#define BCM88239_B0_REV_ID 0x11 +#define BCM88239_C0_REV_ID 0x21 +#define BCM56613_DEVICE_ID 0xb613 +#define BCM56613_A0_REV_ID 1 +#define BCM56613_B0_REV_ID 0x11 +#define BCM56613_C0_REV_ID 0x21 + +#define BCM88732_DEVICE_ID 0x0732 +#define BCM88732_A0_REV_ID 1 +#define BCM88732_A1_REV_ID 2 +#define BCM88732_A2_REV_ID 4 +#define BCM88732_B0_REV_ID 0x11 +#define BCM88732_B1_REV_ID 0x12 +#define BCM88732_B2_REV_ID 0x13 + +#define BCM56640_DEVICE_ID 0xb640 +#define BCM56640_A0_REV_ID 1 +#define BCM56640_A1_REV_ID 2 +#define BCM56640_B0_REV_ID 0x11 +#define BCM56643_DEVICE_ID 0xb643 +#define BCM56643_A0_REV_ID 1 +#define BCM56643_A1_REV_ID 2 +#define BCM56643_B0_REV_ID 0x11 +#define BCM56644_DEVICE_ID 0xb644 +#define BCM56644_A0_REV_ID 1 +#define BCM56644_A1_REV_ID 2 +#define BCM56644_B0_REV_ID 0x11 +#define BCM56648_DEVICE_ID 0xb648 +#define BCM56648_A0_REV_ID 1 +#define BCM56648_A1_REV_ID 2 +#define BCM56648_B0_REV_ID 0x11 +#define BCM56649_DEVICE_ID 0xb649 +#define BCM56649_A0_REV_ID 1 +#define BCM56649_A1_REV_ID 2 +#define BCM56649_B0_REV_ID 0x11 + +#define BCM56540_DEVICE_ID 0xb540 +#define BCM56540_A0_REV_ID 1 +#define BCM56540_A1_REV_ID 2 +#define BCM56540_B0_REV_ID 0x11 +#define BCM56541_DEVICE_ID 0xb541 +#define BCM56541_A0_REV_ID 1 +#define BCM56541_A1_REV_ID 2 +#define BCM56541_B0_REV_ID 0x11 +#define BCM56542_DEVICE_ID 0xb542 +#define BCM56542_A0_REV_ID 1 +#define BCM56542_A1_REV_ID 2 +#define BCM56542_B0_REV_ID 0x11 +#define BCM56543_DEVICE_ID 0xb543 +#define BCM56543_A0_REV_ID 1 +#define BCM56543_A1_REV_ID 2 +#define BCM56543_B0_REV_ID 0x11 +#define BCM56544_DEVICE_ID 0xb544 +#define BCM56544_A0_REV_ID 1 +#define BCM56544_A1_REV_ID 2 +#define BCM56544_B0_REV_ID 0x11 + +#define BCM56545_DEVICE_ID 0xb545 +#define BCM56545_A0_REV_ID 1 +#define BCM56545_A1_REV_ID 2 +#define BCM56545_B0_REV_ID 0x11 +#define BCM56546_DEVICE_ID 0xb546 +#define BCM56546_A0_REV_ID 1 +#define BCM56546_A1_REV_ID 2 +#define BCM56546_B0_REV_ID 0x11 + +#define BCM56044_DEVICE_ID 0xb044 +#define BCM56044_B0_REV_ID 0x11 +#define BCM56045_DEVICE_ID 0xb045 +#define BCM56045_A0_REV_ID 1 +#define BCM56045_A1_REV_ID 2 +#define BCM56045_B0_REV_ID 0x11 +#define BCM56046_DEVICE_ID 0xb046 +#define BCM56046_A0_REV_ID 1 +#define BCM56046_A1_REV_ID 2 +#define BCM56046_B0_REV_ID 0x11 + + +#define BCM56440_DEVICE_ID 0xb440 +#define BCM56440_A0_REV_ID 1 +#define BCM56440_B0_REV_ID 0x11 +#define BCM56441_DEVICE_ID 0xb441 +#define BCM56441_A0_REV_ID 1 +#define BCM56441_B0_REV_ID 0x11 +#define BCM56442_DEVICE_ID 0xb442 +#define BCM56442_A0_REV_ID 1 +#define BCM56442_B0_REV_ID 0x11 +#define BCM56443_DEVICE_ID 0xb443 +#define BCM56443_A0_REV_ID 1 +#define BCM56443_B0_REV_ID 0x11 +#define BCM56445_DEVICE_ID 0xb445 +#define BCM56445_A0_REV_ID 1 +#define BCM56445_B0_REV_ID 0x11 +#define BCM56446_DEVICE_ID 0xb446 +#define BCM56446_A0_REV_ID 1 +#define BCM56446_B0_REV_ID 0x11 +#define BCM56447_DEVICE_ID 0xb447 +#define BCM56447_A0_REV_ID 1 +#define BCM56447_B0_REV_ID 0x11 +#define BCM56448_DEVICE_ID 0xb448 +#define BCM56448_A0_REV_ID 1 +#define BCM56448_B0_REV_ID 0x11 +#define BCM56449_DEVICE_ID 0xb449 +#define BCM56449_A0_REV_ID 1 +#define BCM56449_B0_REV_ID 0x11 +#define BCM56240_DEVICE_ID 0xb240 +#define BCM56240_A0_REV_ID 1 +#define BCM56240_B0_REV_ID 0x11 +#define BCM56241_DEVICE_ID 0xb241 +#define BCM56241_A0_REV_ID 1 +#define BCM56241_B0_REV_ID 0x11 +#define BCM56242_DEVICE_ID 0xb242 +#define BCM56242_A0_REV_ID 1 +#define BCM56242_B0_REV_ID 0x11 +#define BCM56243_DEVICE_ID 0xb243 +#define BCM56243_A0_REV_ID 1 +#define BCM56243_B0_REV_ID 0x11 +#define BCM56245_DEVICE_ID 0xb245 +#define BCM56245_A0_REV_ID 1 +#define BCM56245_B0_REV_ID 0x11 +#define BCM56246_DEVICE_ID 0xb246 +#define BCM56246_A0_REV_ID 1 +#define BCM56246_B0_REV_ID 0x11 +#define BCM55440_DEVICE_ID 0xa440 +#define BCM55440_A0_REV_ID 1 +#define BCM55440_B0_REV_ID 0x11 +#define BCM55441_DEVICE_ID 0xa441 +#define BCM55441_A0_REV_ID 1 +#define BCM55441_B0_REV_ID 0x11 + +#define BCM55450_DEVICE_ID 0xa450 +#define BCM55450_A0_REV_ID 1 +#define BCM55450_B0_REV_ID 0x11 +#define BCM55450_B1_REV_ID 0x12 + +#define BCM55455_DEVICE_ID 0xa455 +#define BCM55455_A0_REV_ID 1 +#define BCM55455_B0_REV_ID 0x11 +#define BCM55455_B1_REV_ID 0x12 + +#define BCM56248_DEVICE_ID 0xb248 +#define BCM56248_A0_REV_ID 1 +#define BCM56248_B0_REV_ID 0x11 +#define BCM56248_B1_REV_ID 0x12 + +#define BCM56450_DEVICE_ID 0xb450 +#define BCM56450_A0_REV_ID 1 +#define BCM56450_B0_REV_ID 0x11 +#define BCM56450_B1_REV_ID 0x12 + +#define BCM56452_DEVICE_ID 0xb452 +#define BCM56452_A0_REV_ID 1 +#define BCM56452_B0_REV_ID 0x11 +#define BCM56452_B1_REV_ID 0x12 + +#define BCM56454_DEVICE_ID 0xb454 +#define BCM56454_A0_REV_ID 1 +#define BCM56454_B0_REV_ID 0x11 +#define BCM56454_B1_REV_ID 0x12 + +#define BCM56455_DEVICE_ID 0xb455 +#define BCM56455_A0_REV_ID 1 +#define BCM56455_B0_REV_ID 0x11 +#define BCM56455_B1_REV_ID 0x12 + +#define BCM56456_DEVICE_ID 0xb456 +#define BCM56456_A0_REV_ID 1 +#define BCM56456_B0_REV_ID 0x11 +#define BCM56456_B1_REV_ID 0x12 + +#define BCM56457_DEVICE_ID 0xb457 +#define BCM56457_A0_REV_ID 1 +#define BCM56457_B0_REV_ID 0x11 +#define BCM56457_B1_REV_ID 0x12 + +#define BCM56458_DEVICE_ID 0xb458 +#define BCM56458_A0_REV_ID 1 +#define BCM56458_B0_REV_ID 0x11 +#define BCM56458_B1_REV_ID 0x12 + +#define BCM56850_DEVICE_ID 0xb850 +#define BCM56850_A0_REV_ID 1 +#define BCM56850_A1_REV_ID 2 +#define BCM56850_A2_REV_ID 3 +#define BCM56851_DEVICE_ID 0xb851 +#define BCM56851_A0_REV_ID 1 +#define BCM56851_A1_REV_ID 2 +#define BCM56851_A2_REV_ID 3 +#define BCM56852_DEVICE_ID 0xb852 +#define BCM56852_A0_REV_ID 1 +#define BCM56852_A1_REV_ID 2 +#define BCM56852_A2_REV_ID 3 +#define BCM56853_DEVICE_ID 0xb853 +#define BCM56853_A0_REV_ID 1 +#define BCM56853_A1_REV_ID 2 +#define BCM56853_A2_REV_ID 3 +#define BCM56854_DEVICE_ID 0xb854 +#define BCM56854_A0_REV_ID 1 +#define BCM56854_A1_REV_ID 2 +#define BCM56854_A2_REV_ID 3 +#define BCM56855_DEVICE_ID 0xb855 +#define BCM56855_A0_REV_ID 1 +#define BCM56855_A1_REV_ID 2 +#define BCM56855_A2_REV_ID 3 +#define BCM56834_DEVICE_ID 0xb834 +#define BCM56834_A0_REV_ID 1 +#define BCM56834_A1_REV_ID 2 +#define BCM56834_A2_REV_ID 3 + +#define BCM56860_DEVICE_ID 0xb860 +#define BCM56860_A0_REV_ID 1 +#define BCM56860_A1_REV_ID 2 +#define BCM56861_DEVICE_ID 0xb861 +#define BCM56861_A0_REV_ID 1 +#define BCM56861_A1_REV_ID 2 +#define BCM56862_DEVICE_ID 0xb862 +#define BCM56862_A0_REV_ID 1 +#define BCM56862_A1_REV_ID 2 +#define BCM56864_DEVICE_ID 0xb864 +#define BCM56864_A0_REV_ID 1 +#define BCM56864_A1_REV_ID 2 +#define BCM56865_DEVICE_ID 0xb865 +#define BCM56865_A0_REV_ID 1 +#define BCM56865_A1_REV_ID 2 +#define BCM56866_DEVICE_ID 0xb866 +#define BCM56866_A0_REV_ID 1 +#define BCM56866_A1_REV_ID 2 +#define BCM56867_DEVICE_ID 0xb867 +#define BCM56867_A0_REV_ID 1 +#define BCM56867_A1_REV_ID 2 +#define BCM56868_DEVICE_ID 0xb868 +#define BCM56868_A0_REV_ID 1 +#define BCM56868_A1_REV_ID 2 +#define BCM56832_DEVICE_ID 0xb832 +#define BCM56832_A0_REV_ID 1 +#define BCM56832_A1_REV_ID 2 +#define BCM56833_DEVICE_ID 0xb833 +#define BCM56833_A0_REV_ID 1 +#define BCM56833_A1_REV_ID 2 +#define BCM56836_DEVICE_ID 0xb836 +#define BCM56836_A0_REV_ID 1 +#define BCM56836_A1_REV_ID 2 + + +#define BCM56750_DEVICE_ID 0xb750 +#define BCM56750_A0_REV_ID 1 +#define BCM56750_A1_REV_ID 2 +#define BCM56750_A2_REV_ID 3 + +#define BCM56830_DEVICE_ID 0xb830 +#define BCM56830_A0_REV_ID 1 +#define BCM56830_A1_REV_ID 2 +#define BCM56830_A2_REV_ID 3 + +#define BCM56150_DEVICE_ID 0xb150 +#define BCM56150_A0_REV_ID 1 +#define BCM56151_DEVICE_ID 0xb151 +#define BCM56151_A0_REV_ID 1 +#define BCM56152_DEVICE_ID 0xb152 +#define BCM56152_A0_REV_ID 1 + +#define BCM53342_DEVICE_ID 0x8342 +#define BCM53342_A0_REV_ID 1 +#define BCM53343_DEVICE_ID 0x8343 +#define BCM53343_A0_REV_ID 1 +#define BCM53344_DEVICE_ID 0x8344 +#define BCM53344_A0_REV_ID 1 +#define BCM53346_DEVICE_ID 0x8346 +#define BCM53346_A0_REV_ID 1 +#define BCM53347_DEVICE_ID 0x8347 +#define BCM53347_A0_REV_ID 1 + +#define BCM53333_DEVICE_ID 0x8333 +#define BCM53333_A0_REV_ID 1 +#define BCM53334_DEVICE_ID 0x8334 +#define BCM53334_A0_REV_ID 1 + +#define BCM53393_DEVICE_ID 0x8393 +#define BCM53393_A0_REV_ID 1 +#define BCM53394_DEVICE_ID 0x8394 +#define BCM53394_A0_REV_ID 1 + +#define BCM53400_DEVICE_ID 0x8400 +#define BCM53400_A0_REV_ID 1 +#define BCM56060_DEVICE_ID 0xb060 +#define BCM56060_A0_REV_ID 1 +#define BCM56062_DEVICE_ID 0xb062 +#define BCM56062_A0_REV_ID 1 +#define BCM56063_DEVICE_ID 0xb063 +#define BCM56063_A0_REV_ID 1 +#define BCM56064_DEVICE_ID 0xb064 +#define BCM56064_A0_REV_ID 1 +#define BCM56065_DEVICE_ID 0xb065 +#define BCM56065_A0_REV_ID 1 +#define BCM56066_DEVICE_ID 0xb066 +#define BCM56066_A0_REV_ID 1 +#define BCM53401_DEVICE_ID 0x8401 +#define BCM53411_DEVICE_ID 0x8411 +#define BCM53401_A0_REV_ID 1 +#define BCM53402_DEVICE_ID 0x8402 +#define BCM53412_DEVICE_ID 0x8412 +#define BCM53402_A0_REV_ID 1 +#define BCM53403_DEVICE_ID 0x8403 +#define BCM53413_DEVICE_ID 0x8413 +#define BCM53403_A0_REV_ID 1 +#define BCM53404_DEVICE_ID 0x8404 +#define BCM53414_DEVICE_ID 0x8414 +#define BCM53404_A0_REV_ID 1 +#define BCM53405_DEVICE_ID 0x8405 +#define BCM53415_DEVICE_ID 0x8415 +#define BCM53405_A0_REV_ID 1 +#define BCM53406_DEVICE_ID 0x8406 +#define BCM53416_DEVICE_ID 0x8416 +#define BCM53406_A0_REV_ID 1 +#define BCM53408_DEVICE_ID 0x8408 +#define BCM53418_DEVICE_ID 0x8418 +#define BCM53408_A0_REV_ID 1 +#define BCM53365_DEVICE_ID 0x8365 +#define BCM53365_A0_REV_ID 1 +#define BCM53369_DEVICE_ID 0x8369 +#define BCM53369_A0_REV_ID 1 + +#define BCM53454_DEVICE_ID 0x8454 +#define BCM53455_DEVICE_ID 0x8455 +#define BCM53454_A0_REV_ID 1 +#define BCM53456_DEVICE_ID 0x8456 +#define BCM53457_DEVICE_ID 0x8457 +#define BCM53456_A0_REV_ID 1 + +#define BCM53422_DEVICE_ID 0x8422 +#define BCM53422_A0_REV_ID 1 +#define BCM53424_DEVICE_ID 0x8424 +#define BCM53424_A0_REV_ID 1 +#define BCM53426_DEVICE_ID 0x8426 +#define BCM53426_A0_REV_ID 1 + +#define BCM56960_DEVICE_ID 0xb960 +#define BCM56960_A0_REV_ID 1 +#define BCM56960_B0_REV_ID 0x11 +#define BCM56960_B1_REV_ID 0x12 +#define BCM56961_DEVICE_ID 0xb961 +#define BCM56961_A0_REV_ID 1 +#define BCM56961_B0_REV_ID 0x11 +#define BCM56961_B1_REV_ID 0x12 +#define BCM56962_DEVICE_ID 0xb962 +#define BCM56962_A0_REV_ID 1 +#define BCM56962_B0_REV_ID 0x11 +#define BCM56962_B1_REV_ID 0x12 +#define BCM56963_DEVICE_ID 0xb963 +#define BCM56963_A0_REV_ID 1 +#define BCM56963_B0_REV_ID 0x11 +#define BCM56963_B1_REV_ID 0x12 +#define BCM56930_DEVICE_ID 0xb930 +#define BCM56930_A0_REV_ID 1 +#define BCM56930_B0_REV_ID 0x11 +#define BCM56930_B1_REV_ID 0x12 +#define BCM56930_C0_REV_ID 0x21 +#define BCM56931_DEVICE_ID 0xb931 +#define BCM56931_A0_REV_ID 1 +#define BCM56931_B0_REV_ID 0x11 +#define BCM56931_C0_REV_ID 0x21 +#define BCM56935_DEVICE_ID 0xb935 +#define BCM56935_A0_REV_ID 1 +#define BCM56935_B0_REV_ID 0x11 +#define BCM56935_C0_REV_ID 0x21 +#define BCM56936_DEVICE_ID 0xb936 +#define BCM56936_A0_REV_ID 1 +#define BCM56936_B0_REV_ID 0x11 +#define BCM56936_C0_REV_ID 0x21 +#define BCM56939_DEVICE_ID 0xb939 +#define BCM56939_A0_REV_ID 1 +#define BCM56939_B0_REV_ID 0x11 +#define BCM56939_C0_REV_ID 0x21 + +#define BCM56168_DEVICE_ID 0xb168 +#define BCM56168_A0_REV_ID 1 +#define BCM56168_B0_REV_ID 0x11 +#define BCM56168_B1_REV_ID 0x12 +#define BCM56169_DEVICE_ID 0xb169 +#define BCM56169_A0_REV_ID 1 +#define BCM56169_B0_REV_ID 0x11 +#define BCM56169_B1_REV_ID 0x12 + +#define BCM56968_DEVICE_ID 0xb968 +#define BCM56968_A0_REV_ID 1 +#define BCM56968_B0_REV_ID 0x11 +#define BCM56968_B1_REV_ID 0x12 + +#define BCM56160_DEVICE_ID 0xb160 +#define BCM56160_A0_REV_ID 1 +#define BCM56160_B0_REV_ID 0x11 +#define BCM56162_DEVICE_ID 0xb162 +#define BCM56162_A0_REV_ID 1 +#define BCM56162_B0_REV_ID 0x11 + +#define BCM56163_DEVICE_ID 0xb163 +#define BCM56163_A0_REV_ID 1 +#define BCM56163_B0_REV_ID 0x11 +#define BCM56164_DEVICE_ID 0xb164 +#define BCM56164_A0_REV_ID 1 +#define BCM56164_B0_REV_ID 0x11 +#define BCM56166_DEVICE_ID 0xb166 +#define BCM56166_A0_REV_ID 1 +#define BCM56166_B0_REV_ID 0x11 + +#define BCM53440_DEVICE_ID 0x8440 +#define BCM53440_A0_REV_ID 1 +#define BCM53440_B0_REV_ID 0x11 +#define BCM53442_DEVICE_ID 0x8442 +#define BCM53442_A0_REV_ID 1 +#define BCM53442_B0_REV_ID 0x11 +#define BCM53443_DEVICE_ID 0x8443 +#define BCM53443_A0_REV_ID 1 +#define BCM53443_B0_REV_ID 0x11 + +#define BCM53434_DEVICE_ID 0x8434 +#define BCM53434_A0_REV_ID 1 +#define BCM53434_B0_REV_ID 0x11 + +#define BCM56560_DEVICE_ID 0xb560 +#define BCM56560_A0_REV_ID 1 +#define BCM56560_B0_REV_ID 0x11 +#define BCM56560_B1_REV_ID 0x12 + +#define BCM56561_DEVICE_ID 0xb561 +#define BCM56561_A0_REV_ID 1 +#define BCM56561_B0_REV_ID 0x11 +#define BCM56561_B1_REV_ID 0x12 + +#define BCM56562_DEVICE_ID 0xb562 +#define BCM56562_A0_REV_ID 1 +#define BCM56562_B0_REV_ID 0x11 +#define BCM56562_B1_REV_ID 0x12 + +#define BCM56565_DEVICE_ID 0xb565 +#define BCM56565_A0_REV_ID 1 +#define BCM56565_B0_REV_ID 0x11 +#define BCM56565_B1_REV_ID 0x12 + +#define BCM56566_DEVICE_ID 0xb566 +#define BCM56566_A0_REV_ID 1 +#define BCM56566_B0_REV_ID 0x11 +#define BCM56566_B1_REV_ID 0x12 + +#define BCM56567_DEVICE_ID 0xb567 +#define BCM56567_A0_REV_ID 1 +#define BCM56567_B0_REV_ID 0x11 +#define BCM56567_B1_REV_ID 0x12 + +#define BCM56568_DEVICE_ID 0xb568 +#define BCM56568_A0_REV_ID 1 +#define BCM56568_B0_REV_ID 0x11 +#define BCM56568_B1_REV_ID 0x12 + +#define BCM56760_DEVICE_ID 0xb760 +#define BCM56760_A0_REV_ID 1 +#define BCM56760_A1_REV_ID 2 +#define BCM56760_B0_REV_ID 0x11 +#define BCM56760_B1_REV_ID 0x12 + +#define BCM56762_DEVICE_ID 0xb762 +#define BCM56762_A0_REV_ID 1 +#define BCM56762_B0_REV_ID 0x11 +#define BCM56762_B1_REV_ID 0x12 + +#define BCM56764_DEVICE_ID 0xb764 +#define BCM56764_A0_REV_ID 1 +#define BCM56764_B0_REV_ID 0x11 +#define BCM56764_B1_REV_ID 0x12 + +#define BCM56765_DEVICE_ID 0xb765 +#define BCM56765_A0_REV_ID 1 +#define BCM56765_B0_REV_ID 0x11 +#define BCM56765_B1_REV_ID 0x12 + +#define BCM56766_DEVICE_ID 0xb766 +#define BCM56766_A0_REV_ID 1 +#define BCM56766_B0_REV_ID 0x11 +#define BCM56766_B1_REV_ID 0x12 + +#define BCM56768_DEVICE_ID 0xb768 +#define BCM56768_A0_REV_ID 1 +#define BCM56768_B0_REV_ID 0x11 +#define BCM56768_B1_REV_ID 0x12 + +#define BCM56068_DEVICE_ID 0xb068 +#define BCM56068_A0_REV_ID 1 +#define BCM56068_B0_REV_ID 0x11 +#define BCM56068_B1_REV_ID 0x12 + +#define BCM56069_DEVICE_ID 0xb069 +#define BCM56069_A0_REV_ID 1 +#define BCM56069_B0_REV_ID 0x11 +#define BCM56069_B1_REV_ID 0x12 + +#define BCM56170_DEVICE_ID 0xb170 +#define BCM56170_A0_REV_ID 1 +#define BCM56172_DEVICE_ID 0xb172 +#define BCM56172_A0_REV_ID 1 +#define BCM56174_DEVICE_ID 0xb174 +#define BCM56174_A0_REV_ID 1 + +#define BCM53570_DEVICE_ID 0x8570 +#define BCM53570_A0_REV_ID 1 +#define BCM53575_DEVICE_ID 0x8575 +#define BCM53575_A0_REV_ID 1 + + +#define BCM56965_DEVICE_ID 0xb965 +#define BCM56965_A0_REV_ID 1 +#define BCM56965_A1_REV_ID 2 +#define BCM56969_DEVICE_ID 0xb969 +#define BCM56969_A0_REV_ID 1 +#define BCM56966_DEVICE_ID 0xb966 +#define BCM56966_A0_REV_ID 1 +#define BCM56967_DEVICE_ID 0xb967 +#define BCM56967_A0_REV_ID 1 + +#define BCM56970_DEVICE_ID 0xb970 +#define BCM56970_A0_REV_ID 1 +#define BCM56970_B0_REV_ID 0x11 +#define BCM56971_DEVICE_ID 0xb971 +#define BCM56971_A0_REV_ID 1 +#define BCM56971_B0_REV_ID 0x11 +#define BCM56972_DEVICE_ID 0xb972 +#define BCM56972_A0_REV_ID 1 +#define BCM56972_B0_REV_ID 0x11 +#define BCM56974_DEVICE_ID 0xb974 +#define BCM56974_A0_REV_ID 1 +#define BCM56974_B0_REV_ID 0x11 + + +#define BCM56870_DEVICE_ID 0xb870 +#define BCM56870_A0_REV_ID 1 +#define BCM56873_DEVICE_ID 0xb873 +#define BCM56873_A0_REV_ID 1 + +#define BCM5665_DEVICE_ID 0x5665 +#define BCM5665_A0_REV_ID 1 +#define BCM5665_B0_REV_ID 0x11 + + +#define BCM5655_DEVICE_ID 0x5655 +#define BCM5655_A0_REV_ID 1 +#define BCM5655_B0_REV_ID 0x11 + + +#define BCM5650_DEVICE_ID 0x5650 +#define BCM5650_A0_REV_ID 1 +#define BCM5650_B0_REV_ID 0x11 +#define BCM5650_C0_REV_ID 0x21 + +#define BROADCOM_PHYID_HIGH 0x0040 + +#define BCM5338_PHYID_LOW 0x62b0 +#define BCM5338_A0_REV_ID 0 +#define BCM5338_A1_REV_ID 1 +#define BCM5338_B0_REV_ID 3 + +#define BCM5324_PHYID_LOW 0xbc20 +#define BCM5324_PHYID_HIGH 0x143 +#define BCM5324_A1_PHYID_HIGH 0x153 +#define BCM5324_DEVICE_ID 0xbc20 +#define BCM5324_A0_REV_ID 0 +#define BCM5324_A1_REV_ID 1 +#define BCM5324_A2_REV_ID 2 + +#define BCM5380_PHYID_LOW 0x6250 +#define BCM5380_A0_REV_ID 0 + +#define BCM5388_PHYID_LOW 0x6288 +#define BCM5388_A0_REV_ID 0 + +#define BCM5396_PHYID_LOW 0xbd70 +#define BCM5396_PHYID_HIGH 0x143 +#define BCM5396_DEVICE_ID 0x96 +#define BCM5396_A0_REV_ID 0 + +#define BCM5389_PHYID_LOW 0xbd70 +#define BCM5389_PHYID_HIGH 0x143 +#define BCM5389_DEVICE_ID 0x89 +#define BCM5389_A0_REV_ID 0 +#define BCM5389_A1_DEVICE_ID 0x86 +#define BCM5389_A1_REV_ID 1 + +#define BCM5398_PHYID_LOW 0xbcd0 +#define BCM5398_PHYID_HIGH 0x0143 +#define BCM5398_DEVICE_ID 0x98 +#define BCM5398_A0_REV_ID 0 + +#define BCM5325_PHYID_LOW 0xbc30 +#define BCM5325_PHYID_HIGH 0x143 +#define BCM5325_DEVICE_ID 0xbc30 +#define BCM5325_A0_REV_ID 0 +#define BCM5325_A1_REV_ID 1 + +#define BCM5348_PHYID_LOW 0xbe40 +#define BCM5348_PHYID_HIGH 0x0143 +#define BCM5348_DEVICE_ID 0x48 +#define BCM5348_A0_REV_ID 0 +#define BCM5348_A1_REV_ID 1 + +#define BCM5397_PHYID_LOW 0xbcd0 +#define BCM5397_PHYID_HIGH 0x0143 +#define BCM5397_DEVICE_ID 0x97 +#define BCM5397_A0_REV_ID 0 + +#define BCM5347_PHYID_LOW 0xbe40 +#define BCM5347_PHYID_HIGH 0x0143 +#define BCM5347_DEVICE_ID 0x47 +#define BCM5347_A0_REV_ID 0 + +#define BCM5395_PHYID_LOW 0xbcf0 +#define BCM5395_PHYID_HIGH 0x0143 +#define BCM5395_DEVICE_ID 0xbcf0 +#define BCM5395_A0_REV_ID 0 + +#define BCM53242_PHYID_LOW 0xbf10 +#define BCM53242_PHYID_HIGH 0x0143 +#define BCM53242_DEVICE_ID 0xbf10 +#define BCM53242_A0_REV_ID 0 +#define BCM53242_B0_REV_ID 4 +#define BCM53242_B1_REV_ID 5 + +#define BCM53262_PHYID_LOW 0xbf20 +#define BCM53262_PHYID_HIGH 0x0143 +#define BCM53262_DEVICE_ID 0xbf20 +#define BCM53262_A0_REV_ID 0 +#define BCM53262_B0_REV_ID 4 +#define BCM53262_B1_REV_ID 5 + +#define BCM53115_PHYID_LOW 0xbf80 +#define BCM53115_PHYID_HIGH 0x0143 +#define BCM53115_DEVICE_ID 0xbf80 +#define BCM53115_A0_REV_ID 0 +#define BCM53115_A1_REV_ID 1 +#define BCM53115_B0_REV_ID 2 +#define BCM53115_B1_REV_ID 3 +#define BCM53115_C0_REV_ID 8 + +#define BCM53118_PHYID_LOW 0xbfe0 +#define BCM53118_PHYID_HIGH 0x0143 +#define BCM53118_DEVICE_ID 0xbfe0 +#define BCM53118_A0_REV_ID 0 + +#define BCM53118_B0_REV_ID 4 +#define BCM53118_B1_REV_ID 5 + +#define BCM53280_PHYID_LOW 0x5e90 +#define BCM53280_PHYID_HIGH 0x0362 +#define BCM53280_DEVICE_ID (0x4 | BCM53280_PHYID_LOW) +#define BCM53280_A0_REV_ID 0 +#define BCM53280_B0_REV_ID 0x4 +#define BCM53280_B1_REV_ID 0x5 +#define BCM53280_B2_REV_ID 0x6 +#define BCM53286_DEVICE_ID (0x4 | BCM53280_PHYID_LOW) +#define BCM53288_DEVICE_ID (0xc | BCM53280_PHYID_LOW) +#define BCM53284_DEVICE_ID (0x7 | BCM53280_PHYID_LOW) +#define BCM53283_DEVICE_ID (0x6 | BCM53280_PHYID_LOW) +#define BCM53282_DEVICE_ID (0x5 | BCM53280_PHYID_LOW) +#define BCM53101_PHYID_LOW 0x5ed0 +#define BCM53101_PHYID_HIGH 0x0362 +#define BCM53101_DEVICE_ID 0x5ed0 +#define BCM53101_A0_REV_ID 0 +#define BCM53101_B0_REV_ID 4 + +#define BCM53125_PHYID_LOW 0x5f20 +#define BCM53125_PHYID_HIGH 0x0362 +#define BCM53125_DEVICE_ID 0x5f20 +#define BCM53125_A0_REV_ID 0 +#define BCM53125_B0_REV_ID 0x4 +#define BCM53125_MODEL_ID 0x53125 + +#define BCM53134_PHYID_LOW 0x5350 +#define BCM53134_PHYID_HIGH 0xAE02 +#define BCM53134_DEVICE_ID 0x5350 +#define BCM53134_A0_REV_ID 0x0 +#define BCM53134_B0_REV_ID 0x1 +#define BCM53134_B1_REV_ID 0x2 +#define BCM53134_A0_MODEL_ID 0x5035 +#define BCM53134_B0_MODEL_ID 0x5075 + +#define BCM53128_PHYID_LOW 0x5e10 +#define BCM53128_PHYID_HIGH 0x0362 +#define BCM53128_DEVICE_ID 0x5e10 +#define BCM53128_A0_REV_ID 0 +#define BCM53128_B0_REV_ID 0x4 +#define BCM53128_MODEL_ID 0x53128 + +#define BCM53600_PHYID_LOW 0x5f40 +#define BCM53600_PHYID_HIGH 0x0362 +#define BCM53600_DEVICE_ID (0x3 | BCM53600_PHYID_LOW) +#define BCM53600_A0_REV_ID 0 +#define BCM53602_DEVICE_ID (0x1 | BCM53600_PHYID_LOW) +#define BCM53603_DEVICE_ID (0x2 | BCM53600_PHYID_LOW) +#define BCM53604_DEVICE_ID (0x3 | BCM53600_PHYID_LOW) +#define BCM53606_DEVICE_ID (0x7 | BCM53600_PHYID_LOW) + +#define BCM89500_PHYID_LOW 0x5d30 +#define BCM89500_PHYID_HIGH 0x0362 +#define BCM89500_DEVICE_ID 0x9500 +#define BCM89501_DEVICE_ID 0x9501 +#define BCM89200_DEVICE_ID 0x9200 +#define BCM89500_A0_REV_ID 0 +#define BCM89500_B0_REV_ID 0x4 +#define BCM89500_MODEL_ID 0x89500 + +#define BCM53010_PHYID_LOW 0x8760 +#define BCM53010_PHYID_HIGH 0x600d +#define BCM53010_DEVICE_ID 0x3010 +#define BCM53011_DEVICE_ID 0x3011 +#define BCM53012_DEVICE_ID 0x3012 +#define BCM53010_A0_REV_ID 0 +#define BCM53010_A2_REV_ID 0x2 +#define BCM53010_MODEL_ID 0x53010 + +#define BCM53018_PHYID_LOW 0x87c0 +#define BCM53018_PHYID_HIGH 0x600d +#define BCM53017_DEVICE_ID 0x3016 +#define BCM53018_DEVICE_ID 0x3018 +#define BCM53019_DEVICE_ID 0x3019 +#define BCM53018_A0_REV_ID 0 +#define BCM53018_MODEL_ID 0x53016 + +#define BCM53020_PHYID_LOW 0x87f0 +#define BCM53020_PHYID_HIGH 0x600d +#define BCM53020_DEVICE_ID 0x8022 +#define BCM53022_DEVICE_ID 0x8022 +#define BCM53023_DEVICE_ID 0x8023 +#define BCM53025_DEVICE_ID 0x8025 +#define BCM58625_DEVICE_ID 0x8625 +#define BCM58622_DEVICE_ID 0x8622 +#define BCM58623_DEVICE_ID 0x8623 +#define BCM58525_DEVICE_ID 0x8525 +#define BCM58522_DEVICE_ID 0x8522 +#define BCM53020_A0_REV_ID 0 +#define BCM53020_MODEL_ID 0x3025 + +#define BCM4713_DEVICE_ID 0x4713 +#define BCM4713_A0_REV_ID 0 +#define BCM4713_A9_REV_ID 9 + +#define BCM53000_GMAC_DEVICE_ID 0x4715 +#define BCM53000_A0_REV_ID 0 + +#define BCM53010_GMAC_DEVICE_ID 0x4715 + +#define BCM53000PCIE_DEVICE_ID 0x5300 + +#define SANDBURST_VENDOR_ID 0x17ba +#define BME3200_DEVICE_ID 0x0280 +#define BME3200_A0_REV_ID 0x0000 +#define BME3200_B0_REV_ID 0x0001 +#define BM9600_DEVICE_ID 0x0480 +#define BM9600_A0_REV_ID 0x0000 +#define BM9600_B0_REV_ID 0x0010 +#define QE2000_DEVICE_ID 0x0300 +#define QE2000_A1_REV_ID 0x0001 +#define QE2000_A2_REV_ID 0x0002 +#define QE2000_A3_REV_ID 0x0003 +#define QE2000_A4_REV_ID 0x0004 +#define BCM88020_DEVICE_ID 0x0380 +#define BCM88020_A0_REV_ID 0x0000 +#define BCM88020_A1_REV_ID 0x0001 +#define BCM88020_A2_REV_ID 0x0002 +#define BCM88025_DEVICE_ID 0x0580 +#define BCM88025_A0_REV_ID 0x0000 +#define BCM88030_DEVICE_ID 0x0038 +#define BCM88030_A0_REV_ID 0x0001 +#define BCM88030_A1_REV_ID 0x0002 +#define BCM88030_B0_REV_ID 0x0011 +#define BCM88030_B1_REV_ID 0x0012 +#define BCM88034_DEVICE_ID 0x0034 +#define BCM88034_A0_REV_ID (BCM88030_A0_REV_ID) +#define BCM88034_A1_REV_ID (BCM88030_A1_REV_ID) +#define BCM88034_B0_REV_ID (BCM88030_B0_REV_ID) +#define BCM88034_B1_REV_ID (BCM88030_B1_REV_ID) +#define BCM88039_DEVICE_ID 0x0039 +#define BCM88039_A0_REV_ID (BCM88030_A0_REV_ID) +#define BCM88039_A1_REV_ID (BCM88030_A1_REV_ID) +#define BCM88039_B0_REV_ID (BCM88030_B0_REV_ID) +#define BCM88039_B1_REV_ID (BCM88030_B1_REV_ID) +#define BCM88130_DEVICE_ID 0x0480 +#define BCM88130_A0_REV_ID 0x0000 +#define BCM88130_A1_REV_ID 0x0001 +#define BCM88130_B0_REV_ID 0x0010 +#define PLX_VENDOR_ID 0x10b5 +#define PLX9656_DEVICE_ID 0x9656 +#define PLX9656_REV_ID 0x0000 +#define PLX9056_DEVICE_ID 0x9056 +#define PLX9056_REV_ID 0x0000 + +#define TK371X_DEVICE_ID 0x8600 +#define TK371X_A0_REV_ID 0x0 + +#define GEDI_DEVICE_ID 0xa100 +#define GEDI_REV_ID 0x0001 +#define ARAD_DEVICE_ID 0x8650 +#define ARAD_A0_REV_ID 0x0000 +#define ARAD_B0_REV_ID 0x0011 +#define ARAD_B1_REV_ID 0x0012 +#define BCM88650_DEVICE_ID ARAD_DEVICE_ID +#define BCM88650_A0_REV_ID ARAD_A0_REV_ID +#define BCM88650_B0_REV_ID ARAD_B0_REV_ID +#define BCM88650_B1_REV_ID ARAD_B1_REV_ID +#define BCM88750_DEVICE_ID 0x8750 +#define BCM88750_A0_REV_ID 0x0000 +#define BCM88750_B0_REV_ID 0x0011 +#define BCM88753_DEVICE_ID 0x8753 +#define BCM88753_A0_REV_ID 0x0000 +#define BCM88753_B0_REV_ID 0x0011 +#define BCM88754_DEVICE_ID 0x8754 +#define BCM88754_A0_REV_ID 0x0000 +#define BCM88754_ORIGINAL_VENDOR_ID 0x16FC +#define BCM88754_ORIGINAL_DEVICE_ID 0x020F +#define BCM88754_A0_ORIGINAL_REV_ID 0x0001 +#define BCM88755_DEVICE_ID 0x8755 +#define BCM88755_B0_REV_ID 0x0011 +#define BCM88770_DEVICE_ID 0x8770 +#define BCM88770_A1_REV_ID 0x0002 +#define BCM88773_DEVICE_ID 0x8773 +#define BCM88773_A1_REV_ID 0x0002 +#define BCM88774_DEVICE_ID 0x8774 +#define BCM88774_A1_REV_ID 0x0002 +#define BCM88775_DEVICE_ID 0x8775 +#define BCM88775_A1_REV_ID 0x0002 +#define BCM88776_DEVICE_ID 0x8776 +#define BCM88776_A1_REV_ID 0x0002 +#define BCM88777_DEVICE_ID 0x8777 +#define BCM88777_A1_REV_ID 0x0002 +#define BCM88950_DEVICE_ID 0x8950 +#define BCM88950_A0_REV_ID 0x0001 +#define BCM88950_A1_REV_ID 0x0002 +#define BCM88953_DEVICE_ID 0x8953 +#define BCM88953_A1_REV_ID 0x0002 +#define BCM88954_DEVICE_ID 0x8954 +#define BCM88954_A1_REV_ID 0x0002 +#define BCM88955_DEVICE_ID 0x8955 +#define BCM88955_A1_REV_ID 0x0002 +#define BCM88956_DEVICE_ID 0x8956 +#define BCM88956_A1_REV_ID 0x0002 +#define BCM88790_DEVICE_ID 0x8790 +#define BCM88790_A0_REV_ID 0x0001 +#define ARADPLUS_DEVICE_ID 0x8660 +#define ARADPLUS_A0_REV_ID 0x0001 +#define BCM88660_DEVICE_ID ARADPLUS_DEVICE_ID +#define BCM88660_A0_REV_ID ARADPLUS_A0_REV_ID +#define JERICHO_DEVICE_ID 0x8675 +#define JERICHO_A0_REV_ID 0x0001 +#define JERICHO_B0_REV_ID 0x0011 +#define JERICHO_A1_REV_ID 0x0002 +#define BCM88670_DEVICE_ID 0x8670 +#define BCM88670_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88670_A1_REV_ID JERICHO_A1_REV_ID +#define BCM88671_DEVICE_ID 0x8671 +#define BCM88671_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88671_A1_REV_ID JERICHO_A1_REV_ID +#define BCM88671M_DEVICE_ID 0x867A +#define BCM88671M_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88671M_A1_REV_ID JERICHO_A1_REV_ID + +#define BCM88670_B0_REV_ID JERICHO_B0_REV_ID +#define BCM88671_B0_REV_ID JERICHO_B0_REV_ID +#define BCM88671M_B0_REV_ID JERICHO_B0_REV_ID + +#define BCM88672_DEVICE_ID 0x8672 +#define BCM88672_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88672_A1_REV_ID JERICHO_A1_REV_ID + +#define BCM88672_B0_REV_ID JERICHO_B0_REV_ID + +#define BCM88673_DEVICE_ID 0x8673 +#define BCM88673_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88673_A1_REV_ID JERICHO_A1_REV_ID +#define BCM88674_DEVICE_ID 0x8674 +#define BCM88674_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88674_A1_REV_ID JERICHO_A1_REV_ID +#define BCM88675_DEVICE_ID JERICHO_DEVICE_ID +#define BCM88675_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88675_A1_REV_ID JERICHO_A1_REV_ID +#define BCM88675M_DEVICE_ID 0x867B +#define BCM88675M_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88675M_A1_REV_ID JERICHO_A1_REV_ID +#define BCM88676_DEVICE_ID 0x8676 +#define BCM88676_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88676_A1_REV_ID JERICHO_A1_REV_ID +#define BCM88676M_DEVICE_ID 0x867C +#define BCM88676M_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88676M_A1_REV_ID JERICHO_A1_REV_ID +#define BCM88677_DEVICE_ID 0x8677 +#define BCM88677_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88677_A1_REV_ID JERICHO_A1_REV_ID +#define BCM88678_DEVICE_ID 0x8678 +#define BCM88678_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88678_A1_REV_ID JERICHO_A1_REV_ID +#define BCM88679_DEVICE_ID 0x8679 +#define BCM88679_A0_REV_ID JERICHO_A0_REV_ID +#define BCM88679_A1_REV_ID JERICHO_A1_REV_ID + +#define BCM88673_B0_REV_ID JERICHO_B0_REV_ID +#define BCM88674_B0_REV_ID JERICHO_B0_REV_ID +#define BCM88675_B0_REV_ID JERICHO_B0_REV_ID +#define BCM88675M_B0_REV_ID JERICHO_B0_REV_ID +#define BCM88676_B0_REV_ID JERICHO_B0_REV_ID +#define BCM88676M_B0_REV_ID JERICHO_B0_REV_ID +#define BCM88677_B0_REV_ID JERICHO_B0_REV_ID +#define BCM88678_B0_REV_ID JERICHO_B0_REV_ID +#define BCM88679_B0_REV_ID JERICHO_B0_REV_ID +#define QMX_DEVICE_ID 0x8375 +#define QMX_A0_REV_ID 0x0001 +#define QMX_B0_REV_ID 0x0011 +#define QMX_A1_REV_ID 0x0002 +#define BCM88370_DEVICE_ID 0x8370 +#define BCM88370_A0_REV_ID QMX_A0_REV_ID +#define BCM88370_A1_REV_ID QMX_A1_REV_ID +#define BCM88371_DEVICE_ID 0x8371 +#define BCM88371_A0_REV_ID QMX_A0_REV_ID +#define BCM88371_A1_REV_ID QMX_A1_REV_ID +#define BCM88371M_DEVICE_ID 0x837A +#define BCM88371M_A0_REV_ID QMX_A0_REV_ID +#define BCM88371M_A1_REV_ID QMX_A1_REV_ID +#define BCM88375_DEVICE_ID QMX_DEVICE_ID +#define BCM88375_A0_REV_ID QMX_A0_REV_ID +#define BCM88375_A1_REV_ID QMX_A1_REV_ID +#define BCM88376_DEVICE_ID 0x8376 +#define BCM88376_A0_REV_ID QMX_A0_REV_ID +#define BCM88376_A1_REV_ID QMX_A1_REV_ID +#define BCM88376M_DEVICE_ID 0x837B +#define BCM88376M_A0_REV_ID QMX_A0_REV_ID +#define BCM88376M_A1_REV_ID QMX_A1_REV_ID +#define BCM88377_DEVICE_ID 0x8377 +#define BCM88377_A0_REV_ID QMX_A0_REV_ID +#define BCM88377_A1_REV_ID QMX_A1_REV_ID +#define BCM88378_DEVICE_ID 0x8378 +#define BCM88378_A0_REV_ID QMX_A0_REV_ID +#define BCM88378_A1_REV_ID QMX_A1_REV_ID +#define BCM88379_DEVICE_ID 0x8379 +#define BCM88379_A0_REV_ID QMX_A0_REV_ID +#define BCM88379_A1_REV_ID QMX_A1_REV_ID + +#define BCM88370_B0_REV_ID QMX_B0_REV_ID +#define BCM88371_B0_REV_ID QMX_B0_REV_ID +#define BCM88371M_B0_REV_ID QMX_B0_REV_ID +#define BCM88375_B0_REV_ID QMX_B0_REV_ID +#define BCM88376_B0_REV_ID QMX_B0_REV_ID +#define BCM88376M_B0_REV_ID QMX_B0_REV_ID +#define BCM88377_B0_REV_ID QMX_B0_REV_ID +#define BCM88378_B0_REV_ID QMX_B0_REV_ID +#define BCM88379_B0_REV_ID QMX_B0_REV_ID + + +#define JERICHO_PLUS_DEVICE_ID 0x8680 +#define JERICHO_PLUS_A0_REV_ID 0x0001 +#define BCM88680_DEVICE_ID JERICHO_PLUS_DEVICE_ID +#define BCM88680_A0_REV_ID JERICHO_PLUS_A0_REV_ID +#define BCM88680_A1_REV_ID 0x0002 + + +#define BCM88681_DEVICE_ID 0x8681 +#define BCM88681_A0_REV_ID JERICHO_PLUS_A0_REV_ID + +#define BCM88682_DEVICE_ID 0x8682 +#define BCM88682_A0_REV_ID JERICHO_PLUS_A0_REV_ID + +#define BCM88683_DEVICE_ID 0x8683 +#define BCM88683_A0_REV_ID JERICHO_PLUS_A0_REV_ID + +#define BCM88684_DEVICE_ID 0x8684 +#define BCM88684_A0_REV_ID JERICHO_PLUS_A0_REV_ID + +#define BCM88685_DEVICE_ID 0x8685 +#define BCM88685_A0_REV_ID JERICHO_PLUS_A0_REV_ID + +#define BCM88380_DEVICE_ID 0x8380 +#define BCM88380_A0_REV_ID JERICHO_PLUS_A0_REV_ID +#define BCM88381_DEVICE_ID 0x8381 +#define BCM88381_A0_REV_ID JERICHO_PLUS_A0_REV_ID + +#define JERICHO_2_DEVICE_ID 0x8690 +#define JERICHO_2_A0_REV_ID 0x0001 +#define BCM88690_DEVICE_ID JERICHO_2_DEVICE_ID +#define BCM88690_A0_REV_ID JERICHO_2_A0_REV_ID + +#define QAX_DEVICE_ID 0x8470 +#define QAX_A0_REV_ID 0x0001 +#define QAX_B0_REV_ID 0x0011 +#define BCM88470_DEVICE_ID QAX_DEVICE_ID +#define BCM88470_B0_REV_ID QAX_B0_REV_ID +#define BCM88470P_DEVICE_ID 0x847C +#define BCM88471_DEVICE_ID 0x8471 +#define BCM88473_DEVICE_ID 0x8473 +#define BCM88474_DEVICE_ID 0x8474 +#define BCM88474H_DEVICE_ID 0x847B +#define BCM88476_DEVICE_ID 0x8476 +#define BCM88477_DEVICE_ID 0x8477 + + + + +#define BCM88470_A0_REV_ID QAX_A0_REV_ID + +#define QUX_DEVICE_ID 0x8270 +#define QUX_A0_REV_ID 0x0001 +#define QUX_A1_REV_ID 0x0002 +#define QUX_B0_REV_ID 0x0011 +#define BCM88270_DEVICE_ID QUX_DEVICE_ID +#define BCM88270_A0_REV_ID QUX_A0_REV_ID +#define BCM88270_A1_REV_ID QUX_A1_REV_ID +#define BCM88272_DEVICE_ID 0x8272 +#define BCM88273_DEVICE_ID 0x8273 +#define BCM88278_DEVICE_ID 0x8278 + +#define FLAIR_DEVICE_ID 0xF000 +#define FLAIR_A0_REV_ID 0x0001 +#define BCM8206_DEVICE_ID FLAIR_DEVICE_ID +#define BCM8206_A0_REV_ID FLAIR_A0_REV_ID + +#define ARDON_DEVICE_ID 0x8202 +#define ARDON_A0_REV_ID 0x0000 +#define BCM88202_DEVICE_ID ARDON_DEVICE_ID +#define BCM88202_A0_REV_ID ARDON_A0_REV_ID +#define ARDON_A1_REV_ID 0x0001 +#define BCM88202_A1_REV_ID ARDON_A1_REV_ID +#define ARDON_A2_REV_ID 0x0002 +#define BCM88202_A2_REV_ID ARDON_A2_REV_ID +#define BCM2801PM_DEVICE_ID 0x2801 +#define BCM2801PM_A0_REV_ID 0x0000 +#define BCM88360_DEVICE_ID 0x8360 +#define BCM88360_A0_REV_ID ARADPLUS_A0_REV_ID +#define BCM88361_DEVICE_ID 0x8361 +#define BCM88361_A0_REV_ID ARADPLUS_A0_REV_ID +#define BCM88363_DEVICE_ID 0x8363 +#define BCM88363_A0_REV_ID ARADPLUS_A0_REV_ID +#define BCM88460_DEVICE_ID 0x8460 +#define BCM88460_A0_REV_ID ARADPLUS_A0_REV_ID +#define BCM88461_DEVICE_ID 0x8461 +#define BCM88461_A0_REV_ID ARADPLUS_A0_REV_ID +#define BCM88560_DEVICE_ID 0x8560 +#define BCM88560_A0_REV_ID ARADPLUS_A0_REV_ID +#define BCM88561_DEVICE_ID 0x8561 +#define BCM88561_A0_REV_ID ARADPLUS_A0_REV_ID +#define BCM88562_DEVICE_ID 0x8562 +#define BCM88562_A0_REV_ID ARADPLUS_A0_REV_ID +#define BCM88661_DEVICE_ID 0x8661 +#define BCM88661_A0_REV_ID ARADPLUS_A0_REV_ID +#define BCM88664_DEVICE_ID 0x8664 +#define BCM88664_A0_REV_ID ARADPLUS_A0_REV_ID + + +#define BCM88350_DEVICE_ID 0x8350 +#define BCM88350_B1_REV_ID ARAD_B1_REV_ID +#define BCM88351_DEVICE_ID 0x8351 +#define BCM88351_B1_REV_ID ARAD_B1_REV_ID +#define BCM88450_DEVICE_ID 0x8450 +#define BCM88450_B1_REV_ID ARAD_B1_REV_ID +#define BCM88451_DEVICE_ID 0x8451 +#define BCM88451_B1_REV_ID ARAD_B1_REV_ID +#define BCM88550_DEVICE_ID 0x8550 +#define BCM88550_B1_REV_ID ARAD_B0_REV_ID +#define BCM88551_DEVICE_ID 0x8551 +#define BCM88551_B1_REV_ID ARAD_B1_REV_ID +#define BCM88552_DEVICE_ID 0x8552 +#define BCM88552_B1_REV_ID ARAD_B1_REV_ID +#define BCM88651_DEVICE_ID 0x8651 +#define BCM88651_B1_REV_ID ARAD_B1_REV_ID +#define BCM88654_DEVICE_ID 0x8654 +#define BCM88654_B1_REV_ID ARAD_B1_REV_ID + +#define BCM88772_DEVICE_ID 0x8772 +#define BCM88952_DEVICE_ID 0x8952 +#define BCM88772_A1_REV_ID 0x0002 +#define BCM88952_A0_REV_ID 0x0001 +#define BCM88952_A1_REV_ID 0x0002 + +#define BCM88752_DEVICE_ID 0x8752 +#define BCM88752_A0_REV_ID 0x0000 +#define BCM88752_B0_REV_ID 0x0011 + + +#define BCM83207_DEVICE_ID 0x3207 +#define BCM83208_DEVICE_ID 0x3208 +#define BCM83207_A0_REV_ID 0x0001 +#define BCM83208_A0_REV_ID 1 + +#define PCP_PCI_VENDOR_ID 0x1172 +#define PCP_PCI_DEVICE_ID 0x4 + +#define ACP_PCI_VENDOR_ID 0x10ee +#define ACP_PCI_DEVICE_ID 0x7011 +#define ACP_PCI_REV_ID 0x0001 +#endif + only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.config +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.config @@ -0,0 +1,364 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Make.config,v 1.3 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# + +ifneq ($(strip $(override-target)),) +override TARGET=$(override-target) +endif + +export TARGET + +# +# Set up the target name, and the target base variables. +# +# target = The full name of the target such as vxworks-bmw +# targetbase = 1st part of target (e.g. vxworks) +# targetplat = 2nd part of target (e.g. x86) if any; otherwise same as 1st +# +target = ${TARGET} +targetsplt = $(subst -, , ${target}) # change hyphens to spaces +targetbase = $(word 1,${targetsplt}) +targetplat = $(subst ${targetbase}-,,${TARGET}) + +# +# Common configuration for all platforms +# (Additional platform-dependent configurations are in Makefile.xxx) +# + +# +# THIS FILE SHOULD NOT BE MODIFIED LOCALLY, to override, add a file +# $SDK/make/Make.local that sets your local settings, and/or provide +# a path to your settings using the MAKE_LOCAL variable. If +# either of these files exists, their values will override those in this makefile. +# +ifdef MAKE_LOCAL +-include ${MAKE_LOCAL} +endif + +-include ${SDK}/make/Make.local + +ifdef ALL_CHIPS + ROBO_CHIPS = 1 + ESW_CHIPS = 1 +else + ifndef ROBO_CHIPS + ESW_CHIPS = 1 + endif +endif # ALL_CHIPS + +# +# By default, turn off the "changing directory" message. +# +MAKEFLAGS += --no-print-directory + +# +# Use gmake by default +# + +include ${SDK}/make/Make.tools +include ${SDK}/make/Makefile.${target} + +# use QUIET=1 to control printing of compilation lines +ifdef QUIET +Q:=@ +else +Q:= +endif + +# +# Suffix to add to the "target" files to allow local builds with different +# flags. Set "target_suffix" to XXX to cause the build to put built objects +# in ${target}${target_suffix}. This allows things like building a debug +# version with different flags. This may also be set in another Makefile. +# + +#target_suffix := + +# +# Optional suffix to add to the build directory and output binary files +# to allow multiple builds to co-exist for various reasons. +# +#chip_suffix := -$(shell echo $(CHIP) | tr A-Z a-z) + +# +# Combined suffixes +# +all_suffix = ${chip_suffix}${target_suffix} + +# +# Default location to place binaries and make depend files for building +# purposes. +# +ifeq "$(HOSTTYPE)" "Windows2000PC" +BLDROOTWITHDRIVE = ${SDK}/build/${target}${all_suffix}${bldroot_suffix} +BLDROOT = ${SDK_NO_DRIVE_NAME}/build/${target}${all_suffix}${bldroot_suffix} +else # ifeq "$(HOSTTYPE)" "Windows2000PC" + +ifndef SDKBUILD +SDKBUILD :=build +endif + +BLDROOT = ${SDK}/${SDKBUILD}/$(if ${BLDCONFIG},${BLDCONFIG}/)${target}${all_suffix}${bldroot_suffix} + +endif # ifeq "$(HOSTTYPE)" "Windows2000PC" + +# This is needed because we cannot include Make.vxworks before Make.config +ifndef DEST_DIR_SUFFIX +export DEST_DIR_SUFFIX :=$(subst $(realpath $(SDK))/systems,,$(realpath $(CURDIR)/$(dir ($(firstword $(MAKEFILE_LIST)))))) +ifeq ($(MAKELEVEL),0) +endif +endif + +ifeq ($(DEST_DIR),) +export DEST_DIR :=${SDK}/${SDKBUILD}$(if ${BLDCONFIG},/${BLDCONFIG})$(DEST_DIR_SUFFIX) +endif + +ifdef LOCALDIR +BLDDIR = ${BLDROOT}/${LOCALDIR} +ifeq "$(HOSTTYPE)" "Windows2000PC" +BLDDIRWITHDRIVE = ${BLDROOTWITHDRIVE}/${LOCALDIR} +endif +else # ifdef LOCALDIR +BLDDIR = ${BLDROOT} +ifeq "$(HOSTTYPE)" "Windows2000PC" +BLDDIRWITHDRIVE = ${BLDROOTWITHDRIVE} +endif +endif # ifdef LOCALDIR + +LIBDIR = ${BLDROOT} + +# +# Export directory, where build objects used by the outside world are +# placed (exported header files, libs, bins) +# +EXPDIR = ${SDK}/export/${target}${all_suffix} + +# +# Standard include paths +# +INCDIR = ${SDK}/include + +# +# Compilation Flags +# +# Flags may be added to (see below) +# + +INCFLAGS = -I${INCDIR} -I${SDK}/systems + +CFLAGS += ${INCFLAGS} +CXXFLAGS += ${INCFLAGS} +CPPFLAGS += ${INCFLAGS} + +# +# Debug #ifdef control +# +# Compiling out #ifdef DEBUG code saves about 1.3% on executable size. +# It is recommended to leave debug enabled when developing applications. +# +ifndef DEBUG_IFDEFS +DEBUG_IFDEFS=TRUE +endif + +ifeq ($(DEBUG_IFDEFS),TRUE) +CFLAGS += -DBROADCOM_DEBUG +CXXFLAGS += -DBROADCOM_DEBUG +CPPFLAGS += -DBROADCOM_DEBUG +endif + +# +# Debug symbol information control +# +ifndef DEBUG_SYMBOLS +DEBUG_SYMBOLS=TRUE +endif + +ifeq ($(DEBUG_SYMBOLS),TRUE) +CFLAGS += -g +CXXFLAGS += -g +CPPFLAGS += -g +endif + +# +# If DEBUG_CFLAGS is set, add its contents to CFLAGS. +# May be useful for setting on the command line or adding to Make.local. +# Example: gmake DEBUG_CFLAGS=-save-temps system.c +# + +ifneq ($(DEBUG_CFLAGS),) +CFLAGS += $(DEBUG_CFLAGS) +CXXFLAGS += $(DEBUG_CFLAGS) +CPPFLAGS += $(DEBUG_CFLAGS) +endif + +# +# Optimization level +# +# Set DEBUG_OPTIMIZE to TRUE (default) to use a normal optimization +# determined by OPTFLAGS_DEFAULT in the platform Makefile. +# Set DEBUG_OPTIMIZE to FALSE to use no optimization, +# strongly recommended when using any debugger. +# Set DEBUG_OPTIMIZE to any other option string to request specific +# optimization flags (for example -O2). +# +ifndef DEBUG_OPTIMIZE +DEBUG_OPTIMIZE=TRUE +endif + +ifeq ($(DEBUG_OPTIMIZE),TRUE) +OPTFLAGS += $(OPTFLAGS_DEFAULT) +else +ifneq ($(DEBUG_OPTIMIZE),FALSE) +OPTFLAGS += $(DEBUG_OPTIMIZE) +endif +endif + +# +# Debug assertion control. +# +# Compiling out assert() saves about 1.1% on executable size, +# however doing so is VERY MUCH discouraged. +# +ifndef DEBUG_ASSERTS +DEBUG_ASSERTS=TRUE +endif + +ifeq ($(DEBUG_ASSERTS),FALSE) +CFLAGS += -DNDEBUG +CXXFLAGS += -DNDEBUG +CPPFLAGS += -DNDEBUG +endif + +# +# GCC pedantic mode. +# +ifeq ($(DEBUG_PEDANTIC),TRUE) +CFGFLAGS += -D__PEDANTIC__ +CFLAGS += --pedantic +CXXFLAGS += --pedantic +endif + +# +# In each directory, build a list of local sources, objects, and headers +# +LSRCS = $(wildcard *.c *.cpp *.s *.cc *.C) +LOBJS = $(addsuffix .o, $(basename ${LSRCS})) +BOBJS = $(addprefix ${BLDDIR}/,${LOBJS}) +LHDRS = $(wildcard *.h *.H) +LDOTIS = $(wildcard *.i) + + +# +# Rule to create object file (build) directory +# + +.PHONY: all install clean distclean + +.PRECIOUS: ${BLDDIR}/.tree + +%/.tree: + @$(ECHO) 'Creating build directory $(dir $@)' + @$(MKDIR) $(dir $@) + @$(ECHO) "Build Directory for ${LOCALDIR} Created" > $@ + +# Rule allowing build through CPP only, creates .E file from .c file. + +%.E: %.c + $Q${CC} -E ${CFLAGS} $< | sed -e '/^ *$$/d' -e p -e d > $@ + +# Rule allowing build through source only, creates .s file from .c file. + +%.s: %.c + $Q${CC} -S ${CFLAGS} $< + +# +# Default Build rules for .c --> .o, leaving the binary in BLDDIR/X.o, +# even if file not built from directory of source. +# +ifeq ($(FAST),1) +${BLDDIR}/%.o: %.c +else +ifdef GENERATE_C_FILES +${BLDDIR}/%.o: %.c +else +${BLDDIR}/%.o: %.c +endif +endif +ifdef QUIET + @${ECHO} Compiling ${LOCALDIR}/$< +endif +ifdef LOCAL_D_FILE + $Q$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -o $@ -c $< --write-user-dependencies + -@/bin/cp $*.d $(BLDDIR)/$*.d + -@/bin/rm -f $*.d +else + $Q$(CC) -MD -MF $(BLDDIR)/$*.d $(CFLAGS) $(EXTRA_CFLAGS) -o $@ -c $< +endif + @/bin/cp $(BLDDIR)/$*.d $(BLDDIR)/$*.tmp;\ + /bin/sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \ + -e '/^$$/ d' -e 's/$$/ :/' \ + < $(BLDDIR)/$*.d >> $(BLDDIR)/$*.tmp; \ + /bin/sed \ + -e 's| \([0-9a-zA-Z]\)| '$(SDK)/$(LOCALDIR)'\/\1|g' \ + -e 's|^\([0-9a-zA-Z]\)|'$(SDK)/$(LOCALDIR)'/\1|g' \ + -e 's| \(\.\.\/\)| '$(SDK)/$(LOCALDIR)'\/\1|g' \ + -e 's|'$(SDK)'|'$$\{SDK\}'|g' \ + -e 's/\w*\/\.\.\/*//g' \ + -e 's/\w*\/\.\.\/*//g' \ + -e 's/\w*\/\.\.\/*//g' \ + < $(BLDDIR)/$*.tmp > $(BLDDIR)/$*.P; \ + /bin/rm -f $(BLDDIR)/$*.d $(BLDDIR)/$*.tmp + +${BLDDIR}/%.o: %.s +ifdef QUIET + @${ECHO} Assembling ${LOCALDIR}/$< +endif + $Q${CC} ${CFLAGS} ${EXTRA_CFLAGS} -c $< -o $@ + +${BLDDIR}/%.o: %.cpp +ifdef QUIET + @${ECHO} Compiling ${LOCALDIR}/$< +endif + $Q${CXX} -c ${CXXFLAGS} -c $< -o $@ + +${BLDDIR}/%.o: %.cc ${BLDDIR}/.tree +ifdef QUIET + @${ECHO} Compiling ${LOCALDIR}/$< +endif + $Q${CXX} -c ${CXXFLAGS} -c $< -o $@ + +# +# Cause "make foo.o" in any subdirectory to put the object in the build +# directory instead of the local directory. +# +%.o: ${BLDDIR}/%.o + @ + +# +# List of directories where built objects live. +# (we are not making the export directories for now) +# +#DIRS = ${BLDDIR} ${EXPDIR}/lib ${EXPDIR}/bin ${EXPDIR}/include +DIRS = ${BLDDIR} + +ifeq (C_COMPILER,$(MAKECMDGOALS)) +C_COMPILER: + @echo $(CC) +endif only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.depend +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.depend @@ -0,0 +1,109 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Make.depend,v 1.14 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# +# Default rule to build dependencies. This builds a x.d file for each +# x.c file that describes the dependencies. We then conditionally include +# the generated .d files. +# + +# +# If making 'clean', do not include any .d files. If they are included, +# gmake intrinsically tries to remake them all. +# +ifeq (,$(findstring clean,$(MAKECMDGOALS))) + +ZFS :=$(wildcard *.zf) +ZFC := $(ZFS:.zf=.c) + +ifdef GENERATE_C_FILES +ifndef GEN_INCS +$(error "GEN_INCS was not defined") +endif + +ZF_GEN = ${SDK}/tools/zFrameCodeGen.pl + +# 1=.zf +define ZFS_RULE +$(1:.zf=Console.c) : $(1:.zf=.c) + @echo updated $$@ from $$? + +$(1:.zf=.c) : $(1) $(ZF_GEN) + @$(PERL) $(ZF_GEN) -s -z . -p . -g $1 -t c + @echo generated ${LOCALDIR}/$$@ from $(1) + @mv $$(*F).cx $$@ + @if [ -e $$(*F)Console.cx ] ; then \ + mv $$(*F)Console.cx $$(*F)Console.c; \ + echo Created $$(*F)Console.c ;\ + fi + @if [ -e $$(*F)Console.hx ] ; then \ + echo Created $(GEN_INCS)/$$(*F)Console.hx ;\ + mv $$(*F)Console.hx $(GEN_INCS)/ ; \ + fi + @mv $$(*F).hx $(GEN_INCS)/ +endef + +$(foreach zf,$(ZFS),$(eval $(call ZFS_RULE,$(zf)))) + +${BLDDIR}/%.P : ${BLDDIR}/.tree %.c + +.PHONY: GENFILES +GENFILES: $(ZFC) + +$(BOBJS) : $(ZFC) + +else +# +# Attempt to build the depend files. If it fails, the depend file is +# removed so that it is not included in later builds. +# +${BLDDIR}/%.P : %.c ${BLDDIR}/.tree + @$(ECHO) Dependencies for ${LOCALDIR}/$< + +${BLDDIR}/%.P : %.cc ${BLDDIR}/.tree + @$(ECHO) Dependencies for ${LOCALDIR}/$< + +endif + +# +# If there are C or C++ files in this directory, include the +# depend files for them. +# + +ifeq ($(findstring _COMPILER,$(MAKECMDGOALS))$(findstring variable,$(MAKECMDGOALS)),) +ifneq ($(strip ${LSRCS}),) +ifneq (,$(findstring .o,$(MAKECMDGOALS))) +-include $(addprefix ${BLDDIR}/,$(MAKECMDGOALS:.o=.P)) $(addprefix ${BLDDIR}/,$(MAKECMDGOALS:.o=.sig)) +else +-include $(addprefix ${BLDDIR}/,$(addsuffix .P,$(basename $(LSRCS)))) $(addprefix ${BLDDIR}/,$(addsuffix .sig,$(basename $(LSRCS)))) +endif +endif +endif + +endif # !CLEANING + +clean_d:: +ifdef QUIET + @$(ECHO) Cleaning dependencies for ${LOCALDIR} +endif +ifdef GENERATE_C_FILES + $Q$(RM) $(ZFC:%=$(SDK)/$(LOCALDIR)/%) $(ZFC:%.c=$(SDK)/$(LOCALDIR)/%Console.c) +endif + +clean:: clean_d only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.kernlib +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.kernlib @@ -0,0 +1,70 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Make.kernlib,v 1.7 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# +# Make rules/targets for handling libraries + +.SECONDARY:: ${BOBJS} + +targetlibsoname = ${lib}.so.${SHAREDLIBVER} +targetlibrealname = ${targetlibsoname} +targetlibso = ${LIBDIR}/${targetlibrealname} + +ifeq ($(TOOLS),Borland) + +LIBSUFFIX=lib + +${LIBDIR}/%.lib: ${BORLAND_BOBJS} + $(RM) $@ + $(FOREACH) -subdir "$(LIBDIR)" \ + "tlib $@ $(foreach obj, $(BORLAND_LOBJS), +-$(obj))" + +else # !Borland + +LIBSUFFIX=a + +${LIBDIR}/%.a: ${BOBJS} +ifdef QUIET + @$(ECHO) Building library $(notdir $@) +endif + $Q$(RM) $@ + $Q$(AR) ${ARFLAGS} $@ $(sort ${BOBJS}) +ifeq ($(LINUX_MAKE_SHARED_LIB),1) +ifeq ($(targetbase),unix) + $(CC) -shared -Wl,-soname,${targetlibsoname} -o ${targetlibso} ${BOBJS} -lc +endif +endif # LINUX_MAKE_SHARED_LIB # +endif # !Borland + +targetlib = ${LIBDIR}/${lib}.${LIBSUFFIX} + +all:: ${BLDDIR}/.tree ${targetlib} + +install:: all + +clean:: +ifdef QUIET + @$(ECHO) Cleaning objects for ${LOCALDIR} and ${lib} +endif + $Q$(RM) ${BOBJS} + $Q$(RM) ${targetlib} + $Q$(RM) ${targetlibso} + +distclean:: clean + only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.lib +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.lib @@ -0,0 +1,81 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Make.lib,v 1.14 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# +# Make rules/targets for handling libraries + +.SECONDARY:: ${BOBJS} + +BOBJS_FAST = ${BOBJS} +BOBJS_MAKE_CMD = + +ifeq ($(FAST),1) + ifneq ($(strip $(BOBJS)),) + BOBJS_FAST = + BOBJS_ARGS = -j9 + BOBJS_MAKE_CMD = pwd && make LSRUN=$(SDK)/tools/lsrun.pl $(BOBJS_ARGS) ${BOBJS} + endif +endif + +ifeq ($(TOOLS),Borland) + +LIBSUFFIX=lib + +${LIBDIR}/%.lib: ${BORLAND_BOBJS} + $(RM) $@ + $(FOREACH) -subdir "$(LIBDIR)" \ + "tlib $@ $(foreach obj, $(BORLAND_LOBJS), +-$(obj))" + +else # !Borland + +ifeq ($(LINUX_MAKE_SHARED_LIB),1) +LIBSUFFIX=so.${SHAREDLIBVER} +else +LIBSUFFIX=a +endif + +targetlib = ${LIBDIR}/${lib}.${LIBSUFFIX} + +all:: ${BLDDIR}/.tree ${targetlib} + +${LIBDIR}/%.${LIBSUFFIX}: ${BOBJS_FAST} + $(BOBJS_MAKE_CMD) +ifdef QUIET + @$(ECHO) Building library $(notdir $@) +endif + $Q$(RM) $@ +ifeq ($(LINUX_MAKE_SHARED_LIB),1) + $(CC) -shared -Wl,-soname,${lib}.${LIBSUFFIX}${EXTRA_LIB_LDFLAGS} -o ${targetlib} ${BOBJS} -lc +else + ${Q}cd $(dir $(word 1,${BOBJS}));$(AR) ${ARFLAGS} $@ $(sort $(notdir ${BOBJS})) +endif + +endif # !Borland + + +install:: all + +clean:: +ifdef QUIET + @$(ECHO) Cleaning objects for ${LOCALDIR} and ${lib} +endif + $Q$(RM) ${BOBJS} + $Q$(RM) ${targetlib} + +distclean:: clean only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.linux +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.linux @@ -0,0 +1,98 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# +# $Id: Make.linux,v 1.18 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# +# Common make targets for Linux user and kernel builds included by top +# level Linux makefiles +# +# Variables referenced: +# +# LINUX_MAKE_FLAGS +# Additional flags passed to Make +# +# LINUX_MAKE_USER +# Defined: user build +# Undefined: kernel build +# +# LINUX_MAKE_DIR +# Common makefile location, if it is not ../common +# +# + +export DEST_DIR_SUFFIX :=$(subst $(realpath $(SDK))/systems,,$(realpath $(CURDIR)/$(dir ($(firstword $(MAKEFILE_LIST)))))) + +ifeq (,$(kernel_version)) +kernel_version=2_4 +endif + +ifndef LINUX_MAKE_SHARED_LIB +LINUX_MAKE_SHARED_LIB=0 +endif + +ifeq (,$(SHAREDLIBVER)) +SHAREDLIBVER=1 +endif + +ifndef LINUX_MAKE_DIR +ifdef LINUX_MAKE_USER +LINUX_MAKE_DIR := $(SDK)/systems/linux/user/common +else +LINUX_MAKE_DIR := $(SDK)/systems/linux/kernel/common +endif +endif + +ifdef LINUX_MAKE_USER + CMD = $(LINUX_MAKE_FLAGS) -C $(LINUX_MAKE_DIR) \ + platform=$(platform) bldroot_suffix=/$(platform) kernel_version=$(kernel_version) \ + LINUX_MAKE_SHARED_LIB=$(LINUX_MAKE_SHARED_LIB) SHAREDLIBVER=$(SHAREDLIBVER) +else + export LINUX_MAKE_KERNEL := 1 + CMD = $(LINUX_MAKE_FLAGS) -C $(LINUX_MAKE_DIR) \ + platform=$(platform) kernel_version=$(kernel_version) +endif + +ifneq (,$(MIPS_TOOLS_DIR)) + CMD += MIPS_TOOLS_DIR=$(MIPS_TOOLS_DIR) +endif + +ifneq (,$(MIPS_CROSS_COMPILE)) + CMD += MIPS_CROSS_COMPILE=$(MIPS_CROSS_COMPILE) +endif + +ifneq (,$(LINUX_INCLUDE)) + CMD += LINUX_INCLUDE=$(LINUX_INCLUDE) +endif + +# gmake does not understand $(CMD) to be a submake +# options are to +$(CMD) or $(MAKE) $(CMD) +# trying the latter +build: + $(MAKE) $(CMD) + +DELIVER clean C_COMPILER CXX_COMPILER variable mod bcm user: + $(MAKE) $(CMD) $@ + +clean_d: clean + +distclean: + $(MAKE) $(CMD) $@ + +.PHONY: build clean distclean clean_d DELIVER variable mod bcm user + only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.subdirs +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.subdirs @@ -0,0 +1,45 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Make.subdirs,v 1.8 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# +# Make rules/targets for handling subdirectories + +.PHONY: ${subdirs} + +all:: ${subdirs} +ifdef QUIET + @$(ECHO) Subdirectory build for ${subdirs} +endif + +${subdirs}:: + $Q$(MAKE) -C $@ kernel_version=$(kernel_version) LINUX_MAKE_SHARED_LIB=${LINUX_MAKE_SHARED_LIB} SHAREDLIBVER=${SHAREDLIBVER} + +ifeq "$(HOSTTYPE)" "Windows2000PC" +clean clean_d install distclean:: +ifdef QUIET + @$(ECHO) Subdirectory $@ for ${subdirs} +endif + $Q$(FOREACH) "$(subdirs)" "${MAKE} -C ## $@" +else +clean clean_d install distclean:: +ifdef QUIET + @$(ECHO) Subdirectory $@ for ${subdirs} +endif + @(for name in $(subdirs); do $(MAKE) -C $$name $@; done) +endif only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.tools +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Make.tools @@ -0,0 +1,39 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Make.tools,v 1.2 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ + +SYSNAME := $(shell uname -s) +HCC ?=/usr/bin/gcc +SED = /bin/sed +COMPRESS = /usr/bin/compress +PERL = /usr/bin/perl +LN = /bin/ln +HOSTTYPE= i386-linux + +# +# Platform Independent +# +MKTOOL = $(PERL) ${SDK}/tools/mktool.pl +RM = $(MKTOOL) -rm +MKDIR = $(MKTOOL) -md +FOREACH = $(MKTOOL) -foreach +CP = $(MKTOOL) -cp +MAKEDEP = $(MKTOOL) -dep +ECHO = $(MKTOOL) -echo +MKBEEP = ${MKTOOL} -beep only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-gto +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-gto @@ -0,0 +1,115 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-gto-4_4,v 1.42 Broadcom SDK $ +# $Copyright: (c) 2015 Broadcom Corp. +# All Rights Reserved.$ + +# User must select one platform from below. +ifeq (,$(BUILD_PLATFORM)) +BUILD_PLATFORM=POWERPC_LINUX +endif + +# TOOLCHAIN_BASE_DIR Toolchain base directory for GTO devices +# TARGET_ARCHITECTURE Compiler for target architecture +# KERNDIR Kernel directory for iPROC-CMICd devices +TOOLCHAIN_BASE_DIR ?= /projects/ntsw-tools/linux/gto +TARGET_ARCHITECTURE := powerpc-broadcom-linux-gnuspe +KERNDIR ?= $(TOOLCHAIN_BASE_DIR)/kernel/current + + +ifeq (,$(CROSS_COMPILE)) +CROSS_COMPILE := $(TARGET_ARCHITECTURE)- +endif + + +# GTO toolchain +TOOLCHAIN_BIN_DIR := $(TOOLCHAIN_BASE_DIR)/toolchain/host/usr/bin +override PATH := $(TOOLCHAIN_BIN_DIR)/../$(TARGET_ARCHITECTURE)/bin:$(TOOLCHAIN_BIN_DIR):$(PATH) +export TOOLCHAIN_BIN_DIR + + +# Default Linux include directory +ifeq (,$(LINUX_INCLUDE)) +LINUX_INCLUDE := $(KERNDIR)/include +endif + +CFGFLAGS += -DSYS_BE_PIO=1 -DSYS_BE_PACKET=0 -DSYS_BE_OTHER=1 +ENDIAN = BE_HOST=1 +CFGFLAGS += -D$(ENDIAN) +CFGFLAGS += -DBCM_PLATFORM_STRING=\"GTO_MPC8548\" +CFGFLAGS += -DSAL_BDE_DMA_MEM_DEFAULT=32 + +# Extra variables. +EXTRA_CFLAGS = -D"KBUILD_STR(s)=\#s" $(basename_flags) $(modname_flags) + +ARCH = powerpc +KBUILD_VERBOSE = 1 + +export ARCH KBUILD_VERBOSE + + +# From linux/arch/ppc/Makefile +comma = , +basetarget = $(basename $(notdir $@)) +modname = $(basetarget) + +name-fix = $(subst $(comma),_,$(subst -,_,$1)) +basename_flags = -D"KBUILD_BASENAME=KBUILD_STR($(call name-fix,$(basetarget)))" +modname_flags = $(if $(filter 1,$(words $(modname))),\ + -D"KBUILD_MODNAME=KBUILD_STR($(call name-fix,$(modname)))") + +KFLAG_INCLD = $(TOOLCHAIN_BIN_DIR)/../lib/gcc/$(TARGET_ARCHITECTURE)/4.6.4/include + +ifdef BROADCOM_SVK +ifdef BCM_BME3200_B0 +PLX_PCI2LBUS=1 +endif +ifdef BCM_BM9600_B0 +PLX_PCI2LBUS=1 +endif +ifeq ($PLX_PCI2LBUS, 1) +CFLAGS += -DBCM_PLX9656_LOCAL_BUS -DBDE_LINUX_NON_INTERRUPTIBLE +endif +endif + +ifdef DPP_CHIPS +CFLAGS += -DDUNE_BCM -D__DUNE_GTO_BCM_CPU__ -D__DUNE_LINUX_BCM_CPU_PCIE__ -D__DUNE_LINUX_BCM_CPU_PCP_DMA__ +CFGFLAGS += -DSOC_CM_FUNCTION +endif + +ifdef DFE_CHIPS +CFLAGS += -DDUNE_BCM -D__DUNE_GTO_BCM_CPU__ -D__DUNE_LINUX_BCM_CPU_PCIE__ +CFGFLAGS += -DSOC_CM_FUNCTION +endif + +ifdef SHADOW_PLX +CFLAGS += -DBCM_PLX9656_LOCAL_BUS -DBDE_LINUX_NON_INTERRUPTIBLE -DSHADOW_SVK +endif + +ifeq (,$(KFLAGS)) +KFLAGS := -D__KERNEL__ -m32 -nostdinc -isystem $(KFLAG_INCLD) -I$(LINUX_INCLUDE) -include $(LINUX_INCLUDE)/generated/uapi/linux/version.h -include $(LINUX_INCLUDE)/generated/autoconf.h -I$(KERNDIR)/arch/powerpc -I$(KERNDIR)/arch/powerpc/include -I$(KERNDIR)/include/asm-powerpc -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common -msoft-float -pipe -ffixed-r2 -mmultiple -mno-altivec -funit-at-a-time -Wa,-me500 -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign +endif + +ifneq (,$(findstring TCL,$(FEATURE_LIST))) +#LINK_STATIC = 0 +#export LINK_STATIC +endif + +ifneq ($(targetplat),user) +include ${SDK}/make/Makefile.linux-kernel-4_4 +endif + only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-gto-2_6 +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-gto-2_6 @@ -0,0 +1,271 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-gto-2_6,v 1.42 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ + +# User must select one platform from below.By default WR_LINUX is selected. . +ifeq (,$(BUILD_PLATFORM)) +#BUILD_PLATFORM=ELDK +BUILD_PLATFORM=WR_LINUX +endif + +# Specify the ELDK version you want to use for building SDK. +ifeq (,$(ELDK_VERSION)) +ifeq (ELDK,$(BUILD_PLATFORM)) +ELDK_VERSION=4.0 +endif +endif + +# Specify the KERNEL VERSION you want to use for building SDK. +ifeq (,$(KERN_VER)) +ifeq (ELDK,$(BUILD_PLATFORM)) +KERN_VER=2.6.21.7 +endif +endif + + +# Specify the Windriver Linux version here.For example '2.0' as shown below. +ifeq (WR_LINUX,$(BUILD_PLATFORM)) +ifeq (,$(WRS_LINUX_VERSION)) +WRS_LINUX_VERSION=2.0 +endif +endif + + +#glibc_small and glibc_std have their own cross-compilation tools and and path for these tools are different as implemented below. To enable glibc_small build, line given below should be uncommented. + +#WRL_GLIBC_SMALL=TRUE + +ifeq (2.0,$(WRS_LINUX_VERSION)) +ifeq ($(WRL_GLIBC_SMALL),TRUE) + +ifeq (,$(CROSS_COMPILE)) +CROSS_COMPILE := powerpc-wrs-linux-gnu-ppc_e500v2-glibc_small- +endif + +KERNDIR ?=/projects/ntsw-tools/linux/wrslinux_2.0/gto/glibc_small/build/linux-2.6.21-standard + +else + +ifeq (,$(CROSS_COMPILE)) +CROSS_COMPILE := powerpc-wrs-linux-gnu-ppc_e500v2-glibc_std- +endif + +KERNDIR ?= /projects/ntsw-tools/linux/wrslinux_2.0/gto/glibc_std/build/linux-2.6.21-standard + +endif + +export WRL_GLIBC_SMALL + +# After this point glibc_std and glibc_small share these flags + +WRLINUX_BASE ?=/tools/windriver/linux_ed/2.0_GA/Linux +TOOLCHAIN_EXEC_PREFIX=$(WRLINUX_BASE)/gnu/4.1-wrlinux-2.0/x86-linux2 +TOOLCHAIN_BIN_DIR=$(TOOLCHAIN_EXEC_PREFIX) +WIND_LIC_PROXY=$(WRLINUX_BASE)/setup/x86-linux2/bin +WRLINUX_GNU_PATH = $(WRLINUX_BASE)/gnu/4.1-wrlinux-2.0/x86-linux2/bin +override PATH := $(TOOLCHAIN_EXEC_PREFIX):$(KERNDIR)/../../host-cross/bin:$(KERNDIR)/../../host-cross/powerpc-wrs-linux-gnu/bin:$(WRLINUX_GNU_PATH):$(PATH) +export TOOLCHAIN_EXEC_PREFIX TOOLCHAIN_BIN_DIR WIND_LIC_PROXY +endif + + +ifeq (3.0,$(WRS_LINUX_VERSION)) +ifeq ($(WRL_GLIBC_SMALL),TRUE) + +ifeq (,$(CROSS_COMPILE)) +CROSS_COMPILE := powerpc-wrs-linux-gnu-ppc_e500v2-glibc_small- +endif + +KERNDIR ?=/projects/ntsw-tools/linux/wrslinux_3.0/gto/bcm98548xmc_30_glibc_small/build/linux-broadcom_bcm98548xmc-standard-build +KERNDIR_STD ?=/projects/ntsw-tools/linux/wrslinux_3.0/gto/bcm98548xmc_30_glibc_small/build/linux + +else + +ifeq (,$(CROSS_COMPILE)) +CROSS_COMPILE := powerpc-wrs-linux-gnu-ppc_e500v2-glibc_std- +endif + +KERNDIR ?=/projects/ntsw-tools/linux/wrslinux_3.0/gto/bcm98548xmc_30_glibc_std_debug/build/linux-broadcom_bcm98548xmc-standard-build +KERNDIR_STD ?=/projects/ntsw-tools/linux/wrslinux_3.0/gto/bcm98548xmc_30_glibc_std_debug/build/linux + +endif + +export WRL_GLIBC_SMALL + +# After this point glibc_std and glibc_small share these flags + +WRLINUX_BASE ?=/tools/windriver/linux_ed/3.0/Linux +TOOLCHAIN_EXEC_PREFIX=$(WRLINUX_BASE)/wrlinux-3.0/layers/wrll-toolchain-4.3-85/powerpc/toolchain/x86-linux2 +TOOLCHAIN_BIN_DIR=$(TOOLCHAIN_EXEC_PREFIX) +WIND_LIC_PROXY=$(WRLINUX_BASE)/setup/x86-linux2/bin +WRLINUX_GNU_PATH = $(WRLINUX_BASE)/wrlinux-3.0/layers/wrll-toolchain-4.3-85/powerpc/toolchain/x86-linux2/bin +override PATH := $(TOOLCHAIN_EXEC_PREFIX):$(KERNDIR_STD)/../../host-cross/bin:$(KERNDIR_STD)/../../host-cross/powerpc-wrs-linux-gnu/bin:$(WRLINUX_GNU_PATH):$(PATH) +export TOOLCHAIN_EXEC_PREFIX TOOLCHAIN_BIN_DIR WIND_LIC_PROXY + +LINUX_INCLUDE_STD := $(KERNDIR_STD)/include + +endif + +ifeq (ELDK,$(BUILD_PLATFORM)) +ifeq (2.6.21.7, $(KERN_VER)) + +ifeq (,$(CROSS_COMPILE)) +CROSS_COMPILE := ppc_85xx- +endif + +ifeq (4.0, $(ELDK_VERSION)) +override PATH := /tools/eldk/4.0/usr/bin:$(PATH) +else +override PATH := /tools/eldk/4.1/usr/bin:$(PATH) +endif +KERNDIR ?= /projects/ntsw-tools/linux/eldk/gto_eldk/linux-2.6.21.7 +endif +endif + +ifeq (ELDK,$(BUILD_PLATFORM)) +ifeq (2.6.24.4, $(KERN_VER)) + +ifeq (,$(CROSS_COMPILE)) +CROSS_COMPILE := ppc_85xx- +endif + +ifeq (4.0, $(ELDK_VERSION)) +override PATH := /tools/eldk/4.0/usr/bin:$(PATH) +else +override PATH := /tools/eldk/4.1/usr/bin:$(PATH) +endif +KERNDIR ?= /projects/ntsw-tools/linux/eldk/gto_eldk/linux-2.6.24.4 +endif +endif + + +ifeq (ELDK,$(BUILD_PLATFORM)) +ifeq (2.6.25, $(KERN_VER)) + +ifeq (,$(CROSS_COMPILE)) +CROSS_COMPILE := ppc_85xx- +endif + +ifeq (4.0, $(ELDK_VERSION)) +override PATH := /tools/eldk/4.0/usr/bin:$(PATH) +else +override PATH := /tools/eldk/4.1/usr/bin:$(PATH) +endif +KERNDIR ?= /projects/ntsw-tools/linux/eldk/gto_eldk/linux-2.6.25 +endif +endif + + +# Default Linux include directory +ifeq (,$(LINUX_INCLUDE)) +LINUX_INCLUDE := $(KERNDIR)/include +endif + +CFGFLAGS += -DSYS_BE_PIO=1 -DSYS_BE_PACKET=0 -DSYS_BE_OTHER=1 +ENDIAN = BE_HOST=1 +CFGFLAGS += -D$(ENDIAN) +CFGFLAGS += -DBCM_PLATFORM_STRING=\"GTO_MPC8548\" +CFGFLAGS += -DSAL_BDE_DMA_MEM_DEFAULT=32 + +# Extra variables. +EXTRA_CFLAGS = -D"KBUILD_STR(s)=\#s" $(basename_flags) $(modname_flags) + +ARCH = powerpc +KBUILD_VERBOSE = 1 + +export ARCH KBUILD_VERBOSE + + +# From linux/arch/ppc/Makefile +comma = , +basetarget = $(basename $(notdir $@)) +modname = $(basetarget) + +name-fix = $(subst $(comma),_,$(subst -,_,$1)) +basename_flags = -D"KBUILD_BASENAME=KBUILD_STR($(call name-fix,$(basetarget)))" +modname_flags = $(if $(filter 1,$(words $(modname))),\ + -D"KBUILD_MODNAME=KBUILD_STR($(call name-fix,$(modname)))") + + +ifeq (,$(KFLAG_INCLD)) +ifeq (4.0,$(ELDK_VERSION)) +ifeq (ELDK,$(BUILD_PLATFORM)) +KFLAG_INCLD = /tools/eldk/4.0/usr/lib/gcc/powerpc-linux/4.0.0/include +endif +endif + +ifeq (4.1,$(ELDK_VERSION)) +ifeq (ELDK,$(BUILD_PLATFORM)) +KFLAG_INCLD = /tools/eldk/4.1/usr/lib/gcc/powerpc-linux/4.0.0/include +endif +endif + +ifeq (2.0,$(WRS_LINUX_VERSION)) +KFLAG_INCLD = $(WRLINUX_GNU_PATH)/../lib/gcc/powerpc-wrs-linux-gnu/4.1.2/include +endif + +ifeq (3.0,$(WRS_LINUX_VERSION)) +KFLAG_INCLD = $(WRLINUX_GNU_PATH)/../lib/gcc/powerpc-wrs-linux-gnu/4.3.2/include +endif +endif + +ifdef BROADCOM_SVK +ifdef BCM_BME3200_B0 +PLX_PCI2LBUS=1 +endif +ifdef BCM_BM9600_B0 +PLX_PCI2LBUS=1 +endif +ifeq ($PLX_PCI2LBUS, 1) +CFLAGS += -DBCM_PLX9656_LOCAL_BUS -DBDE_LINUX_NON_INTERRUPTIBLE +endif +endif + +ifdef DPP_CHIPS +CFLAGS += -DDUNE_BCM -D__DUNE_LINUX_BCM_CPU_PCP_DMA__ +CFGFLAGS += -DSOC_CM_FUNCTION +endif + +ifdef DFE_CHIPS +CFLAGS += -DDUNE_BCM +CFGFLAGS += -DSOC_CM_FUNCTION +endif + +ifdef SAND_CHIPS +CFLAGS += -D__DUNE_GTO_BCM_CPU__ -D__DUNE_LINUX_BCM_CPU_PCIE__ +endif + +ifdef SHADOW_PLX +CFLAGS += -DBCM_PLX9656_LOCAL_BUS -DBDE_LINUX_NON_INTERRUPTIBLE -DSHADOW_SVK +endif + +ifeq (,$(KFLAGS)) +KFLAGS := -D__KERNEL__ -m32 -nostdinc -isystem $(KFLAG_INCLD) -I$(LINUX_INCLUDE) -include $(LINUX_INCLUDE)/linux/version.h -include $(LINUX_INCLUDE)/generated/autoconf.h -I$(KERNDIR)/arch/powerpc -I$(KERNDIR)/arch/powerpc -I$(KERNDIR)/arch/powerpc/include -I$(KERNDIR)/include/asm-powerpc -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common -msoft-float -pipe -ffixed-r2 -mmultiple -mno-altivec -funit-at-a-time -Wa,-me500 -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign +endif + +#Wind river Linux 3.0 needs addtional flags +ifeq (3.0,$(WRS_LINUX_VERSION)) + +# Use MSI interrupts if kernel is compiled with MSI support. +#CFLAGS += -DBDE_LINUX_USE_MSI_INTERRUPT +KFLAGS += -I$(LINUX_INCLUDE_STD) -I$(KERNDIR_STD)/arch/powerpc -I$(KERNDIR_STD)/arch/powerpc/include -I$(KERNDIR_STD)/include.asm-powerpc -mno-spe +endif + +ifneq ($(targetplat),user) +include ${SDK}/make/Makefile.linux-kernel-2_6 +endif only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-iproc +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-iproc @@ -0,0 +1,93 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-iproc Exp $ +# $Copyright: (c) 2007 Broadcom Corp. +# All Rights Reserved.$ +# Makefile for iproc-CMICd + +# User must select one platform from below.By default ARM_LINUX is selected. . +ifeq (,$(BUILD_PLATFORM)) +BUILD_PLATFORM=ARM_LINUX +endif + +# TOOLCHAIN_BASE_DIR Toolchain base directory for iPROC-CMICd devices +# TARGET_ARCHITECTURE Compiler for target architecture +# KERNDIR Kernel directory for iPROC-CMICd devices +ifeq (BE,$(ENDIAN_MODE)) +TOOLCHAIN_BASE_DIR ?= /projects/ntsw-tools/linux/iproc_ldks/iproc-be/XLDK +TARGET_ARCHITECTURE:=armeb-broadcom-linux-uclibcgnueabi +KERNDIR ?= $(TOOLCHAIN_BASE_DIR)/kernel/linux +else +TOOLCHAIN_BASE_DIR ?= /projects/ntsw-tools/linux/iproc_ldks/iproc/XLDK +TARGET_ARCHITECTURE:= arm-broadcom-linux-uclibcgnueabi +KERNDIR ?= $(TOOLCHAIN_BASE_DIR)/kernel/linux +endif + +ifeq (,$(CROSS_COMPILE)) +CROSS_COMPILE:= $(TARGET_ARCHITECTURE)- +endif + +# arm9tools +TOOLCHAIN_BIN_DIR=$(TOOLCHAIN_BASE_DIR)/buildroot/host/usr/bin +override PATH:=$(TOOLCHAIN_BASE_DIR)/buildroot/host/usr/$(TARGET_ARCHITECTURE)/bin:$(TOOLCHAIN_BIN_DIR):$(PATH) +LD_LIBRARY_PATH=$(TOOLCHAIN_BASE_DIR)/buildroot/host/usr/lib + +export TOOLCHAIN_BIN_DIR LD_LIBRARY_PATH + +# Default Linux include directory +ifeq (,$(LINUX_INCLUDE)) +LINUX_INCLUDE := $(KERNDIR)/include +endif + +ifeq (BE,$(ENDIAN_MODE)) +CFGFLAGS += -DSYS_BE_PIO=1 -DSYS_BE_PACKET=0 -DSYS_BE_OTHER=1 +ENDIAN = BE_HOST=1 +else +CFGFLAGS += -DSYS_BE_PIO=0 -DSYS_BE_PACKET=0 -DSYS_BE_OTHER=0 +ENDIAN = LE_HOST=1 +endif + +CFGFLAGS += -D$(ENDIAN) -DIPROC_CMICD +CFGFLAGS += -DBCM_PLATFORM_STRING=\"IPROC_CMICD\" + +ARCH = arm +KBUILD_VERBOSE = 1 + +export ARCH KBUILD_VERBOSE + +comma = , +basetarget = $(basename $(notdir $@)) +modname = $(basetarget) + +# Extra variables. +EXTRA_CFLAGS = -D"KBUILD_STR(s)=\#s" $(basename_flags) $(modname_flags) + +name-fix = $(subst $(comma),_,$(subst -,_,$1)) +basename_flags = -D"KBUILD_BASENAME=KBUILD_STR($(call name-fix,$(basetarget)))" +modname_flags = $(if $(filter 1,$(words $(modname))),\ + -D"KBUILD_MODNAME=KBUILD_STR($(call name-fix,$(modname)))") + +KFLAG_INCLD ?= $(TOOLCHAIN_BASE_DIR)/buildroot/host/usr/lib/gcc/$(TARGET_ARCHITECTURE)/4.9.3/include + +ifeq (,$(KFLAGS)) +KFLAGS := -D__LINUX_ARM_ARCH__=7 -D__KERNEL__ -nostdinc -isystem $(KFLAG_INCLD) -I$(LINUX_INCLUDE) -include $(LINUX_INCLUDE)/generated/autoconf.h -I$(KERNDIR)/arch/arm/include -I$(KERNDIR)/arch/arm/include/generated -I$(KERNDIR)/arch/arm/mach-iproc/include -Wall -Wstrict-prototypes -Wno-trigraphs -Os -fno-strict-aliasing -fno-common -marm -mabi=aapcs-linux -fno-pic -pipe -msoft-float -ffreestanding -march=armv7-a -mfpu=vfp -mfloat-abi=softfp -fomit-frame-pointer -g -fno-stack-protector -Wdeclaration-after-statement -Wno-pointer-sign -mlong-calls +KFLAGS += -I$(LINUX_INCLUDE)/uapi -I$(LINUX_INCLUDE)/generated/uapi -I$(KERNDIR)/arch/arm/include/uapi -I$(KERNDIR)/arch/arm/include/generated/uapi +endif + +ifneq ($(targetplat),user) +include ${SDK}/make/Makefile.linux-kernel-3_6 +endif only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-iproc-3_14 +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-iproc-3_14 @@ -0,0 +1,104 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-iproc-3_6,v 1.1 Broadcom SDK $ +# $Copyright: (c) 2007 Broadcom Corp. +# All Rights Reserved.$ +# Makefile for iproc-CMICd + +# User must select one platform from below.By default ARM_LINUX is selected. . +ifeq (,$(BUILD_PLATFORM)) +BUILD_PLATFORM=ARM_LINUX +endif + +# TOOLCHAIN_BASE_DIR Toolchain base directory for iPROC-CMICd devices +# TARGET_ARCHITECTURE Compiler for target architecture +# KERNDIR Kernel directory for iPROC-CMICd devices +ifeq (BE,$(ENDIAN_MODE)) +TOOLCHAIN_BASE_DIR ?= /projects/ntsw-tools/linux/iproc_ldks/xldk37-be/buildroot-2013.11-gcc48-opt-broadcom +TARGET_ARCHITECTURE:=armeb-buildroot-linux-gnueabi +KERNDIR ?= /projects/ntsw-tools/linux/iproc_ldks/xldk37-be/XLDK/kernel/linux +else +TOOLCHAIN_BASE_DIR ?= /projects/ntsw-tools/linux/iproc_ldks/xldk37/XLDK +TARGET_ARCHITECTURE:= arm-broadcom-linux-uclibcgnueabi +KERNDIR ?= $(TOOLCHAIN_BASE_DIR)/kernel/linux +endif + + +ifeq (,$(CROSS_COMPILE)) +CROSS_COMPILE:= $(TARGET_ARCHITECTURE)- +endif + +# arm9tools +ifeq (BE,$(ENDIAN_MODE)) +TOOLCHAIN_BIN_DIR=$(TOOLCHAIN_BASE_DIR)/host/usr/bin +override PATH:=$(TOOLCHAIN_BASE_DIR)/host/usr/$(TARGET_ARCHITECTURE)/bin:$(TOOLCHAIN_BIN_DIR):$(PATH) +LD_LIBRARY_PATH=$(TOOLCHAIN_BASE_DIR)/host/usr/lib +else +TOOLCHAIN_BIN_DIR=$(TOOLCHAIN_BASE_DIR)/buildroot/usr/bin +override PATH:=$(TOOLCHAIN_BASE_DIR)/buildroot/usr/$(TARGET_ARCHITECTURE)/bin:$(TOOLCHAIN_BIN_DIR):$(PATH) +LD_LIBRARY_PATH=$(TOOLCHAIN_BASE_DIR)/buildroot/usr/lib +endif + +export TOOLCHAIN_BIN_DIR LD_LIBRARY_PATH + +# Default Linux include directory +ifeq (,$(LINUX_INCLUDE)) +LINUX_INCLUDE := $(KERNDIR)/include +endif + +ifeq (BE,$(ENDIAN_MODE)) +CFGFLAGS += -DSYS_BE_PIO=1 -DSYS_BE_PACKET=0 -DSYS_BE_OTHER=1 +ENDIAN = BE_HOST=1 +else +CFGFLAGS += -DSYS_BE_PIO=0 -DSYS_BE_PACKET=0 -DSYS_BE_OTHER=0 +ENDIAN = LE_HOST=1 +endif + +CFGFLAGS += -D$(ENDIAN) -DIPROC_CMICD +CFGFLAGS += -DBCM_PLATFORM_STRING=\"IPROC_CMICD\" + +ARCH = arm +KBUILD_VERBOSE = 1 + +export ARCH KBUILD_VERBOSE + +comma = , +basetarget = $(basename $(notdir $@)) +modname = $(basetarget) + +# Extra variables. +EXTRA_CFLAGS = -D"KBUILD_STR(s)=\#s" $(basename_flags) $(modname_flags) + +name-fix = $(subst $(comma),_,$(subst -,_,$1)) +basename_flags = -D"KBUILD_BASENAME=KBUILD_STR($(call name-fix,$(basetarget)))" +modname_flags = $(if $(filter 1,$(words $(modname))),\ + -D"KBUILD_MODNAME=KBUILD_STR($(call name-fix,$(modname)))") + +ifeq (BE,$(ENDIAN_MODE)) +KFLAG_INCLD ?= $(TOOLCHAIN_BASE_DIR)/host/usr/lib/gcc/$(TARGET_ARCHITECTURE)/4.8.2/include +else +KFLAG_INCLD ?= $(TOOLCHAIN_BASE_DIR)/buildroot/usr/lib/gcc/$(TARGET_ARCHITECTURE)/4.7.2/include +endif + +ifeq (,$(KFLAGS)) +KFLAGS := -D__LINUX_ARM_ARCH__=7 -D__KERNEL__ -nostdinc -isystem $(KFLAG_INCLD) -I$(LINUX_INCLUDE) -include $(LINUX_INCLUDE)/generated/autoconf.h -I$(KERNDIR)/arch/arm/include -I$(KERNDIR)/arch/arm/include/generated -I$(KERNDIR)/arch/arm/mach-northstar/include -I$(KERNDIR)/arch/arm/plat-iproc/include -Wall -Wstrict-prototypes -Wno-trigraphs -Os -fno-strict-aliasing -fno-common -marm -mabi=aapcs-linux -fno-pic -pipe -msoft-float -ffreestanding -march=armv7-a -mfpu=vfp -mfloat-abi=softfp -fomit-frame-pointer -g -fno-stack-protector -Wdeclaration-after-statement -Wno-pointer-sign -mlong-calls +KFLAGS += -I$(LINUX_INCLUDE)/uapi -I$(LINUX_INCLUDE)/generated/uapi -I$(KERNDIR)/arch/arm/include/uapi -I$(KERNDIR)/arch/arm/include/generated/uapi +endif + +ifneq ($(targetplat),user) +include ${SDK}/make/Makefile.linux-kernel-3_6 +endif only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-kernel +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-kernel @@ -0,0 +1,113 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-kernel,v 1.27 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ + +# Configuration Flags + +# Filter out features that cannot or should not be supported in kernel mode +_FEATURE_EXCLUDE_LIST += EDITLINE TCL OOB_RCPU CINT APIMODE DUNE_UI C_UNIT +FEATURE_EXCLUDE_LIST = $(sort $(_FEATURE_EXCLUDE_LIST)) +# Tools + +CC = $(CROSS_COMPILE)gcc +CXX = $(CROSS_COMPILE)g++ +LD = $(CROSS_COMPILE)ld +AR = $(CROSS_COMPILE)ar +ARFLAGS = -rc +STRIP = $(CROSS_COMPILE)strip +RANLIB = $(CROSS_COMPILE)ranlib +OBJCOPY = $(CROSS_COMPILE)objcopy + +# Handle differences between gcc 2.x and gcc 3.x +gcc-tune-flag = $(shell if ${CC} -dumpspecs | grep mcpu >/dev/null; then echo cpu; else echo tune; fi) + +# Configuration Variables + +# OSType Defines: This defines the type of RTOS or microkernel which you +# are compiling the SAL (and its associated driver) for. New platforms +# can be created by porting the routines (system.c) to your platform and +# adding the define in this Makefile. + +OSTYPE = LINUX + +# +# ORIGIN is used to Optionally select different CFLAGS. It is used to import +# source from other vendors. If SOURCE=Broadcom, then the BCM_ flags are added +# to those passed to the compiler. If SOURCE != Broadcom, BCM_ flags are NOT +# added. +# +# Default specifies Broadcom +# +ifndef ORIGIN + ORIGIN = Broadcom +endif + +# +# STD_{C|CPP|CXX}FLAGS - Standard flags used by ALL compilations +# BCM_{C|CPP|CXX}FLAGS - Flags used for Broadcom source files +# OPT_{C|CPP|CXX}FLAGS - Defined in local make files BEFORE inclusion of +# this Makefile, to define local "Extra" flags. +# + +CFGFLAGS += -I$(SDK)/systems/linux/kernel/modules/include \ + -I$(SDK)/systems/bde/linux/include \ + -I$(LINUX_INCLUDE) + +CFGFLAGS += -DNO_FILEIO -DNO_CTRL_C -DNO_MEMTUNE + +CFGFLAGS += -D$(OSTYPE) + +# No user sal for the linux kernel +# NO_SAL_APPL=1 + +STD_CFLAGS = $(KFLAGS) $(CFGFLAGS) + + +STD_CPPFLAGS = ${STD_CFLAGS} +STD_CXXFLAGS = ${STD_CFLAGS} + +BCM_CFLAGS = -Wall -Werror +BCM_CPPFLAGS = ${BCM_CFLAGS} +BCM_CXXFLAGS = ${BCM_CFLAGS} + +ifeq (${ORIGIN}, Broadcom) + CFLAGS += ${STD_CFLAGS} ${BCM_CFLAGS} ${OPT_CFLAGS} + CPPFLAGS += ${STD_CPPFLAGS} ${BCM_CPPFLAGS} ${OPT_CPPFLAGS} + CXXFLAGS += ${STD_CXXFLAGS} ${BCM_CXXFLAGS} ${OPT_CXXFLAGS} +else + CFLAGS += ${STD_CFLAGS} ${OPT_CFLAGS} + CPPFLAGS += ${STD_CPPFLAGS} ${OPT_CPPFLAGS} + CXXFLAGS += ${STD_CXXFLAGS} ${OPT_CXXFLAGS} +endif + +# +# Ignore pedantic flag for kernel modules +# +ifdef DEBUG_PEDANTIC +DEBUG_PEDANTIC = FALSE +endif + +# +# DEPEND is used as a command to generate the list of dependencies. +# The format of the output must be +# "file.o : file.c a/b/c.h d/e/f.h ...", +# if it is on multiple lines, each line must end in a backslash. +# The output MUST be on standard out. +# +DEPEND = ${CC} -M $(CFLAGS) $< only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-kernel-2_6 +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-kernel-2_6 @@ -0,0 +1,149 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-kernel-2_6,v 1.40 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ + +# Configuration Flags + +# Filter out features that cannot or should not be supported in kernel mode + +_FEATURE_EXCLUDE_LIST += EDITLINE TCL OOB_RCPU CINT APIMODE DUNE_UI C_UNIT +FEATURE_EXCLUDE_LIST = $(sort $(_FEATURE_EXCLUDE_LIST)) + +# Tools + +# Conditionally Replaces DEFAULT var +ifeq ($(origin CC),default) +CC = $(LSRUN) $(CROSS_COMPILE)gcc +endif + +ifeq ($(origin CXX),default) +CXX = $(CROSS_COMPILE)g++ +endif + +ifeq ($(origin LD),default) +LD = $(CROSS_COMPILE)ld +endif + +ifeq ($(origin AR),default) +AR = $(CROSS_COMPILE)ar +endif + +ifeq ($(origin AS),default) +AS = $(CROSS_COMPILE)as +endif + +ifeq ($(origin ARFLAGS),default) + ARFLAGS = -rc +endif + +STRIP = $(CROSS_COMPILE)strip +RANLIB = $(CROSS_COMPILE)ranlib +OBJCOPY = $(CROSS_COMPILE)objcopy +NM = $(CROSS_COMPILE)nm + +# Handle differences between gcc 2.x and gcc 3.x +gcc-tune-flag = $(shell if ${CC} -dumpspecs | grep mcpu >/dev/null; then echo cpu; else echo tune; fi) + +# Configuration Variables + +# OSType Defines: This defines the type of RTOS or microkernel which you +# are compiling the SAL (and its associated driver) for. New platforms +# can be created by porting the routines (system.c) to your platform and +# adding the define in this Makefile. + +OSTYPE = LINUX + +# +# ORIGIN is used to Optionally select different CFLAGS. It is used to import +# source from other vendors. If SOURCE=Broadcom, then the BCM_ flags are added +# to those passed to the compiler. If SOURCE != Broadcom, BCM_ flags are NOT +# added. +# +# Default specifies Broadcom +# +ifndef ORIGIN + ORIGIN = Broadcom +endif + +# +# STD_{C|CPP|CXX}FLAGS - Standard flags used by ALL compilations +# BCM_{C|CPP|CXX}FLAGS - Flags used for Broadcom source files +# OPT_{C|CPP|CXX}FLAGS - Defined in local make files BEFORE inclusion of +# this Makefile, to define local "Extra" flags. +# + +ifdef IPROC_BUILD +CFGFLAGS += -I$(SDK)/systems/linux/kernel/modules/include \ + -I$(SDK)/systems/bde/linux/include \ + -I$(LINUX_INCLUDE) \ + -I$(KERNDIR)/arch/$(ARCH) +else +CFGFLAGS += -I$(SDK)/systems/linux/kernel/modules/include \ + -I$(SDK)/systems/bde/linux/include \ + -I$(LINUX_INCLUDE) \ + -I$(LINUX_INCLUDE)/asm/gcc \ + -I$(LINUX_INCLUDE)/asm/mach-generic \ + -I$(KERNDIR)/arch/$(ARCH) +endif + +CFGFLAGS += -DNO_FILEIO -DNO_CTRL_C -DNO_MEMTUNE + +CFGFLAGS += -D$(OSTYPE) + +# No user sal for the linux kernel +# NO_SAL_APPL=1 + +STD_CFLAGS = $(KFLAGS) $(CFGFLAGS) + + +STD_CPPFLAGS = ${STD_CFLAGS} +STD_CXXFLAGS = ${STD_CFLAGS} + +ifndef BCM_CFLAGS +BCM_CFLAGS = -Wall -Werror +endif + +BCM_CPPFLAGS = ${BCM_CFLAGS} +BCM_CXXFLAGS = ${BCM_CFLAGS} + +ifeq (${ORIGIN}, Broadcom) + CFLAGS += ${STD_CFLAGS} ${BCM_CFLAGS} ${OPT_CFLAGS} + CPPFLAGS += ${STD_CPPFLAGS} ${BCM_CPPFLAGS} ${OPT_CPPFLAGS} + CXXFLAGS += ${STD_CXXFLAGS} ${BCM_CXXFLAGS} ${OPT_CXXFLAGS} +else + CFLAGS += ${STD_CFLAGS} ${OPT_CFLAGS} + CPPFLAGS += ${STD_CPPFLAGS} ${OPT_CPPFLAGS} + CXXFLAGS += ${STD_CXXFLAGS} ${OPT_CXXFLAGS} +endif + +# +# Ignore pedantic flag for kernel modules +# +ifdef DEBUG_PEDANTIC +DEBUG_PEDANTIC = FALSE +endif + +# +# DEPEND is used as a command to generate the list of dependencies. +# The format of the output must be +# "file.o : file.c a/b/c.h d/e/f.h ...", +# if it is on multiple lines, each line must end in a backslash. +# The output MUST be on standard out. +# +DEPEND = ${CC} -M $(CFLAGS) $< only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-kernel-3_6 +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-kernel-3_6 @@ -0,0 +1,149 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-kernel-3_6,v 1.2 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ + +# Configuration Flags + +# Filter out features that cannot or should not be supported in kernel mode + +_FEATURE_EXCLUDE_LIST += EDITLINE TCL OOB_RCPU CINT APIMODE DUNE_UI +FEATURE_EXCLUDE_LIST = $(sort $(_FEATURE_EXCLUDE_LIST)) + +# Tools + +# Conditionally Replaces DEFAULT var +ifeq ($(origin CC),default) +CC = $(LSRUN) $(CROSS_COMPILE)gcc +endif + +ifeq ($(origin CXX),default) +CXX = $(CROSS_COMPILE)g++ +endif + +ifeq ($(origin LD),default) +LD = $(CROSS_COMPILE)ld +endif + +ifeq ($(origin AR),default) +AR = $(CROSS_COMPILE)ar +endif + +ifeq ($(origin AS),default) +AS = $(CROSS_COMPILE)as +endif + +ifeq ($(origin ARFLAGS),default) + ARFLAGS = -rc +endif + +STRIP = $(CROSS_COMPILE)strip +RANLIB = $(CROSS_COMPILE)ranlib +OBJCOPY = $(CROSS_COMPILE)objcopy +NM = $(CROSS_COMPILE)nm + +# Handle differences between gcc 2.x and gcc 3.x +gcc-tune-flag = $(shell if ${CC} -dumpspecs | grep mcpu >/dev/null; then echo cpu; else echo tune; fi) + +# Configuration Variables + +# OSType Defines: This defines the type of RTOS or microkernel which you +# are compiling the SAL (and its associated driver) for. New platforms +# can be created by porting the routines (system.c) to your platform and +# adding the define in this Makefile. + +OSTYPE = LINUX + +# +# ORIGIN is used to Optionally select different CFLAGS. It is used to import +# source from other vendors. If SOURCE=Broadcom, then the BCM_ flags are added +# to those passed to the compiler. If SOURCE != Broadcom, BCM_ flags are NOT +# added. +# +# Default specifies Broadcom +# +ifndef ORIGIN + ORIGIN = Broadcom +endif + +# +# STD_{C|CPP|CXX}FLAGS - Standard flags used by ALL compilations +# BCM_{C|CPP|CXX}FLAGS - Flags used for Broadcom source files +# OPT_{C|CPP|CXX}FLAGS - Defined in local make files BEFORE inclusion of +# this Makefile, to define local "Extra" flags. +# + +ifdef IPROC_BUILD +CFGFLAGS += -I$(SDK)/systems/linux/kernel/modules/include \ + -I$(SDK)/systems/bde/linux/include \ + -I$(LINUX_INCLUDE) \ + -I$(KERNDIR)/arch/$(ARCH) +else +CFGFLAGS += -I$(SDK)/systems/linux/kernel/modules/include \ + -I$(SDK)/systems/bde/linux/include \ + -I$(LINUX_INCLUDE) \ + -I$(LINUX_INCLUDE)/asm/gcc \ + -I$(LINUX_INCLUDE)/asm/mach-generic \ + -I$(KERNDIR)/arch/$(ARCH) +endif + +CFGFLAGS += -DNO_FILEIO -DNO_CTRL_C -DNO_MEMTUNE + +CFGFLAGS += -D$(OSTYPE) + +# No user sal for the linux kernel +# NO_SAL_APPL=1 + +STD_CFLAGS = $(KFLAGS) $(CFGFLAGS) + + +STD_CPPFLAGS = ${STD_CFLAGS} +STD_CXXFLAGS = ${STD_CFLAGS} + +ifndef BCM_CFLAGS +BCM_CFLAGS = -Wall -Werror +endif + +BCM_CPPFLAGS = ${BCM_CFLAGS} +BCM_CXXFLAGS = ${BCM_CFLAGS} + +ifeq (${ORIGIN}, Broadcom) + CFLAGS += ${STD_CFLAGS} ${BCM_CFLAGS} ${OPT_CFLAGS} + CPPFLAGS += ${STD_CPPFLAGS} ${BCM_CPPFLAGS} ${OPT_CPPFLAGS} + CXXFLAGS += ${STD_CXXFLAGS} ${BCM_CXXFLAGS} ${OPT_CXXFLAGS} +else + CFLAGS += ${STD_CFLAGS} ${OPT_CFLAGS} + CPPFLAGS += ${STD_CPPFLAGS} ${OPT_CPPFLAGS} + CXXFLAGS += ${STD_CXXFLAGS} ${OPT_CXXFLAGS} +endif + +# +# Ignore pedantic flag for kernel modules +# +ifdef DEBUG_PEDANTIC +DEBUG_PEDANTIC = FALSE +endif + +# +# DEPEND is used as a command to generate the list of dependencies. +# The format of the output must be +# "file.o : file.c a/b/c.h d/e/f.h ...", +# if it is on multiple lines, each line must end in a backslash. +# The output MUST be on standard out. +# +DEPEND = ${CC} -M $(CFLAGS) $< only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-kernel-4_4 +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-kernel-4_4 @@ -0,0 +1,158 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-kernel-2_6,v 1.40 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ + +# Configuration Flags + +# Filter out features that cannot or should not be supported in kernel mode + +_FEATURE_EXCLUDE_LIST += EDITLINE TCL OOB_RCPU CINT APIMODE DUNE_UI C_UNIT +FEATURE_EXCLUDE_LIST = $(sort $(_FEATURE_EXCLUDE_LIST)) + +# Tools + +# Conditionally Replaces DEFAULT var +ifeq ($(origin CC),default) +CC = $(LSRUN) $(CROSS_COMPILE)gcc +endif + +ifeq ($(origin CXX),default) +CXX = $(CROSS_COMPILE)g++ +endif + +ifeq ($(origin LD),default) +LD = $(CROSS_COMPILE)ld +endif + +ifeq ($(origin AR),default) +AR = $(CROSS_COMPILE)ar +endif + +ifeq ($(origin AS),default) +AS = $(CROSS_COMPILE)as +endif + +ifeq ($(origin ARFLAGS),default) + ARFLAGS = -rc +endif + +STRIP = $(CROSS_COMPILE)strip +RANLIB = $(CROSS_COMPILE)ranlib +OBJCOPY = $(CROSS_COMPILE)objcopy +NM = $(CROSS_COMPILE)nm + +# Handle differences between gcc 2.x and gcc 3.x +gcc-tune-flag = $(shell if ${CC} -dumpspecs | grep mcpu >/dev/null; then echo cpu; else echo tune; fi) + +# Configuration Variables + +# OSType Defines: This defines the type of RTOS or microkernel which you +# are compiling the SAL (and its associated driver) for. New platforms +# can be created by porting the routines (system.c) to your platform and +# adding the define in this Makefile. +OSTYPE = LINUX + +# +# ORIGIN is used to Optionally select different CFLAGS. It is used to import +# source from other vendors. If SOURCE=Broadcom, then the BCM_ flags are added +# to those passed to the compiler. If SOURCE != Broadcom, BCM_ flags are NOT +# added. +# +# Default specifies Broadcom +# +ifndef ORIGIN + ORIGIN = Broadcom +endif + +# +# STD_{C|CPP|CXX}FLAGS - Standard flags used by ALL compilations +# BCM_{C|CPP|CXX}FLAGS - Flags used for Broadcom source files +# OPT_{C|CPP|CXX}FLAGS - Defined in local make files BEFORE inclusion of +# this Makefile, to define local "Extra" flags. +# +ifdef IPROC_BUILD +CFGFLAGS += -I$(SDK)/systems/linux/kernel/modules/include \ + -I$(SDK)/systems/bde/linux/include \ + -I$(LINUX_INCLUDE) \ + -I$(LINUX_INCLUDE)/uapi \ + -I$(LINUX_INCLUDE)/generated/uapi \ + -I$(KERNDIR)/arch/$(ARCH) \ + -I$(KERNDIR)/arch/$(ARCH)/include/uapi \ + -I$(KERNDIR)/arch/$(ARCH)/include/generated \ + -I$(KERNDIR)/arch/$(ARCH)/include/generated/uapi +else +CFGFLAGS += -I$(SDK)/systems/linux/kernel/modules/include \ + -I$(SDK)/systems/bde/linux/include \ + -I$(LINUX_INCLUDE) \ + -I$(LINUX_INCLUDE)/asm/gcc \ + -I$(LINUX_INCLUDE)/asm/mach-generic \ + -I$(LINUX_INCLUDE)/uapi \ + -I$(LINUX_INCLUDE)/generated/uapi \ + -I$(KERNDIR)/arch/$(ARCH) \ + -I$(KERNDIR)/arch/$(ARCH)/include/uapi \ + -I$(KERNDIR)/arch/$(ARCH)/include/generated \ + -I$(KERNDIR)/arch/$(ARCH)/include/generated/uapi +endif + +CFGFLAGS += -DNO_FILEIO -DNO_CTRL_C -DNO_MEMTUNE + +CFGFLAGS += -D$(OSTYPE) + +# No user sal for the linux kernel +# NO_SAL_APPL=1 + +STD_CFLAGS = $(KFLAGS) $(CFGFLAGS) + + +STD_CPPFLAGS = ${STD_CFLAGS} +STD_CXXFLAGS = ${STD_CFLAGS} + +ifndef BCM_CFLAGS +BCM_CFLAGS = -Wall -Werror +endif + +BCM_CPPFLAGS = ${BCM_CFLAGS} +BCM_CXXFLAGS = ${BCM_CFLAGS} + +ifeq (${ORIGIN}, Broadcom) + CFLAGS += ${STD_CFLAGS} ${BCM_CFLAGS} ${OPT_CFLAGS} + CPPFLAGS += ${STD_CPPFLAGS} ${BCM_CPPFLAGS} ${OPT_CPPFLAGS} + CXXFLAGS += ${STD_CXXFLAGS} ${BCM_CXXFLAGS} ${OPT_CXXFLAGS} +else + CFLAGS += ${STD_CFLAGS} ${OPT_CFLAGS} + CPPFLAGS += ${STD_CPPFLAGS} ${OPT_CPPFLAGS} + CXXFLAGS += ${STD_CXXFLAGS} ${OPT_CXXFLAGS} +endif + +# +# Ignore pedantic flag for kernel modules +# +ifdef DEBUG_PEDANTIC +DEBUG_PEDANTIC = FALSE +endif + +# +# DEPEND is used as a command to generate the list of dependencies. +# The format of the output must be +# "file.o : file.c a/b/c.h d/e/f.h ...", +# if it is on multiple lines, each line must end in a backslash. +# The output MUST be on standard out. +# +DEPEND = ${CC} -M $(CFLAGS) $< + only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-kmodule +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-kmodule @@ -0,0 +1,82 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-kmodule-3_6,v 1.2 Broadcom SDK $ +# $Copyright: (c) 2006 Broadcom Corp. +# All Rights Reserved.$ + +# Due to the extensive use of driver libraries, the SDK usually builds +# kernel modules from a precompiled object. To avoid various warnings +# and conflicts, the pre-compiled object must be named differently +# from the target module, and the object file itself should be +# appended with "_shipped". + +# If a module exports any symbols, then the exporting source file must +# be compiled within the kernel source tree for correct generation of +# module symbol versions. The symbol source file should be passed to +# this Makefile via the MODULE_SYM variable. + +MODULE := $(MOD_NAME).o +KMODULE := $(MOD_NAME).ko +PRE_COMPILED_OBJ := obj_$(MOD_NAME).o + +obj-m := $(MODULE) +$(MOD_NAME)-y := $(MODULE_SYM) $(PRE_COMPILED_OBJ) + + +ifeq (,$(CROSS_COMPILE)) + +export CROSS_COMPILE + +endif + +SAVE_CFLAGS := ${CFLAGS} + +include $(SDK)/make/Make.config + +PWD := $(shell pwd) + +ifneq ($(ARCH),) +# ELDK does not seem to `automatically' define ARCH where other gccs may +A := ARCH=$(ARCH) +export ARCH +endif + +# Provide an option in case kernel was built in separate directory +KERNBLDDIR ?= $(KERNDIR) + +# Standard SDK include path for building source files that export +# kernel symbols. + +override EXTRA_CFLAGS = -I${SDK}/include -I${SDK}/systems/linux/kernel/modules/include -I${SDK}/systems/bde/linux/include + +# The precopiled object needs a dummy command file to avoid warnings +# from the Kbuild scripts (modpost stage). +# Kernels before 2.6.17 do not support external module symbols files, +# so we create a dummy to prevent build failures. + +$(KMODULE): + rm -f *.o *.ko .*.cmd + rm -fr .tmp_versions + ln -s $(LIBDIR)/$(MODULE) $(PRE_COMPILED_OBJ)_shipped + echo "suppress warning" > .$(PRE_COMPILED_OBJ).cmd + $(MAKE) -C $(KERNBLDDIR) CROSS_COMPILE=$(CROSS_COMPILE) M=$(PWD) modules + if [ ! -f Module.symvers ]; then echo "old kernel (pre-2.6.17)" > Module.symvers; fi + cp -f $(KMODULE) $(LIBDIR) + rm -f $(PRE_COMPILED_OBJ)_shipped + +EXTRA_CFLAGS = $(CFLAGS) +CFLAGS := ${SAVE_CFLAGS} only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-x86-common-2_6 +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-x86-common-2_6 @@ -0,0 +1,45 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-x86-common-2_6,v 1.13 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ + +CFGFLAGS += -DSYS_BE_PIO=0 -DSYS_BE_PACKET=0 -DSYS_BE_OTHER=0 +ENDIAN = LE_HOST=1 +CFGFLAGS += -D$(ENDIAN) +CFGFLAGS += -DBCM_PLATFORM_STRING=\"X86\" +ifeq (,$(findstring -DSAL_BDE_DMA_MEM_DEFAULT,$(CFGFLAGS))) +CFGFLAGS += -DSAL_BDE_DMA_MEM_DEFAULT=16 +endif + +# Extra variables. +EXTRA_CFLAGS = -D"KBUILD_STR(s)=\#s" $(basename_flags) $(modname_flags) + +comma = , +basetarget = $(basename $(notdir $@)) +modname = $(basetarget) + +name-fix = $(subst $(comma),_,$(subst -,_,$1)) +basename_flags = -D"KBUILD_BASENAME=KBUILD_STR($(call name-fix,$(basetarget)))" +modname_flags = $(if $(filter 1,$(words $(modname))),\ +-D"KBUILD_MODNAME=KBUILD_STR($(call name-fix,$(modname)))") + +ifneq ($(targetplat),user) +# By default we exclude -Werror from x86 kernel builds +BCM_CFLAGS = -Wall +include ${SDK}/make/Makefile.linux-kernel-2_6 +endif only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-x86-generic-common-2_6 +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-x86-generic-common-2_6 @@ -0,0 +1,52 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-x86-generic-common-2_6,v 1.2 Broadcom SDK $ +# $Copyright: (c) 2008 Broadcom Corp. +# All Rights Reserved.$ + +# Default kernel source directory +ifeq (,$(KERNDIR)) +KERNDIR := /lib/modules/$(shell uname -r)/build +export KERNDIR +endif + +# Default architecture +ifeq (,$(ARCH)) +ARCH = $(shell uname -p) +ifneq (x86_64,$(ARCH)) +ARCH = i386 +endif +endif + +# Noisy kernel build +KBUILD_VERBOSE = 1 + +export ARCH KBUILD_VERBOSE KERNDIR + +# Default Linux include directory +ifeq (,$(LINUX_INCLUDE)) +LINUX_INCLUDE := $(KERNDIR)/include +endif + +# autoconf.h was moved in later kernels +AUTOCONF = $(KERNDIR)/include/generated/autoconf.h +ifeq (,$(shell ls $(AUTOCONF) 2>/dev/null)) +AUTOCONF = $(KERNDIR)/include/linux/autoconf.h +endif + +# gcc system include path +SYSINC = $(shell gcc -print-search-dirs | grep install | cut -c 10-)include only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-x86-smp_generic_64-2_6 +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/make/Makefile.linux-x86-smp_generic_64-2_6 @@ -0,0 +1,34 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# $Id: Makefile.linux-x86-smp_generic_64-2_6,v 1.5 Broadcom SDK $ +# $Copyright: (c) 2008 Broadcom Corp. +# All Rights Reserved.$ + +CFGFLAGS += -DLONGS_ARE_64BITS +CFGFLAGS += -DPTRS_ARE_64BITS +CFGFLAGS += -DPHYS_ADDRS_ARE_64BITS +CFGFLAGS += -DSAL_SPL_LOCK_ON_IRQ + +include ${SDK}/make/Makefile.linux-x86-generic-common-2_6 + +ifeq (,$(KFLAGS)) +KFLAGS := -nostdinc -isystem $(SYSINC) -I$(KERNDIR)/include -I$(KERNDIR)/arch/x86/include -include $(AUTOCONF) -D__KERNEL__ -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -m64 -mtune=generic -mno-red-zone -mcmodel=kernel -funit-at-a-time -maccumulate-outgoing-args -DCONFIG_AS_CFI=1 -DCONFIG_AS_CFI_SIGNAL_FRAME=1 -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign +endif + +KFLAGS += -I$(LINUX_INCLUDE)/uapi -I$(LINUX_INCLUDE)/generated/uapi -I$(KERNDIR)/arch/x86/include/generated -I$(KERNDIR)/arch/x86/include/uapi -I$(KERNDIR)/arch/x86/include/generated/uapi + +include ${SDK}/make/Makefile.linux-x86-common-2_6 only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/include/linux-bde.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/include/linux-bde.h @@ -0,0 +1,275 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/*********************************************************************** + * + * $Id: linux-bde.h,v 1.24 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + * + * Linux Broadcom Device Enumerators + * + * + * There are two Linux BDEs: + * + * 1. Linux Kernel BDE + * + * This is a kernel module implementing a BDE + * for the driver running as part of the kernel. + * + * It manages the devices through the linux PCI interfaces, + * and manages a chunk of contiguous, boot-time allocated + * DMA memory. This is all that is needed if the BCM driver + * is run as part of the kernel (in another module). + * + * 2. Linux User BDE + * + * This is a kernel module and userland library which implement + * a complete BDE for applications running in userland. + * + * The kernel module relies upon the real kernel bde, + * and allows a user space application (through the user library) + * to talk directly to the devices. It also virtualized the device + * interrupts, so the entire driver can be run as a userspace + * application. + * + * While this causes a significant degradation in performance, + * because the system runs as a user application, the development + * and debugging process is about a gillion times easier. + * After the core logic is debugged, it can be retargeted using + * only the kernel bde and run in the kernel. + * + * + **********************************************************************/ + +#ifndef __LINUX_BDE_H__ +#define __LINUX_BDE_H__ + +#include + +#include + + +/* + * Device Major Numbers + * + * The kernel and user bdes need unique major numbers + * on systems that do not use devfs. + * + * They are defined here, along with the module names, + * to document them if you need to mknod them (or open) them, + * and to keep them unique. + * + */ + +#include + +#ifdef __KERNEL__ +#include +/* Key stone and Raptor has 2.6.21 but don't have definition */ +#if defined(KEYSTONE) || defined(RAPTOR) +#if (LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,21)) + #ifdef PHYS_ADDRS_ARE_64BITS + typedef u64 phys_addr_t; + #else + typedef u32 phys_addr_t; + #endif + #endif +#endif +#endif + + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,15)) +#define LINUX_BDE_DMA_DEVICE_SUPPORT +#endif + +#define LINUX_KERNEL_BDE_NAME "linux-kernel-bde" +#define LINUX_KERNEL_BDE_MAJOR 127 + +#define LINUX_USER_BDE_NAME "linux-user-bde" +#define LINUX_USER_BDE_MAJOR 126 + + +/* Max devices */ +/* 16 switch chips + 2 out-of-band Ethernet + 2 CPUs */ +#define LINUX_BDE_MAX_SWITCH_DEVICES 16 +#define LINUX_BDE_MAX_ETHER_DEVICES 2 +#define LINUX_BDE_MAX_CPU_DEVICES 2 +#define LINUX_BDE_MAX_DEVICES (LINUX_BDE_MAX_SWITCH_DEVICES + \ + LINUX_BDE_MAX_ETHER_DEVICES + \ + LINUX_BDE_MAX_CPU_DEVICES) + +/* + * PCI devices will be initialized by the Linux Kernel, + * regardless of architecture. + * + * You need only provide bus endian settings. + */ + +typedef struct linux_bde_bus_s { + int be_pio; + int be_packet; + int be_other; +} linux_bde_bus_t; + + + +/* Device state used for PCI hot swap case. */ +/* + * BDE_DEV_STATE_NORMAL : A device is probed normally. Or when the device + * resource has been updated after "CHANGED", the state will move back to + * "NORMAL". + */ +#define BDE_DEV_STATE_NORMAL (0) +/* + * BDE_DEV_STATE_REMOVED : A previous probed device was removed. + * We will avoid any device access while the device is in this state. + * The state will be moved to "CHANGED" if the device is re-inserted + * and re-probed. + */ +#define BDE_DEV_STATE_REMOVED (1) +/* + * BDE_DEV_STATE_CHANGED : The device is re-probed after having been removed. + * The resouces assigned to the device might have been changed after + * re-probing, so we need to re-initialize our resource database accordingly. + * The state will change to "NORMAL" when the resource have been updated. + */ +#define BDE_DEV_STATE_CHANGED (2) + +extern int linux_bde_create(linux_bde_bus_t* bus, ibde_t** bde); +extern int linux_bde_destroy(ibde_t* bde); +#ifdef BCM_INSTANCE_SUPPORT +extern int linux_bde_instance_attach(unsigned int dev_mask,unsigned int dma_size); +#endif + +#ifdef __KERNEL__ + +/* + * Backdoors provided by the kernel bde + * + */ + +/* + * The user bde needs to get cpu physical address for + * the userland code to mmap. + * And the second address is bus address, it is either + * identical to cpu physical address or another address + * (IOVA) translated by IOMMU. + */ +extern int lkbde_get_dma_info(phys_addr_t *cpu_pbase, phys_addr_t *dma_pbase, ssize_t *size); +extern uint32 lkbde_get_dev_phys(int d); +extern uint32 lkbde_get_dev_phys_hi(int d); + +/* + * Virtual device address needed by kernel space + * interrupt handler. + */ +extern void *lkbde_get_dev_virt(int d); + +/* + * The user bde needs to get some physical addresses for + * the userland code to mmap. The following functions + * supports multiple resources for a single device. + */ +extern int lkbde_get_dev_resource(int d, int rsrc, uint32 *flags, + uint32 *phys_lo, uint32 *phys_hi); + +/* + * Backdoor to retrieve OS device structure to be used for + * DMA operations. + */ +extern void *lkbde_get_dma_dev(int d); + +/* + * Backdoor to retrieve original hardware/OS device. + */ +extern void *lkbde_get_hw_dev(int d); + +/* + * Retrive the device state from Kernel BDE. + * Used for KNET and User BDE for pci hot swap case. + */ +extern int lkbde_dev_state_get(int d, uint32 *state); +extern int lkbde_dev_state_set(int d, uint32 state); + +/* + * Retrive the mapping between emulated HW device and instance id + */ +extern int lkbde_dev_instid_get(int d, uint32 *instid); +extern int lkbde_dev_instid_set(int d, uint32 instid); + +/* + * Functions that allow an interrupt handler in user mode to + * coexist with interrupt handler in kernel module. + */ +extern int lkbde_irq_mask_set(int d, uint32 addr, uint32 mask, uint32 fmask); +extern int lkbde_irq_mask_get(int d, uint32 *mask, uint32 *fmask); + +#if (defined(BCM_PETRA_SUPPORT) || defined(BCM_DFE_SUPPORT)) +extern int lkbde_cpu_write(int d, uint32 addr, uint32 *buf); +extern int lkbde_cpu_read(int d, uint32 addr, uint32 *buf); +extern int lkbde_cpu_pci_register(int d); +#endif + +/* + * This flag must be OR'ed onto the device number when calling + * interrupt_connect/disconnect and irq_mask_set functions from + * a secondary device driver. + */ +#define LKBDE_ISR2_DEV 0x8000 + +#if defined(BCM_PETRA_SUPPORT) || defined(BCM_DFE_SUPPORT) +#include +#if defined(__DUNE_LINUX_BCM_CPU_PCIE__) && LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,26) +#ifndef _SIMPLE_MEMORY_ALLOCATION_ +#define _SIMPLE_MEMORY_ALLOCATION_ 1 +#endif +#ifndef USE_LINUX_BDE_MMAP +#define USE_LINUX_BDE_MMAP 1 +#endif +#endif +#endif + +#if defined(IPROC_CMICD) && defined(CONFIG_CMA) +#ifndef _SIMPLE_MEMORY_ALLOCATION_ +#define _SIMPLE_MEMORY_ALLOCATION_ 1 +#endif +#endif + +/* Don't use _SIMPLE_MEMORY_ALLOCATION_ method for newer kernel than 3.10.0 */ +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,10,0)) +#ifndef _SIMPLE_MEMORY_ALLOCATION_ +#define _SIMPLE_MEMORY_ALLOCATION_ 0 +#endif +#endif + +/* Allocation via dma_alloc_coherent is turned off by default */ +#ifndef _SIMPLE_MEMORY_ALLOCATION_ +#define _SIMPLE_MEMORY_ALLOCATION_ 9 /* compile in the allocation method, but do not use it by default */ +#endif + +/* By default we use our private mmap only if /dev/mem mmap has restrictions */ +#ifndef USE_LINUX_BDE_MMAP +#ifdef CONFIG_STRICT_DEVMEM +#define USE_LINUX_BDE_MMAP 1 +#else +#define USE_LINUX_BDE_MMAP 0 +#endif +#endif + +#endif /* __KERNEL__ */ + +#endif /* __LINUX_BDE_H__ */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/include/linux_dma.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/include/linux_dma.h @@ -0,0 +1,76 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/*********************************************************************** + * + * $Id: linux_dma.h,v 1.24 Broadcom SDK $ + * $Copyright: (c) 2016 Broadcom Corp. + * All Rights Reserved.$ + * + **********************************************************************/ + +#ifndef __LINUX_DMA_H__ +#define __LINUX_DMA_H__ + +#include + +#ifdef __KERNEL__ + +#ifdef SAL_BDE_XLP +#define KMALLOC(size, flags) __kmalloc(size, flags) +#else +#define KMALLOC(size, flags) kmalloc(size, flags) +#endif + +#if defined(CONFIG_IDT_79EB334) || defined(CONFIG_BCM4702) +/* ioremap is broken in kernel */ +#define IOREMAP(addr, size) ((void *)KSEG1ADDR(addr)) +#else +#define IOREMAP(addr, size) ioremap_nocache(addr, size) +#endif + +#if defined (__mips__) +#if defined(CONFIG_NONCOHERENT_IO) || defined(CONFIG_DMA_NONCOHERENT) +/* Use flush/invalidate for cached memory */ +#define NONCOHERENT_DMA_MEMORY +/* Remap virtual DMA addresses to non-cached segment */ +#define REMAP_DMA_NONCACHED +#endif /* CONFIG_NONCOHERENT_IO || CONFIG_DMA_NONCOHERENT */ +#endif /* __mips__ */ + +#if defined(BCM958525) && (LINUX_VERSION_CODE <= KERNEL_VERSION(3,6,5)) +#define REMAP_DMA_NONCACHED +#endif + +#ifndef DMA_BIT_MASK +#define DMA_BIT_MASK(n) (((n) == 64) ? ~0ULL : ((1ULL<<(n))-1)) +#endif + +extern void _dma_init(int robo_switch); +extern int _dma_cleanup(void); +extern void _dma_pprint(void); +extern uint32_t *_salloc(int d, int size, const char *name); +extern void _sfree(int d, void *ptr); +extern int _sinval(int d, void *ptr, int length); +extern int _sflush(int d, void *ptr, int length); +extern sal_paddr_t _l2p(int d, void *vaddr); +extern void *_p2l(int d, sal_paddr_t paddr); +extern int _dma_pool_allocated(void); +extern int _dma_range_valid(unsigned long phys_addr, unsigned long size); + +#endif /* __KERNEL__ */ + +#endif /* __LINUX_DMA_H__ */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/include/mpool.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/include/mpool.h @@ -0,0 +1,37 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: mpool.h,v 1.2 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ + +#ifndef __MPOOL_H__ +#define __MPOOL_H__ + +struct mpool_mem_s; +typedef struct mpool_mem_s* mpool_handle_t; + +extern int mpool_init(void); +extern mpool_handle_t mpool_create(void* base_address, int size); +extern void* mpool_alloc(mpool_handle_t pool, int size); +extern void mpool_free(mpool_handle_t pool, void* ptr); +extern int mpool_destroy(mpool_handle_t pool); + +extern int mpool_usage(mpool_handle_t pool); + +#endif /* __MPOOL_H__ */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/kernel/Makefile +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/kernel/Makefile @@ -0,0 +1,115 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.18 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# +# Makefile for Linux kernel BDE +# +LOCALDIR = systems/bde/linux/kernel + +# Make sure we build for the kernel if this is a user-mode build +ifneq ($(platform), ) +override-target=linux-$(platform) +endif + +include $(SDK)/make/Make.config + +LIBS = $(LIBDIR)/libkern.a + +BDE = linux-kernel-bde.o + +ifdef ROBO_CHIPS +CFLAGS += -I$(ET_ROBO) -I${SDK}/include/shared/et +ET_ROBO = ${SDK}/systems/drv/et +endif + +# need to add vpath sources +VPATH = ../shared $(ET_ROBO) + +# Add the srcs to be found by vpath +LSRCS += mpool.c +ifdef ROBO_CHIPS +platformsplt = $(subst -, , ${platform}) # change hyphens to spaces +platformbase = $(word 1,${platformsplt}) + +ifeq ($(platformbase), keystone) + LSRCS += etc_robo_spi.c aiutils.c +else + ifeq ($(platformbase), keystone_le) + LSRCS += etc_robo_spi.c aiutils.c + else + ifeq ($(platformbase), iproc) + LSRCS += robo_srab.c robo_spi.c aiutils.c + endif + endif +endif # platformbase + +endif # ROBO_CHIPS + +# Add shared BDE sources +VPATH += ../../shared +LSRCS += shbde_pci.c shbde_iproc.c shbde_mdio.c +CFLAGS += -I../../shared/include + +LHDRS += mpool.h +LOBJS = $(addsuffix .o, $(basename $(LSRCS))) +BOBJS = $(addprefix $(BLDDIR)/,$(LOBJS)) + +ifneq ($(kernel_version),2_4) +KERNEL_MODULE_DIR = kernel_module + +THIS_MOD_NAME := linux-kernel-bde +MODULE = $(LIBDIR)/$(THIS_MOD_NAME).o +KMODULE = $(LIBDIR)/$(THIS_MOD_NAME).ko + +build: kernel_libs $(MODULE) $(KMODULE) +else +MODULE = $(LIBDIR)/linux-kernel-bde.o + +build: kernel_libs $(MODULE) +endif + +$(MODULE): $(BLDDIR)/.tree kernel_libs $(BOBJS) + mkdir -p $(@D) + $(LD) $(MODULE_LDFLAGS) -r -d $(BOBJS) $(LIBS) -o $@ +ifneq ($(kernel_version),2_4) +$(KMODULE): $(MODULE) + rm -fr $(BLDDIR)/$(KERNEL_MODULE_DIR) + mkdir $(BLDDIR)/$(KERNEL_MODULE_DIR) + cp ${SDK}/make/Makefile.linux-kmodule $(BLDDIR)/$(KERNEL_MODULE_DIR)/Makefile + MOD_NAME=$(THIS_MOD_NAME) $(MAKE) -C $(BLDDIR)/$(KERNEL_MODULE_DIR) $(THIS_MOD_NAME).ko +endif + +kernel_libs: + $(MAKE) -C $(SDK)/systems/linux/kernel/modules/shared + +include $(SDK)/make/Make.depend + +# Make.depend is before clean:: so that Make.depend's clean:: runs first. + +clean:: + $(MAKE) -C $(SDK)/systems/linux/kernel/modules/shared $@ + $(RM) $(BOBJS) $(MODULE) + $(RM) $(BLDDIR)/$(KERNEL_MODULE_DIR) + +distclean:: + +ifneq ($(kernel_version),2_4) +.PHONY: build kernel_libs +endif only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/kernel/linux-kernel-bde.c +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/kernel/linux-kernel-bde.c @@ -0,0 +1,5173 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: linux-kernel-bde.c,v 1.414 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + * + * Linux Kernel BDE + * + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "linux_shbde.h" + +#ifdef BCM_ROBO_SUPPORT +/* robo/et related header files */ +#include + +#include + +#if defined(KEYSTONE) +#include +#include +#include +#include +#elif defined(IPROC_CMICD) +#include +#include +#ifdef BCM_STARFIGHTER3_SUPPORT +#include +#endif +#include +#include +#else /* BCM4704 */ +#include +#include +#endif +#endif /* BCM_ROBO_SUPPORT */ + +#define PCI_USE_INT_NONE (-1) +#define PCI_USE_INT_INTX (0) +#define PCI_USE_INT_MSI (1) +#define PCI_USE_INT_MSIX (2) +#ifdef CONFIG_PCI_MSI +#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,110)) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) +#define msix_table_size(flags) ((flags & PCI_MSIX_FLAGS_QSIZE) + 1) +#endif +#define msi_control_reg(base) (base + PCI_MSI_FLAGS) +#endif +#endif +MODULE_AUTHOR("Broadcom Corporation"); +MODULE_DESCRIPTION("Kernel BDE"); +MODULE_LICENSE("GPL"); + +/* PCIe max payload */ +int maxpayload = 256; +LKM_MOD_PARAM(maxpayload, "i", int, 0); +MODULE_PARM_DESC(maxpayload, +"Limit maximum payload size and request size on PCIe devices"); + +/* Use MSI or MSIX interrupts */ +int usemsi = -1; +LKM_MOD_PARAM(usemsi, "i", int, 0); +MODULE_PARM_DESC(usemsi, +"Use MSI/ MSIX interrupts if supported by kernel"); + +/* Ignore all recognized devices (for debug purposes) */ +int nodevices; +LKM_MOD_PARAM(nodevices, "i", int, 0); +MODULE_PARM_DESC(nodevices, +"Ignore all recognized devices (default no)"); + +/* + * This usually is defined at /usr/include/linux/pci_ids.h + * But this ID is newer. + */ +#ifndef PCI_DEVICE_ID_PLX_9656 +#define PCI_DEVICE_ID_PLX_9656 0x9656 +#endif + +#ifndef PCI_DEVICE_ID_PLX_9056 +#define PCI_DEVICE_ID_PLX_9056 0x9056 +#endif + +/* local defined device IDs, refer to bcmdevs.h */ +#ifndef BCM53000_GMAC_ID +#define BCM53000_GMAC_ID 0x4715 /* 53003 gmac id */ +#endif +#ifndef BCM53010_GMAC_ID +#define BCM53010_GMAC_ID 0x4715 /* 5301x gmac id */ +#endif +#ifndef BCM47XX_ENET_ID +#define BCM47XX_ENET_ID 0x4713 /* 4710 enet */ +#endif +#ifndef BCM53010_CHIP_ID +#define BCM53010_CHIP_ID 0xcf12 /* 53010 chipcommon chipid */ +#endif +#ifndef BCM53018_CHIP_ID +#define BCM53018_CHIP_ID 0xcf1a /* 53018 chipcommon chipid */ +#endif +#ifndef BCM53020_CHIP_ID +#define BCM53020_CHIP_ID 0xcf1e /* 53020 chipcommon chipid */ +#endif + +/* For 2.4.x kernel support */ +#ifndef IRQF_SHARED +#define IRQF_SHARED SA_SHIRQ +#endif + +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18) +typedef unsigned long resource_size_t; +#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18) */ + +#ifdef BCM_ICS +#define BCM_ICS_CMIC_BASE 0x08000000 +#else + +/* Force interrupt line */ +static int forceirq = -1; +static uint32_t forceirqubm = 0xffffffff; +LKM_MOD_PARAM(forceirq, "i", int, 0); +LKM_MOD_PARAM(forceirqubm, "i", uint, 0); +MODULE_PARM_DESC(forceirq, +"Override IRQ line assigned by boot loader"); +MODULE_PARM_DESC(forceirqubm, +"Bitmap for overriding the IRQ line assigned by boot loader for given units"); + +/* Create SPI slave device (cannot be probed) */ +static uint32_t spi_devid = 0; +LKM_MOD_PARAM(spi_devid, "i", uint, 0); +MODULE_PARM_DESC(spi_devid, +"Create SPI slave device using this device ID"); + +/* Select SPI device revision (cannot be probed) */ +static uint32_t spi_revid = 1; +LKM_MOD_PARAM(spi_revid, "i", uint, 0); +MODULE_PARM_DESC(spi_revid, +"Select device revision for SPI slave device"); + +#endif /* BCM_ICS */ + +/* Debug output */ +static int debug; +LKM_MOD_PARAM(debug, "i", int, 0); +MODULE_PARM_DESC(debug, +"Set debug level (default 0"); +/* Use high memory for DMA */ + +/* module param for probing EB devices. */ +static char *eb_bus; +LKM_MOD_PARAM(eb_bus, "s", charp, 0); +MODULE_PARM_DESC(eb_bus, +"List of EB devices on platform. Input format (BA=%x IRQ=%d RD16=%d WR16=%d"); + +#ifdef KEYSTONE +/* Force SPI Frequency */ +static int spifreq = 0; +LKM_MOD_PARAM(spifreq, "i", int, 0); +MODULE_PARM_DESC(spifreq, +"Force SPI Frequency for Keystone CPU (0 for default frequency)"); +#endif + +#if defined(BCM_EA_SUPPORT) +#if defined(BCM_TK371X_SUPPORT) +static int eadevices; +LKM_MOD_PARAM(eadevices, "i", int, 0); +MODULE_PARM_DESC(eadevices, +"Number of TK371X devices"); +#endif /* */ +#endif /* BCM_EA_SUPPORT */ + +/* Compatibility */ +#ifdef LKM_2_4 +#define _ISR_RET void +#define _ISR_PARAMS(_i,_d,_r) int _i, void *_d, struct pt_regs *_r +#define IRQ_NONE +#define IRQ_HANDLED +#define SYNC_IRQ(_i) synchronize_irq() +#else /* LKM_2_6 */ +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,31)) +#define _ISR_RET irqreturn_t +#else +#define _ISR_RET int +#endif +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,19)) +#define _ISR_PARAMS(_i,_d,_r) int _i, void *_d +#else +#define _ISR_PARAMS(_i,_d,_r) int _i, void *_d, struct pt_regs *_r +#endif +#define SYNC_IRQ(_i) synchronize_irq(_i) +char * ___strtok; +char * strtok(char * s,const char * ct) +{ + char *sbegin, *send; + sbegin = s ? s : ___strtok; + if (!sbegin) { + return NULL; + } + sbegin += strspn(sbegin,ct); + if (*sbegin == '\0') { + ___strtok = NULL; + return( NULL ); + } + send = strpbrk( sbegin, ct); + if (send && *send != '\0') + *send++ = '\0'; + ___strtok = send; + return (sbegin); +} +LKM_EXPORT_SYM(___strtok); +LKM_EXPORT_SYM(strtok); +#endif /* LKM_2_x */ + +/* PCIe capabilities */ +#ifndef PCI_CAP_ID_EXP +#define PCI_CAP_ID_EXP 0x10 +#endif +#ifndef PCI_EXP_DEVCAP +#define PCI_EXP_DEVCAP 4 +#endif +#ifndef PCI_EXP_DEVCTL +#define PCI_EXP_DEVCTL 8 +#endif +#ifndef PCI_EXT_CAP_START +#define PCI_EXT_CAP_START 0x100 +#endif +#ifndef PCI_EXT_CAP_ID +#define PCI_EXT_CAP_ID(_hdr) (_hdr & 0x0000ffff) +#endif +#ifndef PCI_EXT_CAP_VER +#define PCI_EXT_CAP_VER(_hdr) ((_hdr >> 16) & 0xf) +#endif +#ifndef PCI_EXT_CAP_NEXT +#define PCI_EXT_CAP_NEXT(_hdr) ((_hdr >> 20) & 0xffc) +#endif +#ifndef PCI_EXT_CAP_ID_VNDR +#define PCI_EXT_CAP_ID_VNDR 0x0b +#endif + +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,20) +#define PCI_FIND_DEV(_d, _v, _fr) pci_find_device(_d, _v, _fr) +#else +#define PCI_FIND_DEV(_d, _v, _fr) pci_get_device(_d, _v, _fr) +#endif + +#if defined(CONFIG_RESOURCES_64BIT) || defined(CONFIG_PHYS_ADDR_T_64BIT) +#define PHYS_ADDR_IS_64BIT +#endif + +/* Structure of private SPI device */ +struct spi_dev { + uint8 cid; /* Chip ID */ + uint32 part; /* Part number of the chip */ + uint8 rev; /* Revision of the chip */ + void *robo; /* ptr to robo info required to access SPI */ + unsigned short phyid_high; /* PHYID HIGH in MII regs of detected chip */ + unsigned short phyid_low; /* PHYID LOW in MII regs of detected chip */ +}; + +struct bde_spi_device_id { + unsigned short phyid_high; /* PHYID HIGH in MII regs of detected chip */ + unsigned short phyid_low; /* PHYID LOW in MII regs of detected chip */ + uint32 model_info; + uint32 rev_info; + uint32 spifreq; +}; + +/* Control Data */ +typedef struct bde_ctrl_s { + struct list_head list; + + /* Specify the type of device, pci, spi, switch, ether ... */ + uint32 dev_type; + + int domain_no; + int bus_no; + int be_pio; + int use_msi; +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) + struct msix_entry *entries; +#endif + int msix_cnt; + union { + /* Linux PCI device pointer */ + struct pci_dev* _pci_dev; + + /* SPI device pointer */ + struct spi_dev* _spi_dev; + } dev; +#define pci_device dev._pci_dev +#define spi_device dev._spi_dev + +#ifdef LINUX_BDE_DMA_DEVICE_SUPPORT + struct device *dma_dev; +#endif + + /* Physical addresses */ + resource_size_t phys_address; + resource_size_t phys_address1; + resource_size_t phys_address2; + + /* Secondary mapped base address */ + sal_vaddr_t alt_base_addr; + + /* BDE device description */ + ibde_dev_t bde_dev; + + /* Interrupt Handling */ + int iLine; /* Interrupt line */ + void (*isr)(void *); + void *isr_data; + + /* + * Controls to allow two drivers to share a single set of + * hardware registers. Typically a kernel driver will handle + * a subset of hardware interrupts and a user mode driver + * will handle the remaining interrupts. + */ + void (*isr2)(void *); + void *isr2_data; + uint32_t fmask; /* Interrupts controlled by secondary handler */ + uint32_t imask; /* Enabled interrupts for primary handler */ + uint32_t imask2; /* Enabled interrupts for secondary handler */ + spinlock_t lock; /* Lock for IRQ mask synchronization */ + + /* Hardware abstraction for shared BDE functions */ + shbde_hal_t shbde; + + /* Device state : BDE_DEV_STATE_REMOVED/CHANGED */ + uint32 dev_state; + + /* inst_id */ + uint32 inst_id; +} bde_ctrl_t; + +static bde_ctrl_t _devices[LINUX_BDE_MAX_DEVICES]; +static int _ndevices = 0; +static int _switch_ndevices = 0; +static int _ether_ndevices = 0; +static int _cpu_ndevices = 0; +static int robo_switch = 0; + +#define VALID_DEVICE(_n) ((_n >= 0) && (_n < _ndevices)) + +/* CPU MMIO area used with CPU cards provided on demo boards */ +#if (defined(BCM_PETRA_SUPPORT) || defined(BCM_DFE_SUPPORT) || defined(BCM_DNX_SUPPORT) || defined(BCM_DNXF_SUPPORT)) && (defined(__DUNE_WRX_BCM_CPU__) || defined(__DUNE_GTO_BCM_CPU__)) +static void *cpu_address = NULL; +#endif + +#ifdef BCM_ROBO_SUPPORT + +/* for SPI access via bcm4710 core */ +static void *robo = NULL; +static void *sbh = NULL; + +#ifdef ALTA_ROBO_SPI + +extern void *alta_eth_spi_ctrl; + +extern int +robo_spi_read(void *cookie, uint16_t reg, uint8_t *buf, int len); + +extern int +robo_spi_write(void *cookie, uint16_t reg, uint8_t *buf, int len); + +#define ROBO_RREG(_robo, _dev, _page, _reg, _buf, _len) \ + robo_spi_read(_dev ? NULL : alta_eth_spi_ctrl, \ + (_page << 8) | (_reg), _buf, _len) +#define ROBO_WREG(_robo, _dev, _page, _reg, _buf, _len) \ + robo_spi_write(_dev ? NULL : alta_eth_spi_ctrl, \ + (_page << 8) | (_reg), _buf, _len) + +#else /* !ALTA_ROBO_SPI */ + +#if defined(KEYSTONE) || defined(IPROC_CMICD) +#define ROBO_RREG(_robo, _dev, _page, _reg, _buf, _len) \ + robo_rreg(_robo, _dev, _page, _reg, _buf, _len) +#define ROBO_WREG(_robo, _dev, _page, _reg, _buf, _len) \ + robo_wreg(_robo, _dev, _page, _reg, _buf, _len) +#else +#define ROBO_RREG(_robo, _dev, _page, _reg, _buf, _len) +#define ROBO_WREG(_robo, _dev, _page, _reg, _buf, _len) +#endif + +#endif /* ALTA_ROBO_SPI */ + +#endif /* BCM_ROBO_SUPPORT */ + +/* Broadcom BCM4704 */ +#define BCM4704_VENDOR_ID 0x14E4 +#define BCM4704_DEVICE_ID 0x4704 + +/* SiByte PCI Host */ +#define SIBYTE_PCI_VENDOR_ID 0x166D +#define SIBYTE_PCI_DEVICE_ID 0x0001 + +/* Intel 21150 PCI-PCI Bridge */ +#define DC21150_VENDOR_ID 0x1011 +#define DC21150_DEVICE_ID 0x0022 + +/* HiNT HB4 PCI-PCI Bridge (21150 clone) */ +#define HINT_HB4_VENDOR_ID 0x3388 +#define HINT_HB4_DEVICE_ID 0x0022 + +/* Pericom PI7C8150 PCI-PCI Bridge (21150 clone) */ +#define PI7C8150_VENDOR_ID 0x12D8 +#define PI7C8150_DEVICE_ID 0x8150 + +/* Pericom PI7C9X130 PCI-PCIE Bridge */ +#define PCI_VNDID_PERICOM 0x12D8 +#define PCI_DEVID_PI7C9X130 0xE130 +#define DEV_CTRL_REG 0xb8 + +#define MAX_PAYLOAD_256B (1 << 5) +#define MAX_PAYLOAD_512B (2 << 5) +#define MAX_READ_REQ_256B (1 << 12) + + +/* Freescale 8548 PCI-E host Bridge */ +#define FSL_VENDOR_ID 0x1957 +#define FSL8548PCIE_DEVICE_ID 0x0013 +#define FSL2020EPCIE_DEVICE_ID 0x0070 +#define FSL8548PCIE_DEV_CTRL_REG 0x54 + +/* 4716 PCI-E host Bridge */ +#define BCM4716_VENDOR_ID 0x14e4 +#define BCM4716PCIE_DEVICE_ID 0x4716 +#define BCM4716PCIE_DEV_CAP_REG 0xd4 +#define BCM4716PCIE_DEV_CTRL_REG 0xd8 +#define BCM53000_VENDOR_ID 0x14e4 +#define BCM53000PCIE_DEVICE_ID 0x5300 + +#define BCM53000PCIE_DEV(port) ((port == 0) ? pcie0 : pcie1) +#define BCM53000PCIE_BASE(port) ((port == 0) ? 0xb8005000 : 0xb800e000) +#define BCM53000PCIE_FUNC0_COFIG_SPACE 0x400 +#define BCM53000PCIE_SROM_SPACE 0x800 +#define BCM53000PCIE_DEV_CAP_REG 0xd4 +#define BCM53000PCIE_DEV_CTRL_REG 0xd8 +#define BCM53000PCIE_MAX_PAYLOAD_MASK 0x7 +#define BCM53000PCIE_CAP_MAX_PAYLOAD_256B (1 << 0) +#define BCM53000PCIE_DEFAULT_STATUS 0x00100146 + +/* 16bit wide register. offset 14, 14*2 = 0x1c */ +#define BCM53000PCIE_SPROM_OFFSET 0x1c +/* bit 15:13 spromData.MaxPayloadSize. 1: 256 bytes */ +#define BCM53000PCIE_SPROM_MAX_PAYLOAD_MASK 0xe000 +#define BCM53000PCIE_SPROM_MAX_PAYLOAD_256B (1 << 13) + + +/* Intel 21150, HiNT HB4 and other 21150-compatible */ +#define PCI_CFG_DEC21150_SEC_CLK 0x68 + +#define BCM4704_ENUM_BASE 0x18000000 +#define BCM4704_MEMC_BASE (BCM4704_ENUM_BASE+0x8000) +#define BCM4704_MEMC_PRIORINV 0x18 + +/* PLX PCI-E Switch */ +#define PLX_PEX8608_DEV_ID 0x8608 +#define PLX_PEX8617_DEV_ID 0x8617 +#define PLX_PEX86XX_DEV_CTRL_REG 0x70 + +/* Broadcom BCM58525 */ +#define BCM58525_PCI_VENDOR_ID 0x14E4 +#define BCM58525_PCI_DEVICE_ID 0x8025 +#define BCM58522_PCI_DEVICE_ID 0x8022 + +/* Broadcom BCM58712 */ +#define BCM58712_PCI_VENDOR_ID 0x14E4 +#define BCM58712_PCI_DEVICE_ID 0x168E + +static uint32_t _read(int d, uint32_t addr); + +#ifdef BCM_ICS +#else +/* Used to determine overall memory limits across all devices */ +static uint32_t _pci_mem_start = 0xFFFFFFFF; +static uint32_t _pci_mem_end = 0; + +/* Used to control MSI interrupts */ +static int use_msi = 0; +#endif + +#ifdef BCM_PLX9656_LOCAL_BUS + +#define CPLD_OFFSET 0x00800000 +#define CPLD_REVISION_REG 0x0000 +#define CPLD_REVISION_MASK 0xffff +#define CPLD_RESET_REG 0x0004 +#define CPLD_RESET_NONE 0x0000 + +#define PL0_OFFSET 0x00800000 +#define PL0_SIZE 0x00040000 +#define PL0_REVISION_REG 0x0000 + +/* Assume there's only one PLX PCI-to-Local bus bridge if any */ +static bde_ctrl_t plx_ctrl; +static int num_plx = 0; + +#endif /* BCM_PLX9656_LOCAL_BUS */ + +static spinlock_t bus_lock; + +static int +_parse_eb_args(char *str, char * format, ...) + __attribute__ ((format (scanf, 2, 3))); + +static int +_parse_eb_args(char *str, char * format, ...) +{ + va_list args; + + va_start(args, format); + vsscanf(str, format, args); + va_end(args); + + return 0; +} + +static int +_eb_device_create(resource_size_t paddr, int irq, int rd_hw, int wr_hw) +{ + bde_ctrl_t *ctrl; + uint32 dev_rev_id = 0x0, dev_id; + + dev_id = _ndevices; + + ctrl = _devices + _ndevices++; + _switch_ndevices++; + + ctrl->dev_type |= BDE_EB_DEV_TYPE | BDE_SWITCH_DEV_TYPE; + ctrl->pci_device = NULL; /* No PCI bus */ + + if(rd_hw) { + ctrl->dev_type |= BDE_DEV_BUS_RD_16BIT; + } + + if (wr_hw) { + ctrl->dev_type |= BDE_DEV_BUS_WR_16BIT; + } + + /* Map in the device */ + ctrl->bde_dev.base_address = (sal_vaddr_t)IOREMAP(paddr, 0x10000); + ctrl->phys_address = paddr; + + dev_rev_id = _read(dev_id, 0x178); /* CMIC_DEV_REV_ID */ + + ctrl->bde_dev.device = dev_rev_id & 0xFFFF; + ctrl->bde_dev.rev = (dev_rev_id >> 16) & 0xFF; + + ctrl->iLine = irq; + ctrl->isr = NULL; + ctrl->isr_data = NULL; + + gprintk("Created EB device at BA=%x IRQ=%d RD16=%d WR16=%d device=0x%x\n", + (unsigned int)paddr, irq, rd_hw, wr_hw, ctrl->bde_dev.device); + + return 0; +} + +#if defined(BCM_PETRA_SUPPORT) || defined(BCM_DFE_SUPPORT) || defined(BCM_DNX_SUPPORT) || defined(BCM_DNXF_SUPPORT) + +#include + +static int +sand_device_create(void) +{ + bde_ctrl_t* ctrl; + + ctrl = _devices; /* FIX_ME: on petra, take first device */ + +#ifndef __DUNE_LINUX_BCM_CPU_PCIE__ + _switch_ndevices++; + _ndevices++; + + ctrl->dev_type |= BDE_PCI_DEV_TYPE | BDE_SWITCH_DEV_TYPE; + ctrl->pci_device = NULL; /* No PCI bus */ + + /* Map in the device */ /* FIX_ME: not realy map anything */ + ctrl->bde_dev.base_address = (sal_vaddr_t)IOREMAP(0x40000000, 0x100000); + ctrl->phys_address = 0x40000000; + + ctrl->iLine = 0; + ctrl->isr = NULL; + ctrl->isr_data = NULL; + + ctrl->bde_dev.device = BCM88950_DEVICE_ID; + ctrl->bde_dev.rev = BCM88950_A0_REV_ID; +#endif + + /* Map CPU regs */ +#ifdef __DUNE_WRX_BCM_CPU__ + cpu_address = IOREMAP(0x18000000, 0x4000000); +#elif defined(__DUNE_GTO_BCM_CPU__) + cpu_address = IOREMAP(0xe0000000, 0x100000); +#endif + + if ((ctrl->bde_dev.device == PCP_PCI_DEVICE_ID)) { + ctrl->bde_dev.device = GEDI_DEVICE_ID; + ctrl->bde_dev.rev = GEDI_REV_ID; + } + + if ((ctrl->bde_dev.device == ACP_PCI_DEVICE_ID)) { + ctrl->dev_type |= BDE_PCI_DEV_TYPE | BDE_SWITCH_DEV_TYPE; + } + + return 0; +} +#endif + +#ifdef IPROC_CMICD +static void +iproc_cmicd_get_irqres(ibde_dev_t bde_dev, struct resource *res_irq) +{ + shbde_iproc_config_t iproc_config, *icfg = &iproc_config; + + /* iProc configuration parameters */ + memset(icfg, 0, sizeof(*icfg)); + shbde_iproc_config_init(icfg, bde_dev.device, bde_dev.rev); + + if ((icfg->iproc_ver == 0) && (debug >= 1)) { + gprintk("Unable to determine iProc version\n"); + } + + if (icfg->iproc_ver == 7) { + res_irq->start = 221; + } else if (icfg->iproc_ver == 10) { + res_irq->start = 184; + } + +} + +#include +#include + +extern void iproc_platform_driver_register(struct platform_driver *drv); +extern void iproc_platform_driver_unregister(struct platform_driver *drv); +extern void iproc_platform_device_register(struct platform_device *drv); +extern void iproc_platform_device_unregister(struct platform_device *drv); + +extern struct resource * +iproc_platform_get_resource(struct platform_device *dev, unsigned int type, + unsigned int num); + +#define IPROC_CHIPCOMMONA_BASE 0x18000000 +#define IPROC_CMICD_BASE 0x48000000 +#define IPROC_CMICD_SIZE 0x40000 +#define IPROC_CMICD_INT 194 + +#define IPROC_CMICD_COMPATIBLE "brcm,iproc-cmicd" + +static int +iproc_cmicd_probe(struct platform_device *pldev) +{ + bde_ctrl_t *ctrl; + uint32 size, dev_rev_id; + struct resource *memres, *irqres; +#ifdef CONFIG_OF + if (debug >= 1) { + gprintk("iproc_cmicd_probe %s\n", pldev->dev.of_node ? "with device node":""); + } +#endif + memres = iproc_platform_get_resource(pldev, IORESOURCE_MEM, 0); + if (memres == NULL) { + gprintk("Unable to retrieve iProc CMIC resources"); + return -1; + } + size = memres->end - memres->start + 1; + + ctrl = _devices + _ndevices++; + _switch_ndevices++; + + ctrl->dev_type = BDE_AXI_DEV_TYPE | BDE_SWITCH_DEV_TYPE | BDE_256K_REG_SPACE; + ctrl->pci_device = NULL; /* No PCI bus */ + + /* Map CMIC block in the AXI memory space into CPU address space */ + ctrl->bde_dev.base_address = (sal_vaddr_t)IOREMAP(memres->start, size); + if (!ctrl->bde_dev.base_address) { + gprintk("Error mapping iProc CMIC registers"); + return -1; + } + ctrl->phys_address = memres->start; + + /* Read switch device ID from CMIC */ + dev_rev_id = *((uint32_t*)(ctrl->bde_dev.base_address + 0x10224)); +#if defined(BCM_CMICM_SUPPORT) && defined(BE_HOST) + ctrl->bde_dev.device = ( (((dev_rev_id >> 16) & 0xff) << 8) | + ((dev_rev_id >> 24) & 0xff)); + ctrl->bde_dev.rev = (dev_rev_id >> 8) & 0xff ; +#else + ctrl->bde_dev.device = dev_rev_id & 0xffff; + ctrl->bde_dev.rev = (dev_rev_id >> 16) & 0xff; +#endif + +#ifdef CONFIG_OF + if (!pldev->dev.of_node) +#endif + { + /* Assign locally if not available from device node */ + iproc_cmicd_get_irqres(ctrl->bde_dev, &pldev->resource[0]); + } + irqres = iproc_platform_get_resource(pldev, IORESOURCE_IRQ, 0); + + ctrl->iLine = irqres->start; + + ctrl->isr = NULL; + ctrl ->isr_data = NULL; + +#ifdef LINUX_BDE_DMA_DEVICE_SUPPORT + ctrl->dma_dev = &pldev->dev; +#endif + + /* Let's boogie */ + return 0; +} + +static int +iproc_cmicd_remove(struct platform_device *pldev) +{ + return 0; +} +#ifdef CONFIG_OF +static const struct of_device_id iproc_cmicd_of_match[] = { + { .compatible = "brcm,iproc-cmicd" }, + {}, +}; +MODULE_DEVICE_TABLE(of, iproc_cmicd_of_match); +#endif +static char iproc_cmicd_string[] = "bcmiproc-cmicd"; + +static struct platform_driver iproc_cmicd_driver = +{ + .probe = iproc_cmicd_probe, + .remove = iproc_cmicd_remove, + .driver = + { + .name = iproc_cmicd_string, + .owner = THIS_MODULE, +#ifdef CONFIG_OF + .of_match_table = iproc_cmicd_of_match, +#endif + }, +}; + +typedef enum { + IPROC_CMICD_RES_INTR = 0, + IPROC_CMICD_RES_MEM +} IPROC_CMICD_RES_E; + +static struct resource iproc_cmicd_resources[] = { + [IPROC_CMICD_RES_INTR] = { + .flags = IORESOURCE_IRQ, + .start = IPROC_CMICD_INT, + }, + [IPROC_CMICD_RES_MEM] = { + .flags = IORESOURCE_MEM, + .start = IPROC_CMICD_BASE, + .end = IPROC_CMICD_BASE+IPROC_CMICD_SIZE-1, + }, +}; + +static void +iproc_cmicd_release(struct device *dev) +{ +} + +static u64 iproc_cmicd_dmamask = DMA_BIT_MASK(32); + +static struct platform_device iproc_cmicd_pdev = { + .name = iproc_cmicd_string, + .id = 0, + .dev = { + .release = iproc_cmicd_release, + .init_name = iproc_cmicd_string, + .dma_mask = &iproc_cmicd_dmamask, + .coherent_dma_mask = DMA_BIT_MASK(32), + }, + .resource = iproc_cmicd_resources, + .num_resources = ARRAY_SIZE(iproc_cmicd_resources), +}; + +static int +iproc_has_cmicd(void) +{ + void *iproc_cca_base; + uint32 cca_cid; + + /* Read ChipcommonA chip id register to identify current SOC */ + iproc_cca_base = IOREMAP(IPROC_CHIPCOMMONA_BASE, 0x3000); + if (iproc_cca_base == NULL) { + gprintk("iproc_has_cmicd: ioremap of ChipcommonA registers failed"); + return 0; + } + cca_cid = readl((uint32 *)iproc_cca_base); + cca_cid &= 0xffff; + iounmap(iproc_cca_base); + + /* Only allowed accessing CMICD module if the SOC has it */ + switch (cca_cid) { + case BCM53010_CHIP_ID: + case BCM53018_CHIP_ID: + case BCM53020_CHIP_ID: + return 0; + default: + break; + } + + /* Device has CMIC */ + return 1; +} + +#define IPROC_CHIPCOMMONA_EROM_PTR_OFFSET (0x180000fc) +#define EROM_MAX_SIZE (0x1000) +#define EROM_PARTNUM_CMICD (0x14) + +#define EROM_DESC_COMPIDENT (0x1) +#define EROM_DESC_MASTER (0x3) +#define EROM_DESC_ADDR (0x5) +#define EROM_DESC_END (0xF) +#define EROM_DESC_EMPTY (0) + +#define EROM_IS_DESC_COMPIDENT(x) ((x & 0x7) == EROM_DESC_COMPIDENT) +#define EROM_IS_DESC_MASTER(x) ((x & 0x7) == EROM_DESC_MASTER) +#define EROM_IS_DESC_ADDR(x) ((x & 0x7) == EROM_DESC_ADDR) +#define EROM_IS_DESC_END(x) ((x & 0xF) == EROM_DESC_END) + +#define EROM_GET_PARTNUM(x) ((x >> 8) & (0xFFF)) /* Bit 8~19 */ +#define EROM_GET_ADDRESS(x) ((x >> 12) & (0xFFFFF)) /* Bit 12~31 */ +#define EROM_GET_SIZETYPE(x) ((x >> 4) & (0x3)) /* Bit 4~5 */ +#define EROM_GET_AG32(x) ((x >> 3) & (0x1)) /* Bit 3 */ +#define EROM_GET_SIZE(x) ((x >> 12) & (0xFFFFF)) /* Bit 12~31 */ +#define EROM_GET_SG32(x) ((x >> 3) & (0x1)) /* Bit 3 */ + +#define EROM_ADDR_SIZETYPE_4K (0) +#define EROM_ADDR_SIZETYPE_8K (1) +#define EROM_ADDR_SIZETYPE_16K (2) +#define EROM_ADDR_SIZETYPE_MORE (3) + +#define EROM_ADDR_FLAG_AG32 (1) /* Address space greater than 32 bit */ +#define EROM_ADDR_FLAG_SIZE (2) /* Addition size descriptor */ +#define EROM_ADDR_FLAG_SG32 (4) /* Size descriptor greater than 32 bit */ + +static void +iproc_cmicd_get_memregion(struct resource *res_mem) +{ + void *erom_ptr_oft; + uint32_t erom_phy_addr; + uint32_t *erom_base; + uint32_t i = 0; + uint32_t word = 0; + uint8_t more_addr_word = 0; /* bit 0: AG32; bit 1: SIZE; bit 2: SG32 */ + uint8_t found_cmicd_dev = 0; + uint8_t size_type = 0; + bool is_compident_a = 1; /* 1: CompidentA; o/w: CompidentB */ + + erom_ptr_oft = IOREMAP(IPROC_CHIPCOMMONA_EROM_PTR_OFFSET, 0x100); + + erom_phy_addr = readl((uint32 *)(erom_ptr_oft)); + iounmap(erom_ptr_oft); + + erom_base = IOREMAP(erom_phy_addr, EROM_MAX_SIZE); + + while (1) { + word = readl((uint32 *)(erom_base + i)); + + if (EROM_IS_DESC_ADDR(word) || more_addr_word) { + if (more_addr_word == 0) { /* Normal Addr Desc */ + if (EROM_GET_AG32(word) == 1) { + more_addr_word |= EROM_ADDR_FLAG_AG32; + } + + size_type = EROM_GET_SIZETYPE(word); + if (size_type == EROM_ADDR_SIZETYPE_MORE) { + more_addr_word |= EROM_ADDR_FLAG_SIZE; + } + + if (found_cmicd_dev == 1) { + res_mem->start = EROM_GET_ADDRESS(word) << 12; + if (size_type < EROM_ADDR_SIZETYPE_MORE) { + res_mem->end = res_mem->start + 4096 * (1 << size_type) - 1; + } + } + } + else if (more_addr_word & EROM_ADDR_FLAG_AG32) { /* UpperAddr Desc */ + more_addr_word &= ~EROM_ADDR_FLAG_AG32; + + if (found_cmicd_dev == 1) { + /* res_mem->start |= word << 32; */ + gprintk("Expect cmicd address to be 32-bit\n"); + } + } + else if (more_addr_word & EROM_ADDR_FLAG_SIZE) { /* Size Desc */ + if (EROM_GET_SG32(word) == 1) { + more_addr_word |= EROM_ADDR_FLAG_SG32; + } + + more_addr_word &= ~EROM_ADDR_FLAG_SIZE; + + if (found_cmicd_dev == 1) { + res_mem->end = res_mem->start + (EROM_GET_SIZE(word) << 12) - 1; + } + } + else if (more_addr_word & EROM_ADDR_FLAG_SG32) { /* UpperSize Desc */ + more_addr_word &= ~EROM_ADDR_FLAG_SG32; + + if (found_cmicd_dev == 1) { + /* res_mem->end += (word) << 32; */ + gprintk("Expect cmicd size to be 32-bit\n"); + } + } + + if (found_cmicd_dev == 1 && more_addr_word == 0) { + break; /* We have gotten all necessary information, exit the loop */ + } + } + else if (EROM_IS_DESC_COMPIDENT(word)) { + if (is_compident_a == 1) { + if (EROM_GET_PARTNUM(word) == EROM_PARTNUM_CMICD) { + found_cmicd_dev = 1; + } + } + + is_compident_a = 1 - is_compident_a; + } + else if (EROM_IS_DESC_END(word)) { + break; + } + + i++; + } + iounmap(erom_base); + + if (debug >= 1) { + gprintk("CMICD info by %s: cmicd_mem.start=%x, cmicd_mem.end=%x\n", + found_cmicd_dev ? "EROM" : "Default", + iproc_cmicd_resources[IPROC_CMICD_RES_MEM].start, + iproc_cmicd_resources[IPROC_CMICD_RES_MEM].end); + } +} +#endif /* IPROC_CMICD */ + +#ifdef BCM_ICS +static int +_ics_bde_create(void) +{ + bde_ctrl_t *ctrl; + uint32 dev_rev_id = 0x0; + resource_size_t paddr; + + if (_ndevices == 0) { + ctrl = _devices + _ndevices++; + _switch_ndevices++; + + ctrl->dev_type |= BDE_ICS_DEV_TYPE | BDE_SWITCH_DEV_TYPE; + ctrl->pci_device = NULL; /* No PCI bus */ + + /* Map in the device */ + paddr = BCM_ICS_CMIC_BASE; + ctrl->bde_dev.base_address = (sal_vaddr_t)IOREMAP(paddr, 0x10000); + ctrl->phys_address = paddr; + + dev_rev_id = *((unsigned int *)(KSEG1ADDR(paddr + 0x178))); + + ctrl->bde_dev.device = dev_rev_id & 0xFFFF; + ctrl->bde_dev.rev = (dev_rev_id >> 16) & 0xFF; + + ctrl->iLine = 5; /* From raptor linux BSP */ + + ctrl->isr = NULL; + ctrl->isr_data = NULL; + printk("Created ICS device ..%x\n", ctrl->bde_dev.base_address); + } + + return 0; +} + +#else /* !BCM_ICS */ + +extern struct pci_bus *pci_find_bus(int domain, int busnr); + +/* + * PCI device table. + * Populated from the include/soc/devids.h file. + */ + +static struct pci_device_id _id_table[] = { + { BROADCOM_VENDOR_ID, BCM5675_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM5676_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56218X_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56218_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56219_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56218R_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56219R_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56214_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56215_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56214R_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56215R_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56216_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56217_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56212_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56213_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56230_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56231_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53718_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53714_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53716_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56018_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56014_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56224_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56225_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56226_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56227_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56228_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56229_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56024_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56025_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53724_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53726_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56100_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56101_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56102_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56105_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56106_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56107_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56110_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56111_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56112_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56115_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56116_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56117_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56300_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56301_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56302_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56303_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56304_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56404_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56305_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56306_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56307_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56308_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56309_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56310_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56311_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56312_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56313_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56314_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56315_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56316_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56317_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56318_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56319_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, +#ifndef EXCLUDE_BCM56324 + { BROADCOM_VENDOR_ID, BCM56322_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56324_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, +#endif /* EXCLUDE_BCM56324 */ + { BROADCOM_VENDOR_ID, BCM53312_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53313_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53314_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53324_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53333_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53334_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53342_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53343_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53344_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53346_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53347_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53393_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53394_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53300_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53301_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53302_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56500_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56501_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56502_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56503_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56504_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56505_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56506_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56507_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56508_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56509_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56510_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56511_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56512_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56513_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56514_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56516_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56517_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56518_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56519_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56580_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56620_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56624_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56626_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56628_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56629_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56680_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56684_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56700_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56701_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56720_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56721_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56725_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56800_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56801_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56802_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56803_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56820_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56821_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56822_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56823_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56825_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56630_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56634_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56636_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56638_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56639_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56538_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56520_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56521_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56522_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56524_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56526_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56534_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56685_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56689_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56331_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56333_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56334_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56338_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56320_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56321_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56132_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56134_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88732_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56140_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56142_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56143_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56144_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56146_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56147_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56149_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56150_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56151_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56152_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56613_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56930_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56931_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56935_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56936_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56939_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56840_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56841_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56842_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56843_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56844_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56845_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56846_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56847_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56549_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56053_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56838_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56831_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56835_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56849_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56742_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56743_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56744_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56745_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56746_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56640_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56548_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56547_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56346_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56345_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56344_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56342_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56340_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56049_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56048_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56047_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56042_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56041_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56040_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56643_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56644_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56648_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56649_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56540_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56541_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56542_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56543_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56544_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56545_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56546_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56044_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56045_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56046_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88230_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88030_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88034_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88039_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88231_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88235_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88236_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88239_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM55440_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56440_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56441_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56442_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56443_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56445_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56446_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56447_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56448_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56449_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56240_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56241_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56242_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56243_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56245_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56246_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM55450_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM55455_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56260_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56270_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56271_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56272_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53460_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53461_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56261_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56262_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56263_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56265_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56266_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56267_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56268_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56233_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56460_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56461_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56462_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56463_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56465_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56466_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56467_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56468_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56246_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56248_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56450_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56452_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56454_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56455_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56456_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56457_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56458_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56850_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56851_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56852_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56853_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56854_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56855_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56834_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56750_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56830_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM55440_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM55441_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56060_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56062_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56063_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56064_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56065_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56066_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53401_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53411_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53402_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53412_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53403_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53413_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53404_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53414_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53405_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53415_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53406_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53416_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53408_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53418_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53454_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53455_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53456_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53457_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53422_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53424_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53426_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53365_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53369_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56960_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56961_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56962_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56963_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56930_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56968_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56970_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56971_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56972_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56974_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56168_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56169_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56560_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56561_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56562_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56565_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56566_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56567_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56568_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56760_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56762_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56764_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56765_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56766_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56768_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56069_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56068_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56160_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56162_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56163_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56164_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56166_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53440_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53443_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53442_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53434_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56965_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56969_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56966_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56967_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56170_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56172_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56174_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53570_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM53575_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, +#ifdef BCM_ROBO_SUPPORT + { BROADCOM_VENDOR_ID, BCM47XX_ENET_ID, PCI_ANY_ID, PCI_ANY_ID }, +#ifdef KEYSTONE + { BROADCOM_VENDOR_ID, BCM53000_GMAC_ID, PCI_ANY_ID, PCI_ANY_ID }, +#endif +#endif + { SANDBURST_VENDOR_ID, QE2000_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { SANDBURST_VENDOR_ID, BCM88020_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { SANDBURST_VENDOR_ID, BCM88025_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9656, PCI_ANY_ID, PCI_ANY_ID }, + { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9056, PCI_ANY_ID, PCI_ANY_ID }, + { BCM53000_VENDOR_ID, BCM53000PCIE_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, +#ifdef BCM_PETRA_SUPPORT + { BROADCOM_VENDOR_ID, BCM88650_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88350_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88351_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88450_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88451_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88550_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88551_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88552_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88651_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88654_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { PCP_PCI_VENDOR_ID, PCP_PCI_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { ACP_PCI_VENDOR_ID, ACP_PCI_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88660_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88670_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88671_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88671M_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88672_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88673_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88674_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88675_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88675M_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88676_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88676M_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88677_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88678_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88679_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88370_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88371_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88371M_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88375_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88470_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88470P_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88471_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88473_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88474_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88474H_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88476_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88477_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + + + { BROADCOM_VENDOR_ID, BCM88270_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88272_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88273_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88278_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + + { BROADCOM_VENDOR_ID, BCM8206_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + + { BROADCOM_VENDOR_ID, BCM88376_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88376M_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88377_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88378_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88379_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88680_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88681_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88682_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88683_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88684_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88685_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88380_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88381_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88690_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88202_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88360_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88361_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88363_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88460_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88461_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88560_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88561_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88562_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88661_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88664_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, +#endif +#ifdef BCM_DFE_SUPPORT + { BROADCOM_VENDOR_ID, BCM88750_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88753_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88755_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88770_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88773_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88774_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88775_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88776_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88777_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, +#ifndef DNX_IGNORE_FE3200 + { BROADCOM_VENDOR_ID, BCM88950_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, +#endif + { BROADCOM_VENDOR_ID, BCM88953_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88954_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88955_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88956_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88752_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88772_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM88952_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, +#endif +#ifdef BCM_DNXF_SUPPORT + { BROADCOM_VENDOR_ID, BCM88790_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, +#endif + { BROADCOM_VENDOR_ID, BCM56860_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56861_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56862_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56864_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56865_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56866_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56867_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56868_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56833_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56832_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56836_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56870_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { BROADCOM_VENDOR_ID, BCM56873_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { 0, 0, 0, 0 } +};; + +#define pci_bus_b(n) list_entry(n, struct pci_bus, node) +#define pci_dev_b(n) list_entry(n, struct pci_dev, bus_list) +#define MAX_RC_NUM 4 + +static struct pci_bus * +pci_do_bus_find(struct pci_bus* bus, int rc, int vendor, int device) +{ + struct list_head *tmp; + struct pci_dev *dev; + struct pci_bus *sub_bus; + int func = 0; + + if (unlikely(list_empty(&bus->children))) { + return NULL; + } + list_for_each(tmp, &bus->children) { + sub_bus = pci_bus_b(tmp); + dev = sub_bus->self; + func = dev->devfn & 0x7; + if (dev->vendor == vendor && dev->device == device && rc == func) { + if (debug >= 1) { + gprintk("pci_do_bus_find: dev->vendor = 0x%x, dev->device = 0x%x on rc(%d)\n", + dev->vendor, dev->device, rc); + } + return sub_bus; + } + } + return NULL; +} + +static struct pci_dev * +_pci_do_bus_dev_find(struct pci_bus* bus, unsigned int vendor, unsigned int device) +{ + struct list_head *tmp; + struct pci_dev *dev; + + if (unlikely(list_empty(&bus->devices))) { + return NULL; + } + list_for_each(tmp, &bus->devices) { + dev = pci_dev_b(tmp); + if (dev->vendor == vendor && (device == PCI_ANY_ID || dev->device == device)) { + if (debug >= 1) { + gprintk("_pci_do_rc_dev_find: vendor = %x, device = %x\n", vendor, device); + } + return dev; + } + } + return NULL; +} + +static struct pci_dev * +pci_do_rc_dev_find(int rc) +{ + struct pci_bus *root_bus = pci_find_bus(0,0); + struct pci_bus *bus_rc = NULL; + struct pci_dev *dev_on_rc = NULL; + unsigned int pci_dev_id = 0; + + if(NULL == root_bus) { + if (debug >= 1) gprintk("Not find root bus\n"); + return NULL; + } + bus_rc = pci_do_bus_find(root_bus, rc, 0x184e, 0x1004); + if (NULL == bus_rc) { + if (debug >= 1) { + gprintk("Not find vendor(0x184e) device(0x1004) bus\n"); + } + return NULL; + } + for(pci_dev_id = 0; pci_dev_id < sizeof(_id_table)/sizeof(struct pci_device_id); pci_dev_id++) { + dev_on_rc = _pci_do_bus_dev_find(bus_rc, _id_table[pci_dev_id].vendor, _id_table[pci_dev_id].device); + if (NULL != dev_on_rc) { + return dev_on_rc; + } + } + if (debug >= 1) { + gprintk("Not find device at rc(%d)\n", rc); + } + return NULL; +} + +/* + * Function: p2p_bridge + * + * Purpose: + * Finalize initialization secondary PCI-PCI bridge. + * Parameters: + * membase - start of memory address space for secondary PCI bus + * Returns: + * 0 + * Notes: + * The membase depends on the processor architecture, and is + * derived from the memory space addresses set up by the kernel. + */ +static int +p2p_bridge(void) +{ + struct pci_dev *dev, *dev_on_rc; + uint16 cmd; + uint16 mem_base; + uint16 mem_limit; + uint8 bridge_ctrl; + uint8 rc_index; + + if ((dev = PCI_FIND_DEV(DC21150_VENDOR_ID, DC21150_DEVICE_ID, NULL)) != NULL || + (dev = PCI_FIND_DEV(HINT_HB4_VENDOR_ID, HINT_HB4_DEVICE_ID, NULL)) != NULL || + (dev = PCI_FIND_DEV(PI7C8150_VENDOR_ID, PI7C8150_DEVICE_ID, NULL)) != NULL) { + + if (debug >= 1) gprintk("fixing up PCI-to-PCI bridge\n"); + /* Adjust command register */ + pci_read_config_word(dev, PCI_COMMAND, &cmd); + cmd |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER; + /* Disable device */ + pci_write_config_word(dev, PCI_COMMAND, 0); + /* Initialize non-prefetchable memory window if needed */ + pci_read_config_word(dev, PCI_MEMORY_BASE, &mem_base); + if (mem_base == 0) { + mem_base = (uint16)((_pci_mem_start & 0xFFF00000) >> 16); + mem_limit = (uint16)((_pci_mem_end & 0xFFF00000) >> 16); + pci_write_config_word(dev, PCI_MEMORY_BASE, mem_base); + pci_write_config_word(dev, PCI_MEMORY_LIMIT, mem_limit); + } + /* Enable PCI clocks on remote end */ + pci_write_config_word(dev, PCI_CFG_DEC21150_SEC_CLK, 0); + /* Re-enable config space */ + pci_write_config_word(dev, PCI_COMMAND, cmd); + + /* Avoid DMA data corruption */ + if (dev->vendor == HINT_HB4_VENDOR_ID) { + /* Fix for HiNT bridge and BCM4704 DMA problem */ + if ((dev = PCI_FIND_DEV(BCM4704_VENDOR_ID, BCM4704_DEVICE_ID, NULL)) != NULL) { + /* Reset PrefetchEn (PE) */ + pci_write_config_dword(dev, 0x8c, 1); + if (debug >= 1) { + gprintk("reset PrefetchEn on BCM4704 when HiNT bridge is present\n"); + } + } + } + } + /* Enable fast back-to-back read/write */ + if ((dev = PCI_FIND_DEV(PI7C8150_VENDOR_ID, PI7C8150_DEVICE_ID, NULL)) != NULL) { + pci_read_config_word(dev, PCI_COMMAND, &cmd); + cmd |= PCI_COMMAND_FAST_BACK; + pci_read_config_byte(dev, PCI_BRIDGE_CONTROL, &bridge_ctrl); + bridge_ctrl |= PCI_BRIDGE_CTL_FAST_BACK; + pci_write_config_word(dev, PCI_COMMAND, 0); + pci_write_config_byte(dev, PCI_BRIDGE_CONTROL, bridge_ctrl); + pci_write_config_word(dev, PCI_COMMAND, cmd); + } + /* Netlogic XLP CPU */ + for(rc_index = 0; rc_index < MAX_RC_NUM; rc_index++) { + dev_on_rc = pci_do_rc_dev_find(rc_index); + if (dev_on_rc != NULL ) { + dev = PCI_FIND_DEV(0x184e, 0x1004, NULL); + if (dev != NULL ) { + pci_write_config_dword(dev,0x78,MAX_PAYLOAD_256B | + MAX_READ_REQ_256B); + } + } + } + if ((dev = PCI_FIND_DEV(0x14e4, 0xb634, NULL)) != NULL) { + pci_write_config_dword(dev,0x78,MAX_PAYLOAD_256B | + MAX_READ_REQ_256B); + } + + if ((dev = PCI_FIND_DEV(PCI_VNDID_PERICOM, PCI_DEVID_PI7C9X130, NULL)) != NULL) { + /* + * Configure the PCIE cap: Max payload size: 256, Max Read + * Request size: 256, disabling relax ordering. + * Writes to the PCIE capability device control register + */ + pci_write_config_dword(dev, DEV_CTRL_REG, + MAX_PAYLOAD_256B | MAX_READ_REQ_256B); + } + + if ((dev = PCI_FIND_DEV(FSL_VENDOR_ID, FSL8548PCIE_DEVICE_ID, NULL)) != NULL || + (dev = PCI_FIND_DEV(FSL_VENDOR_ID, FSL2020EPCIE_DEVICE_ID, NULL)) != NULL) { + /* + * Configure the PCIE cap: Max payload size: 256, Max Read + * Request size: 256, disabling relax ordering. + * Writes to the PCIE capability device control register + */ + pci_write_config_dword(dev, FSL8548PCIE_DEV_CTRL_REG, + MAX_PAYLOAD_256B | MAX_READ_REQ_256B); + } + if ((dev = PCI_FIND_DEV(BCM4716_VENDOR_ID, BCM4716PCIE_DEVICE_ID, NULL)) != NULL || + (dev = PCI_FIND_DEV(BCM53000_VENDOR_ID, BCM53000PCIE_DEVICE_ID, NULL)) != NULL) { + uint32 tmp, maxpayld, device_bmp=0, mask; + unsigned long addr; + uint16 tmp16, tmp161; + int i, bus0 = -1, bus1 = -1, port; + struct pci_dev *pcie0, *pcie1; + + pcie0 = dev; + bus0 = dev->bus->number; + if ((pcie1 = PCI_FIND_DEV(BCM53000_VENDOR_ID, BCM53000PCIE_DEVICE_ID, pcie0)) != NULL) { + bus1 = pcie1->bus->number; + } + + for(i = 0; i < _ndevices; i++) { + bde_ctrl_t *ctrl = _devices + i; + + mask = BDE_SWITCH_DEV_TYPE | BDE_PCI_DEV_TYPE; + if ((ctrl->dev_type & mask) == mask) { + if (ctrl->pci_device->bus->number == bus0) { + device_bmp |= 1 << 0; + } + if (ctrl->pci_device->bus->number == bus1) { + device_bmp |= 1 << 1; + } + } + } + + /* configure the PCIE cap: Max payload size: 256, Max Read + * Request size: 256, disabling relax ordering. + * Writes to the PCIE capability device control register + */ + + i = 0; + while(device_bmp) { + if (device_bmp & (1 << i)){ + port = i ; + pci_read_config_dword(BCM53000PCIE_DEV(port), + BCM53000PCIE_DEV_CAP_REG, &tmp); + maxpayld = (tmp & BCM53000PCIE_MAX_PAYLOAD_MASK); + if (debug >= 1) { + gprintk("port %d\n",port); + gprintk("DevCap (@%x): 0x%x%c\n", BCM53000PCIE_DEV_CAP_REG, tmp, + (maxpayld != BCM53000PCIE_CAP_MAX_PAYLOAD_256B) ? ' ':'\n'); + } + if (maxpayld != BCM53000PCIE_CAP_MAX_PAYLOAD_256B) { + addr = BCM53000PCIE_BASE(port); + addr |= (BCM53000PCIE_SROM_SPACE | BCM53000PCIE_SPROM_OFFSET); + tmp16 = *((uint16 *)addr); + if (debug >= 1){ + gprintk("addr %lx spromData.MaxPayloadSize: 0x%x\n", addr, tmp16); + } + mask = BCM53000PCIE_SPROM_MAX_PAYLOAD_MASK; + if ((tmp16 & mask) != BCM53000PCIE_SPROM_MAX_PAYLOAD_256B) { + tmp161 = (tmp16 & ~mask) | BCM53000PCIE_SPROM_MAX_PAYLOAD_256B; + *((uint16 *)addr) = tmp161; + if (debug >= 1) { + tmp16 = 0; + tmp16 = *((uint16 *)addr); + gprintk("Enable spromData.MaxPayloadSize to 1 (256 bytes): " + "0x%x (%s w/ 0x%x)\n", tmp161, + ((tmp16 & mask) == BCM53000PCIE_SPROM_MAX_PAYLOAD_256B) ? + "Success":"Fail", + tmp16); + } + } + pci_read_config_dword(BCM53000PCIE_DEV(port), + BCM53000PCIE_DEV_CAP_REG, &tmp); + if (debug >= 1){ + gprintk("DevCap (@%x): now is 0x%x\n\n", + BCM53000PCIE_DEV_CAP_REG, tmp); + } + } + + addr = BCM53000PCIE_BASE(port); + addr |= (BCM53000PCIE_FUNC0_COFIG_SPACE | BCM53000PCIE_DEV_CTRL_REG); + tmp16 = *((uint16 *)addr); + if (debug >= 1) { + gprintk("DevControl (@%x): 0x%x\n", BCM53000PCIE_DEV_CTRL_REG, tmp16); + } + if (!(tmp16 & MAX_PAYLOAD_256B) || !(tmp16 & MAX_READ_REQ_256B)) { + tmp161 = tmp16 | MAX_PAYLOAD_256B | MAX_READ_REQ_256B; + *((uint16 *)addr) = tmp161; + if (debug >= 1) { + tmp16 = 0; + tmp16 = *((uint16 *)addr); + gprintk("addr %lx Enable DevControl MaxPayloadSize to 1 (256 bytes): " + "0x%x (%s w/ 0x%x)\n", addr, tmp161, + (tmp16 & MAX_PAYLOAD_256B) ? "Success":"Fail", + tmp16); + gprintk("Enable DevControl MaxReadRequestSize to 1 (256 bytes): " + "0x%x (%s w/ 0x%x)\n\n", tmp161, + (tmp16 & MAX_READ_REQ_256B) ? "Success":"Fail", + tmp16); + } + } + device_bmp &= ~(1 << i); + } + i++; + } + } + + /* + * Configure max payload to 512 on all ports in the PLX8608/PLX8617. + * The device supports 128, 512, and 1024 max payload sizes. + */ + dev = NULL; + while ((dev = PCI_FIND_DEV(PCI_VENDOR_ID_PLX, PCI_ANY_ID, dev)) != NULL) { + if ((dev->device == PLX_PEX8608_DEV_ID) || + (dev->device == PLX_PEX8617_DEV_ID)) { + uint16 ctrl_reg; + pci_read_config_word(dev, PLX_PEX86XX_DEV_CTRL_REG, &ctrl_reg); + ctrl_reg = (ctrl_reg & ~(7<<5)) | MAX_PAYLOAD_512B; + pci_write_config_word(dev, PLX_PEX86XX_DEV_CTRL_REG, ctrl_reg); + } + } + return 0; +} + +#ifdef BCM_PLX9656_LOCAL_BUS + +#define PLX_LAS0_BA 0x00000004 /* LAS0 Local Base Address Remap */ +#define PLX_LAS1_BA 0x000000f4 /* LAS1 Local Base Address Remap */ +#define PLX_LAS_EN 0x00000001 /* Space Enable bit */ + +#define PLX_MMAP_PCIBAR0 0 /* Memory-Mapped Config (PCIBAR0) */ +#define PLX_LAS0_PCIBAR2 2 /* Local Address Space 0 (PCIBAR2) */ +#define PLX_LAS1_PCIBAR3 3 /* Local Address Space 1 (PCIBAR3) */ + +STATIC int +_plx_las_bar_get(struct pci_dev *dev) +{ + void *local_config_addr; + int bar = -1; + + local_config_addr = IOREMAP(pci_resource_start(dev, PLX_MMAP_PCIBAR0), + pci_resource_len(dev, PLX_MMAP_PCIBAR0)); + if (local_config_addr) { + uint32 las_remap_reg; + /* + * Make sure LAS0BA or LAS1BA is enabled before returning + * BAR that will be used to access the Local Bus + */ + las_remap_reg = ioread32(local_config_addr + PLX_LAS0_BA); + if (las_remap_reg & PLX_LAS_EN) { + bar = PLX_LAS0_PCIBAR2; + } else { + las_remap_reg = ioread32(local_config_addr + PLX_LAS1_BA); + if (las_remap_reg & PLX_LAS_EN) { + bar = PLX_LAS1_PCIBAR3; + } + } + } + iounmap(local_config_addr); + return bar; +} +#endif /* BCM_PLX9656_LOCAL_BUS */ + +static void +_shbde_log_func(int level, const char *str, int param) +{ + level = (level >= SHBDE_DBG) ? 1 : 0; + if (debug >= level) { + gprintk("%s (%d)\n", str, param); + } +} +/* + * Function: _device_rescan_validate + * + * Purpose: + * Check if the device is ever probed or not. + * Parameters: + * dev - Linux PCI device structure + * Returns: + * >= 0 : dev is ever probed + * reutrn value is the index point to the _devices[] + * -1 : dev is not probed before. + */ +static int +_device_rescan_validate(struct pci_dev *dev) +{ + bde_ctrl_t *ctrl; + int i; + + if (PCI_FUNC(dev->devfn) > 0) { + return -1; + } + ctrl = NULL; + for (i = 0; i < _ndevices; i ++) { + ctrl = _devices + i; + /* check the device id */ + if (dev->device == ctrl->bde_dev.device) { + /* check the bus number */ + if ((dev->bus)) { + if ((dev->bus->number == ctrl->bus_no) && + (pci_domain_nr(dev->bus) == ctrl->domain_no)) { + return i; + } + } + } + } + return -1; +} + +#ifdef CONFIG_PCI_MSI + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) +/** + * _pci_msix_table_size - return the number of device's MSI-X table entries + * @dev: pointer to the pci_dev data structure of MSI-X device function + */ +static int +_pci_msix_table_size(struct pci_dev *dev) +{ + int nr_entries = 0; + +#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,110)) + u16 control; + int pos; + + pos = pci_find_capability(dev, PCI_CAP_ID_MSIX); + if (pos) { + pci_read_config_word(dev, msi_control_reg(pos), &control); + nr_entries = msix_table_size(control); + } +#else +#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,14,0)) +{ + /* Pass large entry value to enable MSIX to get # of entires */ + struct msix_entry *entries; + entries = kmalloc(sizeof(struct msix_entry) * + PCI_MSIX_FLAGS_QSIZE, GFP_KERNEL); + if (entries != NULL) { + nr_entries = pci_enable_msix(dev, + entries, PCI_MSIX_FLAGS_QSIZE); + if (nr_entries < 0) { + nr_entries = 0; + } + kfree(entries); + } +} +#else + nr_entries = pci_msix_vec_count(dev); +#endif +#endif + + return nr_entries; +} +#endif + +static int +_msi_connect(bde_ctrl_t *ctrl) +{ + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) + int ret; + if (ctrl->use_msi == PCI_USE_INT_MSIX) { + int i; + ret = _pci_msix_table_size(ctrl->pci_device); + + if (ret == 0) { + /* MSI-X failed */ + gprintk("MSI-X not supported.\n"); + goto er_intx; + } + ctrl->entries = kcalloc(ret, sizeof(struct msix_entry)*ret, GFP_KERNEL); + + if (!ctrl->entries) { + goto er_intx; + } + /* We need only that much interrupt vecotrs */ + ctrl->msix_cnt = ret/4; + if (unlikely(debug > 1)) + gprintk("MSIX Table size = %d\n", ctrl->msix_cnt); + for (i = 0; i < ctrl->msix_cnt; i++) + ctrl->entries[i].entry = i; + + ret = pci_enable_msix(ctrl->pci_device, + ctrl->entries, ctrl->msix_cnt); + if (ret > 0) { + /* Not enough vectors available , Retry MSI-X */ + gprintk("Retrying with MSI-X interrupts = %d\n", ret); + ctrl->msix_cnt = ret; + ret = pci_enable_msix(ctrl->pci_device, + ctrl->entries, ctrl->msix_cnt); + if (ret != 0) + goto er_intx_free; + } else if (ret < 0) { + /* Error */ + goto er_intx_free; + } else { + gprintk("Enabled MSI-X interrupts = %d\n", ctrl->msix_cnt); + } + } +#endif + + if (ctrl->use_msi == PCI_USE_INT_MSI) { + if (pci_enable_msi(ctrl->pci_device) == 0) { + ctrl->iLine = ctrl->pci_device->irq; + } else { + /* MSI failed */ + gprintk("Failed to initialize MSI interrupts.\n"); + goto er_intx; + } + } else { + /* failed */ + gprintk("Not MSI/MSIC interrupt.\n"); + goto er_intx; + } + return 0; +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) +er_intx_free: + gprintk("Failed to enable MSI-X interrupts = %d\n", ret); + kfree(ctrl->entries); +#endif +er_intx: + return -1; + +} + +static int +_msi_disconnect(bde_ctrl_t *ctrl) +{ +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) + if (ctrl->use_msi == PCI_USE_INT_MSIX) { + pci_disable_msix(ctrl->pci_device); + kfree(ctrl->entries); + ctrl->msix_cnt = 0; + } +#endif + if (ctrl->use_msi == PCI_USE_INT_MSI) { + pci_disable_msi(ctrl->pci_device); + } else { + gprintk("MSI not used\n"); + } + return 0; +} + +#endif + + +static void +config_pci_intr_type(bde_ctrl_t *ctrl) +{ + +#ifdef CONFIG_PCI_MSI + int ret; + + ctrl->use_msi = use_msi; + if (unlikely(debug > 1)) + gprintk("%s: msi = %d\n", __func__, ctrl->use_msi); + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) + if (ctrl->use_msi == PCI_USE_INT_MSIX) { + /* check for support MSIX vector */ + ret = _pci_msix_table_size(ctrl->pci_device); + if (ret == 0) { + gprintk("%s: Zero MSIX table size\n", __func__); + ctrl->use_msi = PCI_USE_INT_MSI; + } + } +#endif + + if (ctrl->use_msi == PCI_USE_INT_MSI) { + /* check for support MSI vector */ + ret = pci_enable_msi(ctrl->pci_device); + if (ret < 0) { + ctrl->use_msi = PCI_USE_INT_INTX; + gprintk("%s: Failed to enable MSI\n", __func__); + } else { + pci_disable_msi(ctrl->pci_device); + } + } +#else + ctrl->use_msi = PCI_USE_INT_INTX; +#endif +} + +/* + * Function: _pci_probe + * + * Purpose: + * Device initialization callback used by the Linux PCI + * subsystem. Called as a result of pci_register_driver(). + * Parameters: + * dev - Linux PCI device structure + * Returns: + * 0 + */ +static int +_pci_probe(struct pci_dev *dev, const struct pci_device_id *ent) +{ + bde_ctrl_t *ctrl; + resource_size_t paddr; + uint16 cmd = 0; + uint32 bar_len; + int cmic_bar; + int baroff = 0; + int iproc = 0; + uint32 gmac_base = 0; + int plx_dev = 0; + int eth_dev = 0; + int cpu_dev = 0; + int update_devid = 0; + int paxb_core = 0; + int rescan = 0, rescan_idx = -1; + shbde_hal_t shared_bde, *shbde = &shared_bde; + + if (debug >= 4) {gprintk("probing: vendor_id=0x%x, device_id=0x%x\n", dev->vendor, dev->device);} + if (nodevices == 1) { + return 0; + } + + /* Initialize Linux hardware abstraction for shared BDE functions */ + linux_shbde_hal_init(shbde, _shbde_log_func); + + /* + * If an AXI-based switch device has been found already, then it means + * that the AXI bus has been probed, and that we should ignore devices + * found on PCI bus zero. + */ + +#if defined(IPROC_CMICD) + if ((dev->bus) && (dev->bus->number == 0)) { + int i; + uint32 mask = BDE_SWITCH_DEV_TYPE | BDE_AXI_DEV_TYPE; + + for (i = 0; i < _ndevices; i++) { + ctrl = _devices + i; + + if ((ctrl->dev_type & mask) == mask) { + return 0; + } + } + } +#endif /* IPROC_CMICD */ + + /* + * Note that a few supported devices have a non-Broadcom PCI vendor ID, + * but since none of their associated PCI device IDs collide with the + * Broadcom device IDs, the probe code below only checks the device ID. + */ + + switch (dev->device) { + case PCI_DEVICE_ID_PLX_9056: +#ifdef DNX_TEST_BOARD + break; /* a PCIe bridge to a non PCIe device should be treated as the device */ +#endif /* DNX_TEST_BOARD */ + case PCI_DEVICE_ID_PLX_9656: + plx_dev = 1; + break; +#if defined (BCM_ROBO_SUPPORT) && defined(KEYSTONE) + case BCM53000_GMAC_ID: + eth_dev = 1; + gmac_base = SB_ENUM_BASE; + break; +#endif +#if defined (BCM_ROBO_SUPPORT) + case BCM47XX_ENET_ID: + eth_dev = 1; + break; +#endif + case BCM53000PCIE_DEVICE_ID: + cpu_dev = 1; + break; + /* + * The device ID for 56500, 56100 and 56300 family of devices may + * be incorrect just after a PCI HW reset. It needs to be read + * again after stabilization. + */ + case BCM56102_DEVICE_ID: + case BCM56504_DEVICE_ID: + case BCM56304_DEVICE_ID: + case BCM56314_DEVICE_ID: + case BCM56112_DEVICE_ID: + update_devid = 1; + break; + default: + break; + } + + /* Check if the device is ever probed. */ + rescan_idx = _device_rescan_validate(dev); + if (rescan_idx != -1) { + rescan = 1; + } + + ctrl = NULL; + if (plx_dev) { +#if defined(BCM_PLX9656_LOCAL_BUS) + /* PLX chip itself won't be part of _devices[]. */ + baroff = _plx_las_bar_get(dev); + if (baroff == -1) { + gprintk("No Local Address Space enabled in PLX\n"); + return 0; + } + ctrl = &plx_ctrl; + num_plx++; +#endif + } else if (eth_dev) { + if (_ether_ndevices >= LINUX_BDE_MAX_ETHER_DEVICES) { + return 0;; + } + ctrl = _devices + _ndevices++; + _ether_ndevices++; + ctrl->dev_type |= BDE_ETHER_DEV_TYPE; + ctrl->iLine = dev->irq; + if (debug >= 1) + gprintk("Found PCI device %04x:%04x as Ethernet device\n", + dev->vendor, dev->device); + } else if (cpu_dev) { + if (_cpu_ndevices >= LINUX_BDE_MAX_CPU_DEVICES) { + return 0;; + } + ctrl = _devices + _ndevices++; + _cpu_ndevices++; + ctrl->dev_type |= BDE_CPU_DEV_TYPE; + if (debug >= 1) + gprintk("Found PCI device %04x:%04x as CPU device\n", + dev->vendor, dev->device); + } else { + if (PCI_FUNC(dev->devfn) > 0) { + return 0; + } + if (_switch_ndevices >= LINUX_BDE_MAX_SWITCH_DEVICES) { + return 0;; + } + + if (rescan) { + if (debug >= 1) { + gprintk("PCI device %04x:%04x is re-probed \n", + dev->vendor, dev->device); + } + ctrl = _devices + rescan_idx; + ctrl->dev_state = BDE_DEV_STATE_CHANGED; + } else { + ctrl = _devices + _ndevices++; + _switch_ndevices++; + ctrl->dev_type |= BDE_SWITCH_DEV_TYPE; + ctrl->domain_no = pci_domain_nr(dev->bus); + ctrl->bus_no = dev->bus->number; + ctrl->dev_state = BDE_DEV_STATE_NORMAL; + } + + /* Save shared BDE HAL in device structure */ + memcpy(&ctrl->shbde, shbde, sizeof(ctrl->shbde)); + + if (update_devid) { + /* Re-read the device ID */ + pci_read_config_word(dev, + PCI_DEVICE_ID, + &ctrl->bde_dev.device); + dev->device = ctrl->bde_dev.device; + } + + if (debug >= 4) {gprintk("Enabling PCI device : vendor_id=0x%x, device_id=0x%x\n", dev->vendor, dev->device);} + if (pci_enable_device(dev)) { + gprintk("Cannot enable PCI device : vendor_id = %x, device_id = %x\n", + dev->vendor, dev->device); + } + + /* FIXME: "workarounds" previously called "total h_acks" */ + /* + * These are workarounds to get around some existing + * kernel problems :( + */ + + /* + * While probing we determine the overall limits for the PCI + * memory windows across all devices. These limits are used + * later on by the PCI-PCI bridge code. + */ + if (pci_resource_start(dev, baroff) < _pci_mem_start) { + _pci_mem_start = pci_resource_start(dev, baroff); + } + if (pci_resource_end(dev, baroff) > _pci_mem_end) { + _pci_mem_end = pci_resource_end(dev, baroff); + } + +#ifdef CONFIG_SANDPOINT + /* + * Something wrong with the PCI subsystem in the mousse kernel. + * The device is programmed correctly, but the irq in the pci + * structure is hosed. This checks for the hosed-ness and fixes it. + */ + if (dev->irq > 100) { + dev->irq = 2; + gprintk("irq problem: setting irq = %d\n", dev->irq); + } +#endif + +#ifdef CONFIG_BMW + /* + * PCI subsystem does not always program the system correctly. + */ + if (dev->irq < 16 && dev->irq != 2) { + dev->irq = 2; + gprintk("irq problem: setting irq = %d\n", dev->irq); + } +#endif + +#ifdef CONFIG_IDT_79EB334 + /* + * IDT kernel is not currently mapping interrupts correctly + * Hardwired to core mips interrupt, irq 3 for kernel 2.4.18 + */ + if (dev->irq != 3) { + dev->irq = 3; + gprintk("irq problem: setting irq = %d\n", dev->irq); + } +#endif + +#ifdef CONFIG_BCM94702_CPCI + /* + * Hardwired to core mips interrupt irq 6 on MBZ + */ + if (dev->irq != 6) { + dev->irq = 6; + gprintk("irq problem: setting irq = %d\n", dev->irq); + } +#endif + + if ((PCI_FIND_DEV(BCM4704_VENDOR_ID, BCM4704_DEVICE_ID, NULL)) != NULL) { + /* + * Decrease the PCI bus priority for the CPU for better overall + * system performance. This change significantly reduces the + * number of PCI retries from other devices on the PCI bus. + */ + void * _mc_vbase = IOREMAP(BCM4704_MEMC_BASE, 0x1000); + int priorinv = 0x80; + static int done = 0; + if (!done) { + done = 1; + writel(priorinv, _mc_vbase + BCM4704_MEMC_PRIORINV); + if (debug >= 1) + gprintk("set BCM4704 PriorInvTim register to 0x%x\n", priorinv); + iounmap(_mc_vbase); + } + } + + if ((PCI_FIND_DEV(SIBYTE_PCI_VENDOR_ID, SIBYTE_PCI_DEVICE_ID, NULL)) != NULL) { + /* + * The BCM91125CPCI CPU boards with a PCI-PCI bridge use the same + * interrupt line for all switch ships behind the bridge. + */ + if (PCI_FIND_DEV(DC21150_VENDOR_ID, DC21150_DEVICE_ID, NULL) || + PCI_FIND_DEV(HINT_HB4_VENDOR_ID, HINT_HB4_DEVICE_ID, NULL) || + PCI_FIND_DEV(PI7C8150_VENDOR_ID, PI7C8150_DEVICE_ID, NULL)) { + /* + * By default we try to guess the correct IRQ based on the design. + * For now we only look at the bridge vendor, but it may be necessary + * to look at the switch chip configuration as well. + */ + if (forceirq == -1) { + if ((PCI_FIND_DEV(HINT_HB4_VENDOR_ID, HINT_HB4_DEVICE_ID, NULL)) || + ((dev->device == BCM5674_DEVICE_ID) && + (PCI_FIND_DEV(PI7C8150_VENDOR_ID, PI7C8150_DEVICE_ID, NULL)))) { + forceirq = 58; + } else { + forceirq = 56; + } + } + } + } + + if (((PCI_FIND_DEV(BCM58525_PCI_VENDOR_ID, BCM58525_PCI_DEVICE_ID, NULL)) != NULL) || + ((PCI_FIND_DEV(BCM58525_PCI_VENDOR_ID, BCM58522_PCI_DEVICE_ID, NULL)) != NULL) || + ((PCI_FIND_DEV(BCM58712_PCI_VENDOR_ID, BCM58712_PCI_DEVICE_ID, NULL)) != NULL) ) { + /* BCM58525/BCM58712 CPU boards support 128 Max payload size */ + if (maxpayload) { + maxpayload = 128; + if (debug >= 1) gprintk("force max payload size to 128\n"); + } + } + + if (forceirq > 0 && dev->irq != (uint32) forceirq) { + if (forceirqubm & (1U << (_ndevices - 1))) { + dev->irq = forceirq; + if (debug >= 1) gprintk("force irq to %d\n", forceirq); + } + } else if (debug >= 1) gprintk("found irq %d\n", dev->irq); + + ctrl->iLine = dev->irq; + if (unlikely(debug > 1)) + gprintk("%s:irq = %d\n",__func__, ctrl->iLine); + + if (shbde_pci_is_pcie(shbde, dev)) { + /* Set PCIe max payload */ + shbde_pci_max_payload_set(shbde, dev, maxpayload); + } else { + /* Set PCI retry to infinite on non-PCIe switch device */ + pci_write_config_word(dev, 0x40, 0x0080); + if (debug >= 1) gprintk("set DMA retry to infinite on switch device\n"); + } + } + +#if defined(BCM_DFE_SUPPORT) + switch (dev->device) { + case BCM88750_DEVICE_ID: + case BCM88753_DEVICE_ID: + case BCM88755_DEVICE_ID: + case BCM88770_DEVICE_ID: + case BCM88773_DEVICE_ID: + case BCM88774_DEVICE_ID: + case BCM88775_DEVICE_ID: + case BCM88776_DEVICE_ID: + case BCM88777_DEVICE_ID: + case BCM88950_DEVICE_ID: + case BCM88953_DEVICE_ID: + case BCM88954_DEVICE_ID: + case BCM88955_DEVICE_ID: + case BCM88956_DEVICE_ID: + case BCM88752_DEVICE_ID: + case BCM88772_DEVICE_ID: + case BCM88952_DEVICE_ID: + + /* + * For DMA transactions - set Max_Payload_Size and + * Max_Read_Request_Size to 128 bytes. + */ + pci_write_config_byte(dev, 0xb5, 0x0c); + pci_write_config_byte(dev, 0xb4, 0x0); + break; + default: + break; + } +#endif /* BCM_DFE_SUPPORT */ + +#if defined(BCM_DNXF_SUPPORT) + switch (dev->device) { + case BCM88790_DEVICE_ID: + + /* + * For DMA transactions - set Max_Payload_Size and + * Max_Read_Request_Size to 128 bytes. + */ + pci_write_config_byte(dev, 0xb5, 0x0c); + pci_write_config_byte(dev, 0xb4, 0x0); + break; + default: + break; + } +#endif + + /* Prevent compiler warning */ + if (ctrl == NULL) { + return 0; + } + + ctrl->be_pio = 0; + ctrl->dev_type |= BDE_PCI_DEV_TYPE; + ctrl->pci_device = dev; + pci_set_drvdata(dev, ctrl); + + /* Check for iProc device */ + if (shbde_pci_is_iproc(shbde, dev, &cmic_bar)) { + iproc = 1; + if (cmic_bar >= 0) { + baroff = cmic_bar; + } + } +#ifdef DNX_TEST_BOARD + else if (dev->device == PLX9056_DEVICE_ID && baroff == 0) { + baroff = 2; + ctrl->dev_type |= BDE_NO_IPROC/* | BDE_BYTE_SWAP*/; + } +#endif /* DNX_TEST_BOARD */ + + /* Get the device revision */ + pci_read_config_byte(dev, PCI_REVISION_ID, &ctrl->bde_dev.rev); + + /* Map in the device */ + ctrl->bde_dev.device = dev->device; + paddr = pci_resource_start(dev, baroff); + + switch (dev->device) { +#if defined(BCM_PETRA_SUPPORT) && defined(__DUNE_LINUX_BCM_CPU_PCIE__) + case GEDI_DEVICE_ID: + case PCP_PCI_DEVICE_ID: + bar_len = 0x1000000; + break; +#endif + default: + bar_len = pci_resource_len(dev, baroff); + break; + } + + ctrl->bde_dev.base_address = (sal_vaddr_t)IOREMAP(paddr, bar_len); + ctrl->phys_address = paddr; + if (debug >= 3) { + gprintk("BAR %d: kernel addr:0x%lx phys addr:0x%lx length:%lx\n", + baroff, (unsigned long)ctrl->bde_dev.base_address, (unsigned long)paddr, (unsigned long)bar_len); + } + + /* Map secondary address spaces */ + if (iproc +#ifdef DNX_TEST_BOARD + || (dev->device == PLX9056_DEVICE_ID && baroff == 2) +#endif /* DNX_TEST_BOARD */ + ) { + paddr = pci_resource_start(dev, 0); + bar_len = pci_resource_len(dev, 0); + ctrl->bde_dev.base_address1 = (sal_vaddr_t)IOREMAP(paddr, bar_len); + ctrl->phys_address1 = paddr; + if (debug >= 3) { + gprintk("BAR 0: kernel addr:0x%lx phys addr:0x%lx length:%lx\n", + (unsigned long)ctrl->bde_dev.base_address1, (unsigned long)paddr, (unsigned long)bar_len); + } + } + + /* Each device follows global policy by default */ + ctrl->use_msi = use_msi; + + /* Check is MSI is properly supported in kernel for this device */ + if (ctrl->use_msi) { + if (pci_enable_msi(ctrl->pci_device) == 0) { + /* Release MSI resources until interrupt_connect is called */ + pci_disable_msi(ctrl->pci_device); + } else { + gprintk("Could not enable MSI interrupts\n"); + ctrl->use_msi = 0; + } + } + + /* configure interrupt type */ + config_pci_intr_type(ctrl); + + /* Configure iProc PCI-AXI bridge */ + if (iproc && ctrl->bde_dev.base_address1) { + void *iproc_regs; + shbde_iproc_config_t *icfg = &shbde->icfg; + + /* Mapped iProc regs in PCI BAR 0 */ + iproc_regs = (void *)ctrl->bde_dev.base_address1; + + /* iProc configuration parameters */ + (void)shbde_pci_iproc_version_get(shbde, dev, &icfg->iproc_ver, + &icfg->cmic_ver, &icfg->cmic_rev); + shbde_iproc_config_init(icfg, ctrl->bde_dev.device, ctrl->bde_dev.rev); + + if (debug >=2) { + gprintk("iproc version = %x dma_hi_bits = %x\n", icfg->iproc_ver, icfg->dma_hi_bits); + } + icfg->use_msi = ctrl->use_msi; + + /* Call shared function */ + paxb_core = shbde_iproc_paxb_init(shbde, iproc_regs, icfg); + + /* Save PCI core information for CMIC */ + if (paxb_core == 1) { + ctrl->dev_type |= BDE_DEV_BUS_ALT; + } + + /* Save MSI enable state information */ + if (ctrl->use_msi) { + ctrl->dev_type |= BDE_DEV_BUS_MSI; + } + + /* iProc PCIe preemphasis */ + shbde_iproc_pcie_preemphasis_set(shbde, iproc_regs, icfg, dev); + } + + /* Save shared BDE HAL in device structure */ + memcpy(&ctrl->shbde, shbde, sizeof(ctrl->shbde)); + +#if defined(VENDOR_BROADCOM) +#if defined(BCM_PLX9656_LOCAL_BUS) && defined(SHADOW_SVK) + if (num_plx) { + sal_vaddr_t base_address; + uint32 intr_enable; + + paddr = pci_resource_start(dev, 0); + bar_len = pci_resource_len(dev, 0); + base_address = (sal_vaddr_t)IOREMAP(paddr, bar_len); + + intr_enable = readl((uint32 *)(base_address + 0x68)); + gprintk("PLX Interrupt ENABLE: %x\n", intr_enable); + intr_enable |= 0x00080000; + writel(intr_enable, (uint32 *)(base_address + 0x68)); + gprintk("PLX Interrupt ENABLE: %x\n", intr_enable); + } +#endif +#endif + + /* + * Since the GMAC driver of Robo chips needs access to the + * ChipCommon and Wrapper registers, we set the base address + * as the enumeration base address and its size as 3MB to + * cover all Wrapper register regions. + */ + if (gmac_base) { + uint32_t offset; + + ctrl->bde_dev.base_address = (sal_vaddr_t)IOREMAP(gmac_base, 0x300000); + + /* Record the base address of GMAC core */ + offset = ctrl->phys_address - gmac_base; + ctrl->alt_base_addr = ctrl->bde_dev.base_address + offset; + ctrl->phys_address = gmac_base; + } + + /* + * Workaround bug in FE2K A1 part; shows as A0 part in PCI config space, + * read the FE's regs directly to get the true revision + */ + if (ctrl->bde_dev.device == BCM88020_DEVICE_ID && ctrl->bde_dev.rev == 0) { +#define FE2000_REVISION_OFFSET (0x0) + uint32_t fe_rev; + + fe_rev = *((uint32_t*)(ctrl->bde_dev.base_address + FE2000_REVISION_OFFSET)); + if ((fe_rev >> 16) == BCM88020_DEVICE_ID) { + fe_rev &= 0xff; + } else { + fe_rev = (fe_rev >> 24) & 0xff; + } + ctrl->bde_dev.rev = fe_rev; + } + + ctrl->isr = NULL; + ctrl->isr_data = NULL; + + pci_read_config_word(dev, PCI_COMMAND, &cmd); + if (!(cmd & PCI_COMMAND_MEMORY) || !(cmd & PCI_COMMAND_MASTER)) { + cmd |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER; + pci_write_config_word(dev, PCI_COMMAND, cmd); + if (debug >= 1) gprintk("enable PCI resources 0x%x (PCI_COMMAND)\n", cmd); + } + + /* Check if we need 256 KB memory window (default is 64 KB) */ + bar_len = pci_resource_len(dev, baroff); + if ((bar_len == 0x40000) || (bar_len == 0x800000)) { + ctrl->dev_type |= BDE_256K_REG_SPACE; + if (debug >= 1) gprintk("PCI resource len 256K\n"); + } + +#if defined (BCM_ROBO_SUPPORT) && !defined(ALTA_ROBO_SPI) + /* MDC/MDIO path for pseudo PHY access to ROBO register on BCM5836/4704 */ + if (dev->device == BCM47XX_ENET_ID) { + ((uint32 *)ctrl->bde_dev.base_address)[0x410 / 4] = 0; + } +#endif + +#ifdef LINUX_BDE_DMA_DEVICE_SUPPORT + ctrl->dma_dev = &dev->dev; +#endif + + if (debug >= 2) { + gprintk("_pci_probe: configured dev:0x%x rev:0x%x with base_addresses: 0x%lx 0x%lx\n", + (unsigned)ctrl->bde_dev.device, (unsigned)ctrl->bde_dev.rev, + (unsigned long)ctrl->bde_dev.base_address, (unsigned long)ctrl->bde_dev.base_address1); + } + /* Let's boogie */ + + return 0; +} + +/* + * Function: _pci_remove + * + * Purpose: + * Detach driver from device. Called from pci_unregister_driver(). + * Parameters: + * dev - Linux PCI device structure + * Returns: + * 0 + */ +static void +_pci_remove(struct pci_dev* dev) +{ + bde_ctrl_t *ctrl; + + if (nodevices == 1) { + return; + } + +#if defined(BCM_DFE_SUPPORT) + if (dev->device == PCI_DEVICE_ID_PLX_9056) { + return; + } +#endif + + ctrl = (bde_ctrl_t *) pci_get_drvdata(dev); + + if (ctrl == NULL) { + /* Unused device */ + return; + } + ctrl->dev_state = BDE_DEV_STATE_REMOVED; + if (debug >= 1) { + gprintk("PCI device %04x:%04x is removed. \n", + dev->vendor, dev->device); + } + if (ctrl->bde_dev.base_address1) { + iounmap((void *)ctrl->bde_dev.base_address1); + } + if (ctrl->bde_dev.base_address) { + iounmap((void *)ctrl->bde_dev.base_address); + } + + /* Free our interrupt handler, if we have one */ + if (ctrl->isr || ctrl->isr2) { +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) + if (ctrl->use_msi >= PCI_USE_INT_MSIX) { + int i; + for (i = 0; i < ctrl->msix_cnt; i++) + free_irq(ctrl->entries[i].vector, ctrl->pci_device); + } + else +#endif + { + free_irq(ctrl->iLine, ctrl); + } + } +#ifdef CONFIG_PCI_MSI + _msi_disconnect(ctrl); +#endif + ctrl->isr = NULL; + ctrl->isr_data = NULL; + ctrl->isr2 = NULL; + ctrl->isr2_data = NULL; +} + +static struct pci_driver _device_driver = { + probe: _pci_probe, + remove: _pci_remove, + id_table: _id_table, + /* The rest are dynamic */ +}; + +static void +_spi_device_setup(void) { + bde_ctrl_t *ctrl; + ctrl = _devices + _ndevices++; + _switch_ndevices++; + ctrl->dev_type |= BDE_SWITCH_DEV_TYPE; + ctrl->iLine = 0xa3; + ctrl->be_pio = 0; + ctrl->dev_type |= BDE_SPI_DEV_TYPE; + ctrl->bde_dev.device = spi_devid; + ctrl->bde_dev.rev = spi_revid; + if (debug >= 1) { + gprintk("SPI Slave Mode: force ctrl->bde_dev.device=0x%x\n",ctrl->bde_dev.device); + gprintk("SPI Slave Mode: force ctrl->bde_dev.rev=0x%x\n",ctrl->bde_dev.rev); + gprintk("SPI Slave Mode: force ctrl->dev_type=0x%x\n",ctrl->dev_type); + } +} +#endif /* BCM_ICS */ + + +#ifdef BCM_ROBO_SUPPORT + +#ifdef KEYSTONE +#define DEFAULT_FREQ (SPI_FREQ_DEFAULT) +#define FREQ_20MHZ (SPI_FREQ_20MHZ) +#else /* IPROC_CMICD */ +#define DEFAULT_FREQ (0) +#define FREQ_20MHZ (0) +#endif + + +/* +* The model_info /rev_info for Robo devices is defined like this: +* +* 31 28 27 24 23 20 19 16 15 8 7 0 +* +----+---------+------+-----+---------+--------+ +* | op | reserved| mask |len | page |offset | +* +----+---------+------+-----+---------+--------+ +* +* op: 1:OR phyidl, 2: use PCIE device ID +* mlen: mask len (in bytes) 1:means 0xf,2 means 0xff +* len: Size of model/rev ID register (in bytes) +* page: Page containing model ID and revision registers +* offset: Model/rev ID register offset +*/ +static struct bde_spi_device_id _spi_id_table[] = { + { BCM53242_PHYID_HIGH, BCM53242_PHYID_LOW , 0, 0, DEFAULT_FREQ}, + { BCM53262_PHYID_HIGH, BCM53262_PHYID_LOW , 0, 0, DEFAULT_FREQ}, + { BCM53115_PHYID_HIGH, BCM53115_PHYID_LOW , 0, 0, DEFAULT_FREQ}, + { BCM53118_PHYID_HIGH, BCM53118_PHYID_LOW , 0, 0, DEFAULT_FREQ}, + { BCM53280_PHYID_HIGH, BCM53280_PHYID_LOW , 0x101800e8, 0, FREQ_20MHZ}, + { BCM53101_PHYID_HIGH, BCM53101_PHYID_LOW , 0, 0x110240, FREQ_20MHZ}, + { BCM53125_PHYID_HIGH, BCM53125_PHYID_LOW , 0, 0x110240, FREQ_20MHZ}, + { BCM53128_PHYID_HIGH, BCM53128_PHYID_LOW , 0, 0x110240, FREQ_20MHZ}, + { BCM53600_PHYID_HIGH, BCM53600_PHYID_LOW , 0x101800e8, 0, FREQ_20MHZ}, + { BCM89500_PHYID_HIGH, BCM89500_PHYID_LOW ,0x240230, 0x110240, FREQ_20MHZ}, + { BCM53010_PHYID_HIGH, BCM53010_PHYID_LOW ,0x240230, 0x110240, 0}, + { BCM53018_PHYID_HIGH, BCM53018_PHYID_LOW ,0x240230, 0x110240, 0}, + { BCM5389_PHYID_HIGH, BCM5389_PHYID_LOW, 0x110230, 0x110240, DEFAULT_FREQ}, + { BCM53020_PHYID_HIGH, BCM53020_PHYID_LOW ,0x20240230, 0x110240, 0}, + { BCM5396_PHYID_HIGH , BCM5396_PHYID_LOW, 0x110230, 0x110240, DEFAULT_FREQ}, + { BCM53134_PHYID_HIGH, BCM53134_PHYID_LOW , 0, 0x110240, DEFAULT_FREQ}, + { 0, 0, 0, 0, 0 }, +}; +#endif + +#ifdef BCM_ROBO_SUPPORT + +static int +_spi_device_valid_check(unsigned short phyidh,unsigned short phyidl, uint8 check_flag) +{ + struct bde_spi_device_id *_ids; + int idx, match_idx; + + match_idx = -1; + idx = 0; + + if (check_flag == 0){ + /* check_flag == 0 check phyidh only*/ + for (_ids = _spi_id_table; + _ids->phyid_high && _ids->phyid_low; _ids++){ + if (_ids->phyid_high == phyidh) { + return 0; + } + } + /* No valid SPI devices found */ + return 1; + } else { + while(_spi_id_table[idx].phyid_high){ + if (phyidh == _spi_id_table[idx].phyid_high && + phyidl == _spi_id_table[idx].phyid_low) { + /* Found a match */ + match_idx = idx; + break; + } + idx++; + } + return match_idx; + } +} + +#if defined(IPROC_CMICD) || defined(KEYSTONE) +#define ROBO_ATTACH_AVAIL +#endif + +#ifdef ROBO_ATTACH_AVAIL + +#define SOC_ATTACH(_sc)\ + ai_soc_kattach(_sc) + +#if defined(IPROC_CMICD) +#ifdef BCM_STARFIGHTER3_SUPPORT +#define ROBO_ATTACH_SPI(_sih, _ss)\ + robo_attach_spi(_sih) +#define ROBO_DETACH_SPI(robo)\ + robo_detach_spi(robo) +#define ROBO_SPI_RREG(_robo, _dev, _page, _reg, _buf, _len) \ + robo_spi_rreg(_robo, _dev, _page, _reg, _buf, _len) +#define ROBO_SPI_WREG(_robo, _dev, _page, _reg, _buf, _len) \ + robo_spi_wreg(_robo, _dev, _page, _reg, _buf, _len) +#endif +#define ROBO_ATTACH(_sih, _ss)\ + robo_attach(_sih) +#define MAX_BUSTYPE 1 +#define ROBO_SWITCH_BUS(_robo, _bustype) +#define ROBO_SELECT_DEVICE(_robo, _phyidh, _phyidl) +#else /* KEYSTONE */ +#define ROBO_ATTACH(_sih, _ss)\ + robo_attach(_sih, _ss) +/* bustype 2: ROBO_MDCMDIO_BUS, 1: ROBO_SPI_BUS */ +#define MAX_BUSTYPE 2 +#define ROBO_SWITCH_BUS(_robo, _bustype)\ + robo_switch_bus(_robo, _bustype) + +#define ROBO_SELECT_DEVICE(_robo, _phyidh, _phyidl) \ + robo_select_device(_robo, _phyidh, _phyidl) +#endif + +#else + +#define SOC_ATTACH(_sc) (NULL) +#define ROBO_ATTACH(_sih, _ss) (NULL) +#define MAX_BUSTYPE (0) +#define ROBO_SWITCH_BUS(_robo, _bustype) +#define ROBO_SELECT_DEVICE(_robo, _phyidh, _phyidl) +#endif + + +#if defined(IPROC_CMICD) && defined(BCM_STARFIGHTER3_SUPPORT) +static int +probe_robo_switch_iproc_spi(void) +{ + int dev; + int max_devices, max_bustype; + uint8 buf[8]; + unsigned short phyidh = 0, phyidl = 0; + + + /* Get Robo device handle */ + if (robo == NULL) { + robo = (void *)ROBO_ATTACH_SPI(sbh, 0); + } + if (robo == NULL) { + return -ENODEV; + } + + max_bustype = MAX_BUSTYPE + 1; + + while(_spi_device_valid_check(phyidh, 0, 0)) { + max_bustype --; + if(!max_bustype) + return -ENODEV; + buf[0] = buf[1] = 0; + ROBO_SPI_RREG(robo, 0, 0x10, 0x04, buf, (uint)2); + phyidh = buf[0] | (buf[1] << 8); + /* re-try */ + if ((phyidh == 0x0) || (phyidh == 0xffff)) { + ROBO_SPI_RREG(robo, 0, 0x10, 0x04, buf, (uint)2); + phyidh = buf[0] | (buf[1] << 8); + } + } + + /* For psedo_phy access, only support one robo switch*/ + /* For Northstar, only one switch on SRAB interface */ + max_devices = (max_bustype == MAX_BUSTYPE) ? 1 : LINUX_BDE_MAX_SWITCH_DEVICES; + + for (dev = 0; dev < max_devices; dev++) { + bde_ctrl_t *ctrl; + int match_idx, i; + unsigned short phyidl_nr; /* phyidl with revision stripped */ + uint16 model_id; + uint8 rev_id; + uint32 addr, len; + uint32 mlen; + + if (_switch_ndevices >= LINUX_BDE_MAX_SWITCH_DEVICES) { + break; + } + buf[0] = buf[1] = 0; + ROBO_SPI_RREG(robo, dev, 0x10, 0x04, buf, (uint)2); + phyidh = buf[0] | (buf[1] << 8); + + buf[0] = buf[1] = 0; + ROBO_SPI_RREG(robo, dev, 0x10, 0x06, buf, (uint)2); + phyidl = buf[0] | (buf[1] << 8); + + /* Strip revision */ + phyidl_nr = phyidl & 0xfff0; + + match_idx = _spi_device_valid_check(phyidh, phyidl_nr, 1); + if (match_idx == -1) { + if (debug >= 1) gprintk("found %d robo device(s).\n", robo_switch); + break; + } + + model_id = phyidl_nr; + + if(_spi_id_table[match_idx].rev_info){ + addr = _spi_id_table[match_idx].rev_info & 0xffff; + len = (_spi_id_table[match_idx].rev_info >> 16) & 0xf; + ROBO_SPI_RREG(robo, dev, (addr >> 8), (addr & 0xff), buf, (uint)len); + mlen = (_spi_id_table[match_idx].rev_info >> 20) & 0xf; + rev_id = 0; + for (i = 0; i < mlen; i++) + rev_id |= buf[i] << (i << 3); + } else { + rev_id = phyidl & 0xf; + } + + gprintk("found robo device with %d:%04x:%04x:%04x:%02x\n", + dev, phyidh, phyidl, model_id, rev_id); + + ROBO_SELECT_DEVICE(robo, phyidh, phyidl); + + /* Match supported chips */ + ctrl = _devices + _ndevices++; + _switch_ndevices++; + + if (NULL == (ctrl->spi_device = (struct spi_dev *) + KMALLOC(sizeof(struct spi_dev), GFP_KERNEL))) { + gprintk("no memory available"); + return -ENOMEM; + } + ctrl->dev_type = (BDE_SPI_DEV_TYPE | BDE_SWITCH_DEV_TYPE); + ctrl->spi_device->cid = dev; + ctrl->spi_device->part = model_id; + ctrl->spi_device->rev = rev_id; + ctrl->spi_device->robo = robo; + ctrl->spi_device->phyid_high = phyidh; + ctrl->spi_device->phyid_low = phyidl; + ctrl->bde_dev.device = model_id; + ctrl->bde_dev.rev = rev_id; + ctrl->bde_dev.base_address = (sal_vaddr_t)NULL; + ctrl->isr = NULL; + ctrl->isr_data = NULL; + robo_switch++; + + } + + return robo_switch; + +} + +int spi_device_found = 0; + +#endif /* IPROC_CMICD || SF3 */ + + +static int +probe_robo_switch(void) +{ + int dev; + int max_devices, max_bustype; + uint8 buf[8]; + unsigned short phyidh = 0, phyidl = 0; +#if defined(KEYSTONE) + uint32 spi_freq = 0; +#endif +#if defined(IPROC_CMICD) + sal_vaddr_t addr_base; + uint32 data_reg; +#endif /* IPROC_CMICD */ + + + spin_lock_init(&bus_lock); + + if (_switch_ndevices) { + /* + * Currently skip probe robo if esw chips were found + * FIX this while combined plateform support. + */ + return robo_switch; + } + + /* Get Robo device handle */ + if (robo == NULL) { + sbh = (void *)SOC_ATTACH(NULL); + if (sbh == NULL) { + return -ENODEV; + } + } + +#if defined(IPROC_CMICD) && defined(BCM_STARFIGHTER3_SUPPORT) + robo_switch = probe_robo_switch_iproc_spi(); + + if (robo_switch > 0) { + /* Robo switch found by SPI probe */ + spi_device_found = 1; + gprintk("SPI device found, Skipping SRAB probe\n"); + return robo_switch; + } else { + gprintk("SPI device NOT found, Probe SRAB probe\n"); + ROBO_DETACH_SPI(robo); + } +#endif + + if (robo == NULL) { + robo = (void *)ROBO_ATTACH(sbh, 0); + } + if (robo == NULL) { + return -ENODEV; + } + + max_bustype = MAX_BUSTYPE + 1; + + while(_spi_device_valid_check(phyidh, 0, 0)) { + max_bustype --; + if(!max_bustype) + return -ENODEV; + ROBO_SWITCH_BUS(robo, max_bustype); + buf[0] = buf[1] = 0; + ROBO_RREG(robo, 0, 0x10, 0x04, buf, (uint)2); + phyidh = buf[0] | (buf[1] << 8); + /* re-try */ + if ((phyidh == 0x0) || (phyidh == 0xffff)) { + ROBO_RREG(robo, 0, 0x10, 0x04, buf, (uint)2); + phyidh = buf[0] | (buf[1] << 8); + } + } + + /* For psedo_phy access, only support one robo switch*/ + /* For Northstar, only one switch on SRAB interface */ + max_devices = (max_bustype == MAX_BUSTYPE) ? 1 : LINUX_BDE_MAX_SWITCH_DEVICES; + + for (dev = 0; dev < max_devices; dev++) { + bde_ctrl_t *ctrl; + int match_idx, i; + unsigned short phyidl_nr; /* phyidl with revision stripped */ + uint16 model_id; + uint8 rev_id; +#if defined(KEYSTONE) || defined(IPROC_CMICD) + uint32 addr, len; +#endif + uint32 mlen, op; + + if (_switch_ndevices >= LINUX_BDE_MAX_SWITCH_DEVICES) { + break; + } + buf[0] = buf[1] = 0; + ROBO_RREG(robo, dev, 0x10, 0x04, buf, (uint)2); + phyidh = buf[0] | (buf[1] << 8); + + buf[0] = buf[1] = 0; + ROBO_RREG(robo, dev, 0x10, 0x06, buf, (uint)2); + phyidl = buf[0] | (buf[1] << 8); + + /* Strip revision */ + phyidl_nr = phyidl & 0xfff0; + + match_idx = _spi_device_valid_check(phyidh, phyidl_nr, 1); + if (match_idx == -1) { + if (debug >= 1) gprintk("found %d robo device(s).\n", robo_switch); + break; + } + + if(_spi_id_table[match_idx].model_info){ +#if defined(KEYSTONE) || defined(IPROC_CMICD) + addr = _spi_id_table[match_idx].model_info & 0xffff; + len = (_spi_id_table[match_idx].model_info >> 16) & 0xf; +#endif + ROBO_RREG(robo, dev, (addr >> 8), (addr & 0xff), buf, (uint)len); + mlen = (_spi_id_table[match_idx].model_info >> 20) & 0xf; + model_id = 0; + for (i = 0; i < mlen; i++) + model_id |= buf[i] << (i << 3); + op = (_spi_id_table[match_idx].model_info >> 28) & 0xf; + if(op == 1) { + model_id |= phyidl_nr; +#if defined(IPROC_CMICD) + } else if (op == 2) { + /* The package id of NS+ is determined by : + * Write 0 to 0x18012120 (PAXB_0_CONFIG_IND_ADDR) + * Read 0x18012124 (PAX_B_CONFIG_IND_DATA), + * bits 31:16 will be the device id from OTP space + */ +#define PAXB_ENUM_BASE (0x18012000) +#define PAXB_CONFIG_IND_ADDR_OFFSET (0x120) +#define PAXB_CONFIG_IND_DATA_OFFSET (0x124) + + addr_base = (sal_vaddr_t)IOREMAP(PAXB_ENUM_BASE, 0x1000); + if (!addr_base) { + gprintk("ioremap of PAXB registers failed\n"); + } else { + writel(0x0, (uint32 *)(addr_base + + PAXB_CONFIG_IND_ADDR_OFFSET)); + data_reg = readl((uint32 *)(addr_base + + PAXB_CONFIG_IND_DATA_OFFSET)); + model_id = (data_reg >> 16); + iounmap((void *)addr_base); + + /* + * Some model ID can't be determined by PCIE device ID + * It needs to refer some OTP values. + */ + robo_model_id_adjust_from_otp(robo, &model_id); + } + +#undef PAXB_ENUM_BASE +#undef PAXB_CONFIG_IND_ADDR_OFFSET +#undef PAXB_CONFIG_IND_DATA_OFFSET +#endif /* IPROC_CMICD */ + } + } else { + model_id = phyidl_nr; + } + if(_spi_id_table[match_idx].rev_info){ +#if defined(KEYSTONE) || defined(IPROC_CMICD) + addr = _spi_id_table[match_idx].rev_info & 0xffff; + len = (_spi_id_table[match_idx].rev_info >> 16) & 0xf; +#endif + ROBO_RREG(robo, dev, (addr >> 8), (addr & 0xff), buf, (uint)len); + mlen = (_spi_id_table[match_idx].rev_info >> 20) & 0xf; + rev_id = 0; + for (i = 0; i < mlen; i++) + rev_id |= buf[i] << (i << 3); + } else { + rev_id = phyidl & 0xf; + } + gprintk("found robo device with %d:%04x:%04x:%04x:%02x\n", + dev, phyidh, phyidl, model_id, rev_id); + + ROBO_SELECT_DEVICE(robo, phyidh, phyidl); + + /* Match supported chips */ + ctrl = _devices + _ndevices++; + _switch_ndevices++; + + if (NULL == (ctrl->spi_device = (struct spi_dev *) + KMALLOC(sizeof(struct spi_dev), GFP_KERNEL))) { + gprintk("no memory available"); + return -ENOMEM; + } + ctrl->dev_type = (BDE_SPI_DEV_TYPE | BDE_SWITCH_DEV_TYPE); + ctrl->spi_device->cid = dev; + ctrl->spi_device->part = model_id; + ctrl->spi_device->rev = rev_id; + ctrl->spi_device->robo = robo; + ctrl->spi_device->phyid_high = phyidh; + ctrl->spi_device->phyid_low = phyidl; + ctrl->bde_dev.device = model_id; + ctrl->bde_dev.rev = rev_id; + ctrl->bde_dev.base_address = (sal_vaddr_t)NULL; + ctrl->isr = NULL; + ctrl->isr_data = NULL; + robo_switch++; + +#if defined(KEYSTONE) + spi_freq = _spi_id_table[match_idx].spifreq; +#endif + } + +#if defined(KEYSTONE) + /* Override the SPI frequency from user configuration */ + if (spifreq != 0) { + spi_freq = spifreq; + } + if (spi_freq != 0) { + /* + * The underlying chip can support the SPI frequency + * higher than default (2MHz). + */ + if (spi_freq != SPI_FREQ_DEFAULT) { + chipc_spi_set_freq(robo, 0, spi_freq); + } + } +#endif + return robo_switch; + +} + +#endif + +#if defined(BCM_METROCORE_LOCAL_BUS) +static bde_ctrl_t* +map_local_bus(uint64_t addr, uint32_t size) +{ + bde_ctrl_t *ctrl; + + ctrl = _devices + _ndevices++; + _switch_ndevices++; + + /* + * For now: use EB type as `local bus' + * (memory mapped, no DMA, no interrupts) + * metrocore local bus supports interrupts, but we don't use them. + */ + ctrl->dev_type |= BDE_EB_DEV_TYPE | BDE_SWITCH_DEV_TYPE + | (size > 64 * 1024 ? BDE_128K_REG_SPACE : 0); + ctrl->pci_device = NULL; /* No PCI bus */ + + /* Map in the device */ + ctrl->bde_dev.base_address = (sal_vaddr_t)IOREMAP(addr, size); + ctrl->phys_address = addr; + + return(ctrl); +} + +#define BME_REVISION_OFFSET (0x0) + +#endif + + +#ifdef BCM_METROCORE_LOCAL_BUS + /* + * SBX platform has both PCI- and local bus-attached devices + * The local bus devices have fixed address ranges (and don't + * support or require DMA), but are otherwise the same as PCI devices + */ +#define FPGA_IRQ 37 +#define FPGA_PHYS 0x100E0000 +#define BME_PHYS 0x100C0000 +#define SE_PHYS 0x100D0000 +#define FPGA_SIZE 0x00004000 +#define BME_SIZE 0x00004000 +#define MAC0_PHYS 0x100B0000 +#define MAC1_PHYS 0x100B8000 +#define MAC_SIZE 0x800 + + +/* + * Please refer to "Supervisor Fabric Module (SFM) Specification" + * page 23 for the following registers. + */ +#define FPGA_LC_POWER_DISABLE_OFFSET 0x4 +#define FPGA_LC_POWER_DISABLE_ENABLE_ALL_MASK 0x1e + +#define FPGA_LC_POWER_RESET_OFFSET 0x5 +#define FPGA_LC_POWER_RESET_ENABLE_ALL_MASK 0x1e + +#define FPGA_SW_SFM_MASTER_MODE_OFFSET 0x14 +#define FPGA_SW_SFM_MASTER_MODE_ENABLE_MASK 0x10 + + +static int +probe_metrocore_local_bus(void) { + bde_ctrl_t *ctrl; + uint32_t dev_rev_id; + VOL uint8_t *fpga; + + /* + * Write the FPGA on the fabric card, to let metrocore + * line cards out of reset. We actually don't bother to determine whether + * the card is a line card or a fabric card because when we do + * this on the line cards, it has no effect. + */ + fpga = (uint8_t *) IOREMAP(FPGA_PHYS, FPGA_SIZE); + fpga[FPGA_SW_SFM_MASTER_MODE_OFFSET] + |= FPGA_SW_SFM_MASTER_MODE_ENABLE_MASK; + fpga[FPGA_LC_POWER_DISABLE_OFFSET] + |= FPGA_LC_POWER_DISABLE_ENABLE_ALL_MASK; + fpga[FPGA_LC_POWER_RESET_OFFSET] + |= FPGA_LC_POWER_RESET_ENABLE_ALL_MASK; + + ctrl = map_local_bus(BME_PHYS, BME_SIZE); + + dev_rev_id = + *((uint32_t *) + (((uint8_t *) ctrl->bde_dev.base_address) + BME_REVISION_OFFSET)); + ctrl->bde_dev.device = dev_rev_id >> 16; + ctrl->bde_dev.rev = (dev_rev_id & 0xFF); + + if ((ctrl->bde_dev.device != BME3200_DEVICE_ID) && + (ctrl->bde_dev.device != BCM88130_DEVICE_ID)) { + gprintk("probe_metrocore_local_bus: wrong BME type: " + "0x%x (vs 0x%x or 0x%x)\n", + ctrl->bde_dev.device, BME3200_DEVICE_ID, BCM88130_DEVICE_ID); + return -1; + } + + ctrl->iLine = FPGA_IRQ; + ctrl->isr = NULL; + ctrl->isr_data = NULL; + + /* + * + * We start from SE & include the FPGA, which is 128k + */ + ctrl = map_local_bus(SE_PHYS, 128 * 1024); + + dev_rev_id = + *((uint32_t *) + (((uint8_t *) ctrl->bde_dev.base_address) + BME_REVISION_OFFSET)); + ctrl->bde_dev.device = dev_rev_id >> 16; + ctrl->bde_dev.rev = (dev_rev_id & 0xFF); + + if ((ctrl->bde_dev.device != BME3200_DEVICE_ID) && + (ctrl->bde_dev.device != BCM88130_DEVICE_ID)) { + gprintk("probe_metrocore_local_bus: wrong SE (BME) type: " + "0x%x (vs 0x%x)\n", + ctrl->bde_dev.device, BME3200_DEVICE_ID); + return -1; + } + + ctrl->iLine = FPGA_IRQ; + ctrl->isr = NULL; + ctrl->isr_data = NULL; + + return 0; +} +#endif + +#ifdef BCM_PLX9656_LOCAL_BUS + +#if 1 +#define DEV_REG_BASE_OFFSET PL0_OFFSET /* Polaris register base */ +#define DEV_REG_DEVID 0 /* Device ID is first register */ +#endif + +/* + * The difference at map_local_bus2: + * + * The PLX9656 PCI-to-LOCAL bridge chip already has been iomapped the + * whole address space. So the devices off local bus don't need to be + * mapped again. They only need to claim their own sub-space. + */ +static bde_ctrl_t * +map_local_bus2(bde_ctrl_t *plx_ctrl, uint32_t dev_base, uint32_t size) +{ + uint32_t dev_rev_id; + uint8_t *addr; + bde_ctrl_t *ctrl; + + ctrl = _devices + _ndevices++; + _switch_ndevices++; + + /* + * For now: use EB type as `local bus' + * (memory mapped, no DMA, no interrupts) + * metrocore local bus supports interrupts, but we don't use them. + */ + ctrl->dev_type |= BDE_EB_DEV_TYPE | BDE_SWITCH_DEV_TYPE; + ctrl->dev_type |= BDE_320K_REG_SPACE; /* Polaris 18 bits address + FPGA */ + ctrl->pci_device = NULL; /* No PCI bus */ + + /* Map in the device */ + ctrl->bde_dev.base_address = plx_ctrl->bde_dev.base_address + dev_base; + ctrl->phys_address = plx_ctrl->phys_address + (resource_size_t)dev_base; + +#if 1 + addr = (uint8_t *)ctrl->bde_dev.base_address + PL0_REVISION_REG; +#endif + dev_rev_id = readl(addr); + ctrl->bde_dev.device = dev_rev_id >> 16; + ctrl->bde_dev.rev = (dev_rev_id & 0xFF); + + switch (ctrl->bde_dev.device) { + case BCM88130_DEVICE_ID: + case BME3200_DEVICE_ID: + break; + default: + gprintk("wrong BME type: 0x%x (vs 0x%x or 0x%x)\n", + ctrl->bde_dev.device, BME3200_DEVICE_ID, BCM88130_DEVICE_ID); + return 0; + } + return(ctrl); +} + +static int +probe_plx_local_bus(void) +{ + bde_ctrl_t *ctrl; + uint32_t val; + uint8_t *addr; + char addr_hi_str[16]; + + if (num_plx > 1) { + printk(KERN_ERR "There's more than one PLX 9656/9056 chip\n"); + return -1; + } + addr_hi_str[0] = 0; +#ifdef PHYS_ADDR_IS_64BIT + sprintf(addr_hi_str, "%08x", (uint32_t)(plx_ctrl.phys_address >> 32)); +#endif + printk(KERN_ERR "Found PLX %04x:%04x vir: 0x%08x phy: 0x%s%08x\n", + plx_ctrl.bde_dev.device, plx_ctrl.bde_dev.rev, + plx_ctrl.bde_dev.base_address, addr_hi_str, + (uint32_t)(plx_ctrl.phys_address)); + + addr = (uint8_t *)plx_ctrl.bde_dev.base_address + CPLD_OFFSET + CPLD_REVISION_REG; + val = readl(addr); + printk(KERN_ERR "plx: CPLD revision %d\n", val & CPLD_REVISION_MASK); +#if 000 + addr = (uint8_t *)plx_ctrl.bde_dev.base_address + CPLD_OFFSET + CPLD_RESET_REG; + writel(CPLD_RESET_NONE, addr); +#endif +#if 1 + ctrl = map_local_bus2(&plx_ctrl, PL0_OFFSET, PL0_SIZE); +#endif + if (ctrl == 0) + return -1; + + /* Uses PLX IRQ for Polaris LC */ + ctrl->iLine = 48; + ctrl->isr = NULL; + ctrl->isr_data = NULL; + + return 0; +} + +#endif /* BCM_PLX9656_LOCAL_BUS */ + +#if defined(BCM_EA_SUPPORT) +#if defined(BCM_TK371X_SUPPORT) +static void +probe_tk371x_dev(void) +{ + bde_ctrl_t *ctrl; + int ea_uid=0; + + /* eadevices is from the argument of insmod */ + for (ea_uid = 0; ea_uid < eadevices; ea_uid++) { + ctrl = _devices + _ndevices++; + _switch_ndevices++; + ctrl->dev_type = (BDE_MII_DEV_TYPE | BDE_SWITCH_DEV_TYPE); + ctrl->bde_dev.device = TK371X_DEVICE_ID; + ctrl->bde_dev.rev = 0x0; + ctrl->bde_dev.base_address = (sal_vaddr_t)NULL; + ctrl->iLine = 0; + } +} +#endif /* BCM_TK371X_SUPPORT*/ +#endif /* BCM_EA_SUPPORT */ + + +#if defined(BCM_ROBO_SUPPORT) +#if defined(IPROC_CMICD) +struct chip_device_info { + uint32 cc_base; /* Chip-common register base */ + uint32 cc_size; /* Chip-common register limit */ + uint32 cid_reg_off; /* Chip id register offset */ +}; + +static struct chip_device_info _chip_table = { +#if defined(IPROC_CMICD) + 0x18000000, 0x00000300, 0x00000000 +#else + 0,0,0 +#endif +}; + +struct gmac_device_info { + uint32 cid; /* chip id */ + uint32 rid; /* revision id */ + uint32 pid; /* package id */ + + uint32 gmac_dev_id; /* gmac core device id */ + uint32 gmac_base_addr; /* gmac core base address */ + int gmac_irq; /* gmac irq number */ +}; + +static struct gmac_device_info _gmac_table[] = { +#if defined(IPROC_CMICD) + {BCM53010_CHIP_ID, 0, 0, BCM53010_GMAC_ID, 0x18026000, 181}, /* BCM53012 */ + {BCM53010_CHIP_ID, 0, 2, BCM53010_GMAC_ID, 0x18026000, 181}, /* BCM53011 */ + {BCM53010_CHIP_ID, 0, 1, BCM53010_GMAC_ID, 0x18026000, 181}, /* BCM53010 */ + {BCM53018_CHIP_ID, 0, 0, BCM53010_GMAC_ID, 0x18026000, 181}, /* BCM53018 */ + {BCM53018_CHIP_ID, 0, 2, BCM53010_GMAC_ID, 0x18026000, 181}, /* BCM53017 */ + {BCM53018_CHIP_ID, 0, 1, BCM53010_GMAC_ID, 0x18026000, 181}, /* BCM53019 */ + {BCM53020_CHIP_ID, 0, 0, BCM53010_GMAC_ID, 0x18024000, 181}, /* BCM53022 */ + {BCM53020_CHIP_ID, 4, 0, BCM53010_GMAC_ID, 0x18023000, 180}, /* BCM53022 */ +#endif + {0,0,0,0,0,0} +}; + +static sal_vaddr_t _cca_base = 0; + +static int +_gmac_dev_create(void) +{ + bde_ctrl_t *ctrl; + uint32 gmac_base = 0; + uint32 offset = 0; + uint32 cca_cid; + uint32 cid, rid, pid; + int i = 0, found; + + if (_chip_table.cc_base == 0) { + gprintk("Create GMAC device failed. Unable to identify CPU.\n"); + return -1; + } + + /* 1. Determine which CPU/GMAC configuration is now */ + _cca_base = (sal_vaddr_t)IOREMAP(_chip_table.cc_base, _chip_table.cc_size); + cca_cid = readl((uint32 *)(_cca_base + _chip_table.cid_reg_off)); + + cid = cca_cid & CID_ID_MASK; + rid = (cca_cid & CID_REV_MASK) >> CID_REV_SHIFT; + pid = (cca_cid & CID_PKG_MASK) >> CID_PKG_SHIFT; + + found = 0; + for (i = 0; ; i++) { + if (_gmac_table[i].cid == 0) { + /* End of table */ + break; + } + if ((_gmac_table[i].cid == cid) && + (_gmac_table[i].rid == rid) && + (_gmac_table[i].pid == pid)) { + /* found */ + found = 1; + break; + } + } + if (!found) { + gprintk("Create GMAC device failed. Unable to identify GMAC device.\n"); + } + + /* 2. Create GMAC device */ + /* fill-in necessary information depends on the CPU/GMAC configuration */ + if ((cid == BCM53010_CHIP_ID) || (cid == BCM53018_CHIP_ID) || + (cid == BCM53020_CHIP_ID)) { + ctrl = _devices + _ndevices++; + _ether_ndevices++; + + ctrl->dev_type |= BDE_ETHER_DEV_TYPE; + ctrl->dev_type |= BDE_PCI_DEV_TYPE; + + ctrl->iLine = _gmac_table[i].gmac_irq; + + ctrl->be_pio = 0; + + ctrl->bde_dev.rev = _gmac_table[i].rid; + ctrl->bde_dev.device = _gmac_table[i].gmac_dev_id; + + gmac_base = 0x18000000; + offset = _gmac_table[i].gmac_base_addr - gmac_base; + ctrl->bde_dev.base_address = (sal_vaddr_t)IOREMAP(gmac_base, 0x300000); + ctrl->alt_base_addr = ctrl->bde_dev.base_address + offset; + ctrl->phys_address = gmac_base; + + ctrl->isr = NULL; + ctrl->isr_data = NULL; + } + + return 0; +} +#endif +#endif + +/* + * Generic module functions + */ + +/* + * Function: _init + * + * Purpose: + * Module initialization. + * Attaches to kernel BDE. + * Parameters: + * None + * Returns: + * 0 on success, < 0 on error. + */ +static int +_init(void) +{ + +#ifdef IPROC_CMICD + if (iproc_has_cmicd()) { + iproc_cmicd_get_memregion(&iproc_cmicd_resources[IPROC_CMICD_RES_MEM]); + iproc_platform_driver_register(&iproc_cmicd_driver); +#ifdef CONFIG_OF + if (!of_find_compatible_node(NULL, NULL, IPROC_CMICD_COMPATIBLE)) +#endif + { + /* Register platform device if no device node in dtb */ + iproc_platform_device_register(&iproc_cmicd_pdev); + } + } +#endif /* IPROC_CMICD */ + +#ifdef BCM_ICS + _ics_bde_create(); +#else /* PCI */ + /* Register our goodies */ + _device_driver.name = LINUX_KERNEL_BDE_NAME; + +#if defined(BCM_ROBO_SUPPORT) +#if defined(IPROC_CMICD) + if (_gmac_dev_create()) { + return -ENODEV; + } +#endif +#endif /* defined (BCM_ROBO_SUPPORT) */ + + /* Configure MSI interrupt support */ + use_msi = usemsi; + +#ifdef CONFIG_PCI_MSI + if (use_msi == PCI_USE_INT_NONE) { + /* Compilation flag determines default value */ +#ifdef BDE_LINUX_USE_MSIX_INTERRUPT +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) + use_msi = PCI_USE_INT_MSIX; +#else + use_msi = PCI_USE_INT_MSI; +#endif +#elif defined(BDE_LINUX_USE_MSI_INTERRUPT) + use_msi = PCI_USE_INT_MSI; +#else + use_msi = PCI_USE_INT_INTX; +#endif + } +#else + if (use_msi > PCI_USE_INT_INTX) { + /* Warn if invalid configuration */ + gprintk("MSI interrupts not supported by kernel\n"); + } + use_msi = PCI_USE_INT_INTX; +#endif /* CONFIG_PCI_MSI */ + + if (unlikely(debug >= 1)) + gprintk("%s(%d):use_mse = %d\n", __func__, __LINE__, use_msi); + if (spi_devid) { + _spi_device_setup(); + } else { + if (pci_register_driver(&_device_driver) < 0) { + return -ENODEV; + } + } + + /* Note: PCI-PCI bridge uses results from pci_register_driver */ + p2p_bridge(); + +#ifdef BCM_METROCORE_LOCAL_BUS + if (probe_metrocore_local_bus()) { + return -1; + } +#endif +#ifdef BCM_PLX9656_LOCAL_BUS + if (num_plx > 0) { + probe_plx_local_bus(); + } +#endif +#endif /* BCM_ICS */ + +#ifdef BCM_ROBO_SUPPORT + probe_robo_switch(); +#endif + +#if defined(BCM_PETRA_SUPPORT) || defined(BCM_DFE_SUPPORT) || defined(BCM_DNX_SUPPORT) || defined(BCM_DNXF_SUPPORT) + sand_device_create(); +#endif + +#if defined(BCM_TK371X_SUPPORT) + probe_tk371x_dev(); +#endif + /* + * Probe for EB Bus devices. + */ + if (eb_bus) { + char *tok; + uint irq = -1, eb_rd16bit=0, eb_wr16bit =0; + unsigned int eb_ba = 0x0; + + gprintk("EB bus info: %s\n", eb_bus); + tok = strtok(eb_bus,","); + while (tok) { + _parse_eb_args(tok, "BA=%x IRQ=%d RD16=%d WR16=%d", + &eb_ba, &irq, &eb_rd16bit, &eb_wr16bit); + _eb_device_create(eb_ba, irq, eb_rd16bit, eb_wr16bit); + tok = strtok(NULL,","); + } + } + + _dma_init(robo_switch); + + /* + * In order to be backward compatible with the user mode BDE + * (specifically the interrupt IOCTLs) and the CM, switch devices + * *must* come first. If this is not the case (due to the probing + * order), we let the non-switch device(s) drop down to the end of + * the device array. + */ + if (_switch_ndevices > 0) { + bde_ctrl_t tmp_dev; + int i, s = 0; + + while (s < _switch_ndevices) { + if (_devices[s].dev_type & BDE_SWITCH_DEV_TYPE) { + s++; + continue; + } + tmp_dev = _devices[s]; + for (i = s; i < _ndevices - 1; i++) { + _devices[i] = _devices[i+1]; + } + _devices[i] = tmp_dev; + } + } + + /* Initialize device locks */ + if (_ndevices > 0) { + int i; + + for (i = 0; i < _ndevices; i++) { + spin_lock_init(&_devices[i].lock); + } + } + + return 0; +} + +/* + * Function: _cleanup + * + * Purpose: + * Module cleanup function. + * Parameters: + * None + * Returns: + * Always 0 + */ +static int +_cleanup(void) +{ + int i; + + _dma_cleanup(); + +#ifdef IPROC_CMICD + if (iproc_has_cmicd()) { +#ifdef CONFIG_OF + if (!of_find_compatible_node(NULL, NULL, IPROC_CMICD_COMPATIBLE)) +#endif + { + iproc_platform_device_unregister(&iproc_cmicd_pdev); + } + iproc_platform_driver_unregister(&iproc_cmicd_driver); + } +#endif + +#if defined(BCM_ROBO_SUPPORT) +#if defined(IPROC_CMICD) + if (_cca_base) { + iounmap((void *)_cca_base); + } +#endif + + if (robo) { +#if defined(KEYSTONE) || defined(IPROC_CMICD) + robo_detach(robo); +#endif /* KEYSTONE || IPROC_CMICD */ + } + if (sbh) { +#if defined(KEYSTONE) || defined(IPROC_CMICD) + ai_soc_detach(sbh); +#endif /* KEYSTONE || IPROC_CMICD */ + } +#endif + for (i = 0; i < _ndevices; i++) { + bde_ctrl_t *ctrl = _devices + i; + + /* free allocated kernel space memory */ + if (ctrl->dev_type & BDE_SPI_DEV_TYPE) { + if (ctrl->spi_device) { + kfree(ctrl->spi_device); + } + } + } +#if (defined(BCM_PETRA_SUPPORT) || defined(BCM_DFE_SUPPORT) || defined(BCM_DNX_SUPPORT) || defined(BCM_DNXF_SUPPORT)) && (defined(__DUNE_WRX_BCM_CPU__) || defined(__DUNE_GTO_BCM_CPU__)) + if (cpu_address) { /* unmap CPU card MMIO */ + iounmap(cpu_address); + cpu_address = NULL; + } +#endif + +#ifdef BCM_ICS +#else + pci_unregister_driver(&_device_driver); +#endif /* BCM_ICS */ + return 0; +} + +/* + * Function: _pprint + * + * Purpose: + * Print proc filesystem information. + * Parameters: + * None + * Returns: + * Always 0 + */ +static int +_pprint(void) +{ + int i = 0; + + pprintf("Broadcom Device Enumerator (%s)\n", LINUX_KERNEL_BDE_NAME); + + _dma_pprint(); + + if (_ndevices == 0) { + pprintf("No devices found\n"); + } else { + pprintf("Devices:\n"); + } + for (i = 0; i < _ndevices; i++) { + bde_ctrl_t *ctrl = _devices + i; + + if (ctrl->dev_type & BDE_SWITCH_DEV_TYPE) { + pprintf("\t%d (swi) : ", i); + } else if (ctrl->dev_type & BDE_ETHER_DEV_TYPE) { + pprintf("\t%d (eth) : ", i); + } else if (ctrl->dev_type & BDE_CPU_DEV_TYPE) { + pprintf("\t%d (cpu) : ", i); + } else { + pprintf("\t%d (?) : ", i); + } + + if (ctrl->dev_state == BDE_DEV_STATE_REMOVED) { + pprintf("PCI device 0x%x:0x%x:%d REMOVED\n", + ctrl->pci_device->vendor, + ctrl->pci_device->device, + ctrl->bde_dev.rev); + continue; + } + if (ctrl->dev_type & BDE_PCI_DEV_TYPE) { + pprintf("PCI device 0x%x:0x%x:%d:0x%.8lx:0x%.8lx:%d%s\n", + ctrl->pci_device->vendor, + ctrl->pci_device->device, + ctrl->bde_dev.rev, + (unsigned long)pci_resource_start(ctrl->pci_device, 0), + (unsigned long)pci_resource_start(ctrl->pci_device, 2), + ctrl->pci_device->irq, + ctrl->use_msi ? " (MSI)" : ""); + } else if (ctrl->dev_type & BDE_SPI_DEV_TYPE) { + pprintf("SPI Device %d:%x:%x:0x%x:0x%x:%d\n", + ctrl->spi_device->cid, + ctrl->spi_device->part, + ctrl->spi_device->rev, + ctrl->spi_device->phyid_high, + ctrl->spi_device->phyid_low, + ctrl->bde_dev.rev); + } else if (ctrl->dev_type & BDE_ICS_DEV_TYPE) { + pprintf("ICS Device 0x%x:0x%x\n", + ctrl->bde_dev.device, + ctrl->bde_dev.rev); + } else if (ctrl->dev_type & BDE_AXI_DEV_TYPE) { + pprintf("AXI Device 0x%x:0x%x:0x%.8lx:%d\n", + ctrl->bde_dev.device, + ctrl->bde_dev.rev, + (unsigned long)ctrl->phys_address, + ctrl->iLine); + } else if (ctrl->dev_type & BDE_EB_DEV_TYPE) { + pprintf("EB Bus Device 0x%x:0x%x\n", + ctrl->bde_dev.device, + ctrl->bde_dev.rev); + } + if (debug >= 1) { + pprintf("\t\timask:imask2:fmask 0x%x:0x%x:0x%x\n", + ctrl->imask, + ctrl->imask2, + ctrl->fmask); + } + } + return 0; +} + +#if USE_LINUX_BDE_MMAP +/* + * Some kernels (mainly x86) prevent mapping of kernel RAM memory to + * user space via the /dev/mem device. The function below provides a + * backdoor to mapping the DMA pool to user space via the + * /dev/linux-kernel-bde device. + */ +static int _mmap(struct file *filp, struct vm_area_struct *vma) +{ + unsigned long phys_addr = vma->vm_pgoff << PAGE_SHIFT; + unsigned long size = vma->vm_end - vma->vm_start; + + if(!_dma_range_valid(phys_addr, size)) { + return -EINVAL; + } + +#ifdef REMAP_DMA_NONCACHED + vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot); +#endif + + if (remap_pfn_range(vma, + vma->vm_start, + vma->vm_pgoff, + size, + vma->vm_page_prot)) { + gprintk("Failed to mmap phys range 0x%lx-0x%lx to 0x%lx-0x%lx\n", + phys_addr, phys_addr + size, vma->vm_start,vma->vm_end); + return -EAGAIN; + } + + return 0; +} +#endif /* USE_LINUX_BDE_MMAP */ + +/* Workaround for broken Busybox/PPC insmod */ +static char _modname[] = LINUX_KERNEL_BDE_NAME; + +static gmodule_t _gmodule = { + name: LINUX_KERNEL_BDE_NAME, + major: LINUX_KERNEL_BDE_MAJOR, + init: _init, + cleanup: _cleanup, + pprint: _pprint, +#if USE_LINUX_BDE_MMAP + mmap: _mmap, +#endif +}; + +gmodule_t * +gmodule_get(void) +{ + _gmodule.name = _modname; + return &_gmodule; +} + + +/* + * BDE Interface + */ + +static const char * +_name(void) +{ + return LINUX_KERNEL_BDE_NAME; +} + +static int +_num_devices(int type) +{ + switch (type) { + case BDE_ALL_DEVICES: + return _ndevices; + case BDE_SWITCH_DEVICES: + return _switch_ndevices; + case BDE_ETHER_DEVICES: + return _ether_ndevices; + case BDE_CPU_DEVICES: + return _cpu_ndevices; + } + + return 0; +} + +static const ibde_dev_t * +_get_dev(int d) +{ + if (!VALID_DEVICE(d)) { + gprintk("_get_dev: Invalid device index %d\n", d); + return NULL; + } + + return &_devices[d].bde_dev; +} + +static uint32 +_get_dev_type(int d) +{ + if (!VALID_DEVICE(d)) { + gprintk("_get_dev: Invalid device index %d\n", d); + return 0; + } + + return _devices[d].dev_type; +} + +static uint32 +_pci_conf_read(int d, uint32 addr) +{ +#ifdef BCM_ICS + return 0xFFFFFFFF; +#else + uint32 rc = 0; + + if (!VALID_DEVICE(d)) { + gprintk("_pci_conf_read: Invalid device index %d\n", d); + return 0xFFFFFFFF; + } + + if (!(_devices[d].dev_type & BDE_PCI_DEV_TYPE)) { + gprintk("_pci_conf_read: Not PCI device %d, type %x\n", + d, _devices[d].dev_type); + return 0xFFFFFFFF; + } + + pci_read_config_dword(_devices[d].pci_device, addr, &rc); + return rc; +#endif /* BCM_ICS */ +} + +static int +_pci_conf_write(int d, uint32 addr, uint32 data) +{ +#ifdef BCM_ICS + return -1; +#else + if (!VALID_DEVICE(d)) { + gprintk("_pci_conf_write: Invalid device index %d\n", d); + return -1; + } + + if (!(_devices[d].dev_type & BDE_PCI_DEV_TYPE)) { + gprintk("_pci_conf_write: Not PCI device %d, type %x\n", + d, _devices[d].dev_type); + return -1; + } + + pci_write_config_dword(_devices[d].pci_device, addr, data); + return 0; +#endif /* BCM_ICS */ +} + +/* Initialized when the bde is created */ +static linux_bde_bus_t _bus; + +static void +_pci_bus_features(int unit, int *be_pio, int *be_packet, int *be_other) +{ + if ((_devices[unit].bde_dev.device & 0xFF00) != 0x5600 && + (_devices[unit].bde_dev.device & 0xF000) != 0xc000 && + (_devices[unit].bde_dev.device & 0xF000) != 0xb000 && + (_devices[unit].bde_dev.device & 0xF000) != 0x8000 && + (_devices[unit].bde_dev.device & 0xFFF0) != 0x0230 && + (_devices[unit].bde_dev.device & 0xFFF0) != 0xa440) { + if (be_pio) *be_pio = 0; + if (be_packet) *be_packet = 0; + if (be_other) *be_other = 0; + } else { + if (be_pio) *be_pio = _bus.be_pio; + if (be_packet) *be_packet = _bus.be_packet; + if (be_other) *be_other = _bus.be_other; + } +#if defined(BCM_METROCORE_LOCAL_BUS) + if (_devices[unit].dev_type & BDE_EB_DEV_TYPE && be_pio) { + *be_pio = 1; + } +#endif + +} + +static uint32_t +_read(int d, uint32_t addr) +{ + unsigned long flags; + volatile uint16 msb, lsb; + uint32 sl_addr, data; + + if (!VALID_DEVICE(d)) { + return -1; + } + + if (!(BDE_DEV_MEM_MAPPED(_devices[d].dev_type))) { + return -1; + } + + if (_devices[d].dev_type & BDE_DEV_BUS_RD_16BIT) { + /* + * Adjust the address presented to Eb slave. Move A15:A0 to A16:A1. + */ + sl_addr = (addr & 0xffff0000) | ((addr & 0xffff) << 1); + /* Disable interrupts */ + spin_lock_irqsave(&bus_lock, flags); + + lsb = *((uint16 *)(_devices[d].bde_dev.base_address + sl_addr)); + msb = *((uint16 *)(_devices[d].bde_dev.base_address + sl_addr)); + spin_unlock_irqrestore(&bus_lock, flags); + + return (msb << 16) | lsb; + } else { + data = ((VOL uint32_t *)_devices[d].bde_dev.base_address)[addr / 4]; +#if defined(CMIC_SOFT_BYTE_SWAP) + data = CMIC_SWAP32(data); +#endif + return data; + } +} + +static int +_write(int d, uint32_t addr, uint32_t data) +{ + unsigned long flags; + uint32 sl_addr; + + if (!VALID_DEVICE(d)) { + return -1; + } + + if (!(BDE_DEV_MEM_MAPPED(_devices[d].dev_type))) { + return -1; + } + + if (_devices[d].dev_type & BDE_DEV_BUS_WR_16BIT) { + /* + * Adjust the address presented to Eb slave. Move A15:A0 to A16:A1. + */ + sl_addr = (addr & 0xffff0000) | ((addr & 0xffff) << 1); + + /* Disable interrupts */ + spin_lock_irqsave(&bus_lock, flags); + + *((VOL uint16 *)(_devices[d].bde_dev.base_address + sl_addr)) = + data & 0xffff; + *((VOL uint16 *)(_devices[d].bde_dev.base_address + sl_addr)) = + (data >> 16) & 0xffff; + spin_unlock_irqrestore(&bus_lock, flags); + } else { +#if defined(CMIC_SOFT_BYTE_SWAP) + data = CMIC_SWAP32(data); +#endif + ((VOL uint32_t *)_devices[d].bde_dev.base_address)[addr / 4] = data; +#ifdef KEYSTONE + /* Enforce PCIe transaction ordering. Commit the write transaction */ + __asm__ __volatile__("sync"); +#endif + } + return 0; + +} + +static _ISR_RET +_isr(_ISR_PARAMS(irq, dev_id, iregs)) +{ + bde_ctrl_t *ctrl = (bde_ctrl_t *) dev_id; + + if (ctrl && ctrl->isr) { + ctrl->isr(ctrl->isr_data); + } + if (ctrl && ctrl->isr2) { + ctrl->isr2(ctrl->isr2_data); + } + return IRQ_HANDLED; +} + +static int +_interrupt_connect(int d, + void (*isr)(void *), + void *isr_data) +{ + bde_ctrl_t *ctrl; + unsigned long irq_flags; + int isr2_dev; + int isr_active; + int ret = 0; + + isr2_dev = d & LKBDE_ISR2_DEV; + d &= ~LKBDE_ISR2_DEV; + + if (!VALID_DEVICE(d)) { + gprintk("_interrupt_connect: Invalid device index %d\n", d); + return -1; + } + if (debug >= 1) { + gprintk("_interrupt_connect d %d\n", d); + } + if (!(BDE_DEV_MEM_MAPPED(_devices[d].dev_type))) { + gprintk("_interrupt_connect: Not PCI device %d, type %x\n", + d, _devices[d].dev_type); + return -1; + } + + ctrl = _devices + d; + + isr_active = (ctrl->isr || ctrl->isr2) ? 1 : 0; + + if (unlikely(debug > 1)) + gprintk("%s:isr_active = %d\n", __func__, isr_active); + + if (isr2_dev) { + if (debug >= 1) { + gprintk("connect secondary isr\n"); + } + ctrl->isr2_data = isr_data; + ctrl->isr2 = isr; + if (isr_active) { + /* Main handler (_isr) already installed */ + return 0; + } + } else { + if (debug >= 1) { + gprintk("connect primary isr\n"); + } + ctrl->isr = isr; + ctrl->isr_data = isr_data; + if (isr_active) { + /* Main handler (_isr) already installed */ + return 0; + } + } + + if (ctrl->iLine != -1) { + irq_flags = IRQF_SHARED; +#ifdef CONFIG_PCI_MSI + if (ctrl->use_msi >= PCI_USE_INT_MSI) { + ret = _msi_connect(ctrl); + if(ret != 0) + goto msi_exit; + } +#endif +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) + if (ctrl->use_msi == PCI_USE_INT_MSIX) { + int i; + for (i = 0; i < ctrl->msix_cnt; i++) { + ret = request_irq(ctrl->entries[i].vector, _isr, + irq_flags, LINUX_KERNEL_BDE_NAME, ctrl); + if (ret < 0) + break; + } + if (ret < 0) { + while (i >= 0) + free_irq(ctrl->entries[i--].vector, ctrl->pci_device); + + goto err_disable_msi; + } + } + else +#endif + { + ret = request_irq(ctrl->iLine, _isr, irq_flags, + LINUX_KERNEL_BDE_NAME, ctrl); + if (ret < 0) + goto err_disable_msi; + + if (unlikely(debug >= 1)) + gprintk("%s(%d):device# = %d, \ + irq_flags = %lu, irq = %d\n", + __func__, __LINE__, d, + irq_flags, ctrl->pci_device ? ctrl->pci_device->irq : ctrl->iLine); + } + } + return 0; + +err_disable_msi: +#ifdef CONFIG_PCI_MSI + _msi_disconnect(ctrl); + +msi_exit: +#endif + gprintk("could not request IRQ\n"); + ctrl->isr = NULL; + ctrl->isr_data = NULL; + ctrl->isr2 = NULL; + ctrl->isr2_data = NULL; + + return -1; +} + +static int +_interrupt_disconnect(int d) +{ + bde_ctrl_t *ctrl; + int isr2_dev; + int isr_active; + + isr2_dev = d & LKBDE_ISR2_DEV; + d &= ~LKBDE_ISR2_DEV; + + if (!VALID_DEVICE(d)) { + return -1; + } + + if (debug >= 1) { + gprintk("_interrupt_disconnect d %d\n", d); + } + if (!(BDE_DEV_MEM_MAPPED(_devices[d].dev_type))) { + gprintk("_interrupt_disconnect: Not PCI device %d, type %x\n", + d, _devices[d].dev_type); + return -1; + } + + ctrl = _devices + d; + + isr_active = (ctrl->isr || ctrl->isr2) ? 1 : 0; + + if (unlikely(debug > 1)) + gprintk("%s: isr_active = %d\n", __func__, isr_active); + + if (isr2_dev) { + if (debug >= 1) { + gprintk("disconnect secondary isr\n"); + } + ctrl->isr2 = NULL; + ctrl->isr2_data = NULL; + ctrl->fmask = 0; + if (ctrl->isr) { + /* Primary handler still active */ + SYNC_IRQ(ctrl->iLine); + return 0; + } + } else { + if (debug >= 1) { + gprintk("disconnect primary isr\n"); + } + ctrl->isr = NULL; + ctrl->isr_data = NULL; + if (ctrl->isr2) { + /* Secondary handler still active */ + SYNC_IRQ(ctrl->iLine); + return 0; + } + } + + if (isr_active) { +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,84)) + if (ctrl->use_msi >= PCI_USE_INT_MSIX) { + int i; + for (i = 0; i < ctrl->msix_cnt; i++) + free_irq(ctrl->entries[i].vector, ctrl->pci_device); + } + else +#endif + { + free_irq(ctrl->iLine, ctrl); + } +#ifdef CONFIG_PCI_MSI + if (ctrl->use_msi >= PCI_USE_INT_MSI) { + _msi_disconnect(ctrl); + } +#endif + } + + return 0; +} + +static uint32_t +_iproc_ihost_read(int d, uint32_t addr) +{ + uint32_t *mapaddr; + uint32_t reg_val; + mapaddr = IOREMAP(addr, sizeof(uint32_t)); + if (mapaddr == NULL) { + return -1; + } + reg_val = readl(mapaddr); + iounmap(mapaddr); + return reg_val; +} + +static int +_iproc_ihost_write(int d, uint32_t addr, uint32_t data) +{ + uint32_t *mapaddr; + mapaddr = IOREMAP(addr, sizeof(uint32_t)); + if (mapaddr == NULL) { + return -1; + } + writel(data, mapaddr); + iounmap(mapaddr); + return 0; +} + +static uint32_t +_iproc_read(int d, uint32_t addr) +{ + if (!VALID_DEVICE(d)) { + return -1; + } + + if (!(BDE_DEV_MEM_MAPPED(_devices[d].dev_type))) { + return -1; + } + + if (_devices[d].dev_type & BDE_AXI_DEV_TYPE) { + return _iproc_ihost_read(d, addr); + } + + return shbde_iproc_pci_read(&_devices[d].shbde, + (void *)_devices[d].bde_dev.base_address1, + addr); +} + +static int +_iproc_write(int d, uint32_t addr, uint32_t data) +{ + if (!VALID_DEVICE(d)) { + return -1; + } + + if (!(BDE_DEV_MEM_MAPPED(_devices[d].dev_type))) { + return -1; + } + + if (_devices[d].dev_type & BDE_AXI_DEV_TYPE) { + return _iproc_ihost_write(d, addr, data); + } + + shbde_iproc_pci_write(&_devices[d].shbde, + (void *)_devices[d].bde_dev.base_address1, + addr, data); + + return 0; +} + +static int +_get_cmic_ver(int d , uint32_t *ver) +{ + + unsigned int cap_base; + uint32_t rval = 0; + + if (!VALID_DEVICE(d)) { + gprintk("%s: Invalid device index %d\n", __func__, d); + return -1; + } + + if (!(_devices[d].dev_type & BDE_PCI_DEV_TYPE)) { + gprintk("%s: Not PCI device %d, type %x\n", __func__, + d, _devices[d].dev_type); + return -1; + } + + /* Look for PCIe vendor-specific extended capability (VSEC) */ + cap_base = PCI_EXT_CAP_START; + while (cap_base) { + pci_read_config_dword(_devices[d].pci_device, cap_base, &rval); + if (rval == 0xffffffff) { + /* Assume PCI HW read error */ + gprintk("%s: PCI HW read error\n", __func__); + return -1; + } + + if (PCI_EXT_CAP_ID(rval) == PCI_EXT_CAP_ID_VNDR) { + break; + } + cap_base = PCI_EXT_CAP_NEXT(rval); + } + if (cap_base) { + /* + * VSEC layout: + * + * 0x00: PCI Express Extended Capability Header + * 0x04: Vendor-Specific Header + * 0x08: Vendor-Specific Register 1 + * 0x0c: Vendor-Specific Register 2 + * ... + * 0x24: Vendor-Specific Register 8 + */ + pci_read_config_dword(_devices[d].pci_device, cap_base + 8, &rval); + if (unlikely(debug > 1)) + gprintk("%s:Found VSEC = %u\n", __func__, rval); + + /* Determine if CMICX */ + rval = ((rval >> 12) & 0xf); + *ver = rval; + + return 0; + } else { + gprintk("%s:VSEC not found\n", __func__); + } + + return -1; +} + +#ifdef BCM_ROBO_SUPPORT +#define SOC_ROBO_PAGE_BP 8 /* for Robo Chip only */ + +#if defined(IPROC_CMICD) +extern int ccb_mii_read(int dev_type, int phy_addr, int reg_off, uint16 *data); +extern int ccb_mii_write(int dev_type, int phy_addr, int reg_off, uint16 data); + +/* device type */ +#define MII_DEV_LOCAL 0 +#define MII_DEV_EXT 1 +#endif + +static int +_spi_read(int d, uint32 addr, uint8 *buf, int len) +{ +#if defined(KEYSTONE) || defined(IPROC_CMICD) + bde_ctrl_t *ctrl; + uint8 page, offset; +#endif +#if defined(IPROC_CMICD) + int rv = 0; + uint16 value = 0; +#endif + + if (!VALID_DEVICE(d)) { + return -1; + } + + if (!(_devices[d].dev_type & BDE_SPI_DEV_TYPE)) { + gprintk("_spi_read: Not SPI device %d, type %x\n", + d, _devices[d].dev_type); + return -1; + } + +#if defined(KEYSTONE) || defined(IPROC_CMICD) + ctrl = _devices + d; +#endif + +#if defined(IPROC_CMICD) + if (addr & SOC_EXTERNAL_PHY_BUS_CPUMDIO) { + rv = ccb_mii_read(MII_DEV_EXT, (addr >> 8) & 0xff, addr & 0xff, &value); + memcpy(buf, &value, 2); + return rv; + } +#endif + +#if defined(KEYSTONE) || defined(IPROC_CMICD) + page = (addr >> SOC_ROBO_PAGE_BP) & 0xFF; + offset = addr & 0xFF; +#endif + +#if defined(IPROC_CMICD) && defined(BCM_STARFIGHTER3_SUPPORT) + if (spi_device_found) { + ROBO_SPI_RREG(ctrl->spi_device->robo, ctrl->spi_device->cid, + page, offset, buf, (uint)len); + } else +#endif + { + ROBO_RREG(ctrl->spi_device->robo, ctrl->spi_device->cid, + page, offset, buf, (uint)len); + } + + return 0; +} + +static int +_spi_write(int d, uint32 addr, uint8 *buf, int len) +{ +#if defined(KEYSTONE) || defined(IPROC_CMICD) + bde_ctrl_t *ctrl; + uint8 page, offset; +#endif +#if defined(IPROC_CMICD) + int rv = 0; + uint16 value = 0; +#endif + if (!VALID_DEVICE(d)) { + return -1; + } + + if (!(_devices[d].dev_type & BDE_SPI_DEV_TYPE)) { + gprintk("_spi_write: Not SPI device %d, type %x\n", + d, _devices[d].dev_type); + return -1; + } + +#if defined(KEYSTONE) || defined(IPROC_CMICD) + ctrl = _devices + d; +#endif + +#if defined(IPROC_CMICD) + if (addr & SOC_EXTERNAL_PHY_BUS_CPUMDIO) { + memcpy(&value, buf, 2); + rv = ccb_mii_write(MII_DEV_EXT, (addr >> 8) & 0xff, addr & 0xff, value); + return rv; + } +#endif + +#if defined(KEYSTONE) || defined(IPROC_CMICD) + page = (addr >> SOC_ROBO_PAGE_BP) & 0xFF; + offset = addr & 0xFF; +#endif + +#if defined(IPROC_CMICD) && defined(BCM_STARFIGHTER3_SUPPORT) + if (spi_device_found) { + ROBO_SPI_WREG(ctrl->spi_device->robo, ctrl->spi_device->cid, + page, offset, buf, (uint)len); + } else +#endif + { + ROBO_WREG(ctrl->spi_device->robo, ctrl->spi_device->cid, + page, offset, buf, (uint)len); + } + + return 0; +} + +#endif + +#if defined(BCM_PETRA_SUPPORT) || defined(BCM_DFE_SUPPORT) || defined(BCM_DNX_SUPPORT) || defined(BCM_DNXF_SUPPORT) +int +lkbde_cpu_write(int d, uint32 addr, uint32 *buf) +{ +#if defined(__DUNE_WRX_BCM_CPU__) || defined(__DUNE_GTO_BCM_CPU__) + *((uint32_t*)((uint8_t*)cpu_address + addr)) = *buf; +#endif + + return 0; +} + +int +lkbde_cpu_read(int d, uint32 addr, uint32 *buf) +{ +#if defined(__DUNE_WRX_BCM_CPU__) || defined(__DUNE_GTO_BCM_CPU__) + *buf = *((uint32_t*)((uint8_t*)cpu_address + addr)); +#else + *buf = (uint32_t)(-1); +#endif + + return 0; +} + +int +lkbde_cpu_pci_register(int d) +{ + bde_ctrl_t* ctrl; + uint16 cmd = 0; + + if (!VALID_DEVICE(d)) { + return -1; + } + + ctrl = &_devices[d]; + + /* enable device */ + if (pci_enable_device(ctrl->pci_device)) { + gprintk("Cannot enable pci device : vendor_id = %x, device_id = %x\n", + ctrl->pci_device->vendor, ctrl->pci_device->device); + } + + /* Add PCI_COMMAND_MEMORY and PCI_COMMAND_MASTER */ + pci_read_config_word(ctrl->pci_device, PCI_COMMAND, &cmd); + if (!(cmd & PCI_COMMAND_MEMORY) || !(cmd & PCI_COMMAND_MASTER)) { + cmd |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER; + pci_write_config_word(ctrl->pci_device, PCI_COMMAND, cmd); + } + + switch (ctrl->bde_dev.device) { + case GEDI_DEVICE_ID: + /* Fix bar 0 address */ /* FIXME: write full phy address */ + pci_write_config_byte(ctrl->pci_device, 0x13, 0x60); + + /* Fix Max payload size */ + pci_write_config_byte(ctrl->pci_device, 0x88, 0x2f); + pci_write_config_byte(ctrl->pci_device, 0x89, 0x10); + break; + case BCM88750_DEVICE_ID: + case BCM88753_DEVICE_ID: + case BCM88755_DEVICE_ID: + case BCM88770_DEVICE_ID: + case BCM88773_DEVICE_ID: + case BCM88774_DEVICE_ID: + case BCM88775_DEVICE_ID: + case BCM88776_DEVICE_ID: + case BCM88777_DEVICE_ID: + case BCM88950_DEVICE_ID: + case BCM88953_DEVICE_ID: + case BCM88954_DEVICE_ID: + case BCM88955_DEVICE_ID: + case BCM88956_DEVICE_ID: + case BCM88752_DEVICE_ID: + case BCM88772_DEVICE_ID: + case BCM88952_DEVICE_ID: + case ACP_PCI_DEVICE_ID: + case BCM88650_DEVICE_ID: + + case BCM88670_DEVICE_ID: + case BCM88671_DEVICE_ID: + case BCM88671M_DEVICE_ID: + case BCM88672_DEVICE_ID: + case BCM88673_DEVICE_ID: + case BCM88674_DEVICE_ID: + case BCM88675_DEVICE_ID: + case BCM88675M_DEVICE_ID: + case BCM88676_DEVICE_ID: + case BCM88676M_DEVICE_ID: + case BCM88677_DEVICE_ID: + case BCM88678_DEVICE_ID: + case BCM88679_DEVICE_ID: + + case BCM88370_DEVICE_ID: + case BCM88371_DEVICE_ID: + case BCM88371M_DEVICE_ID: + case BCM88375_DEVICE_ID: + case BCM88376_DEVICE_ID: + case BCM88376M_DEVICE_ID: + case BCM88377_DEVICE_ID: + case BCM88378_DEVICE_ID: + case BCM88379_DEVICE_ID: + case BCM88681_DEVICE_ID: + case BCM88682_DEVICE_ID: + case BCM88683_DEVICE_ID: + case BCM88684_DEVICE_ID: + case BCM88685_DEVICE_ID: + case BCM88380_DEVICE_ID: + case BCM88381_DEVICE_ID: + case BCM88680_DEVICE_ID: + case BCM88690_DEVICE_ID: + case BCM88470_DEVICE_ID: + case BCM88470P_DEVICE_ID: + case BCM88471_DEVICE_ID: + case BCM88473_DEVICE_ID: + case BCM88474_DEVICE_ID: + case BCM88474H_DEVICE_ID: + case BCM88476_DEVICE_ID: + case BCM88477_DEVICE_ID: + case BCM88270_DEVICE_ID: + case BCM88272_DEVICE_ID: + case BCM88273_DEVICE_ID: + case BCM88278_DEVICE_ID: + case BCM8206_DEVICE_ID: + case BCM88350_DEVICE_ID: + case BCM88351_DEVICE_ID: + case BCM88450_DEVICE_ID: + case BCM88451_DEVICE_ID: + case BCM88550_DEVICE_ID: + case BCM88551_DEVICE_ID: + case BCM88552_DEVICE_ID: + case BCM88651_DEVICE_ID: + case BCM88654_DEVICE_ID: + case BCM88660_DEVICE_ID: + case BCM88360_DEVICE_ID: + case BCM88361_DEVICE_ID: + case BCM88363_DEVICE_ID: + case BCM88460_DEVICE_ID: + case BCM88461_DEVICE_ID: + case BCM88560_DEVICE_ID: + case BCM88561_DEVICE_ID: + case BCM88562_DEVICE_ID: + case BCM88661_DEVICE_ID: + case BCM88664_DEVICE_ID: + /* Fix bar 0 address */ /* FIXME: write full phy address */ + pci_write_config_byte(ctrl->pci_device, 0x12, 0x10); + pci_write_config_byte(ctrl->pci_device, 0x13, 0x60); + + /* + * For DMA transactions - set Max_Payload_Size and + * Max_Read_Request_Size to 128 bytes. + */ + pci_write_config_byte(ctrl->pci_device, 0xb5, 0x0c); + pci_write_config_byte(ctrl->pci_device, 0xb4, 0x0); + break; + default: + break; + } + + /* Redo ioremap */ + if (ctrl->bde_dev.base_address) { + iounmap((void *)ctrl->bde_dev.base_address); + } + ctrl->bde_dev.base_address = (sal_vaddr_t)IOREMAP(ctrl->phys_address, 0x1000000); + + if (debug >= 1) { + gprintk("%s, %s(): info:\n", __FILE__, __FUNCTION__); + gprintk("_ndevices=%d, _switch_ndevices=%d\n", + _ndevices, _switch_ndevices); + gprintk("ctrl->dev_type=0x%x, ctrl->phys_address=0x%lx\n", + ctrl->dev_type, (unsigned long)ctrl->phys_address); + gprintk("ctrl->bde_dev.device=0x%x, ctrl->bde_dev.rev=0x%x, " + "ctrl->bde_dev.base_address=0x%lx\n", + ctrl->bde_dev.device, ctrl->bde_dev.rev, + (unsigned long)ctrl->bde_dev.base_address); + } + + return 0; +} + +/* + * Export Low level access function - currently for PCP DMA Kernel module. + */ +int +lkbde_mem_write(int d, uint32 addr, uint32 *buf) +{ + bde_ctrl_t* ctrl; + void *full_addr; + + if (!VALID_DEVICE(d)) return -1; + ctrl = &_devices[d]; + + full_addr = (void *)ctrl->bde_dev.base_address + addr; + *((uint32_t*)full_addr) = *buf; + return 0; +} +LKM_EXPORT_SYM(lkbde_mem_write); + +int +lkbde_mem_read(int d, uint32 addr, uint32 *buf) +{ + bde_ctrl_t* ctrl; + void *full_addr; + + if (!VALID_DEVICE(d)) return -1; + ctrl = &_devices[d]; + + full_addr = (void *)ctrl->bde_dev.base_address + addr; + *buf = *((uint32_t*)full_addr); + return 0; +} +LKM_EXPORT_SYM(lkbde_mem_read); +#endif /* defined(BCM_PETRA_SUPPORT) */ + +static ibde_t _ibde = { + name: _name, + num_devices: _num_devices, + get_dev: _get_dev, + get_dev_type: _get_dev_type, + pci_conf_read: _pci_conf_read, + pci_conf_write: _pci_conf_write, + pci_bus_features: _pci_bus_features, + read: _read, + write: _write, + salloc: _salloc, + sfree: _sfree, + sinval: _sinval, + sflush: _sflush, + interrupt_connect: _interrupt_connect, + interrupt_disconnect: _interrupt_disconnect, + l2p: _l2p, + p2l: _p2l, +#if defined(BCM_ROBO_SUPPORT) + spi_read: _spi_read, + spi_write: _spi_write, +#else + NULL, + NULL, +#endif /* defined(BCM_ROBO_SUPPORT) */ + iproc_read: _iproc_read, + iproc_write: _iproc_write, + get_cmic_ver: _get_cmic_ver, +}; + +/* + * Function: linux_bde_create + * + * Purpose: + * Creator function for this BDE interface. + * Parameters: + * bus - pointer to the bus features structure you want this + * bde to export. Depends on the system. + * ibde - pointer to a location to recieve the bde interface pointer. + * Returns: + * 0 on success + * -1 on failure. + * Notes: + * This is the main BDE create function for this interface. + * Used by the external system initialization code. + */ +int +linux_bde_create(linux_bde_bus_t *bus, ibde_t **ibde) +{ + + memset(&_bus, 0, sizeof(_bus)); + + if (bus) { + _bus = *bus; + } +#ifdef NONCOHERENT_DMA_MEMORY +#ifdef REMAP_DMA_NONCACHED + /* + * If we have a non-cached DMA memory pool + * there is no need to flush and invalidate. + */ + if (_dma_pool_allocated()) { + _ibde.sinval = NULL; + _ibde.sflush = NULL; + } +#endif +#else + _ibde.sinval = NULL; + _ibde.sflush = NULL; +#endif + *ibde = &_ibde; + return 0; +} + +/* + * Function: linux_bde_destroy + * + * Purpose: + * destroy this bde + * Parameters: + * BDE interface pointer + * Returns: + * 0 on success, < 0 on error. + */ +int +linux_bde_destroy(ibde_t *ibde) +{ + /* nothing */ + return 0; +} + +/* + * Backdoors provided by the kernel bde + */ + +uint32_t +lkbde_get_dev_phys(int d) +{ + if (!VALID_DEVICE(d)) { + return -1; + } + + if (!(BDE_DEV_MEM_MAPPED(_devices[d].dev_type))) { + gprintk("lkbde_get_dev_phys: Not PCI device %d, type %x\n", + d, _devices[d].dev_type); + return 0; + } + return _devices[d].phys_address; +} + +uint32_t +lkbde_get_dev_phys_hi(int d) +{ + if (!VALID_DEVICE(d)) { + return -1; + } + + if (!(BDE_DEV_MEM_MAPPED(_devices[d].dev_type))) { + gprintk("lkbde_get_dev_phys: Not PCI device %d, type %x\n", + d, _devices[d].dev_type); + return 0; + } +#ifdef PHYS_ADDR_IS_64BIT + return (uint32_t)(_devices[d].phys_address >> 32); +#else + return 0; +#endif +} + +void * +lkbde_get_dev_virt(int d) +{ + if (!VALID_DEVICE(d)) { + return NULL; + } + + if (!(BDE_DEV_MEM_MAPPED(_devices[d].dev_type))) { + gprintk("lkbde_get_dev_virt: Not PCI device %d, type %x\n", + d, _devices[d].dev_type); + return 0; + } + + if (_devices[d].alt_base_addr) { + return (void *)_devices[d].alt_base_addr; + } + + return (void *)_devices[d].bde_dev.base_address; +} + +int +lkbde_get_dev_resource(int d, int rsrc, uint32_t *flags, + uint32_t *phys_lo, uint32_t *phys_hi) +{ + if (!VALID_DEVICE(d)) { + return -1; + } + + *flags = 0; + *phys_lo = 0; + *phys_hi = 0; + + if (!(BDE_DEV_MEM_MAPPED(_devices[d].dev_type))) { + gprintk("lkbde_get_dev_phys: Not PCI device %d, type %x\n", + d, _devices[d].dev_type); + return 0; + } + + switch (rsrc) { + case 0: + *phys_lo = (uint32_t)(_devices[d].phys_address); +#ifdef PHYS_ADDR_IS_64BIT + *phys_hi = (uint32_t)(_devices[d].phys_address >> 32); +#endif + break; + case 1: + *phys_lo = (uint32_t)(_devices[d].phys_address1); +#ifdef PHYS_ADDR_IS_64BIT + *phys_hi = (uint32_t)(_devices[d].phys_address1 >> 32); +#endif + break; + default: + break; + } + + return 0; +} + +void * +lkbde_get_dma_dev(int d) +{ + if (!VALID_DEVICE(d)) { + return NULL; + } + +#ifdef LINUX_BDE_DMA_DEVICE_SUPPORT + return (void *)_devices[d].dma_dev; +#else + return (void *)_devices[d].pci_device; +#endif +} + +void * +lkbde_get_hw_dev(int d) +{ + if (!VALID_DEVICE(d)) { + return NULL; + } + + return (void *)_devices[d].pci_device; +} + +int +lkbde_dev_state_set(int d, uint32 state) +{ + bde_ctrl_t *ctrl; + + if (!VALID_DEVICE(d)) { + return -1; + } + ctrl = _devices + d; + ctrl->dev_state = state; + return 0; +} + +int +lkbde_dev_state_get(int d, uint32 *state) +{ + bde_ctrl_t *ctrl; + if (!VALID_DEVICE(d)) { + gprintk("_get_dev: Invalid device index %d\n", d); + return -1; + } + ctrl = _devices + d; + + *state = ctrl->dev_state; + return 0; +} + +int +lkbde_dev_instid_set(int d, uint32 instid) +{ + bde_ctrl_t *ctrl; + + if (!VALID_DEVICE(d)) { + return -1; + } + ctrl = _devices + d; + ctrl->inst_id = instid; + + return 0; +} + +int +lkbde_dev_instid_get(int d, uint32 *instid) +{ + bde_ctrl_t *ctrl; + + if (!VALID_DEVICE(d)) { + return -1; + } + ctrl = _devices + d; + *instid = ctrl->inst_id; + + return 0; +} +/* + * When a secondary interrupt handler is installed this function + * is used for synchronizing hardware access to the IRQ mask + * register. The secondary driver will supply a non-zero fmask + * (filter mask) to indicate which interrupt bits it controls. + * The fmask is ignored for the primary driver. + */ +int +lkbde_irq_mask_set(int d, uint32_t addr, uint32_t mask, uint32_t fmask) +{ + bde_ctrl_t *ctrl; + int isr2_dev; + unsigned long flags; + + isr2_dev = d & LKBDE_ISR2_DEV; + d &= ~LKBDE_ISR2_DEV; + + if (!VALID_DEVICE(d)) { + return -1; + } + + ctrl = _devices + d; + + /* Lock is required to synchronize access from user space */ + spin_lock_irqsave(&ctrl->lock, flags); + + if (isr2_dev) { + /* This is the secondary interrupt handler */ + ctrl->fmask = fmask; + ctrl->imask2 = mask & ctrl->fmask; + } else { + /* This is the primary interrupt handler */ + ctrl->imask = mask & ~ctrl->fmask; + } + _write(d, addr, ctrl->imask | ctrl->imask2); + + spin_unlock_irqrestore(&ctrl->lock, flags); + + return 0; +} + +/* + * When a secondary interrupt handler is installed, this function + * is used to avoid activating the user mode interrupt handler + * thread if all pending interrupts are handled in kernel space. + * + * The mask returned is the mask of all interrupts, it can be used + * to do a logical AND with fmask, the result will tell you if + * the user mode interrupt handler needs to be invoked. + * + * Note that if no secondary handler is installed, the value of + * "mask & fmask" will be zero, and hence there will be no need to read the + * current interrupt status from hardware (from kernel space). + */ +int +lkbde_irq_mask_get(int d, uint32_t *mask, uint32_t *fmask) +{ + bde_ctrl_t *ctrl; + + d &= ~LKBDE_ISR2_DEV; + + if (!VALID_DEVICE(d)) { + return -1; + } + + if (mask == NULL) { + return -1; + } + + ctrl = _devices + d; + + *fmask = ctrl->fmask; + *mask = ctrl->imask | ctrl->imask2; + + return 0; +} + + +/* + * Export functions + */ +LKM_EXPORT_SYM(linux_bde_create); +LKM_EXPORT_SYM(linux_bde_destroy); +LKM_EXPORT_SYM(lkbde_get_dev_phys); +LKM_EXPORT_SYM(lkbde_get_dev_virt); +LKM_EXPORT_SYM(lkbde_get_dev_resource); +LKM_EXPORT_SYM(lkbde_get_hw_dev); +LKM_EXPORT_SYM(lkbde_get_dma_dev); +LKM_EXPORT_SYM(lkbde_irq_mask_set); +LKM_EXPORT_SYM(lkbde_irq_mask_get); +LKM_EXPORT_SYM(lkbde_get_dev_phys_hi); +LKM_EXPORT_SYM(lkbde_dev_state_set); +LKM_EXPORT_SYM(lkbde_dev_state_get); +LKM_EXPORT_SYM(lkbde_dev_instid_set); +LKM_EXPORT_SYM(lkbde_dev_instid_get); +#if (defined(BCM_PETRA_SUPPORT) || defined(BCM_DFE_SUPPORT)) +LKM_EXPORT_SYM(lkbde_cpu_write); +LKM_EXPORT_SYM(lkbde_cpu_read); +LKM_EXPORT_SYM(lkbde_cpu_pci_register); +#endif only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/kernel/linux_dma.c +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/kernel/linux_dma.c @@ -0,0 +1,906 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: linux_dma.c,v 1.414 Broadcom SDK $ + * $Copyright: (c) 2016 Broadcom Corp. + * All Rights Reserved.$ + * + * Linux Kernel BDE DMA memory allocation + * + * + * DMA memory allocation modes + * =========================== + * + * 1. Using private pool in kernel memory + * -------------------------------------- + * In this mode the BDE module will try to assemble a physically contiguous + * of memory using the kernel page allocator. This memory block is then + * administered by the mpool allocation functions. Note that once a system + * has been running for a while, the memory fragmentation may prevent the + * allocator from assembling a contiguous memory block, however, if the + * module is loaded shortly after system startup, it is very unlikely to + * fail. + * + * This allocation method is used by default. + * + * 2. Using private pool in high memory + * ------------------------------------ + * In this mode the BDE module will assume that unused physical memory is + * present at the high_memory address, i.e. memory not managed by the Linux + * memory manager. This memory block is mapped into kernel space and + * administered by the mpool allocation functions. High memory must be + * reserved using either the mem=xxx kernel parameter (recommended), or by + * hardcoding the memory limit in the kernel image. + * + * The module parameter himem=1 enables this allocation mode. + * + * 3. Using kernel allocators (kmalloc, __get_free_pages) + * ------------------------------------------------------ + * In this mode all DMA memory is allocated from the kernel on the fly, i.e. + * no private DMA memory pool will be created. If large memory blocks are + * only allocated at system startup (or not at all), this allocation method + * is the most flexible and memory-efficient, however, it is not recommended + * for non-coherent memory platforms due to an overall system performance + * degradation arising from the use of cache flush/invalidate instructions. + * + * The module parameter dmasize=0M enables this allocation mode, however if + * DMA memory is requested from a user mode application, a private memory + * pool will be created and used irrespectively. + */ + +#include +#include +#include +#include +#include + +#ifdef BCM_PLX9656_LOCAL_BUS +#include +#endif + +/* allocation types/methods for the DMA memory pool */ +#define ALLOC_TYPE_CHUNK 0 /* use small allocations and join them */ +#define ALLOC_TYPE_API 1 /* use one allocation */ +#if _SIMPLE_MEMORY_ALLOCATION_ +#include +#if defined(IPROC_CMICD) && defined(CONFIG_CMA) && defined(CONFIG_CMA_SIZE_MBYTES) +#define DMA_MAX_ALLOC_SIZE (CONFIG_CMA_SIZE_MBYTES * 1024 * 1024) +#else +#define DMA_MAX_ALLOC_SIZE (1 << (MAX_ORDER - 1 + PAGE_SHIFT)) /* Maximum size the kernel can allocate in one allocation */ +#endif +#endif /* _SIMPLE_MEMORY_ALLOCATION_ */ + +#if _SIMPLE_MEMORY_ALLOCATION_ == 1 +#define ALLOC_METHOD_DEFAULT ALLOC_TYPE_API +#else +#define ALLOC_METHOD_DEFAULT ALLOC_TYPE_CHUNK +#endif + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,10,0)) +#include +#define virt_to_bus virt_to_phys +#define bus_to_virt phys_to_virt +#endif + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,21)) +#define VIRT_TO_PAGE(p) virt_to_page((void*)(p)) +#else +#define VIRT_TO_PAGE(p) virt_to_page((p)) +#endif + +/* Compatibility */ +#ifdef LKM_2_4 +#define MEM_MAP_RESERVE mem_map_reserve +#define MEM_MAP_UNRESERVE mem_map_unreserve +#else /* LKM_2_6 */ +#define MEM_MAP_RESERVE SetPageReserved +#define MEM_MAP_UNRESERVE ClearPageReserved +#endif /* LKM_2_x */ + +#ifndef GFP_DMA32 +#define GFP_DMA32 0 +#endif + +/* Flags for memory allocations */ +#ifdef SAL_BDE_XLP +static int mem_flags = GFP_ATOMIC | GFP_KERNEL | GFP_DMA; +#else +#if defined(CONFIG_ZONE_DMA32) +static int mem_flags = GFP_ATOMIC | GFP_DMA32; +#else +static int mem_flags = GFP_ATOMIC | GFP_DMA; +#endif +#endif + +/* Debug output */ +static int dma_debug = 0; +module_param(dma_debug, int, 0); +MODULE_PARM_DESC(dma_debug, +"DMA debug output enable (default 0)."); + +/* DMA memory pool size */ +static char *dmasize; +LKM_MOD_PARAM(dmasize, "s", charp, 0); +MODULE_PARM_DESC(dmasize, +"Specify DMA memory size (default 4MB)"); + +/* Select DMA memory pool allocation method */ +static int dmaalloc = ALLOC_METHOD_DEFAULT; +LKM_MOD_PARAM(dmaalloc, "i", int, 0); +MODULE_PARM_DESC(dmaalloc, "Select DMA memory allocation method"); + +/* Use high memory for DMA */ +static char *himem; +LKM_MOD_PARAM(himem, "s", charp, 0); +MODULE_PARM_DESC(himem, +"Use high memory for DMA (default no)"); + +/* DMA memory allocation */ + +#define ONE_KB 1024 +#define ONE_MB (1024*1024) + +/* Default DMA memory size */ +#ifdef SAL_BDE_DMA_MEM_DEFAULT +#define DMA_MEM_DEFAULT (SAL_BDE_DMA_MEM_DEFAULT * ONE_MB) +#else +#define DMA_MEM_DEFAULT (8 * ONE_MB) +#endif +#define DMA_MEM_DEFAULT_ROBO (4 * ONE_MB) + +/* We try to assemble a contiguous segment from chunks of this size */ +#define DMA_BLOCK_SIZE (512 * ONE_KB) + +typedef struct _dma_segment { + struct list_head list; + unsigned long req_size; /* Requested DMA segment size */ + unsigned long blk_size; /* DMA block size */ + unsigned long blk_order; /* DMA block size in alternate format */ + unsigned long seg_size; /* Current DMA segment size */ + unsigned long seg_begin; /* Logical address of segment */ + unsigned long seg_end; /* Logical end address of segment */ + unsigned long *blk_ptr; /* Array of logical DMA block addresses */ + int blk_cnt_max; /* Maximum number of block to allocate */ + int blk_cnt; /* Current number of blocks allocated */ +} dma_segment_t; + +static unsigned int _dma_mem_size = DMA_MEM_DEFAULT; +static mpool_handle_t _dma_pool = NULL; +static void __iomem *_dma_vbase = NULL; +/* cpu physical address for mmap */ +static phys_addr_t _cpu_pbase = 0; +/* + * DMA bus address, it is either identical to cpu physical address + * or another address(IOVA) translated by IOMMU. + */ +static phys_addr_t _dma_pbase = 0; +static int _use_himem = 0; +static int _use_dma_mapping = 0; +static LIST_HEAD(_dma_seg); + +#define DMA_DEV(n) lkbde_get_dma_dev(n) + +/* + * Function: _find_largest_segment + * + * Purpose: + * Find largest contiguous segment from a pool of DMA blocks. + * Parameters: + * dseg - DMA segment descriptor + * Returns: + * 0 on success, < 0 on error. + * Notes: + * Assembly stops if a segment of the requested segment size + * has been obtained. + * + * Lower address bits of the DMA blocks are used as follows: + * 0: Untagged + * 1: Discarded block + * 2: Part of largest contiguous segment + * 3: Part of current contiguous segment + */ +static int +_find_largest_segment(dma_segment_t *dseg) +{ + int i, j, blks, found; + unsigned long b, e, a; + + blks = dseg->blk_cnt; + /* Clear all block tags */ + for (i = 0; i < blks; i++) { + dseg->blk_ptr[i] &= ~3; + } + for (i = 0; i < blks && dseg->seg_size < dseg->req_size; i++) { + /* First block must be an untagged block */ + if ((dseg->blk_ptr[i] & 3) == 0) { + /* Initial segment size is the block size */ + b = dseg->blk_ptr[i]; + e = b + dseg->blk_size; + dseg->blk_ptr[i] |= 3; + /* Loop looking for adjacent blocks */ + do { + found = 0; + for (j = i + 1; j < blks && (e - b) < dseg->req_size; j++) { + a = dseg->blk_ptr[j]; + /* Check untagged blocks only */ + if ((a & 3) == 0) { + if (a == (b - dseg->blk_size)) { + /* Found adjacent block below current segment */ + dseg->blk_ptr[j] |= 3; + b = a; + found = 1; + } else if (a == e) { + /* Found adjacent block above current segment */ + dseg->blk_ptr[j] |= 3; + e += dseg->blk_size; + found = 1; + } + } + } + } while (found); + if ((e - b) > dseg->seg_size) { + /* The current block is largest so far */ + dseg->seg_begin = b; + dseg->seg_end = e; + dseg->seg_size = e - b; + /* Re-tag current and previous largest segment */ + for (j = 0; j < blks; j++) { + if ((dseg->blk_ptr[j] & 3) == 3) { + /* Tag current segment as the largest */ + dseg->blk_ptr[j] &= ~1; + } else if ((dseg->blk_ptr[j] & 3) == 2) { + /* Discard previous largest segment */ + dseg->blk_ptr[j] ^= 3; + } + } + } else { + /* Discard all blocks in current segment */ + for (j = 0; j < blks; j++) { + if ((dseg->blk_ptr[j] & 3) == 3) { + dseg->blk_ptr[j] &= ~2; + } + } + } + } + } + return 0; +} + +/* + * Function: _alloc_dma_blocks + * + * Purpose: + * Allocate DMA blocks and add them to the pool. + * Parameters: + * dseg - DMA segment descriptor + * blks - number of DMA blocks to allocate + * Returns: + * 0 on success, < 0 on error. + * Notes: + * DMA blocks are allocated using the page allocator. + */ +static int +_alloc_dma_blocks(dma_segment_t *dseg, int blks) +{ + int i, start; + unsigned long addr; + + if (dseg->blk_cnt + blks > dseg->blk_cnt_max) { + gprintk("No more DMA blocks\n"); + return -1; + } + start = dseg->blk_cnt; + dseg->blk_cnt += blks; + for (i = start; i < dseg->blk_cnt; i++) { + /* + * Note that we cannot use pci_alloc_consistent when we + * want to be able to map DMA memory to user space. + * + * The GFP_DMA flag is omitted as this imposes the ISA + * addressing limitations on x86 platforms. As long as + * we have less than 1GB of memory, we can do PCI DMA + * to all physical RAM locations. + */ + addr = __get_free_pages(mem_flags, dseg->blk_order); + if (addr) { + dseg->blk_ptr[i] = addr; + } else { + gprintk("DMA allocation failed\n"); + return -1; + } + } + return 0; +} + +/* + * Function: _dma_segment_alloc + * + * Purpose: + * Allocate large physically contiguous DMA segment. + * Parameters: + * size - requested DMA segment size + * blk_size - assemble segment from blocks of this size + * Returns: + * DMA segment descriptor. + * Notes: + * Since we cannot allocate large blocks of contiguous + * memory from the kernel, we simply keep allocating + * smaller chunks until we can assemble a contiguous + * block of the desired size. + * + * When system allowed maximum bytes of memory has been allocated + * without a successful assembly of a contiguous DMA + * segment, the allocation function will return the + * largest contiguous segment found so far. It is up + * to the calling function to decide whether this + * amount is sufficient to proceed. + */ +static dma_segment_t * +_dma_segment_alloc(size_t size, size_t blk_size) +{ + dma_segment_t *dseg; + int i, blk_ptr_size; + unsigned long page_addr; + struct sysinfo si; + + /* Sanity check */ + if (size == 0 || blk_size == 0) { + return NULL; + } + /* Allocate an initialize DMA segment descriptor */ + if ((dseg = kmalloc(sizeof(dma_segment_t), GFP_KERNEL)) == NULL) { + return NULL; + } + memset(dseg, 0, sizeof(dma_segment_t)); + dseg->req_size = size; + dseg->blk_size = PAGE_ALIGN(blk_size); + while ((PAGE_SIZE << dseg->blk_order) < dseg->blk_size) { + dseg->blk_order++; + } + + si_meminfo(&si); + dseg->blk_cnt_max = (si.totalram << PAGE_SHIFT) / dseg->blk_size; + blk_ptr_size = dseg->blk_cnt_max * sizeof(unsigned long); + /* Allocate an initialize DMA block pool */ + dseg->blk_ptr = KMALLOC(blk_ptr_size, GFP_KERNEL); + if (dseg->blk_ptr == NULL) { + kfree(dseg); + return NULL; + } + memset(dseg->blk_ptr, 0, blk_ptr_size); + /* Allocate minimum number of blocks */ + _alloc_dma_blocks(dseg, dseg->req_size / dseg->blk_size); + /* Allocate more blocks until we have a complete segment */ + do { + _find_largest_segment(dseg); + if (dseg->seg_size >= dseg->req_size) { + break; + } + } while (_alloc_dma_blocks(dseg, 8) == 0); + /* Reserve all pages in the DMA segment and free unused blocks */ + for (i = 0; i < dseg->blk_cnt; i++) { + if ((dseg->blk_ptr[i] & 3) == 2) { + dseg->blk_ptr[i] &= ~3; + for (page_addr = dseg->blk_ptr[i]; + page_addr < dseg->blk_ptr[i] + dseg->blk_size; + page_addr += PAGE_SIZE) { + MEM_MAP_RESERVE(VIRT_TO_PAGE(page_addr)); + } + } else if (dseg->blk_ptr[i]) { + dseg->blk_ptr[i] &= ~3; + free_pages(dseg->blk_ptr[i], dseg->blk_order); + dseg->blk_ptr[i] = 0; + } + } + return dseg; +} + +/* + * Function: _dma_segment_free + * + * Purpose: + * Release resources used by DMA segment. + * Parameters: + * dseg - DMA segment descriptor + * Returns: + * Nothing. + */ +static void +_dma_segment_free(dma_segment_t *dseg) +{ + int i; + unsigned long page_addr; + + if (dseg->blk_ptr) { + for (i = 0; i < dseg->blk_cnt; i++) { + if (dseg->blk_ptr[i]) { + for (page_addr = dseg->blk_ptr[i]; + page_addr < dseg->blk_ptr[i] + dseg->blk_size; + page_addr += PAGE_SIZE) { + MEM_MAP_UNRESERVE(VIRT_TO_PAGE(page_addr)); + } + free_pages(dseg->blk_ptr[i], dseg->blk_order); + } + } + kfree(dseg->blk_ptr); + kfree(dseg); + } +} + +/* + * Function: _pgalloc + * + * Purpose: + * Allocate DMA memory using page allocator + * Parameters: + * size - number of bytes to allocate + * Returns: + * Pointer to allocated DMA memory or NULL if failure. + * Notes: + * For any sizes less than DMA_BLOCK_SIZE, we ask the page + * allocator for the entire memory block, otherwise we try + * to assemble a contiguous segment ourselves. + */ +static void * +_pgalloc(size_t size) +{ + dma_segment_t *dseg; + size_t blk_size; + + blk_size = (size < DMA_BLOCK_SIZE) ? size : DMA_BLOCK_SIZE; + if ((dseg = _dma_segment_alloc(size, blk_size)) == NULL) { + return NULL; + } + if (dseg->seg_size < size) { + /* If we didn't get the full size then forget it */ + _dma_segment_free(dseg); + return NULL; + } + list_add(&dseg->list, &_dma_seg); + return (void *)dseg->seg_begin; +} + +/* + * Function: _pgfree + * + * Purpose: + * Free memory allocated by _pgalloc + * Parameters: + * ptr - pointer returned by _pgalloc + * Returns: + * 0 if succesfully freed, otherwise -1. + */ +static int +_pgfree(void *ptr) +{ + struct list_head *pos; + list_for_each(pos, &_dma_seg) { + dma_segment_t *dseg = list_entry(pos, dma_segment_t, list); + if (ptr == (void *)dseg->seg_begin) { + list_del(&dseg->list); + _dma_segment_free(dseg); + return 0; + } + } + return -1; +} + +/* + * Function: _pgcleanup + * + * Purpose: + * Free all memory allocated by _pgalloc + * Parameters: + * None + * Returns: + * Nothing. + */ +static void +_pgcleanup(void) +{ + switch (dmaalloc) { +#if _SIMPLE_MEMORY_ALLOCATION_ + case ALLOC_TYPE_API: + if (_dma_vbase) { + if (dma_debug >= 1) gprintk("freeing v=%p p=0x%lx size=0x%lx\n", _dma_vbase,(unsigned long) _dma_pbase, (unsigned long)_dma_mem_size); + dma_free_coherent(DMA_DEV(0), _dma_mem_size, _dma_vbase, _dma_pbase); + } + break; +#endif /* _SIMPLE_MEMORY_ALLOCATION_ */ + + case ALLOC_TYPE_CHUNK: { + struct list_head *pos, *tmp; + if (_use_dma_mapping) { + dma_unmap_single(DMA_DEV(0), (dma_addr_t)_dma_pbase, _dma_mem_size, DMA_BIDIRECTIONAL); + _use_dma_mapping = 0; + } + list_for_each_safe(pos, tmp, &_dma_seg) { + dma_segment_t *dseg = list_entry(pos, dma_segment_t, list); + list_del(&dseg->list); + _dma_segment_free(dseg); + } + break; + } + + default: + gprintk("DMA memory allocation method dmaalloc=%d is not supported\n", dmaalloc); + } +} + +/* + * Function: _alloc_mpool + * + * Purpose: + * Allocate DMA memory pool + * Parameters: + * size - size of DMA memory pool + * Returns: + * Nothing. + * Notes: + * If set up to use high memory, we simply map the memory into + * kernel space. + * It is assumed there is only one pool. + */ +static void +_alloc_mpool(size_t size) +{ + unsigned long pbase = 0; + +#if defined(__arm__) && !defined(CONFIG_HIGHMEM) + if (_use_himem) { + gprintk("DMA in high memory requires CONFIG_HIGHMEM on ARM CPUs.\n"); + return; + } +#endif + + if (_use_himem) { + /* Use high memory for DMA */ + pbase = virt_to_bus(high_memory); + if (((pbase + (size - 1)) >> 16) > DMA_BIT_MASK(16)) { + gprintk("DMA in high memory at 0x%lx size 0x%lx is beyond the 4GB limit and not supported.\n", pbase, (unsigned long)size); + return; + } + _cpu_pbase = _dma_pbase = pbase; + _dma_vbase = IOREMAP(_dma_pbase, size); + } else { + /* Get DMA memory from kernel */ + switch (dmaalloc) { +#if _SIMPLE_MEMORY_ALLOCATION_ + case ALLOC_TYPE_API: { + size_t alloc_size = size; /* size of memory allocated in current iteration */ + if (alloc_size > DMA_MAX_ALLOC_SIZE) { + alloc_size = DMA_MAX_ALLOC_SIZE; + } + /* get a memory allocation from the kernel */ + { + dma_addr_t dma_handle; + if (!(_dma_vbase = dma_alloc_coherent(DMA_DEV(0), alloc_size, &dma_handle, GFP_KERNEL)) || !dma_handle) { + gprintk("_alloc_mpool: Kernel failed to allocate the memory pool of size 0x%lx\n", (unsigned long)alloc_size); + return; + } + pbase = dma_handle; + } + + if (alloc_size != size) { + gprintk("_alloc_mpool: allocated 0x%lx bytes instead of 0x%lx bytes.\n", + (unsigned long)alloc_size, (unsigned long)size); + } + size = _dma_mem_size = alloc_size; + break; + } +#endif /* _SIMPLE_MEMORY_ALLOCATION_ */ + + case ALLOC_TYPE_CHUNK: + _dma_vbase = _pgalloc(size); + if (DMA_DEV(0)) { + /* + * Use dma_map_single to obtain dma bus address or IOVA if iommu is present. + */ + pbase = dma_map_single(DMA_DEV(0), _dma_vbase, size, DMA_BIDIRECTIONAL); + _use_dma_mapping = 1; + } else { + pbase = virt_to_bus(_dma_vbase); + } + break; + default: + _dma_vbase = NULL; + pbase = 0; + gprintk("DMA memory allocation method dmaalloc=%d is not supported\n", dmaalloc); + } + + _dma_pbase = pbase; + + if (dma_debug >= 1) { + gprintk("_alloc_mpool:%s _dma_vbase:%p pbase:%lx allocated:%lx dmaalloc:%d\n", + DMA_DEV(0)?"dma_dev":"", _dma_vbase, pbase, (unsigned long)size, dmaalloc); + } + + if (((pbase + (size - 1)) >> 16) > DMA_BIT_MASK(16)) { + gprintk("DMA memory allocated at 0x%lx size 0x%lx is beyond the 4GB limit and not supported.\n", pbase, (unsigned long)size); + _pgcleanup(); + _dma_vbase = NULL; + _dma_pbase = 0; + return; + } + + if (_dma_vbase) { + _cpu_pbase = virt_to_bus(_dma_vbase); + if (dma_debug >= 1) gprintk("_cpu_pbase at %lx\n", (unsigned long)_cpu_pbase); + } +#ifdef REMAP_DMA_NONCACHED + _dma_vbase = IOREMAP(_dma_pbase, size); +#endif + + } +} + +/* + * Function: _dma_cleanup + * + * Purpose: + * DMA cleanup function. + * Parameters: + * None + * Returns: + * Always 0 + */ +int +_dma_cleanup(void) +{ + if (_dma_vbase) { + mpool_destroy(_dma_pool); + if (_use_himem) { + iounmap(_dma_vbase); + } else { +#ifdef REMAP_DMA_NONCACHED + iounmap(_dma_vbase); +#endif + _pgcleanup(); + } + _dma_vbase = NULL; + _dma_pbase = 0; + _cpu_pbase = 0; + } + return 0; +} + +void _dma_init(int robo_switch) +{ + /* DMA Setup */ + if (dmasize) { + if ((dmasize[strlen(dmasize)-1] & ~0x20) == 'M') { + _dma_mem_size = simple_strtoul(dmasize, NULL, 0); + _dma_mem_size *= ONE_MB; + } else { + gprintk("DMA memory size must be specified as e.g. dmasize=8M\n"); + } + if (_dma_mem_size & (_dma_mem_size-1)) { + gprintk("dmasize must be a power of 2 (1M, 2M, 4M, 8M etc.)\n"); + _dma_mem_size = 0; + } + } else { + if(robo_switch){ + _dma_mem_size = DMA_MEM_DEFAULT_ROBO; + } + } + + if (himem) { + if ((himem[0] & ~0x20) == 'Y' || himem[0] == '1') { + _use_himem = 1; + } else if ((himem[0] & ~0x20) == 'N' || himem[0] == '0') { + _use_himem = 0; + } + } + + if (_dma_mem_size) { + _alloc_mpool(_dma_mem_size); + if (_dma_vbase == NULL) { + gprintk("no DMA memory available\n"); + } + else { + mpool_init(); + _dma_pool = mpool_create(_dma_vbase, _dma_mem_size); + } + } +} + +#if USE_LINUX_BDE_MMAP +/* + * Function: _dma_range_valid + * + * Purpose: + * Check if DMA address range is valid. + * Parameters: + * phys_addr - start physical address + * size - range size + * Returns: + * 0 : not valid + * 1 : valid + */ +int +_dma_range_valid(unsigned long phys_addr, unsigned long size) +{ + unsigned long pool_start = _cpu_pbase; + unsigned long pool_end = pool_start + _dma_mem_size; + + if (phys_addr < pool_start || (phys_addr + size) > pool_end) { + gprintk("range 0x%lx-0x%lx outside DMA pool 0x%lx-0x%lx\n", + phys_addr, phys_addr + size, pool_start, pool_end); + return 0; + } + return 1; +} +#endif + +/* + * Function: _dma_pool_allocated + * + * Purpose: + * Check if DMA pool has been allocated. + * Parameters: + * None + * Returns: + * 0 : not allocated + * 1 : allocated + */ +int +_dma_pool_allocated(void) +{ + return (_dma_vbase) ? 1 : 0; +} + +sal_paddr_t +_l2p(int d, void *vaddr) +{ + if (_dma_mem_size) { + /* dma memory is a contiguous block */ + if (vaddr) { + return _dma_pbase + (PTR_TO_UINTPTR(vaddr) - PTR_TO_UINTPTR(_dma_vbase)); + } + return 0; + } + return ((sal_paddr_t)virt_to_bus(vaddr)); +} + +void * +_p2l(int d, sal_paddr_t paddr) +{ + sal_vaddr_t vaddr = (sal_vaddr_t)_dma_vbase; + + if (_dma_mem_size) { + /* DMA memory is a contiguous block */ + if (paddr == 0) { + return NULL; + } + return (void *)(vaddr + (sal_vaddr_t)(paddr - _dma_pbase)); + } + return bus_to_virt(paddr); +} + +/* + * Some of the driver malloc's are too large for + * kmalloc(), so 'sal_alloc' and 'sal_free' in the + * linux kernel sal cannot be implemented with kmalloc(). + * + * Instead, they expect someone to provide an allocator + * that can handle the gimongous size of some of the + * allocations, and we provide it here, by allocating + * this memory out of the boot-time dma pool. + * + * These are the functions in question: + */ + +void* kmalloc_giant(int sz) +{ + return mpool_alloc(_dma_pool, sz); +} + +void kfree_giant(void* ptr) +{ + return mpool_free(_dma_pool, ptr); +} + +uint32_t * +_salloc(int d, int size, const char *name) +{ + void *ptr; + + if (_dma_mem_size) { + return mpool_alloc(_dma_pool, size); + } + if ((ptr = kmalloc(size, mem_flags)) == NULL) { + ptr = _pgalloc(size); + } + return ptr; +} + +void +_sfree(int d, void *ptr) +{ + if (_dma_mem_size) { + return mpool_free(_dma_pool, ptr); + } + if (_pgfree(ptr) < 0) { + kfree(ptr); + } +} + +int +_sinval(int d, void *ptr, int length) +{ +#if defined(dma_cache_wback_inv) + dma_cache_wback_inv((unsigned long)ptr, length); +#else +#if defined(IPROC_CMICD) || defined(BCM958525) + /* FIXME: need proper function to replace dma_cache_sync */ + dma_sync_single_for_cpu(NULL, (unsigned long)ptr, length, DMA_BIDIRECTIONAL); +#else + dma_cache_sync(NULL, ptr, length, DMA_BIDIRECTIONAL); +#endif +#endif + return 0; +} + +int +_sflush(int d, void *ptr, int length) +{ +#if defined(dma_cache_wback_inv) + dma_cache_wback_inv((unsigned long)ptr, length); +#else +#if defined(IPROC_CMICD) || defined(BCM958525) + /* FIXME: need proper function to replace dma_cache_sync */ + dma_sync_single_for_cpu(NULL, (unsigned long)ptr, length, DMA_BIDIRECTIONAL); +#else + dma_cache_sync(NULL, ptr, length, DMA_BIDIRECTIONAL); +#endif +#endif + + return 0; +} + +int +lkbde_get_dma_info(phys_addr_t* cpu_pbase, phys_addr_t* dma_pbase, ssize_t* size) +{ + if (_dma_vbase == NULL) { + if (_dma_mem_size == 0) { + _dma_mem_size = DMA_MEM_DEFAULT; + } + _alloc_mpool(_dma_mem_size); + } + *cpu_pbase = _cpu_pbase; + *dma_pbase = _dma_pbase; + *size = (_dma_vbase) ? _dma_mem_size : 0; + return 0; +} + +void +_dma_pprint(void) +{ + pprintf("DMA Memory (%s): %d bytes, %d used, %d free%s\n", + (_use_himem) ? "high" : "kernel", + (_dma_vbase) ? _dma_mem_size : 0, + (_dma_vbase) ? mpool_usage(_dma_pool) : 0, + (_dma_vbase) ? _dma_mem_size - mpool_usage(_dma_pool) : 0, + USE_LINUX_BDE_MMAP ? ", local mmap" : ""); +} + +/* + * Export functions + */ +LKM_EXPORT_SYM(kmalloc_giant); +LKM_EXPORT_SYM(kfree_giant); +LKM_EXPORT_SYM(lkbde_get_dma_info); only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/kernel/linux_shbde.c +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/kernel/linux_shbde.c @@ -0,0 +1,121 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: $ + * $Copyright: (c) 2014 Broadcom Corp. + * All Rights Reserved.$ + * + */ + +#include +#include +#include +#include "linux_shbde.h" + +/* Hardware abstractions for shared BDE functions */ + +static unsigned short +linux_pcic16_read(void *pci_dev, unsigned int addr) +{ + u16 data = 0; + + pci_read_config_word((struct pci_dev *)pci_dev, addr, &data); + + return data; +} + +static void +linux_pcic16_write(void *pci_dev, unsigned int addr, unsigned short data) +{ + pci_write_config_word((struct pci_dev *)pci_dev, addr, (u16)data); +} + +static unsigned int +linux_pcic32_read(void *pci_dev, unsigned int addr) +{ + u32 data = 0; + + pci_read_config_dword((struct pci_dev *)pci_dev, addr, &data); + + return data; +} + +static void +linux_pcic32_write(void *pci_dev, unsigned int addr, unsigned int data) +{ + pci_write_config_dword((struct pci_dev *)pci_dev, addr, (u32)data); +} + +static unsigned int +linux_io32_read(void *addr) +{ + return *((volatile u32 *)addr); +} + +static void +linux_io32_write(void *addr, unsigned int data) +{ + *((volatile u32 *)addr) = data; +} + +static void +linux_usleep(int usec) +{ + udelay(usec); +} + + +/* To get the PCI parent device under linux, from only the device pointer */ +static void * +linux_pci_parent_device_get(void *pci_dev) +{ + return (void *)(((struct pci_dev *)pci_dev)->bus->self); +} + + +/* + * Function: + * linux_shbde_hal_init + * Purpose: + * Initialize hardware abstraction module for Linux kernel. + * Parameters: + * shbde - pointer to uninitialized hardware abstraction module + * log_func - optional log output function + * Returns: + * Always 0 + */ +int +linux_shbde_hal_init(shbde_hal_t *shbde, shbde_log_func_t log_func) +{ + memset(shbde, 0, sizeof(*shbde)); + + shbde->log_func = log_func; + + shbde->pcic16_read = linux_pcic16_read; + shbde->pcic16_write = linux_pcic16_write; + shbde->pcic32_read = linux_pcic32_read; + shbde->pcic32_write = linux_pcic32_write; + + shbde->io32_read = linux_io32_read; + shbde->io32_write = linux_io32_write; + + shbde->usleep = linux_usleep; + + shbde->pci_parent_device_get = linux_pci_parent_device_get; + + return 0; +} only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/kernel/linux_shbde.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/kernel/linux_shbde.h @@ -0,0 +1,34 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: $ + * $Copyright: (c) 2014 Broadcom Corp. + * All Rights Reserved.$ + * + */ + +#ifndef __LINUX_SHBDE_H__ +#define __LINUX_SHBDE_H__ + +#include +#include +#include + +extern int +linux_shbde_hal_init(shbde_hal_t *shbde, shbde_log_func_t log_func); + +#endif /* __LINUX_SHBDE_H__ */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/shared/mpool.c +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/shared/mpool.c @@ -0,0 +1,295 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: mpool.c,v 1.18 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ + +#include + +#ifdef __KERNEL__ + +/* + * Abstractions used when compiling for Linux kernel mode. + */ + +#include + +/* + * We cannot use the linux kernel SAL for MALLOC/FREE because + * the current implementation of sal_alloc() allocates memory + * out of an mpool created by this module... + */ +#define MALLOC(x) kmalloc(x, GFP_ATOMIC) +#define FREE(x) kfree(x) + +static spinlock_t _mpool_lock; +#define MPOOL_LOCK_INIT() spin_lock_init(&_mpool_lock) +#define MPOOL_LOCK() unsigned long flags; spin_lock_irqsave(&_mpool_lock, flags) +#define MPOOL_UNLOCK() spin_unlock_irqrestore(&_mpool_lock, flags) + +#else /* !__KERNEL__*/ + +/* + * Abstractions used when compiling for Linux user mode. + */ + +#include +#include + +#define MALLOC(x) malloc(x) +#define FREE(x) free(x) + +static sal_sem_t _mpool_lock; +#define MPOOL_LOCK_INIT() _mpool_lock = sal_sem_create("mpool_lock", 1, 1) +#define MPOOL_LOCK() sal_sem_take(_mpool_lock, sal_sem_FOREVER) +#define MPOOL_UNLOCK() sal_sem_give(_mpool_lock) + +#endif /* __KERNEL__ */ + +/* Allow external override for system cache line size */ +#ifndef BCM_CACHE_LINE_BYTES +#ifdef L1_CACHE_BYTES +#define BCM_CACHE_LINE_BYTES L1_CACHE_BYTES +#else +#define BCM_CACHE_LINE_BYTES 128 /* Should be fine on most platforms */ +#endif +#endif + +typedef struct mpool_mem_s { + unsigned char *address; + int size; + struct mpool_mem_s *next; +} mpool_mem_t; + +/* + * Function: mpool_init + * + * Purpose: + * Initialize mpool lock. + * Parameters: + * None + * Returns: + * Always 0 + */ +int +mpool_init(void) +{ + MPOOL_LOCK_INIT(); + return 0; +} + +#ifdef TRACK_DMA_USAGE +static int _dma_mem_used = 0; +#endif + +/* + * Function: mpool_alloc + * + * Purpose: + * Allocate memory block from mpool. + * Parameters: + * pool - mpool handle (from mpool_create) + * size - size of memory block to allocate + * Returns: + * Pointer to allocated memory block or NULL if allocation fails. + */ +void * +mpool_alloc(mpool_handle_t pool, int size) +{ + mpool_mem_t *ptr = pool, *newptr = NULL; + int mod; + + MPOOL_LOCK(); + + mod = size & (BCM_CACHE_LINE_BYTES - 1); + if (mod != 0 ) { + size += (BCM_CACHE_LINE_BYTES - mod); + } + while (ptr && ptr->next) { + if (ptr->next->address - (ptr->address + ptr->size) >= size) { + break; + } + ptr = ptr->next; + } + + if (!(ptr && ptr->next)) { + MPOOL_UNLOCK(); + return NULL; + } + newptr = MALLOC(sizeof(mpool_mem_t)); + if (!newptr) { + MPOOL_UNLOCK(); + return NULL; + } + + newptr->address = ptr->address + ptr->size; + newptr->size = size; + newptr->next = ptr->next; + ptr->next = newptr; +#ifdef TRACK_DMA_USAGE + _dma_mem_used += size; +#endif + MPOOL_UNLOCK(); + + return newptr->address; +} + + +/* + * Function: mpool_free + * + * Purpose: + * Free memory block allocated from mpool.. + * Parameters: + * pool - mpool handle (from mpool_create) + * addr - address of memory block to free + * Returns: + * Nothing + */ +void +mpool_free(mpool_handle_t pool, void *addr) +{ + unsigned char *address = (unsigned char *)addr; + mpool_mem_t *ptr = pool, *prev = NULL; + + MPOOL_LOCK(); + + while (ptr && ptr->next) { + if (ptr->next->address == address) { +#ifdef TRACK_DMA_USAGE + _dma_mem_used -= ptr->next->size; +#endif + break; + } + ptr = ptr->next; + } + + if (ptr && ptr->next) { + prev = ptr; + ptr = ptr->next; + prev->next = ptr->next; + FREE(ptr); + } + + MPOOL_UNLOCK(); +} + +/* + * Function: mpool_create + * + * Purpose: + * Create and initialize mpool control structures. + * Parameters: + * base_ptr - pointer to mpool memory block + * size - total size of mpool memory block + * Returns: + * mpool handle + * Notes + * The mpool handle returned must be used for subsequent + * memory allocations from the mpool. + */ +mpool_handle_t +mpool_create(void *base_ptr, int size) +{ + mpool_mem_t *head, *tail; + int mod = (int)(((unsigned long)base_ptr) & (BCM_CACHE_LINE_BYTES - 1)); + + MPOOL_LOCK(); + + if (mod) { + base_ptr = (char*)base_ptr + (BCM_CACHE_LINE_BYTES - mod); + size -= (BCM_CACHE_LINE_BYTES - mod); + } + size &= ~(BCM_CACHE_LINE_BYTES - 1); + + + head = (mpool_mem_t *)MALLOC(sizeof(mpool_mem_t)); + if (head == NULL) { + return NULL; + } + tail = (mpool_mem_t *)MALLOC(sizeof(mpool_mem_t)); + if (tail == NULL) { + FREE(head); + return NULL; + } + + head->size = tail->size = 0; + head->address = base_ptr; + tail->address = head->address + size; + head->next = tail; + tail->next = NULL; + + MPOOL_UNLOCK(); + + return head; +} + +/* + * Function: mpool_destroy + * + * Purpose: + * Free mpool control structures. + * Parameters: + * pool - mpool handle (from mpool_create) + * Returns: + * Always 0 + */ +int +mpool_destroy(mpool_handle_t pool) +{ + mpool_mem_t *ptr, *next; + + MPOOL_LOCK(); + + for (ptr = pool; ptr; ptr = next) { + next = ptr->next; + FREE(ptr); + } + + MPOOL_UNLOCK(); + + return 0; +} + +/* + * Function: mpool_usage + * + * Purpose: + * Report total sum of allocated mpool memory. + * Parameters: + * pool - mpool handle (from mpool_create) + * Returns: + * Number of bytes currently allocated using mpool_alloc. + */ +int +mpool_usage(mpool_handle_t pool) +{ + int usage = 0; + mpool_mem_t *ptr; + + MPOOL_LOCK(); + + for (ptr = pool; ptr; ptr = ptr->next) { + usage += ptr->size; + } + + MPOOL_UNLOCK(); + + return usage; +} only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/user/kernel/Makefile +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/user/kernel/Makefile @@ -0,0 +1,71 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.1 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# +LOCALDIR = systems/bde/linux/user/kernel + +# Make sure we build for the kernel if this is a user-mode build +ifneq ($(platform), ) +override-target=linux-$(platform) +endif + +include $(SDK)/make/Make.config + +LIBS = $(LIBDIR)/libkern.a + +ifneq ($(kernel_version),2_4) +KERNEL_MODULE_DIR = kernel_module + +THIS_MOD_NAME := linux-user-bde +MODULE = $(LIBDIR)/$(THIS_MOD_NAME).o +KMODULE = $(LIBDIR)/$(THIS_MOD_NAME).ko + +build: kernel_libs $(MODULE) $(KMODULE) +else +MODULE = $(LIBDIR)/linux-user-bde.o + +build: kernel_libs $(MODULE) +endif + +KBUILD_EXTRA_SYMBOLS := ${BLDDIR}/../../kernel/kernel_module/Module.symvers + +$(MODULE): $(BLDDIR)/.tree $(BOBJS) $(LIBS) + $(LD) $(MODULE_LDFLAGS) -r -d $(BOBJS) $(LIBS) -o $@ +ifneq ($(kernel_version),2_4) +$(KMODULE): $(MODULE) + rm -fr $(BLDDIR)/$(KERNEL_MODULE_DIR) + mkdir $(BLDDIR)/$(KERNEL_MODULE_DIR) + cp ${SDK}/make/Makefile.linux-kmodule $(BLDDIR)/$(KERNEL_MODULE_DIR)/Makefile + cat ${KBUILD_EXTRA_SYMBOLS} > $(BLDDIR)/$(KERNEL_MODULE_DIR)/Module.symvers + MOD_NAME=$(THIS_MOD_NAME) $(MAKE) -C $(BLDDIR)/$(KERNEL_MODULE_DIR) $(THIS_MOD_NAME).ko +endif + +kernel_libs: + $(MAKE) -C $(SDK)/systems/linux/kernel/modules/shared + +include $(SDK)/make/Make.depend + +# Make.depend is before clean:: so that Make.depend's clean:: runs first. + +clean:: + $(MAKE) -C $(SDK)/systems/linux/kernel/modules/shared $@ + $(RM) $(BOBJS) $(MODULE) + +.PHONY: build kernel_libs only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/user/kernel/linux-user-bde.c +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/user/kernel/linux-user-bde.c @@ -0,0 +1,1238 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: linux-user-bde.c,v 1.80 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + * + * Linux User BDE Helper Module + */ +#include +#include +#include + +#include +#include +#include + +#include "linux-user-bde.h" + +#ifdef KEYSTONE +#include +#endif + + +MODULE_AUTHOR("Broadcom Corporation"); +MODULE_DESCRIPTION("User BDE Helper Module"); +MODULE_LICENSE("GPL"); + +/* CMIC/CMICe defines */ +#define CMIC_IRQ_STAT 0x00000144 +#define CMIC_IRQ_MASK 0x00000148 +#define CMIC_IRQ_MASK_1 0x0000006C +#define CMIC_IRQ_MASK_2 0x00000070 + +/* CMICm defines */ +#define CMIC_CMCx_IRQ_STAT0_OFFSET(x) (0x31400 + (0x1000 * x)) +#define CMIC_CMCx_IRQ_STAT1_OFFSET(x) (0x31404 + (0x1000 * x)) +#define CMIC_CMCx_IRQ_STAT2_OFFSET(x) (0x31408 + (0x1000 * x)) +#define CMIC_CMCx_IRQ_STAT3_OFFSET(x) (0x3140c + (0x1000 * x)) +#define CMIC_CMCx_IRQ_STAT4_OFFSET(x) (0x31410 + (0x1000 * x)) + +#define CMIC_CMCx_PCIE_IRQ_MASK0_OFFSET(x) (0x31414 + (0x1000 * x)) +#define CMIC_CMCx_PCIE_IRQ_MASK1_OFFSET(x) (0x31418 + (0x1000 * x)) +#define CMIC_CMCx_PCIE_IRQ_MASK2_OFFSET(x) (0x3141c + (0x1000 * x)) +#define CMIC_CMCx_PCIE_IRQ_MASK3_OFFSET(x) (0x31420 + (0x1000 * x)) +#define CMIC_CMCx_PCIE_IRQ_MASK4_OFFSET(x) (0x31424 + (0x1000 * x)) + +/* CMICd defines */ +#define CMIC_CMCx_IRQ_STAT5_OFFSET(x) (0x314b0 + (0x1000 * x)) +#define CMIC_CMCx_IRQ_STAT6_OFFSET(x) (0x314b4 + (0x1000 * x)) +#define CMIC_CMCx_PCIE_IRQ_MASK5_OFFSET(x) (0x314b8 + (0x1000 * x)) +#define CMIC_CMCx_PCIE_IRQ_MASK6_OFFSET(x) (0x314bc + (0x1000 * x)) + +#define CMIC_CMCx_UC0_IRQ_MASK0_OFFSET(x) (0x31428 + (0x1000 * x)) +#define CMIC_CMCx_UC0_IRQ_MASK1_OFFSET(x) (0x3142c + (0x1000 * x)) +#define CMIC_CMCx_UC0_IRQ_MASK2_OFFSET(x) (0x31430 + (0x1000 * x)) +#define CMIC_CMCx_UC0_IRQ_MASK3_OFFSET(x) (0x31434 + (0x1000 * x)) +#define CMIC_CMCx_UC0_IRQ_MASK4_OFFSET(x) (0x31438 + (0x1000 * x)) + +/* CMICX defines */ +#define INTC_INTR_REG_NUM (8) + +#define INTC_INTR_ENABLE_REG0 (0x180130f0) +#define INTC_INTR_STATUS_REG0 (0x18013190) +#define INTC_INTR_RAW_STATUS_REG0 (0x18013140) + +#define INTC_INTR_ENABLE_BASE (INTC_INTR_ENABLE_REG0) +#define INTC_INTR_STATUS_BASE (INTC_INTR_STATUS_REG0) +#define INTC_INTR_RAW_STATUS_BASE (INTC_INTR_RAW_STATUS_REG0) + + +#define READ_INTC_INTR(d, reg, v) \ + (v = user_bde->iproc_read(d, reg)) +#define WRITE_INTC_INTR(d, reg, v) \ + (user_bde->iproc_write(d, reg, v)) + +/* Allow override of default CMICm CMC */ +#ifndef BDE_CMICM_PCIE_CMC +#define BDE_CMICM_PCIE_CMC 0 +#endif + +/* Allow override of default CMICm CMC */ +#ifndef BDE_CMICD_PCIE_CMC +#define BDE_CMICD_PCIE_CMC 0 +#endif + +/* Defines used to distinguish CMICe from CMICm */ +#define CMICE_DEV_REV_ID (0x178 / sizeof(uint32)) + +static ibde_t *user_bde = NULL; + +typedef void (*isr_f)(void *); + +typedef struct bde_ctrl_s { + uint32 dev_type; + int irq; + int enabled; + int devid; + isr_f isr; + uint32 *ba; + int inst; /* associate to _bde_inst_resource[] */ +} bde_ctrl_t; + +static bde_ctrl_t _devices[LINUX_BDE_MAX_DEVICES]; + +static wait_queue_head_t _ether_interrupt_wq; +static atomic_t _ether_interrupt_has_taken_place = ATOMIC_INIT(0); + +/* + * Multiple instance resource data structure. + * To keep the DMA resource per instance. + * And track the DMA pool usage. + */ +static int _bde_multi_inst = 0; + +typedef struct { + unsigned int inst_id; + unsigned int dma_offset; + unsigned int dma_size; + wait_queue_head_t intr_wq; + atomic_t intr; +} bde_inst_resource_t; + +static bde_inst_resource_t _bde_inst_resource[LINUX_BDE_MAX_DEVICES]; + +typedef struct { + phys_addr_t cpu_pbase; /* CPU physical base address of the DMA pool */ + phys_addr_t dma_pbase; /* Bus base address of the DMA pool */ + uint32 total_size; /* Total size of the pool in MB */ + uint32 offset; /* Current offset of the pool in MB */ +}_dma_pool_t; + +static _dma_pool_t _dma_pool; + +#define ONE_MB (1024 * 1024) + +#ifdef KEYSTONE +/* + * Enforce PCIE transaction ordering. Commit the write transaction. + */ + +#define SSOC_WRITEL(val, addr) \ + do { \ + writel((val), (addr)); \ + __asm__ __volatile__("sync"); \ + } while(0) + +#else + +#define SSOC_WRITEL(val, addr) \ + writel((val), (addr)) + +#endif +/* + * Function: _interrupt + * + * Purpose: + * Interrupt Handler. + * Mask all interrupts on device and wake up interrupt + * thread. It is assumed that the interrupt thread unmasks + * interrupts again when interrupt handling is complete. + * Parameters: + * ctrl - BDE control structure for this device. + * Returns: + * Nothing + */ +static void +_cmic_interrupt(bde_ctrl_t *ctrl) +{ + int d; + uint32_t mask = 0, stat, imask = 0, fmask = 0; + bde_inst_resource_t *res; + + d = (((uint8 *)ctrl - (uint8 *)_devices) / sizeof (bde_ctrl_t)); + res = &_bde_inst_resource[ctrl->inst]; + + /* Check for secondary interrupt handler */ + if (lkbde_irq_mask_get(d, &mask, &fmask) < 0) { + fmask = 0; + } + + if (fmask != 0) { + imask = mask & ~fmask; + /* Check for pending user mode interrupts */ + stat = user_bde->read(d, CMIC_IRQ_STAT); + if ((stat & imask) == 0) { + /* All handled in kernel mode */ + lkbde_irq_mask_set(d, CMIC_IRQ_MASK, imask, 0); + return; + } + } + + lkbde_irq_mask_set(d, CMIC_IRQ_MASK, 0, 0); + + atomic_set(&res->intr, 1); + +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&res->intr_wq); +#else + wake_up_interruptible(&res->intr_wq); +#endif +} + +static void +_cmicx_interrupt(bde_ctrl_t *ctrl) +{ + int d, i; + bde_inst_resource_t *res; + + d = (((uint8 *)ctrl - (uint8 *)_devices) / sizeof (bde_ctrl_t)); + res = &_bde_inst_resource[ctrl->inst]; + + /* Disable all interrupts.. Re-enable unserviced interrupts later + * So as to avoid getting new interrupts until the user level driver + * enumerates the interrupts to be serviced + */ + for (i = 0 ; i < INTC_INTR_REG_NUM ; i++) { + WRITE_INTC_INTR(d, (INTC_INTR_ENABLE_BASE + 4*i), 0); + } + + /* Notify */ + atomic_set(&res->intr, 1); +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&res->intr_wq); +#else + wake_up_interruptible(&res->intr_wq); +#endif +} + +static void +_cmicm_interrupt(bde_ctrl_t *ctrl) +{ + int d; + int cmc = BDE_CMICM_PCIE_CMC; + uint32 stat, mask = 0, fmask = 0, imask = 0; + bde_inst_resource_t *res; + + d = (((uint8 *)ctrl - (uint8 *)_devices) / sizeof (bde_ctrl_t)); + res = &_bde_inst_resource[ctrl->inst]; + + lkbde_irq_mask_get(d, &mask, &fmask); + + while (fmask) { + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT0_OFFSET(cmc)); + imask = mask & ~fmask; + if (stat & imask) { + break; + } + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT1_OFFSET(cmc)); + if (ctrl->dev_type & BDE_AXI_DEV_TYPE) { + mask = user_bde->read(d, CMIC_CMCx_UC0_IRQ_MASK1_OFFSET(cmc)); + } else { + mask = user_bde->read(d, CMIC_CMCx_PCIE_IRQ_MASK1_OFFSET(cmc)); + } + if (stat & mask) { + break; + } + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT2_OFFSET(cmc)); + if (ctrl->dev_type & BDE_AXI_DEV_TYPE) { + mask = user_bde->read(d, CMIC_CMCx_UC0_IRQ_MASK2_OFFSET(cmc)); + } else { + mask = user_bde->read(d, CMIC_CMCx_PCIE_IRQ_MASK2_OFFSET(cmc)); + } + if (stat & mask) { + break; + } + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT3_OFFSET(cmc)); + if (ctrl->dev_type & BDE_AXI_DEV_TYPE) { + mask = user_bde->read(d, CMIC_CMCx_UC0_IRQ_MASK3_OFFSET(cmc)); + } else { + mask = user_bde->read(d, CMIC_CMCx_PCIE_IRQ_MASK3_OFFSET(cmc)); + } + if (stat & mask) { + break; + } + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT4_OFFSET(cmc)); + if (ctrl->dev_type & BDE_AXI_DEV_TYPE) { + mask = user_bde->read(d, CMIC_CMCx_UC0_IRQ_MASK4_OFFSET(cmc)); + } else { + mask = user_bde->read(d, CMIC_CMCx_PCIE_IRQ_MASK4_OFFSET(cmc)); + } + if (stat & mask) { + break; + } + return; + } + + if (ctrl->dev_type & BDE_AXI_DEV_TYPE) { + lkbde_irq_mask_set(d, CMIC_CMCx_UC0_IRQ_MASK0_OFFSET(cmc), 0, 0); + user_bde->write(d, CMIC_CMCx_UC0_IRQ_MASK1_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_UC0_IRQ_MASK2_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_UC0_IRQ_MASK3_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_UC0_IRQ_MASK4_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_UC0_IRQ_MASK0_OFFSET(1), 0); + user_bde->write(d, CMIC_CMCx_UC0_IRQ_MASK0_OFFSET(2), 0); + } + else { + lkbde_irq_mask_set(d, CMIC_CMCx_PCIE_IRQ_MASK0_OFFSET(cmc), 0, 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK1_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK2_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK3_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK4_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK0_OFFSET(1), 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK0_OFFSET(2), 0); + } + atomic_set(&res->intr, 1); +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&res->intr_wq); +#else + wake_up_interruptible(&res->intr_wq); +#endif +} + + +static void +_cmicd_interrupt(bde_ctrl_t *ctrl) +{ + int d; + int cmc = BDE_CMICD_PCIE_CMC; + uint32 stat, mask = 0, fmask = 0, imask = 0; + bde_inst_resource_t *res; + + d = (((uint8 *)ctrl - (uint8 *)_devices) / sizeof (bde_ctrl_t)); + res = &_bde_inst_resource[ctrl->inst]; + lkbde_irq_mask_get(d, &mask, &fmask); + + while (fmask) { + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT0_OFFSET(cmc)); + imask = mask & ~fmask; + if (stat & imask) { + break; + } + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT1_OFFSET(cmc)); + mask = user_bde->read(d, CMIC_CMCx_PCIE_IRQ_MASK1_OFFSET(cmc)); + if (stat & mask) { + break; + } + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT2_OFFSET(cmc)); + mask = user_bde->read(d, CMIC_CMCx_PCIE_IRQ_MASK2_OFFSET(cmc)); + if (stat & mask) { + break; + } + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT3_OFFSET(cmc)); + mask = user_bde->read(d, CMIC_CMCx_PCIE_IRQ_MASK3_OFFSET(cmc)); + if (stat & mask) { + break; + } + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT4_OFFSET(cmc)); + mask = user_bde->read(d, CMIC_CMCx_PCIE_IRQ_MASK4_OFFSET(cmc)); + if (stat & mask) { + break; + } + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT5_OFFSET(cmc)); + mask = user_bde->read(d, CMIC_CMCx_PCIE_IRQ_MASK5_OFFSET(cmc)); + if (stat & mask) { + break; + } + stat = user_bde->read(d, CMIC_CMCx_IRQ_STAT6_OFFSET(cmc)); + mask = user_bde->read(d, CMIC_CMCx_PCIE_IRQ_MASK6_OFFSET(cmc)); + if (stat & mask) { + break; + } + return; + } + + lkbde_irq_mask_set(d, CMIC_CMCx_PCIE_IRQ_MASK0_OFFSET(cmc), 0, 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK1_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK2_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK3_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK4_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK5_OFFSET(cmc), 0); + user_bde->write(d, CMIC_CMCx_PCIE_IRQ_MASK6_OFFSET(cmc), 0); + + atomic_set(&res->intr, 1); +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&res->intr_wq); +#else + wake_up_interruptible(&res->intr_wq); +#endif +} + +static void +_bcm88750_interrupt(bde_ctrl_t *ctrl) +{ + int d; + bde_inst_resource_t *res; + + d = (((uint8 *)ctrl - (uint8 *)_devices) / sizeof (bde_ctrl_t)); + res = &_bde_inst_resource[ctrl->inst]; + lkbde_irq_mask_set(d, CMIC_IRQ_MASK, 0, 0); + + lkbde_irq_mask_set(d, CMIC_IRQ_MASK_1, 0, 0); + lkbde_irq_mask_set(d, CMIC_IRQ_MASK_2, 0, 0); + atomic_set(&res->intr, 1); +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&res->intr_wq); +#else + wake_up_interruptible(&res->intr_wq); +#endif +} + +static void +_qe2k_interrupt(bde_ctrl_t *ctrl) +{ + bde_inst_resource_t *res; + + res = &_bde_inst_resource[ctrl->inst]; + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x20/sizeof(uint32)); + + atomic_set(&res->intr, 1); +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&res->intr_wq); +#else + wake_up_interruptible(&res->intr_wq); +#endif +} + +static void +_fe2k_interrupt(bde_ctrl_t *ctrl) +{ + bde_inst_resource_t *res; + + res = &_bde_inst_resource[ctrl->inst]; + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x18/sizeof(uint32)); /* PC_INTERRUPT_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x24/sizeof(uint32)); /* PC_ERROR0_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x2c/sizeof(uint32)); /* PC_ERROR1_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x34/sizeof(uint32)); /* PC_UNIT_MASK */ + + atomic_set(&res->intr, 1); +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&res->intr_wq); +#else + wake_up_interruptible(&res->intr_wq); +#endif +} + +static void +_fe2kxt_interrupt(bde_ctrl_t *ctrl) +{ + bde_inst_resource_t *res; + + res = &_bde_inst_resource[ctrl->inst]; + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x2c/sizeof(uint32)); /* PC_INTERRUPT_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x38/sizeof(uint32)); /* PC_ERROR0_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x40/sizeof(uint32)); /* PC_ERROR1_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x50/sizeof(uint32)); /* PC_UNIT_MASK */ + + atomic_set(&res->intr, 1); +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&res->intr_wq); +#else + wake_up_interruptible(&res->intr_wq); +#endif +} + +static void +_bme3200_interrupt(bde_ctrl_t *ctrl) +{ + bde_inst_resource_t *res; + + res = &_bde_inst_resource[ctrl->inst]; + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x54/sizeof(uint32)); /* PI_PT_ERROR0 */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x5c/sizeof(uint32)); /* PI_PT_ERROR1 */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x64/sizeof(uint32)); /* PI_PT_ERROR2 */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x6c/sizeof(uint32)); /* PI_PT_ERROR3 */ + + atomic_set(&res->intr, 1); +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&res->intr_wq); +#else + wake_up_interruptible(&res->intr_wq); +#endif +} + + +static void +_bm9600_interrupt(bde_ctrl_t *ctrl) +{ + bde_inst_resource_t *res; + + res = &_bde_inst_resource[ctrl->inst]; + + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x5c/sizeof(uint32)); /* PI_INTERRUPT_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0xc/sizeof(uint32)); /* PI_UNIT_INTERRUPT0_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x14/sizeof(uint32)); /* PI_UNIT_INTERRUPT1_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x1c/sizeof(uint32)); /* PI_UNIT_INTERRUPT2_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x24/sizeof(uint32)); /* PI_UNIT_INTERRUPT3_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x2c/sizeof(uint32)); /* PI_UNIT_INTERRUPT4_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x34/sizeof(uint32)); /* PI_UNIT_INTERRUPT5_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x3c/sizeof(uint32)); /* PI_UNIT_INTERRUPT6_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x44/sizeof(uint32)); /* PI_UNIT_INTERRUPT7_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x4c/sizeof(uint32)); /* PI_UNIT_INTERRUPT8_MASK */ + SSOC_WRITEL(0xffffffff, ctrl->ba + 0x54/sizeof(uint32)); /* PI_UNIT_INTERRUPT9_MASK */ + + atomic_set(&res->intr, 1); +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&res->intr_wq); +#else + wake_up_interruptible(&res->intr_wq); +#endif +} + + + +/* The actual interrupt handler of ethernet devices */ +static void +_ether_interrupt(bde_ctrl_t *ctrl) +{ +#ifdef KEYSTONE + /* + * Since the two GMAC cores are sharing the same IRQ. + * Add the checking to handle the interrupt events. + */ + if ((ctrl->devid == BCM53000_GMAC_ID)) { + if ((readl(ctrl->ba + 0x020/4) & readl(ctrl->ba + 0x024/4)) == 0) { + return; + } + } +#endif + SSOC_WRITEL(0, ctrl->ba + 0x024/4); + + atomic_set(&_ether_interrupt_has_taken_place, 1); +#ifdef BDE_LINUX_NON_INTERRUPTIBLE + wake_up(&_ether_interrupt_wq); +#else + wake_up_interruptible(&_ether_interrupt_wq); +#endif +} + + +static struct _intr_mode_s { + isr_f isr; + const char *name; +} _intr_mode[] = { + { (isr_f)_cmic_interrupt, "CMIC/CMICe" }, + { (isr_f)_cmicm_interrupt, "CMICm" }, + { (isr_f)_cmicd_interrupt, "CMICd" }, + { (isr_f)_qe2k_interrupt, "QE2K" }, + { (isr_f)_fe2k_interrupt, "FE2K" }, + { (isr_f)_fe2kxt_interrupt, "FE2KXT" }, + { (isr_f)_bme3200_interrupt, "BME3200" }, + { (isr_f)_bm9600_interrupt, "BM9600" }, + { (isr_f)_bcm88750_interrupt, "BCM88750" }, + { (isr_f)_cmicx_interrupt, "CMICx" }, + { NULL, NULL } +}; + +static const char * +_intr_mode_str(void *isr) +{ + int imx; + + imx = 0; + while (_intr_mode[imx].isr != NULL) { + if (isr == _intr_mode[imx].isr) { + return _intr_mode[imx].name; + } + imx++; + } + return NULL; +} + +static void +_devices_init(int d) +{ + bde_ctrl_t *ctrl; + uint32 ver; + + ctrl = &_devices[d]; + /* Initialize our control info */ + ctrl->dev_type = user_bde->get_dev_type(d); + ctrl->devid = user_bde->get_dev(d)->device; + ctrl->inst = 0; + + if (BDE_DEV_MEM_MAPPED(ctrl->dev_type)) { + ctrl->enabled = 0; + ctrl->ba = lkbde_get_dev_virt(d); + } + if (ctrl->dev_type & BDE_SWITCH_DEV_TYPE) { + switch (user_bde->get_dev(d)->device) { + case QE2000_DEVICE_ID: + ctrl->isr = (isr_f)_qe2k_interrupt; + break; + case BCM88020_DEVICE_ID: + ctrl->isr = (isr_f)_fe2k_interrupt; + break; + case BCM88025_DEVICE_ID: + ctrl->isr = (isr_f)_fe2kxt_interrupt; + break; + case BME3200_DEVICE_ID: + ctrl->isr = (isr_f)_bme3200_interrupt; + break; + case BM9600_DEVICE_ID: + ctrl->isr = (isr_f)_bm9600_interrupt; + break; + case BCM88750_DEVICE_ID: + case BCM88753_DEVICE_ID: + case BCM88754_DEVICE_ID: + case BCM88755_DEVICE_ID: + case BCM88752_DEVICE_ID: + ctrl->isr = (isr_f)_bcm88750_interrupt; + break; + /* FIXME: might use _devices[i].dev_type & BDE_AXI_DEV_TYPE*/ + case BCM88670_DEVICE_ID: + case BCM88671_DEVICE_ID: + case BCM88671M_DEVICE_ID: + case BCM88672_DEVICE_ID: + case BCM88673_DEVICE_ID: + case BCM88674_DEVICE_ID: + case BCM88675_DEVICE_ID: + case BCM88675M_DEVICE_ID: + case BCM88676_DEVICE_ID: + case BCM88676M_DEVICE_ID: + case BCM88677_DEVICE_ID: + case BCM88678_DEVICE_ID: + case BCM88679_DEVICE_ID: + case BCM88370_DEVICE_ID: + case BCM88371_DEVICE_ID: + case BCM88371M_DEVICE_ID: + case BCM88375_DEVICE_ID: + case BCM88376_DEVICE_ID: + case BCM88376M_DEVICE_ID: + case BCM88377_DEVICE_ID: + case BCM88378_DEVICE_ID: + case BCM88379_DEVICE_ID: + case BCM88681_DEVICE_ID: + case BCM88682_DEVICE_ID: + case BCM88683_DEVICE_ID: + case BCM88684_DEVICE_ID: + case BCM88685_DEVICE_ID: + case BCM88380_DEVICE_ID: + case BCM88381_DEVICE_ID: + case BCM88680_DEVICE_ID: + case BCM88690_DEVICE_ID: + case BCM88770_DEVICE_ID: + case BCM88773_DEVICE_ID: + case BCM88774_DEVICE_ID: + case BCM88775_DEVICE_ID: + case BCM88776_DEVICE_ID: + case BCM88777_DEVICE_ID: + case BCM88470_DEVICE_ID: + case BCM88470P_DEVICE_ID: + case BCM88471_DEVICE_ID: + case BCM88473_DEVICE_ID: + case BCM88474_DEVICE_ID: + case BCM88474H_DEVICE_ID: + case BCM88476_DEVICE_ID: + case BCM88477_DEVICE_ID: + + case BCM88270_DEVICE_ID: + case BCM88272_DEVICE_ID: + case BCM88273_DEVICE_ID: + case BCM88278_DEVICE_ID: + case BCM8206_DEVICE_ID: + case BCM88950_DEVICE_ID: + case BCM88953_DEVICE_ID: + case BCM88954_DEVICE_ID: + case BCM88955_DEVICE_ID: + case BCM88956_DEVICE_ID: + case BCM88790_DEVICE_ID: + case BCM88772_DEVICE_ID: + case BCM88952_DEVICE_ID: + ctrl->isr = (isr_f)_cmicd_interrupt; + break; + default: + /* Get CMIC version */ + if (user_bde->get_cmic_ver(d, &ver) != 0) { + ver = -1; + } + /* check if version is CMICX */ + if (ver == 0x04) { + ctrl->isr = (isr_f)_cmicx_interrupt; + } else { + ctrl->isr = (isr_f)_cmic_interrupt; + if ((ctrl->dev_type & BDE_256K_REG_SPACE) && +#ifdef BCM_PETRA_SUPPORT /* FIXME remove code when hardware design is fixed */ + ctrl->devid != 0x1234 && +#endif + readl(ctrl->ba + CMICE_DEV_REV_ID) == 0) { + ctrl->isr = (isr_f)_cmicm_interrupt; + } + } + break; + } + if (_intr_mode_str(ctrl->isr) == NULL) { + gprintk("Warning: Unknown interrupt mode\n"); + } + } +} +/* + * Function: _init + * + * Purpose: + * Module initialization. + * Attaches to kernel BDE. + * Parameters: + * None + * Returns: + * Always 0 + */ +static int +_init(void) +{ + int i; + phys_addr_t cpu_pbase, dma_pbase; + ssize_t dmasize; + bde_inst_resource_t *res; + + /* Connect to the kernel bde */ + if ((linux_bde_create(NULL, &user_bde) < 0) || user_bde == NULL) { + return -ENODEV; + } + + init_waitqueue_head(&_ether_interrupt_wq); + + lkbde_get_dma_info(&cpu_pbase, &dma_pbase, &dmasize); + + memset(&_dma_pool, 0, sizeof(_dma_pool)); + _dma_pool.cpu_pbase = cpu_pbase; + _dma_pool.dma_pbase = dma_pbase; + _dma_pool.total_size = dmasize / ONE_MB; + + memset(_devices, 0, sizeof(_devices)); + + /* Use _bde_inst_resource[0] as the default resource */ + memset(_bde_inst_resource, 0, sizeof(_bde_inst_resource)); + res = &_bde_inst_resource[0]; + res->dma_offset = 0; + res->dma_size = _dma_pool.total_size; + init_waitqueue_head(&res->intr_wq); + atomic_set(&res->intr, 0); + + for (i = 0; i < user_bde->num_devices(BDE_ALL_DEVICES); i++) { + res->inst_id |= (1 << i); + _devices_init(i); + } + return 0; +} + +/* + * Function: _cleanup + * + * Purpose: + * Module cleanup function. + * Parameters: + * None + * Returns: + * Always 0 + */ +static int +_cleanup(void) +{ + int i; + + if (user_bde) { + for (i = 0; i < user_bde->num_devices(BDE_ALL_DEVICES); i++) { + if (_devices[i].enabled && + BDE_DEV_MEM_MAPPED(_devices[i].dev_type)) { + user_bde->interrupt_disconnect(i); + } + lkbde_dev_instid_set(i, 0); + } + linux_bde_destroy(user_bde); + user_bde = NULL; + } + return 0; +} + +/* + * Function: _pprint + * + * Purpose: + * Print proc filesystem information. + * Parameters: + * None + * Returns: + * Always 0 + */ +static int +_pprint(void) +{ + int idx; + const char *name; + bde_inst_resource_t *res; + uint32 state, instid; + + pprintf("Broadcom Device Enumerator (%s)\n", LINUX_USER_BDE_NAME); + for (idx = 0; idx < user_bde->num_devices(BDE_ALL_DEVICES); idx++) { + name = _intr_mode_str(_devices[idx].isr); + if (name == NULL) { + name = "unknown"; + } + pprintf("\t%d: Interrupt mode %s ",idx, name); + (void)lkbde_dev_state_get(idx, &state); + if (state == BDE_DEV_STATE_REMOVED) { + pprintf(" Device REMOVED ! \n"); + } else { + (void)lkbde_dev_instid_get(idx, &instid); + if (instid) { + pprintf("Inst id 0x%x\n",instid); + } else { + pprintf("\n"); + } + } + } + pprintf("Instance resource \n"); + + for (idx = 0; idx < user_bde->num_devices(BDE_ALL_DEVICES); idx++) { + res = &_bde_inst_resource[idx]; + if (res->inst_id) { + pprintf("\tDev mask 0x%x : " + "DMA offset %d size %d MB\n", + res->inst_id, + res->dma_offset, + res->dma_size); + } + } + + return 0; +} + +/* + * Allocate the DMA resource from DMA pool + * Parameter : + * dma_size (IN): allocate dma_size in MB + * dma_offset (OUT): dma offset in MB + */ +static int +_dma_resource_alloc(unsigned int dma_size, unsigned int *dma_offset) +{ + uint32 left; + + left = _dma_pool.total_size - _dma_pool.offset; + if (dma_size > left) { + gprintk("ERROR: Run out the dma resource!\n"); + return -1; + } + *dma_offset = _dma_pool.offset; + _dma_pool.offset += dma_size; + return 0; +} + +static int +_dma_resource_get(int inst_id, phys_addr_t *cpu_pbase, phys_addr_t *dma_pbase, ssize_t* size) +{ + int i; + unsigned int dma_size = 0, dma_offset = 0; + bde_inst_resource_t *res; + + for (i = 0; i < user_bde->num_devices(BDE_ALL_DEVICES); i++) { + res = &_bde_inst_resource[i]; + if (res->inst_id == inst_id) { + dma_size = res->dma_size; + dma_offset = res->dma_offset; + break; + } + } + + *cpu_pbase = _dma_pool.cpu_pbase + dma_offset * ONE_MB; + *dma_pbase = _dma_pool.dma_pbase + dma_offset * ONE_MB; + *size = dma_size * ONE_MB; + + return 0; +} + +static int +_instance_validate(unsigned int inst_id, unsigned int dmasize) +{ + int i; + bde_inst_resource_t *res; + + for (i = 0; i < user_bde->num_devices(BDE_ALL_DEVICES); i++) { + res = &_bde_inst_resource[i]; + if (res->inst_id == inst_id) { + if (res->dma_size != dmasize) { + if(_devices[i].inst == 0){ + /* Skip _instance_validate (not init yet) */ + return LUBDE_SUCCESS; + } + gprintk("ERROR: dma_size mismatch\n"); + return LUBDE_FAIL; + } + return (1); + } + } + return LUBDE_SUCCESS; +} + +static int +_device_reprobe(void) +{ + int i; + for (i = 0; i < user_bde->num_devices(BDE_ALL_DEVICES); i++) { + if (_devices[i].devid == 0) { + _devices_init(i); + } + } + return 0; +} + +static int +_instance_attach(unsigned int inst_id, unsigned int dma_size) +{ + unsigned int dma_offset; + int i, exist; + bde_inst_resource_t *res; + int inst_idx = -1; + uint32 instid; + + /* Reprobe the system for hot-plugged device */ + _device_reprobe(); + + /* Validate the resource with inst_id */ + exist = _instance_validate(inst_id, dma_size); + if (exist < 0) { + return LUBDE_FAIL; + } + if (exist > 0) { + return LUBDE_SUCCESS; + } + if (_dma_resource_alloc(dma_size, &dma_offset) < 0) { + return LUBDE_FAIL; + } + for (i = 0; i < user_bde->num_devices(BDE_ALL_DEVICES); i++) { + res = &_bde_inst_resource[i]; + if ((_bde_multi_inst == 0) || (res->inst_id == 0)) { + res->inst_id = inst_id; + res->dma_offset = dma_offset; + res->dma_size = dma_size; + _bde_multi_inst++; + inst_idx = i; + init_waitqueue_head(&res->intr_wq); + atomic_set(&res->intr, 0); + break; + } + } + + for (i = 0; i < user_bde->num_devices(BDE_ALL_DEVICES); i++) { + if (inst_id & (1 << i)) { + _devices[i].inst = inst_idx; + /* Pass the instid to the kernel BDE */ + if (lkbde_dev_instid_get(i, &instid) == 0) { + if (!instid) { + lkbde_dev_instid_set(i, inst_id); + } + } + } + } + + return LUBDE_SUCCESS; +} + +/* + * Function: _ioctl + * + * Purpose: + * Handle IOCTL commands from user mode. + * Parameters: + * cmd - IOCTL cmd + * arg - IOCTL parameters + * Returns: + * 0 on success, <0 on error + */ +static int +_ioctl(unsigned int cmd, unsigned long arg) +{ + lubde_ioctl_t io; + phys_addr_t cpu_pbase, dma_pbase; + ssize_t size; + const ibde_dev_t *bde_dev; + int inst_id; + bde_inst_resource_t *res; + + if (copy_from_user(&io, (void *)arg, sizeof(io))) { + return -EFAULT; + } + + io.rc = LUBDE_SUCCESS; + + switch(cmd) { + case LUBDE_VERSION: + io.d0 = KBDE_VERSION; + break; + case LUBDE_GET_NUM_DEVICES: + io.d0 = user_bde->num_devices(io.dev); + break; + case LUBDE_GET_DEVICE: + 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, &cpu_pbase, &dma_pbase, &size); + } else { + lkbde_get_dma_info(&cpu_pbase, &dma_pbase, &size); + } + io.d0 = dma_pbase; + io.d1 = size; + /* Optionally enable DMA mmap via /dev/linux-kernel-bde */ + io.d2 = USE_LINUX_BDE_MMAP; + /* Get physical address for mmap */ + io.dx.dw[0] = cpu_pbase; +#ifdef PHYS_ADDRS_ARE_64BITS + io.dx.dw[1] = cpu_pbase >> 32; +#else + io.dx.dw[1] = 0; +#endif + break; + case LUBDE_ENABLE_INTERRUPTS: + if (_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-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/user/kernel/linux-user-bde.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/linux/user/kernel/linux-user-bde.h @@ -0,0 +1,113 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: linux-user-bde.h,v 1.23 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ + +#ifndef __LINUX_USER_BDE_H__ +#define __LINUX_USER_BDE_H__ + +#include +#include +#include +#ifndef __KERNEL__ +#include +#endif + +#if defined(SAL_BDE_32BIT_USER_64BIT_KERNEL) || defined(PTRS_ARE_64BITS) +typedef uint64_t bde_kernel_addr_t; +#else +typedef uint32_t bde_kernel_addr_t; +#endif + +/* Ioctl control structure */ +typedef struct { + unsigned int dev; /* Device ID */ + unsigned int rc; /* Operation Return Code */ + unsigned int d0; /* Operation specific data */ + unsigned int d1; + unsigned int d2; + unsigned int d3; + bde_kernel_addr_t p0; + union { + unsigned int dw[2]; + unsigned char buf[64]; + } dx; +} lubde_ioctl_t; + + +/* LUBDE ioctls */ +#define LUBDE_MAGIC 'L' + +#define LUBDE_VERSION _IO(LUBDE_MAGIC, 0) +#define LUBDE_GET_NUM_DEVICES _IO(LUBDE_MAGIC, 1) +#define LUBDE_GET_DEVICE _IO(LUBDE_MAGIC, 2) +#define LUBDE_PCI_CONFIG_PUT32 _IO(LUBDE_MAGIC, 3) +#define LUBDE_PCI_CONFIG_GET32 _IO(LUBDE_MAGIC, 4) +#define LUBDE_GET_DMA_INFO _IO(LUBDE_MAGIC, 5) +#define LUBDE_ENABLE_INTERRUPTS _IO(LUBDE_MAGIC, 6) +#define LUBDE_DISABLE_INTERRUPTS _IO(LUBDE_MAGIC, 7) +#define LUBDE_USLEEP _IO(LUBDE_MAGIC, 8) +#define LUBDE_WAIT_FOR_INTERRUPT _IO(LUBDE_MAGIC, 9) +#define LUBDE_SEM_OP _IO(LUBDE_MAGIC, 10) +#define LUBDE_UDELAY _IO(LUBDE_MAGIC, 11) +#define LUBDE_GET_DEVICE_TYPE _IO(LUBDE_MAGIC, 12) +#define LUBDE_SPI_READ_REG _IO(LUBDE_MAGIC, 13) +#define LUBDE_SPI_WRITE_REG _IO(LUBDE_MAGIC, 14) +#define LUBDE_READ_REG_16BIT_BUS _IO(LUBDE_MAGIC, 19) +#define LUBDE_WRITE_REG_16BIT_BUS _IO(LUBDE_MAGIC, 20) +#define LUBDE_GET_BUS_FEATURES _IO(LUBDE_MAGIC, 21) +#define LUBDE_WRITE_IRQ_MASK _IO(LUBDE_MAGIC, 22) +#define LUBDE_CPU_WRITE_REG _IO(LUBDE_MAGIC, 23) +#define LUBDE_CPU_READ_REG _IO(LUBDE_MAGIC, 24) +#define LUBDE_CPU_PCI_REGISTER _IO(LUBDE_MAGIC, 25) +#define LUBDE_DEV_RESOURCE _IO(LUBDE_MAGIC, 26) +#define LUBDE_IPROC_READ_REG _IO(LUBDE_MAGIC, 27) +#define LUBDE_IPROC_WRITE_REG _IO(LUBDE_MAGIC, 28) +#define LUBDE_ATTACH_INSTANCE _IO(LUBDE_MAGIC, 29) +#define LUBDE_GET_DEVICE_STATE _IO(LUBDE_MAGIC, 30) + +#define LUBDE_SEM_OP_CREATE 1 +#define LUBDE_SEM_OP_DESTROY 2 +#define LUBDE_SEM_OP_TAKE 3 +#define LUBDE_SEM_OP_GIVE 4 + +#define LUBDE_SUCCESS 0 +#define LUBDE_FAIL ((unsigned int)-1) + + +/* + * Version history + * 1:add LUBDE_GET_DEVICE_STATE to support PCI hot plug + */ +#define KBDE_VERSION 1 + + +/* This is the signal that will be used + * when an interrupt occurs + */ + +#ifndef __KERNEL__ +#include +#endif + +#define LUBDE_INTERRUPT_SIGNAL SIGUSR1 +#define LUBDE_ETHER_INTERRUPT_SIGNAL SIGUSR2 + +#endif /* __LUBDE_H__ */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/include/shbde.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/include/shbde.h @@ -0,0 +1,77 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: $ + * $Copyright: (c) 2014 Broadcom Corp. + * All Rights Reserved.$ + * + */ + +#ifndef __SHBDE_H__ +#define __SHBDE_H__ + +typedef void (*shbde_log_func_t)(int level, const char *str, int param); + +#define SHBDE_ERR 0 +#define SHBDE_WARN 1 +#define SHBDE_DBG 2 + +/* iProc configuration (primarily used for PCI-AXI bridge) */ +typedef struct shbde_iproc_config_s { + unsigned int dev_id; + unsigned int dev_rev; + unsigned int use_msi; + unsigned int iproc_ver; + unsigned int cmic_ver; + unsigned int cmic_rev; + unsigned int dma_hi_bits; + unsigned int mdio_base_addr; + unsigned int pcie_phy_addr; + unsigned int adjust_pcie_preemphasis; +} shbde_iproc_config_t; + +/* Hardware abstraction functions */ +typedef struct shbde_hal_s { + + /* Optional log output interface */ + shbde_log_func_t log_func; + + /* PCI configuration access */ + unsigned char (*pcic8_read)(void *pci_dev, unsigned int reg); + void (*pcic8_write)(void *pci_dev, unsigned int reg, unsigned char data); + unsigned short (*pcic16_read)(void *pci_dev, unsigned int reg); + void (*pcic16_write)(void *pci_dev, unsigned int reg, unsigned short data); + unsigned int (*pcic32_read)(void *pci_dev, unsigned int reg); + void (*pcic32_write)(void *pci_dev, unsigned int reg, unsigned int data); + + /* iProc register access */ + unsigned int (*io32_read)(void *addr); + void (*io32_write)(void *addr, unsigned int); + + /* usleep function (optional) */ + void (*usleep)(int usec); + + /* PCI parent device access */ + void *(*pci_parent_device_get)(void *pci_dev); + + /* iProc configuration */ + shbde_iproc_config_t icfg; + +} shbde_hal_t; + + +#endif /* __SHBDE_H__ */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/include/shbde_iproc.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/include/shbde_iproc.h @@ -0,0 +1,49 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: $ + * $Copyright: (c) 2014 Broadcom Corp. + * All Rights Reserved.$ + * + */ + +#ifndef __SHBDE_IPROC_H__ +#define __SHBDE_IPROC_H__ + +#include + +extern int +shbde_iproc_config_init(shbde_iproc_config_t *icfg, + unsigned int dev_id, unsigned int dev_rev); + +extern int +shbde_iproc_paxb_init(shbde_hal_t *shbde, void *iproc_regs, + shbde_iproc_config_t *icfg); + +extern unsigned int +shbde_iproc_pci_read(shbde_hal_t *shbde, void *iproc_regs, + unsigned int addr); + +extern void +shbde_iproc_pci_write(shbde_hal_t *shbde, void *iproc_regs, + unsigned int addr, unsigned int data); + +extern int +shbde_iproc_pcie_preemphasis_set(shbde_hal_t *shbde, void *iproc_regs, + shbde_iproc_config_t *icfg, void *pci_dev); + +#endif /* __SHBDE_IPROC_H__ */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/include/shbde_mdio.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/include/shbde_mdio.h @@ -0,0 +1,60 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: $ + * $Copyright: (c) 2015 Broadcom Corp. + * All Rights Reserved.$ + * + */ + +#ifndef __SHBDE_MDIO_H__ +#define __SHBDE_MDIO_H__ + +#include + +typedef struct shbde_mdio_ctrl_s { + + /* Primary HAL*/ + shbde_hal_t *shbde; + + /* Context for iProc MDIO register access */ + void *regs; + + /* Base address for MDIO registers */ + unsigned int base_addr; + + /* iProc MDIO register access */ + unsigned int (*io32_read)(shbde_hal_t *shbde, void *iproc_regs, + unsigned int addr); + void (*io32_write)(shbde_hal_t *shbde, void *iproc_regs, + unsigned int addr, unsigned int data); + +} shbde_mdio_ctrl_t; + + +extern int +shbde_iproc_mdio_init(shbde_mdio_ctrl_t *smc); + +extern int +shbde_iproc_mdio_read(shbde_mdio_ctrl_t *smc, unsigned int phy_addr, + unsigned int reg, unsigned int *val); + +extern int +shbde_iproc_mdio_write(shbde_mdio_ctrl_t *smc, unsigned int phy_addr, + unsigned int reg, unsigned int val); + +#endif /* __SHBDE_MDIO_H__ */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/include/shbde_pci.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/include/shbde_pci.h @@ -0,0 +1,47 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: $ + * $Copyright: (c) 2014 Broadcom Corp. + * All Rights Reserved.$ + * + */ + +#ifndef __SHBDE_PCI_H__ +#define __SHBDE_PCI_H__ + +#include + +extern unsigned int +shbde_pci_pcie_cap(shbde_hal_t *shbde, void *pci_dev); + +extern int +shbde_pci_is_pcie(shbde_hal_t *shbde, void *pci_dev); + +extern int +shbde_pci_is_iproc(shbde_hal_t *shbde, void *pci_dev, int *cmic_bar); + +extern int +shbde_pci_max_payload_set(shbde_hal_t *shbde, void *pci_dev, int maxpayload); + +extern int +shbde_pci_iproc_version_get(shbde_hal_t *shbde, void *pci_dev, + unsigned int *iproc_ver, + unsigned int *cmic_ver, + unsigned int *cmic_rev); + +#endif /* __SHBDE_PCI_H__ */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/shbde_iproc.c +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/shbde_iproc.c @@ -0,0 +1,466 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: $ + * $Copyright: (c) 2014 Broadcom Corp. + * All Rights Reserved.$ + * + */ + +#include +#include +#include + +/* PAXB register offsets within PCI BAR0 window */ +#define BAR0_PAXB_ENDIANESS 0x2030 +#define BAR0_PAXB_PCIE_EP_AXI_CONFIG 0x2104 +#define BAR0_PAXB_CONFIG_IND_ADDR 0x2120 +#define BAR0_PAXB_CONFIG_IND_DATA 0x2124 + +#define BAR0_PAXB_IMAP0_0 (0x2c00) +#define BAR0_PAXB_IMAP0_1 (0x2c04) +#define BAR0_PAXB_IMAP0_2 (0x2c08) +#define BAR0_PAXB_IMAP0_7 (0x2c1c) + +#define BAR0_PAXB_OARR_FUNC0_MSI_PAGE 0x2d34 +#define BAR0_PAXB_OARR_2 0x2d60 +#define BAR0_PAXB_OARR_2_UPPER 0x2d64 +#define BAR0_DMU_PCU_PCIE_SLAVE_RESET_MODE 0x7024 + +/* Force byte pointer for offset adjustments */ +#define ROFFS(_ptr, _offset) ((unsigned char*)(_ptr) + (_offset)) + +#define PAXB_CONFIG_IND_ADDRr_PROTOCOL_LAYERf_SHFT 11 +#define PAXB_CONFIG_IND_ADDRr_PROTOCOL_LAYERf_MASK 0x3 +#define PAXB_CONFIG_IND_ADDRr_ADDRESSf_SHFT 0 +#define PAXB_CONFIG_IND_ADDRr_ADDRESSf_MASK 0x7ff + +/* Register value set/get by field */ +#define REG_FIELD_SET(_r, _f, _r_val, _f_val) \ + _r_val = ((_r_val) & ~(_r##_##_f##_MASK << _r##_##_f##_SHFT)) | \ + (((_f_val) & _r##_##_f##_MASK) << _r##_##_f##_SHFT) +#define REG_FIELD_GET(_r, _f, _r_val) \ + (((_r_val) >> _r##_##_f##_SHFT) & _r##_##_f##_MASK) + +/* PCIe capabilities definition */ +#ifndef PCI_EXP_LNKSTA +#define PCI_EXP_LNKSTA 0x12 +#endif +/* Current Link Speed 5.0GT/s */ +#ifndef PCI_EXP_LNKSTA_CLS_5_0GB +#define PCI_EXP_LNKSTA_CLS_5_0GB 2 +#endif +#ifndef PCI_EXP_LNKSTA2 +#define PCI_EXP_LNKSTA2 0x32 +#endif +/* Current Deemphasis Level -3.5 dB */ +#ifndef PCI_EXP_LNKSTA2_CDL_3_5DB +#define PCI_EXP_LNKSTA2_CDL_3_5DB 0x1 +#endif + +static unsigned int +iproc32_read(shbde_hal_t *shbde, void *addr) +{ + if (!shbde || !shbde->io32_read) { + return 0; + } + return shbde->io32_read(addr); +} + +static void +iproc32_write(shbde_hal_t *shbde, void *addr, unsigned int data) +{ + if (!shbde || !shbde->io32_write) { + return; + } + shbde->io32_write(addr, data); +} + +static void +wait_usec(shbde_hal_t *shbde, int usec) +{ + if (shbde && shbde->usleep) { + shbde->usleep(usec); + } else { + int idx; + volatile int count; + for (idx = 0; idx < usec; idx++) { + for (count = 0; count < 100; count++); + } + } +} + +/* + * Function: + * shbde_iproc_config_init + * Purpose: + * Initialize iProc configuration parameters + * Parameters: + * icfg - pointer to empty iProc configuration structure + * Returns: + * -1 if error, otherwise 0 + */ +int +shbde_iproc_config_init(shbde_iproc_config_t *icfg, + unsigned int dev_id, unsigned int dev_rev) +{ + if (!icfg) { + return -1; + } + + /* Save device ID and revision */ + icfg->dev_id = dev_id; + icfg->dev_rev = dev_rev; + + /* Check device families first */ + switch (icfg->dev_id & 0xfff0) { + case 0x8400: /* Greyhound Lite */ + case 0x8410: /* Greyhound */ + case 0x8420: /* Bloodhound */ + case 0x8450: /* Elkhound */ + case 0xb060: /* Ranger2(Greyhound) */ + case 0x8360: /* Greyhound 53365 & 53369 */ + case 0xb260: /* saber2 */ + case 0xb460: /* saber2+ */ + case 0xb170: /* Hurricane3-MG */ + case 0x8570: /* Greyhound2 */ + case 0xb070: /* Greyhound2(emulation) */ + case 0x8580: /* Greyhound2(emulation) */ + case 0xb230: /* Dagger2 */ + icfg->iproc_ver = 7; + icfg->dma_hi_bits = 0x2; + break; + case 0xb560: /* Apache */ + case 0xb760: /* Maverick */ + icfg->iproc_ver = 0xB; + break; + case 0xb160: /* Hurricane3 */ + case 0x8440: /* Wolfhound2 */ + case 0x8430: /* Foxhound2 */ + icfg->iproc_ver = 10; + icfg->dma_hi_bits = 0x2; + break; + default: + break; + } + + /* Check for exceptions */ + switch (icfg->dev_id) { + case 0xb069: + case 0xb068: + icfg->iproc_ver = 0xB; /*Ranger2+ Apache Family */ + icfg->dma_hi_bits = 0; + break; + case 0xb168: /* Ranger3+ */ + case 0xb169: + icfg->iproc_ver = 0; + icfg->dma_hi_bits = 0; + break; + default: + break; + } + /* Check for PCIe PHY address that needs PCIe preemphasis and + * assign the MDIO base address + */ + switch (icfg->dev_id & 0xfff0) { + case 0xb150: /* Hurricane2 */ + case 0x8340: /* Wolfhound */ + case 0x8330: /* Foxhound */ + case 0x8390: /* Dearhound */ + icfg->mdio_base_addr = 0x18032000; + icfg->pcie_phy_addr = 0x2; + break; + case 0xb340: /* Helilx4 */ + case 0xb540: /* FireScout */ + case 0xb040: /* Spiral, Ranger */ + icfg->mdio_base_addr = 0x18032000; + icfg->pcie_phy_addr = 0x5; + icfg->adjust_pcie_preemphasis = 1; + break; + case 0xa450: /* Katana2 */ + case 0xb240: + case 0xb450: + icfg->mdio_base_addr = 0x18032000; + icfg->pcie_phy_addr = 0x5; + icfg->adjust_pcie_preemphasis = 1; + break; + default: + break; + } + + /* Check for exceptions */ + switch (icfg->dev_id) { + default: + break; + } + + return 0; +} + +/* + * Function: + * shbde_iproc_paxb_init + * Purpose: + * Initialize iProc PCI-AXI bridge for CMIC access + * Parameters: + * shbde - pointer to initialized hardware abstraction module + * iproc_regs - memory mapped iProc registers in PCI BAR + * icfg - iProc configuration parameters + * Returns: + * -1 if error, otherwise 0 + */ +int +shbde_iproc_paxb_init(shbde_hal_t *shbde, void *iproc_regs, + shbde_iproc_config_t *icfg) +{ + void *reg; + unsigned int data; + int pci_num; + + if (!iproc_regs || !icfg) { + return -1; + } + + /* + * The following code attempts to auto-detect the correct + * iProc PCI endianess configuration by reading a well-known + * register (the endianess configuration register itself). + * Note that the PCI endianess may be different for different + * big endian host processors. + */ + reg = ROFFS(iproc_regs, BAR0_PAXB_ENDIANESS); + /* Select big endian */ + iproc32_write(shbde, reg, 0x01010101); + /* Check if endianess register itself is correct endian */ + if (iproc32_read(shbde, reg) != 1) { + /* If not, then assume little endian */ + iproc32_write(shbde, reg, 0x0); + } + + /* Select which PCI core to use */ + pci_num = 0; + reg = ROFFS(iproc_regs, BAR0_PAXB_IMAP0_2); + data = iproc32_read(shbde, reg); + if (data & 0x1000) { + /* PAXB_1 is mapped to sub-window 2 */ + pci_num = 1; + } + + /* Default DMA mapping if uninitialized */ + if (icfg->dma_hi_bits == 0) { + icfg->dma_hi_bits = 0x1; + if (pci_num == 1) { + icfg->dma_hi_bits = 0x2; + } + } + + /* Enable iProc DMA to external host memory */ + reg = ROFFS(iproc_regs, BAR0_PAXB_PCIE_EP_AXI_CONFIG); + iproc32_write(shbde, reg, 0x0); + if(icfg->cmic_ver < 4) { /* Non-CMICX */ + reg = ROFFS(iproc_regs, BAR0_PAXB_OARR_2); + iproc32_write(shbde, reg, 0x1); + reg = ROFFS(iproc_regs, BAR0_PAXB_OARR_2_UPPER); + iproc32_write(shbde, reg, icfg->dma_hi_bits); + + /* Configure MSI interrupt page */ + if (icfg->use_msi) { + reg = ROFFS(iproc_regs, BAR0_PAXB_OARR_FUNC0_MSI_PAGE); + data = iproc32_read(shbde, reg); + iproc32_write(shbde, reg, data | 0x1); + } + } + return pci_num; +} + +/* + * Function: + * shbde_iproc_pci_read + * Purpose: + * Read iProc register through PCI BAR 0 + * Parameters: + * shbde - pointer to initialized hardware abstraction module + * iproc_regs - memory mapped iProc registers in PCI BAR + * addr - iProc register address in AXI memory space + * Returns: + * Register value + */ +unsigned int +shbde_iproc_pci_read(shbde_hal_t *shbde, void *iproc_regs, + unsigned int addr) +{ + unsigned int subwin_base; + void *reg; + shbde_iproc_config_t *icfg = &shbde->icfg; + + if (!iproc_regs) { + return -1; + } + + /* Sub-window size is 0x1000 (4K) */ + subwin_base = (addr & ~0xfff); + + if((icfg->cmic_ver >= 4) && (subwin_base == 0x18013000)) { + /* Route the INTC block access through IMAP0_6 */ + reg = ROFFS(iproc_regs, 0x6000 + (addr & 0xfff)); + } else { + /* Update base address for sub-window 7 */ + subwin_base |= 1; /* Valid bit */ + reg = ROFFS(iproc_regs, BAR0_PAXB_IMAP0_7); + iproc32_write(shbde, reg, subwin_base); + /* Read it to make sure the write actually goes through */ + subwin_base = iproc32_read(shbde, reg); + + /* Read register through sub-window 7 */ + reg = ROFFS(iproc_regs, 0x7000 + (addr & 0xfff)); + } + + return iproc32_read(shbde, reg); +} + +/* + * Function: + * shbde_iproc_pci_write + * Purpose: + * Write iProc register through PCI BAR 0 + * Parameters: + * shbde - pointer to initialized hardware abstraction module + * iproc_regs - memory mapped iProc registers in PCI BAR + * addr - iProc register address in AXI memory space + * data - data to write to iProc register + * Returns: + * Register value + */ +void +shbde_iproc_pci_write(shbde_hal_t *shbde, void *iproc_regs, + unsigned int addr, unsigned int data) +{ + unsigned int subwin_base; + void *reg; + shbde_iproc_config_t *icfg = &shbde->icfg; + + if (!iproc_regs) { + return; + } + + /* Sub-window size is 0x1000 (4K) */ + subwin_base = (addr & ~0xfff); + + if((icfg->cmic_ver >= 4) && (subwin_base == 0x18013000)) { + /* Route the INTC block access through IMAP0_6 */ + reg = ROFFS(iproc_regs, 0x6000 + (addr & 0xfff)); + } else { + /* Update base address for sub-window 7 */ + subwin_base |= 1; /* Valid bit */ + reg = ROFFS(iproc_regs, BAR0_PAXB_IMAP0_7); + iproc32_write(shbde, reg, subwin_base); + /* Read it to make sure the write actually goes through */ + subwin_base = iproc32_read(shbde, reg); + + /* Read register through sub-window 7 */ + reg = ROFFS(iproc_regs, 0x7000 + (addr & 0xfff)); + } + + iproc32_write(shbde, reg, data); +} + +int +shbde_iproc_pcie_preemphasis_set(shbde_hal_t *shbde, void *iproc_regs, + shbde_iproc_config_t *icfg, void *pci_dev) +{ + shbde_mdio_ctrl_t mdio_ctrl, *smc = &mdio_ctrl; + unsigned int phy_addr, data; + void *reg; + unsigned int pcie_cap_base; + unsigned short link_stat, link_stat2; + + if (!icfg) { + return -1; + } + + /* PHY address for PCIe link */ + phy_addr = icfg->pcie_phy_addr; + if (phy_addr == 0 || icfg->mdio_base_addr == 0) { + return 0; + } + + /* Initialize MDIO control */ + smc->shbde = shbde; + smc->regs = iproc_regs; + smc->base_addr = icfg->mdio_base_addr; + smc->io32_read = shbde_iproc_pci_read; + smc->io32_write = shbde_iproc_pci_write; + shbde_iproc_mdio_init(smc); + + /* PCIe SerDes Gen1/Gen2 CDR Track Bandwidth Adjustment + * for Better Jitter Tolerance + */ + shbde_iproc_mdio_write(smc, phy_addr, 0x1f, 0x8630); + shbde_iproc_mdio_write(smc, phy_addr, 0x13, 0x190); + shbde_iproc_mdio_write(smc, phy_addr, 0x19, 0x191); + + if (!icfg->adjust_pcie_preemphasis) { + return 0; + } + + /* Check to see if the PCIe SerDes deemphasis needs to be changed + * based on the advertisement from the root complex + */ + /* Find PCIe capability base */ + if (!shbde || !shbde->pcic16_read || !pci_dev) { + return -1; + } + pcie_cap_base = shbde_pci_pcie_cap(shbde, pci_dev); + if (pcie_cap_base) { + link_stat = shbde->pcic16_read(pci_dev, + pcie_cap_base + PCI_EXP_LNKSTA); + link_stat2 = shbde->pcic16_read(pci_dev, + pcie_cap_base + PCI_EXP_LNKSTA2); + if (((link_stat & 0xf) == PCI_EXP_LNKSTA_CLS_5_0GB) && + (link_stat2 & PCI_EXP_LNKSTA2_CDL_3_5DB)) { + /* Device is operating at Gen2 speeds and RC requested -3.5dB */ + /* Change the transmitter setting */ + shbde_iproc_mdio_write(smc, phy_addr, 0x1f, 0x8610); + shbde_iproc_mdio_read(smc, phy_addr, 0x17, &data); + data &= ~0xf00; + data |= 0x700; + shbde_iproc_mdio_write(smc, phy_addr, 0x17, data); + + /* Force the PCIe link to retrain */ + data = 0; + REG_FIELD_SET(PAXB_CONFIG_IND_ADDRr, PROTOCOL_LAYERf, data, 0x2); + REG_FIELD_SET(PAXB_CONFIG_IND_ADDRr, ADDRESSf, data, 0x4); + reg = ROFFS(iproc_regs, BAR0_PAXB_CONFIG_IND_ADDR); + iproc32_write(shbde, reg, data); + + reg = ROFFS(iproc_regs, BAR0_PAXB_CONFIG_IND_DATA); + data = iproc32_read(shbde, reg); + data &= ~0x4000; + iproc32_write(shbde, reg, data); + data |= 0x4000; + iproc32_write(shbde, reg, data); + data &= ~0x4000; + iproc32_write(shbde, reg, data); + + /* Wait a short while for the retraining to complete */ + wait_usec(shbde, 1000); + } + } + + return 0; +} + only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/shbde_mdio.c +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/shbde_mdio.c @@ -0,0 +1,187 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: $ + * $Copyright: (c) 2015 Broadcom Corp. + * All Rights Reserved.$ + * + */ + +#include + +/* iProc MDIO register offset */ +#define MII_MGMT_CTRL 0x0 +#define MII_MGMT_CMD_DATA 0x4 + +/* iProc MII register with fields definition */ +#define MII_MGMT_CTRLr_MDCDIVf_SHFT 0 +#define MII_MGMT_CTRLr_MDCDIVf_MASK 0x7f +#define MII_MGMT_CTRLr_BSYf_SHFT 8 +#define MII_MGMT_CTRLr_BSYf_MASK 0x1 + +#define MII_MGMT_CMD_DATAr_DATAf_SHFT 0 +#define MII_MGMT_CMD_DATAr_DATAf_MASK 0xffff +#define MII_MGMT_CMD_DATAr_TAf_SHFT 16 +#define MII_MGMT_CMD_DATAr_TAf_MASK 0x3 +#define MII_MGMT_CMD_DATAr_RAf_SHFT 18 +#define MII_MGMT_CMD_DATAr_RAf_MASK 0x1f +#define MII_MGMT_CMD_DATAr_PAf_SHFT 23 +#define MII_MGMT_CMD_DATAr_PAf_MASK 0x1f +#define MII_MGMT_CMD_DATAr_OPf_SHFT 28 +#define MII_MGMT_CMD_DATAr_OPf_MASK 0x3 +#define MII_MGMT_CMD_DATAr_SBf_SHFT 30 +#define MII_MGMT_CMD_DATAr_SBf_MASK 0x3 + +/* Register field value set/get */ +#define REG_FIELD_SET(_r, _f, _r_val, _f_val) \ + _r_val = ((_r_val) & ~(_r##_##_f##_MASK << _r##_##_f##_SHFT)) | \ + (((_f_val) & _r##_##_f##_MASK) << _r##_##_f##_SHFT) +#define REG_FIELD_GET(_r, _f, _r_val) \ + (((_r_val) >> _r##_##_f##_SHFT) & _r##_##_f##_MASK) + +#define LOG_OUT(_shbde, _lvl, _str, _prm) \ + if ((_shbde)->log_func) { \ + (_shbde)->log_func(_lvl, _str, _prm); \ + } +#define LOG_ERR(_shbde, _str, _prm) LOG_OUT(_shbde, SHBDE_ERR, _str, _prm) +#define LOG_WARN(_shbde, _str, _prm) LOG_OUT(_shbde, SHBDE_WARN, _str, _prm) +#define LOG_DBG(_shbde, _str, _prm) LOG_OUT(_shbde, SHBDE_DBG, _str, _prm) + +static unsigned int +mdio32_read(shbde_mdio_ctrl_t *smc, unsigned int offset) +{ + if (!smc || !smc->io32_read) { + return 0; + } + return smc->io32_read(smc->shbde, smc->regs, smc->base_addr + offset); +} + +static void +mdio32_write(shbde_mdio_ctrl_t *smc, unsigned int offset, unsigned int data) +{ + if (!smc || !smc->io32_read) { + return; + } + smc->io32_write(smc->shbde, smc->regs, smc->base_addr + offset, data); +} + +static void +wait_usec(shbde_mdio_ctrl_t *smc, int usec) +{ + shbde_hal_t *shbde = smc->shbde; + + if (shbde && shbde->usleep) { + shbde->usleep(usec); + } else { + int idx; + volatile int count; + for (idx = 0; idx < usec; idx++) { + for (count = 0; count < 100; count++); + } + } +} + +static int +iproc_mdio_wait_for_busy(shbde_mdio_ctrl_t *smc) +{ + int mii_busy; + unsigned int reg_val; + int count = 1000; + + /* Wait until MII is not busy */ + do { + reg_val = mdio32_read(smc, MII_MGMT_CTRL); + mii_busy = REG_FIELD_GET(MII_MGMT_CTRLr, BSYf, reg_val); + if (!mii_busy) { + break; + } + wait_usec(smc, 10); + count --; + } while (count > 0); + + return mii_busy; +} + +int +shbde_iproc_mdio_init(shbde_mdio_ctrl_t *smc) +{ + shbde_hal_t *shbde = smc->shbde; + unsigned int reg_val = 0; + + /* Enable the iProc internal MDIO interface */ + REG_FIELD_SET(MII_MGMT_CTRLr, MDCDIVf, reg_val, 0x7f); + mdio32_write(smc, MII_MGMT_CTRL, reg_val); + + if (shbde && !shbde->usleep) { + LOG_DBG(shbde, "shbde_mdio: no registration of usleep vector", 0); + } + + wait_usec(smc, 100); + + return 0; +} + +int +shbde_iproc_mdio_read(shbde_mdio_ctrl_t *smc, unsigned int phy_addr, + unsigned int reg, unsigned int *val) +{ + unsigned int reg_val = 0; + + REG_FIELD_SET(MII_MGMT_CMD_DATAr, SBf, reg_val, 0x1); + REG_FIELD_SET(MII_MGMT_CMD_DATAr, TAf, reg_val, 0x2); + REG_FIELD_SET(MII_MGMT_CMD_DATAr, OPf, reg_val, 0x2); + REG_FIELD_SET(MII_MGMT_CMD_DATAr, PAf, reg_val, phy_addr); + REG_FIELD_SET(MII_MGMT_CMD_DATAr, RAf, reg_val, reg); + mdio32_write(smc, MII_MGMT_CMD_DATA, reg_val); + + if (iproc_mdio_wait_for_busy(smc)) { + *val = 0; + LOG_DBG(smc->shbde, "shbde_iproc_mdio_read busy", reg); + return -1; + } + + reg_val = mdio32_read(smc, MII_MGMT_CMD_DATA); + *val = REG_FIELD_GET(MII_MGMT_CMD_DATAr, DATAf, reg_val); + + return 0; +} + +int +shbde_iproc_mdio_write(shbde_mdio_ctrl_t *smc, unsigned int phy_addr, + unsigned int reg, unsigned int val) +{ + unsigned int reg_val = 0; + + REG_FIELD_SET(MII_MGMT_CMD_DATAr, SBf, reg_val, 0x1); + REG_FIELD_SET(MII_MGMT_CMD_DATAr, TAf, reg_val, 0x2); + REG_FIELD_SET(MII_MGMT_CMD_DATAr, OPf, reg_val, 0x1); + REG_FIELD_SET(MII_MGMT_CMD_DATAr, PAf, reg_val, phy_addr); + REG_FIELD_SET(MII_MGMT_CMD_DATAr, RAf, reg_val, reg); + REG_FIELD_SET(MII_MGMT_CMD_DATAr, DATAf, reg_val, val); + mdio32_write(smc, MII_MGMT_CMD_DATA, reg_val); + + if (iproc_mdio_wait_for_busy(smc)) { + LOG_DBG(smc->shbde, "shbde_iproc_mdio_write busy", reg); + return -1; + } + + /* Wait for some time for the write to take effect */ + wait_usec(smc, 100); + + return 0; +} + only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/shbde_pci.c +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/bde/shared/shbde_pci.c @@ -0,0 +1,393 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: $ + * $Copyright: (c) 2014 Broadcom Corp. + * All Rights Reserved.$ + * + */ + +#include + +/* PCIe capabilities */ +#ifndef PCI_CAPABILITY_LIST +#define PCI_CAPABILITY_LIST 0x34 +#endif +#ifndef PCI_CAP_ID_EXP +#define PCI_CAP_ID_EXP 0x10 +#endif +#ifndef PCI_EXP_DEVCAP +#define PCI_EXP_DEVCAP 4 +#endif +#ifndef PCI_EXP_DEVCTL +#define PCI_EXP_DEVCTL 8 +#endif +#ifndef PCI_EXT_CAP_START +#define PCI_EXT_CAP_START 0x100 +#endif +#ifndef PCI_EXT_CAP_ID +#define PCI_EXT_CAP_ID(_hdr) (_hdr & 0x0000ffff) +#endif +#ifndef PCI_EXT_CAP_VER +#define PCI_EXT_CAP_VER(_hdr) ((_hdr >> 16) & 0xf) +#endif +#ifndef PCI_EXT_CAP_NEXT +#define PCI_EXT_CAP_NEXT(_hdr) ((_hdr >> 20) & 0xffc) +#endif +#ifndef PCI_EXT_CAP_ID_VNDR +#define PCI_EXT_CAP_ID_VNDR 0x0b +#endif + +#define LOG_OUT(_shbde, _lvl, _str, _prm) \ + if ((_shbde)->log_func) { \ + (_shbde)->log_func(_lvl, _str, _prm); \ + } +#define LOG_ERR(_shbde, _str, _prm) LOG_OUT(_shbde, SHBDE_ERR, _str, _prm) +#define LOG_WARN(_shbde, _str, _prm) LOG_OUT(_shbde, SHBDE_WARN, _str, _prm) +#define LOG_DBG(_shbde, _str, _prm) LOG_OUT(_shbde, SHBDE_DBG, _str, _prm) + +#ifndef NULL +#define NULL (void *)0 +#endif + +/* + * Warpper functions with null-pointer checks. + */ +static unsigned int +pcic16_read(shbde_hal_t *shbde, void *pci_dev, + unsigned int addr) +{ + if (!shbde || !shbde->pcic16_read) { + return 0; + } + return shbde->pcic16_read(pci_dev, addr); +} + +static void +pcic16_write(shbde_hal_t *shbde, void *pci_dev, + unsigned int addr, unsigned int data) +{ + if (!shbde || !shbde->pcic16_write) { + return; + } + shbde->pcic16_write(pci_dev, addr, data); +} + +static unsigned int +pcic32_read(shbde_hal_t *shbde, void *pci_dev, + unsigned int addr) +{ + if (!shbde || !shbde->pcic32_read) { + return 0; + } + return shbde->pcic32_read(pci_dev, addr); +} + +static void * +pci_parent_device_get(shbde_hal_t *shbde, void *pci_dev) +{ + if (!shbde || !shbde->pci_parent_device_get) { + return NULL; + } + return shbde->pci_parent_device_get(pci_dev); +} + +/* + * Function: + * shbde_pci_pcie_cap + * Purpose: + * Return offset of PCIe capabilities in PCI configuration space + * Parameters: + * shbde - pointer to initialized hardware abstraction module + * dev - PCI device handle (passed back to PCI HAL functions) + * Returns: + * PCI_CAP_ID_EXP offset in PCI configuration space if PCIe, otherwise 0 + */ +unsigned int +shbde_pci_pcie_cap(shbde_hal_t *shbde, void *pci_dev) +{ + unsigned int cap_base, rval; + + cap_base = pcic16_read(shbde, pci_dev, PCI_CAPABILITY_LIST); + while (cap_base) { + rval = pcic16_read(shbde, pci_dev, cap_base); + if ((rval & 0xff) == PCI_CAP_ID_EXP) { + break; + } + cap_base = (rval >> 8) & 0xff; + } + + return cap_base; +} + +/* + * Function: + * shbde_pci_is_pcie + * Purpose: + * Check if PCI device is PCIe device + * Parameters: + * shbde - pointer to initialized hardware abstraction module + * dev - PCI device handle (passed back to PCI HAL functions) + * Returns: + * 1 if PCIe, otherwise 0 + */ +int +shbde_pci_is_pcie(shbde_hal_t *shbde, void *pci_dev) +{ + return shbde_pci_pcie_cap(shbde, pci_dev) ? 1 : 0; +} + +/* + * Function: + * shbde_pci_is_iproc + * Purpose: + * Check if PCI device is iProc-based + * Parameters: + * shbde - pointer to initialized hardware abstraction module + * dev - PCI device handle (passed back to PCI HAL functions) + * cmic_bar - (OUT) PCI BAR which contains switch CMIC registers + * Returns: + * 1 if iProc-based, otherwise 0 + */ +int +shbde_pci_is_iproc(shbde_hal_t *shbde, void *pci_dev, int *cmic_bar) +{ + unsigned int cap_base, rval; + + if (!shbde_pci_is_pcie(shbde, pci_dev)) { + return 0; + } + + /* Look for PCIe vendor-specific extended capability (VSEC) */ + cap_base = PCI_EXT_CAP_START; + while (cap_base) { + rval = pcic32_read(shbde, pci_dev, cap_base); + if (rval == 0xffffffff) { + /* Assume PCI HW read error */ + return 0; + } + + if (PCI_EXT_CAP_ID(rval) == PCI_EXT_CAP_ID_VNDR) { + break; + } + cap_base = PCI_EXT_CAP_NEXT(rval); + } + if (cap_base) { + /* + * VSEC layout: + * + * 0x00: PCI Express Extended Capability Header + * 0x04: Vendor-Specific Header + * 0x08: Vendor-Specific Register 1 + * 0x0c: Vendor-Specific Register 2 + * ... + * 0x24: Vendor-Specific Register 8 + */ + /* 32'b // 31:12=0 Reserved; 11:08=CMIC BAR; 07:00=iProc Configuration ID */ + rval = pcic32_read(shbde, pci_dev, cap_base + 8); + LOG_DBG(shbde, "Found VSEC", rval); + + /* Determine PCI BAR of CMIC */ + *cmic_bar = 0; + if ((rval & 0x100) == 0x100) { + *cmic_bar = 2; + } + /* Assume iProc device */ + return 1; + } + + return 0; +} + +/* + * Function: + * shbde_pci_iproc_version_get + * Purpose: + * Get iproc, cmic versions and revisions + * Parameters: + * shbde - pointer to initialized hardware abstraction module + * dev - PCI device handle (passed back to PCI HAL functions) + * iproc_ver - (OUT) iProc version + * cmic_ver - (OUT) CMIC version + * cmic_rev - (OUT) CMIC revision + * Returns: + * 1 for no error, otherwise 0 + */ +int +shbde_pci_iproc_version_get(shbde_hal_t *shbde, void *pci_dev, + unsigned int *iproc_ver, + unsigned int *cmic_ver, + unsigned int *cmic_rev) +{ + unsigned int cap_base, rval; + + if (!shbde_pci_is_pcie(shbde, pci_dev)) { + return 0; + } + + /* Look for PCIe vendor-specific extended capability (VSEC) */ + cap_base = PCI_EXT_CAP_START; + while (cap_base) { + rval = pcic32_read(shbde, pci_dev, cap_base); + if (rval == 0xffffffff) { + /* Assume PCI HW read error */ + return 0; + } + + if (PCI_EXT_CAP_ID(rval) == PCI_EXT_CAP_ID_VNDR) { + break; + } + cap_base = PCI_EXT_CAP_NEXT(rval); + } + if (cap_base) { + /* + * VSEC layout: + * + * 0x00: PCI Express Extended Capability Header + * 0x04: Vendor-Specific Header + * 0x08: Vendor-Specific Register 1 + * 0x0c: Vendor-Specific Register 2 + * ... + * 0x24: Vendor-Specific Register 8 + */ + + /* Read PCIe Vendor Specific Register 1 */ + /* VENODR REG FORMAT + * [7:0] iProc Rev = 8'h0E (for P14) + * [11:8] CMIC BAR = 4'h1 (BAR64-1) + * [15:12] CMIC Version = 4'h4 + * [19:16] CMIC Rev = 4'h1 + * [22:20] SBUS Version = 4'h4 + */ + + rval = pcic32_read(shbde, pci_dev, cap_base + 8); + LOG_DBG(shbde, "Found VSEC", rval); + + /* Determine PCI BAR of CMIC */ + *iproc_ver = rval & 0xff; + *cmic_ver = (rval >> 12) & 0xf; + *cmic_rev = (rval >> 16) & 0xf; + return 1; + } + + return 0; +} + +/* + * Function: + * shbde_pci_max_payload_set + * Purpose: + * Set PCIe maximum payload + * Parameters: + * shbde - pointer to initialized hardware abstraction module + * dev - PCI device handle (passed back to PCI HAL functions) + * maxpayload - maximum payload (in byte) + * Returns: + * -1 if error, otherwise 0 + * Notes: + * If not PCIe device, set the PCI retry count to infinte instead. + */ +int +shbde_pci_max_payload_set(shbde_hal_t *shbde, void *pci_dev, int maxpayload) +{ + unsigned int cap_base, parent_cap_base; + unsigned int devcap, devctl, parent_devctl; + int max_val, max_cap, parent_max_val; + void *parent_pci_dev; + + cap_base = shbde_pci_pcie_cap(shbde, pci_dev); + + if (cap_base == 0) { + /* Not PCIe */ + return 0; + } + + /* Get current device control settings */ + devctl = pcic16_read(shbde, pci_dev, cap_base + PCI_EXP_DEVCTL); + + /* Get current max payload setting */ + max_val = (devctl >> 5) & 0x7; + + if (maxpayload) { + /* Get encoding from byte value */ + max_val = 0; + while ((1 << (max_val + 7)) < maxpayload) { + max_val++; + } + LOG_DBG(shbde, "Set max payload size", maxpayload); + LOG_DBG(shbde, "Set max payload val", max_val); + + /* Get max supported payload size */ + devcap = pcic16_read(shbde, pci_dev, cap_base + PCI_EXP_DEVCAP); + max_cap = (devcap & 0x7); + + /* Do not exceed device capabilities */ + if (max_val > max_cap) { + max_val = max_cap; + LOG_DBG(shbde, + "Payload size exceeds device capability", + maxpayload); + } + + /* Get currently set max payload size for the parent device + * in the PCI tree (if it exists). + */ + parent_pci_dev = pci_parent_device_get(shbde, pci_dev); + if (parent_pci_dev != NULL) { + parent_cap_base = shbde_pci_pcie_cap(shbde, parent_pci_dev); + parent_devctl = pcic16_read(shbde, + parent_pci_dev, + parent_cap_base + PCI_EXP_DEVCTL); + parent_max_val = (parent_devctl >> 5) & 0x7; + + /* Do not exceed current parent max payload setting (our device + * should have an MPS setting <= current parent MPS setting in + * the tree of PCIe devices). + */ + if (max_val > parent_max_val) { + max_val = parent_max_val; + LOG_DBG(shbde, + "Payload size exceeds current parent device setting", + maxpayload); + } + } + + /* Update max payload size */ + devctl &= ~(0x7 << 5); + devctl |= (max_val) << 5; + + /* Update max request size */ + devctl &= ~(0x7 << 12); + devctl |= (max_val << 12); + } + + /* Always disable relaxed ordering */ + devctl &= ~(1 << 4); + + /* Update device control settings */ + pcic16_write(shbde, pci_dev, cap_base + PCI_EXP_DEVCTL, devctl); + + /* Warn if non-default setting is used */ + if (max_val > 0) { + LOG_WARN(shbde, + "Selected payload size may not be supported by all " + "PCIe bridges by default.", + (1 << (max_val + 7))); + } + + return 0; +} only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/Makefile +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/Makefile @@ -0,0 +1,32 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.10 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# +# Makefile for SOC SAL support +# +LOCALDIR = systems/linux/kernel/modules + +include ${SDK}/make/Make.config + +subdirs=shared uk-proxy bcm-diag-full bcm-core bcm-net bcm-diag + +include ${SDK}/make/Make.subdirs + +include ${SDK}/make/Make.depend only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/bcm-knet/Makefile +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/bcm-knet/Makefile @@ -0,0 +1,68 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.3 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# +LOCALDIR = systems/linux/kernel/modules/bcm-knet + +include ${SDK}/make/Make.config + +LIBS = $(LIBDIR)/libkern.a + +ifeq ($(kernel_version),2_4) +MODULE = $(LIBDIR)/linux-bcm-knet.o +else +KERNEL_MODULE_DIR = kernel_module + +THIS_MOD_NAME := linux-bcm-knet +MODULE = $(LIBDIR)/$(THIS_MOD_NAME).o +KMODULE = $(LIBDIR)/$(THIS_MOD_NAME).ko + +build: $(MODULE) $(KMODULE) +endif + +KBUILD_EXTRA_SYMBOLS := ${BLDDIR}/../../../../bde/linux/kernel/kernel_module/Module.symvers +ifeq (,$(findstring -DPROXY_SUPPORT=0,$(CFLAGS))) +KBUILD_EXTRA_SYMBOLS += ${BLDDIR}/../uk-proxy/kernel_module/Module.symvers +endif + +# BCM Network Device + +$(MODULE): $(BLDDIR)/.tree $(BOBJS) $(LIBS) + $(LD) $(MODULE_LDFLAGS) -r -d $(BOBJS) $(LIBS) -o $@ +ifneq ($(kernel_version),2_4) +$(KMODULE): $(MODULE) + rm -fr $(BLDDIR)/$(KERNEL_MODULE_DIR) + mkdir $(BLDDIR)/$(KERNEL_MODULE_DIR) + cp ${SDK}/make/Makefile.linux-kmodule $(BLDDIR)/$(KERNEL_MODULE_DIR)/Makefile + cat ${KBUILD_EXTRA_SYMBOLS} > $(BLDDIR)/$(KERNEL_MODULE_DIR)/Module.symvers + MOD_NAME=$(THIS_MOD_NAME) $(MAKE) -C $(BLDDIR)/$(KERNEL_MODULE_DIR) $(THIS_MOD_NAME).ko +endif + +# Make.depend is before clean:: so that Make.depend's clean:: runs first. + +include ${SDK}/make/Make.depend + +clean:: + $(RM) $(BLDDIR)/version.c $(BLDDIR)/version.o + $(RM) $(BOBJS) $(MODULE) + +ifneq ($(kernel_version),2_4) +.PHONY: build +endif only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/bcm-knet/bcm-knet.c +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/bcm-knet/bcm-knet.c @@ -0,0 +1,6887 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: bcm-knet.c,v 1.90 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ + +/* + * This module implements a Linux network driver for Broadcom + * XGS switch devices. The driver simultaneously serves a + * number of vitual Linux network devices and a Tx/Rx API + * implemented in user space. + * + * Packets received from the switch device are sent to either + * a virtual Linux network device or the user mode Rx API + * based on a set of packet filters.susp + * + * Packets from the virtual Linux network devices and the user + * mode Tx API are multiplexed with priority given to the Tx API. + * + * A message-based IOCTL interface is used for managing packet + * filters and virtual Linux network interfaces. + * + * A virtual network interface can be configured to work in RCPU + * mode, which means that packets from the switch device will + * be encasulated with a RCPU header and a block of meta data + * that basically contains the core DCB information. Likewise, + * packets received from the Linux network stack are assumed to + * be RCPU encapsulated when going out on an interface in RCPU + * mode. + * + * The module implements basic Rx DMA rate control. The rate is + * specified in packets per second, and different Rx DMA channels + * can be configured to use different maximum packet rates. + * The packet rate can be configure as a module parameter, and + * it can also be changed dynamically through the proc file + * system (syntax is described in function header comment). + * + * To support multiple instance, each instance has its event queue. + * + * To support pci hot-plug in this module, the resource update + * should be handled when the PCI device is re-plugged. + * NOTE: the KNET detach should be invoked befere removing the + * device. + * + * For a list of supported module parameters, please see below. + */ + +#include /* Must be included first */ +#include +#include +#include + +#include +#include +#include +#include +#include + + +MODULE_AUTHOR("Broadcom Corporation"); +MODULE_DESCRIPTION("Network Device Driver for Broadcom BCM TxRx API"); +MODULE_LICENSE("GPL"); + +static int debug; +LKM_MOD_PARAM(debug, "i", int, 0); +MODULE_PARM_DESC(debug, +"Debug level (default 0)"); + +static char *mac_addr = NULL; +LKM_MOD_PARAM(mac_addr, "s", charp, 0); +MODULE_PARM_DESC(mac_addr, +"Ethernet MAC address (default 02:10:18:xx:xx:xx)"); + +static int rx_buffer_size = 9216; +LKM_MOD_PARAM(rx_buffer_size, "i", int, 0); +MODULE_PARM_DESC(rx_buffer_size, +"Size of RX packet buffers (default 9216)"); + +static int default_mtu = 1500; +LKM_MOD_PARAM(default_mtu, "i", int, 0); +MODULE_PARM_DESC(default_mtu, +"Default MTU for KNET network interfaces (default 1500)"); + +static int rx_sync_retry = 1000; +LKM_MOD_PARAM(rx_sync_retry, "i", int, 0); +MODULE_PARM_DESC(rx_sync_retry, +"Retries if chain is incomplete on interrupt (default 10)"); + +static char *base_dev_name = NULL; +LKM_MOD_PARAM(base_dev_name, "s", charp, 0); +MODULE_PARM_DESC(base_dev_name, +"Base device name (default bcm0, bcm1, etc.)"); + +static int rcpu_mode = 0; +LKM_MOD_PARAM(rcpu_mode, "i", int, 0); +MODULE_PARM_DESC(rcpu_mode, +"Enable RCPU encapsulation (default 0)"); + +static char *rcpu_dmac = NULL; +LKM_MOD_PARAM(rcpu_dmac, "s", charp, 0); +MODULE_PARM_DESC(rcpu_dmac, +"RCPU destination MAC address (by default use L2 destination MAC address)"); + +static char *rcpu_smac = NULL; +LKM_MOD_PARAM(rcpu_smac, "s", charp, 0); +MODULE_PARM_DESC(rcpu_smac, +"RCPU source MAC address (by default use L2 source MAC address)"); + +static int rcpu_ethertype = 0xde08; +LKM_MOD_PARAM(rcpu_ethertype, "i", int, 0); +MODULE_PARM_DESC(rcpu_ethertype, +"RCPU EtherType (default DE08h)"); + +static int rcpu_signature = 0; +LKM_MOD_PARAM(rcpu_signature, "i", int, 0); +MODULE_PARM_DESC(rcpu_signature, +"RCPU Signature (default is PCI device ID)"); + +static int rcpu_vlan = 1; +LKM_MOD_PARAM(rcpu_vlan, "i", int, 0); +MODULE_PARM_DESC(rcpu_vlan, +"RCPU VLAN ID (default 1)"); + +static int use_rx_skb = 0; +LKM_MOD_PARAM(use_rx_skb, "i", int, 0); +MODULE_PARM_DESC(use_rx_skb, +"Use socket buffers for receive operation (default 0)"); + +static int num_rx_prio = 1; +LKM_MOD_PARAM(num_rx_prio, "i", int, 0); +MODULE_PARM_DESC(num_rx_prio, +"Number of filter priorities per Rx DMA channel"); + +static int rx_rate[4] = { 100000, 100000, 100000, 0 }; +LKM_MOD_PARAM_ARRAY(rx_rate, "1-4i", int, NULL, 0); +MODULE_PARM_DESC(rx_rate, +"Rx rate in packets per second (default 100000)"); + +static int rx_burst[4] = { 0, 0, 0, 0 }; +LKM_MOD_PARAM_ARRAY(rx_burst, "1-4i", int, NULL, 0); +MODULE_PARM_DESC(rx_burst, +"Rx rate burst maximum in packets (default rx_rate/10)"); + +static int check_rcpu_signature = 0; +LKM_MOD_PARAM(check_rcpu_signature, "i", int, 0); +MODULE_PARM_DESC(check_rcpu_signature, +"Check RCPU Signature for Tx packets from RCPU interfaces"); + +static int basedev_suspend = 0; +LKM_MOD_PARAM(basedev_suspend, "i", int, 0); +MODULE_PARM_DESC(basedev_suspend, +"Pause traffic till base device is up (enabled by default in NAPI mode)"); + +static int ftmh_lb_key_ext = 0; +LKM_MOD_PARAM(ftmh_lb_key_ext, "i", int, 0); +MODULE_PARM_DESC(ftmh_lb_key_ext, +"FTMH LB-Key Extension header is present (default 0)"); + +static int ftmh_stacking_ext = 0; +LKM_MOD_PARAM(ftmh_stacking_ext, "i", int, 0); +MODULE_PARM_DESC(ftmh_stacking_ext, +"FTMH Stacking Extension header is present (default 0)"); + +/* Debug levels */ +#define DBG_LVL_VERB 0x1 +#define DBG_LVL_DCB 0x2 +#define DBG_LVL_PKT 0x4 +#define DBG_LVL_SKB 0x8 +#define DBG_LVL_CMD 0x10 +#define DBG_LVL_EVT 0x20 +#define DBG_LVL_IRQ 0x40 +#define DBG_LVL_NAPI 0x80 +#define DBG_LVL_PDMP 0x100 +#define DBG_LVL_FLTR 0x200 +#define DBG_LVL_KCOM 0x400 +#define DBG_LVL_RCPU 0x800 +#define DBG_LVL_WARN 0x1000 +#define DBG_LVL_NDEV 0x2000 +#define DBG_LVL_INST 0x4000 +/* Level to output Dune internal headers Parsing */ +#define DBG_LVL_DUNE 0x8000 +#define DBG_LVL_DCB_TX 0x10000 +#define DBG_LVL_DCB_RX 0x20000 +#define DBG_LVL_PDMP_TX 0x40000 +#define DBG_LVL_PDMP_RX 0x80000 + +#define DBG_VERB(_s) do { if (debug & DBG_LVL_VERB) gprintk _s; } while (0) +#define DBG_PKT(_s) do { if (debug & DBG_LVL_PKT) gprintk _s; } while (0) +#define DBG_SKB(_s) do { if (debug & DBG_LVL_SKB) gprintk _s; } while (0) +#define DBG_CMD(_s) do { if (debug & DBG_LVL_CMD) gprintk _s; } while (0) +#define DBG_EVT(_s) do { if (debug & DBG_LVL_EVT) gprintk _s; } while (0) +#define DBG_IRQ(_s) do { if (debug & DBG_LVL_IRQ) gprintk _s; } while (0) +#define DBG_NAPI(_s) do { if (debug & DBG_LVL_NAPI) gprintk _s; } while (0) +#define DBG_PDMP(_s) do { if (debug & DBG_LVL_PDMP) gprintk _s; } while (0) +#define DBG_FLTR(_s) do { if (debug & DBG_LVL_FLTR) gprintk _s; } while (0) +#define DBG_KCOM(_s) do { if (debug & DBG_LVL_KCOM) gprintk _s; } while (0) +#define DBG_RCPU(_s) do { if (debug & DBG_LVL_RCPU) gprintk _s; } while (0) +#define DBG_WARN(_s) do { if (debug & DBG_LVL_WARN) gprintk _s; } while (0) +#define DBG_NDEV(_s) do { if (debug & DBG_LVL_NDEV) gprintk _s; } while (0) +#define DBG_INST(_s) do { if (debug & DBG_LVL_INST) gprintk _s; } while (0) +#define DBG_DUNE(_s) do { if (debug & DBG_LVL_DUNE) gprintk _s; } while (0) +#define DBG_DCB_TX(_s) do { if (debug & (DBG_LVL_DCB|DBG_LVL_DCB_TX)) \ + gprintk _s; } while (0) +#define DBG_DCB_RX(_s) do { if (debug & (DBG_LVL_DCB|DBG_LVL_DCB_RX)) \ + gprintk _s; } while (0) +#define DBG_DCB(_s) do { if (debug & (DBG_LVL_DCB|DBG_LVL_DCB_TX| \ + DBG_LVL_DCB_RX)) \ + gprintk _s; } while (0) + + +/* This flag is used to indicate if debugging packet function is open or closed */ +static int dbg_pkt_enable = 0; + +/* Module Information */ +#define MODULE_MAJOR 122 +#define MODULE_NAME "linux-bcm-knet" + +#ifndef NAPI_SUPPORT +#define NAPI_SUPPORT 1 +#endif + +#if NAPI_SUPPORT + +static int use_napi = 0; +LKM_MOD_PARAM(use_napi, "i", int, 0); +MODULE_PARM_DESC(use_napi, +"Use NAPI interface (default 0)"); + +static int napi_weight = 64; +LKM_MOD_PARAM(napi_weight, "i", int, 0); +MODULE_PARM_DESC(napi_weight, +"Weight of NAPI interfaces (default 64)"); + +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24) +#define bkn_napi_enable(_dev, _napi) netif_poll_enable(_dev) +#define bkn_napi_disable(_dev, _napi) netif_poll_disable(_dev) +#define bkn_napi_schedule(_dev, _napi) netif_rx_schedule(_dev) +#define bkn_napi_schedule_prep(_dev, _napi) netif_rx_schedule_prep(_dev) +#define __bkn_napi_schedule(_dev, _napi) __netif_rx_schedule(_dev) +#define bkn_napi_complete(_dev, _napi) netif_rx_complete(_dev) +#else +#define bkn_napi_enable(_dev, _napi) napi_enable(_napi) +#define bkn_napi_disable(_dev, _napi) napi_disable(_napi) +#define bkn_napi_schedule(_dev, _napi) napi_schedule(_napi) +#define bkn_napi_schedule_prep(_dev, _napi) napi_schedule_prep(_napi) +#define __bkn_napi_schedule(_dev, _napi) __napi_schedule(_napi) +#define bkn_napi_complete(_dev, _napi) napi_complete(_napi) +#endif + +#else + +static int use_napi = 0; +static int napi_weight = 0; + +#define bkn_napi_enable(_dev, _napi) +#define bkn_napi_disable(_dev, _napi) +#define bkn_napi_schedule(_dev, _napi) +#define bkn_napi_schedule_prep(_dev, _napi) (0) +#define __bkn_napi_schedule(_dev, _napi) +#define bkn_napi_complete(_dev, _napi) + +#endif + +/* + * If proxy support is compiled in the module will attempt to use + * the user/kernel message service provided by the linux-uk-proxy + * kernel module, otherwise device IOCTL will be used. + */ +#ifndef PROXY_SUPPORT +#define PROXY_SUPPORT 0 +#endif + +#if PROXY_SUPPORT + +#include + +static int use_proxy = 1; +LKM_MOD_PARAM(use_proxy, "i", int, 0); +MODULE_PARM_DESC(use_proxy, +"Use Linux User/Kernel proxy (default 1)"); + +#define PROXY_SERVICE_CREATE(_s,_q,_f) linux_uk_proxy_service_create(_s,_q,_f) +#define PROXY_SERVICE_DESTROY(_s) linux_uk_proxy_service_destroy(_s); +#define PROXY_SEND(_s,_m,_l) linux_uk_proxy_send(_s,_m,_l) +#define PROXY_RECV(_s,_m,_l) linux_uk_proxy_recv(_s,_m,_l) + +#else + +static int use_proxy = 0; + +#define PROXY_SERVICE_CREATE(_s,_q,_f) +#define PROXY_SERVICE_DESTROY(_s) +#define PROXY_SEND(_s,_m,_l) +#define PROXY_RECV(_s,_m,_l) (-1) + +#endif + +/* Compatibility */ +#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24)) +#define skb_copy_to_linear_data(_skb, _pkt, _len) \ + eth_copy_and_sum(_skb, _pkt, _len, 0) +struct napi_struct { int not_used; }; +#define netif_napi_add(_dev, _napi, _poll, _weight) do { \ + (_dev)->poll = _poll; \ + (_dev)->weight = _weight; \ +} while(0) +#endif + +#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18)) +#define SKB_PADTO(_skb,_len) (((_skb = skb_padto(_skb,_len)) == NULL) ? -1 : 0) +#else +#define SKB_PADTO(_skb,_len) skb_padto(_skb,_len) +#endif + +#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,12)) +#define skb_header_cloned(_skb) \ + skb_cloned(_skb) +#endif + +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,4,27) +static inline void *netdev_priv(struct net_device *dev) +{ + return dev->priv; +} +#endif /* KERNEL_VERSION(2,4,27) */ + +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,4,23) +/* Special check for MontaVista 2.4.20 MIPS */ +#if !(defined(MAX_USER_RT_PRIO) && defined(CONFIG_MIPS)) +static inline void free_netdev(struct net_device *dev) +{ + kfree(dev); +} +#endif +static inline void netif_poll_disable(struct net_device *dev) +{ + while (test_and_set_bit(__LINK_STATE_RX_SCHED, &dev->state)) { + /* No hurry. */ + current->state = TASK_INTERRUPTIBLE; + schedule_timeout(1); + } +} +static inline void netif_poll_enable(struct net_device *dev) +{ + clear_bit(__LINK_STATE_RX_SCHED, &dev->state); +} +#endif /* KERNEL_VERSION(2,4,23) */ + +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,4,21) +static struct sk_buff *skb_pad(struct sk_buff *skb, int pad) +{ + struct sk_buff *nskb; + + /* If the skbuff is non linear tailroom is always zero.. */ + if(skb_tailroom(skb) >= pad) + { + memset(skb->data+skb->len, 0, pad); + return skb; + } + + nskb = skb_copy_expand(skb, skb_headroom(skb), skb_tailroom(skb) + pad, GFP_ATOMIC); + kfree_skb(skb); + if(nskb) + memset(nskb->data+nskb->len, 0, pad); + return nskb; +} +static inline struct sk_buff *skb_padto(struct sk_buff *skb, unsigned int len) +{ + unsigned int size = skb->len; + if(likely(size >= len)) + return skb; + return skb_pad(skb, len-size); +} +#endif /* KERNEL_VERSION(2,4,21) */ + +#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0) +#define bkn_vlan_hwaccel_put_tag(_skb, _proto, _tci) \ + __vlan_hwaccel_put_tag(_skb, _tci) +#else +#define bkn_vlan_hwaccel_put_tag(_skb, _proto, _tci) \ + __vlan_hwaccel_put_tag(_skb, htons(_proto), _tci) +#endif + +#ifdef LINUX_BDE_DMA_DEVICE_SUPPORT +#define DMA_DEV device +#define DMA_FROMDEV DMA_FROM_DEVICE +#define DMA_TODEV DMA_TO_DEVICE +#define DMA_MAP_SINGLE(d,p,s,r) dma_map_single(d,p,s,r) +#define DMA_UNMAP_SINGLE(d,a,s,r) dma_unmap_single(d,a,s,r) +#define DMA_ALLOC_COHERENT(d,s,h) dma_alloc_coherent(d,s,h,GFP_ATOMIC|GFP_DMA32) +#define DMA_FREE_COHERENT(d,s,a,h) dma_free_coherent(d,s,a,h) +#else +#define DMA_DEV pci_dev +#define DMA_FROMDEV PCI_DMA_FROMDEVICE +#define DMA_TODEV PCI_DMA_TODEVICE +#define DMA_MAP_SINGLE(d,p,s,r) pci_map_single(d,p,s,r) +#define DMA_UNMAP_SINGLE(d,a,s,r) pci_unmap_single(d,a,s,r) +#define DMA_ALLOC_COHERENT(d,s,h) pci_alloc_consistent(d,s,h) +#define DMA_FREE_COHERENT(d,s,a,h) pci_free_consistent(d,s,a,h) +#endif + +/* RCPU operations */ +#define RCPU_OPCODE_RX 0x10 +#define RCPU_OPCODE_TX 0x20 + +/* RCPU flags */ +#define RCPU_F_MODHDR 0x4 + +/* RCPU encapsulation */ +#define RCPU_HDR_SIZE 32 +#define RCPU_TX_META_SIZE 32 +#define RCPU_TX_ENCAP_SIZE (RCPU_HDR_SIZE + RCPU_TX_META_SIZE) +#define RCPU_RX_META_SIZE 64 +#define RCPU_RX_ENCAP_SIZE (RCPU_HDR_SIZE + RCPU_RX_META_SIZE) + +static volatile int module_initialized; + +static ibde_t *kernel_bde = NULL; + +/* Descriptor info */ +typedef struct bkn_desc_info_s { + uint32_t *dcb_mem; + dma_addr_t dcb_dma; + struct sk_buff *skb; + dma_addr_t skb_dma; + uint32_t dma_size; +} bkn_desc_info_t; + +/* DCB chain info */ +typedef struct bkn_dcb_chain_s { + struct list_head list; + int dcb_cnt; + int dcb_cur; + uint32_t *dcb_mem; + dma_addr_t dcb_dma; +} bkn_dcb_chain_t; + +#define MAX_TX_DCBS 32 +#define MAX_RX_DCBS 32 + +#define NUM_DMA_CHAN 4 +#define NUM_RX_CHAN 3 +#define API_RX_CHAN 0 + +/* Device control info */ +typedef struct bkn_switch_info_s { + struct list_head list; + struct list_head ndev_list; /* Associated virtual Ethernet interfaces */ + struct net_device **ndevs; /* Indexed array of ndev_list */ + int ndev_max; /* Size of indexed array */ + struct list_head rxpf_list; /* Associated Rx packet filters */ + volatile void *base_addr; /* Base address for PCI register access */ + struct DMA_DEV *dma_dev; /* Required for DMA memory control */ + struct pci_dev *pdev; /* Required for DMA memory control */ + struct net_device *dev; /* Base network device */ + struct napi_struct napi; /* New NAPI */ + struct timer_list timer; /* Retry/resource timer */ + int timer_queued; /* Flag indicating queued timer function */ + uint32_t timer_runs; /* Timer function runs (debug only) */ + struct timer_list rxtick; /* Rx rate control timer */ + uint32_t rxticks_per_sec; /* Rx rate control update frequency */ + uint32_t rxtick_jiffies; /* Time between updates (in jiffies) */ + uint32_t rxticks; /* Rx rate control debug counter */ + uint32_t interrupts; /* Total number of interrupts */ + spinlock_t lock; /* Main lock for device */ + int dev_no; /* Device number (from BDE) */ + int cpu_no; /* Cpu number. 1 for iHost(AXI),0 for others */ + int dcb_type; /* DCB type */ + int dcb_wsize; /* DCB size (in 32-bit words) */ + uint32_t cmic_type; /* CMIC type (CMICe or CMICm) */ + uint32_t irq_mask; /* Active IRQs for DMA control */ + uint32_t napi_poll_mode; /* NAPI is in polling mode */ + uint32_t napi_not_done; /* NAPI poll did not process all packets */ + uint32_t napi_poll_again; /* Used if DCB chain is restarted */ + uint32_t tx_yield; /* Tx schedule for Continuous DMA and Non-NAPI mode */ + void *dcb_mem; /* Logical pointer to DCB memory */ + dma_addr_t dcb_dma; /* Physical bus address for DCB memory */ + int dcb_mem_size; /* Total size of allocated DCB memory */ + uint32_t dma_events; /* DMA events pending for BCM API */ + uint32_t rcpu_sig; /* RCPU signature */ + dma_addr_t halt_addr[NUM_DMA_CHAN]; /* DMA halt address */ + uint32_t cdma_channels; /* Active channels for Continuous DMA mode */ + uint32_t inst_id; /* Instance id of this device */ + int evt_idx; /* Event queue index for this device*/ + int basedev_suspended; /* Base device suspended */ + struct { + bkn_desc_info_t desc[MAX_TX_DCBS+1]; + int free; /* Number of free Tx DCBs */ + int cur; /* Index of current Tx DCB */ + int dirty; /* Index of next Tx DCB to complete */ + int api_active; /* BCM Tx API is in progress */ + int suspends; /* Calls to netif_stop_queue (debug only) */ + struct list_head api_dcb_list; /* Tx DCB chains from BCM Tx API */ + bkn_dcb_chain_t *api_dcb_chain; /* Current Tx DCB chain */ + bkn_dcb_chain_t *api_dcb_chain_end; /* Tx DCB chain end */ + uint32_t pkts; /* Tx packet counter */ + uint32_t pkts_d_no_skb; /* Tx drop - skb allocation failed */ + uint32_t pkts_d_rcpu_encap; /* Tx drop - bad RCPU encapsulation */ + uint32_t pkts_d_rcpu_sig; /* Tx drop - bad RCPU signature */ + uint32_t pkts_d_rcpu_meta; /* Tx drop - bad RCPU meta data */ + uint32_t pkts_d_pad_fail; /* Tx drop - pad to minimum size failed */ + uint32_t pkts_d_dma_resrc; /* Tx drop - no DMA resources */ + uint32_t pkts_d_callback; /* Tx drop - consumed by call-back */ + uint32_t pkts_d_no_link; /* Tx drop - software link down */ + uint32_t pkts_d_over_limit; /* Tx drop - length is out of range */ + } tx; + struct { + bkn_desc_info_t desc[MAX_RX_DCBS+1]; + int free; /* Number of free Rx DCBs */ + int cur; /* Index of current Rx DCB */ + int dirty; /* Index of next Rx DCB to complete */ + int running; /* Rx DMA is active */ + int api_active; /* BCM Rx API is active */ + int chain_complete; /* All DCBs in chain processed */ + int sync_err; /* Chain done with incomplete DCBs (debug) */ + int sync_retry; /* Total retry times for sync error (debug) */ + int sync_maxloop; /* Max loop times once in recovering sync (debug) */ + int use_rx_skb; /* Use SKBs for DMA */ + uint32_t rate_max; /* Rx rate in packets/sec */ + uint32_t burst_max; /* Rx burst size in number of packets */ + uint32_t tokens; /* Tokens for Rx rate control */ + uint32_t rate; /* Current packet rate */ + unsigned long tok_jif; /* Jiffies at last token update */ + unsigned long rate_jif; /* Jiffies at last rate update */ + struct list_head api_dcb_list; /* Rx DCB chains from BCM Rx API */ + bkn_dcb_chain_t *api_dcb_chain; /* Current Rx DCB chain */ + bkn_dcb_chain_t *api_dcb_chain_end; /* Rx DCB chain end */ + uint32_t pkts; /* Rx packet counter */ + uint32_t pkts_ref; /* Rx packet count for rate calculation */ + uint32_t pkts_f_api; /* Rx packets filtered to API */ + uint32_t pkts_f_netif; /* Rx packets filtered to net interface */ + uint32_t pkts_m_api; /* Rx packets mirrored to API */ + uint32_t pkts_m_netif; /* Rx packets mirrored to net interface */ + uint32_t pkts_d_no_skb; /* Rx drop - skb allocation failed */ + uint32_t pkts_d_no_match; /* Rx drop - no matching filters */ + uint32_t pkts_d_unkn_netif; /* Rx drop - unknown net interface ID */ + uint32_t pkts_d_unkn_dest; /* Rx drop - unknown destination type */ + uint32_t pkts_d_callback; /* Rx drop - consumed by call-back */ + uint32_t pkts_d_no_link; /* Rx drop - software link down */ + uint32_t pkts_d_no_api_buf; /* Rx drop - no API buffers */ + } rx[NUM_RX_CHAN]; +} bkn_switch_info_t; + +#define BKN_DNX_HDR_MAX_SIZE 40 +/* FTMH */ +#define BKN_DNX_FTMH_SIZE_BYTE 9 +#define BKN_DNX_FTMH_LB_EXT_SIZE_BYTE 1 +#define BKN_DNX_FTMH_STACKING_SIZE_BYTE 2 +#define BKN_DNX_FTMH_DEST_EXT_SIZE_BYTE 2 +#define BKN_DNX_FTMH_LB_EXT_SIZE_BYTE 1 +#define BKN_DNX_FTMH_PKT_SIZE_MSB 0 +#define BKN_DNX_FTMH_PKT_SIZE_NOF_BITS 14 +#define BKN_DNX_FTMH_TC_MSB 14 +#define BKN_DNX_FTMH_TC_NOF_BITS 3 +#define BKN_DNX_FTMH_SRC_SYS_PORT_MSB 17 +#define BKN_DNX_FTMH_SRC_SYS_PORT_NOF_BITS 16 +#define BKN_DNX_FTMH_EXT_DSP_EXIST_MSB 68 +#define BKN_DNX_FTMH_EXT_DSP_EXIST_NOF_BITS 1 +#define BKN_DNX_FTMH_EXT_MSB 45 +#define BKN_DNX_FTMH_EXT_NOF_BITS 2 +#define BKN_DNX_FTMH_FIRST_EXT_MSB 72 +#define BKN_DNX_FTMH_ACTION_TYPE_MSB 43 +#define BKN_DNX_FTMH_ACTION_TYPE_NOF_BITS 2 +#define BKN_DNX_FTMH_PPH_TYPE_MSB 45 +#define BKN_DNX_FTMH_PPH_TYPE_NOF_BITS 2 +/* PPH */ +#define BKN_DNX_PPH_SIZE_BYTE 7 +#define BKN_DNX_PPH_EEI_EXTENSION_PRESENT_MSB 0 +#define BKN_DNX_PPH_EEI_EXTENSION_PRESENT_NOF_BITS 1 +#define BKN_DNX_PPH_LEARN_EXENSION_PRESENT_MSB 1 +#define BKN_DNX_PPH_LEARN_EXENSION_PRESENT_NOF_BITS 1 +#define BKN_DNX_PPH_FHEI_SIZE_MSB 2 +#define BKN_DNX_PPH_FHEI_SIZE_NOF_BITS 2 +#define BKN_DNX_PPH_FORWARD_CODE_MSB 4 +#define BKN_DNX_PPH_FORWARD_CODE_NOF_BITS 4 +#define BKN_DNX_PPH_VSI_MSB 22 +#define BKN_DNX_PPH_VSI_NOF_BITS 16 +/* FHEI TRAP/SNOOP 3B */ +#define BKN_DNX_PPH_FHEI_3B_SIZE_BYTE 3 +#define BKN_DNX_PPH_FHEI_5B_SIZE_BYTE 5 +#define BKN_DNX_PPH_FHEI_8B_SIZE_BYTE 8 +#define BKN_DNX_PPH_FHEI_TRAP_SNOOP_3B_CPU_TRAP_CODE_QUALIFIER_MSB 0 +#define BKN_DNX_PPH_FHEI_TRAP_SNOOP_3B_CPU_TRAP_CODE_QUALIFIER_NOF_BITS 16 +#define BKN_DNX_PPH_FHEI_TRAP_SNOOP_3B_CPU_TRAP_CODE_MSB 16 +#define BKN_DNX_PPH_FHEI_TRAP_SNOOP_3B_CPU_TRAP_CODE_NOF_BITS 8 +/* PPH extension */ +#define BKN_DNX_PPH_EXPLICIT_EDITING_INFOMATION_EXTENSION_SIZE_BYTE 3 +#define BKN_DNX_PPH_LEARN_EXTENSION_SIZE_BYTE 5 + + +/* ftmh action type. */ +typedef enum bkn_dnx_ftmh_action_type_e { + BKN_DNX_FTMH_ACTION_TYPE_FORWARD = 0, /* TM action is forward */ + BKN_DNX_FTMH_ACTION_TYPE_SNOOP = 1, /* TM action is snoop */ + BKN_DNX_FTMH_ACTION_TYPE_INBOUND_MIRROR = 2, /* TM action is inbound mirror. */ + BKN_DNX_FTMH_ACTION_TYPE_OUTBOUND_MIRROR = 3 /* TM action is outbound mirror. */ +}bkn_dnx_ftmh_action_type_t; + +/* ftmh dest extension. */ +typedef struct bkn_dnx_ftmh_dest_extension_s { + uint8 valid; /* Set if the extension is present */ + uint32_t dst_sys_port; /* Destination System Port */ +} bkn_dnx_ftmh_dest_extension_t; + +/* dnx packet */ +typedef struct bkn_pkt_dnx_s { + uint32_t ntwrk_header_ptr; + struct { + uint32_t packet_size; /* Packet size in bytes */ + uint32_t action_type; /* Indicates if the copy is one of the Forward Snoop or Mirror packet copies */ + uint32_t pph_type; + uint32_t prio; /* Traffic class */ + uint32_t src_sys_port; /* Source System port*/ + } ftmh; + struct { + uint32_t vsi; + uint32_t trap_qualifier; /* RAW Data */ + uint32_t trap_id; /* RAW Data */ + } internal; +} bkn_dnx_packet_info; + + +#define PREV_IDX(_cur, _max) (((_cur) == 0) ? (_max) - 1 : (_cur) - 1) + +#if defined(CMIC_SOFT_BYTE_SWAP) + +#define CMIC_SWAP32(_x) ((((_x) & 0xff000000) >> 24) \ + | (((_x) & 0x00ff0000) >> 8) \ + | (((_x) & 0x0000ff00) << 8) \ + | (((_x) & 0x000000ff) << 24)) + +#define DEV_READ32(_d, _a, _p) \ + do { \ + uint32_t _data; \ + _data = (((volatile uint32_t *)(_d)->base_addr)[(_a)/4]); \ + *(_p) = CMIC_SWAP32(_data); \ + } while(0) + +#define DEV_WRITE32(_d, _a, _v) \ + do { \ + uint32_t _data = CMIC_SWAP32(_v); \ + ((volatile uint32_t *)(_d)->base_addr)[(_a)/4] = (_data); \ + } while(0) + +#else + +#define DEV_READ32(_d, _a, _p) \ + do { \ + *(_p) = (((volatile uint32_t *)(_d)->base_addr)[(_a)/4]); \ + } while(0) + +#define DEV_WRITE32(_d, _a, _v) \ + do { \ + ((volatile uint32_t *)(_d)->base_addr)[(_a)/4] = (_v); \ + } while(0) + +#endif /* defined(CMIC_SOFT_BYTE_SWAP) */ + +#define MEMORY_BARRIER mb() + +/* Default random MAC address has Broadcom OUI with local admin bit set */ +static u8 bkn_dev_mac[6] = { 0x02, 0x10, 0x18, 0x00, 0x00, 0x00 }; + +static u8 bkn_rcpu_dmac[6]; +static u8 bkn_rcpu_smac[6]; + +/* Driver Proc Entry root */ +static struct proc_dir_entry *bkn_proc_root = NULL; + +typedef struct bkn_priv_s { + struct list_head list; + struct net_device_stats stats; + struct net_device *dev; + bkn_switch_info_t *sinfo; + int id; + int type; + int port; + uint8_t itmh[4]; + int qnum; + uint32_t vlan; + uint32_t flags; +} bkn_priv_t; + +typedef struct bkn_filter_s { + struct list_head list; + int dev_no; + unsigned long hits; + kcom_filter_t kf; +} bkn_filter_t; + + +/* + * Multiple instance support in KNET + */ +static int _bkn_multi_inst = 0; +typedef struct { + wait_queue_head_t evt_wq; + int evt_wq_put; + int evt_wq_get; + uint32_t inst_id; +} bkn_evt_resource_t; + +static bkn_evt_resource_t _bkn_evt[LINUX_BDE_MAX_DEVICES]; + +static int bkn_knet_dev_init(int d); +static int bkn_knet_dev_reinit(int d); + +/* IOCTL debug counters */ +static int ioctl_cmd; +static int ioctl_evt; + +/* Switch devices */ +LIST_HEAD(_sinfo_list); + +/* Reallocation chunk size for netif array */ +#define NDEVS_CHUNK 64 + +/* User call-backs */ +static knet_skb_cb_f knet_rx_cb = NULL; +static knet_skb_cb_f knet_tx_cb = NULL; +static knet_filter_cb_f knet_filter_cb = NULL; + +/* + * Thread management + */ + +#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,10)) +/* + * Old style using kernel_thread() + */ +typedef struct { + const char * name; + volatile int pid; + volatile int run; + struct completion completion; + int state; +} bkn_thread_ctrl_t; + +static int +bkn_thread_start(bkn_thread_ctrl_t *tc, const char *name, + int (*threadfn)(void *)) +{ + if (name == NULL) { + return -1; + } + tc->name = name; + tc->pid = kernel_thread(threadfn, tc, 0); + if (tc->pid < 0) { + tc->pid = 0; + return -1; + } + tc->run = 1; + init_completion(&tc->completion); + return 0; +} + +static int +bkn_thread_stop(bkn_thread_ctrl_t *tc) +{ + if (tc->pid == 0) { + return 0; + } + tc->run = 0; + kill_proc(tc->pid, SIGTERM, 1); + wait_for_completion(&tc->completion); + return 0; +} + +static int +bkn_thread_should_stop(bkn_thread_ctrl_t *tc) +{ + if (tc->run) { + return 0; + } + tc->pid = 0; + return 1; +} + +static void +bkn_thread_boot(bkn_thread_ctrl_t *tc) +{ + siginitsetinv(¤t->blocked, sigmask(SIGTERM) | sigmask(SIGKILL)); +} + +static void +bkn_thread_exit(bkn_thread_ctrl_t *tc) +{ + complete_and_exit(&tc->completion, 0); +} + +static void +bkn_sleep(int clicks) +{ + wait_queue_head_t wq; + + init_waitqueue_head(&wq); + sleep_on_timeout(&wq, clicks); +} +#else +/* + * New style using kthread API + */ +#include +typedef struct { + const char * name; + struct task_struct *task; + int state; +} bkn_thread_ctrl_t; + +static int +bkn_thread_start(bkn_thread_ctrl_t *tc, const char *name, + int (*threadfn)(void *)) +{ + if (name == NULL) { + return -1; + } + tc->name = name; + tc->task = kthread_run(threadfn, tc, name); + if (IS_ERR(tc->task)) { + tc->task = NULL; + return -1; + } + return 0; +} + +static int +bkn_thread_stop(bkn_thread_ctrl_t *tc) +{ + if (tc->task == NULL) { + return 0; + } + send_sig(SIGTERM, tc->task, 0); + return kthread_stop(tc->task); +} + +static int +bkn_thread_should_stop(bkn_thread_ctrl_t *tc) +{ + return kthread_should_stop(); +} + +static void +bkn_thread_boot(bkn_thread_ctrl_t *tc) +{ + allow_signal(SIGTERM); + allow_signal(SIGKILL); +} + +static void +bkn_thread_exit(bkn_thread_ctrl_t *tc) +{ +} + +static void +bkn_sleep(int clicks) +{ + wait_queue_head_t wq; + + init_waitqueue_head(&wq); + wait_event_timeout(wq, 0, clicks); +} +#endif + +static bkn_thread_ctrl_t bkn_cmd_ctrl; +static bkn_thread_ctrl_t bkn_evt_ctrl; + +/* + * On XGS devices bit 15 fo the Transferred Bytes field in + * the DCBs is used to indicate that kernel processing is + * complete. Using this bit reduces the theoretically maximum + * supported packet size from 64K to 32K, but this is still + * adequate for 16K jumbo packets. + */ +#define SOC_DCB_KNET_DONE 0x8000 +#define SOC_DCB_KNET_COUNT_MASK 0x7fff +#define SOC_DCB_META_OFFSET 2 + +/* Default channel configuration */ +#define XGS_DMA_TX_CHAN 0 +#define XGS_DMA_RX_CHAN 1 + +/* CMIC registers */ +#define CMIC_DMA_CTRLr 0x00000100 +#define CMIC_DMA_STATr 0x00000104 +#define CMIC_DMA_DESC0r 0x00000110 +#define CMIC_IRQ_STATr 0x00000144 +#define CMIC_IRQ_MASKr 0x00000148 +#define CMIC_DEV_REV_IDr 0x00000178 + +/* CMIC interrupts reserved for kernel handler */ +#define CMIC_TXRX_IRQ_MASK 0x7f80 + +/* CMICm registers */ +#define CMICM_CMC_BASE 0x00031000 +#define CMICM_DMA_CTRLr (CMICM_CMC_BASE + 0x00000140) +#define CMICM_DMA_STATr (CMICM_CMC_BASE + 0x00000150) +#define CMICM_DMA_STAT_CLRr (CMICM_CMC_BASE + 0x000001a4) +#define CMICM_DMA_DESC0r (CMICM_CMC_BASE + 0x00000158) +#define CMICM_DMA_HALT_ADDRr (CMICM_CMC_BASE + 0x00000120) +#define CMICM_IRQ_STATr (CMICM_CMC_BASE + 0x00000400) +#define CMICM_IRQ_PCI_MASKr (CMICM_CMC_BASE + 0x00000414) +#define CMICM_IRQ_UC0_MASKr (CMICM_CMC_BASE + 0x00000428) +#define CMICM_DEV_REV_IDr 0x00010224 + +/* CMICm interrupts reserved for kernel handler */ +#define CMICM_TXRX_IRQ_MASK 0xff00 + +/* CMICd increased interrupts reserved for kernel handler */ +#define CMICD_CTRLD_IRQ_MASK 0x78000000 + +#define DEV_HAS_CMICM(_sinfo) ((_sinfo)->cmic_type == 'm') +#define CDMA_CH(_d, _ch) ((_d)->cdma_channels & (1 << (_ch))) + +/* + * DMA_STAT: control bits + * + * xxx_SET and xxx_CLR can be WRITTEN to CMIC_DMA_STAT + * xxx_TST can be masked against values read from CMIC_DMA_STAT. + * Argument required: 0 <= ch <= 3 + */ + +#define DS_DMA_ACTIVE(ch) (0x00040000 << (ch)) +#define DS_DMA_EN_SET(ch) (0x80|(ch)) +#define DS_DMA_EN_CLR(ch) (0x00|(ch)) +#define DS_DMA_EN_TST(ch) (0x00000001 << (ch)) + +#define DS_CHAIN_DONE_SET(ch) (0x80|(4+(ch))) +#define DS_CHAIN_DONE_CLR(ch) (0x00|(4+(ch))) +#define DS_CHAIN_DONE_TST(ch) (0x00000010 << (ch)) + +#define DS_DESC_DONE_SET(ch) (0x80|(8+(ch))) +#define DS_DESC_DONE_CLR(ch) (0x00|(8+(ch))) +#define DS_DESC_DONE_TST(ch) (0x00000100 << (ch)) + +#define DC_ABORT_DMA(ch) (0x04 << (8 * (ch))) + +#define DS_CMC_DESCRD_CMPLT_CLR(ch) (0x00000001 << (ch)) +#define DS_CMC_CTRLD_INT_CLR(ch) (0x00000100 << (ch)) +#define DS_CMC_DMA_ACTIVE(ch) (0x00000100 << (ch)) + +/* + * DMA_CTRL: control bits + */ +#define DC_CMC_DIRECTION (0x00000001) +#define DC_CMC_ENABLE (0x00000002) +#define DC_CMC_ABORT (0x00000004) +#define DC_CMC_CTRLD_INT (0x00000100) +#define DC_CMC_CONTINUOUS (0x00000200) + +/* + * Per-channel operations. + * These are the basis for the TX/RX functions + */ + +static inline void +xgs_dma_chain_clear(bkn_switch_info_t *sinfo, int chan) +{ + DBG_IRQ(("Clear chain on device %d chan %d\n", + sinfo->dev_no, chan)); + DEV_WRITE32(sinfo, CMIC_DMA_STATr, DS_DMA_EN_CLR(chan)); + DEV_WRITE32(sinfo, CMIC_DMA_STATr, DS_CHAIN_DONE_CLR(chan)); + + MEMORY_BARRIER; +} + +static inline void +xgs_dma_desc_clear(bkn_switch_info_t *sinfo, int chan) +{ + uint32_t val; + + DBG_IRQ(("Clear desc on device %d chan %d\n", + sinfo->dev_no, chan)); + DEV_WRITE32(sinfo, CMIC_DMA_STATr, DS_DESC_DONE_CLR(chan)); + + MEMORY_BARRIER; + + /* Flush write buffer */ + DEV_READ32(sinfo, CMIC_DMA_STATr, &val); + + MEMORY_BARRIER; +} + +static int +xgs_dma_chan_clear(bkn_switch_info_t *sinfo, int chan) +{ + xgs_dma_chain_clear(sinfo, chan); + xgs_dma_desc_clear(sinfo, chan); + + return 0; +} + +static int +xgs_dma_chan_init(bkn_switch_info_t *sinfo, int chan, int dir) +{ + uint32_t cdc; + + DEV_READ32(sinfo, CMIC_DMA_CTRLr, &cdc); + + cdc &= ~(0x9 << (8 * chan)); + if (dir) { + cdc |= 0x1 << (8 * chan); + } else { + cdc |= 0x8 << (8 * chan); + } + + DEV_WRITE32(sinfo, CMIC_DMA_CTRLr, cdc); + + return 0; +} + +static int +xgs_dma_chan_start(bkn_switch_info_t *sinfo, int chan, dma_addr_t dcb) +{ + /* Write the DCB address to the DESC address for this channel */ + DEV_WRITE32(sinfo, CMIC_DMA_DESC0r + 4 * chan, dcb); + + MEMORY_BARRIER; + + /* Kick it off */ + DEV_WRITE32(sinfo, CMIC_DMA_STATr, DS_DMA_EN_SET(chan)); + + MEMORY_BARRIER; + + return 0; +} + +static int +xgs_dma_chan_abort(bkn_switch_info_t *sinfo, int chan, int polls) +{ + uint32_t ctrl, dma_stat; + int p; + + /* Clear enable */ + DEV_WRITE32(sinfo, CMIC_DMA_STATr, DS_DMA_EN_CLR(chan)); + + MEMORY_BARRIER; + + /* Abort the channel */ + DEV_READ32(sinfo, CMIC_DMA_CTRLr, &ctrl); + DEV_WRITE32(sinfo, CMIC_DMA_CTRLr, ctrl | DC_ABORT_DMA(chan)); + + MEMORY_BARRIER; + + /* Poll for abort completion */ + for (p = 0; p < polls; p++) { + DEV_READ32(sinfo, CMIC_DMA_STATr, &dma_stat); + if (!(dma_stat & DS_DMA_ACTIVE(chan))) { + /* Restore previous control value */ + DEV_WRITE32(sinfo, CMIC_DMA_CTRLr, ctrl); + + MEMORY_BARRIER; + + /* Clear up channel */ + xgs_dma_chan_clear(sinfo, chan); + + return polls; + } + } + DBG_WARN(("DMA channel %d abort failed\n", chan)); + + return -1; +} + +static inline void +xgs_irq_mask_set(bkn_switch_info_t *sinfo, uint32_t mask) +{ + if (sinfo->napi_poll_mode) { + mask = 0; + } + lkbde_irq_mask_set(sinfo->dev_no | LKBDE_ISR2_DEV, CMIC_IRQ_MASKr, + mask, CMIC_TXRX_IRQ_MASK); +} + +static inline void +xgs_irq_mask_enable(bkn_switch_info_t *sinfo, int chan, int update_hw) +{ + uint32_t mask; + + if (chan == XGS_DMA_TX_CHAN) { + mask = 0x100; + } else { + mask = 0x180 << (2 * chan); + } + + sinfo->irq_mask |= mask; + + if (update_hw) { + xgs_irq_mask_set(sinfo, sinfo->irq_mask); + } +} + +static inline void +xgs_irq_mask_disable(bkn_switch_info_t *sinfo, int chan, int update_hw) +{ + uint32_t mask; + + if (chan == XGS_DMA_TX_CHAN) { + mask = 0x100; + } else { + mask = 0x180 << (2 * chan); + } + + sinfo->irq_mask &= ~mask; + + if (update_hw) { + xgs_irq_mask_set(sinfo, sinfo->irq_mask); + } +} + +static inline void +xgsm_dma_chain_clear(bkn_switch_info_t *sinfo, int chan) +{ + uint32_t cdc; + + /* Disabing DMA clears chain done */ + DEV_READ32(sinfo, CMICM_DMA_CTRLr + 4 * chan, &cdc); + cdc &= ~(DC_CMC_ENABLE | DC_CMC_ABORT); + DEV_WRITE32(sinfo, CMICM_DMA_CTRLr + 4 * chan, cdc); + + MEMORY_BARRIER; +} + +static inline void +xgsm_dma_desc_clear(bkn_switch_info_t *sinfo, int chan) +{ + uint32_t val; + + val = DS_CMC_DESCRD_CMPLT_CLR(chan); + if (CDMA_CH(sinfo, chan)) { + val |= DS_CMC_CTRLD_INT_CLR(chan); + } + DEV_WRITE32(sinfo, CMICM_DMA_STAT_CLRr, val); + + MEMORY_BARRIER; + + /* Flush write buffer */ + DEV_READ32(sinfo, CMICM_DMA_STAT_CLRr, &val); + + MEMORY_BARRIER; +} + +static int +xgsm_dma_chan_clear(bkn_switch_info_t *sinfo, int chan) +{ + xgsm_dma_chain_clear(sinfo, chan); + xgsm_dma_desc_clear(sinfo, chan); + + return 0; +} + +static inline void +xgsm_cdma_halt_set(bkn_switch_info_t *sinfo, int chan) +{ + DEV_WRITE32(sinfo, CMICM_DMA_HALT_ADDRr + 4 * chan, + sinfo->halt_addr[chan]); + + MEMORY_BARRIER; +} + +static int +xgsm_dma_chan_init(bkn_switch_info_t *sinfo, int chan, int dir) +{ + uint32_t cdc; + + DEV_READ32(sinfo, CMICM_DMA_CTRLr + 4 * chan, &cdc); + cdc &= ~DC_CMC_DIRECTION; + if (dir) { + cdc |= DC_CMC_DIRECTION; + } + if (CDMA_CH(sinfo, chan)) { + cdc |= DC_CMC_CONTINUOUS | DC_CMC_CTRLD_INT; + xgsm_cdma_halt_set(sinfo, chan); + } + DEV_WRITE32(sinfo, CMICM_DMA_CTRLr + 4 * chan, cdc); + + return 0; +} + +static int +xgsm_dma_chan_start(bkn_switch_info_t *sinfo, int chan, dma_addr_t dcb) +{ + uint32_t cdc; + + /* Write the DCB address to the DESC address for this channel */ + DEV_WRITE32(sinfo, CMICM_DMA_DESC0r + 4 * chan, dcb); + + MEMORY_BARRIER; + + /* Kick it off */ + DEV_READ32(sinfo, CMICM_DMA_CTRLr + 4 * chan, &cdc); + cdc |= DC_CMC_ENABLE; + DEV_WRITE32(sinfo, CMICM_DMA_CTRLr + 4 * chan, cdc); + + MEMORY_BARRIER; + + return 0; +} + +static int +xgsm_dma_chan_abort(bkn_switch_info_t *sinfo, int chan, int polls) +{ + uint32_t ctrl, dma_stat; + int p; + + /* Skip abort sequence if channel is not active */ + DEV_READ32(sinfo, CMICM_DMA_STATr, &dma_stat); + if (!(dma_stat & DS_CMC_DMA_ACTIVE(chan))) { + return 0; + } + + /* Abort the channel */ + DEV_READ32(sinfo, CMICM_DMA_CTRLr + 4 * chan, &ctrl); + ctrl |= (DC_CMC_ENABLE | DC_CMC_ABORT); + DEV_WRITE32(sinfo, CMICM_DMA_CTRLr + 4 * chan, ctrl); + + MEMORY_BARRIER; + + /* Poll for abort completion */ + for (p = 0; p < polls; p++) { + DEV_READ32(sinfo, CMICM_DMA_STATr, &dma_stat); + if (!(dma_stat & DS_CMC_DMA_ACTIVE(chan))) { + /* Clear up channel */ + xgsm_dma_chan_clear(sinfo, chan); + return polls; + } + } + DBG_WARN(("DMA channel %d abort failed\n", chan)); + + return -1; +} + +static inline void +xgsm_irq_mask_set(bkn_switch_info_t *sinfo, uint32_t mask) +{ + uint32_t irq_mask_reg = CMICM_IRQ_PCI_MASKr; + uint32_t ctrld_mask = 0; + + if (sinfo->napi_poll_mode) { + mask = 0; + } + if (sinfo->cpu_no == 1) { + irq_mask_reg = CMICM_IRQ_UC0_MASKr; + } + + /* Get the Controlled Interrupts mask for Continuous DMA mode */ + ctrld_mask |= (sinfo->cdma_channels << 27) & CMICD_CTRLD_IRQ_MASK; + + lkbde_irq_mask_set(sinfo->dev_no | LKBDE_ISR2_DEV, irq_mask_reg, + mask, CMICM_TXRX_IRQ_MASK | ctrld_mask); +} + +static inline void +xgsm_irq_mask_enable(bkn_switch_info_t *sinfo, int chan, int update_hw) +{ + uint32_t mask; + + if (CDMA_CH(sinfo, chan)) { + mask = 0x08000000 << chan; + } else { + if (chan == XGS_DMA_TX_CHAN) { + mask = 0x8000; + } else { + mask = 0xc000 >> (2 * chan); + } + } + + sinfo->irq_mask |= mask; + + if (update_hw) { + xgsm_irq_mask_set(sinfo, sinfo->irq_mask); + } +} + +static inline void +xgsm_irq_mask_disable(bkn_switch_info_t *sinfo, int chan, int update_hw) +{ + uint32_t mask; + + if (CDMA_CH(sinfo, chan)) { + mask = 0x08000000 << chan; + } else { + if (chan == XGS_DMA_TX_CHAN) { + mask = 0x8000; + } else { + mask = 0xc000 >> (2 * chan); + } + } + + sinfo->irq_mask &= ~mask; + + if (update_hw) { + xgsm_irq_mask_set(sinfo, sinfo->irq_mask); + } +} + +static inline void +dev_dma_chain_clear(bkn_switch_info_t *sinfo, int chan) +{ + if (DEV_HAS_CMICM(sinfo)) { + xgsm_dma_chain_clear(sinfo, chan); + } else { + xgs_dma_chain_clear(sinfo, chan); + } +} + +static inline void +dev_dma_desc_clear(bkn_switch_info_t *sinfo, int chan) +{ + if (DEV_HAS_CMICM(sinfo)) { + xgsm_dma_desc_clear(sinfo, chan); + } else { + xgs_dma_desc_clear(sinfo, chan); + } +} + +static int +dev_dma_chan_clear(bkn_switch_info_t *sinfo, int chan) +{ + if (DEV_HAS_CMICM(sinfo)) { + return xgsm_dma_chan_clear(sinfo, chan); + } + return xgs_dma_chan_clear(sinfo, chan); +} + +static void +dev_cdma_halt_set(bkn_switch_info_t *sinfo, int chan) +{ + if (DEV_HAS_CMICM(sinfo)) { + xgsm_cdma_halt_set(sinfo, chan); + } +} + +static int +dev_dma_chan_init(bkn_switch_info_t *sinfo, int chan, int dir) +{ + if (DEV_HAS_CMICM(sinfo)) { + return xgsm_dma_chan_init(sinfo, chan, dir); + } + return xgs_dma_chan_init(sinfo, chan, dir); +} + +static int +dev_dma_chan_start(bkn_switch_info_t *sinfo, int chan, dma_addr_t dcb) +{ + if (DEV_HAS_CMICM(sinfo)) { + return xgsm_dma_chan_start(sinfo, chan, dcb); + } + return xgs_dma_chan_start(sinfo, chan, dcb); +} + +static int +dev_dma_chan_abort(bkn_switch_info_t *sinfo, int chan, int polls) +{ + if (DEV_HAS_CMICM(sinfo)) { + return xgsm_dma_chan_abort(sinfo, chan, polls); + } + return xgs_dma_chan_abort(sinfo, chan, polls); +} + +static inline void +dev_irq_mask_set(bkn_switch_info_t *sinfo, uint32_t mask) +{ + if (DEV_HAS_CMICM(sinfo)) { + xgsm_irq_mask_set(sinfo, mask); + } else { + xgs_irq_mask_set(sinfo, mask); + } +} + +static inline void +dev_irq_mask_enable(bkn_switch_info_t *sinfo, int chan, int update_hw) +{ + if (DEV_HAS_CMICM(sinfo)) { + xgsm_irq_mask_enable(sinfo, chan, update_hw); + } else { + xgs_irq_mask_enable(sinfo, chan, update_hw); + } +} + +static void +dev_irq_mask_disable(bkn_switch_info_t *sinfo, int chan, int update_hw) +{ + if (DEV_HAS_CMICM(sinfo)) { + xgsm_irq_mask_disable(sinfo, chan, update_hw); + } else { + xgs_irq_mask_disable(sinfo, chan, update_hw); + } +} + + +static int +bkn_alloc_dcbs(bkn_switch_info_t *sinfo) +{ + int dcb_size; + int tx_ring_size, rx_ring_size; + + dcb_size = sinfo->dcb_wsize * sizeof(uint32_t); + tx_ring_size = dcb_size * (MAX_TX_DCBS + 1); + rx_ring_size = dcb_size * (MAX_RX_DCBS + 1); + sinfo->dcb_mem_size = tx_ring_size + rx_ring_size * NUM_RX_CHAN; + + sinfo->dcb_mem = DMA_ALLOC_COHERENT(sinfo->dma_dev, + sinfo->dcb_mem_size, + &sinfo->dcb_dma); + if (sinfo->dcb_mem == NULL) { + gprintk("DCB memory allocation (%d bytes) failed.\n", + sinfo->dcb_mem_size); + return -ENOMEM; + } + + return 0; +} + +static void +bkn_free_dcbs(bkn_switch_info_t *sinfo) +{ + if (sinfo->dcb_mem != NULL) { + DMA_FREE_COHERENT(sinfo->dma_dev, sinfo->dcb_mem_size, + sinfo->dcb_mem, sinfo->dcb_dma); + sinfo->dcb_mem = NULL; + } +} + +static void +bkn_clean_tx_dcbs(bkn_switch_info_t *sinfo) +{ + bkn_desc_info_t *desc; + + DBG_DCB_TX(("Cleaning Tx DCBs (%d %d).\n", + sinfo->tx.cur, sinfo->tx.dirty)); + while (sinfo->tx.free < MAX_TX_DCBS) { + desc = &sinfo->tx.desc[sinfo->tx.dirty]; + if (desc->skb != NULL) { + DBG_SKB(("Cleaning Tx SKB from DCB %d.\n", + sinfo->tx.dirty)); + DMA_UNMAP_SINGLE(sinfo->dma_dev, + desc->skb_dma, desc->dma_size, + DMA_TODEV); + desc->skb_dma = 0; + dev_kfree_skb_any(desc->skb); + desc->skb = NULL; + } + if (++sinfo->tx.dirty >= MAX_TX_DCBS) { + sinfo->tx.dirty = 0; + } + sinfo->tx.free++; + } + sinfo->tx.api_active = 0; + DBG_DCB_TX(("Cleaned Tx DCBs (%d %d).\n", + sinfo->tx.cur, sinfo->tx.dirty)); +} + +static void +bkn_clean_rx_dcbs(bkn_switch_info_t *sinfo, int chan) +{ + bkn_desc_info_t *desc; + + DBG_DCB_RX(("Cleaning Rx%d DCBs (%d %d).\n", + chan, sinfo->rx[chan].cur, sinfo->rx[chan].dirty)); + while (sinfo->rx[chan].free) { + desc = &sinfo->rx[chan].desc[sinfo->rx[chan].dirty]; + if (desc->skb != NULL) { + DBG_SKB(("Cleaning Rx%d SKB from DCB %d.\n", + chan, sinfo->rx[chan].dirty)); + DMA_UNMAP_SINGLE(sinfo->dma_dev, + desc->skb_dma, desc->dma_size, + DMA_FROMDEV); + desc->skb_dma = 0; + dev_kfree_skb_any(desc->skb); + desc->skb = NULL; + } + if (++sinfo->rx[chan].dirty >= MAX_RX_DCBS) { + sinfo->rx[chan].dirty = 0; + } + sinfo->rx[chan].free--; + } + sinfo->rx[chan].running = 0; + sinfo->rx[chan].api_active = 0; + DBG_DCB_RX(("Cleaned Rx%d DCBs (%d %d).\n", + chan, sinfo->rx[chan].cur, sinfo->rx[chan].dirty)); +} + +static void +bkn_clean_dcbs(bkn_switch_info_t *sinfo) +{ + int chan; + + bkn_clean_tx_dcbs(sinfo); + + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + bkn_clean_rx_dcbs(sinfo, chan); + } +} + +static void +bkn_init_dcbs(bkn_switch_info_t *sinfo) +{ + int dcb_size; + uint32_t *dcb_mem; + dma_addr_t dcb_dma; + bkn_desc_info_t *desc; + int idx; + int chan; + + memset(sinfo->dcb_mem, 0, sinfo->dcb_mem_size); + + dcb_size = sinfo->dcb_wsize * sizeof(uint32_t); + dcb_mem = sinfo->dcb_mem; + dcb_dma = sinfo->dcb_dma; + + for (idx = 0; idx < (MAX_TX_DCBS + 1); idx++) { + if (CDMA_CH(sinfo, XGS_DMA_TX_CHAN)) { + dcb_mem[1] |= (1 << 24) | (1 << 16); + if (idx == MAX_TX_DCBS) { + dcb_mem[1] |= 1 << 18; + dcb_mem[0] = sinfo->tx.desc[0].dcb_dma; + } + } + desc = &sinfo->tx.desc[idx]; + desc->dcb_mem = dcb_mem; + desc->dcb_dma = dcb_dma; + dcb_mem += sinfo->dcb_wsize; + dcb_dma += dcb_size; + } + sinfo->halt_addr[XGS_DMA_TX_CHAN] = sinfo->tx.desc[0].dcb_dma; + sinfo->tx.free = MAX_TX_DCBS; + + DBG_DCB_TX(("Tx DCBs @ 0x%08x.\n", + (uint32_t)sinfo->tx.desc[0].dcb_dma)); + + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + for (idx = 0; idx < (MAX_RX_DCBS + 1); idx++) { + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + dcb_mem[1] |= (1 << 24) | (1 << 16); + if (idx == MAX_RX_DCBS) { + dcb_mem[1] |= 1 << 18; + dcb_mem[0] = sinfo->rx[chan].desc[0].dcb_dma; + } + } + desc = &sinfo->rx[chan].desc[idx]; + desc->dcb_mem = dcb_mem; + desc->dcb_dma = dcb_dma; + dcb_mem += sinfo->dcb_wsize; + dcb_dma += dcb_size; + } + sinfo->halt_addr[XGS_DMA_RX_CHAN + chan] = sinfo->rx[chan].desc[MAX_RX_DCBS].dcb_dma; + sinfo->rx[chan].free = 0; + + DBG_DCB_RX(("Rx%d DCBs @ 0x%08x.\n", + chan, (uint32_t)sinfo->rx[chan].desc[0].dcb_dma)); + } +} + +static void +bkn_dump_dcb(char *prefix, uint32_t *dcb, int wsize, int txrx) +{ + if (XGS_DMA_TX_CHAN == txrx) { + DBG_DCB_TX(("%s: 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x ... 0x%08x\n", + prefix, dcb[0], dcb[1], dcb[2], dcb[3], dcb[4], dcb[5], + dcb[wsize - 1])); + } else { + DBG_DCB_RX(("%s: 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x ... 0x%08x\n", + prefix, dcb[0], dcb[1], dcb[2], dcb[3], dcb[4], dcb[5], + dcb[wsize - 1])); + } +} + +static void +bkn_dump_pkt(uint8_t *data, int size, int txrx) +{ + int idx; + char str[128]; + + if (!(debug & DBG_LVL_PDMP) && + !(txrx == XGS_DMA_TX_CHAN && debug & DBG_LVL_PDMP_TX) && + !(txrx == XGS_DMA_RX_CHAN && debug & DBG_LVL_PDMP_RX)) { + return; + } + size =32; + + for (idx = 0; idx < size; idx++) { + if ((idx & 0xf) == 0) { + sprintf(str, "%04x: ", idx); + } + if ((idx & 0xf) == 8) { + sprintf(&str[strlen(str)], "- "); + } + sprintf(&str[strlen(str)], "%02x ", data[idx]); + if ((idx & 0xf) == 0xf) { + sprintf(&str[strlen(str)], "\n"); + gprintk(str); + } + } + if ((idx & 0xf) != 0) { + sprintf(&str[strlen(str)], "\n"); + gprintk(str); + } +} + +static bkn_switch_info_t * +bkn_sinfo_from_unit(int unit) +{ + struct list_head *list; + bkn_switch_info_t *sinfo; + + list_for_each(list, &_sinfo_list) { + sinfo = (bkn_switch_info_t *)list; + if (sinfo->dev_no == unit || unit == -1) { + return sinfo; + } + } + return NULL; +} + +static void +bkn_api_rx_restart(bkn_switch_info_t *sinfo) +{ + bkn_dcb_chain_t *dcb_chain; + int chan = API_RX_CHAN; + int start_dma; + + if (sinfo->basedev_suspended) { + return; + } + + /* If resume from basedev suspended, there could be a suspended chain */ + if (sinfo->rx[chan].api_dcb_chain) { + return; + } + + /* Assume that driver lock is held */ + if (!list_empty(&sinfo->rx[chan].api_dcb_list)) { + dcb_chain = list_entry(sinfo->rx[chan].api_dcb_list.next, + bkn_dcb_chain_t, list); + start_dma = 0; + if (sinfo->rx[chan].use_rx_skb == 0) { + sinfo->rx[chan].chain_complete = 0; + start_dma = 1; + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan) && + sinfo->rx[chan].api_active) { + /* HW is running already, so we just move to the next chain */ + start_dma = 0; + } + } + sinfo->rx[chan].api_dcb_chain = dcb_chain; + sinfo->rx[chan].api_active = 1; + if (start_dma) { + DBG_DCB_RX(("Start API Rx DMA, first DCB @ 0x%08x (%d DCBs).\n", + (uint32_t)dcb_chain->dcb_dma, dcb_chain->dcb_cnt)); + dev_dma_chan_clear(sinfo, XGS_DMA_RX_CHAN + chan); + dev_irq_mask_enable(sinfo, XGS_DMA_RX_CHAN + chan, 1); + dev_dma_chan_start(sinfo, XGS_DMA_RX_CHAN + chan, + dcb_chain->dcb_dma); + } + + list_del(&dcb_chain->list); + } +} + +static void +bkn_api_rx_chain_done(bkn_switch_info_t *sinfo, int chan) +{ + DBG_DCB_RX(("API Rx DMA chain done\n")); + + if (!CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + sinfo->rx[chan].api_active = 0; + } + if (sinfo->rx[chan].api_dcb_chain) { + kfree(sinfo->rx[chan].api_dcb_chain); + sinfo->rx[chan].api_dcb_chain = NULL; + } + bkn_api_rx_restart(sinfo); + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan) && + sinfo->rx[chan].api_dcb_chain == NULL) { + sinfo->rx[chan].api_active = 0; + } +} + +static int +bkn_api_rx_copy_from_skb(bkn_switch_info_t *sinfo, + int chan, bkn_desc_info_t *desc) +{ + bkn_dcb_chain_t *dcb_chain; + uint32_t *dcb; + uint32_t dcb_stat; + uint8_t *pkt; + int pktlen; + int i; + bkn_evt_resource_t *evt; + + dcb_stat = desc->dcb_mem[sinfo->dcb_wsize-1]; + pktlen = dcb_stat & SOC_DCB_KNET_COUNT_MASK; + + dcb_chain = sinfo->rx[chan].api_dcb_chain; + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan) && dcb_chain == NULL) { + /* Last chain done, try to get a new one */ + bkn_api_rx_chain_done(sinfo, chan); + dcb_chain = sinfo->rx[chan].api_dcb_chain; + } + if (dcb_chain == NULL) { + DBG_WARN(("No Rx API buffers\n")); + sinfo->rx[chan].pkts_d_no_api_buf++; + return -1; + } + dcb = &dcb_chain->dcb_mem[dcb_chain->dcb_cur * sinfo->dcb_wsize]; + if (dcb[1] < pktlen) { + DBG_WARN(("Rx API buffer too small\n")); + return -1; + } + pkt = (uint8_t *)kernel_bde->p2l(sinfo->dev_no, dcb[0]); + if (pkt == NULL) { + DBG_WARN(("Invalid Rx API buffer\n")); + return -1; + } + + /* Copy packet data */ + memcpy(pkt, desc->skb->data, pktlen); + + /* Copy packet metadata and mark as done */ + for (i = SOC_DCB_META_OFFSET; i < sinfo->dcb_wsize; i++) { + dcb[i] = desc->dcb_mem[i]; + } + dcb[sinfo->dcb_wsize-1] = dcb_stat | SOC_DCB_KNET_DONE; + + dcb_chain->dcb_cur++; + + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + dcb = &dcb_chain->dcb_mem[dcb_chain->dcb_cur * sinfo->dcb_wsize]; + if (dcb[1] & (1 << 18)) { + /* Get the next chain if reload done */ + dcb[sinfo->dcb_wsize - 1] |= (1 << 31) | SOC_DCB_KNET_DONE; + bkn_api_rx_chain_done(sinfo, chan); + dcb_chain = sinfo->rx[chan].api_dcb_chain; + if (dcb_chain == NULL) { + sinfo->rx[chan].api_dcb_chain_end = NULL; + } + } + } else { + if ((dcb[1] & (1 << 16)) == 0) { + bkn_api_rx_chain_done(sinfo, chan); + } + } + + sinfo->dma_events |= KCOM_DMA_INFO_F_RX_DONE; + + evt = &_bkn_evt[sinfo->evt_idx]; + evt->evt_wq_put++; + wake_up_interruptible(&evt->evt_wq); + + return 0; +} + +static void +bkn_rx_refill(bkn_switch_info_t *sinfo, int chan) +{ + struct sk_buff *skb; + bkn_desc_info_t *desc; + uint32_t *dcb; + int prev; + + if (sinfo->rx[chan].use_rx_skb == 0) { + /* Rx buffers are provided by BCM Rx API */ + return; + } + + if (!CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan) && + sinfo->rx[chan].tokens < MAX_RX_DCBS) { + /* Pause DMA for now */ + return; + } + + while (sinfo->rx[chan].free < MAX_RX_DCBS) { + desc = &sinfo->rx[chan].desc[sinfo->rx[chan].cur]; + if (desc->skb == NULL) { + skb = dev_alloc_skb(rx_buffer_size + RCPU_RX_ENCAP_SIZE); + if (skb == NULL) { + break; + } + skb_reserve(skb, RCPU_RX_ENCAP_SIZE); + desc->skb = skb; + } else { + DBG_DCB_RX(("Refill Rx%d SKB in DCB %d recycled.\n", + chan, sinfo->rx[chan].cur)); + } + skb = desc->skb; + desc->dma_size = rx_buffer_size; +#ifdef KNET_NO_AXI_DMA_INVAL + /* + * FIXME: Need to retain this code until iProc customers have been + * migrated to updated u-boot. Old u-boot versions are unable to load + * the kernel into non-ACP memory. + */ + /* + * Cache invalidate may corrupt DMA memory on some iProc-based devices + * if the kernel is mapped to ACP memory. + */ + if (sinfo->pdev == NULL) { + desc->dma_size = 0; + } +#endif + desc->skb_dma = DMA_MAP_SINGLE(sinfo->dma_dev, + skb->data, desc->dma_size, + DMA_FROMDEV); + DBG_DCB_RX(("Refill Rx%d DCB %d (0x%08x).\n", + chan, sinfo->rx[chan].cur, (uint32_t)desc->skb_dma)); + dcb = desc->dcb_mem; + memset(dcb, 0, sizeof(uint32_t) * sinfo->dcb_wsize); + dcb[0] = desc->skb_dma; + dcb[1] = rx_buffer_size; + + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + dcb[1] |= (1 << 24) | (1 << 16); + } else { + prev = PREV_IDX(sinfo->rx[chan].cur, MAX_RX_DCBS); + if (prev < (MAX_RX_DCBS - 1)) { + sinfo->rx[chan].desc[prev].dcb_mem[1] |= (1 << 16); + } + } + if (++sinfo->rx[chan].cur >= MAX_RX_DCBS) { + sinfo->rx[chan].cur = 0; + } + sinfo->rx[chan].free++; + sinfo->rx[chan].tokens--; + } +} + +static int +bkn_rx_restart(bkn_switch_info_t *sinfo, int chan) +{ + bkn_desc_info_t *desc; + + if (sinfo->basedev_suspended) { + return 0; + } + + if (sinfo->rx[chan].running) { + return 0; + } + + if (sinfo->rx[chan].free < MAX_RX_DCBS) { + return 1; + } + + desc = &sinfo->rx[chan].desc[sinfo->rx[chan].dirty]; + sinfo->rx[chan].chain_complete = 0; + DBG_DCB_RX(("Restart Rx%d DMA, DCB @ 0x%08x (%d).\n", + chan, (uint32_t)desc->dcb_dma, sinfo->rx[chan].dirty)); + dev_dma_chan_clear(sinfo, XGS_DMA_RX_CHAN + chan); + dev_irq_mask_enable(sinfo, XGS_DMA_RX_CHAN + chan, 1); + dev_dma_chan_start(sinfo, XGS_DMA_RX_CHAN + chan, desc->dcb_dma); + sinfo->rx[chan].running = 1; + + /* Request one extra poll if chain was restarted during poll */ + if (sinfo->napi_poll_mode) { + sinfo->napi_poll_again = 1; + } + + return 0; +} + +static int +bkn_tx_dma_start(bkn_switch_info_t *sinfo) +{ + bkn_desc_info_t *desc; + + desc = &sinfo->tx.desc[sinfo->tx.cur]; + if (sinfo->tx.free == MAX_TX_DCBS) { + if (!sinfo->tx.api_active) { + DBG_DCB_TX(("Start Tx DMA, DCB @ 0x%08x (%d).\n", + (uint32_t)desc->dcb_dma, sinfo->tx.cur)); + dev_dma_chan_clear(sinfo, XGS_DMA_TX_CHAN); + dev_irq_mask_enable(sinfo, XGS_DMA_TX_CHAN, 1); + dev_dma_chan_start(sinfo, XGS_DMA_TX_CHAN, desc->dcb_dma); + } + } + + return 0; +} + +static int +bkn_dma_init(bkn_switch_info_t *sinfo) +{ + int chan; + + dev_dma_chan_init(sinfo, XGS_DMA_TX_CHAN, 1); + if (CDMA_CH(sinfo, XGS_DMA_TX_CHAN)) { + bkn_tx_dma_start(sinfo); + } + + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + dev_dma_chan_init(sinfo, XGS_DMA_RX_CHAN + chan, 0); + bkn_rx_refill(sinfo, chan); + bkn_rx_restart(sinfo, chan); + } + + return 0; +} + +static void +bkn_cdma_goto(bkn_switch_info_t *sinfo, int chan, dma_addr_t dcb) +{ + if (sinfo->basedev_suspended) { + return; + } + + /* Set the new halt location */ + sinfo->halt_addr[chan] = dcb; + dev_cdma_halt_set(sinfo, chan); +} + +static int +bkn_dma_abort_tx(bkn_switch_info_t *sinfo) +{ + bkn_dcb_chain_t *dcb_chain; + + DBG_VERB(("Aborting Tx DMA.\n")); + + dev_irq_mask_disable(sinfo, XGS_DMA_TX_CHAN, 1); + + dev_dma_chan_abort(sinfo, XGS_DMA_TX_CHAN, 10000); + + if (sinfo->tx.api_dcb_chain) { + DBG_DCB_TX(("Freeing active Tx DCB chain.\n")); + kfree(sinfo->tx.api_dcb_chain); + sinfo->tx.api_dcb_chain = NULL; + } + while (!list_empty(&sinfo->tx.api_dcb_list)) { + dcb_chain = list_entry(sinfo->tx.api_dcb_list.next, + bkn_dcb_chain_t, list); + list_del(&dcb_chain->list); + DBG_DCB_TX(("Freeing Tx DCB chain.\n")); + kfree(dcb_chain); + } + sinfo->tx.api_dcb_chain_end = NULL; + + return 0; +} + +static int +bkn_dma_abort_rx(bkn_switch_info_t *sinfo, int chan) +{ + bkn_dcb_chain_t *dcb_chain; + + DBG_VERB(("Aborting Rx%d DMA.\n", chan)); + + dev_irq_mask_disable(sinfo, XGS_DMA_RX_CHAN + chan, 1); + + dev_dma_chan_abort(sinfo, XGS_DMA_RX_CHAN + chan, 10000); + + if (sinfo->rx[chan].api_dcb_chain) { + DBG_DCB_RX(("Freeing active Rx%d DCB chain.\n", chan)); + kfree(sinfo->rx[chan].api_dcb_chain); + sinfo->rx[chan].api_dcb_chain = NULL; + } + while (!list_empty(&sinfo->rx[chan].api_dcb_list)) { + dcb_chain = list_entry(sinfo->rx[chan].api_dcb_list.next, + bkn_dcb_chain_t, list); + list_del(&dcb_chain->list); + DBG_DCB_RX(("Freeing Rx%d DCB chain.\n", chan)); + kfree(dcb_chain); + } + sinfo->rx[chan].api_dcb_chain_end = NULL; + + return 0; +} + +static int +bkn_dma_abort(bkn_switch_info_t *sinfo) +{ + int chan; + + bkn_dma_abort_tx(sinfo); + + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + bkn_dma_abort_rx(sinfo, chan); + } + + return 0; +} + +static bkn_filter_t * +bkn_match_rx_pkt(bkn_switch_info_t *sinfo, uint32_t *desc, + uint8_t *pkt, int chan, bkn_filter_t *cbf) +{ + struct list_head *list; + bkn_filter_t *filter; + kcom_filter_t scratch, *kf; + uint8_t *oob = (uint8_t *)desc; + int size, wsize; + int idx, match; + + list_for_each(list, &sinfo->rxpf_list) { + filter = (bkn_filter_t *)list; + kf = &filter->kf; + memcpy(&scratch.data.b[0], + &oob[kf->oob_data_offset], kf->oob_data_size); + memcpy(&scratch.data.b[kf->oob_data_size], + &pkt[kf->pkt_data_offset], kf->pkt_data_size); + size = kf->oob_data_size + kf->pkt_data_size; + wsize = BYTES2WORDS(size); + DBG_VERB(("Filter: size = %d (%d), data = 0x%08x, mask = 0x%08x\n", + size, wsize, kf->data.w[0], kf->mask.w[0])); + match = 1; + if (match) { + if (kf->priority < (num_rx_prio * NUM_RX_CHAN)) { + if (kf->priority < (num_rx_prio * chan) || + kf->priority >= (num_rx_prio * (chan + 1))) { + match = 0; + } + } + } + if (match) { + for (idx = 0; idx < wsize; idx++) { + scratch.data.w[idx] &= kf->mask.w[idx]; + if (scratch.data.w[idx] != kf->data.w[idx]) { + match = 0; + break; + } + } + } + if (match) { + if (kf->dest_type == KCOM_DEST_T_CB) { + /* Check for custom filters */ + if (knet_filter_cb != NULL && cbf != NULL) { + size = desc[sinfo->dcb_wsize-1] & SOC_DCB_KNET_COUNT_MASK; + memset(cbf, 0, sizeof(*cbf)); + memcpy(&cbf->kf, kf, sizeof(cbf->kf)); + if (knet_filter_cb(pkt, size, sinfo->dev_no, + desc, chan, &cbf->kf)) { + filter->hits++; + return cbf; + } + } else { + DBG_FLTR(("Match, but not filter callback\n")); + } + } else { + filter->hits++; + return filter; + } + } + } + + return NULL; +} + +static bkn_priv_t * +bkn_netif_lookup(bkn_switch_info_t *sinfo, int id) +{ + struct list_head *list; + bkn_priv_t *priv; + int found; + + /* Fast path */ + if (id < sinfo->ndev_max) { + if (sinfo->ndevs[id] != NULL) { + DBG_NDEV(("Look up netif ID %d successful\n", id)); + return netdev_priv(sinfo->ndevs[id]); + } + } + + /* Slow path - should normally not get here */ + found = 0; + priv = NULL; + list_for_each(list, &sinfo->ndev_list) { + priv = (bkn_priv_t *)list; + if (priv->id == id) { + found = 1; + break; + } + } + if (found && priv != NULL) { + return priv; + } + return NULL; +} + +static int +bkn_add_rcpu_encap(bkn_switch_info_t *sinfo, struct sk_buff *skb, uint32_t *dcb) +{ + int pktlen = skb->len; + uint32_t *metadata; + int idx; + + /* Add and clear RCPU encapsulation */ + skb_push(skb, RCPU_RX_ENCAP_SIZE); + memset(skb->data, 0, RCPU_RX_ENCAP_SIZE); + + /* RCPU Header */ + memcpy(skb->data, &skb->data[RCPU_RX_ENCAP_SIZE], 12); + if (rcpu_dmac != NULL) { + memcpy(skb->data, bkn_rcpu_dmac, 6); + } + if (rcpu_smac != NULL) { + memcpy(&skb->data[6], bkn_rcpu_smac, 6); + } + skb->data[12] = 0x81; + skb->data[14] = rcpu_vlan >> 8; + skb->data[15] = rcpu_vlan & 0xff; + skb->data[16] = rcpu_ethertype >> 8; + skb->data[17] = rcpu_ethertype & 0xff; + skb->data[18] = sinfo->rcpu_sig >> 8; + skb->data[19] = sinfo->rcpu_sig & 0xff; + skb->data[20] = RCPU_OPCODE_RX; + skb->data[21] = RCPU_F_MODHDR; + skb->data[24] = pktlen >> 8; + skb->data[25] = pktlen & 0xff; + + /* Meta data */ + metadata = (uint32_t *)&skb->data[RCPU_HDR_SIZE]; + for (idx = 0; idx < sinfo->dcb_wsize - 3; idx++) { + metadata[idx] = htonl(dcb[idx+2]); + } + + return 0; +} + +static void +bkn_eth_type_update(struct sk_buff *skb, int ethertype) +{ +#if defined(PM_ETH_TYPE) && defined(PM_FC_TYPE) + /* Optionally override standard protocol */ + skb->protocol = PM_ETH_TYPE; + if (ethertype == ETH_P_FCOE) { + skb->protocol = PM_FC_TYPE; + } +#endif +} + + + +#define BKN_DNX_BIT(x) (1<<(x)) +#define BKN_DNX_RBIT(x) (~(1<<(x))) +#ifdef __LITTLE_ENDIAN +#define BKN_DNX_BYTE_SWAP(x) (x) +#else +#define BKN_DNX_BYTE_SWAP(x) ((((x) << 24)) | (((x) & 0xff00) << 8) | (((x) & 0xff0000) >> 8) | (((x) >> 24))) +#endif +static int +device_is_dune(bkn_switch_info_t *sinfo) +{ + int is_dune = 0; + + is_dune = (sinfo->dcb_type == 28) ? 1 : 0; + return is_dune; +} +static int +packet_is_untagged(uint16_t tpid) +{ + int is_untagged = 0; + + /* Fixme SDK-111398 */ + /* 0x8100 is used in 802.1Q */ + /* 0x8848 is used in 802.11ad, the dtag tpid can be set to anything besides 0x8848, 0x9100 is a typical value, but couldn't cover all scenarios. */ + is_untagged = ((tpid != 0x8100) && (tpid != 0x8848) && (tpid != 0x9100)); + return is_untagged; +} + +static void +bkn_dnx_bitstream_set_field(uint32_t *input_buffer, uint32_t start_bit, uint32_t nof_bits, uint32_t field) +{ + uint32_t place; + uint32_t field_bit_i; + uint32_t bit_indicator; + + if( nof_bits > 32) + { + return; + } + + for( place=start_bit, field_bit_i = 0; field_bit_i< nof_bits; ++place, ++field_bit_i) + { + bit_indicator = field & BKN_DNX_BIT(nof_bits-field_bit_i-1); + if(bit_indicator) + { + input_buffer[place>>5] |= (0x80000000 >> (place & 0x0000001F)); + } + else + { + input_buffer[place>>5] &= ~(0x80000000 >> (place & 0x0000001F)); + } + } + return; +} + +static void +bkn_dnx_bitstream_get_field(uint8_t *input_buffer, uint32_t start_bit, uint32_t nof_bits, uint32_t *output_value) +{ + uint32_t idx; + uint32_t buf_sizes=0; + uint32_t tmp_output_value[2]={0}; + uint32_t first_byte_ndx; + uint32_t last_byte_ndx; + uint32_t place; + uint32_t field_bit_i; + uint8_t *tmp_output_value_u8_ptr = (uint8_t*)&tmp_output_value; + uint32_t bit_indicator; + + if (nof_bits > 32) + { + return; + } + + first_byte_ndx = start_bit / 8; + last_byte_ndx = ((start_bit + nof_bits - 1) / 8); + *output_value=0; + + /* get 32 bit value, MSB */ + for (idx = first_byte_ndx; idx <= last_byte_ndx; ++idx) + { + tmp_output_value_u8_ptr[last_byte_ndx - idx] = input_buffer[idx]; + buf_sizes += 8; + } + tmp_output_value[0] = BKN_DNX_BYTE_SWAP(tmp_output_value[0]); + if (last_byte_ndx > 4) + { + tmp_output_value[1] = BKN_DNX_BYTE_SWAP(tmp_output_value[1]); + } + + place = buf_sizes - (start_bit % 8 + nof_bits); + for (field_bit_i = 0; field_bit_i< nof_bits; ++place, ++field_bit_i) + { + uint32_t result; + result = tmp_output_value[place>>5] & BKN_DNX_BIT(place & 0x0000001F); + if (result) + { + bit_indicator = 1; + } else { + bit_indicator = 0; + } + *output_value |= bit_indicator << field_bit_i; + } + return; +} + +static void +bkn_dnx_packet_parse_ftmh(uint8_t hdr_buff[], bkn_dnx_packet_info *packet_info) +{ + uint32_t header_ptr = 0; + uint32_t dsp_ext_exist=0; + uint32_t fld_val; + + header_ptr = packet_info->ntwrk_header_ptr; + + /* Packet-size */ + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_FTMH_PKT_SIZE_MSB, + BKN_DNX_FTMH_PKT_SIZE_NOF_BITS, + &fld_val); + packet_info->ftmh.packet_size = fld_val; + /* Traffic-class */ + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_FTMH_TC_MSB, + BKN_DNX_FTMH_TC_NOF_BITS, + &fld_val); + packet_info->ftmh.prio = fld_val; + /* Source-system-port-aggregate */ + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_FTMH_SRC_SYS_PORT_MSB, + BKN_DNX_FTMH_SRC_SYS_PORT_NOF_BITS, + &fld_val); + packet_info->ftmh.src_sys_port = fld_val; + /* TM-action-type */ + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_FTMH_ACTION_TYPE_MSB, + BKN_DNX_FTMH_ACTION_TYPE_NOF_BITS, + &fld_val); + packet_info->ftmh.action_type = fld_val; + /* PPH-type */ + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_FTMH_PPH_TYPE_MSB, + BKN_DNX_FTMH_PPH_TYPE_NOF_BITS, + &fld_val); + packet_info->ftmh.pph_type = fld_val; + + packet_info->ntwrk_header_ptr += BKN_DNX_FTMH_SIZE_BYTE; + DBG_DUNE(("FTMH(%d) Packet-size %d Action-type %d PPH-type %d Source-system-port 0x%x Traffic-class %d\n", + packet_info->ntwrk_header_ptr, packet_info->ftmh.packet_size, packet_info->ftmh.action_type, + packet_info->ftmh.pph_type, packet_info->ftmh.src_sys_port, packet_info->ftmh.prio)); + + /* LB-Key ext */ + if (ftmh_lb_key_ext) + { + packet_info->ntwrk_header_ptr += BKN_DNX_FTMH_LB_EXT_SIZE_BYTE; + DBG_DUNE(("FTMH(%d) FTMH LB-Key Extension is present\n", packet_info->ntwrk_header_ptr)); + } + /* DSP ext*/ + fld_val = 0; + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_FTMH_EXT_DSP_EXIST_MSB, + BKN_DNX_FTMH_EXT_DSP_EXIST_NOF_BITS, + &dsp_ext_exist); + if (dsp_ext_exist) + { + packet_info->ntwrk_header_ptr += BKN_DNX_FTMH_DEST_EXT_SIZE_BYTE; + DBG_DUNE(("FTMH(%d) DSP Extension is present\n", packet_info->ntwrk_header_ptr)); + } + /* stacking ext */ + if (ftmh_stacking_ext) + { + packet_info->ntwrk_header_ptr += BKN_DNX_FTMH_STACKING_SIZE_BYTE; + DBG_DUNE(("FTMH(%d) FTMH Stacking Extension is present\n", packet_info->ntwrk_header_ptr)); + } + return; +} + +static void +bkn_dnx_packet_parse_internal(uint8_t hdr_buff[], bkn_dnx_packet_info *packet_info) +{ + uint32_t header_ptr = 0; + uint32_t fld_val; + uint32_t eei_extension_present = 0; + uint32_t learn_extension_present = 0; + uint32_t fhei_size = 0; + uint32_t forward_code; + uint8_t is_trapped = 0; + + header_ptr = packet_info->ntwrk_header_ptr; + + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_PPH_EEI_EXTENSION_PRESENT_MSB, + BKN_DNX_PPH_EEI_EXTENSION_PRESENT_NOF_BITS, + &eei_extension_present); + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_PPH_LEARN_EXENSION_PRESENT_MSB, + BKN_DNX_PPH_LEARN_EXENSION_PRESENT_NOF_BITS, + &learn_extension_present); + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_PPH_FHEI_SIZE_MSB, + BKN_DNX_PPH_FHEI_SIZE_NOF_BITS, + &fhei_size); + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_PPH_FORWARD_CODE_MSB, + BKN_DNX_PPH_FORWARD_CODE_NOF_BITS, + &forward_code); + /* 7: CPU-Trap */ + is_trapped = (uint8_t)(forward_code == 7); + + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_PPH_VSI_MSB, + BKN_DNX_PPH_VSI_NOF_BITS, + &fld_val); + packet_info->internal.vsi = fld_val; + + /* size of PPH base is 7 */ + packet_info->ntwrk_header_ptr += BKN_DNX_PPH_SIZE_BYTE; + header_ptr = packet_info->ntwrk_header_ptr; + + DBG_DUNE(("PPH(%d) Forward-Code %d EEI-Extension %d Learn-Extension %d VSI %d FHEI-size %d\n", packet_info->ntwrk_header_ptr, + forward_code, eei_extension_present, learn_extension_present, packet_info->internal.vsi, fhei_size)); + + /* PPH extension */ + if (is_trapped && (fhei_size == 1)) + { + /* CPU trap code qualifier */ + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_PPH_FHEI_TRAP_SNOOP_3B_CPU_TRAP_CODE_QUALIFIER_MSB, + BKN_DNX_PPH_FHEI_TRAP_SNOOP_3B_CPU_TRAP_CODE_QUALIFIER_NOF_BITS, + &fld_val); + packet_info->internal.trap_qualifier = fld_val; + /* CPU trap code */ + bkn_dnx_bitstream_get_field( + &hdr_buff[header_ptr], + BKN_DNX_PPH_FHEI_TRAP_SNOOP_3B_CPU_TRAP_CODE_MSB, + BKN_DNX_PPH_FHEI_TRAP_SNOOP_3B_CPU_TRAP_CODE_NOF_BITS, + &fld_val); + packet_info->internal.trap_id = fld_val; + } + switch(fhei_size) { + case 1: + packet_info->ntwrk_header_ptr += BKN_DNX_PPH_FHEI_3B_SIZE_BYTE; + break; + case 2: + packet_info->ntwrk_header_ptr += BKN_DNX_PPH_FHEI_5B_SIZE_BYTE; + break; + case 3: + packet_info->ntwrk_header_ptr += BKN_DNX_PPH_FHEI_8B_SIZE_BYTE; + break; + default: + break; + } + if (eei_extension_present) { + packet_info->ntwrk_header_ptr += BKN_DNX_PPH_EXPLICIT_EDITING_INFOMATION_EXTENSION_SIZE_BYTE; + } + if (learn_extension_present) { + packet_info->ntwrk_header_ptr += BKN_DNX_PPH_LEARN_EXTENSION_SIZE_BYTE; + } + + DBG_DUNE(("FHEI(%d) trap_qualifier 0x%x trap_id 0x%x\n", packet_info->ntwrk_header_ptr, packet_info->internal.trap_qualifier, packet_info->internal.trap_id)); + return; +} + +static int +bkn_dnx_packet_header_parse(uint8 *buff, uint32_t buff_len, bkn_dnx_packet_info *packet_info) +{ + uint8_t hdr_buff[BKN_DNX_HDR_MAX_SIZE]; + uint32_t hdr_size; + uint8_t has_internal = 0; + + if ((buff == NULL) || (packet_info == NULL)) { + return -1; + } + hdr_size = buff_len < BKN_DNX_HDR_MAX_SIZE ? buff_len: BKN_DNX_HDR_MAX_SIZE; + memcpy(hdr_buff, buff, hdr_size); + + /* FTMH */ + bkn_dnx_packet_parse_ftmh(hdr_buff, packet_info); + if (packet_info->ftmh.packet_size != (buff_len + 2)) { + DBG_DUNE(("FTMH packet size verfication failed, %d-%d\n", packet_info->ftmh.packet_size, buff_len)); + memset(packet_info, 0, sizeof(bkn_dnx_packet_info)); + return -1; + } + switch (packet_info->ftmh.pph_type) { + case 0: + has_internal = 0; + break; + case 1: + has_internal = 1; + break; + case 2: /* PPH OAM-TS only */ + case 3: /* PPH Base + OAM-TS */ + /* OTSH immediately follows the FTMH when present */ + packet_info->ntwrk_header_ptr += 6; + DBG_DUNE(("FTMH + OAM-TS(%d)\n", packet_info->ntwrk_header_ptr)); + has_internal = 1; + break; + default: + break; + } + + if (has_internal) { + bkn_dnx_packet_parse_internal(&hdr_buff[0], packet_info); + } + + /* FIXME: */ + /* ignore packets with a double set of FTMH,internals */ + /* ignore the user header size */ + return 0; +} + +static int +bkn_do_api_rx(bkn_switch_info_t *sinfo, int chan, int budget) +{ + bkn_priv_t *priv; + bkn_dcb_chain_t *dcb_chain; + struct sk_buff *skb; + bkn_filter_t cbf; + bkn_filter_t *filter; + uint32_t *dcb; + uint8_t *pkt; + int ethertype; + int pktlen; + int drop_api; + int idx; + int dcbs_done; + bkn_dnx_packet_info packet_info = {0}; + dcbs_done = 0; + + dcb_chain = sinfo->rx[chan].api_dcb_chain; + if (dcb_chain == NULL) { + /* No active chains */ + return 0; + } + + while (dcb_chain->dcb_cur < dcb_chain->dcb_cnt) { + dcb = &dcb_chain->dcb_mem[dcb_chain->dcb_cur * sinfo->dcb_wsize]; + DBG_VERB(("DCB %2d: 0x%08x\n", + dcb_chain->dcb_cur, dcb[sinfo->dcb_wsize-1])); + if ((dcb[sinfo->dcb_wsize-1] & (1 << 31)) == 0) { + break; + } + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + /* Handle for Continuous DMA mode */ + if (dcbs_done >= budget) { + break; + } + if (dcb[1] & (1 << 18)) { + dcb[sinfo->dcb_wsize - 1] |= SOC_DCB_KNET_DONE; + bkn_api_rx_chain_done(sinfo, chan); + dcb_chain = sinfo->rx[chan].api_dcb_chain; + if (dcb_chain == NULL) { + break; + } + continue; + } + } + if ((dcb[1] & (1 << 16)) == 0) { + sinfo->rx[chan].chain_complete = 1; + } + sinfo->rx[chan].pkts++; + pkt = (uint8_t *)kernel_bde->p2l(sinfo->dev_no, dcb[0]); + pktlen = dcb[sinfo->dcb_wsize-1] & SOC_DCB_KNET_COUNT_MASK; + bkn_dump_pkt(pkt, 32, XGS_DMA_RX_CHAN); + + if (device_is_dune(sinfo)) { + uint16_t tpid = 0; + uint16_t vid = 0; + int res = -1; + + memset(&packet_info, 0, sizeof(bkn_dnx_packet_info)); + res = bkn_dnx_packet_header_parse(pkt, (uint32_t)pktlen, &packet_info); + if (res == 0) { + if (packet_info.ftmh.action_type == 0x2) { + bkn_dnx_bitstream_set_field((uint32_t *)dcb, 192, 32, 0x8); + } else if (packet_info.ftmh.action_type == 0x1) { + bkn_dnx_bitstream_set_field((uint32_t *)dcb, 231, 25, 0x20); + } + bkn_dnx_bitstream_set_field((uint32_t *)dcb, 112, 16, packet_info.ftmh.src_sys_port); + bkn_dnx_bitstream_set_field((uint32_t *)dcb, 296, 12, packet_info.internal.vsi); + bkn_dnx_bitstream_set_field((uint32_t *)dcb, 64, 32, (packet_info.internal.trap_id << 16 | packet_info.internal.trap_qualifier)); + pkt += packet_info.ntwrk_header_ptr; + pktlen -= packet_info.ntwrk_header_ptr; + bkn_dump_pkt(pkt, 32, XGS_DMA_RX_CHAN); + /* check if vlan tag exists */ + tpid = (uint16_t)((pkt[12] << 8) | pkt[13]); + vid = (uint16_t)(packet_info.internal.vsi & 0xfff); + if (packet_is_untagged(tpid)) { + if ((pktlen + 4) < rx_buffer_size) { + DBG_DUNE(("add vlan tag (%d) to untagged packets\n", vid)); + for (idx = (pktlen-1); idx >= 12; idx--) { + pkt[idx+4] = pkt[idx]; + } + pkt[12] = 0x81; + pkt[13] = 0x00; + pkt[14] = (vid >> 8); + pkt[15] = (vid & 0xff); + /* reset packet length in DCB */ + pktlen += 4; + dcb[sinfo->dcb_wsize-1] &= ~SOC_DCB_KNET_COUNT_MASK; + dcb[sinfo->dcb_wsize-1] |= ((pktlen + packet_info.ntwrk_header_ptr) & SOC_DCB_KNET_COUNT_MASK); + bkn_dump_pkt(pkt, 32, XGS_DMA_RX_CHAN); + } + } + } + } + filter = bkn_match_rx_pkt(sinfo, dcb, pkt, chan, &cbf); + if ((dcb[sinfo->dcb_wsize-1] & 0x70000) != 0x30000) { + /* Fragment or error */ + if (filter && filter->kf.mask.w[sinfo->dcb_wsize-1] == 0) { + /* Drop unless DCB status is part of filter */ + filter = NULL; + } + } + drop_api = 1; + if (filter) { + DBG_FLTR(("Match filter ID %d\n", filter->kf.id)); + switch (filter->kf.dest_type) { + case KCOM_DEST_T_API: + DBG_FLTR(("Send to Rx API\n")); + sinfo->rx[chan].pkts_f_api++; + drop_api = 0; + break; + case KCOM_DEST_T_NETIF: + priv = bkn_netif_lookup(sinfo, filter->kf.dest_id); + if (priv) { + /* Check that software link is up */ + if (!netif_carrier_ok(priv->dev)) { + sinfo->rx[chan].pkts_d_no_link++; + break; + } + + /* Add 2 bytes for IP header alignment (see below) */ + skb = dev_alloc_skb(pktlen + RCPU_RX_ENCAP_SIZE + 2); + if (skb == NULL) { + sinfo->rx[chan].pkts_d_no_skb++; + break; + } + skb_reserve(skb, RCPU_RX_ENCAP_SIZE); + + DBG_FLTR(("Send to netif %d (%s)\n", + priv->id, priv->dev->name)); + sinfo->rx[chan].pkts_f_netif++; + skb->dev = priv->dev; + skb_reserve(skb, 2); /* 16 byte align the IP fields. */ + + /* Save for RCPU before stripping tag */ + ethertype = (pkt[16] << 8) | pkt[17]; + if ((priv->flags & KCOM_NETIF_F_KEEP_RX_TAG) == 0) { + if (filter->kf.flags & KCOM_FILTER_F_STRIP_TAG) { + /* Strip the VLAN tag */ + uint16_t vlan_proto = (uint16_t)((pkt[12] << 8) | pkt[13]); + if (vlan_proto == 0x8100 || vlan_proto == 0x88a8) { + DBG_FLTR(("Strip VLAN tag\n")); + for (idx = 11; idx >= 0; idx--) { + pkt[idx+4] = pkt[idx]; + } + pktlen -= 4; + pkt += 4; + } + } else { + /* + * Mark packet as VLAN-tagged, otherwise newer + * kernels will strip the tag. + */ + uint16_t tci = (pkt[14] << 8) | pkt[15]; + + if (priv->flags & KCOM_NETIF_F_RCPU_ENCAP) { + bkn_vlan_hwaccel_put_tag(skb, ETH_P_8021Q, tci); + } else { + bkn_vlan_hwaccel_put_tag(skb, + ((skb->data[12] << 8) | skb->data[13]), tci); + } + } + } + + skb_copy_to_linear_data(skb, pkt, pktlen); + if (device_is_dune(sinfo)) { + /* CRC has been stripped */ + skb_put(skb, pktlen); + } else { + skb_put(skb, pktlen - 4); /* Strip CRC */ + } + priv->stats.rx_packets++; + priv->stats.rx_bytes += pktlen; + + /* Optional SKB updates */ + if (knet_rx_cb != NULL) { + skb = knet_rx_cb(skb, sinfo->dev_no, dcb); + if (skb == NULL) { + /* Consumed by call-back */ + sinfo->rx[chan].pkts_d_callback++; + break; + } + } + + if (priv->flags & KCOM_NETIF_F_RCPU_ENCAP) { + bkn_add_rcpu_encap(sinfo, skb, dcb); + } + skb->protocol = eth_type_trans(skb, skb->dev); + if (filter->kf.dest_proto) { + skb->protocol = filter->kf.dest_proto; + } + if (priv->flags & KCOM_NETIF_F_RCPU_ENCAP) { + bkn_eth_type_update(skb, ethertype); + } + DBG_DUNE(("skb protocol 0x%04x\n",skb->protocol)); + + /* Unlock while calling up network stack */ + spin_unlock(&sinfo->lock); + if (use_napi) { + netif_receive_skb(skb); + } else { + netif_rx(skb); + } + spin_lock(&sinfo->lock); + + if (filter->kf.mirror_type == KCOM_DEST_T_API || + dbg_pkt_enable) { + DBG_FLTR(("Mirror to Rx API\n")); + sinfo->rx[chan].pkts_m_api++; + drop_api = 0; + } + } else { + DBG_FLTR(("Unknown netif %d\n", + filter->kf.dest_id)); + sinfo->rx[chan].pkts_d_unkn_netif++; + } + break; + default: + /* Drop packet */ + DBG_FLTR(("Unknown dest type %d\n", + filter->kf.dest_type)); + sinfo->rx[chan].pkts_d_unkn_dest++; + break; + } + } + if (drop_api) { + /* If count is zero, the DCB will just be recycled */ + dcb[sinfo->dcb_wsize-1] &= ~SOC_DCB_KNET_COUNT_MASK; + } + dcb[sinfo->dcb_wsize-1] |= SOC_DCB_KNET_DONE; + dcb_chain->dcb_cur++; + dcbs_done++; + } + + return dcbs_done; +} + +static int +bkn_do_skb_rx(bkn_switch_info_t *sinfo, int chan, int budget) +{ + bkn_priv_t *priv; + bkn_desc_info_t *desc; + struct sk_buff *skb; + bkn_filter_t cbf; + bkn_filter_t *filter; + uint32_t *dcb; + int ethertype; + int dcbs_done; + int pktlen; + bkn_dnx_packet_info packet_info = {0}; + int idx; + + dcbs_done = 0; + + if (!sinfo->rx[chan].running) { + /* Rx not ready */ + return 0; + } + + while (dcbs_done < budget) { + char str[32]; + sprintf(str, "Rx DCB (%d)", sinfo->rx[chan].dirty); + desc = &sinfo->rx[chan].desc[sinfo->rx[chan].dirty]; + dcb = desc->dcb_mem; + bkn_dump_dcb(str, dcb, sinfo->dcb_wsize, XGS_DMA_RX_CHAN); + if ((dcb[sinfo->dcb_wsize-1] & (1 << 31)) == 0) { + break; + } + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + /* DMA run to the new halt location */ + bkn_cdma_goto(sinfo, XGS_DMA_RX_CHAN + chan, desc->dcb_dma); + } + if ((dcb[1] & (1 << 16)) == 0) { + sinfo->rx[chan].chain_complete = 1; + /* Request one extra poll to check for chain done interrupt */ + if (sinfo->napi_poll_mode) { + sinfo->napi_poll_again = 1; + } + } + sinfo->rx[chan].pkts++; + pktlen = dcb[sinfo->dcb_wsize-1] & 0xffff; + priv = netdev_priv(sinfo->dev); + skb = desc->skb; + DBG_DCB_RX(("Rx%d SKB DMA done (%d).\n", chan, sinfo->rx[chan].dirty)); + DMA_UNMAP_SINGLE(sinfo->dma_dev, + desc->skb_dma, desc->dma_size, + DMA_FROMDEV); + desc->skb_dma = 0; + bkn_dump_pkt(skb->data, 32, XGS_DMA_RX_CHAN); + if (device_is_dune(sinfo)) { + uint16_t tpid = 0; + uint16_t vid = 0; + uint8_t *pkt = skb->data; + int res = 0; + + memset(&packet_info, 0, sizeof(bkn_dnx_packet_info)); + res = bkn_dnx_packet_header_parse(pkt, (uint32_t)pktlen, &packet_info); + if (res == 0) { + if (packet_info.ftmh.action_type == 0x2) { + bkn_dnx_bitstream_set_field((uint32_t *)dcb, 192, 32, 0x8); + } else if (packet_info.ftmh.action_type == 0x1) { + bkn_dnx_bitstream_set_field((uint32_t *)dcb, 231, 25, 0x20); + } + bkn_dnx_bitstream_set_field((uint32_t *)dcb, 112, 16, packet_info.ftmh.src_sys_port); + bkn_dnx_bitstream_set_field((uint32_t *)dcb, 296, 12, packet_info.internal.vsi); + bkn_dnx_bitstream_set_field((uint32_t *)dcb, 64, 32, (packet_info.internal.trap_id << 16 | packet_info.internal.trap_qualifier)); + pkt = skb->data + packet_info.ntwrk_header_ptr; + /* check if vlan tag exists */ + tpid = (uint16_t)((pkt[12] << 8) | pkt[13]); + vid = (uint16_t)(packet_info.internal.vsi & 0xfff); + if (packet_is_untagged(tpid)) { + if ((pktlen + 4) < rx_buffer_size) { + DBG_DUNE(("add vlan tag to untagged packets\n")); + for (idx = (pktlen-packet_info.ntwrk_header_ptr-1); idx >= 12; idx--) { + pkt[idx+4] = pkt[idx]; + } + pkt[12] = 0x81; + pkt[13] = 0x00; + pkt[14] = (vid >> 8); + pkt[15] = (vid & 0xff); + pktlen += 4; + /* reset packet length in DCB */ + dcb[sinfo->dcb_wsize-1] &= ~SOC_DCB_KNET_COUNT_MASK; + dcb[sinfo->dcb_wsize-1] |= (pktlen & SOC_DCB_KNET_COUNT_MASK); + bkn_dump_pkt(pkt, 32, XGS_DMA_RX_CHAN); + } + } + } + } + if (device_is_dune(sinfo)) { + filter = bkn_match_rx_pkt(sinfo, dcb, (skb->data + packet_info.ntwrk_header_ptr), chan, &cbf); + } else { + filter = bkn_match_rx_pkt(sinfo, dcb, skb->data, chan, &cbf); + } + if ((dcb[sinfo->dcb_wsize-1] & 0x70000) == 0x30000) { + DBG_PKT(("Rx packet (%d bytes).\n", pktlen)); + } else { + /* Fragment or error */ + priv->stats.rx_errors++; + if (filter && filter->kf.mask.w[sinfo->dcb_wsize-1] == 0) { + /* Drop unless DCB status is part of filter */ + filter = NULL; + } + } + if (filter) { + DBG_FLTR(("Match filter ID %d\n", filter->kf.id)); + switch (filter->kf.dest_type) { + case KCOM_DEST_T_API: + DBG_FLTR(("Send to Rx API\n")); + sinfo->rx[chan].pkts_f_api++; + bkn_api_rx_copy_from_skb(sinfo, chan, desc); + break; + case KCOM_DEST_T_NETIF: + priv = bkn_netif_lookup(sinfo, filter->kf.dest_id); + if (priv) { + /* Check that software link is up */ + if (!netif_carrier_ok(priv->dev)) { + sinfo->rx[chan].pkts_d_no_link++; + break; + } + DBG_FLTR(("Send to netif %d (%s)\n", + priv->id, priv->dev->name)); + sinfo->rx[chan].pkts_f_netif++; + + if (device_is_dune(sinfo)) { + if (filter->kf.mirror_type == KCOM_DEST_T_API) { + sinfo->rx[chan].pkts_m_api++; + bkn_api_rx_copy_from_skb(sinfo, chan, desc); + } + /* Strip Dune headers */ + skb->data += packet_info.ntwrk_header_ptr; + pktlen -= packet_info.ntwrk_header_ptr; + bkn_dump_pkt(skb->data, 32, XGS_DMA_RX_CHAN); + /* CRC has been stripped on Dune*/ + skb_put(skb, pktlen); + } else { + skb_put(skb, pktlen - 4); /* Strip CRC */ + } + + /* Save for RCPU before stripping tag */ + ethertype = (skb->data[16] << 8) | skb->data[17]; + + if ((priv->flags & KCOM_NETIF_F_KEEP_RX_TAG) == 0) { + if (filter->kf.flags & KCOM_FILTER_F_STRIP_TAG) { + /* Strip VLAN tag */ + uint16_t vlan_proto = (uint16_t)((skb->data[12] << 8) | skb->data[13]); + if (vlan_proto == 0x8100 || vlan_proto == 0x88a8) { + DBG_FLTR(("Strip VLAN tag\n")); + ((u32*)skb->data)[3] = ((u32*)skb->data)[2]; + ((u32*)skb->data)[2] = ((u32*)skb->data)[1]; + ((u32*)skb->data)[1] = ((u32*)skb->data)[0]; + skb_pull(skb, 4); + pktlen -= 4; + } + } else { + /* + * Mark packet as VLAN-tagged, otherwise newer + * kernels will strip the tag. + */ + uint16_t tci = (skb->data[14] << 8) | skb->data[15]; + if (priv->flags & KCOM_NETIF_F_RCPU_ENCAP) { + bkn_vlan_hwaccel_put_tag(skb, ETH_P_8021Q, tci); + } else { + bkn_vlan_hwaccel_put_tag(skb, + ((skb->data[12] << 8) | skb->data[13]), tci); + } + } + } + priv->stats.rx_packets++; + priv->stats.rx_bytes += pktlen; + skb->dev = priv->dev; + + /* Optional SKB updates */ + if (knet_rx_cb != NULL) { + skb = knet_rx_cb(skb, sinfo->dev_no, dcb); + if (skb == NULL) { + /* Consumed by call-back */ + sinfo->rx[chan].pkts_d_callback++; + priv->stats.rx_dropped++; + desc->skb = NULL; + desc->skb_dma = 0; + break; + } + } + + if (((filter->kf.mirror_type == KCOM_DEST_T_API) && + (!device_is_dune(sinfo))) || dbg_pkt_enable) { + sinfo->rx[chan].pkts_m_api++; + bkn_api_rx_copy_from_skb(sinfo, chan, desc); + } + + if (priv->flags & KCOM_NETIF_F_RCPU_ENCAP) { + bkn_add_rcpu_encap(sinfo, skb, dcb); + } + skb->protocol = eth_type_trans(skb, skb->dev); + if (filter->kf.dest_proto) { + skb->protocol = filter->kf.dest_proto; + } + if (priv->flags & KCOM_NETIF_F_RCPU_ENCAP) { + bkn_eth_type_update(skb, ethertype); + } + DBG_DUNE(("skb protocol 0x%04x\n",skb->protocol)); + if (filter->kf.mirror_type == KCOM_DEST_T_NETIF) { + bkn_priv_t *mpriv; + struct sk_buff *mskb; + mpriv = bkn_netif_lookup(sinfo, filter->kf.mirror_id); + if (mpriv && netif_carrier_ok(mpriv->dev)) { + mskb = skb_clone(skb, GFP_ATOMIC); + if (mskb == NULL) { + sinfo->rx[chan].pkts_d_no_skb++; + } else { + sinfo->rx[chan].pkts_m_netif++; + mpriv->stats.rx_packets++; + mpriv->stats.rx_bytes += pktlen; + skb->dev = mpriv->dev; + if (filter->kf.mirror_proto) { + skb->protocol = filter->kf.mirror_proto; + } + /* Unlock while calling up network stack */ + spin_unlock(&sinfo->lock); + if (use_napi) { + netif_receive_skb(mskb); + } else { + netif_rx(mskb); + } + spin_lock(&sinfo->lock); + } + } + } + + /* Unlock while calling up network stack */ + spin_unlock(&sinfo->lock); + if (use_napi) { + netif_receive_skb(skb); + } else { + netif_rx(skb); + } + spin_lock(&sinfo->lock); + + /* Ensure that we reallocate SKB for this DCB */ + desc->skb = NULL; + desc->skb_dma = 0; + } else { + DBG_FLTR(("Unknown netif %d\n", + filter->kf.dest_id)); + sinfo->rx[chan].pkts_d_unkn_netif++; + } + } + } else { + DBG_PKT(("Rx packet dropped.\n")); + sinfo->rx[chan].pkts_d_no_match++; + priv->stats.rx_dropped++; + } + dcb[sinfo->dcb_wsize-1] = 0; + if (++sinfo->rx[chan].dirty >= MAX_RX_DCBS) { + sinfo->rx[chan].dirty = 0; + } + sinfo->rx[chan].free--; + dcbs_done++; + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + /* Right now refill for Continuous DMA mode */ + bkn_rx_refill(sinfo, chan); + if (sinfo->rx[chan].tokens < MAX_RX_DCBS) { + break; + } + } + } + + return dcbs_done; +} + +static int +bkn_do_rx(bkn_switch_info_t *sinfo, int chan, int budget) +{ + if (sinfo->rx[chan].use_rx_skb == 0) { + /* Rx buffers are provided by BCM Rx API */ + return bkn_do_api_rx(sinfo, chan, budget); + } else { + /* Rx buffers are provided by Linux kernel */ + return bkn_do_skb_rx(sinfo, chan, budget); + } +} + +static void +bkn_rx_desc_done(bkn_switch_info_t *sinfo, int chan) +{ + bkn_evt_resource_t *evt; + evt = &_bkn_evt[sinfo->evt_idx]; + DBG_IRQ(("Rx%d desc done\n", chan)); + + if (sinfo->rx[chan].use_rx_skb == 0) { + sinfo->dma_events |= KCOM_DMA_INFO_F_RX_DONE; + evt->evt_wq_put++; + wake_up_interruptible(&evt->evt_wq); + } +} + +static void +bkn_rx_chain_done(bkn_switch_info_t *sinfo, int chan) +{ + DBG_IRQ(("Rx%d chain done\n", chan)); + + if (sinfo->rx[chan].chain_complete == 0) { + /* + * In certain environments the DCB memory is updated after + * the corresponding interrupt has been received. + * The following code will ensure that this situation is + * handled properly. + */ + int maxloop = 0; + while (sinfo->rx[chan].chain_complete == 0) { + sinfo->rx[chan].sync_retry++; + if (maxloop == 0) { + sinfo->rx[chan].sync_err++; + } + if (maxloop > sinfo->rx[chan].sync_maxloop) { + sinfo->rx[chan].sync_maxloop = maxloop; + } + if (bkn_do_rx(sinfo, chan, MAX_RX_DCBS) > 0) { + bkn_rx_desc_done(sinfo, chan); + } + if (++maxloop > rx_sync_retry) { + gprintk("Fatal error: Incomplete chain\n"); + sinfo->rx[chan].chain_complete = 1; + break; + } + } + } + + sinfo->rx[chan].running = 0; + + if (sinfo->rx[chan].use_rx_skb == 0) { + bkn_api_rx_chain_done(sinfo, chan); + } else { + bkn_rx_refill(sinfo, chan); + + if (bkn_rx_restart(sinfo, chan) != 0) { + /* Presumably out of resources */ + sinfo->timer.expires = jiffies + 1; + if (!sinfo->timer_queued) { + sinfo->timer_queued = 1; + add_timer(&sinfo->timer); + } + } + } +} + +static void +bkn_suspend_tx(bkn_switch_info_t *sinfo) +{ + struct list_head *list; + bkn_priv_t *priv = netdev_priv(sinfo->dev); + + /* Stop main device */ + netif_stop_queue(priv->dev); + sinfo->tx.suspends++; + /* Stop associated virtual devices */ + list_for_each(list, &sinfo->ndev_list) { + priv = (bkn_priv_t *)list; + netif_stop_queue(priv->dev); + } +} + +static void +bkn_resume_tx(bkn_switch_info_t *sinfo) +{ + struct list_head *list; + bkn_priv_t *priv = netdev_priv(sinfo->dev); + + /* Check main device */ + if (netif_queue_stopped(priv->dev) && sinfo->tx.free > 1) { + netif_wake_queue(priv->dev); + } + /* Check associated virtual devices */ + list_for_each(list, &sinfo->ndev_list) { + priv = (bkn_priv_t *)list; + if (netif_queue_stopped(priv->dev) && sinfo->tx.free > 1) { + netif_wake_queue(priv->dev); + } + } +} + +static int +bkn_do_tx(bkn_switch_info_t *sinfo) +{ + bkn_desc_info_t *desc; + int dcbs_done = 0; + + if (!CDMA_CH(sinfo, XGS_DMA_TX_CHAN) && sinfo->tx.api_active) { + return dcbs_done; + } + + while (dcbs_done < MAX_TX_DCBS) { + char str[32]; + if (sinfo->tx.free == MAX_TX_DCBS) { + break; + } + sprintf(str, "Tx DCB (%d)", sinfo->tx.dirty); + desc = &sinfo->tx.desc[sinfo->tx.dirty]; + bkn_dump_dcb(str, desc->dcb_mem, sinfo->dcb_wsize, XGS_DMA_TX_CHAN); + if ((desc->dcb_mem[sinfo->dcb_wsize-1] & (1 << 31)) == 0) { + break; + } + if (desc->skb) { + DBG_DCB_TX(("Tx SKB DMA done (%d).\n", sinfo->tx.dirty)); + DMA_UNMAP_SINGLE(sinfo->dma_dev, + desc->skb_dma, desc->dma_size, + DMA_TODEV); + dev_kfree_skb_any(desc->skb); + desc->skb = NULL; + desc->skb_dma = 0; + } + desc->dcb_mem[sinfo->dcb_wsize-1] = 0; + if (++sinfo->tx.dirty >= MAX_TX_DCBS) { + sinfo->tx.dirty = 0; + } + if (++sinfo->tx.free > MAX_TX_DCBS) { + gprintk("Too many free Tx DCBs(%d).\n", sinfo->tx.free); + } + dcbs_done++; + } + + return dcbs_done; +} + +static void +bkn_tx_cdma_chain_switch(bkn_switch_info_t *sinfo) +{ + bkn_dcb_chain_t *dcb_chain = sinfo->tx.api_dcb_chain; + uint32_t *dcb_mem; + dma_addr_t dcb_dma; + int woffset; + + /* Switch between SKB Tx and API Tx for Continuous DMA mode */ + if (!sinfo->tx.api_active) { + /* + * Set the current SKB DCB as reload DCB and the last DCB of + * the pending API chain as the new halt location. + */ + sinfo->tx.api_active = 1; + dcb_mem = sinfo->tx.desc[sinfo->tx.cur].dcb_mem; + memset(dcb_mem, 0, sinfo->dcb_wsize * sizeof(uint32_t)); + dcb_mem[0] = dcb_chain->dcb_dma; + dcb_mem[1] |= (1 << 24) | (1 << 18) | (1 << 16); + if (++sinfo->tx.cur >= MAX_TX_DCBS) { + sinfo->tx.cur = 0; + } + sinfo->tx.free--; + woffset = (dcb_chain->dcb_cnt - 1) * sinfo->dcb_wsize; + dcb_dma = dcb_chain->dcb_dma + woffset * sizeof(uint32_t); + /* DMA run to the new halt location */ + bkn_cdma_goto(sinfo, XGS_DMA_TX_CHAN, dcb_dma); + } else { + /* Only need to set the current SKB DCB as the new halt location */ + sinfo->tx.api_active = 0; + woffset = (dcb_chain->dcb_cnt - 1) * sinfo->dcb_wsize; + dcb_mem = &dcb_chain->dcb_mem[woffset]; + dcb_mem[0] = sinfo->tx.desc[sinfo->tx.dirty].dcb_dma; + dcb_dma = sinfo->tx.desc[sinfo->tx.cur].dcb_dma; + /* DMA run to the new halt location */ + bkn_cdma_goto(sinfo, XGS_DMA_TX_CHAN, dcb_dma); + } +} + +static void +bkn_skb_tx(bkn_switch_info_t *sinfo) +{ + if (sinfo->tx.api_active) { + /* Switch from API Tx to SKB Tx */ + bkn_tx_cdma_chain_switch(sinfo); + } +} + +static void +bkn_api_tx(bkn_switch_info_t *sinfo) +{ + bkn_dcb_chain_t *dcb_chain; + + /* Assume that driver lock is held */ + if (list_empty(&sinfo->tx.api_dcb_list)) { + sinfo->tx.api_active = 0; + } else { + sinfo->tx.pkts++; + dcb_chain = list_entry(sinfo->tx.api_dcb_list.next, + bkn_dcb_chain_t, list); + DBG_DCB_TX(("Start API Tx DMA, first DCB @ 0x%08x (%d DCBs).\n", + (uint32_t)dcb_chain->dcb_dma, dcb_chain->dcb_cnt)); + + if (CDMA_CH(sinfo, XGS_DMA_TX_CHAN)) { + sinfo->tx.api_dcb_chain = dcb_chain; + if (!sinfo->tx.api_active) { + /* Switch from SKB Tx to API Tx */ + bkn_tx_cdma_chain_switch(sinfo); + } + list_del(&dcb_chain->list); + } else { + sinfo->tx.api_active = 1; + dev_dma_chan_clear(sinfo, XGS_DMA_TX_CHAN); + dev_irq_mask_enable(sinfo, XGS_DMA_TX_CHAN, 1); + dev_dma_chan_start(sinfo, XGS_DMA_TX_CHAN, + dcb_chain->dcb_dma); + list_del(&dcb_chain->list); + kfree(dcb_chain); + } + } +} + +static void +bkn_tx_cdma_chain_done(bkn_switch_info_t *sinfo, int done) +{ + int woffset; + int dcbs_done = 0; + bkn_evt_resource_t *evt; + + evt = &_bkn_evt[sinfo->evt_idx]; + if (sinfo->tx.api_active) { + sinfo->dma_events |= KCOM_DMA_INFO_F_TX_DONE; + evt->evt_wq_put++; + wake_up_interruptible(&evt->evt_wq); + /* Drain API Tx chains */ + while (sinfo->tx.api_dcb_chain != sinfo->tx.api_dcb_chain_end) { + woffset = sinfo->tx.api_dcb_chain->dcb_cnt * sinfo->dcb_wsize - 1; + if (!(sinfo->tx.api_dcb_chain->dcb_mem[woffset] & (1 << 31))) { + return; + } + kfree(sinfo->tx.api_dcb_chain); + bkn_api_tx(sinfo); + if ((++dcbs_done + done) >= MAX_TX_DCBS) { + if (sinfo->napi_poll_mode) { + /* Request one extra poll to reschedule Tx */ + sinfo->napi_poll_again = 1; + } else { + /* Request to yield for Continuous DMA mode */ + sinfo->tx_yield = 1; + } + return; + } + } + woffset = (sinfo->tx.api_dcb_chain->dcb_cnt - 1) * sinfo->dcb_wsize - 1; + if (!(sinfo->tx.api_dcb_chain->dcb_mem[woffset] & (1 << 31))) { + return; + } + /* Try and park at SKB Tx if API Tx done */ + bkn_skb_tx(sinfo); + kfree(sinfo->tx.api_dcb_chain); + sinfo->tx.api_dcb_chain = NULL; + sinfo->tx.api_dcb_chain_end = NULL; + if (!sinfo->napi_poll_mode) { + /* Not need to yield for Continuous DMA mode */ + sinfo->tx_yield = 0; + } + } else { + if (sinfo->tx.free == MAX_TX_DCBS) { + /* Try API Tx if SKB Tx done */ + bkn_api_tx(sinfo); + if (sinfo->tx.api_active) { + return; + } + } + } + + /* Resume if netif Tx resources available and API Tx not active */ + bkn_resume_tx(sinfo); +} + +static void +bkn_tx_chain_done(bkn_switch_info_t *sinfo, int done) +{ + bkn_desc_info_t *desc; + int idx, pending; + bkn_evt_resource_t *evt; + + evt = &_bkn_evt[sinfo->evt_idx]; + + DBG_IRQ(("Tx chain done (%d/%d)\n", sinfo->tx.cur, sinfo->tx.dirty)); + + if (CDMA_CH(sinfo, XGS_DMA_TX_CHAN)) { + return bkn_tx_cdma_chain_done(sinfo, done); + } + + dev_irq_mask_disable(sinfo, XGS_DMA_TX_CHAN, 0); + + if (sinfo->tx.api_active) { + sinfo->dma_events |= KCOM_DMA_INFO_F_TX_DONE; + evt->evt_wq_put++; + wake_up_interruptible(&evt->evt_wq); + /* Check if BCM API has more to send */ + bkn_api_tx(sinfo); + if (sinfo->tx.api_active) { + return; + } + } + + if (sinfo->tx.free == MAX_TX_DCBS) { + /* If netif Tx is idle then allow BCM API to send */ + bkn_api_tx(sinfo); + if (sinfo->tx.api_active) { + return; + } + } else { + /* If two or more DCBs are pending, chain them */ + pending = MAX_TX_DCBS - sinfo->tx.free; + idx = sinfo->tx.dirty; + while (--pending && idx < (MAX_TX_DCBS - 1)) { + sinfo->tx.desc[idx++].dcb_mem[1] |= (1 << 16); + DBG_DCB_TX(("Chain Tx DCB %d (%d)\n", idx, pending)); + } + /* Restart DMA from where we stopped */ + desc = &sinfo->tx.desc[sinfo->tx.dirty]; + DBG_DCB_TX(("Restart Tx DMA, DCB @ 0x%08x (%d).\n", + (uint32_t)desc->dcb_dma, sinfo->tx.dirty)); + dev_dma_chan_clear(sinfo, XGS_DMA_TX_CHAN); + dev_irq_mask_enable(sinfo, XGS_DMA_TX_CHAN, 0); + dev_dma_chan_start(sinfo, XGS_DMA_TX_CHAN, desc->dcb_dma); + } + + /* Resume if netif Tx resources available and API Tx not active */ + bkn_resume_tx(sinfo); +} + +static void +bkn_schedule_napi_poll(bkn_switch_info_t *sinfo) +{ + /* Schedule NAPI poll */ + DBG_NAPI(("Schedule NAPI poll on %s.\n", sinfo->dev->name)); + /* Disable interrupts until poll job is complete */ + sinfo->napi_poll_mode = 1; + /* Unlock while calling up network stack */ + spin_unlock(&sinfo->lock); + if (bkn_napi_schedule_prep(sinfo->dev, &sinfo->napi)) { + __bkn_napi_schedule(sinfo->dev, &sinfo->napi); + DBG_NAPI(("Schedule prep OK on %s.\n", sinfo->dev->name)); + } else { + /* Most likely the base device is has not been opened */ + gprintk("Warning: Unable to schedule NAPI - base device not up?\n"); + } + spin_lock(&sinfo->lock); +} + +static void +bkn_napi_poll_complete(bkn_switch_info_t *sinfo) +{ + /* Unlock while calling up network stack */ + spin_unlock(&sinfo->lock); + bkn_napi_complete(sinfo->dev, &sinfo->napi); + spin_lock(&sinfo->lock); + /* Re-enable interrupts */ + sinfo->napi_poll_mode = 0; + dev_irq_mask_set(sinfo, sinfo->irq_mask); +} + +static int +xgs_do_dma(bkn_switch_info_t *sinfo, int budget) +{ + int rx_dcbs_done = 0, tx_dcbs_done = 0; + uint32_t dma_stat; + int chan; + + DEV_READ32(sinfo, CMIC_DMA_STATr, &dma_stat); + + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + if (dma_stat & DS_DESC_DONE_TST(XGS_DMA_RX_CHAN + chan)) { + xgs_dma_desc_clear(sinfo, XGS_DMA_RX_CHAN + chan); + rx_dcbs_done += bkn_do_rx(sinfo, chan, budget - rx_dcbs_done); + bkn_rx_desc_done(sinfo, chan); + } + + if (dma_stat & DS_CHAIN_DONE_TST(XGS_DMA_RX_CHAN + chan)) { + xgs_dma_chain_clear(sinfo, XGS_DMA_RX_CHAN + chan); + bkn_rx_chain_done(sinfo, chan); + } + } + + if (dma_stat & DS_CHAIN_DONE_TST(XGS_DMA_TX_CHAN)) { + xgs_dma_chain_clear(sinfo, XGS_DMA_TX_CHAN); + tx_dcbs_done = bkn_do_tx(sinfo); + bkn_tx_chain_done(sinfo, tx_dcbs_done); + } + + return rx_dcbs_done; +} + +static int +xgsm_do_dma(bkn_switch_info_t *sinfo, int budget) +{ + int rx_dcbs_done = 0, tx_dcbs_done = 0; + uint32_t dma_stat, irq_stat = 0; + int chan; + + /* Get Controlled interrupt states for Continuous DMA mode */ + if (sinfo->cdma_channels) { + DEV_READ32(sinfo, CMICM_IRQ_STATr, &irq_stat); + } + + DEV_READ32(sinfo, CMICM_DMA_STATr, &dma_stat); + + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + if (dma_stat & (0x10 << (XGS_DMA_RX_CHAN + chan)) || + irq_stat & (0x08000000 << (XGS_DMA_RX_CHAN + chan))) { + xgsm_dma_desc_clear(sinfo, XGS_DMA_RX_CHAN + chan); + rx_dcbs_done += bkn_do_rx(sinfo, chan, budget - rx_dcbs_done); + bkn_rx_desc_done(sinfo, chan); + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + continue; + } + } + + if (dma_stat & (0x1 << (XGS_DMA_RX_CHAN + chan))) { + xgsm_dma_chain_clear(sinfo, XGS_DMA_RX_CHAN + chan); + bkn_rx_chain_done(sinfo, chan); + } + } + + if (dma_stat & (0x1 << XGS_DMA_TX_CHAN) || + irq_stat & (0x08000000 << XGS_DMA_TX_CHAN)) { + if (CDMA_CH(sinfo, XGS_DMA_TX_CHAN)) { + xgsm_dma_desc_clear(sinfo, XGS_DMA_TX_CHAN); + } else { + xgsm_dma_chain_clear(sinfo, XGS_DMA_TX_CHAN); + } + tx_dcbs_done = bkn_do_tx(sinfo); + bkn_tx_chain_done(sinfo, tx_dcbs_done); + } + + return rx_dcbs_done; +} + +static int +dev_do_dma(bkn_switch_info_t *sinfo, int budget) +{ + if (DEV_HAS_CMICM(sinfo)) { + return xgsm_do_dma(sinfo, budget); + } else { + return xgs_do_dma(sinfo, budget); + } +} + +static void +xgs_isr(bkn_switch_info_t *sinfo) +{ + uint32_t irq_stat; + int rx_dcbs_done; + + DEV_READ32(sinfo, CMIC_IRQ_STATr, &irq_stat); + if ((irq_stat & sinfo->irq_mask) == 0) { + /* Not ours */ + return; + } + sinfo->interrupts++; + + DBG_IRQ(("Got interrupt on device %d (0x%08x)\n", + sinfo->dev_no, irq_stat)); + + if (use_napi) { + bkn_schedule_napi_poll(sinfo); + } else { + xgs_irq_mask_set(sinfo, 0); + do { + rx_dcbs_done = xgs_do_dma(sinfo, MAX_RX_DCBS); + } while (rx_dcbs_done); + } + + xgs_irq_mask_set(sinfo, sinfo->irq_mask); +} + +static void +xgsm_isr(bkn_switch_info_t *sinfo) +{ + uint32_t irq_stat; + int rx_dcbs_done; + + DEV_READ32(sinfo, CMICM_IRQ_STATr, &irq_stat); + if ((irq_stat & sinfo->irq_mask) == 0) { + /* Not ours */ + return; + } + sinfo->interrupts++; + + DBG_IRQ(("Got interrupt on device %d (0x%08x)\n", + sinfo->dev_no, irq_stat)); + + if (use_napi) { + bkn_schedule_napi_poll(sinfo); + } else { + xgsm_irq_mask_set(sinfo, 0); + do { + rx_dcbs_done = xgsm_do_dma(sinfo, MAX_RX_DCBS); + if (sinfo->cdma_channels) { + if (rx_dcbs_done >= MAX_RX_DCBS || sinfo->tx_yield) { + /* Continuous DMA mode requires to yield timely */ + break; + } + } + } while (rx_dcbs_done); + } + + xgsm_irq_mask_set(sinfo, sinfo->irq_mask); +} + +static void +bkn_isr(void *isr_data) +{ + bkn_switch_info_t *sinfo = isr_data; + + /* Safe exit on SMP systems */ + if (!module_initialized) { + return; + } + + /* Ensure that we do not touch registers during device reset */ + if (sinfo->irq_mask == 0) { + /* Not ours */ + return; + } + + spin_lock(&sinfo->lock); + + if (sinfo->napi_poll_mode) { + /* Not ours */ + spin_unlock(&sinfo->lock); + return; + } + + if (DEV_HAS_CMICM(sinfo)) { + xgsm_isr(sinfo); + } else { + xgs_isr(sinfo); + } + + spin_unlock(&sinfo->lock); +} + +#ifdef CONFIG_NET_POLL_CONTROLLER +static void +bkn_poll_controller(struct net_device *dev) +{ + bkn_priv_t *priv = netdev_priv(dev); + + disable_irq(dev->irq); + bkn_isr(priv->sinfo); + enable_irq(dev->irq); +} +#endif + +static void +bkn_resume_rx(bkn_switch_info_t *sinfo) +{ + bkn_desc_info_t *desc; + bkn_dcb_chain_t *dcb_chain; + dma_addr_t cur_halt, last_dcb, dcb_dma; + int woffset, chan, cdma_running; + + /* Resume Rx DMA on all channels */ + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + if (sinfo->rx[chan].use_rx_skb) { + cdma_running = 0; + bkn_api_rx_restart(sinfo); + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + cur_halt = sinfo->halt_addr[XGS_DMA_RX_CHAN + chan]; + last_dcb = sinfo->rx[chan].desc[MAX_RX_DCBS].dcb_dma; + if (cur_halt != last_dcb) { + desc = &sinfo->rx[chan].desc[sinfo->rx[chan].dirty + 1]; + bkn_cdma_goto(sinfo, XGS_DMA_RX_CHAN + chan, + desc->dcb_dma); + cdma_running = 1; + } + } + if (!cdma_running) { + bkn_rx_restart(sinfo, chan); + } + } else { + cdma_running = 0; + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + if (sinfo->rx[chan].api_active) { + dcb_chain = sinfo->rx[chan].api_dcb_chain_end; + woffset = (dcb_chain->dcb_cnt - 1) * sinfo->dcb_wsize; + dcb_dma = dcb_chain->dcb_dma + woffset * sizeof(uint32_t); + bkn_cdma_goto(sinfo, XGS_DMA_RX_CHAN + chan, dcb_dma); + cdma_running = 1; + } + } + if (!cdma_running) { + bkn_api_rx_restart(sinfo); + } + } + } +} + +static int +bkn_open(struct net_device *dev) +{ + bkn_priv_t *priv = netdev_priv(dev); + bkn_switch_info_t *sinfo = priv->sinfo; + unsigned long flags; + + /* Check if base device */ + if (priv->id <= 0) { + /* NAPI used only on base device */ + if (use_napi) { + bkn_napi_enable(dev, &sinfo->napi); + } + + /* Start DMA when base device is started */ + if (sinfo->basedev_suspended) { + spin_lock_irqsave(&sinfo->lock, flags); + dev_do_dma(sinfo, MAX_RX_DCBS); + sinfo->basedev_suspended = 0; + bkn_api_tx(sinfo); + if (!sinfo->tx.api_active) { + bkn_resume_tx(sinfo); + } + bkn_resume_rx(sinfo); + spin_unlock_irqrestore(&sinfo->lock, flags); + } + } + + if (!sinfo->basedev_suspended) { + netif_start_queue(dev); + } + + return 0; +} + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,29)) +static int +bkn_set_mac_address(struct net_device *dev, void *addr) +{ + if (!is_valid_ether_addr(((struct sockaddr *)addr)->sa_data)) { + return -EINVAL; + } + memcpy(dev->dev_addr, ((struct sockaddr *)addr)->sa_data, dev->addr_len); + return 0; +} +#endif + +static int +bkn_change_mtu(struct net_device *dev, int new_mtu) +{ + if (new_mtu < 68 || new_mtu > rx_buffer_size) { + return -EINVAL; + } + dev->mtu = new_mtu; + return 0; +} + +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24) +static int +bkn_poll(struct net_device *dev, int *budget) +{ + bkn_priv_t *priv = netdev_priv(dev); + bkn_switch_info_t *sinfo = priv->sinfo; + int cur_budget = *budget; + int poll_again = 0; + int rx_dcbs_done; + unsigned long flags; + + spin_lock_irqsave(&sinfo->lock, flags); + + DBG_NAPI(("NAPI poll on %s.\n", dev->name)); + + sinfo->napi_poll_again = 0; + + if (cur_budget > dev->quota) { + cur_budget = dev->quota; + } + + rx_dcbs_done = dev_do_dma(sinfo, cur_budget); + + *budget -= rx_dcbs_done; + cur_budget -= rx_dcbs_done; + dev->quota -= rx_dcbs_done; + + if (sinfo->napi_poll_again || cur_budget <= 0) { + poll_again = 1; + sinfo->napi_not_done++; + } else { + bkn_napi_poll_complete(sinfo); + } + + spin_unlock_irqrestore(&sinfo->lock, flags); + + return poll_again; +} +#else +static int +bkn_poll(struct napi_struct *napi, int budget) +{ + bkn_switch_info_t *sinfo = container_of(napi, bkn_switch_info_t, napi); + int rx_dcbs_done; + unsigned long flags; + + spin_lock_irqsave(&sinfo->lock, flags); + + DBG_NAPI(("NAPI poll on %s.\n", sinfo->dev->name)); + + sinfo->napi_poll_again = 0; + + rx_dcbs_done = dev_do_dma(sinfo, budget); + + if (sinfo->napi_poll_again || rx_dcbs_done >= budget) { + /* Force poll again */ + rx_dcbs_done = budget; + sinfo->napi_not_done++; + } else { + bkn_napi_poll_complete(sinfo); + } + + spin_unlock_irqrestore(&sinfo->lock, flags); + + return rx_dcbs_done; +} +#endif + +static int +bkn_stop(struct net_device *dev) +{ + bkn_priv_t *priv = netdev_priv(dev); + bkn_switch_info_t *sinfo = priv->sinfo; + unsigned long flags; + + netif_stop_queue(dev); + + /* Check if base device */ + if (priv->id <= 0) { + /* NAPI used only on base device */ + if (use_napi) { + bkn_napi_disable(dev, &sinfo->napi); + } + /* Suspend all devices if base device is stopped */ + if (basedev_suspend) { + spin_lock_irqsave(&sinfo->lock, flags); + bkn_suspend_tx(sinfo); + sinfo->basedev_suspended = 1; + spin_unlock_irqrestore(&sinfo->lock, flags); + } + } + + return 0; +} + +/* + * Network Device Statistics. + * Cleared at init time. + */ +static struct net_device_stats * +bkn_get_stats(struct net_device *dev) +{ + bkn_priv_t *priv = netdev_priv(dev); + + return &priv->stats; +} + +/* Fake multicast ability */ +static void +bkn_set_multicast_list(struct net_device *dev) +{ +} + +static int +bkn_tx(struct sk_buff *skb, struct net_device *dev) +{ + bkn_priv_t *priv = netdev_priv(dev); + bkn_switch_info_t *sinfo = priv->sinfo; + struct sk_buff *new_skb; + unsigned char *pktdata; + int pktlen; + int taglen; + int rcpulen; + int metalen; + int sop; + int idx; + uint16_t tpid; + uint32_t *metadata; + unsigned long flags; + + DBG_VERB(("Netif Tx\n")); + + if (priv->id <= 0) { + /* Do not transmit on base device */ + priv->stats.tx_dropped++; + dev_kfree_skb_any(skb); + return 0; + } + + if (!netif_carrier_ok(dev)) { + DBG_WARN(("Tx drop: Invalid RCPU encapsulation\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_no_link++; + dev_kfree_skb_any(skb); + return 0; + } + + spin_lock_irqsave(&sinfo->lock, flags); + + if (sinfo->tx.free > 1) { + bkn_desc_info_t *desc = &sinfo->tx.desc[sinfo->tx.cur]; + uint32_t *dcb; + + pktdata = skb->data; + pktlen = skb->len + 4; + rcpulen = 0; + sop = 0; + + if (priv->flags & KCOM_NETIF_F_RCPU_ENCAP) { + rcpulen = RCPU_HDR_SIZE; + if (skb->len < (rcpulen + 14)) { + DBG_WARN(("Tx drop: Invalid RCPU encapsulation\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_rcpu_encap++; + dev_kfree_skb_any(skb); + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + if (check_rcpu_signature && + ((skb->data[18] << 8) | skb->data[19]) != sinfo->rcpu_sig) { + DBG_WARN(("Tx drop: Invalid RCPU signature\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_rcpu_sig++; + dev_kfree_skb_any(skb); + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + if (skb->data[21] & RCPU_F_MODHDR) { + rcpulen += RCPU_TX_META_SIZE; + sop = skb->data[RCPU_HDR_SIZE]; + switch (sop) { + case 0xff: + case 0x81: + case 0xfb: + case 0xfc: + break; + default: + DBG_WARN(("Tx drop: Invalid RCPU meta data\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_rcpu_meta++; + dev_kfree_skb_any(skb); + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + } + /* Skip over RCPU encapsulation */ + pktdata = &skb->data[rcpulen]; + pktlen -= rcpulen; + + /* CPU packets require tag */ + if (sop == 0) { + tpid = (pktdata[12] << 8) | pktdata[13]; + if (tpid != 0x8100) { + if (skb_header_cloned(skb)) { + /* Current SKB cannot be modified */ + DBG_SKB(("Realloc Tx SKB\n")); + new_skb = dev_alloc_skb(pktlen + 4); + if (new_skb == NULL) { + DBG_WARN(("Tx drop: No SKB memory\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_no_skb++; + dev_kfree_skb_any(skb); + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + memcpy(new_skb->data, pktdata, 12); + memcpy(&new_skb->data[16], &pktdata[12], pktlen - 12); + skb_put(new_skb, pktlen + 4); + dev_kfree_skb_any(skb); + skb = new_skb; + pktdata = skb->data; + } else { + /* Add tag to existing buffer */ + DBG_SKB(("Expand into unused RCPU header\n")); + pktdata = &skb->data[rcpulen-4]; + for (idx = 0; idx < 12; idx++) { + pktdata[idx] = pktdata[idx+4]; + } + } + pktdata[12] = 0x81; + pktdata[13] = 0x00; + pktdata[14] = (priv->vlan >> 8) & 0xf; + pktdata[15] = priv->vlan & 0xff; + pktlen += 4; + } + } + } else if (priv->port < 0 || (priv->flags & KCOM_NETIF_F_ADD_TAG)) { + /* Need to add VLAN tag if packet is untagged */ + tpid = (skb->data[12] << 8) | skb->data[13]; + if (tpid != 0x8100) { + if (skb_header_cloned(skb) || skb_headroom(skb) < 4) { + /* Current SKB cannot be modified */ + DBG_SKB(("Realloc Tx SKB\n")); + new_skb = dev_alloc_skb(pktlen + 4); + if (new_skb == NULL) { + DBG_WARN(("Tx drop: No SKB memory\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_no_skb++; + dev_kfree_skb_any(skb); + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + memcpy(new_skb->data, skb->data, 12); + memcpy(&new_skb->data[16], &skb->data[12], pktlen - 12); + skb_put(new_skb, pktlen + 4); + dev_kfree_skb_any(skb); + skb = new_skb; + } else { + /* Add tag to existing buffer */ + DBG_SKB(("Expand Tx SKB\n")); + skb_push(skb, 4); + for (idx = 0; idx < 12; idx++) { + skb->data[idx] = skb->data[idx+4]; + } + } + pktdata = skb->data; + pktdata[12] = 0x81; + pktdata[13] = 0x00; + pktdata[14] = (priv->vlan >> 8) & 0xf; + pktdata[15] = priv->vlan & 0xff; + pktlen += 4; + } + } + + /* Pad packet if needed */ + taglen = 0; + tpid = (pktdata[12] << 8) | pktdata[13]; + if (tpid == 0x8100) { + taglen = 4; + } + if (pktlen < (64 + taglen)) { + pktlen = (64 + taglen); + /* Pad runt packets accounting for skipped RCPU header if needed */ + if (SKB_PADTO(skb, pktlen + rcpulen) != 0) { + DBG_WARN(("Tx drop: skb_padto failed\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_pad_fail++; + dev_kfree_skb_any(skb); + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + /* skb_padto may update the skb->data pointer */ + pktdata = &skb->data[rcpulen]; + DBG_SKB(("Packet padded to %d bytes\n", pktlen)); + } + + if (pktlen > SOC_DCB_KNET_COUNT_MASK) { + DBG_WARN(("Tx drop: size of pkt (%d) is out of range(%d)\n", + pktlen, SOC_DCB_KNET_COUNT_MASK)); + sinfo->tx.pkts_d_over_limit++; + priv->stats.tx_dropped++; + dev_kfree_skb_any(skb); + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + + dcb = desc->dcb_mem; + memset(dcb, 0, sizeof(uint32_t) * sinfo->dcb_wsize); + dcb[1] = pktlen; + if (priv->flags & KCOM_NETIF_F_RCPU_ENCAP) { + /* If module header SOP is non-zero, use RCPU meta data */ + if (sop != 0) { + metalen = (sinfo->dcb_wsize - 3) * sizeof(uint32_t); + if (metalen > RCPU_TX_META_SIZE) { + metalen = RCPU_TX_META_SIZE; + } + metadata = (uint32_t *)&skb->data[RCPU_HDR_SIZE]; + for (idx = 0; idx < BYTES2WORDS(metalen); idx++) { + dcb[idx+2] = ntohl(metadata[idx]); + } + dcb[1] |= (1 << 19); + } + bkn_dump_dcb("Tx RCPU", dcb, sinfo->dcb_wsize, XGS_DMA_TX_CHAN); + } else if (priv->port >= 0) { + /* Send to physical port */ + dcb[1] |= (1 << 19); + switch (sinfo->dcb_type) { + case 23: + case 26: + case 30: + case 31: + case 34: + case 37: + dcb[2] = 0x81000000; + dcb[3] = priv->port; + dcb[3] |= (priv->qnum & 0xc00) << 20; + dcb[4] = 0x00040000; + dcb[4] |= (priv->qnum & 0x3ff) << 8; + break; + case 32: + dcb[2] = 0x81000000; + dcb[3] = priv->port; + dcb[4] = 0x4000; + /* according to format of register SOBMH in bcm56960_a0 */ + dcb[4] |= (priv->qnum & 0x3f) << 8; + break; + case 33: + dcb[2] = 0x81000000; + dcb[3] = (priv->port) << 2; + dcb[4] = 0x00100000; + dcb[4] |= (priv->qnum & 0xfff) << 8; + break; + case 35: + dcb[2] = 0x81000000; + dcb[3] = (priv->port) << 4; + dcb[4] = 0x00400000; + dcb[4] |= (priv->qnum & 0x3fff) << 8; + break; + case 24: + dcb[2] = 0xff000000; + dcb[3] = 0x00000100; + dcb[4] = priv->port; + dcb[4] |= (priv->qnum & 0xfff) << 14; + break; + case 28: + { + if (priv->type == KCOM_NETIF_T_PORT) { + /* add PTCH ITMH header */ + if (skb_header_cloned(skb) || skb_headroom(skb) < 4) { + /* Current SKB cannot be modified */ + DBG_SKB(("Realloc Tx SKB for DNX ITMH header\n")); + new_skb = dev_alloc_skb(pktlen + 4 + 2); + if (new_skb == NULL) { + DBG_WARN(("Tx drop: No SKB memory for DNX ITMH header\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_no_skb++; + dev_kfree_skb_any(skb); + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + memcpy(&new_skb->data[6], skb->data, pktlen); + skb_put(new_skb, pktlen + 6); + dev_kfree_skb_any(skb); + skb = new_skb; + } else { + /* Add tag to existing buffer */ + DBG_SKB(("Expand Tx SKB for DNX ITMH header\n")); + skb_push(skb, 6); + } + pktdata = skb->data; + pktdata[0] = 0x50; + pktdata[1] = 0x00; + memcpy(&pktdata[2], priv->itmh, 4); + pktlen += 6; + } + else if (priv->type == KCOM_NETIF_T_VLAN) { + /* add PTCH header */ + if (skb_header_cloned(skb) || skb_headroom(skb) < 4) { + /* Current SKB cannot be modified */ + DBG_SKB(("Realloc Tx SKB for DNX header\n")); + new_skb = dev_alloc_skb(pktlen + 2); + if (new_skb == NULL) { + DBG_WARN(("Tx drop: No SKB memory for DNX header\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_no_skb++; + dev_kfree_skb_any(skb); + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + memcpy(&new_skb->data[2], skb->data, pktlen); + skb_put(new_skb, pktlen + 2); + dev_kfree_skb_any(skb); + skb = new_skb; + } else { + /* Add tag to existing buffer */ + DBG_SKB(("Expand Tx SKB for DNX header\n")); + skb_push(skb, 2); + } + pktdata = skb->data; + pktdata[0] = 0xd0; + pktdata[1] = priv->port; + pktlen += 2; + } + dcb[1] = pktlen; + break; + } + case 29: + dcb[2] = 0x81000000; + dcb[3] = priv->port; + dcb[4] = 0x00100000; + dcb[4] |= (priv->qnum & 0xfff) << 8; + break; + default: + dcb[2] = 0xff000000; + dcb[3] = 0x00000100; + dcb[4] = priv->port; + break; + } + } + + /* Optional SKB updates */ + if (knet_tx_cb != NULL) { + skb = knet_tx_cb(skb, sinfo->dev_no, dcb); + if (skb == NULL) { + /* Consumed by call-back */ + DBG_WARN(("Tx drop: Consumed by call-back\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_callback++; + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + /* Restore (possibly) altered packet variables + * bit0 -bit15 of dcb[1] is used to save requested byte count + */ + if ((skb->len + 4) <= SOC_DCB_KNET_COUNT_MASK) { + pktdata = skb->data; + pktlen = skb->len + 4; + } else { + DBG_WARN(("Tx drop: size of pkt (%d) is out of range(%d)\n", + pktlen, SOC_DCB_KNET_COUNT_MASK)); + sinfo->tx.pkts_d_over_limit++; + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_callback++; + dev_kfree_skb_any(skb); + spin_unlock_irqrestore(&sinfo->lock, flags); + return 0; + } + } + /* Prepare for DMA */ + desc->skb = skb; + desc->dma_size = pktlen; + desc->skb_dma = DMA_MAP_SINGLE(sinfo->dma_dev, + pktdata, desc->dma_size, + DMA_TODEV); + dcb[0] = desc->skb_dma; + dcb[1] &= ~SOC_DCB_KNET_COUNT_MASK; + dcb[1] |= pktlen; + + DBG_DCB_TX(("Add Tx DCB @ 0x%08x (%d) [%d free] (%d bytes).\n", + (uint32_t)desc->dcb_dma, sinfo->tx.cur, + sinfo->tx.free, pktlen)); + bkn_dump_pkt(pktdata, skb->len - rcpulen, XGS_DMA_TX_CHAN); + + if (CDMA_CH(sinfo, XGS_DMA_TX_CHAN)) { + dcb[1] |= (1 << 24) | (1 << 16); + } else { + bkn_tx_dma_start(sinfo); + } + if (++sinfo->tx.cur >= MAX_TX_DCBS) { + sinfo->tx.cur = 0; + } + sinfo->tx.free--; + + if (CDMA_CH(sinfo, XGS_DMA_TX_CHAN) && !sinfo->tx.api_active) { + /* DMA run to the new halt location */ + bkn_cdma_goto(sinfo, XGS_DMA_TX_CHAN, + sinfo->tx.desc[sinfo->tx.cur].dcb_dma); + } + + priv->stats.tx_packets++; + priv->stats.tx_bytes += pktlen; + sinfo->tx.pkts++; + } + else { + DBG_WARN(("Tx drop: No DMA resources\n")); + priv->stats.tx_dropped++; + sinfo->tx.pkts_d_dma_resrc++; + dev_kfree_skb_any(skb); + } + + /* Check our Tx resources */ + if (sinfo->tx.free <= 1) { + bkn_suspend_tx(sinfo); + } + + dev->trans_start = jiffies; + + spin_unlock_irqrestore(&sinfo->lock, flags); + + return 0; +} + +static void +bkn_timer(unsigned long context) +{ + bkn_switch_info_t *sinfo = (bkn_switch_info_t *)context; + unsigned long flags; + int chan; + int restart_timer; + + spin_lock_irqsave(&sinfo->lock, flags); + + sinfo->timer_runs++; + + restart_timer = 0; + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + /* Restart channel if not running */ + if (sinfo->rx[chan].running == 0) { + bkn_rx_refill(sinfo, chan); + if (bkn_rx_restart(sinfo, chan) != 0) { + restart_timer = 1; + } + } + } + + if (restart_timer) { + /* Presumably still out of memory */ + sinfo->timer.expires = jiffies + 1; + add_timer(&sinfo->timer); + } else { + sinfo->timer_queued = 0; + } + + spin_unlock_irqrestore(&sinfo->lock, flags); +} + +static void +bkn_rx_add_tokens(bkn_switch_info_t *sinfo, int chan) +{ + unsigned long cur_jif, ticks; + uint32_t tokens_per_tick; + + tokens_per_tick = sinfo->rx[chan].rate_max / HZ; + cur_jif = jiffies; + ticks = cur_jif - sinfo->rx[chan].tok_jif; + sinfo->rx[chan].tokens += ticks * tokens_per_tick; + sinfo->rx[chan].tok_jif = cur_jif; + if (sinfo->rx[chan].tokens > sinfo->rx[chan].burst_max) { + sinfo->rx[chan].tokens = sinfo->rx[chan].burst_max; + } + + /* Restart channel if not running */ + if (sinfo->rx[chan].running == 0) { + bkn_rx_refill(sinfo, chan); + bkn_rx_restart(sinfo, chan); + } +} + +static void +bkn_rxtick(unsigned long context) +{ + bkn_switch_info_t *sinfo = (bkn_switch_info_t *)context; + unsigned long flags; + unsigned long cur_jif, ticks; + uint32_t pkt_diff; + int chan; + + spin_lock_irqsave(&sinfo->lock, flags); + + sinfo->rxtick.expires = jiffies + sinfo->rxtick_jiffies; + + /* For debug purposes we maintain a rough actual packet rate */ + if (++sinfo->rxticks >= sinfo->rxticks_per_sec) { + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + pkt_diff = sinfo->rx[chan].pkts - sinfo->rx[chan].pkts_ref; + cur_jif = jiffies; + ticks = cur_jif - sinfo->rx[chan].rate_jif; + sinfo->rx[chan].rate = (pkt_diff * HZ) / ticks; + sinfo->rx[chan].rate_jif = cur_jif; + sinfo->rx[chan].pkts_ref = sinfo->rx[chan].pkts; + } + sinfo->rxticks = 0; + } + + /* Update tokens for Rx rate control */ + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + if (sinfo->rx[chan].tokens < sinfo->rx[chan].burst_max) { + bkn_rx_add_tokens(sinfo, chan); + } + } + + spin_unlock_irqrestore(&sinfo->lock, flags); + + add_timer(&sinfo->rxtick); +} + +static void +bkn_rx_rate_config(bkn_switch_info_t *sinfo) +{ + unsigned long flags; + int chan; + uint32_t rxticks_per_sec, rps; + uint32_t jiffies_per_rxtick; + uint32_t tokens_per_rxtick; + + spin_lock_irqsave(&sinfo->lock, flags); + + /* Calculate the minimum update frequency across all channels */ + rxticks_per_sec = 1; + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + if (sinfo->rx[chan].burst_max == 0) { + sinfo->rx[chan].burst_max = sinfo->rx[chan].rate_max / 10; + } + rps = sinfo->rx[chan].rate_max / sinfo->rx[chan].burst_max; + if (rxticks_per_sec < rps) { + rxticks_per_sec = rps; + } + } + + /* Convert update frequency to system ticks */ + jiffies_per_rxtick = HZ / rxticks_per_sec; + if (jiffies_per_rxtick == 0) { + jiffies_per_rxtick = 1; + } + rxticks_per_sec = HZ / jiffies_per_rxtick; + + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + /* Ensure that burst size satifies overall rate */ + tokens_per_rxtick = sinfo->rx[chan].rate_max / rxticks_per_sec; + if (sinfo->rx[chan].burst_max < tokens_per_rxtick) { + sinfo->rx[chan].burst_max = tokens_per_rxtick; + } + /* Ensure that rate has a sane value */ + if (sinfo->rx[chan].rate_max != 0) { + if (sinfo->rx[chan].rate_max < rxticks_per_sec) { + sinfo->rx[chan].rate_max = rxticks_per_sec; + } + } + sinfo->rx[chan].tokens = sinfo->rx[chan].burst_max; + } + + /* Update timer controls */ + sinfo->rxticks_per_sec = rxticks_per_sec; + sinfo->rxtick_jiffies = jiffies_per_rxtick; + + spin_unlock_irqrestore(&sinfo->lock, flags); +} + +static void +bkn_destroy_sinfo(bkn_switch_info_t *sinfo) +{ + list_del(&sinfo->list); + bkn_free_dcbs(sinfo); + kfree(sinfo); +} + +static bkn_switch_info_t * +bkn_create_sinfo(int dev_no) +{ + bkn_switch_info_t *sinfo; + uint32_t val; + int chan; + + if ((sinfo = kmalloc(sizeof(*sinfo), GFP_KERNEL)) == NULL) { + return NULL; + } + memset(sinfo, 0, sizeof(*sinfo)); + INIT_LIST_HEAD(&sinfo->ndev_list); + INIT_LIST_HEAD(&sinfo->rxpf_list); + sinfo->base_addr = lkbde_get_dev_virt(dev_no); + sinfo->dma_dev = lkbde_get_dma_dev(dev_no); + sinfo->pdev = lkbde_get_hw_dev(dev_no); + sinfo->dev_no = dev_no; + sinfo->evt_idx = -1; + + spin_lock_init(&sinfo->lock); + + init_timer(&sinfo->timer); + sinfo->timer.expires = jiffies + 1; + sinfo->timer.data = (unsigned long)sinfo; + sinfo->timer.function = bkn_timer; + + INIT_LIST_HEAD(&sinfo->tx.api_dcb_list); + + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + INIT_LIST_HEAD(&sinfo->rx[chan].api_dcb_list); + sinfo->rx[chan].use_rx_skb = use_rx_skb; + } + + /* + * Check for dual DMA mode where Rx DMA channel 0 uses DMA buffers + * provided by the BCM API, and the remaining Rx DMA channel(s) + * use socket buffers (SKB) provided by the Linux kernel. + */ + if (use_rx_skb == 2) { + sinfo->rx[0].use_rx_skb = 0; + } + + init_timer(&sinfo->rxtick); + sinfo->rxtick.expires = jiffies + 1; + sinfo->rxtick.data = (unsigned long)sinfo; + sinfo->rxtick.function = bkn_rxtick; + + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + sinfo->rx[chan].rate_max = rx_rate[chan]; + sinfo->rx[chan].burst_max = rx_burst[chan]; + } + bkn_rx_rate_config(sinfo); + + add_timer(&sinfo->rxtick); + + list_add_tail(&sinfo->list, &_sinfo_list); + + sinfo->cmic_type = 'e'; + DEV_READ32(sinfo, CMIC_DEV_REV_IDr, &val); + if (val == 0) { + sinfo->cmic_type = 'm'; + DEV_READ32(sinfo, CMICM_DEV_REV_IDr, &val); + } + + DBG_VERB(("Check dev/rev: 0x%08x\n", val)); + + return sinfo; +} + + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,29)) +static const struct net_device_ops bkn_netdev_ops = { + .ndo_open = bkn_open, + .ndo_stop = bkn_stop, + .ndo_start_xmit = bkn_tx, + .ndo_get_stats = bkn_get_stats, + .ndo_validate_addr = eth_validate_addr, + .ndo_set_rx_mode = bkn_set_multicast_list, + .ndo_set_mac_address = bkn_set_mac_address, + .ndo_do_ioctl = NULL, + .ndo_tx_timeout = NULL, + .ndo_change_mtu = bkn_change_mtu, +#ifdef CONFIG_NET_POLL_CONTROLLER + .ndo_poll_controller = bkn_poll_controller, +#endif +}; +#endif + +static struct net_device * +bkn_init_ndev(u8 *mac, char *name) +{ + struct net_device *dev; + + /* Create Ethernet device */ + dev = alloc_etherdev(sizeof(bkn_priv_t)); + + if (dev == NULL) { + DBG_WARN(("Error allocating Ethernet device.\n")); + return NULL; + } +#ifdef SET_MODULE_OWNER + SET_MODULE_OWNER(dev); +#endif + + /* Set the device MAC address */ + memcpy(dev->dev_addr, mac, 6); + + /* Device information -- not available right now */ + dev->irq = 0; + dev->base_addr = 0; + + /* Default MTU should not exceed MTU of switch front-panel ports */ + dev->mtu = default_mtu; + if (dev->mtu == 0) { + dev->mtu = rx_buffer_size; + } + + /* Device vectors */ +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,29)) + dev->netdev_ops = &bkn_netdev_ops; +#else + dev->open = bkn_open; + dev->hard_start_xmit = bkn_tx; + dev->stop = bkn_stop; + dev->set_multicast_list = bkn_set_multicast_list; + dev->do_ioctl = NULL; + dev->get_stats = bkn_get_stats; + dev->change_mtu = bkn_change_mtu; +#ifdef CONFIG_NET_POLL_CONTROLLER + dev->poll_controller = bkn_poll_controller; +#endif +#endif + if (name && *name) { + strncpy(dev->name, name, IFNAMSIZ-1); + } + + /* Register the kernel Ethernet device */ + if (register_netdev(dev)) { + DBG_WARN(("Error registering Ethernet device.\n")); + free_netdev(dev); + return NULL; + } + DBG_VERB(("Created Ethernet device %s.\n", dev->name)); + + return dev; +} + +/* + * Device Link Control Proc Read Entry + */ +static int +bkn_proc_link_show(struct seq_file *m, void *v) +{ + struct list_head *slist, *dlist; + struct net_device *dev; + bkn_priv_t *priv; + bkn_switch_info_t *sinfo; + unsigned long flags; + + seq_printf(m, "Software link status:\n"); + list_for_each(slist, &_sinfo_list) { + sinfo = (bkn_switch_info_t *)slist; + spin_lock_irqsave(&sinfo->lock, flags); + list_for_each(dlist, &sinfo->ndev_list) { + priv = (bkn_priv_t *)dlist; + dev = priv->dev; + if (dev && dev->name) { + seq_printf(m, " %-14s %s\n", dev->name, + netif_carrier_ok(dev) ? "up" : "down"); + } + } + spin_unlock_irqrestore(&sinfo->lock, flags); + } + return 0; +} + +static int +bkn_proc_link_open(struct inode * inode, struct file * file) +{ + return single_open(file, bkn_proc_link_show, NULL); +} + +/* + * Device Link Control Proc Write Entry + * + * Syntax: + * =up|down + * + * Where is a virtual network interface name. + * + * Examples: + * eth4=up + * eth4=down + */ +static ssize_t +bkn_proc_link_write(struct file *file, const char *buf, + size_t count, loff_t *loff) +{ + struct list_head *slist, *dlist; + struct net_device *dev; + bkn_priv_t *priv; + bkn_switch_info_t *sinfo; + unsigned long flags; + char link_str[40]; + char *ptr; + char *newline; + + if (count >= sizeof(link_str)) { + count = sizeof(link_str) - 1; + } + if (copy_from_user(link_str, buf, count)) { + return -EFAULT; + } + link_str[count] = 0; + newline = strchr(link_str, '\n'); + if (newline) { + /* Chop off the trailing newline */ + *newline = '\0'; + } + + if ((ptr = strchr(link_str, '=')) == NULL && + (ptr = strchr(link_str, ':')) == NULL) { + gprintk("Error: link syntax not recognized: '%s'\n", link_str); + return count; + } + *ptr++ = 0; + + dev = NULL; + list_for_each(slist, &_sinfo_list) { + sinfo = (bkn_switch_info_t *)slist; + spin_lock_irqsave(&sinfo->lock, flags); + list_for_each(dlist, &sinfo->ndev_list) { + priv = (bkn_priv_t *)dlist; + if (priv->dev && priv->dev->name) { + if (strcmp(priv->dev->name, link_str) == 0) { + dev = priv->dev; + break; + } + } + } + if (dev) { + if (strcmp(ptr, "up") == 0) { + netif_carrier_on(dev); + } else if (strcmp(ptr, "down") == 0) { + netif_carrier_off(dev); + } else { + gprintk("Warning: unknown link state setting: '%s'\n", ptr); + } + spin_unlock_irqrestore(&sinfo->lock, flags); + return count; + } + spin_unlock_irqrestore(&sinfo->lock, flags); + } + + gprintk("Warning: unknown network interface: '%s'\n", link_str); + + return count; +} + +struct file_operations bkn_proc_link_file_ops = { + owner: THIS_MODULE, + open: bkn_proc_link_open, + read: seq_read, + llseek: seq_lseek, + write: bkn_proc_link_write, + release: single_release, +}; + +/* + * Device Rate Control Proc Read Entry + */ +static int +bkn_proc_rate_show(struct seq_file *m, void *v){ + int unit = 0; + struct list_head *list; + bkn_switch_info_t *sinfo; + int chan; + + list_for_each(list, &_sinfo_list) { + sinfo = (bkn_switch_info_t *)list; + + seq_printf(m, "Rate control (unit %d):\n", unit); + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + seq_printf(m, " Rx%d max rate %8u\n", + chan, sinfo->rx[chan].rate_max); + seq_printf(m, " Rx%d max burst %8u\n", + chan, sinfo->rx[chan].burst_max); + seq_printf(m, " Rx%d rate %8u\n", + chan, sinfo->rx[chan].rate); + seq_printf(m, " Rx%d tokens %8u\n", + chan, sinfo->rx[chan].tokens); + } + + unit++; + } + return 0; +} + +static int +bkn_proc_rate_open(struct inode * inode, struct file * file) { + return single_open(file, bkn_proc_rate_show, NULL); +} + +/* + * Device Rate Control Proc Write Entry + * + * Syntax: + * [:]rx_rate=[,[, is packets/sec for the first Rx DMA channel, + * is packets/sec for the second Rx DMA channel, etc. + * + * Examples: + * rx_rate=5000 + * 0:rx_rate=10000,10000 + * 1:rx_rate=10000,5000 + */ +static ssize_t +bkn_proc_rate_write(struct file *file, const char *buf, + size_t count, loff_t *loff) +{ + bkn_switch_info_t *sinfo; + char rate_str[40]; + char *ptr; + int unit, chan; + + if (count >= sizeof(rate_str)) { + count = sizeof(rate_str) - 1; + } + if (copy_from_user(rate_str, buf, count)) { + return -EFAULT; + } + + unit = simple_strtol(rate_str, NULL, 10); + sinfo = bkn_sinfo_from_unit(unit); + if (sinfo == NULL) { + gprintk("Warning: unknown unit\n"); + return count; + } + + + if ((ptr = strstr(rate_str, "rx_rate=")) != NULL) { + ptr += 7; + chan = 0; + do { + ptr++; + sinfo->rx[chan].rate_max = simple_strtol(ptr, NULL, 10); + } + while ((ptr = strchr(ptr, ',')) != NULL && ++chan < NUM_RX_CHAN); + bkn_rx_rate_config(sinfo); + } else if ((ptr = strstr(rate_str, "rx_burst=")) != NULL) { + ptr += 8; + chan = 0; + do { + ptr++; + sinfo->rx[chan].burst_max = simple_strtol(ptr, NULL, 10); + } + while ((ptr = strchr(ptr, ',')) != NULL && ++chan < NUM_RX_CHAN); + bkn_rx_rate_config(sinfo); + } else { + gprintk("Warning: unknown configuration setting\n"); + } + + return count; +} + +struct file_operations bkn_proc_rate_file_ops = { + owner: THIS_MODULE, + open: bkn_proc_rate_open, + read: seq_read, + llseek: seq_lseek, + write: bkn_proc_rate_write, + release: single_release, +}; + +/* + * Driver DMA Proc Entry + * + * This output can be rather large (> PAGE_SIZE) so we use the + * seq_file interface to do the output. Special header records + * are indicated by a negative DCB index. + */ +typedef struct { + int dev_no; /* Current unit */ + int rx_dma; /* 0: Tx DMA, 1: Rx DMA*/ + int ch_no; /* DMA channel no. (Rx only) */ + int idx; /* DCB index */ +} bkn_seq_dma_iter_t; + +/* From current record, move forward 'pos' records */ +static int +bkn_seq_dma_next_pos(bkn_seq_dma_iter_t *iter, loff_t pos) +{ + while (pos) { + if (iter->rx_dma) { + if (++iter->idx >= MAX_RX_DCBS) { + iter->idx = -1; + if (++iter->ch_no >= NUM_RX_CHAN) { + iter->rx_dma = 0; + iter->ch_no = 0; + iter->dev_no++; + if (bkn_sinfo_from_unit(iter->dev_no) == NULL) { + return -1; + } + } + } + } else { + if (++iter->idx >= MAX_TX_DCBS) { + iter->idx = -1; + iter->rx_dma = 1; + } + } + pos--; + } + return 0; +} + +/* Initialize private data and move to requested start record */ +static void * +bkn_seq_dma_start(struct seq_file *s, loff_t *pos) +{ + bkn_seq_dma_iter_t *iter; + + iter = kmalloc(sizeof(bkn_seq_dma_iter_t), GFP_KERNEL); + if (!iter) { + return NULL; + } + memset(iter, 0, sizeof(*iter)); + iter->idx = -2; + if (bkn_seq_dma_next_pos(iter, *pos) < 0) { + kfree(iter); + return NULL; + } + return iter; +} + +/* Move to next record */ +static void * +bkn_seq_dma_next(struct seq_file *s, void *v, loff_t *pos) +{ + bkn_seq_dma_iter_t *iter = (bkn_seq_dma_iter_t *)v; + void *rv = iter; + + if (bkn_seq_dma_next_pos(iter, 1) < 0) { + return NULL; + } + (*pos)++; + return rv; +} + +/* Release private data */ +static void +bkn_seq_dma_stop(struct seq_file *s, void *v) +{ + if (v) { + kfree(v); + } +} + +/* Print current record */ +static int +bkn_seq_dma_show(struct seq_file *s, void *v) +{ + bkn_seq_dma_iter_t *iter = (bkn_seq_dma_iter_t *)v; + bkn_switch_info_t *sinfo; + uint32_t *dcb = NULL; + int chan; + + sinfo = bkn_sinfo_from_unit(iter->dev_no); + if (sinfo == NULL) { + /* Should not happen */ + return 0; + } + + if (iter->rx_dma == 0) { + if (iter->idx == -2) { + seq_printf(s, "Pending events: 0x%x\n", sinfo->dma_events); + } else if (iter->idx == -1) { + seq_printf(s, + "Tx DCB info (unit %d):\n" + " api: %d\n" + " dirty: %d\n" + " cur: %d\n" + " free: %d\n" + " pause: %s\n", + iter->dev_no, + sinfo->tx.api_active, + sinfo->tx.dirty, + sinfo->tx.cur, + sinfo->tx.free, + netif_queue_stopped(sinfo->dev) ? "yes" : "no"); + } else { + dcb = sinfo->tx.desc[iter->idx].dcb_mem; + } + } else { + if (iter->idx == -1) { + chan = iter->ch_no; + seq_printf(s, + "Rx%d DCB info (unit %d):\n" + " api: %d\n" + " dirty: %d\n" + " cur: %d\n" + " free: %d\n" + " run: %d\n", + chan, iter->dev_no, + sinfo->rx[chan].api_active, + sinfo->rx[chan].dirty, + sinfo->rx[chan].cur, + sinfo->rx[chan].free, + sinfo->rx[chan].running); + } else if (sinfo->rx[iter->ch_no].use_rx_skb) { + dcb = sinfo->rx[iter->ch_no].desc[iter->idx].dcb_mem; + } + } + if (dcb) { + seq_printf(s, " DCB %2d: 0x%08x 0x%08x ... 0x%08x\n", iter->idx, + dcb[0], dcb[1], dcb[sinfo->dcb_wsize - 1]); + } + return 0; +} + +static struct seq_operations bkn_seq_dma_ops = { + .start = bkn_seq_dma_start, + .next = bkn_seq_dma_next, + .stop = bkn_seq_dma_stop, + .show = bkn_seq_dma_show +}; + +static int +bkn_seq_dma_open(struct inode *inode, struct file *file) +{ + return seq_open(file, &bkn_seq_dma_ops); +}; + +static struct file_operations bkn_seq_dma_file_ops = { + .owner = THIS_MODULE, + .open = bkn_seq_dma_open, + .read = seq_read, + .llseek = seq_lseek, + .release = seq_release +}; + +/* + * Device Debug Control Proc Write Entry + * + * Syntax: + * [:]debug= + * + * Where corresponds to the debug module parameter. + * + * Examples: + * debug=0xffff + * 0:debug-0x2000 + */ +static ssize_t +bkn_proc_debug_write(struct file *file, const char *buf, + size_t count, loff_t *loff) +{ + bkn_switch_info_t *sinfo; + char debug_str[40]; + char *ptr; + int unit; + + if (count >= sizeof(debug_str)) { + count = sizeof(debug_str) - 1; + } + if (copy_from_user(debug_str, buf, count)) { + return -EFAULT; + } + + unit = simple_strtol(debug_str, NULL, 10); + sinfo = bkn_sinfo_from_unit(unit); + if (sinfo == NULL) { + gprintk("Warning: unknown unit\n"); + return count; + } + + if ((ptr = strstr(debug_str, "debug=")) != NULL) { + ptr += 6; + debug = simple_strtol(ptr, NULL, 0); + } else { + gprintk("Warning: unknown configuration setting\n"); + } + + return count; +} + +/* + * Driver Debug Proc Entry + */ +static int +bkn_proc_debug_show(struct seq_file *m, void *v){ + int unit = 0; + struct list_head *list; + bkn_switch_info_t *sinfo; + + seq_printf(m, "Configuration:\n"); + seq_printf(m, " debug: 0x%x\n", debug); + seq_printf(m, " mac_addr: %02x:%02x:%02x:%02x:%02x:%02x\n", + bkn_dev_mac[0], bkn_dev_mac[1], bkn_dev_mac[2], + bkn_dev_mac[3], bkn_dev_mac[4], bkn_dev_mac[5]); + seq_printf(m, " rx_buffer_size: %d (0x%x)\n", + rx_buffer_size, rx_buffer_size); + seq_printf(m, " rcpu_mode: %d\n", rcpu_mode); + seq_printf(m, " rcpu_dmac: %02x:%02x:%02x:%02x:%02x:%02x\n", + bkn_rcpu_dmac[0], bkn_rcpu_dmac[1], bkn_rcpu_dmac[2], + bkn_rcpu_dmac[3], bkn_rcpu_dmac[4], bkn_rcpu_dmac[5]); + seq_printf(m, " rcpu_smac: %02x:%02x:%02x:%02x:%02x:%02x\n", + bkn_rcpu_smac[0], bkn_rcpu_smac[1], bkn_rcpu_smac[2], + bkn_rcpu_smac[3], bkn_rcpu_smac[4], bkn_rcpu_smac[5]); + seq_printf(m, " rcpu_ethertype: 0x%x\n", rcpu_ethertype); + seq_printf(m, " rcpu_signature: 0x%x\n", rcpu_signature); + seq_printf(m, " rcpu_vlan: %d\n", rcpu_vlan); + seq_printf(m, " use_rx_skb: %d\n", use_rx_skb); + seq_printf(m, " num_rx_prio: %d\n", num_rx_prio); + seq_printf(m, " check_rcpu_sig: %d\n", check_rcpu_signature); + seq_printf(m, " default_mtu: %d\n", default_mtu); + seq_printf(m, " rx_sync_retry: %d\n", rx_sync_retry); + seq_printf(m, " use_napi: %d\n", use_napi); + seq_printf(m, " napi_weight: %d\n", napi_weight); + seq_printf(m, " basedev_susp: %d\n", basedev_suspend); + seq_printf(m, "Thread states:\n"); + seq_printf(m, " Command thread: %d\n", bkn_cmd_ctrl.state); + seq_printf(m, " Event thread: %d\n", bkn_evt_ctrl.state); + seq_printf(m, "Active IOCTLs:\n"); + seq_printf(m, " Command: %d\n", ioctl_cmd); + seq_printf(m, " Event: %d\n", ioctl_evt); + + list_for_each(list, &_sinfo_list) { + sinfo = (bkn_switch_info_t *)list; + + seq_printf(m, "Device %d:\n", unit); + seq_printf(m, " base_addr: 0x%p\n", sinfo->base_addr); + seq_printf(m, " dev_no: %d\n", sinfo->dev_no); + seq_printf(m, " dcb_type: %d\n", sinfo->dcb_type); + seq_printf(m, " dcb_wsize: %d\n", sinfo->dcb_wsize); + seq_printf(m, " cmic_type: %c\n", sinfo->cmic_type); + seq_printf(m, " irq_mask: 0x%x\n", sinfo->irq_mask); + seq_printf(m, " dma_events: 0x%x\n", sinfo->dma_events); + seq_printf(m, " dcb_dma: 0x%p\n", (void *)sinfo->dcb_dma); + seq_printf(m, " dcb_mem_size: 0x%x\n", sinfo->dcb_mem_size); + seq_printf(m, " rcpu_sig: 0x%x\n", sinfo->rcpu_sig); + seq_printf(m, " napi_poll_mode: %d\n", sinfo->napi_poll_mode); + seq_printf(m, " inst_id: 0x%x\n", sinfo->inst_id); + seq_printf(m, " evt_queue: %d\n", sinfo->evt_idx); + + unit++; + } + + return 0; +} + +static int bkn_proc_debug_open(struct inode * inode, struct file * file) { + return single_open(file, bkn_proc_debug_show, NULL); +} + +struct file_operations bkn_proc_debug_file_ops = { + owner: THIS_MODULE, + open: bkn_proc_debug_open, + read: seq_read, + llseek: seq_lseek, + write: bkn_proc_debug_write, + release: single_release, +}; + +/* + * Device Statistics Proc Entry + */ +static int +bkn_proc_stats_show(struct seq_file *m, void *v){ + int unit = 0; + struct list_head *list, *flist; + bkn_switch_info_t *sinfo; + bkn_filter_t *filter; + int chan; + + + list_for_each(list, &_sinfo_list) { + sinfo = (bkn_switch_info_t *)list; + + seq_printf(m, "Device stats (unit %d):\n", unit); + seq_printf(m, " Interrupts %10u\n", sinfo->interrupts); + seq_printf(m, " Tx packets %10u\n", sinfo->tx.pkts); + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + seq_printf(m, " Rx%d packets %10u\n", + chan, sinfo->rx[chan].pkts); + } + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + if (sinfo->interrupts == 0) { + /* Avoid divide-by-zero */ + seq_printf(m, " Rx%d pkts/intr -\n", chan); + } else { + seq_printf(m, " Rx%d pkts/intr %8u\n", + chan, sinfo->rx[chan].pkts / sinfo->interrupts); + } + } + seq_printf(m, " Timer runs %10u\n", sinfo->timer_runs); + seq_printf(m, " NAPI reruns %10u\n", sinfo->napi_not_done); + + list_for_each(flist, &sinfo->rxpf_list) { + filter = (bkn_filter_t *)flist; + + seq_printf(m, " Filter %d stats:\n", filter->kf.id); + seq_printf(m, " Hits %10lu\n", filter->hits); + } + + unit++; + } + return 0; +} + +static int bkn_proc_stats_open(struct inode * inode, struct file * file) { + return single_open(file, bkn_proc_stats_show, NULL); +} + +/* + * Device Statistics Proc Write Entry + * + * Syntax: + * [:]clear[=all] + * + * Where corresponds to the debug module parameter. + * + * Examples: + * clear + * 0:clear=all + */ +static ssize_t +bkn_proc_stats_write(struct file *file, const char *buf, + size_t count, loff_t *loff) +{ + bkn_switch_info_t *sinfo; + struct list_head *flist; + bkn_filter_t *filter; + char debug_str[40]; + char *ptr; + int unit; + int clear_mask; + int chan; + + if (count >= sizeof(debug_str)) { + count = sizeof(debug_str) - 1; + } + if (copy_from_user(debug_str, buf, count)) { + return -EFAULT; + } + + unit = simple_strtol(debug_str, NULL, 10); + sinfo = bkn_sinfo_from_unit(unit); + if (sinfo == NULL) { + gprintk("Warning: unknown unit\n"); + return count; + } + + clear_mask = 0; + if ((ptr = strstr(debug_str, "clear=")) != NULL) { + ptr += 6; + if (strncmp(ptr, "all", 3) == 0) { + clear_mask = ~0; + } + } else if ((ptr = strstr(debug_str, "clear")) != NULL) { + clear_mask = ~0; + } else { + gprintk("Warning: unknown configuration setting\n"); + } + + if (clear_mask) { + sinfo->tx.pkts = 0; + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + sinfo->rx[chan].pkts = 0; + } + sinfo->interrupts = 0; + sinfo->timer_runs = 0; + sinfo->napi_not_done = 0; + list_for_each(flist, &sinfo->rxpf_list) { + filter = (bkn_filter_t *)flist; + filter->hits = 0; + } + } + + return count; +} + +struct file_operations bkn_proc_stats_file_ops = { + owner: THIS_MODULE, + open: bkn_proc_stats_open, + read: seq_read, + llseek: seq_lseek, + write: bkn_proc_stats_write, + release: single_release, +}; + +/* + * Device Debug Statistics Proc Entry + */ +static int +bkn_proc_dstats_show(struct seq_file *m, void *v){ + int unit = 0; + struct list_head *list; + bkn_switch_info_t *sinfo; + int chan; + + list_for_each(list, &_sinfo_list) { + sinfo = (bkn_switch_info_t *)list; + + seq_printf(m, "Device debug stats (unit %d):\n", unit); + seq_printf(m, " Tx drop no skb %10u\n", + sinfo->tx.pkts_d_no_skb); + seq_printf(m, " Tx drop rcpu encap %10u\n", + sinfo->tx.pkts_d_rcpu_encap); + seq_printf(m, " Tx drop rcpu sig %10u\n", + sinfo->tx.pkts_d_rcpu_sig); + seq_printf(m, " Tx drop rcpu meta %10u\n", + sinfo->tx.pkts_d_rcpu_meta); + seq_printf(m, " Tx drop pad failed %10u\n", + sinfo->tx.pkts_d_pad_fail); + seq_printf(m, " Tx drop no resource %10u\n", + sinfo->tx.pkts_d_dma_resrc); + seq_printf(m, " Tx drop callback %10u\n", + sinfo->tx.pkts_d_callback); + seq_printf(m, " Tx drop no link %10u\n", + sinfo->tx.pkts_d_no_link); + seq_printf(m, " Tx drop oversized %10u\n", + sinfo->tx.pkts_d_over_limit); + seq_printf(m, " Tx suspends %10u\n", + sinfo->tx.suspends); + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + seq_printf(m, " Rx%d filter to api %10u\n", + chan, sinfo->rx[chan].pkts_f_api); + seq_printf(m, " Rx%d filter to netif %10u\n", + chan, sinfo->rx[chan].pkts_f_netif); + seq_printf(m, " Rx%d mirror to api %10u\n", + chan, sinfo->rx[chan].pkts_m_api); + seq_printf(m, " Rx%d mirror to netif %10u\n", + chan, sinfo->rx[chan].pkts_m_netif); + seq_printf(m, " Rx%d drop no skb %10u\n", + chan, sinfo->rx[chan].pkts_d_no_skb); + seq_printf(m, " Rx%d drop no match %10u\n", + chan, sinfo->rx[chan].pkts_d_no_match); + seq_printf(m, " Rx%d drop unkn netif %10u\n", + chan, sinfo->rx[chan].pkts_d_unkn_netif); + seq_printf(m, " Rx%d drop unkn dest %10u\n", + chan, sinfo->rx[chan].pkts_d_unkn_dest); + seq_printf(m, " Rx%d drop callback %10u\n", + chan, sinfo->rx[chan].pkts_d_callback); + seq_printf(m, " Rx%d drop no link %10u\n", + chan, sinfo->rx[chan].pkts_d_no_link); + seq_printf(m, " Rx%d sync error %10u\n", + chan, sinfo->rx[chan].sync_err); + seq_printf(m, " Rx%d sync retry %10u\n", + chan, sinfo->rx[chan].sync_retry); + seq_printf(m, " Rx%d sync maxloop %10u\n", + chan, sinfo->rx[chan].sync_maxloop); + seq_printf(m, " Rx%d drop no buffer %10u\n", + chan, sinfo->rx[chan].pkts_d_no_api_buf); + } + unit++; + } + return 0; +} + +static int bkn_proc_dstats_open(struct inode * inode, struct file * file) { + return single_open(file, bkn_proc_dstats_show, NULL); +} + +/* + * Device Debug Statistics Proc Write Entry + * + * Syntax: + * [:]clear[=all|tx|rx[]] + * + * Where corresponds to the debug module parameter. + * + * Examples: + * clear + * 0:clear=rx1 + */ +static ssize_t +bkn_proc_dstats_write(struct file *file, const char *buf, + size_t count, loff_t *loff) +{ + bkn_switch_info_t *sinfo; + char debug_str[40]; + char *ptr; + int unit; + int clear_mask; + int chan; + + if (count >= sizeof(debug_str)) { + count = sizeof(debug_str) - 1; + } + if (copy_from_user(debug_str, buf, count)) { + return -EFAULT; + } + + unit = simple_strtol(debug_str, NULL, 10); + sinfo = bkn_sinfo_from_unit(unit); + if (sinfo == NULL) { + gprintk("Warning: unknown unit\n"); + return count; + } + + clear_mask = 0; + if ((ptr = strstr(debug_str, "clear=")) != NULL) { + ptr += 6; + if (strncmp(ptr, "all", 3) == 0) { + clear_mask = ~0; + } else if (strncmp(ptr, "dev", 3) == 0) { + clear_mask = 0x20; + } else if (strncmp(ptr, "tx", 2) == 0) { + clear_mask = 0x10; + } else if (strncmp(ptr, "rx0", 3) == 0) { + clear_mask = (1 << 0); + } else if (strncmp(ptr, "rx1", 3) == 0) { + clear_mask = (1 << 1); + } else if (strncmp(ptr, "rx", 2) == 0) { + clear_mask = 0xf; + } + } else if ((ptr = strstr(debug_str, "clear")) != NULL) { + clear_mask = ~0; + } else { + gprintk("Warning: unknown configuration setting\n"); + } + + /* Tx counters */ + if (clear_mask & 0x10) { + sinfo->tx.pkts_d_no_skb = 0; + sinfo->tx.pkts_d_rcpu_encap = 0; + sinfo->tx.pkts_d_rcpu_sig = 0; + sinfo->tx.pkts_d_rcpu_meta = 0; + sinfo->tx.pkts_d_pad_fail = 0; + sinfo->tx.pkts_d_over_limit = 0; + sinfo->tx.pkts_d_dma_resrc = 0; + sinfo->tx.suspends = 0; + } + /* Rx counters */ + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + if (clear_mask & (1 << chan)) { + sinfo->rx[chan].pkts_f_api = 0; + sinfo->rx[chan].pkts_f_netif = 0; + sinfo->rx[chan].pkts_m_api = 0; + sinfo->rx[chan].pkts_m_netif = 0; + sinfo->rx[chan].pkts_d_no_skb = 0; + sinfo->rx[chan].pkts_d_no_match = 0; + sinfo->rx[chan].pkts_d_unkn_netif = 0; + sinfo->rx[chan].pkts_d_unkn_dest = 0; + sinfo->rx[chan].pkts_d_no_api_buf = 0; + sinfo->rx[chan].sync_err = 0; + sinfo->rx[chan].sync_retry = 0; + sinfo->rx[chan].sync_maxloop = 0; + } + } + + return count; +} + +struct file_operations bkn_proc_dstats_file_ops = { + owner: THIS_MODULE, + open: bkn_proc_dstats_open, + read: seq_read, + llseek: seq_lseek, + write: bkn_proc_dstats_write, + release: single_release, +}; + +static int +bkn_proc_init(void) +{ + struct proc_dir_entry *entry; + + PROC_CREATE(entry, "link", 0666, bkn_proc_root, &bkn_proc_link_file_ops); + if (entry == NULL) { + return -1; + } + PROC_CREATE(entry, "rate", 0666, bkn_proc_root, &bkn_proc_rate_file_ops); + if (entry == NULL) { + return -1; + } + PROC_CREATE(entry, "dma", 0, bkn_proc_root, &bkn_seq_dma_file_ops); + if (entry == NULL) { + return -1; + } + PROC_CREATE(entry, "debug", 0666, bkn_proc_root, &bkn_proc_debug_file_ops); + if (entry == NULL) { + return -1; + } + PROC_CREATE(entry, "stats", 0666, bkn_proc_root, &bkn_proc_stats_file_ops); + if (entry == NULL) { + return -1; + } + PROC_CREATE(entry, "dstats", 0666, bkn_proc_root, &bkn_proc_dstats_file_ops); + if (entry == NULL) { + return -1; + } + + return 0; +} + +static int +bkn_proc_cleanup(void) +{ + remove_proc_entry("link", bkn_proc_root); + remove_proc_entry("rate", bkn_proc_root); + remove_proc_entry("dma", bkn_proc_root); + remove_proc_entry("debug", bkn_proc_root); + remove_proc_entry("stats", bkn_proc_root); + remove_proc_entry("dstats", bkn_proc_root); + return 0; +} + +/* + * Generic module functions + */ + +static int +_pprint(void) +{ + pprintf("Broadcom BCM KNET Linux Network Driver\n"); + + return 0; +} + +static int +bkn_knet_dma_info(kcom_msg_dma_info_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + bkn_dcb_chain_t *dcb_chain, *dcb_chain_end; + unsigned long flags; + int chan = API_RX_CHAN; + dma_addr_t dcb_dma; + int woffset; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + dcb_chain = kmalloc(sizeof(*dcb_chain), GFP_KERNEL); + if (dcb_chain == NULL) { + gprintk("Fatal error: No memory for dcb_chain\n"); + kmsg->hdr.status = KCOM_E_RESOURCE; + return sizeof(kcom_msg_hdr_t); + } + memset(dcb_chain, 0, sizeof(*dcb_chain)); + dcb_chain->dcb_cnt = kmsg->dma_info.cnt; + dcb_chain->dcb_dma = kmsg->dma_info.data.dcb_start; + dcb_chain->dcb_mem = kernel_bde->p2l(sinfo->dev_no, + dcb_chain->dcb_dma); + + if (kmsg->dma_info.type == KCOM_DMA_INFO_T_TX_DCB) { + + spin_lock_irqsave(&sinfo->lock, flags); + + /* Hold back packets from kernel */ + bkn_suspend_tx(sinfo); + + list_add_tail(&dcb_chain->list, &sinfo->tx.api_dcb_list); + + /* Handle for Continuous DMA mode */ + if (CDMA_CH(sinfo, XGS_DMA_TX_CHAN)) { + woffset = (dcb_chain->dcb_cnt - 1) * sinfo->dcb_wsize + 1; + if ((dcb_chain->dcb_mem[woffset] & ((1 << 18) | (1 << 16))) != 0x50000) { + gprintk("No suitable API DCB chain for Continuous DMA mode\n"); + kfree(dcb_chain); + kmsg->hdr.status = KCOM_E_PARAM; + spin_unlock_irqrestore(&sinfo->lock, flags); + return sizeof(kcom_msg_hdr_t); + } + dcb_chain_end = sinfo->tx.api_dcb_chain_end; + if (dcb_chain_end != NULL) { + /* Stitch this chain */ + woffset = (dcb_chain_end->dcb_cnt - 1) * sinfo->dcb_wsize; + dcb_chain_end->dcb_mem[woffset] = dcb_chain->dcb_dma; + } + sinfo->tx.api_dcb_chain_end = dcb_chain; + if (sinfo->tx.api_active) { + /* Set new halt location */ + woffset = (dcb_chain->dcb_cnt - 1) * sinfo->dcb_wsize; + dcb_dma = dcb_chain->dcb_dma + woffset * sizeof(uint32_t); + /* DMA run to the new halt location */ + bkn_cdma_goto(sinfo, XGS_DMA_TX_CHAN, dcb_dma); + } + } + + if (sinfo->tx.free == MAX_TX_DCBS && + !sinfo->tx.api_active && + !sinfo->basedev_suspended) { + bkn_api_tx(sinfo); + } + + spin_unlock_irqrestore(&sinfo->lock, flags); + + } else if (kmsg->dma_info.type == KCOM_DMA_INFO_T_RX_DCB) { + + spin_lock_irqsave(&sinfo->lock, flags); + + list_add_tail(&dcb_chain->list, &sinfo->rx[chan].api_dcb_list); + + /* Handle for Continuous DMA mode */ + if (CDMA_CH(sinfo, XGS_DMA_RX_CHAN + chan)) { + woffset = (dcb_chain->dcb_cnt - 1) * sinfo->dcb_wsize + 1; + if ((dcb_chain->dcb_mem[woffset] & ((1 << 18) | (1 << 16))) != 0x50000) { + gprintk("No suitable API DCB chain for Continuous DMA mode\n"); + kfree(dcb_chain); + kmsg->hdr.status = KCOM_E_PARAM; + spin_unlock_irqrestore(&sinfo->lock, flags); + return sizeof(kcom_msg_hdr_t); + } + dcb_chain_end = sinfo->rx[chan].api_dcb_chain_end; + if (dcb_chain_end != NULL) { + /* Stitch this chain */ + woffset = (dcb_chain_end->dcb_cnt - 1) * sinfo->dcb_wsize; + dcb_chain_end->dcb_mem[woffset] = dcb_chain->dcb_dma; + } + sinfo->rx[chan].api_dcb_chain_end = dcb_chain; + if (!sinfo->rx[chan].use_rx_skb) { + /* Set new halt location */ + woffset = (dcb_chain->dcb_cnt - 1) * sinfo->dcb_wsize; + dcb_dma = dcb_chain->dcb_dma + woffset * sizeof(uint32_t); + /* DMA run to the new halt location */ + bkn_cdma_goto(sinfo, XGS_DMA_RX_CHAN + chan, dcb_dma); + } + } + + if (sinfo->rx[chan].api_active == 0) { + bkn_api_rx_restart(sinfo); + } + + spin_unlock_irqrestore(&sinfo->lock, flags); + + } else { + DBG_DCB(("Unknown DCB_INFO type (%d).\n", kmsg->dma_info.type)); + kfree(dcb_chain); + kmsg->hdr.status = KCOM_E_PARAM; + } + + return sizeof(kcom_msg_hdr_t); +} + +static int +bkn_create_inst(uint32 inst_id) +{ + bkn_switch_info_t *sinfo; + bkn_evt_resource_t *evt; + unsigned long flags; + int i, evt_idx = -1; + + /* multiple instance mode */ + for (i = 0; i < kernel_bde->num_devices(BDE_ALL_DEVICES); i ++) { + evt = &_bkn_evt[i]; + if (evt->inst_id == inst_id) { + evt_idx = i; + DBG_INST(("%s evt_idx %d inst_id 0x%x\n",__FUNCTION__, i, inst_id)); + break; + } + if ((_bkn_multi_inst == 0) || (evt->inst_id == 0)) { + _bkn_multi_inst ++; + evt_idx = i; + init_waitqueue_head(&evt->evt_wq); + evt->inst_id = inst_id; + DBG_INST(("%s evt_idx %d inst_id 0x%x\n",__FUNCTION__, i, inst_id)); + break; + } + } + + if (evt_idx == -1) { + DBG_WARN(("Run out the event queue resource !\n")); + return -1; + } + for (i = 0; i < kernel_bde->num_devices(BDE_ALL_DEVICES); i ++) { + if (inst_id & (1 << i)) { + sinfo = bkn_sinfo_from_unit(i); + spin_lock_irqsave(&sinfo->lock, flags); + sinfo->evt_idx = evt_idx; + spin_unlock_irqrestore(&sinfo->lock, flags); + DBG_INST(("%s d(%d) evt_idx %d \n",__FUNCTION__, i, evt_idx)); + } + } + return 0; +} + +/* + * Device reprobe driven by application to check if new device is probed or + * existed device is changed after inserting KNET module. + */ +static int +bkn_knet_dev_reprobe(void) +{ + bkn_switch_info_t *sinfo; + int i; + for (i = 0; i < kernel_bde->num_devices(BDE_ALL_DEVICES); i++) { + sinfo = bkn_sinfo_from_unit(i); + if (sinfo == NULL ) { + /* New device found after re-probe. */ + if (bkn_knet_dev_init(i) < 0) { + return -1; + } + } else { + /* Existed device reinit after re-probe. */ + if (bkn_knet_dev_reinit(i) < 0) { + return -1; + } + } + } + return 0; +} + +/* Assign the inst_id and evt_idx */ +static int +bkn_knet_dev_inst_set(kcom_msg_version_t *kmsg) +{ + bkn_switch_info_t *sinfo; + int d = kmsg->hdr.unit; + uint32 inst = 0; + unsigned long flags; + struct list_head *list; + + sinfo = bkn_sinfo_from_unit(d); + lkbde_dev_instid_get(d, &inst); + + spin_lock_irqsave(&sinfo->lock, flags); + if (sinfo->inst_id != inst) { + /* Instance database changed, reinit the inst_id */ + sinfo->inst_id = 0; + sinfo->evt_idx = -1; + } + spin_unlock_irqrestore(&sinfo->lock, flags); + + if (inst) { + if (sinfo->inst_id == 0){ + if (bkn_create_inst(inst) != 0) { + return -1; + } + } + spin_lock_irqsave(&sinfo->lock, flags); + sinfo->inst_id = inst; + spin_unlock_irqrestore(&sinfo->lock, flags); + } else { + /* legacy mode */ + list_for_each(list, &_sinfo_list) { + sinfo = (bkn_switch_info_t *)list; + spin_lock_irqsave(&sinfo->lock, flags); + sinfo->evt_idx = 0; + sinfo->inst_id = 0; + spin_unlock_irqrestore(&sinfo->lock, flags); + } + } + return 0; +} + +static int +bkn_knet_version(kcom_msg_version_t *kmsg, int len) +{ + /* Support pci hot plug and multiple instance */ + if ((bkn_knet_dev_reprobe() < 0) || + (bkn_knet_dev_inst_set(kmsg) < 0)){ + kmsg->hdr.status = KCOM_E_RESOURCE; + return sizeof(kcom_msg_version_t); + } + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + kmsg->version = KCOM_VERSION; + kmsg->netif_max = KCOM_NETIF_MAX; + kmsg->filter_max = KCOM_FILTER_MAX; + + return sizeof(kcom_msg_version_t); +} + +static int +bkn_knet_hw_reset(kcom_msg_hw_reset_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + unsigned long flags; + int chan; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + spin_lock_irqsave(&sinfo->lock, flags); + + if (kmsg->channels == 0) { + /* Clean all if no channels specified */ + bkn_dma_abort(sinfo); + bkn_clean_dcbs(sinfo); + } else { + if (kmsg->channels & (1 << XGS_DMA_TX_CHAN)) { + bkn_dma_abort_tx(sinfo); + bkn_clean_tx_dcbs(sinfo); + } + for (chan = 0; chan < NUM_RX_CHAN; chan++) { + if (kmsg->channels & (1 << (XGS_DMA_RX_CHAN + chan))) { + bkn_dma_abort_rx(sinfo, chan); + bkn_clean_rx_dcbs(sinfo, chan); + } + } + } + + spin_unlock_irqrestore(&sinfo->lock, flags); + + return sizeof(kcom_msg_hdr_t); +} + +static int +bkn_knet_hw_init(kcom_msg_hw_init_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + unsigned long flags; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + DBG_DCB(("DCB size %d, type %d\n", kmsg->dcb_size, kmsg->dcb_type)); + + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + spin_lock_irqsave(&sinfo->lock, flags); + + /* Config Continuous DMA mode */ + sinfo->cdma_channels = kmsg->cdma_channels; + + /* First time called we need to allocate DCBs */ + sinfo->dcb_type = kmsg->dcb_type; + sinfo->dcb_wsize = BYTES2WORDS(kmsg->dcb_size); + if (sinfo->dcb_mem == NULL) { + if (bkn_alloc_dcbs(sinfo) < 0) { + kmsg->hdr.status = KCOM_E_RESOURCE; + return sizeof(kcom_msg_hdr_t); + } + bkn_init_dcbs(sinfo); + } + + /* Ensure that we restart properly */ + bkn_dma_abort(sinfo); + bkn_clean_dcbs(sinfo); + + if (basedev_suspend) { + if (!netif_running(sinfo->dev)) { + sinfo->basedev_suspended = 1; + } + } + + bkn_dma_init(sinfo); + + spin_unlock_irqrestore(&sinfo->lock, flags); + + return sizeof(kcom_msg_hdr_t); +} + +static int +bkn_knet_detach(kcom_msg_detach_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + unsigned long flags; + bkn_evt_resource_t *evt; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + spin_lock_irqsave(&sinfo->lock, flags); + + /* Create dummy event to unblock pending IOCTL */ + sinfo->dma_events |= KCOM_DMA_INFO_F_TX_DONE; + evt = &_bkn_evt[sinfo->evt_idx]; + evt->evt_wq_put++; + wake_up_interruptible(&evt->evt_wq); + + spin_unlock_irqrestore(&sinfo->lock, flags); + + /* Ensure that we return a valid unit number */ + kmsg->hdr.unit = sinfo->dev_no; + + return sizeof(kcom_msg_detach_t); +} + +static int +bkn_knet_netif_create(kcom_msg_netif_create_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + struct net_device *dev; + struct list_head *list; + bkn_priv_t *priv, *lpriv; + unsigned long flags; + int found, id; + uint8 *ma; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + switch (kmsg->netif.type) { + case KCOM_NETIF_T_VLAN: + case KCOM_NETIF_T_PORT: + case KCOM_NETIF_T_META: + break; + default: + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + ma = kmsg->netif.macaddr; + if ((ma[0] | ma[1] | ma[2] | ma[3] | ma[4] | ma[5]) == 0) { + bkn_dev_mac[5]++; + ma = bkn_dev_mac; + } + if ((dev = bkn_init_ndev(ma, kmsg->netif.name)) == NULL) { + kmsg->hdr.status = KCOM_E_RESOURCE; + return sizeof(kcom_msg_hdr_t); + } + priv = netdev_priv(dev); + priv->dev = dev; + priv->sinfo = sinfo; + priv->type = kmsg->netif.type; + priv->vlan = kmsg->netif.vlan; + if (priv->type == KCOM_NETIF_T_PORT) { + priv->port = kmsg->netif.port; + memcpy(priv->itmh, kmsg->netif.itmh, 4); + priv->qnum = kmsg->netif.qnum; + } else { + if ((device_is_dune(sinfo)) && (priv->type == KCOM_NETIF_T_VLAN)) { + /* set port as SSP to PTCH */ + priv->port = kmsg->netif.port; + priv->qnum = kmsg->netif.qnum; + } + else { + priv->port = -1; + } + } + priv->flags = kmsg->netif.flags; + + /* Force RCPU encapsulation if rcpu_mode */ + if (rcpu_mode) { + priv->flags |= KCOM_NETIF_F_RCPU_ENCAP; + DBG_RCPU(("RCPU auto-enabled\n")); + } + + /* Prevent (incorrect) compiler warning */ + lpriv = NULL; + + spin_lock_irqsave(&sinfo->lock, flags); + + /* + * We insert network interfaces sorted by ID. + * In case an interface is destroyed, we reuse the ID + * the next time an interface is created. + */ + found = 0; + id = 1; + list_for_each(list, &sinfo->ndev_list) { + lpriv = (bkn_priv_t *)list; + if (id < lpriv->id) { + found = 1; + break; + } + id = lpriv->id + 1; + } + priv->id = id; + if (found) { + /* Replace previously removed interface */ + list_add_tail(&priv->list, &lpriv->list); + } else { + /* No holes - add to end of list */ + list_add_tail(&priv->list, &sinfo->ndev_list); + } + + if (id < sinfo->ndev_max) { + DBG_NDEV(("Add netif ID %d to table\n", id)); + sinfo->ndevs[id] = dev; + } else { + int ndev_max = sinfo->ndev_max + NDEVS_CHUNK; + int size = ndev_max * sizeof(struct net_device *); + void *ndevs = kmalloc(size, GFP_ATOMIC); + if (ndevs != NULL) { + DBG_NDEV(("Reallocate netif table for ID %d\n", id)); + memset(ndevs, 0, size); + if (sinfo->ndevs != NULL) { + size = sinfo->ndev_max * sizeof(struct net_device *); + memcpy(ndevs, sinfo->ndevs, size); + kfree(sinfo->ndevs); + } + sinfo->ndevs = ndevs; + sinfo->ndev_max = ndev_max; + sinfo->ndevs[id] = dev; + } + } + + spin_unlock_irqrestore(&sinfo->lock, flags); + + DBG_VERB(("Assigned ID %d to Ethernet device %s\n", + priv->id, dev->name)); + + kmsg->netif.id = priv->id; + memcpy(kmsg->netif.macaddr, dev->dev_addr, 6); + memcpy(kmsg->netif.name, dev->name, KCOM_NETIF_NAME_MAX - 1); + + return sizeof(*kmsg); +} + +static int +bkn_knet_netif_destroy(kcom_msg_netif_destroy_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + struct net_device *dev; + bkn_priv_t *priv; + struct list_head *list; + unsigned long flags; + int found; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + spin_lock_irqsave(&sinfo->lock, flags); + + found = 0; + list_for_each(list, &sinfo->ndev_list) { + priv = (bkn_priv_t *)list; + if (kmsg->hdr.id == priv->id) { + found = 1; + break; + } + } + + if (!found) { + spin_unlock_irqrestore(&sinfo->lock, flags); + kmsg->hdr.status = KCOM_E_NOT_FOUND; + return sizeof(kcom_msg_hdr_t); + } + + list_del(&priv->list); + + if (priv->id < sinfo->ndev_max) { + sinfo->ndevs[priv->id] = NULL; + } + + spin_unlock_irqrestore(&sinfo->lock, flags); + + dev = priv->dev; + DBG_VERB(("Removing virtual Ethernet device %s (%d).\n", + dev->name, priv->id)); + unregister_netdev(dev); + free_netdev(dev); + + return sizeof(kcom_msg_hdr_t); +} + +static int +bkn_knet_netif_list(kcom_msg_netif_list_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + bkn_priv_t *priv; + struct list_head *list; + unsigned long flags; + int idx; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + spin_lock_irqsave(&sinfo->lock, flags); + + idx = 0; + list_for_each(list, &sinfo->ndev_list) { + if (idx >= KCOM_NETIF_MAX) { + DBG_WARN(("Too many network interfaces to list (max %d).\n", + KCOM_NETIF_MAX)); + break; + } + priv = (bkn_priv_t *)list; + kmsg->id[idx] = priv->id; + idx++; + } + kmsg->ifcnt = idx; + + spin_unlock_irqrestore(&sinfo->lock, flags); + + return sizeof(*kmsg) - sizeof(kmsg->id) + (idx * sizeof(kmsg->id[0])); +} + +static int +bkn_knet_netif_get(kcom_msg_netif_get_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + bkn_priv_t *priv; + unsigned long flags; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + spin_lock_irqsave(&sinfo->lock, flags); + + priv = bkn_netif_lookup(sinfo, kmsg->hdr.id); + + if (priv == NULL) { + spin_unlock_irqrestore(&sinfo->lock, flags); + kmsg->hdr.status = KCOM_E_NOT_FOUND; + return sizeof(kcom_msg_hdr_t); + } + + memcpy(kmsg->netif.macaddr, priv->dev->dev_addr, 6); + memcpy(kmsg->netif.name, priv->dev->name, KCOM_NETIF_NAME_MAX - 1); + kmsg->netif.vlan = priv->vlan; + kmsg->netif.type = priv->type; + kmsg->netif.id = priv->id; + kmsg->netif.flags = priv->flags; + + if (priv->port < 0) { + kmsg->netif.port = 0; + } else { + kmsg->netif.port = priv->port; + } + kmsg->netif.qnum = priv->qnum; + + spin_unlock_irqrestore(&sinfo->lock, flags); + + return sizeof(*kmsg); +} + +static int +bkn_knet_filter_create(kcom_msg_filter_create_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + struct list_head *list; + bkn_filter_t *filter, *lfilter; + unsigned long flags; + int found, id; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + switch (kmsg->filter.type) { + case KCOM_FILTER_T_RX_PKT: + break; + default: + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + spin_lock_irqsave(&sinfo->lock, flags); + + /* + * Find available ID + */ + found = 1; + id = 0; + while (found && ++id < KCOM_FILTER_MAX) { + found = 0; + list_for_each(list, &sinfo->rxpf_list) { + lfilter = (bkn_filter_t *)list; + if (id == lfilter->kf.id) { + found = 1; + break; + } + } + } + if (found) { + /* Too many filters */ + spin_unlock_irqrestore(&sinfo->lock, flags); + kmsg->hdr.status = KCOM_E_RESOURCE; + return sizeof(kcom_msg_hdr_t); + } + + filter = kmalloc(sizeof(*filter), GFP_ATOMIC); + if (filter == NULL) { + spin_unlock_irqrestore(&sinfo->lock, flags); + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + memset(filter, 0, sizeof(*filter)); + memcpy(&filter->kf, &kmsg->filter, sizeof(filter->kf)); + filter->kf.id = id; + + /* Add according to priority */ + found = 0; + list_for_each(list, &sinfo->rxpf_list) { + lfilter = (bkn_filter_t *)list; + if (filter->kf.priority < lfilter->kf.priority) { + list_add_tail(&filter->list, &lfilter->list); + found = 1; + break; + } + } + if (!found) { + list_add_tail(&filter->list, &sinfo->rxpf_list); + } + + kmsg->filter.id = filter->kf.id; + + spin_unlock_irqrestore(&sinfo->lock, flags); + + DBG_VERB(("Created filter ID %d (%s).\n", + filter->kf.id, filter->kf.desc)); + + return len; +} + +static int +bkn_knet_filter_destroy(kcom_msg_filter_destroy_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + bkn_filter_t *filter; + struct list_head *list; + unsigned long flags; + int found; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + spin_lock_irqsave(&sinfo->lock, flags); + + found = 0; + list_for_each(list, &sinfo->rxpf_list) { + filter = (bkn_filter_t *)list; + if (kmsg->hdr.id == filter->kf.id) { + found = 1; + break; + } + } + + if (!found) { + spin_unlock_irqrestore(&sinfo->lock, flags); + kmsg->hdr.status = KCOM_E_NOT_FOUND; + return sizeof(kcom_msg_hdr_t); + } + + list_del(&filter->list); + + spin_unlock_irqrestore(&sinfo->lock, flags); + + DBG_VERB(("Removing filter ID %d.\n", filter->kf.id)); + kfree(filter); + + return sizeof(kcom_msg_hdr_t); +} + +static int +bkn_knet_filter_list(kcom_msg_filter_list_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + bkn_filter_t *filter; + struct list_head *list; + unsigned long flags; + int idx; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + spin_lock_irqsave(&sinfo->lock, flags); + + idx = 0; + list_for_each(list, &sinfo->rxpf_list) { + if (idx >= KCOM_FILTER_MAX) { + DBG_WARN(("Too many filters to list (max %d).\n", + KCOM_FILTER_MAX)); + break; + } + filter = (bkn_filter_t *)list; + kmsg->id[idx] = filter->kf.id; + idx++; + } + kmsg->fcnt = idx; + + spin_unlock_irqrestore(&sinfo->lock, flags); + + return sizeof(*kmsg) - sizeof(kmsg->id) + (idx * sizeof(kmsg->id[0])); +} + +static int +bkn_knet_filter_get(kcom_msg_filter_get_t *kmsg, int len) +{ + bkn_switch_info_t *sinfo; + bkn_filter_t *filter; + struct list_head *list; + unsigned long flags; + int found; + + kmsg->hdr.type = KCOM_MSG_TYPE_RSP; + + sinfo = bkn_sinfo_from_unit(kmsg->hdr.unit); + if (sinfo == NULL) { + kmsg->hdr.status = KCOM_E_PARAM; + return sizeof(kcom_msg_hdr_t); + } + + spin_lock_irqsave(&sinfo->lock, flags); + + found = 0; + list_for_each(list, &sinfo->rxpf_list) { + filter = (bkn_filter_t *)list; + if (kmsg->hdr.id == filter->kf.id) { + found = 1; + break; + } + } + + if (!found) { + spin_unlock_irqrestore(&sinfo->lock, flags); + kmsg->hdr.status = KCOM_E_NOT_FOUND; + return sizeof(kcom_msg_hdr_t); + } + + memcpy(&kmsg->filter, &filter->kf, sizeof(kmsg->filter)); + + spin_unlock_irqrestore(&sinfo->lock, flags); + + return sizeof(*kmsg); +} + +static int +bkn_knet_dbg_pkt_set(kcom_msg_dbg_pkt_set_t *kmsg, int len) +{ + dbg_pkt_enable = kmsg->enable; + return sizeof(kcom_msg_dbg_pkt_set_t); +} + +static int +bkn_knet_dbg_pkt_get(kcom_msg_dbg_pkt_get_t *kmsg, int len) +{ + kmsg->value = dbg_pkt_enable; + return sizeof(kcom_msg_dbg_pkt_get_t); +} + +static int +bkn_handle_cmd_req(kcom_msg_t *kmsg, int len) +{ + /* Silently drop events and unrecognized message types */ + if (kmsg->hdr.type != KCOM_MSG_TYPE_CMD) { + if (kmsg->hdr.opcode == KCOM_M_STRING) { + DBG_VERB(("Debug string: '%s'\n", kmsg->string.val)); + return 0; + } + DBG_WARN(("Unsupported message (type=%d, opcode=%d)\n", + kmsg->hdr.type, kmsg->hdr.opcode)); + return 0; + } + + switch (kmsg->hdr.opcode) { + case KCOM_M_DMA_INFO: + DBG_CMD(("KCOM_M_DMA_INFO\n")); + /* Packet buffer */ + len = bkn_knet_dma_info(&kmsg->dma_info, len); + break; + case KCOM_M_VERSION: + DBG_CMD(("KCOM_M_VERSION\n")); + /* Return procotol version */ + len = bkn_knet_version(&kmsg->version, len); + break; + case KCOM_M_HW_RESET: + DBG_CMD(("KCOM_M_HW_RESET\n")); + /* Shut down DMA and release buffers */ + len = bkn_knet_hw_reset(&kmsg->hw_reset, len); + break; + case KCOM_M_HW_INIT: + DBG_CMD(("KCOM_M_HW_INIT\n")); + /* Initialize DMA */ + len = bkn_knet_hw_init(&kmsg->hw_init, len); + break; + case KCOM_M_DETACH: + DBG_CMD(("KCOM_M_DETACH\n")); + /* Detach kernel module */ + len = bkn_knet_detach(&kmsg->detach, len); + break; + case KCOM_M_NETIF_CREATE: + DBG_CMD(("KCOM_M_NETIF_CREATE\n")); + /* Create network interface */ + len = bkn_knet_netif_create(&kmsg->netif_create, len); + break; + case KCOM_M_NETIF_DESTROY: + DBG_CMD(("KCOM_M_NETIF_DESTROY\n")); + /* Destroy network interface */ + len = bkn_knet_netif_destroy(&kmsg->netif_destroy, len); + break; + case KCOM_M_NETIF_LIST: + DBG_CMD(("KCOM_M_NETIF_LIST\n")); + /* Return list of IDs of installed network interfaces */ + len = bkn_knet_netif_list(&kmsg->netif_list, len); + break; + case KCOM_M_NETIF_GET: + DBG_CMD(("KCOM_M_NETIF_GET\n")); + /* Return network interface info */ + len = bkn_knet_netif_get(&kmsg->netif_get, len); + break; + case KCOM_M_FILTER_CREATE: + DBG_CMD(("KCOM_M_FILTER_CREATE\n")); + /* Create packet filter */ + len = bkn_knet_filter_create(&kmsg->filter_create, len); + break; + case KCOM_M_FILTER_DESTROY: + DBG_CMD(("KCOM_M_FILTER_DESTROY\n")); + /* Destroy packet filter */ + len = bkn_knet_filter_destroy(&kmsg->filter_destroy, len); + break; + case KCOM_M_FILTER_LIST: + DBG_CMD(("KCOM_M_FILTER_LIST\n")); + /* Return list of IDs of installed packet filters */ + len = bkn_knet_filter_list(&kmsg->filter_list, len); + break; + case KCOM_M_FILTER_GET: + DBG_CMD(("KCOM_M_FILTER_GET\n")); + /* Return packet filter info */ + len = bkn_knet_filter_get(&kmsg->filter_get, len); + break; + case KCOM_M_DBGPKT_SET: + DBG_CMD(("KCOM_M_DBGPKT_SET\n")); + /* Set debugging packet function */ + len = bkn_knet_dbg_pkt_set(&kmsg->dbg_pkt_set, len); + break; + case KCOM_M_DBGPKT_GET: + DBG_CMD(("KCOM_M_DBGPKT_GET\n")); + /* Get debugging packet function info */ + len = bkn_knet_dbg_pkt_get(&kmsg->dbg_pkt_get, len); + break; + default: + DBG_WARN(("Unsupported command (type=%d, opcode=%d)\n", + kmsg->hdr.type, kmsg->hdr.opcode)); + kmsg->hdr.opcode = 0; + len = sizeof(kcom_msg_hdr_t); + break; + } + return len; +} + +static int +bkn_cmd_thread(void *context) +{ + bkn_thread_ctrl_t *tc = (bkn_thread_ctrl_t *)context; + kcom_msg_t kmsg; + unsigned int len, rlen; + + bkn_thread_boot(tc); + + DBG_VERB(("Command thread starting\n")); + tc->state = 1; + while (!bkn_thread_should_stop(tc)) { + len = sizeof(kmsg); + tc->state = 2; + if (PROXY_RECV(KCOM_CHAN_KNET, &kmsg, &len) >= 0) { + DBG_VERB(("Received %d bytes from KCOM_CHAN_CMD\n", len)); + tc->state = 3; + rlen = bkn_handle_cmd_req(&kmsg, len); + tc->state = 4; + if (rlen > 0) { + PROXY_SEND(KCOM_CHAN_KNET, &kmsg, rlen); + } + } else { + /* Thread interrupted */ + bkn_sleep(1); + } + } + DBG_VERB(("Command thread done\n")); + + bkn_thread_exit(tc); + return 0; +} + +static int +bkn_get_next_dma_event(kcom_msg_dma_info_t *kmsg) +{ + static int last_dev_no = 0; + bkn_switch_info_t *sinfo; + unsigned long flags; + int dev_no, dev_evt; + bkn_evt_resource_t *evt; + + dev_evt = kmsg->hdr.unit; + sinfo = bkn_sinfo_from_unit(dev_evt); + if (sinfo == NULL) { + /* The device is not probed or initialized yet.*/ + return 0; + } + if (sinfo->evt_idx == -1) { + /* Event queue is not ready yet */ + return 0; + } + + DBG_INST(("%s dev %d evt_idx %d\n",__FUNCTION__, dev_evt, sinfo->evt_idx)); + evt = &_bkn_evt[sinfo->evt_idx]; + dev_no = last_dev_no = dev_evt; + while (1) { + dev_no++; + sinfo = bkn_sinfo_from_unit(dev_no); + if (sinfo == NULL) { + dev_no = 0; + sinfo = bkn_sinfo_from_unit(dev_no); + } + + if ((sinfo->inst_id != 0) && ((sinfo->inst_id & (1 << dev_evt)) == 0)){ + DBG_INST((" %s skip dev(%d)\n",__FUNCTION__,dev_evt)); + continue; + } + + if (sinfo && sinfo->dma_events) { + DBG_EVT(("Next DMA events (0x%08x)\n", sinfo->dma_events)); + kmsg->hdr.unit = sinfo->dev_no; + + spin_lock_irqsave(&sinfo->lock, flags); + kmsg->dma_info.flags = sinfo->dma_events; + sinfo->dma_events = 0; + spin_unlock_irqrestore(&sinfo->lock, flags); + + last_dev_no = dev_no; + break; + } + + if (dev_no == last_dev_no) { + DBG_INST(("wait queue index %d\n",sinfo->evt_idx)); + wait_event_interruptible(evt->evt_wq, + evt->evt_wq_get != evt->evt_wq_put); + DBG_VERB(("Event thread wakeup\n")); + + /* Thread interrupted */ + if (signal_pending(current)) { + return 0; + } + + evt->evt_wq_get = evt->evt_wq_put; + } + } + return sizeof(*kmsg); +} + +static int +bkn_evt_thread(void *context) +{ + bkn_thread_ctrl_t *tc = (bkn_thread_ctrl_t *)context; + kcom_msg_dma_info_t kmsg; + int len; + + bkn_thread_boot(tc); + + memset(&kmsg, 0, sizeof(kmsg)); + kmsg.hdr.type = KCOM_MSG_TYPE_EVT; + kmsg.hdr.opcode = KCOM_M_DMA_INFO; + + DBG_VERB(("Event thread starting\n")); + tc->state = 1; + while (!bkn_thread_should_stop(tc)) { + tc->state = 2; + len = bkn_get_next_dma_event(&kmsg); + tc->state = 3; + if (len) { + PROXY_SEND(KCOM_CHAN_KNET, &kmsg, len); + } else { + /* Thread interrupted */ + bkn_sleep(1); + } + } + DBG_VERB(("Event thread done\n")); + + bkn_thread_exit(tc); + return 0; +} + +static int +_cleanup(void) +{ + struct list_head *list; + struct net_device *dev; + bkn_filter_t *filter; + bkn_priv_t *priv; + bkn_switch_info_t *sinfo; + unsigned long flags; + + /* Inidicate that we are shutting down */ + module_initialized = 0; + + /* Shut down event thread */ + bkn_thread_stop(&bkn_evt_ctrl); + + /* Shut down command thread */ + bkn_thread_stop(&bkn_cmd_ctrl); + + /* Remove KCOM channel */ + PROXY_SERVICE_DESTROY(KCOM_CHAN_KNET); + + bkn_proc_cleanup(); + remove_proc_entry("bcm/knet", NULL); + remove_proc_entry("bcm", NULL); + + list_for_each(list, &_sinfo_list) { + sinfo = (bkn_switch_info_t *)list; + + del_timer_sync(&sinfo->timer); + del_timer_sync(&sinfo->rxtick); + + spin_lock_irqsave(&sinfo->lock, flags); + bkn_dma_abort(sinfo); + dev_irq_mask_set(sinfo, 0); + spin_unlock_irqrestore(&sinfo->lock, flags); + + DBG_IRQ(("Unregister ISR.\n")); + kernel_bde->interrupt_disconnect(sinfo->dev_no | LKBDE_ISR2_DEV); + + if (use_napi) { + while (sinfo->napi_poll_mode) { + bkn_sleep(1); + } + } + + spin_lock_irqsave(&sinfo->lock, flags); + bkn_clean_dcbs(sinfo); + spin_unlock_irqrestore(&sinfo->lock, flags); + } + + /* Destroy all switch devices */ + while (!list_empty(&_sinfo_list)) { + sinfo = list_entry(_sinfo_list.next, bkn_switch_info_t, list); + + /* Destroy all associated Rx packet filters */ + while (!list_empty(&sinfo->rxpf_list)) { + filter = list_entry(sinfo->rxpf_list.next, bkn_filter_t, list); + list_del(&filter->list); + DBG_VERB(("Removing filter ID %d.\n", filter->kf.id)); + kfree(filter); + } + + /* Destroy all associated virtual net devices */ + while (!list_empty(&sinfo->ndev_list)) { + priv = list_entry(sinfo->ndev_list.next, bkn_priv_t, list); + list_del(&priv->list); + dev = priv->dev; + DBG_VERB(("Removing virtual Ethernet device %s.\n", dev->name)); + unregister_netdev(dev); + free_netdev(dev); + } + if (sinfo->ndevs != NULL) { + kfree(sinfo->ndevs); + } + + /* Destroy base net device */ + if (sinfo->dev) { + DBG_VERB(("Removing Ethernet device %s.\n", sinfo->dev->name)); + unregister_netdev(sinfo->dev); + free_netdev(sinfo->dev); + } + + DBG_VERB(("Removing switch device.\n")); + bkn_destroy_sinfo(sinfo); + } + + return 0; +} + +static int +bkn_knet_dev_reinit(int d) +{ + bkn_switch_info_t *sinfo; + uint32 dev_state; + uint32_t dev_type; + unsigned long flags; + + if (lkbde_dev_state_get(d, &dev_state) < 0) { + return -1; + } + DBG_VERB(("%s dev %d dev_state %d\n",__FUNCTION__, d, dev_state)); + if (dev_state == BDE_DEV_STATE_CHANGED) { + sinfo = bkn_sinfo_from_unit(d); + spin_lock_irqsave(&sinfo->lock, flags); + sinfo->base_addr = lkbde_get_dev_virt(d); + sinfo->dma_dev = lkbde_get_dma_dev(d); + sinfo->pdev = lkbde_get_hw_dev(d); + + dev_type = kernel_bde->get_dev_type(d); + /* Ensure 32-bit PCI DMA is mapped properly on 64-bit platforms */ + if (dev_type & BDE_PCI_DEV_TYPE) { + if (pci_set_dma_mask(sinfo->pdev, 0xffffffff)) { + gprintk("No suitable DMA available for SKBs\n"); + _cleanup(); + return -1; + } + } + dev_irq_mask_set(sinfo, 0); + spin_unlock_irqrestore(&sinfo->lock, flags); + + gprintk("Unregister ISR.\n"); + kernel_bde->interrupt_disconnect(sinfo->dev_no | LKBDE_ISR2_DEV); + + /* Register interrupt handler */ + kernel_bde->interrupt_connect(sinfo->dev_no | LKBDE_ISR2_DEV, + bkn_isr, sinfo); + + dev_state = 0; + lkbde_dev_state_set(d, dev_state); + } + return 0; +} + +static int +bkn_knet_dev_init(int d) +{ + uint32_t dev_type; + struct net_device *dev; + bkn_switch_info_t *sinfo; + bkn_priv_t *priv; + char *bdev_name; + const ibde_dev_t *bde_dev; + + DBG_VERB(("%s dev %d\n",__FUNCTION__, d)); + /* Base network device name */ + bdev_name = "bcm%d"; + if (base_dev_name) { + if (strlen(base_dev_name) < IFNAMSIZ) { + bdev_name = base_dev_name; + } else { + DBG_WARN(("Base device name too long\n")); + } + } + + dev_type = kernel_bde->get_dev_type(d); + DBG_VERB(("Found device type 0x%x\n", dev_type)); + if ((dev_type & BDE_SWITCH_DEV_TYPE) == 0) { + DBG_WARN(("Not switch device - skipping\n")); + return 0; + } + switch (dev_type & BDE_DEV_BUS_TYPE_MASK) { + case BDE_PCI_DEV_TYPE: + case BDE_ICS_DEV_TYPE: + case BDE_AXI_DEV_TYPE: + break; + default: + DBG_WARN(("Not PCI/ICS/AXI device - skipping\n")); + return 0; + } + + if ((sinfo = bkn_create_sinfo(d)) == NULL) { + _cleanup(); + return -ENOMEM; + } + /* Ensure 32-bit PCI DMA is mapped properly on 64-bit platforms */ + if (dev_type & BDE_PCI_DEV_TYPE) { + if (pci_set_dma_mask(sinfo->pdev, 0xffffffff)) { + gprintk("No suitable DMA available for SKBs\n"); + _cleanup(); + return -EIO; + } + } + /* Initialize the cpu_no.*/ + if (dev_type & BDE_AXI_DEV_TYPE) { + /* AXI device type implies the activated iProc iHost */ + sinfo->cpu_no = 1; + } + /* Initialize default RCPU signature */ + if ((bde_dev = kernel_bde->get_dev(d)) != NULL) { + sinfo->rcpu_sig = bde_dev->device & ~0xf; + } + /* Check for override */ + if (rcpu_signature) { + sinfo->rcpu_sig = rcpu_signature; + } + + /* Ensure all interrupts are disabled, e.g. if warmbooting */ + dev_irq_mask_set(sinfo, 0); + + /* Register interrupt handler */ + kernel_bde->interrupt_connect(sinfo->dev_no | LKBDE_ISR2_DEV, + bkn_isr, sinfo); + + /* Create base virtual net device */ + bkn_dev_mac[5]++; + if ((dev = bkn_init_ndev(bkn_dev_mac, bdev_name)) == NULL) { + _cleanup(); + return -ENOMEM; + } else { + sinfo->dev = dev; + priv = netdev_priv(dev); + priv->dev = dev; + priv->sinfo = sinfo; + priv->vlan = 1; + priv->port = -1; + memset(priv->itmh, 0, sizeof(priv->itmh)); + priv->id = -1; + } + + if (use_napi) { + netif_napi_add(dev, &sinfo->napi, bkn_poll, napi_weight); + } + return 0; +} + +static int +_init(void) +{ + int idx; + int num_dev; + int rv; + bkn_evt_resource_t *evt; + + /* Connect to the kernel bde */ + if ((linux_bde_create(NULL, &kernel_bde) < 0) || kernel_bde == NULL) { + return -ENODEV; + } + + /* Randomize Lower 3 bytes of the MAC address (TESTING ONLY) */ + get_random_bytes(&bkn_dev_mac[3], 3); + + /* Check for user-supplied MAC address (recommended) */ + if (mac_addr != NULL && strlen(mac_addr) == 17) { + for (idx = 0; idx < 6; idx++) { + bkn_dev_mac[idx] = simple_strtoul(&mac_addr[idx*3], NULL, 16); + } + /* Do not allow multicast address */ + bkn_dev_mac[0] &= ~0x01; + } + + /* Optional RCPU MAC addresses */ + if (rcpu_dmac != NULL && strlen(rcpu_dmac) == 17) { + for (idx = 0; idx < 6; idx++) { + bkn_rcpu_dmac[idx] = simple_strtoul(&rcpu_dmac[idx*3], NULL, 16); + } + } + if (rcpu_smac != NULL && strlen(rcpu_smac) == 17) { + for (idx = 0; idx < 6; idx++) { + bkn_rcpu_smac[idx] = simple_strtoul(&rcpu_smac[idx*3], NULL, 16); + } + } + + /* NAPI implies that base device must be up before we can pass traffic */ + if (use_napi) { + basedev_suspend = 1; + } + + num_dev = kernel_bde->num_devices(BDE_ALL_DEVICES); + for (idx = 0; idx < num_dev; idx++) { + rv = bkn_knet_dev_init(idx); + if (rv) { + return rv; + } + } + + /* Initialize proc files */ + proc_mkdir("bcm", NULL); + bkn_proc_root = proc_mkdir("bcm/knet", NULL); + + bkn_proc_init(); + + /* Initialize event queue */ + for (idx = 0; idx < LINUX_BDE_MAX_DEVICES; idx++) { + memset(&_bkn_evt[idx], 0, sizeof(bkn_evt_resource_t)); + } + evt = &_bkn_evt[0]; + init_waitqueue_head(&evt->evt_wq); + + if (use_proxy) { + PROXY_SERVICE_CREATE(KCOM_CHAN_KNET, 1, 0); + + DBG_VERB(("Starting command thread\n")); + bkn_thread_start(&bkn_cmd_ctrl, "bkncmd", bkn_cmd_thread); + + DBG_VERB(("Starting event thread\n")); + bkn_thread_start(&bkn_evt_ctrl, "bknevt", bkn_evt_thread); + } + + module_initialized = 1; + + return 0; +} + +static int +_ioctl(unsigned int cmd, unsigned long arg) +{ + bkn_ioctl_t io; + kcom_msg_t kmsg; + + if (!module_initialized) { + return -EFAULT; + } + + if (copy_from_user(&io, (void*)arg, sizeof(io))) { + return -EFAULT; + } + + if (io.len > sizeof(kmsg)) { + return -EINVAL; + } + + io.rc = 0; + + switch(cmd) { + case 0: + if (io.len > 0) { + if (copy_from_user(&kmsg, (void *)(unsigned long)io.buf, io.len)) { + return -EFAULT; + } + ioctl_cmd++; + io.len = bkn_handle_cmd_req(&kmsg, io.len); + ioctl_cmd--; + } else { + memset(&kmsg, 0, sizeof(kcom_msg_dma_info_t)); + /* + * Retrive the kmsg.hdr.unit from user space. The dma event queue + * selection is based the instance derived from unit. + */ + if (copy_from_user(&kmsg, (void *)(unsigned long)io.buf, sizeof(kmsg))) { + return -EFAULT; + } + kmsg.hdr.type = KCOM_MSG_TYPE_EVT; + kmsg.hdr.opcode = KCOM_M_DMA_INFO; + ioctl_evt++; + io.len = bkn_get_next_dma_event((kcom_msg_dma_info_t *)&kmsg); + ioctl_evt--; + } + if (io.len > 0) { + if (copy_to_user((void *)(unsigned long)io.buf, &kmsg, io.len)) { + return -EFAULT; + } + } + break; + default: + gprintk("Invalid IOCTL"); + io.rc = -1; + break; + } + + if (copy_to_user((void*)arg, &io, sizeof(io))) { + return -EFAULT; + } + + return 0; +} + +static gmodule_t _gmodule = { + name: MODULE_NAME, + major: MODULE_MAJOR, + init: _init, + cleanup: _cleanup, + pprint: _pprint, + ioctl: _ioctl, + open: NULL, + close: NULL, +}; + +gmodule_t* +gmodule_get(void) +{ + EXPORT_NO_SYMBOLS; + return &_gmodule; +} + +/* + * Call-back interfaces for other Linux kernel drivers. + * + * The Rx call-back allows an external module to modify SKB contents + * before it is handed off to the Linux network stack. + * + * The Tx call-back allows an external module to modify SKB contents + * before it is injected inot the switch. + */ + +int +bkn_rx_skb_cb_register(knet_skb_cb_f rx_cb) +{ + if (knet_rx_cb != NULL) { + return -1; + } + knet_rx_cb = rx_cb; + return 0; +} + +int +bkn_rx_skb_cb_unregister(knet_skb_cb_f rx_cb) +{ + if (rx_cb != NULL && knet_rx_cb != rx_cb) { + return -1; + } + knet_rx_cb = NULL; + return 0; +} + +int +bkn_tx_skb_cb_register(knet_skb_cb_f tx_cb) +{ + if (knet_tx_cb != NULL) { + return -1; + } + knet_tx_cb = tx_cb; + return 0; +} + +int +bkn_tx_skb_cb_unregister(knet_skb_cb_f tx_cb) +{ + if (tx_cb != NULL && knet_tx_cb != tx_cb) { + return -1; + } + knet_tx_cb = NULL; + return 0; +} + +int +bkn_filter_cb_register(knet_filter_cb_f filter_cb) +{ + if (knet_filter_cb != NULL) { + return -1; + } + knet_filter_cb = filter_cb; + return 0; +} + +int +bkn_filter_cb_unregister(knet_filter_cb_f filter_cb) +{ + if (filter_cb != NULL && knet_filter_cb != filter_cb) { + return -1; + } + knet_filter_cb = NULL; + return 0; +} + +LKM_EXPORT_SYM(bkn_rx_skb_cb_register); +LKM_EXPORT_SYM(bkn_rx_skb_cb_unregister); +LKM_EXPORT_SYM(bkn_tx_skb_cb_register); +LKM_EXPORT_SYM(bkn_tx_skb_cb_unregister); +LKM_EXPORT_SYM(bkn_filter_cb_register); +LKM_EXPORT_SYM(bkn_filter_cb_unregister); only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/include/bcm-knet.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/include/bcm-knet.h @@ -0,0 +1,71 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: bcm-knet.h,v 1.4 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ +#ifndef __LINUX_BCM_KNET_H__ +#define __LINUX_BCM_KNET_H__ + +#ifndef __KERNEL__ +#include +#endif + +typedef struct { + int rc; + int len; + int bufsz; + int reserved; + uint64_t buf; +} bkn_ioctl_t; + +#ifdef __KERNEL__ + +/* + * Call-back interfaces for other Linux kernel drivers. + */ +#include + +typedef struct sk_buff * +(*knet_skb_cb_f)(struct sk_buff *skb, int dev_no, void *meta); + +typedef int +(*knet_filter_cb_f)(uint8_t *pkt, int size, int dev_no, void *meta, + int chan, kcom_filter_t *filter); + +extern int +bkn_rx_skb_cb_register(knet_skb_cb_f rx_cb); + +extern int +bkn_rx_skb_cb_unregister(knet_skb_cb_f rx_cb); + +extern int +bkn_tx_skb_cb_register(knet_skb_cb_f tx_cb); + +extern int +bkn_tx_skb_cb_unregister(knet_skb_cb_f tx_cb); + +extern int +bkn_filter_cb_register(knet_filter_cb_f filter_cb); + +extern int +bkn_filter_cb_unregister(knet_filter_cb_f filter_cb); + +#endif + +#endif /* __LINUX_BCM_KNET_H__ */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/include/gmodule.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/include/gmodule.h @@ -0,0 +1,66 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: gmodule.h,v 1.9 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ + +#ifndef __COMMON_LINUX_KRN_GMODULE_H__ +#define __COMMON_LINUX_KRN_GMODULE_H__ + +#include + +typedef struct gmodule_s { + + const char* name; + int major; + int minor; + + int (*init)(void); + int (*cleanup)(void); + + int (*pprint)(void); + + int (*open)(void); + int (*ioctl)(unsigned int cmd, unsigned long arg); + int (*close)(void); + int (*mmap) (struct file *filp, struct vm_area_struct *vma); + +} gmodule_t; + + +/* The framework will ask for your module definition */ +extern gmodule_t* gmodule_get(void); + + +/* Proc Filesystem information */ +extern int pprintf(const char* fmt, ...) + __attribute__ ((format (printf, 1, 2))); +extern int gmodule_vpprintf(char** page, const char* fmt, va_list args) + __attribute__ ((format (printf, 2, 0))); +extern int gmodule_pprintf(char** page, const char* fmt, ...) + __attribute__ ((format (printf, 2, 3))); + +extern int gprintk(const char* fmt, ...) + __attribute__ ((format (printf, 1, 2))); + +extern int gdbg(const char* fmt, ...) + __attribute__ ((format (printf, 1, 2))); +#define GDBG gdbg + +#endif /* __COMMON_LINUX_KRN_GMODULE_H__ */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/include/lkm.h +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/include/lkm.h @@ -0,0 +1,180 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: lkm.h,v 1.22 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ + +#ifndef __COMMON_LINUX_KRN_LKM_H__ +#define __COMMON_LINUX_KRN_LKM_H__ + +#ifndef __KERNEL__ +# define __KERNEL__ +#endif +#ifndef MODULE +# define MODULE +#endif + +#include +#include +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0) +#include +#endif +#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,1,0) +#include +#endif +#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,10,0) +#include +#endif +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,39) +#include +#endif +#include + +/* Helper defines for multi-version kernel support */ +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0) +#define LKM_2_4 +#else +#define LKM_2_6 +#endif + +#include /* printk() */ +#include /* everything... */ +#include /* error codes */ +#include /* size_t */ +#include +#include /* O_ACCMODE */ +#include +#include +#include +#include +#include + +#include +#include +#include + +#ifdef CONFIG_DEVFS_FS +#include +#endif + +#define PROC_INTERFACE_KERN_VER_3_10 (LINUX_VERSION_CODE >= KERNEL_VERSION(3,10,0)) + +/* Compatibility Macros */ + +#ifdef LKM_2_4 + +#include +#include +#define LKM_MOD_PARAM(n,ot,nt,d) MODULE_PARM(n,ot) +#define LKM_MOD_PARAM_ARRAY(n,ot,nt,c,d) MODULE_PARM(n,ot) +#define LKM_EXPORT_SYM(s) +#define _free_netdev kfree + +#else /* LKM_2_6 */ + +#define LKM_MOD_PARAM(n,ot,nt,d) module_param(n,nt,d) +#define LKM_MOD_PARAM_ARRAY(n,ot,nt,c,d) module_param_array(n,nt,c,d) +#define LKM_EXPORT_SYM(s) EXPORT_SYMBOL(s) +#define _free_netdev free_netdev + +#endif /* LKM_2_x */ + +#ifndef list_for_each_safe +#define list_for_each_safe(l,t,i) t = 0; list_for_each((l),(i)) +#endif + +#ifndef reparent_to_init +#define reparent_to_init() +#endif + +#ifndef MODULE_LICENSE +#define MODULE_LICENSE(str) +#endif + +#ifndef EXPORT_NO_SYMBOLS +#define EXPORT_NO_SYMBOLS +#endif + +#ifndef DEFINE_SPINLOCK +#define DEFINE_SPINLOCK(_lock) spinlock_t _lock = SPIN_LOCK_UNLOCKED +#endif + +#ifndef __SPIN_LOCK_UNLOCKED +#define __SPIN_LOCK_UNLOCKED(_lock) SPIN_LOCK_UNLOCKED +#endif + +#ifndef lock_kernel +#ifdef preempt_disable +#define lock_kernel() preempt_disable() +#else +#define lock_kernel() +#endif +#endif + +#ifndef unlock_kernel +#ifdef preempt_enable +#define unlock_kernel() preempt_enable() +#else +#define unlock_kernel() +#endif +#endif + +#ifndef init_MUTEX_LOCKED +#define init_MUTEX_LOCKED(_sem) sema_init(_sem, 0) +#endif + +#ifdef CONFIG_BCM98245 +#define CONFIG_BMW +#endif + +#if PROC_INTERFACE_KERN_VER_3_10 +#define PROC_CREATE(_entry, _name, _acc, _path, _fops) \ + do { \ + _entry = proc_create(_name, _acc, _path, _fops); \ + } while (0) + +#define PROC_CREATE_DATA(_entry, _name, _acc, _path, _fops, _data) \ + do { \ + _entry = proc_create_data(_name, _acc, _path, _fops, _data); \ + } while (0) + +#define PROC_PDE_DATA(_node) PDE_DATA(_node) + +#else +#define PROC_CREATE(_entry, _name, _acc, _path, _fops) \ + do { \ + _entry = create_proc_entry(_name, _acc, _path); \ + if (_entry) { \ + _entry->proc_fops = _fops; \ + } \ + } while (0) + +#define PROC_CREATE_DATA(_entry, _name, _acc, _path, _fops, _data) \ + do { \ + _entry = create_proc_entry(_name, _acc, _path); \ + if (_entry) { \ + _entry->proc_fops = _fops; \ + _entry->data=_data; \ + } \ + } while (0) + +#define PROC_PDE_DATA(_node) PROC_I(_node)->pde->data +#endif + +#endif /* __COMMON_LINUX_KRN_LKM_H__ */ only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/shared/Makefile +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/shared/Makefile @@ -0,0 +1,30 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.2 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# +LOCALDIR = systems/linux/kernel/modules/shared + +include ${SDK}/make/Make.config + +lib = libkern + +include ${SDK}/make/Make.kernlib + +include ${SDK}/make/Make.depend only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/shared/gmodule.c +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/shared/gmodule.c @@ -0,0 +1,428 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: gmodule.c,v 1.20 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + * + * Generic Linux Module Framework + * + * Hooks up your driver to the kernel + */ + +#include +#include +#include +#include + +/* Module Vector Table */ +static gmodule_t* _gmodule = NULL; + + +/* Allow DEVFS Support on 2.4 Kernels */ +#if defined(LKM_2_4) && defined(CONFIG_DEVFS_FS) +#define GMODULE_CONFIG_DEVFS_FS +#endif + + +#ifdef GMODULE_CONFIG_DEVFS_FS +devfs_handle_t devfs_handle = NULL; +#endif + +/* FIXME: support dynamic debugging */ + +static int _dbg_enable = 0; + +static int +gvprintk(const char* fmt, va_list args) + __attribute__ ((format (printf, 1, 0))); + +static int +gvprintk(const char* fmt, va_list args) +{ + static char _buf[256]; + + strcpy(_buf, ""); + sprintf(_buf, "%s (%d): ", _gmodule->name, current->pid); + vsprintf(_buf+strlen(_buf), fmt, args); + printk("%s",_buf); + + return 0; +} + +int +gprintk(const char* fmt, ...) +{ + int rv; + + va_list args; + va_start(args, fmt); + rv = gvprintk(fmt, args); + va_end(args); + return rv; +} + +int +gdbg(const char* fmt, ...) +{ + int rv = 0; + + va_list args; + va_start(args, fmt); + if(_dbg_enable) { + rv = gvprintk(fmt, args); + } + va_end(args); + return rv; +} + + +/* + * Proc FS Utilities + */ +#if PROC_INTERFACE_KERN_VER_3_10 +static struct seq_file* _proc_buf = NULL; + +int +pprintf(const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + seq_vprintf(_proc_buf, fmt, args); + va_end(args); + return 0; +} + +static int _gmodule_proc_show(struct seq_file *m, void *v){ + _proc_buf = m; + _gmodule->pprint(); + return 0; +} + +static int +_gmodule_proc_open(struct inode * inode, struct file * file) { + if(_gmodule->open) { + _gmodule->open(); + } + + return single_open(file, _gmodule_proc_show, NULL); +} + +static ssize_t +_gmodule_proc_write(struct file *file, const char *buffer, + size_t count, loff_t *loff) +{ + /* Workaround to toggle debugging */ + if(count > 2) { + if(buffer[0] == 'd') { + _dbg_enable = buffer[1] - '0'; + GDBG("Debugging Enabled"); + } + } + return count; +} + +static int _gmodule_proc_release(struct inode * inode, struct file * file) { + if(_gmodule->close) { + _gmodule->close(); + } + + return single_release(inode, file); +} + +struct file_operations _gmodule_proc_fops = { + owner: THIS_MODULE, + open: _gmodule_proc_open, + read: seq_read, + llseek: seq_lseek, + write: _gmodule_proc_write, + release: _gmodule_proc_release, +}; +#else +int +gmodule_vpprintf(char** page_ptr, const char* fmt, va_list args) +{ + *page_ptr += vsprintf(*page_ptr, fmt, args); + return 0; +} + +int +gmodule_pprintf(char** page_ptr, const char* fmt, ...) +{ + int rv; + + va_list args; + va_start(args, fmt); + rv = gmodule_vpprintf(page_ptr, fmt, args); + va_end(args); + return rv; +} + +static char* _proc_buf = NULL; + +int +pprintf(const char* fmt, ...) +{ + int rv; + + va_list args; + va_start(args, fmt); + rv = gmodule_vpprintf(&_proc_buf, fmt, args); + va_end(args); + return rv; +} + +#define PSTART(b) _proc_buf = b +#define PPRINT proc_print +#define PEND(b) (_proc_buf-b) + +static int +_gmodule_pprint(char* buf) +{ + PSTART(buf); + _gmodule->pprint(); + return PEND(buf); +} + +static int +_gmodule_read_proc(char *page, char **start, off_t off, + int count, int *eof, void *data) +{ + *eof = 1; + return _gmodule_pprint(page); +} + +static int +_gmodule_write_proc(struct file *file, const char *buffer, + unsigned long count, void *data) +{ + /* Workaround to toggle debugging */ + if(count > 2) { + if(buffer[0] == 'd') { + _dbg_enable = buffer[1] - '0'; + GDBG("Debugging Enabled"); + } + } + return count; +} +#endif + +static int +_gmodule_create_proc(void) +{ + struct proc_dir_entry* ent; +#if PROC_INTERFACE_KERN_VER_3_10 + if((ent = proc_create(_gmodule->name, + S_IRUGO | S_IWUGO, + NULL, + &_gmodule_proc_fops)) != NULL) { + return 0; + } +#else + if((ent = create_proc_entry(_gmodule->name, S_IRUGO | S_IWUGO, NULL)) != NULL) { + ent->read_proc = _gmodule_read_proc; + ent->write_proc = _gmodule_write_proc; + return 0; + } +#endif + return -1; +} + +static void +_gmodule_remove_proc(void) +{ + remove_proc_entry(_gmodule->name, NULL); +} + +static int +_gmodule_open(struct inode *inode, struct file *filp) +{ + if(_gmodule->open) { + _gmodule->open(); + } + return 0; +} + +static int +_gmodule_release(struct inode *inode, struct file *filp) +{ + if(_gmodule->close) { + _gmodule->close(); + } + return 0; +} + +#ifdef HAVE_UNLOCKED_IOCTL +static long +_gmodule_unlocked_ioctl(struct file *filp, + unsigned int cmd, unsigned long arg) +{ + if(_gmodule->ioctl) { + return _gmodule->ioctl(cmd, arg); + } else { + return -1; + } +} +#else +static int +_gmodule_ioctl(struct inode *inode, struct file *filp, + unsigned int cmd, unsigned long arg) +{ + if(_gmodule->ioctl) { + return _gmodule->ioctl(cmd, arg); + } else { + return -1; + } +} +#endif + +#ifdef HAVE_COMPAT_IOCTL +static long +_gmodule_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg) +{ + if(_gmodule->ioctl) { + return _gmodule->ioctl(cmd, arg); + } else { + return -1; + } +} +#endif + + +static int +_gmodule_mmap(struct file *filp, struct vm_area_struct *vma) +{ + if (_gmodule->mmap) { + return _gmodule->mmap(filp, vma); + } +#ifdef BCM_PLX9656_LOCAL_BUS + vma->vm_flags |= VM_RESERVED | VM_IO; + pgprot_val(vma->vm_page_prot) |= _PAGE_NO_CACHE | _PAGE_GUARDED; + + if (io_remap_pfn_range( vma, + vma->vm_start, + vma->vm_pgoff, + vma->vm_end - vma->vm_start, + vma->vm_page_prot)) { + return (-EAGAIN); + } + return (0); +#else/* BCM_PLX9656_LOCAL_BUS */ + return -EPERM; +#endif/* BCM_PLX9656_LOCAL_BUS */ +} + +/* FILE OPERATIONS */ + +struct file_operations _gmodule_fops = { +#ifdef HAVE_UNLOCKED_IOCTL + unlocked_ioctl: _gmodule_unlocked_ioctl, +#else + ioctl: _gmodule_ioctl, +#endif + open: _gmodule_open, + release: _gmodule_release, + mmap: _gmodule_mmap, +#ifdef HAVE_COMPAT_IOCTL + compat_ioctl: _gmodule_compat_ioctl, +#endif +}; + + +void __exit +cleanup_module(void) +{ + if(!_gmodule) return; + + /* Specific Cleanup */ + if(_gmodule->cleanup) { + _gmodule->cleanup(); + } + + /* Remove any proc entries */ + if(_gmodule->pprint) { + _gmodule_remove_proc(); + } + + /* Finally, remove ourselves from the universe */ +#ifdef GMODULE_CONFIG_DEVFS_FS + if(devfs_handle) devfs_unregister(devfs_handle); +#else + unregister_chrdev(_gmodule->major, _gmodule->name); +#endif +} + +int __init +init_module(void) +{ + int rc; + + /* Get our definition */ + _gmodule = gmodule_get(); + if(!_gmodule) return -ENODEV; + + + /* Register ourselves */ +#ifdef GMODULE_CONFIG_DEVFS_FS + devfs_handle = devfs_register(NULL, + _gmodule->name, + DEVFS_FL_NONE, + _gmodule->major, + _gmodule->minor, + S_IFCHR | S_IRUGO | S_IWUGO, + &_gmodule_fops, + NULL); + if(!devfs_handle) { + printk(KERN_WARNING "%s: can't register device with devfs", + _gmodule->name); + } + rc = 0; +#else + rc = register_chrdev(_gmodule->major, + _gmodule->name, + &_gmodule_fops); + if (rc < 0) { + printk(KERN_WARNING "%s: can't get major %d", + _gmodule->name, _gmodule->major); + return rc; + } + + if(_gmodule->major == 0) { + _gmodule->major = rc; + } +#endif + + /* Specific module Initialization */ + if(_gmodule->init) { + int rc; + if((rc = _gmodule->init()) < 0) { +#ifdef GMODULE_CONFIG_DEVFS_FS + if(devfs_handle) devfs_unregister(devfs_handle); +#else + unregister_chrdev(_gmodule->major, _gmodule->name); +#endif + return rc; + } + } + + /* Add a /proc entry, if valid */ + if(_gmodule->pprint) { + _gmodule_create_proc(); + } + + return 0; /* succeed */ +} only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/shared/ksal.c +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/kernel/modules/shared/ksal.c @@ -0,0 +1,250 @@ +/* + * Unless you and Broadcom execute a separate written software license + * agreement governing use of this software, this software is licensed to + * you under the terms of the GNU General Public License version 2 (the + * "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, + * with the following added to such license: + * + * As a special exception, the copyright holders of this software give + * you permission to link this software with independent modules, and to + * copy and distribute the resulting executable under terms of your + * choice, provided that you also meet, for each linked independent + * module, the terms and conditions of the license of that module. An + * independent module is a module which is not derived from this + * software. The special exception does not apply to any modifications + * of the software. + */ +/* + * $Id: ksal.c,v 1.1 Broadcom SDK $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + */ + +#include +#include + +#include "lkm.h" +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,26) +#include +#else +#include +#endif +#include +#include +#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0) +#include +#endif +#include + +#ifdef MAX_USER_RT_PRIO +/* Assume 2.6 scheduler */ +#define SAL_YIELD(task) \ + yield() +#else +/* Assume 2.4 scheduler */ +#define SAL_YIELD(task) \ +do { \ + task->policy |= SCHED_YIELD; \ + schedule(); \ +} while (0) +#endif + +#define SECOND_USEC (1000000) +#define USECS_PER_JIFFY (SECOND_USEC / HZ) +#define USEC_TO_JIFFIES(usec) ((usec + (USECS_PER_JIFFY - 1)) / USECS_PER_JIFFY) + +#define sal_alloc(size, desc) kmalloc(size, GFP_KERNEL) +#define sal_free(ptr) kfree(ptr) + +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,12) +#define WQ_SLEEP(a, b) wait_event_interruptible_timeout(a, NULL, b) +#else +#define WQ_SLEEP(a, b) interruptible_sleep_on_timeout(&(a), b) +#endif +/* + * sem_ctrl_t + * + * The semaphore control type uses the binary property to implement + * timed semaphores with improved performance using wait queues. + */ + +typedef struct sem_ctrl_s { + struct semaphore sem; + int binary; + int cnt; + wait_queue_head_t wq; +} sem_ctrl_t; + +sal_sem_t +sal_sem_create(char *desc, int binary, int initial_count) +{ + sem_ctrl_t *s; + + if ((s = sal_alloc(sizeof(*s), desc)) != 0) { + sema_init(&s->sem, initial_count); + s->binary = binary; + if (s->binary) { + init_waitqueue_head(&s->wq); + } + } + + return (sal_sem_t) s; +} + +void +sal_sem_destroy(sal_sem_t b) +{ + sem_ctrl_t *s = (sem_ctrl_t *) b; + + if (s == NULL) { + return; + } + + /* + * the linux kernel does not have a sema_destroy(s) + */ + sal_free(s); +} + +int +sal_sem_take(sal_sem_t b, int usec) +{ + sem_ctrl_t *s = (sem_ctrl_t *) b; + int err; + + if (usec == sal_sem_FOREVER && !in_interrupt()) { + err = down_interruptible(&s->sem); + } else { + int time_wait = 1; + int cnt = s->cnt; + + for (;;) { + if (down_trylock(&s->sem) == 0) { + err = 0; + break; + } + + if (s->binary) { + + /* Wait for event or timeout */ + + if (time_wait > 1) { + err = 1; + break; + } + err = wait_event_interruptible_timeout(s->wq, cnt != s->cnt, + USEC_TO_JIFFIES(usec)); + if (err < 0) { + break; + } + time_wait++; + + } else { + + /* Retry algorithm with exponential backoff */ + + if (time_wait > usec) { + time_wait = usec; + } + + sal_usleep(time_wait); + + usec -= time_wait; + + if (usec == 0) { + err = ETIMEDOUT; + break; + } + + if ((time_wait *= 2) > 100000) { + time_wait = 100000; + } + } + } + } + return err ? -1 : 0; +} + +int +sal_sem_give(sal_sem_t b) +{ + sem_ctrl_t *s = (sem_ctrl_t *) b; + + up(&s->sem); + if (s->binary) { + s->cnt++; + wake_up_interruptible(&s->wq); + } + return 0; +} + +uint32 +sal_time_usecs(void) +{ + struct timeval ltv; + do_gettimeofday(<v); + return (ltv.tv_sec * SECOND_USEC + ltv.tv_usec); +} + +void +sal_usleep(uint32 usec) +{ + uint32 start_usec; + wait_queue_head_t queue; + + if (usec <= SECOND_USEC / HZ) { + start_usec = sal_time_usecs(); + do { + SAL_YIELD(current); + } while ((sal_time_usecs() - start_usec) < usec); + } else { + init_waitqueue_head(&queue); + WQ_SLEEP(queue, USEC_TO_JIFFIES(usec)); + } +} + +void +sal_udelay(uint32 usec) +{ + static volatile int _sal_udelay_counter; + static int loops = 0; + int ix, iy; + + if (loops == 0 || usec == 0) { /* Need calibration? */ + int max_loops; + int start = 0, stop = 0; + int mpt = USECS_PER_JIFFY; /* usec/tick */ + + for (loops = 1; loops < 0x1000 && stop == start; loops <<= 1) { + /* Wait for clock turn over */ + for (stop = start = jiffies; start == stop; start = jiffies) { + /* Empty */ + } + sal_udelay(mpt); /* Single recursion */ + stop = jiffies; + } + + max_loops = loops / 2; /* Loop above overshoots */ + + start = stop = 0; + + if (loops < 4) { + loops = 4; + } + + for (loops /= 4; loops < max_loops && stop == start; loops++) { + /* Wait for clock turn over */ + for (stop = start = jiffies; start == stop; start = jiffies) { + /* Empty */ + } + sal_udelay(mpt); /* Single recursion */ + stop = jiffies; + } + } + + for (iy = 0; iy < usec; iy++) { + for (ix = 0; ix < loops; ix++) { + _sal_udelay_counter++; /* Prevent optimizations */ + } + } +} only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/common/Makefile +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/common/Makefile @@ -0,0 +1,213 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.4 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ +# + +SDK :=$(shell if [ -n "$$SDK" ] ; then\ + echo $$SDK;\ + else\ + cd $(dir $(lastword $(MAKEFILE_LIST))); while /usr/bin/test ! -e RELEASE ; do \ + dir=`cd ../;pwd`; \ + if [ "$$dir" = "/" ] ; then \ + echo Cannot find SDK in $(lastword $(MAKEFILE_LIST)) 1>&2; \ + exit 1; \ + fi ; \ + cd $$dir; \ + done ; \ + pwd; \ + fi) + +ifeq ($(SDK),) +$(error Please run this in a tree) +endif + +export SDK + +override-target=linux-$(platform) + +ifeq ($(LINUX_MAKE_SHARED_LIB),1) +libext = so.$(SHAREDLIBVER) +else +libext = a +endif + +ifeq (,$(platform)) +$(error Internal error: platform variable is not set) +endif + +include $(SDK)/make/Make.config +LOCALDIR=systems/linux/user/common +include $(SDK)/make/Make.depend +kernel-override=linux-$(platform) +ifdef BLDCONFIG +KERN_BLDROOT=${SDK}/${SDKBUILD}/${BLDCONFIG}/$(kernel-override)$(bldroot_suffix) +else +KERN_BLDROOT=${SDK}/${SDKBUILD}/$(kernel-override)$(bldroot_suffix) +endif + +ifeq (,$(kernel_version)) +kernel_version=2_4 +endif + +ifeq ($(kernel_version),2_6) +KOBJ=ko +else +KOBJ=o +endif + +ifneq (,$(TOOLS_DIR)) +override PATH := $(TOOLS_DIR):$(PATH) +endif + +ifeq ($(DEST_DIR),) +DEST_DIR=${BLDDIR} +endif + +KERNEL_BDE_LOCAL :=linux-kernel-bde.$(KOBJ) +KERNEL_BDE :=$(DEST_DIR)/$(KERNEL_BDE_LOCAL) + +USER_BDE_LOCAL :=linux-user-bde.$(KOBJ) +USER_BDE=$(DEST_DIR)/$(USER_BDE_LOCAL) + +BCM_KNET_LOCAL :=linux-bcm-knet.$(KOBJ) +BCM_KNET=$(DEST_DIR)/$(BCM_KNET_LOCAL) + +ifeq (,$(findstring DELIVER,$(MAKECMDGOALS))) +.DEFAULT_GOAL := all +all_targets := kernel_modules $(KERNEL_BDE) $(USER_BDE) + +LOCAL_TARGETS := + +ifeq ($(NO_LOCAL_TARGETS),) +LOCAL_TARGETS +=$(patsubst %,$(realpath ..)/$(platform)/%,$(KERNEL_BDE_LOCAL) $(USER_BDE_LOCAL)) + +all_targets +=$(LOCAL_TARGETS) +endif + +# Build all by default +ifndef BUILD_KNET +BUILD_KNET = 1 +endif + +ifeq ($(BUILD_KNET),1) +# Kernel network support +all_targets += $(BCM_KNET) + +ifeq ($(NO_LOCAL_TARGETS),) +LOCAL_TARGETS +=$(patsubst %,../$(platform)/%,$(BCM_KNET_LOCAL)) +all_targets +=$(LOCAL_TARGETS) +endif + +ADD_TO_CFLAGS += -I$(SDK)/systems/linux/kernel/modules/include +COND_KNET_LIBS = libuser.$(libext) +endif + +#OPENNSL_FIXUP +.NOTPARALLEL: + +all: $(BLDDIR)/.tree $(all_targets) + +ifeq ($(NO_LOCAL_TARGETS),) +define LOCAL_TARGET_DEF +$(1) : $(DEST_DIR)/$(notdir $(1)) + cp $$? $$@ +endef +endif + +# User BDE libraries +ADD_TO_CFLAGS += -I$(SDK)/systems/bde/linux/include + +# Use raw IOCTL for KNET +ADD_TO_CFLAGS += -DPROXY_SUPPORT=0 + +CFLAGS += $(ADD_TO_CFLAGS) + +kernel_modules: + $(MAKE) -C $(SDK)/systems/bde/linux/kernel kernel_version=$(kernel_version) + $(MAKE) -C $(SDK)/systems/bde/linux/user/kernel kernel_version=$(kernel_version) +ifeq ($(BUILD_KNET),1) + $(MAKE) -j1 -C $(SDK)/systems/linux/kernel/modules kernel_version=$(kernel_version) \ + subdirs="shared bcm-knet" override-target=linux-$(platform) CFLAGS="$(CFLAGS)" +endif + +$(KERNEL_BDE): $(KERN_BLDROOT)/linux-kernel-bde.$(KOBJ) + mkdir -p $(@D) + $(OBJCOPY) --strip-debug $< $@ + +$(USER_BDE): $(KERN_BLDROOT)/linux-user-bde.$(KOBJ) + $(OBJCOPY) --strip-debug $< $@ + +$(BCM_KNET): $(KERN_BLDROOT)/linux-bcm-knet.$(KOBJ) + $(OBJCOPY) --strip-debug $< $@ + +ifeq ($(NO_LOCAL_TARGETS),) +$(foreach targ,$(LOCAL_TARGETS),$(eval $(call LOCAL_TARGET_DEF,$(targ)))) +endif + +clean:: + $(MAKE) -C $(SDK)/systems/bde/linux/kernel $@ + $(MAKE) -C $(SDK)/systems/bde/linux/user/kernel $@ + $(MAKE) -C $(SDK)/systems/linux/kernel/modules \ + subdirs="shared bcm-knet" \ + override-target=linux-$(platform) $@ + $(RM) $(KERNEL_BDE) $(USER_BDE) + $(RM) $(BCM_KNET) + $(RM) $(KERN_BLDROOT)/linux-kernel-bde.$(KOBJ) + $(RM) $(KERN_BLDROOT)/linux-user-bde.$(KOBJ) + $(RM) $(KERN_BLDROOT)/linux-bcm-knet.$(KOBJ) + $(RM) $(LOCAL_TARGETS) + +distclean:: clean + +.PHONY: variable + +# +# Echo variable values used for configuration +# usage: make VAR=CC variable +# +variable:: + @echo $($(VAR)) + +else +ifndef DELIVERY +$(error DELIVERY required) +endif + +DELIVERABLES := $(KERNEL_BDE) $(USER_BDE) +# 1= source +define DELIVERY_RULE +_DEL_TARG += $(DELIVERY)/$(notdir $(1)) +$(DELIVERY)/$(notdir $(1)) : $(1) + @mkdir -p $(DELIVERY) +ifeq ($(filter $(notdir $(BCM)) $(notdir $(BCM).dbg),$(notdir $1)),) + $(OBJCOPY) --strip-debug $$< $$@ +else + $(CP) -p $$< $$@ +endif +endef + +$(foreach f,$(DELIVERABLES),$(eval $(call DELIVERY_RULE,$(f)))) + +DELIVER: $(_DEL_TARG) +endif + +# Make.config defines remaining phony targets +.PHONY: build kernel_modules DELIVER + only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/gto-2_6/Makefile +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/gto-2_6/Makefile @@ -0,0 +1,85 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.9 Broadcom SDK $ +# $Copyright: (c) 2007 Broadcom Corp. +# All Rights Reserved.$ + +# +# This make job requires the following environment variables to be set: +# +# SDK - path to StrataXGS SDK root directory +# +# Optionally the following environment variables can be set to +# override the default build server configuration: +# +# PPC_TOOLS_DIR - path to build tools (if not in PATH already) +# PPC_CROSS_COMPILE - cross compile tools prefix +# LINUX_INCLUDE - path to Linux kernel include directory +# + +SDK :=$(shell if [ -n "$$SDK" ] ; then\ + echo $$SDK;\ + else\ + cd $(dir $(lastword $(MAKEFILE_LIST))); while /usr/bin/test ! -e RELEASE ; do \ + dir=`cd ../;pwd`; \ + if [ "$$dir" = "/" ] ; then \ + echo Cannot find SDK in $(lastword $(MAKEFILE_LIST)) 1>&2; \ + exit 1; \ + fi ; \ + cd $$dir; \ + done ; \ + pwd; \ + fi) + +ifeq ($(SDK),) +$(error Please run this in a tree) +endif + +export SDK + +override kernel_version=2_6 +platform=gto-$(kernel_version) +LINUX_MAKE_USER=1 +export LINKER_RELAX=1 + +# Select the build environment +#BUILD_PLATFORM=ELDK +#BUILD_PLATFORM=WR_LINUX + +#Select the LINUX KERNEL VERSION +#KERN_VER = 2.6.21.7 +#KERN_VER = 2.6.24.4 +#KERN_VER = 2.6.25 + + +# Select the ELDK version +#ELDK_VERSION=4.1 +#ELDK_VERSION=4.0 + +#Select WRS Linux version +#WRS_LINUX_VERSION=2.0 +#WRS_LINUX_VERSION=3.0 + + +export KERN_VER +export ELDK_VERSION +export BUILD_PLATFORM +export WRS_LINUX_VERSION + +include ${SDK}/make/Make.linux + only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/gto/Makefile +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/gto/Makefile @@ -0,0 +1,61 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.9 Broadcom SDK $ +# $Copyright: (c) 2015 Broadcom Corp. +# All Rights Reserved.$ + +# +# This make job requires the following environment variables to be set: +# +# SDK - path to StrataXGS SDK root directory +# +# Optionally the following environment variables can be set to +# override the default build server configuration: +# +# PPC_TOOLS_DIR - path to build tools (if not in PATH already) +# PPC_CROSS_COMPILE - cross compile tools prefix +# LINUX_INCLUDE - path to Linux kernel include directory +# + +SDK :=$(shell if [ -n "$$SDK" ] ; then\ + echo $$SDK;\ + else\ + cd $(dir $(lastword $(MAKEFILE_LIST))); while /usr/bin/test ! -e RELEASE ; do \ + dir=`cd ../;pwd`; \ + if [ "$$dir" = "/" ] ; then \ + echo Cannot find SDK in $(lastword $(MAKEFILE_LIST)) 1>&2; \ + exit 1; \ + fi ; \ + cd $$dir; \ + done ; \ + pwd; \ + fi) + +ifeq ($(SDK),) +$(error Please run this in a tree) +endif + +export SDK + +override kernel_version=4_4 +platform=gto +LINUX_MAKE_USER=1 +export LINKER_RELAX=1 + +include ${SDK}/make/Make.linux + only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/iproc-3_14/Makefile +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/iproc-3_14/Makefile @@ -0,0 +1,66 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.7 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ + +# +# This make job requires the following environment variables to be set: +# +# SDK - path to StrataXGS SDK root directory +# +# Optionally the following environment variables can be set to +# override the default build server configuration: +# +# MIPS_TOOLS_DIR - path to build tools (if not in PATH already) +# MIPS_CROSS_COMPILE - cross compile tools prefix +# LINUX_INCLUDE - path to Linux kernel include directory +# + +SDK :=$(shell if [ -n "$$SDK" ] ; then\ + echo $$SDK;\ + else\ + cd $(dir $(lastword $(MAKEFILE_LIST))); while /usr/bin/test ! -e RELEASE ; do \ + dir=`cd ../;pwd`; \ + if [ "$$dir" = "/" ] ; then \ + echo Cannot find SDK in $(lastword $(MAKEFILE_LIST)) 1>&2; \ + exit 1; \ + fi ; \ + cd $$dir; \ + done ; \ + pwd; \ + fi) + +ifeq ($(SDK),) +$(error Please run this in a tree) +endif + +export SDK + +override kernel_version=3_14 +platform=iproc-$(kernel_version) + +IPROC_BUILD=1 +export IPROC_BUILD +export BUILD_PLATFORM +export ARM_LINUX_VERSION + +LINUX_MAKE_USER=1 +export ADD_TO_CFLAGS + +include ${SDK}/make/Make.linux only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/iproc/Makefile +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/iproc/Makefile @@ -0,0 +1,60 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.7 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ + +# +# This make job requires the following environment variables to be set: +# +# SDK - path to StrataXGS SDK root directory +# + +SDK :=$(shell if [ -n "$$SDK" ] ; then\ + echo $$SDK;\ + else\ + cd $(dir $(lastword $(MAKEFILE_LIST))); while /usr/bin/test ! -e RELEASE ; do \ + dir=`cd ../;pwd`; \ + if [ "$$dir" = "/" ] ; then \ + echo Cannot find SDK in $(lastword $(MAKEFILE_LIST)) 1>&2; \ + exit 1; \ + fi ; \ + cd $$dir; \ + done ; \ + pwd; \ + fi) + +ifeq ($(SDK),) +$(error Please run this in a tree) +endif + +export SDK + +override kernel_version=4_4 +platform=iproc + +IPROC_BUILD=1 +export IPROC_BUILD +export BUILD_PLATFORM +export ARM_LINUX_VERSION + +LINUX_MAKE_USER=1 +export ADD_TO_CFLAGS +export BR_NO_CCACHE + +include ${SDK}/make/Make.linux only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/x86-smp_generic_64-2_6/Makefile +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/systems/linux/user/x86-smp_generic_64-2_6/Makefile @@ -0,0 +1,46 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# -*- Makefile -*- +# $Id: Makefile,v 1.2 Broadcom SDK $ +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved.$ + +SDK :=$(shell if [ -n "$$SDK" ] ; then\ + echo $$SDK;\ + else\ + cd $(dir $(lastword $(MAKEFILE_LIST))); while /usr/bin/test ! -e RELEASE ; do \ + dir=`cd ../;pwd`; \ + if [ "$$dir" = "/" ] ; then \ + echo Cannot find SDK in $(lastword $(MAKEFILE_LIST)) 1>&2; \ + exit 1; \ + fi ; \ + cd $$dir; \ + done ; \ + pwd; \ + fi) + +ifeq ($(SDK),) +$(error Please run this in a tree) +endif + +export SDK + +override kernel_version=2_6 +platform=x86-smp_generic_64-$(kernel_version) + +LINUX_MAKE_USER=1 +include ${SDK}/make/Make.linux only in patch2: unchanged: --- linux-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/tools/mktool.pl +++ linux-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.5.10-gpl-modules/tools/mktool.pl @@ -0,0 +1,293 @@ +# +# Unless you and Broadcom execute a separate written software license +# agreement governing use of this software, this software is licensed to +# you under the terms of the GNU General Public License version 2 (the +# "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, +# with the following added to such license: +# +# As a special exception, the copyright holders of this software give +# you permission to link this software with independent modules, and to +# copy and distribute the resulting executable under terms of your +# choice, provided that you also meet, for each linked independent +# module, the terms and conditions of the license of that module. An +# independent module is a module which is not derived from this +# software. The special exception does not apply to any modifications +# of the software. +# +# +# mktool.pl +# +# $Id: mktool.pl,v 1.5 Broadcom SDK $ +# +# $Copyright: (c) 2005 Broadcom Corp. +# All Rights Reserved. $ + +use File::Path; +use File::Find; +use File::Copy; +use Cwd; + +($prog = $0) =~ s/.*\///; + +SWITCH: +{ + $op = shift; + + if ($op eq "-rm") { mktool_rm(@ARGV); last SWITCH; } + if ($op eq "-cp") { mktool_cp(@ARGV); last SWITCH; } + if ($op eq "-md") { mktool_md(@ARGV); last SWITCH; } + if ($op eq "-ln") { mktool_ln(@ARGV); last SWITCH; } + if ($op eq "-foreach") { mktool_foreach(@ARGV); last SWITCH; } + if ($op eq "-dep") { mktool_makedep(@ARGV); last SWITCH; } + if ($op eq "-echo") { mktool_echo(@ARGV); last SWITCH; } + if ($op eq "-beep") { mktool_beep(@ARGV); last SWITCH; } + die("$prog: unknown option '$op'\n"); +} + +exit 0; + + + + +# +# mktool_execute +# +# Executes a command, returns exist status. +# Performs token special translation before execution. +# + +sub mktool_execute +{ + my $token = shift; + my @cmds = @_; + +# printf("mktool_execute: token = '$token'\n"); + foreach $cmd (@cmds) + { + #printf("mktool_execute: cmd = '$cmd'\n"); + $cmd =~ s/\#\#/$token/g; + if($cmd =~ /^-p/) + { + $cmd =~ s/^-p//; + printf("$cmd\n"); + } + else + { + system($cmd); + my $excode = ($? >> 8); + exit $excode if $excode; + } + } +} + + +$find_regexp = ""; +@find_cmd; + +# +# mktool_foreach +# +sub mktool_foreach +{ + if($_[0] eq "-find") + { + shift; + $find_dir = shift; + $find_regexp = shift; + @find_cmds = @_; + + if(!($find_dir =~ /^\//)) + { + $find_dir = cwd() . "/" . $find_dir; + } + find(\&_mktool_foreach_find_wanted, $find_dir); + } + else + { + my $subdir = 0; + if($_[0] eq "-subdir") + { + $subdir = 1; + shift; + } + + my @thingies = split(' ', shift); + + foreach $thingy (@thingies) + { + chdir $thingy unless $subdir == 0; + mktool_execute($thingy, @_); + chdir ".." unless $subdir == 0; + } + } +} + + + +sub _mktool_foreach_find_wanted +{ + my $expr = "\$File::Find::name =~ /\^$find_regexp\$/"; + + if(eval($expr)) + { + mktool_execute($File::Find::name, @find_cmds); + exit $excode if $excode; + } +} + + +# +# rm +# +# Removes a list of objects +# +sub mktool_rm +{ + my($f); + + foreach $f (@_) { + eval { rmtree($f) }; + if ($@) { + die "$prog $op: failed to remove $f: $@\n"; + } + } +} + +# +# md +# +# Makes a list of directories +# +sub mktool_md +{ + my($dir); + + foreach $dir (@_) { + $dir =~ s!/+$!!; + eval { mkpath($dir) }; + if ($@) { + die "$prog $op: failed to make directory $dir: $@\n"; + } + } +} + + +sub mktool_cp +{ + my($from, $to) = @_; + + if (@_ != 2) { + die "$prog $op: must have two arguments\n"; + } + copy($from, $to) || + die "$prog $op: failed to copy $from to $to: $!\n"; +} + +sub mktool_ln +{ + my($old, $new) = @_; + + if (@_ != 2) { + die "$prog $op: must have two arguments\n"; + } + link ($old, $new) || + die "$prog $op: failed to link $new to $old: $!\n"; +} + + +# @echo "$@ \\" > ${BLDDIR}/$(notdir $@) +# @if ($(DEPEND)) >> $(BLDDIR)/$(notdir $@); then \ +# exit 0; \ +# else \ +# rm -f ${BLDDIR}/$(notdir $@); \ +# exit 1; \ +# fi + +# $(MAKEDEP) "$@" "$(BLDDIR)/$(notdir $@)" "$(DEPEND)" + +sub mktool_makedep +{ + my ($source, $target, $cmd, $curdir) = @_; + my @result = `$cmd`; + my $sdk = $ENV{'SDK'}; + my $count; + my $tmp; + local $resultant; + +## Comman $cmd +#Command $cmd +print <-1) & ($count < 20) ) + { + $line=~s/\/\w+\/\.\.//; + # if we hit a major recursion, revert the line, report + # this to the output and drop out of the loop, but do + # continue, this should not halt generation + if($count++>19) + { + print "mktool.pl: could not process $line \n\n"; + print ":: curdir $curdir\n"; + print ":: target $target\n"; + print ":: cmd $cmd\n"; + $line=$tmp; + } + } + + # set all the paths to use the $SDK variable + $line =~ s/$ENV{'SDK'}/\$\{SDK\}/g; + $resultant=$resultant . $line; + } + + # some compilers return extra newlines + $resultant=~s/\n//g; + + # now clean up the result + $resultant=~s/\\/\\\n/g; + + mktool_md($dirName) unless (-d $dirName); + open (TARGET, ">$target") || + die("$prog $op: cannot open '$target' for writing: $!\n"); + print TARGET "$resultant\n"; + close(TARGET); + } +} + +sub mktool_echo +{ + print "@_\n"; +} + +sub mktool_beep +{ + -t STDOUT && defined $ENV{MAKEBEEP} && print "\007"; +} only in patch2: unchanged: --- linux-4.4.0.orig/virt/kvm/vfio.c +++ linux-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);